diff --git a/.gitattributes b/.gitattributes index 1ef325f1b111266a6b26e0196871bd78baa8c2f3..33119c9782e4b08fe1cb97546ab563263c631b74 100644 --- a/.gitattributes +++ b/.gitattributes @@ -57,3 +57,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text # Video files - compressed *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text +stable_diffusion/data/DejaVuSans.ttf filter=lfs diff=lfs merge=lfs -text +stable_diffusion/data/imagenet_val_hr_indices.p filter=lfs diff=lfs merge=lfs -text diff --git a/aurora.png b/aurora.png new file mode 100644 index 0000000000000000000000000000000000000000..9ef4b67a5a7c193e95621a241df0aab36022fb56 --- /dev/null +++ b/aurora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee2a236686903edccb652d3a14c9814d7059be2e67f81a1b48a3f43c5a89152 +size 357601 diff --git a/data/.DS_Store b/data/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..886e8483746276c06b9f6ebb26f3b113da3d1139 Binary files /dev/null and b/data/.DS_Store differ diff --git a/data/something/extract_frames.py b/data/something/extract_frames.py new file mode 100644 index 0000000000000000000000000000000000000000..c0707b4cc35b42185b97ee02fa8aea50d40d6d9c --- /dev/null +++ b/data/something/extract_frames.py @@ -0,0 +1,65 @@ +import cv2 +import json +import os +from tqdm import tqdm + +def extract_first_and_last_frames(video_file): + # Create base directory path + base_dir = 'frames/' + os.path.splitext(os.path.basename(video_file))[0] + + # Check if both 'first.jpg' and 'last.jpg' already exist + first_frame_path = os.path.join(base_dir, 'first.jpg') + last_frame_path = os.path.join(base_dir, 'last.jpg') + if os.path.exists(first_frame_path) and os.path.exists(last_frame_path): + print(f"Skipping {video_file} as frames already exist.") + return + + cap = cv2.VideoCapture(video_file) + if not cap.isOpened(): + print(f"Error: Could not open video {video_file}.") + return + + total_frames = int(cap.get(cv2.CAP_PROP_FRAME_COUNT)) + if total_frames == 1: + print(f"Warning: Video {video_file} has only 1 frame.") + + # Extract and save first frame + extract_and_save_frame(cap, video_file, 0, 'first', base_dir) + + # Extract and save last frame + if total_frames > 1: + extract_and_save_frame(cap, video_file, total_frames - 1, 'last', base_dir) + + cap.release() + +def extract_and_save_frame(cap, video_file, frame_number, frame_type, base_dir): + cap.set(cv2.CAP_PROP_POS_FRAMES, frame_number) + ret, frame = cap.read() + + attempts = 0 + while not ret and attempts < 10: + frame_number -= 1 + cap.set(cv2.CAP_PROP_POS_FRAMES, frame_number) + ret, frame = cap.read() + attempts += 1 + + if not ret: + print(f"Error: Could not read frame after several attempts at {frame_number} in {video_file}.") + return + + if not os.path.exists(base_dir): + os.makedirs(base_dir) + frame_file_name = f"{base_dir}/{frame_type}.jpg" + cv2.imwrite(frame_file_name, frame) + print(f"Saved {frame_file_name}") + +# Read JSON file +json_file = 'valid.json' +with open(json_file, 'r') as file: + videos = json.load(file) + +# Process each video file in the JSON +for video in tqdm(videos): + video_file_name = f"{video['id']}.webm" # Assuming webm format; adjust if needed + video_file_path = os.path.join('./videos', video_file_name) + extract_first_and_last_frames(video_file_path) diff --git a/data/something/filter_keywords.py b/data/something/filter_keywords.py new file mode 100644 index 0000000000000000000000000000000000000000..d2a4165769d5fcac29d62ea172e23331cf40ebb8 --- /dev/null +++ b/data/something/filter_keywords.py @@ -0,0 +1,21 @@ +import json + +train = json.load(open('train.json')) +old_len = len(train) +new_train = [] + +filter_words = ['pretend', 'holding', 'fail', 'roll', 'then letting it', 'until it falls down', 'spin', 'nothing happens', 'show', 'falling like', 'squeezing', 'throwing', 'slightly'] +# these words should not be in the description + +for item in train: + if not any(word in item['instruction'] for word in filter_words): + if "falls off" in item['instruction']: + if "but" in item['instruction']: + new_train.append(item) # Includes "falls off" but also has "but" + else: + new_train.append(item) # Does not contain "falls off" + +json.dump(new_train, open('train_.json', 'w'), indent=4) +new_len = len(new_train) + +print(f'Old length: {old_len}, New length: {new_len}') diff --git a/data/something/formatter.py b/data/something/formatter.py new file mode 100644 index 0000000000000000000000000000000000000000..e1e3b5af3a676184401c32f3b641e2b2a73510e7 --- /dev/null +++ b/data/something/formatter.py @@ -0,0 +1,39 @@ +import json +import os + +# Load the input JSON file +with open("train.json", "r") as f: + data = json.load(f) + +jsonl_data = [] +print("Before processing:", len(data)) +# Convert the input JSON to JSONL format +for key, value in enumerate(data): + + input_path = '/'.join(value["input"].split('/')[2:]) + output_path = '/'.join(value["output"].split('/')[2:]) + if os.path.exists(input_path) and os.path.exists(output_path): + entry = { + "id": f"{int(key):012d}", + "images": ["AURORA/"+value["input"], "AURORA/"+value["output"]], + "conversations": [ + { + "from": "human", + "value": f"\nEditing the given image according to the following prompt: {value['instruction']}" + }, + { + "from": "gpt", + "value": "" + } + ] + } + jsonl_data.append(entry) + else: + continue + +# Save to a JSONL file +with open("train.jsonl", "w") as f: + for line in jsonl_data: + f.write(json.dumps(line) + "\n") + +print("Final data size:", len(jsonl_data)) diff --git a/data/something/images/213068/first.jpg b/data/something/images/213068/first.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9bfc38db294b2156fb83ba4ba324f7b100b34e4 --- /dev/null +++ b/data/something/images/213068/first.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ff39062fff499cc3eb2bb3f9c5ffcfa038c77de560e9b9d43f8e7883c56c28 +size 16809 diff --git a/data/something/images/213068/last.jpg b/data/something/images/213068/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb885becd5490c465cb8d1d4102fa814a4e96a23 --- /dev/null +++ b/data/something/images/213068/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87992f3a80a09ca7cdb70118b406217493526a062f54591c0b0777f0a5f03973 +size 17113 diff --git a/data/something/images/214198/last.jpg b/data/something/images/214198/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aaf179fefb440a2b4d3bccc31c19d66f54510d81 --- /dev/null +++ b/data/something/images/214198/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b48a61a892e4defbae832694510e2fa57d01b3510aec39700a350a7fd5824ae +size 20449 diff --git a/data/something/images/214773/last.jpg b/data/something/images/214773/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd415132e9077346ee7120700024c5a260d96d36 --- /dev/null +++ b/data/something/images/214773/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:127d918c302ac5460265d4edd87887c4271399f0acf56ad2d9d0572908f23c77 +size 14698 diff --git a/data/something/images/215405/first.jpg b/data/something/images/215405/first.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddc26ff5feaad37a51b4f65b475ed0aaa108a951 --- /dev/null +++ b/data/something/images/215405/first.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7c4224eb49535b9fcdc16f64ee4a6a3816bf22250be7615c53fcd22e9a844d +size 13526 diff --git a/data/something/images/215668/last.jpg b/data/something/images/215668/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bc6c508023066c658240760220616de18649f4f --- /dev/null +++ b/data/something/images/215668/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c28f57563e32d91dfbf9a5f8274fb8bb752d34b40c71a687e8ca463b16c2a72e +size 10956 diff --git a/data/something/images/215692/first.jpg b/data/something/images/215692/first.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b21961da8c822c365523018fb654efc143338db --- /dev/null +++ b/data/something/images/215692/first.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7e3aeb3b201e264b459ca873fcf2d6abdaeacc99ee5fc202561cab1999eb48 +size 29180 diff --git a/data/something/images/215962/last.jpg b/data/something/images/215962/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55649b03d1c49af850172b4e9296f39507f53148 --- /dev/null +++ b/data/something/images/215962/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469b57245305a9bf4fd580161c2da7021b61286acf6a6e6cf531d90bdafc871f +size 29145 diff --git a/data/something/images/216970/last.jpg b/data/something/images/216970/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89735132aaaab3de266f6644e8dbbb6997fab83d --- /dev/null +++ b/data/something/images/216970/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71aa72b5ecb94a7c855f3e37d486632e0c5f12b0c5eef42c6a22a28c553d76aa +size 24215 diff --git a/data/something/images/219411/last.jpg b/data/something/images/219411/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6670748dba510044c183733846fc5e54d71581db --- /dev/null +++ b/data/something/images/219411/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c25c3b869d0434da82a524b1767b11e0d8ea6d0aea2c5f310c7b03ad57915d +size 23749 diff --git a/data/something/images/219866/first.jpg b/data/something/images/219866/first.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1237dd5a621bfa8cc832577b3359e9f9715ef3c7 --- /dev/null +++ b/data/something/images/219866/first.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ff4a43c9d873cd92ac6421c28592ecc97b3224630e8510cb4377d2d8bbfa76 +size 21871 diff --git a/data/something/images/219866/last.jpg b/data/something/images/219866/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fae1ba71dbe10c881dadec8c51afb7690da5a67 --- /dev/null +++ b/data/something/images/219866/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea46addbb1a64aa595be602803d68887af5d9f714ce492e0035314e186e124a +size 27138 diff --git a/data/something/images/220/first.jpg b/data/something/images/220/first.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3085c27b9ae653b7e7c8b4681d92abac794537b0 --- /dev/null +++ b/data/something/images/220/first.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34bb0305a948c7e53fe62c711e4dc3725e15d03b248d12af94ea7db6f9e551fb +size 22456 diff --git a/data/something/images/36/first.jpg b/data/something/images/36/first.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e39e40d1552dfae3bac447109a5ab987954bf865 --- /dev/null +++ b/data/something/images/36/first.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96657851df01338c03e1ef178a6b4b350a95d0bd2d4827cec11f3d082386a0bc +size 25024 diff --git a/data/something/images/36/last.jpg b/data/something/images/36/last.jpg new file mode 100644 index 0000000000000000000000000000000000000000..522f2c4a1d7887b836929474f950be8bc5ce2d02 --- /dev/null +++ b/data/something/images/36/last.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84aa1cec905c50680b4342d6d7905e82c27577c1e43ab2d33c1b5645097cd511 +size 19982 diff --git a/data/something/labels/labels.json b/data/something/labels/labels.json new file mode 100644 index 0000000000000000000000000000000000000000..181e721577ddaa96f16cc52458deb6c17bfa25a0 --- /dev/null +++ b/data/something/labels/labels.json @@ -0,0 +1,176 @@ +{ + "Approaching something with your camera":"0", + "Attaching something to something":"1", + "Bending something so that it deforms":"2", + "Bending something until it breaks":"3", + "Burying something in something":"4", + "Closing something":"5", + "Covering something with something":"6", + "Digging something out of something":"7", + "Dropping something behind something":"8", + "Dropping something in front of something":"9", + "Dropping something into something":"10", + "Dropping something next to something":"11", + "Dropping something onto something":"12", + "Failing to put something into something because something does not fit":"13", + "Folding something":"14", + "Hitting something with something":"15", + "Holding something":"16", + "Holding something behind something":"17", + "Holding something in front of something":"18", + "Holding something next to something":"19", + "Holding something over something":"20", + "Laying something on the table on its side, not upright":"21", + "Letting something roll along a flat surface":"22", + "Letting something roll down a slanted surface":"23", + "Letting something roll up a slanted surface, so it rolls back down":"24", + "Lifting a surface with something on it but not enough for it to slide down":"25", + "Lifting a surface with something on it until it starts sliding down":"26", + "Lifting something up completely without letting it drop down":"27", + "Lifting something up completely, then letting it drop down":"28", + "Lifting something with something on it":"29", + "Lifting up one end of something without letting it drop down":"30", + "Lifting up one end of something, then letting it drop down":"31", + "Moving away from something with your camera":"32", + "Moving part of something":"33", + "Moving something across a surface until it falls down":"34", + "Moving something across a surface without it falling down":"35", + "Moving something and something away from each other":"36", + "Moving something and something closer to each other":"37", + "Moving something and something so they collide with each other":"38", + "Moving something and something so they pass each other":"39", + "Moving something away from something":"40", + "Moving something away from the camera":"41", + "Moving something closer to something":"42", + "Moving something down":"43", + "Moving something towards the camera":"44", + "Moving something up":"45", + "Opening something":"46", + "Picking something up":"47", + "Piling something up":"48", + "Plugging something into something":"49", + "Plugging something into something but pulling it right out as you remove your hand":"50", + "Poking a hole into some substance":"51", + "Poking a hole into something soft":"52", + "Poking a stack of something so the stack collapses":"53", + "Poking a stack of something without the stack collapsing":"54", + "Poking something so it slightly moves":"55", + "Poking something so lightly that it doesn't or almost doesn't move":"56", + "Poking something so that it falls over":"57", + "Poking something so that it spins around":"58", + "Pouring something into something":"59", + "Pouring something into something until it overflows":"60", + "Pouring something onto something":"61", + "Pouring something out of something":"62", + "Pretending or failing to wipe something off of something":"63", + "Pretending or trying and failing to twist something":"64", + "Pretending to be tearing something that is not tearable":"65", + "Pretending to close something without actually closing it":"66", + "Pretending to open something without actually opening it":"67", + "Pretending to pick something up":"68", + "Pretending to poke something":"69", + "Pretending to pour something out of something, but something is empty":"70", + "Pretending to put something behind something":"71", + "Pretending to put something into something":"72", + "Pretending to put something next to something":"73", + "Pretending to put something on a surface":"74", + "Pretending to put something onto something":"75", + "Pretending to put something underneath something":"76", + "Pretending to scoop something up with something":"77", + "Pretending to spread air onto something":"78", + "Pretending to sprinkle air onto something":"79", + "Pretending to squeeze something":"80", + "Pretending to take something from somewhere":"81", + "Pretending to take something out of something":"82", + "Pretending to throw something":"83", + "Pretending to turn something upside down":"84", + "Pulling something from behind of something":"85", + "Pulling something from left to right":"86", + "Pulling something from right to left":"87", + "Pulling something onto something":"88", + "Pulling something out of something":"89", + "Pulling two ends of something but nothing happens":"90", + "Pulling two ends of something so that it gets stretched":"91", + "Pulling two ends of something so that it separates into two pieces":"92", + "Pushing something from left to right":"93", + "Pushing something from right to left":"94", + "Pushing something off of something":"95", + "Pushing something onto something":"96", + "Pushing something so it spins":"97", + "Pushing something so that it almost falls off but doesn't":"98", + "Pushing something so that it falls off the table":"99", + "Pushing something so that it slightly moves":"100", + "Pushing something with something":"101", + "Putting number of something onto something":"102", + "Putting something and something on the table":"103", + "Putting something behind something":"104", + "Putting something in front of something":"105", + "Putting something into something":"106", + "Putting something next to something":"107", + "Putting something on a flat surface without letting it roll":"108", + "Putting something on a surface":"109", + "Putting something on the edge of something so it is not supported and falls down":"110", + "Putting something onto a slanted surface but it doesn't glide down":"111", + "Putting something onto something":"112", + "Putting something onto something else that cannot support it so it falls down":"113", + "Putting something similar to other things that are already on the table":"114", + "Putting something that can't roll onto a slanted surface, so it slides down":"115", + "Putting something that can't roll onto a slanted surface, so it stays where it is":"116", + "Putting something that cannot actually stand upright upright on the table, so it falls on its side":"117", + "Putting something underneath something":"118", + "Putting something upright on the table":"119", + "Putting something, something and something on the table":"120", + "Removing something, revealing something behind":"121", + "Rolling something on a flat surface":"122", + "Scooping something up with something":"123", + "Showing a photo of something to the camera":"124", + "Showing something behind something":"125", + "Showing something next to something":"126", + "Showing something on top of something":"127", + "Showing something to the camera":"128", + "Showing that something is empty":"129", + "Showing that something is inside something":"130", + "Something being deflected from something":"131", + "Something colliding with something and both are being deflected":"132", + "Something colliding with something and both come to a halt":"133", + "Something falling like a feather or paper":"134", + "Something falling like a rock":"135", + "Spilling something behind something":"136", + "Spilling something next to something":"137", + "Spilling something onto something":"138", + "Spinning something so it continues spinning":"139", + "Spinning something that quickly stops spinning":"140", + "Spreading something onto something":"141", + "Sprinkling something onto something":"142", + "Squeezing something":"143", + "Stacking number of something":"144", + "Stuffing something into something":"145", + "Taking one of many similar things on the table":"146", + "Taking something from somewhere":"147", + "Taking something out of something":"148", + "Tearing something into two pieces":"149", + "Tearing something just a little bit":"150", + "Throwing something":"151", + "Throwing something against something":"152", + "Throwing something in the air and catching it":"153", + "Throwing something in the air and letting it fall":"154", + "Throwing something onto a surface":"155", + "Tilting something with something on it slightly so it doesn't fall down":"156", + "Tilting something with something on it until it falls off":"157", + "Tipping something over":"158", + "Tipping something with something in it over, so something in it falls out":"159", + "Touching (without moving) part of something":"160", + "Trying but failing to attach something to something because it doesn't stick":"161", + "Trying to bend something unbendable so nothing happens":"162", + "Trying to pour something into something, but missing so it spills next to it":"163", + "Turning something upside down":"164", + "Turning the camera downwards while filming something":"165", + "Turning the camera left while filming something":"166", + "Turning the camera right while filming something":"167", + "Turning the camera upwards while filming something":"168", + "Twisting (wringing) something wet until water comes out":"169", + "Twisting something":"170", + "Uncovering something":"171", + "Unfolding something":"172", + "Wiping something off of something":"173" +} diff --git a/data/something/labels/test-answers.csv b/data/something/labels/test-answers.csv new file mode 100644 index 0000000000000000000000000000000000000000..a468f95785f2f806b9b2f7f8fa948d51937bc011 --- /dev/null +++ b/data/something/labels/test-answers.csv @@ -0,0 +1,27157 @@ +208583;Moving something closer to something +50058;Stacking number of something +139625;Putting something similar to other things that are already on the table +40500;Rolling something on a flat surface +79958;Moving something across a surface without it falling down +174783;Putting something on a surface +117998;Tearing something just a little bit +148399;Pouring something out of something +77635;Tipping something over +192072;Showing that something is inside something +86893;Taking something from somewhere +218388;Rolling something on a flat surface +95573;Pushing something from left to right +130318;Tearing something just a little bit +194;Trying but failing to attach something to something because it doesn't stick +50680;Showing that something is empty +197676;Showing that something is empty +146081;Showing something behind something +8350;Moving something across a surface until it falls down +45739;Something colliding with something and both are being deflected +157025;Pushing something from left to right +101269;Pushing something with something +35045;Putting something in front of something +33264;Showing that something is empty +2128;Spinning something so it continues spinning +12694;Pulling something from left to right +116743;Trying to pour something into something, but missing so it spills next to it +195407;Plugging something into something +34212;Pretending or failing to wipe something off of something +188198;Putting something on a surface +167071;Plugging something into something but pulling it right out as you remove your hand +212640;Spilling something onto something +199493;Something falling like a rock +168827;Dropping something onto something +22631;Throwing something against something +195765;Pretending to sprinkle air onto something +46490;Putting something on a surface +161629;Hitting something with something +6134;Pretending to put something onto something +31619;Putting something on a surface +72293;Rolling something on a flat surface +148912;Piling something up +180429;Dropping something in front of something +42634;Pulling two ends of something but nothing happens +32935;Pretending to throw something +192945;Taking one of many similar things on the table +177862;Moving part of something +104146;Plugging something into something but pulling it right out as you remove your hand +23003;Throwing something against something +111136;Throwing something +86124;Putting something and something on the table +197526;Putting something similar to other things that are already on the table +129229;Pushing something so that it falls off the table +59245;Burying something in something +924;Poking something so lightly that it doesn't or almost doesn't move +214663;Holding something behind something +210679;Spinning something that quickly stops spinning +118348;Touching (without moving) part of something +150292;Lifting something with something on it +196313;Letting something roll along a flat surface +194661;Moving something away from something +39734;Laying something on the table on its side, not upright +193158;Holding something +108340;Closing something +97995;Tearing something into two pieces +106482;Twisting something +132418;Moving something and something so they pass each other +195421;Spreading something onto something +197392;Attaching something to something +65447;Unfolding something +174263;Spreading something onto something +125941;Pretending to be tearing something that is not tearable +32854;Stuffing something into something +100722;Pretending to be tearing something that is not tearable +84276;Moving something and something closer to each other +118519;Pouring something into something +77253;Poking a hole into something soft +85672;Opening something +202970;Wiping something off of something +15680;Something falling like a feather or paper +68399;Pushing something from right to left +56615;Pushing something from left to right +158819;Pouring something out of something +88455;Pretending to pick something up +183522;Pretending to turn something upside down +138305;Moving something and something so they pass each other +5105;Plugging something into something +4418;Showing something behind something +210822;Pulling something from behind of something +220321;Poking a stack of something so the stack collapses +116980;Putting something similar to other things that are already on the table +138401;Putting something next to something +107049;Moving something down +179747;Showing something next to something +68904;Moving something and something so they pass each other +123001;Showing something behind something +25936;Putting something into something +104638;Turning the camera right while filming something +145211;Pushing something so it spins +95405;Pretending to sprinkle air onto something +95787;Turning the camera upwards while filming something +52120;Showing something next to something +129525;Spilling something onto something +112161;Pushing something so that it falls off the table +150115;Stacking number of something +93479;Pouring something out of something +27388;Holding something in front of something +22474;Tearing something into two pieces +72149;Something falling like a feather or paper +76245;Poking a stack of something without the stack collapsing +28073;Pushing something so that it falls off the table +32850;Pushing something so that it slightly moves +181233;Twisting (wringing) something wet until water comes out +207271;Throwing something in the air and letting it fall +42948;Pushing something so it spins +77448;Folding something +12141;Dropping something into something +110061;Throwing something in the air and catching it +11331;Showing something behind something +52280;Rolling something on a flat surface +160188;Pretending to pour something out of something, but something is empty +132867;Pouring something out of something +96563;Piling something up +146464;Taking one of many similar things on the table +187350;Tearing something into two pieces +14608;Covering something with something +159839;Closing something +204027;Moving part of something +21106;Bending something so that it deforms +74609;Covering something with something +73077;Putting something next to something +196785;Putting something on a surface +137651;Pretending to put something onto something +119658;Pushing something from left to right +162434;Covering something with something +208887;Pushing something from left to right +28001;Putting something into something +181929;Touching (without moving) part of something +98187;Poking something so lightly that it doesn't or almost doesn't move +130179;Showing that something is inside something +73908;Lifting something up completely without letting it drop down +218600;Hitting something with something +178826;Folding something +113301;Spinning something so it continues spinning +74418;Rolling something on a flat surface +59795;Twisting (wringing) something wet until water comes out +51096;Pouring something onto something +131765;Moving something and something away from each other +7724;Digging something out of something +170850;Trying to pour something into something, but missing so it spills next to it +115916;Moving something and something away from each other +215367;Putting number of something onto something +10726;Putting something, something and something on the table +101229;Taking something out of something +97864;Turning something upside down +46286;Putting something onto something +47316;Moving something and something away from each other +212037;Tipping something with something in it over, so something in it falls out +82591;Pushing something so that it falls off the table +144351;Tearing something just a little bit +4056;Poking something so that it falls over +114748;Holding something in front of something +6487;Taking something out of something +143992;Uncovering something +85948;Plugging something into something but pulling it right out as you remove your hand +156467;Putting something into something +45043;Poking something so it slightly moves +138563;Showing that something is empty +195451;Pretending to take something out of something +22553;Wiping something off of something +101741;Spinning something so it continues spinning +45731;Taking one of many similar things on the table +128934;Moving something and something away from each other +92061;Holding something next to something +70402;Holding something behind something +156811;Turning something upside down +76052;Pouring something into something +141220;Pushing something from left to right +192074;Trying to bend something unbendable so nothing happens +40978;Spilling something onto something +59609;Turning something upside down +136011;Pretending to be tearing something that is not tearable +180021;Spinning something that quickly stops spinning +135272;Squeezing something +157961;Spinning something that quickly stops spinning +38219;Moving part of something +34687;Moving something towards the camera +204461;Folding something +124704;Dropping something onto something +180164;Pretending to put something on a surface +3118;Dropping something behind something +80541;Picking something up +44342;Pretending or trying and failing to twist something +66326;Lifting up one end of something, then letting it drop down +2762;Pouring something into something +180096;Stuffing something into something +187119;Dropping something into something +57480;Throwing something in the air and letting it fall +24918;Holding something over something +192552;Plugging something into something +183297;Pushing something so it spins +1612;Pouring something into something +60429;Pulling something from left to right +62131;Letting something roll down a slanted surface +33283;Something being deflected from something +49726;Putting something on a surface +217165;Pouring something onto something +137420;Taking something out of something +183617;Pretending to throw something +8005;Putting something on a surface +63835;Pouring something into something +148711;Pushing something so that it slightly moves +18880;Something falling like a rock +180579;Uncovering something +16048;Putting something on a surface +127361;Rolling something on a flat surface +150663;Twisting something +107994;Pretending to pour something out of something, but something is empty +127911;Holding something in front of something +27931;Taking something out of something +119324;Squeezing something +101006;Something falling like a rock +102731;Pretending to open something without actually opening it +94379;Covering something with something +136203;Hitting something with something +127623;Showing a photo of something to the camera +216203;Plugging something into something +194826;Plugging something into something +143190;Opening something +87250;Pulling something from behind of something +119558;Pulling something out of something +166598;Pushing something from left to right +121272;Moving something across a surface until it falls down +48160;Showing something behind something +203464;Pulling two ends of something but nothing happens +181074;Lifting something up completely, then letting it drop down +176025;Taking one of many similar things on the table +126911;Moving something down +195126;Pulling two ends of something but nothing happens +102333;Closing something +132457;Turning something upside down +21701;Tearing something just a little bit +93787;Lifting something up completely without letting it drop down +51625;Pretending to sprinkle air onto something +172364;Pulling something out of something +143621;Attaching something to something +149157;Moving something towards the camera +11062;Throwing something +190762;Something falling like a rock +5359;Taking something out of something +203486;Moving something down +75775;Taking something from somewhere +203480;Putting something next to something +87375;Wiping something off of something +134320;Holding something over something +92008;Piling something up +53910;Closing something +67467;Holding something in front of something +203738;Showing something to the camera +150546;Moving something away from something +140160;Pulling something from left to right +199943;Pretending to put something into something +86237;Twisting (wringing) something wet until water comes out +79367;Moving something away from something +104686;Plugging something into something +22960;Holding something over something +27603;Stuffing something into something +7339;Removing something, revealing something behind +5683;Taking something out of something +5731;Holding something +54395;Covering something with something +200995;Holding something next to something +44159;Pretending to take something from somewhere +148616;Putting something similar to other things that are already on the table +170927;Pushing something so that it almost falls off but doesn't +57893;Pouring something into something +18937;Pushing something from left to right +154495;Putting something next to something +29759;Showing something behind something +34167;Putting something into something +144179;Taking something out of something +461;Showing that something is inside something +146142;Something being deflected from something +101157;Putting something onto something else that cannot support it so it falls down +147663;Putting something next to something +77160;Pulling something from left to right +99917;Moving part of something +165477;Poking something so it slightly moves +134610;Scooping something up with something +167475;Stuffing something into something +149810;Pushing something so that it slightly moves +131758;Pouring something into something +208822;Pretending to turn something upside down +13593;Plugging something into something +190685;Taking one of many similar things on the table +134003;Showing something on top of something +105043;Spinning something that quickly stops spinning +151438;Pretending to turn something upside down +31104;Lifting up one end of something, then letting it drop down +141055;Throwing something against something +164888;Pretending to pick something up +202305;Throwing something against something +136801;Moving something down +210308;Tearing something just a little bit +45831;Moving something away from something +41770;Picking something up +41808;Turning something upside down +209152;Twisting something +72367;Pulling two ends of something so that it separates into two pieces +76348;Pretending to put something into something +78398;Pushing something from right to left +71255;Something colliding with something and both come to a halt +159228;Stuffing something into something +41763;Pouring something into something +217585;Putting something underneath something +198819;Moving part of something +204142;Trying to bend something unbendable so nothing happens +211868;Scooping something up with something +78997;Lifting up one end of something without letting it drop down +102041;Something falling like a feather or paper +14781;Holding something over something +132963;Pushing something with something +186174;Moving something closer to something +107919;Plugging something into something +148082;Digging something out of something +153156;Folding something +65445;Showing something on top of something +206248;Pulling two ends of something so that it gets stretched +157041;Pushing something from right to left +73796;Moving something and something closer to each other +91017;Plugging something into something but pulling it right out as you remove your hand +87573;Pouring something into something +35304;Taking one of many similar things on the table +104647;Moving something and something closer to each other +25493;Something falling like a feather or paper +133412;Hitting something with something +101822;Tearing something into two pieces +28983;Squeezing something +12731;Tearing something into two pieces +94083;Pretending to take something from somewhere +69640;Taking something out of something +25693;Putting something underneath something +121019;Turning something upside down +72423;Laying something on the table on its side, not upright +116452;Pulling two ends of something so that it gets stretched +187369;Pushing something from left to right +139136;Something being deflected from something +17961;Moving away from something with your camera +7564;Pushing something with something +216917;Plugging something into something but pulling it right out as you remove your hand +185135;Tearing something into two pieces +92138;Throwing something +16229;Uncovering something +132525;Plugging something into something +44262;Plugging something into something +20212;Showing something behind something +218734;Putting something into something +103142;Putting something on a surface +98184;Putting number of something onto something +169149;Pulling something out of something +139068;Laying something on the table on its side, not upright +156237;Hitting something with something +121283;Plugging something into something +129014;Wiping something off of something +147196;Something falling like a rock +113187;Bending something so that it deforms +164483;Tearing something into two pieces +104695;Tearing something into two pieces +187613;Pretending to put something behind something +173654;Moving something and something closer to each other +6811;Covering something with something +130701;Tearing something into two pieces +164506;Pouring something into something +24317;Showing something behind something +125762;Pushing something with something +28120;Pretending to put something next to something +44805;Moving something up +18674;Plugging something into something +220505;Dropping something onto something +134715;Taking one of many similar things on the table +161646;Wiping something off of something +170554;Spinning something that quickly stops spinning +44962;Trying but failing to attach something to something because it doesn't stick +63597;Attaching something to something +68791;Throwing something against something +22340;Trying but failing to attach something to something because it doesn't stick +155122;Pouring something into something +66017;Something falling like a rock +147682;Plugging something into something +129574;Letting something roll along a flat surface +141183;Hitting something with something +133423;Dropping something next to something +16844;Attaching something to something +187192;Pushing something from left to right +7391;Showing that something is empty +169754;Tipping something with something in it over, so something in it falls out +114559;Turning something upside down +24200;Squeezing something +167096;Showing that something is empty +204078;Pouring something into something +119144;Plugging something into something +187327;Putting something on a flat surface without letting it roll +135107;Moving something and something closer to each other +199961;Stuffing something into something +112249;Folding something +141848;Putting something upright on the table +163896;Something falling like a rock +99475;Pushing something with something +11202;Taking something out of something +95450;Holding something over something +179666;Holding something over something +185712;Piling something up +22449;Squeezing something +143345;Pushing something so that it almost falls off but doesn't +87966;Wiping something off of something +71515;Turning the camera left while filming something +14729;Pretending to poke something +80944;Taking something from somewhere +127306;Plugging something into something +55518;Pretending to be tearing something that is not tearable +213532;Tipping something over +96335;Moving something up +122386;Letting something roll down a slanted surface +62620;Pretending to be tearing something that is not tearable +213186;Covering something with something +8754;Tearing something into two pieces +124312;Spilling something onto something +139982;Covering something with something +45953;Lifting something up completely without letting it drop down +134939;Tearing something just a little bit +18391;Moving something and something closer to each other +104185;Taking something from somewhere +122458;Holding something next to something +151076;Dropping something into something +84749;Moving something and something away from each other +153943;Stuffing something into something +55822;Dropping something into something +14284;Holding something +129284;Holding something in front of something +195357;Moving something and something so they pass each other +115317;Showing something to the camera +105933;Closing something +167562;Throwing something in the air and catching it +191830;Uncovering something +154307;Squeezing something +98752;Putting something behind something +182329;Pushing something so that it slightly moves +155448;Letting something roll along a flat surface +10331;Moving something up +135341;Dropping something onto something +149309;Showing that something is inside something +211996;Piling something up +161348;Pouring something out of something +65994;Touching (without moving) part of something +197790;Pushing something so it spins +201599;Showing something behind something +133143;Removing something, revealing something behind +218313;Something falling like a feather or paper +182383;Dropping something onto something +174321;Picking something up +23962;Pulling something from left to right +210016;Hitting something with something +180063;Lifting something with something on it +190812;Bending something until it breaks +208147;Stuffing something into something +138040;Turning something upside down +98353;Holding something behind something +182541;Turning something upside down +183161;Turning something upside down +165089;Turning something upside down +62965;Something falling like a feather or paper +145650;Uncovering something +30527;Folding something +193898;Moving something and something closer to each other +4371;Taking one of many similar things on the table +44584;Pulling something from right to left +54902;Pouring something out of something +142301;Showing something next to something +181114;Pretending to close something without actually closing it +32285;Stacking number of something +89238;Poking a hole into something soft +104937;Showing that something is empty +190016;Putting number of something onto something +57269;Spinning something so it continues spinning +208170;Moving something down +30892;Moving part of something +71123;Taking something out of something +4697;Pushing something so that it falls off the table +14025;Putting something that cannot actually stand upright upright on the table, so it falls on its side +29469;Tearing something into two pieces +62477;Plugging something into something +3324;Dropping something onto something +124024;Attaching something to something +49119;Removing something, revealing something behind +88018;Pretending to take something out of something +203812;Closing something +12142;Pouring something out of something +85612;Wiping something off of something +5274;Stacking number of something +10938;Moving something across a surface until it falls down +105656;Moving away from something with your camera +16356;Opening something +28331;Spilling something onto something +165394;Pulling something from left to right +201759;Tilting something with something on it until it falls off +174949;Rolling something on a flat surface +120428;Hitting something with something +116101;Folding something +58527;Something falling like a rock +15151;Letting something roll down a slanted surface +164607;Pretending to put something on a surface +44258;Plugging something into something +120882;Removing something, revealing something behind +145604;Putting something in front of something +56176;Putting something behind something +131858;Bending something until it breaks +127234;Dropping something onto something +86973;Uncovering something +207732;Plugging something into something +142327;Holding something in front of something +376;Tearing something just a little bit +197992;Spinning something that quickly stops spinning +208624;Putting something next to something +49067;Moving something away from something +122860;Turning something upside down +55206;Holding something in front of something +22069;Uncovering something +170324;Dropping something behind something +211898;Pretending to poke something +129423;Turning something upside down +163487;Poking something so lightly that it doesn't or almost doesn't move +60851;Moving something and something closer to each other +102954;Putting something onto something else that cannot support it so it falls down +39919;Plugging something into something +156580;Pouring something into something until it overflows +114853;Touching (without moving) part of something +71776;Tearing something into two pieces +182927;Picking something up +74071;Lifting up one end of something without letting it drop down +177328;Plugging something into something but pulling it right out as you remove your hand +159255;Moving part of something +69245;Holding something behind something +13979;Moving something and something away from each other +97918;Putting something onto something else that cannot support it so it falls down +171142;Moving something and something away from each other +161191;Letting something roll down a slanted surface +178509;Pushing something so that it falls off the table +28412;Closing something +66430;Letting something roll down a slanted surface +136847;Putting something into something +183668;Tearing something into two pieces +57349;Pouring something into something +58342;Lifting up one end of something without letting it drop down +96432;Folding something +38443;Pushing something so it spins +211059;Moving something across a surface without it falling down +127876;Rolling something on a flat surface +160108;Tearing something into two pieces +129578;Tearing something into two pieces +110049;Pretending to be tearing something that is not tearable +70958;Putting something into something +4201;Sprinkling something onto something +114223;Pouring something into something +94321;Moving something closer to something +69120;Pouring something onto something +118645;Putting something that cannot actually stand upright upright on the table, so it falls on its side +45875;Showing something to the camera +185123;Stuffing something into something +34795;Tearing something just a little bit +211633;Moving something across a surface until it falls down +61262;Tearing something into two pieces +157677;Covering something with something +58454;Pouring something out of something +190571;Tearing something into two pieces +2077;Unfolding something +81303;Throwing something against something +97771;Pulling something from behind of something +550;Picking something up +211420;Attaching something to something +94930;Squeezing something +75514;Holding something next to something +124729;Something falling like a feather or paper +114555;Showing a photo of something to the camera +161780;Showing something on top of something +188753;Moving something closer to something +117413;Moving something and something closer to each other +26686;Putting something into something +38519;Tipping something with something in it over, so something in it falls out +14902;Poking something so lightly that it doesn't or almost doesn't move +182283;Trying to bend something unbendable so nothing happens +17165;Pulling something from right to left +34981;Pouring something into something +99335;Pouring something into something +55327;Putting something into something +75300;Folding something +114531;Closing something +179050;Dropping something in front of something +189036;Pushing something so it spins +54219;Showing something next to something +2296;Tearing something into two pieces +71002;Pushing something so that it almost falls off but doesn't +108371;Lifting something with something on it +161971;Bending something so that it deforms +10455;Stacking number of something +140246;Throwing something in the air and letting it fall +43019;Plugging something into something +182484;Pretending to put something on a surface +96931;Showing something behind something +87450;Putting something similar to other things that are already on the table +157726;Moving something towards the camera +186428;Pulling something out of something +93734;Dropping something in front of something +109114;Dropping something onto something +129597;Moving something closer to something +169389;Rolling something on a flat surface +17577;Pushing something so that it slightly moves +195556;Turning something upside down +15643;Dropping something next to something +11901;Pretending to pour something out of something, but something is empty +156830;Tearing something into two pieces +104718;Throwing something in the air and letting it fall +139120;Moving something and something closer to each other +82486;Tearing something just a little bit +164989;Scooping something up with something +127350;Lifting something with something on it +7826;Lifting something with something on it +198146;Pulling two ends of something so that it separates into two pieces +10210;Moving something and something away from each other +122746;Pushing something so that it almost falls off but doesn't +186152;Tipping something with something in it over, so something in it falls out +16241;Pretending to put something behind something +104948;Plugging something into something +220549;Picking something up +19191;Trying to bend something unbendable so nothing happens +96046;Covering something with something +89110;Holding something over something +201306;Moving something and something so they pass each other +198993;Plugging something into something +194478;Squeezing something +160007;Putting something that cannot actually stand upright upright on the table, so it falls on its side +58639;Moving something and something so they pass each other +27719;Plugging something into something but pulling it right out as you remove your hand +202214;Dropping something in front of something +216925;Bending something until it breaks +186386;Squeezing something +65535;Holding something next to something +110357;Taking something out of something +156798;Pretending to open something without actually opening it +142244;Putting something and something on the table +27261;Opening something +4915;Moving something closer to something +27328;Putting something into something +117426;Something colliding with something and both come to a halt +130204;Pushing something so that it almost falls off but doesn't +59707;Throwing something against something +47103;Moving something closer to something +11919;Throwing something +217159;Pretending to open something without actually opening it +5601;Folding something +211375;Dropping something onto something +179287;Putting something into something +33486;Bending something until it breaks +98228;Touching (without moving) part of something +32255;Hitting something with something +78998;Bending something until it breaks +72772;Moving something across a surface until it falls down +77910;Covering something with something +112741;Squeezing something +45524;Letting something roll down a slanted surface +42522;Tearing something just a little bit +214317;Trying to bend something unbendable so nothing happens +83725;Holding something next to something +44653;Showing that something is empty +209390;Moving something closer to something +96501;Turning something upside down +39729;Showing something on top of something +160814;Holding something next to something +204418;Dropping something onto something +32473;Putting something in front of something +108903;Putting something on a surface +169356;Wiping something off of something +204730;Folding something +152812;Pretending to open something without actually opening it +158380;Pushing something so that it falls off the table +56574;Pretending to put something into something +183445;Moving something down +146377;Dropping something into something +90271;Pulling two ends of something but nothing happens +77830;Moving something closer to something +147132;Tearing something into two pieces +79223;Taking one of many similar things on the table +200411;Turning something upside down +164207;Plugging something into something +115940;Moving something away from the camera +68596;Putting something next to something +89332;Pulling two ends of something so that it separates into two pieces +44322;Rolling something on a flat surface +80124;Tearing something into two pieces +149620;Stacking number of something +145078;Showing that something is empty +197567;Turning something upside down +124608;Putting something on the edge of something so it is not supported and falls down +184217;Folding something +118884;Taking one of many similar things on the table +141681;Turning something upside down +176528;Lifting something up completely, then letting it drop down +48285;Throwing something +148688;Moving something and something so they collide with each other +10021;Something falling like a feather or paper +19188;Covering something with something +6882;Putting something similar to other things that are already on the table +5337;Taking one of many similar things on the table +28275;Showing something next to something +80103;Stuffing something into something +18310;Poking something so that it falls over +46647;Putting something on a surface +188435;Throwing something against something +160497;Pulling something from behind of something +72873;Stuffing something into something +132056;Closing something +133351;Putting number of something onto something +52878;Putting something on a surface +210197;Dropping something into something +187632;Pushing something so that it falls off the table +198709;Attaching something to something +112755;Letting something roll down a slanted surface +153991;Pretending to open something without actually opening it +216377;Stuffing something into something +76179;Pushing something from left to right +157433;Tilting something with something on it slightly so it doesn't fall down +189266;Bending something so that it deforms +90185;Covering something with something +172341;Plugging something into something +118186;Pretending to put something behind something +44011;Hitting something with something +199084;Throwing something +172562;Opening something +216368;Pretending to sprinkle air onto something +202237;Pretending to put something on a surface +202343;Taking something from somewhere +166496;Something falling like a feather or paper +25646;Pretending to poke something +142488;Tearing something into two pieces +190315;Putting something into something +140373;Removing something, revealing something behind +3508;Moving something across a surface without it falling down +153886;Holding something next to something +84922;Closing something +206271;Uncovering something +159092;Turning something upside down +36902;Unfolding something +220566;Showing something next to something +128013;Pushing something from right to left +172659;Unfolding something +142869;Holding something over something +181015;Taking one of many similar things on the table +136204;Spinning something that quickly stops spinning +97787;Stacking number of something +192061;Moving something across a surface until it falls down +105855;Putting something into something +101620;Pushing something so that it almost falls off but doesn't +11342;Bending something until it breaks +79183;Pouring something into something +108851;Plugging something into something +149666;Showing something next to something +131334;Pretending to pick something up +118340;Showing something next to something +103603;Moving something and something closer to each other +58178;Holding something behind something +44001;Pouring something into something +11645;Moving something closer to something +96869;Plugging something into something +23040;Stuffing something into something +23939;Moving something closer to something +137244;Pretending to take something from somewhere +214560;Taking something out of something +216869;Throwing something in the air and catching it +6375;Holding something over something +41484;Taking something out of something +151410;Throwing something +143921;Pushing something so that it almost falls off but doesn't +28751;Pushing something so that it almost falls off but doesn't +201810;Dropping something next to something +16347;Pulling something from right to left +66152;Showing something on top of something +139109;Lifting something with something on it +172723;Pouring something out of something +64000;Opening something +125399;Something falling like a feather or paper +22441;Showing something to the camera +138094;Holding something behind something +7102;Taking something out of something +40012;Twisting (wringing) something wet until water comes out +125892;Poking something so it slightly moves +177617;Putting something on a surface +186048;Moving something towards the camera +67853;Pretending to squeeze something +138164;Holding something next to something +83423;Attaching something to something +156389;Putting something into something +201413;Pushing something so that it falls off the table +79480;Trying to bend something unbendable so nothing happens +120251;Pulling something from right to left +107358;Pulling something out of something +21841;Poking something so it slightly moves +66901;Pushing something off of something +158154;Unfolding something +79475;Taking something out of something +201184;Holding something behind something +15471;Turning something upside down +125903;Something colliding with something and both come to a halt +124021;Moving something away from something +69965;Holding something next to something +19554;Moving something away from something +212298;Pouring something into something +127375;Rolling something on a flat surface +119290;Moving something up +213818;Stacking number of something +59036;Putting something underneath something +18549;Uncovering something +216088;Approaching something with your camera +140565;Wiping something off of something +16915;Folding something +213595;Tearing something into two pieces +212435;Picking something up +55936;Moving something away from the camera +204979;Tipping something over +11465;Pretending to be tearing something that is not tearable +109879;Pretending to poke something +129493;Turning something upside down +99479;Lifting something up completely without letting it drop down +25129;Rolling something on a flat surface +196048;Putting something that cannot actually stand upright upright on the table, so it falls on its side +95674;Pretending to put something on a surface +48174;Covering something with something +159510;Tearing something into two pieces +68465;Putting something on a flat surface without letting it roll +56158;Tilting something with something on it until it falls off +16118;Spinning something that quickly stops spinning +61645;Pushing something so that it almost falls off but doesn't +123626;Attaching something to something +31876;Opening something +138476;Putting something similar to other things that are already on the table +94605;Tearing something into two pieces +109632;Putting something on a surface +194112;Moving something and something closer to each other +89597;Moving something and something closer to each other +163437;Hitting something with something +102320;Something falling like a rock +44918;Tearing something into two pieces +214276;Moving something and something closer to each other +49362;Plugging something into something but pulling it right out as you remove your hand +6101;Holding something behind something +196800;Showing something on top of something +153857;Picking something up +91925;Covering something with something +88391;Pouring something into something +130266;Plugging something into something +156823;Spinning something that quickly stops spinning +147521;Moving something away from something +34718;Showing something behind something +128331;Pouring something out of something +31349;Squeezing something +201271;Lifting something up completely without letting it drop down +205929;Folding something +120778;Folding something +105163;Putting something and something on the table +4249;Bending something until it breaks +171676;Lifting up one end of something, then letting it drop down +106802;Throwing something against something +134071;Showing something behind something +20408;Spinning something that quickly stops spinning +137410;Pretending to be tearing something that is not tearable +72683;Pulling something from left to right +139920;Spinning something that quickly stops spinning +128906;Moving something and something closer to each other +56892;Laying something on the table on its side, not upright +46695;Laying something on the table on its side, not upright +181170;Turning the camera downwards while filming something +85839;Squeezing something +209642;Pushing something with something +199152;Plugging something into something +186715;Stuffing something into something +113073;Poking something so it slightly moves +21895;Moving something away from the camera +200048;Opening something +26079;Putting something on a surface +133294;Pretending to put something on a surface +156826;Something falling like a feather or paper +154184;Moving something closer to something +83828;Something falling like a feather or paper +194813;Closing something +9204;Moving something closer to something +138499;Pulling something onto something +201936;Holding something next to something +164787;Moving part of something +196978;Squeezing something +200305;Showing that something is inside something +195441;Piling something up +174601;Moving something away from something +173213;Dropping something into something +39037;Holding something next to something +183492;Dropping something next to something +37796;Moving something and something so they collide with each other +205560;Showing something next to something +15765;Plugging something into something +68958;Moving something away from the camera +72359;Holding something behind something +49818;Poking something so lightly that it doesn't or almost doesn't move +189899;Dropping something onto something +158552;Putting something on a flat surface without letting it roll +176693;Folding something +187451;Plugging something into something +61961;Tipping something over +211221;Dropping something onto something +117230;Pushing something from right to left +7045;Tipping something with something in it over, so something in it falls out +155941;Throwing something in the air and catching it +44535;Folding something +184777;Stacking number of something +69684;Putting something next to something +202692;Tearing something into two pieces +150677;Pulling two ends of something but nothing happens +77232;Taking something out of something +33589;Pulling something from right to left +196115;Pretending to close something without actually closing it +91979;Picking something up +203987;Folding something +216927;Tearing something into two pieces +48926;Lifting up one end of something without letting it drop down +111525;Twisting (wringing) something wet until water comes out +169596;Moving something closer to something +11583;Pulling something from right to left +143778;Poking a stack of something so the stack collapses +174715;Pretending to be tearing something that is not tearable +90354;Throwing something +180242;Pushing something so that it slightly moves +971;Pouring something into something +215670;Moving something and something closer to each other +126295;Putting something similar to other things that are already on the table +206999;Tearing something into two pieces +44360;Showing something behind something +32999;Pretending to pick something up +179089;Plugging something into something +50841;Poking a hole into some substance +214983;Plugging something into something +198442;Tearing something into two pieces +65528;Taking something out of something +103923;Pretending to throw something +51154;Closing something +209850;Covering something with something +203245;Throwing something +16941;Hitting something with something +197246;Moving something closer to something +50735;Wiping something off of something +192625;Rolling something on a flat surface +16587;Moving something and something away from each other +28419;Pushing something from left to right +55465;Pushing something so that it slightly moves +149226;Turning something upside down +133753;Taking something from somewhere +42493;Putting something on a surface +17190;Holding something behind something +174903;Bending something so that it deforms +180725;Dropping something onto something +22097;Lifting something up completely, then letting it drop down +7812;Something falling like a feather or paper +48804;Moving something closer to something +63601;Pouring something into something +169304;Turning something upside down +86357;Poking something so lightly that it doesn't or almost doesn't move +104141;Showing that something is empty +71015;Moving something away from the camera +89295;Holding something in front of something +13002;Hitting something with something +209802;Pretending to be tearing something that is not tearable +89441;Moving something away from something +1543;Showing something behind something +191506;Letting something roll along a flat surface +9827;Pretending or trying and failing to twist something +90742;Moving something and something so they collide with each other +69341;Uncovering something +105768;Pulling something from behind of something +73574;Moving something across a surface until it falls down +50611;Stacking number of something +199303;Pulling something out of something +74083;Moving something and something so they pass each other +64989;Trying but failing to attach something to something because it doesn't stick +130796;Pretending to pick something up +89994;Tilting something with something on it slightly so it doesn't fall down +60324;Plugging something into something +179275;Pulling something from left to right +17041;Hitting something with something +111782;Uncovering something +62404;Pushing something from left to right +195125;Plugging something into something +146237;Opening something +188030;Plugging something into something but pulling it right out as you remove your hand +208241;Hitting something with something +13423;Lifting something with something on it +153953;Letting something roll along a flat surface +121030;Tearing something into two pieces +72536;Holding something behind something +66057;Pretending to spread air onto something +16685;Plugging something into something +92917;Picking something up +109492;Showing something on top of something +23075;Lifting up one end of something, then letting it drop down +124910;Pulling two ends of something so that it gets stretched +131794;Putting something into something +85860;Dropping something onto something +187541;Moving something and something closer to each other +141893;Throwing something in the air and catching it +144606;Throwing something in the air and letting it fall +43389;Laying something on the table on its side, not upright +75627;Dropping something in front of something +77935;Pretending to take something from somewhere +33920;Turning something upside down +54311;Twisting something +88768;Lifting something with something on it +175310;Moving something down +124770;Something falling like a feather or paper +48632;Scooping something up with something +21836;Moving something up +108059;Putting something behind something +119804;Closing something +207631;Hitting something with something +18194;Letting something roll along a flat surface +206718;Pulling something from right to left +14369;Spinning something that quickly stops spinning +79176;Covering something with something +82349;Tilting something with something on it until it falls off +160697;Touching (without moving) part of something +89794;Putting something similar to other things that are already on the table +70703;Burying something in something +212641;Dropping something into something +185452;Pulling something from right to left +32775;Tearing something into two pieces +21165;Pouring something onto something +66230;Pushing something off of something +41331;Pretending to take something from somewhere +13382;Squeezing something +166828;Rolling something on a flat surface +82338;Stuffing something into something +85148;Spinning something so it continues spinning +75306;Trying but failing to attach something to something because it doesn't stick +66201;Laying something on the table on its side, not upright +57982;Showing that something is empty +73041;Picking something up +3455;Something colliding with something and both come to a halt +6676;Something falling like a rock +137887;Lifting something up completely without letting it drop down +7033;Moving something closer to something +48967;Turning the camera left while filming something +163812;Opening something +138503;Pouring something into something +156014;Holding something +12156;Putting something, something and something on the table +170716;Putting something similar to other things that are already on the table +84621;Holding something in front of something +168830;Stacking number of something +146513;Moving something away from the camera +203988;Poking something so lightly that it doesn't or almost doesn't move +41488;Putting something on a surface +210508;Tearing something just a little bit +198779;Putting something on a surface +133855;Pulling something from left to right +158640;Scooping something up with something +200247;Tearing something just a little bit +131204;Moving something up +54255;Moving something up +210588;Touching (without moving) part of something +54493;Something falling like a rock +58111;Pushing something from right to left +183124;Squeezing something +24810;Putting something into something +61949;Something falling like a rock +217882;Turning something upside down +57171;Hitting something with something +21969;Lifting up one end of something, then letting it drop down +73731;Putting something into something +13148;Something falling like a feather or paper +37961;Putting something next to something +213181;Putting something similar to other things that are already on the table +214138;Holding something over something +65782;Opening something +88214;Pretending to close something without actually closing it +127041;Plugging something into something +87502;Pretending to scoop something up with something +6539;Moving away from something with your camera +207855;Something falling like a feather or paper +112859;Pushing something onto something +197144;Holding something in front of something +3122;Pushing something so that it almost falls off but doesn't +51318;Something falling like a feather or paper +43052;Approaching something with your camera +153472;Turning something upside down +130505;Moving something and something closer to each other +21540;Removing something, revealing something behind +209185;Taking something from somewhere +62342;Putting something next to something +163513;Trying to bend something unbendable so nothing happens +144519;Bending something until it breaks +99856;Spinning something so it continues spinning +166532;Pretending to put something behind something +195423;Stuffing something into something +19963;Tipping something over +126371;Putting something on a surface +48729;Opening something +41206;Putting something upright on the table +99112;Trying but failing to attach something to something because it doesn't stick +55637;Lifting something up completely without letting it drop down +156775;Moving something and something closer to each other +85552;Covering something with something +60804;Poking something so lightly that it doesn't or almost doesn't move +71449;Tearing something into two pieces +75640;Something falling like a feather or paper +138402;Moving something up +99485;Moving something closer to something +96670;Dropping something onto something +200750;Showing something on top of something +190277;Moving something down +161402;Putting something next to something +148421;Trying to bend something unbendable so nothing happens +154421;Moving something towards the camera +207294;Opening something +33083;Pretending to poke something +13705;Pulling something out of something +120026;Pushing something so that it almost falls off but doesn't +13347;Pouring something into something +9112;Uncovering something +180737;Something falling like a feather or paper +155693;Pushing something so that it almost falls off but doesn't +47591;Picking something up +213285;Pouring something out of something +121273;Pushing something so that it slightly moves +119041;Lifting up one end of something, then letting it drop down +126251;Stuffing something into something +136825;Moving something and something closer to each other +33479;Pulling something out of something +127845;Pulling something from right to left +21060;Uncovering something +197893;Taking something out of something +164752;Pretending to put something into something +112995;Putting something on a surface +188404;Pushing something so that it falls off the table +152286;Turning the camera left while filming something +220017;Unfolding something +41481;Pulling two ends of something so that it gets stretched +11630;Opening something +174440;Wiping something off of something +18414;Throwing something in the air and letting it fall +211160;Touching (without moving) part of something +59394;Putting something in front of something +39538;Throwing something in the air and letting it fall +126906;Pulling two ends of something but nothing happens +170689;Pushing something from left to right +128553;Something falling like a rock +212739;Holding something in front of something +54900;Showing that something is empty +126119;Moving something and something away from each other +182038;Showing something next to something +28692;Stacking number of something +160568;Pretending to be tearing something that is not tearable +141000;Holding something +108474;Pushing something so it spins +4908;Tearing something into two pieces +5159;Poking a stack of something without the stack collapsing +205670;Plugging something into something +1798;Taking something from somewhere +65743;Poking something so that it spins around +182456;Showing that something is inside something +8573;Stacking number of something +156143;Folding something +124650;Spilling something onto something +120390;Dropping something into something +161517;Taking one of many similar things on the table +164944;Holding something +101733;Moving something and something closer to each other +157547;Approaching something with your camera +21410;Covering something with something +190798;Moving something away from something +164225;Piling something up +180320;Tipping something with something in it over, so something in it falls out +69780;Throwing something in the air and catching it +174349;Something being deflected from something +214646;Holding something in front of something +189562;Squeezing something +13003;Showing something behind something +214758;Hitting something with something +185178;Poking something so it slightly moves +9724;Uncovering something +11427;Trying to bend something unbendable so nothing happens +66465;Showing that something is inside something +89717;Dropping something onto something +123857;Turning something upside down +97649;Showing something next to something +70665;Tilting something with something on it until it falls off +175745;Scooping something up with something +31030;Twisting (wringing) something wet until water comes out +103079;Tearing something into two pieces +58729;Putting something on a surface +189912;Showing something to the camera +13101;Squeezing something +124432;Rolling something on a flat surface +180676;Moving something across a surface without it falling down +35753;Covering something with something +145855;Lifting up one end of something, then letting it drop down +109115;Pretending to put something into something +190894;Something falling like a feather or paper +176131;Showing that something is inside something +23597;Attaching something to something +22832;Digging something out of something +206541;Trying to bend something unbendable so nothing happens +160060;Attaching something to something +30966;Wiping something off of something +30685;Scooping something up with something +17779;Plugging something into something +65450;Pretending to put something on a surface +124002;Putting something in front of something +126665;Pretending to sprinkle air onto something +16239;Something falling like a feather or paper +59242;Moving something and something closer to each other +93824;Plugging something into something but pulling it right out as you remove your hand +210476;Putting something on a flat surface without letting it roll +23352;Moving part of something +96041;Poking a stack of something without the stack collapsing +121550;Putting something next to something +101466;Letting something roll along a flat surface +168832;Letting something roll along a flat surface +201472;Poking something so lightly that it doesn't or almost doesn't move +63570;Pulling two ends of something but nothing happens +188644;Lifting something with something on it +71310;Unfolding something +49154;Throwing something in the air and catching it +130215;Pretending to take something from somewhere +129258;Twisting something +95175;Something falling like a feather or paper +217658;Pouring something out of something +23631;Moving something away from something +212482;Pretending to put something behind something +37290;Pushing something from right to left +83340;Pushing something so it spins +202449;Pretending to take something from somewhere +16182;Showing something behind something +216644;Opening something +54760;Showing something to the camera +206419;Holding something over something +204538;Moving something up +206973;Moving something and something closer to each other +99199;Tilting something with something on it until it falls off +205564;Pushing something so that it almost falls off but doesn't +191617;Pulling something from right to left +200888;Holding something over something +89263;Putting something that cannot actually stand upright upright on the table, so it falls on its side +16540;Pretending to open something without actually opening it +90504;Putting something underneath something +28380;Moving something and something closer to each other +164679;Putting something and something on the table +65821;Tearing something just a little bit +64563;Holding something next to something +116059;Tearing something into two pieces +108605;Closing something +82249;Tipping something with something in it over, so something in it falls out +162378;Bending something so that it deforms +110443;Pretending to open something without actually opening it +86620;Putting something and something on the table +160809;Tearing something just a little bit +208681;Plugging something into something but pulling it right out as you remove your hand +172928;Squeezing something +187234;Plugging something into something +174727;Pouring something into something +108052;Putting something similar to other things that are already on the table +100914;Spinning something that quickly stops spinning +213323;Something falling like a feather or paper +87143;Spinning something so it continues spinning +148240;Pushing something from right to left +197732;Attaching something to something +81917;Holding something +66933;Moving something away from something +147130;Poking a stack of something without the stack collapsing +55087;Turning the camera right while filming something +32716;Something falling like a feather or paper +31208;Holding something behind something +153497;Piling something up +148898;Letting something roll along a flat surface +209685;Opening something +29873;Moving something and something so they pass each other +94847;Pretending to be tearing something that is not tearable +63748;Moving something down +66805;Turning something upside down +47984;Lifting up one end of something, then letting it drop down +31804;Pretending to put something onto something +171195;Pretending to put something on a surface +20983;Showing that something is inside something +121752;Plugging something into something +195964;Moving something and something away from each other +149053;Unfolding something +165020;Turning something upside down +101414;Something falling like a rock +171977;Spinning something that quickly stops spinning +144316;Letting something roll along a flat surface +181700;Opening something +116505;Moving something closer to something +123485;Pushing something so that it slightly moves +217673;Laying something on the table on its side, not upright +213082;Putting something similar to other things that are already on the table +72762;Pulling something from right to left +18978;Turning something upside down +137860;Dropping something in front of something +37033;Tearing something into two pieces +44369;Dropping something onto something +217872;Something falling like a rock +75020;Twisting something +196936;Something falling like a rock +50311;Pretending to put something next to something +30497;Taking something from somewhere +12956;Plugging something into something +149609;Picking something up +127013;Putting something similar to other things that are already on the table +163283;Stuffing something into something +69285;Trying but failing to attach something to something because it doesn't stick +73400;Taking something out of something +15394;Plugging something into something +120836;Closing something +101062;Pretending to put something into something +6399;Squeezing something +187963;Putting number of something onto something +122405;Twisting (wringing) something wet until water comes out +208219;Taking one of many similar things on the table +161294;Pulling something out of something +113965;Poking something so it slightly moves +122117;Moving something and something away from each other +74400;Moving something and something so they collide with each other +71014;Lifting a surface with something on it until it starts sliding down +111329;Attaching something to something +148857;Pouring something into something +175206;Pretending to turn something upside down +133247;Uncovering something +75196;Something falling like a feather or paper +131792;Pretending to be tearing something that is not tearable +97941;Trying but failing to attach something to something because it doesn't stick +107732;Pushing something off of something +209368;Something falling like a rock +131235;Tilting something with something on it until it falls off +44654;Pretending to pick something up +28441;Pulling something from left to right +116982;Tearing something just a little bit +70715;Folding something +59155;Pretending to throw something +188807;Pulling something from left to right +113393;Stuffing something into something +96235;Dropping something into something +137917;Pretending to close something without actually closing it +102649;Uncovering something +130205;Tearing something into two pieces +61280;Moving something closer to something +92330;Stuffing something into something +136038;Closing something +157694;Pushing something with something +81285;Something falling like a feather or paper +93488;Putting something into something +46019;Picking something up +69829;Pushing something so that it almost falls off but doesn't +188275;Pretending to close something without actually closing it +1083;Moving something across a surface without it falling down +219863;Holding something next to something +9384;Pushing something off of something +150746;Moving something away from something +164521;Pulling something out of something +5824;Tearing something into two pieces +61035;Moving something away from something +153444;Tearing something into two pieces +50748;Tipping something over +220720;Taking one of many similar things on the table +1303;Something falling like a feather or paper +165403;Dropping something next to something +113252;Dropping something onto something +191577;Holding something next to something +129541;Holding something behind something +128961;Opening something +136316;Putting something into something +104062;Pretending to pick something up +97804;Pulling two ends of something but nothing happens +115476;Pulling something from left to right +121492;Tearing something into two pieces +108194;Putting something next to something +180813;Pouring something out of something +76009;Something colliding with something and both come to a halt +138776;Moving something closer to something +22779;Putting number of something onto something +61491;Moving something and something closer to each other +145690;Lifting something up completely, then letting it drop down +203091;Plugging something into something +192659;Something colliding with something and both are being deflected +25054;Picking something up +62469;Rolling something on a flat surface +15458;Poking something so lightly that it doesn't or almost doesn't move +84193;Stacking number of something +43546;Taking something from somewhere +122516;Putting something into something +210893;Moving something up +44382;Pushing something so that it falls off the table +123954;Lifting something up completely without letting it drop down +81331;Putting something in front of something +21735;Showing something on top of something +59283;Rolling something on a flat surface +138334;Unfolding something +8526;Plugging something into something but pulling it right out as you remove your hand +70605;Unfolding something +71584;Pushing something so that it falls off the table +72597;Putting something into something +106589;Pretending to pour something out of something, but something is empty +214600;Holding something behind something +117376;Poking something so it slightly moves +128637;Throwing something onto a surface +87117;Pretending to put something on a surface +63650;Putting something similar to other things that are already on the table +139977;Putting something upright on the table +90481;Pushing something from right to left +35106;Piling something up +146525;Turning the camera left while filming something +80949;Taking something out of something +209884;Pretending to put something behind something +108885;Pretending to squeeze something +101937;Closing something +115417;Moving something and something so they pass each other +4528;Lifting up one end of something, then letting it drop down +174391;Folding something +165758;Pouring something into something +106554;Showing something next to something +130253;Pouring something out of something +20271;Pushing something with something +100424;Scooping something up with something +195528;Holding something over something +182713;Plugging something into something but pulling it right out as you remove your hand +73274;Pushing something so that it falls off the table +91800;Plugging something into something but pulling it right out as you remove your hand +10719;Dropping something in front of something +211936;Something falling like a feather or paper +139256;Putting something similar to other things that are already on the table +78079;Moving something closer to something +7871;Showing something behind something +100408;Putting something upright on the table +142808;Attaching something to something +7766;Tearing something into two pieces +68918;Pushing something so that it falls off the table +180541;Moving something and something closer to each other +50355;Throwing something in the air and catching it +79691;Unfolding something +104204;Something falling like a feather or paper +180128;Something falling like a feather or paper +143883;Something falling like a feather or paper +170735;Tearing something into two pieces +80381;Pulling something from left to right +81197;Taking something out of something +192863;Twisting something +11341;Plugging something into something +165111;Picking something up +152583;Pushing something so that it slightly moves +187768;Plugging something into something but pulling it right out as you remove your hand +132319;Pushing something so that it almost falls off but doesn't +176501;Dropping something next to something +172417;Moving something and something away from each other +64614;Squeezing something +151915;Pushing something so that it almost falls off but doesn't +174960;Pretending to squeeze something +20645;Showing something on top of something +88296;Laying something on the table on its side, not upright +2930;Something being deflected from something +80948;Showing that something is inside something +209629;Holding something over something +210223;Dropping something next to something +75559;Trying but failing to attach something to something because it doesn't stick +31693;Tearing something just a little bit +183718;Tearing something into two pieces +86270;Dropping something behind something +70850;Lifting something with something on it +88949;Putting something and something on the table +127225;Pretending to be tearing something that is not tearable +26255;Spinning something so it continues spinning +38289;Piling something up +97897;Showing something behind something +61810;Putting something similar to other things that are already on the table +119180;Tearing something into two pieces +161526;Taking something from somewhere +196923;Lifting something up completely, then letting it drop down +13963;Trying but failing to attach something to something because it doesn't stick +45364;Wiping something off of something +34091;Pulling two ends of something so that it gets stretched +137704;Pushing something so that it falls off the table +20907;Moving part of something +87990;Something falling like a feather or paper +161862;Putting something similar to other things that are already on the table +116039;Moving something down +152905;Moving part of something +107821;Pushing something off of something +177714;Tearing something into two pieces +191684;Tearing something into two pieces +132818;Pushing something with something +4085;Taking something out of something +31996;Trying to bend something unbendable so nothing happens +105897;Pulling something out of something +176817;Tearing something into two pieces +111467;Lifting a surface with something on it until it starts sliding down +23047;Pretending to be tearing something that is not tearable +92134;Holding something in front of something +45680;Spinning something so it continues spinning +58834;Tearing something just a little bit +187535;Pretending to open something without actually opening it +130490;Spinning something so it continues spinning +171478;Tearing something into two pieces +33196;Showing something behind something +84648;Putting something in front of something +137668;Putting something on a surface +213009;Moving something and something closer to each other +17477;Holding something +153740;Rolling something on a flat surface +35712;Poking something so lightly that it doesn't or almost doesn't move +139581;Pouring something into something until it overflows +42396;Lifting something with something on it +31784;Putting something upright on the table +213127;Putting something on a surface +18765;Pouring something into something +132048;Tearing something into two pieces +132905;Putting something on a surface +172309;Pretending to take something from somewhere +83990;Scooping something up with something +211074;Tipping something over +85598;Plugging something into something but pulling it right out as you remove your hand +118382;Putting something similar to other things that are already on the table +119774;Showing something on top of something +199085;Pushing something from right to left +96790;Something falling like a rock +46816;Touching (without moving) part of something +76101;Pouring something into something until it overflows +218340;Squeezing something +65172;Plugging something into something but pulling it right out as you remove your hand +63519;Moving something across a surface until it falls down +103811;Something colliding with something and both are being deflected +10149;Putting something on a surface +82728;Putting something in front of something +150009;Putting something on a flat surface without letting it roll +79719;Removing something, revealing something behind +175412;Lifting up one end of something, then letting it drop down +192891;Putting something into something +61590;Throwing something against something +184806;Putting something on the edge of something so it is not supported and falls down +8145;Tilting something with something on it slightly so it doesn't fall down +159790;Holding something behind something +147622;Putting something similar to other things that are already on the table +77787;Pulling something from behind of something +219821;Showing something behind something +154254;Pretending to close something without actually closing it +140450;Pushing something so that it slightly moves +16692;Picking something up +59592;Holding something next to something +107124;Putting something next to something +159089;Moving something and something closer to each other +18639;Showing that something is inside something +215267;Moving something up +188520;Pulling something from left to right +198;Dropping something next to something +132267;Dropping something onto something +160177;Putting something in front of something +102414;Taking something from somewhere +198255;Dropping something into something +126689;Plugging something into something +200530;Pulling two ends of something so that it separates into two pieces +212675;Pulling something from left to right +108258;Spreading something onto something +219246;Pouring something out of something +116619;Something colliding with something and both are being deflected +139377;Pushing something so that it falls off the table +163446;Pushing something so it spins +23557;Folding something +118567;Spinning something so it continues spinning +127629;Pretending to be tearing something that is not tearable +64046;Letting something roll along a flat surface +47757;Plugging something into something +34003;Holding something next to something +27932;Dropping something behind something +17402;Moving something closer to something +122815;Putting something on a surface +138851;Pouring something into something +116730;Putting something on a surface +111025;Dropping something onto something +219422;Showing something next to something +134211;Showing something on top of something +32505;Attaching something to something +134234;Holding something over something +139078;Putting something in front of something +115776;Poking something so that it falls over +42541;Pushing something so that it falls off the table +215475;Attaching something to something +187870;Attaching something to something +24607;Covering something with something +109000;Hitting something with something +78248;Throwing something onto a surface +179059;Throwing something against something +125603;Holding something in front of something +138831;Tilting something with something on it slightly so it doesn't fall down +30326;Hitting something with something +161037;Stuffing something into something +156399;Unfolding something +65246;Opening something +181319;Pretending to open something without actually opening it +17484;Rolling something on a flat surface +179297;Throwing something against something +53563;Pulling something from left to right +24924;Putting something and something on the table +100690;Pushing something so that it slightly moves +10511;Showing something behind something +169557;Hitting something with something +47418;Pretending to throw something +39765;Pushing something so that it falls off the table +212277;Squeezing something +91034;Pushing something from right to left +129730;Showing that something is inside something +86614;Stuffing something into something +161445;Putting something next to something +68739;Pushing something so it spins +129046;Plugging something into something +112921;Showing something next to something +70492;Poking something so that it spins around +106451;Plugging something into something +177120;Pushing something so that it slightly moves +187367;Opening something +69480;Rolling something on a flat surface +54636;Tearing something into two pieces +186331;Moving something and something away from each other +32485;Pouring something into something +98106;Taking something from somewhere +193836;Moving something away from something +87659;Taking one of many similar things on the table +3981;Putting something onto something +58087;Picking something up +187996;Trying to bend something unbendable so nothing happens +98614;Something falling like a rock +32573;Dropping something next to something +155282;Pushing something from right to left +53991;Hitting something with something +68039;Pretending or failing to wipe something off of something +107586;Laying something on the table on its side, not upright +94910;Pushing something so it spins +81779;Showing something to the camera +99305;Covering something with something +174084;Showing something behind something +1019;Pretending to open something without actually opening it +97639;Something falling like a rock +99594;Unfolding something +19556;Holding something next to something +77568;Dropping something next to something +84615;Pouring something onto something +84319;Pulling something from left to right +56253;Moving something away from something +111096;Turning something upside down +138186;Pulling two ends of something but nothing happens +105852;Squeezing something +215608;Laying something on the table on its side, not upright +13398;Pretending to turn something upside down +106299;Opening something +102598;Taking something out of something +82176;Letting something roll along a flat surface +4905;Throwing something +173054;Moving something up +143116;Pretending to open something without actually opening it +91845;Covering something with something +44980;Pushing something from right to left +24171;Rolling something on a flat surface +135056;Moving something and something away from each other +91813;Moving something up +179732;Something falling like a rock +60636;Holding something next to something +172220;Rolling something on a flat surface +87794;Putting something into something +3214;Pushing something so it spins +92934;Showing something behind something +50255;Turning something upside down +147588;Pulling something out of something +208074;Pushing something with something +33424;Showing something to the camera +171314;Putting something into something +141491;Covering something with something +176785;Showing that something is empty +96126;Spilling something behind something +30185;Spinning something that quickly stops spinning +117181;Picking something up +134173;Pulling two ends of something but nothing happens +118056;Showing something behind something +77980;Letting something roll along a flat surface +55614;Holding something behind something +139415;Something falling like a feather or paper +191116;Moving something down +149867;Dropping something into something +179854;Lifting up one end of something, then letting it drop down +195664;Tearing something just a little bit +73727;Letting something roll along a flat surface +63006;Tearing something into two pieces +172311;Turning something upside down +120945;Taking one of many similar things on the table +112439;Pulling something from right to left +94852;Pushing something so that it slightly moves +4433;Taking one of many similar things on the table +73617;Plugging something into something but pulling it right out as you remove your hand +161418;Tearing something into two pieces +86950;Showing something to the camera +15675;Pushing something from left to right +55145;Squeezing something +78228;Showing something to the camera +68627;Putting something upright on the table +107864;Moving part of something +164320;Plugging something into something +211642;Scooping something up with something +55096;Pushing something with something +14026;Something falling like a rock +164333;Putting something into something +23329;Pretending to be tearing something that is not tearable +101540;Lifting something up completely without letting it drop down +203759;Pushing something with something +188389;Putting something into something +65383;Pushing something from right to left +203265;Trying to bend something unbendable so nothing happens +113183;Moving something away from something +197453;Showing that something is empty +177208;Putting something into something +32524;Tearing something into two pieces +175627;Putting something onto something else that cannot support it so it falls down +161385;Moving something and something away from each other +94634;Dropping something onto something +159173;Throwing something +219258;Tearing something into two pieces +155997;Letting something roll along a flat surface +136867;Throwing something onto a surface +28625;Moving something up +67318;Letting something roll along a flat surface +86349;Uncovering something +33393;Putting something that cannot actually stand upright upright on the table, so it falls on its side +77156;Putting something next to something +91666;Pouring something into something +97328;Putting something behind something +196100;Bending something until it breaks +27259;Something falling like a feather or paper +25448;Moving something and something closer to each other +6818;Pushing something from right to left +187498;Something falling like a feather or paper +145062;Lifting a surface with something on it until it starts sliding down +164251;Trying but failing to attach something to something because it doesn't stick +71156;Tilting something with something on it until it falls off +142875;Something falling like a rock +31535;Moving something across a surface without it falling down +19009;Putting something, something and something on the table +140310;Putting something on a surface +71925;Holding something in front of something +169282;Folding something +7162;Tilting something with something on it slightly so it doesn't fall down +184249;Letting something roll along a flat surface +131055;Pushing something from right to left +79516;Dropping something onto something +118063;Pretending to throw something +75534;Pouring something out of something +34489;Touching (without moving) part of something +136715;Tipping something over +113841;Unfolding something +186643;Piling something up +163452;Pouring something into something +6986;Trying to bend something unbendable so nothing happens +128024;Moving something away from the camera +83278;Something falling like a feather or paper +217076;Pretending to take something from somewhere +115981;Trying but failing to attach something to something because it doesn't stick +165003;Tearing something just a little bit +162719;Tearing something into two pieces +21929;Pretending to pour something out of something, but something is empty +62676;Holding something over something +199030;Something being deflected from something +216060;Lifting something with something on it +142972;Something falling like a feather or paper +62846;Turning the camera downwards while filming something +137006;Pulling two ends of something so that it gets stretched +58564;Stuffing something into something +23653;Pretending to be tearing something that is not tearable +115598;Turning something upside down +117280;Tearing something into two pieces +193091;Something falling like a rock +192164;Piling something up +169909;Something falling like a feather or paper +191755;Showing something to the camera +212485;Taking something from somewhere +30071;Lifting up one end of something, then letting it drop down +112083;Taking one of many similar things on the table +147409;Putting something similar to other things that are already on the table +37874;Putting something into something +3908;Pretending to open something without actually opening it +123599;Dropping something into something +107580;Trying but failing to attach something to something because it doesn't stick +110387;Dropping something onto something +44032;Wiping something off of something +198396;Turning something upside down +8070;Touching (without moving) part of something +212060;Tearing something into two pieces +176208;Trying to bend something unbendable so nothing happens +107252;Moving something and something away from each other +43447;Something falling like a feather or paper +151307;Moving something and something away from each other +57296;Plugging something into something +107027;Pretending to pick something up +103813;Showing something next to something +151618;Lifting up one end of something without letting it drop down +216018;Tilting something with something on it until it falls off +63583;Moving something away from something +211254;Tearing something into two pieces +20118;Moving away from something with your camera +115700;Pushing something from left to right +68675;Opening something +207878;Turning something upside down +64318;Picking something up +188690;Taking something out of something +59032;Pulling something from right to left +149375;Holding something +145786;Spreading something onto something +149539;Pouring something into something +83854;Plugging something into something +215173;Poking something so it slightly moves +177953;Putting something upright on the table +64468;Holding something +90194;Moving something and something away from each other +3415;Bending something until it breaks +220283;Dropping something into something +61855;Putting something on a surface +60059;Pretending to put something next to something +62274;Taking one of many similar things on the table +62720;Moving part of something +46862;Moving part of something +203658;Moving something and something so they collide with each other +198420;Putting something on a surface +13049;Moving something up +166559;Throwing something in the air and letting it fall +36237;Pretending to turn something upside down +79603;Letting something roll along a flat surface +96896;Moving something closer to something +138111;Closing something +88557;Moving something and something so they collide with each other +197400;Pretending to scoop something up with something +16497;Burying something in something +27947;Throwing something in the air and letting it fall +201405;Pushing something so that it almost falls off but doesn't +147246;Putting something, something and something on the table +122217;Closing something +7623;Lifting something with something on it +188098;Putting something in front of something +41945;Holding something over something +66772;Stuffing something into something +199623;Spinning something so it continues spinning +62889;Tearing something into two pieces +58920;Squeezing something +161222;Moving something across a surface without it falling down +14135;Putting something and something on the table +30322;Lifting something with something on it +161899;Pushing something so that it falls off the table +127392;Pretending to take something from somewhere +49289;Plugging something into something +8226;Putting something into something +127534;Holding something over something +140176;Pouring something into something +199253;Putting something that cannot actually stand upright upright on the table, so it falls on its side +159332;Trying to bend something unbendable so nothing happens +60100;Tearing something into two pieces +100445;Folding something +52501;Putting something on a surface +160244;Stacking number of something +110420;Showing something next to something +88263;Squeezing something +55223;Holding something +214003;Dropping something next to something +202505;Spilling something onto something +190216;Folding something +41315;Taking one of many similar things on the table +1150;Pushing something so it spins +93072;Moving something and something away from each other +35324;Showing something behind something +97091;Trying to bend something unbendable so nothing happens +158090;Tearing something into two pieces +73194;Putting something that can't roll onto a slanted surface, so it stays where it is +200177;Moving something up +85737;Folding something +72240;Holding something behind something +135113;Tipping something with something in it over, so something in it falls out +197078;Pretending to pour something out of something, but something is empty +213241;Trying but failing to attach something to something because it doesn't stick +151449;Putting something on a surface +45758;Lifting something up completely, then letting it drop down +14015;Putting something behind something +191185;Holding something over something +187752;Pushing something with something +65701;Tearing something just a little bit +60819;Poking something so lightly that it doesn't or almost doesn't move +77102;Throwing something +150061;Plugging something into something +90725;Laying something on the table on its side, not upright +198490;Lifting something up completely, then letting it drop down +210567;Lifting a surface with something on it until it starts sliding down +116426;Pretending to put something into something +1462;Attaching something to something +53474;Something falling like a feather or paper +204357;Putting something similar to other things that are already on the table +168573;Squeezing something +34117;Pulling two ends of something so that it separates into two pieces +22437;Failing to put something into something because something does not fit +29018;Putting something, something and something on the table +146705;Moving something across a surface until it falls down +64324;Showing something on top of something +37007;Tearing something into two pieces +99612;Lifting up one end of something, then letting it drop down +78204;Dropping something next to something +117868;Moving something across a surface until it falls down +186899;Tearing something just a little bit +203489;Spinning something so it continues spinning +44406;Putting something next to something +161328;Putting something on a surface +101449;Pushing something off of something +187233;Stuffing something into something +103815;Folding something +159150;Moving something up +31660;Stuffing something into something +30466;Stacking number of something +26843;Pushing something so that it falls off the table +162037;Holding something next to something +156546;Pulling two ends of something so that it separates into two pieces +116914;Something falling like a feather or paper +117176;Picking something up +124070;Dropping something onto something +103518;Showing something on top of something +208230;Pulling two ends of something but nothing happens +137765;Dropping something onto something +86637;Holding something over something +171370;Pushing something so that it slightly moves +108586;Taking something out of something +41249;Pouring something into something +213507;Taking something out of something +58280;Putting number of something onto something +200509;Approaching something with your camera +3260;Lifting something up completely, then letting it drop down +42177;Pouring something into something +166339;Poking a stack of something without the stack collapsing +167514;Pulling two ends of something but nothing happens +39198;Pretending to open something without actually opening it +79046;Putting something next to something +71625;Taking something from somewhere +37671;Showing something to the camera +31446;Putting something in front of something +117936;Moving something and something closer to each other +126474;Holding something next to something +116692;Poking something so it slightly moves +23893;Pretending to be tearing something that is not tearable +57743;Plugging something into something but pulling it right out as you remove your hand +199092;Holding something in front of something +21123;Moving part of something +201451;Closing something +210355;Pretending to scoop something up with something +71668;Squeezing something +209997;Plugging something into something +53556;Tipping something over +205027;Pulling two ends of something so that it gets stretched +134548;Lifting something with something on it +168345;Dropping something onto something +170166;Something falling like a feather or paper +84181;Lifting up one end of something without letting it drop down +149201;Pretending or failing to wipe something off of something +27619;Digging something out of something +167776;Putting something similar to other things that are already on the table +28662;Covering something with something +34883;Opening something +47942;Pushing something so that it slightly moves +30343;Moving something up +88578;Pretending to put something onto something +160733;Hitting something with something +209601;Poking something so lightly that it doesn't or almost doesn't move +186561;Putting something into something +28117;Uncovering something +66161;Showing that something is inside something +89913;Showing something behind something +5564;Lifting something up completely, then letting it drop down +42779;Pulling something from right to left +27200;Pouring something into something +101962;Moving something away from the camera +119381;Squeezing something +190263;Spinning something that quickly stops spinning +124266;Something colliding with something and both come to a halt +114643;Throwing something +21649;Pushing something so that it falls off the table +210200;Digging something out of something +179008;Pouring something out of something +42288;Pouring something into something +125083;Moving something away from the camera +32729;Showing something behind something +150675;Moving something down +5400;Lifting a surface with something on it but not enough for it to slide down +206830;Moving something and something closer to each other +72075;Putting something that cannot actually stand upright upright on the table, so it falls on its side +155087;Pretending to take something from somewhere +181027;Something falling like a rock +216070;Showing something behind something +75444;Moving something and something away from each other +145251;Holding something +213773;Pushing something with something +62230;Tilting something with something on it slightly so it doesn't fall down +60808;Pushing something from left to right +4157;Pretending to pick something up +216919;Pretending to pick something up +90433;Stuffing something into something +74291;Tearing something into two pieces +201106;Something falling like a feather or paper +53428;Pouring something into something +44917;Moving something and something closer to each other +57968;Stacking number of something +133991;Letting something roll along a flat surface +97338;Putting something onto something +175955;Holding something in front of something +153578;Pretending to be tearing something that is not tearable +87856;Bending something so that it deforms +100288;Hitting something with something +71354;Dropping something in front of something +191777;Pretending to put something on a surface +156234;Twisting something +95154;Taking one of many similar things on the table +184428;Bending something until it breaks +160317;Taking one of many similar things on the table +90996;Pushing something so that it slightly moves +162714;Lifting something with something on it +34947;Holding something next to something +27805;Throwing something +194224;Pushing something from right to left +210304;Showing that something is inside something +91928;Moving something down +63140;Moving something towards the camera +64413;Pushing something so it spins +112410;Letting something roll along a flat surface +35147;Failing to put something into something because something does not fit +121891;Showing that something is empty +11169;Approaching something with your camera +17357;Putting something into something +143281;Tipping something over +80093;Showing something next to something +50685;Turning something upside down +159388;Putting something next to something +184219;Showing that something is empty +26815;Pretending to open something without actually opening it +74790;Something falling like a rock +4821;Something falling like a rock +217160;Lifting up one end of something without letting it drop down +48003;Moving something and something away from each other +176672;Putting something on a surface +202375;Wiping something off of something +212673;Dropping something onto something +33979;Folding something +3644;Pushing something so that it slightly moves +24073;Attaching something to something +24690;Uncovering something +100699;Wiping something off of something +27956;Moving something up +174214;Lifting something up completely, then letting it drop down +15709;Stuffing something into something +203251;Taking one of many similar things on the table +220370;Throwing something +105041;Poking something so lightly that it doesn't or almost doesn't move +83979;Spinning something that quickly stops spinning +57523;Pretending to be tearing something that is not tearable +71404;Uncovering something +60080;Pulling something from left to right +55697;Squeezing something +44910;Letting something roll along a flat surface +72591;Unfolding something +77762;Pretending to squeeze something +142657;Moving something across a surface without it falling down +126965;Rolling something on a flat surface +136569;Something falling like a feather or paper +62207;Something falling like a feather or paper +86429;Moving something and something closer to each other +101747;Throwing something in the air and letting it fall +67518;Putting something into something +107476;Putting something that cannot actually stand upright upright on the table, so it falls on its side +1407;Piling something up +8216;Pretending to take something from somewhere +82726;Dropping something onto something +125019;Pouring something into something +97354;Squeezing something +63968;Dropping something into something +105793;Turning the camera upwards while filming something +86649;Pretending to close something without actually closing it +42525;Dropping something into something +138514;Putting something and something on the table +113561;Pretending to put something behind something +67276;Lifting something with something on it +51160;Moving part of something +213282;Hitting something with something +175820;Throwing something +1961;Holding something behind something +169722;Throwing something +166747;Turning something upside down +171134;Putting something that cannot actually stand upright upright on the table, so it falls on its side +51301;Pushing something so that it falls off the table +153642;Pulling something out of something +47449;Stacking number of something +128370;Taking something out of something +41169;Approaching something with your camera +39586;Tearing something into two pieces +72825;Tearing something just a little bit +37573;Squeezing something +120680;Putting something underneath something +93098;Pushing something so that it falls off the table +110161;Plugging something into something +71489;Pouring something onto something +2097;Piling something up +119873;Twisting (wringing) something wet until water comes out +138703;Taking something from somewhere +65572;Rolling something on a flat surface +126154;Showing something next to something +142756;Moving something closer to something +147070;Putting something similar to other things that are already on the table +179887;Putting something on a surface +94489;Putting something next to something +66993;Moving something and something away from each other +6961;Tearing something just a little bit +57058;Moving something up +79729;Tipping something over +19259;Laying something on the table on its side, not upright +127419;Putting something underneath something +121745;Poking something so lightly that it doesn't or almost doesn't move +136124;Pretending to pour something out of something, but something is empty +198716;Squeezing something +73910;Putting something into something +19423;Moving something away from something +172957;Pretending to take something from somewhere +56967;Piling something up +133360;Tearing something into two pieces +51270;Twisting something +32428;Holding something over something +58785;Moving something and something closer to each other +141970;Lifting a surface with something on it until it starts sliding down +99867;Stacking number of something +170653;Holding something next to something +183408;Putting something on a surface +186121;Pretending to be tearing something that is not tearable +184893;Putting something and something on the table +112323;Uncovering something +89556;Moving part of something +114730;Pretending to put something on a surface +181293;Showing something behind something +196452;Holding something over something +9080;Bending something so that it deforms +34496;Dropping something onto something +98544;Holding something behind something +144569;Taking something out of something +63602;Moving something closer to something +167125;Turning something upside down +191051;Pouring something into something +167752;Putting something into something +135514;Pushing something with something +65427;Pouring something into something +209236;Putting something similar to other things that are already on the table +137706;Piling something up +86633;Something being deflected from something +146711;Lifting something up completely without letting it drop down +91590;Showing something next to something +76363;Something falling like a feather or paper +72099;Pretending to put something behind something +175102;Taking something out of something +59684;Tearing something just a little bit +153093;Stacking number of something +99598;Pushing something from left to right +45298;Failing to put something into something because something does not fit +79772;Pulling something from right to left +8045;Pushing something from left to right +59194;Tearing something just a little bit +50378;Rolling something on a flat surface +64004;Holding something +118951;Picking something up +152771;Moving something across a surface until it falls down +1049;Pouring something into something +198670;Lifting up one end of something, then letting it drop down +97987;Throwing something in the air and letting it fall +149191;Pretending to open something without actually opening it +61325;Showing that something is empty +3640;Showing something on top of something +214197;Showing something on top of something +158350;Taking something out of something +107625;Plugging something into something +196012;Bending something so that it deforms +97163;Something falling like a rock +61629;Holding something in front of something +207805;Pretending to poke something +31595;Dropping something onto something +214679;Showing something on top of something +152830;Dropping something onto something +192377;Tilting something with something on it until it falls off +6063;Pulling two ends of something but nothing happens +83105;Pretending to take something out of something +60928;Plugging something into something +160203;Lifting a surface with something on it until it starts sliding down +97646;Moving something and something closer to each other +20863;Something colliding with something and both come to a halt +8047;Tearing something into two pieces +67625;Turning something upside down +202523;Moving something and something closer to each other +122801;Holding something next to something +209747;Moving something closer to something +67909;Holding something over something +174546;Taking something from somewhere +148311;Pushing something so that it falls off the table +35930;Letting something roll along a flat surface +37712;Something falling like a feather or paper +109069;Turning something upside down +92084;Picking something up +219609;Pouring something onto something +212862;Dropping something next to something +130589;Throwing something in the air and catching it +123718;Showing something behind something +82490;Turning something upside down +176982;Putting something on a surface +34021;Moving something away from something +135231;Pouring something into something +100972;Approaching something with your camera +27717;Folding something +202852;Lifting something with something on it +83738;Turning something upside down +157590;Approaching something with your camera +113985;Pulling something from left to right +92332;Pretending to pour something out of something, but something is empty +181201;Opening something +160226;Rolling something on a flat surface +187403;Pretending to close something without actually closing it +56313;Putting something underneath something +84524;Letting something roll along a flat surface +51665;Moving something away from something +71587;Plugging something into something +53263;Something colliding with something and both come to a halt +206087;Moving something closer to something +162699;Wiping something off of something +118246;Putting something on a surface +36708;Something falling like a feather or paper +219628;Putting something and something on the table +189829;Plugging something into something +214001;Putting something similar to other things that are already on the table +170311;Pulling something from right to left +47213;Pretending to put something into something +93831;Moving something and something closer to each other +168001;Throwing something in the air and catching it +62032;Putting something upright on the table +60284;Putting something, something and something on the table +142081;Putting something into something +142334;Covering something with something +57648;Putting something onto something +171526;Spreading something onto something +165926;Pouring something into something +204699;Uncovering something +18079;Pretending to open something without actually opening it +194812;Dropping something onto something +118191;Putting something upright on the table +100078;Turning something upside down +92106;Moving something closer to something +152000;Spinning something that quickly stops spinning +27039;Pretending to open something without actually opening it +38026;Tearing something into two pieces +21325;Spinning something so it continues spinning +24841;Dropping something into something +189807;Pretending to open something without actually opening it +172236;Moving away from something with your camera +46700;Holding something behind something +558;Pretending to be tearing something that is not tearable +729;Lifting something up completely without letting it drop down +19954;Lifting something up completely without letting it drop down +202748;Putting something on a surface +135391;Showing something next to something +64200;Pouring something into something +24510;Uncovering something +199724;Moving something and something closer to each other +19138;Turning the camera downwards while filming something +48529;Moving something away from something +37044;Rolling something on a flat surface +53903;Putting something similar to other things that are already on the table +96400;Showing something behind something +34397;Moving something closer to something +175030;Laying something on the table on its side, not upright +54674;Taking one of many similar things on the table +118593;Pretending to take something out of something +106521;Tearing something into two pieces +217043;Spilling something onto something +133647;Folding something +100490;Dropping something into something +81352;Scooping something up with something +68977;Poking something so lightly that it doesn't or almost doesn't move +85818;Something falling like a rock +187570;Pretending to pour something out of something, but something is empty +183970;Moving something and something so they collide with each other +6874;Holding something next to something +71820;Poking something so lightly that it doesn't or almost doesn't move +165559;Something falling like a feather or paper +158848;Something falling like a feather or paper +34392;Throwing something onto a surface +146679;Something falling like a feather or paper +136525;Taking something out of something +18892;Moving something away from something +92359;Moving something across a surface until it falls down +198826;Moving something across a surface until it falls down +5290;Putting something next to something +171731;Twisting (wringing) something wet until water comes out +28764;Dropping something onto something +129895;Plugging something into something +136512;Pretending to pick something up +197129;Putting something on a flat surface without letting it roll +80101;Plugging something into something but pulling it right out as you remove your hand +30909;Holding something next to something +131906;Opening something +91790;Failing to put something into something because something does not fit +81928;Pulling two ends of something so that it gets stretched +154021;Putting something into something +23811;Rolling something on a flat surface +186951;Tipping something over +132849;Throwing something +199926;Wiping something off of something +199859;Taking something out of something +176880;Rolling something on a flat surface +218534;Pretending to sprinkle air onto something +177210;Unfolding something +172037;Dropping something behind something +84534;Pushing something so that it almost falls off but doesn't +56009;Moving something down +209115;Wiping something off of something +149414;Pushing something with something +167375;Moving something away from something +149592;Pushing something from right to left +74050;Something falling like a rock +15001;Picking something up +139541;Holding something behind something +13611;Spilling something next to something +219096;Poking something so it slightly moves +160990;Holding something behind something +47767;Holding something next to something +63856;Covering something with something +12992;Tearing something into two pieces +117546;Moving part of something +8582;Lifting something up completely, then letting it drop down +191994;Pretending to pick something up +72931;Squeezing something +135013;Covering something with something +193355;Tearing something into two pieces +161262;Pretending to pour something out of something, but something is empty +19216;Throwing something in the air and catching it +77845;Covering something with something +166702;Twisting something +157910;Pretending to turn something upside down +60906;Pulling two ends of something so that it separates into two pieces +72036;Pushing something from right to left +76118;Pushing something from right to left +169193;Throwing something against something +29424;Putting something and something on the table +172844;Twisting something +78827;Twisting something +139568;Pulling two ends of something but nothing happens +25319;Plugging something into something but pulling it right out as you remove your hand +123530;Showing something on top of something +104755;Putting something into something +109219;Showing something next to something +152116;Taking one of many similar things on the table +138632;Moving something up +27676;Moving something up +80270;Moving something and something closer to each other +40850;Showing something behind something +141497;Something falling like a rock +6924;Pretending to open something without actually opening it +123213;Trying to pour something into something, but missing so it spills next to it +68052;Pouring something into something +165530;Something falling like a rock +111968;Poking a stack of something so the stack collapses +37946;Spinning something so it continues spinning +116539;Pushing something from right to left +120654;Letting something roll along a flat surface +17678;Sprinkling something onto something +171077;Putting something similar to other things that are already on the table +207758;Turning something upside down +216229;Pretending to poke something +133856;Pulling something from behind of something +69998;Pulling two ends of something but nothing happens +148242;Unfolding something +157342;Putting something upright on the table +111408;Dropping something onto something +161486;Putting something upright on the table +143057;Pouring something into something +30374;Picking something up +16755;Pushing something so that it slightly moves +25030;Covering something with something +41345;Showing that something is inside something +132424;Moving something across a surface until it falls down +83270;Pulling two ends of something so that it gets stretched +196799;Touching (without moving) part of something +140107;Covering something with something +149870;Pretending to sprinkle air onto something +72199;Pretending to open something without actually opening it +191183;Squeezing something +63390;Moving something across a surface until it falls down +73672;Plugging something into something but pulling it right out as you remove your hand +195462;Poking something so lightly that it doesn't or almost doesn't move +167737;Burying something in something +161648;Pushing something with something +141875;Pulling two ends of something so that it separates into two pieces +183421;Lifting a surface with something on it until it starts sliding down +93786;Holding something next to something +123481;Taking one of many similar things on the table +206943;Pushing something from left to right +214106;Pushing something so that it falls off the table +182317;Throwing something onto a surface +157642;Dropping something onto something +203445;Digging something out of something +189195;Squeezing something +125076;Lifting something with something on it +96074;Attaching something to something +119069;Tilting something with something on it slightly so it doesn't fall down +57644;Pushing something with something +207340;Pretending to open something without actually opening it +195856;Pretending to pour something out of something, but something is empty +196706;Holding something behind something +93141;Something falling like a feather or paper +76444;Pouring something onto something +147788;Moving part of something +107237;Holding something over something +144812;Squeezing something +196491;Putting something similar to other things that are already on the table +144898;Dropping something in front of something +106685;Putting something onto something else that cannot support it so it falls down +62989;Pulling two ends of something but nothing happens +81676;Putting number of something onto something +119919;Tearing something into two pieces +67505;Tearing something just a little bit +147042;Pushing something from right to left +142726;Attaching something to something +189679;Pushing something so that it falls off the table +213686;Showing something next to something +48915;Twisting something +43171;Dropping something onto something +5002;Showing something behind something +82154;Tilting something with something on it until it falls off +144383;Tearing something just a little bit +62931;Wiping something off of something +3623;Laying something on the table on its side, not upright +65767;Showing that something is empty +20091;Taking something from somewhere +107459;Pretending to poke something +76115;Approaching something with your camera +43499;Piling something up +129666;Holding something +124159;Pushing something so that it slightly moves +83782;Hitting something with something +192894;Something falling like a feather or paper +200929;Something falling like a rock +164161;Taking one of many similar things on the table +52205;Putting something that cannot actually stand upright upright on the table, so it falls on its side +42595;Plugging something into something +28945;Picking something up +26882;Picking something up +93678;Twisting something +128730;Opening something +115213;Something falling like a feather or paper +53838;Rolling something on a flat surface +102872;Moving something and something away from each other +171105;Turning the camera left while filming something +60534;Burying something in something +177116;Something falling like a rock +11904;Pretending to take something from somewhere +167946;Tearing something into two pieces +124961;Tearing something just a little bit +100647;Moving part of something +36025;Letting something roll down a slanted surface +115116;Putting something similar to other things that are already on the table +123111;Trying but failing to attach something to something because it doesn't stick +184912;Picking something up +86985;Moving something away from something +83173;Putting something into something +60481;Poking a stack of something without the stack collapsing +50922;Pushing something with something +18156;Failing to put something into something because something does not fit +98093;Moving something and something so they collide with each other +127760;Pretending to take something out of something +194752;Folding something +77308;Tearing something into two pieces +25766;Stacking number of something +186315;Pushing something from left to right +99006;Trying to bend something unbendable so nothing happens +5692;Putting something on a surface +203713;Pulling two ends of something so that it separates into two pieces +109749;Taking something out of something +191126;Stacking number of something +11708;Touching (without moving) part of something +48577;Lifting up one end of something without letting it drop down +43649;Pretending to throw something +114963;Uncovering something +37615;Lifting something up completely, then letting it drop down +55913;Pushing something so that it falls off the table +119150;Taking something out of something +24421;Pretending to open something without actually opening it +172127;Throwing something onto a surface +193293;Holding something in front of something +93090;Holding something next to something +38652;Pretending to pick something up +128545;Pushing something so that it almost falls off but doesn't +173499;Holding something next to something +199532;Rolling something on a flat surface +79137;Holding something next to something +110613;Showing something next to something +57592;Tearing something into two pieces +16018;Hitting something with something +96748;Something being deflected from something +39576;Showing something behind something +155912;Taking something out of something +36291;Taking something from somewhere +212419;Holding something next to something +141894;Scooping something up with something +44783;Turning something upside down +24449;Dropping something behind something +22736;Showing that something is empty +8766;Moving something away from something +130663;Showing something next to something +37558;Moving something and something away from each other +183785;Stacking number of something +92700;Pushing something from right to left +217468;Plugging something into something +6817;Showing that something is empty +46113;Moving something and something so they collide with each other +162585;Pretending to scoop something up with something +113118;Hitting something with something +213979;Stacking number of something +85745;Holding something next to something +129513;Pretending to pick something up +44752;Letting something roll up a slanted surface, so it rolls back down +192042;Opening something +53894;Folding something +89761;Pulling two ends of something but nothing happens +64638;Spinning something so it continues spinning +80788;Moving part of something +183798;Squeezing something +115766;Spinning something that quickly stops spinning +213025;Moving something and something away from each other +205879;Covering something with something +124126;Taking one of many similar things on the table +176037;Rolling something on a flat surface +146256;Something falling like a rock +178630;Pretending to turn something upside down +104738;Pretending or trying and failing to twist something +59329;Moving something and something closer to each other +162260;Turning something upside down +46635;Dropping something into something +164489;Taking something out of something +209505;Pushing something from right to left +111970;Rolling something on a flat surface +30790;Holding something next to something +18603;Showing something behind something +3956;Moving something closer to something +189246;Something colliding with something and both come to a halt +206461;Putting something into something +750;Turning the camera left while filming something +182765;Covering something with something +3373;Putting something and something on the table +220073;Squeezing something +151494;Throwing something +21698;Putting something on a surface +196176;Rolling something on a flat surface +190772;Opening something +24439;Throwing something +154125;Pulling something from left to right +176841;Putting something and something on the table +45443;Pushing something so that it slightly moves +104892;Taking something out of something +125140;Showing something on top of something +193274;Moving something and something closer to each other +215163;Spreading something onto something +50012;Poking something so that it falls over +9673;Pulling something from right to left +69855;Hitting something with something +35874;Plugging something into something but pulling it right out as you remove your hand +193626;Moving something and something away from each other +69658;Putting something onto something +84586;Lifting something up completely without letting it drop down +103821;Showing something on top of something +42216;Tearing something into two pieces +106695;Folding something +159634;Pushing something so it spins +139611;Something falling like a rock +121014;Holding something over something +110585;Holding something next to something +182054;Lifting up one end of something, then letting it drop down +162708;Moving something closer to something +31670;Pouring something out of something +774;Putting something into something +58025;Taking one of many similar things on the table +165598;Moving something across a surface until it falls down +216185;Tearing something just a little bit +181314;Putting something, something and something on the table +162424;Piling something up +167342;Throwing something in the air and catching it +24251;Pulling something from left to right +176740;Showing something next to something +198370;Touching (without moving) part of something +18450;Something falling like a feather or paper +141114;Spinning something so it continues spinning +50183;Tipping something over +98283;Squeezing something +160200;Showing that something is empty +186040;Squeezing something +38648;Letting something roll along a flat surface +43762;Picking something up +45003;Turning something upside down +157858;Throwing something onto a surface +140659;Moving something and something closer to each other +32214;Spilling something onto something +178505;Turning something upside down +159940;Pulling something from right to left +182666;Taking one of many similar things on the table +55261;Putting something and something on the table +65529;Showing that something is empty +97236;Plugging something into something but pulling it right out as you remove your hand +184644;Pretending to squeeze something +130513;Showing something to the camera +100686;Touching (without moving) part of something +186308;Putting something in front of something +198942;Dropping something behind something +138159;Pretending to poke something +195373;Spinning something so it continues spinning +7944;Holding something over something +58343;Plugging something into something +39598;Showing something behind something +112446;Putting something behind something +55298;Putting something behind something +144835;Moving something and something closer to each other +208135;Tearing something just a little bit +203221;Pretending to take something out of something +81482;Rolling something on a flat surface +32495;Putting something into something +139469;Opening something +130489;Pretending to pick something up +208120;Covering something with something +202347;Lifting something up completely, then letting it drop down +21824;Putting something on a surface +213223;Dropping something into something +38294;Closing something +60458;Piling something up +41280;Spreading something onto something +41867;Putting something similar to other things that are already on the table +64579;Moving something down +196401;Dropping something onto something +192896;Moving part of something +140038;Taking one of many similar things on the table +98115;Turning something upside down +3282;Wiping something off of something +67027;Pulling something from right to left +183780;Turning something upside down +78010;Moving something and something closer to each other +16898;Opening something +103346;Poking something so it slightly moves +20565;Moving something across a surface until it falls down +194373;Showing something on top of something +135210;Holding something next to something +90984;Moving something and something closer to each other +22102;Moving something and something closer to each other +212072;Poking something so it slightly moves +16183;Plugging something into something +162783;Pretending to close something without actually closing it +144269;Holding something behind something +139065;Lifting something with something on it +160643;Throwing something in the air and catching it +198719;Showing that something is empty +116966;Twisting (wringing) something wet until water comes out +93887;Stacking number of something +163312;Poking something so lightly that it doesn't or almost doesn't move +193039;Closing something +100017;Plugging something into something +170173;Something falling like a feather or paper +124804;Pretending to put something on a surface +31008;Pushing something so that it slightly moves +26893;Poking something so it slightly moves +98955;Lifting something with something on it +46715;Letting something roll up a slanted surface, so it rolls back down +30534;Showing that something is empty +155858;Putting something that cannot actually stand upright upright on the table, so it falls on its side +109490;Taking something from somewhere +9941;Throwing something +68984;Pretending to sprinkle air onto something +191851;Pretending or trying and failing to twist something +208058;Pulling two ends of something but nothing happens +186410;Throwing something in the air and letting it fall +99557;Pretending to be tearing something that is not tearable +9626;Moving something and something away from each other +46606;Dropping something onto something +51672;Putting something that cannot actually stand upright upright on the table, so it falls on its side +44662;Throwing something in the air and letting it fall +40344;Pulling something out of something +46570;Pouring something into something +75222;Covering something with something +130219;Putting something behind something +207764;Holding something +120877;Attaching something to something +34723;Picking something up +1400;Something falling like a rock +12712;Pouring something into something +58859;Pulling two ends of something but nothing happens +28971;Something being deflected from something +162840;Uncovering something +119299;Moving something up +166492;Squeezing something +174359;Pulling something from right to left +214808;Pulling two ends of something but nothing happens +179236;Pretending to pick something up +136075;Turning something upside down +85140;Spinning something so it continues spinning +180247;Scooping something up with something +175138;Holding something next to something +88440;Tearing something into two pieces +165277;Dropping something behind something +101175;Letting something roll along a flat surface +114293;Poking something so lightly that it doesn't or almost doesn't move +119036;Uncovering something +72401;Pretending to put something behind something +196145;Rolling something on a flat surface +104706;Showing something behind something +187208;Moving something closer to something +106726;Showing that something is inside something +24503;Something colliding with something and both are being deflected +160682;Tearing something into two pieces +29058;Moving something closer to something +128987;Turning the camera left while filming something +146432;Moving something and something away from each other +167564;Pouring something onto something +32204;Attaching something to something +102838;Showing a photo of something to the camera +34549;Pushing something from right to left +178286;Opening something +110771;Taking something out of something +204077;Pulling something from left to right +129651;Lifting something up completely without letting it drop down +34811;Squeezing something +5023;Putting something similar to other things that are already on the table +118585;Bending something until it breaks +102573;Moving away from something with your camera +157007;Pulling something from left to right +120281;Putting something next to something +157927;Holding something over something +23829;Pretending to be tearing something that is not tearable +137630;Twisting something +10884;Something falling like a rock +81141;Dropping something behind something +129998;Something falling like a feather or paper +68055;Moving something away from something +181757;Squeezing something +151013;Spilling something onto something +28278;Holding something over something +36455;Burying something in something +135079;Pouring something into something +128392;Turning something upside down +120050;Something colliding with something and both come to a halt +95735;Taking something out of something +45603;Moving something and something away from each other +81637;Lifting something with something on it +75386;Lifting up one end of something without letting it drop down +130287;Pretending to poke something +160066;Lifting something with something on it +62948;Pretending to be tearing something that is not tearable +199614;Laying something on the table on its side, not upright +139653;Twisting (wringing) something wet until water comes out +219674;Something being deflected from something +209792;Plugging something into something +166182;Pretending or trying and failing to twist something +28845;Squeezing something +8399;Laying something on the table on its side, not upright +171873;Poking something so it slightly moves +40308;Pretending to open something without actually opening it +42637;Pretending to take something from somewhere +170117;Picking something up +24087;Something being deflected from something +182097;Something falling like a feather or paper +145804;Pulling something from right to left +55011;Moving something away from the camera +158770;Taking one of many similar things on the table +161968;Holding something over something +25052;Trying but failing to attach something to something because it doesn't stick +110265;Putting something into something +70628;Plugging something into something but pulling it right out as you remove your hand +126999;Putting something upright on the table +175459;Trying but failing to attach something to something because it doesn't stick +77067;Taking one of many similar things on the table +34239;Moving something down +220340;Pushing something with something +46203;Moving something and something closer to each other +86302;Something falling like a rock +200678;Plugging something into something +237;Holding something behind something +34810;Moving away from something with your camera +173925;Twisting something +103244;Showing that something is empty +41283;Holding something +79381;Putting something similar to other things that are already on the table +218928;Showing something next to something +118818;Pretending to sprinkle air onto something +30646;Taking something from somewhere +27934;Uncovering something +37932;Putting something on a flat surface without letting it roll +163945;Laying something on the table on its side, not upright +135915;Spinning something that quickly stops spinning +190296;Tearing something into two pieces +37187;Pushing something so it spins +149300;Letting something roll up a slanted surface, so it rolls back down +156314;Hitting something with something +216850;Moving something and something away from each other +187837;Covering something with something +81974;Pouring something into something until it overflows +200039;Tearing something into two pieces +141063;Tearing something into two pieces +73907;Dropping something next to something +99459;Plugging something into something +154819;Lifting something up completely without letting it drop down +16335;Wiping something off of something +192779;Plugging something into something +159223;Putting something that cannot actually stand upright upright on the table, so it falls on its side +151782;Putting something similar to other things that are already on the table +108443;Holding something next to something +140708;Putting something onto something +44168;Lifting up one end of something without letting it drop down +196621;Showing that something is inside something +216824;Closing something +170732;Tearing something just a little bit +31433;Tilting something with something on it until it falls off +39293;Tearing something just a little bit +193559;Holding something over something +156930;Moving something and something closer to each other +51643;Uncovering something +4178;Pushing something with something +102383;Pouring something into something until it overflows +112898;Moving something and something away from each other +178016;Pretending to pick something up +49417;Lifting up one end of something without letting it drop down +150809;Stuffing something into something +56890;Squeezing something +167297;Plugging something into something +56112;Pushing something from left to right +156448;Pouring something out of something +143828;Touching (without moving) part of something +30774;Pulling something out of something +30043;Showing something to the camera +210636;Stuffing something into something +79278;Putting something into something +106957;Dropping something in front of something +184654;Lifting something with something on it +113312;Putting something on the edge of something so it is not supported and falls down +147858;Trying to pour something into something, but missing so it spills next to it +151231;Showing that something is empty +172054;Touching (without moving) part of something +43377;Showing something on top of something +77319;Attaching something to something +52555;Something falling like a feather or paper +78349;Pouring something into something +192422;Taking one of many similar things on the table +185842;Trying to bend something unbendable so nothing happens +101011;Lifting a surface with something on it until it starts sliding down +103763;Moving something and something away from each other +200156;Pouring something into something +118127;Pulling something from right to left +125874;Putting something, something and something on the table +145871;Moving something away from something +196672;Lifting up one end of something without letting it drop down +192324;Something falling like a rock +61432;Pulling something from left to right +96147;Something falling like a feather or paper +158890;Pushing something with something +182849;Pushing something so that it slightly moves +26540;Turning something upside down +79561;Taking one of many similar things on the table +136930;Spinning something so it continues spinning +220326;Pretending to be tearing something that is not tearable +194968;Moving something down +15873;Showing something behind something +155698;Covering something with something +116771;Showing something next to something +54695;Pushing something so that it slightly moves +401;Moving something away from something +136913;Stacking number of something +217445;Pushing something from right to left +36595;Pretending to be tearing something that is not tearable +57638;Scooping something up with something +47039;Taking one of many similar things on the table +6974;Letting something roll down a slanted surface +157712;Turning the camera upwards while filming something +3241;Moving something across a surface until it falls down +63279;Poking a hole into something soft +42198;Pretending to poke something +122568;Attaching something to something +103211;Pretending to poke something +1444;Moving something and something closer to each other +38480;Putting something in front of something +168619;Showing something next to something +9224;Opening something +86077;Stacking number of something +199425;Showing something behind something +162209;Bending something until it breaks +44669;Tearing something just a little bit +177646;Tearing something just a little bit +65791;Picking something up +108520;Pretending to put something onto something +179125;Pushing something so that it slightly moves +162179;Moving something and something closer to each other +92524;Pulling something out of something +180206;Showing that something is empty +29351;Tearing something just a little bit +83728;Attaching something to something +44681;Dropping something onto something +44900;Tearing something just a little bit +205223;Spinning something so it continues spinning +74118;Pouring something onto something +201579;Letting something roll down a slanted surface +72555;Something falling like a feather or paper +190618;Stacking number of something +65180;Pouring something into something until it overflows +125119;Tearing something into two pieces +210596;Attaching something to something +20498;Pretending to be tearing something that is not tearable +26429;Tilting something with something on it until it falls off +11415;Stuffing something into something +52988;Hitting something with something +151856;Something being deflected from something +15864;Trying but failing to attach something to something because it doesn't stick +171782;Rolling something on a flat surface +186530;Throwing something in the air and letting it fall +211425;Bending something until it breaks +12601;Rolling something on a flat surface +185530;Pushing something so that it falls off the table +205604;Tilting something with something on it until it falls off +216653;Stuffing something into something +168017;Lifting up one end of something without letting it drop down +27899;Pretending to close something without actually closing it +47803;Dropping something behind something +157727;Moving something away from something +158836;Pulling something from left to right +65548;Pushing something from right to left +96891;Something colliding with something and both are being deflected +188380;Holding something +159886;Bending something so that it deforms +114237;Trying but failing to attach something to something because it doesn't stick +150322;Folding something +136083;Moving something closer to something +208477;Moving something closer to something +76752;Pulling something out of something +161363;Throwing something in the air and catching it +47450;Something falling like a rock +212358;Putting something and something on the table +147121;Moving something and something away from each other +65690;Pretending to close something without actually closing it +183071;Turning something upside down +127922;Unfolding something +58743;Covering something with something +193187;Pretending to take something out of something +62957;Plugging something into something +13104;Taking something out of something +137566;Pretending to pick something up +124313;Hitting something with something +150297;Tearing something just a little bit +169455;Pulling something from right to left +192243;Putting something that can't roll onto a slanted surface, so it slides down +109730;Moving something and something away from each other +188816;Letting something roll along a flat surface +90757;Poking something so lightly that it doesn't or almost doesn't move +81178;Holding something +44760;Letting something roll up a slanted surface, so it rolls back down +169986;Trying to bend something unbendable so nothing happens +77613;Covering something with something +203179;Pushing something so that it almost falls off but doesn't +22771;Showing that something is empty +58822;Letting something roll along a flat surface +119393;Turning something upside down +91466;Letting something roll along a flat surface +87086;Pretending to throw something +135447;Putting something similar to other things that are already on the table +92126;Taking one of many similar things on the table +12906;Moving something and something away from each other +146973;Putting something similar to other things that are already on the table +169420;Twisting (wringing) something wet until water comes out +94793;Tilting something with something on it until it falls off +184839;Moving something closer to something +107324;Showing that something is empty +51156;Putting something and something on the table +3665;Pretending to turn something upside down +72667;Taking one of many similar things on the table +61571;Turning something upside down +30643;Dropping something into something +156085;Holding something behind something +19793;Stacking number of something +171229;Burying something in something +112473;Unfolding something +6636;Pushing something from left to right +7185;Pretending to put something on a surface +97729;Pretending to squeeze something +41753;Poking something so that it falls over +132228;Dropping something into something +18676;Throwing something in the air and catching it +195190;Pulling something out of something +29379;Plugging something into something +71204;Pushing something so that it falls off the table +29300;Moving something across a surface without it falling down +141946;Covering something with something +55080;Spinning something so it continues spinning +148825;Pouring something into something +217524;Pulling two ends of something but nothing happens +142566;Plugging something into something +116579;Pushing something from right to left +199258;Tipping something over +96712;Putting something similar to other things that are already on the table +46643;Sprinkling something onto something +36917;Pretending to spread air onto something +114571;Trying but failing to attach something to something because it doesn't stick +90498;Burying something in something +164553;Pretending to be tearing something that is not tearable +72740;Hitting something with something +183554;Something falling like a feather or paper +128420;Pretending to take something from somewhere +156998;Tilting something with something on it until it falls off +56914;Pushing something so that it falls off the table +220765;Tearing something into two pieces +126810;Letting something roll along a flat surface +149743;Something falling like a feather or paper +95220;Spinning something that quickly stops spinning +33774;Putting something on a surface +196601;Turning something upside down +175997;Putting something on a surface +122080;Hitting something with something +182209;Tearing something into two pieces +154690;Moving something and something so they collide with each other +193081;Putting something in front of something +5557;Putting something in front of something +183829;Squeezing something +55450;Taking one of many similar things on the table +189038;Moving something and something away from each other +120992;Tearing something just a little bit +95883;Burying something in something +122984;Throwing something against something +4671;Hitting something with something +75792;Sprinkling something onto something +75694;Uncovering something +65316;Pushing something from right to left +64725;Spinning something that quickly stops spinning +87433;Tipping something over +171860;Moving something closer to something +177265;Tipping something over +84655;Something falling like a feather or paper +120409;Pretending to put something on a surface +50714;Opening something +179652;Putting something on a surface +133358;Dropping something next to something +94527;Poking a hole into something soft +157081;Pretending to open something without actually opening it +33460;Putting something next to something +81004;Pretending to be tearing something that is not tearable +170048;Unfolding something +192666;Showing something on top of something +10565;Taking something out of something +212649;Spinning something that quickly stops spinning +118513;Moving something closer to something +172035;Putting something next to something +16905;Something falling like a rock +96304;Pretending to pick something up +163276;Picking something up +198398;Putting something next to something +82132;Moving something towards the camera +1199;Holding something next to something +32856;Pushing something from left to right +205925;Pulling something from left to right +2557;Folding something +37238;Putting something underneath something +205150;Throwing something in the air and catching it +20685;Pretending to be tearing something that is not tearable +115004;Poking something so that it falls over +133548;Plugging something into something but pulling it right out as you remove your hand +120160;Squeezing something +54585;Dropping something next to something +143192;Letting something roll along a flat surface +87138;Plugging something into something +202014;Touching (without moving) part of something +56026;Tilting something with something on it until it falls off +11117;Dropping something onto something +86517;Taking something out of something +163111;Dropping something behind something +188705;Showing something on top of something +5375;Pushing something so that it slightly moves +48369;Pretending to be tearing something that is not tearable +51001;Moving something away from something +153304;Something falling like a feather or paper +72572;Moving something across a surface without it falling down +59997;Putting something into something +209364;Pushing something with something +163924;Opening something +126280;Attaching something to something +177566;Stacking number of something +48713;Taking one of many similar things on the table +33120;Pushing something from left to right +1530;Pushing something so that it slightly moves +137759;Plugging something into something +39003;Pushing something from right to left +172825;Picking something up +71367;Covering something with something +154963;Twisting something +89473;Holding something over something +30301;Turning the camera left while filming something +14563;Pretending to scoop something up with something +198558;Throwing something +106137;Squeezing something +186169;Dropping something onto something +103595;Moving something and something closer to each other +176191;Holding something next to something +202596;Pulling two ends of something but nothing happens +185339;Twisting something +89768;Something falling like a feather or paper +19602;Pouring something onto something +146731;Pushing something so that it almost falls off but doesn't +46552;Pouring something onto something +69272;Pulling something out of something +50179;Something falling like a feather or paper +161101;Dropping something onto something +216415;Tipping something over +65539;Burying something in something +22760;Taking something out of something +143844;Taking one of many similar things on the table +142437;Pushing something from left to right +192241;Showing that something is inside something +41556;Rolling something on a flat surface +100766;Showing something to the camera +31217;Pulling something from left to right +97324;Moving something and something away from each other +172004;Dropping something behind something +113213;Pushing something from left to right +154726;Showing something next to something +44920;Moving something up +165995;Letting something roll along a flat surface +181839;Plugging something into something +89946;Pretending to throw something +214320;Tearing something into two pieces +93120;Putting something next to something +13205;Holding something next to something +76801;Holding something next to something +99713;Spilling something onto something +85331;Putting something on a surface +172816;Pretending to be tearing something that is not tearable +27077;Lifting something up completely without letting it drop down +26405;Showing that something is inside something +41071;Poking something so that it falls over +125990;Moving something and something closer to each other +4563;Moving part of something +187844;Showing something on top of something +144509;Tilting something with something on it slightly so it doesn't fall down +203453;Poking something so that it spins around +104109;Putting something and something on the table +23237;Uncovering something +185694;Dropping something into something +184586;Holding something +130200;Lifting something with something on it +182280;Pushing something so that it falls off the table +215544;Moving something away from something +124523;Turning the camera upwards while filming something +66275;Picking something up +41976;Pulling something from left to right +39519;Pretending to put something next to something +203494;Pulling something from left to right +94149;Holding something next to something +117898;Bending something until it breaks +150415;Putting something and something on the table +202948;Putting something on a surface +155854;Tearing something into two pieces +41642;Poking something so lightly that it doesn't or almost doesn't move +26994;Pushing something so it spins +117737;Picking something up +180350;Something being deflected from something +54722;Something falling like a rock +46615;Uncovering something +136955;Putting something similar to other things that are already on the table +123671;Pushing something so that it almost falls off but doesn't +34507;Moving part of something +96625;Tearing something into two pieces +175213;Putting something similar to other things that are already on the table +195381;Piling something up +143714;Tearing something into two pieces +91069;Throwing something in the air and catching it +186337;Dropping something in front of something +69552;Trying to bend something unbendable so nothing happens +134136;Plugging something into something +182459;Pouring something onto something +11798;Moving something and something closer to each other +93480;Taking something out of something +38059;Holding something behind something +40377;Putting something similar to other things that are already on the table +125855;Tearing something just a little bit +112795;Pulling two ends of something but nothing happens +11828;Trying to bend something unbendable so nothing happens +111191;Something falling like a rock +20014;Dropping something onto something +181756;Throwing something in the air and catching it +207900;Pushing something so that it slightly moves +182931;Stacking number of something +87007;Stacking number of something +19503;Laying something on the table on its side, not upright +91243;Stacking number of something +214643;Throwing something in the air and letting it fall +67892;Taking something out of something +187205;Pouring something into something +47719;Pretending to pour something out of something, but something is empty +31281;Pretending or failing to wipe something off of something +203754;Bending something so that it deforms +13063;Poking something so that it falls over +49621;Pouring something into something +153150;Putting something into something +160000;Pushing something from left to right +141082;Moving something and something away from each other +69926;Pushing something so that it slightly moves +209943;Turning the camera right while filming something +219514;Moving something and something closer to each other +85813;Putting something upright on the table +45119;Moving something and something away from each other +115829;Tipping something over +170394;Spreading something onto something +87511;Covering something with something +190279;Pushing something so it spins +19930;Covering something with something +175241;Hitting something with something +111917;Moving something up +210358;Twisting something +178140;Turning something upside down +78907;Wiping something off of something +112869;Taking one of many similar things on the table +3809;Something falling like a rock +158616;Showing something on top of something +136752;Putting something in front of something +128569;Pretending to open something without actually opening it +27683;Twisting something +134693;Putting something into something +41166;Dropping something onto something +212428;Dropping something onto something +89950;Tilting something with something on it until it falls off +133532;Piling something up +159856;Something colliding with something and both are being deflected +123227;Holding something over something +203646;Something falling like a feather or paper +145356;Closing something +145669;Pretending to take something out of something +174937;Covering something with something +15988;Poking something so lightly that it doesn't or almost doesn't move +148974;Pushing something from right to left +15188;Taking something from somewhere +73704;Opening something +102471;Putting something in front of something +25920;Lifting something with something on it +199610;Moving something across a surface until it falls down +10379;Wiping something off of something +214259;Uncovering something +219485;Holding something behind something +69897;Letting something roll down a slanted surface +138564;Tearing something just a little bit +179290;Pretending to pick something up +180647;Pretending or failing to wipe something off of something +48014;Showing something behind something +155201;Showing something on top of something +40248;Dropping something into something +116226;Showing something behind something +91501;Pouring something into something +88308;Putting something similar to other things that are already on the table +24487;Dropping something onto something +133100;Holding something +142560;Putting something, something and something on the table +218045;Showing something behind something +171471;Pushing something so that it slightly moves +111757;Something being deflected from something +60705;Throwing something onto a surface +141407;Plugging something into something but pulling it right out as you remove your hand +51844;Taking something from somewhere +159652;Lifting something up completely, then letting it drop down +120473;Rolling something on a flat surface +5093;Tearing something just a little bit +121422;Moving something and something away from each other +53247;Spinning something so it continues spinning +112450;Throwing something against something +217881;Folding something +109976;Putting something that can't roll onto a slanted surface, so it slides down +118928;Pouring something into something +77189;Holding something +178717;Pushing something so that it almost falls off but doesn't +188331;Putting something on a flat surface without letting it roll +67577;Putting something on a surface +141850;Approaching something with your camera +156190;Moving something and something away from each other +86384;Squeezing something +153475;Pulling something from right to left +161827;Unfolding something +108612;Moving something and something closer to each other +97735;Moving something and something away from each other +41281;Unfolding something +82220;Plugging something into something +27632;Stuffing something into something +43894;Pretending to open something without actually opening it +27343;Pushing something with something +218516;Putting something on a surface +80314;Moving something away from something +219082;Showing something to the camera +167784;Spinning something that quickly stops spinning +18027;Bending something until it breaks +170785;Taking something from somewhere +5640;Holding something next to something +106420;Bending something so that it deforms +135329;Pulling two ends of something so that it gets stretched +7139;Tearing something into two pieces +20148;Pretending to close something without actually closing it +212849;Stacking number of something +85471;Pretending to pick something up +39309;Pulling something onto something +188961;Poking something so that it falls over +41950;Showing something behind something +130989;Pretending to put something on a surface +158844;Pretending to take something from somewhere +170204;Moving something and something closer to each other +120410;Pushing something so it spins +211324;Throwing something in the air and catching it +179096;Pretending to put something on a surface +127103;Throwing something against something +55814;Pretending to close something without actually closing it +132386;Opening something +45101;Putting something into something +55809;Lifting something up completely without letting it drop down +132778;Dropping something onto something +15312;Dropping something in front of something +7094;Rolling something on a flat surface +167540;Showing something next to something +10910;Spilling something next to something +78635;Plugging something into something +48623;Taking one of many similar things on the table +215862;Spinning something so it continues spinning +51395;Putting number of something onto something +164968;Poking something so it slightly moves +139382;Dropping something onto something +220681;Showing something next to something +174339;Stuffing something into something +201932;Taking something out of something +131067;Closing something +188591;Showing that something is empty +215914;Moving part of something +57378;Plugging something into something +156309;Tilting something with something on it until it falls off +166703;Piling something up +184690;Showing something on top of something +130019;Spinning something that quickly stops spinning +71509;Showing that something is inside something +213745;Pushing something with something +151935;Throwing something against something +215567;Moving something down +65839;Attaching something to something +219432;Throwing something against something +7558;Rolling something on a flat surface +19228;Moving something and something away from each other +69422;Pushing something so that it falls off the table +61632;Putting something and something on the table +117173;Bending something until it breaks +27397;Spilling something onto something +212848;Poking a hole into some substance +154904;Letting something roll down a slanted surface +6786;Putting something behind something +125577;Dropping something onto something +153588;Putting something on a surface +102301;Pushing something from right to left +126435;Moving part of something +118162;Piling something up +30021;Taking something from somewhere +42703;Uncovering something +157291;Scooping something up with something +85197;Pushing something so that it falls off the table +162525;Showing something on top of something +174237;Pushing something so that it falls off the table +120854;Pretending or failing to wipe something off of something +45117;Opening something +179980;Putting something behind something +102364;Moving something and something away from each other +211576;Turning something upside down +68861;Moving something and something away from each other +74700;Folding something +59101;Spinning something so it continues spinning +53383;Pretending to pick something up +146924;Closing something +177589;Wiping something off of something +65136;Opening something +51161;Uncovering something +176535;Pretending to turn something upside down +136350;Poking something so it slightly moves +135263;Moving part of something +181047;Putting something into something +51245;Bending something so that it deforms +196634;Pretending to put something into something +188227;Pushing something with something +150050;Showing that something is inside something +104876;Closing something +44241;Pretending to put something on a surface +95033;Lifting up one end of something, then letting it drop down +31659;Spinning something that quickly stops spinning +123192;Rolling something on a flat surface +60265;Showing something on top of something +96352;Closing something +138983;Lifting something with something on it +43016;Dropping something onto something +219407;Something falling like a feather or paper +150478;Closing something +29816;Taking one of many similar things on the table +93667;Twisting (wringing) something wet until water comes out +46598;Dropping something in front of something +67824;Something falling like a rock +180262;Pretending to be tearing something that is not tearable +192541;Pouring something into something until it overflows +15681;Something falling like a feather or paper +176957;Bending something until it breaks +7511;Throwing something +25355;Squeezing something +195506;Moving something and something closer to each other +139829;Lifting something with something on it +163387;Showing something behind something +69430;Pulling two ends of something so that it gets stretched +162216;Putting something next to something +144285;Lifting something up completely, then letting it drop down +132005;Pretending to close something without actually closing it +206547;Turning something upside down +175856;Plugging something into something +119414;Twisting (wringing) something wet until water comes out +180477;Pouring something into something +182872;Opening something +175796;Moving something and something so they collide with each other +192429;Moving something up +7952;Holding something over something +61761;Bending something until it breaks +190193;Showing that something is empty +102950;Turning something upside down +63918;Showing something next to something +112596;Lifting something up completely without letting it drop down +65103;Moving something away from something +11000;Folding something +52947;Showing something next to something +48758;Holding something behind something +30628;Something falling like a feather or paper +186163;Pushing something from right to left +149962;Hitting something with something +106455;Holding something next to something +38472;Something falling like a feather or paper +105615;Dropping something behind something +138635;Opening something +16072;Showing that something is empty +60889;Showing something on top of something +204886;Plugging something into something +18359;Showing something behind something +117941;Dropping something onto something +182407;Trying to bend something unbendable so nothing happens +59025;Putting something into something +148107;Something falling like a rock +3849;Lifting up one end of something, then letting it drop down +85627;Moving something down +166561;Tearing something just a little bit +157639;Showing something on top of something +100347;Moving something closer to something +53914;Unfolding something +134564;Holding something next to something +198196;Pulling something from left to right +72013;Plugging something into something but pulling it right out as you remove your hand +70077;Throwing something in the air and catching it +205969;Pouring something into something until it overflows +123545;Putting something next to something +181464;Pulling two ends of something but nothing happens +46499;Turning something upside down +91960;Plugging something into something but pulling it right out as you remove your hand +13604;Pretending to open something without actually opening it +27656;Holding something in front of something +185744;Pretending to pick something up +214141;Lifting a surface with something on it until it starts sliding down +111399;Stacking number of something +121449;Pushing something from left to right +217775;Stuffing something into something +216174;Moving something and something away from each other +82880;Letting something roll along a flat surface +212945;Pretending to take something from somewhere +93150;Moving something down +140551;Pouring something into something +52045;Hitting something with something +153681;Pretending to put something into something +134455;Uncovering something +95963;Showing something next to something +19524;Pretending to be tearing something that is not tearable +42719;Throwing something +150240;Squeezing something +159517;Lifting up one end of something without letting it drop down +69540;Pretending to put something into something +101253;Pretending to be tearing something that is not tearable +55785;Moving something up +217504;Attaching something to something +61582;Pouring something into something +61979;Throwing something against something +136748;Spinning something so it continues spinning +117795;Unfolding something +127798;Lifting something with something on it +209123;Dropping something next to something +151220;Letting something roll along a flat surface +198274;Folding something +110819;Pushing something so that it falls off the table +168979;Taking something out of something +139617;Plugging something into something +89069;Lifting up one end of something, then letting it drop down +185667;Moving something across a surface without it falling down +156388;Hitting something with something +22011;Pushing something so that it almost falls off but doesn't +26388;Opening something +153160;Putting something, something and something on the table +8817;Pulling something from left to right +26638;Tearing something just a little bit +119664;Holding something over something +141668;Something falling like a feather or paper +136143;Lifting up one end of something, then letting it drop down +12184;Lifting up one end of something, then letting it drop down +61100;Throwing something +103466;Holding something next to something +198480;Putting something into something +61388;Spinning something that quickly stops spinning +120118;Stacking number of something +88511;Pretending to take something out of something +193478;Putting something on a flat surface without letting it roll +112137;Poking something so that it falls over +7039;Tearing something just a little bit +129905;Putting something similar to other things that are already on the table +162712;Pulling two ends of something but nothing happens +196283;Pretending to open something without actually opening it +113819;Putting something onto something +56567;Something falling like a rock +74113;Lifting something up completely without letting it drop down +36565;Pouring something into something until it overflows +162370;Moving something across a surface until it falls down +85420;Squeezing something +151887;Plugging something into something +160064;Folding something +42921;Putting something that can't roll onto a slanted surface, so it slides down +26924;Showing that something is empty +2109;Putting something, something and something on the table +220547;Spilling something onto something +95247;Picking something up +180967;Holding something behind something +122932;Putting something onto a slanted surface but it doesn't glide down +167305;Hitting something with something +156708;Pretending to put something on a surface +23325;Holding something next to something +90169;Plugging something into something +146803;Holding something +180138;Holding something behind something +154167;Pushing something with something +209913;Putting something on a surface +68784;Showing that something is inside something +104516;Stacking number of something +70607;Pretending to be tearing something that is not tearable +91095;Lifting something up completely, then letting it drop down +53183;Spilling something onto something +20634;Uncovering something +16014;Twisting something +23844;Moving something and something closer to each other +196187;Pushing something off of something +103161;Scooping something up with something +211473;Putting something similar to other things that are already on the table +11381;Trying but failing to attach something to something because it doesn't stick +156534;Pushing something so it spins +200135;Pulling something from right to left +142522;Holding something behind something +191354;Something falling like a rock +111468;Spilling something onto something +94476;Moving something down +219920;Poking something so it slightly moves +63576;Pulling something from left to right +94596;Squeezing something +178292;Poking something so that it falls over +115069;Pushing something so that it almost falls off but doesn't +92878;Pretending to open something without actually opening it +108882;Holding something +213820;Pouring something into something +81581;Moving something down +37184;Pretending or trying and failing to twist something +38024;Something falling like a feather or paper +153004;Showing something behind something +42701;Putting something similar to other things that are already on the table +67887;Pretending to put something next to something +51603;Moving something up +56379;Squeezing something +204337;Putting something on a surface +47793;Pulling something out of something +107329;Putting something and something on the table +71844;Bending something so that it deforms +137615;Taking something out of something +161019;Covering something with something +49572;Moving something and something closer to each other +33596;Picking something up +116225;Pouring something into something +216084;Moving something down +34307;Showing that something is inside something +76295;Showing that something is inside something +77498;Taking something out of something +135063;Holding something over something +46881;Showing that something is inside something +203962;Turning something upside down +73604;Twisting (wringing) something wet until water comes out +17921;Plugging something into something but pulling it right out as you remove your hand +40885;Pushing something so that it falls off the table +211988;Covering something with something +20294;Showing something on top of something +209655;Something falling like a feather or paper +71653;Pushing something from right to left +211552;Putting something and something on the table +29275;Moving something and something closer to each other +141529;Taking something from somewhere +70272;Lifting a surface with something on it but not enough for it to slide down +140137;Tilting something with something on it until it falls off +52877;Pulling two ends of something but nothing happens +160903;Taking something out of something +218975;Opening something +183886;Turning something upside down +112447;Moving something and something closer to each other +2303;Moving something across a surface without it falling down +133549;Throwing something in the air and catching it +110153;Pushing something so that it slightly moves +38129;Folding something +194344;Tipping something over +9142;Pushing something so that it almost falls off but doesn't +10882;Turning the camera left while filming something +150736;Laying something on the table on its side, not upright +121820;Taking something out of something +5011;Moving something closer to something +607;Covering something with something +214851;Dropping something onto something +159672;Putting something on the edge of something so it is not supported and falls down +17890;Throwing something in the air and catching it +39955;Tearing something into two pieces +165300;Pushing something so that it slightly moves +7400;Pulling something from right to left +2865;Hitting something with something +134412;Moving something closer to something +179591;Opening something +55853;Picking something up +189637;Hitting something with something +187548;Taking something out of something +95206;Showing that something is empty +46315;Plugging something into something but pulling it right out as you remove your hand +193441;Pushing something with something +102696;Lifting up one end of something without letting it drop down +54904;Twisting (wringing) something wet until water comes out +164150;Pretending to open something without actually opening it +5071;Putting something onto a slanted surface but it doesn't glide down +162222;Pushing something from left to right +85324;Tearing something into two pieces +176133;Poking a hole into something soft +62864;Tearing something into two pieces +149986;Something falling like a rock +17591;Pretending to sprinkle air onto something +41787;Pushing something so it spins +215510;Folding something +7073;Pushing something off of something +60137;Pushing something with something +25016;Pulling something from right to left +43974;Moving something away from something +124614;Bending something until it breaks +85281;Lifting something up completely, then letting it drop down +46478;Putting something on a surface +52284;Poking a stack of something without the stack collapsing +176100;Opening something +134883;Moving something towards the camera +132066;Showing that something is inside something +38521;Trying to bend something unbendable so nothing happens +203390;Putting something behind something +66441;Moving something down +59395;Putting something upright on the table +50638;Squeezing something +207381;Covering something with something +113800;Showing something on top of something +143282;Sprinkling something onto something +211607;Tearing something just a little bit +104195;Tearing something just a little bit +174171;Poking something so lightly that it doesn't or almost doesn't move +33268;Moving something closer to something +145287;Showing that something is inside something +26423;Moving something and something away from each other +220508;Taking something out of something +218836;Pretending to poke something +209803;Putting something into something +86261;Plugging something into something but pulling it right out as you remove your hand +12132;Squeezing something +141488;Trying but failing to attach something to something because it doesn't stick +147088;Plugging something into something but pulling it right out as you remove your hand +25787;Putting something similar to other things that are already on the table +21835;Pushing something from right to left +42809;Touching (without moving) part of something +215455;Folding something +83006;Holding something over something +178930;Unfolding something +106128;Turning something upside down +104328;Putting something similar to other things that are already on the table +59;Moving something and something away from each other +73076;Holding something behind something +119081;Taking one of many similar things on the table +77607;Trying to pour something into something, but missing so it spills next to it +158718;Putting something into something +169998;Putting something on a surface +55846;Rolling something on a flat surface +92408;Dropping something in front of something +198373;Pulling something from left to right +113665;Hitting something with something +145477;Hitting something with something +71872;Pushing something so it spins +165439;Unfolding something +178992;Dropping something behind something +190548;Folding something +220828;Holding something behind something +88006;Dropping something onto something +16432;Tilting something with something on it slightly so it doesn't fall down +34558;Pushing something from right to left +189820;Attaching something to something +325;Pretending to scoop something up with something +133309;Hitting something with something +198555;Covering something with something +28890;Failing to put something into something because something does not fit +156989;Lifting up one end of something, then letting it drop down +161634;Pulling something out of something +47617;Moving something closer to something +203511;Putting something similar to other things that are already on the table +209920;Tearing something just a little bit +40316;Dropping something next to something +105517;Showing something on top of something +97882;Putting something on the edge of something so it is not supported and falls down +89029;Putting something onto something +193507;Holding something in front of something +178412;Turning something upside down +148455;Pushing something so that it slightly moves +13235;Tilting something with something on it until it falls off +134902;Turning something upside down +86028;Putting something on a flat surface without letting it roll +34823;Turning something upside down +99526;Putting something upright on the table +18071;Pushing something so that it almost falls off but doesn't +182873;Moving something across a surface until it falls down +200696;Pretending to poke something +108429;Putting something on a surface +133948;Turning the camera downwards while filming something +57591;Turning something upside down +73293;Letting something roll along a flat surface +24819;Poking something so it slightly moves +157557;Putting something on a flat surface without letting it roll +104526;Tearing something into two pieces +136330;Plugging something into something +218706;Tearing something just a little bit +2723;Trying but failing to attach something to something because it doesn't stick +19643;Attaching something to something +79248;Moving something and something closer to each other +74490;Putting something into something +89795;Taking something out of something +82552;Putting something that cannot actually stand upright upright on the table, so it falls on its side +204896;Something falling like a rock +192183;Pretending to put something on a surface +92670;Poking something so lightly that it doesn't or almost doesn't move +51298;Throwing something in the air and letting it fall +198486;Rolling something on a flat surface +51436;Trying to bend something unbendable so nothing happens +180733;Something falling like a feather or paper +36884;Putting something in front of something +81105;Showing something behind something +188483;Rolling something on a flat surface +137774;Turning something upside down +121519;Squeezing something +134530;Sprinkling something onto something +57741;Something colliding with something and both are being deflected +136635;Plugging something into something +5738;Holding something over something +99694;Bending something until it breaks +76909;Folding something +219265;Pretending to pick something up +134099;Pretending to open something without actually opening it +89372;Lifting up one end of something, then letting it drop down +64224;Showing something on top of something +12338;Putting something on a surface +163225;Spilling something onto something +47084;Hitting something with something +177588;Turning something upside down +61209;Putting something into something +182677;Putting something on a flat surface without letting it roll +197035;Unfolding something +50407;Dropping something into something +120968;Throwing something in the air and letting it fall +152132;Showing something next to something +189370;Dropping something next to something +176971;Rolling something on a flat surface +109988;Pretending to be tearing something that is not tearable +41102;Holding something next to something +70299;Pushing something so that it slightly moves +149691;Moving something up +210707;Lifting up one end of something, then letting it drop down +156551;Putting something in front of something +207039;Tearing something into two pieces +189949;Tearing something into two pieces +147390;Putting something on a surface +88419;Putting something upright on the table +80035;Something falling like a rock +140149;Throwing something +88176;Moving something down +195325;Covering something with something +184260;Putting something next to something +106543;Pretending to put something next to something +153068;Tipping something over +158191;Pouring something into something +197766;Stuffing something into something +61847;Pretending to sprinkle air onto something +30523;Hitting something with something +164272;Pushing something from right to left +91027;Opening something +15993;Putting something on a surface +202537;Wiping something off of something +184590;Lifting up one end of something, then letting it drop down +50726;Plugging something into something +158752;Putting something that cannot actually stand upright upright on the table, so it falls on its side +76020;Squeezing something +132686;Attaching something to something +50049;Holding something +156070;Putting something upright on the table +166388;Stuffing something into something +68637;Throwing something in the air and letting it fall +156263;Throwing something +197589;Dropping something onto something +14988;Showing something behind something +128984;Attaching something to something +210922;Pretending to take something out of something +69333;Turning the camera left while filming something +22068;Putting something next to something +104105;Tearing something just a little bit +52030;Pretending to pick something up +183284;Pretending to put something next to something +53630;Holding something in front of something +215483;Pulling something from left to right +194202;Putting something upright on the table +188806;Lifting something up completely without letting it drop down +123187;Spinning something so it continues spinning +119310;Pushing something from left to right +185778;Moving something across a surface without it falling down +15576;Lifting something up completely without letting it drop down +4850;Squeezing something +83285;Tearing something just a little bit +41687;Moving something towards the camera +127868;Pushing something from right to left +15728;Twisting (wringing) something wet until water comes out +161606;Pretending to pick something up +78374;Sprinkling something onto something +155944;Pouring something into something +121424;Plugging something into something +22663;Putting something similar to other things that are already on the table +62436;Showing that something is inside something +162830;Squeezing something +6914;Moving something and something closer to each other +85084;Poking a stack of something without the stack collapsing +73251;Uncovering something +196009;Pulling something out of something +114831;Picking something up +106065;Holding something +124252;Folding something +212307;Rolling something on a flat surface +58948;Pulling two ends of something so that it gets stretched +170589;Taking something out of something +132113;Throwing something in the air and letting it fall +136333;Moving something away from something +27698;Moving something and something away from each other +146873;Putting something that cannot actually stand upright upright on the table, so it falls on its side +193514;Something falling like a rock +97317;Closing something +136408;Showing that something is empty +5667;Something falling like a feather or paper +22445;Moving something closer to something +17705;Pushing something so that it almost falls off but doesn't +99064;Spinning something so it continues spinning +24507;Letting something roll along a flat surface +38773;Pouring something out of something +195119;Pretending to poke something +152105;Squeezing something +17631;Lifting something with something on it +113721;Laying something on the table on its side, not upright +188750;Closing something +16272;Holding something behind something +217175;Holding something +156954;Plugging something into something +21697;Lifting something with something on it +158514;Pretending to put something underneath something +63174;Stuffing something into something +188026;Holding something over something +54950;Lifting something with something on it +193269;Pretending to be tearing something that is not tearable +198532;Pretending to pick something up +82717;Showing something on top of something +139275;Pretending or failing to wipe something off of something +156799;Putting something that cannot actually stand upright upright on the table, so it falls on its side +94829;Showing something next to something +33336;Unfolding something +217453;Trying but failing to attach something to something because it doesn't stick +130297;Moving something down +153605;Dropping something onto something +174044;Pretending to put something on a surface +67573;Pushing something so that it falls off the table +146280;Pushing something so it spins +102270;Putting something upright on the table +220332;Lifting something with something on it +130766;Picking something up +40975;Pouring something into something +164789;Putting something into something +29190;Pushing something from right to left +61120;Folding something +95454;Pretending to close something without actually closing it +92848;Stuffing something into something +38964;Taking something from somewhere +150260;Trying to pour something into something, but missing so it spills next to it +76095;Something falling like a rock +20641;Putting something on the edge of something so it is not supported and falls down +183774;Squeezing something +65001;Taking one of many similar things on the table +112992;Putting something on a surface +132445;Dropping something into something +133705;Moving something up +150825;Tearing something just a little bit +136591;Tearing something into two pieces +70654;Spinning something so it continues spinning +78535;Lifting something with something on it +142098;Pretending to put something on a surface +15443;Moving something and something away from each other +174201;Folding something +140507;Showing that something is empty +43730;Spinning something so it continues spinning +131899;Unfolding something +57166;Pulling something from right to left +148886;Plugging something into something +107734;Moving something away from something +43114;Opening something +87703;Hitting something with something +101992;Putting something on the edge of something so it is not supported and falls down +177072;Pushing something from left to right +159957;Poking something so lightly that it doesn't or almost doesn't move +126669;Pushing something so it spins +73364;Rolling something on a flat surface +199572;Pushing something onto something +121090;Moving something and something away from each other +76331;Pushing something so that it slightly moves +34393;Pretending to open something without actually opening it +90016;Showing that something is inside something +178040;Taking something out of something +41104;Tearing something just a little bit +82782;Pretending to take something from somewhere +188554;Pouring something out of something +26838;Dropping something onto something +144048;Pulling something from left to right +119296;Pretending or trying and failing to twist something +155127;Tearing something just a little bit +96583;Putting something on the edge of something so it is not supported and falls down +126053;Pushing something off of something +201773;Rolling something on a flat surface +97011;Closing something +9302;Holding something next to something +70803;Tearing something just a little bit +140127;Uncovering something +161281;Putting something upright on the table +21534;Moving something and something closer to each other +191066;Bending something until it breaks +43515;Poking something so lightly that it doesn't or almost doesn't move +103805;Pretending to open something without actually opening it +173958;Opening something +181087;Taking one of many similar things on the table +11487;Pushing something so that it falls off the table +213786;Tearing something into two pieces +213374;Moving something closer to something +19909;Tearing something into two pieces +5312;Picking something up +93785;Lifting up one end of something without letting it drop down +71833;Laying something on the table on its side, not upright +14787;Touching (without moving) part of something +120958;Turning something upside down +26653;Putting something on a surface +61394;Dropping something onto something +34297;Pretending to open something without actually opening it +220149;Tipping something over +110647;Tipping something with something in it over, so something in it falls out +77466;Pretending to take something from somewhere +15362;Picking something up +63447;Pretending to take something from somewhere +47197;Pushing something with something +107333;Tilting something with something on it until it falls off +204025;Tearing something into two pieces +47231;Folding something +173356;Turning something upside down +110306;Pretending to pour something out of something, but something is empty +116239;Tearing something into two pieces +77767;Moving something and something closer to each other +220288;Something falling like a feather or paper +185812;Unfolding something +155794;Moving something and something closer to each other +209591;Stacking number of something +53702;Tearing something just a little bit +105270;Holding something over something +100226;Pulling two ends of something so that it separates into two pieces +31503;Plugging something into something +11102;Hitting something with something +16928;Putting something on a surface +189886;Showing something on top of something +129001;Showing something to the camera +6396;Showing something behind something +120119;Lifting something up completely, then letting it drop down +70933;Holding something +121325;Opening something +100312;Tipping something over +202739;Unfolding something +131092;Putting something upright on the table +118170;Bending something until it breaks +171714;Throwing something +82797;Lifting something with something on it +4938;Moving something and something closer to each other +88612;Plugging something into something +102669;Poking something so that it falls over +168980;Showing that something is empty +91767;Showing something behind something +73280;Moving something closer to something +129650;Pushing something so that it falls off the table +50159;Rolling something on a flat surface +201308;Showing something on top of something +166679;Putting something onto something +216452;Showing that something is empty +73850;Throwing something in the air and letting it fall +48232;Moving something closer to something +122414;Pulling two ends of something but nothing happens +57275;Moving something up +63505;Picking something up +171138;Pretending or failing to wipe something off of something +188620;Stuffing something into something +56814;Plugging something into something +203160;Wiping something off of something +214470;Pushing something so that it almost falls off but doesn't +129974;Moving something across a surface without it falling down +87940;Pouring something into something +161616;Pushing something so that it almost falls off but doesn't +169595;Holding something behind something +41251;Covering something with something +74784;Opening something +194692;Trying but failing to attach something to something because it doesn't stick +9089;Pulling something from right to left +4043;Pulling two ends of something so that it gets stretched +48496;Moving something away from something +157991;Holding something behind something +93453;Lifting a surface with something on it until it starts sliding down +118366;Piling something up +12131;Putting something next to something +120170;Throwing something +31334;Putting something into something +193058;Holding something +197899;Touching (without moving) part of something +2832;Moving something away from something +161476;Showing that something is empty +143860;Plugging something into something +184747;Pushing something from left to right +212159;Moving something away from something +140631;Showing that something is inside something +83922;Tipping something over +172697;Showing something behind something +208596;Something falling like a rock +46422;Putting something on a surface +129748;Stacking number of something +90842;Pretending to pick something up +13994;Holding something behind something +108587;Putting something on a surface +33597;Dropping something onto something +148251;Stacking number of something +69576;Pretending to throw something +26377;Holding something next to something +147854;Showing that something is empty +115029;Taking something out of something +78155;Something falling like a rock +132320;Lifting something up completely without letting it drop down +102239;Pretending to open something without actually opening it +141382;Pushing something from left to right +121427;Moving something and something closer to each other +59346;Turning something upside down +183325;Picking something up +185678;Putting something behind something +89546;Putting something on a surface +163039;Taking one of many similar things on the table +104060;Showing something next to something +135459;Dropping something in front of something +126873;Trying to pour something into something, but missing so it spills next to it +84243;Something falling like a feather or paper +18599;Tearing something into two pieces +148161;Pretending to open something without actually opening it +147855;Pushing something from right to left +38745;Moving something and something away from each other +11525;Plugging something into something but pulling it right out as you remove your hand +183105;Scooping something up with something +158676;Putting something in front of something +145680;Pushing something from left to right +217708;Pretending to pick something up +13137;Trying but failing to attach something to something because it doesn't stick +140869;Unfolding something +194300;Touching (without moving) part of something +123890;Poking something so lightly that it doesn't or almost doesn't move +86668;Putting something, something and something on the table +13987;Unfolding something +16316;Pouring something into something +57516;Twisting (wringing) something wet until water comes out +16059;Lifting up one end of something, then letting it drop down +112193;Moving part of something +2249;Pushing something from left to right +135872;Moving something closer to something +14945;Turning something upside down +204717;Pushing something off of something +11325;Poking something so lightly that it doesn't or almost doesn't move +161668;Tearing something just a little bit +35664;Tearing something just a little bit +124096;Moving something towards the camera +44642;Pulling something from left to right +167649;Dropping something next to something +62366;Tilting something with something on it until it falls off +179660;Putting something onto something else that cannot support it so it falls down +47759;Digging something out of something +82600;Dropping something into something +63249;Moving something and something closer to each other +142360;Holding something in front of something +154907;Putting something upright on the table +193126;Covering something with something +207675;Stacking number of something +32817;Bending something so that it deforms +118870;Tearing something just a little bit +11972;Putting something in front of something +74510;Trying to bend something unbendable so nothing happens +215260;Folding something +144413;Covering something with something +38020;Tearing something into two pieces +69670;Unfolding something +134771;Putting something into something +213494;Throwing something +8917;Putting something behind something +73433;Putting something similar to other things that are already on the table +187725;Uncovering something +172707;Lifting something up completely without letting it drop down +123432;Laying something on the table on its side, not upright +104636;Turning something upside down +166155;Pouring something out of something +180162;Tilting something with something on it until it falls off +116949;Moving something and something closer to each other +121013;Holding something behind something +49328;Putting something next to something +24187;Spilling something onto something +23198;Pretending to put something next to something +179362;Spinning something that quickly stops spinning +47785;Throwing something against something +199824;Putting something on a surface +202541;Poking something so lightly that it doesn't or almost doesn't move +8719;Holding something over something +137898;Throwing something against something +27062;Showing that something is empty +117404;Throwing something in the air and letting it fall +199718;Putting something into something +22442;Turning something upside down +68104;Moving something down +188489;Bending something until it breaks +161600;Letting something roll down a slanted surface +111703;Showing something next to something +182661;Trying to bend something unbendable so nothing happens +175816;Plugging something into something +138846;Moving something up +113522;Trying to bend something unbendable so nothing happens +186534;Taking one of many similar things on the table +120906;Putting number of something onto something +30076;Closing something +161789;Pulling something from right to left +218322;Moving something away from something +219826;Folding something +134569;Dropping something behind something +35069;Pushing something so that it falls off the table +7533;Rolling something on a flat surface +28443;Letting something roll down a slanted surface +118035;Pulling something from behind of something +131062;Lifting up one end of something without letting it drop down +196738;Pretending to be tearing something that is not tearable +124999;Pouring something out of something +78759;Stuffing something into something +174266;Throwing something +141079;Pouring something out of something +133179;Putting something, something and something on the table +151251;Hitting something with something +106981;Putting something into something +180123;Tearing something into two pieces +9162;Stuffing something into something +205295;Showing that something is inside something +21103;Moving something up +104382;Something falling like a rock +32077;Moving something away from the camera +163239;Pulling something from left to right +41737;Pretending to open something without actually opening it +125179;Pulling something from left to right +67571;Stuffing something into something +36628;Putting something on a surface +188069;Pretending to sprinkle air onto something +80095;Pushing something so that it falls off the table +18112;Pretending to poke something +186010;Pulling something from right to left +21826;Taking one of many similar things on the table +49296;Picking something up +100404;Letting something roll down a slanted surface +177232;Moving something away from something +85777;Something falling like a rock +11950;Putting something in front of something +113369;Trying to bend something unbendable so nothing happens +187161;Something falling like a rock +136519;Putting something upright on the table +58472;Lifting something up completely without letting it drop down +92323;Throwing something +23875;Wiping something off of something +31001;Twisting something +197718;Squeezing something +92520;Something falling like a rock +76279;Pretending to pick something up +90295;Taking something out of something +206769;Turning the camera left while filming something +113987;Pretending to turn something upside down +9159;Showing something behind something +25003;Lifting up one end of something without letting it drop down +200489;Spinning something so it continues spinning +205808;Moving something down +114542;Pretending to poke something +207731;Holding something in front of something +48054;Moving something closer to something +12042;Rolling something on a flat surface +7867;Trying to bend something unbendable so nothing happens +725;Twisting something +149856;Bending something until it breaks +134135;Pulling something from right to left +215242;Putting something similar to other things that are already on the table +1848;Holding something in front of something +95239;Tilting something with something on it until it falls off +120104;Uncovering something +48719;Folding something +147644;Pretending to pick something up +146765;Closing something +143601;Letting something roll up a slanted surface, so it rolls back down +161810;Letting something roll down a slanted surface +74902;Pushing something from right to left +207434;Pretending to pick something up +161545;Turning something upside down +60810;Showing something on top of something +105119;Putting something on a surface +199195;Putting something into something +212134;Showing something next to something +33639;Turning the camera upwards while filming something +167521;Showing that something is empty +149521;Putting something on a surface +117838;Moving something away from the camera +214627;Putting something into something +151325;Pulling something from left to right +69992;Moving something and something away from each other +137314;Something falling like a feather or paper +87859;Showing something next to something +176717;Letting something roll down a slanted surface +67866;Pulling two ends of something but nothing happens +211546;Dropping something next to something +59618;Dropping something onto something +100251;Moving something and something away from each other +210148;Taking something out of something +162664;Something being deflected from something +212030;Rolling something on a flat surface +17125;Letting something roll along a flat surface +150450;Showing something behind something +220630;Tearing something just a little bit +66542;Something being deflected from something +18199;Showing something next to something +28709;Pretending to close something without actually closing it +127418;Stuffing something into something +88926;Holding something in front of something +204428;Pretending to open something without actually opening it +107304;Spinning something that quickly stops spinning +121726;Rolling something on a flat surface +179020;Opening something +88416;Spreading something onto something +209313;Spinning something so it continues spinning +60602;Holding something over something +39633;Taking something out of something +109117;Moving something down +186228;Lifting something up completely without letting it drop down +219926;Throwing something in the air and catching it +187436;Pulling something from right to left +27468;Putting something onto something +14262;Putting something upright on the table +40358;Tilting something with something on it slightly so it doesn't fall down +31360;Pushing something from left to right +55997;Putting something, something and something on the table +102397;Uncovering something +181992;Something colliding with something and both are being deflected +43998;Putting something in front of something +57473;Pretending to be tearing something that is not tearable +105318;Putting something on a surface +135129;Pretending to pick something up +18952;Showing something on top of something +121618;Showing something next to something +210483;Putting something on a surface +134975;Tipping something with something in it over, so something in it falls out +142747;Tilting something with something on it slightly so it doesn't fall down +67851;Pushing something so that it almost falls off but doesn't +71413;Moving something across a surface until it falls down +125028;Turning something upside down +70182;Pouring something into something +85051;Moving something and something away from each other +32595;Something falling like a feather or paper +160855;Holding something next to something +157507;Pushing something from right to left +87422;Tearing something just a little bit +26151;Scooping something up with something +135048;Spinning something so it continues spinning +60773;Putting something into something +25366;Pretending to open something without actually opening it +158811;Plugging something into something but pulling it right out as you remove your hand +218014;Moving something and something closer to each other +187244;Throwing something in the air and catching it +2164;Tearing something into two pieces +46981;Taking something out of something +132770;Putting something that can't roll onto a slanted surface, so it stays where it is +9486;Moving something away from something +86478;Hitting something with something +186137;Showing something on top of something +148652;Putting something on a surface +127439;Lifting up one end of something without letting it drop down +106058;Tipping something over +172233;Plugging something into something +214277;Lifting up one end of something without letting it drop down +2338;Showing something behind something +207957;Putting something next to something +202398;Showing something on top of something +82981;Pushing something with something +213317;Spinning something that quickly stops spinning +121195;Pretending to put something underneath something +30182;Laying something on the table on its side, not upright +28196;Letting something roll down a slanted surface +106548;Tilting something with something on it until it falls off +210338;Lifting something up completely, then letting it drop down +33364;Pretending to be tearing something that is not tearable +162286;Covering something with something +39340;Uncovering something +3339;Throwing something in the air and letting it fall +199228;Holding something over something +211544;Spilling something onto something +171881;Tearing something just a little bit +154543;Rolling something on a flat surface +26069;Uncovering something +197228;Pretending to take something out of something +35547;Attaching something to something +181343;Poking something so it slightly moves +146155;Putting something on a surface +13754;Lifting something up completely without letting it drop down +60120;Moving something and something away from each other +132163;Turning something upside down +730;Opening something +51377;Moving something away from something +30727;Dropping something behind something +210727;Putting something on a surface +151988;Putting something onto something +70929;Showing that something is empty +181266;Putting number of something onto something +45479;Pulling two ends of something so that it separates into two pieces +169412;Wiping something off of something +6307;Lifting something with something on it +70012;Putting something into something +66114;Holding something behind something +203515;Hitting something with something +39610;Pushing something so that it falls off the table +78148;Twisting something +210910;Something falling like a rock +173223;Picking something up +26177;Pushing something so it spins +199919;Pushing something so that it falls off the table +38216;Plugging something into something but pulling it right out as you remove your hand +179417;Pouring something into something +148636;Showing something next to something +191171;Squeezing something +56082;Unfolding something +100624;Putting something and something on the table +127898;Pouring something into something +83913;Touching (without moving) part of something +54369;Taking something out of something +89520;Tearing something just a little bit +115893;Tilting something with something on it slightly so it doesn't fall down +111366;Laying something on the table on its side, not upright +207669;Pushing something from right to left +210887;Plugging something into something +47876;Pouring something into something +93061;Moving something and something away from each other +89003;Dropping something onto something +1904;Pouring something into something +133368;Pushing something so it spins +1753;Wiping something off of something +591;Throwing something in the air and letting it fall +20552;Poking something so that it falls over +134202;Hitting something with something +118180;Showing something on top of something +206777;Moving something down +94850;Showing something behind something +63162;Touching (without moving) part of something +58488;Pretending to open something without actually opening it +180808;Moving something away from something +41328;Putting something, something and something on the table +167259;Moving something and something closer to each other +150804;Moving something away from the camera +97166;Spilling something onto something +72578;Moving something away from something +158687;Moving something towards the camera +141943;Putting number of something onto something +10240;Showing something next to something +216396;Taking one of many similar things on the table +66840;Poking something so it slightly moves +66709;Covering something with something +183088;Unfolding something +55514;Hitting something with something +10328;Plugging something into something +215218;Pretending or trying and failing to twist something +51496;Squeezing something +1799;Pushing something from left to right +5506;Hitting something with something +167084;Pretending to put something on a surface +29388;Covering something with something +213885;Putting number of something onto something +207562;Pouring something into something +89676;Pretending to put something next to something +212653;Something falling like a feather or paper +29347;Poking something so lightly that it doesn't or almost doesn't move +121121;Spinning something that quickly stops spinning +139213;Holding something next to something +140434;Showing that something is inside something +101056;Dropping something onto something +111611;Pouring something into something +78924;Pouring something into something +81226;Showing something next to something +134171;Piling something up +162170;Turning something upside down +199818;Putting number of something onto something +112235;Pretending to poke something +112586;Showing that something is empty +23263;Bending something until it breaks +196500;Trying to pour something into something, but missing so it spills next to it +160866;Pushing something from right to left +185911;Stacking number of something +18987;Taking something out of something +41174;Tilting something with something on it until it falls off +17499;Putting something in front of something +64808;Pushing something from right to left +178258;Putting something underneath something +73893;Tearing something just a little bit +142328;Pulling something from right to left +199247;Pulling something from behind of something +181058;Dropping something next to something +185983;Taking one of many similar things on the table +112641;Piling something up +103612;Pushing something so that it slightly moves +16632;Spinning something that quickly stops spinning +111328;Moving something towards the camera +201072;Poking something so it slightly moves +38052;Attaching something to something +152444;Plugging something into something +33949;Tipping something over +189648;Taking something out of something +192940;Squeezing something +136821;Pretending to be tearing something that is not tearable +193982;Moving something up +173989;Showing something behind something +106234;Turning something upside down +54732;Rolling something on a flat surface +101718;Pushing something so that it falls off the table +109345;Moving something down +120149;Pulling two ends of something so that it gets stretched +190526;Pulling something from right to left +120439;Moving something across a surface without it falling down +82064;Holding something next to something +114388;Uncovering something +208480;Throwing something +8054;Lifting something with something on it +192862;Poking something so that it falls over +122132;Pushing something so that it almost falls off but doesn't +14443;Moving something across a surface without it falling down +112539;Pulling something out of something +103439;Hitting something with something +152822;Letting something roll along a flat surface +139058;Showing something next to something +97490;Spinning something so it continues spinning +161773;Holding something behind something +39571;Putting something into something +154878;Covering something with something +24475;Spinning something so it continues spinning +127084;Rolling something on a flat surface +88646;Showing that something is empty +39564;Pouring something into something until it overflows +187392;Stuffing something into something +10600;Holding something over something +1420;Throwing something +186797;Throwing something in the air and catching it +39664;Pulling two ends of something so that it separates into two pieces +220053;Holding something next to something +212938;Moving something and something so they collide with each other +59314;Covering something with something +169126;Stuffing something into something +7545;Stuffing something into something +213263;Holding something over something +62635;Folding something +190901;Lifting a surface with something on it until it starts sliding down +141430;Turning something upside down +93173;Stacking number of something +111002;Taking something from somewhere +68190;Closing something +549;Tearing something into two pieces +110335;Trying to bend something unbendable so nothing happens +8460;Plugging something into something +149483;Dropping something onto something +136935;Poking something so that it falls over +103311;Showing something behind something +76715;Plugging something into something +116703;Unfolding something +88973;Putting something on a surface +49166;Plugging something into something but pulling it right out as you remove your hand +189754;Folding something +125649;Holding something behind something +158148;Pretending to be tearing something that is not tearable +20625;Putting something into something +107552;Moving something away from something +207879;Pretending or failing to wipe something off of something +152288;Throwing something in the air and letting it fall +111663;Showing something behind something +2395;Putting something on a surface +166087;Plugging something into something +704;Stacking number of something +90546;Moving something up +109792;Moving something and something closer to each other +191907;Pretending to take something from somewhere +24894;Tearing something just a little bit +64562;Rolling something on a flat surface +170317;Moving part of something +166761;Plugging something into something but pulling it right out as you remove your hand +35744;Pushing something from left to right +61813;Taking something from somewhere +196904;Showing that something is inside something +24594;Poking a stack of something so the stack collapses +122397;Throwing something against something +174068;Moving something and something closer to each other +133237;Uncovering something +85519;Spinning something so it continues spinning +114919;Holding something +169172;Letting something roll along a flat surface +22849;Tearing something just a little bit +220717;Putting something and something on the table +131328;Squeezing something +49705;Pretending or trying and failing to twist something +105105;Showing that something is inside something +159171;Putting something behind something +205221;Pretending to be tearing something that is not tearable +69842;Moving something away from something +43525;Taking one of many similar things on the table +49139;Plugging something into something +8762;Showing something next to something +217561;Pouring something into something +165226;Plugging something into something but pulling it right out as you remove your hand +142593;Letting something roll along a flat surface +51006;Moving something closer to something +29418;Tilting something with something on it until it falls off +130583;Something colliding with something and both come to a halt +128002;Tearing something into two pieces +72650;Turning something upside down +38334;Moving something closer to something +33510;Moving something down +204554;Pretending to close something without actually closing it +11625;Pushing something with something +150407;Putting something on a surface +164296;Bending something until it breaks +50613;Lifting up one end of something without letting it drop down +62838;Pushing something so that it almost falls off but doesn't +124592;Unfolding something +14285;Putting something similar to other things that are already on the table +160293;Showing something next to something +196901;Pushing something so that it slightly moves +34390;Turning something upside down +39677;Dropping something into something +163014;Plugging something into something +182664;Dropping something next to something +599;Something falling like a feather or paper +29817;Holding something +42757;Putting something into something +107199;Sprinkling something onto something +40385;Scooping something up with something +205283;Squeezing something +193085;Showing something on top of something +174849;Stacking number of something +22777;Putting something and something on the table +82127;Putting something into something +195637;Scooping something up with something +79300;Touching (without moving) part of something +110013;Taking one of many similar things on the table +27174;Pretending to squeeze something +17852;Tearing something just a little bit +122504;Pouring something into something +172806;Moving something closer to something +193561;Pretending to pick something up +192177;Pulling something out of something +74159;Covering something with something +47209;Putting something, something and something on the table +143697;Tipping something with something in it over, so something in it falls out +201263;Putting something similar to other things that are already on the table +6555;Dropping something in front of something +25884;Showing something behind something +25552;Something colliding with something and both are being deflected +78881;Putting something similar to other things that are already on the table +198016;Showing something on top of something +190127;Moving something away from the camera +45307;Putting something that can't roll onto a slanted surface, so it slides down +158637;Moving something closer to something +166065;Pretending or trying and failing to twist something +37161;Tipping something over +172085;Moving something up +32025;Touching (without moving) part of something +170375;Pretending to take something out of something +52043;Throwing something in the air and letting it fall +143300;Laying something on the table on its side, not upright +90396;Pretending to sprinkle air onto something +14000;Dropping something into something +187829;Pretending to squeeze something +139214;Holding something next to something +183892;Something falling like a rock +124461;Pushing something onto something +119411;Tearing something just a little bit +202250;Poking a hole into something soft +159155;Tipping something with something in it over, so something in it falls out +34287;Putting something on a flat surface without letting it roll +193400;Putting something similar to other things that are already on the table +175475;Moving something and something away from each other +42274;Trying but failing to attach something to something because it doesn't stick +148488;Moving something and something closer to each other +596;Pretending to throw something +93450;Something falling like a feather or paper +153132;Something falling like a feather or paper +73914;Showing something behind something +90369;Pretending to scoop something up with something +14864;Throwing something +75817;Putting something upright on the table +82853;Digging something out of something +66126;Moving away from something with your camera +186573;Piling something up +68334;Wiping something off of something +136987;Tearing something just a little bit +110636;Moving something up +200746;Tearing something into two pieces +86132;Moving something across a surface without it falling down +109643;Moving something and something closer to each other +51114;Putting something that cannot actually stand upright upright on the table, so it falls on its side +29527;Taking something from somewhere +23028;Covering something with something +107466;Showing that something is empty +196879;Wiping something off of something +23168;Putting something upright on the table +139827;Showing something behind something +161929;Pretending to close something without actually closing it +50768;Picking something up +156667;Uncovering something +200059;Plugging something into something +154522;Opening something +107197;Moving something and something closer to each other +192587;Poking something so that it falls over +7197;Trying but failing to attach something to something because it doesn't stick +76181;Moving something and something closer to each other +59285;Pretending to open something without actually opening it +152259;Pulling something from behind of something +20573;Taking one of many similar things on the table +28099;Pretending to be tearing something that is not tearable +157963;Turning the camera right while filming something +161430;Putting something on a surface +56506;Dropping something next to something +141038;Holding something next to something +15238;Spinning something that quickly stops spinning +35117;Putting something on a surface +48062;Spinning something that quickly stops spinning +33651;Dropping something onto something +12218;Covering something with something +40160;Putting something in front of something +195146;Tearing something into two pieces +162855;Spinning something that quickly stops spinning +49402;Putting something upright on the table +139966;Showing something behind something +169366;Putting something into something +184834;Showing something behind something +183220;Moving something down +103100;Moving something towards the camera +35928;Stacking number of something +60770;Poking a hole into something soft +43927;Dropping something onto something +181453;Moving something away from something +122267;Putting something on a surface +122334;Tipping something with something in it over, so something in it falls out +153951;Failing to put something into something because something does not fit +167520;Pulling something out of something +115645;Poking a hole into something soft +122521;Dropping something behind something +27793;Showing that something is empty +98050;Tilting something with something on it until it falls off +183788;Something falling like a feather or paper +142313;Pouring something out of something +118753;Holding something over something +138223;Pretending to put something on a surface +77593;Attaching something to something +205158;Something falling like a feather or paper +81001;Something colliding with something and both are being deflected +135664;Attaching something to something +1421;Hitting something with something +160624;Moving something and something closer to each other +40188;Turning something upside down +355;Showing something to the camera +130357;Tilting something with something on it until it falls off +15341;Moving something and something away from each other +123966;Plugging something into something but pulling it right out as you remove your hand +20721;Attaching something to something +194636;Unfolding something +152930;Pretending to pick something up +107270;Pulling something out of something +125230;Plugging something into something but pulling it right out as you remove your hand +168768;Throwing something in the air and letting it fall +103884;Plugging something into something +91340;Pretending to sprinkle air onto something +28696;Pouring something into something +211508;Spinning something so it continues spinning +16590;Hitting something with something +114057;Taking one of many similar things on the table +74740;Rolling something on a flat surface +7235;Pretending to pick something up +2537;Pouring something into something until it overflows +97254;Moving something away from the camera +39090;Pushing something from right to left +98421;Pretending or trying and failing to twist something +179204;Letting something roll up a slanted surface, so it rolls back down +30030;Pretending to take something from somewhere +217799;Letting something roll up a slanted surface, so it rolls back down +89856;Turning the camera downwards while filming something +128240;Tearing something just a little bit +78044;Tilting something with something on it until it falls off +166167;Uncovering something +78378;Turning the camera downwards while filming something +136464;Plugging something into something but pulling it right out as you remove your hand +167389;Tearing something just a little bit +207721;Pretending to take something out of something +140399;Pretending to be tearing something that is not tearable +172128;Showing that something is empty +158859;Opening something +207368;Putting something upright on the table +64619;Putting something upright on the table +193857;Lifting up one end of something without letting it drop down +192246;Pouring something into something +36125;Spinning something that quickly stops spinning +115363;Moving something closer to something +217046;Hitting something with something +111485;Moving something up +215231;Spilling something onto something +2119;Picking something up +85665;Spinning something that quickly stops spinning +118060;Pulling something from right to left +33648;Plugging something into something +195024;Plugging something into something but pulling it right out as you remove your hand +180933;Poking a stack of something so the stack collapses +219034;Moving something and something away from each other +190168;Holding something in front of something +171580;Bending something so that it deforms +88731;Putting something on a surface +28277;Throwing something in the air and letting it fall +35358;Putting something into something +91245;Pretending to be tearing something that is not tearable +78308;Tearing something into two pieces +13780;Putting something on a surface +188410;Pushing something so it spins +59932;Pulling something onto something +12909;Moving something closer to something +209579;Plugging something into something +119922;Spreading something onto something +79469;Attaching something to something +140209;Stuffing something into something +48179;Holding something next to something +53766;Pushing something from left to right +68799;Stuffing something into something +41721;Moving something and something away from each other +106153;Picking something up +117852;Pulling two ends of something so that it gets stretched +184929;Holding something behind something +83872;Bending something until it breaks +125876;Putting something next to something +197969;Showing something behind something +24818;Putting something that can't roll onto a slanted surface, so it stays where it is +141164;Something falling like a feather or paper +18532;Holding something over something +180437;Covering something with something +6421;Moving something and something closer to each other +21129;Tipping something over +2679;Holding something over something +185455;Spilling something onto something +94268;Pushing something from left to right +209658;Pulling two ends of something but nothing happens +175398;Putting number of something onto something +183199;Trying to bend something unbendable so nothing happens +171286;Poking something so lightly that it doesn't or almost doesn't move +151264;Pushing something so it spins +66264;Moving part of something +119656;Putting something similar to other things that are already on the table +127479;Tearing something just a little bit +54147;Pulling two ends of something so that it separates into two pieces +83369;Rolling something on a flat surface +36489;Turning something upside down +99472;Moving something and something away from each other +121657;Spilling something onto something +66416;Rolling something on a flat surface +134857;Hitting something with something +75616;Pouring something out of something +74040;Throwing something +4345;Putting something and something on the table +29448;Showing that something is empty +215089;Touching (without moving) part of something +39301;Twisting something +95052;Digging something out of something +39425;Putting something upright on the table +65257;Failing to put something into something because something does not fit +107010;Pretending to be tearing something that is not tearable +80487;Moving something and something closer to each other +206193;Moving something and something closer to each other +53487;Laying something on the table on its side, not upright +202046;Pushing something so that it falls off the table +67574;Pretending to take something from somewhere +57416;Uncovering something +131994;Pretending to put something on a surface +5087;Turning the camera left while filming something +84159;Pretending to take something from somewhere +30504;Something falling like a feather or paper +61030;Showing that something is inside something +67705;Putting something next to something +105402;Plugging something into something +99591;Pretending to put something into something +109473;Covering something with something +216080;Moving something up +219331;Scooping something up with something +80465;Pushing something with something +26393;Putting something, something and something on the table +149613;Stuffing something into something +217838;Poking something so lightly that it doesn't or almost doesn't move +89337;Poking something so lightly that it doesn't or almost doesn't move +39545;Putting something next to something +136430;Putting something into something +70506;Pushing something so that it slightly moves +161632;Moving something and something away from each other +180232;Pouring something into something +214054;Something falling like a feather or paper +218272;Putting something on a surface +210686;Moving something and something closer to each other +41391;Failing to put something into something because something does not fit +58214;Showing that something is empty +208849;Putting something in front of something +107639;Moving something towards the camera +96772;Letting something roll along a flat surface +31389;Lifting something with something on it +209755;Tipping something over +42963;Taking one of many similar things on the table +163647;Taking something from somewhere +117757;Pushing something from right to left +211439;Rolling something on a flat surface +205878;Pushing something so that it almost falls off but doesn't +40595;Pretending to open something without actually opening it +212518;Pretending to scoop something up with something +8637;Trying but failing to attach something to something because it doesn't stick +144241;Twisting (wringing) something wet until water comes out +81059;Lifting up one end of something without letting it drop down +178757;Pretending to put something on a surface +86816;Tearing something just a little bit +144919;Putting something onto something else that cannot support it so it falls down +99405;Putting something that cannot actually stand upright upright on the table, so it falls on its side +175012;Pretending to take something out of something +189826;Hitting something with something +203874;Tearing something just a little bit +151729;Showing something next to something +126919;Digging something out of something +159175;Pushing something so that it slightly moves +150619;Turning something upside down +115085;Tearing something into two pieces +173570;Sprinkling something onto something +169477;Tearing something into two pieces +41562;Pulling something from left to right +58294;Pushing something from right to left +23878;Moving something and something away from each other +16464;Stacking number of something +153674;Covering something with something +87040;Something falling like a feather or paper +188657;Dropping something in front of something +97212;Putting something next to something +157869;Putting something that cannot actually stand upright upright on the table, so it falls on its side +161801;Moving part of something +166066;Covering something with something +207621;Something being deflected from something +46705;Tearing something just a little bit +58770;Showing something on top of something +73961;Tipping something with something in it over, so something in it falls out +172615;Holding something +61783;Holding something over something +3594;Lifting up one end of something, then letting it drop down +80976;Rolling something on a flat surface +12889;Tilting something with something on it slightly so it doesn't fall down +28173;Pretending to be tearing something that is not tearable +187531;Pushing something so that it almost falls off but doesn't +43903;Taking something out of something +210711;Pushing something so that it falls off the table +150294;Trying but failing to attach something to something because it doesn't stick +4215;Putting something on a surface +75441;Moving something away from the camera +14220;Putting number of something onto something +83952;Tearing something into two pieces +190987;Moving something and something away from each other +179400;Twisting something +145442;Lifting something up completely, then letting it drop down +109761;Pretending to poke something +52511;Turning the camera right while filming something +177613;Pretending to pick something up +9277;Moving something and something closer to each other +167792;Spinning something that quickly stops spinning +20985;Pushing something so that it falls off the table +143068;Hitting something with something +54394;Putting something that can't roll onto a slanted surface, so it slides down +54475;Pulling two ends of something so that it separates into two pieces +88504;Tearing something into two pieces +157867;Putting something on the edge of something so it is not supported and falls down +20369;Moving something down +69176;Pushing something so that it falls off the table +131820;Poking something so lightly that it doesn't or almost doesn't move +74028;Something falling like a feather or paper +208838;Dropping something onto something +152012;Dropping something onto something +157144;Taking one of many similar things on the table +61412;Poking something so lightly that it doesn't or almost doesn't move +16289;Pretending to open something without actually opening it +111283;Spinning something that quickly stops spinning +215590;Pretending or trying and failing to twist something +93601;Tearing something just a little bit +89164;Dropping something in front of something +51846;Putting something on the edge of something so it is not supported and falls down +94781;Pushing something so that it falls off the table +77376;Lifting up one end of something, then letting it drop down +161570;Moving something closer to something +24893;Rolling something on a flat surface +138422;Showing something behind something +91502;Picking something up +141389;Pushing something so that it falls off the table +176921;Putting something upright on the table +69743;Plugging something into something +48418;Piling something up +96084;Plugging something into something +11827;Pushing something with something +129457;Taking one of many similar things on the table +97277;Showing something on top of something +39442;Putting something in front of something +128467;Wiping something off of something +113956;Hitting something with something +93213;Tipping something over +47585;Plugging something into something +25026;Pretending to open something without actually opening it +133594;Turning something upside down +205967;Tearing something into two pieces +1747;Tipping something over +97400;Holding something next to something +45647;Spinning something that quickly stops spinning +246;Touching (without moving) part of something +142907;Holding something behind something +161137;Pretending or failing to wipe something off of something +91640;Tilting something with something on it until it falls off +54830;Putting number of something onto something +150427;Showing something next to something +204903;Folding something +203831;Putting something next to something +15095;Piling something up +93079;Holding something next to something +86168;Putting something on a surface +171070;Putting something onto something else that cannot support it so it falls down +203222;Pushing something so that it slightly moves +188493;Something falling like a feather or paper +172586;Removing something, revealing something behind +125639;Touching (without moving) part of something +137560;Plugging something into something +186792;Something falling like a rock +93745;Holding something over something +34614;Showing something behind something +21330;Turning the camera left while filming something +7593;Holding something in front of something +119842;Moving something across a surface without it falling down +145679;Holding something over something +37660;Showing that something is empty +49401;Pretending to be tearing something that is not tearable +156632;Pulling two ends of something but nothing happens +117765;Pushing something so that it falls off the table +181884;Putting something onto something +168155;Pushing something from left to right +61663;Pouring something out of something +159471;Pretending to take something out of something +104698;Showing that something is empty +160239;Squeezing something +206568;Moving something across a surface without it falling down +65308;Showing something behind something +52247;Plugging something into something +94989;Putting something on a surface +183828;Attaching something to something +56796;Taking one of many similar things on the table +165797;Plugging something into something but pulling it right out as you remove your hand +100258;Spinning something that quickly stops spinning +165271;Showing something next to something +116043;Holding something behind something +77118;Pretending to put something on a surface +190929;Putting something into something +183221;Showing that something is empty +19140;Pulling two ends of something so that it gets stretched +198363;Moving something away from something +101530;Tipping something with something in it over, so something in it falls out +149106;Turning something upside down +155922;Something falling like a feather or paper +10064;Moving something up +110508;Bending something so that it deforms +92676;Showing something on top of something +53857;Moving something and something closer to each other +109974;Putting something into something +63785;Putting something on a surface +68906;Something falling like a feather or paper +183213;Turning something upside down +86320;Pushing something so that it slightly moves +174457;Piling something up +33216;Pretending or trying and failing to twist something +200157;Holding something +104605;Holding something next to something +140719;Putting something that cannot actually stand upright upright on the table, so it falls on its side +128911;Dropping something into something +64342;Tearing something just a little bit +208099;Moving part of something +108417;Dropping something next to something +170348;Pulling something from right to left +158613;Something falling like a rock +27768;Plugging something into something +120326;Pretending to pour something out of something, but something is empty +91260;Dropping something into something +54716;Showing that something is empty +167213;Poking something so it slightly moves +150653;Something falling like a feather or paper +80738;Putting something on a surface +37936;Putting something on a surface +168516;Lifting a surface with something on it until it starts sliding down +216928;Moving something and something away from each other +203666;Pretending or trying and failing to twist something +42252;Poking a hole into some substance +56217;Folding something +18595;Throwing something onto a surface +62526;Showing something behind something +189217;Taking one of many similar things on the table +142410;Pushing something off of something +210034;Folding something +189004;Unfolding something +191001;Taking one of many similar things on the table +152945;Showing something on top of something +105230;Moving something and something away from each other +115456;Spinning something that quickly stops spinning +158541;Pretending or failing to wipe something off of something +139729;Poking something so it slightly moves +32322;Dropping something into something +113814;Holding something over something +219903;Putting something into something +79527;Moving something away from something +121792;Moving away from something with your camera +47596;Moving something and something closer to each other +197956;Plugging something into something +141931;Opening something +202841;Touching (without moving) part of something +198991;Moving something and something away from each other +30164;Turning something upside down +2068;Taking something from somewhere +146414;Poking something so lightly that it doesn't or almost doesn't move +112118;Letting something roll along a flat surface +22802;Squeezing something +145522;Pushing something from left to right +92207;Putting something on a surface +4988;Covering something with something +144286;Covering something with something +107595;Something falling like a feather or paper +196727;Taking something out of something +130239;Pretending to open something without actually opening it +174968;Holding something +119598;Pulling two ends of something so that it gets stretched +216281;Pulling two ends of something so that it separates into two pieces +30123;Tearing something into two pieces +139379;Throwing something in the air and catching it +132513;Tearing something into two pieces +190116;Turning something upside down +157994;Attaching something to something +57604;Something falling like a rock +51182;Covering something with something +125605;Holding something over something +170264;Spinning something that quickly stops spinning +15787;Putting something on the edge of something so it is not supported and falls down +150337;Moving part of something +212776;Pulling something onto something +142498;Pushing something so that it slightly moves +204320;Moving something away from something +110213;Moving part of something +44791;Taking something out of something +128557;Laying something on the table on its side, not upright +123824;Putting something on a surface +152372;Failing to put something into something because something does not fit +169439;Showing that something is inside something +153502;Pushing something so it spins +206307;Something falling like a feather or paper +124214;Putting something on a surface +168264;Throwing something in the air and letting it fall +220355;Stuffing something into something +201162;Putting something and something on the table +104034;Tearing something just a little bit +42614;Stuffing something into something +53266;Rolling something on a flat surface +157775;Plugging something into something +160407;Lifting something up completely, then letting it drop down +50473;Lifting something up completely without letting it drop down +160088;Squeezing something +186336;Putting something upright on the table +50687;Covering something with something +188312;Showing that something is empty +45360;Picking something up +11946;Pushing something so that it falls off the table +149491;Pushing something so it spins +52389;Opening something +9247;Pushing something from left to right +209280;Something falling like a rock +149146;Moving something up +190672;Removing something, revealing something behind +149690;Throwing something +114604;Pretending to pick something up +165135;Plugging something into something +200872;Dropping something onto something +12013;Bending something until it breaks +82543;Pushing something so that it falls off the table +15260;Folding something +186257;Folding something +135346;Putting something and something on the table +120058;Pretending to take something out of something +138202;Putting number of something onto something +177068;Holding something in front of something +79034;Laying something on the table on its side, not upright +158407;Holding something over something +207876;Tipping something with something in it over, so something in it falls out +121493;Picking something up +18644;Opening something +61971;Covering something with something +50060;Moving something up +77504;Pretending to pick something up +115329;Moving something and something closer to each other +95331;Pulling something from left to right +120586;Pretending to poke something +194207;Rolling something on a flat surface +42345;Twisting (wringing) something wet until water comes out +123256;Unfolding something +152726;Putting something similar to other things that are already on the table +75070;Moving something away from something +88079;Throwing something onto a surface +197397;Letting something roll down a slanted surface +133645;Picking something up +114242;Pushing something from right to left +127975;Pushing something so that it slightly moves +27857;Showing that something is empty +208593;Unfolding something +88751;Moving something away from something +13400;Moving something and something closer to each other +36062;Pushing something so that it falls off the table +131267;Pretending to spread air onto something +118568;Pushing something so that it slightly moves +177458;Turning something upside down +145041;Spinning something so it continues spinning +144834;Moving something and something closer to each other +44004;Something falling like a feather or paper +30555;Putting something that cannot actually stand upright upright on the table, so it falls on its side +191062;Pretending to take something from somewhere +94739;Throwing something in the air and letting it fall +83056;Twisting (wringing) something wet until water comes out +150385;Covering something with something +122941;Showing something next to something +180311;Touching (without moving) part of something +12468;Plugging something into something but pulling it right out as you remove your hand +100367;Putting something similar to other things that are already on the table +132749;Turning the camera upwards while filming something +149169;Spinning something that quickly stops spinning +131467;Taking something from somewhere +175307;Something falling like a feather or paper +212227;Tearing something just a little bit +20103;Attaching something to something +10181;Trying to bend something unbendable so nothing happens +92027;Pushing something with something +215738;Stuffing something into something +191196;Showing something on top of something +6546;Pretending to close something without actually closing it +166983;Lifting up one end of something without letting it drop down +32669;Unfolding something +212789;Trying but failing to attach something to something because it doesn't stick +138479;Moving something towards the camera +177792;Taking something out of something +87343;Showing something on top of something +63606;Pushing something so that it almost falls off but doesn't +1860;Holding something next to something +113694;Taking one of many similar things on the table +45386;Pretending to poke something +128716;Covering something with something +35984;Moving something up +133791;Putting something on a surface +52712;Showing something on top of something +30445;Bending something so that it deforms +126192;Putting something in front of something +98265;Squeezing something +15857;Showing something behind something +42307;Moving something up +121741;Poking something so it slightly moves +197432;Pushing something from left to right +23283;Dropping something behind something +205628;Throwing something +42152;Holding something next to something +94471;Putting something and something on the table +180212;Pretending or failing to wipe something off of something +38234;Pretending to open something without actually opening it +103120;Covering something with something +88896;Showing something next to something +199349;Pouring something into something +118454;Putting something onto something else that cannot support it so it falls down +53946;Piling something up +170189;Plugging something into something +101185;Stuffing something into something +31971;Holding something in front of something +167368;Covering something with something +124818;Folding something +5411;Stuffing something into something +184632;Stuffing something into something +73772;Moving something down +3798;Opening something +175076;Showing something behind something +215215;Showing that something is empty +75321;Throwing something in the air and catching it +197309;Wiping something off of something +47398;Spinning something that quickly stops spinning +161478;Spilling something next to something +13023;Pushing something so that it falls off the table +139255;Showing something next to something +163643;Poking something so lightly that it doesn't or almost doesn't move +83263;Holding something behind something +175003;Moving something and something closer to each other +6158;Pretending to put something into something +109368;Covering something with something +41523;Laying something on the table on its side, not upright +78778;Spinning something so it continues spinning +295;Squeezing something +139804;Poking something so lightly that it doesn't or almost doesn't move +87583;Twisting something +103676;Plugging something into something but pulling it right out as you remove your hand +205314;Rolling something on a flat surface +149013;Throwing something in the air and letting it fall +16366;Tearing something just a little bit +136033;Pretending to pick something up +4290;Removing something, revealing something behind +191081;Letting something roll down a slanted surface +201788;Something colliding with something and both are being deflected +210062;Pushing something so it spins +14769;Approaching something with your camera +167719;Bending something so that it deforms +57047;Moving part of something +49658;Showing something behind something +194283;Poking something so lightly that it doesn't or almost doesn't move +196977;Twisting something +55237;Pouring something out of something +133603;Showing something next to something +72070;Pushing something so that it slightly moves +127530;Rolling something on a flat surface +105822;Taking one of many similar things on the table +96757;Throwing something +122348;Pulling something from behind of something +155382;Moving something and something away from each other +198910;Hitting something with something +15730;Showing something behind something +33567;Piling something up +149127;Rolling something on a flat surface +37120;Pretending to turn something upside down +159853;Showing something to the camera +109261;Showing something next to something +158898;Moving something and something away from each other +1952;Throwing something in the air and letting it fall +206063;Holding something behind something +66624;Wiping something off of something +32805;Touching (without moving) part of something +165783;Opening something +121991;Stuffing something into something +86011;Something colliding with something and both come to a halt +162132;Something falling like a rock +149880;Wiping something off of something +193999;Putting something behind something +190092;Tearing something into two pieces +15624;Pushing something so that it slightly moves +70755;Dropping something in front of something +71099;Poking something so lightly that it doesn't or almost doesn't move +200228;Putting something into something +74174;Moving something closer to something +174372;Tipping something over +99312;Pouring something into something until it overflows +195221;Something falling like a rock +36200;Twisting something +140921;Wiping something off of something +47276;Tearing something just a little bit +174761;Throwing something against something +211408;Tearing something just a little bit +159164;Stuffing something into something +1872;Dropping something onto something +78412;Uncovering something +75608;Spinning something that quickly stops spinning +189026;Showing something behind something +87030;Throwing something in the air and letting it fall +200431;Pushing something so that it almost falls off but doesn't +212397;Moving something away from something +13778;Pushing something so that it slightly moves +76783;Uncovering something +97107;Moving something closer to something +135537;Rolling something on a flat surface +131619;Moving something and something closer to each other +17260;Moving something closer to something +60573;Lifting something with something on it +164608;Holding something behind something +10090;Taking something out of something +10795;Moving something and something so they collide with each other +205126;Showing that something is empty +37035;Plugging something into something +28899;Moving something and something away from each other +176417;Tearing something just a little bit +84010;Pouring something into something +190688;Tearing something into two pieces +161705;Tearing something into two pieces +22103;Lifting something up completely, then letting it drop down +109438;Taking something out of something +7294;Taking something out of something +157485;Pretending to throw something +46505;Holding something next to something +208489;Pulling something from right to left +202593;Covering something with something +36943;Lifting something up completely without letting it drop down +11534;Pouring something into something +59031;Poking something so it slightly moves +100088;Pretending to take something from somewhere +30488;Moving something and something closer to each other +179723;Pushing something onto something +106067;Showing something on top of something +220137;Pulling two ends of something so that it gets stretched +11853;Stuffing something into something +204567;Poking a hole into something soft +156321;Laying something on the table on its side, not upright +135752;Moving something down +211329;Holding something behind something +91351;Dropping something onto something +60427;Pouring something out of something +122762;Poking something so that it falls over +171517;Squeezing something +67836;Pushing something so that it almost falls off but doesn't +20614;Uncovering something +145335;Putting something on a flat surface without letting it roll +196587;Holding something next to something +73384;Moving something and something away from each other +19916;Burying something in something +73645;Moving something up +110031;Putting something that cannot actually stand upright upright on the table, so it falls on its side +213865;Tipping something over +31466;Uncovering something +109470;Pulling two ends of something so that it separates into two pieces +208476;Turning the camera upwards while filming something +44787;Putting something similar to other things that are already on the table +54580;Putting something onto something else that cannot support it so it falls down +93469;Pushing something so that it falls off the table +69672;Poking something so that it falls over +75874;Poking something so it slightly moves +79446;Spinning something so it continues spinning +33428;Opening something +185797;Pushing something so it spins +149730;Opening something +217852;Showing that something is inside something +216417;Something falling like a feather or paper +161118;Turning something upside down +149093;Stacking number of something +47408;Letting something roll up a slanted surface, so it rolls back down +125410;Letting something roll along a flat surface +149060;Showing that something is empty +35311;Bending something so that it deforms +100140;Showing that something is inside something +48089;Something falling like a rock +121559;Tearing something just a little bit +87457;Showing something on top of something +169926;Holding something over something +209056;Tilting something with something on it until it falls off +17787;Pushing something off of something +107807;Covering something with something +44034;Burying something in something +219251;Putting something on a surface +162001;Rolling something on a flat surface +179250;Pretending to pick something up +35166;Stacking number of something +149396;Trying to pour something into something, but missing so it spills next to it +169010;Spilling something onto something +92770;Plugging something into something +99151;Moving something and something closer to each other +41512;Something falling like a rock +178184;Picking something up +140383;Plugging something into something but pulling it right out as you remove your hand +165622;Wiping something off of something +134743;Closing something +130283;Rolling something on a flat surface +164290;Lifting something up completely without letting it drop down +102093;Rolling something on a flat surface +82930;Pretending to take something from somewhere +124885;Something falling like a rock +78271;Moving something and something closer to each other +214986;Hitting something with something +24729;Showing that something is inside something +124118;Showing something on top of something +81451;Moving something closer to something +78563;Lifting something with something on it +41610;Touching (without moving) part of something +58027;Tipping something over +147496;Holding something over something +41014;Pretending to open something without actually opening it +148264;Pretending to open something without actually opening it +155036;Pulling something from left to right +47448;Turning something upside down +118658;Moving something and something closer to each other +216581;Putting something into something +38222;Tilting something with something on it until it falls off +104065;Showing something next to something +99941;Moving something and something closer to each other +177011;Poking a stack of something without the stack collapsing +37994;Poking something so lightly that it doesn't or almost doesn't move +141422;Bending something so that it deforms +17313;Covering something with something +150196;Hitting something with something +192065;Plugging something into something but pulling it right out as you remove your hand +176445;Moving part of something +65353;Folding something +193132;Something falling like a rock +143956;Covering something with something +162139;Pretending to be tearing something that is not tearable +21344;Showing something next to something +14921;Uncovering something +117;Showing something next to something +157135;Moving something away from something +11746;Showing that something is empty +171541;Tearing something just a little bit +66023;Moving something closer to something +211177;Throwing something +152544;Tilting something with something on it slightly so it doesn't fall down +63874;Taking one of many similar things on the table +133902;Touching (without moving) part of something +5355;Pretending to poke something +58731;Putting something next to something +216886;Putting something and something on the table +72362;Moving part of something +51662;Showing something behind something +110088;Moving something away from something +68557;Holding something in front of something +28677;Folding something +53844;Poking something so it slightly moves +160722;Folding something +26964;Unfolding something +128793;Squeezing something +104098;Pretending to pick something up +177504;Pouring something into something +54964;Showing something on top of something +98406;Hitting something with something +184680;Tearing something into two pieces +94100;Lifting something with something on it +80682;Pretending to pick something up +98641;Throwing something in the air and letting it fall +154086;Moving something closer to something +59677;Holding something +79562;Pushing something from left to right +34734;Pulling something from left to right +61148;Tipping something over +58365;Moving something and something away from each other +157407;Tearing something into two pieces +205825;Moving something towards the camera +95515;Plugging something into something but pulling it right out as you remove your hand +19150;Something falling like a feather or paper +82233;Putting something into something +76894;Showing something next to something +87759;Holding something in front of something +63491;Putting something similar to other things that are already on the table +159522;Uncovering something +169483;Something falling like a rock +169925;Putting something upright on the table +187123;Closing something +60643;Bending something until it breaks +149919;Lifting a surface with something on it but not enough for it to slide down +83346;Pretending or failing to wipe something off of something +22000;Putting something into something +148246;Tearing something into two pieces +119547;Lifting something up completely, then letting it drop down +140655;Putting something similar to other things that are already on the table +208661;Spinning something that quickly stops spinning +207403;Showing something on top of something +46755;Attaching something to something +158249;Holding something behind something +105064;Tearing something just a little bit +139902;Lifting something with something on it +205663;Holding something in front of something +136373;Putting something next to something +68539;Plugging something into something +60223;Trying but failing to attach something to something because it doesn't stick +178842;Trying to bend something unbendable so nothing happens +14622;Spinning something so it continues spinning +212666;Pouring something onto something +175149;Pushing something so that it slightly moves +34644;Pretending to pick something up +108346;Something falling like a feather or paper +26987;Scooping something up with something +92979;Laying something on the table on its side, not upright +213892;Tearing something into two pieces +185320;Poking something so that it falls over +61577;Pushing something so that it falls off the table +162792;Pushing something so that it almost falls off but doesn't +85743;Spilling something onto something +70968;Tearing something just a little bit +148244;Moving part of something +112958;Moving something and something closer to each other +174798;Attaching something to something +18703;Pulling something from right to left +188059;Trying but failing to attach something to something because it doesn't stick +51654;Attaching something to something +181897;Bending something so that it deforms +152937;Pushing something onto something +102495;Putting something next to something +105691;Laying something on the table on its side, not upright +211105;Pouring something into something +13120;Trying to bend something unbendable so nothing happens +74693;Moving something away from something +172862;Taking something out of something +74212;Unfolding something +161510;Taking something from somewhere +52887;Something falling like a feather or paper +4488;Pretending to put something underneath something +134080;Pulling two ends of something so that it gets stretched +156259;Touching (without moving) part of something +35112;Removing something, revealing something behind +70672;Pretending to be tearing something that is not tearable +74155;Bending something so that it deforms +66475;Poking something so it slightly moves +8451;Lifting a surface with something on it but not enough for it to slide down +56393;Touching (without moving) part of something +111735;Showing something behind something +24869;Putting something onto something +183513;Throwing something onto a surface +151997;Tearing something into two pieces +68234;Tearing something just a little bit +189247;Putting something similar to other things that are already on the table +153459;Putting something onto something else that cannot support it so it falls down +12994;Lifting something with something on it +41143;Bending something so that it deforms +180546;Pouring something into something +80013;Holding something behind something +176055;Something colliding with something and both are being deflected +51447;Dropping something into something +88498;Pushing something from right to left +170951;Stuffing something into something +100628;Turning the camera upwards while filming something +50119;Opening something +109251;Tipping something over +87894;Something falling like a feather or paper +144053;Throwing something +145215;Trying to bend something unbendable so nothing happens +47973;Holding something next to something +194690;Covering something with something +184978;Something being deflected from something +81400;Tearing something into two pieces +19103;Stacking number of something +204138;Pretending to poke something +9164;Hitting something with something +82489;Spinning something so it continues spinning +31053;Showing something on top of something +170490;Plugging something into something +201392;Pulling something out of something +98951;Throwing something against something +18020;Moving something and something away from each other +29753;Putting something on a surface +189917;Attaching something to something +109896;Closing something +39998;Trying to bend something unbendable so nothing happens +21659;Pretending to put something on a surface +141033;Taking something out of something +204272;Putting something on a surface +142264;Poking something so lightly that it doesn't or almost doesn't move +186284;Letting something roll down a slanted surface +197269;Showing something behind something +154618;Squeezing something +214033;Taking one of many similar things on the table +215588;Dropping something onto something +86021;Pretending to open something without actually opening it +163130;Pushing something from left to right +68626;Showing something next to something +165196;Moving something and something away from each other +141456;Throwing something onto a surface +113562;Something falling like a feather or paper +190373;Plugging something into something but pulling it right out as you remove your hand +183463;Plugging something into something +148684;Tearing something just a little bit +39975;Poking something so lightly that it doesn't or almost doesn't move +87520;Moving something and something away from each other +206177;Pretending to scoop something up with something +87401;Putting something similar to other things that are already on the table +33529;Putting something onto a slanted surface but it doesn't glide down +70859;Putting something similar to other things that are already on the table +7273;Tilting something with something on it until it falls off +220071;Pushing something so that it slightly moves +214121;Tearing something into two pieces +41338;Poking something so lightly that it doesn't or almost doesn't move +206140;Turning something upside down +187475;Putting something underneath something +72398;Lifting up one end of something, then letting it drop down +142217;Putting something that cannot actually stand upright upright on the table, so it falls on its side +115972;Dropping something behind something +122913;Plugging something into something but pulling it right out as you remove your hand +2155;Poking a stack of something so the stack collapses +160805;Poking a stack of something without the stack collapsing +75304;Spilling something onto something +204901;Tearing something just a little bit +86855;Dropping something behind something +96744;Something being deflected from something +43705;Tearing something just a little bit +142803;Tearing something just a little bit +76631;Letting something roll down a slanted surface +86626;Taking one of many similar things on the table +158792;Pretending to poke something +166117;Putting something into something +102480;Showing that something is empty +136988;Lifting a surface with something on it until it starts sliding down +116601;Showing that something is inside something +109269;Putting number of something onto something +5471;Letting something roll along a flat surface +153189;Stuffing something into something +24847;Poking something so lightly that it doesn't or almost doesn't move +133128;Pretending to put something into something +195054;Putting something in front of something +34742;Pouring something into something until it overflows +177570;Pushing something from right to left +103578;Tipping something over +162324;Tipping something over +67290;Pulling something from left to right +72977;Pushing something with something +98319;Moving something closer to something +17756;Putting something into something +69256;Something colliding with something and both are being deflected +26566;Moving something closer to something +105815;Bending something so that it deforms +1106;Dropping something onto something +201639;Turning something upside down +174403;Moving something closer to something +114734;Letting something roll along a flat surface +29138;Dropping something onto something +77238;Moving something and something closer to each other +173332;Taking something out of something +98988;Turning something upside down +213174;Taking one of many similar things on the table +49987;Laying something on the table on its side, not upright +104927;Putting something similar to other things that are already on the table +130617;Holding something next to something +134582;Putting number of something onto something +110324;Holding something in front of something +42476;Hitting something with something +73639;Something being deflected from something +6324;Picking something up +188997;Poking something so it slightly moves +95662;Lifting something with something on it +40970;Showing something behind something +20241;Moving something and something so they collide with each other +148956;Pretending to pick something up +133398;Holding something +212103;Covering something with something +190835;Tearing something into two pieces +167902;Pulling something from left to right +161644;Putting something onto a slanted surface but it doesn't glide down +202387;Closing something +212948;Showing something next to something +39054;Tilting something with something on it until it falls off +217575;Throwing something in the air and letting it fall +156489;Touching (without moving) part of something +205782;Poking something so it slightly moves +24905;Rolling something on a flat surface +217113;Pouring something out of something +174066;Something falling like a rock +160101;Pretending to put something behind something +61132;Pretending to be tearing something that is not tearable +106399;Holding something in front of something +219040;Pretending to pick something up +175787;Pretending to pick something up +33243;Pretending to poke something +129595;Throwing something +100221;Dropping something in front of something +186251;Pretending to spread air onto something +133181;Rolling something on a flat surface +60894;Putting something that cannot actually stand upright upright on the table, so it falls on its side +102977;Stacking number of something +78999;Stuffing something into something +1132;Taking something out of something +213423;Plugging something into something +45986;Pushing something with something +191281;Tearing something into two pieces +14989;Putting something that cannot actually stand upright upright on the table, so it falls on its side +17883;Putting something on a flat surface without letting it roll +104714;Pushing something so that it slightly moves +216623;Something falling like a rock +194580;Moving something and something closer to each other +81295;Holding something next to something +7980;Pretending to put something next to something +26826;Wiping something off of something +30332;Putting something, something and something on the table +142901;Laying something on the table on its side, not upright +43014;Moving something and something so they pass each other +170845;Twisting something +42021;Holding something behind something +196684;Bending something so that it deforms +89426;Tearing something into two pieces +203942;Tearing something into two pieces +75178;Throwing something in the air and catching it +104487;Showing something behind something +23685;Pretending to poke something +2928;Putting something into something +145890;Letting something roll along a flat surface +58153;Turning something upside down +175797;Plugging something into something +93653;Pulling two ends of something so that it gets stretched +103491;Pretending to pick something up +193313;Moving something and something away from each other +78411;Throwing something +162896;Moving something and something closer to each other +126043;Plugging something into something +207987;Something falling like a rock +33862;Dropping something in front of something +61731;Putting something onto something else that cannot support it so it falls down +70024;Tearing something into two pieces +55064;Spinning something that quickly stops spinning +159998;Holding something over something +216916;Opening something +88696;Pulling something from left to right +154134;Pretending to pick something up +94530;Throwing something onto a surface +57185;Approaching something with your camera +188873;Something falling like a rock +162606;Attaching something to something +182214;Bending something until it breaks +99564;Lifting something with something on it +87727;Showing that something is inside something +89293;Bending something so that it deforms +88168;Turning something upside down +111051;Taking something out of something +141265;Pulling something from left to right +100685;Something colliding with something and both are being deflected +182984;Picking something up +48000;Folding something +196848;Taking something from somewhere +124877;Putting something on a surface +41451;Turning something upside down +176303;Pouring something into something until it overflows +116400;Poking something so that it spins around +71359;Bending something so that it deforms +166725;Holding something behind something +30755;Poking a stack of something so the stack collapses +175084;Something falling like a feather or paper +208183;Pouring something into something +216226;Lifting something up completely without letting it drop down +205099;Poking something so lightly that it doesn't or almost doesn't move +151104;Putting something similar to other things that are already on the table +143347;Putting something next to something +405;Trying to bend something unbendable so nothing happens +201415;Showing that something is empty +101777;Pulling two ends of something but nothing happens +135754;Stuffing something into something +212402;Holding something +156000;Spreading something onto something +71543;Moving something and something closer to each other +118153;Pulling something from behind of something +46949;Tearing something into two pieces +70991;Putting something similar to other things that are already on the table +178784;Plugging something into something but pulling it right out as you remove your hand +13806;Moving something and something away from each other +218656;Pulling two ends of something so that it gets stretched +33969;Taking one of many similar things on the table +136004;Putting something that can't roll onto a slanted surface, so it stays where it is +202749;Stuffing something into something +19796;Pushing something so that it almost falls off but doesn't +89925;Approaching something with your camera +206173;Turning something upside down +166157;Dropping something onto something +133825;Holding something next to something +61464;Putting something underneath something +96952;Putting something similar to other things that are already on the table +174606;Poking something so that it falls over +176947;Holding something over something +75916;Piling something up +162016;Dropping something onto something +176084;Moving something up +170943;Squeezing something +55449;Piling something up +145665;Pushing something with something +129435;Pretending to open something without actually opening it +60667;Moving something and something away from each other +114646;Sprinkling something onto something +203375;Spinning something so it continues spinning +187250;Pushing something from left to right +63692;Throwing something in the air and letting it fall +125094;Moving something down +63817;Putting something on a flat surface without letting it roll +8340;Twisting (wringing) something wet until water comes out +130841;Lifting something up completely without letting it drop down +134097;Tipping something with something in it over, so something in it falls out +178898;Putting something behind something +74361;Pouring something into something +191771;Holding something over something +67989;Dropping something in front of something +137295;Tearing something into two pieces +196922;Closing something +200012;Putting something on a surface +185524;Pretending to pour something out of something, but something is empty +1075;Tearing something into two pieces +65352;Pretending to turn something upside down +38789;Showing something behind something +121539;Uncovering something +155360;Tipping something over +143566;Squeezing something +17975;Covering something with something +134170;Taking something from somewhere +116599;Covering something with something +56052;Lifting something up completely, then letting it drop down +210502;Trying to bend something unbendable so nothing happens +131274;Uncovering something +2495;Covering something with something +48948;Putting something on a surface +121773;Pushing something so that it slightly moves +80333;Showing that something is inside something +26613;Throwing something +152681;Pulling something out of something +152482;Piling something up +183107;Pretending or failing to wipe something off of something +105219;Pushing something from left to right +63768;Turning something upside down +151125;Tearing something into two pieces +145597;Putting number of something onto something +47181;Throwing something in the air and letting it fall +110292;Moving something and something away from each other +164;Moving something and something closer to each other +184352;Putting something in front of something +18464;Pulling something from left to right +123482;Holding something behind something +115199;Turning something upside down +87417;Turning something upside down +12076;Pushing something from right to left +99228;Pretending to pick something up +207943;Trying to bend something unbendable so nothing happens +167810;Dropping something onto something +103917;Putting something next to something +10602;Opening something +1841;Bending something so that it deforms +135576;Pouring something into something +181855;Pulling something from right to left +13241;Pushing something so that it falls off the table +51856;Wiping something off of something +60762;Twisting something +109243;Plugging something into something +203078;Bending something so that it deforms +100343;Trying but failing to attach something to something because it doesn't stick +30342;Putting something behind something +30602;Plugging something into something +204460;Hitting something with something +201440;Dropping something onto something +172828;Turning the camera right while filming something +160564;Tilting something with something on it slightly so it doesn't fall down +29184;Bending something until it breaks +78218;Tilting something with something on it until it falls off +199344;Plugging something into something +65084;Moving something and something closer to each other +197255;Putting something, something and something on the table +76906;Holding something over something +187534;Moving something across a surface until it falls down +121708;Rolling something on a flat surface +98575;Putting something on a surface +197285;Hitting something with something +180064;Putting something behind something +69938;Twisting something +161719;Piling something up +169109;Throwing something +100557;Pretending to pour something out of something, but something is empty +96680;Pulling something from left to right +135797;Picking something up +65436;Putting something that can't roll onto a slanted surface, so it slides down +58790;Pretending to be tearing something that is not tearable +159095;Throwing something onto a surface +220147;Plugging something into something +207858;Tearing something into two pieces +107842;Turning something upside down +152386;Holding something next to something +2724;Pushing something off of something +152435;Turning something upside down +150405;Holding something next to something +144705;Taking something from somewhere +164479;Pushing something so it spins +134281;Turning the camera upwards while filming something +170447;Something falling like a feather or paper +217101;Putting something behind something +191566;Throwing something against something +73088;Throwing something onto a surface +49975;Pretending to be tearing something that is not tearable +86530;Tilting something with something on it slightly so it doesn't fall down +187137;Pulling two ends of something so that it gets stretched +93890;Holding something in front of something +157383;Folding something +29500;Showing something next to something +92036;Moving something and something closer to each other +23270;Dropping something onto something +90193;Folding something +21441;Turning something upside down +150446;Turning something upside down +5385;Pushing something so that it slightly moves +179697;Moving something across a surface without it falling down +55845;Putting something next to something +83454;Twisting (wringing) something wet until water comes out +113278;Pouring something onto something +75214;Pretending to poke something +117286;Showing something behind something +152318;Putting something, something and something on the table +55352;Bending something until it breaks +53100;Holding something behind something +4291;Something falling like a rock +49198;Showing something behind something +205536;Putting something next to something +46729;Pushing something so it spins +96797;Pretending to put something on a surface +132988;Moving something up +143760;Failing to put something into something because something does not fit +71414;Moving something away from something +29147;Pretending to throw something +133786;Turning something upside down +105055;Letting something roll up a slanted surface, so it rolls back down +109351;Something being deflected from something +218070;Pretending to put something behind something +194201;Pretending to open something without actually opening it +59357;Squeezing something +9050;Pretending to turn something upside down +217670;Rolling something on a flat surface +73230;Spilling something next to something +157558;Putting something next to something +85509;Taking one of many similar things on the table +144582;Tearing something into two pieces +220442;Pushing something so that it slightly moves +124529;Lifting up one end of something, then letting it drop down +72713;Taking something out of something +208089;Putting something into something +85869;Stuffing something into something +64963;Scooping something up with something +40429;Turning something upside down +133785;Lifting something up completely, then letting it drop down +214514;Moving something away from something +190806;Holding something over something +22554;Trying to bend something unbendable so nothing happens +212999;Plugging something into something +183127;Covering something with something +70939;Dropping something into something +216373;Moving something and something closer to each other +153934;Squeezing something +117657;Putting something in front of something +147312;Pulling two ends of something so that it gets stretched +173273;Holding something behind something +178409;Something falling like a rock +159676;Laying something on the table on its side, not upright +166404;Tipping something over +3767;Showing something behind something +134745;Dropping something into something +91831;Throwing something in the air and catching it +132368;Holding something +20416;Showing something behind something +201795;Moving something and something away from each other +84425;Digging something out of something +2360;Showing that something is empty +185523;Failing to put something into something because something does not fit +109559;Holding something +152061;Putting something, something and something on the table +210840;Pulling two ends of something but nothing happens +38320;Uncovering something +216865;Taking one of many similar things on the table +194595;Lifting up one end of something, then letting it drop down +54938;Pushing something from left to right +35859;Pretending to be tearing something that is not tearable +125953;Stuffing something into something +167624;Stuffing something into something +56665;Holding something +47278;Wiping something off of something +30460;Showing something behind something +116485;Spinning something that quickly stops spinning +21451;Poking something so lightly that it doesn't or almost doesn't move +111669;Uncovering something +195829;Putting something onto something else that cannot support it so it falls down +218840;Pulling something from left to right +205590;Lifting up one end of something, then letting it drop down +28357;Pretending to be tearing something that is not tearable +164136;Uncovering something +112700;Pouring something into something +126785;Pouring something into something +123435;Pretending to pour something out of something, but something is empty +125116;Lifting something with something on it +111003;Pushing something with something +96344;Showing something next to something +159513;Pushing something from left to right +120234;Closing something +65951;Rolling something on a flat surface +99595;Pretending to pick something up +203289;Tearing something into two pieces +32229;Throwing something in the air and letting it fall +200960;Trying to bend something unbendable so nothing happens +42203;Taking one of many similar things on the table +160180;Putting something similar to other things that are already on the table +38603;Throwing something onto a surface +61697;Plugging something into something +150907;Lifting up one end of something, then letting it drop down +113127;Pretending to open something without actually opening it +192830;Pushing something with something +150296;Squeezing something +63052;Pulling something from left to right +51379;Taking something from somewhere +168355;Something falling like a feather or paper +79072;Pretending to close something without actually closing it +142344;Holding something over something +79324;Tipping something over +73443;Moving something away from something +80823;Letting something roll down a slanted surface +1901;Taking something out of something +199176;Lifting something with something on it +93593;Poking a stack of something so the stack collapses +112929;Trying but failing to attach something to something because it doesn't stick +164575;Moving something closer to something +13673;Taking something out of something +100265;Pretending to take something from somewhere +200150;Folding something +120212;Holding something in front of something +187063;Plugging something into something +206005;Showing something on top of something +152401;Removing something, revealing something behind +108418;Moving something and something closer to each other +51117;Pushing something from left to right +149242;Laying something on the table on its side, not upright +145388;Twisting (wringing) something wet until water comes out +141333;Showing a photo of something to the camera +108773;Showing that something is empty +60054;Pouring something into something +188368;Pretending to take something out of something +84529;Scooping something up with something +39562;Turning the camera downwards while filming something +97129;Putting number of something onto something +155799;Pouring something out of something +189487;Stuffing something into something +13848;Moving something and something closer to each other +104267;Something colliding with something and both come to a halt +74548;Spinning something that quickly stops spinning +150191;Something falling like a feather or paper +125578;Holding something over something +185450;Pretending to pick something up +197411;Holding something behind something +108043;Moving something away from something +44273;Bending something so that it deforms +80045;Pretending or failing to wipe something off of something +209845;Moving something and something closer to each other +150925;Bending something until it breaks +139386;Tilting something with something on it slightly so it doesn't fall down +108363;Pretending to be tearing something that is not tearable +196348;Moving something closer to something +150359;Plugging something into something +15405;Moving something down +48213;Throwing something in the air and letting it fall +162097;Stuffing something into something +86425;Putting something on a surface +13985;Squeezing something +134866;Something falling like a rock +68612;Pretending to close something without actually closing it +145069;Poking a stack of something without the stack collapsing +132736;Tipping something over +7462;Moving part of something +151890;Putting something in front of something +66166;Plugging something into something +160575;Spinning something that quickly stops spinning +48247;Putting something into something +85460;Pushing something so it spins +175949;Tilting something with something on it until it falls off +36335;Dropping something onto something +70057;Scooping something up with something +121993;Bending something so that it deforms +212243;Pretending to squeeze something +104921;Pretending to turn something upside down +1712;Pretending to sprinkle air onto something +175316;Pulling something from right to left +95697;Pushing something so that it falls off the table +121146;Pretending to open something without actually opening it +198044;Plugging something into something but pulling it right out as you remove your hand +141157;Opening something +85824;Picking something up +62956;Pushing something so that it slightly moves +89938;Spinning something so it continues spinning +133345;Pushing something so that it falls off the table +1437;Moving something closer to something +139359;Lifting something with something on it +99868;Pulling two ends of something so that it gets stretched +56926;Moving something and something away from each other +200786;Moving something closer to something +170695;Hitting something with something +181620;Letting something roll along a flat surface +184460;Tearing something just a little bit +200800;Tipping something with something in it over, so something in it falls out +31768;Squeezing something +200352;Covering something with something +219433;Bending something so that it deforms +66717;Letting something roll along a flat surface +7754;Pretending to close something without actually closing it +86034;Pretending to pick something up +60123;Twisting (wringing) something wet until water comes out +126576;Twisting something +172065;Moving something away from something +162531;Attaching something to something +128329;Taking something out of something +215037;Dropping something into something +211896;Holding something over something +180832;Lifting up one end of something without letting it drop down +102630;Pretending to put something onto something +175721;Twisting something +178553;Folding something +152548;Wiping something off of something +37309;Pretending to spread air onto something +142671;Moving something up +202035;Covering something with something +107335;Something colliding with something and both are being deflected +150180;Showing something behind something +83253;Squeezing something +107531;Poking something so that it falls over +140390;Pushing something from left to right +203607;Picking something up +122928;Pushing something off of something +137200;Squeezing something +206098;Putting something on a flat surface without letting it roll +187447;Showing something behind something +201868;Tearing something into two pieces +84766;Pushing something from left to right +218432;Pushing something so that it slightly moves +156887;Letting something roll down a slanted surface +142680;Holding something behind something +78099;Putting something that cannot actually stand upright upright on the table, so it falls on its side +52505;Squeezing something +54515;Spinning something that quickly stops spinning +206344;Letting something roll down a slanted surface +118200;Taking something out of something +30287;Lifting something with something on it +89009;Pretending to sprinkle air onto something +114434;Plugging something into something +32222;Showing something next to something +160614;Uncovering something +9797;Taking one of many similar things on the table +48781;Tearing something just a little bit +146085;Turning something upside down +73999;Moving something and something closer to each other +29124;Something colliding with something and both come to a halt +114208;Putting something in front of something +11154;Pushing something from right to left +112001;Holding something next to something +199083;Throwing something +56605;Pushing something from left to right +110505;Showing something on top of something +181341;Moving something and something closer to each other +118933;Trying to bend something unbendable so nothing happens +206458;Turning something upside down +77251;Closing something +128887;Tearing something just a little bit +196667;Stacking number of something +114126;Holding something behind something +95270;Putting something, something and something on the table +70722;Holding something next to something +49269;Throwing something in the air and catching it +64891;Opening something +94581;Throwing something in the air and catching it +49928;Pouring something into something +73204;Letting something roll along a flat surface +71325;Turning the camera left while filming something +69144;Tipping something over +198246;Pushing something so it spins +180943;Hitting something with something +158181;Pushing something from left to right +20258;Pulling something out of something +40534;Pushing something from right to left +37131;Removing something, revealing something behind +199033;Folding something +191564;Lifting up one end of something without letting it drop down +158802;Squeezing something +141594;Burying something in something +196365;Taking one of many similar things on the table +133233;Turning something upside down +96108;Trying to pour something into something, but missing so it spills next to it +97174;Putting something and something on the table +115303;Showing something on top of something +210460;Pushing something off of something +27312;Taking one of many similar things on the table +111101;Dropping something in front of something +142751;Laying something on the table on its side, not upright +211733;Pulling something from right to left +118683;Spilling something next to something +220140;Pushing something so that it almost falls off but doesn't +182321;Something colliding with something and both are being deflected +186490;Turning something upside down +73835;Putting something similar to other things that are already on the table +36112;Showing something next to something +203557;Unfolding something +200841;Tearing something just a little bit +67580;Putting number of something onto something +86038;Pushing something so that it falls off the table +59899;Lifting up one end of something, then letting it drop down +152837;Dropping something onto something +177840;Touching (without moving) part of something +179409;Tearing something into two pieces +203089;Trying to bend something unbendable so nothing happens +41871;Spinning something that quickly stops spinning +202180;Plugging something into something but pulling it right out as you remove your hand +63344;Pushing something from left to right +178440;Tearing something just a little bit +198884;Moving something and something closer to each other +20488;Moving something and something closer to each other +20541;Unfolding something +12203;Moving something towards the camera +23652;Moving something and something closer to each other +210979;Showing something behind something +212459;Removing something, revealing something behind +90390;Pouring something into something +75135;Pretending or trying and failing to twist something +91166;Lifting up one end of something without letting it drop down +86931;Plugging something into something +199323;Putting something into something +151191;Hitting something with something +189972;Stuffing something into something +159051;Dropping something next to something +178748;Spinning something that quickly stops spinning +149118;Putting something similar to other things that are already on the table +101392;Bending something so that it deforms +216011;Dropping something into something +189742;Putting something upright on the table +30288;Twisting (wringing) something wet until water comes out +428;Showing that something is empty +3600;Moving something and something closer to each other +42857;Taking one of many similar things on the table +151450;Spinning something so it continues spinning +195095;Pretending to throw something +120495;Pushing something so it spins +135009;Throwing something against something +119851;Stuffing something into something +14973;Lifting something up completely without letting it drop down +158302;Putting something in front of something +76296;Tearing something into two pieces +166310;Pulling something from right to left +43282;Pushing something with something +51873;Tipping something over +161061;Tilting something with something on it until it falls off +189185;Approaching something with your camera +17576;Lifting something with something on it +117542;Moving something down +92203;Failing to put something into something because something does not fit +90716;Moving something up +181608;Dropping something next to something +199397;Holding something over something +144010;Attaching something to something +44762;Putting something on a surface +17412;Pretending to pick something up +127075;Putting something similar to other things that are already on the table +202700;Uncovering something +75968;Putting something in front of something +144754;Spinning something that quickly stops spinning +68507;Pouring something onto something +156762;Moving something across a surface without it falling down +61799;Removing something, revealing something behind +73074;Tearing something just a little bit +151335;Pulling two ends of something but nothing happens +216422;Pushing something with something +3251;Pretending to be tearing something that is not tearable +110482;Plugging something into something +23385;Poking something so that it falls over +104041;Twisting (wringing) something wet until water comes out +186611;Turning something upside down +17706;Picking something up +126240;Plugging something into something +12011;Attaching something to something +100581;Turning something upside down +212385;Stacking number of something +134705;Moving something down +142896;Pretending to throw something +172600;Squeezing something +190059;Putting something similar to other things that are already on the table +109556;Folding something +104719;Putting something on a surface +102887;Taking one of many similar things on the table +48338;Folding something +109825;Showing something on top of something +153200;Showing that something is empty +169240;Showing something next to something +212355;Attaching something to something +202732;Piling something up +191517;Putting something onto something else that cannot support it so it falls down +113309;Showing something behind something +152414;Pushing something from right to left +43379;Poking a hole into some substance +153761;Dropping something onto something +178009;Twisting something +136980;Uncovering something +62776;Dropping something behind something +138536;Throwing something against something +66750;Lifting something up completely without letting it drop down +140839;Pulling something from right to left +2840;Approaching something with your camera +2702;Rolling something on a flat surface +157985;Holding something over something +63146;Moving something and something closer to each other +62867;Moving something and something closer to each other +169852;Plugging something into something but pulling it right out as you remove your hand +80520;Plugging something into something +57904;Pushing something so that it slightly moves +148322;Tearing something just a little bit +95664;Showing that something is inside something +79800;Showing a photo of something to the camera +61026;Covering something with something +66121;Something falling like a rock +152521;Stacking number of something +104809;Throwing something in the air and catching it +114197;Hitting something with something +154347;Tipping something over +126748;Showing something behind something +208140;Turning something upside down +15919;Putting something on a surface +212772;Covering something with something +36299;Pulling something out of something +181157;Scooping something up with something +44531;Pushing something so it spins +159573;Letting something roll along a flat surface +167026;Pretending to spread air onto something +81745;Letting something roll along a flat surface +133221;Stacking number of something +66682;Moving something and something closer to each other +54319;Pouring something into something until it overflows +16143;Throwing something onto a surface +200686;Tearing something into two pieces +145390;Moving something and something closer to each other +36417;Stuffing something into something +4307;Hitting something with something +181075;Lifting something up completely without letting it drop down +109347;Pretending to put something next to something +125911;Squeezing something +133260;Touching (without moving) part of something +8397;Showing something on top of something +21134;Scooping something up with something +197484;Twisting something +88884;Plugging something into something +155660;Holding something next to something +107633;Throwing something against something +35658;Opening something +10357;Tearing something into two pieces +37076;Moving something and something closer to each other +26523;Folding something +110295;Holding something over something +80778;Taking something from somewhere +174697;Covering something with something +7105;Putting something similar to other things that are already on the table +105864;Throwing something against something +136450;Moving something away from something +72843;Showing something behind something +3391;Holding something +94414;Throwing something +84053;Scooping something up with something +205492;Lifting something up completely, then letting it drop down +133379;Moving something up +18662;Showing something next to something +67231;Pushing something so that it falls off the table +44764;Stacking number of something +13694;Putting something upright on the table +191846;Tearing something into two pieces +49399;Taking one of many similar things on the table +174669;Trying but failing to attach something to something because it doesn't stick +148820;Showing something behind something +32232;Putting something similar to other things that are already on the table +91220;Rolling something on a flat surface +172316;Moving part of something +3069;Pouring something into something +52772;Pulling something onto something +196216;Tearing something into two pieces +156471;Pulling something onto something +71451;Pouring something onto something +166772;Holding something over something +21088;Moving something towards the camera +107356;Putting something on a surface +214683;Spilling something next to something +131229;Showing something behind something +73889;Twisting something +150377;Putting something that cannot actually stand upright upright on the table, so it falls on its side +107776;Pushing something onto something +213880;Piling something up +70562;Showing something next to something +173553;Pushing something from left to right +3448;Spinning something so it continues spinning +121271;Showing something on top of something +2029;Poking something so that it falls over +85189;Taking one of many similar things on the table +82416;Showing something behind something +150012;Showing something behind something +67765;Stacking number of something +96996;Something colliding with something and both are being deflected +59660;Tearing something just a little bit +103662;Pushing something so that it almost falls off but doesn't +113702;Spinning something so it continues spinning +201410;Trying but failing to attach something to something because it doesn't stick +135628;Throwing something in the air and catching it +38266;Sprinkling something onto something +3824;Covering something with something +56338;Taking something out of something +59941;Putting something on a surface +155085;Showing that something is empty +213043;Spilling something behind something +112532;Showing something on top of something +195659;Stacking number of something +63206;Poking something so lightly that it doesn't or almost doesn't move +189179;Spilling something next to something +143838;Plugging something into something +103398;Showing something on top of something +94152;Putting something that cannot actually stand upright upright on the table, so it falls on its side +49784;Pulling two ends of something so that it separates into two pieces +13590;Tilting something with something on it slightly so it doesn't fall down +52107;Squeezing something +67523;Squeezing something +203483;Plugging something into something +184661;Pretending to be tearing something that is not tearable +150541;Showing that something is empty +195621;Poking something so it slightly moves +185350;Moving something and something away from each other +21230;Spinning something that quickly stops spinning +101800;Pushing something from right to left +36327;Stuffing something into something +73646;Lifting up one end of something, then letting it drop down +37935;Something falling like a feather or paper +3295;Plugging something into something +67568;Moving something up +96877;Holding something over something +62046;Covering something with something +98299;Putting number of something onto something +77782;Stuffing something into something +61307;Tilting something with something on it slightly so it doesn't fall down +145320;Twisting (wringing) something wet until water comes out +146372;Throwing something +158190;Twisting something +73079;Pretending to pour something out of something, but something is empty +31336;Pulling something from left to right +214275;Holding something over something +29208;Poking something so lightly that it doesn't or almost doesn't move +172401;Pulling something out of something +134245;Removing something, revealing something behind +131474;Poking something so that it falls over +58998;Holding something +205939;Stuffing something into something +100255;Scooping something up with something +106008;Covering something with something +120327;Putting something onto something +66996;Something falling like a rock +150402;Pouring something into something until it overflows +136466;Stuffing something into something +121075;Moving something away from the camera +53400;Opening something +3119;Moving something and something closer to each other +1803;Pulling something from right to left +72040;Bending something so that it deforms +45924;Moving something down +178546;Lifting something up completely without letting it drop down +191374;Putting something behind something +184259;Putting something onto something +159378;Twisting something +143043;Twisting something +215787;Showing that something is inside something +200850;Pretending to pour something out of something, but something is empty +5273;Something falling like a rock +126568;Pouring something into something +164992;Uncovering something +33903;Poking something so lightly that it doesn't or almost doesn't move +141332;Moving something and something away from each other +91167;Pouring something out of something +162044;Pretending to take something from somewhere +134474;Moving part of something +12919;Something being deflected from something +160516;Taking something out of something +144587;Twisting something +24538;Pretending to pick something up +112;Showing something behind something +56016;Pulling something from left to right +53924;Showing something on top of something +93201;Moving something and something so they collide with each other +90389;Moving something up +125064;Squeezing something +163184;Unfolding something +400;Moving something away from something +76520;Lifting something up completely, then letting it drop down +138234;Moving something closer to something +56820;Spilling something onto something +79009;Hitting something with something +57843;Pushing something with something +80662;Tearing something just a little bit +182529;Lifting something up completely without letting it drop down +145818;Putting something similar to other things that are already on the table +140692;Something falling like a feather or paper +45256;Pretending to open something without actually opening it +139848;Lifting up one end of something, then letting it drop down +182385;Holding something in front of something +38090;Pretending to poke something +171677;Tearing something into two pieces +144102;Taking one of many similar things on the table +1899;Stacking number of something +120043;Throwing something against something +131797;Pretending to take something out of something +76486;Opening something +182216;Taking something from somewhere +67374;Moving something away from something +19037;Pulling something from right to left +14803;Pushing something so that it falls off the table +36672;Holding something in front of something +117929;Pulling two ends of something so that it separates into two pieces +131949;Showing that something is inside something +114499;Throwing something in the air and letting it fall +9457;Covering something with something +143014;Something falling like a rock +143735;Throwing something +213054;Moving something down +41585;Spinning something that quickly stops spinning +142956;Hitting something with something +163211;Putting something into something +208569;Squeezing something +130087;Putting something underneath something +138940;Pouring something out of something +50978;Letting something roll down a slanted surface +104410;Pulling something from right to left +70575;Spinning something that quickly stops spinning +31625;Pretending to turn something upside down +120294;Touching (without moving) part of something +11815;Moving something away from something +42853;Pushing something from right to left +135782;Tearing something just a little bit +113581;Pretending to put something on a surface +187286;Throwing something in the air and catching it +61795;Plugging something into something but pulling it right out as you remove your hand +26324;Stuffing something into something +93419;Bending something so that it deforms +51838;Pretending to turn something upside down +18994;Twisting something +78785;Picking something up +114899;Digging something out of something +77747;Covering something with something +138052;Taking one of many similar things on the table +4028;Moving part of something +78226;Pushing something from left to right +171152;Throwing something in the air and letting it fall +179986;Pushing something from left to right +133357;Opening something +66612;Holding something in front of something +4229;Turning something upside down +177314;Stuffing something into something +34115;Picking something up +88727;Unfolding something +148844;Throwing something onto a surface +128040;Hitting something with something +84825;Dropping something in front of something +172894;Throwing something +51456;Something being deflected from something +136651;Poking something so lightly that it doesn't or almost doesn't move +190782;Taking something from somewhere +199891;Pulling something from left to right +91278;Showing that something is empty +83730;Rolling something on a flat surface +3490;Plugging something into something +215051;Pushing something so that it falls off the table +12130;Lifting something with something on it +24148;Pretending to poke something +58318;Pulling something from right to left +2961;Pretending to be tearing something that is not tearable +49820;Holding something over something +89041;Moving something away from something +96514;Putting something behind something +212192;Laying something on the table on its side, not upright +201226;Showing something on top of something +111587;Throwing something in the air and catching it +99412;Covering something with something +14466;Holding something in front of something +197592;Touching (without moving) part of something +191112;Putting something on a surface +62020;Picking something up +192249;Letting something roll along a flat surface +27067;Lifting something up completely, then letting it drop down +208262;Putting something upright on the table +99173;Piling something up +28818;Tearing something into two pieces +219490;Putting something on a surface +62975;Turning something upside down +214096;Putting something into something +147084;Showing something behind something +177849;Poking something so that it falls over +94782;Pretending to pick something up +108356;Moving something down +63482;Letting something roll along a flat surface +50586;Pushing something so that it slightly moves +44031;Pouring something onto something +87016;Putting something that can't roll onto a slanted surface, so it slides down +156961;Uncovering something +134642;Taking one of many similar things on the table +87119;Pushing something so that it slightly moves +132945;Holding something behind something +123313;Turning something upside down +91757;Something falling like a feather or paper +170968;Holding something over something +217767;Moving something closer to something +4352;Poking something so it slightly moves +205481;Squeezing something +38790;Moving something down +79929;Unfolding something +151303;Plugging something into something but pulling it right out as you remove your hand +46652;Pouring something into something +133027;Pushing something so that it slightly moves +118737;Tearing something into two pieces +139347;Pouring something into something +92;Showing that something is inside something +75262;Attaching something to something +135793;Pulling something from right to left +49813;Pretending to open something without actually opening it +22718;Moving something closer to something +202996;Pretending to be tearing something that is not tearable +118691;Turning the camera left while filming something +121329;Putting something on a surface +9974;Tilting something with something on it until it falls off +116243;Taking one of many similar things on the table +80791;Lifting up one end of something, then letting it drop down +50125;Pretending to poke something +46133;Putting something onto something +69443;Something falling like a rock +78253;Holding something behind something +144466;Pretending to put something on a surface +112973;Opening something +218973;Something falling like a rock +151931;Putting something and something on the table +18394;Pretending to take something from somewhere +156805;Putting something on the edge of something so it is not supported and falls down +170340;Tearing something just a little bit +180868;Squeezing something +185573;Something falling like a rock +147525;Poking a stack of something so the stack collapses +156179;Throwing something +25263;Uncovering something +34474;Pretending to pick something up +150554;Showing something next to something +148972;Piling something up +76158;Lifting something up completely without letting it drop down +119741;Pouring something into something +47173;Lifting something up completely, then letting it drop down +35409;Piling something up +80087;Lifting up one end of something, then letting it drop down +113235;Tearing something into two pieces +984;Covering something with something +21183;Pulling two ends of something so that it gets stretched +203185;Moving something across a surface without it falling down +158829;Putting number of something onto something +178722;Pushing something so it spins +78090;Tilting something with something on it until it falls off +44038;Showing that something is empty +170583;Moving something and something closer to each other +8157;Trying to bend something unbendable so nothing happens +37109;Touching (without moving) part of something +44702;Pretending to be tearing something that is not tearable +23485;Plugging something into something but pulling it right out as you remove your hand +33638;Pushing something so that it falls off the table +41679;Attaching something to something +25381;Poking something so it slightly moves +217008;Pulling something from right to left +89516;Dropping something into something +69271;Squeezing something +215486;Pretending to turn something upside down +62967;Stuffing something into something +167724;Moving something down +180515;Rolling something on a flat surface +103070;Taking one of many similar things on the table +72621;Opening something +212352;Squeezing something +159697;Putting something on a surface +26915;Spinning something that quickly stops spinning +171090;Turning something upside down +20098;Pouring something into something +115790;Tearing something into two pieces +78754;Holding something next to something +174468;Tipping something over +202365;Pulling something onto something +10386;Putting something on a flat surface without letting it roll +40362;Holding something +102053;Covering something with something +113925;Poking something so that it falls over +158546;Pushing something from right to left +22305;Dropping something next to something +179556;Pretending to open something without actually opening it +215415;Moving something down +59097;Moving something and something so they pass each other +38127;Something falling like a feather or paper +122572;Moving something down +23726;Putting something underneath something +149044;Holding something behind something +1145;Holding something over something +101514;Pouring something into something +147341;Putting something similar to other things that are already on the table +158273;Turning the camera left while filming something +8880;Showing that something is inside something +145083;Showing something behind something +63318;Letting something roll along a flat surface +185870;Pretending to put something next to something +82985;Pretending or failing to wipe something off of something +24937;Letting something roll down a slanted surface +162733;Putting something into something +83072;Pushing something so that it falls off the table +145291;Dropping something into something +158678;Moving something closer to something +215931;Dropping something in front of something +11140;Poking something so that it falls over +109811;Holding something behind something +1454;Pushing something onto something +210379;Taking something out of something +70900;Taking one of many similar things on the table +190291;Turning something upside down +22472;Holding something in front of something +126589;Poking something so it slightly moves +105654;Something falling like a rock +17279;Poking something so it slightly moves +6291;Pushing something so it spins +10585;Tearing something into two pieces +169401;Pretending to put something next to something +33078;Tipping something over +121522;Uncovering something +45010;Bending something until it breaks +97784;Holding something over something +118215;Covering something with something +167931;Moving something across a surface without it falling down +60188;Pushing something with something +105485;Moving something away from something +113348;Pushing something onto something +83516;Showing something next to something +96301;Moving something down +148314;Spinning something that quickly stops spinning +58008;Tearing something into two pieces +110243;Moving something and something closer to each other +136114;Pretending or trying and failing to twist something +37407;Putting something on a surface +65990;Pouring something onto something +217187;Putting number of something onto something +10496;Poking something so it slightly moves +215578;Something colliding with something and both are being deflected +31657;Tilting something with something on it slightly so it doesn't fall down +84315;Lifting something up completely without letting it drop down +110630;Bending something until it breaks +23006;Taking something out of something +4318;Something falling like a rock +1947;Pretending to throw something +95828;Wiping something off of something +202584;Moving something towards the camera +63001;Pretending to open something without actually opening it +114984;Unfolding something +78594;Tearing something into two pieces +63096;Pretending to take something from somewhere +12774;Pretending to sprinkle air onto something +198224;Lifting up one end of something without letting it drop down +102468;Putting something on a flat surface without letting it roll +217660;Showing something next to something +153751;Moving something and something closer to each other +213706;Pulling something from left to right +105154;Uncovering something +207119;Pushing something from left to right +199361;Spinning something so it continues spinning +147509;Showing something next to something +217379;Putting something on a surface +91728;Pushing something so it spins +180878;Removing something, revealing something behind +93817;Pushing something from right to left +171009;Moving something closer to something +19528;Rolling something on a flat surface +129101;Trying but failing to attach something to something because it doesn't stick +122500;Letting something roll along a flat surface +86479;Pushing something so that it falls off the table +188456;Putting something into something +1745;Pouring something into something +132926;Spinning something so it continues spinning +55786;Laying something on the table on its side, not upright +174950;Tearing something just a little bit +51028;Taking something from somewhere +58701;Moving something up +88554;Pulling something out of something +87884;Plugging something into something but pulling it right out as you remove your hand +48682;Attaching something to something +210558;Pulling something from behind of something +36815;Pushing something with something +52973;Bending something so that it deforms +44493;Spinning something that quickly stops spinning +179011;Tearing something just a little bit +187741;Poking something so that it falls over +62438;Moving something and something away from each other +52291;Turning something upside down +184204;Lifting something with something on it +203416;Pretending to take something from somewhere +148351;Tipping something over +41122;Turning something upside down +26895;Pushing something so it spins +19218;Pouring something out of something +29748;Trying to pour something into something, but missing so it spills next to it +21959;Putting something that cannot actually stand upright upright on the table, so it falls on its side +205121;Something falling like a rock +68656;Holding something behind something +208493;Lifting up one end of something, then letting it drop down +11686;Putting something, something and something on the table +201291;Pulling something from right to left +147352;Showing that something is inside something +209213;Plugging something into something but pulling it right out as you remove your hand +135546;Holding something behind something +129126;Holding something next to something +209294;Lifting something with something on it +217654;Putting something onto something +215761;Letting something roll down a slanted surface +85881;Moving part of something +167149;Burying something in something +71171;Moving something and something closer to each other +59178;Throwing something +148762;Tipping something over +64247;Stacking number of something +38319;Pulling something from right to left +134858;Taking something out of something +68838;Tearing something just a little bit +109833;Poking a hole into something soft +136588;Moving something up +205675;Uncovering something +107541;Closing something +191876;Showing something on top of something +172900;Pretending to poke something +167913;Moving something and something closer to each other +52940;Plugging something into something but pulling it right out as you remove your hand +49160;Holding something over something +197754;Spinning something that quickly stops spinning +39503;Plugging something into something but pulling it right out as you remove your hand +13853;Tearing something into two pieces +40495;Lifting a surface with something on it until it starts sliding down +176950;Pushing something so that it falls off the table +213303;Pouring something into something +3361;Plugging something into something +162279;Opening something +30306;Dropping something onto something +130728;Holding something in front of something +109949;Tearing something just a little bit +154308;Pushing something so that it falls off the table +158710;Tilting something with something on it until it falls off +19279;Pulling something onto something +134307;Piling something up +145960;Showing that something is inside something +122760;Lifting something with something on it +130565;Dropping something into something +64712;Putting something on a flat surface without letting it roll +811;Throwing something onto a surface +57636;Wiping something off of something +135991;Spinning something that quickly stops spinning +13757;Approaching something with your camera +160242;Moving something away from something +32044;Putting something, something and something on the table +87028;Stuffing something into something +51705;Putting something onto something else that cannot support it so it falls down +205216;Putting something, something and something on the table +106138;Moving something and something away from each other +135635;Squeezing something +129662;Stacking number of something +142080;Pulling something from right to left +171928;Holding something +169741;Showing something to the camera +158666;Pulling something from right to left +158202;Holding something +18229;Pouring something out of something +175657;Tearing something into two pieces +48726;Moving something and something closer to each other +9801;Pushing something from left to right +16719;Holding something behind something +85655;Showing that something is empty +22350;Moving something across a surface without it falling down +214591;Putting something behind something +18324;Plugging something into something +124836;Dropping something next to something +157290;Tilting something with something on it until it falls off +38455;Rolling something on a flat surface +167030;Pretending to put something on a surface +174313;Something falling like a feather or paper +130764;Pulling something from behind of something +104622;Holding something in front of something +160341;Pushing something off of something +135627;Plugging something into something but pulling it right out as you remove your hand +3502;Plugging something into something +44384;Putting something next to something +116534;Throwing something onto a surface +168972;Pretending to poke something +20804;Pulling something from left to right +168843;Something falling like a feather or paper +219425;Showing that something is empty +20344;Pretending to open something without actually opening it +52983;Squeezing something +215995;Taking one of many similar things on the table +156242;Tearing something just a little bit +162025;Moving something towards the camera +218119;Putting something similar to other things that are already on the table +201042;Stacking number of something +175389;Pushing something so that it slightly moves +77950;Tearing something into two pieces +26500;Trying to bend something unbendable so nothing happens +8829;Putting something and something on the table +79224;Pulling two ends of something but nothing happens +52607;Putting something similar to other things that are already on the table +76327;Dropping something onto something +30980;Turning something upside down +194725;Taking one of many similar things on the table +162812;Something falling like a feather or paper +86101;Moving part of something +136384;Putting something on a flat surface without letting it roll +120973;Tearing something into two pieces +104886;Wiping something off of something +209548;Moving something and something so they pass each other +213540;Turning something upside down +157103;Closing something +160466;Putting something on a flat surface without letting it roll +81769;Lifting up one end of something without letting it drop down +171703;Plugging something into something +118192;Poking something so lightly that it doesn't or almost doesn't move +89881;Failing to put something into something because something does not fit +150281;Holding something next to something +68621;Moving something and something closer to each other +51259;Dropping something in front of something +2792;Tearing something just a little bit +65706;Putting something on a surface +21517;Poking a stack of something so the stack collapses +29180;Twisting (wringing) something wet until water comes out +179303;Letting something roll down a slanted surface +124980;Picking something up +99317;Turning something upside down +34280;Putting something on a flat surface without letting it roll +190713;Holding something over something +194132;Tearing something just a little bit +136575;Putting number of something onto something +57769;Hitting something with something +67791;Lifting something with something on it +85265;Plugging something into something +51615;Plugging something into something but pulling it right out as you remove your hand +69326;Pretending to sprinkle air onto something +110130;Putting something similar to other things that are already on the table +72290;Pretending to open something without actually opening it +202393;Unfolding something +62784;Spinning something that quickly stops spinning +56555;Showing something behind something +35140;Piling something up +112656;Tearing something into two pieces +59809;Spinning something so it continues spinning +156749;Showing something on top of something +117294;Something falling like a rock +121742;Showing that something is inside something +141568;Removing something, revealing something behind +131825;Plugging something into something +61329;Pretending to close something without actually closing it +56782;Plugging something into something +217828;Pushing something from left to right +40914;Tearing something just a little bit +115096;Moving part of something +141339;Holding something +191321;Moving something across a surface until it falls down +174028;Letting something roll along a flat surface +55497;Pushing something so that it slightly moves +156311;Something falling like a feather or paper +15804;Showing that something is inside something +159297;Pretending or trying and failing to twist something +43244;Pulling something from left to right +14202;Pushing something from left to right +17359;Pouring something out of something +217773;Covering something with something +30134;Putting something and something on the table +46255;Moving something and something so they pass each other +86663;Sprinkling something onto something +74829;Moving part of something +51311;Tipping something over +17755;Hitting something with something +190979;Pretending to put something into something +148117;Touching (without moving) part of something +93378;Pushing something from left to right +182146;Showing that something is inside something +186147;Turning something upside down +78990;Moving something and something away from each other +71997;Something falling like a rock +100982;Showing something behind something +7666;Moving something away from something +69200;Moving something closer to something +20938;Turning the camera downwards while filming something +33800;Pretending to scoop something up with something +208301;Pushing something from left to right +131560;Moving something away from something +106269;Showing something behind something +128800;Attaching something to something +79355;Something falling like a rock +156876;Pushing something from left to right +187065;Tearing something into two pieces +28935;Pretending to put something on a surface +105018;Taking something from somewhere +113344;Lifting something with something on it +103367;Rolling something on a flat surface +175494;Moving something and something closer to each other +21357;Lifting something up completely without letting it drop down +12991;Pouring something into something +212399;Pushing something from left to right +125310;Putting something similar to other things that are already on the table +93856;Taking one of many similar things on the table +98520;Piling something up +97476;Tearing something into two pieces +154938;Moving something and something closer to each other +149253;Pouring something into something +204852;Approaching something with your camera +76008;Moving something and something closer to each other +194434;Stuffing something into something +39267;Tearing something into two pieces +26609;Taking something from somewhere +58710;Pushing something so that it almost falls off but doesn't +65671;Pushing something so that it falls off the table +64059;Lifting something with something on it +198135;Moving something down +43355;Showing something behind something +167977;Spinning something that quickly stops spinning +57186;Pushing something so that it almost falls off but doesn't +141016;Approaching something with your camera +36780;Picking something up +153818;Pretending to close something without actually closing it +206517;Holding something in front of something +179826;Closing something +110463;Taking one of many similar things on the table +152100;Showing that something is empty +203534;Lifting something up completely, then letting it drop down +1546;Wiping something off of something +172891;Pushing something so that it slightly moves +180702;Showing something on top of something +123669;Spinning something so it continues spinning +196071;Dropping something into something +12663;Tearing something into two pieces +166881;Spinning something so it continues spinning +126631;Pretending to put something onto something +25596;Holding something next to something +184605;Something being deflected from something +194510;Moving something closer to something +9909;Stacking number of something +119111;Pretending to be tearing something that is not tearable +146573;Moving something down +101401;Taking something out of something +177738;Pretending to open something without actually opening it +79245;Hitting something with something +219689;Rolling something on a flat surface +159323;Uncovering something +132987;Poking something so it slightly moves +46822;Tearing something into two pieces +166928;Pouring something into something +97138;Pretending to put something next to something +17079;Tipping something over +136590;Something falling like a rock +138516;Moving something and something closer to each other +112315;Lifting up one end of something without letting it drop down +80438;Showing something behind something +115486;Pretending to turn something upside down +118390;Holding something +94968;Scooping something up with something +103748;Attaching something to something +14568;Plugging something into something +130324;Folding something +213063;Pushing something with something +61743;Moving something and something closer to each other +2904;Dropping something next to something +34227;Moving something up +45143;Piling something up +29786;Picking something up +155887;Something colliding with something and both come to a halt +192122;Throwing something in the air and catching it +31092;Moving something and something away from each other +46885;Pretending to be tearing something that is not tearable +117816;Lifting something with something on it +144809;Pushing something so that it falls off the table +179216;Squeezing something +204685;Tilting something with something on it until it falls off +117247;Putting something and something on the table +117283;Pushing something so it spins +164737;Pushing something so that it falls off the table +68705;Pretending to open something without actually opening it +140255;Pushing something from right to left +101481;Showing something to the camera +4342;Tearing something into two pieces +105204;Moving something up +36413;Pushing something with something +73259;Pulling two ends of something so that it separates into two pieces +168386;Tearing something into two pieces +99524;Pretending to open something without actually opening it +163801;Putting number of something onto something +87780;Folding something +200545;Plugging something into something +107904;Putting something onto something +189299;Covering something with something +156046;Pretending to be tearing something that is not tearable +52457;Wiping something off of something +12075;Plugging something into something +10348;Pushing something so that it falls off the table +146066;Stuffing something into something +113959;Holding something over something +168121;Pushing something from left to right +159186;Opening something +134355;Squeezing something +191582;Showing something behind something +75133;Turning something upside down +131658;Showing that something is empty +24589;Letting something roll along a flat surface +40967;Wiping something off of something +82836;Putting something that cannot actually stand upright upright on the table, so it falls on its side +141702;Tearing something into two pieces +131643;Putting something on a surface +182234;Pouring something into something +119696;Trying to bend something unbendable so nothing happens +176575;Pouring something into something +111116;Stuffing something into something +67407;Putting number of something onto something +131924;Lifting up one end of something without letting it drop down +148721;Approaching something with your camera +128317;Throwing something in the air and letting it fall +22180;Poking something so lightly that it doesn't or almost doesn't move +188501;Something falling like a rock +114519;Pulling something from left to right +141284;Poking something so lightly that it doesn't or almost doesn't move +39121;Pouring something into something +103525;Covering something with something +87548;Poking something so it slightly moves +37205;Pretending or failing to wipe something off of something +205055;Closing something +81135;Piling something up +18982;Picking something up +187259;Dropping something into something +157385;Putting something underneath something +203830;Showing something next to something +101066;Pushing something so it spins +22766;Turning something upside down +73677;Lifting something with something on it +151918;Putting something onto something +5061;Pretending to pick something up +172211;Dropping something next to something +5592;Moving something up +64602;Pulling something onto something +185222;Moving something closer to something +1453;Taking something out of something +163832;Holding something over something +63644;Something colliding with something and both are being deflected +54254;Pretending to put something on a surface +39335;Taking one of many similar things on the table +111513;Pretending to squeeze something +178394;Taking something out of something +29098;Putting something that can't roll onto a slanted surface, so it stays where it is +119066;Holding something over something +204677;Pretending or failing to wipe something off of something +152330;Putting something behind something +26691;Taking one of many similar things on the table +137613;Wiping something off of something +184161;Showing something behind something +126336;Moving something across a surface until it falls down +130413;Putting something similar to other things that are already on the table +164704;Covering something with something +147790;Pushing something so that it slightly moves +142497;Pushing something from left to right +9716;Lifting something up completely, then letting it drop down +92205;Picking something up +8705;Pretending to open something without actually opening it +50437;Squeezing something +90778;Rolling something on a flat surface +12687;Showing that something is empty +119076;Rolling something on a flat surface +45919;Twisting something +201444;Covering something with something +180456;Poking a stack of something so the stack collapses +64409;Poking something so that it spins around +64692;Putting something on the edge of something so it is not supported and falls down +188135;Putting something into something +68247;Moving something towards the camera +8583;Spinning something that quickly stops spinning +87730;Putting something, something and something on the table +111767;Piling something up +97249;Pouring something into something +220770;Moving something closer to something +169279;Turning the camera downwards while filming something +20186;Covering something with something +152867;Putting something that cannot actually stand upright upright on the table, so it falls on its side +103955;Tearing something just a little bit +4553;Pretending to put something on a surface +85106;Poking a hole into something soft +172110;Holding something in front of something +190807;Wiping something off of something +43809;Something falling like a feather or paper +100776;Trying to pour something into something, but missing so it spills next to it +36092;Lifting something with something on it +213016;Putting something in front of something +38395;Rolling something on a flat surface +125748;Stuffing something into something +98094;Putting something on a surface +219480;Plugging something into something +98075;Pretending to put something next to something +201208;Rolling something on a flat surface +34042;Pouring something into something until it overflows +39124;Stuffing something into something +131142;Lifting something up completely without letting it drop down +213653;Tipping something with something in it over, so something in it falls out +168186;Moving something and something away from each other +167473;Pushing something so that it slightly moves +63772;Lifting up one end of something, then letting it drop down +117678;Stuffing something into something +182585;Spinning something that quickly stops spinning +107093;Moving something down +131255;Touching (without moving) part of something +134878;Trying to bend something unbendable so nothing happens +179052;Opening something +98779;Picking something up +34271;Touching (without moving) part of something +199026;Picking something up +81000;Lifting something up completely, then letting it drop down +85494;Showing something behind something +189922;Opening something +119822;Pretending to put something on a surface +219279;Holding something next to something +35013;Spilling something onto something +124926;Holding something next to something +200214;Showing that something is inside something +30888;Moving something closer to something +96637;Moving something down +110195;Plugging something into something +140789;Something falling like a feather or paper +40289;Putting something into something +53108;Twisting (wringing) something wet until water comes out +146515;Showing something next to something +186832;Holding something +27983;Unfolding something +66986;Something being deflected from something +19128;Moving something up +173517;Moving something closer to something +150488;Putting something in front of something +12308;Turning something upside down +202167;Bending something so that it deforms +184535;Moving part of something +34689;Dropping something next to something +36821;Pulling something from left to right +50478;Rolling something on a flat surface +28023;Closing something +109388;Putting something on a surface +35285;Pushing something so that it slightly moves +106641;Lifting up one end of something, then letting it drop down +11110;Taking something out of something +219980;Dropping something onto something +17871;Turning something upside down +145520;Tipping something with something in it over, so something in it falls out +65339;Putting something upright on the table +184915;Putting something into something +208326;Tipping something over +162540;Something falling like a feather or paper +15718;Plugging something into something but pulling it right out as you remove your hand +24090;Moving something across a surface until it falls down +177524;Holding something in front of something +97410;Showing something on top of something +81911;Plugging something into something +143851;Showing something behind something +142232;Putting something and something on the table +80331;Lifting something up completely, then letting it drop down +85849;Pouring something out of something +128484;Unfolding something +74677;Putting something next to something +203284;Taking one of many similar things on the table +31454;Holding something behind something +124058;Plugging something into something but pulling it right out as you remove your hand +90567;Pushing something from right to left +146778;Covering something with something +155243;Lifting something up completely without letting it drop down +110503;Pushing something from left to right +86672;Tearing something just a little bit +23790;Picking something up +35932;Moving something down +46994;Lifting something up completely without letting it drop down +67768;Wiping something off of something +12664;Moving something down +208214;Scooping something up with something +75708;Plugging something into something but pulling it right out as you remove your hand +166523;Wiping something off of something +10850;Taking something out of something +58598;Pushing something so that it falls off the table +54889;Pushing something from left to right +103824;Putting something underneath something +73354;Putting something upright on the table +149432;Taking one of many similar things on the table +203127;Lifting up one end of something without letting it drop down +83182;Putting something on a surface +72039;Uncovering something +83808;Uncovering something +130594;Showing that something is inside something +212668;Showing something next to something +82048;Plugging something into something but pulling it right out as you remove your hand +133164;Showing something behind something +54036;Something falling like a rock +128294;Plugging something into something +121052;Taking something from somewhere +5763;Pulling something from left to right +29982;Putting something, something and something on the table +170553;Pulling something out of something +220571;Holding something behind something +60208;Poking something so lightly that it doesn't or almost doesn't move +124933;Picking something up +214143;Folding something +132105;Plugging something into something +17796;Dropping something onto something +92218;Folding something +137106;Pouring something into something +17694;Plugging something into something but pulling it right out as you remove your hand +72139;Tilting something with something on it until it falls off +24834;Something falling like a rock +101442;Stuffing something into something +76802;Dropping something onto something +83586;Holding something over something +43210;Putting something on a surface +3060;Piling something up +96327;Pulling something from behind of something +153855;Something falling like a feather or paper +12194;Letting something roll up a slanted surface, so it rolls back down +127440;Poking something so it slightly moves +102394;Lifting something with something on it +59845;Moving something and something closer to each other +24570;Opening something +76236;Moving something closer to something +60405;Hitting something with something +150718;Hitting something with something +57228;Laying something on the table on its side, not upright +39854;Squeezing something +158348;Uncovering something +188695;Taking one of many similar things on the table +78932;Pretending to turn something upside down +44738;Something falling like a rock +186306;Moving something closer to something +130694;Pretending to put something on a surface +199181;Something falling like a rock +121302;Holding something in front of something +30170;Pretending or failing to wipe something off of something +100218;Opening something +31046;Moving something away from something +141582;Plugging something into something but pulling it right out as you remove your hand +179474;Tearing something just a little bit +109200;Bending something until it breaks +122276;Letting something roll along a flat surface +46857;Putting something in front of something +206578;Holding something next to something +166760;Putting something on a surface +27093;Something falling like a rock +29965;Closing something +33904;Lifting something up completely without letting it drop down +87811;Throwing something in the air and letting it fall +5768;Covering something with something +148065;Closing something +52641;Tearing something into two pieces +189304;Dropping something next to something +136328;Letting something roll up a slanted surface, so it rolls back down +108900;Putting something on a surface +71473;Dropping something in front of something +100634;Putting something upright on the table +46111;Moving something across a surface without it falling down +139418;Unfolding something +167817;Throwing something +83326;Covering something with something +122649;Throwing something +106481;Spilling something onto something +93903;Pretending to open something without actually opening it +188835;Touching (without moving) part of something +42072;Moving something across a surface without it falling down +128694;Something falling like a rock +89162;Twisting something +149356;Something falling like a rock +38323;Putting something that cannot actually stand upright upright on the table, so it falls on its side +191222;Spinning something that quickly stops spinning +126118;Taking something out of something +156064;Pretending or trying and failing to twist something +169185;Plugging something into something +73446;Approaching something with your camera +146637;Twisting something +157079;Putting something into something +171963;Putting something that can't roll onto a slanted surface, so it slides down +81172;Plugging something into something but pulling it right out as you remove your hand +213061;Squeezing something +71628;Moving something down +108053;Something falling like a feather or paper +90751;Putting something onto something else that cannot support it so it falls down +76172;Laying something on the table on its side, not upright +126382;Stuffing something into something +154143;Tearing something just a little bit +216117;Trying to bend something unbendable so nothing happens +174370;Pretending to open something without actually opening it +39489;Spinning something so it continues spinning +199852;Pretending to put something into something +71651;Pushing something from right to left +168471;Piling something up +35868;Spilling something onto something +200221;Touching (without moving) part of something +72299;Tipping something over +153318;Putting something into something +39135;Laying something on the table on its side, not upright +21010;Pouring something out of something +87276;Throwing something onto a surface +184396;Something colliding with something and both are being deflected +118665;Pretending to throw something +38812;Moving something closer to something +92815;Uncovering something +122797;Unfolding something +14287;Poking something so that it falls over +117275;Moving something away from something +28522;Something falling like a rock +151898;Putting something into something +75182;Putting something next to something +216647;Attaching something to something +205787;Sprinkling something onto something +177983;Putting something behind something +202937;Pretending to throw something +112127;Turning something upside down +31522;Throwing something in the air and letting it fall +48684;Attaching something to something +212113;Something colliding with something and both are being deflected +102811;Opening something +130059;Moving something and something closer to each other +114540;Taking something from somewhere +109459;Putting something on a surface +25780;Pouring something into something +112678;Poking something so that it falls over +156109;Pushing something from right to left +136264;Rolling something on a flat surface +58;Moving something across a surface without it falling down +175651;Opening something +34591;Showing something to the camera +118690;Showing that something is inside something +209100;Something falling like a rock +139153;Pretending to put something on a surface +117520;Plugging something into something +173862;Pushing something from right to left +12256;Opening something +11711;Poking something so lightly that it doesn't or almost doesn't move +150215;Moving something and something away from each other +88982;Showing that something is inside something +57678;Pushing something so it spins +199971;Tearing something just a little bit +68504;Putting something on a surface +171490;Wiping something off of something +66069;Poking a stack of something without the stack collapsing +71537;Rolling something on a flat surface +55457;Throwing something in the air and catching it +54136;Plugging something into something but pulling it right out as you remove your hand +109691;Pouring something into something +176153;Putting something similar to other things that are already on the table +45554;Showing something next to something +32325;Spilling something behind something +130265;Uncovering something +164345;Holding something +28007;Putting something on a surface +198983;Putting something in front of something +193938;Letting something roll along a flat surface +4562;Tearing something into two pieces +210169;Pushing something so it spins +128711;Uncovering something +173922;Taking something from somewhere +8085;Showing that something is empty +207153;Putting something that cannot actually stand upright upright on the table, so it falls on its side +164428;Showing something behind something +102655;Poking something so lightly that it doesn't or almost doesn't move +27583;Stuffing something into something +48522;Putting something on a surface +54235;Turning the camera downwards while filming something +33431;Laying something on the table on its side, not upright +175413;Holding something over something +129071;Holding something over something +92784;Dropping something into something +31009;Holding something behind something +111799;Holding something next to something +74030;Covering something with something +51969;Pretending to close something without actually closing it +47974;Covering something with something +147503;Putting something similar to other things that are already on the table +81504;Closing something +93065;Pulling something from left to right +133900;Throwing something in the air and catching it +81119;Tearing something into two pieces +73155;Twisting (wringing) something wet until water comes out +165633;Stacking number of something +20445;Tipping something with something in it over, so something in it falls out +205779;Plugging something into something +174666;Laying something on the table on its side, not upright +2740;Putting something on a surface +17589;Something falling like a feather or paper +137167;Putting something onto something +120265;Putting something similar to other things that are already on the table +99061;Something falling like a feather or paper +156430;Tearing something just a little bit +19794;Pouring something into something until it overflows +34518;Moving something and something closer to each other +202611;Moving something and something so they collide with each other +47758;Pushing something off of something +146265;Poking something so lightly that it doesn't or almost doesn't move +152931;Pretending to be tearing something that is not tearable +181675;Closing something +16164;Tilting something with something on it slightly so it doesn't fall down +133874;Moving something and something closer to each other +55279;Folding something +54429;Plugging something into something +131786;Scooping something up with something +85631;Bending something so that it deforms +70650;Poking something so it slightly moves +89598;Pretending to be tearing something that is not tearable +100432;Holding something behind something +75611;Pushing something so that it slightly moves +32177;Folding something +163007;Putting something on a flat surface without letting it roll +176794;Rolling something on a flat surface +112499;Showing that something is empty +22544;Moving something and something closer to each other +133515;Holding something next to something +45700;Twisting (wringing) something wet until water comes out +121357;Poking something so it slightly moves +80233;Pushing something so that it slightly moves +118522;Turning something upside down +190389;Putting something on a surface +117271;Squeezing something +112036;Closing something +174241;Pushing something so that it almost falls off but doesn't +176075;Moving something across a surface until it falls down +195011;Turning the camera left while filming something +9438;Unfolding something +167836;Pulling something out of something +180768;Pulling two ends of something but nothing happens +73593;Rolling something on a flat surface +121532;Pouring something into something +76278;Putting something on a flat surface without letting it roll +139406;Holding something behind something +142333;Pulling something out of something +10036;Tearing something into two pieces +218659;Showing a photo of something to the camera +135552;Dropping something next to something +106107;Pushing something from right to left +187528;Pretending to take something from somewhere +31096;Moving something down +21892;Tearing something just a little bit +202777;Holding something over something +188045;Uncovering something +146131;Pushing something so that it almost falls off but doesn't +183473;Squeezing something +168027;Poking something so that it falls over +95970;Poking something so that it falls over +92327;Pretending to be tearing something that is not tearable +202976;Unfolding something +156781;Putting something on a surface +162253;Lifting something up completely without letting it drop down +152162;Throwing something onto a surface +103500;Pushing something from left to right +24628;Attaching something to something +172148;Pouring something into something +192069;Something falling like a feather or paper +38675;Taking one of many similar things on the table +167217;Putting something next to something +11243;Holding something over something +24713;Turning something upside down +167678;Holding something behind something +203984;Taking something out of something +151106;Taking one of many similar things on the table +36250;Plugging something into something +166661;Pushing something so that it falls off the table +60954;Squeezing something +21667;Letting something roll up a slanted surface, so it rolls back down +18308;Moving something and something closer to each other +64283;Putting something into something +51960;Putting something on a surface +106385;Stacking number of something +4280;Pushing something so that it falls off the table +58553;Showing that something is empty +213566;Something colliding with something and both are being deflected +27552;Rolling something on a flat surface +68324;Twisting (wringing) something wet until water comes out +11850;Putting something on a surface +61808;Pulling something from behind of something +168317;Plugging something into something +11643;Dropping something in front of something +66053;Stacking number of something +19346;Putting something similar to other things that are already on the table +40305;Pretending to sprinkle air onto something +150066;Showing that something is empty +85593;Letting something roll along a flat surface +8088;Burying something in something +24647;Lifting something up completely, then letting it drop down +157321;Showing that something is inside something +142296;Taking one of many similar things on the table +60539;Pretending to open something without actually opening it +99774;Lifting up one end of something without letting it drop down +61848;Pouring something into something +167004;Throwing something in the air and letting it fall +93322;Taking one of many similar things on the table +182912;Plugging something into something but pulling it right out as you remove your hand +7071;Pretending to pick something up +144869;Moving something and something away from each other +47129;Dropping something behind something +76133;Lifting up one end of something, then letting it drop down +10550;Holding something next to something +108106;Something falling like a feather or paper +91413;Putting something that cannot actually stand upright upright on the table, so it falls on its side +86682;Pouring something into something +29903;Tearing something into two pieces +30415;Poking something so lightly that it doesn't or almost doesn't move +41406;Pushing something so it spins +76085;Throwing something +172668;Stacking number of something +85278;Putting something next to something +112251;Something falling like a feather or paper +196764;Something falling like a rock +81903;Taking something out of something +15433;Opening something +94101;Moving something and something closer to each other +137694;Turning something upside down +45984;Plugging something into something +206167;Something colliding with something and both are being deflected +115422;Moving something and something away from each other +157361;Putting something upright on the table +205888;Holding something in front of something +22326;Moving something and something closer to each other +42622;Moving something away from something +152765;Moving something down +215084;Picking something up +188272;Holding something next to something +26371;Touching (without moving) part of something +194263;Letting something roll along a flat surface +110831;Stacking number of something +98320;Wiping something off of something +24989;Putting something upright on the table +106674;Twisting something +78485;Pushing something so that it slightly moves +127325;Moving away from something with your camera +135878;Poking something so that it spins around +31699;Covering something with something +85902;Tearing something into two pieces +101767;Attaching something to something +40497;Moving something closer to something +114488;Tearing something into two pieces +200679;Lifting something with something on it +119127;Moving something up +201507;Putting something and something on the table +77836;Putting something onto something +5323;Showing something behind something +209034;Moving something across a surface without it falling down +19487;Throwing something against something +146555;Moving something down +123199;Spilling something onto something +210813;Pouring something into something +123540;Pretending to take something from somewhere +210311;Letting something roll down a slanted surface +42270;Pouring something into something +186178;Closing something +25427;Squeezing something +101315;Trying but failing to attach something to something because it doesn't stick +22547;Moving something closer to something +39116;Moving something away from something +123510;Dropping something in front of something +36591;Pretending to spread air onto something +91676;Pretending to scoop something up with something +20459;Pushing something from right to left +35709;Lifting something up completely, then letting it drop down +62400;Moving something up +44557;Taking one of many similar things on the table +215617;Putting something into something +119294;Something falling like a rock +93049;Pulling two ends of something so that it gets stretched +79722;Moving something away from something +65459;Pulling two ends of something but nothing happens +17222;Pretending to pick something up +22640;Moving something down +162092;Spinning something that quickly stops spinning +31854;Stuffing something into something +89531;Lifting up one end of something without letting it drop down +78321;Tipping something with something in it over, so something in it falls out +205591;Piling something up +10369;Showing something behind something +164664;Poking something so lightly that it doesn't or almost doesn't move +1246;Folding something +144788;Something falling like a rock +192881;Showing something next to something +133012;Opening something +121296;Unfolding something +143070;Throwing something +190355;Hitting something with something +121721;Laying something on the table on its side, not upright +145607;Lifting something with something on it +61285;Putting something on a flat surface without letting it roll +102851;Tilting something with something on it slightly so it doesn't fall down +139592;Moving something and something away from each other +25930;Taking something out of something +47932;Piling something up +214240;Attaching something to something +42168;Scooping something up with something +135338;Lifting up one end of something without letting it drop down +5440;Putting something that can't roll onto a slanted surface, so it stays where it is +3788;Tipping something over +130847;Covering something with something +116542;Closing something +103424;Pushing something with something +128659;Showing that something is inside something +69269;Twisting (wringing) something wet until water comes out +58035;Wiping something off of something +106851;Attaching something to something +98609;Pushing something from left to right +48043;Showing something to the camera +213550;Moving something and something away from each other +168372;Letting something roll up a slanted surface, so it rolls back down +145494;Moving something and something closer to each other +9547;Stacking number of something +164323;Putting something similar to other things that are already on the table +87140;Pushing something onto something +195027;Pushing something from left to right +156656;Pretending to squeeze something +65549;Tipping something over +114713;Covering something with something +9155;Poking something so that it falls over +88853;Pretending to turn something upside down +114302;Opening something +97465;Showing something behind something +178042;Stuffing something into something +3459;Opening something +87667;Covering something with something +217148;Putting something next to something +34994;Pretending to put something on a surface +131613;Pushing something so that it slightly moves +5191;Pushing something so that it slightly moves +103752;Something falling like a rock +70730;Holding something over something +19285;Approaching something with your camera +144498;Plugging something into something +72958;Moving something and something closer to each other +99619;Unfolding something +129247;Dropping something behind something +64005;Showing something on top of something +120814;Taking something out of something +43339;Picking something up +181355;Unfolding something +165880;Plugging something into something +40451;Removing something, revealing something behind +202659;Showing something on top of something +170585;Pretending or failing to wipe something off of something +91586;Turning the camera left while filming something +142311;Closing something +78930;Moving something away from the camera +10983;Rolling something on a flat surface +157189;Throwing something +118866;Stacking number of something +151605;Laying something on the table on its side, not upright +135010;Something falling like a feather or paper +75144;Putting something next to something +65491;Something falling like a feather or paper +59047;Stuffing something into something +19835;Pouring something into something +195152;Rolling something on a flat surface +132083;Squeezing something +111601;Rolling something on a flat surface +72233;Moving part of something +54353;Laying something on the table on its side, not upright +165893;Piling something up +43806;Pushing something so that it slightly moves +73982;Showing something on top of something +123555;Plugging something into something +179146;Pretending to pick something up +142910;Pouring something into something +161415;Pushing something off of something +124231;Plugging something into something +118081;Turning something upside down +171727;Closing something +203261;Pulling something from left to right +210521;Failing to put something into something because something does not fit +160048;Pretending to open something without actually opening it +116393;Pushing something so that it almost falls off but doesn't +215300;Tipping something with something in it over, so something in it falls out +215620;Pouring something into something +45782;Putting number of something onto something +37831;Trying but failing to attach something to something because it doesn't stick +12941;Pulling something from right to left +121232;Squeezing something +14680;Wiping something off of something +169104;Pouring something into something until it overflows +65732;Pushing something from right to left +194261;Unfolding something +12078;Spinning something so it continues spinning +190633;Putting something next to something +65846;Attaching something to something +180611;Showing something next to something +111577;Hitting something with something +36624;Putting something into something +195265;Pulling two ends of something so that it gets stretched +188783;Holding something behind something +3570;Dropping something behind something +52614;Moving something and something closer to each other +65195;Plugging something into something +161009;Showing something next to something +57418;Pretending to put something behind something +209272;Taking one of many similar things on the table +206518;Showing that something is inside something +127096;Pretending to be tearing something that is not tearable +160493;Moving something and something away from each other +184880;Pushing something from left to right +89472;Folding something +78920;Moving something down +152451;Pretending to poke something +116830;Tipping something over +216208;Pretending to be tearing something that is not tearable +203386;Moving something up +59773;Poking something so lightly that it doesn't or almost doesn't move +58817;Tearing something into two pieces +175893;Picking something up +149316;Showing something next to something +56329;Showing that something is inside something +169819;Moving something and something away from each other +109182;Turning something upside down +7567;Touching (without moving) part of something +62541;Plugging something into something but pulling it right out as you remove your hand +96213;Something falling like a feather or paper +115796;Moving something and something so they collide with each other +184076;Turning something upside down +183012;Something colliding with something and both are being deflected +143175;Moving something towards the camera +176539;Attaching something to something +172069;Removing something, revealing something behind +159994;Rolling something on a flat surface +170074;Pushing something so that it slightly moves +27456;Pretending to take something from somewhere +78976;Pouring something into something +39114;Uncovering something +77309;Turning the camera upwards while filming something +182332;Spinning something so it continues spinning +58624;Pretending to poke something +65332;Uncovering something +72757;Lifting a surface with something on it but not enough for it to slide down +171265;Moving something closer to something +101559;Opening something +66932;Moving away from something with your camera +178881;Pouring something out of something +59477;Holding something behind something +169398;Approaching something with your camera +92457;Tearing something into two pieces +152601;Pushing something with something +141518;Putting something into something +25347;Showing that something is inside something +97779;Moving part of something +76427;Attaching something to something +146848;Pretending to open something without actually opening it +112768;Pretending to scoop something up with something +75448;Pouring something into something +59170;Something falling like a feather or paper +121307;Pulling something from right to left +203818;Letting something roll along a flat surface +82958;Pretending to be tearing something that is not tearable +100594;Wiping something off of something +90857;Moving part of something +176812;Putting something into something +184251;Plugging something into something but pulling it right out as you remove your hand +217809;Touching (without moving) part of something +147172;Something falling like a feather or paper +50147;Holding something in front of something +128844;Something falling like a rock +162003;Tearing something into two pieces +125030;Pretending to put something on a surface +161829;Dropping something in front of something +163149;Tipping something over +219025;Turning something upside down +48030;Something being deflected from something +208005;Showing that something is inside something +20139;Throwing something in the air and catching it +41606;Turning something upside down +110891;Putting something upright on the table +62685;Lifting a surface with something on it until it starts sliding down +189573;Moving something down +102327;Moving something down +46340;Turning something upside down +95367;Tearing something just a little bit +220696;Moving something up +185343;Something colliding with something and both come to a halt +67782;Twisting (wringing) something wet until water comes out +29408;Putting something on a surface +31305;Something falling like a feather or paper +69775;Pulling something onto something +67919;Attaching something to something +157067;Rolling something on a flat surface +128412;Tearing something just a little bit +206916;Pushing something so that it slightly moves +85101;Tipping something over +120534;Pushing something from left to right +69421;Touching (without moving) part of something +102773;Pretending to open something without actually opening it +91143;Turning something upside down +11967;Attaching something to something +5391;Poking something so lightly that it doesn't or almost doesn't move +13;Putting something into something +104989;Letting something roll along a flat surface +207233;Throwing something onto a surface +52956;Moving something across a surface until it falls down +132055;Moving part of something +23042;Pulling two ends of something but nothing happens +160395;Stacking number of something +65991;Holding something behind something +161892;Tipping something over +81997;Covering something with something +59572;Pretending to be tearing something that is not tearable +211353;Tearing something into two pieces +41001;Something falling like a rock +216707;Showing something on top of something +131323;Turning something upside down +215303;Something being deflected from something +183903;Moving something closer to something +130360;Taking something out of something +85271;Putting something next to something +36834;Pushing something so that it slightly moves +215013;Holding something +137971;Letting something roll along a flat surface +111865;Putting something next to something +128414;Putting something into something +20501;Trying to bend something unbendable so nothing happens +73648;Moving something closer to something +59274;Attaching something to something +133386;Holding something behind something +58885;Pretending to pick something up +22501;Tearing something into two pieces +66959;Opening something +108190;Putting something on a surface +98343;Tearing something just a little bit +69212;Pushing something off of something +109645;Putting something on a surface +95237;Something falling like a rock +128759;Rolling something on a flat surface +188205;Hitting something with something +18387;Holding something behind something +37768;Rolling something on a flat surface +105709;Taking one of many similar things on the table +43918;Spinning something so it continues spinning +44777;Lifting something up completely, then letting it drop down +137332;Throwing something +65451;Stacking number of something +107736;Pushing something so that it falls off the table +159003;Squeezing something +37310;Uncovering something +115298;Pretending to throw something +26060;Pretending to open something without actually opening it +214474;Pretending to pick something up +217959;Showing something next to something +181579;Pushing something so it spins +74540;Moving something and something away from each other +168380;Lifting something with something on it +180454;Poking something so it slightly moves +28748;Plugging something into something +48126;Piling something up +185234;Tilting something with something on it until it falls off +197414;Twisting (wringing) something wet until water comes out +18030;Pretending to open something without actually opening it +185404;Tearing something into two pieces +33879;Pushing something so it spins +172715;Something colliding with something and both are being deflected +177022;Holding something +118083;Tearing something into two pieces +117783;Moving something away from something +194759;Taking something from somewhere +90957;Trying to pour something into something, but missing so it spills next to it +169046;Plugging something into something but pulling it right out as you remove your hand +37695;Closing something +130661;Lifting something up completely, then letting it drop down +162725;Closing something +134221;Tearing something just a little bit +201082;Dropping something in front of something +32440;Opening something +116682;Plugging something into something but pulling it right out as you remove your hand +38099;Taking one of many similar things on the table +137355;Pretending to pour something out of something, but something is empty +217794;Lifting up one end of something without letting it drop down +18476;Tearing something into two pieces +197761;Stuffing something into something +96351;Uncovering something +55722;Squeezing something +152164;Holding something next to something +120262;Something falling like a feather or paper +126190;Unfolding something +92920;Pushing something so it spins +9210;Tipping something over +134712;Trying but failing to attach something to something because it doesn't stick +119363;Dropping something into something +12262;Pouring something into something +25744;Taking one of many similar things on the table +91686;Pretending to pick something up +132152;Tearing something into two pieces +14168;Putting something in front of something +192342;Pushing something from left to right +159899;Squeezing something +148674;Holding something +46195;Holding something behind something +1086;Moving something down +64227;Twisting something +92556;Tearing something into two pieces +189789;Pretending to scoop something up with something +90157;Holding something next to something +80832;Putting something into something +162451;Pushing something so it spins +163807;Rolling something on a flat surface +50684;Stacking number of something +37973;Plugging something into something but pulling it right out as you remove your hand +142696;Pulling something from behind of something +10878;Showing something on top of something +219341;Lifting a surface with something on it but not enough for it to slide down +217587;Pushing something so that it slightly moves +106201;Putting something behind something +69966;Throwing something in the air and catching it +105498;Dropping something in front of something +205665;Putting something on a surface +151009;Holding something in front of something +4428;Pretending to pour something out of something, but something is empty +206623;Letting something roll along a flat surface +106464;Moving something away from something +154738;Poking a hole into something soft +159958;Plugging something into something but pulling it right out as you remove your hand +145797;Poking something so that it falls over +164997;Taking one of many similar things on the table +76156;Attaching something to something +217855;Stuffing something into something +71838;Wiping something off of something +203459;Pretending to squeeze something +44754;Laying something on the table on its side, not upright +169248;Showing something on top of something +151480;Putting something on a surface +38003;Lifting something with something on it +62313;Plugging something into something but pulling it right out as you remove your hand +142348;Tearing something into two pieces +89755;Something falling like a rock +11205;Moving something closer to something +169969;Moving something and something closer to each other +93468;Putting something in front of something +943;Moving something up +147073;Tearing something just a little bit +88093;Something falling like a feather or paper +66158;Showing something next to something +201905;Stacking number of something +124345;Picking something up +146413;Turning something upside down +69814;Burying something in something +83672;Holding something +29887;Showing something next to something +168328;Folding something +77810;Putting something on a surface +20312;Dropping something onto something +95361;Showing something on top of something +162814;Moving something and something closer to each other +65472;Pouring something onto something +169309;Pushing something so that it slightly moves +134502;Covering something with something +953;Letting something roll along a flat surface +73872;Lifting a surface with something on it but not enough for it to slide down +153166;Throwing something against something +202609;Moving something towards the camera +179364;Pushing something onto something +158980;Taking one of many similar things on the table +17847;Pushing something with something +142964;Stuffing something into something +207198;Pushing something with something +102764;Tipping something over +9420;Showing something to the camera +146108;Throwing something onto a surface +108022;Attaching something to something +78460;Tearing something into two pieces +209450;Tearing something just a little bit +181272;Tipping something over +150152;Pouring something into something +166032;Putting something upright on the table +62645;Pretending to be tearing something that is not tearable +87176;Uncovering something +210330;Tipping something over +99668;Lifting something with something on it +39105;Moving something and something away from each other +176781;Showing something behind something +188055;Tearing something into two pieces +22661;Dropping something next to something +132766;Bending something until it breaks +90210;Pretending to squeeze something +14576;Squeezing something +26212;Moving something and something away from each other +112623;Putting something onto something +59617;Something falling like a feather or paper +15717;Pretending to open something without actually opening it +133464;Opening something +98173;Moving something away from the camera +112790;Pushing something from right to left +12646;Something colliding with something and both are being deflected +135085;Twisting something +90803;Lifting up one end of something, then letting it drop down +202717;Showing something on top of something +176451;Pretending to spread air onto something +39649;Folding something +115252;Pulling something out of something +52697;Showing that something is empty +108316;Pretending to be tearing something that is not tearable +218287;Poking something so lightly that it doesn't or almost doesn't move +67086;Moving something down +104737;Picking something up +126964;Spinning something that quickly stops spinning +27033;Moving something across a surface until it falls down +136544;Folding something +191823;Moving something up +41258;Putting something onto something +11262;Showing that something is empty +30864;Picking something up +155393;Opening something +80121;Tearing something into two pieces +46100;Lifting something with something on it +157800;Pretending to squeeze something +36050;Moving something closer to something +108269;Turning something upside down +52824;Moving something and something closer to each other +33482;Poking something so lightly that it doesn't or almost doesn't move +152027;Dropping something behind something +172214;Pushing something onto something +173981;Tipping something with something in it over, so something in it falls out +71144;Pushing something so it spins +29551;Pretending to put something on a surface +96993;Bending something until it breaks +24591;Showing that something is empty +166512;Dropping something next to something +52329;Taking something from somewhere +112175;Plugging something into something +58907;Moving something and something closer to each other +63845;Unfolding something +103940;Pretending to open something without actually opening it +125796;Pushing something from left to right +190433;Covering something with something +206563;Tilting something with something on it until it falls off +69124;Taking something out of something +32905;Picking something up +27782;Dropping something into something +36076;Pretending to spread air onto something +34788;Poking something so that it falls over +71663;Pouring something out of something +62739;Spinning something so it continues spinning +142932;Showing that something is empty +58882;Putting something into something +10959;Squeezing something +127217;Throwing something onto a surface +59265;Pouring something into something +710;Twisting something +134359;Pouring something into something +198029;Poking a stack of something so the stack collapses +96673;Putting something next to something +103351;Taking something from somewhere +116556;Folding something +208271;Pretending to be tearing something that is not tearable +143582;Tilting something with something on it slightly so it doesn't fall down +9562;Throwing something +124513;Tearing something into two pieces +147126;Moving something across a surface without it falling down +136483;Pushing something with something +109196;Tearing something into two pieces +165178;Bending something so that it deforms +134644;Pushing something so that it almost falls off but doesn't +49338;Putting number of something onto something +90187;Putting something similar to other things that are already on the table +147536;Putting something on a surface +79751;Something falling like a rock +130308;Throwing something in the air and catching it +195978;Uncovering something +75638;Lifting something with something on it +66249;Showing something to the camera +88136;Turning something upside down +97004;Uncovering something +91635;Stacking number of something +153933;Hitting something with something +90074;Showing something on top of something +200552;Dropping something onto something +198745;Attaching something to something +204179;Moving something closer to something +57482;Putting something on a surface +107746;Covering something with something +143884;Scooping something up with something +163165;Putting something, something and something on the table +93630;Stuffing something into something +211673;Poking something so lightly that it doesn't or almost doesn't move +1610;Holding something in front of something +22171;Putting something, something and something on the table +114703;Bending something until it breaks +79580;Pretending to throw something +55859;Showing that something is empty +111104;Holding something in front of something +17827;Trying but failing to attach something to something because it doesn't stick +55001;Dropping something onto something +68405;Touching (without moving) part of something +123818;Moving something and something away from each other +147693;Pouring something into something +195328;Turning the camera left while filming something +122985;Something falling like a feather or paper +157527;Spinning something that quickly stops spinning +89773;Tearing something into two pieces +141271;Attaching something to something +84303;Spinning something that quickly stops spinning +171958;Bending something so that it deforms +89664;Taking something out of something +9976;Approaching something with your camera +56753;Moving something away from something +210801;Tearing something just a little bit +22192;Holding something over something +219582;Pouring something into something +3068;Hitting something with something +61717;Pretending to squeeze something +38885;Holding something in front of something +88674;Pretending to pick something up +5655;Putting something and something on the table +36985;Approaching something with your camera +77158;Poking something so lightly that it doesn't or almost doesn't move +105082;Covering something with something +35206;Taking something from somewhere +183562;Pulling something from left to right +139234;Putting something in front of something +141127;Piling something up +3756;Moving something down +99491;Something colliding with something and both are being deflected +9066;Folding something +33524;Pretending to pick something up +2282;Putting something on a surface +185131;Moving something across a surface until it falls down +155942;Dropping something in front of something +36395;Showing that something is empty +99744;Pushing something from right to left +187614;Holding something behind something +203895;Turning the camera downwards while filming something +182145;Turning something upside down +104557;Touching (without moving) part of something +8004;Plugging something into something +163563;Showing something next to something +1395;Spinning something so it continues spinning +204914;Lifting something up completely without letting it drop down +5134;Showing something on top of something +98947;Showing something on top of something +65810;Attaching something to something +12609;Removing something, revealing something behind +138727;Twisting something +179241;Putting something next to something +100344;Throwing something against something +186209;Tearing something into two pieces +173841;Plugging something into something +122968;Squeezing something +204509;Holding something behind something +103190;Showing something behind something +164314;Tearing something just a little bit +10663;Plugging something into something +107118;Piling something up +91531;Spreading something onto something +191471;Pretending to close something without actually closing it +92251;Stuffing something into something +215406;Putting something similar to other things that are already on the table +20795;Showing something next to something +114049;Squeezing something +220401;Something falling like a feather or paper +61611;Removing something, revealing something behind +215846;Showing something to the camera +111357;Pretending to close something without actually closing it +61872;Holding something +187732;Poking something so lightly that it doesn't or almost doesn't move +23368;Poking something so lightly that it doesn't or almost doesn't move +188176;Stuffing something into something +147553;Turning the camera left while filming something +81693;Spreading something onto something +185696;Pulling something out of something +218545;Uncovering something +114596;Showing something behind something +116408;Folding something +3386;Lifting something up completely without letting it drop down +135532;Putting something on a surface +48557;Unfolding something +29032;Unfolding something +150971;Tearing something into two pieces +158712;Pretending to pick something up +192295;Holding something +186581;Putting something next to something +149674;Plugging something into something +200171;Pretending to pick something up +6557;Throwing something onto a surface +136674;Holding something +199622;Dropping something behind something +219806;Pushing something so that it slightly moves +206196;Pretending to pick something up +46063;Bending something so that it deforms +32206;Holding something next to something +35993;Showing that something is empty +184071;Moving something away from something +69118;Attaching something to something +42523;Poking something so that it falls over +24666;Pushing something so that it slightly moves +28527;Showing that something is empty +16308;Putting something upright on the table +48243;Pretending to put something behind something +19051;Something being deflected from something +93600;Tipping something over +19176;Moving part of something +72803;Tipping something over +34237;Putting something into something +154102;Putting something into something +189570;Putting something that cannot actually stand upright upright on the table, so it falls on its side +84591;Pulling something from right to left +8995;Trying to bend something unbendable so nothing happens +129370;Opening something +53669;Picking something up +53513;Picking something up +128875;Something falling like a feather or paper +19726;Putting something onto something +89769;Twisting something +137762;Showing something next to something +66491;Dropping something next to something +6836;Pretending to poke something +172053;Covering something with something +166357;Rolling something on a flat surface +185781;Pretending to open something without actually opening it +167016;Closing something +185980;Pouring something onto something +75331;Lifting something with something on it +133317;Showing something behind something +44227;Putting something on a surface +37384;Picking something up +129057;Something falling like a rock +92427;Pulling two ends of something but nothing happens +123643;Pouring something into something +169176;Something falling like a rock +12558;Letting something roll up a slanted surface, so it rolls back down +146733;Moving something closer to something +79275;Pretending to be tearing something that is not tearable +136169;Tearing something just a little bit +26452;Putting something behind something +87063;Plugging something into something but pulling it right out as you remove your hand +155878;Putting something upright on the table +127528;Turning the camera upwards while filming something +63865;Turning something upside down +33023;Squeezing something +2178;Moving something up +67878;Pretending to scoop something up with something +130276;Moving something down +164594;Rolling something on a flat surface +217235;Rolling something on a flat surface +53582;Moving something and something closer to each other +211395;Unfolding something +94201;Holding something over something +44095;Letting something roll up a slanted surface, so it rolls back down +114158;Taking one of many similar things on the table +85597;Pretending to put something on a surface +160670;Taking something out of something +136796;Covering something with something +159170;Pretending to turn something upside down +209816;Pouring something out of something +206555;Putting something and something on the table +176473;Showing something behind something +29737;Something falling like a feather or paper +182409;Turning something upside down +22933;Rolling something on a flat surface +177186;Moving part of something +9294;Spinning something that quickly stops spinning +104213;Failing to put something into something because something does not fit +171803;Plugging something into something +127147;Holding something over something +197994;Something falling like a feather or paper +169251;Wiping something off of something +36531;Taking something out of something +172733;Stuffing something into something +156298;Pushing something from right to left +196702;Pretending to take something from somewhere +13369;Tearing something into two pieces +58799;Showing something to the camera +53930;Lifting something with something on it +202827;Squeezing something +211905;Putting something on a surface +50824;Throwing something against something +124955;Letting something roll along a flat surface +74958;Hitting something with something +80918;Spinning something so it continues spinning +71590;Pretending or failing to wipe something off of something +81083;Moving something and something closer to each other +188374;Lifting something with something on it +44040;Moving something across a surface without it falling down +213375;Hitting something with something +171385;Stacking number of something +140195;Moving something away from something +117455;Spinning something that quickly stops spinning +136990;Holding something in front of something +49562;Putting something underneath something +84950;Something falling like a feather or paper +104089;Covering something with something +63056;Poking something so that it falls over +68871;Showing something next to something +157593;Touching (without moving) part of something +145472;Dropping something in front of something +216841;Holding something next to something +25325;Folding something +4505;Lifting up one end of something without letting it drop down +165456;Pretending to pour something out of something, but something is empty +122118;Poking something so lightly that it doesn't or almost doesn't move +160109;Moving something across a surface until it falls down +92379;Letting something roll down a slanted surface +113465;Tearing something just a little bit +69811;Pushing something so that it falls off the table +192889;Showing that something is empty +67612;Turning the camera right while filming something +213015;Picking something up +130894;Taking something out of something +203526;Pretending to put something into something +146925;Rolling something on a flat surface +197346;Rolling something on a flat surface +214156;Pretending to put something into something +149850;Moving something up +181854;Throwing something in the air and letting it fall +147174;Moving something closer to something +65686;Pouring something into something +30239;Something falling like a feather or paper +145987;Plugging something into something +48478;Pouring something into something until it overflows +91740;Putting something onto something +20248;Something falling like a rock +169988;Pouring something into something +188820;Pretending to turn something upside down +184419;Pushing something so that it slightly moves +182099;Pushing something so it spins +177436;Plugging something into something but pulling it right out as you remove your hand +149251;Putting something behind something +20303;Pretending to throw something +78702;Covering something with something +153597;Lifting up one end of something without letting it drop down +177361;Moving something and something away from each other +105922;Plugging something into something but pulling it right out as you remove your hand +127397;Moving something and something closer to each other +112701;Putting something upright on the table +146292;Wiping something off of something +44313;Tilting something with something on it slightly so it doesn't fall down +17017;Pushing something off of something +38478;Stacking number of something +82385;Scooping something up with something +83499;Moving something and something away from each other +107193;Pouring something into something +201457;Turning something upside down +41380;Spinning something so it continues spinning +217407;Moving something away from something +63086;Plugging something into something but pulling it right out as you remove your hand +170437;Pushing something from right to left +202979;Holding something over something +181448;Something falling like a feather or paper +183069;Pretending or failing to wipe something off of something +121675;Lifting a surface with something on it but not enough for it to slide down +22392;Dropping something behind something +208825;Pushing something from left to right +220443;Moving something and something so they collide with each other +44264;Showing something behind something +115812;Plugging something into something but pulling it right out as you remove your hand +73201;Something falling like a feather or paper +80741;Pulling two ends of something but nothing happens +45832;Stacking number of something +121873;Trying but failing to attach something to something because it doesn't stick +135478;Moving something and something closer to each other +154275;Moving something across a surface until it falls down +167524;Lifting something with something on it +183918;Unfolding something +166084;Turning the camera upwards while filming something +28160;Moving something away from the camera +91887;Pushing something from right to left +119591;Putting something in front of something +120686;Pushing something so that it slightly moves +111982;Pouring something into something +95799;Picking something up +179579;Something colliding with something and both are being deflected +174472;Poking something so that it falls over +17855;Putting something on a surface +38545;Showing something on top of something +28487;Moving something and something so they collide with each other +17596;Unfolding something +92366;Showing that something is empty +32997;Stacking number of something +149671;Turning the camera left while filming something +206472;Taking something out of something +159037;Spinning something so it continues spinning +135110;Moving something away from something +35518;Lifting up one end of something, then letting it drop down +47178;Moving something away from something +87487;Moving something and something away from each other +183733;Poking something so that it falls over +20373;Plugging something into something but pulling it right out as you remove your hand +140554;Pushing something so that it almost falls off but doesn't +163205;Putting something on a surface +96010;Pretending to sprinkle air onto something +51238;Showing something behind something +55941;Holding something over something +182138;Holding something over something +14613;Pushing something so it spins +190160;Uncovering something +219384;Holding something in front of something +145537;Moving something and something closer to each other +194075;Letting something roll along a flat surface +138299;Pushing something off of something +55777;Throwing something in the air and letting it fall +171428;Showing something next to something +160276;Pushing something so that it slightly moves +1276;Closing something +30044;Holding something +1997;Pretending to turn something upside down +63994;Turning something upside down +99010;Showing that something is empty +75964;Tearing something into two pieces +2518;Covering something with something +105141;Uncovering something +93289;Turning something upside down +95298;Moving something and something closer to each other +95417;Taking something out of something +155315;Pushing something so it spins +36969;Taking something out of something +187886;Pretending to put something on a surface +136217;Uncovering something +128278;Spinning something so it continues spinning +45280;Pouring something into something +28143;Tilting something with something on it until it falls off +159614;Moving something and something away from each other +186501;Tearing something into two pieces +29478;Pretending to be tearing something that is not tearable +83229;Lifting something up completely, then letting it drop down +21092;Moving something closer to something +94680;Hitting something with something +170522;Sprinkling something onto something +63591;Putting number of something onto something +132985;Putting something next to something +99717;Pouring something into something +150101;Pretending to put something onto something +89678;Showing that something is empty +145618;Moving something across a surface without it falling down +53224;Lifting something with something on it +13010;Pretending to squeeze something +212726;Stuffing something into something +2958;Moving something and something closer to each other +79504;Holding something over something +159900;Trying to bend something unbendable so nothing happens +21922;Poking a stack of something without the stack collapsing +177287;Moving something and something closer to each other +40985;Lifting something up completely without letting it drop down +218180;Removing something, revealing something behind +106599;Tearing something into two pieces +121620;Tearing something just a little bit +106184;Pushing something from right to left +91135;Showing that something is empty +11402;Putting something and something on the table +186171;Moving something and something closer to each other +146344;Spilling something onto something +176700;Putting something upright on the table +82874;Pushing something so that it falls off the table +183822;Uncovering something +71459;Moving something closer to something +88016;Pretending to pick something up +36551;Letting something roll along a flat surface +127313;Pretending to squeeze something +150454;Putting something into something +82781;Showing something on top of something +53174;Throwing something against something +71856;Letting something roll down a slanted surface +173868;Moving something up +81366;Tearing something into two pieces +208997;Pushing something so that it falls off the table +19638;Putting something next to something +172906;Twisting something +57174;Throwing something in the air and catching it +202630;Rolling something on a flat surface +196803;Showing something behind something +210289;Twisting something +79573;Closing something +97209;Holding something over something +199787;Tearing something just a little bit +62043;Pushing something from right to left +196226;Putting something on the edge of something so it is not supported and falls down +156418;Putting something that cannot actually stand upright upright on the table, so it falls on its side +154160;Bending something until it breaks +209318;Holding something +9960;Rolling something on a flat surface +28018;Showing that something is inside something +106506;Showing that something is inside something +57717;Pushing something so it spins +39225;Taking one of many similar things on the table +8511;Moving something and something closer to each other +159218;Pretending to pick something up +205119;Poking a hole into some substance +120257;Taking something out of something +180595;Squeezing something +30192;Showing something behind something +165777;Moving something up +28092;Rolling something on a flat surface +135371;Pulling something from right to left +96009;Laying something on the table on its side, not upright +58529;Folding something +199523;Putting something, something and something on the table +108311;Tipping something with something in it over, so something in it falls out +86552;Turning something upside down +97627;Putting something in front of something +14876;Something falling like a feather or paper +147559;Letting something roll up a slanted surface, so it rolls back down +45493;Throwing something in the air and catching it +188710;Dropping something behind something +134542;Moving something down +124855;Stuffing something into something +194357;Moving something and something so they collide with each other +40981;Scooping something up with something +114093;Tipping something with something in it over, so something in it falls out +175886;Bending something so that it deforms +74705;Holding something next to something +199687;Moving something and something away from each other +66808;Plugging something into something +54611;Moving something across a surface until it falls down +135240;Moving something and something away from each other +61696;Holding something behind something +179637;Pretending to open something without actually opening it +75406;Uncovering something +82294;Pushing something so that it almost falls off but doesn't +13642;Something falling like a rock +168287;Lifting up one end of something, then letting it drop down +175812;Holding something next to something +144077;Plugging something into something +141359;Covering something with something +190366;Pretending to squeeze something +188771;Something falling like a rock +142909;Dropping something next to something +75181;Holding something over something +46069;Throwing something in the air and catching it +123623;Pretending to put something on a surface +127567;Holding something in front of something +32156;Holding something over something +71697;Pushing something from left to right +83575;Moving something down +186243;Dropping something next to something +162532;Pulling two ends of something but nothing happens +39051;Spilling something behind something +11163;Pushing something so that it slightly moves +196061;Putting something similar to other things that are already on the table +16322;Putting something into something +163125;Something colliding with something and both are being deflected +190937;Pushing something so it spins +145599;Holding something behind something +149883;Poking something so it slightly moves +133066;Rolling something on a flat surface +157791;Closing something +49685;Picking something up +91708;Putting number of something onto something +101384;Spinning something that quickly stops spinning +183876;Pretending to take something from somewhere +92582;Moving something away from something +117607;Picking something up +210662;Taking something from somewhere +199546;Holding something behind something +152491;Plugging something into something +121702;Pulling something from right to left +20301;Putting something into something +99026;Removing something, revealing something behind +96943;Putting something on a surface +104015;Wiping something off of something +23896;Taking one of many similar things on the table +216766;Turning something upside down +177040;Something being deflected from something +28873;Pretending to open something without actually opening it +95292;Hitting something with something +56179;Tilting something with something on it until it falls off +130154;Touching (without moving) part of something +200967;Rolling something on a flat surface +109302;Pretending to put something on a surface +143075;Something colliding with something and both are being deflected +22096;Folding something +21413;Stacking number of something +100991;Poking something so it slightly moves +124821;Holding something over something +3126;Throwing something against something +92445;Pouring something into something +132401;Wiping something off of something +53497;Twisting something +151826;Putting something into something +124034;Putting something behind something +137077;Pretending to be tearing something that is not tearable +12939;Holding something +86745;Touching (without moving) part of something +67316;Lifting something up completely without letting it drop down +80175;Pushing something from left to right +166372;Pushing something from right to left +215423;Picking something up +184766;Pretending to open something without actually opening it +47215;Pretending to spread air onto something +61066;Pretending to pick something up +110729;Putting something into something +100708;Showing something behind something +62418;Holding something over something +44073;Trying to bend something unbendable so nothing happens +145121;Dropping something behind something +107769;Moving something and something closer to each other +138669;Approaching something with your camera +122105;Moving something closer to something +90020;Putting something behind something +101711;Putting something that can't roll onto a slanted surface, so it slides down +17863;Moving part of something +166218;Putting something on a surface +27529;Poking a hole into something soft +174107;Turning something upside down +167943;Spinning something that quickly stops spinning +27324;Moving something and something closer to each other +41292;Pretending to close something without actually closing it +106868;Putting something behind something +52713;Pretending to open something without actually opening it +175523;Moving something closer to something +207827;Touching (without moving) part of something +138572;Attaching something to something +116742;Throwing something against something +10624;Putting something on a surface +165556;Pretending to be tearing something that is not tearable +40843;Dropping something onto something +207703;Tearing something into two pieces +85126;Covering something with something +69112;Letting something roll down a slanted surface +169905;Pretending to spread air onto something +110272;Pretending to open something without actually opening it +183395;Folding something +17283;Dropping something onto something +141560;Spilling something onto something +147005;Turning something upside down +109323;Putting something next to something +86994;Letting something roll down a slanted surface +50547;Tearing something into two pieces +97142;Showing something behind something +33616;Something colliding with something and both come to a halt +220477;Uncovering something +62997;Dropping something into something +210156;Letting something roll down a slanted surface +182607;Something falling like a rock +59213;Approaching something with your camera +92613;Putting something, something and something on the table +27812;Plugging something into something +38600;Stuffing something into something +152024;Trying but failing to attach something to something because it doesn't stick +38430;Plugging something into something +65974;Poking something so that it falls over +148503;Taking one of many similar things on the table +68563;Putting something similar to other things that are already on the table +156034;Squeezing something +187936;Pulling something out of something +153275;Pretending to open something without actually opening it +20324;Throwing something in the air and letting it fall +150109;Lifting something up completely, then letting it drop down +180296;Pushing something so that it slightly moves +12219;Stuffing something into something +220780;Spinning something that quickly stops spinning +66939;Sprinkling something onto something +17912;Lifting something with something on it +151440;Stacking number of something +67545;Moving something and something closer to each other +135469;Showing something on top of something +187978;Squeezing something +67517;Plugging something into something but pulling it right out as you remove your hand +217521;Tilting something with something on it until it falls off +47741;Lifting a surface with something on it until it starts sliding down +162303;Showing that something is inside something +86406;Something falling like a rock +213145;Tipping something over +90652;Dropping something behind something +109313;Putting something and something on the table +25999;Pretending to put something on a surface +116587;Turning something upside down +215240;Tearing something just a little bit +24314;Lifting something up completely, then letting it drop down +171858;Picking something up +155576;Sprinkling something onto something +72493;Twisting (wringing) something wet until water comes out +188688;Pretending to put something on a surface +35197;Showing something next to something +179610;Plugging something into something but pulling it right out as you remove your hand +210086;Pouring something into something +210112;Pulling something from left to right +82549;Plugging something into something +133001;Plugging something into something but pulling it right out as you remove your hand +203264;Putting something into something +192577;Attaching something to something +126566;Bending something until it breaks +150053;Pretending to throw something +77103;Pretending to put something on a surface +130655;Showing something on top of something +132446;Pretending to pick something up +78072;Something falling like a rock +131191;Putting something behind something +126897;Lifting a surface with something on it but not enough for it to slide down +35938;Moving something and something away from each other +65506;Holding something next to something +215669;Showing something on top of something +73323;Rolling something on a flat surface +186638;Pretending to open something without actually opening it +28675;Tearing something into two pieces +88144;Plugging something into something +178980;Pushing something so that it slightly moves +17031;Attaching something to something +184512;Something falling like a rock +23779;Pulling something from left to right +118334;Folding something +31791;Pretending to put something next to something +83430;Tearing something just a little bit +66306;Lifting up one end of something, then letting it drop down +72527;Putting something similar to other things that are already on the table +7488;Tearing something into two pieces +52836;Poking something so lightly that it doesn't or almost doesn't move +187044;Something falling like a feather or paper +161425;Dropping something into something +219636;Pretending to take something out of something +114891;Putting something similar to other things that are already on the table +191275;Moving something and something closer to each other +175950;Pretending to pick something up +8768;Trying to bend something unbendable so nothing happens +201722;Throwing something in the air and catching it +38919;Pretending or trying and failing to twist something +71197;Pretending to pick something up +66351;Pushing something so that it almost falls off but doesn't +91057;Stuffing something into something +79140;Spreading something onto something +94373;Holding something next to something +46401;Something falling like a rock +30653;Touching (without moving) part of something +178058;Holding something behind something +188636;Plugging something into something +180891;Lifting something up completely, then letting it drop down +20409;Moving something and something away from each other +40501;Holding something behind something +147826;Pulling something onto something +90129;Pretending to poke something +60624;Pretending to close something without actually closing it +216135;Tipping something over +213676;Dropping something next to something +11;Pretending to pick something up +5818;Spinning something that quickly stops spinning +15884;Holding something over something +53228;Pouring something into something +48624;Putting something similar to other things that are already on the table +114189;Moving something away from something +188448;Turning something upside down +77423;Covering something with something +17371;Pushing something so that it slightly moves +109053;Showing that something is empty +32904;Tilting something with something on it slightly so it doesn't fall down +202870;Showing something next to something +3953;Plugging something into something +40077;Moving something and something closer to each other +153607;Moving part of something +201895;Putting something on a flat surface without letting it roll +49690;Putting something on a surface +97825;Pretending to be tearing something that is not tearable +46506;Pushing something from left to right +147459;Moving something and something closer to each other +146719;Lifting something with something on it +207728;Taking one of many similar things on the table +39290;Tearing something just a little bit +10946;Putting something underneath something +156122;Poking something so it slightly moves +21854;Putting something on the edge of something so it is not supported and falls down +45581;Putting something underneath something +92315;Pretending to open something without actually opening it +121326;Pulling something from left to right +168901;Covering something with something +16126;Poking something so that it spins around +82229;Piling something up +145801;Turning the camera left while filming something +205114;Lifting something up completely, then letting it drop down +24372;Pretending or failing to wipe something off of something +177757;Showing that something is empty +4544;Tearing something into two pieces +53389;Taking something out of something +157632;Tearing something just a little bit +12253;Pouring something into something until it overflows +45637;Pushing something so that it almost falls off but doesn't +89518;Moving something away from something +193919;Throwing something against something +172048;Taking something out of something +208452;Lifting a surface with something on it until it starts sliding down +6213;Putting something on a flat surface without letting it roll +198334;Something falling like a feather or paper +106897;Putting something in front of something +134636;Opening something +60606;Tearing something just a little bit +171176;Putting something into something +83256;Bending something so that it deforms +149957;Turning something upside down +16487;Lifting something up completely without letting it drop down +134923;Pouring something into something +211302;Unfolding something +205645;Lifting something up completely, then letting it drop down +187273;Moving something and something closer to each other +35865;Throwing something onto a surface +213654;Unfolding something +126841;Pretending to be tearing something that is not tearable +27788;Piling something up +45281;Pulling two ends of something so that it gets stretched +148241;Plugging something into something +14364;Putting something similar to other things that are already on the table +193245;Picking something up +217884;Covering something with something +188263;Moving something away from the camera +173004;Putting something in front of something +83005;Putting something that cannot actually stand upright upright on the table, so it falls on its side +108775;Moving something away from something +105876;Closing something +213923;Throwing something in the air and catching it +191334;Showing something next to something +23331;Lifting something up completely, then letting it drop down +132112;Lifting something with something on it +20969;Throwing something in the air and letting it fall +51086;Closing something +190550;Moving something closer to something +216944;Uncovering something +194834;Pretending to put something on a surface +15991;Something falling like a feather or paper +64275;Hitting something with something +71323;Pretending to squeeze something +40712;Taking one of many similar things on the table +111617;Moving something closer to something +179252;Plugging something into something +72981;Pretending to poke something +79602;Trying to bend something unbendable so nothing happens +147635;Lifting a surface with something on it until it starts sliding down +184294;Moving something and something closer to each other +108835;Burying something in something +157978;Putting something similar to other things that are already on the table +104381;Pushing something so that it falls off the table +117113;Approaching something with your camera +7328;Opening something +63049;Throwing something in the air and letting it fall +188148;Scooping something up with something +36761;Touching (without moving) part of something +147610;Hitting something with something +57594;Squeezing something +134643;Moving something away from something +12781;Pretending to put something on a surface +57422;Moving something down +185564;Covering something with something +169427;Pouring something out of something +66656;Dropping something in front of something +99032;Dropping something in front of something +193915;Pulling something from left to right +99058;Pretending to pick something up +146196;Something falling like a rock +125504;Pulling something from right to left +107560;Pushing something so it spins +199860;Turning something upside down +47705;Turning something upside down +201139;Unfolding something +110914;Pouring something out of something +212339;Holding something +50161;Pretending to pour something out of something, but something is empty +178138;Stuffing something into something +99466;Showing that something is inside something +42597;Spilling something onto something +143900;Lifting something up completely, then letting it drop down +21846;Moving something closer to something +182901;Putting something onto something +68233;Dropping something onto something +194560;Holding something over something +180047;Touching (without moving) part of something +70113;Uncovering something +157045;Plugging something into something but pulling it right out as you remove your hand +66964;Pushing something from right to left +120039;Turning something upside down +149340;Picking something up +109120;Holding something behind something +28149;Dropping something next to something +164613;Pulling two ends of something so that it separates into two pieces +74215;Moving something closer to something +173104;Holding something next to something +55324;Moving something down +23203;Picking something up +157916;Putting something on a surface +26897;Putting something that can't roll onto a slanted surface, so it stays where it is +59567;Pretending to put something behind something +195508;Moving something and something closer to each other +806;Spinning something that quickly stops spinning +202819;Holding something next to something +113560;Covering something with something +195547;Putting something similar to other things that are already on the table +1037;Tearing something into two pieces +93373;Pretending to put something onto something +150047;Lifting something up completely, then letting it drop down +142444;Showing something behind something +178746;Plugging something into something +172832;Pushing something so that it falls off the table +172950;Moving something up +162778;Putting something next to something +8387;Throwing something onto a surface +62892;Putting something onto something else that cannot support it so it falls down +129768;Poking something so lightly that it doesn't or almost doesn't move +147763;Twisting something +96668;Uncovering something +162930;Picking something up +46758;Turning something upside down +68998;Turning something upside down +114186;Lifting something with something on it +132787;Pushing something with something +159462;Poking a hole into something soft +102566;Throwing something in the air and catching it +121433;Moving something and something away from each other +28390;Bending something so that it deforms +131491;Plugging something into something but pulling it right out as you remove your hand +57207;Lifting something with something on it +73238;Dropping something next to something +38078;Putting something into something +203152;Twisting something +179959;Pulling two ends of something but nothing happens +49880;Poking something so it slightly moves +173938;Putting something that cannot actually stand upright upright on the table, so it falls on its side +4050;Rolling something on a flat surface +104476;Moving part of something +109264;Plugging something into something but pulling it right out as you remove your hand +73922;Something falling like a feather or paper +28097;Pretending or failing to wipe something off of something +183832;Stuffing something into something +166315;Trying but failing to attach something to something because it doesn't stick +36904;Showing something behind something +175540;Plugging something into something +169793;Pushing something from left to right +33223;Pretending to put something on a surface +167978;Moving something away from something +94022;Pretending to put something on a surface +188617;Lifting up one end of something, then letting it drop down +49860;Pushing something so that it falls off the table +10674;Showing something next to something +106217;Pushing something so that it falls off the table +91099;Holding something over something +90343;Turning something upside down +170620;Taking something out of something +58203;Showing that something is inside something +127820;Pretending to pick something up +47874;Turning something upside down +127018;Moving part of something +16598;Putting something into something +60446;Pushing something so that it slightly moves +141325;Plugging something into something +66470;Spinning something so it continues spinning +130415;Holding something +10135;Something falling like a rock +119974;Putting something on a surface +57361;Unfolding something +81452;Turning the camera left while filming something +61332;Picking something up +189291;Laying something on the table on its side, not upright +201153;Showing something to the camera +215741;Moving part of something +78165;Pretending to be tearing something that is not tearable +217014;Something colliding with something and both are being deflected +23219;Putting something that can't roll onto a slanted surface, so it stays where it is +63958;Taking something out of something +106720;Tearing something into two pieces +139686;Pretending to squeeze something +96649;Putting something similar to other things that are already on the table +100469;Twisting something +204653;Putting something onto something +169752;Folding something +180809;Pretending to poke something +94086;Moving something closer to something +38358;Pretending to turn something upside down +199125;Lifting something with something on it +147165;Poking something so it slightly moves +113934;Pulling two ends of something but nothing happens +146862;Moving something closer to something +3679;Plugging something into something +36666;Putting something next to something +29940;Pouring something out of something +13970;Squeezing something +33947;Moving something up +138556;Uncovering something +133075;Turning something upside down +63275;Pretending to turn something upside down +75365;Folding something +46983;Turning the camera downwards while filming something +146055;Plugging something into something but pulling it right out as you remove your hand +24793;Attaching something to something +34627;Poking something so lightly that it doesn't or almost doesn't move +155040;Lifting up one end of something, then letting it drop down +198350;Taking one of many similar things on the table +172126;Holding something +212897;Lifting something with something on it +12703;Tilting something with something on it slightly so it doesn't fall down +133201;Tearing something just a little bit +160526;Pushing something from right to left +33768;Pushing something from left to right +99752;Pouring something into something until it overflows +16978;Attaching something to something +207860;Pretending to be tearing something that is not tearable +128443;Putting something on a surface +75241;Holding something in front of something +6263;Squeezing something +179833;Spinning something that quickly stops spinning +8948;Pushing something from right to left +48813;Moving something and something so they pass each other +176500;Attaching something to something +75205;Putting something similar to other things that are already on the table +123971;Unfolding something +7013;Pushing something so it spins +100415;Stuffing something into something +190047;Stacking number of something +5752;Bending something until it breaks +109769;Putting something into something +204102;Covering something with something +163615;Pushing something so that it almost falls off but doesn't +82495;Turning something upside down +50744;Pretending to turn something upside down +38359;Dropping something onto something +169077;Folding something +13035;Holding something +32890;Pushing something from left to right +194243;Something falling like a rock +91296;Dropping something onto something +216604;Moving something and something away from each other +204964;Tipping something over +215604;Taking something from somewhere +203482;Pretending to be tearing something that is not tearable +164908;Something falling like a rock +94114;Pushing something off of something +209049;Showing that something is empty +105955;Squeezing something +171931;Showing that something is inside something +52021;Turning something upside down +17939;Holding something in front of something +162741;Putting something onto something +66553;Picking something up +187856;Putting something on a surface +127800;Showing something on top of something +29151;Putting something similar to other things that are already on the table +25246;Putting something underneath something +194267;Poking something so lightly that it doesn't or almost doesn't move +197731;Turning something upside down +46702;Letting something roll up a slanted surface, so it rolls back down +181306;Pushing something so that it falls off the table +166189;Pulling something from left to right +82242;Putting something on a flat surface without letting it roll +160560;Dropping something behind something +43542;Taking one of many similar things on the table +7535;Twisting something +208756;Moving something up +152498;Folding something +77889;Moving something and something so they pass each other +32712;Holding something behind something +18069;Pushing something so that it slightly moves +158049;Squeezing something +160489;Scooping something up with something +183812;Putting something on the edge of something so it is not supported and falls down +69014;Covering something with something +55479;Tipping something with something in it over, so something in it falls out +93578;Hitting something with something +116583;Pretending to open something without actually opening it +151958;Piling something up +3117;Pouring something into something +211063;Moving something closer to something +191032;Tearing something just a little bit +142078;Rolling something on a flat surface +10198;Pulling two ends of something so that it gets stretched +213758;Tearing something just a little bit +184047;Moving something and something closer to each other +35942;Picking something up +179109;Pretending to pour something out of something, but something is empty +121534;Showing something behind something +52730;Pushing something so that it slightly moves +172841;Putting number of something onto something +127711;Attaching something to something +56104;Squeezing something +45296;Covering something with something +6823;Plugging something into something +80628;Throwing something onto a surface +80022;Putting something that cannot actually stand upright upright on the table, so it falls on its side +182536;Pretending to open something without actually opening it +114952;Taking something out of something +48766;Throwing something in the air and catching it +166325;Something being deflected from something +205626;Tearing something into two pieces +164312;Closing something +45481;Pushing something with something +136739;Moving something and something closer to each other +212690;Turning the camera downwards while filming something +144972;Moving something down +201986;Plugging something into something +71943;Putting something, something and something on the table +161694;Tipping something over +130163;Holding something behind something +33970;Taking something out of something +63984;Pretending to take something from somewhere +151622;Showing something next to something +96130;Pulling two ends of something but nothing happens +35524;Uncovering something +617;Taking one of many similar things on the table +161727;Putting something underneath something +11743;Throwing something +126735;Pretending to put something on a surface +64811;Plugging something into something but pulling it right out as you remove your hand +17095;Something falling like a rock +165944;Putting something behind something +5243;Bending something so that it deforms +144920;Rolling something on a flat surface +168925;Picking something up +135668;Putting something and something on the table +48657;Tearing something just a little bit +192354;Spinning something so it continues spinning +90814;Spinning something that quickly stops spinning +155771;Removing something, revealing something behind +213377;Showing that something is empty +46808;Pushing something so that it falls off the table +107055;Moving something down +6099;Putting something on a flat surface without letting it roll +184787;Opening something +151245;Closing something +181949;Pushing something from right to left +161721;Taking one of many similar things on the table +210475;Unfolding something +187827;Pushing something onto something +164347;Putting something similar to other things that are already on the table +18256;Throwing something against something +179669;Trying to bend something unbendable so nothing happens +20510;Tearing something into two pieces +216201;Pulling something out of something +45384;Pushing something so that it slightly moves +80927;Tilting something with something on it slightly so it doesn't fall down +133689;Putting something and something on the table +110747;Pushing something from right to left +208715;Taking one of many similar things on the table +16177;Putting something in front of something +65407;Moving something and something away from each other +154357;Lifting something with something on it +220267;Putting something similar to other things that are already on the table +17127;Putting something, something and something on the table +143598;Trying to bend something unbendable so nothing happens +198888;Tearing something into two pieces +163393;Pretending to be tearing something that is not tearable +71775;Squeezing something +177839;Twisting (wringing) something wet until water comes out +112634;Putting something next to something +134411;Putting something into something +51983;Tearing something into two pieces +179242;Opening something +126960;Holding something behind something +161847;Moving something and something so they pass each other +55530;Something falling like a rock +22637;Plugging something into something +158029;Tilting something with something on it slightly so it doesn't fall down +39916;Rolling something on a flat surface +134251;Holding something over something +180748;Pouring something out of something +189219;Pretending to turn something upside down +108168;Lifting up one end of something, then letting it drop down +63658;Letting something roll along a flat surface +28939;Turning the camera downwards while filming something +128964;Putting something behind something +113754;Pretending to pick something up +72988;Dropping something onto something +52077;Pretending to sprinkle air onto something +14865;Taking something from somewhere +127649;Turning the camera downwards while filming something +23613;Attaching something to something +126696;Touching (without moving) part of something +150276;Throwing something +159834;Holding something over something +154248;Putting something into something +145771;Pretending to be tearing something that is not tearable +21973;Squeezing something +218265;Pretending to sprinkle air onto something +68940;Throwing something in the air and letting it fall +67699;Moving something and something closer to each other +56174;Pouring something into something +90166;Pretending to open something without actually opening it +52870;Throwing something onto a surface +110978;Wiping something off of something +91509;Putting something on the edge of something so it is not supported and falls down +21825;Putting something into something +186843;Tearing something just a little bit +98399;Twisting something +5982;Showing that something is inside something +68191;Taking one of many similar things on the table +166546;Pulling two ends of something but nothing happens +161451;Pushing something so that it slightly moves +142121;Putting something on a surface +110789;Throwing something onto a surface +3254;Putting something on the edge of something so it is not supported and falls down +95373;Taking something out of something +16526;Bending something so that it deforms +78511;Twisting (wringing) something wet until water comes out +65860;Turning the camera right while filming something +46301;Showing something behind something +196833;Pushing something from right to left +25546;Laying something on the table on its side, not upright +35328;Pretending to scoop something up with something +12446;Putting something behind something +51787;Laying something on the table on its side, not upright +30816;Lifting something with something on it +151920;Uncovering something +97350;Pushing something from right to left +27341;Pushing something off of something +13737;Closing something +1213;Pretending to put something onto something +197460;Opening something +184128;Throwing something in the air and letting it fall +70374;Pretending to be tearing something that is not tearable +175110;Putting something on a surface +74081;Plugging something into something +29048;Showing something behind something +112062;Putting something next to something +5737;Failing to put something into something because something does not fit +64020;Pushing something so it spins +141228;Putting something on the edge of something so it is not supported and falls down +2976;Taking something out of something +123424;Pushing something off of something +93954;Moving something away from something +77372;Moving something away from something +184908;Trying but failing to attach something to something because it doesn't stick +107008;Attaching something to something +94619;Taking something out of something +45007;Tearing something just a little bit +72112;Putting something on a surface +70852;Plugging something into something +151367;Tearing something into two pieces +72405;Turning something upside down +14545;Showing that something is empty +37804;Pretending to open something without actually opening it +63475;Something falling like a feather or paper +41857;Pretending to put something underneath something +143749;Something being deflected from something +152582;Showing that something is empty +9335;Showing something on top of something +138571;Putting something upright on the table +50019;Pushing something from left to right +87022;Taking one of many similar things on the table +159506;Tearing something just a little bit +198108;Piling something up +112452;Lifting something up completely without letting it drop down +137905;Holding something over something +151002;Moving something across a surface without it falling down +107894;Piling something up +175485;Covering something with something +128639;Pushing something so it spins +3841;Putting something into something +31611;Unfolding something +190625;Putting something that cannot actually stand upright upright on the table, so it falls on its side +115835;Putting something similar to other things that are already on the table +53460;Showing something behind something +210142;Taking one of many similar things on the table +45173;Holding something +151824;Putting something on a surface +152014;Throwing something +155306;Showing that something is empty +23383;Moving something and something so they pass each other +211734;Spinning something that quickly stops spinning +134750;Squeezing something +17599;Something falling like a feather or paper +192700;Lifting something up completely, then letting it drop down +52471;Covering something with something +162993;Putting something underneath something +175534;Something falling like a rock +40591;Moving something and something away from each other +168204;Pretending to put something on a surface +166516;Pulling something from left to right +168898;Taking one of many similar things on the table +7654;Putting something on a surface +209045;Moving something and something so they collide with each other +14296;Covering something with something +171162;Plugging something into something but pulling it right out as you remove your hand +201955;Pouring something into something +77612;Pulling something from behind of something +69689;Pushing something with something +116102;Trying but failing to attach something to something because it doesn't stick +54686;Taking one of many similar things on the table +208592;Tilting something with something on it until it falls off +206032;Moving something away from something +13841;Pushing something from right to left +74657;Something falling like a feather or paper +2009;Piling something up +36816;Showing something on top of something +166481;Moving something and something away from each other +157776;Stacking number of something +117496;Pouring something into something +44116;Poking something so it slightly moves +205684;Something falling like a rock +140714;Putting something into something +138214;Rolling something on a flat surface +206783;Squeezing something +26050;Rolling something on a flat surface +44440;Pretending to close something without actually closing it +102285;Pouring something out of something +57073;Putting something and something on the table +14907;Stacking number of something +12517;Putting something similar to other things that are already on the table +126103;Holding something next to something +71442;Tearing something into two pieces +133403;Tearing something into two pieces +202158;Bending something until it breaks +139892;Touching (without moving) part of something +99969;Tilting something with something on it until it falls off +82373;Poking something so that it falls over +126544;Turning something upside down +198397;Pretending to put something onto something +16213;Pretending to open something without actually opening it +54888;Putting something that cannot actually stand upright upright on the table, so it falls on its side +194701;Putting something next to something +189455;Showing something on top of something +197321;Letting something roll down a slanted surface +68138;Moving something across a surface until it falls down +62719;Holding something behind something +166594;Holding something +183006;Pulling two ends of something so that it gets stretched +62014;Pouring something into something +85968;Plugging something into something +180157;Moving something away from something +79360;Pretending to put something into something +101125;Spinning something that quickly stops spinning +66075;Folding something +20057;Spinning something that quickly stops spinning +64816;Dropping something in front of something +115304;Plugging something into something +80216;Turning the camera left while filming something +59936;Pouring something onto something +61049;Putting something into something +40181;Pretending to take something from somewhere +97953;Poking something so it slightly moves +171634;Putting number of something onto something +84809;Tipping something over +132625;Tearing something just a little bit +205431;Turning something upside down +152427;Taking one of many similar things on the table +150372;Uncovering something +97500;Opening something +34897;Twisting something +102498;Spilling something onto something +169648;Plugging something into something +84566;Putting something next to something +85890;Moving part of something +74169;Tearing something into two pieces +191397;Piling something up +185849;Scooping something up with something +70914;Moving something closer to something +95448;Pretending to be tearing something that is not tearable +174318;Something falling like a feather or paper +58746;Holding something +169846;Spinning something so it continues spinning +215700;Rolling something on a flat surface +140205;Pretending to sprinkle air onto something +117405;Pretending to pour something out of something, but something is empty +69232;Poking something so lightly that it doesn't or almost doesn't move +15199;Tearing something into two pieces +32209;Pretending to put something on a surface +73184;Moving something across a surface without it falling down +22041;Pulling two ends of something so that it gets stretched +101046;Holding something +61807;Putting something and something on the table +65786;Covering something with something +202977;Moving something towards the camera +130346;Touching (without moving) part of something +197226;Tilting something with something on it slightly so it doesn't fall down +220002;Showing something to the camera +116800;Plugging something into something but pulling it right out as you remove your hand +80631;Showing something on top of something +164468;Lifting something up completely, then letting it drop down +100065;Moving something closer to something +152388;Stacking number of something +179001;Tipping something over +67006;Pushing something so that it slightly moves +79378;Putting something on a surface +103267;Showing something behind something +111141;Stuffing something into something +114167;Turning something upside down +101134;Spilling something onto something +63527;Pushing something from right to left +91701;Pretending to open something without actually opening it +70167;Poking something so lightly that it doesn't or almost doesn't move +151783;Lifting up one end of something without letting it drop down +81379;Throwing something onto a surface +17626;Holding something next to something +4823;Tearing something into two pieces +213802;Putting something upright on the table +53328;Covering something with something +182412;Hitting something with something +54993;Turning the camera right while filming something +184760;Pretending to open something without actually opening it +88831;Moving something up +128358;Moving something away from something +31798;Pushing something so that it falls off the table +157333;Tearing something into two pieces +75837;Throwing something in the air and letting it fall +190421;Lifting a surface with something on it until it starts sliding down +8113;Showing something behind something +20469;Squeezing something +147605;Tipping something with something in it over, so something in it falls out +104024;Throwing something in the air and catching it +55843;Pretending to put something into something +143291;Taking one of many similar things on the table +42557;Something falling like a feather or paper +76511;Showing that something is inside something +111133;Putting something onto something +52429;Closing something +100879;Opening something +159093;Spinning something so it continues spinning +100869;Moving something and something away from each other +208906;Hitting something with something +16186;Pretending to turn something upside down +124723;Pouring something into something +113509;Attaching something to something +51344;Putting something behind something +59066;Showing something on top of something +107253;Wiping something off of something +46242;Showing that something is empty +164879;Turning something upside down +1914;Opening something +185294;Lifting something with something on it +70474;Tearing something just a little bit +14060;Rolling something on a flat surface +172924;Something colliding with something and both come to a halt +20597;Pushing something with something +27525;Showing that something is inside something +73050;Folding something +11510;Attaching something to something +106251;Twisting something +175313;Trying but failing to attach something to something because it doesn't stick +144782;Putting something that can't roll onto a slanted surface, so it stays where it is +140606;Approaching something with your camera +159970;Something falling like a rock +136099;Unfolding something +150299;Turning the camera right while filming something +44272;Holding something +163887;Putting something on a surface +63144;Folding something +146569;Holding something behind something +43311;Bending something until it breaks +22328;Moving something down +162360;Twisting something +153153;Pretending to open something without actually opening it +178542;Dropping something behind something +1094;Moving something towards the camera +203572;Opening something +10705;Stacking number of something +132748;Putting something upright on the table +116656;Moving something towards the camera +111697;Something being deflected from something +79996;Something falling like a rock +63092;Putting something underneath something +35065;Pretending to poke something +130403;Moving something closer to something +202223;Opening something +87346;Pulling something from right to left +35873;Something falling like a feather or paper +202639;Putting something in front of something +19380;Pushing something so it spins +11023;Pushing something so it spins +220746;Putting something onto something +55965;Pushing something so that it falls off the table +177913;Tearing something into two pieces +23251;Covering something with something +178031;Moving something up +12364;Pulling two ends of something but nothing happens +119317;Spinning something so it continues spinning +158586;Tearing something into two pieces +170859;Letting something roll up a slanted surface, so it rolls back down +168885;Spinning something so it continues spinning +29678;Turning the camera right while filming something +189746;Showing something behind something +130787;Squeezing something +179984;Moving something closer to something +184363;Moving something up +40687;Pulling something from right to left +6206;Taking one of many similar things on the table +146200;Stacking number of something +180184;Folding something +107477;Stuffing something into something +159063;Putting something underneath something +173973;Pretending to pick something up +206315;Pushing something so that it almost falls off but doesn't +197570;Uncovering something +50018;Holding something next to something +16987;Pushing something so that it falls off the table +133081;Showing that something is inside something +177828;Throwing something +162230;Pretending to put something into something +181144;Bending something until it breaks +74597;Moving something closer to something +182612;Hitting something with something +133162;Poking something so it slightly moves +127502;Putting something into something +204144;Rolling something on a flat surface +29685;Putting something next to something +60133;Showing that something is empty +203542;Squeezing something +164094;Laying something on the table on its side, not upright +153612;Something falling like a feather or paper +213445;Throwing something +18661;Pretending to turn something upside down +210378;Showing something next to something +112720;Pretending to be tearing something that is not tearable +158704;Lifting a surface with something on it until it starts sliding down +136032;Stuffing something into something +185724;Letting something roll along a flat surface +1718;Dropping something onto something +188383;Tearing something into two pieces +135027;Pretending or trying and failing to twist something +34780;Putting something on a surface +16140;Tearing something into two pieces +152878;Turning the camera upwards while filming something +165721;Showing something to the camera +176348;Pushing something so that it slightly moves +137589;Pushing something from right to left +22494;Moving part of something +216711;Lifting something up completely, then letting it drop down +28355;Folding something +174631;Pretending to put something onto something +990;Showing something behind something +94845;Dropping something onto something +153532;Pretending to take something out of something +8852;Moving something and something closer to each other +93585;Moving part of something +3808;Wiping something off of something +131003;Moving something and something away from each other +158714;Moving something and something closer to each other +187669;Plugging something into something but pulling it right out as you remove your hand +162342;Putting something in front of something +26266;Spilling something onto something +214046;Pulling something onto something +133112;Lifting something up completely without letting it drop down +201259;Tearing something into two pieces +180407;Holding something next to something +24092;Hitting something with something +194747;Putting something on a surface +74029;Throwing something in the air and letting it fall +214337;Holding something next to something +64057;Dropping something onto something +128975;Showing something on top of something +77352;Pulling something from right to left +46146;Moving away from something with your camera +220752;Lifting something up completely without letting it drop down +91524;Holding something next to something +134467;Pretending to turn something upside down +7404;Dropping something onto something +62899;Pretending to take something from somewhere +99328;Moving something away from something +52943;Twisting something +27764;Uncovering something +140220;Trying but failing to attach something to something because it doesn't stick +195512;Putting something onto something +67614;Pouring something into something +205910;Squeezing something +210416;Moving something closer to something +155498;Showing something on top of something +120866;Showing something behind something +26157;Dropping something onto something +15904;Moving something towards the camera +62932;Letting something roll up a slanted surface, so it rolls back down +78590;Pretending to put something on a surface +160513;Plugging something into something +12234;Picking something up +164466;Tipping something with something in it over, so something in it falls out +122374;Pushing something from left to right +194496;Pretending to open something without actually opening it +100463;Something colliding with something and both are being deflected +116970;Attaching something to something +71249;Spinning something so it continues spinning +49078;Pushing something from left to right +33872;Something falling like a feather or paper +94421;Wiping something off of something +30706;Pushing something from left to right +57558;Plugging something into something but pulling it right out as you remove your hand +19097;Turning the camera left while filming something +57568;Turning something upside down +35875;Throwing something in the air and catching it +100837;Unfolding something +182633;Poking a stack of something without the stack collapsing +115967;Moving part of something +95104;Twisting something +220170;Moving something and something closer to each other +130026;Plugging something into something +217808;Tilting something with something on it slightly so it doesn't fall down +17468;Putting number of something onto something +38858;Stacking number of something +18149;Pulling something from left to right +207711;Pouring something into something +30318;Something falling like a rock +147093;Attaching something to something +140408;Putting something on a surface +148940;Poking something so that it falls over +175693;Piling something up +128324;Twisting something +72881;Putting something into something +141727;Stuffing something into something +88676;Wiping something off of something +208777;Tearing something into two pieces +82609;Lifting something up completely, then letting it drop down +139769;Moving something and something closer to each other +158345;Rolling something on a flat surface +128456;Squeezing something +4023;Moving something and something closer to each other +67449;Holding something next to something +70697;Tipping something over +175433;Holding something +5483;Lifting a surface with something on it but not enough for it to slide down +207620;Moving something and something away from each other +1321;Pouring something onto something +176930;Showing something behind something +59151;Pushing something so that it slightly moves +32101;Holding something in front of something +48783;Removing something, revealing something behind +42117;Trying but failing to attach something to something because it doesn't stick +124826;Pouring something into something +214885;Tearing something just a little bit +24816;Pushing something from right to left +81288;Holding something +17711;Moving part of something +44678;Turning something upside down +141760;Pretending to pick something up +55319;Tearing something into two pieces +62058;Showing something behind something +105189;Pushing something from left to right +17580;Holding something in front of something +85850;Showing something to the camera +124825;Holding something over something +67773;Moving something up +146509;Pushing something so that it falls off the table +210677;Showing something behind something +182212;Pushing something off of something +120411;Plugging something into something but pulling it right out as you remove your hand +139401;Trying to bend something unbendable so nothing happens +145763;Moving something and something away from each other +197720;Lifting up one end of something, then letting it drop down +49054;Something falling like a rock +143938;Holding something next to something +100892;Poking something so that it falls over +164035;Turning something upside down +212900;Tearing something into two pieces +215895;Lifting something up completely without letting it drop down +47201;Uncovering something +209234;Approaching something with your camera +32139;Putting something on the edge of something so it is not supported and falls down +186872;Tearing something just a little bit +128740;Plugging something into something but pulling it right out as you remove your hand +109199;Uncovering something +40490;Picking something up +52623;Putting something that cannot actually stand upright upright on the table, so it falls on its side +152245;Tearing something just a little bit +211810;Trying but failing to attach something to something because it doesn't stick +160298;Taking something from somewhere +199707;Pretending to squeeze something +119062;Showing that something is empty +53594;Poking something so that it falls over +61895;Putting something on a surface +110277;Pulling something from left to right +117302;Poking a hole into something soft +11942;Something falling like a feather or paper +95316;Uncovering something +144370;Moving something closer to something +157565;Plugging something into something but pulling it right out as you remove your hand +206290;Pushing something so that it falls off the table +202756;Poking something so it slightly moves +178417;Spinning something so it continues spinning +182822;Opening something +114801;Folding something +56642;Rolling something on a flat surface +144056;Pushing something so that it almost falls off but doesn't +133985;Taking one of many similar things on the table +56576;Pushing something with something +214542;Moving something closer to something +71958;Spinning something that quickly stops spinning +13614;Pretending to squeeze something +115755;Tearing something into two pieces +158126;Dropping something next to something +200834;Showing something next to something +186193;Spinning something so it continues spinning +142310;Showing something behind something +104318;Putting number of something onto something +65654;Showing that something is inside something +131380;Unfolding something +149590;Laying something on the table on its side, not upright +179341;Scooping something up with something +26930;Putting something into something +6514;Pushing something so that it almost falls off but doesn't +148486;Poking something so it slightly moves +207411;Spinning something so it continues spinning +82051;Lifting something with something on it +61666;Sprinkling something onto something +53600;Plugging something into something +72581;Pushing something with something +25159;Showing that something is inside something +115818;Showing that something is inside something +183084;Turning something upside down +83354;Scooping something up with something +46502;Turning something upside down +180035;Pushing something so that it slightly moves +38635;Holding something next to something +144483;Moving something closer to something +168818;Piling something up +25571;Pushing something onto something +180335;Stacking number of something +7555;Pretending to put something on a surface +13146;Putting something into something +170253;Pretending to put something next to something +199265;Moving something down +206715;Spilling something onto something +130548;Showing that something is inside something +104326;Rolling something on a flat surface +5615;Pushing something so that it slightly moves +69452;Something being deflected from something +39115;Putting something onto something +125165;Putting something on a surface +189296;Moving something and something away from each other +155166;Pretending to take something from somewhere +12290;Holding something behind something +107916;Something colliding with something and both are being deflected +72933;Turning something upside down +115512;Taking something from somewhere +137903;Taking something out of something +41254;Something falling like a rock +155684;Showing that something is empty +148218;Moving something and something closer to each other +152352;Holding something behind something +13865;Opening something +142749;Pretending to turn something upside down +97133;Putting something on a surface +143151;Letting something roll down a slanted surface +172359;Taking one of many similar things on the table +166734;Plugging something into something +109144;Poking something so that it falls over +193679;Putting something on a flat surface without letting it roll +90177;Something colliding with something and both are being deflected +115603;Closing something +158743;Moving something away from something +21881;Squeezing something +173138;Unfolding something +105130;Poking something so lightly that it doesn't or almost doesn't move +144704;Dropping something into something +202971;Unfolding something +69509;Uncovering something +175352;Tearing something just a little bit +57286;Tipping something with something in it over, so something in it falls out +182481;Rolling something on a flat surface +95040;Wiping something off of something +14248;Lifting up one end of something without letting it drop down +121025;Pretending to put something on a surface +127482;Scooping something up with something +2909;Lifting something up completely without letting it drop down +94815;Showing something next to something +95610;Pushing something from right to left +17777;Twisting (wringing) something wet until water comes out +46393;Showing something to the camera +201268;Tilting something with something on it until it falls off +169824;Dropping something in front of something +117563;Moving something and something so they collide with each other +195069;Putting something onto something +170428;Something falling like a rock +122434;Removing something, revealing something behind +49132;Pretending to poke something +190147;Showing something on top of something +172487;Lifting up one end of something without letting it drop down +49064;Showing that something is empty +104222;Pretending to sprinkle air onto something +12815;Spinning something so it continues spinning +32207;Plugging something into something +20547;Showing that something is empty +205136;Attaching something to something +204165;Dropping something onto something +464;Lifting up one end of something, then letting it drop down +38670;Uncovering something +50365;Throwing something in the air and catching it +107023;Rolling something on a flat surface +151817;Opening something +102243;Poking something so it slightly moves +212692;Plugging something into something +50368;Pushing something with something +200570;Pushing something so that it almost falls off but doesn't +121431;Spinning something that quickly stops spinning +24695;Moving something towards the camera +117506;Wiping something off of something +138836;Pretending to open something without actually opening it +19562;Bending something so that it deforms +64542;Lifting something up completely, then letting it drop down +107886;Pretending to be tearing something that is not tearable +110672;Removing something, revealing something behind +146132;Putting something onto something else that cannot support it so it falls down +69375;Tearing something just a little bit +196513;Pulling something from left to right +29212;Pretending to close something without actually closing it +15756;Moving something up +115838;Pretending to pick something up +63574;Pouring something out of something +130785;Tearing something into two pieces +101048;Poking a stack of something so the stack collapses +198469;Showing a photo of something to the camera +140841;Putting something and something on the table +106793;Turning something upside down +156166;Tearing something just a little bit +207683;Showing that something is empty +169601;Touching (without moving) part of something +205757;Pretending to sprinkle air onto something +58461;Putting something that cannot actually stand upright upright on the table, so it falls on its side +81349;Showing something to the camera +89112;Throwing something onto a surface +169405;Tipping something over +164409;Turning something upside down +99787;Pretending or failing to wipe something off of something +7467;Something falling like a rock +181203;Moving something and something closer to each other +174941;Lifting up one end of something without letting it drop down +68766;Pulling two ends of something so that it separates into two pieces +7303;Throwing something against something +125407;Putting something that cannot actually stand upright upright on the table, so it falls on its side +152935;Holding something next to something +14971;Pulling two ends of something so that it separates into two pieces +140123;Trying to bend something unbendable so nothing happens +194622;Pretending to put something on a surface +17020;Pretending to be tearing something that is not tearable +66419;Pushing something so that it falls off the table +149964;Showing something on top of something +207910;Pretending to spread air onto something +190465;Holding something over something +138797;Plugging something into something +48083;Putting something and something on the table +122859;Pretending or failing to wipe something off of something +202191;Pouring something into something +115787;Dropping something into something +160609;Hitting something with something +203926;Squeezing something +21602;Spinning something that quickly stops spinning +124137;Laying something on the table on its side, not upright +182255;Something falling like a rock +167757;Opening something +89487;Taking something from somewhere +119437;Tearing something just a little bit +121255;Putting something on a surface +143171;Covering something with something +127818;Rolling something on a flat surface +126592;Putting something underneath something +214645;Putting something behind something +220269;Tearing something just a little bit +67998;Folding something +75458;Pretending to poke something +15493;Putting something on a surface +34293;Something falling like a rock +45448;Poking something so it slightly moves +83599;Pretending to put something underneath something +217876;Tearing something into two pieces +68550;Putting something on a surface +216582;Holding something over something +213210;Holding something in front of something +69975;Wiping something off of something +32665;Attaching something to something +165406;Moving something and something closer to each other +88855;Pushing something so that it falls off the table +165119;Showing something behind something +19231;Spilling something onto something +177914;Covering something with something +42042;Plugging something into something +133922;Moving something away from something +105801;Taking one of many similar things on the table +123800;Throwing something onto a surface +152082;Pulling something from left to right +85009;Piling something up +104260;Putting something similar to other things that are already on the table +66951;Pushing something off of something +118681;Spinning something that quickly stops spinning +158172;Putting something on a flat surface without letting it roll +85218;Dropping something in front of something +12069;Throwing something in the air and letting it fall +198870;Squeezing something +50483;Pretending to be tearing something that is not tearable +155681;Wiping something off of something +98921;Pouring something into something +29111;Pretending to squeeze something +5658;Rolling something on a flat surface +172205;Lifting up one end of something, then letting it drop down +71363;Something falling like a rock +1650;Letting something roll along a flat surface +56030;Plugging something into something +158322;Putting something on a surface +54432;Pretending to turn something upside down +6067;Showing that something is empty +98502;Putting something into something +153540;Showing that something is empty +169206;Something falling like a feather or paper +75492;Lifting a surface with something on it until it starts sliding down +171094;Plugging something into something +40300;Spilling something next to something +122766;Moving something and something closer to each other +128673;Pushing something off of something +93393;Tearing something just a little bit +93719;Putting something similar to other things that are already on the table +183193;Something falling like a rock +137103;Pretending to close something without actually closing it +152020;Taking one of many similar things on the table +28218;Showing something on top of something +72111;Turning something upside down +159193;Poking something so it slightly moves +27866;Stacking number of something +208920;Taking one of many similar things on the table +208549;Putting something onto something +176752;Putting something behind something +26168;Picking something up +115107;Pouring something onto something +189239;Tearing something into two pieces +180239;Pretending to squeeze something +98300;Something falling like a rock +147692;Tearing something into two pieces +58782;Tearing something into two pieces +47698;Poking something so that it falls over +1367;Putting something on the edge of something so it is not supported and falls down +115466;Dropping something into something +149136;Bending something so that it deforms +150624;Showing that something is empty +213000;Lifting up one end of something, then letting it drop down +210904;Showing something on top of something +61468;Putting something, something and something on the table +111956;Putting something next to something +141658;Pretending or trying and failing to twist something +205140;Spinning something so it continues spinning +75043;Moving something towards the camera +107520;Spinning something that quickly stops spinning +82420;Something falling like a rock +204310;Piling something up +194159;Poking something so it slightly moves +105652;Plugging something into something +146630;Moving something closer to something +17613;Picking something up +117383;Dropping something onto something +204490;Something being deflected from something +32268;Attaching something to something +169252;Showing something to the camera +196704;Pretending to put something into something +155630;Showing something to the camera +8853;Lifting up one end of something, then letting it drop down +91056;Tilting something with something on it slightly so it doesn't fall down +71136;Holding something next to something +76173;Attaching something to something +16223;Putting number of something onto something +102832;Stacking number of something +205783;Letting something roll down a slanted surface +123465;Tearing something into two pieces +47481;Pretending to put something on a surface +156284;Holding something in front of something +196339;Throwing something +81995;Stacking number of something +98414;Putting something similar to other things that are already on the table +99684;Rolling something on a flat surface +133071;Showing something behind something +195239;Plugging something into something but pulling it right out as you remove your hand +176927;Taking one of many similar things on the table +38844;Lifting something up completely, then letting it drop down +43997;Uncovering something +201213;Moving something down +29574;Pretending to put something underneath something +146013;Showing something behind something +33403;Closing something +42946;Pretending to take something out of something +137628;Turning something upside down +102482;Turning something upside down +191315;Taking something from somewhere +186375;Holding something behind something +121364;Something colliding with something and both come to a halt +192191;Stuffing something into something +139477;Spinning something so it continues spinning +162740;Scooping something up with something +115785;Turning something upside down +17403;Putting something into something +81668;Tearing something just a little bit +15543;Moving something and something closer to each other +98475;Tilting something with something on it slightly so it doesn't fall down +9430;Wiping something off of something +192293;Lifting something with something on it +169374;Letting something roll down a slanted surface +27159;Moving something up +120304;Stacking number of something +173187;Removing something, revealing something behind +13501;Putting something on a surface +83088;Pulling something from behind of something +154036;Holding something over something +74295;Holding something over something +98138;Moving something closer to something +16086;Uncovering something +171620;Pulling two ends of something but nothing happens +167929;Showing something next to something +196217;Throwing something in the air and catching it +135920;Spreading something onto something +139849;Tipping something over +18828;Taking something from somewhere +23976;Turning the camera left while filming something +168909;Covering something with something +55692;Moving something down +79678;Putting something similar to other things that are already on the table +39188;Holding something +69113;Plugging something into something but pulling it right out as you remove your hand +212639;Wiping something off of something +95882;Tipping something with something in it over, so something in it falls out +105172;Lifting something with something on it +10796;Pushing something so that it almost falls off but doesn't +119490;Folding something +150231;Uncovering something +70651;Pulling two ends of something but nothing happens +35141;Putting something onto something +180346;Laying something on the table on its side, not upright +131584;Pretending to be tearing something that is not tearable +183441;Spilling something next to something +62356;Turning the camera right while filming something +174341;Something falling like a feather or paper +108405;Pouring something into something +126283;Tilting something with something on it until it falls off +21082;Scooping something up with something +54948;Pouring something out of something +125783;Showing something behind something +23474;Moving something and something away from each other +205429;Plugging something into something but pulling it right out as you remove your hand +81475;Tearing something just a little bit +108623;Tearing something just a little bit +220383;Poking something so lightly that it doesn't or almost doesn't move +26885;Holding something next to something +51149;Pulling two ends of something so that it gets stretched +197550;Moving something away from something +36120;Squeezing something +161491;Dropping something onto something +2810;Plugging something into something +215722;Lifting up one end of something without letting it drop down +13103;Laying something on the table on its side, not upright +195944;Putting something into something +58807;Tipping something over +92226;Taking one of many similar things on the table +56695;Pushing something so it spins +209303;Moving something closer to something +104233;Moving something up +3410;Turning something upside down +61157;Pushing something so that it falls off the table +117498;Plugging something into something +63074;Showing something to the camera +59402;Pouring something into something +166699;Tipping something over +102367;Moving something closer to something +98434;Showing something on top of something +209333;Moving something away from something +75975;Putting something and something on the table +185086;Putting something similar to other things that are already on the table +9258;Tilting something with something on it until it falls off +31738;Putting something and something on the table +83670;Taking something out of something +193196;Plugging something into something but pulling it right out as you remove your hand +212907;Laying something on the table on its side, not upright +213238;Taking something from somewhere +98772;Spinning something so it continues spinning +152848;Moving something closer to something +186954;Touching (without moving) part of something +40268;Holding something next to something +48359;Putting something similar to other things that are already on the table +18974;Putting something on a surface +74710;Holding something in front of something +3066;Pretending to put something next to something +211388;Covering something with something +27844;Showing something behind something +108213;Pushing something so that it falls off the table +926;Dropping something onto something +214925;Lifting something up completely without letting it drop down +105328;Wiping something off of something +106690;Moving something away from something +6906;Showing something next to something +130001;Letting something roll down a slanted surface +159985;Stacking number of something +6558;Pulling something from right to left +100219;Turning something upside down +108844;Pulling something out of something +134112;Turning something upside down +35554;Something falling like a feather or paper +164503;Showing that something is empty +98556;Pouring something into something +40416;Poking a hole into something soft +188623;Pushing something so that it slightly moves +54386;Dropping something behind something +182469;Moving something closer to something +126153;Pushing something so that it slightly moves +71276;Moving something closer to something +57795;Pulling two ends of something so that it gets stretched +91237;Scooping something up with something +91716;Something falling like a feather or paper +147934;Squeezing something +113504;Attaching something to something +16409;Holding something over something +77642;Showing that something is inside something +203110;Pushing something from right to left +100530;Putting something next to something +8875;Holding something behind something +65807;Stuffing something into something +82126;Poking something so lightly that it doesn't or almost doesn't move +68303;Spinning something that quickly stops spinning +101928;Pretending to squeeze something +32606;Pretending to be tearing something that is not tearable +145773;Poking something so lightly that it doesn't or almost doesn't move +9745;Showing something next to something +59642;Moving something across a surface until it falls down +115077;Unfolding something +183631;Something being deflected from something +169767;Poking a stack of something without the stack collapsing +135233;Poking something so it slightly moves +123094;Showing something on top of something +99900;Moving something and something so they pass each other +87110;Pushing something from left to right +144608;Rolling something on a flat surface +21768;Plugging something into something +52033;Moving something up +12257;Moving something and something closer to each other +127814;Bending something so that it deforms +24093;Trying to bend something unbendable so nothing happens +118050;Pulling something from right to left +33213;Lifting something up completely, then letting it drop down +116816;Sprinkling something onto something +23555;Stacking number of something +146882;Holding something +117513;Pretending to poke something +190635;Moving something closer to something +174940;Rolling something on a flat surface +109427;Moving something closer to something +180637;Holding something over something +4831;Stuffing something into something +56746;Moving something away from something +179049;Moving something and something away from each other +158387;Moving something up +93412;Pushing something so that it slightly moves +15536;Moving something up +190819;Showing that something is inside something +174749;Something falling like a rock +156096;Lifting something up completely, then letting it drop down +68320;Putting something into something +99137;Moving something across a surface until it falls down +161154;Showing that something is empty +152547;Squeezing something +154119;Pushing something from left to right +185300;Putting something and something on the table +219896;Something falling like a feather or paper +30612;Moving something and something so they collide with each other +178607;Pulling something from left to right +9464;Showing something on top of something +23472;Scooping something up with something +212935;Moving something and something away from each other +117735;Pushing something with something +180207;Pulling something out of something +23498;Moving something away from the camera +205175;Bending something until it breaks +17807;Spinning something so it continues spinning +95832;Covering something with something +13903;Spinning something so it continues spinning +105670;Opening something +2999;Plugging something into something +208088;Dropping something onto something +84870;Pretending to put something underneath something +83785;Taking one of many similar things on the table +34406;Putting something that cannot actually stand upright upright on the table, so it falls on its side +94787;Wiping something off of something +142899;Folding something +75392;Dropping something onto something +35174;Twisting (wringing) something wet until water comes out +202312;Lifting up one end of something, then letting it drop down +165062;Pushing something onto something +162689;Tearing something into two pieces +67105;Picking something up +165717;Putting something on a surface +20031;Attaching something to something +188844;Pushing something from left to right +183030;Something colliding with something and both are being deflected +170234;Pulling two ends of something so that it gets stretched +7450;Trying but failing to attach something to something because it doesn't stick +109017;Showing something next to something +217010;Pretending to pick something up +111834;Something falling like a feather or paper +68347;Moving something away from something +198281;Pretending to take something out of something +167278;Spinning something that quickly stops spinning +61524;Pushing something with something +67283;Spinning something that quickly stops spinning +123373;Touching (without moving) part of something +4145;Piling something up +83675;Touching (without moving) part of something +31898;Showing that something is empty +101115;Spinning something that quickly stops spinning +205161;Putting something similar to other things that are already on the table +104858;Pushing something from right to left +77673;Trying to bend something unbendable so nothing happens +90282;Something falling like a rock +153737;Pulling something from right to left +150685;Twisting (wringing) something wet until water comes out +181612;Laying something on the table on its side, not upright +206482;Showing something behind something +140991;Something falling like a rock +17682;Pretending to poke something +145079;Putting something next to something +5276;Letting something roll down a slanted surface +92971;Attaching something to something +108479;Showing that something is empty +129425;Turning the camera upwards while filming something +179496;Moving something and something away from each other +117529;Taking something out of something +16468;Plugging something into something but pulling it right out as you remove your hand +205631;Holding something next to something +21034;Tipping something over +138767;Something falling like a feather or paper +134724;Taking something from somewhere +32228;Putting something similar to other things that are already on the table +152126;Uncovering something +107991;Pulling something from left to right +95319;Something falling like a rock +151159;Poking something so lightly that it doesn't or almost doesn't move +197420;Pretending to be tearing something that is not tearable +189377;Poking something so lightly that it doesn't or almost doesn't move +13846;Pouring something into something +108729;Removing something, revealing something behind +80658;Moving something and something closer to each other +45029;Pouring something out of something +89885;Pretending to pour something out of something, but something is empty +39308;Plugging something into something +56184;Putting something similar to other things that are already on the table +119348;Tearing something into two pieces +23980;Pretending to spread air onto something +39001;Moving something and something away from each other +68647;Plugging something into something but pulling it right out as you remove your hand +8697;Pushing something with something +102004;Holding something over something +190703;Turning the camera upwards while filming something +202093;Pretending to be tearing something that is not tearable +99262;Putting something that cannot actually stand upright upright on the table, so it falls on its side +164106;Pushing something so it spins +35505;Showing something next to something +79259;Trying to bend something unbendable so nothing happens +123223;Pouring something into something +45936;Moving something away from the camera +4350;Pretending to throw something +100315;Picking something up +20883;Covering something with something +84846;Stuffing something into something +167291;Putting something and something on the table +24365;Pretending to squeeze something +206415;Moving something and something closer to each other +154817;Something falling like a rock +52289;Twisting something +61410;Tipping something over +57064;Folding something +3559;Lifting something with something on it +210547;Turning something upside down +76879;Squeezing something +108428;Uncovering something +37818;Letting something roll up a slanted surface, so it rolls back down +119423;Holding something next to something +54190;Plugging something into something but pulling it right out as you remove your hand +100352;Pretending to sprinkle air onto something +31227;Moving something across a surface without it falling down +9146;Moving something up +192804;Throwing something +99975;Pretending to be tearing something that is not tearable +2763;Dropping something next to something +203458;Putting something next to something +182674;Pushing something so that it slightly moves +75377;Pulling two ends of something so that it separates into two pieces +50074;Tearing something just a little bit +122495;Moving something across a surface until it falls down +11065;Moving something closer to something +199441;Pushing something from left to right +25056;Putting something into something +218786;Putting something behind something +58670;Opening something +188822;Covering something with something +134579;Approaching something with your camera +197326;Folding something +140500;Pretending to be tearing something that is not tearable +166279;Putting something onto something +55547;Moving something up +26363;Unfolding something +153838;Poking a stack of something so the stack collapses +219142;Turning something upside down +200693;Moving something down +108689;Picking something up +45182;Pretending to be tearing something that is not tearable +174916;Taking something out of something +151698;Squeezing something +82214;Moving something and something away from each other +88104;Putting something next to something +101981;Throwing something against something +173336;Scooping something up with something +152965;Taking one of many similar things on the table +66670;Plugging something into something +115588;Showing something next to something +188414;Moving something away from something +44892;Something falling like a feather or paper +107057;Plugging something into something +142037;Taking one of many similar things on the table +163240;Laying something on the table on its side, not upright +199766;Putting something that cannot actually stand upright upright on the table, so it falls on its side +126976;Moving something down +8701;Pretending to take something out of something +188128;Pulling something from left to right +67256;Putting something next to something +15517;Dropping something onto something +63541;Tearing something just a little bit +92389;Moving something and something closer to each other +213600;Something falling like a rock +12334;Holding something next to something +41165;Putting number of something onto something +32808;Pushing something so that it falls off the table +136496;Turning something upside down +50563;Holding something next to something +210831;Spinning something so it continues spinning +209707;Taking something out of something +110882;Lifting something up completely without letting it drop down +189510;Tearing something into two pieces +205891;Holding something behind something +164699;Pouring something onto something +172632;Showing a photo of something to the camera +1646;Letting something roll along a flat surface +178365;Moving something up +54010;Holding something next to something +53871;Squeezing something +209745;Tipping something over +159396;Pretending to poke something +193746;Removing something, revealing something behind +201277;Putting something behind something +31770;Dropping something behind something +48596;Attaching something to something +21414;Spinning something that quickly stops spinning +197231;Something falling like a feather or paper +83271;Pushing something off of something +213911;Twisting (wringing) something wet until water comes out +209060;Something falling like a feather or paper +92015;Throwing something +187328;Letting something roll down a slanted surface +12908;Putting something into something +52152;Letting something roll along a flat surface +203422;Scooping something up with something +169813;Something falling like a feather or paper +64936;Turning something upside down +175042;Moving something away from something +132783;Moving something and something away from each other +20015;Pretending to close something without actually closing it +60795;Touching (without moving) part of something +134315;Closing something +17919;Lifting up one end of something without letting it drop down +35647;Taking something out of something +50993;Pouring something onto something +34004;Plugging something into something but pulling it right out as you remove your hand +105137;Lifting something up completely, then letting it drop down +50960;Turning something upside down +102059;Pushing something with something +173050;Something being deflected from something +34422;Pouring something into something until it overflows +214760;Taking something from somewhere +198431;Letting something roll along a flat surface +13294;Dropping something onto something +94469;Laying something on the table on its side, not upright +151394;Tearing something into two pieces +135987;Taking something from somewhere +64049;Showing that something is empty +103999;Putting something into something +81364;Pretending to pick something up +65034;Putting something, something and something on the table +215023;Pouring something into something until it overflows +22876;Spinning something that quickly stops spinning +143264;Pushing something from left to right +58793;Taking something from somewhere +149726;Pushing something with something +45555;Turning something upside down +77052;Turning the camera downwards while filming something +119583;Stacking number of something +145404;Unfolding something +15999;Pulling something from left to right +184462;Pushing something from right to left +51822;Pushing something from left to right +157345;Scooping something up with something +74161;Putting something next to something +116204;Pretending to turn something upside down +170856;Showing something behind something +158440;Stacking number of something +178331;Tearing something into two pieces +16147;Moving part of something +85213;Pushing something so that it slightly moves +79236;Something falling like a feather or paper +85714;Moving something closer to something +115482;Pouring something into something until it overflows +62790;Putting something and something on the table +56162;Wiping something off of something +133580;Putting something, something and something on the table +168895;Folding something +165968;Pulling something out of something +161279;Pushing something from right to left +132715;Twisting (wringing) something wet until water comes out +126670;Pretending to open something without actually opening it +47543;Moving something up +182177;Dropping something behind something +83225;Dropping something in front of something +210090;Putting something on a surface +16879;Moving something and something closer to each other +84285;Pretending to turn something upside down +103366;Showing that something is empty +62623;Moving something across a surface without it falling down +170594;Pushing something from right to left +38435;Attaching something to something +34160;Putting something into something +75765;Putting something into something +62176;Pushing something so that it falls off the table +56260;Poking something so lightly that it doesn't or almost doesn't move +154568;Piling something up +62772;Something falling like a rock +183916;Touching (without moving) part of something +29914;Rolling something on a flat surface +22135;Throwing something in the air and catching it +137801;Pushing something from left to right +146293;Turning something upside down +137688;Showing something next to something +110762;Pretending to open something without actually opening it +75947;Spilling something behind something +25139;Putting something on a surface +48834;Moving something closer to something +106806;Scooping something up with something +197015;Pushing something from right to left +27671;Moving something away from something +116131;Pretending to take something from somewhere +152349;Moving something and something closer to each other +220822;Pulling something out of something +90732;Closing something +95806;Uncovering something +31407;Tilting something with something on it until it falls off +121244;Showing that something is empty +212983;Putting number of something onto something +97404;Pretending to pour something out of something, but something is empty +122365;Pretending to be tearing something that is not tearable +212906;Putting something, something and something on the table +114623;Picking something up +106893;Pretending to pour something out of something, but something is empty +107002;Moving something and something away from each other +187020;Trying but failing to attach something to something because it doesn't stick +81457;Pulling something from behind of something +137466;Holding something +191103;Moving something down +96104;Pushing something so that it falls off the table +58195;Pretending to close something without actually closing it +47774;Spinning something that quickly stops spinning +128501;Poking something so lightly that it doesn't or almost doesn't move +199374;Piling something up +212334;Pushing something so it spins +137728;Lifting a surface with something on it but not enough for it to slide down +142898;Putting something on a surface +194770;Opening something +91621;Moving something and something away from each other +173364;Holding something behind something +23120;Pulling two ends of something so that it gets stretched +203998;Picking something up +183509;Uncovering something +147328;Tearing something into two pieces +216827;Twisting something +120178;Pushing something so that it falls off the table +136792;Moving something up +206410;Moving something and something closer to each other +144333;Stacking number of something +178504;Taking something out of something +172953;Twisting (wringing) something wet until water comes out +144670;Plugging something into something +47016;Holding something next to something +193881;Taking something out of something +84419;Pretending to spread air onto something +168816;Attaching something to something +37926;Showing that something is inside something +50801;Uncovering something +159979;Lifting up one end of something, then letting it drop down +206617;Bending something so that it deforms +141320;Stuffing something into something +53406;Spilling something onto something +177723;Moving something and something away from each other +55049;Pretending to open something without actually opening it +158428;Pushing something so that it almost falls off but doesn't +144539;Dropping something onto something +63375;Something falling like a feather or paper +35705;Pretending to throw something +59531;Putting something on a surface +192890;Putting something into something +142923;Showing that something is inside something +164922;Pretending to pick something up +148824;Stacking number of something +90876;Putting something similar to other things that are already on the table +34321;Moving something away from something +159210;Pretending to open something without actually opening it +58219;Opening something +148991;Plugging something into something +141836;Turning the camera downwards while filming something +61161;Stacking number of something +170005;Something colliding with something and both are being deflected +16388;Showing something behind something +53319;Plugging something into something +141528;Scooping something up with something +150107;Laying something on the table on its side, not upright +74962;Plugging something into something +135378;Unfolding something +21352;Covering something with something +110926;Pretending to open something without actually opening it +126953;Dropping something onto something +128803;Pretending to open something without actually opening it +5470;Squeezing something +19093;Putting something, something and something on the table +112888;Hitting something with something +48564;Pretending to be tearing something that is not tearable +60783;Holding something +141415;Squeezing something +190353;Pouring something into something until it overflows +114829;Pushing something so that it slightly moves +220181;Letting something roll along a flat surface +147290;Hitting something with something +129073;Piling something up +18403;Twisting something +216366;Plugging something into something +105904;Turning something upside down +205137;Plugging something into something +202367;Letting something roll along a flat surface +62455;Pushing something so that it almost falls off but doesn't +199685;Putting something similar to other things that are already on the table +24156;Holding something over something +193747;Pretending to sprinkle air onto something +207461;Moving something and something so they pass each other +202207;Dropping something in front of something +26988;Plugging something into something +151229;Sprinkling something onto something +12538;Something colliding with something and both are being deflected +196958;Pushing something so that it almost falls off but doesn't +17285;Attaching something to something +94623;Pushing something so that it almost falls off but doesn't +64812;Pulling two ends of something so that it separates into two pieces +82731;Opening something +115372;Pushing something so that it almost falls off but doesn't +30567;Pushing something so it spins +191413;Rolling something on a flat surface +56460;Pouring something into something +49439;Spinning something that quickly stops spinning +22249;Turning the camera right while filming something +68228;Taking one of many similar things on the table +107285;Putting something similar to other things that are already on the table +186889;Bending something until it breaks +119261;Pretending or failing to wipe something off of something +156452;Hitting something with something +17065;Showing something next to something +57339;Bending something until it breaks +81691;Showing something on top of something +190182;Burying something in something +156640;Taking one of many similar things on the table +179111;Pushing something so that it slightly moves +65806;Lifting up one end of something, then letting it drop down +32093;Something falling like a feather or paper +207569;Pretending to be tearing something that is not tearable +205166;Bending something until it breaks +114148;Poking a stack of something so the stack collapses +200702;Pretending to put something on a surface +10558;Pretending to close something without actually closing it +58376;Dropping something onto something +105995;Showing something behind something +42460;Putting something into something +197218;Covering something with something +188087;Putting something on the edge of something so it is not supported and falls down +187417;Laying something on the table on its side, not upright +96679;Putting something, something and something on the table +102350;Pouring something into something +51332;Lifting up one end of something without letting it drop down +207788;Moving something up +3894;Pushing something from right to left +62849;Holding something behind something +187976;Spinning something that quickly stops spinning +179045;Putting something on a surface +90654;Lifting something with something on it +211892;Something falling like a feather or paper +29525;Squeezing something +180360;Throwing something against something +6634;Pulling two ends of something so that it gets stretched +148934;Putting something into something +32746;Bending something until it breaks +18410;Pretending to open something without actually opening it +112652;Folding something +137226;Picking something up +21109;Putting something onto something +154206;Holding something in front of something +155815;Dropping something onto something +37877;Covering something with something +84146;Squeezing something +194045;Bending something so that it deforms +52678;Trying to bend something unbendable so nothing happens +10426;Moving something and something so they pass each other +12641;Opening something +146527;Pretending to put something next to something +151748;Moving something closer to something +96280;Spinning something that quickly stops spinning +23020;Putting something on a surface +9014;Taking one of many similar things on the table +59741;Bending something so that it deforms +68663;Taking something from somewhere +74348;Pretending to sprinkle air onto something +84850;Pretending to throw something +189870;Lifting up one end of something, then letting it drop down +5150;Throwing something against something +30804;Putting something on a surface +84264;Showing that something is empty +74007;Pushing something so it spins +27765;Pushing something off of something +141942;Picking something up +35447;Putting something in front of something +57222;Pushing something with something +56600;Moving something closer to something +69588;Hitting something with something +191356;Spinning something that quickly stops spinning +195687;Covering something with something +137632;Holding something in front of something +103394;Pulling something from behind of something +130938;Pulling something from right to left +206543;Throwing something +218342;Something falling like a feather or paper +103243;Showing something behind something +67136;Pushing something so that it almost falls off but doesn't +50130;Folding something +79450;Unfolding something +219257;Pretending to put something on a surface +114411;Spinning something that quickly stops spinning +103381;Moving something away from something +112219;Pulling something from right to left +33881;Bending something so that it deforms +198803;Putting something underneath something +145997;Unfolding something +1924;Approaching something with your camera +32462;Uncovering something +9607;Picking something up +16273;Putting something on a surface +28350;Moving part of something +100090;Lifting up one end of something, then letting it drop down +161809;Something colliding with something and both are being deflected +153750;Showing something next to something +1678;Putting something on a surface +152415;Plugging something into something +39415;Piling something up +182670;Showing that something is inside something +183653;Removing something, revealing something behind +171593;Pretending to put something next to something +152777;Laying something on the table on its side, not upright +16592;Putting something next to something +47873;Holding something over something +78313;Tipping something over +208580;Putting something, something and something on the table +75730;Holding something over something +134788;Throwing something +109285;Pushing something onto something +205157;Uncovering something +120325;Putting something next to something +141591;Tearing something into two pieces +85863;Dropping something in front of something +81901;Moving something and something closer to each other +170263;Pulling two ends of something so that it gets stretched +128596;Dropping something next to something +163448;Lifting something up completely without letting it drop down +50556;Tearing something just a little bit +195676;Pretending to sprinkle air onto something +55192;Moving something across a surface without it falling down +105524;Trying to bend something unbendable so nothing happens +7643;Tilting something with something on it until it falls off +210942;Plugging something into something +163992;Squeezing something +26153;Taking something out of something +81027;Moving part of something +29271;Moving something away from something +198958;Dropping something into something +40063;Something falling like a feather or paper +82082;Putting something upright on the table +102507;Letting something roll down a slanted surface +64906;Sprinkling something onto something +56844;Pretending to take something from somewhere +186461;Throwing something in the air and catching it +120612;Dropping something onto something +112034;Putting something on a surface +102546;Pushing something so that it slightly moves +196014;Holding something +165773;Pulling something from right to left +119618;Hitting something with something +215893;Putting something upright on the table +135592;Folding something +151895;Twisting something +17318;Folding something +38101;Stuffing something into something +200692;Moving something and something away from each other +12180;Stuffing something into something +180961;Unfolding something +210459;Holding something behind something +122381;Pretending to be tearing something that is not tearable +66006;Holding something next to something +85516;Turning the camera upwards while filming something +4435;Pretending or failing to wipe something off of something +38903;Plugging something into something but pulling it right out as you remove your hand +193660;Laying something on the table on its side, not upright +45245;Turning something upside down +199752;Moving part of something +198789;Moving something and something away from each other +32995;Dropping something in front of something +45612;Putting something similar to other things that are already on the table +20779;Pulling something from right to left +188072;Holding something in front of something +80261;Moving part of something +44293;Pushing something from left to right +14010;Pushing something from left to right +107227;Taking something out of something +151973;Pushing something from right to left +129295;Rolling something on a flat surface +154708;Something colliding with something and both are being deflected +194251;Tearing something into two pieces +123153;Pushing something off of something +205778;Dropping something onto something +128721;Rolling something on a flat surface +4688;Taking something out of something +22196;Rolling something on a flat surface +165722;Holding something +147474;Tilting something with something on it until it falls off +2439;Uncovering something +194097;Putting something on a surface +190478;Lifting up one end of something, then letting it drop down +136807;Pretending or trying and failing to twist something +46178;Moving something and something away from each other +51423;Laying something on the table on its side, not upright +150641;Poking something so it slightly moves +21402;Putting something on a surface +159119;Pretending to take something out of something +168249;Holding something over something +21430;Folding something +207086;Pushing something from left to right +5745;Squeezing something +19533;Pouring something out of something +105160;Moving something and something away from each other +142777;Putting something and something on the table +197444;Dropping something in front of something +185248;Moving something across a surface until it falls down +58869;Pretending to be tearing something that is not tearable +115242;Holding something next to something +45216;Spinning something that quickly stops spinning +67233;Something falling like a feather or paper +74037;Tilting something with something on it slightly so it doesn't fall down +147816;Moving something and something away from each other +3090;Lifting something up completely, then letting it drop down +27075;Putting something into something +1435;Holding something behind something +65179;Rolling something on a flat surface +197152;Pushing something so that it falls off the table +159903;Pulling something onto something +152784;Pretending to put something on a surface +56168;Moving something across a surface until it falls down +71673;Hitting something with something +212623;Pushing something so that it falls off the table +90934;Turning something upside down +14944;Trying to pour something into something, but missing so it spills next to it +114353;Putting something behind something +176185;Tearing something into two pieces +19422;Pulling something from left to right +4663;Pretending to put something on a surface +144170;Putting something next to something +2301;Showing something next to something +41164;Uncovering something +30870;Folding something +39226;Turning something upside down +113546;Pretending to pick something up +134820;Pretending to put something onto something +184843;Showing something on top of something +77971;Pretending to poke something +3963;Twisting something +117502;Moving part of something +117834;Pulling something from left to right +103227;Turning the camera downwards while filming something +125917;Moving something away from something +46833;Wiping something off of something +22866;Putting something next to something +34704;Plugging something into something +191633;Pulling something from right to left +172927;Pushing something so that it falls off the table +192646;Taking something out of something +73004;Folding something +76924;Holding something over something +44105;Rolling something on a flat surface +40697;Letting something roll along a flat surface +123561;Pulling something from right to left +169319;Pushing something from right to left +174966;Holding something behind something +87625;Scooping something up with something +6157;Touching (without moving) part of something +198052;Something falling like a feather or paper +99607;Pouring something into something +43729;Tearing something just a little bit +211075;Wiping something off of something +47986;Something falling like a feather or paper +107431;Throwing something against something +201464;Moving something towards the camera +194293;Tearing something into two pieces +128973;Putting something behind something +62724;Moving something across a surface until it falls down +3305;Scooping something up with something +145034;Putting something next to something +59215;Holding something next to something +152646;Pretending to turn something upside down +138744;Lifting up one end of something without letting it drop down +202880;Pushing something so it spins +209448;Bending something until it breaks +93240;Unfolding something +124316;Plugging something into something +193530;Putting something, something and something on the table +1189;Pushing something with something +199862;Showing that something is empty +195150;Bending something until it breaks +136889;Turning something upside down +175460;Tearing something into two pieces +133987;Folding something +67816;Showing something on top of something +57362;Putting something on a surface +185071;Throwing something in the air and catching it +33152;Moving something and something away from each other +199914;Moving something away from something +155184;Laying something on the table on its side, not upright +81936;Unfolding something +88077;Failing to put something into something because something does not fit +57276;Attaching something to something +68018;Turning something upside down +124573;Moving something and something away from each other +929;Laying something on the table on its side, not upright +163491;Poking something so lightly that it doesn't or almost doesn't move +206817;Showing something next to something +191478;Picking something up +63329;Unfolding something +182992;Pretending to pick something up +45080;Letting something roll down a slanted surface +17355;Picking something up +130000;Plugging something into something +80830;Moving something up +131285;Pretending to poke something +38340;Poking something so that it falls over +129025;Tearing something into two pieces +202354;Pretending to be tearing something that is not tearable +53022;Lifting up one end of something, then letting it drop down +154468;Putting something similar to other things that are already on the table +22588;Putting something upright on the table +179361;Putting something on a surface +166429;Taking something out of something +64171;Pushing something so that it slightly moves +178460;Moving something closer to something +212860;Pretending to poke something +33125;Stacking number of something +104615;Something colliding with something and both are being deflected +18289;Pretending to be tearing something that is not tearable +186325;Pretending to open something without actually opening it +99678;Pretending to be tearing something that is not tearable +178485;Stuffing something into something +163455;Taking something out of something +153756;Showing something behind something +76248;Throwing something +25417;Moving something away from something +112609;Holding something in front of something +16247;Putting something into something +51041;Lifting something with something on it +31060;Pushing something so that it almost falls off but doesn't +46093;Pulling something from left to right +131036;Putting something upright on the table +128885;Throwing something onto a surface +47820;Poking something so that it falls over +9439;Digging something out of something +206021;Pushing something with something +113963;Showing something behind something +175996;Showing that something is empty +68141;Pretending to pick something up +153141;Moving part of something +114656;Pulling something from behind of something +13687;Showing that something is empty +156892;Pulling something from behind of something +20313;Holding something in front of something +112801;Squeezing something +102833;Unfolding something +204658;Spinning something so it continues spinning +58477;Showing something next to something +46959;Moving something up +193588;Pushing something from right to left +129941;Putting something similar to other things that are already on the table +165493;Putting something behind something +148846;Pulling something from right to left +77234;Throwing something onto a surface +108920;Something falling like a rock +79657;Picking something up +177520;Pretending to pick something up +19225;Moving something and something away from each other +164816;Showing something on top of something +142031;Hitting something with something +112077;Pushing something so that it falls off the table +245;Tearing something just a little bit +128623;Showing that something is empty +127784;Pushing something so that it slightly moves +77171;Something falling like a rock +12126;Plugging something into something +162561;Tearing something into two pieces +70152;Turning something upside down +201660;Showing something next to something +156936;Showing that something is empty +178997;Putting something next to something +160585;Pretending to open something without actually opening it +121250;Hitting something with something +125122;Tearing something just a little bit +124505;Pulling two ends of something but nothing happens +46267;Lifting up one end of something, then letting it drop down +205620;Twisting something +156665;Holding something next to something +100220;Pushing something so it spins +171188;Spinning something so it continues spinning +155572;Lifting something up completely without letting it drop down +65242;Pretending to pick something up +76389;Wiping something off of something +117981;Attaching something to something +55702;Scooping something up with something +61340;Covering something with something +79419;Rolling something on a flat surface +110991;Lifting up one end of something without letting it drop down +122368;Putting something, something and something on the table +268;Pushing something so that it slightly moves +95733;Pretending to scoop something up with something +24613;Holding something in front of something +165595;Dropping something onto something +13422;Folding something +110648;Putting something upright on the table +121265;Putting something and something on the table +131443;Pushing something so it spins +169406;Dropping something onto something +198392;Dropping something next to something +67661;Something falling like a rock +173459;Plugging something into something +46396;Plugging something into something +60441;Taking one of many similar things on the table +19829;Throwing something +63484;Lifting something up completely without letting it drop down +165660;Pulling something out of something +152184;Rolling something on a flat surface +126671;Moving something and something away from each other +175247;Sprinkling something onto something +69522;Piling something up +143574;Pretending to be tearing something that is not tearable +26674;Something being deflected from something +165538;Lifting something with something on it +158969;Taking one of many similar things on the table +197605;Showing something behind something +155428;Pretending to pick something up +46556;Pretending to open something without actually opening it +193930;Holding something behind something +12133;Pretending or failing to wipe something off of something +173608;Holding something +165425;Pushing something from right to left +18609;Pushing something onto something +54485;Plugging something into something but pulling it right out as you remove your hand +12485;Spinning something so it continues spinning +131286;Putting something onto something +168000;Showing something behind something +153526;Showing something behind something +137211;Pushing something so that it falls off the table +20227;Putting something behind something +166955;Spinning something that quickly stops spinning +43658;Putting something that cannot actually stand upright upright on the table, so it falls on its side +194365;Unfolding something +104247;Putting something on a surface +125421;Putting something, something and something on the table +213729;Plugging something into something +70735;Putting something on a surface +114278;Spinning something so it continues spinning +107379;Pulling something from right to left +107200;Unfolding something +68095;Spilling something onto something +52341;Holding something in front of something +20766;Pretending to squeeze something +58993;Holding something next to something +204146;Letting something roll down a slanted surface +159133;Putting something on a surface +109849;Moving something closer to something +196456;Moving something towards the camera +114250;Holding something in front of something +216284;Pushing something so that it slightly moves +107925;Moving something away from the camera +87296;Moving part of something +77430;Dropping something into something +81976;Dropping something onto something +175975;Moving something and something away from each other +50797;Showing that something is empty +96275;Letting something roll along a flat surface +35918;Turning something upside down +200676;Burying something in something +111246;Putting something underneath something +179753;Throwing something onto a surface +51061;Piling something up +210539;Dropping something in front of something +208122;Spilling something behind something +132607;Taking something out of something +152193;Lifting something up completely, then letting it drop down +83528;Something falling like a rock +59783;Pushing something so that it slightly moves +8102;Stuffing something into something +70058;Pretending to open something without actually opening it +32799;Bending something so that it deforms +20503;Poking a stack of something without the stack collapsing +68268;Moving something and something closer to each other +177488;Trying but failing to attach something to something because it doesn't stick +120875;Pushing something from left to right +81588;Pretending to spread air onto something +101907;Pulling something from right to left +123648;Tipping something over +143256;Picking something up +91679;Uncovering something +134669;Pretending to put something on a surface +34964;Taking something out of something +77294;Showing something behind something +86851;Plugging something into something +205843;Attaching something to something +95976;Showing that something is empty +153403;Pretending to pick something up +215130;Uncovering something +211622;Pushing something off of something +27742;Pushing something so that it slightly moves +27873;Lifting something up completely, then letting it drop down +98117;Touching (without moving) part of something +212614;Trying but failing to attach something to something because it doesn't stick +7174;Letting something roll along a flat surface +203669;Pretending to be tearing something that is not tearable +151174;Pushing something with something +6860;Poking a stack of something so the stack collapses +12091;Covering something with something +213077;Showing that something is inside something +153974;Touching (without moving) part of something +216626;Holding something behind something +192080;Turning something upside down +73072;Moving something and something so they collide with each other +40515;Putting something on a surface +67833;Showing something next to something +64843;Pretending to put something on a surface +42621;Touching (without moving) part of something +23547;Twisting something +176646;Pulling something from right to left +200054;Dropping something onto something +95988;Pretending to pour something out of something, but something is empty +190813;Moving something up +176486;Dropping something onto something +1950;Stuffing something into something +53779;Pushing something so that it slightly moves +208999;Tearing something into two pieces +77499;Tearing something just a little bit +74822;Squeezing something +201815;Holding something next to something +203046;Pretending to turn something upside down +97026;Pouring something into something +8316;Tipping something over +67686;Uncovering something +42952;Pulling two ends of something so that it separates into two pieces +98902;Tipping something over +125110;Lifting something up completely, then letting it drop down +138446;Showing that something is inside something +194765;Tipping something over +31189;Spinning something so it continues spinning +215802;Taking something out of something +31262;Spinning something so it continues spinning +42905;Throwing something onto a surface +183766;Putting something that cannot actually stand upright upright on the table, so it falls on its side +60190;Folding something +114892;Poking something so that it falls over +175784;Opening something +115081;Pouring something onto something +131395;Pretending to put something into something +133497;Plugging something into something +28590;Holding something next to something +30088;Moving something closer to something +183867;Tilting something with something on it until it falls off +177403;Plugging something into something but pulling it right out as you remove your hand +179632;Moving something up +127942;Twisting something +88995;Stuffing something into something +89017;Tilting something with something on it slightly so it doesn't fall down +170978;Covering something with something +178323;Showing that something is inside something +142005;Letting something roll along a flat surface +37758;Moving something down +15809;Putting something on a surface +43168;Tipping something with something in it over, so something in it falls out +67701;Putting something behind something +182513;Poking something so it slightly moves +197307;Closing something +30865;Covering something with something +4408;Moving something away from something +56161;Holding something over something +195947;Covering something with something +6236;Trying but failing to attach something to something because it doesn't stick +100865;Putting something onto something +123323;Lifting up one end of something without letting it drop down +561;Moving something towards the camera +87740;Something falling like a feather or paper +145327;Putting something onto something else that cannot support it so it falls down +185831;Pushing something from right to left +31254;Tearing something into two pieces +77540;Taking something out of something +68964;Plugging something into something but pulling it right out as you remove your hand +74666;Twisting something +75618;Moving something and something closer to each other +141647;Poking a stack of something without the stack collapsing +43430;Pushing something so that it slightly moves +69098;Putting something on a surface +213771;Hitting something with something +200703;Uncovering something +216121;Pretending to be tearing something that is not tearable +179348;Turning something upside down +38739;Throwing something +202007;Turning something upside down +185675;Scooping something up with something +72630;Dropping something behind something +210274;Throwing something in the air and letting it fall +65507;Showing something next to something +11146;Twisting (wringing) something wet until water comes out +181333;Pulling something from right to left +142994;Lifting up one end of something without letting it drop down +67381;Tearing something just a little bit +21189;Holding something +153359;Plugging something into something +168012;Opening something +104836;Holding something next to something +58017;Plugging something into something but pulling it right out as you remove your hand +56921;Taking something out of something +105667;Pushing something from left to right +88294;Tearing something into two pieces +127930;Turning the camera upwards while filming something +201364;Pushing something with something +24183;Showing something on top of something +79941;Pushing something so that it falls off the table +197623;Putting something similar to other things that are already on the table +43929;Showing something on top of something +154064;Taking one of many similar things on the table +106969;Taking something out of something +160889;Folding something +150383;Holding something in front of something +142112;Pushing something with something +60560;Turning the camera left while filming something +98462;Piling something up +138768;Pushing something with something +71264;Plugging something into something +84665;Moving something and something away from each other +146113;Something colliding with something and both are being deflected +88038;Approaching something with your camera +130148;Hitting something with something +43029;Pouring something into something +85064;Taking one of many similar things on the table +14621;Unfolding something +150778;Tilting something with something on it until it falls off +121419;Bending something so that it deforms +126364;Taking one of many similar things on the table +57443;Dropping something into something +101016;Lifting something with something on it +103896;Uncovering something +185172;Uncovering something +70522;Rolling something on a flat surface +55005;Moving something closer to something +109674;Uncovering something +192987;Showing something on top of something +100237;Uncovering something +99603;Holding something +205039;Putting something that cannot actually stand upright upright on the table, so it falls on its side +160253;Turning the camera left while filming something +47334;Moving something away from something +54846;Lifting something with something on it +31283;Throwing something +179372;Moving something closer to something +146506;Putting something on the edge of something so it is not supported and falls down +204018;Pretending to open something without actually opening it +72729;Letting something roll down a slanted surface +180366;Rolling something on a flat surface +73248;Squeezing something +31977;Moving something across a surface until it falls down +215038;Covering something with something +199508;Something falling like a rock +53663;Putting something on a flat surface without letting it roll +120052;Turning the camera downwards while filming something +185119;Letting something roll down a slanted surface +150008;Moving part of something +52038;Holding something over something +83231;Pouring something into something +89042;Uncovering something +172415;Spinning something so it continues spinning +199662;Tearing something into two pieces +80908;Pretending to poke something +105980;Moving something away from something +98387;Dropping something into something +14246;Holding something +215538;Showing something behind something +105133;Stacking number of something +75800;Pushing something so that it falls off the table +189628;Putting something on the edge of something so it is not supported and falls down +156271;Pushing something from right to left +91818;Throwing something onto a surface +111346;Taking something from somewhere +42711;Taking something out of something +171458;Putting something underneath something +204992;Putting something on a surface +31621;Pushing something so that it falls off the table +48408;Pushing something with something +119202;Pouring something into something +161471;Spinning something that quickly stops spinning +127547;Stacking number of something +25062;Pretending to squeeze something +141598;Pushing something from right to left +46503;Putting something next to something +120483;Pushing something so that it slightly moves +119368;Spinning something so it continues spinning +189901;Dropping something next to something +48546;Putting something next to something +8752;Putting something similar to other things that are already on the table +68178;Scooping something up with something +110720;Lifting up one end of something, then letting it drop down +200624;Putting something next to something +55318;Tilting something with something on it until it falls off +167072;Pushing something so it spins +7837;Pretending to be tearing something that is not tearable +202189;Pushing something so that it slightly moves +166528;Opening something +209135;Covering something with something +117464;Pushing something with something +144309;Twisting something +24718;Something falling like a feather or paper +86473;Spinning something so it continues spinning +108594;Putting something into something +122263;Attaching something to something +137423;Moving something across a surface without it falling down +58616;Stuffing something into something +209924;Tearing something into two pieces +92513;Moving something away from something +34059;Holding something next to something +66938;Holding something next to something +135242;Moving something and something closer to each other +1169;Moving something closer to something +51757;Moving something towards the camera +81339;Turning the camera left while filming something +28511;Folding something +183481;Putting something behind something +160928;Trying but failing to attach something to something because it doesn't stick +181671;Pretending to close something without actually closing it +183895;Hitting something with something +137816;Showing that something is empty +27607;Laying something on the table on its side, not upright +49502;Moving something towards the camera +3900;Tipping something with something in it over, so something in it falls out +191348;Pretending to open something without actually opening it +30604;Pulling something onto something +198698;Lifting something with something on it +135416;Something falling like a feather or paper +7656;Uncovering something +120238;Letting something roll down a slanted surface +27408;Folding something +95901;Pretending to take something out of something +207463;Covering something with something +28562;Pushing something so that it almost falls off but doesn't +41146;Moving something closer to something +187448;Pushing something off of something +115973;Pretending to scoop something up with something +104911;Lifting up one end of something without letting it drop down +219620;Dropping something onto something +92653;Pushing something from right to left +17718;Unfolding something +97508;Pouring something into something +218057;Touching (without moving) part of something +26616;Putting something and something on the table +193288;Putting something similar to other things that are already on the table +115963;Approaching something with your camera +90783;Something colliding with something and both are being deflected +167346;Attaching something to something +7471;Lifting something up completely, then letting it drop down +11995;Tilting something with something on it slightly so it doesn't fall down +101417;Letting something roll along a flat surface +78860;Taking something out of something +43041;Holding something in front of something +135624;Pouring something onto something +44823;Pushing something so that it almost falls off but doesn't +169594;Lifting something with something on it +82275;Tilting something with something on it until it falls off +146106;Pushing something so that it falls off the table +136105;Unfolding something +90422;Putting something on a flat surface without letting it roll +198615;Putting something on a surface +131898;Something falling like a feather or paper +163919;Poking something so that it falls over +76554;Showing something behind something +96439;Covering something with something +46089;Throwing something against something +9192;Stacking number of something +155253;Putting something into something +162157;Moving something closer to something +163496;Putting something onto something else that cannot support it so it falls down +103697;Moving something and something closer to each other +74194;Pushing something from left to right +131133;Putting something similar to other things that are already on the table +181900;Plugging something into something but pulling it right out as you remove your hand +44030;Hitting something with something +22620;Bending something so that it deforms +151971;Turning something upside down +76497;Putting something on a surface +185859;Taking something out of something +52964;Throwing something +151686;Pushing something with something +219209;Putting something similar to other things that are already on the table +105797;Showing something on top of something +98856;Showing something to the camera +205125;Pretending to sprinkle air onto something +26009;Laying something on the table on its side, not upright +38107;Moving something away from something +128748;Something falling like a feather or paper +83631;Folding something +138930;Closing something +115814;Letting something roll along a flat surface +105058;Uncovering something +128901;Turning something upside down +209822;Pretending to pick something up +68565;Tearing something into two pieces +217927;Moving something and something closer to each other +39560;Pretending to open something without actually opening it +215940;Picking something up +136240;Throwing something onto a surface +95126;Tearing something into two pieces +188173;Dropping something onto something +132681;Putting something similar to other things that are already on the table +27118;Plugging something into something +173801;Tearing something just a little bit +185185;Putting something and something on the table +200965;Stacking number of something +113452;Pulling something from left to right +157745;Tearing something into two pieces +206732;Moving something and something so they collide with each other +153240;Pushing something off of something +78991;Tearing something into two pieces +204066;Pulling something from left to right +198822;Pulling something from behind of something +71224;Tearing something into two pieces +44003;Wiping something off of something +77727;Showing something on top of something +152977;Tearing something into two pieces +173404;Showing something on top of something +7310;Dropping something onto something +105907;Holding something +76656;Letting something roll up a slanted surface, so it rolls back down +30177;Putting something and something on the table +106850;Scooping something up with something +201950;Putting something and something on the table +128126;Something falling like a rock +14581;Moving part of something +28722;Throwing something in the air and letting it fall +121605;Rolling something on a flat surface +88408;Folding something +20326;Stuffing something into something +76818;Poking something so lightly that it doesn't or almost doesn't move +72017;Taking something out of something +121825;Pretending to open something without actually opening it +115124;Showing something behind something +67721;Moving part of something +202311;Taking something out of something +220402;Putting something on a surface +114942;Pushing something so that it slightly moves +209355;Throwing something in the air and catching it +61064;Laying something on the table on its side, not upright +144857;Something falling like a rock +91620;Stacking number of something +57203;Showing something on top of something +144863;Plugging something into something +182934;Throwing something against something +93709;Pushing something from left to right +189492;Putting something similar to other things that are already on the table +79853;Putting something onto something +58818;Putting something similar to other things that are already on the table +38909;Showing something behind something +214908;Holding something +92121;Holding something behind something +44946;Pushing something so that it falls off the table +25963;Showing that something is empty +156049;Putting something next to something +20734;Putting something into something +204606;Poking something so it slightly moves +112784;Letting something roll along a flat surface +200313;Poking something so it slightly moves +104675;Pretending to take something out of something +124787;Pushing something from right to left +92989;Rolling something on a flat surface +188801;Putting something on a surface +182173;Pushing something so that it falls off the table +100795;Moving away from something with your camera +30639;Plugging something into something +170368;Holding something over something +187549;Putting something and something on the table +122162;Putting something on a surface +132888;Poking something so lightly that it doesn't or almost doesn't move +71828;Folding something +108990;Putting something behind something +188978;Putting something on a surface +130090;Pushing something off of something +126108;Bending something so that it deforms +177240;Plugging something into something +16513;Showing something behind something +129526;Trying to bend something unbendable so nothing happens +138641;Covering something with something +212754;Pushing something from left to right +28648;Pretending to sprinkle air onto something +113068;Pushing something so that it slightly moves +93288;Tearing something into two pieces +76505;Turning the camera right while filming something +181429;Trying to bend something unbendable so nothing happens +35871;Moving something across a surface until it falls down +89064;Pretending to open something without actually opening it +2948;Twisting something +155336;Pushing something onto something +200514;Pushing something so that it falls off the table +179249;Moving something and something closer to each other +90720;Plugging something into something +199956;Attaching something to something +113964;Letting something roll along a flat surface +103511;Stacking number of something +53941;Something falling like a feather or paper +75471;Plugging something into something +36888;Plugging something into something but pulling it right out as you remove your hand +67257;Taking one of many similar things on the table +158674;Plugging something into something but pulling it right out as you remove your hand +44490;Stacking number of something +93448;Poking a stack of something without the stack collapsing +59604;Uncovering something +685;Showing that something is inside something +205840;Putting something that cannot actually stand upright upright on the table, so it falls on its side +178373;Something falling like a rock +41092;Holding something +111426;Moving something and something away from each other +218906;Taking one of many similar things on the table +10125;Moving something down +187292;Pretending to put something next to something +142759;Putting something into something +12176;Turning the camera right while filming something +176728;Dropping something onto something +200716;Putting something on a surface +141754;Something falling like a rock +93336;Uncovering something +2741;Holding something in front of something +71349;Taking something out of something +219993;Plugging something into something +87614;Opening something +23278;Trying but failing to attach something to something because it doesn't stick +145889;Squeezing something +124724;Pulling something from left to right +204666;Holding something in front of something +186574;Piling something up +35348;Something falling like a feather or paper +94997;Squeezing something +146883;Lifting up one end of something, then letting it drop down +37866;Closing something +83474;Putting something and something on the table +55602;Holding something in front of something +172153;Turning something upside down +153931;Moving something and something closer to each other +43775;Lifting up one end of something without letting it drop down +78761;Sprinkling something onto something +130105;Attaching something to something +7022;Stacking number of something +2088;Putting something that can't roll onto a slanted surface, so it slides down +140852;Putting something onto something +215933;Putting something next to something +107458;Throwing something in the air and letting it fall +11216;Plugging something into something +128152;Showing something next to something +52731;Showing that something is empty +66889;Putting something and something on the table +195985;Tearing something into two pieces +123483;Opening something +218914;Pushing something so that it falls off the table +161413;Moving something closer to something +164682;Pretending to turn something upside down +202843;Something falling like a rock +149815;Putting something into something +15013;Pulling something from left to right +191574;Piling something up +119093;Taking something out of something +505;Dropping something in front of something +140257;Pretending to pour something out of something, but something is empty +59724;Something falling like a feather or paper +13401;Letting something roll along a flat surface +21737;Pretending to take something out of something +40070;Pushing something with something +111857;Plugging something into something +46039;Showing a photo of something to the camera +139082;Sprinkling something onto something +133584;Throwing something +162057;Tearing something into two pieces +86484;Pushing something so it spins +128705;Taking something out of something +90868;Holding something in front of something +128761;Moving something closer to something +213514;Taking one of many similar things on the table +172210;Holding something +114452;Spilling something onto something +104781;Plugging something into something +10014;Dropping something behind something +143432;Showing something behind something +103740;Turning the camera right while filming something +88387;Pushing something so that it slightly moves +75128;Turning something upside down +3913;Moving something across a surface until it falls down +166145;Showing something behind something +143812;Lifting something up completely without letting it drop down +70460;Pouring something out of something +180469;Opening something +203068;Plugging something into something +185433;Opening something +46368;Lifting something with something on it +188304;Lifting something with something on it +129147;Pushing something so that it falls off the table +192681;Putting something into something +12982;Pouring something into something +79865;Bending something so that it deforms +87391;Taking something out of something +175793;Tilting something with something on it until it falls off +25778;Unfolding something +165904;Moving something up +197081;Putting something, something and something on the table +82414;Pulling two ends of something but nothing happens +59849;Laying something on the table on its side, not upright +173714;Dropping something onto something +120405;Turning the camera upwards while filming something +101701;Moving part of something +137027;Plugging something into something +150961;Letting something roll along a flat surface +3622;Something falling like a feather or paper +167150;Moving part of something +35461;Pretending to pick something up +166801;Putting something upright on the table +131453;Holding something next to something +128994;Showing something behind something +169879;Spreading something onto something +202412;Showing something on top of something +158497;Unfolding something +17077;Putting something and something on the table +131920;Poking something so that it falls over +175906;Folding something +19276;Poking something so it slightly moves +68260;Putting something on a surface +36751;Lifting something up completely, then letting it drop down +65077;Wiping something off of something +49745;Putting something that cannot actually stand upright upright on the table, so it falls on its side +166728;Poking something so lightly that it doesn't or almost doesn't move +71258;Covering something with something +70534;Stuffing something into something +27182;Throwing something +130314;Moving something down +168395;Showing that something is empty +104214;Plugging something into something +127274;Putting something and something on the table +206209;Pushing something from right to left +71866;Throwing something +35622;Showing something behind something +108164;Showing that something is empty +187333;Folding something +143088;Tipping something over +18487;Trying to bend something unbendable so nothing happens +27660;Tearing something just a little bit +3768;Moving something towards the camera +208458;Showing something on top of something +4306;Moving something closer to something +165888;Twisting something +167960;Tearing something into two pieces +35425;Pretending to squeeze something +197637;Pouring something into something +89644;Hitting something with something +87898;Dropping something next to something +38452;Pushing something so that it slightly moves +97989;Moving something closer to something +97758;Stacking number of something +137985;Stuffing something into something +59839;Dropping something onto something +7861;Pretending to squeeze something +185157;Pushing something so that it falls off the table +108511;Moving something away from something +82232;Putting something in front of something +188373;Pouring something onto something +157865;Poking something so lightly that it doesn't or almost doesn't move +114395;Showing something to the camera +186706;Showing something on top of something +115806;Putting something similar to other things that are already on the table +159973;Trying but failing to attach something to something because it doesn't stick +195892;Turning something upside down +13711;Touching (without moving) part of something +204971;Putting number of something onto something +81446;Trying but failing to attach something to something because it doesn't stick +180821;Covering something with something +85904;Moving something up +82247;Plugging something into something +28506;Pouring something into something +132352;Tearing something into two pieces +39210;Throwing something in the air and catching it +37722;Pretending to be tearing something that is not tearable +81550;Showing something behind something +130112;Showing something behind something +136299;Hitting something with something +24527;Taking one of many similar things on the table +61606;Tearing something into two pieces +116908;Putting something next to something +5510;Pushing something so that it falls off the table +108893;Covering something with something +157122;Bending something until it breaks +101797;Moving something closer to something +34208;Sprinkling something onto something +77342;Pretending to open something without actually opening it +24795;Approaching something with your camera +82774;Pretending to take something from somewhere +214018;Piling something up +38618;Folding something +199423;Holding something next to something +180107;Pouring something out of something +69186;Putting number of something onto something +184195;Plugging something into something but pulling it right out as you remove your hand +26798;Unfolding something +191290;Lifting something with something on it +12098;Moving part of something +169710;Turning the camera downwards while filming something +172170;Burying something in something +217599;Putting something into something +6933;Holding something in front of something +164771;Lifting up one end of something without letting it drop down +199731;Covering something with something +51980;Opening something +40140;Showing something on top of something +189823;Lifting something with something on it +34459;Moving something and something closer to each other +179690;Plugging something into something +198830;Holding something +148245;Pulling something from left to right +77902;Tilting something with something on it slightly so it doesn't fall down +148387;Pulling two ends of something so that it separates into two pieces +190988;Putting something on a surface +18824;Pushing something with something +124586;Holding something in front of something +192482;Plugging something into something +23304;Pushing something from right to left +62749;Moving something closer to something +197781;Throwing something +212962;Closing something +155792;Pulling something out of something +53179;Holding something next to something +177168;Lifting something with something on it +143876;Moving something closer to something +133690;Pushing something so that it almost falls off but doesn't +48686;Pretending or failing to wipe something off of something +192931;Pretending to be tearing something that is not tearable +120513;Putting something into something +29880;Folding something +142050;Something falling like a feather or paper +39272;Hitting something with something +33029;Showing that something is inside something +198695;Attaching something to something +43139;Spinning something that quickly stops spinning +85661;Dropping something next to something +218053;Something falling like a rock +200969;Hitting something with something +111556;Stuffing something into something +123470;Throwing something against something +61436;Something falling like a feather or paper +201491;Pretending to put something on a surface +39104;Pretending to take something from somewhere +213608;Moving something and something closer to each other +74080;Moving something and something closer to each other +77563;Putting something and something on the table +32049;Pushing something from right to left +58103;Dropping something into something +175001;Picking something up +5584;Putting something into something +183561;Pretending to put something into something +119834;Dropping something next to something +79326;Stacking number of something +2070;Folding something +5383;Squeezing something +173568;Throwing something against something +150210;Taking something out of something +95342;Showing something behind something +43654;Spinning something so it continues spinning +79106;Poking a stack of something without the stack collapsing +219290;Showing something next to something +197149;Pulling two ends of something so that it separates into two pieces +190653;Moving something closer to something +14844;Pushing something so it spins +62290;Dropping something onto something +204930;Picking something up +77040;Opening something +151483;Tipping something over +218176;Moving something closer to something +190240;Showing something to the camera +37409;Hitting something with something +40392;Stuffing something into something +123837;Showing something on top of something +149407;Opening something +133833;Something falling like a rock +112569;Turning the camera left while filming something +10570;Pouring something into something until it overflows +38778;Spinning something that quickly stops spinning +110301;Showing something next to something +198583;Rolling something on a flat surface +31258;Spinning something so it continues spinning +866;Pulling something from right to left +197031;Spilling something onto something +181221;Putting something in front of something +121706;Tearing something into two pieces +205755;Covering something with something +164220;Pushing something off of something +121635;Stacking number of something +79309;Pretending to squeeze something +126027;Moving something across a surface until it falls down +145248;Picking something up +204467;Pouring something out of something +14943;Picking something up +135377;Showing something behind something +83986;Tearing something just a little bit +20428;Spinning something that quickly stops spinning +62785;Lifting something up completely without letting it drop down +24756;Tearing something into two pieces +68113;Moving something away from something +81458;Pouring something out of something +30533;Moving something and something closer to each other +154293;Poking something so that it falls over +73760;Attaching something to something +67310;Bending something until it breaks +194107;Laying something on the table on its side, not upright +95752;Pretending to take something out of something +68259;Putting something on a surface +152578;Putting something on a surface +33165;Putting something in front of something +74138;Stuffing something into something +139399;Moving something away from something +110096;Tearing something into two pieces +203271;Holding something next to something +78846;Dropping something behind something +140168;Moving something up +41532;Hitting something with something +196439;Pouring something out of something +66095;Moving something towards the camera +198065;Holding something next to something +24797;Trying but failing to attach something to something because it doesn't stick +74501;Showing something to the camera +65516;Stuffing something into something +64760;Bending something so that it deforms +85464;Turning the camera right while filming something +187594;Tilting something with something on it slightly so it doesn't fall down +121003;Plugging something into something but pulling it right out as you remove your hand +13247;Throwing something onto a surface +177532;Stuffing something into something +199699;Pushing something so that it falls off the table +132709;Putting something next to something +14956;Pretending to be tearing something that is not tearable +162815;Pulling something from right to left +102393;Something falling like a feather or paper +90227;Showing that something is inside something +140091;Moving away from something with your camera +25450;Pushing something from right to left +106429;Rolling something on a flat surface +75600;Digging something out of something +73808;Showing something next to something +170764;Letting something roll along a flat surface +90383;Spinning something that quickly stops spinning +29397;Dropping something next to something +118475;Putting number of something onto something +179097;Removing something, revealing something behind +182509;Holding something behind something +94697;Hitting something with something +17800;Holding something behind something +129777;Showing something next to something +195620;Spinning something so it continues spinning +17671;Opening something +153176;Putting something into something +118226;Pulling something from right to left +96339;Touching (without moving) part of something +114031;Pretending to be tearing something that is not tearable +170430;Pulling two ends of something so that it gets stretched +146348;Pushing something off of something +127260;Pushing something from right to left +123242;Dropping something into something +128064;Pushing something so that it almost falls off but doesn't +147881;Dropping something next to something +118370;Holding something next to something +157046;Pretending to poke something +143228;Putting something on a surface +181653;Removing something, revealing something behind +53195;Spinning something that quickly stops spinning +92861;Scooping something up with something +203345;Spinning something that quickly stops spinning +68532;Unfolding something +123090;Pouring something out of something +59253;Spilling something onto something +41244;Pretending to open something without actually opening it +41511;Throwing something onto a surface +111376;Moving part of something +118716;Taking one of many similar things on the table +177834;Putting something on a surface +208239;Putting something behind something +21245;Plugging something into something +95773;Pushing something so that it falls off the table +23181;Laying something on the table on its side, not upright +94913;Putting something in front of something +107224;Lifting something with something on it +49829;Lifting up one end of something without letting it drop down +105892;Showing that something is inside something +27789;Plugging something into something but pulling it right out as you remove your hand +73870;Lifting something with something on it +219720;Plugging something into something but pulling it right out as you remove your hand +174848;Covering something with something +62363;Closing something +79390;Moving something and something away from each other +21405;Pulling two ends of something but nothing happens +93044;Dropping something behind something +154538;Putting something behind something +189378;Holding something +137052;Pushing something so that it falls off the table +184477;Something being deflected from something +75944;Pretending to close something without actually closing it +52442;Something falling like a feather or paper +171120;Pouring something out of something +137482;Piling something up +204277;Tearing something into two pieces +198292;Stacking number of something +143726;Putting something into something +57168;Hitting something with something +196541;Showing that something is empty +190637;Moving something closer to something +133926;Putting something into something +179640;Stuffing something into something +95403;Turning the camera right while filming something +181364;Spilling something onto something +146807;Something being deflected from something +1647;Throwing something in the air and letting it fall +184475;Letting something roll down a slanted surface +191372;Moving something away from something +656;Covering something with something +97599;Moving something away from the camera +200440;Picking something up +220291;Pushing something with something +23707;Pushing something so that it falls off the table +171235;Pouring something onto something +70610;Putting something on a surface +8950;Putting something on a surface +169278;Taking one of many similar things on the table +130218;Pushing something so that it slightly moves +104940;Tearing something into two pieces +69734;Poking something so lightly that it doesn't or almost doesn't move +38408;Putting something on a flat surface without letting it roll +96291;Pouring something into something until it overflows +160859;Holding something over something +91244;Tearing something just a little bit +10156;Pretending to sprinkle air onto something +129931;Putting something on a surface +211422;Pouring something out of something +155990;Taking one of many similar things on the table +98911;Moving something closer to something +163708;Moving something and something away from each other +204283;Stacking number of something +181308;Showing something to the camera +178057;Pretending to open something without actually opening it +207379;Showing that something is empty +43971;Throwing something against something +33985;Piling something up +163490;Showing that something is empty +26024;Pushing something so it spins +57892;Throwing something in the air and letting it fall +111481;Stacking number of something +103152;Closing something +178820;Something falling like a feather or paper +162410;Spinning something so it continues spinning +7546;Holding something in front of something +122095;Holding something over something +125759;Putting something in front of something +102467;Touching (without moving) part of something +108373;Pushing something from left to right +114270;Plugging something into something +135345;Moving something closer to something +116524;Putting number of something onto something +41121;Squeezing something +28520;Tearing something into two pieces +41176;Putting something that can't roll onto a slanted surface, so it stays where it is +108098;Tearing something into two pieces +62647;Plugging something into something +169529;Turning the camera downwards while filming something +92651;Showing that something is inside something +187313;Opening something +219671;Lifting up one end of something without letting it drop down +182477;Squeezing something +46709;Tipping something over +214985;Pushing something from left to right +53071;Lifting something up completely, then letting it drop down +36866;Dropping something in front of something +11591;Pretending to put something next to something +84213;Pretending to be tearing something that is not tearable +79032;Squeezing something +219968;Holding something next to something +38115;Putting something similar to other things that are already on the table +10714;Tipping something with something in it over, so something in it falls out +27488;Throwing something in the air and catching it +65474;Moving something up +69969;Plugging something into something but pulling it right out as you remove your hand +111196;Tearing something just a little bit +150087;Tearing something into two pieces +6783;Pulling something from left to right +157656;Poking something so that it falls over +187343;Pretending or trying and failing to twist something +114953;Putting something on a surface +21927;Showing that something is inside something +129400;Pulling something from left to right +54095;Bending something so that it deforms +176471;Approaching something with your camera +156051;Putting something underneath something +140138;Turning the camera downwards while filming something +214280;Twisting something +202170;Spinning something that quickly stops spinning +60876;Covering something with something +89809;Putting something similar to other things that are already on the table +140693;Hitting something with something +100704;Tearing something just a little bit +131676;Letting something roll down a slanted surface +2541;Pushing something from left to right +16538;Showing that something is inside something +179230;Throwing something in the air and letting it fall +180282;Turning something upside down +193150;Taking one of many similar things on the table +19017;Poking a stack of something without the stack collapsing +38077;Moving something closer to something +142871;Poking something so it slightly moves +5638;Throwing something in the air and letting it fall +2841;Pretending to put something on a surface +43030;Putting something into something +172534;Throwing something +34863;Putting something similar to other things that are already on the table +179439;Dropping something behind something +45041;Tipping something over +104448;Tearing something just a little bit +100051;Pulling something from left to right +195291;Taking something out of something +139233;Showing something on top of something +123282;Lifting something with something on it +39064;Pushing something so that it falls off the table +17905;Plugging something into something +93106;Unfolding something +134613;Poking something so that it spins around +149660;Throwing something in the air and letting it fall +174183;Showing a photo of something to the camera +86254;Putting something into something +35759;Pulling something from behind of something +185095;Putting something similar to other things that are already on the table +87623;Pretending to be tearing something that is not tearable +105134;Throwing something in the air and catching it +212490;Pushing something so that it almost falls off but doesn't +28874;Pushing something from left to right +145585;Opening something +186271;Trying to pour something into something, but missing so it spills next to it +89955;Throwing something in the air and catching it +65587;Unfolding something +96866;Pretending to put something underneath something +153716;Plugging something into something +153072;Dropping something next to something +137906;Bending something so that it deforms +25856;Putting something into something +83789;Poking a hole into some substance +163190;Putting number of something onto something +116170;Pouring something into something until it overflows +132540;Taking something out of something +3473;Picking something up +163777;Pushing something so that it slightly moves +179822;Dropping something onto something +106761;Dropping something in front of something +36924;Spinning something that quickly stops spinning +144896;Bending something so that it deforms +120289;Tearing something just a little bit +24390;Picking something up +155871;Pouring something into something +204108;Trying to bend something unbendable so nothing happens +220220;Lifting a surface with something on it until it starts sliding down +81382;Wiping something off of something +182117;Pretending to turn something upside down +149304;Putting something on a surface +202654;Putting something upright on the table +184542;Unfolding something +158127;Tearing something into two pieces +129955;Pushing something so that it slightly moves +67161;Taking one of many similar things on the table +192465;Twisting something +64242;Moving something closer to something +184691;Holding something next to something +99220;Moving something down +13279;Moving something and something away from each other +21918;Tilting something with something on it until it falls off +122698;Moving something and something closer to each other +142358;Touching (without moving) part of something +186831;Moving something and something closer to each other +207595;Pushing something so that it slightly moves +200691;Trying to pour something into something, but missing so it spills next to it +174368;Opening something +90176;Pouring something into something +9582;Squeezing something +16046;Pushing something from left to right +12157;Pretending to pour something out of something, but something is empty +25681;Pretending to be tearing something that is not tearable +27321;Lifting something with something on it +65774;Stacking number of something +33167;Poking something so lightly that it doesn't or almost doesn't move +34269;Failing to put something into something because something does not fit +173560;Moving something closer to something +141182;Holding something over something +127258;Holding something over something +50314;Closing something +52783;Throwing something against something +34544;Something falling like a feather or paper +167887;Pretending to take something from somewhere +185271;Squeezing something +217823;Moving something and something so they collide with each other +81299;Spinning something that quickly stops spinning +16163;Spinning something so it continues spinning +37249;Putting something upright on the table +78009;Pushing something so that it slightly moves +174804;Moving something and something away from each other +201196;Stuffing something into something +78668;Turning something upside down +213852;Turning something upside down +11579;Stacking number of something +132992;Pulling two ends of something so that it gets stretched +168118;Pushing something so it spins +90606;Moving something closer to something +16360;Folding something +194629;Throwing something in the air and letting it fall +163451;Dropping something into something +173156;Bending something until it breaks +40655;Holding something next to something +151470;Putting something behind something +2036;Letting something roll along a flat surface +113150;Spilling something next to something +172137;Picking something up +3564;Something colliding with something and both are being deflected +216621;Attaching something to something +4731;Putting something on a surface +189554;Tilting something with something on it until it falls off +14289;Plugging something into something +9913;Poking something so it slightly moves +610;Spinning something so it continues spinning +167826;Lifting something with something on it +199985;Plugging something into something +28907;Turning the camera right while filming something +190656;Closing something +156301;Throwing something against something +143058;Pushing something with something +61626;Taking something from somewhere +66133;Moving something closer to something +185167;Pushing something from left to right +15297;Laying something on the table on its side, not upright +39373;Pulling something from left to right +6897;Squeezing something +214311;Pretending to put something on a surface +42543;Plugging something into something +37600;Unfolding something +167673;Moving something closer to something +22945;Moving something closer to something +47328;Poking a hole into something soft +122651;Unfolding something +170956;Poking something so that it falls over +134239;Moving something and something away from each other +17948;Piling something up +65435;Throwing something in the air and catching it +140307;Pretending to close something without actually closing it +26070;Pouring something into something +209949;Turning the camera right while filming something +142321;Something falling like a feather or paper +108887;Moving part of something +66182;Moving away from something with your camera +188194;Pushing something from left to right +176138;Opening something +52228;Pushing something with something +153056;Pretending to be tearing something that is not tearable +194248;Moving something and something closer to each other +184627;Poking something so it slightly moves +215748;Tipping something with something in it over, so something in it falls out +159033;Tearing something just a little bit +178571;Holding something next to something +115822;Laying something on the table on its side, not upright +214547;Turning something upside down +77869;Squeezing something +73326;Poking something so it slightly moves +189481;Showing that something is inside something +157047;Moving part of something +98461;Pretending to pick something up +166687;Rolling something on a flat surface +66012;Showing that something is inside something +25460;Taking something out of something +159897;Moving something and something away from each other +109242;Pretending to take something from somewhere +129069;Something falling like a feather or paper +165913;Moving part of something +155314;Pushing something so that it slightly moves +61602;Poking a hole into something soft +158670;Turning the camera left while filming something +49142;Stuffing something into something +102871;Moving something down +176353;Tearing something just a little bit +204384;Holding something over something +105186;Putting something and something on the table +156856;Holding something over something +189203;Poking something so lightly that it doesn't or almost doesn't move +23686;Piling something up +66631;Showing something next to something +196985;Plugging something into something but pulling it right out as you remove your hand +215811;Showing that something is empty +26194;Pretending to pick something up +167008;Pushing something from left to right +4445;Putting something upright on the table +135731;Showing something next to something +93928;Spilling something next to something +169298;Taking something from somewhere +104474;Lifting something up completely, then letting it drop down +20302;Moving something towards the camera +203241;Uncovering something +77838;Throwing something +204141;Turning the camera left while filming something +181456;Putting something on a surface +89528;Putting something on a surface +33410;Putting something into something +149884;Attaching something to something +208913;Pushing something so that it slightly moves +191624;Holding something behind something +97905;Rolling something on a flat surface +159594;Plugging something into something but pulling it right out as you remove your hand +196277;Holding something in front of something +81146;Spinning something so it continues spinning +116283;Something falling like a feather or paper +38039;Putting something on a surface +191634;Showing that something is inside something +168675;Twisting something +105563;Holding something +155946;Something falling like a rock +121518;Pushing something from left to right +167454;Moving something closer to something +190486;Holding something over something +164601;Twisting (wringing) something wet until water comes out +126635;Bending something until it breaks +181504;Tipping something over +220586;Taking something out of something +58932;Something falling like a feather or paper +169414;Showing that something is empty +15502;Turning something upside down +176412;Laying something on the table on its side, not upright +212759;Moving something and something away from each other +137;Letting something roll along a flat surface +148560;Tearing something just a little bit +215066;Poking something so that it falls over +42646;Folding something +216776;Spinning something so it continues spinning +216003;Removing something, revealing something behind +157060;Squeezing something +89326;Putting something in front of something +158299;Turning the camera right while filming something +198835;Showing something on top of something +188565;Moving something up +171015;Pushing something so it spins +46;Tilting something with something on it until it falls off +159409;Tipping something over +144147;Tearing something just a little bit +180150;Dropping something into something +218398;Tipping something with something in it over, so something in it falls out +142562;Wiping something off of something +167398;Letting something roll down a slanted surface +137148;Spinning something so it continues spinning +7816;Failing to put something into something because something does not fit +142988;Folding something +114959;Pushing something with something +189958;Turning something upside down +215002;Poking something so lightly that it doesn't or almost doesn't move +86419;Tearing something just a little bit +154404;Plugging something into something +109301;Pulling something from right to left +196450;Lifting something up completely without letting it drop down +46235;Moving something towards the camera +22540;Plugging something into something +37997;Poking something so lightly that it doesn't or almost doesn't move +200459;Tearing something into two pieces +77920;Pretending to pour something out of something, but something is empty +73610;Poking something so it slightly moves +80901;Pretending to take something out of something +42867;Failing to put something into something because something does not fit +90045;Moving something and something closer to each other +176526;Pretending to pick something up +218387;Something colliding with something and both are being deflected +165822;Taking one of many similar things on the table +103789;Moving something away from something +172479;Pushing something from left to right +203533;Wiping something off of something +176002;Putting something into something +34347;Twisting something +210401;Something falling like a feather or paper +157353;Pretending to put something on a surface +119781;Showing something behind something +50160;Pretending to put something onto something +15376;Something colliding with something and both are being deflected +86441;Stacking number of something +159691;Showing something on top of something +70886;Putting something on a surface +96504;Unfolding something +210484;Moving something and something closer to each other +23403;Showing something behind something +56274;Dropping something onto something +191143;Throwing something in the air and letting it fall +56198;Closing something +94388;Taking one of many similar things on the table +45218;Pulling something from left to right +10438;Pulling something from left to right +197796;Tipping something with something in it over, so something in it falls out +25865;Pulling something out of something +69017;Showing something to the camera +136120;Twisting something +98549;Something colliding with something and both come to a halt +99378;Moving part of something +138335;Taking one of many similar things on the table +54981;Lifting something with something on it +110287;Stuffing something into something +204069;Tilting something with something on it until it falls off +166068;Pushing something from left to right +104263;Tearing something just a little bit +32115;Showing something behind something +46682;Pushing something from right to left +36019;Bending something so that it deforms +190424;Pulling two ends of something so that it separates into two pieces +12328;Unfolding something +198137;Pretending to pick something up +148581;Throwing something in the air and letting it fall +150727;Uncovering something +202775;Turning the camera downwards while filming something +169140;Pulling something from right to left +190089;Moving something and something away from each other +62327;Plugging something into something +78311;Moving something and something away from each other +213184;Lifting something up completely without letting it drop down +130954;Tilting something with something on it slightly so it doesn't fall down +205722;Pushing something with something +122452;Holding something over something +160947;Holding something in front of something +192227;Moving something closer to something +93477;Moving something closer to something +170109;Putting something, something and something on the table +20173;Holding something in front of something +69922;Unfolding something +129377;Dropping something into something +159232;Wiping something off of something +6602;Something falling like a rock +178785;Twisting something +48380;Lifting something with something on it +131737;Putting something on a surface +75681;Lifting something up completely, then letting it drop down +211976;Pouring something into something +140892;Something falling like a feather or paper +92661;Showing that something is empty +144722;Putting something similar to other things that are already on the table +6378;Showing that something is empty +172904;Attaching something to something +94991;Pushing something from left to right +141278;Showing something behind something +147552;Moving something and something closer to each other +122954;Lifting something with something on it +66499;Pushing something from left to right +143165;Throwing something in the air and catching it +40988;Moving something up +200070;Putting something next to something +54411;Covering something with something +40017;Putting something onto something +125375;Wiping something off of something +81076;Spinning something that quickly stops spinning +86225;Trying to pour something into something, but missing so it spills next to it +220387;Piling something up +191700;Showing something next to something +84772;Tearing something into two pieces +102322;Pretending to turn something upside down +14495;Turning something upside down +53970;Holding something next to something +21796;Pushing something so it spins +182031;Pretending to open something without actually opening it +137158;Putting something into something +150032;Something falling like a rock +28454;Taking something out of something +161179;Something falling like a feather or paper +6113;Tipping something with something in it over, so something in it falls out +107665;Pretending to pour something out of something, but something is empty +149885;Pretending to pick something up +45181;Putting something on a surface +98288;Something falling like a feather or paper +44376;Bending something so that it deforms +156530;Putting something similar to other things that are already on the table +69432;Plugging something into something +83534;Uncovering something +194347;Plugging something into something but pulling it right out as you remove your hand +74170;Tearing something into two pieces +193723;Putting something that can't roll onto a slanted surface, so it stays where it is +12201;Something falling like a rock +153988;Pushing something onto something +130767;Putting something similar to other things that are already on the table +142904;Pretending to squeeze something +166221;Showing something on top of something +210377;Stacking number of something +136270;Putting something on a surface +181484;Lifting something with something on it +214057;Picking something up +54774;Opening something +29624;Moving something and something closer to each other +155867;Pouring something out of something +79496;Putting something on a flat surface without letting it roll +163582;Pulling something from left to right +75012;Spinning something so it continues spinning +4683;Tearing something just a little bit +177030;Taking one of many similar things on the table +91138;Tearing something into two pieces +161527;Pretending to sprinkle air onto something +203168;Pretending to close something without actually closing it +123732;Closing something +19028;Pretending to put something into something +52459;Putting something in front of something +127004;Burying something in something +47307;Putting something on a surface +114718;Poking a hole into some substance +23984;Holding something over something +23332;Something falling like a feather or paper +42285;Holding something next to something +132947;Dropping something onto something +128671;Tilting something with something on it slightly so it doesn't fall down +20722;Showing something on top of something +28199;Pushing something with something +141315;Poking something so lightly that it doesn't or almost doesn't move +6686;Moving something and something so they pass each other +8823;Pushing something so it spins +45571;Moving something and something closer to each other +182860;Pushing something with something +56398;Something falling like a rock +51334;Taking one of many similar things on the table +193911;Pouring something onto something +16520;Showing something on top of something +29616;Putting number of something onto something +130022;Tearing something into two pieces +170915;Pretending to poke something +174014;Twisting something +83864;Pretending to squeeze something +154366;Spilling something onto something +220846;Showing something to the camera +218649;Poking something so lightly that it doesn't or almost doesn't move +78040;Putting something, something and something on the table +20935;Opening something +186909;Letting something roll along a flat surface +122902;Tearing something just a little bit +6360;Twisting something +126651;Hitting something with something +142573;Throwing something in the air and letting it fall +5989;Touching (without moving) part of something +51498;Rolling something on a flat surface +131971;Hitting something with something +132059;Moving part of something +59632;Something falling like a feather or paper +28632;Turning something upside down +52293;Something falling like a feather or paper +207006;Putting something in front of something +1520;Taking one of many similar things on the table +205176;Pulling something from right to left +85618;Plugging something into something +48574;Pulling two ends of something so that it separates into two pieces +93279;Lifting up one end of something without letting it drop down +163813;Moving something and something away from each other +197897;Holding something behind something +217451;Dropping something next to something +139895;Holding something over something +31248;Pushing something so that it slightly moves +207425;Squeezing something +44346;Putting number of something onto something +75221;Stuffing something into something +102799;Covering something with something +142149;Wiping something off of something +5418;Hitting something with something +29436;Holding something +187574;Tearing something into two pieces +181062;Pushing something from right to left +157399;Stuffing something into something +33544;Dropping something onto something +147664;Putting number of something onto something +20550;Showing something behind something +119705;Putting something on a surface +12973;Spinning something that quickly stops spinning +155667;Moving something closer to something +61115;Pretending to close something without actually closing it +114674;Spinning something so it continues spinning +75354;Poking something so that it spins around +25391;Pulling something from left to right +66515;Folding something +160029;Piling something up +31178;Moving something and something closer to each other +83721;Folding something +21127;Turning the camera left while filming something +137457;Moving something and something closer to each other +181218;Throwing something +145789;Tipping something over +135451;Showing something on top of something +170986;Something colliding with something and both are being deflected +90060;Holding something +119155;Putting something on a surface +181928;Turning the camera upwards while filming something +64316;Touching (without moving) part of something +32135;Pushing something with something +604;Covering something with something +128295;Moving something and something closer to each other +68433;Taking one of many similar things on the table +140126;Putting something onto something +89591;Plugging something into something +172558;Spinning something so it continues spinning +43457;Closing something +200838;Pretending to take something out of something +165839;Pouring something into something +111084;Moving something and something closer to each other +191944;Squeezing something +40399;Pretending to open something without actually opening it +145146;Stuffing something into something +112138;Turning something upside down +5329;Unfolding something +157958;Putting something on a flat surface without letting it roll +104377;Moving something and something away from each other +191971;Twisting something +219784;Pretending to put something onto something +53704;Covering something with something +36680;Holding something over something +35097;Poking a stack of something so the stack collapses +134634;Folding something +118630;Dropping something into something +198377;Putting something on the edge of something so it is not supported and falls down +150506;Showing something behind something +13239;Something falling like a rock +210792;Holding something +68951;Twisting (wringing) something wet until water comes out +152950;Bending something until it breaks +8371;Pushing something onto something +73956;Covering something with something +141486;Putting something that cannot actually stand upright upright on the table, so it falls on its side +65750;Closing something +181028;Showing that something is empty +104995;Pulling something out of something +122168;Stacking number of something +82167;Lifting something up completely, then letting it drop down +97411;Opening something +134962;Turning the camera upwards while filming something +171066;Pulling something from behind of something +386;Pulling two ends of something so that it separates into two pieces +180356;Putting something on a flat surface without letting it roll +46309;Something falling like a feather or paper +118836;Pretending to put something onto something +34852;Something falling like a feather or paper +27136;Tilting something with something on it until it falls off +73484;Twisting something +9944;Tearing something into two pieces +203949;Putting something on the edge of something so it is not supported and falls down +1335;Pretending to sprinkle air onto something +76507;Pretending to be tearing something that is not tearable +30528;Pretending to throw something +56416;Putting something into something +117092;Pretending or trying and failing to twist something +168817;Holding something +45427;Putting something that cannot actually stand upright upright on the table, so it falls on its side +178766;Hitting something with something +213862;Letting something roll along a flat surface +68286;Pretending to pick something up +39541;Putting something and something on the table +184055;Dropping something into something +46656;Holding something +152099;Removing something, revealing something behind +161122;Unfolding something +55751;Dropping something into something +74346;Pulling something out of something +82558;Putting something on a surface +85820;Moving something and something closer to each other +66746;Putting something that can't roll onto a slanted surface, so it stays where it is +103028;Pouring something out of something +71260;Rolling something on a flat surface +28250;Turning the camera upwards while filming something +163090;Putting something, something and something on the table +45567;Pretending or trying and failing to twist something +51612;Pretending to pick something up +178612;Something falling like a feather or paper +142453;Opening something +136969;Piling something up +83134;Sprinkling something onto something +190245;Tearing something just a little bit +31375;Twisting (wringing) something wet until water comes out +28439;Letting something roll along a flat surface +164477;Holding something +143267;Putting something on a surface +136001;Showing that something is inside something +22757;Turning the camera right while filming something +202785;Pushing something so it spins +36140;Holding something over something +197632;Moving something closer to something +4302;Moving something and something closer to each other +148465;Unfolding something +125850;Pushing something so that it almost falls off but doesn't +90173;Turning the camera left while filming something +15630;Putting something that cannot actually stand upright upright on the table, so it falls on its side +140508;Wiping something off of something +22580;Spinning something so it continues spinning +171421;Pretending to turn something upside down +81279;Pretending to put something next to something +119725;Taking something out of something +169799;Bending something so that it deforms +202706;Turning something upside down +100889;Taking something out of something +212280;Something falling like a rock +163045;Turning something upside down +128471;Something colliding with something and both are being deflected +94924;Lifting something up completely, then letting it drop down +81388;Plugging something into something but pulling it right out as you remove your hand +95434;Holding something over something +157439;Showing something on top of something +164149;Something colliding with something and both are being deflected +207563;Pretending to open something without actually opening it +77542;Something falling like a rock +54634;Holding something next to something +83052;Moving part of something +4193;Spreading something onto something +209725;Taking one of many similar things on the table +157109;Showing a photo of something to the camera +139144;Pushing something with something +163854;Throwing something in the air and letting it fall +55481;Moving something and something closer to each other +118249;Pouring something into something +94585;Rolling something on a flat surface +96015;Bending something so that it deforms +177192;Moving something and something closer to each other +98950;Covering something with something +5494;Lifting something up completely without letting it drop down +114516;Putting something that cannot actually stand upright upright on the table, so it falls on its side +152409;Showing that something is empty +202193;Putting something onto something +136979;Covering something with something +139936;Spilling something onto something +104537;Touching (without moving) part of something +148731;Showing that something is empty +80827;Pulling something from right to left +204150;Tearing something just a little bit +45433;Moving something towards the camera +205059;Wiping something off of something +127959;Something being deflected from something +64844;Pouring something into something +38588;Laying something on the table on its side, not upright +153050;Picking something up +133981;Moving something and something closer to each other +160687;Putting something on a surface +205586;Something falling like a feather or paper +132530;Plugging something into something but pulling it right out as you remove your hand +220044;Pulling something from behind of something +209941;Tipping something with something in it over, so something in it falls out +15348;Putting something similar to other things that are already on the table +61113;Pretending to be tearing something that is not tearable +101933;Squeezing something +121182;Turning something upside down +188464;Tearing something into two pieces +16864;Pulling two ends of something so that it gets stretched +8396;Uncovering something +174800;Pushing something with something +55746;Putting something behind something +34025;Hitting something with something +173509;Pushing something so that it almost falls off but doesn't +39959;Pulling something from behind of something +127662;Pulling something onto something +167358;Pushing something from left to right +72516;Showing something behind something +95207;Holding something +179054;Holding something over something +189306;Putting number of something onto something +91982;Moving something down +20115;Moving something across a surface until it falls down +44541;Unfolding something +129118;Tearing something into two pieces +64802;Moving something across a surface until it falls down +70713;Pretending to be tearing something that is not tearable +164962;Pulling something from right to left +59562;Something being deflected from something +62422;Poking something so lightly that it doesn't or almost doesn't move +124564;Moving something across a surface until it falls down +62144;Pouring something onto something +41673;Something colliding with something and both are being deflected +34388;Showing that something is empty +215443;Moving something up +138255;Something falling like a rock +24549;Pretending to take something from somewhere +152332;Showing something to the camera +212958;Trying to pour something into something, but missing so it spills next to it +52238;Showing something behind something +206010;Putting number of something onto something +191591;Moving something and something so they collide with each other +152447;Showing something on top of something +47560;Throwing something in the air and catching it +146730;Showing something behind something +81629;Letting something roll along a flat surface +108132;Pretending to close something without actually closing it +127851;Moving part of something +302;Lifting something with something on it +2869;Showing something behind something +98798;Uncovering something +10865;Holding something next to something +189415;Moving something closer to something +40256;Squeezing something +69565;Tearing something into two pieces +216671;Holding something over something +109012;Tearing something just a little bit +196873;Putting something into something +113032;Moving something away from something +8081;Dropping something into something +51465;Putting something on a surface +7591;Scooping something up with something +148480;Putting something on a surface +112968;Putting something, something and something on the table +137300;Folding something +2651;Uncovering something +217674;Piling something up +202400;Poking a hole into something soft +118599;Hitting something with something +168665;Hitting something with something +74410;Taking something out of something +105441;Pretending to open something without actually opening it +165857;Tearing something just a little bit +121317;Spinning something so it continues spinning +199345;Poking something so that it falls over +156539;Showing that something is empty +26862;Scooping something up with something +200918;Something falling like a feather or paper +33703;Something falling like a feather or paper +117930;Bending something until it breaks +139487;Holding something behind something +27091;Putting something on a surface +192769;Stuffing something into something +129546;Showing something to the camera +33164;Stuffing something into something +14243;Turning the camera left while filming something +163408;Poking something so lightly that it doesn't or almost doesn't move +195513;Scooping something up with something +153627;Pushing something so it spins +142824;Tipping something with something in it over, so something in it falls out +86712;Pretending to pick something up +70109;Putting something onto something +184664;Closing something +23693;Stacking number of something +170801;Showing something on top of something +82027;Plugging something into something +163794;Pretending to open something without actually opening it +97548;Pushing something from right to left +160649;Dropping something in front of something +142119;Covering something with something +162195;Picking something up +97726;Putting something similar to other things that are already on the table +170581;Spinning something that quickly stops spinning +214771;Spinning something so it continues spinning +203970;Pretending to turn something upside down +189556;Squeezing something +1190;Attaching something to something +87203;Something falling like a rock +161135;Hitting something with something +90663;Touching (without moving) part of something +169084;Showing something behind something +109276;Plugging something into something +18491;Piling something up +127106;Putting something on a surface +74627;Piling something up +139273;Spinning something so it continues spinning +36084;Stuffing something into something +90903;Putting something that cannot actually stand upright upright on the table, so it falls on its side +135680;Moving something and something closer to each other +96435;Pouring something out of something +167017;Moving something and something so they collide with each other +47134;Pulling two ends of something but nothing happens +204009;Letting something roll along a flat surface +12360;Unfolding something +176233;Lifting a surface with something on it until it starts sliding down +114366;Scooping something up with something +127233;Touching (without moving) part of something +60495;Showing something behind something +193115;Holding something next to something +190796;Holding something behind something +134437;Something falling like a feather or paper +20440;Wiping something off of something +49375;Twisting (wringing) something wet until water comes out +13195;Throwing something +48745;Holding something over something +186403;Dropping something next to something +79371;Holding something next to something +111017;Tearing something into two pieces +209815;Picking something up +117259;Putting something in front of something +94861;Putting something on a surface +188583;Plugging something into something but pulling it right out as you remove your hand +12659;Throwing something in the air and catching it +198425;Pulling something from left to right +847;Pushing something so that it almost falls off but doesn't +97167;Putting something next to something +125460;Putting something next to something +165233;Stuffing something into something +13299;Poking something so that it spins around +219862;Covering something with something +65812;Putting something upright on the table +117237;Attaching something to something +93935;Moving something across a surface without it falling down +86013;Pouring something into something until it overflows +186879;Taking something from somewhere +76067;Stacking number of something +39404;Something falling like a feather or paper +126692;Piling something up +68954;Piling something up +11914;Something falling like a rock +199682;Showing something behind something +171283;Pushing something with something +76428;Rolling something on a flat surface +126749;Pushing something from right to left +156348;Letting something roll along a flat surface +80690;Holding something behind something +37570;Holding something behind something +144036;Something falling like a rock +79761;Lifting up one end of something, then letting it drop down +117814;Showing something next to something +168095;Turning something upside down +74217;Rolling something on a flat surface +22626;Moving something closer to something +121685;Holding something behind something +15561;Holding something behind something +178180;Stacking number of something +45696;Squeezing something +176116;Digging something out of something +153797;Pushing something so that it almost falls off but doesn't +5823;Putting something similar to other things that are already on the table +174528;Pouring something into something +12344;Moving something across a surface without it falling down +146325;Plugging something into something +138779;Pretending to pick something up +44796;Pretending to open something without actually opening it +166457;Pretending to poke something +72701;Poking a stack of something without the stack collapsing +165090;Lifting a surface with something on it until it starts sliding down +118157;Covering something with something +123222;Moving something up +137382;Pretending to poke something +16435;Holding something over something +68962;Lifting something up completely, then letting it drop down +183279;Pushing something from right to left +136243;Pushing something so that it falls off the table +187267;Unfolding something +83490;Rolling something on a flat surface +74881;Putting something on a flat surface without letting it roll +14112;Holding something over something +112887;Folding something +18217;Pretending to put something next to something +178030;Turning something upside down +56940;Pretending to poke something +114550;Poking something so it slightly moves +171506;Pretending to take something from somewhere +124540;Poking a stack of something so the stack collapses +25356;Pretending to close something without actually closing it +66862;Pouring something into something +156050;Plugging something into something +78771;Pretending to be tearing something that is not tearable +188563;Pretending to poke something +150121;Holding something in front of something +29016;Plugging something into something +147187;Uncovering something +134602;Burying something in something +166198;Twisting something +118217;Pretending to sprinkle air onto something +83397;Rolling something on a flat surface +114579;Pushing something from left to right +38132;Holding something +168871;Pretending or trying and failing to twist something +36003;Putting something on a surface +126424;Pretending to put something on a surface +220236;Taking something from somewhere +134495;Moving something down +88291;Putting something, something and something on the table +113682;Tilting something with something on it slightly so it doesn't fall down +45593;Dropping something onto something +178901;Pretending to take something from somewhere +101170;Pretending to open something without actually opening it +184910;Tipping something over +161913;Moving something and something away from each other +30441;Pretending to open something without actually opening it +193907;Pretending to turn something upside down +32961;Lifting up one end of something without letting it drop down +194558;Putting number of something onto something +135598;Lifting something up completely, then letting it drop down +200456;Turning the camera left while filming something +31731;Showing something next to something +110571;Lifting something with something on it +45414;Poking a stack of something so the stack collapses +140486;Moving something and something so they collide with each other +131212;Pushing something so it spins +213712;Plugging something into something +92103;Pretending to close something without actually closing it +64343;Pushing something from right to left +91829;Pretending to squeeze something +159239;Poking something so it slightly moves +95980;Pulling something out of something +21227;Turning something upside down +181500;Removing something, revealing something behind +76189;Moving part of something +147208;Putting something on a surface +151680;Plugging something into something +105027;Putting something on a surface +212625;Plugging something into something but pulling it right out as you remove your hand +66586;Pretending to be tearing something that is not tearable +197120;Squeezing something +199793;Moving something and something closer to each other +123096;Dropping something onto something +130940;Pretending to throw something +195200;Moving something and something away from each other +137972;Removing something, revealing something behind +79090;Piling something up +203365;Picking something up +15353;Moving something away from something +56831;Throwing something against something +5917;Holding something +147378;Plugging something into something +159944;Picking something up +212109;Turning the camera right while filming something +135505;Covering something with something +140746;Putting something on a surface +193027;Moving something up +57431;Poking a stack of something so the stack collapses +188680;Touching (without moving) part of something +41979;Pretending to take something out of something +85317;Tearing something into two pieces +199517;Spinning something that quickly stops spinning +142413;Plugging something into something +211327;Closing something +107112;Pretending or failing to wipe something off of something +29518;Bending something so that it deforms +14014;Showing something behind something +66910;Putting something into something +11129;Tearing something into two pieces +95420;Squeezing something +73509;Moving something across a surface until it falls down +163200;Touching (without moving) part of something +61644;Putting something similar to other things that are already on the table +42710;Putting something on a surface +135016;Plugging something into something +218799;Plugging something into something but pulling it right out as you remove your hand +107415;Moving something and something closer to each other +159975;Pushing something from left to right +115395;Throwing something in the air and catching it +174725;Turning the camera left while filming something +13703;Moving something and something closer to each other +44790;Putting something into something +173935;Moving something up +42508;Pushing something so it spins +71840;Burying something in something +47790;Covering something with something +120732;Folding something +142750;Lifting something up completely, then letting it drop down +46956;Holding something +43896;Spinning something so it continues spinning +27633;Showing something next to something +101906;Plugging something into something +94430;Letting something roll down a slanted surface +154197;Showing something on top of something +143064;Moving something away from something +29384;Showing that something is empty +117497;Pretending to be tearing something that is not tearable +110928;Tearing something into two pieces +1219;Bending something until it breaks +103148;Spinning something so it continues spinning +174910;Picking something up +70623;Folding something +191317;Hitting something with something +174696;Spinning something so it continues spinning +119147;Poking something so it slightly moves +435;Spreading something onto something +99532;Putting something next to something +166800;Pushing something so that it falls off the table +28232;Holding something in front of something +90108;Holding something +44718;Throwing something onto a surface +29740;Lifting something with something on it +14336;Tilting something with something on it slightly so it doesn't fall down +155018;Holding something over something +188439;Bending something so that it deforms +3639;Picking something up +58876;Holding something behind something +197937;Plugging something into something +208632;Tipping something with something in it over, so something in it falls out +164362;Putting something similar to other things that are already on the table +103155;Putting something into something +95561;Putting something on a surface +126601;Pretending to close something without actually closing it +96580;Holding something behind something +193022;Holding something +123466;Wiping something off of something +105889;Putting something similar to other things that are already on the table +79262;Plugging something into something +60858;Throwing something +52959;Pulling something from left to right +130142;Wiping something off of something +127333;Putting something that can't roll onto a slanted surface, so it stays where it is +158773;Twisting (wringing) something wet until water comes out +80137;Stacking number of something +11437;Taking something from somewhere +123930;Pulling two ends of something so that it separates into two pieces +164075;Pretending to put something into something +135613;Tearing something just a little bit +29126;Pushing something so that it slightly moves +103684;Covering something with something +48365;Pretending to put something into something +210756;Plugging something into something but pulling it right out as you remove your hand +213237;Moving part of something +1000;Moving something up +18382;Holding something behind something +156813;Taking one of many similar things on the table +79881;Pretending to pour something out of something, but something is empty +187019;Moving something down +2905;Pretending to throw something +51616;Tearing something just a little bit +173357;Pretending or trying and failing to twist something +71946;Moving something closer to something +36679;Moving something and something so they pass each other +107198;Spinning something so it continues spinning +107098;Holding something in front of something +183444;Pretending or trying and failing to twist something +22507;Opening something +76023;Showing that something is inside something +114108;Turning the camera downwards while filming something +105973;Lifting something up completely, then letting it drop down +21573;Pulling something from behind of something +42914;Laying something on the table on its side, not upright +159955;Covering something with something +84525;Moving something down +198721;Closing something +117586;Removing something, revealing something behind +21455;Opening something +218174;Trying to pour something into something, but missing so it spills next to it +140931;Pretending to be tearing something that is not tearable +171955;Squeezing something +199969;Moving something closer to something +181299;Tearing something just a little bit +61111;Pushing something from left to right +84257;Pretending to poke something +193094;Closing something +86577;Moving something and something away from each other +216310;Poking something so lightly that it doesn't or almost doesn't move +94584;Putting something in front of something +12590;Holding something +159567;Putting something, something and something on the table +81557;Turning something upside down +26261;Pushing something with something +99551;Holding something over something +188765;Pulling two ends of something so that it separates into two pieces +163196;Dropping something next to something +107047;Putting something upright on the table +126894;Squeezing something +76092;Turning something upside down +29646;Dropping something onto something +82315;Holding something +46198;Stacking number of something +54661;Dropping something in front of something +112364;Moving something and something closer to each other +116789;Pretending to sprinkle air onto something +165247;Dropping something into something +191497;Tilting something with something on it until it falls off +120723;Dropping something onto something +171978;Pouring something out of something +19002;Picking something up +109454;Bending something so that it deforms +7141;Turning something upside down +203001;Pretending to spread air onto something +59118;Picking something up +89314;Dropping something next to something +146764;Twisting (wringing) something wet until water comes out +79327;Dropping something in front of something +81879;Wiping something off of something +175047;Turning something upside down +184354;Lifting something up completely without letting it drop down +191593;Lifting up one end of something, then letting it drop down +169341;Dropping something into something +86470;Putting something that can't roll onto a slanted surface, so it slides down +65655;Moving something towards the camera +90795;Dropping something behind something +206143;Pretending to scoop something up with something +103728;Moving something and something away from each other +108865;Poking something so lightly that it doesn't or almost doesn't move +148054;Putting something into something +5164;Pretending to put something onto something +125335;Pretending to put something behind something +83321;Tearing something just a little bit +55924;Attaching something to something +180506;Picking something up +195568;Dropping something behind something +44878;Letting something roll down a slanted surface +13805;Dropping something behind something +67364;Putting something next to something +30580;Moving something and something away from each other +120153;Plugging something into something +67321;Putting something upright on the table +180752;Poking something so that it spins around +15214;Picking something up +133218;Pretending to open something without actually opening it +209653;Showing that something is empty +114109;Pulling two ends of something so that it gets stretched +150048;Tipping something over +182939;Pretending to poke something +120717;Pretending to pick something up +29168;Pouring something into something +107065;Something falling like a feather or paper +6495;Pretending to squeeze something +168179;Showing something next to something +16107;Bending something so that it deforms +152764;Putting something into something +34370;Bending something until it breaks +161332;Moving something and something closer to each other +168410;Tearing something into two pieces +61396;Moving something across a surface until it falls down +151799;Pretending to take something out of something +216812;Covering something with something +21470;Putting something that cannot actually stand upright upright on the table, so it falls on its side +35881;Pushing something so that it almost falls off but doesn't +172996;Uncovering something +62136;Lifting a surface with something on it until it starts sliding down +141248;Showing something next to something +202710;Dropping something into something +14837;Lifting up one end of something without letting it drop down +83392;Lifting something with something on it +97514;Pretending to pick something up +114700;Plugging something into something +38581;Putting something on a flat surface without letting it roll +37503;Throwing something in the air and letting it fall +71623;Pretending to put something on a surface +30106;Lifting a surface with something on it until it starts sliding down +177692;Unfolding something +111572;Covering something with something +101012;Turning something upside down +162553;Putting something on a surface +209456;Turning something upside down +210113;Squeezing something +66393;Pushing something from left to right +81044;Pushing something so that it almost falls off but doesn't +127989;Trying but failing to attach something to something because it doesn't stick +217147;Holding something in front of something +76564;Plugging something into something +216490;Covering something with something +102531;Throwing something onto a surface +97177;Wiping something off of something +217951;Unfolding something +211000;Something falling like a feather or paper +199407;Putting something onto something +184054;Piling something up +168308;Moving something and something so they collide with each other +154579;Dropping something next to something +41890;Putting something that can't roll onto a slanted surface, so it stays where it is +142595;Moving something and something away from each other +150932;Holding something in front of something +195346;Hitting something with something +110989;Something falling like a rock +89800;Holding something behind something +136518;Lifting something up completely, then letting it drop down +9324;Unfolding something +46355;Throwing something in the air and catching it +201326;Taking something out of something +39851;Rolling something on a flat surface +61302;Moving something closer to something +184156;Uncovering something +168472;Pretending to pour something out of something, but something is empty +14690;Moving something and something away from each other +100571;Pushing something so it spins +49217;Poking something so it slightly moves +6289;Moving something up +8369;Putting something on the edge of something so it is not supported and falls down +42989;Poking a stack of something without the stack collapsing +101509;Taking one of many similar things on the table +216721;Putting something next to something +33081;Poking something so lightly that it doesn't or almost doesn't move +17286;Pushing something from left to right +31215;Turning the camera right while filming something +208704;Holding something +104560;Throwing something +28950;Pulling something from left to right +110422;Sprinkling something onto something +18252;Turning the camera right while filming something +79036;Pretending to turn something upside down +75863;Putting something on a surface +90309;Pushing something so that it slightly moves +4158;Wiping something off of something +35495;Throwing something +215151;Spinning something so it continues spinning +119097;Bending something until it breaks +68049;Moving something towards the camera +113238;Plugging something into something but pulling it right out as you remove your hand +88809;Pretending to be tearing something that is not tearable +28524;Showing something next to something +32989;Plugging something into something +66229;Putting something on a surface +53032;Lifting something up completely without letting it drop down +89066;Moving something across a surface without it falling down +126845;Moving something and something closer to each other +88606;Holding something over something +161229;Showing that something is inside something +135804;Pulling something from left to right +137267;Scooping something up with something +178444;Moving something and something closer to each other +28104;Pulling two ends of something but nothing happens +65359;Removing something, revealing something behind +82689;Trying to bend something unbendable so nothing happens +70550;Failing to put something into something because something does not fit +205641;Moving something towards the camera +69290;Pretending to open something without actually opening it +95014;Putting something similar to other things that are already on the table +216206;Putting something on a surface +215184;Piling something up +66541;Spreading something onto something +965;Moving something away from something +186210;Turning the camera left while filming something +674;Spinning something that quickly stops spinning +86923;Pretending to turn something upside down +185254;Folding something +93595;Showing a photo of something to the camera +6194;Pretending to be tearing something that is not tearable +67509;Pretending to throw something +89170;Throwing something in the air and catching it +39069;Throwing something +200953;Bending something until it breaks +189288;Hitting something with something +84418;Something colliding with something and both come to a halt +101261;Dropping something into something +81797;Spinning something so it continues spinning +91569;Taking something from somewhere +92083;Moving something closer to something +170607;Moving something and something away from each other +23922;Holding something behind something +175106;Folding something +122942;Pushing something so that it almost falls off but doesn't +89015;Moving something towards the camera +33077;Closing something +29029;Something falling like a rock +7937;Showing something on top of something +124751;Pouring something into something +196324;Moving something and something away from each other +6730;Holding something next to something +35917;Turning the camera upwards while filming something +67753;Bending something until it breaks +6963;Covering something with something +162577;Folding something +187839;Throwing something against something +141619;Pushing something so that it falls off the table +158826;Pulling something from left to right +19987;Pretending to take something from somewhere +126594;Stuffing something into something +1337;Hitting something with something +50450;Taking something from somewhere +22218;Dropping something in front of something +13786;Pretending or failing to wipe something off of something +62876;Pouring something into something +170742;Dropping something onto something +108528;Putting something similar to other things that are already on the table +60274;Pretending to sprinkle air onto something +36696;Turning the camera downwards while filming something +1590;Pretending to put something next to something +95231;Moving something and something so they pass each other +186869;Moving something up +98476;Something falling like a feather or paper +541;Tilting something with something on it until it falls off +219809;Putting something onto something +40516;Spinning something so it continues spinning +137129;Spinning something that quickly stops spinning +96690;Pretending to open something without actually opening it +141424;Plugging something into something +210015;Turning something upside down +73694;Throwing something +163861;Pushing something so that it falls off the table +74182;Trying to bend something unbendable so nothing happens +156598;Putting something upright on the table +141185;Putting something upright on the table +71667;Putting something similar to other things that are already on the table +124323;Pushing something from right to left +137760;Plugging something into something +78330;Moving part of something +165318;Putting something that cannot actually stand upright upright on the table, so it falls on its side +140960;Opening something +103677;Lifting up one end of something without letting it drop down +214269;Twisting something +30539;Pushing something so that it slightly moves +18364;Taking one of many similar things on the table +28240;Pretending to be tearing something that is not tearable +49218;Putting something into something +193339;Moving something away from something +78397;Putting something similar to other things that are already on the table +3398;Spinning something so it continues spinning +46495;Pretending to put something into something +17158;Spinning something that quickly stops spinning +76063;Pouring something onto something +24166;Tilting something with something on it until it falls off +194803;Tipping something over +173940;Holding something next to something +29484;Putting something on a surface +18625;Pretending to be tearing something that is not tearable +96631;Turning something upside down +219212;Piling something up +70224;Moving something away from something +190328;Moving something down +47612;Dropping something next to something +125251;Pulling two ends of something so that it gets stretched +190223;Lifting something with something on it +122662;Putting something behind something +24722;Holding something +83029;Pulling something from behind of something +79645;Holding something in front of something +188034;Putting something similar to other things that are already on the table +86023;Dropping something into something +1285;Something falling like a feather or paper +207954;Moving something and something away from each other +64776;Plugging something into something +83697;Scooping something up with something +89941;Pouring something into something +75041;Pouring something into something +192139;Opening something +178089;Putting something similar to other things that are already on the table +187472;Throwing something in the air and catching it +191619;Pushing something so that it slightly moves +84848;Poking something so lightly that it doesn't or almost doesn't move +29158;Turning something upside down +70197;Stacking number of something +199952;Opening something +148663;Picking something up +19914;Stacking number of something +24771;Throwing something +12656;Plugging something into something +96020;Holding something behind something +105400;Rolling something on a flat surface +203226;Showing something behind something +192284;Covering something with something +148194;Pushing something from right to left +155219;Covering something with something +136109;Holding something over something +2687;Moving part of something +119006;Pulling something from left to right +91988;Putting something, something and something on the table +14619;Pretending or trying and failing to twist something +72469;Pushing something with something +36361;Showing that something is empty +89339;Showing something on top of something +111629;Moving away from something with your camera +69022;Scooping something up with something +108207;Stacking number of something +145318;Lifting up one end of something without letting it drop down +43667;Turning something upside down +89888;Poking something so that it falls over +202745;Hitting something with something +75427;Stacking number of something +126724;Squeezing something +169744;Moving something up +38758;Taking one of many similar things on the table +168039;Something being deflected from something +66579;Holding something behind something +51452;Pretending to close something without actually closing it +51887;Stacking number of something +68959;Pushing something so that it slightly moves +129461;Attaching something to something +33673;Hitting something with something +147062;Putting something onto a slanted surface but it doesn't glide down +62106;Tilting something with something on it until it falls off +134961;Throwing something against something +102018;Letting something roll down a slanted surface +173870;Tipping something over +128977;Pouring something into something +214075;Pouring something into something +92519;Tearing something just a little bit +52462;Putting number of something onto something +139574;Pretending to put something on a surface +121945;Showing something on top of something +62520;Turning something upside down +219417;Moving something down +111175;Tipping something with something in it over, so something in it falls out +102695;Throwing something +138283;Lifting something with something on it +106148;Twisting (wringing) something wet until water comes out +171930;Pouring something out of something +209769;Spinning something so it continues spinning +101922;Uncovering something +114497;Showing something behind something +192728;Showing something behind something +129517;Showing that something is inside something +89772;Showing something on top of something +66567;Dropping something into something +54303;Showing something next to something +151124;Pretending to take something from somewhere +18237;Putting something on the edge of something so it is not supported and falls down +147477;Putting something on a surface +86888;Tipping something over +153408;Putting something in front of something +101212;Pretending to sprinkle air onto something +149007;Moving something and something closer to each other +143200;Letting something roll along a flat surface +90419;Holding something behind something +218675;Wiping something off of something +196166;Holding something next to something +105266;Tearing something just a little bit +105847;Showing something on top of something +130678;Holding something in front of something +31396;Taking something out of something +133062;Putting something next to something +129342;Pushing something from right to left +108634;Turning something upside down +67676;Something falling like a rock +83254;Tearing something into two pieces +187262;Showing something on top of something +34620;Tipping something over +213874;Dropping something next to something +177063;Pushing something so that it falls off the table +99376;Pushing something from right to left +146056;Plugging something into something +152433;Stacking number of something +42464;Laying something on the table on its side, not upright +36777;Attaching something to something +78092;Digging something out of something +139947;Touching (without moving) part of something +20335;Tipping something over +110652;Moving something up +131685;Showing something behind something +42794;Pushing something from left to right +96113;Touching (without moving) part of something +169604;Something falling like a feather or paper +64982;Showing something on top of something +588;Stacking number of something +140436;Something falling like a rock +103386;Tilting something with something on it until it falls off +148337;Moving something and something closer to each other +102769;Turning something upside down +63520;Pretending to be tearing something that is not tearable +23428;Lifting something up completely without letting it drop down +123838;Pretending or failing to wipe something off of something +43427;Putting something onto something +38241;Pouring something into something until it overflows +116726;Holding something over something +45751;Tearing something just a little bit +165473;Moving something down +149433;Pouring something into something +173493;Putting something behind something +8265;Moving something and something away from each other +128111;Hitting something with something +967;Moving something closer to something +25767;Putting something next to something +106974;Tearing something just a little bit +151241;Pushing something so that it slightly moves +167528;Bending something so that it deforms +147149;Showing something behind something +30598;Pouring something into something +82396;Pushing something so that it falls off the table +69569;Holding something behind something +118574;Spreading something onto something +195753;Turning the camera left while filming something +210006;Moving something up +152590;Turning something upside down +168489;Bending something so that it deforms +157005;Moving something and something away from each other +35452;Hitting something with something +203207;Poking something so that it spins around +87300;Holding something next to something +107231;Spinning something that quickly stops spinning +7678;Pretending to be tearing something that is not tearable +20174;Digging something out of something +152030;Pushing something so that it falls off the table +125561;Taking something out of something +137938;Rolling something on a flat surface +147882;Putting something, something and something on the table +53646;Putting something on a surface +155268;Showing that something is empty +75059;Holding something +131508;Pushing something from left to right +56218;Unfolding something +3451;Holding something over something +141830;Lifting something up completely, then letting it drop down +135834;Picking something up +111524;Pushing something onto something +2596;Pouring something into something +63727;Covering something with something +31120;Holding something over something +158106;Pushing something so that it slightly moves +1139;Touching (without moving) part of something +84363;Letting something roll along a flat surface +37319;Twisting something +211437;Failing to put something into something because something does not fit +61139;Lifting a surface with something on it until it starts sliding down +24916;Putting something into something +208673;Moving something and something closer to each other +155;Unfolding something +1681;Folding something +135125;Tipping something over +143184;Pulling something onto something +102920;Turning something upside down +87298;Pushing something so it spins +19220;Laying something on the table on its side, not upright +165709;Wiping something off of something +109784;Moving something across a surface until it falls down +188985;Pretending to sprinkle air onto something +74561;Pushing something so that it slightly moves +204117;Folding something +112679;Pushing something so that it slightly moves +148823;Dropping something onto something +66401;Dropping something behind something +7825;Bending something so that it deforms +36041;Rolling something on a flat surface +174029;Pulling something from right to left +147138;Pouring something onto something +94903;Taking one of many similar things on the table +219562;Tilting something with something on it slightly so it doesn't fall down +73243;Showing that something is inside something +85227;Lifting up one end of something without letting it drop down +43693;Squeezing something +167253;Holding something behind something +138517;Letting something roll along a flat surface +124736;Putting something behind something +211020;Plugging something into something but pulling it right out as you remove your hand +127955;Throwing something in the air and catching it +170582;Pretending to pick something up +87651;Bending something so that it deforms +103153;Pushing something so that it falls off the table +182457;Moving something and something so they collide with each other +163061;Plugging something into something +195389;Trying to bend something unbendable so nothing happens +75844;Plugging something into something +28780;Moving something closer to something +122917;Covering something with something +128000;Pretending to pick something up +23751;Holding something over something +125275;Pouring something into something +149482;Holding something behind something +182125;Pushing something so that it falls off the table +90923;Putting something next to something +175029;Something colliding with something and both are being deflected +217814;Turning the camera right while filming something +107653;Stacking number of something +73318;Putting something that can't roll onto a slanted surface, so it stays where it is +120302;Moving something and something closer to each other +80914;Throwing something +150962;Poking a hole into something soft +16503;Tearing something just a little bit +32889;Pushing something so that it slightly moves +110092;Moving something and something closer to each other +213622;Trying but failing to attach something to something because it doesn't stick +69941;Burying something in something +72474;Putting something similar to other things that are already on the table +104540;Moving something across a surface without it falling down +63603;Turning something upside down +205507;Pretending to put something on a surface +122138;Showing that something is empty +28115;Showing something behind something +182010;Putting something into something +35422;Tilting something with something on it until it falls off +110097;Opening something +116573;Putting something that can't roll onto a slanted surface, so it slides down +158262;Sprinkling something onto something +149342;Moving something down +172;Bending something so that it deforms +191645;Putting something upright on the table +69866;Pretending to close something without actually closing it +196854;Pushing something so that it falls off the table +121614;Removing something, revealing something behind +49535;Taking something out of something +58364;Turning something upside down +25338;Pretending to put something on a surface +174404;Lifting up one end of something, then letting it drop down +112130;Pushing something so that it slightly moves +144616;Putting something similar to other things that are already on the table +40832;Twisting something +11223;Pretending to open something without actually opening it +75140;Pretending to open something without actually opening it +94219;Unfolding something +87639;Pushing something so that it slightly moves +99984;Plugging something into something but pulling it right out as you remove your hand +180431;Trying to bend something unbendable so nothing happens +5619;Picking something up +144356;Pulling something onto something +132044;Showing something on top of something +20624;Turning something upside down +25074;Pretending to squeeze something +56878;Moving something away from something +114483;Dropping something into something +171117;Moving something across a surface without it falling down +158486;Putting something on a flat surface without letting it roll +128066;Poking something so lightly that it doesn't or almost doesn't move +76953;Pretending to turn something upside down +66718;Pouring something into something +70293;Opening something +207412;Something falling like a feather or paper +193430;Letting something roll up a slanted surface, so it rolls back down +78686;Pouring something out of something +22919;Pushing something with something +122086;Opening something +49937;Dropping something in front of something +218418;Putting something upright on the table +257;Covering something with something +52012;Pouring something into something +98736;Spinning something so it continues spinning +59777;Showing something next to something +113462;Lifting up one end of something without letting it drop down +104099;Spinning something that quickly stops spinning +171773;Stacking number of something +92201;Pretending to take something out of something +27338;Putting something into something +56798;Piling something up +57231;Pushing something from right to left +193665;Picking something up +188336;Letting something roll along a flat surface +149770;Stuffing something into something +130422;Stuffing something into something +156075;Plugging something into something +11886;Turning something upside down +39566;Pushing something off of something +132370;Taking something from somewhere +47048;Pouring something into something +174829;Throwing something onto a surface +193203;Something being deflected from something +9573;Turning something upside down +187997;Throwing something in the air and catching it +94510;Pretending to throw something +125326;Dropping something onto something +27350;Poking something so it slightly moves +151750;Moving part of something +217758;Pretending to squeeze something +49628;Turning something upside down +15048;Pushing something so that it slightly moves +11470;Lifting something with something on it +48078;Letting something roll down a slanted surface +68929;Moving something and something so they collide with each other +136710;Lifting a surface with something on it until it starts sliding down +107980;Turning something upside down +195436;Covering something with something +111027;Trying but failing to attach something to something because it doesn't stick +161994;Pretending to pick something up +25742;Lifting something with something on it +96954;Pushing something so that it falls off the table +1396;Moving something down +32663;Squeezing something +88155;Holding something behind something +139709;Wiping something off of something +131116;Bending something until it breaks +498;Turning something upside down +177892;Covering something with something +42327;Pretending to poke something +132768;Attaching something to something +198587;Moving something and something closer to each other +139601;Lifting something with something on it +56246;Putting something into something +204593;Spinning something that quickly stops spinning +25482;Something falling like a feather or paper +104316;Bending something so that it deforms +58109;Putting something that can't roll onto a slanted surface, so it slides down +62909;Lifting up one end of something, then letting it drop down +80076;Tearing something into two pieces +206908;Pouring something into something +78525;Stacking number of something +43714;Tipping something over +171383;Showing that something is inside something +206912;Pretending to poke something +44178;Holding something +38494;Something falling like a rock +219428;Moving something and something away from each other +87529;Tearing something into two pieces +79585;Putting something that can't roll onto a slanted surface, so it slides down +6204;Pulling something from left to right +160925;Something falling like a feather or paper +215165;Poking something so lightly that it doesn't or almost doesn't move +7340;Something falling like a rock +123356;Holding something behind something +173760;Spinning something that quickly stops spinning +67258;Putting something behind something +29854;Spreading something onto something +87701;Squeezing something +76693;Touching (without moving) part of something +128410;Stuffing something into something +50101;Folding something +80887;Folding something +27278;Moving something and something closer to each other +156291;Tearing something just a little bit +12170;Pouring something into something +72619;Lifting something up completely, then letting it drop down +31421;Putting something on a surface +136776;Tipping something over +68440;Stuffing something into something +25749;Taking something out of something +4871;Holding something next to something +162393;Lifting a surface with something on it but not enough for it to slide down +127403;Tearing something into two pieces +118383;Rolling something on a flat surface +172860;Plugging something into something but pulling it right out as you remove your hand +18546;Pulling something from left to right +146488;Pushing something with something +66984;Turning something upside down +14638;Sprinkling something onto something +11807;Moving part of something +69216;Showing something behind something +24764;Twisting (wringing) something wet until water comes out +183994;Closing something +199327;Something falling like a rock +219469;Pouring something into something +101240;Stacking number of something +187510;Spinning something that quickly stops spinning +175504;Putting something into something +128560;Showing that something is empty +135366;Hitting something with something +51955;Laying something on the table on its side, not upright +134930;Pretending to open something without actually opening it +11980;Moving something and something closer to each other +124281;Moving something up +128876;Taking one of many similar things on the table +39773;Attaching something to something +139596;Putting number of something onto something +190880;Moving something and something closer to each other +35854;Pouring something into something +172248;Pretending to take something from somewhere +138708;Hitting something with something +194832;Lifting something with something on it +148575;Putting something on a surface +30931;Tipping something over +92154;Pushing something so that it slightly moves +149889;Pouring something into something +161804;Pretending to throw something +173899;Throwing something +123690;Pushing something with something +169037;Something falling like a feather or paper +58171;Showing something behind something +93610;Rolling something on a flat surface +74646;Pretending to throw something +85173;Bending something so that it deforms +33801;Letting something roll down a slanted surface +88088;Holding something over something +73203;Dropping something into something +56982;Pushing something with something +144083;Throwing something +60369;Pulling something from right to left +214068;Pulling two ends of something but nothing happens +73282;Poking a stack of something so the stack collapses +144076;Stuffing something into something +35729;Taking one of many similar things on the table +206915;Tearing something just a little bit +58117;Uncovering something +17066;Throwing something onto a surface +49577;Laying something on the table on its side, not upright +88886;Holding something over something +214707;Poking something so lightly that it doesn't or almost doesn't move +196437;Holding something next to something +27636;Putting something that cannot actually stand upright upright on the table, so it falls on its side +178606;Rolling something on a flat surface +216976;Pouring something out of something +18635;Moving something and something closer to each other +179914;Throwing something in the air and letting it fall +103417;Plugging something into something but pulling it right out as you remove your hand +13898;Bending something until it breaks +215982;Taking something out of something +67803;Unfolding something +8263;Attaching something to something +219871;Putting something similar to other things that are already on the table +76412;Showing that something is inside something +201683;Dropping something onto something +53450;Putting something into something +49774;Moving something and something closer to each other +40637;Holding something over something +67857;Putting something into something +72107;Trying to bend something unbendable so nothing happens +178797;Turning the camera downwards while filming something +144534;Showing that something is empty +159797;Plugging something into something +27874;Plugging something into something +53218;Holding something behind something +122574;Putting something in front of something +99428;Taking one of many similar things on the table +35506;Pretending to poke something +107435;Spilling something onto something +44874;Pretending to pick something up +42346;Rolling something on a flat surface +21733;Pushing something so that it slightly moves +45778;Pretending to be tearing something that is not tearable +199279;Putting something and something on the table +38042;Something falling like a rock +112804;Pretending to be tearing something that is not tearable +207832;Pouring something onto something +89207;Pushing something so that it slightly moves +197376;Plugging something into something but pulling it right out as you remove your hand +180941;Something falling like a feather or paper +107005;Putting something underneath something +75011;Putting something on a surface +115695;Throwing something +144209;Plugging something into something +140909;Showing that something is empty +37047;Pretending to put something on a surface +30590;Poking a stack of something so the stack collapses +178662;Lifting something with something on it +131238;Putting something behind something +173199;Putting something similar to other things that are already on the table +18128;Folding something +193320;Putting something on a surface +143132;Moving something and something away from each other +145702;Uncovering something +130432;Showing something behind something +199936;Moving part of something +83148;Stacking number of something +22716;Moving something closer to something +85144;Dropping something onto something +31253;Putting something onto something +165392;Throwing something +19008;Pulling something from left to right +19054;Putting something similar to other things that are already on the table +66001;Uncovering something +136659;Pulling something out of something +15149;Putting something onto something else that cannot support it so it falls down +173917;Moving something across a surface without it falling down +76592;Moving something and something closer to each other +219741;Pushing something onto something +159681;Poking something so that it falls over +102559;Something colliding with something and both come to a halt +10113;Throwing something onto a surface +171197;Moving something down +141434;Holding something next to something +20747;Putting something underneath something +90017;Moving something closer to something +9236;Putting something on a flat surface without letting it roll +37251;Turning the camera left while filming something +16061;Throwing something +7961;Something falling like a feather or paper +154150;Putting number of something onto something +64866;Pouring something into something +36005;Something falling like a rock +59600;Approaching something with your camera +187826;Taking something out of something +203620;Letting something roll down a slanted surface +167742;Moving something away from something +31114;Tearing something just a little bit +89173;Moving something and something away from each other +149282;Tipping something over +155509;Touching (without moving) part of something +173192;Pouring something into something until it overflows +206111;Something falling like a feather or paper +219111;Rolling something on a flat surface +32798;Pouring something into something +70322;Pouring something into something +127445;Turning something upside down +69442;Touching (without moving) part of something +145060;Showing something behind something +162185;Showing that something is empty +200618;Pulling something out of something +143863;Rolling something on a flat surface +168193;Attaching something to something +70377;Holding something next to something +72161;Pretending to pour something out of something, but something is empty +182629;Tearing something into two pieces +38367;Attaching something to something +145058;Letting something roll along a flat surface +82858;Showing something behind something +59000;Moving something closer to something +55768;Wiping something off of something +150791;Moving something and something closer to each other +217354;Touching (without moving) part of something +29010;Moving something closer to something +5620;Squeezing something +50935;Holding something in front of something +198599;Showing a photo of something to the camera +12191;Poking something so lightly that it doesn't or almost doesn't move +194515;Picking something up +124376;Showing something on top of something +44852;Showing that something is inside something +173047;Touching (without moving) part of something +196968;Throwing something in the air and letting it fall +170559;Rolling something on a flat surface +83337;Pretending to throw something +182277;Sprinkling something onto something +144657;Pretending to take something from somewhere +139362;Trying but failing to attach something to something because it doesn't stick +116409;Opening something +17078;Moving something closer to something +53736;Pushing something with something +118234;Pretending to close something without actually closing it +101575;Dropping something behind something +20166;Poking something so that it falls over +137199;Bending something until it breaks +180223;Plugging something into something +38534;Removing something, revealing something behind +98990;Moving something down +213525;Stuffing something into something +220082;Twisting something +28833;Holding something +121485;Tearing something into two pieces +156763;Showing something behind something +132465;Pretending to turn something upside down +204399;Lifting something up completely without letting it drop down +33331;Lifting something up completely, then letting it drop down +180186;Plugging something into something +119855;Lifting up one end of something without letting it drop down +192742;Uncovering something +78442;Closing something +178002;Putting something underneath something +216164;Lifting something with something on it +165954;Something colliding with something and both come to a halt +148272;Holding something over something +218554;Pretending to close something without actually closing it +90100;Opening something +180609;Pretending to put something on a surface +156716;Pretending to be tearing something that is not tearable +84129;Scooping something up with something +42372;Dropping something behind something +209300;Throwing something onto a surface +39207;Twisting (wringing) something wet until water comes out +113533;Putting something similar to other things that are already on the table +176946;Pushing something so that it falls off the table +133566;Spinning something that quickly stops spinning +81743;Moving something and something away from each other +75160;Twisting (wringing) something wet until water comes out +19819;Letting something roll along a flat surface +161966;Turning something upside down +16594;Picking something up +162146;Lifting something with something on it +71754;Pushing something with something +184367;Holding something +70817;Bending something so that it deforms +91264;Dropping something onto something +186277;Turning the camera upwards while filming something +88742;Showing that something is empty +111980;Pouring something out of something +69728;Plugging something into something +156162;Taking one of many similar things on the table +164360;Plugging something into something but pulling it right out as you remove your hand +112376;Touching (without moving) part of something +71638;Moving something closer to something +126493;Dropping something into something +115798;Taking something out of something +40896;Tearing something just a little bit +156248;Tearing something into two pieces +98170;Lifting something with something on it +10267;Pushing something so that it slightly moves +185505;Moving something away from something +49270;Holding something behind something +217375;Putting something into something +45441;Letting something roll along a flat surface +189060;Holding something over something +113835;Stacking number of something +71174;Dropping something onto something +17841;Moving away from something with your camera +22128;Putting something and something on the table +36171;Putting something into something +20696;Dropping something in front of something +118684;Plugging something into something +35426;Letting something roll up a slanted surface, so it rolls back down +39341;Putting something in front of something +63082;Poking something so it slightly moves +92671;Tearing something just a little bit +55344;Dropping something into something +96934;Showing that something is empty +99340;Moving something and something closer to each other +115878;Bending something so that it deforms +110644;Throwing something +20392;Putting something into something +208467;Pulling something from behind of something +33788;Twisting something +112355;Moving something closer to something +55058;Burying something in something +162886;Moving something closer to something +108115;Removing something, revealing something behind +31137;Twisting something +30101;Unfolding something +94270;Moving something away from something +124291;Pushing something from left to right +83647;Pretending to pick something up +11445;Removing something, revealing something behind +69681;Pushing something off of something +43046;Twisting something +172158;Bending something until it breaks +13897;Lifting something up completely without letting it drop down +8093;Folding something +126008;Plugging something into something +14259;Moving something closer to something +145711;Pushing something from left to right +109179;Moving something across a surface until it falls down +36179;Putting number of something onto something +150432;Holding something +14332;Showing something behind something +117414;Holding something behind something +64344;Pushing something so that it almost falls off but doesn't +62657;Sprinkling something onto something +88771;Pretending to open something without actually opening it +29522;Moving something and something away from each other +96854;Showing something behind something +149091;Opening something +189656;Showing something behind something +102257;Pretending to pick something up +189724;Hitting something with something +103016;Squeezing something +7628;Pushing something so that it slightly moves +207203;Pouring something into something +214660;Pushing something from left to right +7035;Opening something +171089;Holding something over something +173790;Lifting up one end of something, then letting it drop down +19281;Putting something on a surface +3523;Putting something on a surface +99098;Tearing something into two pieces +218241;Turning something upside down +98403;Removing something, revealing something behind +79727;Pretending to put something into something +139291;Tearing something into two pieces +55850;Something falling like a rock +192606;Pulling something from behind of something +146217;Something being deflected from something +84096;Throwing something +176444;Putting something, something and something on the table +92069;Pretending to close something without actually closing it +219835;Pushing something from right to left +35567;Plugging something into something +186977;Something falling like a rock +59608;Pouring something out of something +191003;Holding something in front of something +136388;Putting something onto something +142247;Lifting something up completely without letting it drop down +119389;Closing something +41069;Holding something over something +208053;Closing something +2345;Putting something on a surface +16577;Rolling something on a flat surface +107593;Putting something that cannot actually stand upright upright on the table, so it falls on its side +125451;Putting something on a surface +14099;Putting something in front of something +163892;Pretending to put something on a surface +116025;Lifting up one end of something, then letting it drop down +98808;Moving something up +176801;Pretending to open something without actually opening it +181134;Stuffing something into something +134696;Pulling something from right to left +171788;Spilling something onto something +174524;Holding something in front of something +60330;Stuffing something into something +77645;Folding something +212410;Pretending to put something on a surface +92903;Holding something next to something +34010;Showing that something is empty +179291;Moving something down +81362;Pulling something from left to right +336;Spinning something so it continues spinning +105187;Putting something onto something +131260;Pushing something from right to left +22028;Moving part of something +150435;Something falling like a feather or paper +161392;Letting something roll along a flat surface +87781;Turning the camera left while filming something +27187;Pushing something so that it falls off the table +110158;Something falling like a rock +116714;Plugging something into something +46744;Pretending to be tearing something that is not tearable +165617;Tilting something with something on it until it falls off +44937;Moving something and something closer to each other +70353;Moving something away from something +43003;Pulling something from left to right +48041;Something falling like a feather or paper +163624;Showing that something is inside something +120389;Taking something from somewhere +59747;Putting something in front of something +137956;Holding something next to something +90760;Hitting something with something +179786;Pretending to spread air onto something +20394;Approaching something with your camera +2275;Stacking number of something +127808;Turning something upside down +162194;Plugging something into something but pulling it right out as you remove your hand +120677;Pretending to turn something upside down +145476;Trying to pour something into something, but missing so it spills next to it +178619;Putting something behind something +31564;Pretending to pour something out of something, but something is empty +88902;Stuffing something into something +156840;Plugging something into something but pulling it right out as you remove your hand +165128;Squeezing something +187538;Moving something closer to something +81440;Pretending to put something on a surface +76204;Poking a stack of something without the stack collapsing +149318;Pulling something out of something +220021;Pretending to poke something +215383;Putting something similar to other things that are already on the table +48113;Showing that something is inside something +70454;Twisting something +208671;Putting something underneath something +111348;Holding something behind something +5755;Attaching something to something +73351;Piling something up +216139;Tearing something just a little bit +209836;Something falling like a rock +33073;Showing something behind something +125547;Showing something on top of something +212433;Pulling something from left to right +119320;Poking something so it slightly moves +46476;Showing something on top of something +195822;Putting something next to something +105314;Pushing something with something +186730;Showing something next to something +156662;Plugging something into something but pulling it right out as you remove your hand +27618;Pushing something from right to left +8198;Pretending or trying and failing to twist something +88226;Pretending to take something from somewhere +181472;Putting something onto something +188352;Something falling like a feather or paper +182608;Spinning something so it continues spinning +113953;Bending something until it breaks +101900;Putting something and something on the table +83164;Moving something across a surface without it falling down +176026;Tearing something into two pieces +161153;Hitting something with something +33785;Stuffing something into something +192892;Scooping something up with something +54197;Throwing something +107697;Tearing something into two pieces +111649;Pretending to sprinkle air onto something +69221;Tilting something with something on it until it falls off +114292;Covering something with something +21795;Showing something behind something +3827;Showing that something is inside something +128409;Turning something upside down +176078;Pretending to put something on a surface +159103;Holding something in front of something +73162;Moving something down +170579;Pushing something so that it slightly moves +21982;Bending something until it breaks +27376;Pretending to be tearing something that is not tearable +71727;Putting something on the edge of something so it is not supported and falls down +100833;Lifting something with something on it +21004;Digging something out of something +75461;Pushing something so that it almost falls off but doesn't +35395;Showing something next to something +138587;Holding something next to something +136632;Throwing something in the air and letting it fall +139060;Putting something on a surface +154072;Laying something on the table on its side, not upright +71634;Twisting something +218200;Bending something so that it deforms +129539;Pushing something with something +27310;Trying to pour something into something, but missing so it spills next to it +104201;Hitting something with something +179865;Putting something that can't roll onto a slanted surface, so it slides down +72732;Pulling something from left to right +115941;Pulling something from left to right +95366;Turning the camera upwards while filming something +13431;Bending something so that it deforms +8616;Letting something roll along a flat surface +134163;Opening something +85515;Touching (without moving) part of something +70149;Pushing something so that it almost falls off but doesn't +60196;Something falling like a feather or paper +197863;Pretending to pick something up +133770;Dropping something in front of something +217126;Tearing something into two pieces +71443;Rolling something on a flat surface +149071;Putting something on a surface +216761;Tilting something with something on it until it falls off +127836;Pushing something off of something +113593;Plugging something into something +25193;Pretending to spread air onto something +156747;Pushing something so that it falls off the table +130280;Putting something behind something +162521;Piling something up +16491;Folding something +190553;Showing something behind something +125613;Turning something upside down +43689;Tearing something just a little bit +71084;Folding something +179760;Covering something with something +171943;Folding something +84416;Showing something on top of something +198675;Putting something on a surface +55215;Spilling something next to something +117366;Moving something and something closer to each other +133599;Putting something upright on the table +188704;Throwing something in the air and catching it +198921;Spinning something that quickly stops spinning +13179;Pushing something so that it falls off the table +56804;Squeezing something +127130;Pulling something from right to left +158215;Covering something with something +187753;Lifting something with something on it +35978;Squeezing something +30884;Stuffing something into something +190028;Touching (without moving) part of something +174507;Pretending to close something without actually closing it +81289;Bending something until it breaks +104523;Putting something into something +176826;Lifting up one end of something without letting it drop down +175853;Lifting something with something on it +84351;Pushing something from right to left +110132;Showing that something is empty +211144;Plugging something into something +7737;Tilting something with something on it until it falls off +206275;Burying something in something +203993;Pulling something onto something +7911;Moving something and something closer to each other +72195;Sprinkling something onto something +113901;Tipping something over +114230;Bending something so that it deforms +69675;Tearing something just a little bit +25620;Throwing something against something +211502;Poking a hole into some substance +45048;Turning the camera right while filming something +189181;Putting something into something +173415;Showing that something is empty +169449;Piling something up +86442;Pulling two ends of something but nothing happens +21780;Poking something so lightly that it doesn't or almost doesn't move +100544;Something falling like a feather or paper +86468;Putting something on a surface +125583;Showing something on top of something +100229;Taking something from somewhere +146976;Showing something behind something +218275;Plugging something into something but pulling it right out as you remove your hand +82629;Moving something away from something +30589;Plugging something into something but pulling it right out as you remove your hand +103633;Showing something next to something +184449;Twisting something +164033;Pulling something from left to right +17025;Taking something out of something +106066;Covering something with something +197909;Stacking number of something +133002;Pretending to close something without actually closing it +55412;Pretending to take something from somewhere +136220;Lifting up one end of something without letting it drop down +18211;Throwing something +169900;Pouring something onto something +3167;Showing something next to something +149287;Stuffing something into something +195824;Tearing something into two pieces +95798;Tipping something over +46294;Showing something behind something +150688;Holding something over something +155932;Lifting something with something on it +67383;Stacking number of something +108583;Showing something behind something +160484;Plugging something into something +116902;Piling something up +58456;Poking something so lightly that it doesn't or almost doesn't move +180800;Taking something out of something +108077;Putting something similar to other things that are already on the table +94900;Pulling something onto something +171266;Covering something with something +2512;Spilling something onto something +69713;Something falling like a rock +94091;Putting something in front of something +143908;Tipping something over +6832;Showing that something is inside something +97086;Piling something up +98724;Pretending to poke something +41751;Hitting something with something +25299;Pulling something from behind of something +132763;Pulling something from behind of something +188108;Something being deflected from something +1933;Poking something so that it falls over +183192;Pushing something so that it slightly moves +107056;Putting something onto something +220141;Unfolding something +79944;Pushing something so that it falls off the table +202383;Squeezing something +133086;Moving something up +39604;Moving away from something with your camera +43388;Moving something away from something +13874;Trying but failing to attach something to something because it doesn't stick +135639;Holding something over something +54565;Holding something next to something +134927;Piling something up +19439;Something being deflected from something +27276;Stacking number of something +181843;Folding something +206174;Tilting something with something on it slightly so it doesn't fall down +140052;Tearing something into two pieces +12848;Something falling like a feather or paper +99736;Tipping something over +213072;Wiping something off of something +173212;Plugging something into something +154260;Stuffing something into something +50028;Showing that something is empty +8474;Touching (without moving) part of something +31439;Scooping something up with something +74491;Wiping something off of something +25605;Tearing something just a little bit +97694;Poking something so lightly that it doesn't or almost doesn't move +189965;Pretending to put something on a surface +72105;Putting something underneath something +54930;Pretending to open something without actually opening it +127028;Holding something over something +42106;Dropping something next to something +14459;Taking something out of something +124339;Trying to pour something into something, but missing so it spills next to it +122899;Twisting something +64758;Bending something so that it deforms +21710;Putting something next to something +27393;Lifting something with something on it +45601;Putting something into something +48543;Moving something down +70465;Pretending to open something without actually opening it +180786;Pretending to be tearing something that is not tearable +137636;Putting number of something onto something +37014;Moving something and something away from each other +180742;Putting something similar to other things that are already on the table +81808;Stacking number of something +204099;Putting something upright on the table +18940;Throwing something in the air and catching it +69100;Stacking number of something +185347;Taking something out of something +208292;Turning the camera upwards while filming something +116637;Putting something similar to other things that are already on the table +99383;Taking one of many similar things on the table +25451;Wiping something off of something +11203;Moving something and something closer to each other +177756;Taking one of many similar things on the table +144966;Pretending to take something from somewhere +113853;Spinning something that quickly stops spinning +209732;Tipping something over +27694;Pouring something out of something +45484;Plugging something into something but pulling it right out as you remove your hand +16010;Pouring something into something +174283;Piling something up +64647;Plugging something into something +100138;Tearing something into two pieces +122532;Moving something and something closer to each other +192497;Moving something up +196029;Pouring something into something +179229;Letting something roll along a flat surface +15782;Pulling something from behind of something +184186;Attaching something to something +219303;Letting something roll down a slanted surface +39619;Putting number of something onto something +66650;Tearing something into two pieces +211853;Poking a stack of something so the stack collapses +82730;Moving something away from something +107937;Failing to put something into something because something does not fit +198874;Showing something next to something +188698;Plugging something into something but pulling it right out as you remove your hand +88846;Pushing something from right to left +16399;Plugging something into something but pulling it right out as you remove your hand +41750;Pushing something from right to left +100472;Tearing something just a little bit +38147;Putting something on a surface +121173;Tearing something into two pieces +48814;Showing something behind something +145182;Pretending to put something next to something +37693;Sprinkling something onto something +104758;Turning something upside down +66649;Putting something on a surface +62492;Putting something on a surface +67979;Piling something up +156555;Plugging something into something +79494;Picking something up +14917;Squeezing something +138886;Tearing something just a little bit +43734;Spinning something that quickly stops spinning +91263;Pushing something so that it falls off the table +26439;Something falling like a rock +97188;Folding something +205322;Pulling something from right to left +217638;Pretending or failing to wipe something off of something +95887;Putting something behind something +86782;Moving something and something closer to each other +111849;Dropping something behind something +134571;Burying something in something +94434;Squeezing something +116761;Pretending to open something without actually opening it +75751;Letting something roll along a flat surface +55365;Poking something so it slightly moves +48422;Something falling like a feather or paper +110466;Pulling something from right to left +121489;Piling something up +33563;Letting something roll up a slanted surface, so it rolls back down +134083;Moving something and something closer to each other +207091;Covering something with something +131216;Putting something similar to other things that are already on the table +93019;Pretending to put something on a surface +87913;Pushing something from left to right +193391;Tipping something over +189718;Throwing something in the air and letting it fall +128866;Putting something similar to other things that are already on the table +64441;Moving something and something away from each other +192581;Tilting something with something on it slightly so it doesn't fall down +54872;Spilling something onto something +172071;Folding something +136696;Moving something and something closer to each other +73178;Picking something up +32238;Opening something +186047;Moving something away from something +99942;Pouring something into something +100164;Closing something +139561;Plugging something into something but pulling it right out as you remove your hand +62390;Uncovering something +173505;Putting something and something on the table +43776;Taking one of many similar things on the table +114728;Dropping something next to something +174998;Moving something down +187664;Piling something up +31549;Putting something behind something +27885;Moving something closer to something +143322;Bending something so that it deforms +85557;Tearing something into two pieces +95027;Trying to pour something into something, but missing so it spills next to it +95871;Unfolding something +103189;Turning something upside down +88267;Lifting something up completely without letting it drop down +116265;Letting something roll along a flat surface +143945;Pulling something from left to right +16817;Showing that something is inside something +145205;Moving something and something away from each other +47080;Twisting (wringing) something wet until water comes out +176799;Showing something behind something +110818;Touching (without moving) part of something +97528;Pouring something into something +113575;Pretending or failing to wipe something off of something +114689;Pretending to be tearing something that is not tearable +47730;Plugging something into something +121102;Throwing something +60513;Pretending to squeeze something +30786;Taking something from somewhere +183457;Tipping something over +51835;Holding something over something +219461;Something being deflected from something +193424;Holding something over something +164052;Pretending to pick something up +198524;Showing that something is empty +10915;Pushing something with something +51667;Dropping something into something +57440;Pushing something from left to right +114762;Dropping something onto something +179331;Taking one of many similar things on the table +26319;Touching (without moving) part of something +28385;Pretending to close something without actually closing it +8528;Pushing something so that it falls off the table +187545;Moving something away from something +183587;Pretending to pour something out of something, but something is empty +90352;Tipping something over +19990;Lifting something up completely, then letting it drop down +155538;Pretending to be tearing something that is not tearable +198818;Putting something onto something +67903;Holding something next to something +2491;Letting something roll down a slanted surface +171232;Pushing something so it spins +72568;Something falling like a feather or paper +194972;Removing something, revealing something behind +173492;Plugging something into something but pulling it right out as you remove your hand +213419;Folding something +36987;Throwing something in the air and letting it fall +76927;Opening something +191889;Something being deflected from something +173473;Pouring something into something +119737;Spreading something onto something +67918;Putting something on a surface +88285;Pushing something with something +213668;Moving something and something so they collide with each other +60339;Pouring something onto something +1126;Opening something +200374;Lifting something up completely, then letting it drop down +18858;Throwing something +63187;Taking one of many similar things on the table +46773;Uncovering something +3615;Spinning something that quickly stops spinning +97785;Hitting something with something +11928;Tearing something just a little bit +210940;Stuffing something into something +176598;Putting something on a surface +9700;Tearing something into two pieces +47807;Putting something behind something +94143;Putting something, something and something on the table +47835;Pretending to spread air onto something +168470;Showing something on top of something +55984;Throwing something in the air and letting it fall +52080;Pushing something from right to left +204414;Pretending to close something without actually closing it +89316;Showing something behind something +48328;Showing that something is inside something +15671;Putting something onto something +152667;Showing something on top of something +201912;Pulling something from left to right +126037;Pouring something into something +130017;Tilting something with something on it slightly so it doesn't fall down +113518;Moving something up +29292;Poking something so that it falls over +89313;Pretending to take something out of something +43250;Pouring something out of something +163303;Putting something similar to other things that are already on the table +25553;Turning something upside down +79078;Dropping something onto something +38607;Tearing something into two pieces +12088;Trying but failing to attach something to something because it doesn't stick +97956;Folding something +156055;Taking something from somewhere +219440;Touching (without moving) part of something +107684;Picking something up +31743;Holding something +193123;Pretending to be tearing something that is not tearable +206363;Turning something upside down +185967;Pushing something from right to left +95223;Pouring something into something +47207;Moving part of something +176710;Showing something behind something +183106;Putting something similar to other things that are already on the table +99121;Putting something behind something +18979;Showing that something is empty +143738;Wiping something off of something +145985;Showing something next to something +141854;Putting something on a flat surface without letting it roll +188477;Spinning something so it continues spinning +123234;Turning something upside down +214780;Putting something in front of something +200424;Moving part of something +94450;Putting something into something +36550;Putting something that cannot actually stand upright upright on the table, so it falls on its side +159520;Piling something up +139113;Letting something roll down a slanted surface +111377;Dropping something onto something +144978;Dropping something behind something +197185;Spinning something that quickly stops spinning +36945;Holding something next to something +56812;Poking something so that it falls over +58951;Pretending or trying and failing to twist something +102106;Taking something from somewhere +165864;Holding something +208917;Something falling like a rock +32163;Removing something, revealing something behind +199368;Showing something behind something +177417;Pushing something so that it falls off the table +56474;Pretending to put something into something +135794;Bending something so that it deforms +49130;Spinning something so it continues spinning +139170;Tipping something with something in it over, so something in it falls out +36964;Moving something across a surface without it falling down +63824;Trying to pour something into something, but missing so it spills next to it +61395;Something falling like a feather or paper +158047;Hitting something with something +88310;Pretending to take something from somewhere +36625;Pushing something so that it slightly moves +194170;Moving something and something closer to each other +79103;Pushing something onto something +45268;Showing something on top of something +152834;Something falling like a feather or paper +169486;Showing something to the camera +173230;Pretending to close something without actually closing it +108735;Spilling something onto something +118198;Stacking number of something +59463;Uncovering something +38647;Pretending to pour something out of something, but something is empty +102210;Putting something similar to other things that are already on the table +85394;Pretending to put something next to something +167333;Squeezing something +126862;Pretending to put something next to something +4211;Pretending to squeeze something +67484;Taking something out of something +116042;Tearing something into two pieces +25447;Pretending to poke something +213788;Twisting something +51342;Putting something similar to other things that are already on the table +114548;Pretending to put something underneath something +58039;Tilting something with something on it until it falls off +83917;Spinning something that quickly stops spinning +182606;Showing something on top of something +57493;Poking something so lightly that it doesn't or almost doesn't move +18317;Putting something into something +99015;Putting something next to something +96264;Dropping something into something +134353;Plugging something into something +3;Piling something up +134566;Holding something next to something +198299;Something falling like a rock +91187;Something falling like a rock +4374;Plugging something into something +132201;Moving something down +180415;Unfolding something +173739;Tearing something just a little bit +107631;Squeezing something +117947;Pushing something so that it falls off the table +124414;Pretending to spread air onto something +202190;Pulling something out of something +123853;Burying something in something +174754;Moving something and something closer to each other +156233;Tilting something with something on it slightly so it doesn't fall down +213849;Unfolding something +127095;Pouring something into something +29164;Showing that something is inside something +164988;Hitting something with something +101826;Trying to bend something unbendable so nothing happens +208358;Folding something +136172;Turning the camera right while filming something +97903;Holding something over something +114206;Piling something up +41526;Tipping something over +61452;Trying to bend something unbendable so nothing happens +41447;Throwing something against something +85666;Pouring something out of something +86536;Pushing something from left to right +81829;Pretending to turn something upside down +4269;Tearing something just a little bit +89122;Pretending to be tearing something that is not tearable +11221;Something falling like a feather or paper +51216;Tearing something into two pieces +161198;Pulling something from right to left +8788;Uncovering something +176427;Turning something upside down +44972;Showing something next to something +7494;Pulling two ends of something so that it gets stretched +62949;Pushing something from left to right +159776;Pushing something from right to left +119540;Putting something, something and something on the table +57700;Pretending to pick something up +135925;Putting something, something and something on the table +125666;Turning something upside down +16280;Holding something next to something +157720;Tearing something just a little bit +127951;Wiping something off of something +200138;Pushing something so that it falls off the table +138029;Showing something next to something +56064;Taking one of many similar things on the table +104954;Showing something on top of something +134327;Pouring something out of something +25071;Something falling like a feather or paper +22488;Tearing something just a little bit +124923;Pouring something into something +43242;Pulling something from right to left +143725;Tearing something just a little bit +148662;Pouring something onto something +169869;Putting something next to something +152752;Poking something so lightly that it doesn't or almost doesn't move +78954;Putting something on a surface +95595;Holding something next to something +204107;Pushing something off of something +66645;Lifting something with something on it +79081;Moving something away from something +140601;Moving something down +114464;Covering something with something +75428;Squeezing something +72177;Pushing something with something +64538;Dropping something next to something +77464;Folding something +213449;Letting something roll along a flat surface +99036;Poking something so that it falls over +156878;Putting something next to something +73659;Hitting something with something +199093;Showing a photo of something to the camera +185857;Tearing something just a little bit +5540;Throwing something against something +138021;Tearing something into two pieces +214170;Pretending to squeeze something +44561;Pouring something onto something +22981;Turning the camera downwards while filming something +147621;Turning the camera left while filming something +142458;Picking something up +153691;Holding something next to something +182116;Showing something to the camera +188773;Trying to bend something unbendable so nothing happens +137493;Moving something closer to something +138172;Uncovering something +117812;Throwing something +213936;Pretending to take something out of something +20868;Showing something on top of something +94412;Trying to bend something unbendable so nothing happens +52009;Putting something similar to other things that are already on the table +136936;Holding something behind something +121998;Showing something behind something +42340;Squeezing something +61522;Spinning something that quickly stops spinning +154813;Pushing something from left to right +85439;Putting something onto something +99726;Tipping something over +86481;Touching (without moving) part of something +126779;Tearing something just a little bit +147950;Showing something behind something +219840;Showing something next to something +72385;Putting something, something and something on the table +206479;Tearing something into two pieces +18949;Pushing something off of something +146628;Spinning something that quickly stops spinning +130621;Showing something on top of something +167904;Tearing something just a little bit +134056;Something falling like a feather or paper +187149;Pretending to squeeze something +89370;Tearing something into two pieces +112492;Plugging something into something +147085;Taking something from somewhere +215711;Moving part of something +218796;Moving something and something away from each other +177681;Uncovering something +98481;Moving something across a surface until it falls down +145594;Moving something and something so they collide with each other +196656;Holding something next to something +49693;Pulling two ends of something but nothing happens +96556;Turning the camera upwards while filming something +106572;Plugging something into something +105437;Pretending to sprinkle air onto something +190541;Moving part of something +156218;Trying to bend something unbendable so nothing happens +203964;Moving something down +51922;Tilting something with something on it until it falls off +41568;Dropping something in front of something +75560;Spreading something onto something +67330;Pretending to pour something out of something, but something is empty +131524;Taking something out of something +150219;Moving something away from something +165524;Poking something so that it falls over +96586;Dropping something next to something +30333;Spinning something that quickly stops spinning +141487;Lifting up one end of something, then letting it drop down +215986;Attaching something to something +167717;Squeezing something +126275;Stacking number of something +111189;Pretending to poke something +208159;Turning something upside down +85421;Tearing something just a little bit +10963;Attaching something to something +20604;Throwing something against something +139505;Pretending to squeeze something +193330;Dropping something into something +46047;Throwing something +55599;Spinning something so it continues spinning +109814;Throwing something in the air and catching it +94025;Showing something behind something +72837;Moving part of something +108087;Turning the camera left while filming something +83543;Pretending to put something on a surface +170071;Pushing something off of something +87001;Stuffing something into something +168490;Pretending to pick something up +34919;Pulling two ends of something so that it gets stretched +20849;Something falling like a feather or paper +174677;Pulling something from behind of something +134738;Spinning something that quickly stops spinning +122;Spinning something that quickly stops spinning +68741;Showing that something is empty +72565;Something falling like a rock +119642;Holding something next to something +211406;Throwing something in the air and letting it fall +32612;Moving something towards the camera +104371;Tearing something into two pieces +119559;Showing a photo of something to the camera +64721;Stuffing something into something +78873;Pushing something from left to right +42663;Pouring something onto something +62467;Putting something upright on the table +98657;Trying but failing to attach something to something because it doesn't stick +15631;Holding something over something +97927;Moving part of something +60755;Showing something on top of something +139874;Pushing something so that it slightly moves +74097;Poking something so it slightly moves +216775;Attaching something to something +34834;Moving something up +81361;Pushing something so it spins +12896;Something falling like a feather or paper +216061;Covering something with something +49541;Sprinkling something onto something +49623;Taking one of many similar things on the table +220786;Holding something over something +58515;Taking one of many similar things on the table +149602;Pouring something into something +194491;Tearing something just a little bit +66375;Holding something +102396;Folding something +187127;Showing something behind something +92406;Twisting something +115388;Moving something away from something +52207;Plugging something into something but pulling it right out as you remove your hand +195896;Pretending to put something next to something +14020;Stuffing something into something +131391;Dropping something behind something +120194;Turning something upside down +6020;Dropping something onto something +69592;Putting something on a surface +208990;Taking one of many similar things on the table +150578;Pouring something out of something +134531;Moving something across a surface until it falls down +65124;Throwing something in the air and catching it +34357;Dropping something next to something +22643;Putting something on a surface +27940;Pushing something from left to right +59913;Pushing something so that it almost falls off but doesn't +148831;Pushing something so that it almost falls off but doesn't +72319;Trying to bend something unbendable so nothing happens +207627;Putting something on a surface +186738;Pretending to close something without actually closing it +66058;Putting something on a surface +139809;Holding something +56850;Plugging something into something +98382;Tearing something just a little bit +86453;Dropping something onto something +161490;Holding something over something +151373;Throwing something against something +20661;Pretending to open something without actually opening it +14642;Picking something up +119650;Tearing something into two pieces +203005;Putting something upright on the table +150510;Pretending or trying and failing to twist something +35405;Something falling like a rock +215245;Pulling two ends of something so that it gets stretched +108751;Picking something up +115328;Moving something closer to something +135599;Putting something behind something +93136;Moving something up +70698;Moving something closer to something +15811;Taking one of many similar things on the table +216318;Plugging something into something +71150;Moving something and something closer to each other +202073;Letting something roll up a slanted surface, so it rolls back down +78824;Throwing something +218273;Pretending to open something without actually opening it +166998;Pretending to pick something up +188784;Showing that something is empty +199877;Poking something so that it spins around +49488;Moving something and something away from each other +41062;Putting something, something and something on the table +61954;Tearing something just a little bit +43716;Showing that something is empty +163833;Tilting something with something on it slightly so it doesn't fall down +201174;Stacking number of something +111436;Pretending to open something without actually opening it +170181;Rolling something on a flat surface +118386;Dropping something next to something +74043;Dropping something into something +18796;Putting something on a flat surface without letting it roll +31943;Tilting something with something on it slightly so it doesn't fall down +139666;Moving part of something +166510;Stacking number of something +123817;Something being deflected from something +93616;Tearing something into two pieces +138566;Moving something and something closer to each other +36859;Letting something roll along a flat surface +170201;Putting something into something +183227;Putting something and something on the table +94631;Picking something up +54758;Pretending to squeeze something +190286;Plugging something into something but pulling it right out as you remove your hand +119198;Holding something next to something +59219;Showing something on top of something +193427;Folding something +78465;Twisting (wringing) something wet until water comes out +20286;Squeezing something +47815;Tearing something into two pieces +145245;Poking something so that it falls over +176175;Something falling like a feather or paper +150428;Putting something upright on the table +117204;Taking one of many similar things on the table +19240;Wiping something off of something +213247;Spinning something that quickly stops spinning +125601;Holding something over something +146892;Putting something upright on the table +211748;Poking something so it slightly moves +81304;Pouring something into something until it overflows +169544;Twisting something +139022;Pretending to pour something out of something, but something is empty +2780;Spinning something so it continues spinning +58244;Holding something behind something +143395;Moving something and something closer to each other +42492;Stuffing something into something +106206;Pouring something onto something +139668;Throwing something +98504;Turning something upside down +136142;Failing to put something into something because something does not fit +15272;Squeezing something +74903;Moving something up +10026;Pushing something from left to right +136023;Removing something, revealing something behind +170670;Plugging something into something +103288;Holding something +28927;Pushing something from right to left +189009;Squeezing something +7357;Pulling something from right to left +11405;Pretending to close something without actually closing it +201559;Taking one of many similar things on the table +163682;Squeezing something +209306;Holding something over something +35552;Pretending to put something on a surface +34890;Pushing something so that it almost falls off but doesn't +123506;Lifting something up completely, then letting it drop down +196759;Putting something onto something else that cannot support it so it falls down +76350;Uncovering something +35006;Plugging something into something +35322;Putting something and something on the table +21196;Turning something upside down +9033;Tipping something over +176376;Stacking number of something +55772;Putting something onto something +52282;Moving something up +100509;Taking one of many similar things on the table +50979;Pretending to pick something up +146592;Moving something up +54368;Putting something similar to other things that are already on the table +181445;Lifting up one end of something, then letting it drop down +174351;Bending something so that it deforms +176279;Pouring something into something +2576;Lifting something with something on it +81372;Squeezing something +90723;Squeezing something +90205;Piling something up +196619;Throwing something +129442;Tipping something over +32110;Showing that something is empty +107232;Putting something on a surface +85886;Pushing something so that it falls off the table +174408;Pretending to pick something up +207219;Hitting something with something +172096;Pretending to close something without actually closing it +173990;Wiping something off of something +26100;Closing something +142275;Opening something +192965;Spinning something that quickly stops spinning +184377;Putting something that cannot actually stand upright upright on the table, so it falls on its side +122486;Showing something behind something +19246;Putting something on a surface +9840;Lifting something with something on it +118179;Pushing something so that it slightly moves +202707;Showing something behind something +86990;Spinning something that quickly stops spinning +107017;Trying but failing to attach something to something because it doesn't stick +86674;Pouring something onto something +35679;Showing something on top of something +162004;Touching (without moving) part of something +79776;Laying something on the table on its side, not upright +213531;Showing something next to something +15234;Holding something over something +202340;Tearing something just a little bit +56208;Showing something behind something +153617;Pushing something so that it slightly moves +121508;Attaching something to something +37618;Pushing something off of something +374;Pretending to be tearing something that is not tearable +213089;Poking a stack of something so the stack collapses +62716;Pushing something so that it almost falls off but doesn't +40829;Putting something next to something +115049;Plugging something into something +116577;Turning something upside down +177477;Moving something away from something +71907;Showing something next to something +32913;Tearing something into two pieces +130710;Putting something on a surface +133889;Turning something upside down +33214;Unfolding something +35718;Wiping something off of something +183225;Pouring something onto something +128190;Uncovering something +134161;Pushing something onto something +41255;Twisting (wringing) something wet until water comes out +148643;Dropping something onto something +10318;Putting something similar to other things that are already on the table +103819;Pushing something so that it almost falls off but doesn't +130447;Uncovering something +156481;Holding something next to something +148929;Holding something +7770;Letting something roll down a slanted surface +186489;Lifting up one end of something, then letting it drop down +210820;Opening something +208062;Letting something roll along a flat surface +54191;Putting something underneath something +88528;Moving something and something so they pass each other +40533;Rolling something on a flat surface +35673;Spinning something that quickly stops spinning +81528;Holding something in front of something +197388;Moving something and something closer to each other +71090;Lifting something up completely, then letting it drop down +39407;Pretending to be tearing something that is not tearable +158766;Putting something next to something +198313;Putting something similar to other things that are already on the table +183446;Pouring something into something +195030;Unfolding something +210321;Taking something from somewhere +64322;Letting something roll down a slanted surface +26317;Spinning something so it continues spinning +57241;Moving something across a surface until it falls down +42750;Taking something from somewhere +16971;Holding something over something +220394;Lifting up one end of something, then letting it drop down +35649;Something colliding with something and both come to a halt +98180;Showing something to the camera +95810;Putting something into something +176636;Unfolding something +106603;Putting something on a surface +56450;Stacking number of something +216354;Moving something and something closer to each other +177446;Putting something that cannot actually stand upright upright on the table, so it falls on its side +83374;Showing something on top of something +88491;Pushing something so that it falls off the table +114420;Turning something upside down +198446;Something falling like a rock +139182;Holding something next to something +23333;Pulling something out of something +103447;Dropping something into something +136562;Piling something up +50847;Pushing something so that it almost falls off but doesn't +27090;Pouring something into something +78016;Pretending to throw something +145514;Approaching something with your camera +12918;Pouring something into something +91476;Pushing something from right to left +179526;Laying something on the table on its side, not upright +4013;Lifting up one end of something without letting it drop down +30958;Putting something onto something +87736;Unfolding something +121198;Wiping something off of something +87354;Pushing something so it spins +201658;Dropping something onto something +187151;Putting something on the edge of something so it is not supported and falls down +165276;Pushing something onto something +131159;Lifting something up completely without letting it drop down +4489;Moving something closer to something +185501;Showing that something is inside something +22073;Pretending to turn something upside down +39935;Throwing something against something +17608;Tilting something with something on it slightly so it doesn't fall down +51100;Something falling like a rock +116839;Showing something behind something +144530;Plugging something into something +176559;Tearing something into two pieces +208160;Spinning something that quickly stops spinning +109084;Poking something so it slightly moves +201992;Something falling like a feather or paper +160288;Putting something underneath something +55673;Moving something across a surface until it falls down +27584;Spilling something onto something +172169;Moving part of something +25671;Showing something behind something +199799;Tearing something just a little bit +94464;Moving something across a surface until it falls down +128797;Putting something on a surface +65840;Picking something up +43128;Spinning something that quickly stops spinning +10608;Stuffing something into something +21318;Tearing something into two pieces +48343;Pretending to be tearing something that is not tearable +103109;Taking one of many similar things on the table +29682;Taking something from somewhere +60588;Holding something over something +49573;Trying to bend something unbendable so nothing happens +48190;Tipping something over +138758;Spinning something that quickly stops spinning +97424;Spinning something so it continues spinning +87409;Plugging something into something but pulling it right out as you remove your hand +166533;Moving something closer to something +40546;Turning something upside down +209991;Pretending to put something into something +122517;Throwing something in the air and catching it +98291;Tearing something into two pieces +186363;Pretending to pick something up +16530;Pulling something from left to right +105568;Showing something behind something +159984;Hitting something with something +152092;Plugging something into something +54927;Pulling something from right to left +94148;Piling something up +158566;Uncovering something +187922;Holding something behind something +160882;Moving something away from something +181311;Something falling like a rock +153353;Plugging something into something but pulling it right out as you remove your hand +165711;Failing to put something into something because something does not fit +101897;Taking one of many similar things on the table +140025;Dropping something in front of something +109918;Pushing something so that it slightly moves +30526;Pretending to be tearing something that is not tearable +29193;Plugging something into something +100696;Poking something so lightly that it doesn't or almost doesn't move +31802;Turning something upside down +118330;Moving something closer to something +219472;Stacking number of something +79038;Showing that something is empty +10221;Putting something next to something +158022;Moving something and something closer to each other +40866;Putting something next to something +127614;Turning something upside down +9382;Pushing something from right to left +49168;Twisting (wringing) something wet until water comes out +135059;Tearing something into two pieces +117363;Rolling something on a flat surface +90515;Stacking number of something +128281;Plugging something into something but pulling it right out as you remove your hand +188812;Pulling something from left to right +133199;Showing something behind something +219041;Taking something out of something +4942;Pulling two ends of something so that it gets stretched +137320;Pretending to put something on a surface +70754;Throwing something in the air and letting it fall +83927;Pretending to pick something up +166558;Turning the camera upwards while filming something +91493;Stacking number of something +20319;Showing something next to something +111414;Pushing something so it spins +176184;Throwing something +203686;Stuffing something into something +117226;Touching (without moving) part of something +24963;Moving part of something +187132;Pushing something so that it slightly moves +118069;Tipping something over +62837;Spinning something that quickly stops spinning +137015;Putting something on a surface +208498;Picking something up +135791;Moving something and something closer to each other +211405;Covering something with something +134882;Pulling something from right to left +87184;Pouring something into something +155281;Throwing something +140382;Moving something away from something +71420;Lifting a surface with something on it until it starts sliding down +76898;Moving something closer to something +206490;Something colliding with something and both are being deflected +170302;Plugging something into something +22641;Bending something until it breaks +38313;Putting something similar to other things that are already on the table +54461;Pushing something so that it falls off the table +192767;Putting something on a surface +110856;Showing something next to something +99379;Throwing something +94688;Holding something next to something +52111;Poking something so it slightly moves +107311;Moving something away from something +97030;Tilting something with something on it until it falls off +153759;Piling something up +117033;Stuffing something into something +176375;Lifting something up completely without letting it drop down +167429;Turning something upside down +38217;Putting something and something on the table +123819;Letting something roll up a slanted surface, so it rolls back down +215073;Turning something upside down +177391;Moving something away from something +87167;Plugging something into something but pulling it right out as you remove your hand +115584;Showing that something is empty +204450;Poking something so lightly that it doesn't or almost doesn't move +87068;Squeezing something +77382;Lifting up one end of something without letting it drop down +122422;Uncovering something +70836;Letting something roll along a flat surface +5410;Poking something so it slightly moves +116689;Scooping something up with something +33174;Moving something across a surface until it falls down +139786;Rolling something on a flat surface +128593;Putting something and something on the table +153016;Closing something +90950;Hitting something with something +141911;Moving part of something +72226;Showing something next to something +210841;Bending something until it breaks +105657;Turning something upside down +151098;Pulling something out of something +128868;Putting something that can't roll onto a slanted surface, so it slides down +106272;Squeezing something +52262;Holding something behind something +134462;Pulling two ends of something so that it gets stretched +39757;Touching (without moving) part of something +91239;Putting something on a flat surface without letting it roll +158167;Something colliding with something and both are being deflected +155416;Dropping something onto something +13330;Turning something upside down +143636;Pushing something from right to left +96403;Turning something upside down +86566;Putting something that can't roll onto a slanted surface, so it stays where it is +102034;Trying but failing to attach something to something because it doesn't stick +63990;Something falling like a rock +123160;Pretending to put something on a surface +87213;Throwing something in the air and letting it fall +140;Touching (without moving) part of something +43518;Pushing something from left to right +153771;Showing that something is inside something +137820;Putting something, something and something on the table +160918;Bending something until it breaks +168042;Lifting up one end of something without letting it drop down +162753;Putting something underneath something +132901;Tearing something into two pieces +33895;Showing something on top of something +108009;Moving something up +11499;Holding something next to something +201929;Lifting up one end of something, then letting it drop down +36145;Something falling like a feather or paper +86865;Covering something with something +129404;Showing that something is inside something +122597;Pouring something into something until it overflows +91132;Poking a hole into something soft +174661;Putting something behind something +118453;Uncovering something +184729;Putting something into something +64653;Picking something up +205092;Putting something on a surface +124872;Pulling two ends of something so that it separates into two pieces +145589;Pushing something so that it falls off the table +79151;Something colliding with something and both are being deflected +61732;Moving something closer to something +47525;Folding something +172100;Showing that something is inside something +161933;Something falling like a rock +22242;Poking something so that it falls over +174008;Squeezing something +72561;Spinning something that quickly stops spinning +159729;Lifting something with something on it +16877;Pulling something from left to right +42467;Holding something next to something +37576;Tearing something into two pieces +50057;Taking something out of something +31465;Throwing something +111431;Moving something and something closer to each other +193331;Squeezing something +40977;Twisting something +68875;Pouring something out of something +121219;Uncovering something +183328;Something falling like a feather or paper +51864;Spinning something that quickly stops spinning +134976;Lifting something with something on it +131884;Putting something underneath something +216771;Dropping something behind something +194305;Pouring something into something +81233;Showing something next to something +38102;Scooping something up with something +181249;Squeezing something +7991;Plugging something into something +176403;Putting something similar to other things that are already on the table +207415;Pouring something into something +68535;Holding something +197667;Lifting up one end of something without letting it drop down +2525;Pretending to put something on a surface +110614;Poking something so lightly that it doesn't or almost doesn't move +101631;Moving something down +209507;Something falling like a rock +146160;Something falling like a feather or paper +67654;Something being deflected from something +80188;Putting something similar to other things that are already on the table +123717;Pouring something out of something +199494;Pushing something so that it almost falls off but doesn't +159082;Tearing something into two pieces +163866;Moving something down +91324;Pushing something from left to right +89899;Putting something on a surface +66004;Laying something on the table on its side, not upright +194694;Folding something +81710;Something falling like a feather or paper +47250;Opening something +3236;Pretending to put something underneath something +117987;Moving something and something closer to each other +142105;Showing something next to something +160735;Plugging something into something but pulling it right out as you remove your hand +137550;Pretending to turn something upside down +79610;Something colliding with something and both are being deflected +70242;Approaching something with your camera +95767;Putting something on a flat surface without letting it roll +7691;Putting something on a surface +181366;Putting something that can't roll onto a slanted surface, so it stays where it is +93621;Taking one of many similar things on the table +41304;Dropping something onto something +106205;Picking something up +58314;Pushing something so that it almost falls off but doesn't +21296;Pretending to put something on a surface +51892;Taking one of many similar things on the table +166952;Trying but failing to attach something to something because it doesn't stick +27402;Plugging something into something +44216;Turning something upside down +92051;Tearing something into two pieces +142019;Something colliding with something and both are being deflected +108235;Pushing something with something +186634;Rolling something on a flat surface +161089;Tilting something with something on it until it falls off +170562;Tearing something into two pieces +67563;Showing something behind something +40282;Tearing something just a little bit +59991;Spilling something onto something +22982;Pretending to put something on a surface +182499;Throwing something +186486;Covering something with something +188749;Dropping something onto something +123009;Pretending to poke something +62124;Tearing something just a little bit +50788;Lifting up one end of something, then letting it drop down +165007;Pretending to poke something +125612;Pretending to pick something up +117422;Squeezing something +145312;Showing a photo of something to the camera +187770;Pulling something onto something +27227;Pretending to pour something out of something, but something is empty +134616;Pouring something out of something +16976;Moving something closer to something +2586;Showing something on top of something +209794;Piling something up +6663;Putting something on a flat surface without letting it roll +102703;Taking something out of something +187763;Hitting something with something +104896;Sprinkling something onto something +44075;Plugging something into something +20064;Piling something up +189334;Pretending to take something out of something +146772;Pretending to put something on a surface +216378;Pushing something off of something +210193;Spinning something that quickly stops spinning +195170;Hitting something with something +65430;Pushing something so that it slightly moves +116890;Pretending to pick something up +193481;Pulling something from right to left +41161;Scooping something up with something +185892;Pulling something out of something +47714;Throwing something in the air and letting it fall +126453;Poking something so it slightly moves +158994;Plugging something into something +174394;Pushing something from right to left +124488;Throwing something in the air and letting it fall +20197;Turning the camera downwards while filming something +136145;Something falling like a rock +124469;Taking something out of something +203530;Pretending to be tearing something that is not tearable +3521;Something falling like a feather or paper +160840;Pushing something so it spins +20176;Holding something over something +70526;Closing something +139553;Holding something behind something +195419;Pretending or failing to wipe something off of something +62574;Pouring something into something +136578;Trying to bend something unbendable so nothing happens +40508;Pretending to throw something +18634;Pretending to turn something upside down +207206;Spinning something that quickly stops spinning +160642;Turning something upside down +205525;Moving something away from the camera +123788;Taking something out of something +107310;Pushing something off of something +218389;Attaching something to something +28251;Pouring something into something until it overflows +114520;Showing that something is empty +209890;Showing that something is empty +4786;Holding something over something +201407;Opening something +55876;Unfolding something +17574;Something falling like a rock +34513;Taking something out of something +56264;Letting something roll down a slanted surface +77846;Spilling something onto something +74481;Pushing something with something +96131;Moving something up +206065;Showing something next to something +173894;Dropping something onto something +155107;Unfolding something +9984;Pretending to poke something +178092;Moving something up +139198;Trying to bend something unbendable so nothing happens +67369;Something falling like a rock +22538;Removing something, revealing something behind +119775;Plugging something into something +169928;Squeezing something +58735;Poking something so lightly that it doesn't or almost doesn't move +97949;Showing that something is empty +167355;Squeezing something +6143;Dropping something next to something +159009;Taking something out of something +33607;Tilting something with something on it until it falls off +182652;Putting something on a surface +200091;Turning the camera right while filming something +13198;Something falling like a rock +63799;Putting something into something +151482;Pretending to take something out of something +13260;Tearing something just a little bit +85341;Attaching something to something +137768;Sprinkling something onto something +27745;Showing something behind something +15533;Letting something roll along a flat surface +187296;Moving something and something away from each other +14678;Moving something away from something +170347;Tearing something into two pieces +126088;Folding something +212853;Dropping something onto something +140934;Pouring something into something until it overflows +8241;Picking something up +34595;Moving something away from something +114936;Picking something up +86391;Dropping something onto something +77427;Attaching something to something +204455;Showing that something is inside something +96747;Putting something similar to other things that are already on the table +122848;Letting something roll along a flat surface +6987;Pretending to sprinkle air onto something +150931;Pretending to put something on a surface +114415;Plugging something into something +83959;Tearing something into two pieces +6413;Holding something in front of something +75815;Dropping something behind something +29875;Tearing something into two pieces +127093;Pushing something from left to right +111035;Putting something underneath something +192461;Stuffing something into something +176792;Trying but failing to attach something to something because it doesn't stick +26853;Tearing something just a little bit +120608;Pretending to put something behind something +92605;Removing something, revealing something behind +32276;Taking something out of something +78210;Putting something into something +196422;Attaching something to something +5318;Something being deflected from something +43670;Moving something down +110216;Poking something so lightly that it doesn't or almost doesn't move +75853;Moving something down +201566;Tearing something into two pieces +211021;Pulling something from right to left +57611;Pushing something so it spins +84078;Stuffing something into something +156985;Pulling two ends of something so that it separates into two pieces +144717;Piling something up +206645;Pretending to turn something upside down +71268;Tipping something over +76210;Pretending to open something without actually opening it +93893;Pushing something so that it slightly moves +28299;Stuffing something into something +123271;Pretending to put something on a surface +216792;Putting number of something onto something +13876;Moving part of something +101272;Pushing something so that it almost falls off but doesn't +138522;Showing something next to something +157018;Pretending to put something onto something +186429;Putting something onto something +193995;Stacking number of something +24851;Pushing something from left to right +128378;Pretending to sprinkle air onto something +192590;Putting something into something +204104;Lifting up one end of something, then letting it drop down +91872;Something falling like a feather or paper +177043;Tearing something just a little bit +78962;Picking something up +120536;Showing that something is empty +80942;Unfolding something +11361;Pretending or trying and failing to twist something +101438;Stuffing something into something +24350;Holding something over something +219273;Moving something up +108370;Closing something +98373;Uncovering something +153845;Lifting something with something on it +47516;Moving something down +219068;Pretending to turn something upside down +28737;Closing something +205117;Squeezing something +196914;Showing something to the camera +127558;Moving something down +118754;Pouring something out of something +140678;Letting something roll along a flat surface +133122;Opening something +30167;Pulling something from behind of something +34588;Putting something in front of something +158607;Folding something +219360;Moving something across a surface until it falls down +38245;Squeezing something +181513;Pushing something from left to right +185238;Taking something out of something +49172;Showing that something is empty +171647;Pretending to be tearing something that is not tearable +167774;Stacking number of something +16640;Moving something and something away from each other +86192;Moving something across a surface until it falls down +7995;Stacking number of something +127238;Putting something on a surface +36123;Pretending to be tearing something that is not tearable +116628;Moving something up +56575;Twisting something +39821;Pretending to throw something +220551;Something falling like a feather or paper +168800;Attaching something to something +136994;Pretending to squeeze something +100638;Tilting something with something on it slightly so it doesn't fall down +27822;Twisting something +27142;Moving something and something away from each other +103639;Turning the camera left while filming something +94936;Pouring something onto something +98737;Covering something with something +187339;Taking something out of something +95994;Stacking number of something +100188;Laying something on the table on its side, not upright +190954;Putting something on the edge of something so it is not supported and falls down +220438;Pushing something onto something +87103;Stacking number of something +51964;Pulling something from right to left +8639;Moving something away from something +192946;Approaching something with your camera +173961;Covering something with something +141682;Moving something and something so they pass each other +62566;Tearing something into two pieces +129189;Pretending to spread air onto something +178718;Spinning something that quickly stops spinning +175134;Dropping something into something +183506;Lifting something with something on it +134143;Moving something and something away from each other +197467;Covering something with something +215706;Tilting something with something on it until it falls off +116645;Lifting something with something on it +209559;Moving something and something closer to each other +39982;Pushing something from right to left +5292;Holding something over something +36895;Pretending to sprinkle air onto something +37583;Stuffing something into something +45334;Tearing something into two pieces +215888;Something falling like a rock +183360;Pulling something from left to right +206278;Hitting something with something +8856;Tearing something just a little bit +87480;Lifting a surface with something on it but not enough for it to slide down +180059;Wiping something off of something +62186;Pouring something into something until it overflows +27087;Lifting something with something on it +64388;Something being deflected from something +56431;Pushing something so that it falls off the table +207787;Opening something +31113;Wiping something off of something +206464;Taking something out of something +58604;Putting something and something on the table +126090;Taking one of many similar things on the table +42824;Holding something over something +91761;Wiping something off of something +30581;Pretending to be tearing something that is not tearable +218793;Holding something behind something +29785;Rolling something on a flat surface +136759;Pretending to be tearing something that is not tearable +144520;Letting something roll along a flat surface +75956;Turning something upside down +12373;Letting something roll along a flat surface +190854;Tearing something just a little bit +198687;Rolling something on a flat surface +89933;Pushing something so that it falls off the table +98198;Letting something roll up a slanted surface, so it rolls back down +112302;Pushing something so that it falls off the table +138689;Moving part of something +130664;Pretending to be tearing something that is not tearable +205711;Uncovering something +68002;Dropping something into something +147305;Pretending to pick something up +48079;Taking something out of something +104122;Moving something and something closer to each other +206615;Squeezing something +119895;Plugging something into something +151884;Tilting something with something on it until it falls off +50692;Pretending to squeeze something +67151;Plugging something into something but pulling it right out as you remove your hand +46580;Plugging something into something +80363;Holding something over something +82613;Pushing something from left to right +211321;Lifting up one end of something, then letting it drop down +111622;Opening something +144777;Turning something upside down +207193;Tearing something just a little bit +123070;Tearing something into two pieces +176490;Stacking number of something +2210;Showing something behind something +157444;Pretending to turn something upside down +15679;Turning the camera downwards while filming something +481;Bending something so that it deforms +144983;Covering something with something +121758;Hitting something with something +132635;Rolling something on a flat surface +204026;Throwing something onto a surface +172484;Opening something +102674;Putting something upright on the table +88919;Failing to put something into something because something does not fit +109708;Moving something across a surface until it falls down +145371;Putting something on a surface +51827;Turning something upside down +197335;Taking one of many similar things on the table +622;Poking a hole into something soft +212773;Rolling something on a flat surface +52272;Squeezing something +170072;Pulling something from right to left +210970;Spinning something so it continues spinning +36764;Pushing something so that it falls off the table +91833;Wiping something off of something +83357;Folding something +193118;Folding something +60236;Tipping something over +46540;Something falling like a rock +156355;Pretending to take something from somewhere +119090;Pushing something so that it falls off the table +140938;Pushing something from right to left +94095;Showing that something is inside something +94956;Putting something on a surface +51326;Putting something into something +218154;Bending something so that it deforms +121723;Showing something behind something +7834;Pretending to close something without actually closing it +139845;Throwing something in the air and letting it fall +177962;Showing that something is empty +114668;Letting something roll up a slanted surface, so it rolls back down +201228;Squeezing something +32271;Dropping something in front of something +105063;Twisting something +56998;Covering something with something +138986;Putting something on the edge of something so it is not supported and falls down +67051;Scooping something up with something +140918;Dropping something behind something +116435;Tearing something just a little bit +96311;Something falling like a rock +161536;Lifting something up completely, then letting it drop down +198543;Poking something so lightly that it doesn't or almost doesn't move +62530;Putting something on a surface +103870;Pretending to put something on a surface +113568;Pretending to close something without actually closing it +1293;Pulling something from right to left +13657;Putting something and something on the table +74094;Pretending to squeeze something +90426;Something falling like a feather or paper +96682;Squeezing something +144138;Plugging something into something but pulling it right out as you remove your hand +202666;Folding something +72824;Tearing something just a little bit +124799;Tearing something into two pieces +37411;Piling something up +75842;Squeezing something +65079;Uncovering something +126476;Putting something upright on the table +179376;Pushing something so that it falls off the table +148855;Tearing something into two pieces +72002;Pushing something from left to right +19359;Pretending to put something onto something +102355;Sprinkling something onto something +184911;Tearing something into two pieces +4240;Pushing something so it spins +113479;Pushing something so that it falls off the table +176536;Putting something into something +98762;Moving something closer to something +199291;Showing something next to something +127764;Letting something roll along a flat surface +195316;Pushing something so it spins +14131;Poking something so lightly that it doesn't or almost doesn't move +99370;Poking something so it slightly moves +83140;Plugging something into something +136055;Tilting something with something on it slightly so it doesn't fall down +89493;Pretending to poke something +56955;Holding something over something +25826;Folding something +203707;Pulling two ends of something but nothing happens +137151;Pushing something with something +120385;Throwing something in the air and catching it +165285;Holding something next to something +36576;Pulling something from behind of something +102184;Tearing something just a little bit +43193;Plugging something into something +95820;Twisting something +51878;Closing something +128931;Holding something in front of something +104734;Moving something down +5921;Pushing something so it spins +51879;Twisting something +215840;Piling something up +43953;Pushing something so that it falls off the table +33549;Letting something roll up a slanted surface, so it rolls back down +48256;Moving something and something away from each other +101496;Moving something and something away from each other +100656;Covering something with something +201856;Moving something closer to something +167994;Pushing something so that it falls off the table +143991;Spreading something onto something +134599;Putting something on a surface +86362;Tilting something with something on it until it falls off +84788;Attaching something to something +96077;Tilting something with something on it until it falls off +53439;Putting something into something +3019;Taking something out of something +140296;Taking one of many similar things on the table +49523;Throwing something in the air and catching it +86786;Pulling something from right to left +150937;Putting something similar to other things that are already on the table +28695;Hitting something with something +49673;Tearing something into two pieces +8243;Opening something +27846;Bending something until it breaks +114609;Twisting (wringing) something wet until water comes out +125846;Pushing something so that it slightly moves +20316;Throwing something onto a surface +186311;Showing something behind something +95410;Throwing something +5257;Rolling something on a flat surface +87953;Taking one of many similar things on the table +167146;Taking something from somewhere +122846;Covering something with something +68337;Uncovering something +185596;Moving something away from the camera +46568;Taking one of many similar things on the table +60841;Sprinkling something onto something +72556;Something falling like a feather or paper +33646;Pretending to open something without actually opening it +47004;Pretending to put something on a surface +157217;Lifting something with something on it +70410;Pretending to take something from somewhere +68747;Moving something and something away from each other +138309;Dropping something in front of something +208852;Showing something behind something +172898;Turning the camera upwards while filming something +184035;Lifting up one end of something, then letting it drop down +206219;Throwing something in the air and letting it fall +184175;Plugging something into something but pulling it right out as you remove your hand +86105;Something falling like a feather or paper +137239;Poking something so lightly that it doesn't or almost doesn't move +72652;Tearing something into two pieces +116052;Holding something over something +174744;Showing something next to something +83771;Pouring something out of something +110715;Showing that something is inside something +87577;Moving part of something +42328;Pushing something from left to right +51181;Moving something across a surface until it falls down +25698;Putting something into something +13231;Lifting something up completely, then letting it drop down +61200;Holding something +70426;Spilling something onto something +131463;Folding something +207490;Rolling something on a flat surface +167430;Squeezing something +152096;Something being deflected from something +147112;Squeezing something +150816;Moving something across a surface without it falling down +53340;Moving part of something +213045;Pushing something with something +171990;Moving something away from something +123190;Tearing something into two pieces +90368;Moving something away from the camera +153865;Tearing something into two pieces +10255;Moving something and something so they collide with each other +59143;Bending something so that it deforms +44569;Putting something next to something +167083;Trying but failing to attach something to something because it doesn't stick +135583;Pulling something from behind of something +80476;Showing that something is inside something +199938;Taking something out of something +130211;Plugging something into something +210757;Putting something on a flat surface without letting it roll +169310;Pretending to take something from somewhere +205899;Showing that something is empty +82116;Tipping something over +144394;Putting something next to something +49529;Showing something on top of something +74401;Lifting something up completely without letting it drop down +136275;Something falling like a feather or paper +35361;Uncovering something +153334;Pouring something into something +85901;Something being deflected from something +127735;Uncovering something +67840;Sprinkling something onto something +41120;Pushing something so that it falls off the table +195137;Unfolding something +103654;Putting something similar to other things that are already on the table +135746;Plugging something into something but pulling it right out as you remove your hand +192479;Covering something with something +218134;Throwing something in the air and catching it +26143;Pouring something into something +118659;Moving something away from something +8587;Rolling something on a flat surface +152347;Putting something onto something +187348;Covering something with something +180926;Pulling something from left to right +214686;Squeezing something +63701;Moving something up +194703;Putting something on a surface +167755;Covering something with something +93405;Spinning something that quickly stops spinning +201293;Pulling something out of something +32408;Approaching something with your camera +77250;Piling something up +187682;Pouring something onto something +180325;Turning the camera downwards while filming something +141949;Throwing something +41661;Pouring something onto something +131241;Tipping something with something in it over, so something in it falls out +195467;Holding something next to something +122621;Poking something so it slightly moves +42320;Trying to bend something unbendable so nothing happens +25899;Plugging something into something but pulling it right out as you remove your hand +146390;Moving something and something away from each other +88969;Lifting a surface with something on it until it starts sliding down +105072;Squeezing something +119045;Pretending to be tearing something that is not tearable +155935;Pretending to put something on a surface +61416;Pushing something so it spins +43;Moving something closer to something +60057;Putting something similar to other things that are already on the table +209080;Turning the camera right while filming something +210170;Moving something closer to something +151066;Holding something behind something +13495;Plugging something into something but pulling it right out as you remove your hand +195070;Throwing something +79550;Pretending to put something behind something +44013;Unfolding something +17687;Moving something away from something +13777;Showing that something is empty +100600;Turning the camera left while filming something +161710;Bending something until it breaks +30247;Taking one of many similar things on the table +123570;Showing something on top of something +210644;Moving something towards the camera +215024;Tearing something into two pieces +200781;Taking something from somewhere +42318;Pushing something with something +207484;Putting something upright on the table +113541;Something falling like a feather or paper +136602;Moving something across a surface without it falling down +201820;Unfolding something +161307;Pouring something onto something +167234;Putting something into something +43017;Pretending to be tearing something that is not tearable +83360;Putting something upright on the table +82086;Holding something in front of something +140020;Squeezing something +2127;Pushing something so that it almost falls off but doesn't +68168;Tearing something just a little bit +195749;Pushing something so that it falls off the table +42080;Dropping something in front of something +50405;Dropping something onto something +76014;Lifting something up completely without letting it drop down +137909;Dropping something onto something +173381;Covering something with something +20328;Showing that something is empty +13389;Pretending to pick something up +68813;Picking something up +158505;Taking something out of something +30087;Putting number of something onto something +203889;Holding something +46124;Spinning something that quickly stops spinning +154502;Pushing something so that it slightly moves +65986;Spinning something that quickly stops spinning +189253;Picking something up +80340;Poking a stack of something so the stack collapses +85343;Stacking number of something +45019;Taking one of many similar things on the table +206477;Pushing something off of something +184250;Putting something behind something +165124;Tilting something with something on it slightly so it doesn't fall down +82462;Pouring something into something +169390;Wiping something off of something +175943;Moving something up +128745;Poking something so that it spins around +167165;Showing that something is inside something +97286;Dropping something into something +13052;Moving something closer to something +129357;Pretending to be tearing something that is not tearable +46876;Holding something behind something +50817;Showing something on top of something +139348;Tearing something into two pieces +21188;Moving something down +22888;Showing something behind something +114915;Twisting something +150049;Pretending to put something into something +160336;Something falling like a rock +154841;Pretending to open something without actually opening it +171654;Putting something in front of something +173726;Throwing something in the air and letting it fall +209407;Moving something away from the camera +99829;Holding something behind something +77045;Pushing something so that it falls off the table +135518;Bending something so that it deforms +27518;Tilting something with something on it slightly so it doesn't fall down +56448;Picking something up +215969;Pushing something from left to right +94804;Tipping something over +97534;Something being deflected from something +10689;Plugging something into something but pulling it right out as you remove your hand +175114;Taking something from somewhere +21452;Spilling something onto something +170677;Bending something until it breaks +53691;Spilling something onto something +78132;Tearing something just a little bit +208378;Closing something +38921;Wiping something off of something +125564;Pushing something so that it slightly moves +104194;Showing that something is empty +136479;Putting something similar to other things that are already on the table +53831;Pouring something into something +46024;Pulling something from left to right +38268;Pouring something into something +180334;Pushing something with something +93968;Opening something +58291;Twisting (wringing) something wet until water comes out +99296;Moving something and something closer to each other +46759;Turning something upside down +217903;Wiping something off of something +154472;Tearing something just a little bit +43269;Pushing something so that it slightly moves +10852;Taking something out of something +119977;Attaching something to something +208808;Showing a photo of something to the camera +29868;Covering something with something +64827;Pretending to be tearing something that is not tearable +197791;Taking one of many similar things on the table +45498;Putting something into something +145495;Folding something +159139;Moving something away from something +187096;Tearing something into two pieces +2890;Holding something next to something +114345;Pretending to open something without actually opening it +200425;Tearing something into two pieces +171545;Putting something underneath something +94113;Rolling something on a flat surface +10472;Holding something next to something +102185;Opening something +53288;Putting something that cannot actually stand upright upright on the table, so it falls on its side +215096;Pushing something so that it slightly moves +141293;Throwing something against something +105957;Scooping something up with something +146313;Turning something upside down +168695;Turning something upside down +123128;Moving something away from something +62988;Folding something +66958;Something being deflected from something +177136;Turning the camera left while filming something +152925;Pushing something from left to right +212173;Showing something behind something +188828;Moving something across a surface until it falls down +192594;Pretending to put something on a surface +68005;Pretending to close something without actually closing it +20142;Something falling like a feather or paper +113402;Poking something so lightly that it doesn't or almost doesn't move +211214;Folding something +128112;Tearing something into two pieces +14388;Showing that something is empty +160858;Tipping something over +112359;Pulling something from right to left +23241;Putting something similar to other things that are already on the table +167696;Pretending to pour something out of something, but something is empty +215666;Moving something and something away from each other +166410;Showing something on top of something +113914;Holding something in front of something +7646;Pretending or failing to wipe something off of something +15163;Plugging something into something +18296;Rolling something on a flat surface +123587;Pretending to squeeze something +155432;Pretending to sprinkle air onto something +191176;Rolling something on a flat surface +98775;Holding something next to something +65392;Opening something +200675;Showing that something is inside something +154665;Pretending or trying and failing to twist something +170098;Lifting a surface with something on it but not enough for it to slide down +116010;Throwing something in the air and catching it +210027;Opening something +69932;Moving something and something closer to each other +201256;Pouring something out of something +59519;Pouring something into something +107044;Moving something and something closer to each other +117015;Taking one of many similar things on the table +97837;Holding something behind something +50248;Opening something +53392;Lifting something up completely, then letting it drop down +80546;Taking something out of something +56556;Pulling something from right to left +154906;Putting something on a surface +178555;Bending something so that it deforms +87020;Touching (without moving) part of something +52888;Letting something roll down a slanted surface +51459;Showing something next to something +83408;Opening something +112008;Showing something on top of something +69414;Squeezing something +125831;Pushing something so that it falls off the table +54827;Pretending to put something onto something +51515;Holding something over something +130955;Pushing something so that it slightly moves +216041;Pushing something so that it almost falls off but doesn't +68225;Tearing something into two pieces +135249;Moving something and something away from each other +58546;Spinning something so it continues spinning +110932;Holding something behind something +97417;Taking one of many similar things on the table +57291;Tearing something into two pieces +207182;Pushing something so that it falls off the table +180060;Pretending to pour something out of something, but something is empty +21151;Squeezing something +142467;Opening something +27915;Opening something +137914;Burying something in something +101908;Uncovering something +4078;Something falling like a rock +6528;Turning something upside down +177080;Poking something so lightly that it doesn't or almost doesn't move +78432;Holding something next to something +74900;Pretending to close something without actually closing it +199963;Showing that something is empty +192263;Twisting (wringing) something wet until water comes out +144531;Putting something onto something else that cannot support it so it falls down +97890;Pouring something out of something +140351;Pushing something so that it slightly moves +172738;Tearing something just a little bit +159270;Putting something similar to other things that are already on the table +216710;Moving something closer to something +26197;Pouring something into something +48678;Dropping something next to something +32847;Holding something in front of something +85422;Plugging something into something +112583;Tearing something into two pieces +219143;Pouring something into something +56366;Pouring something onto something +167438;Squeezing something +70035;Folding something +103960;Opening something +92954;Pouring something out of something +128963;Throwing something in the air and letting it fall +97431;Putting something and something on the table +2203;Moving something across a surface without it falling down +136027;Rolling something on a flat surface +136587;Taking something out of something +48261;Trying but failing to attach something to something because it doesn't stick +99029;Something colliding with something and both are being deflected +102305;Plugging something into something +82463;Rolling something on a flat surface +161152;Moving something across a surface without it falling down +180994;Turning something upside down +163274;Turning something upside down +107610;Putting something and something on the table +134301;Moving something and something so they pass each other +143333;Moving something and something closer to each other +124077;Stacking number of something +74301;Showing something behind something +59714;Rolling something on a flat surface +92425;Uncovering something +23813;Moving something and something closer to each other +49531;Folding something +193644;Pretending to open something without actually opening it +217818;Showing that something is inside something +53149;Pretending to put something next to something +75284;Pretending to put something on a surface +1840;Moving something and something closer to each other +131030;Bending something until it breaks +203675;Opening something +103045;Moving something closer to something +160067;Attaching something to something +81088;Lifting something with something on it +67021;Showing something behind something +22019;Pretending to take something from somewhere +62502;Something falling like a feather or paper +144484;Putting something that can't roll onto a slanted surface, so it stays where it is +46837;Attaching something to something +206352;Throwing something +35715;Letting something roll up a slanted surface, so it rolls back down +39265;Moving something and something closer to each other +68297;Putting something on a surface +175064;Trying but failing to attach something to something because it doesn't stick +151209;Moving something closer to something +8337;Pushing something so it spins +107188;Lifting something with something on it +73457;Tipping something over +30010;Tipping something over +71055;Bending something until it breaks +172850;Turning something upside down +95259;Pretending to pick something up +27435;Moving something up +141870;Dropping something next to something +193893;Closing something +164526;Showing something to the camera +205409;Pouring something onto something +40763;Pretending to pour something out of something, but something is empty +77128;Pretending to turn something upside down +131201;Hitting something with something +60691;Tearing something into two pieces +46023;Opening something +205066;Putting something on a surface +180181;Pouring something into something +197404;Lifting something up completely without letting it drop down +203030;Twisting something +173524;Putting something similar to other things that are already on the table +126540;Spilling something behind something +218268;Showing something on top of something +197150;Pulling something from left to right +85912;Pretending to sprinkle air onto something +43324;Tearing something just a little bit +164676;Putting something underneath something +2857;Plugging something into something +108734;Poking a stack of something so the stack collapses +2337;Pushing something with something +165190;Plugging something into something +217169;Opening something +27808;Pushing something with something +82649;Putting something on a surface +214;Pretending to take something out of something +100792;Something falling like a feather or paper +70907;Bending something until it breaks +78753;Pretending to open something without actually opening it +185737;Pushing something so that it almost falls off but doesn't +144786;Lifting something up completely, then letting it drop down +133375;Tearing something into two pieces +43452;Holding something +6235;Folding something +51494;Burying something in something +170356;Putting something on a surface +152723;Something falling like a feather or paper +86262;Picking something up +132578;Pushing something so that it almost falls off but doesn't +28891;Turning the camera upwards while filming something +161565;Moving something up +14058;Pretending to put something into something +41193;Pushing something with something +130570;Pushing something so it spins +46958;Throwing something in the air and letting it fall +36052;Turning the camera upwards while filming something +160874;Turning the camera right while filming something +103914;Moving something up +100808;Moving something and something so they pass each other +204579;Pretending to close something without actually closing it +36596;Pushing something so that it falls off the table +142782;Pretending to put something onto something +207714;Twisting something +14548;Pretending to put something on a surface +144847;Putting something in front of something +78005;Taking something out of something +136693;Moving something and something closer to each other +107841;Pretending to pick something up +55825;Pushing something off of something +208471;Dropping something next to something +184738;Holding something +47020;Putting something next to something +17645;Pushing something so that it slightly moves +153888;Twisting (wringing) something wet until water comes out +121802;Something falling like a rock +151;Lifting something with something on it +194517;Piling something up +119551;Laying something on the table on its side, not upright +215233;Plugging something into something +202908;Rolling something on a flat surface +96110;Moving something and something away from each other +51254;Pushing something so that it falls off the table +67378;Plugging something into something but pulling it right out as you remove your hand +92292;Pulling something from behind of something +8749;Sprinkling something onto something +106984;Moving something across a surface until it falls down +96806;Showing that something is inside something +138386;Sprinkling something onto something +175515;Twisting something +194738;Moving something down +183158;Squeezing something +139667;Opening something +116920;Putting something upright on the table +47384;Spilling something onto something +16472;Moving something down +31555;Failing to put something into something because something does not fit +40436;Opening something +85854;Lifting up one end of something, then letting it drop down +44371;Something falling like a feather or paper +102463;Pushing something so it spins +192331;Poking something so that it falls over +91300;Pushing something so that it falls off the table +158787;Letting something roll along a flat surface +110960;Stacking number of something +142812;Putting something next to something +11997;Moving something up +21375;Trying to pour something into something, but missing so it spills next to it +213250;Twisting something +191976;Taking one of many similar things on the table +118442;Something falling like a rock +119996;Covering something with something +67947;Showing something behind something +20996;Opening something +61481;Attaching something to something +92745;Moving something and something closer to each other +196713;Something falling like a rock +209527;Hitting something with something +27175;Touching (without moving) part of something +143886;Touching (without moving) part of something +169153;Pretending to be tearing something that is not tearable +171007;Something falling like a rock +101216;Something falling like a rock +114239;Something falling like a feather or paper +64126;Putting something on a surface +30338;Taking something out of something +10091;Tearing something just a little bit +36559;Throwing something in the air and catching it +36972;Failing to put something into something because something does not fit +40473;Pouring something into something until it overflows +51299;Plugging something into something +44690;Putting something, something and something on the table +105258;Bending something until it breaks +120129;Moving part of something +5333;Pretending to be tearing something that is not tearable +64374;Showing that something is inside something +138050;Poking something so lightly that it doesn't or almost doesn't move +123443;Covering something with something +155023;Moving something and something closer to each other +45271;Stacking number of something +104414;Moving something down +15128;Pushing something with something +158970;Bending something until it breaks +87077;Showing that something is empty +1467;Putting something into something +21289;Tilting something with something on it until it falls off +160724;Tilting something with something on it until it falls off +214205;Lifting up one end of something without letting it drop down +21885;Wiping something off of something +161136;Folding something +80915;Putting something on a surface +103488;Pretending to poke something +9836;Pretending to open something without actually opening it +163415;Dropping something into something +18096;Letting something roll along a flat surface +136675;Throwing something against something +29325;Poking something so that it falls over +203097;Putting something and something on the table +117994;Tipping something with something in it over, so something in it falls out +141987;Attaching something to something +215502;Plugging something into something +68996;Stuffing something into something +118317;Pushing something with something +161612;Covering something with something +125781;Showing something on top of something +201564;Spinning something that quickly stops spinning +191045;Moving something and something away from each other +151030;Tipping something over +162110;Pouring something into something +94557;Moving something and something closer to each other +56997;Poking something so lightly that it doesn't or almost doesn't move +119665;Pouring something into something +208402;Holding something over something +37547;Moving something up +72699;Something falling like a feather or paper +24936;Folding something +213116;Throwing something in the air and catching it +198821;Pulling two ends of something so that it separates into two pieces +108805;Moving something away from something +191427;Trying to bend something unbendable so nothing happens +187929;Pouring something into something +49767;Showing that something is empty +6372;Turning something upside down +144947;Tipping something over +68802;Holding something in front of something +176046;Showing that something is empty +168435;Showing that something is inside something +219987;Moving something down +119758;Moving something and something closer to each other +26773;Moving something and something closer to each other +48122;Moving something and something closer to each other +89874;Something falling like a rock +192011;Spilling something onto something +8574;Turning something upside down +211174;Pouring something into something +131996;Plugging something into something +125362;Closing something +130675;Holding something +179354;Moving something and something closer to each other +147562;Taking one of many similar things on the table +46662;Twisting something +100083;Moving something across a surface without it falling down +79274;Removing something, revealing something behind +149125;Putting something behind something +166882;Tipping something over +131747;Taking something from somewhere +128799;Pretending to pour something out of something, but something is empty +6111;Trying to bend something unbendable so nothing happens +8993;Pulling something from right to left +211211;Showing something behind something +165321;Taking something out of something +70893;Turning something upside down +79540;Showing that something is empty +160118;Stacking number of something +34009;Taking one of many similar things on the table +147996;Holding something +106226;Pouring something out of something +39681;Something falling like a rock +71568;Tearing something into two pieces +106114;Pretending to poke something +18503;Putting something and something on the table +158866;Moving something up +27288;Closing something +17874;Poking something so it slightly moves +153071;Tearing something just a little bit +49513;Holding something +156127;Plugging something into something +30638;Moving something and something closer to each other +164557;Putting something on a surface +16546;Uncovering something +86252;Lifting something up completely, then letting it drop down +218020;Moving something and something closer to each other +84747;Tipping something over +164182;Letting something roll up a slanted surface, so it rolls back down +114868;Pushing something so that it slightly moves +71270;Pretending to turn something upside down +165645;Tearing something into two pieces +141819;Bending something until it breaks +133376;Attaching something to something +34359;Something falling like a rock +207938;Putting something on a surface +188909;Pushing something off of something +92728;Showing something behind something +90314;Pulling something from left to right +156956;Lifting up one end of something, then letting it drop down +65322;Lifting up one end of something without letting it drop down +79622;Pouring something into something +218781;Pretending to poke something +129536;Uncovering something +169100;Plugging something into something but pulling it right out as you remove your hand +149686;Turning something upside down +208317;Covering something with something +190998;Showing something next to something +43367;Moving something and something so they pass each other +197156;Holding something next to something +141634;Putting something on a surface +195878;Pushing something so that it falls off the table +82428;Putting something upright on the table +167712;Pouring something into something +150680;Bending something so that it deforms +181347;Moving something across a surface until it falls down +17338;Moving something and something away from each other +154869;Holding something over something +75405;Approaching something with your camera +42699;Spinning something that quickly stops spinning +154835;Pushing something so that it almost falls off but doesn't +52063;Showing something next to something +36734;Twisting something +191473;Pushing something so that it falls off the table +62741;Pretending to open something without actually opening it +68274;Burying something in something +215169;Putting something similar to other things that are already on the table +150725;Turning something upside down +42431;Stuffing something into something +149780;Pretending to close something without actually closing it +210436;Plugging something into something but pulling it right out as you remove your hand +215553;Pushing something so that it falls off the table +6850;Hitting something with something +124481;Stacking number of something +204332;Pushing something from right to left +110909;Putting something upright on the table +70944;Showing that something is inside something +171177;Moving something and something away from each other +194500;Showing something next to something +14237;Moving something closer to something +189465;Plugging something into something +28784;Covering something with something +191861;Stuffing something into something +62861;Something colliding with something and both come to a halt +158598;Pretending or failing to wipe something off of something +91659;Holding something next to something +119206;Poking something so lightly that it doesn't or almost doesn't move +22120;Stacking number of something +29438;Letting something roll down a slanted surface +165611;Laying something on the table on its side, not upright +116461;Showing something next to something +7822;Pushing something from right to left +204237;Removing something, revealing something behind +102098;Tearing something into two pieces +5050;Holding something in front of something +170216;Approaching something with your camera +209285;Digging something out of something +85183;Putting something behind something +189859;Touching (without moving) part of something +139836;Holding something in front of something +96252;Dropping something in front of something +19686;Sprinkling something onto something +11112;Putting something and something on the table +114021;Closing something +212193;Folding something +157688;Hitting something with something +41926;Pulling two ends of something but nothing happens +209340;Pouring something into something +52688;Pretending to put something underneath something +205095;Tearing something into two pieces +173825;Pushing something with something +109303;Lifting something up completely without letting it drop down +190802;Hitting something with something +141396;Pushing something so that it slightly moves +69222;Showing something on top of something +34087;Letting something roll along a flat surface +145280;Tearing something into two pieces +50304;Trying to pour something into something, but missing so it spills next to it +135369;Trying to bend something unbendable so nothing happens +151295;Dropping something onto something +173000;Showing that something is inside something +192031;Putting something next to something +217002;Plugging something into something but pulling it right out as you remove your hand +131070;Pouring something into something +154843;Putting something and something on the table +46070;Turning something upside down +93313;Moving something across a surface until it falls down +53282;Tearing something into two pieces +112490;Poking something so it slightly moves +84089;Holding something next to something +212784;Pretending to put something on a surface +100978;Poking something so that it falls over +200582;Moving something up +202994;Something falling like a feather or paper +157899;Holding something over something +106171;Showing something next to something +160222;Putting something on the edge of something so it is not supported and falls down +187722;Moving something and something closer to each other +50861;Uncovering something +180622;Moving something and something closer to each other +56242;Moving something up +213941;Tearing something into two pieces +130073;Pushing something so that it falls off the table +34316;Scooping something up with something +12283;Moving something up +154027;Pushing something so it spins +189668;Spinning something that quickly stops spinning +116885;Lifting something up completely without letting it drop down +74041;Wiping something off of something +187444;Rolling something on a flat surface +184614;Showing something next to something +49874;Attaching something to something +129186;Moving something and something closer to each other +31879;Putting something on a surface +44965;Moving something and something closer to each other +131640;Spreading something onto something +81344;Unfolding something +531;Pretending to be tearing something that is not tearable +62576;Putting something, something and something on the table +212968;Picking something up +187364;Folding something +117179;Pushing something so that it slightly moves +73582;Lifting a surface with something on it until it starts sliding down +177639;Something being deflected from something +58594;Laying something on the table on its side, not upright +129171;Opening something +118288;Pulling something out of something +190200;Showing something behind something +2607;Opening something +73403;Moving something and something closer to each other +64016;Moving something across a surface without it falling down +176751;Stacking number of something +65368;Holding something over something +8560;Turning the camera right while filming something +10566;Pretending or trying and failing to twist something +180316;Moving something and something away from each other +27557;Something colliding with something and both come to a halt +144319;Pretending or failing to wipe something off of something +79820;Taking one of many similar things on the table +56700;Lifting something with something on it +155273;Pretending to take something from somewhere +153918;Lifting something up completely without letting it drop down +202047;Putting something underneath something +54877;Dropping something next to something +100112;Putting something on a surface +210920;Taking one of many similar things on the table +11937;Showing something on top of something +95060;Pulling two ends of something so that it separates into two pieces +101635;Poking something so it slightly moves +216197;Lifting something with something on it +16415;Pretending to pour something out of something, but something is empty +202456;Something falling like a rock +126778;Moving something away from something +36896;Dropping something behind something +62600;Dropping something next to something +204960;Lifting something up completely without letting it drop down +212439;Stacking number of something +141922;Trying to bend something unbendable so nothing happens +82565;Folding something +87400;Covering something with something +10253;Showing something on top of something +28171;Moving something down +100407;Moving something and something closer to each other +205256;Pushing something so that it falls off the table +48124;Pulling something from left to right +38998;Putting something on a surface +20481;Putting something and something on the table +9436;Pretending to put something on a surface +14905;Showing that something is empty +110464;Pretending to put something on a surface +57995;Attaching something to something +34112;Trying to bend something unbendable so nothing happens +30179;Lifting something with something on it +44449;Stuffing something into something +163209;Unfolding something +34243;Dropping something onto something +95117;Something falling like a rock +135214;Spinning something that quickly stops spinning +205376;Wiping something off of something +49261;Tearing something into two pieces +56181;Twisting something +103777;Turning something upside down +143461;Stacking number of something +214672;Picking something up +105374;Tearing something into two pieces +32074;Lifting something up completely, then letting it drop down +193372;Poking something so lightly that it doesn't or almost doesn't move +184594;Putting something onto something +61936;Spinning something so it continues spinning +151384;Pulling something out of something +113299;Opening something +112546;Something falling like a rock +161391;Covering something with something +86400;Pretending to put something on a surface +184104;Pushing something so that it almost falls off but doesn't +136707;Showing something next to something +187319;Showing that something is empty +118534;Covering something with something +27772;Putting something onto something else that cannot support it so it falls down +177369;Spinning something so it continues spinning +59653;Covering something with something +92497;Something falling like a feather or paper +44381;Lifting up one end of something, then letting it drop down +71379;Letting something roll along a flat surface +163783;Putting something underneath something +29034;Something falling like a feather or paper +2590;Pretending to scoop something up with something +159219;Moving something and something closer to each other +207281;Moving part of something +25212;Throwing something in the air and catching it +74780;Holding something +79238;Pretending to pick something up +200928;Tearing something into two pieces +67713;Stacking number of something +82461;Holding something in front of something +9415;Approaching something with your camera +126298;Plugging something into something +66788;Pushing something from right to left +181042;Pushing something off of something +91365;Putting something on a surface +159561;Throwing something +98006;Covering something with something +147215;Pretending or failing to wipe something off of something +111873;Putting something similar to other things that are already on the table +161950;Holding something in front of something +152902;Pushing something with something +116887;Moving something across a surface without it falling down +187774;Throwing something in the air and catching it +126869;Folding something +72200;Showing a photo of something to the camera +67172;Putting something in front of something +58016;Pushing something from right to left +167600;Putting something in front of something +143804;Something falling like a rock +12549;Trying but failing to attach something to something because it doesn't stick +71407;Lifting something up completely, then letting it drop down +145878;Tearing something into two pieces +54373;Letting something roll along a flat surface +190390;Pulling something from left to right +69369;Something colliding with something and both come to a halt +29090;Putting something next to something +162879;Approaching something with your camera +202210;Tilting something with something on it until it falls off +119328;Putting something and something on the table +119876;Putting something next to something +95393;Moving something and something closer to each other +161836;Tipping something with something in it over, so something in it falls out +5253;Tilting something with something on it slightly so it doesn't fall down +14264;Plugging something into something but pulling it right out as you remove your hand +217422;Something falling like a feather or paper +162564;Moving something across a surface until it falls down +43263;Pushing something from right to left +139868;Tearing something just a little bit +91525;Closing something +167459;Pushing something so that it falls off the table +38231;Moving away from something with your camera +13009;Moving something away from something +163367;Opening something +214422;Poking something so it slightly moves +69411;Tearing something just a little bit +102721;Sprinkling something onto something +119577;Stacking number of something +13957;Showing something to the camera +26889;Showing something behind something +36631;Something falling like a feather or paper +184764;Touching (without moving) part of something +21194;Tilting something with something on it until it falls off +40040;Pretending to poke something +99309;Putting number of something onto something +104838;Moving something and something away from each other +123497;Removing something, revealing something behind +160032;Dropping something onto something +11685;Moving something closer to something +203622;Pushing something with something +42684;Bending something until it breaks +63837;Moving something and something away from each other +156725;Rolling something on a flat surface +50379;Dropping something onto something +95868;Bending something so that it deforms +3818;Dropping something onto something +218933;Picking something up +31951;Showing something next to something +174024;Something colliding with something and both are being deflected +187092;Opening something +207583;Moving something and something closer to each other +159156;Covering something with something +140142;Rolling something on a flat surface +45827;Poking something so it slightly moves +5868;Pretending or trying and failing to twist something +193978;Tearing something into two pieces +21915;Putting something on a surface +175168;Holding something in front of something +4677;Tearing something into two pieces +51788;Pushing something so that it almost falls off but doesn't +92649;Pushing something from left to right +31527;Pretending to take something out of something +45762;Stuffing something into something +128097;Attaching something to something +86716;Dropping something in front of something +213542;Spilling something onto something +168217;Spinning something that quickly stops spinning +124429;Tipping something over +117702;Moving something and something so they collide with each other +22649;Taking one of many similar things on the table +169044;Digging something out of something +125247;Tearing something into two pieces +40010;Letting something roll along a flat surface +23418;Pulling something from left to right +195847;Spinning something so it continues spinning +50066;Touching (without moving) part of something +127892;Stacking number of something +3980;Pouring something out of something +65504;Dropping something onto something +62357;Putting something on a surface +36756;Opening something +65795;Moving something down +64234;Holding something over something +92563;Moving something down +165535;Showing something on top of something +204206;Tilting something with something on it slightly so it doesn't fall down +61581;Moving something closer to something +156783;Stuffing something into something +126888;Closing something +50819;Throwing something +172298;Opening something +113700;Something falling like a rock +72781;Turning something upside down +91443;Turning the camera upwards while filming something +166089;Tilting something with something on it until it falls off +169290;Taking something out of something +3086;Poking something so lightly that it doesn't or almost doesn't move +173636;Covering something with something +159780;Moving something across a surface until it falls down +57425;Laying something on the table on its side, not upright +107764;Folding something +53535;Pretending to put something on a surface +146278;Showing that something is inside something +215478;Dropping something in front of something +85325;Covering something with something +23556;Plugging something into something +203329;Folding something +215650;Taking one of many similar things on the table +76958;Covering something with something +49068;Squeezing something +190375;Throwing something onto a surface +203388;Pulling something from right to left +49051;Pushing something from right to left +195271;Pushing something from left to right +147648;Turning the camera downwards while filming something +92309;Stacking number of something +54484;Trying but failing to attach something to something because it doesn't stick +64354;Turning something upside down +112965;Tearing something into two pieces +141490;Covering something with something +11014;Closing something +76044;Pretending to take something from somewhere +34576;Showing something behind something +149008;Plugging something into something but pulling it right out as you remove your hand +15523;Pulling two ends of something but nothing happens +93919;Moving something and something so they pass each other +30879;Turning something upside down +201500;Unfolding something +114837;Showing something behind something +104042;Throwing something onto a surface +216685;Putting something that cannot actually stand upright upright on the table, so it falls on its side +74011;Putting something into something +106949;Putting something upright on the table +202926;Trying but failing to attach something to something because it doesn't stick +193823;Unfolding something +34498;Wiping something off of something +106842;Pretending to be tearing something that is not tearable +136894;Moving something and something away from each other +87626;Poking a hole into something soft +159592;Throwing something onto a surface +149012;Wiping something off of something +195622;Rolling something on a flat surface +85987;Pulling something from left to right +145852;Holding something in front of something +90029;Pretending to open something without actually opening it +36726;Something falling like a feather or paper +41525;Dropping something into something +166391;Taking something out of something +81768;Covering something with something +66483;Taking something out of something +12096;Lifting something with something on it +72752;Taking something out of something +42295;Holding something next to something +126579;Moving something closer to something +67204;Moving something up +103296;Tearing something into two pieces +133895;Moving something away from something +189293;Pretending to pour something out of something, but something is empty +10607;Showing something next to something +17352;Pulling something from right to left +212324;Pretending to be tearing something that is not tearable +125538;Pretending or failing to wipe something off of something +220103;Touching (without moving) part of something +32571;Tilting something with something on it slightly so it doesn't fall down +215922;Lifting up one end of something, then letting it drop down +40775;Lifting a surface with something on it but not enough for it to slide down +100355;Pretending to be tearing something that is not tearable +44995;Turning the camera right while filming something +197744;Plugging something into something +9651;Stacking number of something +188243;Showing something behind something +183935;Pushing something so that it almost falls off but doesn't +45839;Sprinkling something onto something +42164;Pretending to be tearing something that is not tearable +49501;Showing something on top of something +122764;Pushing something from left to right +90307;Something falling like a feather or paper +34404;Showing something on top of something +53690;Pretending to put something next to something +219885;Pouring something into something +69447;Moving something closer to something +53517;Folding something +164434;Unfolding something +158366;Lifting something with something on it +59472;Approaching something with your camera +16097;Dropping something into something +145716;Showing something behind something +112565;Sprinkling something onto something +29901;Covering something with something +39193;Bending something so that it deforms +87700;Showing that something is empty +198740;Tipping something over +38961;Laying something on the table on its side, not upright +212184;Taking one of many similar things on the table +220239;Pushing something so that it falls off the table +4425;Throwing something in the air and letting it fall +19224;Pretending to pick something up +112914;Hitting something with something +62991;Spinning something that quickly stops spinning +10730;Putting something on a surface +111848;Holding something over something +186359;Moving something away from something +13007;Moving something across a surface without it falling down +119788;Pulling something from left to right +126054;Putting something on a surface +178036;Throwing something in the air and catching it +128216;Moving something and something away from each other +194018;Showing something on top of something +125203;Stacking number of something +96057;Trying to bend something unbendable so nothing happens +67210;Stuffing something into something +72110;Throwing something in the air and catching it +104393;Showing something on top of something +113039;Opening something +181344;Touching (without moving) part of something +37628;Putting something onto something +108807;Letting something roll along a flat surface +96791;Putting something next to something +118783;Something falling like a rock +163334;Tearing something into two pieces +22415;Holding something next to something +8285;Pushing something from right to left +124164;Throwing something onto a surface +146329;Attaching something to something +153548;Pulling two ends of something but nothing happens +43885;Pretending to be tearing something that is not tearable +187337;Stuffing something into something +209776;Showing that something is empty +4148;Hitting something with something +132441;Removing something, revealing something behind +22904;Tipping something over +167363;Plugging something into something +74344;Bending something until it breaks +121018;Moving something up +174500;Something falling like a feather or paper +177732;Putting something into something +124644;Moving something and something closer to each other +45975;Scooping something up with something +165720;Something falling like a rock +96481;Lifting a surface with something on it but not enough for it to slide down +132153;Lifting something up completely, then letting it drop down +35619;Pushing something so that it slightly moves +107194;Moving something and something so they pass each other +135510;Showing something on top of something +47112;Putting something similar to other things that are already on the table +72678;Pushing something off of something +12223;Showing something behind something +67206;Spinning something that quickly stops spinning +60996;Rolling something on a flat surface +180433;Closing something +35912;Holding something next to something +34988;Removing something, revealing something behind +192282;Letting something roll along a flat surface +163300;Moving something across a surface until it falls down +162456;Lifting up one end of something without letting it drop down +147841;Pushing something so that it falls off the table +30158;Putting something into something +50343;Lifting something up completely, then letting it drop down +141993;Pushing something so that it slightly moves +98364;Pretending to sprinkle air onto something +50642;Piling something up +66389;Pretending to be tearing something that is not tearable +140873;Moving something closer to something +21428;Holding something behind something +98195;Pushing something so that it slightly moves +86160;Covering something with something +139403;Picking something up +31097;Bending something so that it deforms +1459;Pretending to be tearing something that is not tearable +200987;Something falling like a feather or paper +106145;Pretending to put something next to something +52474;Twisting something +50080;Pushing something so that it slightly moves +35275;Moving something down +16832;Showing something behind something +169716;Showing something behind something +220747;Pretending to pick something up +12433;Putting something similar to other things that are already on the table +206785;Rolling something on a flat surface +91161;Holding something behind something +196236;Moving something towards the camera +197153;Spinning something that quickly stops spinning +63627;Covering something with something +47577;Pretending to open something without actually opening it +145156;Dropping something onto something +151195;Putting something that cannot actually stand upright upright on the table, so it falls on its side +94772;Pouring something into something +17273;Something being deflected from something +169422;Something being deflected from something +194871;Turning something upside down +146267;Putting something into something +111086;Holding something in front of something +203704;Showing something behind something +105502;Tearing something into two pieces +87783;Putting something on a flat surface without letting it roll +199127;Showing something behind something +180548;Poking something so that it falls over +40218;Putting something on a flat surface without letting it roll +186497;Taking something out of something +175928;Moving something up +590;Holding something over something +84954;Dropping something onto something +58618;Holding something in front of something +38544;Hitting something with something +123916;Pretending to close something without actually closing it +129280;Spinning something so it continues spinning +142277;Rolling something on a flat surface +95850;Putting something into something +107063;Lifting something up completely, then letting it drop down +194910;Folding something +172622;Something falling like a feather or paper +9113;Holding something behind something +119215;Burying something in something +100720;Showing something next to something +146812;Showing something behind something +26981;Moving something away from the camera +167481;Moving something away from something +55185;Tearing something into two pieces +37335;Squeezing something +154106;Pouring something into something until it overflows +193564;Holding something over something +24716;Putting something on a surface +109538;Poking something so lightly that it doesn't or almost doesn't move +1020;Pretending to open something without actually opening it +170306;Pushing something so that it slightly moves +38467;Throwing something in the air and letting it fall +176044;Pretending to put something into something +142809;Uncovering something +170102;Opening something +17263;Moving something down +126997;Attaching something to something +97226;Pretending to scoop something up with something +198501;Moving something and something closer to each other +133319;Throwing something against something +106086;Pulling two ends of something so that it gets stretched +63029;Scooping something up with something +218608;Moving something and something away from each other +92459;Moving something across a surface until it falls down +53429;Poking something so it slightly moves +147563;Moving something and something closer to each other +150342;Tearing something into two pieces +137121;Showing something next to something +91302;Tearing something into two pieces +161196;Rolling something on a flat surface +144184;Unfolding something +212529;Lifting a surface with something on it but not enough for it to slide down +136648;Putting something on a surface +8804;Putting something into something +169859;Moving something and something closer to each other +131570;Something falling like a feather or paper +138898;Moving something closer to something +199500;Pretending to take something from somewhere +122394;Trying but failing to attach something to something because it doesn't stick +14414;Putting something onto something +11622;Taking one of many similar things on the table +148310;Lifting something with something on it +77416;Trying to bend something unbendable so nothing happens +41747;Plugging something into something +153993;Opening something +69145;Stuffing something into something +21521;Moving something closer to something +87439;Covering something with something +78737;Showing that something is empty +135556;Pretending to take something out of something +131590;Pushing something so that it falls off the table +78171;Pulling two ends of something so that it gets stretched +197772;Pushing something from right to left +189675;Showing that something is inside something +199750;Letting something roll up a slanted surface, so it rolls back down +38330;Moving something closer to something +136915;Turning something upside down +67861;Turning something upside down +44759;Showing something behind something +196686;Putting something on a surface +25937;Plugging something into something but pulling it right out as you remove your hand +205078;Touching (without moving) part of something +12294;Pretending to take something out of something +35590;Holding something +183588;Touching (without moving) part of something +5422;Showing that something is inside something +92414;Holding something behind something +160185;Pretending to be tearing something that is not tearable +149067;Putting something similar to other things that are already on the table +113057;Tilting something with something on it until it falls off +44761;Holding something +68475;Pulling something out of something +43485;Putting something in front of something +57839;Moving something closer to something +93148;Moving something up +20027;Letting something roll along a flat surface +27800;Plugging something into something +55008;Trying to bend something unbendable so nothing happens +16382;Showing that something is inside something +220211;Hitting something with something +182557;Poking something so that it falls over +209242;Pouring something into something +94440;Turning something upside down +205771;Poking something so lightly that it doesn't or almost doesn't move +20362;Pushing something from left to right +115931;Stuffing something into something +165891;Lifting up one end of something, then letting it drop down +100829;Squeezing something +71102;Tearing something just a little bit +48676;Showing that something is inside something +54960;Pushing something so that it falls off the table +147190;Twisting something +165993;Pretending to squeeze something +112115;Pouring something into something +161439;Attaching something to something +60637;Pretending to squeeze something +186749;Pushing something off of something +183687;Something being deflected from something +197521;Putting something behind something +171706;Showing something behind something +115760;Moving something closer to something +81125;Putting something onto something +71189;Letting something roll along a flat surface +186657;Hitting something with something +146788;Throwing something +66762;Throwing something +200463;Taking something out of something +206894;Pushing something so that it almost falls off but doesn't +80516;Unfolding something +143724;Throwing something against something +59628;Pushing something from right to left +145052;Moving something across a surface without it falling down +1738;Pretending or trying and failing to twist something +53890;Pretending to put something on a surface +187740;Spinning something so it continues spinning +165526;Moving something across a surface until it falls down +163370;Tipping something over +95178;Holding something behind something +158234;Lifting up one end of something without letting it drop down +89749;Poking something so that it falls over +109040;Plugging something into something but pulling it right out as you remove your hand +59552;Wiping something off of something +155662;Moving something away from something +159292;Covering something with something +163818;Hitting something with something +128895;Opening something +105515;Plugging something into something but pulling it right out as you remove your hand +69343;Pretending to pick something up +12389;Pushing something so that it almost falls off but doesn't +39297;Tipping something over +38468;Pouring something into something +34476;Stacking number of something +78456;Plugging something into something +116764;Pushing something so it spins +192163;Moving something closer to something +170487;Failing to put something into something because something does not fit +155895;Moving something and something away from each other +112526;Putting something into something +108639;Putting something behind something +103534;Pouring something into something +173543;Stacking number of something +189391;Spinning something that quickly stops spinning +164916;Squeezing something +117545;Moving something down +2508;Pretending to close something without actually closing it +204698;Laying something on the table on its side, not upright +150897;Throwing something +27912;Bending something until it breaks +196006;Putting something that can't roll onto a slanted surface, so it stays where it is +163342;Pushing something from left to right +220793;Showing something behind something +136912;Pouring something into something +135339;Spreading something onto something +13008;Bending something so that it deforms +158328;Closing something +57003;Pretending to open something without actually opening it +183764;Pretending to open something without actually opening it +6982;Pushing something so that it falls off the table +66265;Putting something in front of something +95907;Moving something and something so they collide with each other +217181;Showing something behind something +128228;Pouring something onto something +38355;Something falling like a feather or paper +75220;Putting something on a flat surface without letting it roll +78958;Something colliding with something and both are being deflected +71328;Tearing something just a little bit +123093;Putting something onto something +193446;Putting something next to something +81168;Tearing something into two pieces +94130;Closing something +41333;Pretending to take something out of something +92965;Tearing something just a little bit +82931;Putting something on a flat surface without letting it roll +203129;Pretending to scoop something up with something +210372;Wiping something off of something +202605;Twisting (wringing) something wet until water comes out +187052;Pretending to put something on a surface +11383;Dropping something in front of something +193821;Putting something and something on the table +139792;Hitting something with something +195017;Pushing something from left to right +207477;Showing something behind something +56950;Poking a hole into something soft +128668;Putting something into something +151928;Pretending to squeeze something +60811;Scooping something up with something +182246;Putting something, something and something on the table +45501;Dropping something behind something +129630;Digging something out of something +64649;Showing that something is empty +111243;Tearing something into two pieces +53601;Putting something on a surface +11481;Plugging something into something but pulling it right out as you remove your hand +216799;Moving something and something closer to each other +174737;Throwing something onto a surface +152343;Lifting something with something on it +108308;Tearing something into two pieces +2716;Pouring something into something +21827;Removing something, revealing something behind +31825;Twisting (wringing) something wet until water comes out +203652;Pretending to take something out of something +58130;Squeezing something +194193;Uncovering something +169463;Something colliding with something and both are being deflected +71062;Pushing something off of something +206756;Taking one of many similar things on the table +92120;Attaching something to something +129401;Putting something onto something +162015;Throwing something against something +29528;Throwing something in the air and catching it +110854;Putting something on the edge of something so it is not supported and falls down +29024;Pushing something with something +160815;Touching (without moving) part of something +203199;Pretending to squeeze something +134894;Rolling something on a flat surface +104512;Pushing something so it spins +86372;Poking a hole into something soft +143798;Unfolding something +103382;Twisting something +148090;Touching (without moving) part of something +122317;Moving something and something closer to each other +118037;Pretending to poke something +37927;Sprinkling something onto something +15548;Moving something down +77969;Picking something up +34005;Pulling something out of something +160001;Pushing something so that it falls off the table +202197;Moving something and something away from each other +94407;Pushing something from left to right +93231;Pushing something so that it falls off the table +194772;Showing that something is empty +203043;Showing something behind something +180294;Holding something in front of something +5893;Stuffing something into something +127267;Putting something underneath something +117747;Pushing something off of something +185179;Pouring something into something +17039;Putting something on a surface +205291;Dropping something next to something +20561;Lifting up one end of something, then letting it drop down +155035;Picking something up +33089;Holding something over something +164090;Piling something up +78466;Moving something and something closer to each other +220812;Pouring something out of something +204195;Pulling something from left to right +19158;Putting something, something and something on the table +126719;Tipping something over +135681;Covering something with something +180570;Pretending to poke something +79462;Attaching something to something +198358;Pretending to pick something up +150142;Folding something +160847;Uncovering something +107342;Taking one of many similar things on the table +27888;Holding something +146950;Moving something up +85633;Closing something +137663;Pretending to put something on a surface +205820;Holding something behind something +100461;Moving something up +19212;Poking a stack of something so the stack collapses +216497;Pouring something onto something +87821;Putting something on a surface +71926;Pretending to put something underneath something +177062;Picking something up +200302;Rolling something on a flat surface +193774;Rolling something on a flat surface +187461;Hitting something with something +77435;Tearing something into two pieces +140029;Putting something next to something +158998;Moving something up +43064;Pretending to sprinkle air onto something +66003;Putting something similar to other things that are already on the table +40330;Spilling something onto something +199594;Putting something similar to other things that are already on the table +104762;Stacking number of something +45783;Wiping something off of something +202440;Holding something over something +188117;Pushing something so that it slightly moves +77034;Opening something +200728;Taking something from somewhere +9560;Tilting something with something on it until it falls off +214375;Pulling two ends of something so that it separates into two pieces +184191;Putting number of something onto something +63472;Pushing something so that it falls off the table +18915;Pushing something with something +179283;Pretending to turn something upside down +62781;Something falling like a rock +10292;Holding something over something +23931;Moving something and something closer to each other +188751;Taking one of many similar things on the table +161712;Trying but failing to attach something to something because it doesn't stick +202568;Showing something behind something +140544;Holding something behind something +76628;Tilting something with something on it slightly so it doesn't fall down +149036;Plugging something into something but pulling it right out as you remove your hand +180435;Throwing something in the air and letting it fall +15880;Stacking number of something +78906;Pretending to open something without actually opening it +140414;Putting something, something and something on the table +163178;Dropping something into something +136922;Showing that something is empty +215031;Covering something with something +19972;Moving something across a surface without it falling down +219140;Pretending to poke something +112855;Putting something on a surface +83683;Putting something onto something else that cannot support it so it falls down +34354;Moving something across a surface until it falls down +71166;Poking something so lightly that it doesn't or almost doesn't move +17988;Opening something +169081;Pushing something off of something +58842;Squeezing something +177781;Taking something out of something +136427;Turning the camera downwards while filming something +58968;Poking something so that it falls over +194665;Pouring something into something +142764;Dropping something in front of something +183050;Moving something across a surface until it falls down +100467;Moving away from something with your camera +140716;Lifting something with something on it +59626;Throwing something in the air and catching it +68109;Scooping something up with something +103390;Lifting something with something on it +97767;Tipping something with something in it over, so something in it falls out +128686;Covering something with something +14084;Spinning something so it continues spinning +37824;Throwing something against something +20071;Pretending to turn something upside down +215201;Covering something with something +201653;Pulling something from behind of something +89910;Closing something +5695;Tearing something into two pieces +27149;Pretending to be tearing something that is not tearable +21039;Opening something +181029;Spinning something so it continues spinning +174161;Holding something +44414;Turning the camera right while filming something +148856;Tilting something with something on it until it falls off +51321;Holding something next to something +180362;Holding something behind something +183607;Moving something across a surface without it falling down +191539;Moving something and something away from each other +94012;Closing something +28879;Pushing something from right to left +150396;Tipping something with something in it over, so something in it falls out +203178;Pretending to put something into something +182257;Stuffing something into something +61197;Uncovering something +179878;Pretending to put something into something +95472;Plugging something into something +199955;Moving away from something with your camera +192402;Opening something +143959;Moving something across a surface without it falling down +157567;Moving something across a surface until it falls down +61980;Pretending or failing to wipe something off of something +153488;Moving something closer to something +38818;Moving something closer to something +201018;Putting something similar to other things that are already on the table +117535;Showing something next to something +148891;Taking one of many similar things on the table +28157;Pushing something with something +210532;Turning something upside down +10294;Taking something out of something +134384;Holding something +216056;Pouring something out of something +24086;Moving something and something so they collide with each other +42818;Tearing something into two pieces +40034;Pushing something from right to left +42349;Pulling two ends of something so that it separates into two pieces +220664;Showing that something is empty +33976;Tearing something into two pieces +108685;Pulling something out of something +43166;Putting number of something onto something +47286;Pretending to open something without actually opening it +139472;Putting something on a surface +107608;Taking one of many similar things on the table +24694;Covering something with something +21307;Pretending to squeeze something +59196;Moving something up +137639;Holding something in front of something +206018;Uncovering something +207293;Picking something up +114002;Pretending to open something without actually opening it +11165;Bending something so that it deforms +132343;Tearing something just a little bit +211393;Twisting something +161771;Plugging something into something but pulling it right out as you remove your hand +4080;Showing something behind something +175163;Twisting something +131218;Putting something, something and something on the table +53275;Tearing something just a little bit +161426;Holding something next to something +69595;Pretending to poke something +219157;Showing something behind something +92748;Putting something and something on the table +139534;Pulling something out of something +64517;Touching (without moving) part of something +127716;Scooping something up with something +116937;Pulling something from right to left +180743;Throwing something in the air and catching it +169675;Pushing something from right to left +104473;Trying but failing to attach something to something because it doesn't stick +171430;Attaching something to something +158662;Tearing something just a little bit +126372;Putting something next to something +141971;Dropping something next to something +163475;Moving something and something closer to each other +73597;Showing something behind something +27106;Plugging something into something +94564;Taking something out of something +98112;Pulling something from right to left +182354;Moving part of something +218982;Spilling something next to something +71878;Plugging something into something but pulling it right out as you remove your hand +203474;Spinning something that quickly stops spinning +159367;Putting something on a surface +104679;Putting something on a surface +87264;Moving something and something closer to each other +108300;Dropping something next to something +178694;Pushing something off of something +7397;Moving something away from something +49011;Opening something +99179;Throwing something in the air and catching it +131160;Dropping something onto something +160740;Putting something behind something +20023;Touching (without moving) part of something +98693;Turning something upside down +33496;Scooping something up with something +98630;Putting something on the edge of something so it is not supported and falls down +203779;Spinning something so it continues spinning +74377;Dropping something onto something +35722;Pretending to open something without actually opening it +67944;Showing that something is empty +151461;Showing that something is empty +6859;Unfolding something +218160;Uncovering something +66286;Showing something behind something +28837;Throwing something +6727;Putting something into something +132351;Showing something behind something +94722;Holding something behind something +113317;Showing something behind something +145617;Holding something next to something +43032;Throwing something in the air and catching it +15070;Tearing something into two pieces +52082;Something falling like a rock +13270;Tearing something just a little bit +180406;Pushing something so that it slightly moves +51478;Throwing something onto a surface +219256;Poking something so that it falls over +116181;Tilting something with something on it until it falls off +123512;Pulling two ends of something but nothing happens +117903;Moving something and something closer to each other +155764;Stuffing something into something +103730;Putting something similar to other things that are already on the table +157163;Folding something +118332;Dropping something onto something +115887;Putting something on a surface +187733;Showing something behind something +79912;Attaching something to something +124991;Plugging something into something +85164;Something falling like a rock +122511;Pushing something from right to left +135035;Something falling like a feather or paper +202106;Putting something on a surface +74690;Spinning something that quickly stops spinning +168886;Picking something up +114902;Pretending to be tearing something that is not tearable +193990;Moving something away from something +44120;Turning something upside down +85512;Lifting something with something on it +212466;Showing something behind something +140653;Pushing something from right to left +201945;Burying something in something +10575;Plugging something into something but pulling it right out as you remove your hand +15964;Putting something into something +88948;Plugging something into something +151196;Pushing something so that it almost falls off but doesn't +27451;Showing something next to something +151621;Opening something +133282;Lifting up one end of something, then letting it drop down +152942;Touching (without moving) part of something +181655;Putting something, something and something on the table +42310;Putting something that cannot actually stand upright upright on the table, so it falls on its side +91867;Putting something on the edge of something so it is not supported and falls down +176096;Moving something and something closer to each other +126300;Bending something until it breaks +141743;Something falling like a feather or paper +212209;Something colliding with something and both are being deflected +203425;Pretending to turn something upside down +126802;Moving something closer to something +145369;Holding something in front of something +183802;Pushing something off of something +97028;Showing something next to something +36463;Moving something up +183819;Putting something in front of something +181801;Poking something so lightly that it doesn't or almost doesn't move +75239;Pretending or trying and failing to twist something +60978;Lifting something up completely, then letting it drop down +127979;Unfolding something +78182;Moving something up +209956;Pretending to close something without actually closing it +6120;Showing that something is empty +155873;Something falling like a rock +158424;Pouring something into something +43375;Rolling something on a flat surface +44086;Tilting something with something on it until it falls off +200657;Laying something on the table on its side, not upright +40692;Putting something onto something +124612;Pretending to throw something +117828;Something being deflected from something +69382;Pretending to put something into something +86138;Tilting something with something on it until it falls off +143091;Pushing something so that it slightly moves +200816;Tearing something into two pieces +36215;Tipping something over +47970;Pulling something from right to left +114738;Showing something next to something +83999;Spinning something so it continues spinning +146650;Pretending to put something next to something +66442;Putting something underneath something +186900;Holding something in front of something +177392;Putting something similar to other things that are already on the table +210685;Dropping something into something +40165;Putting something similar to other things that are already on the table +145077;Pretending to pick something up +71481;Pretending to put something next to something +3996;Putting number of something onto something +144551;Letting something roll along a flat surface +114849;Moving something and something away from each other +106121;Moving something down +90363;Pulling something from right to left +142407;Pushing something so that it almost falls off but doesn't +200947;Lifting something up completely, then letting it drop down +177795;Showing something behind something +18696;Tearing something into two pieces +75422;Throwing something against something +213260;Pushing something from left to right +218483;Pushing something so that it falls off the table +33906;Pushing something from left to right +83294;Pushing something so that it almost falls off but doesn't +63498;Lifting something with something on it +193129;Tipping something over +128219;Tearing something just a little bit +181095;Tearing something into two pieces +40177;Something falling like a feather or paper +144301;Pouring something into something +31489;Tearing something into two pieces +202215;Covering something with something +107240;Pretending to open something without actually opening it +39138;Plugging something into something but pulling it right out as you remove your hand +104602;Taking something out of something +63028;Putting something in front of something +81535;Pretending to pour something out of something, but something is empty +167321;Squeezing something +175768;Twisting something +158624;Laying something on the table on its side, not upright +134641;Moving something and something away from each other +101147;Poking a hole into some substance +140666;Lifting something up completely without letting it drop down +128610;Plugging something into something +162239;Holding something over something +24850;Tearing something into two pieces +181188;Plugging something into something +183842;Taking something out of something +79901;Poking something so lightly that it doesn't or almost doesn't move +96120;Pulling two ends of something but nothing happens +203644;Pretending to put something onto something +78452;Scooping something up with something +144452;Squeezing something +49053;Taking something from somewhere +31507;Moving something closer to something +87169;Tearing something into two pieces +139177;Poking something so lightly that it doesn't or almost doesn't move +171704;Lifting up one end of something, then letting it drop down +216991;Pushing something from left to right +92615;Showing something behind something +55460;Moving something and something closer to each other +21762;Spreading something onto something +7222;Turning the camera upwards while filming something +70625;Plugging something into something +98948;Letting something roll up a slanted surface, so it rolls back down +8306;Wiping something off of something +37517;Bending something until it breaks +106154;Bending something so that it deforms +69511;Covering something with something +80826;Trying to bend something unbendable so nothing happens +182970;Pulling two ends of something so that it gets stretched +51422;Putting something similar to other things that are already on the table +8229;Moving something and something away from each other +210832;Moving something across a surface without it falling down +199110;Letting something roll along a flat surface +1455;Putting something in front of something +140616;Throwing something against something +124697;Plugging something into something but pulling it right out as you remove your hand +47922;Trying to bend something unbendable so nothing happens +77663;Putting something in front of something +107269;Tearing something just a little bit +97674;Putting something upright on the table +44387;Something falling like a rock +205712;Hitting something with something +145162;Putting something that cannot actually stand upright upright on the table, so it falls on its side +93516;Stacking number of something +66830;Pouring something into something +70449;Putting something on a flat surface without letting it roll +62405;Dropping something into something +167641;Pushing something so that it slightly moves +130076;Showing something next to something +198887;Plugging something into something +56153;Putting something next to something +179356;Pulling something from behind of something +85749;Moving something and something so they pass each other +165570;Pushing something from right to left +43921;Moving something down +105378;Showing that something is empty +130932;Squeezing something +102417;Taking one of many similar things on the table +194586;Holding something next to something +21454;Taking one of many similar things on the table +89237;Pushing something from right to left +191886;Pulling something from left to right +71317;Showing that something is empty +55528;Holding something over something +59914;Opening something +217532;Taking something out of something +22377;Holding something behind something +160579;Pouring something into something +131333;Pretending to put something on a surface +122415;Putting something in front of something +131146;Putting something and something on the table +185273;Folding something +172779;Taking one of many similar things on the table +157153;Pouring something into something +174883;Putting something into something +74722;Taking something out of something +213719;Showing something behind something +199405;Tearing something just a little bit +13383;Showing something next to something +200236;Unfolding something +95435;Showing something on top of something +210741;Piling something up +87785;Something falling like a rock +22162;Throwing something against something +98565;Moving something closer to something +136672;Letting something roll down a slanted surface +13682;Moving something up +159074;Pushing something from left to right +194423;Tipping something over +177353;Pretending to sprinkle air onto something +7234;Twisting something +181870;Putting something on a surface +177940;Bending something until it breaks +74553;Moving something away from something +149160;Pushing something so it spins +166930;Holding something +19601;Holding something behind something +177666;Letting something roll down a slanted surface +101814;Pretending to pick something up +42777;Something falling like a feather or paper +157920;Pretending to scoop something up with something +139923;Pretending to turn something upside down +5442;Throwing something against something +208313;Tearing something into two pieces +165121;Putting something, something and something on the table +214812;Moving something away from something +97230;Something falling like a rock +178736;Putting something similar to other things that are already on the table +82399;Showing something on top of something +107210;Uncovering something +46283;Showing something next to something +130864;Showing something to the camera +84968;Turning the camera downwards while filming something +182250;Dropping something onto something +44735;Putting something on a surface +172365;Putting something similar to other things that are already on the table +50442;Moving something away from something +166915;Plugging something into something but pulling it right out as you remove your hand +156728;Tipping something with something in it over, so something in it falls out +201761;Taking one of many similar things on the table +10551;Moving something across a surface without it falling down +218346;Pushing something so that it falls off the table +109742;Pretending to scoop something up with something +185382;Twisting something +104592;Taking something out of something +11912;Pulling something from right to left +198354;Hitting something with something +110834;Turning something upside down +105606;Holding something over something +190801;Poking a stack of something without the stack collapsing +202008;Pushing something from left to right +196641;Showing something on top of something +36732;Pretending or trying and failing to twist something +25977;Putting something on a surface +172736;Holding something next to something +112166;Laying something on the table on its side, not upright +205797;Scooping something up with something +106335;Putting something that cannot actually stand upright upright on the table, so it falls on its side +123495;Folding something +193972;Something falling like a feather or paper +87497;Moving something and something closer to each other +199770;Holding something in front of something +92658;Something falling like a rock +84960;Plugging something into something +182663;Squeezing something +83807;Moving something and something away from each other +162568;Showing something to the camera +76826;Turning something upside down +16012;Pouring something out of something +220727;Removing something, revealing something behind +156578;Digging something out of something +79579;Pretending to poke something +138103;Showing something on top of something +205109;Pretending or trying and failing to twist something +1361;Putting something on a flat surface without letting it roll +180003;Picking something up +109079;Plugging something into something +200998;Moving something and something away from each other +200235;Showing that something is empty +19355;Showing something on top of something +86463;Twisting something +45677;Lifting something with something on it +136197;Putting something on a surface +178196;Throwing something +29549;Spinning something that quickly stops spinning +216955;Closing something +150207;Putting something, something and something on the table +27406;Moving something away from something +87428;Pushing something so it spins +218118;Pushing something so that it slightly moves +144741;Turning something upside down +171151;Approaching something with your camera +183720;Piling something up +121038;Throwing something in the air and catching it +116065;Holding something in front of something +132494;Holding something next to something +156319;Moving something across a surface until it falls down +83385;Putting something, something and something on the table +88631;Putting something similar to other things that are already on the table +157112;Squeezing something +12533;Something colliding with something and both are being deflected +164865;Spilling something onto something +96900;Squeezing something +156924;Trying to bend something unbendable so nothing happens +10581;Opening something +39419;Pouring something into something +93211;Dropping something in front of something +45576;Pretending to put something into something +49512;Picking something up +121900;Turning something upside down +38172;Rolling something on a flat surface +180018;Putting something on a surface +26275;Pushing something so that it slightly moves +117709;Putting something in front of something +93060;Lifting up one end of something, then letting it drop down +150696;Taking something out of something +159641;Lifting something up completely, then letting it drop down +25369;Turning something upside down +67984;Holding something next to something +57492;Holding something next to something +201697;Poking a stack of something without the stack collapsing +21609;Rolling something on a flat surface +106953;Lifting up one end of something, then letting it drop down +41461;Pulling something from right to left +159974;Pretending to pick something up +133633;Putting something next to something +187228;Lifting something up completely, then letting it drop down +148692;Spinning something so it continues spinning +32683;Showing that something is inside something +90469;Pouring something out of something +159850;Pulling something out of something +139208;Lifting up one end of something without letting it drop down +154505;Tearing something into two pieces +68310;Removing something, revealing something behind +83977;Touching (without moving) part of something +170133;Folding something +110662;Spreading something onto something +190171;Holding something behind something +152568;Pulling something from left to right +212245;Moving something and something away from each other +87874;Plugging something into something +10838;Something falling like a feather or paper +132520;Showing that something is empty +36212;Putting something on the edge of something so it is not supported and falls down +187384;Pushing something so it spins +159140;Moving something and something closer to each other +159467;Rolling something on a flat surface +77837;Hitting something with something +63457;Putting something upright on the table +114295;Moving something across a surface until it falls down +193395;Putting something next to something +99188;Pretending to throw something +20386;Sprinkling something onto something +206820;Putting something and something on the table +11841;Moving something and something away from each other +218835;Letting something roll down a slanted surface +87611;Opening something +212903;Putting something similar to other things that are already on the table +597;Poking something so that it falls over +162186;Showing something behind something +101708;Stuffing something into something +163201;Putting something on a flat surface without letting it roll +218519;Pretending to pick something up +78896;Pretending to open something without actually opening it +147704;Taking something out of something +69247;Taking one of many similar things on the table +113538;Holding something in front of something +48139;Putting something into something +27153;Trying to bend something unbendable so nothing happens +107416;Moving something away from the camera +47090;Putting something underneath something +207686;Showing that something is inside something +123840;Lifting something up completely, then letting it drop down +196673;Scooping something up with something +49350;Pretending or failing to wipe something off of something +91830;Sprinkling something onto something +205674;Moving something and something closer to each other +50062;Taking something out of something +127115;Rolling something on a flat surface +43307;Twisting something +159978;Moving something up +160711;Putting something that cannot actually stand upright upright on the table, so it falls on its side +150361;Pulling something from right to left +95214;Lifting something with something on it +26898;Pretending to poke something +32190;Showing something next to something +199367;Pushing something from right to left +18523;Showing that something is empty +176931;Putting number of something onto something +64890;Pretending to put something on a surface +209923;Rolling something on a flat surface +188586;Spinning something so it continues spinning +57946;Tearing something into two pieces +108113;Stuffing something into something +160340;Folding something +151593;Pretending to open something without actually opening it +65452;Picking something up +90626;Laying something on the table on its side, not upright +191499;Tearing something just a little bit +204975;Turning something upside down +65163;Putting something that cannot actually stand upright upright on the table, so it falls on its side +29207;Pulling something from right to left +63898;Bending something so that it deforms +74223;Turning something upside down +118272;Pretending to scoop something up with something +4450;Moving something closer to something +174477;Lifting something up completely without letting it drop down +52872;Squeezing something +15740;Opening something +68549;Something falling like a feather or paper +179120;Pulling two ends of something so that it gets stretched +219496;Picking something up +50622;Covering something with something +54263;Showing something next to something +79950;Dropping something in front of something +6441;Tipping something over +62114;Pushing something from right to left +219977;Holding something next to something +219333;Letting something roll down a slanted surface +158764;Pretending to poke something +79375;Throwing something in the air and letting it fall +216957;Unfolding something +63339;Opening something +209977;Bending something so that it deforms +107280;Trying to bend something unbendable so nothing happens +88271;Pushing something so that it falls off the table +188145;Showing something behind something +204989;Holding something +154499;Stuffing something into something +171895;Pulling something from behind of something +220595;Twisting something +120339;Putting something and something on the table +24003;Putting something similar to other things that are already on the table +63300;Spinning something so it continues spinning +136013;Putting something onto something +122323;Tearing something into two pieces +183372;Moving something across a surface until it falls down +129355;Squeezing something +119115;Plugging something into something +197247;Poking a stack of something so the stack collapses +112693;Putting something into something +166628;Tilting something with something on it slightly so it doesn't fall down +138750;Removing something, revealing something behind +166313;Holding something +101686;Poking something so that it falls over +134850;Pulling something from right to left +45912;Tipping something over +8367;Trying to bend something unbendable so nothing happens +203718;Pretending to put something on a surface +130799;Squeezing something +50303;Throwing something in the air and catching it +156277;Covering something with something +100798;Tearing something into two pieces +195392;Pushing something with something +100827;Putting something in front of something +205354;Letting something roll up a slanted surface, so it rolls back down +38821;Plugging something into something +312;Moving something and something closer to each other +219015;Pushing something so that it falls off the table +197979;Pulling something out of something +79479;Pretending to open something without actually opening it +120215;Poking something so that it falls over +5586;Hitting something with something +207383;Showing that something is empty +175541;Plugging something into something but pulling it right out as you remove your hand +34522;Holding something behind something +188830;Moving something and something closer to each other +23514;Poking something so it slightly moves +218069;Tearing something just a little bit +95297;Throwing something +13163;Showing something on top of something +148021;Holding something next to something +152569;Moving part of something +169823;Stacking number of something +24275;Putting something that can't roll onto a slanted surface, so it stays where it is +28790;Putting something onto a slanted surface but it doesn't glide down +89984;Showing something next to something +208795;Pouring something onto something +205823;Covering something with something +62397;Something falling like a feather or paper +142057;Pretending to pour something out of something, but something is empty +201088;Squeezing something +1991;Moving something towards the camera +77740;Lifting something with something on it +137738;Folding something +46565;Pouring something into something +127731;Moving something down +169284;Something falling like a feather or paper +202452;Moving something down +32051;Dropping something onto something +34384;Moving something across a surface until it falls down +219406;Showing that something is inside something +152469;Pushing something from left to right +215174;Showing something behind something +96121;Throwing something +84251;Twisting something +122563;Moving part of something +151606;Holding something in front of something +41707;Showing that something is inside something +1344;Lifting something with something on it +217962;Putting something onto something +170697;Putting something into something +90288;Tilting something with something on it until it falls off +55593;Turning something upside down +61499;Tipping something over +173905;Wiping something off of something +141914;Holding something +49455;Poking something so lightly that it doesn't or almost doesn't move +143718;Putting something, something and something on the table +159722;Tipping something over +10703;Moving something and something closer to each other +108131;Taking something out of something +55890;Twisting something +52527;Lifting something with something on it +195832;Putting number of something onto something +40733;Pretending to be tearing something that is not tearable +186912;Rolling something on a flat surface +133126;Lifting something up completely without letting it drop down +10980;Tearing something just a little bit +76357;Something colliding with something and both come to a halt +88708;Putting something on the edge of something so it is not supported and falls down +14409;Squeezing something +23355;Putting something on a surface +79404;Tearing something into two pieces +38492;Taking something out of something +212597;Holding something next to something +208984;Putting something that cannot actually stand upright upright on the table, so it falls on its side +88999;Poking something so that it falls over +180875;Throwing something +86170;Moving something across a surface until it falls down +210806;Lifting up one end of something without letting it drop down +163082;Something falling like a rock +93841;Turning something upside down +171044;Putting something upright on the table +36638;Putting something next to something +74546;Showing something next to something +201435;Stuffing something into something +6843;Moving something closer to something +19366;Pulling something from right to left +108488;Moving something and something away from each other +208731;Plugging something into something but pulling it right out as you remove your hand +33732;Turning the camera right while filming something +80245;Something falling like a rock +25313;Plugging something into something +131381;Pushing something so that it slightly moves +13391;Showing something behind something +148695;Showing that something is inside something +126354;Moving something closer to something +29733;Turning something upside down +213248;Pretending to throw something +42211;Poking something so it slightly moves +39253;Pulling something from right to left +10008;Pretending to open something without actually opening it +191825;Tilting something with something on it slightly so it doesn't fall down +87857;Pushing something so it spins +101608;Stuffing something into something +99079;Lifting something up completely without letting it drop down +118337;Turning something upside down +141801;Pretending to sprinkle air onto something +7415;Scooping something up with something +79745;Moving something closer to something +51618;Putting something on a surface +33645;Pretending to put something on a surface +213219;Holding something over something +42424;Tearing something into two pieces +13912;Pretending to take something out of something +128195;Unfolding something +61048;Hitting something with something +45100;Stuffing something into something +91596;Moving something towards the camera +633;Plugging something into something +52629;Moving something and something closer to each other +192854;Showing something behind something +188187;Pushing something so that it slightly moves +122100;Holding something over something +20966;Picking something up +177310;Moving something and something closer to each other +93538;Stuffing something into something +55277;Stacking number of something +46162;Tearing something into two pieces +174962;Trying to bend something unbendable so nothing happens +145095;Rolling something on a flat surface +47967;Taking something out of something +193437;Pulling two ends of something but nothing happens +118883;Closing something +54196;Taking one of many similar things on the table +127849;Holding something next to something +157535;Tearing something just a little bit +57455;Moving something and something so they collide with each other +77344;Pretending to turn something upside down +61958;Putting something, something and something on the table +62596;Letting something roll down a slanted surface +149762;Showing that something is empty +84470;Turning something upside down +9072;Showing something next to something +191753;Piling something up +48100;Pretending or trying and failing to twist something +195626;Turning the camera downwards while filming something +183857;Hitting something with something +102955;Throwing something in the air and letting it fall +179574;Pushing something from left to right +189323;Trying but failing to attach something to something because it doesn't stick +126943;Lifting something with something on it +215908;Moving something away from something +141011;Closing something +128770;Folding something +132537;Covering something with something +151392;Twisting something +33466;Squeezing something +117715;Putting something similar to other things that are already on the table +38938;Taking something out of something +132466;Stuffing something into something +39148;Wiping something off of something +74884;Letting something roll along a flat surface +162374;Showing something behind something +10872;Uncovering something +38372;Plugging something into something +147911;Pretending to pick something up +107485;Holding something over something +177741;Tearing something into two pieces +26617;Showing something behind something +35383;Pretending to put something behind something +87750;Holding something over something +23405;Moving something closer to something +161377;Dropping something behind something +65438;Moving something down +81302;Pretending to pick something up +114051;Folding something +218961;Putting something on a surface +43897;Opening something +92165;Taking something from somewhere +126742;Pretending to put something next to something +139041;Pulling two ends of something so that it gets stretched +79359;Showing something to the camera +102747;Covering something with something +70475;Pulling two ends of something so that it gets stretched +155622;Throwing something in the air and letting it fall +147423;Pouring something out of something +75324;Pushing something so that it falls off the table +73783;Pulling something from right to left +167692;Stacking number of something +137485;Folding something +43319;Moving part of something +44988;Throwing something in the air and letting it fall +48576;Holding something +208198;Pushing something so that it falls off the table +186264;Throwing something in the air and letting it fall +70909;Putting something that can't roll onto a slanted surface, so it slides down +80192;Putting something next to something +178093;Putting number of something onto something +130832;Bending something so that it deforms +72008;Pushing something from left to right +163719;Plugging something into something but pulling it right out as you remove your hand +64364;Pretending to pick something up +207057;Putting something behind something +142516;Tilting something with something on it slightly so it doesn't fall down +196083;Moving something and something closer to each other +26105;Putting something similar to other things that are already on the table +639;Tilting something with something on it slightly so it doesn't fall down +23588;Wiping something off of something +205579;Turning something upside down +134623;Covering something with something +129378;Showing something on top of something +14494;Turning something upside down +22907;Turning something upside down +84183;Covering something with something +33578;Pushing something with something +62476;Putting something on a surface +111837;Plugging something into something +162600;Poking something so it slightly moves +103043;Pulling something from left to right +163564;Tilting something with something on it until it falls off +198097;Covering something with something +192656;Holding something +193116;Something falling like a rock +97579;Moving something and something so they collide with each other +169680;Turning something upside down +168064;Showing something to the camera +13387;Pulling two ends of something so that it gets stretched +180307;Spinning something that quickly stops spinning +82009;Showing that something is empty +47275;Turning something upside down +121413;Putting something on a surface +149215;Covering something with something +201733;Putting something next to something +150425;Covering something with something +214751;Putting number of something onto something +582;Piling something up +42747;Tipping something over +202653;Sprinkling something onto something +115537;Pretending to put something into something +85556;Poking something so lightly that it doesn't or almost doesn't move +81117;Throwing something in the air and letting it fall +80968;Putting something on the edge of something so it is not supported and falls down +180002;Showing something behind something +139973;Throwing something +190194;Putting something, something and something on the table +21808;Tearing something just a little bit +12217;Picking something up +164015;Uncovering something +103949;Unfolding something +53767;Folding something +17607;Pretending to close something without actually closing it +86906;Pushing something from left to right +28367;Pretending to pour something out of something, but something is empty +207964;Stacking number of something +98396;Letting something roll down a slanted surface +165303;Pretending to sprinkle air onto something +58830;Rolling something on a flat surface +73016;Putting something on a surface +66383;Putting something and something on the table +41353;Putting something underneath something +189906;Wiping something off of something +140650;Pushing something so that it almost falls off but doesn't +76132;Putting something underneath something +77062;Lifting something with something on it +195438;Showing something next to something +190514;Putting something on a surface +131969;Putting something similar to other things that are already on the table +2225;Spreading something onto something +71440;Holding something behind something +74126;Moving something towards the camera +73562;Folding something +192871;Pushing something so that it almost falls off but doesn't +49323;Spinning something that quickly stops spinning +10737;Moving something up +17526;Taking something from somewhere +131365;Showing something next to something +159810;Stuffing something into something +142614;Putting something onto something else that cannot support it so it falls down +49736;Dropping something into something +56992;Putting something on the edge of something so it is not supported and falls down +194376;Tipping something over +38126;Moving something closer to something +86606;Taking something out of something +88453;Bending something until it breaks +170329;Pretending to turn something upside down +87431;Uncovering something +210119;Turning the camera left while filming something +199932;Pretending to poke something +217643;Taking one of many similar things on the table +62531;Pushing something from right to left +158906;Tearing something into two pieces +156346;Putting something on a surface +128393;Putting something and something on the table +215779;Something being deflected from something +108640;Holding something next to something +35782;Holding something behind something +5204;Pouring something out of something +2750;Pouring something onto something +138157;Touching (without moving) part of something +193099;Pulling two ends of something so that it gets stretched +206180;Pushing something from right to left +218348;Showing something behind something +92761;Folding something +53892;Pulling something from right to left +10713;Digging something out of something +5698;Bending something so that it deforms +178443;Approaching something with your camera +146283;Putting something on a surface +60061;Stacking number of something +49718;Showing something behind something +50209;Picking something up +115251;Throwing something against something +201821;Poking something so lightly that it doesn't or almost doesn't move +69810;Showing something on top of something +41937;Pretending to take something from somewhere +173458;Holding something over something +195093;Lifting something with something on it +169634;Pulling two ends of something so that it gets stretched +44126;Spinning something that quickly stops spinning +159178;Uncovering something +122965;Showing something behind something +121509;Letting something roll down a slanted surface +16036;Taking something out of something +82921;Putting something on a surface +73533;Pulling something from left to right +32816;Pushing something so that it falls off the table +23419;Turning something upside down +166791;Showing something behind something +46347;Opening something +145963;Plugging something into something but pulling it right out as you remove your hand +171530;Turning something upside down +41678;Putting something that cannot actually stand upright upright on the table, so it falls on its side +188545;Putting something behind something +217007;Covering something with something +187195;Putting something similar to other things that are already on the table +32806;Rolling something on a flat surface +149987;Pretending to sprinkle air onto something +209922;Turning something upside down +168887;Pushing something from right to left +57634;Moving something and something closer to each other +166623;Putting something onto something +130361;Holding something next to something +32038;Pretending to poke something +206386;Covering something with something +34543;Something falling like a rock +45591;Pretending to pick something up +72663;Putting number of something onto something +169276;Dropping something onto something +123343;Putting something into something +15951;Lifting up one end of something, then letting it drop down +205768;Pulling something from behind of something +68133;Attaching something to something +68809;Taking one of many similar things on the table +175226;Taking something out of something +120988;Pushing something with something +101955;Letting something roll along a flat surface +173889;Bending something so that it deforms +69961;Poking something so it slightly moves +182963;Putting something and something on the table +81963;Moving something down +64560;Attaching something to something +180432;Putting something similar to other things that are already on the table +171735;Picking something up +28735;Pushing something so that it almost falls off but doesn't +125725;Moving something and something away from each other +60893;Moving something across a surface until it falls down +47535;Pretending to be tearing something that is not tearable +196338;Putting something into something +103376;Stuffing something into something +89345;Pulling something from left to right +110726;Putting something similar to other things that are already on the table +134993;Tilting something with something on it until it falls off +23651;Stuffing something into something +84481;Putting something on a surface +164020;Uncovering something +81778;Showing that something is empty +93991;Putting something and something on the table +54135;Lifting something with something on it +46699;Putting something on a surface +90564;Spinning something that quickly stops spinning +115235;Putting something on a surface +27697;Tearing something into two pieces +93706;Squeezing something +72582;Pretending to put something onto something +7241;Pretending to take something out of something +136754;Hitting something with something +157612;Unfolding something +145412;Something falling like a rock +52615;Turning the camera downwards while filming something +134563;Squeezing something +44532;Pushing something from right to left +162247;Pretending to be tearing something that is not tearable +161080;Turning something upside down +193024;Holding something over something +77094;Something falling like a feather or paper +92365;Plugging something into something +214506;Pushing something from left to right +43176;Failing to put something into something because something does not fit +153099;Throwing something in the air and letting it fall +183957;Squeezing something +2168;Holding something behind something +196529;Pushing something so it spins +71105;Throwing something against something +110787;Holding something +162072;Bending something until it breaks +40335;Showing something on top of something +60726;Tipping something over +171902;Stacking number of something +162816;Taking something out of something +170926;Attaching something to something +14165;Pretending to pick something up +191494;Touching (without moving) part of something +10654;Sprinkling something onto something +26491;Showing that something is empty +16054;Letting something roll along a flat surface +28777;Taking something from somewhere +77460;Putting something similar to other things that are already on the table +22270;Plugging something into something +129184;Trying to pour something into something, but missing so it spills next to it +179056;Showing something to the camera +179812;Pretending to close something without actually closing it +123056;Spinning something that quickly stops spinning +63911;Bending something so that it deforms +194606;Showing something behind something +141989;Poking a stack of something so the stack collapses +112729;Turning something upside down +136117;Opening something +28372;Letting something roll up a slanted surface, so it rolls back down +125733;Taking something from somewhere +176727;Pushing something from left to right +115693;Throwing something in the air and letting it fall +200355;Dropping something onto something +17229;Taking one of many similar things on the table +55;Tipping something over +119221;Turning something upside down +37085;Attaching something to something +50298;Pretending to open something without actually opening it +171550;Putting something similar to other things that are already on the table +54647;Tearing something into two pieces +152402;Tipping something over +43381;Lifting something up completely, then letting it drop down +153415;Something falling like a rock +64172;Moving something and something away from each other +128257;Letting something roll along a flat surface +45798;Stacking number of something +141571;Pretending to pour something out of something, but something is empty +117682;Throwing something in the air and letting it fall +195186;Something falling like a rock +73013;Putting something onto something +30204;Dropping something into something +28805;Pushing something so that it slightly moves +218590;Holding something next to something +197638;Holding something +104701;Showing something behind something +48571;Moving something away from something +178441;Something falling like a feather or paper +191284;Showing something next to something +99658;Spinning something that quickly stops spinning +137624;Putting something upright on the table +2680;Pulling two ends of something so that it gets stretched +159266;Pulling something out of something +107089;Twisting (wringing) something wet until water comes out +162050;Plugging something into something +192911;Dropping something into something +192574;Spinning something so it continues spinning +132918;Pretending or failing to wipe something off of something +216758;Spreading something onto something +157325;Poking something so it slightly moves +48197;Putting something similar to other things that are already on the table +109839;Something falling like a rock +150829;Wiping something off of something +129550;Rolling something on a flat surface +212873;Moving something and something closer to each other +43803;Putting something similar to other things that are already on the table +54738;Tearing something into two pieces +119809;Stuffing something into something +109255;Moving part of something +23883;Spinning something so it continues spinning +70519;Something falling like a rock +125722;Spinning something so it continues spinning +188459;Attaching something to something +460;Turning the camera right while filming something +51805;Holding something next to something +96093;Taking one of many similar things on the table +167325;Poking something so lightly that it doesn't or almost doesn't move +143578;Tearing something into two pieces +177725;Removing something, revealing something behind +16496;Poking something so it slightly moves +137757;Throwing something in the air and letting it fall +7987;Taking one of many similar things on the table +45870;Holding something over something +24689;Putting something on a surface +180539;Pouring something out of something +53755;Something falling like a feather or paper +34642;Pushing something from left to right +49422;Scooping something up with something +17171;Plugging something into something but pulling it right out as you remove your hand +165063;Unfolding something +177294;Pulling two ends of something so that it separates into two pieces +138082;Removing something, revealing something behind +86386;Stacking number of something +32922;Tipping something over +106012;Pulling something onto something +77012;Putting something on a surface +97192;Tearing something just a little bit +56401;Showing something behind something +207746;Spinning something so it continues spinning +51329;Moving something and something away from each other +117105;Pushing something from left to right +123591;Moving something and something away from each other +50631;Pretending to take something out of something +173734;Putting something, something and something on the table +80493;Pouring something into something +72945;Attaching something to something +220038;Something falling like a rock +44246;Tilting something with something on it slightly so it doesn't fall down +79963;Lifting up one end of something, then letting it drop down +194945;Approaching something with your camera +103444;Moving something across a surface until it falls down +169838;Tearing something into two pieces +187502;Pushing something so that it falls off the table +191396;Showing something behind something +105214;Dropping something onto something +215296;Moving something and something closer to each other +147543;Something falling like a feather or paper +56209;Spilling something next to something +48475;Letting something roll down a slanted surface +185097;Moving something and something away from each other +183665;Uncovering something +185411;Throwing something in the air and catching it +123065;Poking something so that it falls over +148922;Moving something away from something +112572;Wiping something off of something +5185;Taking something out of something +199460;Pushing something from right to left +62100;Spinning something that quickly stops spinning +9376;Holding something next to something +128544;Dropping something next to something +213769;Picking something up +134314;Attaching something to something +184576;Moving something away from something +71505;Moving something across a surface without it falling down +45725;Wiping something off of something +189797;Pulling two ends of something so that it separates into two pieces +132831;Pretending to pick something up +36266;Pushing something from right to left +146560;Showing something behind something +110051;Moving something and something closer to each other +142970;Taking one of many similar things on the table +46333;Putting number of something onto something +157824;Pushing something from right to left +84424;Dropping something in front of something +26117;Pretending or failing to wipe something off of something +112950;Opening something +14100;Pretending to take something from somewhere +183971;Dropping something behind something +20061;Touching (without moving) part of something +219239;Squeezing something +5479;Lifting up one end of something without letting it drop down +117522;Stacking number of something +72641;Stuffing something into something +211599;Spinning something so it continues spinning +34141;Moving something and something away from each other +127127;Showing something to the camera +132052;Pouring something into something +43346;Plugging something into something +134619;Putting something next to something +179658;Taking something out of something +103198;Lifting up one end of something, then letting it drop down +120346;Pretending to open something without actually opening it +143172;Showing something to the camera +109729;Pushing something from right to left +34420;Holding something in front of something +90735;Squeezing something +1895;Showing something next to something +109036;Something colliding with something and both are being deflected +162070;Moving something away from the camera +145325;Dropping something onto something +101183;Stacking number of something +85433;Squeezing something +12115;Showing that something is empty +180202;Throwing something +218798;Squeezing something +153148;Attaching something to something +101600;Attaching something to something +128215;Something being deflected from something +31460;Spilling something onto something +86285;Tearing something just a little bit +125801;Piling something up +71780;Lifting up one end of something without letting it drop down +183007;Twisting something +79679;Pushing something from right to left +134021;Pretending to poke something +66027;Throwing something against something +50176;Uncovering something +27236;Something falling like a feather or paper +203419;Putting something, something and something on the table +111779;Taking something out of something +73429;Putting something on a surface +167420;Piling something up +12922;Poking something so lightly that it doesn't or almost doesn't move +190206;Pretending to pick something up +117732;Plugging something into something +135713;Plugging something into something +182593;Letting something roll along a flat surface +88544;Stuffing something into something +138840;Pushing something with something +57997;Spinning something so it continues spinning +215930;Pushing something from left to right +156770;Bending something so that it deforms +14660;Something falling like a rock +88903;Spinning something that quickly stops spinning +197480;Pretending to take something out of something +173116;Pulling two ends of something so that it separates into two pieces +2311;Showing something on top of something +31739;Scooping something up with something +154466;Opening something +37423;Pushing something so that it falls off the table +190692;Pushing something so it spins +105840;Letting something roll along a flat surface +128063;Pretending to sprinkle air onto something +28518;Putting something on a surface +213992;Holding something over something +126548;Showing something next to something +18956;Poking something so that it falls over +208164;Putting something into something +151794;Opening something +41119;Taking one of many similar things on the table +10219;Showing that something is inside something +178707;Putting something into something +30857;Pretending to pick something up +124030;Lifting up one end of something, then letting it drop down +105337;Showing something to the camera +148740;Putting something and something on the table +115876;Pushing something so that it slightly moves +167051;Pretending to take something from somewhere +133974;Holding something +33945;Tearing something into two pieces +89574;Showing that something is inside something +216662;Tearing something into two pieces +97915;Turning the camera left while filming something +132576;Pretending to pour something out of something, but something is empty +67827;Pushing something so that it slightly moves +185605;Something falling like a rock +67777;Lifting something up completely without letting it drop down +113295;Pretending to close something without actually closing it +198192;Moving something and something away from each other +58769;Moving something towards the camera +102244;Touching (without moving) part of something +115696;Pouring something into something +143995;Tearing something just a little bit +189242;Wiping something off of something +100900;Trying but failing to attach something to something because it doesn't stick +121459;Showing something on top of something +169603;Wiping something off of something +30367;Tearing something into two pieces +135649;Letting something roll down a slanted surface +121788;Opening something +112802;Moving something and something away from each other +71034;Moving something and something away from each other +50898;Dropping something into something +209998;Something falling like a rock +72835;Putting something onto something else that cannot support it so it falls down +13380;Moving something across a surface without it falling down +83062;Putting something in front of something +182319;Holding something behind something +127717;Tearing something just a little bit +167413;Taking one of many similar things on the table +22420;Letting something roll along a flat surface +72523;Moving something across a surface without it falling down +55312;Moving something closer to something +120786;Something falling like a feather or paper +167824;Opening something +40646;Pushing something from left to right +54698;Pushing something from left to right +151960;Piling something up +174991;Lifting something with something on it +85211;Lifting something up completely, then letting it drop down +81770;Moving something down +59432;Squeezing something +135235;Putting something and something on the table +214713;Picking something up +216695;Pouring something into something +63507;Covering something with something +87697;Showing something behind something +194684;Wiping something off of something +23629;Throwing something against something +75329;Folding something +92236;Showing that something is empty +12350;Holding something next to something +110139;Tearing something into two pieces +49582;Twisting something +193278;Tipping something over +24653;Pretending to take something from somewhere +12023;Holding something behind something +20979;Letting something roll down a slanted surface +1166;Throwing something onto a surface +97448;Poking a stack of something so the stack collapses +31373;Lifting a surface with something on it but not enough for it to slide down +7508;Pretending to open something without actually opening it +17758;Holding something next to something +90245;Putting something next to something +111244;Holding something behind something +171143;Pretending to put something into something +148252;Uncovering something +106297;Tearing something into two pieces +39368;Lifting something up completely without letting it drop down +88558;Turning something upside down +207599;Pushing something from right to left +19820;Pouring something out of something +127302;Unfolding something +12957;Picking something up +163871;Twisting something +54381;Hitting something with something +137283;Lifting something up completely, then letting it drop down +16885;Moving something closer to something +20453;Putting something next to something +112135;Showing that something is inside something +145785;Plugging something into something +122629;Pushing something so that it slightly moves +174602;Pulling something from left to right +151676;Showing something next to something +212535;Spinning something that quickly stops spinning +50778;Pouring something into something +61335;Putting something similar to other things that are already on the table +62855;Something falling like a rock +12568;Tipping something over +50745;Showing something on top of something +127186;Showing that something is empty +178185;Squeezing something +74502;Pretending to put something into something +72759;Taking one of many similar things on the table +102398;Pushing something so that it falls off the table +126527;Stacking number of something +49500;Poking something so it slightly moves +140010;Moving something away from something +181590;Wiping something off of something +25362;Opening something +97739;Moving something and something away from each other +98961;Twisting something +216364;Piling something up +43270;Wiping something off of something +125668;Stuffing something into something +102058;Lifting something up completely without letting it drop down +201529;Something falling like a rock +195494;Rolling something on a flat surface +50990;Pretending to be tearing something that is not tearable +206092;Holding something over something +212045;Pretending to pick something up +145927;Putting something next to something +1726;Pushing something so that it falls off the table +24473;Holding something next to something +200625;Poking something so lightly that it doesn't or almost doesn't move +19061;Pretending to squeeze something +137341;Tearing something into two pieces +137725;Removing something, revealing something behind +104363;Putting something next to something +154004;Putting something onto a slanted surface but it doesn't glide down +19761;Stuffing something into something +670;Moving something and something closer to each other +198464;Tipping something over +172198;Pretending to turn something upside down +212285;Pulling something from right to left +83497;Hitting something with something +212107;Pretending to spread air onto something +211309;Putting something on a surface +135218;Turning something upside down +116760;Stuffing something into something +37137;Tilting something with something on it slightly so it doesn't fall down +146185;Letting something roll along a flat surface +165023;Letting something roll along a flat surface +66341;Something colliding with something and both come to a halt +15467;Something falling like a feather or paper +190843;Folding something +73084;Stacking number of something +199216;Stacking number of something +191319;Poking a hole into something soft +209585;Something colliding with something and both are being deflected +20393;Pushing something from left to right +77001;Dropping something next to something +58378;Moving something across a surface without it falling down +114598;Putting something next to something +6250;Picking something up +185338;Attaching something to something +102523;Rolling something on a flat surface +204363;Pouring something out of something +97109;Putting something that can't roll onto a slanted surface, so it stays where it is +141374;Holding something in front of something +99330;Throwing something against something +179866;Pulling two ends of something so that it separates into two pieces +111715;Moving something up +89972;Moving something and something closer to each other +62585;Covering something with something +98931;Lifting something with something on it +136751;Folding something +42261;Moving something away from something +188366;Tearing something into two pieces +202496;Sprinkling something onto something +84334;Putting something similar to other things that are already on the table +76224;Putting something upright on the table +29248;Folding something +23345;Lifting something with something on it +212763;Lifting something with something on it +31174;Pulling something onto something +101410;Sprinkling something onto something +37343;Throwing something +134004;Dropping something onto something +163098;Holding something over something +69943;Plugging something into something +196280;Pouring something into something +143536;Putting something upright on the table +215480;Taking one of many similar things on the table +11150;Attaching something to something +69086;Pushing something so that it almost falls off but doesn't +29983;Showing something behind something +201499;Squeezing something +119745;Holding something behind something +186983;Moving something down +157577;Putting something and something on the table +122127;Pushing something so that it slightly moves +138560;Throwing something against something +77887;Putting number of something onto something +51471;Moving something down +164960;Tipping something over +174249;Spinning something so it continues spinning +212724;Pulling something onto something +9341;Putting something underneath something +103305;Uncovering something +126310;Attaching something to something +19058;Tearing something just a little bit +75286;Pulling something from left to right +165319;Pretending to be tearing something that is not tearable +169017;Plugging something into something +61639;Pulling two ends of something but nothing happens +24214;Moving something closer to something +205836;Unfolding something +147992;Dropping something onto something +184867;Stuffing something into something +205908;Wiping something off of something +18762;Dropping something into something +201873;Moving something up +42222;Letting something roll along a flat surface +218196;Tilting something with something on it until it falls off +68895;Pouring something onto something +89076;Plugging something into something but pulling it right out as you remove your hand +125008;Pulling something from right to left +83269;Pushing something so it spins +49326;Squeezing something +25516;Pushing something from right to left +127948;Holding something in front of something +57018;Showing something next to something +149727;Putting something behind something +8938;Pretending to close something without actually closing it +5464;Moving part of something +94487;Letting something roll down a slanted surface +215393;Moving something and something closer to each other +175885;Pushing something from right to left +73325;Showing that something is inside something +186134;Folding something +62190;Pushing something off of something +15525;Twisting something +32991;Showing that something is inside something +158161;Pushing something off of something +24953;Moving something closer to something +68919;Plugging something into something +164400;Pretending to open something without actually opening it +10942;Tearing something into two pieces +197977;Turning the camera upwards while filming something +144101;Touching (without moving) part of something +108597;Lifting up one end of something, then letting it drop down +193969;Pretending to turn something upside down +15167;Showing something to the camera +44854;Moving something and something away from each other +162950;Covering something with something +139783;Twisting something +51506;Moving part of something +66896;Moving something towards the camera +77153;Moving something and something so they collide with each other +73502;Twisting (wringing) something wet until water comes out +22142;Opening something +112286;Stuffing something into something +183871;Pretending to put something into something +197305;Moving something closer to something +107777;Squeezing something +108776;Stuffing something into something +203443;Putting something behind something +30898;Pretending to take something out of something +62139;Moving something down +109768;Showing something on top of something +47968;Folding something +169517;Moving something and something closer to each other +199652;Squeezing something +63243;Pretending to poke something +217131;Tilting something with something on it until it falls off +38227;Throwing something +104598;Hitting something with something +26451;Pretending to be tearing something that is not tearable +36384;Pushing something from right to left +119339;Lifting something with something on it +42785;Tilting something with something on it until it falls off +10926;Putting something next to something +53516;Putting something behind something +85962;Pretending to put something behind something +167422;Bending something so that it deforms +27385;Pouring something out of something +3434;Pouring something into something +215182;Dropping something next to something +141948;Rolling something on a flat surface +137194;Turning the camera left while filming something +147444;Poking something so it slightly moves +207324;Moving something up +96262;Turning something upside down +162722;Taking one of many similar things on the table +40407;Putting something upright on the table +173141;Throwing something +96071;Putting something and something on the table +143547;Turning something upside down +35561;Pretending to open something without actually opening it +121475;Lifting up one end of something, then letting it drop down +29675;Pushing something so that it slightly moves +28373;Showing that something is empty +30232;Moving something up +93144;Twisting something +74771;Dropping something behind something +129896;Putting something next to something +208959;Putting something on a surface +96085;Pushing something so that it almost falls off but doesn't +132539;Wiping something off of something +178437;Pulling two ends of something so that it gets stretched +148253;Spilling something onto something +96487;Moving something and something closer to each other +179305;Plugging something into something +69363;Plugging something into something +30541;Moving something away from something +166135;Moving part of something +33112;Pushing something from right to left +180772;Throwing something in the air and letting it fall +188692;Moving something and something away from each other +193227;Moving something closer to something +19649;Opening something +135317;Putting something upright on the table +135189;Pouring something into something +178239;Rolling something on a flat surface +69264;Showing something next to something +75212;Showing something next to something +133805;Letting something roll up a slanted surface, so it rolls back down +132600;Putting something similar to other things that are already on the table +182952;Bending something until it breaks +202129;Pushing something so that it slightly moves +192037;Letting something roll down a slanted surface +53118;Pretending to throw something +14073;Putting number of something onto something +207267;Showing something behind something +204745;Holding something +68576;Tearing something into two pieces +59251;Opening something +56365;Moving something up +66726;Showing something next to something +71640;Pushing something from left to right +114259;Spilling something next to something +74244;Pretending to pick something up +168139;Hitting something with something +24265;Pulling something out of something +121380;Putting something behind something +140167;Something falling like a rock +97319;Pulling something from right to left +206182;Spinning something that quickly stops spinning +164949;Unfolding something +213432;Twisting (wringing) something wet until water comes out +217283;Moving something and something away from each other +32421;Pretending to close something without actually closing it +195712;Turning something upside down +82157;Trying to pour something into something, but missing so it spills next to it +14503;Putting something on a surface +111540;Showing something behind something +10759;Tilting something with something on it slightly so it doesn't fall down +23423;Showing that something is empty +127875;Moving something and something away from each other +215026;Putting something, something and something on the table +186680;Tearing something into two pieces +130434;Taking one of many similar things on the table +64174;Putting number of something onto something +42304;Pretending to close something without actually closing it +82318;Pushing something so it spins +25265;Letting something roll along a flat surface +118098;Unfolding something +161226;Moving something up +76778;Uncovering something +71331;Pretending to throw something +75790;Pretending to be tearing something that is not tearable +193818;Moving something towards the camera +63649;Closing something +163846;Pushing something off of something +186203;Pretending to take something out of something +195780;Showing that something is inside something +132814;Putting something similar to other things that are already on the table +77927;Tearing something into two pieces +52010;Lifting something with something on it +126984;Covering something with something +149330;Poking something so that it falls over +130567;Turning the camera upwards while filming something +159551;Moving something and something closer to each other +40291;Putting something on a surface +213666;Something falling like a feather or paper +61316;Holding something behind something +69746;Putting something on a flat surface without letting it roll +45388;Tearing something into two pieces +124600;Moving part of something +136025;Pretending to poke something +99501;Poking something so that it falls over +130375;Pushing something from right to left +198895;Moving something up +52006;Pulling something from right to left +210007;Rolling something on a flat surface +62029;Putting something on a flat surface without letting it roll +34075;Twisting (wringing) something wet until water comes out +188316;Pushing something from right to left +72733;Tilting something with something on it until it falls off +166627;Plugging something into something but pulling it right out as you remove your hand +10419;Pretending to scoop something up with something +110908;Pushing something so that it falls off the table +184970;Moving something and something closer to each other +169959;Moving something and something away from each other +165084;Putting something next to something +115366;Stacking number of something +39611;Plugging something into something +190473;Rolling something on a flat surface +198754;Putting something that cannot actually stand upright upright on the table, so it falls on its side +147836;Bending something so that it deforms +125071;Squeezing something +21217;Laying something on the table on its side, not upright +141258;Turning something upside down +140519;Picking something up +152179;Moving something and something so they collide with each other +20566;Putting something into something +137575;Putting something that can't roll onto a slanted surface, so it slides down +143336;Lifting something up completely, then letting it drop down +166965;Lifting something up completely, then letting it drop down +64112;Piling something up +69634;Tearing something into two pieces +29640;Twisting (wringing) something wet until water comes out +4858;Pretending to spread air onto something +135640;Turning something upside down +190231;Covering something with something +220304;Something falling like a rock +164018;Twisting something +182202;Holding something over something +173032;Turning something upside down +45923;Pushing something so that it falls off the table +117486;Poking something so lightly that it doesn't or almost doesn't move +203004;Showing something behind something +41533;Pouring something into something +18597;Moving something and something closer to each other +8860;Pretending to be tearing something that is not tearable +11078;Pretending to put something on a surface +3186;Something falling like a rock +200840;Tearing something into two pieces +119226;Turning something upside down +186028;Putting something into something +38103;Putting number of something onto something +84852;Folding something +173838;Something falling like a feather or paper +33027;Hitting something with something +58503;Pretending to close something without actually closing it +29711;Pushing something so that it falls off the table +12523;Dropping something onto something +89369;Tipping something over +12901;Moving something away from something +210173;Showing that something is inside something +45347;Moving something and something away from each other +119747;Moving something and something away from each other +91550;Putting something in front of something +81217;Moving something and something closer to each other +99870;Pulling something from left to right +121687;Scooping something up with something +81137;Holding something behind something +97255;Lifting up one end of something, then letting it drop down +91200;Putting something on a surface +87456;Poking a hole into something soft +156680;Removing something, revealing something behind +103414;Throwing something in the air and letting it fall +186199;Moving something away from something +199024;Wiping something off of something +36889;Lifting something with something on it +96761;Uncovering something +44021;Moving something and something away from each other +20357;Squeezing something +76251;Pretending to throw something +198261;Dropping something in front of something +143642;Poking something so it slightly moves +70478;Squeezing something +104165;Piling something up +41905;Putting something into something +40900;Putting something into something +1661;Pretending to be tearing something that is not tearable +36276;Pushing something so that it slightly moves +17038;Plugging something into something +109121;Plugging something into something +86460;Twisting something +87079;Tilting something with something on it slightly so it doesn't fall down +73916;Plugging something into something +85024;Something colliding with something and both come to a halt +186109;Showing that something is inside something +107737;Pushing something so that it falls off the table +172155;Putting something that can't roll onto a slanted surface, so it stays where it is +181174;Stuffing something into something +186966;Pretending to be tearing something that is not tearable +162919;Showing something to the camera +53323;Taking one of many similar things on the table +37614;Moving something away from something +117670;Tilting something with something on it until it falls off +183419;Moving something up +60079;Lifting something up completely, then letting it drop down +38638;Pushing something so that it falls off the table +147171;Plugging something into something but pulling it right out as you remove your hand +91215;Something falling like a rock +69088;Something colliding with something and both are being deflected +209181;Moving something closer to something +107241;Opening something +216939;Showing that something is empty +174806;Trying to pour something into something, but missing so it spills next to it +44163;Pushing something from right to left +38663;Covering something with something +48746;Dropping something onto something +209909;Moving something and something away from each other +39237;Pretending or failing to wipe something off of something +39214;Showing that something is empty +147026;Putting something next to something +38892;Laying something on the table on its side, not upright +210571;Throwing something +138314;Tipping something over +83158;Showing something next to something +72842;Pretending or trying and failing to twist something +194572;Turning something upside down +2964;Uncovering something +50715;Tearing something into two pieces +3416;Putting something on the edge of something so it is not supported and falls down +108198;Pulling two ends of something so that it gets stretched +188471;Pushing something with something +57343;Pretending to squeeze something +205527;Plugging something into something +99365;Letting something roll along a flat surface +219583;Tilting something with something on it slightly so it doesn't fall down +168252;Pushing something so that it almost falls off but doesn't +203433;Spinning something that quickly stops spinning +14627;Picking something up +15261;Something falling like a feather or paper +45439;Putting something into something +124381;Something falling like a rock +50156;Spinning something so it continues spinning +181746;Putting something on a surface +121082;Pouring something into something +109697;Bending something so that it deforms +219393;Touching (without moving) part of something +195260;Throwing something in the air and letting it fall +205597;Dropping something onto something +151011;Stuffing something into something +49252;Tipping something over +11777;Something colliding with something and both are being deflected +118385;Moving part of something +83900;Moving something and something closer to each other +11438;Holding something behind something +94466;Lifting a surface with something on it until it starts sliding down +200317;Putting something on a surface +203383;Pushing something so that it almost falls off but doesn't +140188;Folding something +26271;Stuffing something into something +129243;Showing something behind something +14297;Spinning something that quickly stops spinning +65020;Showing something next to something +22447;Pretending to scoop something up with something +183831;Pulling something out of something +80729;Tearing something into two pieces +92828;Plugging something into something but pulling it right out as you remove your hand +204510;Putting something in front of something +149021;Lifting up one end of something, then letting it drop down +146382;Covering something with something +118104;Lifting something with something on it +187736;Holding something +206379;Something being deflected from something +2739;Throwing something against something +29189;Moving something away from the camera +69134;Unfolding something +104;Lifting something with something on it +74730;Pretending to take something from somewhere +53434;Putting something on a surface +183896;Unfolding something +49183;Moving something and something away from each other +172324;Picking something up +90072;Moving something down +157426;Pretending to close something without actually closing it +185846;Touching (without moving) part of something +190178;Pouring something into something until it overflows +5607;Putting something into something +137536;Showing that something is empty +26790;Putting something on a flat surface without letting it roll +159109;Moving something towards the camera +48428;Holding something over something +194983;Pushing something so that it slightly moves +163386;Holding something in front of something +4769;Pretending to open something without actually opening it +196022;Something falling like a rock +49169;Pretending to be tearing something that is not tearable +74499;Moving part of something +139677;Tearing something into two pieces +96523;Throwing something onto a surface +97470;Putting something on a surface +104722;Poking something so it slightly moves +40418;Plugging something into something +60420;Dropping something onto something +63868;Turning something upside down +113640;Plugging something into something but pulling it right out as you remove your hand +133295;Throwing something against something +146634;Turning something upside down +205886;Pretending to put something behind something +98323;Putting something upright on the table +51012;Pretending to open something without actually opening it +65574;Squeezing something +206289;Moving something and something closer to each other +216029;Stacking number of something +93605;Pushing something so that it falls off the table +93778;Pretending to pour something out of something, but something is empty +207906;Spinning something so it continues spinning +175773;Taking something out of something +196711;Pouring something into something +9902;Something falling like a rock +108430;Putting number of something onto something +3753;Picking something up +62834;Something colliding with something and both come to a halt +43912;Something falling like a feather or paper +69691;Folding something +136845;Something falling like a rock +150528;Bending something so that it deforms +212710;Pretending to sprinkle air onto something +156557;Something falling like a feather or paper +211162;Something falling like a feather or paper +16151;Pretending to pick something up +157624;Pulling something from right to left +143213;Putting something next to something +38806;Putting something on a surface +126308;Putting something on a surface +79361;Pushing something so that it slightly moves +197087;Twisting something +131702;Putting something that cannot actually stand upright upright on the table, so it falls on its side +77454;Touching (without moving) part of something +3832;Pretending or trying and failing to twist something +36472;Pulling something from right to left +165275;Bending something until it breaks +123577;Putting something upright on the table +89114;Showing that something is empty +164128;Holding something in front of something +20902;Pushing something so that it falls off the table +96626;Scooping something up with something +24453;Opening something +121062;Pretending to put something underneath something +202603;Showing that something is inside something +13233;Approaching something with your camera +28242;Moving something down +164518;Pouring something onto something +28720;Throwing something against something +3355;Plugging something into something +80499;Hitting something with something +218297;Covering something with something +70640;Covering something with something +113671;Putting something next to something +51384;Poking something so it slightly moves +84874;Poking something so that it falls over +131331;Putting something upright on the table +39387;Putting something underneath something +161121;Something falling like a feather or paper +63435;Stuffing something into something +103816;Plugging something into something but pulling it right out as you remove your hand +68197;Pretending to poke something +206277;Moving something away from something +141810;Something falling like a feather or paper +148877;Pouring something into something +199312;Moving something across a surface until it falls down +213631;Putting something on a surface +25862;Picking something up +66924;Pushing something so that it falls off the table +97510;Plugging something into something but pulling it right out as you remove your hand +107401;Scooping something up with something +50538;Spreading something onto something +180767;Pushing something so that it falls off the table +141639;Moving something up +129315;Holding something in front of something +133010;Twisting something +189252;Pushing something so that it slightly moves +108755;Moving something across a surface without it falling down +120616;Dropping something next to something +36083;Moving something and something away from each other +115318;Stacking number of something +21048;Taking something out of something +15833;Poking a stack of something so the stack collapses +31525;Letting something roll along a flat surface +171996;Tipping something over +96567;Throwing something onto a surface +203678;Squeezing something +165075;Spinning something so it continues spinning +110205;Bending something so that it deforms +90968;Spinning something that quickly stops spinning +97056;Plugging something into something +81079;Something falling like a rock +533;Showing that something is empty +115315;Putting something and something on the table +26780;Pretending or failing to wipe something off of something +153458;Showing that something is empty +91221;Pushing something so that it almost falls off but doesn't +20105;Pushing something from left to right +207201;Tearing something into two pieces +16542;Pushing something from right to left +11842;Taking one of many similar things on the table +113020;Holding something next to something +133446;Pouring something into something +47595;Showing something behind something +18758;Putting something behind something +185971;Covering something with something +133617;Something falling like a feather or paper +154724;Tipping something with something in it over, so something in it falls out +145603;Holding something +141393;Unfolding something +48194;Poking a stack of something so the stack collapses +153346;Pushing something so that it falls off the table +110512;Pulling two ends of something so that it gets stretched +133191;Pretending to take something from somewhere +155349;Closing something +76276;Throwing something against something +52122;Attaching something to something +75632;Pretending to be tearing something that is not tearable +160527;Moving something closer to something +15908;Pretending to open something without actually opening it +70748;Moving something closer to something +220679;Moving something and something closer to each other +168766;Moving something and something away from each other +114046;Putting something underneath something +159736;Letting something roll along a flat surface +101174;Uncovering something +118263;Covering something with something +109959;Poking a hole into something soft +75571;Turning the camera right while filming something +216698;Moving something and something away from each other +8311;Closing something +204238;Approaching something with your camera +168505;Plugging something into something +34519;Moving something down +85873;Putting something similar to other things that are already on the table +98409;Pretending to turn something upside down +159636;Something falling like a feather or paper +207958;Pretending to pour something out of something, but something is empty +219686;Holding something +209029;Showing something next to something +151840;Turning something upside down +135216;Pretending to pick something up +156490;Putting something that can't roll onto a slanted surface, so it stays where it is +63641;Laying something on the table on its side, not upright +109942;Putting something into something +72191;Turning something upside down +209068;Moving something and something away from each other +66214;Pushing something so that it almost falls off but doesn't +156477;Taking something from somewhere +61646;Touching (without moving) part of something +139542;Laying something on the table on its side, not upright +83853;Pushing something so that it falls off the table +218536;Pretending to poke something +135636;Pulling two ends of something so that it gets stretched +190062;Lifting something with something on it +101005;Throwing something +203022;Moving something up +138769;Poking a hole into something soft +212218;Showing that something is empty +141224;Pretending to be tearing something that is not tearable +108214;Moving something down +147764;Hitting something with something +134737;Showing something next to something +126920;Pushing something from right to left +135151;Pretending to put something on a surface +72771;Putting something into something +201245;Plugging something into something but pulling it right out as you remove your hand +5669;Dropping something onto something +68706;Showing something behind something +163522;Burying something in something +115442;Closing something +174018;Putting something behind something +175270;Plugging something into something but pulling it right out as you remove your hand +46289;Poking something so lightly that it doesn't or almost doesn't move +181020;Something falling like a rock +80467;Moving something away from something +44373;Poking something so that it falls over +74417;Closing something +10978;Tearing something just a little bit +167151;Touching (without moving) part of something +132088;Putting something on a flat surface without letting it roll +191698;Throwing something onto a surface +55179;Moving away from something with your camera +72261;Letting something roll up a slanted surface, so it rolls back down +42840;Putting something on a surface +194074;Wiping something off of something +208161;Uncovering something +4827;Pushing something from right to left +169438;Wiping something off of something +219595;Something falling like a feather or paper +86226;Turning the camera right while filming something +42294;Spinning something so it continues spinning +128723;Moving something closer to something +92346;Putting something upright on the table +160854;Uncovering something +103378;Poking something so lightly that it doesn't or almost doesn't move +217272;Something falling like a feather or paper +88760;Tearing something into two pieces +93185;Sprinkling something onto something +113355;Twisting something +57101;Taking something out of something +96451;Squeezing something +5962;Pulling something from behind of something +53908;Tearing something into two pieces +91171;Something falling like a feather or paper +77442;Tearing something just a little bit +95847;Laying something on the table on its side, not upright +220698;Moving something and something away from each other +101878;Touching (without moving) part of something +179784;Putting something into something +120163;Throwing something against something +21554;Folding something +205505;Putting something on a surface +161364;Touching (without moving) part of something +17960;Pouring something into something until it overflows +58091;Tearing something just a little bit +6210;Spinning something that quickly stops spinning +151110;Pretending to take something out of something +186540;Showing that something is empty +121304;Pretending to scoop something up with something +156644;Showing something on top of something +6890;Rolling something on a flat surface +149687;Letting something roll down a slanted surface +10741;Putting something into something +61386;Showing something on top of something +155115;Pretending to put something into something +160219;Poking something so that it falls over +150236;Lifting something with something on it +153390;Poking something so it slightly moves +111734;Turning something upside down +84798;Pretending to pour something out of something, but something is empty +65695;Poking something so that it falls over +96330;Lifting up one end of something, then letting it drop down +53486;Folding something +136620;Pushing something so it spins +20532;Pretending to open something without actually opening it +38809;Pouring something out of something +112459;Putting something similar to other things that are already on the table +143233;Pushing something so it spins +26828;Holding something in front of something +85613;Moving something down +181005;Pretending to throw something +74335;Throwing something against something +3860;Turning the camera upwards while filming something +67352;Lifting up one end of something, then letting it drop down +39973;Pushing something from right to left +216371;Pulling something from left to right +99037;Plugging something into something +206959;Holding something +94058;Trying to bend something unbendable so nothing happens +163297;Pretending to be tearing something that is not tearable +207242;Tilting something with something on it slightly so it doesn't fall down +24517;Something falling like a feather or paper +154888;Putting something similar to other things that are already on the table +138360;Putting something on a surface +218688;Opening something +122209;Putting something next to something +181771;Opening something +131698;Stacking number of something +438;Pulling something from right to left +56231;Tipping something over +173315;Dropping something onto something +73092;Laying something on the table on its side, not upright +146993;Something being deflected from something +58516;Holding something +104215;Taking one of many similar things on the table +151171;Pushing something so that it falls off the table +150316;Pretending to take something out of something +21356;Folding something +111685;Closing something +82775;Moving something across a surface without it falling down +182080;Putting something on a surface +190671;Putting something on a surface +174833;Stacking number of something +67400;Lifting something up completely, then letting it drop down +27938;Poking something so it slightly moves +186852;Pretending to close something without actually closing it +55895;Burying something in something +140463;Showing something next to something +56172;Moving something away from something +48868;Lifting a surface with something on it until it starts sliding down +61933;Piling something up +197119;Holding something next to something +215097;Pretending to spread air onto something +102822;Poking something so that it falls over +129968;Pushing something with something +63690;Hitting something with something +73548;Moving something and something closer to each other +191252;Turning something upside down +98992;Poking something so lightly that it doesn't or almost doesn't move +7641;Holding something +186296;Pretending or failing to wipe something off of something +88709;Holding something over something +86151;Putting something into something +114529;Holding something over something +163102;Moving something up +82578;Showing something next to something +108534;Dropping something into something +170059;Throwing something +205772;Stacking number of something +157147;Tipping something over +74798;Rolling something on a flat surface +39582;Moving something down +9147;Poking something so that it falls over +179848;Putting something and something on the table +77947;Pushing something so that it almost falls off but doesn't +13427;Holding something next to something +129559;Putting something upright on the table +126668;Lifting something with something on it +17022;Moving something up +5447;Something falling like a rock +159988;Approaching something with your camera +139258;Putting something upright on the table +62077;Dropping something onto something +115769;Holding something +59859;Showing that something is empty +157115;Moving part of something +152191;Folding something +139991;Poking a hole into something soft +10453;Tipping something over +74622;Covering something with something +177706;Turning something upside down +200277;Something colliding with something and both are being deflected +164442;Plugging something into something +209349;Pretending to put something on a surface +185943;Dropping something onto something +104230;Tilting something with something on it until it falls off +158118;Pretending to be tearing something that is not tearable +143526;Moving something away from something +195484;Pushing something from left to right +527;Pretending to squeeze something +189692;Something being deflected from something +199379;Throwing something +150614;Pushing something so that it slightly moves +19527;Moving something closer to something +176380;Pulling something from left to right +77898;Tilting something with something on it slightly so it doesn't fall down +184669;Dropping something onto something +188025;Showing that something is empty +7480;Bending something until it breaks +152984;Tearing something into two pieces +218018;Tearing something into two pieces +22846;Lifting something up completely without letting it drop down +180795;Lifting something up completely, then letting it drop down +203454;Taking one of many similar things on the table +114004;Something falling like a rock +184513;Putting something on a surface +78547;Pulling something from right to left +186189;Showing something behind something +205029;Holding something over something +22403;Picking something up +77385;Stacking number of something +179405;Poking something so it slightly moves +26265;Moving something across a surface without it falling down +129621;Touching (without moving) part of something +199820;Trying to bend something unbendable so nothing happens +22202;Moving something and something away from each other +114288;Pouring something into something +30151;Tipping something over +185385;Trying to bend something unbendable so nothing happens +66350;Putting something onto something +169490;Pushing something so that it almost falls off but doesn't +179707;Covering something with something +196355;Pretending or failing to wipe something off of something +28828;Attaching something to something +97278;Pretending to take something from somewhere +144469;Moving something and something closer to each other +220160;Pretending to take something out of something +104488;Pouring something into something +82084;Putting something next to something +35392;Pretending to be tearing something that is not tearable +137524;Putting something in front of something +77661;Letting something roll along a flat surface +166751;Pretending to open something without actually opening it +89135;Bending something until it breaks +163722;Holding something +213827;Tearing something into two pieces +116273;Pretending to be tearing something that is not tearable +177172;Pulling two ends of something so that it gets stretched +84279;Taking one of many similar things on the table +175676;Putting something and something on the table +2016;Dropping something in front of something +147406;Poking something so lightly that it doesn't or almost doesn't move +213023;Pushing something with something +159496;Moving something away from the camera +207470;Pretending to be tearing something that is not tearable +67632;Pretending to put something on a surface +99486;Pushing something from left to right +61431;Plugging something into something +178489;Lifting up one end of something without letting it drop down +128227;Pretending to take something from somewhere +14036;Putting something on a surface +67093;Dropping something onto something +16886;Wiping something off of something +36206;Showing something next to something +14532;Pretending to take something from somewhere +158033;Throwing something against something +164311;Unfolding something +142998;Holding something behind something +21143;Squeezing something +28904;Pushing something from right to left +51771;Tearing something just a little bit +23944;Something falling like a rock +47433;Pretending to turn something upside down +183314;Showing something behind something +162751;Pushing something from right to left +75711;Pouring something into something +33520;Spinning something so it continues spinning +219834;Squeezing something +66563;Tearing something just a little bit +107080;Tipping something over +37226;Plugging something into something +187197;Pushing something from right to left +73308;Lifting something up completely, then letting it drop down +190042;Moving something across a surface until it falls down +114400;Poking something so it slightly moves +11211;Moving something closer to something +91047;Dropping something in front of something +161285;Poking something so lightly that it doesn't or almost doesn't move +130224;Moving part of something +14544;Moving something and something away from each other +214596;Lifting something up completely, then letting it drop down +205426;Lifting up one end of something, then letting it drop down +123976;Moving part of something +59255;Bending something until it breaks +60728;Showing something on top of something +26132;Moving something and something closer to each other +110984;Uncovering something +135660;Putting something that cannot actually stand upright upright on the table, so it falls on its side +100195;Turning something upside down +9992;Something colliding with something and both come to a halt +196322;Moving something closer to something +32470;Tearing something into two pieces +125843;Picking something up +47980;Pretending to turn something upside down +73334;Piling something up +69764;Pretending to throw something +61368;Holding something +98602;Plugging something into something +57045;Throwing something against something +27378;Covering something with something +142367;Showing that something is inside something +109831;Holding something behind something +164319;Tipping something over +134910;Throwing something +125543;Rolling something on a flat surface +77776;Taking something out of something +209783;Approaching something with your camera +97648;Covering something with something +186997;Pouring something out of something +100979;Putting something upright on the table +99600;Pushing something off of something +3063;Putting something on a surface +76897;Moving something and something closer to each other +119243;Moving something towards the camera +92016;Turning something upside down +171150;Pretending to take something from somewhere +158326;Putting something next to something +218754;Pouring something out of something +80903;Hitting something with something +169792;Plugging something into something but pulling it right out as you remove your hand +123164;Pulling something from behind of something +46480;Moving something and something closer to each other +125560;Dropping something next to something +86730;Turning the camera right while filming something +96722;Lifting something with something on it +44124;Picking something up +140226;Putting something into something +109762;Putting something next to something +176783;Moving something closer to something +3101;Lifting something up completely without letting it drop down +146201;Spinning something that quickly stops spinning +28635;Something falling like a rock +80244;Moving something across a surface until it falls down +86233;Piling something up +13621;Putting something that cannot actually stand upright upright on the table, so it falls on its side +121065;Pretending to put something on a surface +169407;Throwing something +107753;Pushing something so that it almost falls off but doesn't +68432;Showing something on top of something +77009;Removing something, revealing something behind +150865;Throwing something +136931;Holding something behind something +150291;Poking something so lightly that it doesn't or almost doesn't move +206926;Pretending to open something without actually opening it +175262;Picking something up +10701;Unfolding something +206896;Dropping something onto something +156700;Pouring something into something +32936;Putting something onto something +97699;Pretending to be tearing something that is not tearable +142867;Moving something away from something +178925;Tilting something with something on it until it falls off +48962;Tearing something into two pieces +62768;Approaching something with your camera +52126;Putting something onto something +65978;Throwing something in the air and letting it fall +3807;Moving something and something away from each other +187130;Dropping something onto something +127412;Twisting something +151497;Pulling something from behind of something +186377;Moving something away from something +90750;Moving something away from something +96347;Something falling like a feather or paper +9865;Throwing something in the air and catching it +214966;Putting something on a surface +124346;Touching (without moving) part of something +16442;Moving something and something closer to each other +69717;Pouring something onto something +153608;Moving something and something away from each other +145218;Something falling like a rock +53449;Moving something away from something +171760;Holding something next to something +214298;Putting something behind something +156479;Taking something from somewhere +117580;Stacking number of something +118542;Spinning something so it continues spinning +111307;Lifting something up completely without letting it drop down +199664;Poking something so it slightly moves +99014;Moving something and something closer to each other +137289;Moving something down +2991;Taking something from somewhere +44077;Lifting a surface with something on it until it starts sliding down +137939;Holding something in front of something +118780;Wiping something off of something +101532;Putting something onto something +6572;Attaching something to something +59928;Opening something +190087;Holding something in front of something +115730;Rolling something on a flat surface +110981;Pulling something from left to right +72138;Moving something and something closer to each other +87910;Moving something and something away from each other +150543;Pretending to take something out of something +178871;Pushing something with something +171840;Closing something +180762;Pulling something from left to right +127269;Pretending to be tearing something that is not tearable +119387;Holding something next to something +132775;Throwing something +107373;Squeezing something +174958;Twisting (wringing) something wet until water comes out +150936;Tilting something with something on it slightly so it doesn't fall down +207480;Lifting up one end of something, then letting it drop down +217236;Squeezing something +171994;Moving something and something away from each other +128366;Pouring something into something +155552;Holding something behind something +124491;Rolling something on a flat surface +217319;Moving something down +7204;Spilling something onto something +147453;Spreading something onto something +151315;Moving something down +159331;Showing that something is empty +145794;Showing something behind something +205080;Folding something +82932;Pouring something into something +201695;Spilling something onto something +218999;Moving something and something closer to each other +175424;Turning something upside down +156793;Twisting something +46664;Throwing something +154671;Lifting something with something on it +77325;Plugging something into something +26934;Spinning something that quickly stops spinning +51539;Pushing something off of something +59504;Spreading something onto something +14931;Throwing something onto a surface +115182;Moving something and something away from each other +92584;Pretending to put something on a surface +68556;Pretending to squeeze something +69147;Pushing something with something +97762;Spinning something so it continues spinning +135018;Putting something into something +203820;Plugging something into something but pulling it right out as you remove your hand +23560;Pushing something off of something +141967;Putting something on a surface +212101;Moving something and something so they pass each other +69214;Touching (without moving) part of something +121068;Squeezing something +168826;Holding something next to something +107101;Showing something on top of something +90375;Pretending to be tearing something that is not tearable +133523;Pretending to put something underneath something +146247;Tearing something just a little bit +41015;Putting something and something on the table +70653;Pulling two ends of something so that it gets stretched +213328;Putting something underneath something +148633;Turning something upside down +13684;Pushing something so that it slightly moves +95144;Moving something closer to something +87062;Showing something next to something +8599;Attaching something to something +55249;Taking something out of something +76830;Putting something on a flat surface without letting it roll +200622;Turning something upside down +164822;Covering something with something +82773;Approaching something with your camera +27047;Pushing something so that it falls off the table +20415;Something falling like a feather or paper +97079;Showing something to the camera +25874;Bending something until it breaks +160663;Plugging something into something +82729;Taking one of many similar things on the table +147150;Showing something on top of something +176691;Holding something over something +148959;Showing something to the camera +41921;Taking one of many similar things on the table +126334;Taking one of many similar things on the table +63730;Dropping something in front of something +75475;Poking something so that it falls over +60569;Putting something on a surface +144069;Moving something up +150717;Rolling something on a flat surface +126487;Moving something and something closer to each other +153002;Dropping something into something +164673;Twisting (wringing) something wet until water comes out +78548;Putting something on a surface +75787;Rolling something on a flat surface +31340;Rolling something on a flat surface +23902;Throwing something +7745;Covering something with something +210261;Letting something roll along a flat surface +191496;Trying but failing to attach something to something because it doesn't stick +38705;Pushing something so that it almost falls off but doesn't +34839;Putting something similar to other things that are already on the table +101383;Putting something similar to other things that are already on the table +88597;Rolling something on a flat surface +79897;Taking one of many similar things on the table +21389;Removing something, revealing something behind +168378;Moving something and something away from each other +20297;Uncovering something +192542;Moving something and something away from each other +71106;Spilling something onto something +15515;Pulling two ends of something so that it gets stretched +132257;Putting something, something and something on the table +171799;Pouring something into something +61331;Squeezing something +166295;Putting something on a surface +66737;Showing something behind something +179911;Pouring something into something +33880;Tearing something into two pieces +15110;Holding something over something +102996;Unfolding something +138900;Hitting something with something +1768;Showing that something is inside something +122745;Moving something and something so they pass each other +53305;Trying but failing to attach something to something because it doesn't stick +31436;Pretending to put something onto something +24979;Letting something roll down a slanted surface +206431;Closing something +158889;Holding something behind something +69030;Moving something away from something +31722;Putting something underneath something +107359;Moving something and something closer to each other +97412;Tipping something over +115447;Tearing something just a little bit +11556;Putting something, something and something on the table +218279;Pretending to pick something up +205838;Taking one of many similar things on the table +21634;Stacking number of something +76580;Bending something until it breaks +8843;Wiping something off of something +57008;Picking something up +204091;Moving something away from something +134101;Rolling something on a flat surface +25609;Plugging something into something +50893;Letting something roll down a slanted surface +114432;Lifting something with something on it +85096;Putting something on a surface +60546;Spinning something that quickly stops spinning +35969;Putting something next to something +199456;Something falling like a rock +219617;Removing something, revealing something behind +126714;Putting something in front of something +94577;Pretending to take something from somewhere +186840;Pouring something into something +74974;Stacking number of something +210902;Bending something so that it deforms +78643;Letting something roll down a slanted surface +94088;Showing that something is empty +175368;Turning something upside down +62249;Laying something on the table on its side, not upright +72123;Plugging something into something +194026;Spinning something so it continues spinning +209590;Pushing something from right to left +156171;Pretending to spread air onto something +12381;Opening something +121298;Putting something next to something +182500;Taking something out of something +118403;Pretending or trying and failing to twist something +64796;Moving part of something +149737;Lifting up one end of something, then letting it drop down +103778;Rolling something on a flat surface +190094;Showing that something is empty +74368;Taking something out of something +153207;Showing something behind something +119738;Covering something with something +208131;Moving something and something closer to each other +86337;Putting something that cannot actually stand upright upright on the table, so it falls on its side +63130;Something being deflected from something +18424;Tearing something just a little bit +136234;Hitting something with something +153956;Uncovering something +80276;Putting something that cannot actually stand upright upright on the table, so it falls on its side +49360;Plugging something into something but pulling it right out as you remove your hand +56375;Turning something upside down +121456;Lifting something with something on it +175411;Putting something behind something +99097;Poking a stack of something so the stack collapses +75799;Moving something down +38354;Pouring something into something +212235;Twisting something +106639;Showing something on top of something +189113;Putting something that cannot actually stand upright upright on the table, so it falls on its side +80056;Taking something out of something +32975;Pushing something so that it slightly moves +65624;Covering something with something +155877;Putting something on a flat surface without letting it roll +15171;Putting something onto something +202894;Picking something up +26759;Putting something that can't roll onto a slanted surface, so it stays where it is +138643;Approaching something with your camera +142718;Pretending to open something without actually opening it +206805;Holding something next to something +204746;Trying to bend something unbendable so nothing happens +112035;Plugging something into something +140985;Pushing something from left to right +204630;Putting something on a surface +47745;Hitting something with something +137189;Putting something on a surface +80746;Pretending to sprinkle air onto something +78130;Folding something +191578;Taking something from somewhere +87279;Something falling like a rock +184105;Pretending to throw something +133135;Moving something away from something +80415;Taking one of many similar things on the table +102196;Moving something and something closer to each other +172930;Something falling like a rock +25913;Dropping something behind something +8261;Showing that something is empty +212018;Lifting something with something on it +197546;Moving something and something closer to each other +180378;Pretending to open something without actually opening it +47076;Squeezing something +92376;Turning the camera left while filming something +113891;Picking something up +28726;Turning something upside down +89458;Piling something up +205224;Putting something into something +64777;Twisting something +62070;Taking something from somewhere +177214;Tipping something with something in it over, so something in it falls out +99482;Spinning something that quickly stops spinning +106828;Something colliding with something and both come to a halt +28187;Pulling something from behind of something +23599;Tipping something with something in it over, so something in it falls out +190152;Plugging something into something but pulling it right out as you remove your hand +87479;Tearing something just a little bit +89147;Dropping something onto something +202648;Moving something away from something +173484;Putting something upright on the table +155791;Showing something behind something +49732;Stacking number of something +205052;Putting something next to something +43969;Pushing something from right to left +211986;Plugging something into something but pulling it right out as you remove your hand +108637;Pushing something from left to right +136704;Pretending to poke something +90671;Squeezing something +15046;Putting something and something on the table +170351;Dropping something onto something +4480;Pushing something so it spins +37623;Putting something similar to other things that are already on the table +204735;Pretending to turn something upside down +97246;Moving something up +174729;Moving something and something closer to each other +172396;Unfolding something +70739;Plugging something into something but pulling it right out as you remove your hand +99503;Folding something +167660;Spinning something that quickly stops spinning +119755;Taking one of many similar things on the table +66482;Plugging something into something +113476;Pushing something so that it almost falls off but doesn't +18189;Bending something until it breaks +136824;Laying something on the table on its side, not upright +163290;Moving something and something so they pass each other +188370;Putting something into something +4098;Moving something and something away from each other +1673;Moving something closer to something +195586;Tearing something into two pieces +5748;Putting something, something and something on the table +2190;Moving something down +143794;Covering something with something +63426;Holding something behind something +91059;Pulling two ends of something so that it gets stretched +18562;Pushing something so that it slightly moves +151023;Something falling like a rock +37672;Putting something onto something else that cannot support it so it falls down +143852;Moving something up +546;Pretending to take something out of something +219994;Stuffing something into something +138684;Something being deflected from something +105090;Showing something behind something +86191;Trying to bend something unbendable so nothing happens +208559;Pretending to close something without actually closing it +89355;Attaching something to something +181414;Moving something and something closer to each other +8373;Pouring something out of something +48865;Holding something next to something +59323;Squeezing something +215320;Pretending to poke something +43012;Letting something roll down a slanted surface +161586;Something falling like a feather or paper +108078;Pulling something from left to right +10611;Twisting (wringing) something wet until water comes out +78972;Pouring something out of something +219702;Putting something in front of something +135673;Pouring something into something until it overflows +923;Taking something out of something +168920;Taking something out of something +50076;Pushing something with something +62754;Poking something so it slightly moves +65547;Turning the camera right while filming something +45999;Pretending to put something on a surface +44909;Taking something from somewhere +107923;Tearing something into two pieces +99056;Something falling like a rock +166724;Bending something so that it deforms +183704;Covering something with something +151979;Moving something and something away from each other +162824;Attaching something to something +74737;Holding something over something +134674;Closing something +182449;Dropping something into something +44174;Rolling something on a flat surface +48603;Lifting something with something on it +45629;Pushing something from right to left +190176;Showing something on top of something +75795;Rolling something on a flat surface +53294;Pulling something out of something +81772;Lifting up one end of something, then letting it drop down +26213;Spinning something that quickly stops spinning +155460;Showing that something is inside something +208513;Pouring something onto something +143074;Showing that something is inside something +8390;Putting something underneath something +218912;Scooping something up with something +13193;Taking something out of something +171546;Pretending to scoop something up with something +24150;Putting something on a flat surface without letting it roll +145693;Holding something +199212;Tearing something into two pieces +171171;Putting something behind something +120792;Closing something +72984;Pulling something from left to right +144936;Tearing something just a little bit +12650;Tilting something with something on it until it falls off +102571;Moving something and something closer to each other +61112;Putting something on a surface +96168;Putting something underneath something +112486;Putting something underneath something +112530;Putting something upright on the table +151163;Folding something +14173;Pushing something off of something +31505;Pouring something into something +163464;Pulling something from left to right +21536;Putting something on a surface +149933;Moving something away from something +15315;Pushing something so that it slightly moves +117945;Lifting something with something on it +151811;Taking one of many similar things on the table +176389;Lifting something up completely, then letting it drop down +167407;Scooping something up with something +166111;Pulling two ends of something but nothing happens +78351;Dropping something onto something +76000;Showing something behind something +57217;Pushing something from right to left +94743;Moving something and something closer to each other +73304;Moving something up +155998;Lifting something with something on it +93163;Moving something and something so they pass each other +190015;Wiping something off of something +26834;Pulling something from behind of something +13984;Pushing something so that it slightly moves +175827;Throwing something onto a surface +51293;Moving something down +13891;Putting number of something onto something +4011;Putting something upright on the table +92960;Poking something so lightly that it doesn't or almost doesn't move +133080;Moving something and something closer to each other +191308;Showing that something is empty +214025;Tearing something into two pieces +45289;Putting something next to something +132809;Covering something with something +27551;Lifting something up completely without letting it drop down +103671;Showing something behind something +212750;Poking something so lightly that it doesn't or almost doesn't move +50615;Tearing something into two pieces +87010;Pulling something out of something +96398;Poking a stack of something without the stack collapsing +188641;Pushing something from left to right +37999;Throwing something +39903;Tipping something over +193802;Pretending to take something out of something +99164;Showing something behind something +15789;Covering something with something +47872;Pretending to sprinkle air onto something +70387;Lifting something up completely, then letting it drop down +22930;Tipping something over +124334;Turning the camera right while filming something +98296;Something falling like a rock +166473;Holding something +192221;Putting something onto something +154333;Letting something roll down a slanted surface +181257;Showing something on top of something +62654;Moving something and something so they collide with each other +158780;Turning something upside down +198191;Showing something next to something +98372;Picking something up +47290;Pretending to be tearing something that is not tearable +131595;Moving something and something away from each other +214838;Showing that something is empty +10246;Pushing something so it spins +219083;Wiping something off of something +139851;Pulling two ends of something so that it gets stretched +32434;Throwing something in the air and letting it fall +76737;Attaching something to something +184337;Touching (without moving) part of something +996;Pulling something out of something +184734;Putting something on a surface +161164;Putting something and something on the table +145676;Dropping something into something +152021;Putting something similar to other things that are already on the table +71411;Showing something behind something +148676;Moving something closer to something +154550;Attaching something to something +136073;Tipping something over +115782;Wiping something off of something +78653;Moving something down +174827;Putting number of something onto something +16058;Moving something and something closer to each other +197202;Squeezing something +8125;Closing something +166284;Moving something away from something +82358;Letting something roll down a slanted surface +3671;Pretending to poke something +24525;Something being deflected from something +51029;Poking something so it slightly moves +106710;Showing that something is empty +190030;Turning the camera upwards while filming something +66340;Stuffing something into something +146370;Lifting something up completely without letting it drop down +22289;Pulling something from right to left +62172;Folding something +156612;Poking a stack of something without the stack collapsing +1797;Holding something in front of something +175265;Something falling like a rock +171621;Squeezing something +127880;Spinning something so it continues spinning +95233;Letting something roll along a flat surface +197236;Spinning something so it continues spinning +91065;Hitting something with something +188891;Showing that something is empty +19315;Pouring something into something +138501;Moving something across a surface until it falls down +54437;Twisting (wringing) something wet until water comes out +143149;Something falling like a feather or paper +208293;Covering something with something +105851;Moving something across a surface until it falls down +54896;Pouring something into something until it overflows +102525;Moving something and something away from each other +79257;Pretending to spread air onto something +70592;Pushing something so that it slightly moves +43576;Pushing something from right to left +112203;Closing something +43028;Throwing something +7221;Showing a photo of something to the camera +201948;Stacking number of something +68992;Tilting something with something on it until it falls off +33916;Moving something and something closer to each other +148635;Tilting something with something on it until it falls off +219976;Spilling something onto something +168189;Tearing something just a little bit +33240;Something being deflected from something +211594;Opening something +84199;Pushing something with something +159039;Plugging something into something +18980;Stuffing something into something +159919;Bending something so that it deforms +52533;Tearing something into two pieces +175514;Dropping something into something +6913;Moving something and something away from each other +201723;Moving something up +219723;Holding something +188001;Pretending to be tearing something that is not tearable +209895;Something falling like a rock +12302;Pretending to pour something out of something, but something is empty +190394;Plugging something into something +182746;Pretending to throw something +167797;Plugging something into something +157300;Taking something from somewhere +68321;Tearing something into two pieces +74373;Pulling something from left to right +182745;Rolling something on a flat surface +48795;Tearing something just a little bit +29589;Showing something behind something +143552;Plugging something into something +16499;Plugging something into something but pulling it right out as you remove your hand +52390;Pulling something out of something +39458;Dropping something onto something +68074;Tearing something just a little bit +201267;Folding something +141877;Pulling something from left to right +91912;Putting something that can't roll onto a slanted surface, so it slides down +129283;Moving something away from something +56358;Turning something upside down +55657;Sprinkling something onto something +60840;Dropping something into something +83267;Dropping something next to something +123923;Taking something from somewhere +139271;Pushing something off of something +115151;Plugging something into something +104912;Something falling like a feather or paper +130380;Putting something on a flat surface without letting it roll +48463;Pretending to pick something up +32254;Wiping something off of something +177325;Something falling like a rock +96269;Taking something out of something +30996;Putting something next to something +153869;Dropping something next to something +13425;Pushing something off of something +68603;Moving something closer to something +93675;Pretending to squeeze something +59383;Holding something in front of something +151108;Poking something so that it falls over +101069;Moving something and something away from each other +99580;Throwing something in the air and letting it fall +55892;Picking something up +126388;Putting something next to something +159550;Pouring something into something +6423;Poking something so lightly that it doesn't or almost doesn't move +413;Squeezing something +117135;Pushing something onto something +109328;Turning the camera right while filming something +162210;Unfolding something +23288;Unfolding something +87564;Spilling something onto something +102619;Lifting a surface with something on it until it starts sliding down +168507;Tearing something into two pieces +212814;Pushing something so that it falls off the table +167402;Covering something with something +202019;Moving something and something away from each other +84893;Taking one of many similar things on the table +95016;Pretending to throw something +59228;Turning something upside down +82529;Putting something and something on the table +11403;Closing something +216246;Pushing something from right to left +85649;Moving something and something closer to each other +162449;Digging something out of something +47578;Putting something on a flat surface without letting it roll +82716;Moving something down +200209;Unfolding something +75813;Putting something onto something +218076;Plugging something into something but pulling it right out as you remove your hand +33290;Tearing something into two pieces +52307;Moving something and something away from each other +98004;Taking something out of something +53863;Lifting something up completely, then letting it drop down +71081;Moving something and something closer to each other +197533;Squeezing something +187650;Putting something next to something +87070;Something falling like a rock +86272;Putting something, something and something on the table +79095;Moving something up +209373;Dropping something behind something +91598;Uncovering something +93965;Lifting up one end of something without letting it drop down +163705;Spreading something onto something +14458;Throwing something against something +90932;Pulling two ends of something so that it gets stretched +35973;Pretending to pick something up +26000;Moving something across a surface without it falling down +192620;Pouring something into something +189634;Putting something upright on the table +85455;Tearing something into two pieces +124319;Holding something in front of something +129981;Showing something behind something +179214;Putting something that cannot actually stand upright upright on the table, so it falls on its side +40211;Lifting something with something on it +157689;Putting something on a surface +199404;Showing something behind something +146166;Pulling something from left to right +193847;Pushing something so that it falls off the table +198294;Attaching something to something +11538;Tearing something into two pieces +67579;Bending something so that it deforms +48058;Spinning something that quickly stops spinning +182124;Moving something towards the camera +81920;Something falling like a feather or paper +68064;Pretending to be tearing something that is not tearable +82042;Pushing something from left to right +158258;Pretending to put something on a surface +132889;Rolling something on a flat surface +60180;Pushing something so that it slightly moves +210642;Holding something over something +208189;Twisting something +210873;Putting number of something onto something +207718;Trying but failing to attach something to something because it doesn't stick +170825;Pretending to pick something up +98694;Pretending to close something without actually closing it +200933;Squeezing something +152724;Spinning something so it continues spinning +90835;Pushing something with something +191879;Taking one of many similar things on the table +85638;Spinning something so it continues spinning +209617;Dropping something onto something +58421;Closing something +57584;Covering something with something +421;Rolling something on a flat surface +211858;Pretending to close something without actually closing it +110825;Plugging something into something +114790;Moving something and something away from each other +201171;Tipping something with something in it over, so something in it falls out +141391;Pretending to put something underneath something +182762;Letting something roll along a flat surface +175884;Showing that something is empty +211106;Holding something next to something +131814;Closing something +12608;Pushing something so that it slightly moves +138943;Pretending to pick something up +101230;Tipping something with something in it over, so something in it falls out +46751;Stuffing something into something +190025;Tearing something into two pieces +120908;Pushing something from left to right +54961;Putting something on a surface +104880;Uncovering something +93703;Dropping something into something +26662;Uncovering something +202716;Trying but failing to attach something to something because it doesn't stick +207270;Putting something on a surface +158377;Throwing something +42913;Showing something next to something +24598;Pushing something from left to right +138687;Pushing something so that it almost falls off but doesn't +11507;Putting number of something onto something +46952;Taking one of many similar things on the table +188344;Moving something and something away from each other +27743;Covering something with something +189779;Pushing something so it spins +188645;Uncovering something +151219;Something colliding with something and both are being deflected +125336;Pushing something from right to left +66029;Trying but failing to attach something to something because it doesn't stick +115998;Poking something so that it falls over +6319;Tipping something over +176014;Stuffing something into something +52473;Putting something behind something +27696;Pulling something from right to left +48855;Moving part of something +128860;Trying but failing to attach something to something because it doesn't stick +168266;Putting something upright on the table +80361;Pushing something with something +45634;Holding something behind something +116355;Showing that something is empty +147665;Plugging something into something but pulling it right out as you remove your hand +46604;Squeezing something +145787;Tearing something just a little bit +68393;Letting something roll along a flat surface +17023;Showing something next to something +52434;Putting something next to something +57253;Moving something up +206272;Something colliding with something and both are being deflected +70406;Putting something similar to other things that are already on the table +35182;Moving something away from something +207371;Closing something +19541;Lifting a surface with something on it but not enough for it to slide down +3195;Showing that something is empty +163627;Pushing something so that it slightly moves +170669;Unfolding something +88797;Showing something behind something +121771;Opening something +45804;Pouring something into something +53878;Pretending or trying and failing to twist something +182334;Putting something into something +76832;Piling something up +178849;Dropping something onto something +203401;Pushing something so that it slightly moves +83476;Putting something on a surface +81671;Bending something so that it deforms +219467;Stuffing something into something +138725;Pushing something from left to right +191656;Laying something on the table on its side, not upright +88529;Attaching something to something +42221;Pouring something into something +194444;Showing something next to something +102217;Putting something on a surface +98712;Tearing something into two pieces +163419;Holding something in front of something +61835;Pretending to open something without actually opening it +175399;Spilling something onto something +131822;Holding something next to something +177762;Showing that something is empty +52598;Something being deflected from something +190503;Moving something and something closer to each other +125958;Taking one of many similar things on the table +35000;Pouring something into something +199139;Putting something behind something +214574;Pushing something with something +97468;Pushing something with something +197000;Taking one of many similar things on the table +59249;Pretending to be tearing something that is not tearable +86228;Pretending to poke something +90832;Stuffing something into something +138812;Taking something out of something +80724;Moving something and something closer to each other +190301;Showing something behind something +208033;Moving part of something +176557;Rolling something on a flat surface +165405;Spinning something that quickly stops spinning +182624;Throwing something +205043;Picking something up +113021;Plugging something into something +84033;Moving something down +174701;Throwing something +108796;Tilting something with something on it slightly so it doesn't fall down +152411;Moving something up +180397;Sprinkling something onto something +29877;Hitting something with something +134937;Spinning something that quickly stops spinning +57905;Showing something on top of something +4870;Throwing something against something +112896;Holding something over something +34353;Putting something next to something +146022;Moving something and something closer to each other +64676;Stacking number of something +176438;Showing that something is empty +125774;Putting something underneath something +12825;Putting something that cannot actually stand upright upright on the table, so it falls on its side +15226;Poking something so lightly that it doesn't or almost doesn't move +56333;Putting something similar to other things that are already on the table +166100;Tilting something with something on it slightly so it doesn't fall down +56139;Taking something out of something +172528;Moving something and something away from each other +41635;Spinning something that quickly stops spinning +40425;Pushing something from right to left +136537;Tearing something into two pieces +5884;Showing that something is empty +192340;Holding something +21519;Plugging something into something +115488;Attaching something to something +39993;Putting something and something on the table +162684;Putting something on the edge of something so it is not supported and falls down +196575;Squeezing something +205699;Showing something to the camera +206031;Spreading something onto something +105510;Moving something and something closer to each other +199053;Hitting something with something +68961;Pretending to turn something upside down +749;Stuffing something into something +82195;Showing something behind something +101267;Moving something and something closer to each other +57298;Tearing something into two pieces +139752;Holding something over something +51770;Putting something similar to other things that are already on the table +215507;Plugging something into something +42171;Pulling two ends of something but nothing happens +35507;Showing that something is inside something +69296;Pushing something from right to left +116150;Dropping something next to something +150783;Poking a stack of something so the stack collapses +162847;Moving something away from something +169796;Moving something and something away from each other +138489;Poking something so it slightly moves +59980;Moving something up +203151;Taking one of many similar things on the table +195289;Something falling like a rock +20827;Pretending to be tearing something that is not tearable +58631;Showing something behind something +70664;Plugging something into something +61725;Pulling something out of something +163994;Holding something behind something +50827;Taking something out of something +82208;Pretending to close something without actually closing it +141143;Pushing something so that it slightly moves +183601;Throwing something in the air and letting it fall +149438;Stuffing something into something +169115;Moving something and something so they collide with each other +61235;Taking one of many similar things on the table +34259;Taking something out of something +133888;Moving something and something away from each other +99805;Holding something +77985;Turning something upside down +84819;Letting something roll along a flat surface +178668;Pretending to open something without actually opening it +104277;Folding something +79251;Tipping something over +210717;Putting something in front of something +104482;Opening something +183216;Putting something underneath something +36137;Tearing something just a little bit +69724;Stacking number of something +57316;Taking one of many similar things on the table +73748;Holding something +87339;Something falling like a feather or paper +133383;Pretending to be tearing something that is not tearable +54161;Letting something roll along a flat surface +31881;Turning something upside down +197874;Moving something and something closer to each other +11549;Taking something out of something +12044;Uncovering something +220708;Lifting something up completely without letting it drop down +217183;Pushing something so that it almost falls off but doesn't +194823;Poking something so that it falls over +81198;Putting something on a surface +200532;Putting number of something onto something +37886;Moving something and something closer to each other +157295;Opening something +127319;Showing something next to something +157853;Lifting something up completely, then letting it drop down +169340;Dropping something into something +215573;Holding something next to something +59016;Pulling something from left to right +81359;Failing to put something into something because something does not fit +44445;Pretending to spread air onto something +112421;Pushing something with something +208888;Moving something and something away from each other +23502;Taking something out of something +87597;Taking something out of something +36853;Dropping something into something +172616;Pretending to be tearing something that is not tearable +127685;Pushing something so that it slightly moves +8541;Pushing something so that it slightly moves +212858;Turning the camera upwards while filming something +57984;Tearing something into two pieces +145800;Moving something up +217731;Pushing something so that it slightly moves +203688;Tearing something into two pieces +168399;Pulling something from right to left +92282;Lifting something up completely, then letting it drop down +147851;Something falling like a rock +31154;Tilting something with something on it slightly so it doesn't fall down +145056;Pushing something from right to left +178549;Spilling something onto something +150182;Squeezing something +26786;Dropping something next to something +212160;Putting something that can't roll onto a slanted surface, so it slides down +27652;Putting something upright on the table +84004;Showing something behind something +211885;Pretending to take something out of something +11121;Pouring something onto something +40364;Pouring something out of something +150912;Pouring something into something until it overflows +7295;Pulling something out of something +32007;Stacking number of something +220636;Moving something across a surface until it falls down +152740;Showing something next to something +204131;Something falling like a feather or paper +35687;Pushing something so that it falls off the table +105398;Pulling something out of something +147776;Pushing something with something +202952;Piling something up +209774;Plugging something into something but pulling it right out as you remove your hand +115928;Touching (without moving) part of something +40765;Picking something up +67282;Attaching something to something +65425;Moving something and something closer to each other +189321;Showing that something is empty +164958;Throwing something +26727;Pushing something so that it slightly moves +145422;Holding something +18782;Attaching something to something +65399;Poking a hole into something soft +1528;Approaching something with your camera +33376;Turning something upside down +129973;Moving something closer to something +7813;Letting something roll down a slanted surface +124190;Pouring something out of something +124279;Moving something and something so they collide with each other +126016;Putting something into something +175212;Holding something next to something +131635;Wiping something off of something +78186;Moving something down +5309;Tearing something into two pieces +110045;Moving something down +3222;Stacking number of something +37711;Pouring something into something +56954;Spreading something onto something +207276;Moving away from something with your camera +189309;Throwing something onto a surface +26360;Taking one of many similar things on the table +103256;Showing that something is empty +63571;Something being deflected from something +100481;Pushing something with something +160706;Putting something that cannot actually stand upright upright on the table, so it falls on its side +66537;Covering something with something +117229;Taking one of many similar things on the table +127724;Spilling something behind something +198984;Putting something on a surface +166545;Picking something up +54076;Pretending to open something without actually opening it +50254;Putting something on a surface +31183;Moving something across a surface until it falls down +194302;Pulling something from left to right +210194;Plugging something into something +164702;Moving something down +106220;Pretending to close something without actually closing it +220083;Something falling like a rock +104180;Uncovering something +200797;Showing something behind something +107155;Spilling something behind something +122496;Showing something next to something +73277;Spinning something so it continues spinning +171413;Tilting something with something on it until it falls off +121901;Stacking number of something +196518;Holding something +96513;Turning the camera downwards while filming something +11461;Plugging something into something +135062;Lifting something with something on it +3864;Closing something +160377;Pushing something from right to left +204004;Moving something down +24225;Throwing something +141020;Putting something next to something +4836;Pushing something with something +182057;Plugging something into something +37298;Hitting something with something +22391;Holding something behind something +171425;Covering something with something +196613;Spreading something onto something +48616;Folding something +19470;Pretending to pick something up +133642;Squeezing something +173778;Something falling like a feather or paper +187511;Approaching something with your camera +54345;Hitting something with something +39609;Moving something down +218968;Putting something that cannot actually stand upright upright on the table, so it falls on its side +147970;Tearing something into two pieces +120558;Spilling something behind something +194303;Something colliding with something and both are being deflected +108704;Putting something upright on the table +165385;Showing that something is empty +174980;Pouring something into something until it overflows +100121;Putting something next to something +183634;Moving something up +71864;Plugging something into something but pulling it right out as you remove your hand +157631;Touching (without moving) part of something +68604;Touching (without moving) part of something +20395;Pushing something so that it slightly moves +208143;Pulling two ends of something so that it gets stretched +138614;Putting something on a surface +2139;Moving part of something +26318;Pouring something into something +120272;Plugging something into something +109431;Putting something on a flat surface without letting it roll +46646;Pretending or failing to wipe something off of something +97518;Spilling something onto something +168565;Moving something and something closer to each other +99352;Something colliding with something and both come to a halt +61233;Spilling something onto something +184299;Pouring something into something +131021;Putting something on the edge of something so it is not supported and falls down +8228;Taking one of many similar things on the table +155616;Squeezing something +144237;Turning something upside down +143684;Showing something on top of something +109715;Dropping something onto something +169478;Pretending to open something without actually opening it +129286;Letting something roll down a slanted surface +181723;Pouring something into something +71842;Rolling something on a flat surface +93299;Plugging something into something +42352;Spinning something that quickly stops spinning +198411;Opening something +133504;Tearing something into two pieces +64216;Wiping something off of something +80565;Letting something roll down a slanted surface +64093;Folding something +23487;Pulling something out of something +6762;Poking something so that it falls over +77786;Poking something so it slightly moves +38614;Putting something, something and something on the table +49580;Putting something that can't roll onto a slanted surface, so it slides down +43328;Putting something upright on the table +206778;Pulling something from right to left +96188;Taking something from somewhere +140506;Moving something across a surface until it falls down +187567;Something falling like a rock +71401;Moving something closer to something +16748;Rolling something on a flat surface +117115;Tearing something into two pieces +98289;Taking something out of something +160828;Putting number of something onto something +179000;Twisting (wringing) something wet until water comes out +47202;Moving something away from something +130410;Taking something out of something +53795;Spilling something onto something +156111;Putting something into something +33668;Moving something and something away from each other +47948;Taking something out of something +61322;Putting something that cannot actually stand upright upright on the table, so it falls on its side +114639;Putting something and something on the table +104424;Folding something +202635;Hitting something with something +217474;Holding something +215481;Lifting up one end of something, then letting it drop down +175371;Lifting something up completely without letting it drop down +57789;Throwing something +69913;Throwing something in the air and catching it +19428;Pouring something into something until it overflows +10397;Pouring something into something until it overflows +176886;Turning something upside down +79896;Showing that something is inside something +73898;Something falling like a rock +14404;Moving something and something closer to each other +197932;Showing something to the camera +109522;Pushing something so that it almost falls off but doesn't +62917;Closing something +146334;Pretending to close something without actually closing it +123604;Putting something on a surface +64946;Folding something +117911;Sprinkling something onto something +42417;Pulling two ends of something so that it separates into two pieces +35992;Moving something and something closer to each other +77426;Pushing something with something +163650;Pushing something onto something +201093;Poking something so it slightly moves +67193;Putting something, something and something on the table +91043;Spinning something that quickly stops spinning +88140;Pretending to put something next to something +182378;Showing something behind something +114882;Moving something up +18444;Laying something on the table on its side, not upright +203011;Holding something in front of something +112515;Moving something and something away from each other +147224;Pretending to close something without actually closing it +32768;Putting something that can't roll onto a slanted surface, so it stays where it is +126507;Plugging something into something +3288;Opening something +19484;Holding something over something +179810;Taking one of many similar things on the table +81015;Closing something +207601;Pushing something with something +116215;Pouring something into something +64610;Something colliding with something and both are being deflected +133530;Piling something up +190521;Dropping something next to something +144806;Dropping something into something +219581;Rolling something on a flat surface +163753;Rolling something on a flat surface +148478;Unfolding something +5891;Rolling something on a flat surface +139815;Throwing something in the air and letting it fall +65288;Putting something next to something +26453;Pretending to take something from somewhere +7315;Moving something and something closer to each other +152892;Holding something over something +94864;Hitting something with something +202286;Putting something on a surface +47735;Putting something on the edge of something so it is not supported and falls down +19910;Pulling two ends of something so that it gets stretched +57376;Putting something into something +61909;Something colliding with something and both are being deflected +35380;Putting something on a surface +206489;Wiping something off of something +77099;Holding something next to something +101051;Picking something up +146854;Piling something up +170473;Showing something to the camera +94952;Picking something up +56390;Covering something with something +219032;Touching (without moving) part of something +146677;Squeezing something +194177;Folding something +14062;Lifting up one end of something without letting it drop down +96396;Pulling two ends of something so that it gets stretched +79005;Bending something so that it deforms +204834;Pretending to pick something up +84592;Holding something behind something +10275;Uncovering something +83809;Pushing something so that it falls off the table +78344;Something falling like a rock +8932;Poking something so lightly that it doesn't or almost doesn't move +129453;Pulling something out of something +59490;Plugging something into something +12792;Pushing something so that it slightly moves +87652;Trying to bend something unbendable so nothing happens +135251;Turning something upside down +170097;Lifting something up completely, then letting it drop down +115801;Putting something in front of something +91954;Putting something on a surface +105674;Throwing something +215851;Moving something and something so they collide with each other +37015;Twisting something +191216;Moving something down +36748;Holding something next to something +170755;Uncovering something +205077;Pulling two ends of something so that it separates into two pieces +134822;Putting something similar to other things that are already on the table +52123;Pulling something from left to right +183335;Putting something on a surface +179486;Pulling something from left to right +20035;Twisting something +128151;Bending something until it breaks +112242;Picking something up +171532;Opening something +69166;Tearing something into two pieces +177471;Tipping something over +156950;Pushing something from left to right +55791;Showing that something is empty +100047;Pushing something from left to right +181083;Holding something behind something +3342;Pretending to pour something out of something, but something is empty +27095;Pushing something so that it slightly moves +49146;Turning the camera left while filming something +141263;Putting something on a flat surface without letting it roll +174167;Putting something on a surface +99044;Putting something into something +99230;Pouring something out of something +115595;Putting something on a surface +18835;Moving something away from something +134965;Moving something down +146243;Digging something out of something +220145;Poking something so lightly that it doesn't or almost doesn't move +116285;Pretending or failing to wipe something off of something +187425;Holding something in front of something +208766;Spinning something that quickly stops spinning +217589;Tearing something into two pieces +70810;Putting something on a flat surface without letting it roll +177746;Putting something onto something else that cannot support it so it falls down +168869;Turning something upside down +213763;Moving part of something +169274;Turning the camera right while filming something +35532;Laying something on the table on its side, not upright +162935;Closing something +18287;Tearing something into two pieces +172133;Tearing something into two pieces +55437;Holding something over something +48260;Pouring something into something +132725;Digging something out of something +202097;Hitting something with something +219098;Closing something +170441;Taking one of many similar things on the table +165573;Something being deflected from something +201528;Plugging something into something but pulling it right out as you remove your hand +181592;Moving something across a surface without it falling down +32858;Poking a stack of something so the stack collapses +98377;Pretending to close something without actually closing it +191249;Pushing something from right to left +192852;Showing something behind something +158470;Pushing something so it spins +11701;Putting something next to something +67620;Tearing something just a little bit +162314;Pretending to poke something +152661;Opening something +151017;Trying to bend something unbendable so nothing happens +103894;Pushing something off of something +115065;Turning something upside down +47012;Pulling something from left to right +174357;Showing something to the camera +16222;Dropping something into something +57059;Moving something and something away from each other +188904;Tearing something into two pieces +212971;Putting something and something on the table +205063;Tipping something with something in it over, so something in it falls out +137307;Dropping something next to something +178078;Holding something +9532;Opening something +208083;Showing that something is inside something +156081;Opening something +171282;Squeezing something +190308;Unfolding something +193631;Putting something into something +315;Putting something that cannot actually stand upright upright on the table, so it falls on its side +33575;Removing something, revealing something behind +111098;Showing something on top of something +170629;Putting something on a surface +63359;Pretending to take something from somewhere +153206;Pretending to pick something up +112145;Closing something +119602;Lifting something up completely, then letting it drop down +62937;Tilting something with something on it until it falls off +68593;Rolling something on a flat surface +205999;Taking one of many similar things on the table +59963;Pouring something into something +109157;Trying but failing to attach something to something because it doesn't stick +109241;Squeezing something +23592;Showing something behind something +189427;Tearing something into two pieces +201962;Wiping something off of something +32387;Something falling like a rock +200723;Putting something similar to other things that are already on the table +73254;Pulling something from right to left +172173;Holding something behind something +85383;Moving something down +190811;Pretending to turn something upside down +3519;Moving something away from something +120075;Putting something into something +205723;Something falling like a rock +86123;Pulling something from right to left +45112;Lifting something with something on it +97243;Poking something so lightly that it doesn't or almost doesn't move +137691;Spilling something next to something +161993;Wiping something off of something +31925;Picking something up +112482;Pushing something off of something +205643;Tearing something into two pieces +9498;Pretending to open something without actually opening it +51333;Lifting something up completely, then letting it drop down +16044;Pushing something from right to left +78287;Pulling two ends of something so that it gets stretched +190867;Moving something away from something +33654;Putting something upright on the table +124106;Poking something so it slightly moves +189612;Pulling something from right to left +91540;Something falling like a feather or paper +2738;Tipping something over +186444;Pushing something from right to left +135220;Moving something up +134933;Folding something +61540;Lifting something up completely, then letting it drop down +206561;Rolling something on a flat surface +164268;Moving something up +137366;Putting something next to something +123765;Moving part of something +51987;Pouring something out of something +48765;Plugging something into something but pulling it right out as you remove your hand +147761;Piling something up +175493;Showing something next to something +144918;Showing something on top of something +179955;Pouring something into something +100617;Tilting something with something on it until it falls off +219176;Putting something on a surface +35743;Moving away from something with your camera +50629;Pushing something from right to left +94084;Covering something with something +45940;Tipping something over +58125;Holding something over something +33469;Pushing something so that it slightly moves +202092;Trying but failing to attach something to something because it doesn't stick +42924;Plugging something into something +129677;Something falling like a rock +95956;Pretending to put something on a surface +168158;Turning something upside down +74421;Tearing something just a little bit +112120;Spinning something that quickly stops spinning +133956;Uncovering something +15538;Lifting something up completely without letting it drop down +101150;Pretending to poke something +28302;Spinning something that quickly stops spinning +87690;Tipping something over +44524;Spinning something that quickly stops spinning +216795;Tearing something into two pieces +142477;Lifting something up completely without letting it drop down +96465;Moving something and something closer to each other +7137;Stuffing something into something +170325;Lifting up one end of something, then letting it drop down +169286;Putting something on a flat surface without letting it roll +28413;Twisting something +152794;Stuffing something into something +151362;Lifting something up completely, then letting it drop down +76997;Putting something behind something +145488;Dropping something next to something +97960;Showing that something is inside something +46274;Lifting something up completely, then letting it drop down +122648;Plugging something into something +165453;Poking something so it slightly moves +97097;Showing something next to something +131293;Spinning something so it continues spinning +144751;Folding something +175151;Tipping something with something in it over, so something in it falls out +204826;Pretending to squeeze something +64880;Trying to bend something unbendable so nothing happens +188883;Holding something over something +129878;Plugging something into something +65857;Holding something next to something +139304;Tearing something into two pieces +46314;Scooping something up with something +183729;Pretending to take something out of something +81648;Holding something over something +67429;Unfolding something +63217;Attaching something to something +36944;Lifting up one end of something without letting it drop down +50356;Putting something on a surface +6923;Pushing something so that it almost falls off but doesn't +220064;Something falling like a rock +21671;Moving something up +50868;Digging something out of something +178614;Moving something down +17082;Tipping something over +97507;Pretending to poke something +12236;Pouring something into something +210102;Unfolding something +219797;Throwing something in the air and letting it fall +215437;Putting something and something on the table +96225;Letting something roll along a flat surface +52404;Holding something in front of something +162368;Bending something so that it deforms +90919;Rolling something on a flat surface +104292;Taking one of many similar things on the table +105653;Dropping something into something +63917;Pretending to open something without actually opening it +177228;Plugging something into something +100847;Throwing something in the air and catching it +61221;Pulling something from behind of something +42724;Pouring something into something +21597;Pushing something so that it almost falls off but doesn't +82832;Picking something up +196073;Holding something +78767;Showing something on top of something +129690;Lifting something up completely, then letting it drop down +26059;Pouring something out of something +126502;Tearing something just a little bit +4203;Putting something upright on the table +182414;Moving something and something closer to each other +82133;Sprinkling something onto something +47470;Turning the camera upwards while filming something +168302;Pretending to pick something up +33454;Pushing something so that it slightly moves +211452;Putting number of something onto something +157462;Showing that something is inside something +29706;Pretending to pick something up +91926;Pushing something from right to left +170271;Lifting up one end of something, then letting it drop down +49713;Poking something so lightly that it doesn't or almost doesn't move +42883;Rolling something on a flat surface +35236;Moving something and something closer to each other +60635;Failing to put something into something because something does not fit +106744;Holding something over something +135567;Putting something that cannot actually stand upright upright on the table, so it falls on its side +189841;Pushing something from left to right +37482;Putting something next to something +121186;Dropping something into something +99789;Pouring something into something +169850;Something falling like a rock +19529;Putting something next to something +120081;Pushing something off of something +35124;Plugging something into something but pulling it right out as you remove your hand +10964;Moving part of something +73552;Putting something similar to other things that are already on the table +57999;Pretending or failing to wipe something off of something +22887;Throwing something in the air and letting it fall +9260;Trying to bend something unbendable so nothing happens +219712;Something falling like a feather or paper +198422;Trying to bend something unbendable so nothing happens +85467;Holding something in front of something +186981;Putting something onto something +80081;Pushing something so that it falls off the table +118462;Pretending to take something from somewhere +95411;Taking something from somewhere +189848;Letting something roll along a flat surface +151466;Taking something from somewhere +70319;Unfolding something +11207;Holding something +199469;Lifting something with something on it +85033;Plugging something into something +58333;Holding something +56743;Trying but failing to attach something to something because it doesn't stick +177093;Plugging something into something +86688;Pushing something off of something +39522;Bending something until it breaks +177042;Tearing something into two pieces +220560;Throwing something in the air and letting it fall +174248;Moving something and something closer to each other +110432;Moving something across a surface until it falls down +95878;Attaching something to something +153998;Moving something and something closer to each other +122204;Showing something to the camera +219855;Moving something away from something +134382;Hitting something with something +202409;Dropping something onto something +204984;Touching (without moving) part of something +171719;Squeezing something +204998;Showing that something is empty +63997;Showing something on top of something +198658;Pouring something out of something +173334;Folding something +170205;Spinning something that quickly stops spinning +92880;Pulling something out of something +177087;Something falling like a rock +40552;Taking something out of something +157890;Lifting a surface with something on it until it starts sliding down +113811;Tipping something over +151040;Twisting something +22188;Scooping something up with something +216522;Putting something into something +54245;Spreading something onto something +212555;Pretending to sprinkle air onto something +177480;Moving something and something away from each other +164710;Holding something next to something +191057;Holding something over something +191009;Dropping something onto something +154075;Putting something behind something +167718;Pretending to close something without actually closing it +126701;Wiping something off of something +177151;Lifting something with something on it +74497;Attaching something to something +33046;Putting something on a surface +119947;Pushing something so that it slightly moves +92465;Spinning something that quickly stops spinning +5583;Moving something down +94164;Folding something +44389;Tilting something with something on it slightly so it doesn't fall down +129205;Holding something in front of something +203671;Spinning something that quickly stops spinning +33874;Taking something out of something +134675;Pushing something so that it slightly moves +97058;Sprinkling something onto something +127030;Pretending to put something on a surface +135784;Twisting something +13964;Putting number of something onto something +98072;Spinning something that quickly stops spinning +117636;Pulling two ends of something so that it separates into two pieces +57632;Opening something +164660;Plugging something into something but pulling it right out as you remove your hand +133333;Showing that something is empty +6320;Putting something on a surface +132729;Tearing something just a little bit +48487;Poking a stack of something so the stack collapses +184565;Pulling two ends of something but nothing happens +35481;Putting something similar to other things that are already on the table +56822;Showing something next to something +58382;Moving something and something away from each other +206011;Pretending to be tearing something that is not tearable +210361;Lifting up one end of something, then letting it drop down +71942;Twisting something +205700;Twisting something +30447;Pulling something out of something +93795;Tearing something just a little bit +66010;Letting something roll along a flat surface +147004;Letting something roll along a flat surface +75073;Pretending to spread air onto something +68878;Putting something on a surface +25536;Pretending to take something from somewhere +107290;Moving something down +755;Rolling something on a flat surface +130603;Holding something next to something +104380;Pretending to open something without actually opening it +213209;Wiping something off of something +62086;Moving something across a surface until it falls down +16423;Lifting something with something on it +91121;Picking something up +203956;Tilting something with something on it slightly so it doesn't fall down +47935;Touching (without moving) part of something +85246;Tilting something with something on it until it falls off +111531;Dropping something in front of something +168906;Putting something and something on the table +31769;Letting something roll down a slanted surface +194913;Moving something and something away from each other +72023;Pretending to be tearing something that is not tearable +179674;Dropping something next to something +156758;Wiping something off of something +88425;Folding something +132639;Pretending to pick something up +118041;Pretending to poke something +102991;Pulling something from right to left +40325;Pouring something into something +126969;Taking something out of something +101729;Moving something and something closer to each other +144491;Pouring something into something +32772;Pretending to take something out of something +149616;Bending something so that it deforms +156320;Lifting something with something on it +204354;Pushing something with something +58719;Pulling something from right to left +57561;Holding something over something +19929;Squeezing something +77658;Stacking number of something +97891;Pouring something onto something +212345;Pushing something so it spins +170925;Holding something next to something +29723;Taking something out of something +35542;Pretending to poke something +127036;Showing something behind something +95841;Attaching something to something +173101;Putting something onto something else that cannot support it so it falls down +99494;Holding something behind something +98815;Pretending to put something onto something +50761;Putting something onto something +14174;Picking something up +131832;Showing something to the camera +173477;Moving something away from the camera +85544;Pushing something so that it falls off the table +66671;Pushing something from left to right +102770;Folding something +72570;Lifting something up completely without letting it drop down +200245;Scooping something up with something +201617;Pushing something from left to right +202038;Poking a hole into something soft +26074;Showing something to the camera +122688;Folding something +38836;Pushing something so it spins +178328;Folding something +20238;Pushing something so that it falls off the table +98832;Tipping something over +2703;Pretending to pick something up +143270;Letting something roll along a flat surface +202392;Stuffing something into something +37674;Holding something next to something +35082;Turning something upside down +92599;Moving something closer to something +207934;Digging something out of something +102096;Putting something that cannot actually stand upright upright on the table, so it falls on its side +21242;Turning something upside down +202161;Holding something +42830;Pretending to close something without actually closing it +22790;Stuffing something into something +111558;Pushing something so that it falls off the table +68148;Moving part of something +32305;Showing something on top of something +90425;Turning the camera left while filming something +5386;Moving something away from something +97545;Lifting something with something on it +59926;Pretending to spread air onto something +129797;Moving something away from the camera +38765;Putting something on a surface +191387;Pouring something into something +89413;Taking something out of something +9158;Tearing something just a little bit +165055;Something falling like a rock +175907;Turning the camera right while filming something +181811;Tilting something with something on it until it falls off +184816;Something falling like a rock +110739;Moving something closer to something +207253;Pretending to put something into something +200874;Taking something out of something +39149;Moving something away from something +50073;Spinning something that quickly stops spinning +181493;Showing something next to something +98186;Holding something over something +161590;Taking something out of something +140268;Lifting something with something on it +79756;Turning something upside down +100936;Piling something up +25548;Throwing something in the air and letting it fall +173271;Moving something up +58337;Putting something upright on the table +83106;Pushing something off of something +178190;Putting something underneath something +87649;Moving something up +211232;Showing something behind something +213482;Pulling something from left to right +182095;Moving something and something closer to each other +129096;Taking something out of something +208187;Pulling something from right to left +185908;Lifting something up completely, then letting it drop down +105260;Tearing something just a little bit +137395;Plugging something into something +82309;Showing something on top of something +145587;Moving something and something closer to each other +104528;Poking something so it slightly moves +143127;Putting something in front of something +128145;Putting something on a flat surface without letting it roll +26840;Taking something out of something +70866;Pretending to pick something up +86711;Showing something next to something +194297;Holding something in front of something +204712;Pulling something from behind of something +123707;Taking something out of something +21543;Piling something up +30412;Pushing something with something +132090;Picking something up +159942;Tearing something into two pieces +109982;Plugging something into something +188531;Showing something behind something +193519;Showing something behind something +9131;Something falling like a rock +127895;Lifting up one end of something without letting it drop down +87396;Moving away from something with your camera +8028;Holding something behind something +191999;Tearing something just a little bit +56368;Piling something up +177576;Showing that something is empty +141739;Pushing something so that it almost falls off but doesn't +143279;Pretending to put something onto something +28314;Dropping something next to something +10521;Lifting something up completely, then letting it drop down +152223;Lifting something with something on it +70701;Stuffing something into something +191203;Putting something similar to other things that are already on the table +66330;Unfolding something +64659;Turning something upside down +22632;Taking something from somewhere +869;Showing something behind something +209599;Putting something that can't roll onto a slanted surface, so it slides down +123963;Putting something into something +220251;Pushing something so that it falls off the table +156511;Pretending to take something from somewhere +32535;Pouring something into something +160975;Putting something on a surface +16964;Showing something to the camera +163640;Pulling something from right to left +163124;Showing that something is empty +2756;Pretending to sprinkle air onto something +675;Picking something up +146068;Turning something upside down +132695;Pouring something into something until it overflows +212660;Showing that something is empty +62968;Squeezing something +117192;Tearing something just a little bit +90191;Pulling something from behind of something +119149;Rolling something on a flat surface +140741;Tearing something just a little bit +207608;Rolling something on a flat surface +133265;Turning the camera right while filming something +65190;Closing something +33643;Throwing something against something +126769;Something falling like a rock +175905;Pushing something so that it falls off the table +11535;Moving something up +87392;Moving something and something closer to each other +188534;Spilling something onto something +163144;Showing something behind something +219707;Throwing something +170082;Showing that something is empty +136311;Showing something on top of something +21449;Showing something next to something +167225;Putting something on a surface +217368;Pretending or trying and failing to twist something +135044;Holding something next to something +91203;Putting something onto a slanted surface but it doesn't glide down +145405;Putting something next to something +90304;Pretending to open something without actually opening it +202418;Poking a stack of something without the stack collapsing +10849;Tearing something into two pieces +149341;Showing something next to something +45991;Lifting something with something on it +146460;Poking something so lightly that it doesn't or almost doesn't move +39101;Tipping something over +7409;Holding something +209153;Taking one of many similar things on the table +137841;Pretending to put something onto something +119011;Taking something out of something +195404;Bending something until it breaks +160742;Holding something over something +156686;Spinning something so it continues spinning +117503;Stacking number of something +49411;Pushing something off of something +180636;Bending something so that it deforms +180014;Putting something into something +103017;Stacking number of something +37739;Touching (without moving) part of something +172005;Stacking number of something +83470;Lifting something with something on it +188469;Lifting up one end of something without letting it drop down +193539;Moving something away from something +41046;Plugging something into something +191154;Stuffing something into something +134018;Letting something roll up a slanted surface, so it rolls back down +93993;Bending something until it breaks +128204;Moving something and something closer to each other +61249;Closing something +128085;Squeezing something +8715;Dropping something behind something +149344;Wiping something off of something +25841;Poking something so it slightly moves +57013;Tipping something over +217068;Taking one of many similar things on the table +146312;Spinning something so it continues spinning +197827;Taking something out of something +107230;Pretending to take something from somewhere +4315;Putting something into something +49575;Uncovering something +53732;Pouring something into something +141522;Pushing something so that it slightly moves +135025;Putting something upright on the table +137532;Picking something up +67080;Showing that something is inside something +148896;Pushing something so that it falls off the table +134629;Bending something so that it deforms +147580;Putting something on a flat surface without letting it roll +217032;Moving something closer to something +35991;Laying something on the table on its side, not upright +70079;Trying to bend something unbendable so nothing happens +186175;Plugging something into something +11970;Something falling like a rock +31960;Dropping something onto something +113400;Uncovering something +169345;Stacking number of something +46442;Pretending to take something from somewhere +142278;Taking one of many similar things on the table +130035;Moving something up +61039;Putting something similar to other things that are already on the table +190935;Poking something so it slightly moves +121055;Pretending to put something next to something +206655;Something being deflected from something +102642;Poking something so lightly that it doesn't or almost doesn't move +211192;Moving something up +112915;Putting something on a surface +51455;Spinning something that quickly stops spinning +123109;Pretending to poke something +128701;Pretending to take something from somewhere +78153;Spinning something so it continues spinning +82062;Moving something and something closer to each other +220221;Unfolding something +202005;Hitting something with something +58889;Throwing something in the air and letting it fall +156435;Holding something behind something +14543;Lifting something up completely without letting it drop down +129851;Pretending to open something without actually opening it +59157;Closing something +53355;Plugging something into something +25837;Tilting something with something on it until it falls off +191961;Tearing something into two pieces +39971;Laying something on the table on its side, not upright +152486;Tearing something just a little bit +133023;Piling something up +50135;Putting number of something onto something +208008;Pretending to pick something up +49091;Showing something behind something +199954;Picking something up +70761;Sprinkling something onto something +118649;Squeezing something +97773;Plugging something into something but pulling it right out as you remove your hand +135037;Taking something out of something +58393;Wiping something off of something +161532;Lifting up one end of something without letting it drop down +65439;Attaching something to something +130801;Moving something and something away from each other +207870;Dropping something onto something +32877;Moving something towards the camera +32017;Showing something behind something +39304;Hitting something with something +17788;Something falling like a rock +4449;Pouring something into something +164332;Pretending to be tearing something that is not tearable +35641;Putting something that cannot actually stand upright upright on the table, so it falls on its side +13246;Tilting something with something on it until it falls off +215795;Showing something behind something +36006;Pushing something so that it slightly moves +159062;Putting something, something and something on the table +1862;Moving something across a surface without it falling down +135958;Wiping something off of something +119586;Turning something upside down +88621;Pushing something so it spins +9615;Showing something behind something +43001;Squeezing something +57052;Holding something next to something +159738;Showing something on top of something +100627;Pretending to close something without actually closing it +215420;Folding something +172016;Holding something +3926;Putting something onto something +208806;Pushing something so that it falls off the table +20068;Showing something on top of something +162802;Putting something, something and something on the table +25650;Dropping something next to something +127484;Squeezing something +4735;Holding something +104741;Throwing something in the air and catching it +105171;Twisting something +70237;Folding something +124366;Moving something down +29021;Bending something until it breaks +88807;Holding something in front of something +61793;Opening something +74963;Pushing something so that it falls off the table +201503;Turning something upside down +208235;Poking something so it slightly moves +144387;Holding something over something +52565;Putting something and something on the table +81860;Tearing something into two pieces +31289;Something falling like a rock +177429;Dropping something behind something +5798;Putting something on a surface +67928;Touching (without moving) part of something +139697;Touching (without moving) part of something +101913;Stacking number of something +185874;Stacking number of something +139462;Tearing something into two pieces +164934;Dropping something in front of something +28575;Scooping something up with something +56163;Pushing something from right to left +209570;Pouring something into something +143354;Putting something similar to other things that are already on the table +138279;Squeezing something +194918;Pushing something so that it slightly moves +104334;Plugging something into something +29544;Throwing something against something +201822;Turning the camera upwards while filming something +24576;Holding something over something +211015;Squeezing something +57715;Showing something on top of something +208528;Wiping something off of something +92943;Pushing something so that it slightly moves +151338;Trying to bend something unbendable so nothing happens +210258;Something falling like a rock +70072;Plugging something into something +52177;Hitting something with something +185388;Putting something upright on the table +124856;Pretending to be tearing something that is not tearable +59561;Stacking number of something +118602;Pulling two ends of something so that it separates into two pieces +133475;Tearing something just a little bit +11033;Moving something down +106992;Spinning something so it continues spinning +64772;Pouring something into something +212934;Something colliding with something and both are being deflected +137092;Pushing something so that it falls off the table +6672;Pulling something from left to right +213832;Pretending to open something without actually opening it +101347;Squeezing something +23161;Lifting something with something on it +111496;Putting something on a surface +170874;Touching (without moving) part of something +123148;Poking something so it slightly moves +177121;Taking something out of something +47356;Moving something and something closer to each other +104904;Moving something and something closer to each other +142089;Squeezing something +40184;Tearing something just a little bit +5222;Spilling something onto something +170448;Pouring something out of something +90574;Burying something in something +185344;Rolling something on a flat surface +191483;Plugging something into something but pulling it right out as you remove your hand +8094;Spinning something so it continues spinning +155279;Showing something behind something +61875;Twisting (wringing) something wet until water comes out +85298;Putting something on a flat surface without letting it roll +38007;Taking something from somewhere +62407;Tipping something with something in it over, so something in it falls out +99425;Pushing something so it spins +149955;Pulling something from left to right +173518;Folding something +65773;Stacking number of something +85945;Putting something on a surface +11530;Throwing something against something +15333;Pulling two ends of something so that it separates into two pieces +110144;Taking something out of something +55630;Moving something closer to something +174175;Bending something until it breaks +183910;Holding something +7468;Putting something onto something +91903;Showing that something is empty +65302;Showing something behind something +111760;Turning something upside down +59326;Tearing something just a little bit +22523;Holding something behind something +178970;Touching (without moving) part of something +100462;Plugging something into something +196551;Picking something up +162846;Pulling something out of something +155318;Opening something +98392;Something colliding with something and both come to a halt +34721;Unfolding something +75722;Rolling something on a flat surface +130509;Putting something upright on the table +156196;Letting something roll along a flat surface +33840;Pretending to pick something up +151713;Pretending to pick something up +64209;Showing that something is empty +23509;Something falling like a rock +181827;Pulling something from behind of something +148068;Pretending to pick something up +80989;Trying to bend something unbendable so nothing happens +20169;Moving something and something away from each other +70295;Pouring something into something +152946;Spinning something that quickly stops spinning +21323;Pouring something into something +141749;Pushing something so that it almost falls off but doesn't +1054;Pushing something so that it slightly moves +77027;Letting something roll along a flat surface +59836;Taking one of many similar things on the table +181562;Moving something closer to something +100123;Moving part of something +48692;Showing that something is empty +218560;Something colliding with something and both are being deflected +73768;Moving something away from something +98953;Pushing something so that it almost falls off but doesn't +25301;Something falling like a feather or paper +12410;Pushing something so that it slightly moves +49361;Turning something upside down +70019;Pulling something out of something +89742;Tearing something just a little bit +82186;Pushing something so that it almost falls off but doesn't +102636;Showing something to the camera +61350;Putting something in front of something +73327;Letting something roll down a slanted surface +157666;Something colliding with something and both are being deflected +56297;Moving part of something +208631;Squeezing something +142905;Pretending to open something without actually opening it +143789;Taking something out of something +149446;Throwing something onto a surface +95510;Pulling something from right to left +136995;Holding something over something +89576;Pretending to open something without actually opening it +165860;Pushing something so that it falls off the table +167997;Piling something up +203446;Turning something upside down +211332;Putting something in front of something +5784;Uncovering something +140334;Holding something next to something +98780;Pouring something onto something +76175;Pretending to poke something +191141;Tearing something into two pieces +191165;Squeezing something +80635;Pretending to squeeze something +20099;Pushing something with something +49966;Putting something underneath something +68778;Tilting something with something on it until it falls off +106938;Pulling something from right to left +195426;Pulling something from right to left +131148;Holding something in front of something +83596;Putting something next to something +65305;Putting something into something +48918;Pushing something so that it slightly moves +66151;Holding something +9110;Squeezing something +31771;Spinning something that quickly stops spinning +39279;Moving something up +96114;Taking something from somewhere +116128;Pulling something out of something +81988;Attaching something to something +173276;Pretending to sprinkle air onto something +207538;Turning something upside down +15891;Unfolding something +143917;Moving something and something closer to each other +53171;Moving something and something away from each other +148895;Letting something roll down a slanted surface +85332;Throwing something onto a surface +187884;Scooping something up with something +118916;Uncovering something +144327;Pretending to poke something +96231;Holding something in front of something +28150;Stacking number of something +112648;Dropping something next to something +215157;Plugging something into something +218098;Pretending to sprinkle air onto something +94179;Pushing something so that it slightly moves +103380;Attaching something to something +60058;Twisting something +14999;Dropping something onto something +9103;Something falling like a rock +101082;Pushing something from left to right +94010;Tilting something with something on it slightly so it doesn't fall down +30606;Turning the camera upwards while filming something +198627;Holding something +170370;Picking something up +124091;Picking something up +79226;Tilting something with something on it slightly so it doesn't fall down +152311;Closing something +74607;Pretending to take something from somewhere +2883;Throwing something in the air and letting it fall +170477;Throwing something +52110;Covering something with something +82644;Plugging something into something but pulling it right out as you remove your hand +136613;Putting something on the edge of something so it is not supported and falls down +149949;Pushing something so that it almost falls off but doesn't +139243;Tearing something into two pieces +164120;Moving something up +71234;Wiping something off of something +168955;Pouring something into something +175343;Putting something that cannot actually stand upright upright on the table, so it falls on its side +156510;Picking something up +182813;Holding something in front of something +118647;Poking a stack of something so the stack collapses +23112;Poking something so that it falls over +191529;Showing that something is empty +12550;Showing something next to something +100940;Tearing something just a little bit +20274;Opening something +169690;Tipping something over +204372;Putting something on a surface +37747;Plugging something into something +140676;Pretending to pick something up +52928;Plugging something into something +24101;Closing something +71957;Stuffing something into something +116087;Spinning something that quickly stops spinning +30732;Hitting something with something +216012;Spinning something that quickly stops spinning +76205;Putting something next to something +219909;Putting something on a surface +160310;Dropping something next to something +42364;Holding something +156334;Spinning something that quickly stops spinning +166052;Tearing something into two pieces +192502;Taking something out of something +195018;Something falling like a feather or paper +16641;Moving something and something closer to each other +48488;Stuffing something into something +107765;Holding something over something +215175;Hitting something with something +123404;Holding something behind something +108889;Moving something and something closer to each other +203484;Pouring something into something +172167;Piling something up +211467;Plugging something into something +129936;Opening something +127395;Taking one of many similar things on the table +137992;Throwing something in the air and catching it +147414;Turning something upside down +88923;Moving something and something away from each other +150877;Moving something and something closer to each other +127189;Poking something so lightly that it doesn't or almost doesn't move +3325;Pretending to pick something up +97337;Lifting up one end of something, then letting it drop down +124501;Pretending to squeeze something +62237;Taking one of many similar things on the table +33992;Putting something that cannot actually stand upright upright on the table, so it falls on its side +121278;Picking something up +88184;Pretending to throw something +210064;Putting something on a surface +153643;Putting something underneath something +156606;Showing that something is empty +58901;Plugging something into something +179842;Plugging something into something +49804;Holding something next to something +135892;Unfolding something +32374;Moving something and something closer to each other +95235;Turning something upside down +26747;Lifting up one end of something, then letting it drop down +105346;Taking one of many similar things on the table +219313;Lifting something with something on it +215463;Putting something on a surface +205834;Tearing something into two pieces +41586;Pretending to turn something upside down +5872;Tearing something into two pieces +98550;Pouring something onto something +150531;Turning the camera upwards while filming something +194707;Opening something +213837;Pretending to scoop something up with something +58798;Throwing something +204252;Moving something up +116320;Putting something that can't roll onto a slanted surface, so it stays where it is +192641;Holding something in front of something +70472;Trying to bend something unbendable so nothing happens +218411;Tearing something just a little bit +22247;Pouring something into something +49058;Pushing something from right to left +187945;Pouring something out of something +56058;Poking something so it slightly moves +100334;Tearing something just a little bit +220449;Trying but failing to attach something to something because it doesn't stick +87982;Plugging something into something +51261;Poking something so lightly that it doesn't or almost doesn't move +20000;Tipping something over +75472;Moving something across a surface until it falls down +160829;Opening something +41803;Moving something and something so they collide with each other +219772;Pushing something off of something +140386;Moving part of something +50539;Pushing something so that it almost falls off but doesn't +216280;Holding something in front of something +220025;Attaching something to something +179628;Throwing something in the air and catching it +178524;Covering something with something +134395;Putting something in front of something +167955;Unfolding something +170335;Pretending to poke something +18803;Putting something onto something else that cannot support it so it falls down +123608;Putting something on a surface +19768;Trying to bend something unbendable so nothing happens +163745;Showing that something is inside something +110227;Stacking number of something +157194;Taking something out of something +21567;Putting something next to something +36811;Showing something to the camera +4561;Stuffing something into something +218748;Showing something next to something +124245;Throwing something against something +125955;Taking one of many similar things on the table +189549;Picking something up +201114;Moving something down +43507;Throwing something onto a surface +155536;Letting something roll up a slanted surface, so it rolls back down +84630;Turning something upside down +9074;Poking something so lightly that it doesn't or almost doesn't move +138763;Pouring something into something until it overflows +63075;Pretending to pour something out of something, but something is empty +146154;Plugging something into something +99701;Covering something with something +203037;Showing that something is inside something +191798;Poking something so that it spins around +37852;Taking something out of something +48939;Pulling something out of something +207861;Showing that something is empty +110678;Twisting (wringing) something wet until water comes out +51733;Pulling two ends of something so that it separates into two pieces +94603;Tearing something into two pieces +52662;Moving something and something away from each other +154459;Poking a hole into something soft +207365;Squeezing something +130485;Dropping something behind something +120236;Covering something with something +106649;Throwing something +184122;Pushing something so that it slightly moves +137097;Moving something down +152067;Pouring something into something +43753;Putting something into something +156296;Pushing something so it spins +154732;Trying to bend something unbendable so nothing happens +34715;Pretending to open something without actually opening it +176104;Piling something up +114498;Moving something down +81422;Pretending to open something without actually opening it +35297;Lifting up one end of something without letting it drop down +62595;Letting something roll along a flat surface +26219;Opening something +60390;Turning something upside down +76239;Putting something that cannot actually stand upright upright on the table, so it falls on its side +107797;Moving part of something +216805;Stacking number of something +81951;Tearing something just a little bit +8423;Turning something upside down +55580;Pushing something from left to right +58532;Tilting something with something on it until it falls off +85542;Putting something that cannot actually stand upright upright on the table, so it falls on its side +216763;Burying something in something +59150;Bending something so that it deforms +146032;Pushing something from left to right +197065;Squeezing something +115884;Showing that something is empty +62368;Rolling something on a flat surface +140759;Trying to pour something into something, but missing so it spills next to it +217063;Showing something on top of something +123408;Pulling something from left to right +58266;Rolling something on a flat surface +14009;Moving something towards the camera +50350;Pretending to scoop something up with something +22770;Hitting something with something +110760;Tearing something into two pieces +156787;Hitting something with something +185552;Poking something so it slightly moves +88590;Bending something until it breaks +29921;Pushing something from left to right +101665;Pouring something into something +65098;Showing something next to something +16708;Putting something that cannot actually stand upright upright on the table, so it falls on its side +92690;Lifting something with something on it +78270;Rolling something on a flat surface +166262;Bending something so that it deforms +31102;Turning something upside down +47632;Plugging something into something +185073;Spreading something onto something +170596;Pretending or trying and failing to twist something +140457;Hitting something with something +175200;Moving something and something closer to each other +67107;Pretending to open something without actually opening it +182505;Pushing something so that it falls off the table +158955;Piling something up +204364;Rolling something on a flat surface +65691;Pretending or failing to wipe something off of something +24823;Twisting (wringing) something wet until water comes out +208482;Tipping something over +30340;Something colliding with something and both are being deflected +140957;Tearing something into two pieces +180213;Tearing something into two pieces +151724;Putting something and something on the table +181451;Putting something that cannot actually stand upright upright on the table, so it falls on its side +21911;Putting number of something onto something +130160;Holding something +5593;Pushing something so that it slightly moves +24170;Tearing something into two pieces +2111;Turning the camera left while filming something +134943;Moving something away from something +191158;Tearing something into two pieces +17033;Rolling something on a flat surface +117334;Dropping something next to something +75189;Bending something so that it deforms +159267;Spinning something so it continues spinning +45140;Holding something over something +15712;Dropping something in front of something +94906;Tearing something just a little bit +55467;Plugging something into something +100934;Pouring something into something +191794;Pouring something into something +112481;Poking something so lightly that it doesn't or almost doesn't move +38299;Pushing something so that it falls off the table +87338;Pretending to put something next to something +15841;Putting something on the edge of something so it is not supported and falls down +108871;Pretending to be tearing something that is not tearable +146186;Closing something +42930;Pushing something so that it falls off the table +47147;Putting something that cannot actually stand upright upright on the table, so it falls on its side +54365;Removing something, revealing something behind +181395;Throwing something +123726;Opening something +189700;Pretending to squeeze something +192242;Pretending to open something without actually opening it +39862;Pretending to open something without actually opening it +18259;Stuffing something into something +195541;Poking something so it slightly moves +142784;Tearing something into two pieces +140849;Stuffing something into something +20671;Letting something roll along a flat surface +96246;Plugging something into something +187811;Moving something down +179451;Pretending to put something next to something +134725;Moving something up +97171;Spinning something so it continues spinning +6234;Showing that something is inside something +195031;Spinning something so it continues spinning +137055;Something falling like a feather or paper +184283;Moving something and something away from each other +192118;Tearing something just a little bit +133490;Lifting a surface with something on it until it starts sliding down +125108;Pushing something so that it falls off the table +107516;Covering something with something +149979;Tearing something into two pieces +207218;Holding something +180345;Pushing something so that it falls off the table +120514;Tearing something into two pieces +39072;Moving something away from something +4000;Putting something in front of something +52517;Showing a photo of something to the camera +26092;Poking a stack of something without the stack collapsing +62369;Pretending to be tearing something that is not tearable +58199;Pretending to turn something upside down +155274;Moving something and something closer to each other +213630;Lifting something up completely without letting it drop down +38650;Poking something so lightly that it doesn't or almost doesn't move +173267;Something falling like a feather or paper +209489;Pulling something from right to left +139390;Taking something from somewhere +118813;Pushing something so that it slightly moves +96648;Moving something and something closer to each other +158451;Moving away from something with your camera +132316;Putting something underneath something +48367;Dropping something onto something +60146;Turning something upside down +72248;Putting something underneath something +171001;Lifting something up completely without letting it drop down +210363;Turning something upside down +11208;Pulling something from right to left +75400;Putting something on a surface +122976;Putting something similar to other things that are already on the table +170786;Twisting something +1999;Moving something closer to something +184948;Attaching something to something +215438;Pushing something so that it falls off the table +144593;Pushing something from left to right +189039;Pulling two ends of something so that it separates into two pieces +161814;Plugging something into something +1045;Showing that something is inside something +73673;Spinning something so it continues spinning +140617;Spinning something that quickly stops spinning +152954;Showing that something is inside something +67078;Taking one of many similar things on the table +171916;Moving something up +10669;Plugging something into something +217768;Putting number of something onto something +183386;Moving something and something closer to each other +64339;Tilting something with something on it slightly so it doesn't fall down +117145;Pretending to open something without actually opening it +113111;Putting something that cannot actually stand upright upright on the table, so it falls on its side +96008;Dropping something in front of something +127206;Tearing something just a little bit +49717;Pushing something from left to right +106772;Squeezing something +80325;Pushing something from right to left +41055;Putting something underneath something +138236;Holding something next to something +113255;Taking something out of something +28273;Taking something out of something +78101;Showing something behind something +175397;Pretending to be tearing something that is not tearable +181743;Stacking number of something +200599;Tearing something into two pieces +16153;Letting something roll down a slanted surface +14392;Putting something into something +32065;Squeezing something +174414;Putting something on a surface +160603;Tearing something into two pieces +57345;Something falling like a feather or paper +209638;Pretending to put something into something +175394;Moving something towards the camera +76964;Pushing something so that it falls off the table +138011;Putting something on a surface +211753;Holding something behind something +36447;Stacking number of something +72737;Putting something upright on the table +46812;Showing something next to something +150679;Turning something upside down +139750;Poking something so lightly that it doesn't or almost doesn't move +60983;Tearing something just a little bit +34696;Turning something upside down +88921;Tearing something into two pieces +120591;Poking something so lightly that it doesn't or almost doesn't move +69514;Showing that something is empty +113293;Showing a photo of something to the camera +136702;Poking something so that it falls over +136119;Pretending to pick something up +73146;Moving something away from the camera +81347;Rolling something on a flat surface +203885;Putting something on the edge of something so it is not supported and falls down +5277;Pretending to squeeze something +90138;Dropping something onto something +218526;Pretending or trying and failing to twist something +60503;Putting something underneath something +155112;Something falling like a rock +81405;Turning the camera left while filming something +85550;Moving something up +45432;Twisting something +195253;Letting something roll down a slanted surface +101751;Pulling something from behind of something +194393;Moving something and something closer to each other +35840;Sprinkling something onto something +133406;Showing something behind something +182310;Picking something up +193467;Covering something with something +32771;Throwing something against something +142067;Moving something closer to something +88224;Turning something upside down +91383;Twisting something +217277;Moving something and something closer to each other +128383;Pulling something onto something +94970;Touching (without moving) part of something +28249;Poking something so it slightly moves +88248;Turning something upside down +4912;Showing that something is inside something +171924;Dropping something next to something +129002;Putting something similar to other things that are already on the table +12332;Moving something and something closer to each other +185091;Removing something, revealing something behind +14567;Letting something roll along a flat surface +160063;Wiping something off of something +152125;Squeezing something +193757;Pretending to close something without actually closing it +38297;Tilting something with something on it until it falls off +176350;Pretending to open something without actually opening it +43396;Putting something and something on the table +58534;Uncovering something +14520;Putting something on a surface +154097;Showing something behind something +44779;Covering something with something +112852;Plugging something into something +27202;Rolling something on a flat surface +44488;Something falling like a feather or paper +152628;Poking something so it slightly moves +6027;Throwing something +81090;Plugging something into something but pulling it right out as you remove your hand +57987;Pouring something into something +82925;Taking something out of something +98496;Opening something +37840;Pouring something out of something +27347;Tearing something into two pieces +217912;Trying but failing to attach something to something because it doesn't stick +164043;Holding something next to something +172013;Digging something out of something +7948;Showing something to the camera +65554;Holding something in front of something +112214;Poking something so lightly that it doesn't or almost doesn't move +208538;Taking one of many similar things on the table +64128;Tipping something over +18043;Pushing something so that it slightly moves +202532;Plugging something into something +181753;Putting something on a surface +97828;Pushing something so that it slightly moves +171423;Rolling something on a flat surface +109147;Moving something and something away from each other +56975;Pulling something out of something +202534;Folding something +157614;Throwing something against something +81444;Dropping something onto something +8049;Tearing something into two pieces +70621;Throwing something in the air and letting it fall +92794;Lifting up one end of something, then letting it drop down +147757;Squeezing something +110629;Pulling something onto something +26238;Trying to pour something into something, but missing so it spills next to it +172808;Pushing something so that it almost falls off but doesn't +92570;Scooping something up with something +74781;Pulling something from left to right +36651;Lifting up one end of something without letting it drop down +3870;Lifting something up completely without letting it drop down +99265;Letting something roll along a flat surface +49352;Tearing something just a little bit +213565;Pulling something out of something +43033;Tilting something with something on it until it falls off +90313;Rolling something on a flat surface +46932;Squeezing something +15667;Touching (without moving) part of something +163351;Moving something across a surface until it falls down +124035;Tipping something over +178175;Turning something upside down +150227;Showing that something is empty +95502;Tipping something over +182618;Attaching something to something +26170;Pushing something so that it almost falls off but doesn't +160673;Spinning something so it continues spinning +217171;Pretending to scoop something up with something +39580;Throwing something against something +177556;Lifting something with something on it +189535;Dropping something onto something +121787;Touching (without moving) part of something +110415;Closing something +136238;Moving part of something +206976;Turning something upside down +206833;Letting something roll along a flat surface +48374;Moving something down +146489;Plugging something into something +22153;Opening something +21783;Dropping something onto something +124591;Holding something behind something +48679;Taking one of many similar things on the table +149047;Attaching something to something +165545;Pretending to be tearing something that is not tearable +176933;Holding something next to something +157884;Approaching something with your camera +139894;Taking something out of something +36655;Pushing something from right to left +102011;Turning the camera left while filming something +140251;Opening something +158657;Moving something closer to something +50794;Pushing something so it spins +109024;Moving something and something closer to each other +183546;Spinning something that quickly stops spinning +60568;Pushing something so that it almost falls off but doesn't +91946;Pretending to take something out of something +106125;Putting something upright on the table +32466;Pushing something onto something +162500;Pretending to put something on a surface +173785;Something being deflected from something +27701;Something colliding with something and both are being deflected +132562;Lifting up one end of something without letting it drop down +93369;Dropping something onto something +134518;Pushing something so that it falls off the table +30679;Stacking number of something +215649;Trying but failing to attach something to something because it doesn't stick +160654;Closing something +32237;Lifting up one end of something without letting it drop down +153833;Picking something up +149700;Something falling like a feather or paper +2133;Something falling like a rock +146127;Pushing something so that it slightly moves +103686;Poking a hole into something soft +81831;Pouring something into something +106158;Turning something upside down +168418;Putting something on a surface +40762;Putting something into something +78630;Pushing something with something +10425;Pushing something so that it almost falls off but doesn't +118943;Pouring something onto something +74695;Putting something similar to other things that are already on the table +170146;Tearing something just a little bit +113256;Taking something out of something +25110;Pretending to poke something +38944;Moving something and something closer to each other +105028;Putting something underneath something +200030;Poking something so lightly that it doesn't or almost doesn't move +36727;Putting something and something on the table +153401;Plugging something into something but pulling it right out as you remove your hand +57114;Turning the camera left while filming something +78715;Pulling something from right to left +202376;Tearing something into two pieces +175249;Throwing something +203605;Letting something roll down a slanted surface +79394;Closing something +186974;Pushing something so that it almost falls off but doesn't +129430;Lifting up one end of something, then letting it drop down +211147;Picking something up +30255;Turning something upside down +124710;Putting something on a surface +99943;Lifting something with something on it +153289;Rolling something on a flat surface +58518;Unfolding something +217683;Taking one of many similar things on the table +74831;Showing a photo of something to the camera +52374;Putting something on a surface +90098;Plugging something into something +125667;Poking something so that it falls over +3189;Covering something with something +42023;Moving something away from something +60760;Scooping something up with something +178796;Moving something and something closer to each other +172178;Moving something up +171897;Spinning something so it continues spinning +212611;Pretending to poke something +117091;Plugging something into something +66177;Hitting something with something +39913;Spinning something that quickly stops spinning +114369;Pulling something from right to left +104895;Dropping something onto something +46955;Rolling something on a flat surface +83393;Pouring something onto something +94768;Putting something onto something +56124;Holding something next to something +31675;Taking something out of something +216499;Pretending to open something without actually opening it +138511;Turning something upside down +76674;Pouring something into something +97464;Pushing something off of something +219061;Dropping something into something +6615;Closing something +87371;Putting something in front of something +27558;Spinning something that quickly stops spinning +139071;Pouring something into something +10096;Stuffing something into something +139199;Pushing something from right to left +171130;Putting something that cannot actually stand upright upright on the table, so it falls on its side +69651;Opening something +36175;Trying to pour something into something, but missing so it spills next to it +70769;Showing that something is inside something +37905;Taking one of many similar things on the table +220643;Spreading something onto something +166268;Pulling something from left to right +98915;Tearing something into two pieces +203838;Showing something next to something +182645;Letting something roll along a flat surface +127455;Lifting something with something on it +44062;Uncovering something +91114;Attaching something to something +12393;Dropping something into something +215118;Pushing something so that it slightly moves +134088;Taking something from somewhere +203662;Pulling something from behind of something +130495;Moving something closer to something +177293;Showing that something is inside something +62171;Pushing something so that it almost falls off but doesn't +39581;Trying but failing to attach something to something because it doesn't stick +186202;Plugging something into something +128794;Stuffing something into something +107220;Moving something closer to something +25059;Stuffing something into something +44944;Closing something +153560;Pretending to put something on a surface +204621;Holding something in front of something +32411;Covering something with something +151995;Putting something onto something else that cannot support it so it falls down +126018;Tearing something just a little bit +126391;Opening something +6051;Twisting (wringing) something wet until water comes out +66522;Plugging something into something +46436;Throwing something in the air and catching it +114511;Moving something towards the camera +54539;Putting something similar to other things that are already on the table +13510;Dropping something behind something +115224;Pushing something so that it falls off the table +123742;Lifting something up completely, then letting it drop down +42099;Pulling something from right to left +171247;Opening something +56377;Holding something +202578;Opening something +74093;Pretending to pour something out of something, but something is empty +140290;Poking something so it slightly moves +66096;Bending something so that it deforms +1339;Lifting up one end of something, then letting it drop down +141229;Holding something over something +108788;Dropping something onto something +81857;Letting something roll down a slanted surface +73614;Dropping something into something +38189;Twisting something +71497;Tearing something just a little bit +82258;Pretending to put something into something +43966;Tilting something with something on it until it falls off +200334;Failing to put something into something because something does not fit +28051;Putting something, something and something on the table +13907;Something falling like a feather or paper +68584;Moving something and something closer to each other +88001;Plugging something into something +192715;Lifting up one end of something without letting it drop down +104331;Covering something with something +74383;Bending something until it breaks +49254;Tilting something with something on it until it falls off +142243;Pretending to pick something up +217311;Bending something until it breaks +28515;Lifting something up completely without letting it drop down +201158;Moving something and something closer to each other +157453;Spinning something so it continues spinning +220569;Throwing something in the air and catching it +184752;Putting something into something +121275;Putting something into something +188329;Showing that something is inside something +113759;Squeezing something +85736;Tipping something over +94145;Taking something from somewhere +177349;Lifting something with something on it +28257;Plugging something into something +206869;Pushing something so that it falls off the table +155706;Tearing something just a little bit +173826;Showing something to the camera +18045;Putting something into something +156941;Showing something next to something +78508;Stuffing something into something +135516;Tearing something into two pieces +121134;Trying to bend something unbendable so nothing happens +82765;Holding something over something +145632;Pulling something out of something +199576;Pretending to be tearing something that is not tearable +53866;Lifting a surface with something on it until it starts sliding down +49370;Something falling like a feather or paper +220553;Showing something behind something +82569;Pouring something into something +198899;Stuffing something into something +168222;Pushing something so that it almost falls off but doesn't +84192;Throwing something onto a surface +40227;Touching (without moving) part of something +115811;Holding something over something +17276;Throwing something against something +18173;Turning the camera right while filming something +30112;Pushing something so it spins +84411;Turning something upside down +33275;Stacking number of something +141823;Pushing something so that it falls off the table +166014;Spilling something onto something +180677;Rolling something on a flat surface +200348;Pulling something from left to right +49776;Poking something so it slightly moves +198467;Moving something and something closer to each other +128729;Uncovering something +117632;Pretending to pick something up +179585;Pretending to open something without actually opening it +215229;Tipping something with something in it over, so something in it falls out +45317;Something falling like a feather or paper +136387;Pushing something so that it falls off the table +21810;Bending something so that it deforms +90114;Putting something that cannot actually stand upright upright on the table, so it falls on its side +153406;Covering something with something +31930;Attaching something to something +61217;Tilting something with something on it until it falls off +162355;Pouring something out of something +75875;Pretending to put something on a surface +169798;Dropping something into something +96470;Hitting something with something +199889;Tearing something just a little bit +44704;Pushing something from left to right +169502;Sprinkling something onto something +168284;Showing that something is inside something +119424;Putting something upright on the table +26058;Dropping something next to something +114587;Covering something with something +148356;Something colliding with something and both come to a halt +189825;Moving part of something +179752;Showing something to the camera +64991;Pretending to put something next to something +147054;Piling something up +171856;Holding something behind something +27443;Hitting something with something +99460;Moving something and something closer to each other +5187;Pushing something so that it slightly moves +155527;Plugging something into something +207978;Moving something away from something +147204;Moving something across a surface without it falling down +36835;Poking something so lightly that it doesn't or almost doesn't move +146424;Throwing something +81081;Taking something from somewhere +73053;Showing that something is inside something +110400;Putting something on a surface +26015;Opening something +102810;Showing something behind something +156225;Plugging something into something +2849;Pushing something so that it falls off the table +194469;Pushing something so that it falls off the table +25291;Showing something behind something +86722;Pulling two ends of something so that it gets stretched +96600;Pretending to turn something upside down +219667;Plugging something into something +50287;Opening something +181219;Spilling something onto something +67135;Moving something and something away from each other +191749;Spinning something so it continues spinning +166822;Moving something away from something +220836;Attaching something to something +99254;Picking something up +185750;Covering something with something +119567;Pretending to open something without actually opening it +135876;Lifting something up completely without letting it drop down +45359;Putting something behind something +47287;Covering something with something +168026;Pretending to pick something up +99397;Poking something so lightly that it doesn't or almost doesn't move +108493;Putting something that cannot actually stand upright upright on the table, so it falls on its side +72586;Plugging something into something +36286;Spinning something so it continues spinning +161803;Turning something upside down +40060;Moving something down +192955;Pretending to put something onto something +49838;Tearing something into two pieces +130723;Stacking number of something +14518;Tearing something into two pieces +179333;Dropping something into something +129420;Turning something upside down +157667;Pretending to open something without actually opening it +158447;Dropping something behind something +189163;Taking something out of something +80044;Putting something on a surface +91593;Pouring something into something +143622;Pretending to close something without actually closing it +91127;Showing something next to something +66511;Putting something upright on the table +50809;Dropping something into something +216934;Pretending to be tearing something that is not tearable +165654;Folding something +192142;Spinning something so it continues spinning +125170;Tearing something into two pieces +44701;Spinning something that quickly stops spinning +32652;Holding something next to something +147939;Pushing something so that it falls off the table +57954;Uncovering something +17640;Plugging something into something +156144;Pretending to close something without actually closing it +155631;Squeezing something +164605;Putting something upright on the table +19297;Covering something with something +66980;Putting something next to something +30425;Hitting something with something +217645;Pulling two ends of something so that it gets stretched +213596;Covering something with something +38706;Putting something into something +63134;Pretending to put something next to something +129260;Something being deflected from something +145483;Opening something +149252;Something falling like a rock +171561;Picking something up +44358;Holding something behind something +153347;Plugging something into something +122359;Pushing something so that it falls off the table +123881;Pretending or failing to wipe something off of something +49805;Wiping something off of something +180562;Tearing something into two pieces +207567;Something falling like a rock +174548;Trying but failing to attach something to something because it doesn't stick +80043;Laying something on the table on its side, not upright +141255;Pushing something so that it slightly moves +167484;Spilling something onto something +109844;Showing something on top of something +46629;Pushing something from right to left +21842;Putting something behind something +113507;Showing that something is empty +116228;Spilling something onto something +56488;Taking one of many similar things on the table +7735;Moving something closer to something +217337;Something falling like a rock +164689;Moving something away from something +124589;Picking something up +135408;Picking something up +24134;Moving something towards the camera +163873;Turning something upside down +136398;Pushing something with something +65093;Pretending to put something onto something +118437;Dropping something onto something +2424;Pretending to be tearing something that is not tearable +193124;Tipping something over +197050;Dropping something in front of something +123794;Plugging something into something +92179;Putting something on a surface +66352;Putting something underneath something +161205;Letting something roll down a slanted surface +34278;Moving something and something so they collide with each other +57083;Twisting (wringing) something wet until water comes out +64887;Trying but failing to attach something to something because it doesn't stick +75572;Plugging something into something +135273;Letting something roll down a slanted surface +128650;Tearing something into two pieces +132687;Closing something +38601;Putting something similar to other things that are already on the table +153118;Sprinkling something onto something +108128;Plugging something into something +7984;Pretending to close something without actually closing it +118221;Pushing something from left to right +102856;Taking one of many similar things on the table +34482;Moving something and something away from each other +21980;Moving something up +18352;Showing something on top of something +159227;Taking something out of something +79604;Taking one of many similar things on the table +127078;Lifting something with something on it +93886;Pushing something so it spins +117890;Lifting something with something on it +148202;Moving something away from something +188348;Something falling like a feather or paper +137031;Pushing something so that it slightly moves +155977;Tearing something into two pieces +201637;Putting number of something onto something +51885;Bending something until it breaks +169762;Putting something next to something +133890;Pushing something onto something +129761;Pretending to pour something out of something, but something is empty +172078;Tearing something just a little bit +12429;Moving something across a surface until it falls down +129772;Taking something out of something +2672;Covering something with something +135858;Bending something so that it deforms +62847;Putting something into something +116994;Unfolding something +183383;Putting something into something +58383;Holding something next to something +43443;Tilting something with something on it until it falls off +157287;Trying but failing to attach something to something because it doesn't stick +109809;Pushing something so that it falls off the table +158620;Plugging something into something +55821;Showing something behind something +145539;Unfolding something +68463;Putting something upright on the table +13866;Opening something +163850;Turning the camera downwards while filming something +29803;Pretending to put something on a surface +35620;Pulling two ends of something so that it gets stretched +36475;Spinning something so it continues spinning +172376;Picking something up +23194;Stuffing something into something +120200;Moving something across a surface until it falls down +48668;Holding something behind something +63079;Putting something in front of something +51369;Showing something behind something +2647;Dropping something into something +67173;Poking something so it slightly moves +32617;Wiping something off of something +169307;Pushing something off of something +4402;Lifting something with something on it +187380;Spinning something that quickly stops spinning +110779;Plugging something into something +171624;Plugging something into something +95066;Dropping something into something +71056;Pouring something into something +138962;Lifting up one end of something without letting it drop down +192404;Pouring something into something +151921;Holding something behind something +37102;Moving something and something closer to each other +36590;Dropping something next to something +209419;Squeezing something +97504;Putting something and something on the table +11503;Pretending to put something on a surface +89125;Putting something next to something +92317;Spreading something onto something +210936;Holding something +205614;Dropping something onto something +161457;Twisting (wringing) something wet until water comes out +205800;Dropping something onto something +77761;Something falling like a feather or paper +34226;Moving something away from something +190019;Moving something across a surface without it falling down +76539;Taking something out of something +160360;Poking something so lightly that it doesn't or almost doesn't move +190588;Moving something closer to something +21498;Closing something +189431;Opening something +216049;Pretending to put something next to something +29665;Pushing something so it spins +140235;Bending something so that it deforms +47053;Closing something +140329;Tilting something with something on it until it falls off +114059;Moving something and something closer to each other +142788;Tilting something with something on it until it falls off +9262;Putting something that can't roll onto a slanted surface, so it slides down +98359;Putting something on a surface +84970;Showing that something is empty +159615;Lifting up one end of something without letting it drop down +163987;Putting something on a surface +131588;Moving something up +156642;Showing something behind something +48696;Dropping something behind something +70750;Throwing something against something +9264;Pretending to put something next to something +196445;Pretending to put something next to something +122387;Moving something away from the camera +145002;Putting something on a surface +166731;Moving something across a surface until it falls down +150792;Piling something up +69788;Dropping something into something +18470;Lifting up one end of something without letting it drop down +64867;Holding something behind something +108711;Spilling something onto something +59597;Turning the camera right while filming something +56096;Unfolding something +174059;Moving something away from something +148920;Tipping something over +48067;Moving part of something +4825;Pushing something with something +76586;Moving something up +135159;Showing something behind something +100576;Piling something up +11656;Putting something next to something +19778;Something falling like a feather or paper +58571;Dropping something onto something +111126;Putting something into something +161369;Tearing something just a little bit +123607;Poking something so lightly that it doesn't or almost doesn't move +124274;Pushing something off of something +151879;Putting something on a surface +216569;Tipping something over +4626;Moving something closer to something +195653;Putting something on a flat surface without letting it roll +144952;Pretending to open something without actually opening it +217864;Holding something over something +120330;Pushing something from right to left +157833;Showing something to the camera +96554;Pretending to put something next to something +220066;Picking something up +138349;Holding something +90607;Putting something that can't roll onto a slanted surface, so it slides down +59808;Showing something on top of something +146964;Dropping something behind something +34337;Stuffing something into something +95644;Lifting something with something on it +65513;Holding something over something +28042;Pretending to put something on a surface +47891;Tilting something with something on it until it falls off +9918;Pouring something into something +216228;Moving something closer to something +140372;Pretending to poke something +44660;Pretending to poke something +2880;Pretending to take something out of something +81283;Putting something on a surface +77393;Putting something underneath something +2362;Taking something from somewhere +105086;Holding something behind something +153391;Showing something behind something +162837;Uncovering something +175191;Something colliding with something and both are being deflected +93711;Showing something behind something +72090;Moving something up +141985;Taking something out of something +111498;Putting something into something +128590;Putting something in front of something +163528;Sprinkling something onto something +174944;Turning something upside down +39173;Bending something until it breaks +81427;Turning the camera left while filming something +27428;Squeezing something +96630;Pouring something out of something +56632;Pretending to take something out of something +82043;Stuffing something into something +131598;Tipping something over +120020;Poking something so lightly that it doesn't or almost doesn't move +37760;Folding something +17175;Moving something away from something +93952;Pouring something into something until it overflows +18965;Plugging something into something but pulling it right out as you remove your hand +52125;Showing something on top of something +52151;Putting something and something on the table +61556;Picking something up +24011;Taking one of many similar things on the table +129708;Opening something +204472;Sprinkling something onto something +142582;Tearing something just a little bit +33869;Spinning something so it continues spinning +210499;Pulling two ends of something but nothing happens +58328;Moving something and something closer to each other +42034;Tilting something with something on it slightly so it doesn't fall down +139526;Moving something away from something +164782;Moving something down +140660;Spinning something that quickly stops spinning +114150;Trying but failing to attach something to something because it doesn't stick +37993;Moving something closer to something +99278;Plugging something into something +214326;Pulling something from left to right +88478;Turning the camera left while filming something +76947;Pretending to pick something up +66607;Moving something across a surface without it falling down +205047;Piling something up +62094;Something being deflected from something +172887;Taking one of many similar things on the table +21577;Pulling something from left to right +90351;Pretending to put something on a surface +24471;Moving part of something +90521;Piling something up +137734;Pretending to scoop something up with something +16461;Folding something +42704;Lifting up one end of something, then letting it drop down +216638;Something falling like a rock +173142;Showing something behind something +182753;Tearing something just a little bit +364;Moving something and something away from each other +202612;Something falling like a feather or paper +2147;Putting something similar to other things that are already on the table +199180;Moving something and something closer to each other +44666;Pretending to be tearing something that is not tearable +100599;Hitting something with something +111642;Spinning something so it continues spinning +158110;Turning the camera downwards while filming something +88616;Moving something and something closer to each other +140388;Putting something upright on the table +74073;Throwing something onto a surface +123425;Spinning something that quickly stops spinning +12983;Pushing something off of something +158530;Lifting up one end of something, then letting it drop down +126923;Lifting something up completely, then letting it drop down +218783;Holding something in front of something +90557;Putting something similar to other things that are already on the table +99171;Pouring something out of something +49903;Putting something onto something else that cannot support it so it falls down +5195;Plugging something into something +214722;Poking something so lightly that it doesn't or almost doesn't move +151052;Pretending to open something without actually opening it +125819;Taking something from somewhere +187048;Tearing something into two pieces +107127;Pretending to be tearing something that is not tearable +62034;Pretending to pour something out of something, but something is empty +156174;Holding something in front of something +18039;Tearing something into two pieces +113691;Poking something so lightly that it doesn't or almost doesn't move +158385;Putting something into something +164542;Poking something so it slightly moves +147285;Bending something so that it deforms +46056;Pushing something from right to left +197804;Putting something next to something +182530;Something colliding with something and both are being deflected +90263;Showing something behind something +29357;Pushing something so that it slightly moves +4463;Something falling like a feather or paper +158184;Putting something in front of something +45047;Showing that something is empty +45049;Taking one of many similar things on the table +209411;Plugging something into something +155212;Failing to put something into something because something does not fit +198305;Moving something away from something +25061;Wiping something off of something +190561;Pushing something so it spins +110454;Pushing something with something +105453;Moving something away from the camera +152510;Showing something on top of something +74969;Putting something on a surface +176746;Tearing something just a little bit +80920;Scooping something up with something +47155;Throwing something in the air and catching it +88211;Tipping something with something in it over, so something in it falls out +95676;Putting something on a surface +131528;Tearing something into two pieces +208157;Poking something so it slightly moves +139839;Moving something closer to something +78498;Twisting something +7524;Covering something with something +219988;Stacking number of something +215001;Taking something out of something +103920;Pushing something from right to left +165592;Moving something and something so they collide with each other +187636;Moving something and something away from each other +70118;Bending something so that it deforms +189624;Putting number of something onto something +191822;Pushing something from left to right +20225;Pretending to pick something up +176260;Pouring something into something +178954;Taking one of many similar things on the table +156215;Dropping something into something +150225;Showing that something is inside something +131364;Opening something +50887;Moving something across a surface without it falling down +211975;Squeezing something +23060;Covering something with something +35004;Putting something and something on the table +168883;Piling something up +22332;Rolling something on a flat surface +88689;Lifting a surface with something on it until it starts sliding down +115534;Showing something on top of something +122668;Laying something on the table on its side, not upright +109779;Putting something next to something +131802;Taking one of many similar things on the table +55427;Tipping something over +159355;Turning the camera downwards while filming something +48459;Tearing something into two pieces +31765;Lifting something with something on it +127873;Pretending to put something on a surface +78440;Moving something closer to something +175342;Tilting something with something on it until it falls off +185902;Dropping something onto something +172691;Dropping something into something +48439;Pushing something so that it falls off the table +157663;Letting something roll along a flat surface +99976;Stuffing something into something +61543;Showing something next to something +16105;Pushing something so it spins +93978;Something falling like a feather or paper +69246;Poking something so it slightly moves +63129;Holding something over something +125002;Plugging something into something +2698;Showing something next to something +195862;Covering something with something +128010;Pouring something into something +203162;Moving something and something closer to each other +34711;Stacking number of something +91506;Dropping something onto something +212077;Pretending to throw something +131534;Digging something out of something +136320;Holding something over something +160435;Pretending to scoop something up with something +155898;Showing that something is empty +219680;Tearing something just a little bit +37644;Holding something over something +112562;Hitting something with something +33996;Pushing something so that it almost falls off but doesn't +18306;Tearing something into two pieces +98960;Moving something and something away from each other +116419;Twisting something +112384;Putting something into something +112413;Pulling something out of something +72736;Stuffing something into something +187266;Throwing something +202495;Plugging something into something +127126;Something falling like a feather or paper +128334;Wiping something off of something +117476;Hitting something with something +111916;Turning something upside down +171700;Turning something upside down +51268;Something falling like a rock +99487;Taking something from somewhere +60161;Covering something with something +92367;Putting something, something and something on the table +37034;Pulling something from left to right +163982;Burying something in something +130061;Putting something on a surface +80377;Moving something away from the camera +100671;Lifting up one end of something, then letting it drop down +75270;Tearing something into two pieces +171806;Tearing something just a little bit +162660;Folding something +121061;Letting something roll along a flat surface +130558;Covering something with something +115179;Moving something up +53025;Something being deflected from something +198632;Uncovering something +207373;Taking something from somewhere +185594;Spinning something so it continues spinning +33727;Taking one of many similar things on the table +178942;Piling something up +11829;Moving something and something closer to each other +137419;Picking something up +137469;Piling something up +24956;Unfolding something +169008;Pretending to put something into something +193095;Dropping something onto something +4132;Throwing something in the air and catching it +35728;Putting something onto something else that cannot support it so it falls down +26753;Poking something so lightly that it doesn't or almost doesn't move +173236;Hitting something with something +81625;Putting something similar to other things that are already on the table +8150;Throwing something +64536;Putting something into something +155888;Turning something upside down +114175;Tearing something into two pieces +166400;Putting something on a surface +76481;Putting something next to something +22755;Squeezing something +89911;Trying to pour something into something, but missing so it spills next to it +149472;Showing something behind something +139932;Plugging something into something +18329;Putting something on a surface +136000;Moving something and something away from each other +97287;Spinning something so it continues spinning +14295;Lifting up one end of something without letting it drop down +203776;Letting something roll down a slanted surface +892;Throwing something in the air and catching it +156010;Putting something on a surface +10282;Pretending to poke something +191781;Pretending to close something without actually closing it +74908;Plugging something into something +113605;Picking something up +28770;Plugging something into something +58230;Something colliding with something and both are being deflected +27791;Tearing something just a little bit +192023;Squeezing something +191110;Rolling something on a flat surface +108832;Taking something from somewhere +57929;Holding something next to something +163282;Lifting up one end of something without letting it drop down +93254;Tearing something into two pieces +158921;Attaching something to something +36707;Opening something +193939;Pushing something from right to left +4775;Pushing something from right to left +102686;Laying something on the table on its side, not upright +187602;Spinning something that quickly stops spinning +6446;Plugging something into something +14994;Dropping something next to something +143182;Plugging something into something +199878;Something falling like a rock +187573;Bending something so that it deforms +183801;Something colliding with something and both come to a halt +206854;Pushing something so that it falls off the table +135814;Letting something roll along a flat surface +143003;Unfolding something +122179;Pretending to take something out of something +170026;Lifting up one end of something, then letting it drop down +66894;Tilting something with something on it until it falls off +72253;Moving something and something closer to each other +140483;Tearing something into two pieces +88932;Taking something out of something +145129;Moving something and something closer to each other +52196;Tearing something just a little bit +191070;Pushing something with something +99125;Pretending to take something from somewhere +194350;Putting number of something onto something +88109;Pouring something into something until it overflows +102730;Wiping something off of something +11557;Something falling like a rock +34720;Moving something and something closer to each other +11010;Pushing something from left to right +167474;Something colliding with something and both are being deflected +182308;Throwing something +130975;Throwing something onto a surface +87628;Bending something so that it deforms +87290;Moving part of something +134035;Something falling like a rock +164975;Pouring something into something until it overflows +177264;Plugging something into something but pulling it right out as you remove your hand +107045;Pretending to open something without actually opening it +147051;Showing something on top of something +215918;Pretending to take something from somewhere +149380;Putting something upright on the table +61088;Tilting something with something on it until it falls off +22533;Poking a stack of something so the stack collapses +181031;Throwing something in the air and letting it fall +95645;Turning the camera downwards while filming something +74551;Twisting (wringing) something wet until water comes out +86943;Moving something and something away from each other +174312;Showing something behind something +185575;Putting something on a surface +180403;Pushing something from left to right +160750;Plugging something into something +69549;Moving something away from something +57477;Squeezing something +14225;Plugging something into something +27936;Pushing something from left to right +153352;Putting something underneath something +56150;Pretending to open something without actually opening it +124047;Spinning something so it continues spinning +57863;Rolling something on a flat surface +88546;Putting something on a surface +99862;Touching (without moving) part of something +130983;Pretending to close something without actually closing it +66024;Moving something and something closer to each other +169636;Trying to bend something unbendable so nothing happens +34556;Showing something behind something +142687;Taking one of many similar things on the table +91439;Pretending to open something without actually opening it +130806;Pouring something into something +84717;Scooping something up with something +150864;Squeezing something +122044;Throwing something +129128;Putting something next to something +205810;Showing something behind something +43301;Moving something and something away from each other +217323;Putting something next to something +182213;Stacking number of something +8895;Plugging something into something +84258;Pulling two ends of something so that it gets stretched +51242;Taking one of many similar things on the table +59920;Showing something on top of something +9594;Tearing something just a little bit +63826;Holding something behind something +146250;Laying something on the table on its side, not upright +65236;Putting something in front of something +174971;Something falling like a rock +170182;Squeezing something +198960;Hitting something with something +169500;Something colliding with something and both come to a halt +122536;Lifting a surface with something on it but not enough for it to slide down +154719;Picking something up +146172;Pretending to put something on a surface +193552;Attaching something to something +133049;Twisting something +98807;Covering something with something +12411;Hitting something with something +97585;Putting something underneath something +35278;Dropping something onto something +69863;Pretending to open something without actually opening it +87864;Pushing something off of something +115340;Covering something with something +213489;Taking something out of something +136730;Attaching something to something +177130;Holding something next to something +114827;Moving something and something closer to each other +94955;Holding something over something +16319;Something falling like a feather or paper +213805;Pretending or failing to wipe something off of something +60926;Dropping something into something +7191;Tilting something with something on it slightly so it doesn't fall down +164205;Poking something so that it falls over +186967;Pouring something onto something +192247;Putting something, something and something on the table +4390;Moving something up +214868;Pulling something from right to left +189341;Putting something upright on the table +55309;Squeezing something +74024;Pretending to poke something +155462;Tearing something into two pieces +14104;Picking something up +104081;Pulling two ends of something but nothing happens +195403;Pushing something so that it falls off the table +54448;Picking something up +37379;Pretending to squeeze something +69898;Tearing something into two pieces +112328;Tipping something over +180853;Pushing something so that it almost falls off but doesn't +173583;Throwing something +163727;Pretending to be tearing something that is not tearable +204020;Moving something closer to something +161601;Squeezing something +48579;Pushing something off of something +155484;Pretending to throw something +124661;Squeezing something +164091;Picking something up +102860;Throwing something in the air and letting it fall +4896;Digging something out of something +39319;Putting something on a surface +62851;Putting something next to something +134236;Moving something towards the camera +82755;Pushing something from right to left +134995;Folding something +130830;Holding something over something +101854;Covering something with something +45881;Dropping something into something +125252;Lifting something up completely, then letting it drop down +152917;Putting something and something on the table +7768;Turning something upside down +109367;Pretending to squeeze something +46704;Putting something similar to other things that are already on the table +3557;Bending something until it breaks +23056;Closing something +123937;Dropping something behind something +208986;Moving something away from something +51128;Showing that something is empty +193567;Tearing something into two pieces +52834;Trying to bend something unbendable so nothing happens +110810;Moving something away from something +26029;Squeezing something +158045;Something falling like a feather or paper +95823;Closing something +48330;Spilling something next to something +111419;Pushing something so that it falls off the table +213823;Laying something on the table on its side, not upright +41589;Pulling something from left to right +88842;Twisting something +87915;Lifting something with something on it +121514;Throwing something +27282;Lifting a surface with something on it until it starts sliding down +191094;Pretending to put something into something +195079;Pulling something from right to left +195377;Folding something +21232;Something falling like a rock +217870;Moving something away from the camera +211143;Attaching something to something +139680;Dropping something onto something +88952;Letting something roll up a slanted surface, so it rolls back down +140624;Pulling something from left to right +112190;Stacking number of something +140341;Attaching something to something +132295;Covering something with something +23489;Pouring something into something +106683;Spinning something so it continues spinning +40277;Holding something behind something +2025;Folding something +195910;Showing something on top of something +80835;Something falling like a feather or paper +145769;Spreading something onto something +172593;Covering something with something +124656;Showing that something is empty +164532;Pushing something so it spins +57442;Throwing something in the air and letting it fall +158186;Pushing something from right to left +80423;Putting something and something on the table +180011;Something colliding with something and both are being deflected +91261;Pretending to open something without actually opening it +93791;Taking something out of something +170238;Something colliding with something and both are being deflected +170691;Pushing something from right to left +202010;Lifting up one end of something, then letting it drop down +764;Tearing something just a little bit +9507;Covering something with something +4127;Hitting something with something +87297;Moving something across a surface until it falls down +176210;Moving something up +94376;Something falling like a feather or paper +87445;Trying to bend something unbendable so nothing happens +102772;Spilling something onto something +14109;Taking something out of something +181468;Putting something similar to other things that are already on the table +148598;Dropping something next to something +63513;Covering something with something +108692;Stacking number of something +30551;Putting something in front of something +190990;Squeezing something +79891;Showing something on top of something +213933;Rolling something on a flat surface +3054;Showing something behind something +194330;Plugging something into something +179587;Covering something with something +198061;Taking something out of something +174278;Stacking number of something +6595;Putting something next to something +122282;Poking something so it slightly moves +181113;Moving something closer to something +41152;Picking something up +52127;Rolling something on a flat surface +89348;Trying to pour something into something, but missing so it spills next to it +179192;Pretending to open something without actually opening it +99722;Poking something so that it falls over +84174;Squeezing something +86822;Showing something behind something +112613;Moving something across a surface without it falling down +144256;Turning the camera upwards while filming something +174526;Poking a hole into something soft +94016;Holding something in front of something +91487;Closing something +115896;Putting something similar to other things that are already on the table +80164;Turning something upside down +97437;Showing something on top of something +113775;Pushing something so it spins +121875;Something falling like a feather or paper +105738;Taking something out of something +111879;Rolling something on a flat surface +206749;Putting something similar to other things that are already on the table +184176;Showing something behind something +114041;Something falling like a rock +45407;Putting something behind something +214282;Moving something up +115671;Something falling like a rock +187116;Twisting something +67009;Moving something and something so they collide with each other +147299;Showing something next to something +107577;Putting something on a flat surface without letting it roll +33757;Trying to bend something unbendable so nothing happens +49332;Taking one of many similar things on the table +216738;Dropping something onto something +198568;Closing something +175165;Throwing something against something +24351;Turning something upside down +55021;Covering something with something +163309;Lifting something with something on it +156633;Moving something across a surface without it falling down +150602;Tipping something over +122293;Putting something upright on the table +78703;Putting something into something +185960;Putting something onto something else that cannot support it so it falls down +117256;Pushing something so it spins +7346;Dropping something into something +210540;Picking something up +89945;Pushing something from right to left +174654;Squeezing something +77082;Showing something on top of something +44979;Pretending to take something from somewhere +166023;Burying something in something +216923;Showing something next to something +97990;Uncovering something +90499;Moving something closer to something +181469;Putting something into something +175443;Putting something similar to other things that are already on the table +16904;Putting something and something on the table +23235;Poking something so that it falls over +192332;Pulling something out of something +149617;Pulling something out of something +174572;Tilting something with something on it slightly so it doesn't fall down +198636;Putting something next to something +156822;Digging something out of something +15939;Moving something and something away from each other +75363;Taking something out of something +81548;Attaching something to something +27668;Lifting something with something on it +110986;Attaching something to something +94332;Pretending to open something without actually opening it +117870;Turning the camera right while filming something +6847;Spinning something that quickly stops spinning +184172;Tearing something into two pieces +35972;Pouring something into something +156359;Moving something and something closer to each other +205549;Pretending to throw something +168361;Tearing something into two pieces +137895;Pretending to close something without actually closing it +12917;Pushing something so that it almost falls off but doesn't +197170;Putting something and something on the table +209391;Putting something onto something +106043;Pretending to open something without actually opening it +83054;Stuffing something into something +152203;Pushing something so that it falls off the table +47693;Tearing something into two pieces +92170;Opening something +97191;Showing something on top of something +148499;Pushing something so that it almost falls off but doesn't +131523;Putting something similar to other things that are already on the table +39380;Poking something so lightly that it doesn't or almost doesn't move +4559;Pretending to take something from somewhere +149148;Showing something behind something +92342;Taking one of many similar things on the table +152229;Pouring something into something until it overflows +148256;Lifting up one end of something, then letting it drop down +41154;Attaching something to something +194626;Folding something +175000;Poking something so it slightly moves +46163;Tilting something with something on it until it falls off +45910;Lifting something with something on it +73389;Moving something away from something +91789;Bending something so that it deforms +159102;Putting something similar to other things that are already on the table +163985;Tipping something over +127405;Moving something and something closer to each other +100489;Dropping something in front of something +103540;Twisting something +11611;Taking something out of something +40265;Tilting something with something on it slightly so it doesn't fall down +127660;Plugging something into something but pulling it right out as you remove your hand +117002;Lifting something with something on it +77411;Pouring something into something +41910;Pretending to be tearing something that is not tearable +213343;Tearing something into two pieces +63149;Putting something onto something +206396;Putting something upright on the table +110429;Covering something with something +69039;Poking something so that it falls over +85228;Pulling something from right to left +121207;Uncovering something +187226;Spinning something that quickly stops spinning +21582;Turning something upside down +101988;Pouring something into something +209526;Throwing something against something +158400;Spilling something onto something +149922;Stuffing something into something +94163;Pretending to pick something up +57817;Covering something with something +213385;Stuffing something into something +174189;Attaching something to something +196647;Rolling something on a flat surface +18406;Putting something similar to other things that are already on the table +186784;Putting something similar to other things that are already on the table +188299;Tipping something over +116316;Poking a hole into something soft +161807;Touching (without moving) part of something +212108;Turning something upside down +204002;Holding something +93016;Covering something with something +48665;Tearing something into two pieces +152208;Moving something and something closer to each other +171857;Turning something upside down +83091;Spinning something so it continues spinning +34664;Showing something behind something +314;Showing a photo of something to the camera +2713;Piling something up +217393;Plugging something into something +107685;Letting something roll down a slanted surface +139556;Turning the camera upwards while filming something +160974;Lifting something up completely without letting it drop down +31490;Covering something with something +165307;Pushing something so that it almost falls off but doesn't +180525;Holding something next to something +79391;Stacking number of something +119385;Moving something up +78685;Showing something next to something +9441;Rolling something on a flat surface +199175;Pretending to be tearing something that is not tearable +115028;Squeezing something +201199;Moving something away from something +206656;Holding something in front of something +220774;Moving something and something away from each other +174177;Showing something to the camera +140612;Dropping something next to something +144325;Pretending to put something behind something +173165;Putting something onto something +4444;Touching (without moving) part of something +175868;Something falling like a feather or paper +57187;Picking something up +145172;Attaching something to something +112875;Picking something up +143069;Something falling like a feather or paper +61525;Putting something onto a slanted surface but it doesn't glide down +108686;Squeezing something +36942;Lifting something with something on it +190615;Pretending to open something without actually opening it +176698;Letting something roll along a flat surface +150080;Pushing something so that it falls off the table +89846;Pushing something so that it almost falls off but doesn't +143455;Lifting something up completely without letting it drop down +152329;Holding something behind something +128214;Something being deflected from something +39869;Scooping something up with something +55908;Putting something that cannot actually stand upright upright on the table, so it falls on its side +154970;Moving something and something away from each other +72257;Lifting something up completely without letting it drop down +87637;Tearing something into two pieces +197271;Holding something next to something +174069;Lifting something up completely, then letting it drop down +165314;Folding something +99584;Pretending to open something without actually opening it +176072;Twisting something +40371;Pouring something onto something +156391;Showing something behind something +186658;Plugging something into something +147673;Moving something and something closer to each other +78925;Pushing something so that it slightly moves +100342;Pretending to put something underneath something +219632;Holding something +42726;Pretending to throw something +87606;Twisting something +25433;Showing something behind something +132474;Pouring something into something +4568;Throwing something +158649;Pouring something into something +74406;Pulling something out of something +155865;Pouring something into something +193190;Tearing something into two pieces +145117;Moving something across a surface until it falls down +30565;Throwing something in the air and catching it +27250;Turning something upside down +170954;Putting something upright on the table +179672;Putting something, something and something on the table +190371;Turning the camera left while filming something +152913;Uncovering something +2343;Spinning something that quickly stops spinning +67702;Putting number of something onto something +49788;Lifting something up completely without letting it drop down +159640;Throwing something against something +45404;Throwing something in the air and letting it fall +190331;Poking something so lightly that it doesn't or almost doesn't move +26304;Taking one of many similar things on the table +172175;Moving something and something closer to each other +24927;Dropping something onto something +55082;Something falling like a feather or paper +190418;Uncovering something +106637;Putting something on the edge of something so it is not supported and falls down +159976;Putting something underneath something +155800;Covering something with something +130459;Uncovering something +68955;Moving something and something closer to each other +169243;Moving something away from something +4530;Pushing something off of something +7929;Squeezing something +158821;Tearing something just a little bit +133628;Squeezing something +120746;Turning something upside down +137463;Pouring something out of something +7841;Laying something on the table on its side, not upright +207666;Showing something behind something +180441;Putting something into something +115223;Dropping something onto something +108203;Tearing something into two pieces +116092;Something falling like a feather or paper +41006;Pushing something so that it slightly moves +149701;Putting something similar to other things that are already on the table +77097;Tearing something into two pieces +219624;Moving something closer to something +205046;Showing a photo of something to the camera +157486;Pretending to sprinkle air onto something +15507;Plugging something into something +57675;Tearing something just a little bit +100249;Putting something into something +78965;Dropping something into something +211887;Something falling like a rock +61313;Showing something next to something +210059;Lifting up one end of something, then letting it drop down +82370;Plugging something into something +18750;Spilling something onto something +183369;Turning something upside down +207965;Uncovering something +106491;Putting something on a surface +133818;Pouring something into something +26115;Throwing something in the air and letting it fall +196390;Tilting something with something on it until it falls off +10222;Tearing something into two pieces +58234;Tipping something over +169756;Pulling two ends of something but nothing happens +124627;Holding something in front of something +164890;Plugging something into something but pulling it right out as you remove your hand +66697;Picking something up +91623;Pushing something so it spins +149916;Dropping something behind something +110037;Moving something across a surface until it falls down +193844;Showing that something is inside something +178498;Hitting something with something +27352;Squeezing something +97580;Something being deflected from something +167087;Putting something onto something +214817;Moving something and something so they pass each other +178876;Stuffing something into something +159545;Folding something +78366;Putting something behind something +78514;Moving something up +207513;Showing that something is empty +197446;Rolling something on a flat surface +137770;Throwing something against something +217116;Twisting something +215454;Showing something next to something +15856;Showing something behind something +71686;Pushing something so that it almost falls off but doesn't +172873;Moving something and something closer to each other +24540;Folding something +72715;Spinning something that quickly stops spinning +59620;Poking a hole into something soft +179145;Pretending to squeeze something +201652;Hitting something with something +13606;Lifting up one end of something, then letting it drop down +120993;Letting something roll along a flat surface +112751;Squeezing something +90570;Taking one of many similar things on the table +45053;Putting something, something and something on the table +75009;Trying to pour something into something, but missing so it spills next to it +162227;Showing that something is empty +131556;Holding something next to something +15906;Tilting something with something on it until it falls off +200385;Throwing something +97556;Tearing something into two pieces +99997;Tearing something just a little bit +217281;Moving something and something closer to each other +158139;Moving something up +219182;Pretending to poke something +207226;Rolling something on a flat surface +140509;Showing that something is empty +129750;Turning something upside down +187865;Covering something with something +120522;Tearing something into two pieces +211280;Piling something up +124665;Tearing something into two pieces +157176;Squeezing something +106983;Moving away from something with your camera +138667;Putting something on a surface +85811;Dropping something in front of something +64955;Holding something next to something +172656;Plugging something into something +204688;Uncovering something +82473;Moving something down +220056;Attaching something to something +8365;Covering something with something +5245;Throwing something onto a surface +191768;Pretending to close something without actually closing it +10778;Burying something in something +74602;Plugging something into something +17564;Putting something on a surface +176357;Lifting something with something on it +153616;Taking something out of something +16484;Dropping something onto something +39159;Putting something, something and something on the table +5556;Something falling like a rock +55000;Sprinkling something onto something +194288;Lifting up one end of something, then letting it drop down +168649;Lifting something up completely without letting it drop down +101659;Tipping something over +43007;Sprinkling something onto something +56091;Holding something in front of something +49308;Bending something so that it deforms +147497;Something falling like a feather or paper +21990;Moving something and something closer to each other +155507;Hitting something with something +70233;Poking something so lightly that it doesn't or almost doesn't move +200026;Pushing something with something +146490;Rolling something on a flat surface +66179;Letting something roll down a slanted surface +162006;Pretending to pour something out of something, but something is empty +110048;Throwing something in the air and catching it +142865;Moving something closer to something +203321;Moving something away from something +43789;Covering something with something +69632;Putting something onto something +202515;Putting something into something +110852;Tearing something just a little bit +129379;Putting number of something onto something +140277;Putting something next to something +80719;Putting something into something +212023;Something falling like a feather or paper +4415;Lifting a surface with something on it until it starts sliding down +22122;Squeezing something +165228;Plugging something into something +28286;Holding something +181781;Pretending to put something on a surface +114775;Sprinkling something onto something +86918;Unfolding something +32765;Moving something and something closer to each other +115092;Putting something similar to other things that are already on the table +115657;Attaching something to something +208082;Turning something upside down +96461;Lifting a surface with something on it but not enough for it to slide down +212886;Covering something with something +50145;Putting something next to something +156416;Holding something +213690;Showing something on top of something +45664;Something colliding with something and both are being deflected +175232;Pretending to open something without actually opening it +215040;Covering something with something +30955;Showing something next to something +6534;Pulling something out of something +1667;Something colliding with something and both are being deflected +114532;Wiping something off of something +158521;Lifting up one end of something, then letting it drop down +131353;Tearing something into two pieces +165295;Holding something over something +33850;Picking something up +117365;Putting something onto something +185822;Putting something on a surface +164533;Something colliding with something and both come to a halt +218040;Showing something next to something +214362;Squeezing something +23236;Pouring something into something +121905;Tearing something just a little bit +184514;Lifting something up completely without letting it drop down +145387;Showing something on top of something +1672;Pulling two ends of something so that it gets stretched +210805;Moving something and something closer to each other +154901;Stacking number of something +109984;Pushing something so it spins +206712;Moving something closer to something +102565;Sprinkling something onto something +125711;Putting something onto something else that cannot support it so it falls down +210691;Tearing something into two pieces +156614;Scooping something up with something +126005;Putting something into something +104166;Holding something in front of something +200327;Covering something with something +59333;Turning the camera upwards while filming something +87950;Covering something with something +135397;Folding something +117265;Spinning something so it continues spinning +70490;Pulling something from right to left +10465;Covering something with something +103722;Dropping something onto something +51201;Poking something so lightly that it doesn't or almost doesn't move +8377;Moving something across a surface until it falls down +78328;Pouring something into something until it overflows +178469;Covering something with something +200518;Squeezing something +71734;Plugging something into something +104495;Tearing something just a little bit +142890;Lifting up one end of something, then letting it drop down +132439;Pouring something out of something +42371;Holding something next to something +72424;Putting something on a surface +119399;Folding something +71211;Pretending to sprinkle air onto something +117925;Plugging something into something but pulling it right out as you remove your hand +152901;Moving something away from something +204041;Tearing something just a little bit +165286;Lifting something up completely without letting it drop down +157369;Showing something behind something +84297;Pushing something with something +82899;Twisting something +141034;Uncovering something +189392;Moving something and something so they collide with each other +88629;Pouring something into something +11803;Pouring something out of something +175530;Dropping something into something +202201;Trying but failing to attach something to something because it doesn't stick +213528;Plugging something into something +60900;Lifting something with something on it +24450;Something colliding with something and both are being deflected +186798;Rolling something on a flat surface +152962;Pouring something into something +205215;Putting something upright on the table +174178;Dropping something behind something +21957;Stuffing something into something +134103;Putting something in front of something +33434;Tilting something with something on it slightly so it doesn't fall down +15562;Plugging something into something +145657;Removing something, revealing something behind +2302;Lifting something up completely, then letting it drop down +721;Holding something over something +115212;Pulling something from behind of something +155418;Showing that something is empty +11058;Tilting something with something on it until it falls off +200162;Tearing something just a little bit +77701;Rolling something on a flat surface +205599;Turning something upside down +214177;Moving something and something away from each other +130237;Moving something across a surface until it falls down +169320;Holding something +219703;Stuffing something into something +92876;Moving something closer to something +122845;Moving something closer to something +72631;Tearing something into two pieces +191943;Pouring something into something +128232;Tipping something over +105757;Attaching something to something +192807;Showing that something is empty +115130;Twisting something +157860;Pushing something so that it falls off the table +35321;Burying something in something +4459;Holding something over something +78163;Moving something away from something +191554;Opening something +138222;Pulling two ends of something so that it gets stretched +53145;Piling something up +35460;Putting something onto something +143099;Rolling something on a flat surface +33907;Hitting something with something +198245;Attaching something to something +144124;Holding something in front of something +179286;Pretending to take something from somewhere +118338;Putting something on a surface +161753;Pulling something out of something +29812;Sprinkling something onto something +218024;Closing something +25031;Moving something and something closer to each other +58348;Plugging something into something but pulling it right out as you remove your hand +92086;Showing something behind something +88366;Putting something underneath something +82759;Folding something +171114;Pretending to poke something +203069;Unfolding something +34058;Tearing something just a little bit +27889;Showing something behind something +23343;Showing that something is inside something +120449;Covering something with something +112432;Pretending to close something without actually closing it +132174;Showing something on top of something +83384;Pushing something so that it almost falls off but doesn't +59244;Pushing something so that it slightly moves +33463;Bending something so that it deforms +166745;Lifting up one end of something without letting it drop down +190238;Pulling two ends of something but nothing happens +53276;Dropping something onto something +185085;Putting something on a flat surface without letting it roll +95998;Showing something behind something +188202;Pretending to turn something upside down +95825;Pushing something from right to left +118952;Turning something upside down +176765;Moving something and something away from each other +169692;Showing something behind something +160860;Dropping something onto something +102557;Taking one of many similar things on the table +220633;Pushing something so it spins +83129;Holding something over something +144960;Tipping something with something in it over, so something in it falls out +162365;Moving something up +104545;Trying to bend something unbendable so nothing happens +40892;Pouring something out of something +186576;Pushing something from left to right +128082;Something being deflected from something +64929;Putting something, something and something on the table +23046;Putting something on a surface +69293;Tearing something into two pieces +88216;Putting something in front of something +118790;Pretending to poke something +197020;Throwing something onto a surface +147264;Tipping something over +217676;Moving something across a surface until it falls down +82345;Putting something on a surface +37669;Moving part of something +110187;Tearing something into two pieces +161534;Holding something next to something +216502;Turning something upside down +85751;Moving something down +70211;Putting something that can't roll onto a slanted surface, so it stays where it is +101039;Lifting something up completely, then letting it drop down +181799;Tipping something with something in it over, so something in it falls out +95314;Pulling something from left to right +60279;Moving something and something closer to each other +9314;Lifting something with something on it +183362;Tearing something just a little bit +210602;Plugging something into something but pulling it right out as you remove your hand +713;Lifting something with something on it +13301;Showing that something is empty +41734;Dropping something next to something +158168;Turning the camera right while filming something +122893;Poking something so that it falls over +191655;Putting something into something +192219;Dropping something onto something +57598;Plugging something into something +36817;Opening something +152119;Putting something on the edge of something so it is not supported and falls down +148096;Pushing something so that it almost falls off but doesn't +113734;Bending something so that it deforms +40307;Letting something roll up a slanted surface, so it rolls back down +19999;Tearing something into two pieces +184824;Pretending to take something from somewhere +119823;Putting something that cannot actually stand upright upright on the table, so it falls on its side +868;Holding something over something +175759;Removing something, revealing something behind +64896;Pulling something from left to right +67398;Putting something that cannot actually stand upright upright on the table, so it falls on its side +7560;Holding something next to something +181525;Picking something up +194833;Failing to put something into something because something does not fit +159366;Pretending to be tearing something that is not tearable +67312;Pretending to be tearing something that is not tearable +94593;Dropping something into something +132581;Lifting a surface with something on it until it starts sliding down +30311;Putting something on a surface +165472;Putting something in front of something +51680;Stacking number of something +120076;Lifting something up completely, then letting it drop down +138721;Attaching something to something +64372;Laying something on the table on its side, not upright +114368;Pretending to be tearing something that is not tearable +23881;Plugging something into something but pulling it right out as you remove your hand +189709;Turning something upside down +104056;Putting something on a surface +52304;Turning the camera left while filming something +182972;Plugging something into something +52476;Pulling something from right to left +31169;Putting something similar to other things that are already on the table +199358;Something falling like a feather or paper +78927;Squeezing something +89199;Trying to pour something into something, but missing so it spills next to it +48635;Poking something so it slightly moves +124033;Pouring something into something +140476;Pushing something so that it slightly moves +101484;Piling something up +193139;Pouring something onto something +6024;Pushing something onto something +172875;Moving something down +57616;Uncovering something +74332;Putting something, something and something on the table +177881;Turning the camera right while filming something +88301;Showing something behind something +184086;Spinning something that quickly stops spinning +144892;Moving away from something with your camera +407;Pretending to put something into something +37699;Opening something +33318;Throwing something +122215;Pretending to take something from somewhere +211276;Plugging something into something +125554;Folding something +98515;Pouring something out of something +91297;Putting something underneath something +184239;Moving something and something closer to each other +65255;Spinning something that quickly stops spinning +76332;Pushing something so that it slightly moves +121966;Putting something on a flat surface without letting it roll +179919;Stacking number of something +161707;Throwing something +62227;Showing something behind something +153945;Pushing something so that it slightly moves +209377;Showing something to the camera +86556;Poking something so lightly that it doesn't or almost doesn't move +89137;Moving something and something closer to each other +133374;Unfolding something +85449;Pouring something into something +29298;Poking something so it slightly moves +82823;Tearing something just a little bit +24573;Pushing something from left to right +167411;Tearing something into two pieces +143750;Taking something out of something +125596;Moving something up +112453;Tearing something into two pieces +106227;Poking something so lightly that it doesn't or almost doesn't move +13287;Moving something and something away from each other +179374;Putting something next to something +106092;Scooping something up with something +135448;Throwing something against something +58724;Piling something up +88332;Letting something roll down a slanted surface +9336;Something falling like a rock +163828;Pretending to poke something +95494;Letting something roll along a flat surface +119740;Trying to bend something unbendable so nothing happens +208691;Moving something across a surface without it falling down +22897;Taking one of many similar things on the table +176900;Pretending to pick something up +211529;Tearing something into two pieces +78977;Pushing something from left to right +94738;Taking one of many similar things on the table +134414;Showing something on top of something +40943;Throwing something +210578;Turning the camera upwards while filming something +45015;Pushing something from left to right +68651;Picking something up +215583;Holding something in front of something +21562;Plugging something into something but pulling it right out as you remove your hand +178123;Spinning something so it continues spinning +139455;Taking one of many similar things on the table +211108;Stuffing something into something +17341;Something colliding with something and both are being deflected +76001;Pretending to pick something up +59119;Stacking number of something +130636;Lifting something with something on it +94009;Putting something on a surface +33205;Pretending to put something on a surface +89290;Moving something and something so they pass each other +76823;Tearing something into two pieces +112398;Opening something +163750;Pretending to poke something +125645;Something falling like a rock +98036;Putting something on a surface +98424;Unfolding something +134302;Turning something upside down +41469;Plugging something into something +144570;Plugging something into something +182356;Moving something away from something +103658;Putting something underneath something +182281;Throwing something against something +99161;Something falling like a feather or paper +219116;Squeezing something +101409;Pretending or trying and failing to twist something +78562;Uncovering something +79192;Taking one of many similar things on the table +219879;Stacking number of something +83328;Moving something up +24906;Lifting something with something on it +18326;Dropping something into something +46426;Tearing something into two pieces +56525;Throwing something against something +197375;Showing something behind something +5083;Putting something similar to other things that are already on the table +202140;Putting something on the edge of something so it is not supported and falls down +124178;Spinning something that quickly stops spinning +136295;Pushing something so that it almost falls off but doesn't +199503;Pretending to be tearing something that is not tearable +47776;Moving something and something closer to each other +71542;Spinning something that quickly stops spinning +166041;Spinning something so it continues spinning +53447;Putting something and something on the table +78664;Putting something that cannot actually stand upright upright on the table, so it falls on its side +161539;Plugging something into something +115637;Lifting up one end of something, then letting it drop down +78700;Squeezing something +98757;Plugging something into something +25601;Pulling two ends of something so that it separates into two pieces +111356;Taking one of many similar things on the table +4842;Turning something upside down +210760;Something falling like a feather or paper +54901;Letting something roll along a flat surface +68041;Pretending to poke something +58334;Covering something with something +28775;Wiping something off of something +54154;Letting something roll along a flat surface +109405;Dropping something next to something +71416;Tilting something with something on it until it falls off +48394;Holding something over something +51279;Something falling like a feather or paper +71825;Folding something +179529;Putting number of something onto something +209643;Spinning something that quickly stops spinning +114662;Pretending to close something without actually closing it +144376;Showing something to the camera +147036;Something being deflected from something +162567;Turning something upside down +125956;Throwing something in the air and letting it fall +215731;Something falling like a feather or paper +183091;Dropping something onto something +210785;Taking something from somewhere +172969;Tearing something just a little bit +87507;Moving something and something so they collide with each other +55633;Something falling like a feather or paper +23373;Pretending to be tearing something that is not tearable +22974;Tearing something just a little bit +133298;Scooping something up with something +14872;Moving something and something so they pass each other +65934;Pretending to squeeze something +164350;Moving something up +77275;Holding something in front of something +44849;Plugging something into something but pulling it right out as you remove your hand +144234;Tilting something with something on it slightly so it doesn't fall down +71577;Moving something and something so they pass each other +207015;Moving away from something with your camera +81663;Covering something with something +153308;Plugging something into something +169880;Pushing something so that it slightly moves +154217;Showing that something is empty +65319;Putting something on a surface +121172;Putting something on the edge of something so it is not supported and falls down +66823;Putting something similar to other things that are already on the table +216892;Showing something to the camera +78528;Putting something, something and something on the table +163356;Putting something into something +64140;Taking one of many similar things on the table +101697;Closing something +35546;Turning something upside down +5332;Turning something upside down +187972;Pouring something into something +14583;Bending something so that it deforms +44230;Pushing something so it spins +24987;Dropping something onto something +80224;Showing that something is inside something +132256;Picking something up +8792;Something falling like a rock +122758;Poking a hole into something soft +18397;Scooping something up with something +95852;Touching (without moving) part of something +85034;Touching (without moving) part of something +167467;Hitting something with something +5496;Putting something onto something +174383;Stacking number of something +203606;Covering something with something +188094;Laying something on the table on its side, not upright +17659;Pretending to put something on a surface +70269;Pretending to scoop something up with something +83103;Twisting something +12668;Removing something, revealing something behind +216092;Stuffing something into something +82811;Throwing something onto a surface +184552;Dropping something next to something +83442;Dropping something onto something +191833;Laying something on the table on its side, not upright +213624;Tearing something into two pieces +93892;Tearing something into two pieces +80752;Pushing something from left to right +164089;Tipping something over +115946;Showing that something is empty +45031;Squeezing something +110550;Pushing something so that it falls off the table +82363;Plugging something into something +14630;Pouring something onto something +168422;Pulling something from left to right +199370;Piling something up +118290;Tipping something over +188607;Pulling something from behind of something +215186;Letting something roll along a flat surface +196497;Spinning something so it continues spinning +138328;Moving something away from something +100774;Putting something on a surface +138072;Taking one of many similar things on the table +138257;Moving something and something away from each other +122408;Spinning something that quickly stops spinning +99818;Spinning something so it continues spinning +148994;Showing that something is inside something +6282;Holding something over something +43384;Pretending to squeeze something +118605;Rolling something on a flat surface +25561;Lifting a surface with something on it until it starts sliding down +72221;Plugging something into something +107999;Pushing something from right to left +112651;Wiping something off of something +176985;Pouring something into something +217861;Pretending to scoop something up with something +62792;Dropping something next to something +156150;Pretending to open something without actually opening it +189263;Putting something next to something +112594;Showing that something is empty +212093;Closing something +51358;Sprinkling something onto something +156848;Moving something up +177558;Holding something next to something +80973;Pushing something from right to left +175467;Dropping something onto something +50999;Plugging something into something +59330;Showing that something is empty +137036;Holding something +121871;Putting something upright on the table +201409;Something colliding with something and both are being deflected +51341;Turning something upside down +97250;Spilling something onto something +168637;Showing something next to something +165933;Squeezing something +210123;Trying but failing to attach something to something because it doesn't stick +150363;Tilting something with something on it until it falls off +146233;Picking something up +26235;Touching (without moving) part of something +106991;Lifting up one end of something without letting it drop down +189501;Putting number of something onto something +92091;Showing something next to something +192444;Taking something out of something +186451;Scooping something up with something +15412;Twisting something +141692;Pretending to sprinkle air onto something +36259;Pretending to take something out of something +118371;Dropping something behind something +145135;Closing something +140855;Pulling something from right to left +33993;Putting number of something onto something +18918;Attaching something to something +165602;Closing something +210891;Plugging something into something but pulling it right out as you remove your hand +152860;Spinning something so it continues spinning +94536;Moving something closer to something +38659;Letting something roll up a slanted surface, so it rolls back down +29286;Pretending to pick something up +2881;Pouring something into something +153064;Plugging something into something +189576;Moving something and something away from each other +31766;Something falling like a rock +72133;Moving something away from something +56024;Turning the camera left while filming something +135471;Turning something upside down +60786;Pretending to be tearing something that is not tearable +40356;Tearing something into two pieces +96055;Tilting something with something on it until it falls off +158702;Plugging something into something +55887;Putting something behind something +113067;Putting something on a surface +178537;Picking something up +10150;Lifting something with something on it +48447;Closing something +154388;Pushing something so it spins +182782;Squeezing something +50038;Removing something, revealing something behind +219732;Pretending to open something without actually opening it +148007;Tipping something over +23760;Pushing something from right to left +22534;Something colliding with something and both are being deflected +183169;Dropping something onto something +119846;Tearing something into two pieces +53065;Pushing something so that it slightly moves +168787;Tipping something over +173672;Putting something behind something +156328;Turning something upside down +42567;Moving something and something away from each other +36861;Attaching something to something +96894;Stuffing something into something +10381;Putting something into something +136162;Plugging something into something +110552;Touching (without moving) part of something +107562;Pulling something from left to right +201095;Pulling something from right to left +206132;Failing to put something into something because something does not fit +197788;Pretending to sprinkle air onto something +97664;Pulling something from right to left +75970;Letting something roll down a slanted surface +101541;Pushing something so that it falls off the table +113437;Tilting something with something on it until it falls off +164204;Showing something next to something +6414;Turning the camera right while filming something +103495;Putting something onto something +101980;Stuffing something into something +162612;Folding something +25154;Uncovering something +155394;Pushing something from right to left +61851;Lifting something up completely without letting it drop down +179507;Showing that something is empty +55074;Dropping something onto something +54555;Moving something and something closer to each other +151517;Moving away from something with your camera +99240;Tearing something into two pieces +30093;Hitting something with something +133434;Holding something next to something +76018;Picking something up +209777;Piling something up +98744;Throwing something in the air and catching it +137196;Moving something closer to something +133292;Pouring something into something until it overflows +85523;Letting something roll down a slanted surface +43496;Putting something, something and something on the table +187330;Twisting something +28422;Holding something next to something +214778;Turning the camera downwards while filming something +132243;Twisting something +97172;Pushing something so that it falls off the table +119674;Plugging something into something +217923;Putting something upright on the table +129937;Something falling like a rock +122996;Something falling like a feather or paper +1433;Spinning something so it continues spinning +123962;Pushing something so that it falls off the table +146926;Pretending to squeeze something +163713;Pulling two ends of something so that it gets stretched +123967;Putting something, something and something on the table +21301;Poking something so that it falls over +10885;Poking something so lightly that it doesn't or almost doesn't move +206303;Holding something next to something +214991;Moving something across a surface without it falling down +86853;Closing something +95854;Putting something into something +55816;Moving something up +59877;Putting something onto something +137270;Trying to bend something unbendable so nothing happens +92190;Spilling something onto something +106355;Twisting something +160861;Turning something upside down +190310;Throwing something against something +46330;Pushing something so that it slightly moves +208121;Moving something and something closer to each other +137941;Putting something similar to other things that are already on the table +72632;Holding something behind something +95334;Squeezing something +49837;Lifting something up completely, then letting it drop down +16568;Lifting a surface with something on it but not enough for it to slide down +143194;Putting something that cannot actually stand upright upright on the table, so it falls on its side +187645;Letting something roll down a slanted surface +52227;Pouring something into something +75590;Plugging something into something but pulling it right out as you remove your hand +182861;Showing something next to something +31075;Pretending to take something from somewhere +138582;Moving something and something away from each other +138968;Pushing something off of something +24414;Moving something across a surface without it falling down +21936;Pushing something so that it slightly moves +166867;Holding something behind something +86765;Pulling something out of something +13615;Pulling something from left to right +83146;Scooping something up with something +25305;Showing something behind something +146208;Showing something behind something +29935;Turning something upside down +189836;Plugging something into something but pulling it right out as you remove your hand +186120;Pretending to squeeze something +59152;Pushing something so that it slightly moves +9004;Opening something +37843;Showing something next to something +22605;Opening something +202798;Throwing something +101259;Taking something from somewhere +119967;Dropping something into something +180566;Tearing something into two pieces +143330;Pretending to close something without actually closing it +194889;Moving something and something closer to each other +113715;Throwing something in the air and catching it +126285;Tearing something just a little bit +79346;Pulling something from left to right +47126;Taking something from somewhere +185182;Pretending to turn something upside down +197045;Lifting something up completely without letting it drop down +1615;Tearing something into two pieces +132357;Folding something +9694;Pushing something from right to left +50131;Pretending to sprinkle air onto something +73723;Touching (without moving) part of something +220030;Scooping something up with something +39958;Holding something behind something +43671;Pushing something so that it slightly moves +147629;Showing that something is inside something +27882;Spreading something onto something +79003;Putting something that can't roll onto a slanted surface, so it slides down +72095;Putting something on a surface +55014;Moving away from something with your camera +9323;Poking something so lightly that it doesn't or almost doesn't move +29203;Putting something next to something +210821;Showing that something is empty +40999;Dropping something behind something +50828;Something falling like a feather or paper +163882;Hitting something with something +61689;Putting something into something +98826;Moving something down +164921;Burying something in something +204421;Pretending to poke something +73107;Piling something up +140517;Showing that something is inside something +96073;Spinning something so it continues spinning +15350;Pushing something so that it falls off the table +199995;Something being deflected from something +131945;Pushing something so that it falls off the table +40207;Spinning something that quickly stops spinning +144756;Putting something upright on the table +207063;Stuffing something into something +105784;Holding something next to something +64782;Pouring something out of something +4190;Moving something and something closer to each other +75134;Showing that something is inside something +94266;Turning something upside down +40836;Showing something behind something +181810;Something falling like a feather or paper +166886;Holding something in front of something +46933;Attaching something to something +121722;Pretending to poke something +123402;Stacking number of something +37962;Something falling like a rock +50803;Tilting something with something on it slightly so it doesn't fall down +113085;Turning the camera right while filming something +58210;Holding something behind something +169161;Plugging something into something +144347;Twisting something +45614;Pretending to be tearing something that is not tearable +196813;Pretending to throw something +157408;Showing that something is inside something +18087;Moving something and something away from each other +30293;Pretending to close something without actually closing it +75202;Moving something and something closer to each other +102974;Trying but failing to attach something to something because it doesn't stick +16731;Picking something up +142703;Pushing something so it spins +195176;Putting number of something onto something +22788;Showing something behind something +189895;Lifting up one end of something, then letting it drop down +72071;Closing something +14560;Pushing something from left to right +106911;Pulling two ends of something but nothing happens +26624;Removing something, revealing something behind +207362;Something colliding with something and both are being deflected +57308;Pretending to pour something out of something, but something is empty +45973;Lifting up one end of something, then letting it drop down +54055;Putting something in front of something +25630;Holding something in front of something +67247;Tipping something over +74010;Approaching something with your camera +161877;Plugging something into something +18085;Moving something away from something +201344;Putting something on a surface +145961;Pushing something so that it almost falls off but doesn't +208848;Tearing something into two pieces +126879;Moving away from something with your camera +76049;Putting something on a surface +168767;Hitting something with something +179800;Taking one of many similar things on the table +44417;Putting something next to something +166793;Moving something towards the camera +154606;Plugging something into something +178652;Pushing something from right to left +117501;Something falling like a feather or paper +49483;Moving something across a surface without it falling down +104339;Taking something out of something +25804;Showing that something is empty +30875;Pretending to sprinkle air onto something +31834;Pretending to put something behind something +17475;Plugging something into something but pulling it right out as you remove your hand +79461;Moving something up +160960;Putting something behind something +204011;Holding something behind something +155034;Throwing something in the air and catching it +220623;Moving something up +14603;Plugging something into something +1874;Piling something up +21971;Lifting something up completely, then letting it drop down +58367;Pushing something from right to left +144823;Moving something across a surface until it falls down +139389;Tipping something over +67365;Pushing something so it spins +54408;Pulling something from right to left +73763;Holding something in front of something +20470;Squeezing something +154853;Showing something to the camera +120634;Turning something upside down +119312;Putting something on a surface +165067;Laying something on the table on its side, not upright +166624;Attaching something to something +49300;Tipping something over +19946;Holding something behind something +127970;Throwing something against something +114019;Plugging something into something +219001;Spreading something onto something +59349;Pushing something from right to left +108354;Covering something with something +111952;Moving part of something +82089;Wiping something off of something +82627;Moving part of something +140630;Showing something behind something +55140;Plugging something into something +89230;Plugging something into something +145984;Spilling something onto something +112189;Moving something and something away from each other +56388;Showing something behind something +23815;Uncovering something +14949;Holding something over something +7136;Pretending to be tearing something that is not tearable +16760;Poking something so lightly that it doesn't or almost doesn't move +123123;Putting something into something +127848;Tearing something into two pieces +48763;Putting something similar to other things that are already on the table +178811;Putting something into something +3273;Moving something closer to something +103942;Stuffing something into something +33246;Pushing something from left to right +151015;Plugging something into something +117141;Wiping something off of something +156925;Poking something so it slightly moves +47192;Lifting something with something on it +35861;Pretending to take something from somewhere +178414;Taking something out of something +189852;Spinning something so it continues spinning +80961;Showing something behind something +181568;Wiping something off of something +124928;Tearing something just a little bit +140475;Moving something closer to something +78747;Turning the camera downwards while filming something +40434;Dropping something onto something +112601;Tearing something just a little bit +116649;Closing something +210284;Rolling something on a flat surface +205647;Turning something upside down +120022;Pushing something so that it falls off the table +29223;Approaching something with your camera +40881;Spinning something that quickly stops spinning +218150;Pushing something with something +178233;Tearing something just a little bit +120313;Turning the camera right while filming something +120451;Uncovering something +217538;Dropping something into something +195193;Tearing something into two pieces +116705;Taking one of many similar things on the table +197665;Putting something and something on the table +127391;Taking one of many similar things on the table +206901;Picking something up +55504;Moving something and something away from each other +37640;Twisting something +139318;Pushing something so that it almost falls off but doesn't +177887;Pretending to open something without actually opening it +35195;Picking something up +110458;Pushing something so it spins +46896;Putting something next to something +183543;Moving something and something closer to each other +142268;Twisting something +66371;Pretending to take something out of something +80031;Plugging something into something +182401;Scooping something up with something +20155;Turning something upside down +134062;Trying to bend something unbendable so nothing happens +108298;Pouring something into something +113994;Tearing something just a little bit +42842;Lifting up one end of something, then letting it drop down +57489;Tilting something with something on it until it falls off +46931;Folding something +181361;Putting something into something +214079;Covering something with something +210638;Trying to pour something into something, but missing so it spills next to it +54203;Putting something on a flat surface without letting it roll +164277;Pushing something so that it falls off the table +144492;Putting number of something onto something +43750;Putting something on a surface +107428;Unfolding something +106075;Dropping something onto something +48954;Pretending to close something without actually closing it +187578;Moving something and something away from each other +90884;Showing something next to something +134972;Touching (without moving) part of something +13319;Showing something behind something +50956;Lifting something with something on it +37518;Bending something until it breaks +69580;Pretending to open something without actually opening it +217860;Stuffing something into something +159560;Moving part of something +123657;Squeezing something +46152;Pulling something from right to left +216702;Moving something up +88236;Uncovering something +140305;Tipping something over +150559;Poking something so lightly that it doesn't or almost doesn't move +32158;Holding something over something +102379;Holding something +183098;Putting something upright on the table +127493;Pushing something so that it falls off the table +204529;Spinning something that quickly stops spinning +155120;Pretending to put something onto something +4646;Putting something that can't roll onto a slanted surface, so it stays where it is +163008;Pushing something from right to left +82511;Moving part of something +146458;Laying something on the table on its side, not upright +2797;Scooping something up with something +124383;Spinning something so it continues spinning +103996;Poking something so that it falls over +28848;Pulling two ends of something but nothing happens +148504;Holding something next to something +210587;Lifting something up completely, then letting it drop down +59069;Letting something roll down a slanted surface +64414;Rolling something on a flat surface +170467;Moving something and something away from each other +25967;Pretending to put something on a surface +78923;Turning something upside down +146904;Showing something behind something +110108;Holding something over something +99886;Putting something into something +75862;Closing something +24772;Something falling like a feather or paper +138165;Putting something underneath something +49301;Dropping something onto something +106569;Covering something with something +177822;Pretending to turn something upside down +142664;Dropping something onto something +189099;Moving something and something so they pass each other +130716;Throwing something +163384;Poking a stack of something without the stack collapsing +137354;Holding something in front of something +133228;Uncovering something +114391;Pouring something into something +57012;Digging something out of something +53185;Showing something behind something +38360;Turning something upside down +169528;Letting something roll down a slanted surface +140643;Pushing something from left to right +65746;Showing something behind something +31192;Taking something from somewhere +40742;Putting something that cannot actually stand upright upright on the table, so it falls on its side +149181;Throwing something in the air and catching it +46217;Tearing something into two pieces +95500;Poking something so it slightly moves +140780;Poking something so lightly that it doesn't or almost doesn't move +141319;Bending something so that it deforms +25678;Pushing something so that it almost falls off but doesn't +18168;Putting something on a surface +46766;Letting something roll along a flat surface +1364;Pulling two ends of something so that it separates into two pieces +126366;Pulling something from right to left +187781;Putting something on a surface +123780;Showing that something is inside something +21533;Moving something closer to something +190132;Pretending to put something on a surface +213570;Covering something with something +446;Plugging something into something but pulling it right out as you remove your hand +17515;Pretending to turn something upside down +137587;Showing something next to something +207587;Putting something underneath something +6931;Putting something into something +104667;Twisting something +184703;Putting number of something onto something +87547;Lifting up one end of something, then letting it drop down +169902;Folding something +79409;Uncovering something +170651;Putting something and something on the table +33316;Showing that something is inside something +70731;Stuffing something into something +187705;Showing something next to something +65938;Moving something closer to something +24131;Showing that something is empty +86482;Uncovering something +40520;Lifting something up completely, then letting it drop down +49554;Pushing something from left to right +199468;Showing that something is empty +61376;Pretending to pour something out of something, but something is empty +190402;Putting something in front of something +84583;Uncovering something +119309;Showing something to the camera +213943;Letting something roll along a flat surface +14579;Pretending to open something without actually opening it +71086;Rolling something on a flat surface +73159;Plugging something into something +73244;Rolling something on a flat surface +116187;Covering something with something +56340;Approaching something with your camera +99116;Showing that something is empty +16463;Pushing something so that it slightly moves +209844;Throwing something against something +125172;Wiping something off of something +100187;Stacking number of something +49902;Holding something in front of something +99153;Hitting something with something +46280;Putting something similar to other things that are already on the table +113979;Pushing something so that it falls off the table +20265;Dropping something in front of something +203219;Something falling like a feather or paper +216996;Moving something and something closer to each other +216083;Moving something closer to something +64039;Moving something and something so they collide with each other +67133;Moving something and something closer to each other +44646;Closing something +120429;Throwing something onto a surface +52711;Attaching something to something +123244;Hitting something with something +209577;Sprinkling something onto something +167191;Moving something and something away from each other +129136;Picking something up +16106;Hitting something with something +181240;Squeezing something +147017;Uncovering something +101320;Moving something and something away from each other +111285;Wiping something off of something +42519;Moving something across a surface without it falling down +46533;Pretending or failing to wipe something off of something +36187;Holding something over something +169462;Showing something on top of something +204208;Showing something behind something +215815;Pretending to take something from somewhere +40922;Letting something roll along a flat surface +29046;Lifting something up completely, then letting it drop down +149661;Showing something behind something +96572;Wiping something off of something +62584;Spilling something behind something +112625;Taking something out of something +10250;Plugging something into something +41696;Approaching something with your camera +43925;Pushing something so that it falls off the table +116591;Tilting something with something on it until it falls off +72300;Holding something in front of something +190603;Trying to bend something unbendable so nothing happens +136703;Pouring something into something +35204;Moving part of something +83729;Something falling like a feather or paper +144438;Pulling something from right to left +40574;Pretending to put something on a surface +144229;Spinning something that quickly stops spinning +147400;Tearing something into two pieces +193460;Poking something so it slightly moves +20859;Tearing something into two pieces +185732;Stuffing something into something +154284;Holding something +215227;Putting something upright on the table +13713;Folding something +44626;Putting something upright on the table +48534;Pushing something off of something +58722;Showing something on top of something +217617;Showing something next to something +110062;Pushing something so that it almost falls off but doesn't +60356;Moving something and something closer to each other +162060;Throwing something +161261;Putting something behind something +153808;Turning something upside down +133658;Pulling something from right to left +62555;Laying something on the table on its side, not upright +197714;Pouring something into something until it overflows +107251;Plugging something into something but pulling it right out as you remove your hand +78014;Showing something on top of something +176920;Throwing something in the air and catching it +149512;Spilling something onto something +163287;Putting something into something +139641;Taking one of many similar things on the table +165958;Opening something +54542;Throwing something in the air and catching it +132076;Putting something on a surface +195984;Pushing something so that it slightly moves +63969;Stuffing something into something +204809;Spilling something onto something +208435;Something falling like a feather or paper +18823;Plugging something into something but pulling it right out as you remove your hand +170060;Stacking number of something +145885;Moving something and something closer to each other +683;Spilling something behind something +207092;Uncovering something +93424;Spinning something that quickly stops spinning +117122;Turning something upside down +68092;Uncovering something +119265;Holding something over something +62146;Moving something and something away from each other +176430;Pulling something from left to right +197916;Moving something closer to something +160592;Showing something on top of something +75231;Letting something roll along a flat surface +185850;Pretending to pour something out of something, but something is empty +151347;Folding something +204129;Piling something up +94961;Spinning something that quickly stops spinning +161213;Pretending to be tearing something that is not tearable +34843;Putting number of something onto something +101828;Stacking number of something +209881;Pretending to pour something out of something, but something is empty +69687;Showing that something is empty +213287;Moving something away from something +166353;Pretending to sprinkle air onto something +191093;Pushing something with something +113287;Pushing something from left to right +202577;Moving something up +69794;Squeezing something +41882;Showing that something is inside something +170226;Putting something on a surface +35334;Putting something on the edge of something so it is not supported and falls down +217371;Something falling like a rock +208880;Pretending to turn something upside down +170149;Squeezing something +192086;Rolling something on a flat surface +151969;Uncovering something +141249;Putting number of something onto something +191160;Lifting something with something on it +139117;Plugging something into something but pulling it right out as you remove your hand +162940;Plugging something into something +151709;Pulling two ends of something but nothing happens +199613;Turning something upside down +134160;Turning something upside down +77798;Showing something on top of something +178096;Folding something +80017;Showing something to the camera +156776;Showing something next to something +170343;Moving something towards the camera +51281;Squeezing something +56745;Pretending to throw something +169403;Holding something next to something +5088;Holding something in front of something +87226;Holding something next to something +104153;Approaching something with your camera +5169;Attaching something to something +56662;Pulling something from right to left +32530;Moving something closer to something +67473;Pulling something from right to left +32620;Pretending to poke something +39229;Taking something from somewhere +26723;Stuffing something into something +202435;Rolling something on a flat surface +21897;Plugging something into something +150123;Holding something in front of something +36313;Uncovering something +52083;Piling something up +209075;Pretending to scoop something up with something +211997;Letting something roll along a flat surface +75726;Putting something in front of something +101298;Showing something to the camera +20944;Putting something on a surface +110916;Pretending to be tearing something that is not tearable +100938;Showing something on top of something +13295;Putting something onto something +108002;Plugging something into something +213492;Pretending to pour something out of something, but something is empty +113367;Holding something next to something +20465;Moving something closer to something +88116;Pushing something so it spins +23562;Holding something next to something +181987;Pretending or trying and failing to twist something +169083;Something falling like a feather or paper +73859;Moving something across a surface until it falls down +218450;Something falling like a rock +118137;Pushing something with something +22014;Pretending to sprinkle air onto something +122710;Pouring something into something +152169;Spinning something so it continues spinning +50813;Turning something upside down +68085;Pushing something so that it slightly moves +87955;Lifting up one end of something without letting it drop down +52584;Dropping something in front of something +216587;Squeezing something +115752;Tearing something into two pieces +45904;Spinning something that quickly stops spinning +191551;Pretending to put something next to something +63066;Putting something onto something +127901;Pretending to poke something +137975;Pouring something into something +7708;Tipping something over +31708;Tearing something just a little bit +1471;Covering something with something +55081;Putting something on a surface +120128;Spilling something onto something +190720;Poking something so lightly that it doesn't or almost doesn't move +115550;Bending something so that it deforms +135430;Pushing something so that it slightly moves +105639;Throwing something in the air and letting it fall +184985;Tearing something into two pieces +117330;Touching (without moving) part of something +189133;Lifting something up completely without letting it drop down +147791;Bending something until it breaks +161209;Tipping something over +172441;Turning something upside down +214946;Something falling like a rock +207139;Holding something over something +31467;Putting number of something onto something +1941;Tearing something into two pieces +25847;Plugging something into something +213192;Removing something, revealing something behind +107363;Pushing something with something +138509;Putting something on a surface +173976;Moving something up +206847;Moving something across a surface without it falling down +16270;Moving something and something away from each other +208081;Moving something and something away from each other +130408;Plugging something into something +179129;Pushing something from left to right +39058;Pouring something into something +150077;Moving something and something so they pass each other +146125;Plugging something into something +163104;Plugging something into something +115380;Putting something similar to other things that are already on the table +167502;Plugging something into something +38582;Pulling something from left to right +89484;Folding something +3975;Putting something into something +144561;Covering something with something +61507;Poking something so it slightly moves +123693;Twisting something +88348;Dropping something in front of something +18176;Wiping something off of something +204391;Showing that something is empty +90906;Poking a hole into something soft +82590;Lifting something with something on it +188210;Folding something +22717;Pushing something from right to left +76960;Turning something upside down +124380;Pretending to pour something out of something, but something is empty +73841;Plugging something into something but pulling it right out as you remove your hand +185623;Folding something +55532;Turning the camera downwards while filming something +39428;Moving something away from something +102928;Pushing something so that it almost falls off but doesn't +165909;Holding something behind something +23571;Stuffing something into something +98427;Moving something down +160049;Taking something from somewhere +14836;Throwing something in the air and catching it +112739;Pushing something from left to right +182812;Taking something from somewhere +129271;Turning the camera right while filming something +84022;Hitting something with something +192567;Taking one of many similar things on the table +181544;Spinning something that quickly stops spinning +192176;Stacking number of something +206459;Moving something away from the camera +98064;Putting something in front of something +199669;Lifting something with something on it +90945;Holding something over something +63511;Turning something upside down +25459;Moving something closer to something +109585;Moving something up +180427;Pouring something into something +21628;Uncovering something +176902;Trying to bend something unbendable so nothing happens +164896;Bending something until it breaks +78033;Putting something next to something +211240;Plugging something into something +118725;Squeezing something +109921;Tilting something with something on it until it falls off +94308;Unfolding something +205108;Putting something similar to other things that are already on the table +28889;Holding something over something +109295;Stuffing something into something +197304;Moving something closer to something +123716;Dropping something onto something +198938;Pretending to poke something +77518;Pulling two ends of something but nothing happens +98982;Dropping something next to something +113310;Stacking number of something +197212;Moving something away from something +191562;Rolling something on a flat surface +192740;Turning the camera right while filming something +115187;Rolling something on a flat surface +40599;Tearing something just a little bit +114970;Putting something next to something +66781;Pushing something so that it almost falls off but doesn't +43947;Uncovering something +128485;Wiping something off of something +36115;Turning something upside down +96957;Letting something roll along a flat surface +198575;Putting something on a flat surface without letting it roll +8412;Pushing something with something +10731;Pushing something so that it falls off the table +20019;Trying to pour something into something, but missing so it spills next to it +59117;Something colliding with something and both come to a halt +18368;Pulling something onto something +87106;Squeezing something +220132;Pretending to put something next to something +61287;Throwing something in the air and letting it fall +5014;Throwing something in the air and letting it fall +125457;Tearing something just a little bit +128244;Pulling something from right to left +10903;Pushing something off of something +99469;Holding something over something +40478;Showing something on top of something +154818;Holding something behind something +120319;Holding something next to something +34748;Pretending to put something next to something +109228;Showing something next to something +63774;Touching (without moving) part of something +205234;Pretending to take something from somewhere +67725;Dropping something onto something +49369;Pushing something so that it almost falls off but doesn't +74274;Plugging something into something but pulling it right out as you remove your hand +96786;Bending something so that it deforms +93178;Poking something so it slightly moves +180100;Tearing something into two pieces +129172;Pushing something with something +163921;Poking something so lightly that it doesn't or almost doesn't move +3076;Rolling something on a flat surface +186051;Putting something next to something +113621;Putting something similar to other things that are already on the table +200867;Taking one of many similar things on the table +202922;Moving something closer to something +132854;Pushing something from left to right +42539;Throwing something onto a surface +89879;Putting something on the edge of something so it is not supported and falls down +40679;Stuffing something into something +97867;Moving something away from something +156434;Tilting something with something on it slightly so it doesn't fall down +57494;Putting something on a surface +101887;Throwing something onto a surface +27871;Putting something into something +93679;Attaching something to something +27271;Folding something +54249;Something falling like a rock +4200;Pulling something from right to left +117811;Showing something behind something +154477;Tearing something into two pieces +188703;Rolling something on a flat surface +23049;Pouring something into something +2795;Something falling like a rock +134808;Dropping something onto something +220264;Lifting something with something on it +57198;Bending something so that it deforms +112960;Putting something behind something +91050;Tearing something just a little bit +167445;Pretending to turn something upside down +146067;Stuffing something into something +94170;Putting something similar to other things that are already on the table +170545;Pulling something from right to left +200326;Moving something away from something +109679;Letting something roll along a flat surface +25015;Moving something and something away from each other +174464;Throwing something against something +79809;Trying to bend something unbendable so nothing happens +98449;Poking a hole into something soft +196892;Attaching something to something +189287;Moving something across a surface without it falling down +25057;Pulling two ends of something so that it gets stretched +28622;Lifting something up completely, then letting it drop down +121400;Pretending to be tearing something that is not tearable +71569;Moving something closer to something +127060;Pretending to take something from somewhere +190678;Pushing something so that it almost falls off but doesn't +11553;Approaching something with your camera +203681;Showing something on top of something +26122;Poking something so it slightly moves +138221;Pushing something so that it slightly moves +143888;Pretending to be tearing something that is not tearable +62121;Piling something up +153966;Putting something onto something else that cannot support it so it falls down +144632;Pouring something into something +146565;Taking one of many similar things on the table +102323;Holding something +151060;Throwing something in the air and letting it fall +141767;Pushing something so that it slightly moves +135535;Something being deflected from something +74178;Pushing something so that it falls off the table +95895;Plugging something into something but pulling it right out as you remove your hand +1601;Pushing something so that it falls off the table +151634;Putting something on a surface +147972;Hitting something with something +99017;Turning something upside down +144340;Moving something closer to something +206802;Putting something into something +5069;Spilling something onto something +581;Lifting something up completely, then letting it drop down +152017;Laying something on the table on its side, not upright +160352;Pretending to take something from somewhere +184872;Moving part of something +153952;Holding something in front of something +23598;Something falling like a rock +94080;Moving something up +155643;Putting something, something and something on the table +20520;Dropping something onto something +155047;Moving something down +141014;Dropping something into something +178265;Laying something on the table on its side, not upright +172315;Twisting something +103695;Moving something and something closer to each other +55170;Pushing something so that it falls off the table +120892;Holding something in front of something +162031;Holding something in front of something +41018;Pulling something from left to right +96083;Something colliding with something and both are being deflected +28008;Holding something over something +181946;Stuffing something into something +27029;Showing that something is empty +217318;Taking something out of something +157138;Pretending to be tearing something that is not tearable +151726;Pulling two ends of something so that it separates into two pieces +181176;Putting something into something +145967;Wiping something off of something +96573;Holding something over something +129148;Dropping something into something +4304;Moving something closer to something +60642;Plugging something into something +121163;Plugging something into something +182883;Uncovering something +129451;Uncovering something +93587;Pretending to take something from somewhere +6940;Showing something on top of something +100821;Holding something over something +115367;Dropping something behind something +129059;Putting something next to something +113967;Uncovering something +167240;Poking something so it slightly moves +172698;Stuffing something into something +111870;Pretending to be tearing something that is not tearable +79002;Taking something from somewhere +91999;Poking a stack of something so the stack collapses +176478;Putting something on a surface +210952;Taking one of many similar things on the table +40648;Holding something behind something +34364;Squeezing something +53194;Plugging something into something +196051;Pretending or trying and failing to twist something +147327;Pretending to pick something up +6967;Spreading something onto something +86020;Putting something in front of something +89765;Plugging something into something +78422;Throwing something in the air and letting it fall +101332;Tearing something just a little bit +32460;Squeezing something +45287;Moving something towards the camera +144225;Poking a stack of something without the stack collapsing +21510;Wiping something off of something +158383;Pushing something so it spins +132175;Spinning something that quickly stops spinning +4857;Tipping something over +203493;Putting something and something on the table +203204;Holding something in front of something +38451;Trying but failing to attach something to something because it doesn't stick +153370;Pushing something so that it slightly moves +18061;Wiping something off of something +200892;Showing something behind something +5183;Something falling like a feather or paper +177975;Tearing something into two pieces +39678;Plugging something into something +43394;Moving something away from something +114241;Twisting something +106318;Showing something next to something +7824;Tearing something just a little bit +16564;Turning something upside down +13608;Tipping something over +214665;Turning something upside down +44677;Touching (without moving) part of something +60473;Squeezing something +94734;Rolling something on a flat surface +91651;Turning something upside down +11679;Pulling two ends of something so that it separates into two pieces +182101;Plugging something into something but pulling it right out as you remove your hand +186338;Tipping something over +213639;Stuffing something into something +18822;Stuffing something into something +213746;Lifting up one end of something without letting it drop down +28825;Moving something and something away from each other +210762;Putting something on a surface +13696;Taking one of many similar things on the table +148862;Turning the camera right while filming something +104386;Stacking number of something +88803;Showing something on top of something +113063;Holding something over something +68926;Scooping something up with something +208299;Putting something onto something else that cannot support it so it falls down +192517;Showing something on top of something +188023;Unfolding something +141603;Something falling like a rock +43856;Putting something that cannot actually stand upright upright on the table, so it falls on its side +210749;Pushing something from left to right +114179;Pushing something from left to right +81560;Uncovering something +192491;Tipping something over +153436;Opening something +59947;Something falling like a rock +113212;Moving part of something +54237;Pushing something from right to left +76717;Covering something with something +218546;Moving something closer to something +170714;Lifting up one end of something without letting it drop down +204327;Pretending to close something without actually closing it +143965;Showing something to the camera +50318;Tearing something into two pieces +117257;Taking one of many similar things on the table +75939;Spinning something so it continues spinning +187488;Spinning something so it continues spinning +160869;Covering something with something +94840;Showing something next to something +10077;Closing something +48317;Throwing something against something +159440;Poking something so it slightly moves +84084;Stacking number of something +105809;Squeezing something +190847;Something falling like a rock +152722;Plugging something into something +1818;Stuffing something into something +121777;Moving something away from something +191312;Squeezing something +102145;Holding something +134819;Showing that something is empty +116831;Attaching something to something +144029;Covering something with something +87046;Moving something closer to something +65248;Touching (without moving) part of something +87483;Pulling two ends of something so that it gets stretched +163595;Holding something in front of something +53006;Showing something behind something +24409;Taking something from somewhere +220834;Pouring something into something until it overflows +101722;Pretending to throw something +56000;Pushing something so that it falls off the table +89219;Uncovering something +115772;Lifting something up completely, then letting it drop down +59317;Picking something up +71798;Holding something over something +40138;Plugging something into something +12208;Something falling like a feather or paper +169404;Approaching something with your camera +128632;Moving something across a surface until it falls down +79228;Tipping something over +47750;Showing something on top of something +98622;Laying something on the table on its side, not upright +57467;Pretending to put something next to something +159261;Moving something down +74339;Rolling something on a flat surface +96799;Showing something next to something +28937;Bending something until it breaks +156502;Something colliding with something and both are being deflected +166051;Opening something +141053;Stacking number of something +145978;Lifting up one end of something without letting it drop down +186637;Pouring something into something +11784;Stacking number of something +92952;Holding something over something +141217;Moving something and something away from each other +65456;Pushing something so that it falls off the table +131679;Tilting something with something on it until it falls off +205019;Hitting something with something +209888;Pretending to poke something +40263;Pretending or trying and failing to twist something +54773;Putting something on a surface +219928;Putting something on a surface +101003;Pretending to open something without actually opening it +162560;Rolling something on a flat surface +127765;Moving something and something away from each other +36690;Touching (without moving) part of something +136259;Plugging something into something +79255;Taking one of many similar things on the table +38713;Tipping something over +159390;Moving something and something closer to each other +123077;Covering something with something +102142;Moving something across a surface until it falls down +89187;Holding something in front of something +29394;Dropping something in front of something +162502;Spinning something so it continues spinning +131345;Throwing something in the air and letting it fall +5809;Moving something closer to something +93112;Holding something next to something +197273;Plugging something into something +144149;Putting something next to something +26023;Moving something and something closer to each other +198657;Turning the camera downwards while filming something +179742;Holding something behind something +201170;Moving something and something so they pass each other +190912;Pulling something from behind of something +184885;Putting something into something +207212;Pulling something from behind of something +130405;Putting something that cannot actually stand upright upright on the table, so it falls on its side +198083;Squeezing something +22380;Lifting something with something on it +97271;Pushing something so it spins +195459;Stuffing something into something +147461;Showing that something is empty +165985;Attaching something to something +170745;Hitting something with something +127590;Something falling like a rock +19271;Tearing something just a little bit +155833;Holding something behind something +79816;Rolling something on a flat surface +111931;Pretending to take something out of something +139708;Pretending to put something on a surface +192443;Stuffing something into something +122180;Pretending to take something from somewhere +129553;Moving something away from something +139616;Opening something +204308;Spinning something that quickly stops spinning +175351;Throwing something +45025;Pushing something so that it slightly moves +159616;Putting something into something +64984;Moving something closer to something +106865;Pushing something so that it slightly moves +116859;Something colliding with something and both are being deflected +112461;Taking one of many similar things on the table +19654;Plugging something into something +83889;Picking something up +80010;Something falling like a feather or paper +52939;Pushing something so that it slightly moves +44641;Pushing something so that it slightly moves +203674;Picking something up +97962;Stacking number of something +218998;Pretending to be tearing something that is not tearable +63169;Folding something +91700;Tearing something into two pieces +12797;Putting something behind something +205472;Dropping something next to something +26448;Pulling something out of something +115510;Putting something on a surface +120307;Moving something and something away from each other +111951;Holding something +27498;Moving something up +28986;Something falling like a rock +94350;Lifting something with something on it +99679;Putting something similar to other things that are already on the table +22955;Scooping something up with something +190379;Tipping something with something in it over, so something in it falls out +143220;Tearing something into two pieces +26846;Moving something and something closer to each other +11252;Putting something that cannot actually stand upright upright on the table, so it falls on its side +5639;Squeezing something +89186;Putting something into something +82254;Unfolding something +105971;Pulling something out of something +58575;Something falling like a feather or paper +189241;Holding something behind something +183015;Holding something behind something +168497;Trying to bend something unbendable so nothing happens +135239;Pretending to put something on a surface +182494;Pulling something out of something +185713;Poking something so lightly that it doesn't or almost doesn't move +87251;Showing something behind something +213789;Putting something into something +133267;Something colliding with something and both are being deflected +72914;Plugging something into something +139127;Digging something out of something +193419;Pretending to sprinkle air onto something +71087;Showing something behind something +35666;Tilting something with something on it slightly so it doesn't fall down +212513;Pouring something out of something +88726;Showing that something is empty +66011;Moving something away from the camera +78832;Turning something upside down +32368;Piling something up +66374;Pretending to close something without actually closing it +34099;Spinning something so it continues spinning +96286;Something falling like a rock +108569;Putting number of something onto something +31975;Pouring something into something +136956;Moving something closer to something +178121;Spreading something onto something +45934;Dropping something onto something +154235;Opening something +216787;Lifting something up completely, then letting it drop down +29537;Trying to bend something unbendable so nothing happens +15097;Squeezing something +83604;Tearing something into two pieces +60504;Dropping something onto something +194671;Throwing something in the air and letting it fall +79762;Moving something and something away from each other +167966;Tearing something into two pieces +96287;Squeezing something +58739;Pulling two ends of something so that it separates into two pieces +166572;Holding something next to something +186903;Holding something next to something +140595;Taking something out of something +40715;Piling something up +185783;Unfolding something +60589;Pushing something so that it almost falls off but doesn't +131680;Picking something up +177855;Pushing something so it spins +191672;Putting something next to something +99431;Moving something across a surface until it falls down +120232;Tearing something just a little bit +3211;Something falling like a feather or paper +108060;Picking something up +24660;Pretending to put something on a surface +202059;Pushing something so that it slightly moves +44644;Attaching something to something +154772;Wiping something off of something +200412;Pushing something from left to right +203500;Pushing something with something +56756;Pouring something into something +93088;Pretending to take something out of something +191780;Holding something over something +154727;Holding something over something +209646;Taking one of many similar things on the table +119893;Pretending to put something into something +57788;Showing a photo of something to the camera +136253;Pulling two ends of something so that it gets stretched +150728;Putting something on a surface +213486;Spinning something so it continues spinning +147634;Moving part of something +183449;Laying something on the table on its side, not upright +179036;Pretending to pick something up +50987;Holding something behind something +126883;Taking one of many similar things on the table +201339;Stuffing something into something +49173;Pushing something from right to left +166940;Showing that something is empty +78277;Lifting something with something on it +32393;Folding something +146954;Attaching something to something +90737;Putting something upright on the table +53532;Tearing something into two pieces +203155;Moving something up +3124;Plugging something into something +51939;Holding something next to something +6844;Twisting something +91747;Letting something roll along a flat surface +20260;Pushing something onto something +157085;Pushing something so that it slightly moves +53885;Holding something next to something +83298;Scooping something up with something +176729;Showing something on top of something +14740;Moving something and something closer to each other +138307;Lifting something up completely without letting it drop down +189384;Folding something +93716;Holding something behind something +164147;Moving something and something away from each other +152139;Pretending to put something on a surface +187555;Spinning something that quickly stops spinning +59450;Holding something in front of something +48191;Pretending to take something from somewhere +71694;Moving something and something closer to each other +214335;Tipping something over +31426;Rolling something on a flat surface +93586;Showing something behind something +190709;Twisting (wringing) something wet until water comes out +208040;Trying but failing to attach something to something because it doesn't stick +201222;Pulling something from right to left +143441;Picking something up +111776;Putting something into something +7140;Tilting something with something on it slightly so it doesn't fall down +119950;Putting something similar to other things that are already on the table +55022;Dropping something onto something +27138;Digging something out of something +19885;Pushing something from right to left +25041;Throwing something in the air and letting it fall +175333;Putting something into something +133047;Putting something upright on the table +118072;Taking one of many similar things on the table +9957;Pretending to pick something up +51517;Lifting something with something on it +87908;Putting something next to something +151027;Putting something and something on the table +159553;Something being deflected from something +119410;Piling something up +33453;Pretending or failing to wipe something off of something +212087;Covering something with something +65465;Something falling like a feather or paper +47544;Moving something and something closer to each other +49314;Showing something behind something +201463;Tilting something with something on it until it falls off +199200;Pushing something with something +175254;Holding something over something +90766;Pretending to open something without actually opening it +184061;Moving something away from the camera +73626;Folding something +151557;Opening something +166146;Putting something behind something +189526;Tipping something over +164580;Uncovering something +89022;Pulling two ends of something so that it separates into two pieces +195279;Rolling something on a flat surface +99882;Tipping something over +20204;Dropping something onto something +9412;Twisting (wringing) something wet until water comes out +139461;Plugging something into something +201126;Opening something +204848;Putting something and something on the table +150422;Something falling like a feather or paper +105364;Opening something +66565;Plugging something into something but pulling it right out as you remove your hand +8567;Moving something away from something +64670;Pulling something from right to left +159803;Holding something behind something +160479;Holding something next to something +119484;Pushing something so that it falls off the table +41034;Spinning something so it continues spinning +188679;Showing that something is inside something +56669;Pushing something so that it falls off the table +95266;Unfolding something +200422;Plugging something into something +107823;Touching (without moving) part of something +169628;Tearing something just a little bit +144027;Showing that something is empty +23287;Pushing something so that it falls off the table +196735;Pretending to take something from somewhere +94973;Picking something up +51830;Letting something roll down a slanted surface +96212;Dropping something behind something +30568;Pretending to close something without actually closing it +33890;Trying but failing to attach something to something because it doesn't stick +77734;Tipping something with something in it over, so something in it falls out +146758;Throwing something in the air and letting it fall +64111;Spilling something onto something +212933;Moving something away from something +77076;Showing something behind something +159619;Putting something on a surface +25473;Lifting something up completely without letting it drop down +145910;Pushing something so that it slightly moves +216495;Dropping something into something +126405;Bending something until it breaks +206155;Putting something on the edge of something so it is not supported and falls down +194648;Moving something and something closer to each other +37413;Spinning something that quickly stops spinning +152854;Holding something over something +190993;Twisting something +147330;Squeezing something +88068;Pulling something out of something +56930;Squeezing something +8459;Putting something next to something +161452;Showing that something is empty +24574;Turning the camera right while filming something +22399;Removing something, revealing something behind +34264;Putting something, something and something on the table +43132;Lifting something up completely without letting it drop down +68257;Pushing something from left to right +162423;Turning something upside down +97863;Plugging something into something +85933;Moving something away from something +191919;Pretending to turn something upside down +118982;Pulling two ends of something so that it separates into two pieces +166740;Opening something +74389;Showing something next to something +24017;Plugging something into something +43706;Holding something next to something +57976;Tipping something over +206423;Something falling like a feather or paper +59240;Spilling something behind something +1046;Laying something on the table on its side, not upright +177605;Picking something up +128379;Lifting something with something on it +187652;Pouring something into something +55962;Pretending to scoop something up with something +119574;Putting something next to something +194331;Lifting something with something on it +29312;Plugging something into something but pulling it right out as you remove your hand +72735;Pretending to be tearing something that is not tearable +158083;Tearing something into two pieces +106314;Showing that something is inside something +125492;Moving something closer to something +15295;Opening something +168038;Tilting something with something on it until it falls off +108240;Showing something behind something +64010;Covering something with something +77113;Plugging something into something +21650;Pretending to open something without actually opening it +18314;Failing to put something into something because something does not fit +49324;Putting something that can't roll onto a slanted surface, so it stays where it is +23741;Putting something on a surface +107702;Pushing something from right to left +9091;Throwing something against something +28680;Moving something closer to something +177534;Holding something next to something +94015;Showing something on top of something +168385;Holding something behind something +165898;Moving away from something with your camera +175933;Throwing something in the air and catching it +24794;Pretending to poke something +156737;Showing something next to something +5971;Pretending to take something from somewhere +107575;Wiping something off of something +148947;Something falling like a feather or paper +100171;Pushing something from left to right +183761;Something being deflected from something +11592;Holding something next to something +43426;Spinning something so it continues spinning +154725;Hitting something with something +140807;Showing something behind something +188789;Holding something over something +32838;Moving something across a surface until it falls down +99698;Putting something that can't roll onto a slanted surface, so it stays where it is +202492;Pretending to poke something +149845;Pushing something so that it falls off the table +25934;Hitting something with something +188796;Showing that something is inside something +219910;Squeezing something +199018;Spreading something onto something +174433;Showing something next to something +218618;Pushing something so it spins +101306;Throwing something against something +139044;Plugging something into something +205990;Putting something and something on the table +31732;Showing something on top of something +108571;Spinning something that quickly stops spinning +158093;Poking something so lightly that it doesn't or almost doesn't move +103593;Moving something away from something +26028;Pretending to be tearing something that is not tearable +149186;Holding something over something +198917;Picking something up +1885;Holding something in front of something +182179;Poking something so it slightly moves +46253;Turning the camera upwards while filming something +148634;Tearing something just a little bit +60891;Laying something on the table on its side, not upright +165771;Pushing something from left to right +215439;Showing something behind something +180499;Pretending to take something from somewhere +35199;Moving something and something closer to each other +70705;Putting something into something +173891;Taking something out of something +96194;Moving something closer to something +156491;Poking something so lightly that it doesn't or almost doesn't move +67731;Uncovering something +15676;Showing something on top of something +185351;Putting something and something on the table +218540;Closing something +199398;Holding something over something +149326;Pouring something into something +200291;Moving something up +202044;Opening something +122530;Something falling like a rock +177942;Throwing something +28886;Putting something that cannot actually stand upright upright on the table, so it falls on its side +219991;Letting something roll along a flat surface +106775;Showing something next to something +184010;Moving something and something away from each other +107022;Spilling something behind something +199840;Pushing something with something +205947;Picking something up +8454;Stuffing something into something +132564;Pulling something from left to right +78188;Pretending to put something next to something +13112;Putting something similar to other things that are already on the table +167800;Stuffing something into something +199951;Putting something similar to other things that are already on the table +177079;Bending something until it breaks +123029;Tearing something into two pieces +163204;Showing something behind something +186442;Touching (without moving) part of something +128872;Something being deflected from something +156442;Hitting something with something +64727;Rolling something on a flat surface +118765;Pulling something from right to left +123225;Attaching something to something +168917;Something falling like a feather or paper +37810;Putting number of something onto something +208349;Putting something on a surface +202138;Pretending or failing to wipe something off of something +218351;Pretending to pour something out of something, but something is empty +109804;Spreading something onto something +196371;Folding something +159275;Holding something behind something +112520;Folding something +53811;Dropping something onto something +132696;Stuffing something into something +59292;Turning something upside down +139027;Moving something and something so they pass each other +31689;Pretending to scoop something up with something +219520;Pulling two ends of something but nothing happens +220759;Tearing something into two pieces +147194;Stacking number of something +181243;Spinning something so it continues spinning +203876;Holding something +52116;Throwing something +195361;Covering something with something +153731;Bending something until it breaks +128578;Pushing something so that it slightly moves +39252;Pretending to poke something +178091;Something falling like a rock +212275;Squeezing something +89619;Pulling two ends of something so that it separates into two pieces +111462;Pouring something into something +132194;Holding something behind something +132461;Pretending to open something without actually opening it +57117;Unfolding something +164341;Covering something with something +6493;Tearing something just a little bit +141451;Showing a photo of something to the camera +164027;Pretending to be tearing something that is not tearable +30924;Covering something with something +117098;Something falling like a feather or paper +40440;Spinning something so it continues spinning +200604;Turning the camera left while filming something +181780;Turning something upside down +30579;Spinning something so it continues spinning +30221;Moving something and something closer to each other +110356;Tearing something just a little bit +51894;Covering something with something +193346;Covering something with something +64771;Squeezing something +52011;Hitting something with something +181372;Holding something next to something +137170;Pulling something from behind of something +27751;Taking something out of something +99798;Moving something and something closer to each other +24181;Letting something roll along a flat surface +14188;Taking something from somewhere +74867;Pretending to pick something up +68605;Holding something next to something +11375;Putting something on a surface +25855;Putting something similar to other things that are already on the table +30480;Rolling something on a flat surface +39055;Putting something on a surface +70205;Twisting something +151075;Closing something +184151;Pretending to put something into something +161272;Uncovering something +56285;Pretending to put something next to something +97170;Something falling like a rock +151966;Pretending to pick something up +168866;Moving part of something +207485;Putting something into something +170774;Bending something so that it deforms +111716;Pulling something out of something +165781;Tearing something into two pieces +210385;Pulling something onto something +117944;Putting something, something and something on the table +17340;Poking something so it slightly moves +30408;Moving something away from something +132894;Twisting something +111249;Something falling like a feather or paper +216002;Poking a stack of something so the stack collapses +70399;Moving something closer to something +72198;Holding something behind something +118557;Putting something underneath something +74511;Showing something next to something +22308;Showing something on top of something +212255;Picking something up +94094;Closing something +49381;Piling something up +41178;Holding something over something +127745;Uncovering something +127338;Dropping something onto something +157554;Turning the camera downwards while filming something +8898;Holding something behind something +31428;Throwing something in the air and letting it fall +45793;Putting something upright on the table +109395;Tipping something over +123988;Putting something upright on the table +23467;Throwing something +171903;Tearing something just a little bit +210622;Hitting something with something +55265;Tilting something with something on it slightly so it doesn't fall down +36650;Moving something and something closer to each other +57764;Pushing something from left to right +81393;Pushing something off of something +186183;Spinning something so it continues spinning +185412;Throwing something +48683;Dropping something into something +27972;Pulling something out of something +110398;Tipping something over +210115;Rolling something on a flat surface +158763;Showing something on top of something +148305;Pulling something from right to left +85926;Bending something so that it deforms +178037;Poking something so lightly that it doesn't or almost doesn't move +75051;Lifting a surface with something on it until it starts sliding down +71080;Pushing something from left to right +54151;Moving something down +55830;Taking something out of something +110177;Stuffing something into something +194183;Showing something behind something +132642;Pushing something with something +140262;Tearing something just a little bit +39059;Covering something with something +134795;Holding something next to something +169786;Moving something and something closer to each other +66328;Taking something from somewhere +208784;Approaching something with your camera +83643;Holding something +162825;Lifting something with something on it +220378;Moving something away from the camera +142156;Throwing something in the air and catching it +67106;Dropping something next to something +173589;Covering something with something +82595;Holding something next to something +156709;Something colliding with something and both are being deflected +30139;Hitting something with something +131646;Pretending to close something without actually closing it +74002;Something falling like a rock +30645;Throwing something in the air and letting it fall +22453;Showing something behind something +183836;Showing something behind something +1635;Hitting something with something +219386;Moving something across a surface without it falling down +164124;Tipping something over +154752;Touching (without moving) part of something +212746;Something falling like a feather or paper +170127;Pushing something so that it falls off the table +26973;Taking something from somewhere +47923;Tilting something with something on it until it falls off +160690;Poking something so lightly that it doesn't or almost doesn't move +111571;Covering something with something +80616;Moving something up +116595;Pushing something so that it slightly moves +196872;Laying something on the table on its side, not upright +51393;Bending something until it breaks +47228;Putting something into something +134232;Lifting something up completely without letting it drop down +17908;Pretending to open something without actually opening it +125539;Closing something +125164;Taking something out of something +79655;Squeezing something +109607;Pushing something with something +170948;Twisting something +41885;Tipping something over +55359;Something colliding with something and both are being deflected +81896;Scooping something up with something +74102;Holding something next to something +186682;Plugging something into something but pulling it right out as you remove your hand +85458;Plugging something into something +212263;Something colliding with something and both are being deflected +103668;Letting something roll along a flat surface +26666;Pretending to pick something up +151850;Pretending to throw something +64813;Pretending to put something next to something +100782;Laying something on the table on its side, not upright +91690;Spinning something so it continues spinning +98371;Pretending to take something out of something +46821;Putting something next to something +176387;Moving something down +125674;Pretending or trying and failing to twist something +194864;Pushing something so that it almost falls off but doesn't +60976;Pretending or trying and failing to twist something +99246;Something falling like a feather or paper +160153;Throwing something against something +125665;Folding something +145381;Pretending to open something without actually opening it +33179;Pulling something from left to right +23733;Pushing something so that it slightly moves +151202;Attaching something to something +150346;Squeezing something +212398;Trying to pour something into something, but missing so it spills next to it +148271;Throwing something +212556;Showing something on top of something +12209;Showing that something is empty +35916;Holding something behind something +120054;Moving part of something +122544;Pretending to be tearing something that is not tearable +38218;Moving something and something so they pass each other +126002;Taking something out of something +213214;Something falling like a feather or paper +144881;Moving something and something closer to each other +140267;Pretending to be tearing something that is not tearable +56136;Moving something and something closer to each other +63432;Moving something and something closer to each other +88555;Moving something across a surface without it falling down +98236;Showing something behind something +193240;Lifting something with something on it +66231;Putting something upright on the table +210360;Pushing something so that it slightly moves +33417;Touching (without moving) part of something +219957;Pretending to be tearing something that is not tearable +190669;Rolling something on a flat surface +60319;Taking something out of something +220667;Putting something that can't roll onto a slanted surface, so it slides down +81174;Folding something +151703;Picking something up +115450;Holding something in front of something +144005;Pouring something into something +151525;Taking something out of something +176658;Pulling something from right to left +113320;Pretending to open something without actually opening it +86162;Spinning something that quickly stops spinning +113976;Plugging something into something +136392;Throwing something against something +121099;Poking something so that it falls over +136499;Plugging something into something but pulling it right out as you remove your hand +106960;Pretending to scoop something up with something +1928;Showing something on top of something +60689;Pouring something onto something +207279;Moving something across a surface without it falling down +5289;Attaching something to something +54349;Plugging something into something +173822;Covering something with something +44328;Putting something, something and something on the table +181830;Showing that something is empty +122523;Putting number of something onto something +185989;Something falling like a rock +7930;Covering something with something +104943;Taking something out of something +185096;Lifting something with something on it +188454;Showing something behind something +11364;Something falling like a feather or paper +206838;Something falling like a feather or paper +92111;Dropping something into something +200001;Laying something on the table on its side, not upright +212388;Showing something next to something +126636;Moving something up +115121;Lifting something with something on it +110261;Plugging something into something +50097;Showing something behind something +89894;Putting something similar to other things that are already on the table +37355;Twisting something +64183;Opening something +90270;Turning the camera right while filming something +101713;Plugging something into something +66210;Taking something out of something +143899;Poking something so that it falls over +110538;Hitting something with something +15595;Showing something next to something +167412;Plugging something into something but pulling it right out as you remove your hand +15372;Pretending or failing to wipe something off of something +97184;Pushing something so it spins +10886;Turning something upside down +109458;Dropping something onto something +175415;Pretending to close something without actually closing it +183592;Spinning something that quickly stops spinning +111918;Something colliding with something and both are being deflected +107832;Hitting something with something +19808;Putting something into something +74806;Stacking number of something +3817;Showing something behind something +21965;Putting something and something on the table +56036;Poking something so lightly that it doesn't or almost doesn't move +160967;Lifting something with something on it +147961;Showing something next to something +91421;Pushing something so that it almost falls off but doesn't +82044;Throwing something +142065;Squeezing something +51741;Pouring something into something until it overflows +195327;Putting something on a surface +81077;Stacking number of something +112299;Taking one of many similar things on the table +86803;Squeezing something +101978;Turning something upside down +205895;Turning something upside down +105418;Moving something and something away from each other +168313;Laying something on the table on its side, not upright +200118;Putting something similar to other things that are already on the table +57888;Pretending to be tearing something that is not tearable +94891;Putting something on a surface +153987;Stacking number of something +85039;Pretending to be tearing something that is not tearable +17999;Plugging something into something +205346;Putting something on a flat surface without letting it roll +191403;Pushing something with something +93146;Pushing something so it spins +165763;Something falling like a feather or paper +62103;Pretending to close something without actually closing it +77361;Putting something on a surface +62040;Putting something in front of something +88411;Wiping something off of something +104076;Tilting something with something on it until it falls off +99833;Touching (without moving) part of something +51947;Moving something and something closer to each other +194362;Pretending to pick something up +145928;Lifting something with something on it +76937;Letting something roll down a slanted surface +72470;Showing something behind something +194925;Squeezing something +90700;Taking something out of something +41063;Putting something that can't roll onto a slanted surface, so it slides down +16063;Covering something with something +156062;Spinning something so it continues spinning +209793;Stacking number of something +107592;Putting something on a surface +172855;Something falling like a rock +187427;Pushing something so that it slightly moves +65826;Showing that something is inside something +204814;Plugging something into something +102989;Lifting up one end of something, then letting it drop down +99953;Moving something up +42268;Moving something and something away from each other +137255;Something colliding with something and both are being deflected +161726;Moving something away from something +95630;Throwing something +22478;Touching (without moving) part of something +125789;Putting something on a surface +2484;Pretending to put something into something +218653;Covering something with something +192382;Showing something on top of something +191653;Attaching something to something +15843;Turning the camera left while filming something +1164;Throwing something against something +134486;Showing something on top of something +90962;Holding something over something +99311;Poking something so it slightly moves +146327;Unfolding something +150682;Putting something similar to other things that are already on the table +185247;Lifting something with something on it +25302;Poking something so it slightly moves +111164;Pulling something from behind of something +48471;Putting something into something +105280;Pulling something from left to right +81292;Squeezing something +188736;Hitting something with something +30037;Pulling two ends of something but nothing happens +80206;Laying something on the table on its side, not upright +7501;Holding something behind something +199643;Squeezing something +103706;Twisting (wringing) something wet until water comes out +51735;Covering something with something +158263;Pretending to pick something up +125544;Something falling like a rock +116565;Pretending to put something next to something +185527;Showing something behind something +77477;Putting something that cannot actually stand upright upright on the table, so it falls on its side +18298;Pretending to be tearing something that is not tearable +195735;Pretending to put something next to something +161774;Tipping something over +96579;Showing something behind something +177670;Hitting something with something +81354;Putting something and something on the table +88091;Squeezing something +17887;Piling something up +43746;Putting something next to something +152622;Attaching something to something +70065;Turning the camera left while filming something +33166;Holding something in front of something +217644;Moving something and something so they pass each other +74728;Pushing something from left to right +61309;Pushing something with something +48687;Lifting something up completely, then letting it drop down +65299;Spilling something onto something +95859;Dropping something in front of something +134096;Moving something and something closer to each other +37853;Moving something towards the camera +140090;Turning something upside down +178604;Holding something over something +198823;Pretending to be tearing something that is not tearable +15307;Something colliding with something and both are being deflected +37971;Holding something over something +42815;Wiping something off of something +41836;Putting something similar to other things that are already on the table +94713;Digging something out of something +41708;Stuffing something into something +33269;Taking one of many similar things on the table +178532;Folding something +10949;Letting something roll along a flat surface +150259;Moving something away from the camera +110125;Scooping something up with something +95400;Trying but failing to attach something to something because it doesn't stick +180829;Taking one of many similar things on the table +87588;Poking something so it slightly moves +114375;Showing something behind something +94174;Putting something on a surface +155178;Poking something so it slightly moves +202318;Moving part of something +58256;Putting something similar to other things that are already on the table +143942;Something falling like a feather or paper +190209;Pretending to turn something upside down +209172;Pouring something onto something +86549;Showing that something is empty +80663;Throwing something against something +179676;Laying something on the table on its side, not upright +139956;Taking one of many similar things on the table +154659;Uncovering something +136291;Piling something up +58073;Lifting something up completely, then letting it drop down +60982;Putting something underneath something +178303;Opening something +17219;Something falling like a rock +51545;Putting something on a surface +69671;Poking something so lightly that it doesn't or almost doesn't move +186662;Pretending to squeeze something +186812;Opening something +192713;Picking something up +173482;Uncovering something +45819;Something falling like a rock +64237;Showing something on top of something +16462;Putting something into something +204330;Plugging something into something but pulling it right out as you remove your hand +115944;Moving part of something +121527;Putting number of something onto something +22444;Wiping something off of something +45380;Pulling something from left to right +124879;Holding something next to something +4135;Tilting something with something on it until it falls off +133685;Taking something out of something +195951;Showing that something is empty +211435;Tearing something into two pieces +113900;Pouring something out of something +164738;Putting something in front of something +49161;Bending something until it breaks +123536;Lifting a surface with something on it until it starts sliding down +189244;Bending something until it breaks +10632;Plugging something into something +142544;Plugging something into something but pulling it right out as you remove your hand +151113;Covering something with something +39128;Spinning something so it continues spinning +118048;Taking one of many similar things on the table +94969;Lifting up one end of something without letting it drop down +199980;Digging something out of something +151518;Putting something on a surface +200632;Throwing something against something +140764;Pulling something from left to right +9702;Turning something upside down +159473;Lifting something up completely without letting it drop down +116160;Poking a stack of something so the stack collapses +196574;Moving part of something +31832;Plugging something into something +103064;Pulling something from left to right +2297;Holding something over something +202437;Piling something up +159199;Hitting something with something +105886;Plugging something into something +33070;Pushing something from right to left +265;Plugging something into something but pulling it right out as you remove your hand +60289;Tilting something with something on it slightly so it doesn't fall down +219370;Pushing something so it spins +1900;Letting something roll up a slanted surface, so it rolls back down +61616;Holding something over something +152766;Throwing something onto a surface +122153;Lifting something up completely, then letting it drop down +38733;Letting something roll along a flat surface +117119;Tilting something with something on it until it falls off +6438;Pushing something from right to left +125439;Pretending to poke something +43246;Holding something behind something +217054;Pushing something so that it almost falls off but doesn't +144007;Poking something so lightly that it doesn't or almost doesn't move +20421;Tearing something just a little bit +22204;Tipping something with something in it over, so something in it falls out +173830;Moving something closer to something +150806;Twisting something +195973;Pouring something into something +178261;Moving part of something +171883;Showing that something is inside something +116611;Poking something so it slightly moves +117892;Pushing something so that it slightly moves +124018;Putting something next to something +85054;Lifting up one end of something, then letting it drop down +216755;Holding something over something +169269;Dropping something behind something +14083;Dropping something onto something +136376;Taking one of many similar things on the table +98471;Uncovering something +150114;Pretending to pick something up +173070;Tearing something into two pieces +171147;Tearing something into two pieces +17150;Something colliding with something and both are being deflected +5467;Showing that something is empty +82843;Something falling like a rock +59496;Pouring something into something +75690;Twisting (wringing) something wet until water comes out +82840;Putting something on a surface +199400;Rolling something on a flat surface +124288;Plugging something into something +160241;Spreading something onto something +126376;Holding something in front of something +161494;Pushing something from left to right +214181;Touching (without moving) part of something +24313;Lifting up one end of something, then letting it drop down +58465;Tearing something into two pieces +85272;Closing something +48120;Turning the camera downwards while filming something +6576;Moving something and something so they pass each other +207532;Showing something behind something +205153;Moving something away from something +117278;Moving something and something away from each other +168759;Turning something upside down +46137;Pretending to be tearing something that is not tearable +101136;Stuffing something into something +178381;Rolling something on a flat surface +59744;Something falling like a rock +142186;Moving something across a surface until it falls down +184362;Showing something behind something +59518;Turning something upside down +2464;Moving something down +47852;Piling something up +141002;Putting something on a surface +174413;Moving something closer to something +22891;Throwing something +29946;Hitting something with something +21250;Plugging something into something +120595;Putting something on a surface +194080;Lifting something with something on it +199686;Hitting something with something +209119;Covering something with something +6478;Plugging something into something but pulling it right out as you remove your hand +179258;Opening something +80809;Turning something upside down +29844;Folding something +219848;Putting something, something and something on the table +135252;Pretending to take something out of something +146486;Spinning something that quickly stops spinning +22894;Plugging something into something +23456;Putting something onto something +93513;Piling something up +22322;Moving something up +206637;Attaching something to something +82204;Tilting something with something on it until it falls off +134912;Taking something out of something +67690;Moving something down +80974;Pulling two ends of something so that it gets stretched +175732;Dropping something in front of something +76209;Tearing something just a little bit +99315;Pouring something into something +4964;Tipping something over +65496;Something colliding with something and both come to a halt +189944;Plugging something into something +149585;Spinning something that quickly stops spinning +124083;Approaching something with your camera +65057;Moving something down +196909;Something falling like a rock +46090;Lifting a surface with something on it until it starts sliding down +130559;Pushing something from right to left +20215;Trying to bend something unbendable so nothing happens +31165;Moving something across a surface until it falls down +96810;Tearing something into two pieces +61578;Something falling like a feather or paper +20870;Taking one of many similar things on the table +73657;Piling something up +202771;Spinning something that quickly stops spinning +208167;Pushing something so that it almost falls off but doesn't +173837;Letting something roll up a slanted surface, so it rolls back down +208;Covering something with something +70992;Tearing something into two pieces +182956;Picking something up +18304;Picking something up +121179;Moving something and something closer to each other +155413;Pushing something so that it slightly moves +6685;Moving something and something closer to each other +200664;Twisting something +111089;Tearing something just a little bit +214691;Something falling like a rock +21163;Taking something from somewhere +182961;Pushing something from left to right +134389;Holding something over something +48287;Putting something in front of something +217486;Spinning something that quickly stops spinning +58709;Dropping something onto something +12466;Pretending to pick something up +195757;Putting something similar to other things that are already on the table +154374;Pretending to poke something +70512;Moving something and something closer to each other +14326;Pretending to put something behind something +165892;Putting something that cannot actually stand upright upright on the table, so it falls on its side +4710;Letting something roll down a slanted surface +162389;Covering something with something +206074;Taking one of many similar things on the table +180087;Showing something on top of something +103882;Pretending to open something without actually opening it +174921;Sprinkling something onto something +137916;Lifting something up completely, then letting it drop down +207208;Lifting something with something on it +193941;Spilling something onto something +9906;Putting something that can't roll onto a slanted surface, so it stays where it is +140000;Tilting something with something on it until it falls off +147595;Plugging something into something +38067;Pretending to pick something up +50188;Showing something next to something +216744;Lifting up one end of something, then letting it drop down +19449;Tipping something over +74371;Holding something over something +85692;Tearing something into two pieces +123008;Putting something into something +201969;Pulling something from left to right +92766;Stacking number of something +20250;Pushing something off of something +165237;Bending something until it breaks +69506;Lifting something with something on it +59004;Plugging something into something +116383;Holding something over something +109604;Taking one of many similar things on the table +127835;Throwing something in the air and catching it +162438;Plugging something into something +202136;Moving something away from something +210720;Pretending to put something on a surface +124482;Stacking number of something +184802;Pretending to open something without actually opening it +155838;Moving away from something with your camera +128447;Taking one of many similar things on the table +176816;Bending something so that it deforms +119315;Pouring something into something +111139;Folding something +35100;Taking one of many similar things on the table +40011;Pushing something so that it falls off the table +183353;Letting something roll down a slanted surface +109603;Pushing something with something +183907;Moving something closer to something +189256;Showing that something is empty +89861;Dropping something onto something +18948;Putting something upright on the table +76207;Putting something on a surface +187860;Showing that something is empty +111910;Pouring something onto something +15109;Turning something upside down +10104;Pretending to open something without actually opening it +53376;Pushing something so that it slightly moves +164591;Folding something +69464;Showing that something is inside something +136636;Poking something so it slightly moves +109030;Holding something behind something +193044;Putting something into something +213506;Plugging something into something but pulling it right out as you remove your hand +209531;Throwing something in the air and catching it +53265;Holding something +49618;Opening something +59489;Letting something roll along a flat surface +5478;Tearing something just a little bit +109746;Pouring something onto something +125927;Holding something over something +81499;Taking one of many similar things on the table +140536;Poking something so that it falls over +114086;Piling something up +196247;Something falling like a rock +87113;Taking something out of something +133296;Plugging something into something +81816;Putting something similar to other things that are already on the table +105004;Unfolding something +43402;Putting something onto something +136806;Turning something upside down +123523;Moving something across a surface without it falling down +127541;Stacking number of something +198391;Squeezing something +55267;Plugging something into something +210482;Moving something and something away from each other +18942;Twisting something +211967;Poking a stack of something without the stack collapsing +186754;Pushing something from left to right +7249;Rolling something on a flat surface +189522;Letting something roll along a flat surface +33912;Picking something up +152495;Lifting something up completely without letting it drop down +131915;Plugging something into something but pulling it right out as you remove your hand +60318;Pushing something so that it slightly moves +71294;Unfolding something +162182;Pretending to open something without actually opening it +47933;Picking something up +144049;Touching (without moving) part of something +220348;Hitting something with something +175672;Letting something roll along a flat surface +140967;Spilling something behind something +47951;Dropping something onto something +188766;Tilting something with something on it slightly so it doesn't fall down +70143;Pretending to poke something +71603;Dropping something onto something +159087;Hitting something with something +50357;Closing something +64954;Showing something to the camera +26215;Trying to bend something unbendable so nothing happens +190736;Turning something upside down +27830;Tilting something with something on it slightly so it doesn't fall down +70845;Plugging something into something but pulling it right out as you remove your hand +75720;Holding something behind something +201295;Pouring something into something +51832;Throwing something onto a surface +82070;Pouring something onto something +10932;Taking one of many similar things on the table +168657;Lifting something with something on it +82096;Putting something on a surface +43778;Putting something on a surface +100199;Showing that something is empty +30184;Moving something closer to something +28388;Squeezing something +114880;Poking something so lightly that it doesn't or almost doesn't move +79568;Moving something down +173268;Poking something so lightly that it doesn't or almost doesn't move +81592;Throwing something in the air and catching it +65720;Plugging something into something +108862;Spreading something onto something +28291;Uncovering something +149794;Uncovering something +48442;Squeezing something +37370;Spinning something that quickly stops spinning +106768;Picking something up +100308;Putting something and something on the table +181712;Pretending to take something out of something +132921;Moving something across a surface until it falls down +102156;Pushing something from left to right +120338;Scooping something up with something +147944;Putting something, something and something on the table +75753;Putting something on a flat surface without letting it roll +124995;Something falling like a feather or paper +163765;Letting something roll along a flat surface +199972;Moving something and something so they collide with each other +131647;Rolling something on a flat surface +72190;Poking something so it slightly moves +194621;Spreading something onto something +192448;Holding something +166619;Moving something away from the camera +31240;Turning something upside down +44947;Rolling something on a flat surface +94459;Something falling like a rock +60972;Putting something similar to other things that are already on the table +130358;Moving something closer to something +51699;Moving something away from something +57538;Uncovering something +43352;Dropping something in front of something +171597;Letting something roll up a slanted surface, so it rolls back down +149376;Putting something on the edge of something so it is not supported and falls down +149776;Picking something up +205845;Moving something down +122926;Wiping something off of something +149389;Moving something and something closer to each other +135706;Laying something on the table on its side, not upright +28630;Pouring something onto something +31234;Dropping something next to something +36720;Letting something roll along a flat surface +169979;Moving something away from something +186153;Tearing something just a little bit +193314;Moving something and something closer to each other +133932;Lifting something up completely without letting it drop down +4873;Putting something onto something +207603;Lifting something up completely without letting it drop down +220353;Showing that something is inside something +4647;Tipping something over +75729;Taking something out of something +46572;Laying something on the table on its side, not upright +209168;Pushing something so that it almost falls off but doesn't +158212;Covering something with something +56191;Putting something on a surface +118258;Putting something on a surface +137817;Moving something and something away from each other +84176;Plugging something into something but pulling it right out as you remove your hand +80773;Plugging something into something +211647;Tearing something just a little bit +147200;Closing something +211167;Taking one of many similar things on the table +192464;Putting something onto something +68533;Pushing something so that it falls off the table +185898;Closing something +1717;Dropping something into something +99359;Throwing something in the air and letting it fall +183853;Twisting something +123948;Scooping something up with something +215372;Closing something +9149;Moving something away from something +157788;Dropping something behind something +23363;Moving something and something closer to each other +147948;Turning something upside down +179410;Touching (without moving) part of something +41604;Pushing something with something +29035;Moving something down +60828;Holding something behind something +218724;Folding something +57623;Covering something with something +130438;Showing something behind something +51235;Putting something onto something +104665;Moving something and something closer to each other +8794;Pretending to open something without actually opening it +219752;Showing something on top of something +168024;Throwing something against something +200909;Tearing something into two pieces +79348;Pulling something from left to right +147598;Pretending to turn something upside down +61337;Digging something out of something +133213;Moving something closer to something +168838;Lifting up one end of something, then letting it drop down +105365;Tearing something just a little bit +116437;Holding something in front of something +78651;Letting something roll up a slanted surface, so it rolls back down +139540;Pretending to squeeze something +134596;Moving something and something closer to each other +172208;Showing something behind something +204508;Tipping something with something in it over, so something in it falls out +6601;Letting something roll up a slanted surface, so it rolls back down +13566;Plugging something into something +104660;Turning something upside down +47801;Pushing something so that it slightly moves +14005;Pretending to turn something upside down +200216;Taking something out of something +48245;Putting something in front of something +180764;Something falling like a rock +18148;Pushing something from left to right +129358;Putting something similar to other things that are already on the table +197659;Pushing something so that it slightly moves +141226;Putting something and something on the table +139529;Poking something so lightly that it doesn't or almost doesn't move +200104;Rolling something on a flat surface +72250;Lifting up one end of something, then letting it drop down +18080;Stuffing something into something +104160;Moving something and something closer to each other +177215;Squeezing something +42877;Dropping something behind something +194473;Attaching something to something +184874;Pretending to take something out of something +209551;Pushing something with something +149746;Unfolding something +19873;Turning something upside down +7115;Stacking number of something +80018;Stacking number of something +183714;Showing something behind something +114602;Pushing something with something +67157;Taking one of many similar things on the table +54317;Taking something out of something +23964;Moving something down +105529;Something being deflected from something +127398;Pushing something onto something +6089;Tearing something just a little bit +18474;Opening something +4976;Pushing something so that it falls off the table +119346;Showing something on top of something +60;Putting something on the edge of something so it is not supported and falls down +160862;Tearing something into two pieces +83923;Lifting something with something on it +200606;Putting something onto something else that cannot support it so it falls down +150067;Dropping something onto something +113720;Putting something similar to other things that are already on the table +28151;Something falling like a feather or paper +105554;Uncovering something +157512;Letting something roll down a slanted surface +76791;Poking something so it slightly moves +143933;Folding something +79142;Taking something out of something +111192;Taking one of many similar things on the table +193970;Throwing something in the air and letting it fall +66148;Moving something down +204079;Plugging something into something but pulling it right out as you remove your hand +203435;Trying to bend something unbendable so nothing happens +36959;Moving something away from something +119201;Holding something over something +22749;Folding something +158925;Trying to bend something unbendable so nothing happens +145922;Pulling something out of something +53010;Poking something so it slightly moves +216798;Pushing something so that it falls off the table +95074;Turning the camera left while filming something +193984;Holding something behind something +215074;Something falling like a feather or paper +171667;Pretending to put something behind something +51472;Tearing something into two pieces +90860;Spinning something so it continues spinning +206301;Hitting something with something +190150;Putting something into something +109996;Covering something with something +17761;Poking a stack of something without the stack collapsing +11764;Tearing something just a little bit +74435;Showing that something is empty +181016;Lifting something up completely without letting it drop down +218488;Opening something +177856;Putting something into something +92053;Squeezing something +32709;Holding something next to something +127263;Putting something that cannot actually stand upright upright on the table, so it falls on its side +214990;Pretending to poke something +29652;Plugging something into something +137882;Holding something next to something +31021;Plugging something into something +27160;Something colliding with something and both are being deflected +163744;Picking something up +43136;Wiping something off of something +160248;Putting something next to something +177329;Stuffing something into something +112004;Taking one of many similar things on the table +74392;Letting something roll along a flat surface +113037;Dropping something into something +163565;Dropping something onto something +93855;Closing something +39323;Twisting something +37041;Closing something +163917;Pretending to poke something +118686;Plugging something into something but pulling it right out as you remove your hand +39840;Putting something on the edge of something so it is not supported and falls down +31250;Squeezing something +103524;Holding something over something +7925;Pushing something so that it almost falls off but doesn't +25740;Pretending to take something out of something +128826;Taking something out of something +22206;Showing something next to something +73373;Laying something on the table on its side, not upright +166444;Turning the camera upwards while filming something +82290;Pretending to open something without actually opening it +194146;Pulling something from left to right +27686;Moving something closer to something +219945;Throwing something +190759;Showing that something is inside something +28915;Pushing something so that it falls off the table +144204;Twisting something +28323;Uncovering something +176796;Covering something with something +14569;Pushing something onto something +173866;Showing that something is empty +212665;Moving something and something closer to each other +164833;Taking something out of something +117020;Something falling like a feather or paper +114684;Unfolding something +208251;Tearing something just a little bit +34705;Attaching something to something +150350;Something falling like a rock +124652;Putting something on a surface +69198;Showing something behind something +13595;Something falling like a rock +118823;Taking something out of something +134740;Pushing something so that it falls off the table +168303;Poking a hole into something soft +141274;Putting something similar to other things that are already on the table +3207;Stuffing something into something +175778;Sprinkling something onto something +71990;Showing that something is empty +24922;Letting something roll along a flat surface +83276;Showing that something is inside something +210814;Pushing something from left to right +207813;Scooping something up with something +154189;Pulling two ends of something but nothing happens +115415;Putting something into something +120610;Showing something on top of something +143915;Holding something next to something +167060;Approaching something with your camera +40764;Plugging something into something but pulling it right out as you remove your hand +105145;Pretending to take something out of something +132586;Turning something upside down +216273;Pushing something so that it almost falls off but doesn't +157782;Showing that something is empty +184288;Pouring something into something until it overflows +178118;Tearing something into two pieces +158874;Moving something and something closer to each other +12210;Trying to bend something unbendable so nothing happens +43399;Turning something upside down +141654;Uncovering something +138053;Pretending to squeeze something +174180;Pretending to poke something +98865;Taking one of many similar things on the table +164674;Plugging something into something but pulling it right out as you remove your hand +175317;Rolling something on a flat surface +7502;Moving something and something so they collide with each other +63925;Plugging something into something +182289;Unfolding something +149306;Stuffing something into something +180522;Pretending to open something without actually opening it +22217;Something falling like a rock +191274;Pulling something from left to right +4311;Pushing something with something +183378;Pretending to sprinkle air onto something +128436;Taking one of many similar things on the table +136758;Pulling two ends of something so that it gets stretched +123082;Putting something into something +167761;Pretending to put something onto something +48035;Moving part of something +35934;Putting something on a surface +6085;Pretending to close something without actually closing it +42686;Tearing something into two pieces +114467;Pushing something so that it falls off the table +134836;Holding something next to something +139340;Rolling something on a flat surface +69738;Picking something up +197531;Plugging something into something +73977;Showing something behind something +132291;Turning something upside down +74687;Lifting something up completely without letting it drop down +172165;Tilting something with something on it until it falls off +118669;Taking something out of something +82857;Moving something away from something +121050;Moving something down +88725;Pouring something into something +44931;Poking something so lightly that it doesn't or almost doesn't move +162029;Holding something next to something +88979;Throwing something against something +108307;Letting something roll along a flat surface +200321;Covering something with something +194971;Tipping something over +107652;Holding something next to something +21516;Opening something +159642;Poking a stack of something without the stack collapsing +74167;Holding something next to something +88032;Pushing something so that it falls off the table +7979;Trying to bend something unbendable so nothing happens +86189;Pretending to sprinkle air onto something +43247;Holding something behind something +51632;Tipping something over +70733;Holding something behind something +128924;Pushing something from left to right +154961;Twisting something +44072;Pretending or failing to wipe something off of something +99570;Pulling something from right to left +144916;Lifting something with something on it +152897;Pretending to pick something up +23725;Putting something into something +9370;Throwing something against something +170223;Letting something roll along a flat surface +133767;Lifting a surface with something on it but not enough for it to slide down +25390;Putting something into something +177511;Opening something +155322;Twisting (wringing) something wet until water comes out +16404;Scooping something up with something +180773;Something colliding with something and both come to a halt +7456;Moving something and something closer to each other +51840;Throwing something +163325;Pretending to pour something out of something, but something is empty +98131;Pushing something from left to right +28637;Turning something upside down +7932;Showing that something is inside something +105003;Letting something roll along a flat surface +127355;Closing something +216200;Pretending to open something without actually opening it +78279;Moving something away from the camera +78891;Tearing something into two pieces +147;Rolling something on a flat surface +212663;Taking something out of something +54170;Pushing something from left to right +45026;Pulling something out of something +112416;Putting something upright on the table +177544;Trying but failing to attach something to something because it doesn't stick +205775;Moving part of something +67192;Pushing something so that it falls off the table +11212;Piling something up +45810;Pouring something into something +80351;Pushing something off of something +20309;Piling something up +159633;Picking something up +7684;Turning something upside down +211852;Holding something next to something +25935;Attaching something to something +99893;Dropping something onto something +100758;Plugging something into something but pulling it right out as you remove your hand +172336;Pouring something onto something +216332;Pushing something so it spins +164631;Something falling like a rock +208962;Putting something on a surface +144148;Wiping something off of something +49696;Throwing something in the air and letting it fall +160123;Putting something in front of something +19596;Something colliding with something and both are being deflected +88669;Spinning something so it continues spinning +7840;Showing something on top of something +80355;Putting something in front of something +106760;Spreading something onto something +212777;Spinning something that quickly stops spinning +7360;Plugging something into something but pulling it right out as you remove your hand +75082;Plugging something into something but pulling it right out as you remove your hand +149982;Pouring something into something +114709;Holding something behind something +61442;Holding something next to something +93937;Putting something that cannot actually stand upright upright on the table, so it falls on its side +60444;Poking something so lightly that it doesn't or almost doesn't move +89418;Turning something upside down +136545;Lifting up one end of something without letting it drop down +100566;Taking something out of something +159861;Turning something upside down +77957;Tearing something just a little bit +32547;Showing something behind something +5461;Putting something similar to other things that are already on the table +133297;Something falling like a rock +47254;Poking something so it slightly moves +121720;Turning something upside down +11547;Moving something closer to something +217206;Pouring something into something +164316;Turning something upside down +180446;Attaching something to something +200768;Showing that something is inside something +156581;Stuffing something into something +164619;Putting something on a surface +141790;Lifting something with something on it +94437;Sprinkling something onto something +111279;Lifting a surface with something on it until it starts sliding down +167302;Showing something on top of something +156032;Tearing something just a little bit +89340;Attaching something to something +116678;Putting something onto something +120299;Tipping something over +125215;Twisting something +127551;Holding something over something +129485;Putting something similar to other things that are already on the table +10845;Tearing something into two pieces +175321;Rolling something on a flat surface +76247;Holding something next to something +95896;Dropping something onto something +114438;Dropping something in front of something +110888;Tearing something into two pieces +77051;Pushing something from left to right +5911;Dropping something next to something +64698;Unfolding something +56828;Pulling something out of something +24235;Trying to pour something into something, but missing so it spills next to it +66816;Showing something on top of something +125009;Pretending to put something on a surface +105765;Showing something on top of something +155129;Pretending to poke something +165563;Moving something down +83431;Pretending to close something without actually closing it +121817;Tilting something with something on it until it falls off +16297;Taking something out of something +27651;Showing something behind something +10063;Dropping something onto something +206936;Wiping something off of something +46406;Showing something behind something +200442;Folding something +77617;Lifting up one end of something without letting it drop down +206757;Plugging something into something but pulling it right out as you remove your hand +67203;Showing that something is inside something +29772;Picking something up +19703;Holding something behind something +9379;Laying something on the table on its side, not upright +23627;Taking something out of something +36740;Covering something with something +2400;Holding something behind something +54704;Moving something across a surface without it falling down +46934;Poking something so that it falls over +170354;Pretending or failing to wipe something off of something +127119;Letting something roll down a slanted surface +122599;Throwing something +210040;Piling something up +15456;Twisting (wringing) something wet until water comes out +179966;Pretending to pour something out of something, but something is empty +18286;Taking one of many similar things on the table +55063;Putting something similar to other things that are already on the table +75019;Rolling something on a flat surface +118109;Something falling like a rock +93091;Dropping something behind something +168739;Showing something to the camera +152685;Piling something up +144016;Touching (without moving) part of something +76375;Pretending or failing to wipe something off of something +211661;Trying but failing to attach something to something because it doesn't stick +185228;Dropping something next to something +158216;Pretending to open something without actually opening it +112294;Pushing something so that it slightly moves +129456;Burying something in something +165468;Lifting something up completely, then letting it drop down +143218;Tipping something over +38425;Plugging something into something +29669;Putting something in front of something +183157;Spinning something that quickly stops spinning +182076;Throwing something in the air and letting it fall +156513;Moving something closer to something +128134;Taking something out of something +214363;Putting something on a flat surface without letting it roll +211026;Putting something onto something +161230;Showing something to the camera +122244;Pushing something from right to left +179347;Moving something and something away from each other +199525;Pretending to take something out of something +187695;Pretending to put something on a surface +202932;Pretending to pick something up +205575;Showing something on top of something +26793;Showing something behind something +84018;Pushing something off of something +92564;Putting something into something +205273;Holding something over something +167455;Moving something and something so they collide with each other +156167;Piling something up +204084;Pulling two ends of something but nothing happens +46765;Stuffing something into something +55069;Putting something on a surface +209927;Moving something away from something +155263;Picking something up +210880;Pushing something with something +8645;Something falling like a rock +141291;Putting something similar to other things that are already on the table +38536;Moving something down +212220;Putting something and something on the table +197629;Stuffing something into something +43613;Moving something and something away from each other +70554;Tilting something with something on it until it falls off +67315;Tearing something just a little bit +220789;Moving part of something +20120;Pouring something into something until it overflows +79332;Tilting something with something on it until it falls off +53180;Plugging something into something +153615;Pushing something so that it slightly moves +216321;Dropping something in front of something +148220;Laying something on the table on its side, not upright +186881;Pretending to turn something upside down +176485;Throwing something in the air and letting it fall +63592;Moving something down +116089;Pretending to pour something out of something, but something is empty +178487;Tearing something into two pieces +205907;Pretending to pick something up +138039;Stacking number of something +182092;Pretending to sprinkle air onto something +64018;Moving something and something away from each other +26284;Pretending to put something behind something +172062;Scooping something up with something +212889;Lifting something up completely, then letting it drop down +154530;Moving something and something closer to each other +175898;Stacking number of something +148527;Unfolding something +3638;Spilling something onto something +131722;Putting something and something on the table +2695;Showing something next to something +201520;Poking something so it slightly moves +85098;Tearing something just a little bit +59404;Pretending to be tearing something that is not tearable +140182;Folding something +10933;Unfolding something +34991;Uncovering something +208473;Holding something over something +9138;Pushing something so that it slightly moves +13910;Putting something on a flat surface without letting it roll +119248;Opening something +204863;Tearing something just a little bit +197722;Stacking number of something +208319;Moving something away from something +181693;Squeezing something +169782;Pretending to open something without actually opening it +196850;Pouring something into something +87051;Dropping something next to something +50948;Unfolding something +15007;Spinning something that quickly stops spinning +29688;Opening something +129810;Turning something upside down +136924;Moving something and something away from each other +182957;Touching (without moving) part of something +153456;Pouring something into something +20880;Throwing something in the air and letting it fall +55337;Poking something so lightly that it doesn't or almost doesn't move +85508;Lifting something up completely, then letting it drop down +156128;Pretending to pick something up +45071;Opening something +155292;Moving something and something away from each other +161219;Plugging something into something +22248;Closing something +147197;Taking something from somewhere +118147;Uncovering something +104205;Pouring something into something +181656;Showing that something is inside something +62857;Lifting up one end of something without letting it drop down +5457;Pushing something so that it slightly moves +219355;Attaching something to something +64376;Turning the camera left while filming something +53876;Turning something upside down +193092;Pretending to take something out of something +113218;Holding something +187346;Laying something on the table on its side, not upright +99219;Showing something next to something +178475;Pulling two ends of something but nothing happens +137529;Twisting something +96517;Squeezing something +72411;Showing that something is inside something +203232;Something falling like a feather or paper +103313;Failing to put something into something because something does not fit +66652;Pouring something onto something +143973;Piling something up +105550;Hitting something with something +161383;Putting something upright on the table +169182;Dropping something into something +131388;Poking something so lightly that it doesn't or almost doesn't move +59358;Putting something similar to other things that are already on the table +162922;Lifting up one end of something, then letting it drop down +6998;Lifting something with something on it +18319;Moving something closer to something +200635;Moving part of something +139643;Pushing something so that it falls off the table +64740;Pushing something from left to right +101;Throwing something in the air and catching it +86176;Picking something up +22781;Spinning something so it continues spinning +23586;Wiping something off of something +115558;Stacking number of something +116917;Attaching something to something +150410;Attaching something to something +46425;Pretending to sprinkle air onto something +12036;Turning something upside down +149449;Plugging something into something but pulling it right out as you remove your hand +126161;Pushing something from left to right +3555;Pushing something from left to right +173217;Pouring something into something +180520;Attaching something to something +34333;Lifting something up completely without letting it drop down +83684;Pushing something so that it almost falls off but doesn't +194374;Twisting (wringing) something wet until water comes out +173239;Removing something, revealing something behind +201079;Turning something upside down +101110;Failing to put something into something because something does not fit +217058;Pushing something so that it almost falls off but doesn't +2103;Pushing something from left to right +41298;Pretending to open something without actually opening it +104416;Turning something upside down +143960;Sprinkling something onto something +170563;Lifting something with something on it +10743;Lifting up one end of something, then letting it drop down +118476;Pushing something so that it slightly moves +17818;Putting something underneath something +202089;Lifting up one end of something, then letting it drop down +171953;Showing something next to something +110360;Showing something on top of something +138711;Throwing something against something +80813;Moving something and something away from each other +91952;Spinning something so it continues spinning +90686;Pretending to poke something +39882;Moving something and something closer to each other +180922;Stuffing something into something +158905;Pretending to be tearing something that is not tearable +90731;Putting something in front of something +83849;Picking something up +172952;Moving something and something closer to each other +168269;Putting something on the edge of something so it is not supported and falls down +60211;Putting something next to something +210449;Pushing something with something +168897;Pretending to be tearing something that is not tearable +128580;Folding something +199814;Moving something and something away from each other +118548;Putting something next to something +176394;Opening something +68590;Covering something with something +176768;Squeezing something +147703;Something falling like a rock +84428;Pretending to sprinkle air onto something +4582;Tearing something just a little bit +65243;Moving something away from something +95588;Lifting up one end of something without letting it drop down +205719;Plugging something into something but pulling it right out as you remove your hand +75574;Poking something so lightly that it doesn't or almost doesn't move +166834;Plugging something into something +189249;Pushing something so that it falls off the table +199529;Putting something into something +28141;Holding something in front of something +217627;Pretending to open something without actually opening it +184993;Plugging something into something but pulling it right out as you remove your hand +63910;Tearing something into two pieces +201107;Wiping something off of something +10448;Uncovering something +181056;Pretending to poke something +1333;Something falling like a rock +9755;Uncovering something +96176;Moving something closer to something +114282;Holding something behind something +48731;Moving something towards the camera +54498;Picking something up +138454;Pushing something from left to right +215877;Pouring something into something +135560;Opening something +22758;Letting something roll down a slanted surface +99512;Lifting something with something on it +165661;Putting something next to something +115338;Holding something in front of something +51463;Pulling something out of something +203693;Trying to pour something into something, but missing so it spills next to it +155074;Taking something out of something +89059;Putting something onto something else that cannot support it so it falls down +117022;Something being deflected from something +184836;Something falling like a rock +178981;Putting something into something +144100;Tearing something into two pieces +154926;Lifting something with something on it +89875;Holding something next to something +169545;Pushing something so that it falls off the table +146357;Turning the camera left while filming something +209019;Pushing something from left to right +75888;Something being deflected from something +95687;Hitting something with something +101671;Pretending to open something without actually opening it +183200;Dropping something onto something +80433;Pretending to take something from somewhere +187154;Uncovering something +199586;Moving something closer to something +118034;Dropping something into something +207723;Putting something upright on the table +106525;Pushing something so that it almost falls off but doesn't +148812;Touching (without moving) part of something +188354;Covering something with something +55813;Dropping something behind something +24645;Throwing something in the air and catching it +151502;Stacking number of something +58255;Pouring something into something until it overflows +104913;Poking something so lightly that it doesn't or almost doesn't move +213197;Lifting a surface with something on it until it starts sliding down +48925;Covering something with something +204446;Pretending or trying and failing to twist something +2973;Holding something +39953;Stacking number of something +27289;Pretending to pour something out of something, but something is empty +128982;Holding something over something +1352;Covering something with something +66749;Showing something behind something +218855;Taking something out of something +123086;Holding something next to something +72000;Picking something up +52159;Pushing something so it spins +191105;Putting something and something on the table +41016;Throwing something in the air and catching it +159094;Holding something next to something +88785;Moving something and something closer to each other +192886;Pushing something so that it slightly moves +52098;Pretending to open something without actually opening it +21067;Lifting up one end of something without letting it drop down +198227;Something falling like a rock +34407;Pouring something into something +25350;Moving something and something closer to each other +113762;Putting something similar to other things that are already on the table +121354;Pretending to be tearing something that is not tearable +211866;Pushing something so it spins +49349;Tearing something into two pieces +191724;Dropping something onto something +59515;Pretending to poke something +185549;Tearing something into two pieces +13044;Putting something that cannot actually stand upright upright on the table, so it falls on its side +156861;Covering something with something +189677;Wiping something off of something +85566;Putting something behind something +113646;Stuffing something into something +183647;Moving something up +36488;Plugging something into something but pulling it right out as you remove your hand +22026;Letting something roll along a flat surface +70895;Hitting something with something +68323;Letting something roll along a flat surface +116266;Tipping something over +184895;Dropping something next to something +141351;Putting number of something onto something +7915;Spilling something onto something +200802;Uncovering something +198943;Plugging something into something but pulling it right out as you remove your hand +75885;Stuffing something into something +102132;Digging something out of something +62618;Putting something upright on the table +3576;Lifting up one end of something, then letting it drop down +71115;Showing something behind something +174367;Moving something and something away from each other +132797;Moving something down +129872;Tipping something over +91129;Squeezing something +40572;Picking something up +21745;Rolling something on a flat surface +211522;Throwing something in the air and catching it +64995;Putting number of something onto something +162;Folding something +108699;Holding something behind something +11586;Trying but failing to attach something to something because it doesn't stick +131035;Taking one of many similar things on the table +201260;Spreading something onto something +52216;Showing something on top of something +135386;Tearing something into two pieces +58749;Letting something roll up a slanted surface, so it rolls back down +22665;Rolling something on a flat surface +139138;Pushing something from right to left +37387;Bending something until it breaks +149934;Lifting something up completely, then letting it drop down +20980;Showing that something is empty +130660;Twisting something +209211;Covering something with something +48934;Putting something on a surface +104743;Tilting something with something on it until it falls off +6359;Approaching something with your camera +214499;Stacking number of something +139483;Moving part of something +159072;Pushing something from left to right +101370;Hitting something with something +92054;Hitting something with something +205419;Something falling like a feather or paper +92453;Tearing something into two pieces +164834;Moving something and something away from each other +150954;Turning something upside down +141973;Throwing something against something +71469;Pretending to turn something upside down +55459;Burying something in something +24933;Something falling like a rock +197834;Trying but failing to attach something to something because it doesn't stick +28774;Squeezing something +2238;Throwing something +5694;Holding something in front of something +36757;Holding something +76212;Tipping something over +20791;Dropping something onto something +128592;Dropping something behind something +8907;Pouring something out of something +116410;Pouring something onto something +33344;Scooping something up with something +115660;Something colliding with something and both are being deflected +149084;Showing that something is inside something +29784;Pretending to scoop something up with something +58788;Pretending to poke something +32150;Holding something +145244;Moving something closer to something +18543;Pretending to put something on a surface +27744;Showing a photo of something to the camera +47646;Moving something and something away from each other +40100;Throwing something +215256;Turning the camera left while filming something +56459;Taking something out of something +18258;Putting something on a flat surface without letting it roll +1301;Dropping something onto something +136604;Plugging something into something +28090;Piling something up +149128;Spreading something onto something +192496;Pretending to put something on a surface +130374;Pretending to put something underneath something +88824;Showing something to the camera +188653;Holding something next to something +149928;Pushing something off of something +159887;Uncovering something +120433;Holding something in front of something +208667;Showing that something is empty +119337;Taking one of many similar things on the table +220521;Pushing something so that it falls off the table +9231;Pushing something so that it falls off the table +110700;Pretending to put something on a surface +146323;Unfolding something +55517;Taking something out of something +24901;Stacking number of something +84544;Putting something on a surface +145258;Attaching something to something +75163;Holding something behind something +105468;Putting something that cannot actually stand upright upright on the table, so it falls on its side +116108;Poking something so it slightly moves +12045;Poking something so lightly that it doesn't or almost doesn't move +216220;Tearing something into two pieces +216628;Lifting a surface with something on it but not enough for it to slide down +183476;Moving something up +163360;Showing something on top of something +148124;Holding something in front of something +134914;Pretending to open something without actually opening it +159348;Plugging something into something +126733;Laying something on the table on its side, not upright +82764;Pretending to squeeze something +15501;Moving something closer to something +108101;Putting number of something onto something +20777;Plugging something into something but pulling it right out as you remove your hand +145930;Putting something upright on the table +192556;Tilting something with something on it until it falls off +62971;Bending something so that it deforms +16793;Touching (without moving) part of something +61648;Something falling like a feather or paper +173445;Uncovering something +45225;Plugging something into something +13810;Spinning something that quickly stops spinning +128941;Throwing something in the air and letting it fall +107540;Pouring something into something +41317;Moving something up +33626;Poking something so it slightly moves +128147;Moving something and something closer to each other +71369;Lifting something up completely without letting it drop down +96193;Lifting up one end of something, then letting it drop down +96276;Rolling something on a flat surface +105057;Plugging something into something but pulling it right out as you remove your hand +194259;Unfolding something +126536;Folding something +214632;Scooping something up with something +73064;Showing something behind something +84604;Tearing something just a little bit +179386;Laying something on the table on its side, not upright +205065;Plugging something into something but pulling it right out as you remove your hand +29209;Pushing something so that it falls off the table +91270;Trying to pour something into something, but missing so it spills next to it +12379;Lifting something up completely without letting it drop down +26055;Plugging something into something +103072;Bending something until it breaks +154408;Unfolding something +216131;Showing something behind something +21141;Holding something over something +75507;Closing something +185639;Letting something roll along a flat surface +156397;Holding something over something +125295;Poking something so it slightly moves +6694;Lifting something up completely, then letting it drop down +177816;Lifting something with something on it +9760;Plugging something into something +68403;Putting something that cannot actually stand upright upright on the table, so it falls on its side +169481;Throwing something against something +198355;Putting something in front of something +13751;Putting something on a surface +98189;Turning something upside down +157682;Holding something in front of something +18239;Digging something out of something +196739;Pulling something from right to left +211907;Opening something +181641;Spinning something that quickly stops spinning +213860;Tearing something into two pieces +141046;Tipping something with something in it over, so something in it falls out +26932;Plugging something into something but pulling it right out as you remove your hand +83608;Pushing something so that it falls off the table +145406;Lifting up one end of something without letting it drop down +193812;Throwing something +186420;Pulling something from left to right +131115;Squeezing something +11527;Plugging something into something but pulling it right out as you remove your hand +210420;Opening something +34821;Attaching something to something +87589;Pretending to squeeze something +112517;Moving something and something away from each other +183337;Pushing something so that it slightly moves +131143;Putting something on a surface +11767;Taking something out of something +192490;Pushing something from right to left +104955;Putting something underneath something +57501;Putting something similar to other things that are already on the table +188562;Lifting up one end of something, then letting it drop down +129304;Letting something roll up a slanted surface, so it rolls back down +214965;Lifting something up completely, then letting it drop down +141775;Showing that something is inside something +43622;Putting something into something +124375;Turning something upside down +6984;Poking something so it slightly moves +135428;Dropping something behind something +164775;Tearing something into two pieces +48116;Putting something into something +163914;Putting something on a surface +93806;Dropping something onto something +131625;Tearing something just a little bit +28671;Tearing something just a little bit +92102;Laying something on the table on its side, not upright +106218;Tearing something just a little bit +181531;Moving something and something closer to each other +62134;Plugging something into something but pulling it right out as you remove your hand +47094;Attaching something to something +149371;Moving something towards the camera +92144;Showing something behind something +73735;Tilting something with something on it until it falls off +199906;Piling something up +148759;Unfolding something +30982;Putting something into something +24161;Taking something out of something +193393;Turning something upside down +16426;Putting something that can't roll onto a slanted surface, so it stays where it is +123138;Putting something in front of something +84234;Attaching something to something +47159;Stuffing something into something +110185;Holding something behind something +208399;Moving something and something away from each other +219607;Turning the camera downwards while filming something +32748;Pulling something from left to right +126149;Moving something away from the camera +174614;Pushing something off of something +107659;Lifting something with something on it +214890;Poking something so lightly that it doesn't or almost doesn't move +48903;Showing something on top of something +65003;Showing that something is empty +36381;Showing something on top of something +133261;Pretending to put something on a surface +196090;Pushing something from left to right +54035;Putting something into something +65414;Throwing something onto a surface +123762;Pretending to put something onto something +15638;Uncovering something +140349;Putting something upright on the table +94228;Spinning something that quickly stops spinning +143647;Hitting something with something +131178;Pretending to close something without actually closing it +173380;Something being deflected from something +13574;Tearing something just a little bit +197033;Dropping something into something +96941;Touching (without moving) part of something +118351;Stacking number of something +152054;Bending something so that it deforms +164254;Moving away from something with your camera +156565;Letting something roll along a flat surface +218626;Putting something and something on the table +8335;Pulling something out of something +177944;Letting something roll along a flat surface +6160;Turning something upside down +159694;Showing something on top of something +14923;Lifting something with something on it +154893;Holding something +19613;Letting something roll along a flat surface +200711;Putting something onto something else that cannot support it so it falls down +4022;Pouring something out of something +109476;Lifting up one end of something, then letting it drop down +109275;Pretending to throw something +137248;Moving part of something +14082;Turning the camera upwards while filming something +109372;Putting something in front of something +191679;Pretending to pick something up +209361;Wiping something off of something +102065;Showing something behind something +48107;Removing something, revealing something behind +80230;Plugging something into something +106958;Throwing something in the air and catching it +33716;Putting something onto something +73355;Pretending to open something without actually opening it +103501;Pretending to scoop something up with something +142419;Taking one of many similar things on the table +188738;Spilling something next to something +61555;Putting something in front of something +140828;Bending something until it breaks +157660;Throwing something against something +5839;Plugging something into something +39555;Poking something so it slightly moves +65905;Spinning something so it continues spinning +83582;Showing that something is inside something +4588;Opening something +91610;Showing something behind something +142036;Opening something +136786;Moving something away from something +56296;Tilting something with something on it until it falls off +179212;Letting something roll along a flat surface +113207;Lifting up one end of something without letting it drop down +11627;Pushing something from left to right +14452;Pulling two ends of something but nothing happens +207743;Closing something +183524;Moving something and something so they pass each other +97162;Tilting something with something on it until it falls off +213850;Lifting something up completely without letting it drop down +1260;Poking something so it slightly moves +98499;Lifting something with something on it +172184;Plugging something into something +7543;Plugging something into something +211746;Unfolding something +31184;Plugging something into something +104740;Piling something up +211432;Lifting up one end of something without letting it drop down +156932;Hitting something with something +4928;Pulling something from left to right +135099;Tipping something over +145822;Dropping something in front of something +41091;Holding something over something +45318;Pretending to be tearing something that is not tearable +191018;Lifting something up completely, then letting it drop down +163906;Pushing something from left to right +24523;Putting something similar to other things that are already on the table +78931;Poking a stack of something without the stack collapsing +69585;Throwing something +118076;Pouring something onto something +66197;Putting number of something onto something +11646;Tearing something just a little bit +118509;Wiping something off of something +75679;Dropping something onto something +140752;Spilling something onto something +208201;Lifting something up completely, then letting it drop down +86329;Putting something on a surface +36053;Twisting something +109564;Tearing something into two pieces +110167;Dropping something onto something +173472;Pulling two ends of something so that it gets stretched +76817;Putting something on a surface +38978;Bending something until it breaks +17862;Pulling something from right to left +47515;Throwing something in the air and letting it fall +58156;Pushing something from right to left +155320;Taking something out of something +26395;Pushing something so it spins +151403;Spinning something that quickly stops spinning +92405;Putting something on a surface +193618;Something falling like a rock +179392;Spinning something that quickly stops spinning +150081;Pushing something so that it falls off the table +48277;Putting something upright on the table +208436;Holding something over something +133919;Tipping something over +12810;Pretending to sprinkle air onto something +175549;Putting something upright on the table +69278;Pouring something out of something +180357;Stuffing something into something +64939;Pouring something into something +61716;Moving something across a surface without it falling down +27189;Pretending to open something without actually opening it +59297;Pushing something so that it slightly moves +199210;Pouring something onto something +215964;Spinning something so it continues spinning +106943;Dropping something onto something +161979;Spinning something that quickly stops spinning +54532;Opening something +72211;Lifting something up completely without letting it drop down +215493;Pretending to poke something +199260;Turning the camera upwards while filming something +89869;Putting something into something +56774;Holding something next to something +178380;Putting something similar to other things that are already on the table +68826;Pushing something from right to left +159709;Trying but failing to attach something to something because it doesn't stick +120593;Moving something and something away from each other +62947;Pretending to turn something upside down +10173;Rolling something on a flat surface +60314;Pretending to take something from somewhere +44933;Pushing something from left to right +175296;Tearing something into two pieces +192166;Showing something behind something +144224;Attaching something to something +128605;Stacking number of something +91738;Piling something up +112153;Lifting something up completely without letting it drop down +186114;Turning the camera left while filming something +200595;Putting something into something +21359;Putting something on the edge of something so it is not supported and falls down +119056;Dropping something in front of something +81495;Pretending to open something without actually opening it +109938;Pretending to sprinkle air onto something +593;Pretending to be tearing something that is not tearable +217752;Turning the camera upwards while filming something +18365;Taking one of many similar things on the table +197753;Putting something next to something +126422;Opening something +95183;Holding something +140499;Lifting something with something on it +139619;Showing something next to something +168849;Something falling like a feather or paper +157335;Moving something and something closer to each other +146406;Lifting something up completely, then letting it drop down +133896;Stacking number of something +174906;Trying to bend something unbendable so nothing happens +181775;Laying something on the table on its side, not upright +146425;Moving something away from something +143914;Pouring something into something +46288;Pretending or failing to wipe something off of something +97910;Throwing something in the air and catching it +10325;Poking something so lightly that it doesn't or almost doesn't move +194894;Putting something similar to other things that are already on the table +119454;Dropping something onto something +128689;Closing something +58304;Pretending to sprinkle air onto something +166289;Putting something upright on the table +166918;Dropping something into something +3465;Approaching something with your camera +193712;Something falling like a feather or paper +42386;Stacking number of something +68102;Pushing something so that it falls off the table +20964;Squeezing something +2292;Showing something behind something +187008;Covering something with something +171442;Showing something behind something +214175;Something falling like a feather or paper +98095;Spinning something that quickly stops spinning +42172;Piling something up +41403;Moving something across a surface until it falls down +53632;Dropping something into something +207245;Showing that something is empty +197208;Moving something across a surface until it falls down +58431;Trying but failing to attach something to something because it doesn't stick +153241;Showing something behind something +5721;Putting something and something on the table +60386;Pretending or trying and failing to twist something +173127;Tearing something just a little bit +74495;Dropping something onto something +58813;Moving part of something +209301;Pushing something so it spins +79123;Pushing something from right to left +68650;Taking one of many similar things on the table +175611;Taking something out of something +887;Putting something similar to other things that are already on the table +169615;Spreading something onto something +201163;Tearing something into two pieces +137605;Pouring something into something +91073;Moving something and something closer to each other +126209;Poking something so lightly that it doesn't or almost doesn't move +64932;Pulling something onto something +198198;Squeezing something +209936;Putting number of something onto something +23824;Turning something upside down +195140;Throwing something against something +197254;Pretending to put something onto something +157268;Putting something on the edge of something so it is not supported and falls down +118223;Pretending to turn something upside down +172278;Pulling something from right to left +159638;Holding something next to something +185008;Tearing something into two pieces +121789;Hitting something with something +208987;Pulling two ends of something so that it gets stretched +213406;Putting something and something on the table +42018;Tipping something over +105312;Moving something across a surface until it falls down +9843;Bending something until it breaks +201891;Opening something +77952;Covering something with something +128213;Pretending to take something from somewhere +106982;Hitting something with something +120671;Showing something next to something +77996;Pouring something out of something +95110;Spinning something that quickly stops spinning +18584;Holding something over something +147951;Pulling something from left to right +192565;Twisting something +58482;Showing something behind something +54910;Moving something down +51994;Moving something and something away from each other +170723;Pushing something from right to left +130175;Putting something that can't roll onto a slanted surface, so it slides down +81491;Putting something in front of something +137693;Stuffing something into something +210381;Putting something on a surface +197239;Moving something and something away from each other +217215;Touching (without moving) part of something +150835;Tearing something just a little bit +17551;Pouring something into something until it overflows +154015;Lifting something up completely without letting it drop down +68271;Moving something and something so they collide with each other +27249;Putting something upright on the table +10257;Pouring something into something +190683;Stuffing something into something +102607;Folding something +205709;Moving something away from something +23321;Moving something closer to something +174888;Putting something next to something +4601;Dropping something onto something +36855;Tilting something with something on it slightly so it doesn't fall down +60682;Letting something roll along a flat surface +21312;Putting something on a flat surface without letting it roll +57172;Attaching something to something +171326;Something falling like a rock +146553;Covering something with something +113270;Bending something so that it deforms +12683;Opening something +212875;Covering something with something +39805;Twisting (wringing) something wet until water comes out +82377;Holding something over something +759;Putting something onto something else that cannot support it so it falls down +11941;Putting something behind something +130078;Twisting something +205862;Taking one of many similar things on the table +99231;Piling something up +64737;Putting something on a surface +183776;Pulling something out of something +11489;Throwing something +192563;Attaching something to something +87620;Spinning something that quickly stops spinning +168357;Lifting something up completely, then letting it drop down +93729;Pretending to pour something out of something, but something is empty +100203;Letting something roll along a flat surface +126988;Pulling something onto something +186557;Pushing something with something +189339;Opening something +159055;Putting something similar to other things that are already on the table +177529;Pouring something into something +121695;Pretending to pick something up +120004;Spinning something that quickly stops spinning +199683;Letting something roll along a flat surface +89953;Pushing something from right to left +98673;Hitting something with something +88686;Putting something on a surface +182464;Putting something similar to other things that are already on the table +27449;Something falling like a rock +169951;Lifting up one end of something, then letting it drop down +95401;Covering something with something +23842;Pouring something into something until it overflows +129297;Taking something out of something +114267;Holding something over something +13686;Pushing something off of something +46554;Plugging something into something but pulling it right out as you remove your hand +178005;Showing something behind something +98711;Covering something with something +62432;Stuffing something into something +30061;Lifting something up completely without letting it drop down +142445;Moving something down +201862;Plugging something into something +82803;Moving something and something closer to each other +11084;Stuffing something into something +10879;Pretending to pick something up +121477;Pushing something with something +141694;Closing something +130991;Bending something until it breaks +34708;Poking something so lightly that it doesn't or almost doesn't move +159937;Twisting (wringing) something wet until water comes out +92394;Moving something and something closer to each other +214082;Lifting something with something on it +32821;Piling something up +71334;Sprinkling something onto something +160420;Showing something behind something +161852;Moving something and something away from each other +36925;Pushing something so it spins +37689;Plugging something into something +185869;Uncovering something +71353;Pushing something so that it slightly moves +75378;Twisting something +209326;Something falling like a rock +124404;Something being deflected from something +17373;Taking one of many similar things on the table +19775;Moving something and something so they collide with each other +71154;Touching (without moving) part of something +147941;Tilting something with something on it slightly so it doesn't fall down +213275;Holding something next to something +116752;Holding something +12970;Turning something upside down +96418;Moving something up +98250;Pushing something so that it slightly moves +114441;Letting something roll along a flat surface +28715;Trying to bend something unbendable so nothing happens +66141;Tipping something over +148280;Squeezing something +202941;Lifting up one end of something, then letting it drop down +84624;Dropping something into something +143106;Putting something similar to other things that are already on the table +193267;Turning the camera right while filming something +101374;Showing something behind something +84688;Tilting something with something on it slightly so it doesn't fall down +154669;Putting something, something and something on the table +198282;Poking something so lightly that it doesn't or almost doesn't move +55003;Stuffing something into something +149802;Something falling like a feather or paper +3542;Rolling something on a flat surface +26515;Hitting something with something +202582;Pulling two ends of something so that it gets stretched +121066;Moving something and something closer to each other +135227;Holding something over something +148130;Moving something and something away from each other +128274;Dropping something into something +21257;Putting something on a surface +56591;Lifting up one end of something, then letting it drop down +11766;Something falling like a rock +157119;Putting something similar to other things that are already on the table +67497;Putting something into something +18552;Poking something so it slightly moves +89526;Showing that something is empty +185633;Attaching something to something +150908;Moving something away from something +130538;Pulling two ends of something but nothing happens +82391;Pushing something so that it slightly moves +176142;Putting something upright on the table +9234;Dropping something next to something +80935;Tearing something just a little bit +31796;Showing something on top of something +220180;Pouring something into something +167901;Burying something in something +162934;Touching (without moving) part of something +180938;Spinning something so it continues spinning +180585;Wiping something off of something +103225;Holding something behind something +101594;Putting something upright on the table +174510;Spreading something onto something +209799;Putting something on a surface +40359;Pretending to put something underneath something +131357;Pretending to put something into something +23225;Showing something behind something +26208;Dropping something next to something +26716;Tilting something with something on it slightly so it doesn't fall down +173077;Moving something and something closer to each other +32986;Throwing something in the air and catching it +24757;Moving something closer to something +4149;Folding something +3300;Wiping something off of something +191108;Sprinkling something onto something +109673;Moving something and something closer to each other +44135;Plugging something into something +191223;Holding something over something +58918;Squeezing something +180314;Hitting something with something +210708;Picking something up +178562;Showing something next to something +5675;Dropping something onto something +91130;Piling something up +122352;Pretending to put something on a surface +30863;Stacking number of something +128171;Lifting up one end of something, then letting it drop down +88966;Picking something up +213736;Uncovering something +37274;Dropping something onto something +164899;Uncovering something +41996;Squeezing something +201519;Turning something upside down +145201;Pushing something from right to left +113523;Letting something roll down a slanted surface +136501;Putting something underneath something +69999;Lifting up one end of something without letting it drop down +87277;Folding something +189532;Showing something behind something +15719;Something falling like a rock +150534;Tipping something over +13333;Tearing something into two pieces +193013;Tipping something over +207597;Spilling something onto something +167619;Moving something up +4950;Moving something closer to something +184024;Moving something and something away from each other +121292;Showing something to the camera +110386;Lifting something with something on it +30142;Picking something up +7827;Piling something up +83331;Pretending to open something without actually opening it +128012;Piling something up +89024;Tearing something just a little bit +131947;Putting something on a surface +195605;Putting something, something and something on the table +190096;Turning the camera left while filming something +75399;Putting number of something onto something +157180;Pretending to open something without actually opening it +37793;Moving something and something so they collide with each other +190841;Spilling something onto something +182528;Lifting up one end of something, then letting it drop down +94049;Holding something in front of something +139903;Moving part of something +215043;Holding something +2166;Pushing something onto something +208153;Pulling something from left to right +103107;Something falling like a feather or paper +168686;Moving something away from something +122591;Pretending to open something without actually opening it +17255;Plugging something into something +119555;Holding something in front of something +190879;Pushing something so that it slightly moves +99127;Stuffing something into something +128459;Dropping something into something +161409;Rolling something on a flat surface +30505;Pretending to put something behind something +85878;Tearing something into two pieces +52588;Dropping something into something +1362;Laying something on the table on its side, not upright +159274;Covering something with something +203846;Lifting something up completely without letting it drop down +118707;Dropping something behind something +25786;Showing that something is empty +33381;Stuffing something into something +72879;Pushing something so that it falls off the table +122404;Tearing something just a little bit +21404;Lifting something up completely, then letting it drop down +21703;Throwing something against something +32866;Poking something so it slightly moves +182936;Twisting (wringing) something wet until water comes out +84171;Moving something and something closer to each other +161335;Letting something roll along a flat surface +80251;Bending something so that it deforms +95514;Poking something so lightly that it doesn't or almost doesn't move +212574;Pretending to squeeze something +152570;Tipping something over diff --git a/data/something/labels/test.json b/data/something/labels/test.json new file mode 100644 index 0000000000000000000000000000000000000000..5ebbb886998e0ffab7c99f99259d2ccf1bd5773e --- /dev/null +++ b/data/something/labels/test.json @@ -0,0 +1,27159 @@ +[ +{"id":"1420"}, +{"id":"166429"}, +{"id":"53930"}, +{"id":"73548"}, +{"id":"142328"}, +{"id":"118069"}, +{"id":"730"}, +{"id":"204138"}, +{"id":"11361"}, +{"id":"202932"}, +{"id":"132945"}, +{"id":"216229"}, +{"id":"134542"}, +{"id":"148831"}, +{"id":"27091"}, +{"id":"95214"}, +{"id":"55081"}, +{"id":"174966"}, +{"id":"132987"}, +{"id":"119215"}, +{"id":"113020"}, +{"id":"143233"}, +{"id":"60926"}, +{"id":"160219"}, +{"id":"69975"}, +{"id":"53838"}, +{"id":"200157"}, +{"id":"36708"}, +{"id":"120595"}, +{"id":"158702"}, +{"id":"129404"}, +{"id":"149186"}, +{"id":"145327"}, +{"id":"10882"}, +{"id":"161136"}, +{"id":"198524"}, +{"id":"49705"}, +{"id":"172208"}, +{"id":"90842"}, +{"id":"36732"}, +{"id":"52939"}, +{"id":"180647"}, +{"id":"200070"}, +{"id":"183842"}, +{"id":"55746"}, +{"id":"150080"}, +{"id":"143884"}, +{"id":"108796"}, +{"id":"121275"}, +{"id":"167412"}, +{"id":"13052"}, +{"id":"91439"}, +{"id":"143058"}, +{"id":"82495"}, +{"id":"153759"}, +{"id":"22554"}, +{"id":"17718"}, +{"id":"126149"}, +{"id":"68584"}, +{"id":"46949"}, +{"id":"127392"}, +{"id":"123506"}, +{"id":"123669"}, +{"id":"103578"}, +{"id":"167305"}, +{"id":"46552"}, +{"id":"205665"}, +{"id":"21359"}, +{"id":"63052"}, +{"id":"149916"}, +{"id":"198555"}, +{"id":"55816"}, +{"id":"214082"}, +{"id":"162037"}, +{"id":"25417"}, +{"id":"22289"}, +{"id":"154160"}, +{"id":"215245"}, +{"id":"131814"}, +{"id":"104892"}, +{"id":"80949"}, +{"id":"217171"}, +{"id":"103398"}, +{"id":"13510"}, +{"id":"112161"}, +{"id":"87649"}, +{"id":"82728"}, +{"id":"34498"}, +{"id":"209280"}, +{"id":"23343"}, +{"id":"136604"}, +{"id":"81004"}, +{"id":"87597"}, +{"id":"105090"}, +{"id":"98757"}, +{"id":"212388"}, +{"id":"158752"}, +{"id":"116355"}, +{"id":"39993"}, +{"id":"84950"}, +{"id":"20019"}, +{"id":"138962"}, +{"id":"76245"}, +{"id":"161426"}, +{"id":"129172"}, +{"id":"114668"}, +{"id":"100656"}, +{"id":"48686"}, +{"id":"29203"}, +{"id":"73907"}, +{"id":"205481"}, +{"id":"120160"}, +{"id":"103894"}, +{"id":"191315"}, +{"id":"6940"}, +{"id":"15502"}, +{"id":"104153"}, +{"id":"27029"}, +{"id":"212750"}, +{"id":"35552"}, +{"id":"81446"}, +{"id":"220586"}, +{"id":"106842"}, +{"id":"130297"}, +{"id":"197718"}, +{"id":"19533"}, +{"id":"92513"}, +{"id":"14876"}, +{"id":"149957"}, +{"id":"62134"}, +{"id":"62058"}, +{"id":"100628"}, +{"id":"81347"}, +{"id":"72735"}, +{"id":"105797"}, +{"id":"201507"}, +{"id":"59432"}, +{"id":"83608"}, +{"id":"78378"}, +{"id":"85096"}, +{"id":"195253"}, +{"id":"3559"}, +{"id":"202059"}, +{"id":"69658"}, +{"id":"203004"}, +{"id":"120534"}, +{"id":"101066"}, +{"id":"191284"}, +{"id":"45414"}, +{"id":"117892"}, +{"id":"136376"}, +{"id":"170071"}, +{"id":"72523"}, +{"id":"139561"}, +{"id":"148934"}, +{"id":"103884"}, +{"id":"69514"}, +{"id":"141351"}, +{"id":"74102"}, +{"id":"84418"}, +{"id":"32368"}, +{"id":"186561"}, +{"id":"49261"}, +{"id":"135216"}, +{"id":"97767"}, +{"id":"101157"}, +{"id":"200422"}, +{"id":"11169"}, +{"id":"122764"}, +{"id":"5083"}, +{"id":"22663"}, +{"id":"168649"}, +{"id":"94623"}, +{"id":"122532"}, +{"id":"202666"}, +{"id":"183918"}, +{"id":"205099"}, +{"id":"185549"}, +{"id":"33993"}, +{"id":"121687"}, +{"id":"159978"}, +{"id":"38126"}, +{"id":"18584"}, +{"id":"142121"}, +{"id":"100481"}, +{"id":"220053"}, +{"id":"64670"}, +{"id":"171703"}, +{"id":"112175"}, +{"id":"104204"}, +{"id":"27288"}, +{"id":"58465"}, +{"id":"48124"}, +{"id":"202749"}, +{"id":"42877"}, +{"id":"135451"}, +{"id":"90098"}, +{"id":"125762"}, +{"id":"50145"}, +{"id":"203534"}, +{"id":"205645"}, +{"id":"131191"}, +{"id":"79404"}, +{"id":"113640"}, +{"id":"204079"}, +{"id":"41143"}, +{"id":"81361"}, +{"id":"213763"}, +{"id":"158714"}, +{"id":"126544"}, +{"id":"75711"}, +{"id":"13686"}, +{"id":"93313"}, +{"id":"172632"}, +{"id":"171532"}, +{"id":"109219"}, +{"id":"63318"}, +{"id":"105364"}, +{"id":"14921"}, +{"id":"126382"}, +{"id":"81141"}, +{"id":"134675"}, +{"id":"55021"}, +{"id":"10255"}, +{"id":"133062"}, +{"id":"79568"}, +{"id":"71623"}, +{"id":"185343"}, +{"id":"123123"}, +{"id":"169926"}, +{"id":"7221"}, +{"id":"26798"}, +{"id":"199093"}, +{"id":"142782"}, +{"id":"147944"}, +{"id":"189820"}, +{"id":"189217"}, +{"id":"197772"}, +{"id":"130723"}, +{"id":"99127"}, +{"id":"60274"}, +{"id":"159510"}, +{"id":"219273"}, +{"id":"156961"}, +{"id":"99591"}, +{"id":"201162"}, +{"id":"145215"}, +{"id":"192011"}, +{"id":"27744"}, +{"id":"133532"}, +{"id":"159037"}, +{"id":"72988"}, +{"id":"172656"}, +{"id":"138499"}, +{"id":"150506"}, +{"id":"81557"}, +{"id":"169248"}, +{"id":"111116"}, +{"id":"11764"}, +{"id":"159270"}, +{"id":"55924"}, +{"id":"15671"}, +{"id":"198575"}, +{"id":"3126"}, +{"id":"219910"}, +{"id":"81197"}, +{"id":"198910"}, +{"id":"38789"}, +{"id":"46570"}, +{"id":"33639"}, +{"id":"28413"}, +{"id":"105550"}, +{"id":"182957"}, +{"id":"220551"}, +{"id":"159940"}, +{"id":"78747"}, +{"id":"35620"}, +{"id":"35973"}, +{"id":"171647"}, +{"id":"113853"}, +{"id":"102686"}, +{"id":"18803"}, +{"id":"188202"}, +{"id":"186277"}, +{"id":"99485"}, +{"id":"199361"}, +{"id":"26862"}, +{"id":"182608"}, +{"id":"145922"}, +{"id":"168355"}, +{"id":"27983"}, +{"id":"34863"}, +{"id":"183903"}, +{"id":"11014"}, +{"id":"185712"}, +{"id":"211733"}, +{"id":"150696"}, +{"id":"92207"}, +{"id":"105064"}, +{"id":"128557"}, +{"id":"5245"}, +{"id":"182202"}, +{"id":"34357"}, +{"id":"35100"}, +{"id":"128151"}, +{"id":"179111"}, +{"id":"145786"}, +{"id":"218734"}, +{"id":"257"}, +{"id":"131680"}, +{"id":"48676"}, +{"id":"74421"}, +{"id":"110195"}, +{"id":"33482"}, +{"id":"171044"}, +{"id":"73604"}, +{"id":"148947"}, +{"id":"43282"}, +{"id":"126670"}, +{"id":"75627"}, +{"id":"147474"}, +{"id":"65001"}, +{"id":"39571"}, +{"id":"164503"}, +{"id":"146372"}, +{"id":"75304"}, +{"id":"216490"}, +{"id":"98236"}, +{"id":"89122"}, +{"id":"212482"}, +{"id":"105418"}, +{"id":"144834"}, +{"id":"135129"}, +{"id":"180566"}, +{"id":"101814"}, +{"id":"192779"}, +{"id":"39545"}, +{"id":"86123"}, +{"id":"73704"}, +{"id":"15471"}, +{"id":"164605"}, +{"id":"191551"}, +{"id":"134610"}, +{"id":"9464"}, +{"id":"157557"}, +{"id":"98094"}, +{"id":"59653"}, +{"id":"199877"}, +{"id":"124035"}, +{"id":"36052"}, +{"id":"24772"}, +{"id":"15048"}, +{"id":"162355"}, +{"id":"105784"}, +{"id":"9158"}, +{"id":"212192"}, +{"id":"110512"}, +{"id":"133434"}, +{"id":"11243"}, +{"id":"187613"}, +{"id":"20248"}, +{"id":"197081"}, +{"id":"134642"}, +{"id":"69943"}, +{"id":"185178"}, +{"id":"24906"}, +{"id":"185694"}, +{"id":"59150"}, +{"id":"169401"}, +{"id":"71568"}, +{"id":"181884"}, +{"id":"141767"}, +{"id":"181568"}, +{"id":"120522"}, +{"id":"18329"}, +{"id":"193339"}, +{"id":"101062"}, +{"id":"18289"}, +{"id":"114369"}, +{"id":"70866"}, +{"id":"204984"}, +{"id":"14369"}, +{"id":"2190"}, +{"id":"18359"}, +{"id":"131588"}, +{"id":"66511"}, +{"id":"174477"}, +{"id":"113369"}, +{"id":"197467"}, +{"id":"122984"}, +{"id":"64984"}, +{"id":"212873"}, +{"id":"192037"}, +{"id":"154926"}, +{"id":"116760"}, +{"id":"178365"}, +{"id":"75422"}, +{"id":"42913"}, +{"id":"93453"}, +{"id":"33912"}, +{"id":"53795"}, +{"id":"31977"}, +{"id":"25935"}, +{"id":"194107"}, +{"id":"79494"}, +{"id":"759"}, +{"id":"121068"}, +{"id":"187266"}, +{"id":"192541"}, +{"id":"122394"}, +{"id":"113393"}, +{"id":"98064"}, +{"id":"164922"}, +{"id":"21929"}, +{"id":"156555"}, +{"id":"128578"}, +{"id":"170109"}, +{"id":"72385"}, +{"id":"66939"}, +{"id":"28848"}, +{"id":"130219"}, +{"id":"200816"}, +{"id":"180961"}, +{"id":"48213"}, +{"id":"185874"}, +{"id":"25552"}, +{"id":"42541"}, +{"id":"58842"}, +{"id":"26070"}, +{"id":"24645"}, +{"id":"66964"}, +{"id":"98180"}, +{"id":"1433"}, +{"id":"39975"}, +{"id":"195626"}, +{"id":"34004"}, +{"id":"171430"}, +{"id":"2607"}, +{"id":"75790"}, +{"id":"142445"}, +{"id":"104706"}, +{"id":"128471"}, +{"id":"65767"}, +{"id":"36896"}, +{"id":"153931"}, +{"id":"207669"}, +{"id":"114391"}, +{"id":"81125"}, +{"id":"68875"}, +{"id":"209153"}, +{"id":"78040"}, +{"id":"187733"}, +{"id":"196854"}, +{"id":"91757"}, +{"id":"20241"}, +{"id":"162006"}, +{"id":"110062"}, +{"id":"141743"}, +{"id":"179286"}, +{"id":"36291"}, +{"id":"96523"}, +{"id":"217881"}, +{"id":"210727"}, +{"id":"123234"}, +{"id":"8396"}, +{"id":"109538"}, +{"id":"7533"}, +{"id":"183601"}, +{"id":"60589"}, +{"id":"29292"}, +{"id":"2525"}, +{"id":"134359"}, +{"id":"133504"}, +{"id":"212614"}, +{"id":"14036"}, +{"id":"175433"}, +{"id":"162879"}, +{"id":"12044"}, +{"id":"75070"}, +{"id":"153933"}, +{"id":"8804"}, +{"id":"74138"}, +{"id":"193818"}, +{"id":"196575"}, +{"id":"182956"}, +{"id":"75051"}, +{"id":"132867"}, +{"id":"7979"}, +{"id":"219393"}, +{"id":"126601"}, +{"id":"20316"}, +{"id":"20286"}, +{"id":"49381"}, +{"id":"79604"}, +{"id":"68663"}, +{"id":"123223"}, +{"id":"154217"}, +{"id":"128370"}, +{"id":"156328"}, +{"id":"113775"}, +{"id":"65990"}, +{"id":"60635"}, +{"id":"139677"}, +{"id":"112678"}, +{"id":"189321"}, +{"id":"216318"}, +{"id":"110726"}, +{"id":"26853"}, +{"id":"7303"}, +{"id":"66652"}, +{"id":"185524"}, +{"id":"213832"}, +{"id":"24695"}, +{"id":"186264"}, +{"id":"135560"}, +{"id":"203179"}, +{"id":"81974"}, +{"id":"63519"}, +{"id":"39580"}, +{"id":"54773"}, +{"id":"51922"}, +{"id":"53924"}, +{"id":"36651"}, +{"id":"60983"}, +{"id":"14297"}, +{"id":"132748"}, +{"id":"194159"}, +{"id":"2249"}, +{"id":"38330"}, +{"id":"134599"}, +{"id":"199799"}, +{"id":"116215"}, +{"id":"91903"}, +{"id":"67705"}, +{"id":"101928"}, +{"id":"209527"}, +{"id":"98520"}, +{"id":"151879"}, +{"id":"146650"}, +{"id":"175254"}, +{"id":"99526"}, +{"id":"162438"}, +{"id":"48062"}, +{"id":"175307"}, +{"id":"174171"}, +{"id":"206278"}, +{"id":"205322"}, +{"id":"47968"}, +{"id":"139120"}, +{"id":"3768"}, +{"id":"143336"}, +{"id":"180875"}, +{"id":"141850"}, +{"id":"114293"}, +{"id":"16971"}, +{"id":"203168"}, +{"id":"148090"}, +{"id":"82627"}, +{"id":"107057"}, +{"id":"177458"}, +{"id":"52151"}, +{"id":"137972"}, +{"id":"107580"}, +{"id":"177294"}, +{"id":"85948"}, +{"id":"21325"}, +{"id":"210922"}, +{"id":"35392"}, +{"id":"162031"}, +{"id":"192331"}, +{"id":"62032"}, +{"id":"144101"}, +{"id":"1335"}, +{"id":"178736"}, +{"id":"34919"}, +{"id":"68191"}, +{"id":"56955"}, +{"id":"62106"}, +{"id":"43250"}, +{"id":"50809"}, +{"id":"117812"}, +{"id":"126579"}, +{"id":"91740"}, +{"id":"217882"}, +{"id":"33907"}, +{"id":"49146"}, +{"id":"121945"}, +{"id":"134234"}, +{"id":"10357"}, +{"id":"30497"}, +{"id":"40975"}, +{"id":"128639"}, +{"id":"47750"}, +{"id":"62144"}, +{"id":"162146"}, +{"id":"163627"}, +{"id":"116742"}, +{"id":"57623"}, +{"id":"113057"}, +{"id":"62176"}, +{"id":"163650"}, +{"id":"51987"}, +{"id":"66709"}, +{"id":"182031"}, +{"id":"92376"}, +{"id":"151110"}, +{"id":"38944"}, +{"id":"32411"}, +{"id":"121891"}, +{"id":"101039"}, +{"id":"139542"}, +{"id":"29193"}, +{"id":"134819"}, +{"id":"67352"}, +{"id":"69333"}, +{"id":"53866"}, +{"id":"145855"}, +{"id":"162239"}, +{"id":"33529"}, +{"id":"186909"}, +{"id":"177062"}, +{"id":"109328"}, +{"id":"219772"}, +{"id":"9836"}, +{"id":"61302"}, +{"id":"140612"}, +{"id":"187447"}, +{"id":"128650"}, +{"id":"27090"}, +{"id":"17020"}, +{"id":"193424"}, +{"id":"194572"}, +{"id":"25553"}, +{"id":"7013"}, +{"id":"105328"}, +{"id":"188087"}, +{"id":"47745"}, +{"id":"9074"}, +{"id":"220332"}, +{"id":"47942"}, +{"id":"65057"}, +{"id":"212903"}, +{"id":"201196"}, +{"id":"3434"}, +{"id":"16280"}, +{"id":"101701"}, +{"id":"108597"}, +{"id":"70750"}, +{"id":"91509"}, +{"id":"5467"}, +{"id":"36631"}, +{"id":"81504"}, +{"id":"167429"}, +{"id":"88440"}, +{"id":"101722"}, +{"id":"80729"}, +{"id":"122044"}, +{"id":"105498"}, +{"id":"119547"}, +{"id":"96670"}, +{"id":"28805"}, +{"id":"32816"}, +{"id":"30639"}, +{"id":"126631"}, +{"id":"170774"}, +{"id":"125215"}, +{"id":"78962"}, +{"id":"210115"}, +{"id":"88224"}, +{"id":"87511"}, +{"id":"210436"}, +{"id":"52959"}, +{"id":"95316"}, +{"id":"141333"}, +{"id":"27686"}, +{"id":"216721"}, +{"id":"62719"}, +{"id":"135018"}, +{"id":"92165"}, +{"id":"155998"}, +{"id":"131635"}, +{"id":"150227"}, +{"id":"71440"}, +{"id":"103466"}, +{"id":"189807"}, +{"id":"187063"}, +{"id":"89591"}, +{"id":"189718"}, +{"id":"56890"}, +{"id":"19596"}, +{"id":"216865"}, +{"id":"197087"}, +{"id":"17127"}, +{"id":"13566"}, +{"id":"184576"}, +{"id":"81146"}, +{"id":"112950"}, +{"id":"39037"}, +{"id":"38359"}, +{"id":"44116"}, +{"id":"74781"}, +{"id":"12608"}, +{"id":"213247"}, +{"id":"21227"}, +{"id":"88995"}, +{"id":"67381"}, +{"id":"95233"}, +{"id":"32620"}, +{"id":"133584"}, +{"id":"125251"}, +{"id":"47815"}, +{"id":"63570"}, +{"id":"70072"}, +{"id":"108168"}, +{"id":"205586"}, +{"id":"142186"}, +{"id":"82070"}, +{"id":"193898"}, +{"id":"166834"}, +{"id":"192552"}, +{"id":"106121"}, +{"id":"140138"}, +{"id":"71686"}, +{"id":"185344"}, +{"id":"121559"}, +{"id":"48687"}, +{"id":"7400"}, +{"id":"33800"}, +{"id":"33316"}, +{"id":"75608"}, +{"id":"105374"}, +{"id":"104339"}, +{"id":"155572"}, +{"id":"184594"}, +{"id":"85556"}, +{"id":"48745"}, +{"id":"125601"}, +{"id":"90521"}, +{"id":"146377"}, +{"id":"217644"}, +{"id":"192246"}, +{"id":"169813"}, +{"id":"183836"}, +{"id":"57843"}, +{"id":"79326"}, +{"id":"79722"}, +{"id":"112004"}, +{"id":"54515"}, +{"id":"128906"}, +{"id":"183445"}, +{"id":"209646"}, +{"id":"149044"}, +{"id":"210027"}, +{"id":"7524"}, +{"id":"45986"}, +{"id":"217870"}, +{"id":"59477"}, +{"id":"179628"}, +{"id":"161809"}, +{"id":"190028"}, +{"id":"49838"}, +{"id":"25865"}, +{"id":"101575"}, +{"id":"40330"}, +{"id":"218914"}, +{"id":"126692"}, +{"id":"206518"}, +{"id":"118147"}, +{"id":"111525"}, +{"id":"194469"}, +{"id":"195221"}, +{"id":"121475"}, +{"id":"136578"}, +{"id":"155219"}, +{"id":"35106"}, +{"id":"192243"}, +{"id":"1293"}, +{"id":"107065"}, +{"id":"43114"}, +{"id":"10425"}, +{"id":"59032"}, +{"id":"208549"}, +{"id":"192666"}, +{"id":"138943"}, +{"id":"3122"}, +{"id":"7646"}, +{"id":"154907"}, +{"id":"73013"}, +{"id":"170677"}, +{"id":"11216"}, +{"id":"26674"}, +{"id":"137651"}, +{"id":"161191"}, +{"id":"10581"}, +{"id":"55192"}, +{"id":"53340"}, +{"id":"83052"}, +{"id":"84717"}, +{"id":"140551"}, +{"id":"34420"}, +{"id":"4449"}, +{"id":"164789"}, +{"id":"83263"}, +{"id":"193331"}, +{"id":"162783"}, +{"id":"25847"}, +{"id":"191753"}, +{"id":"169345"}, +{"id":"9607"}, +{"id":"35728"}, +{"id":"72362"}, +{"id":"100187"}, +{"id":"163615"}, +{"id":"119745"}, +{"id":"125564"}, +{"id":"119243"}, +{"id":"13049"}, +{"id":"165472"}, +{"id":"58017"}, +{"id":"113546"}, +{"id":"212862"}, +{"id":"164775"}, +{"id":"38492"}, +{"id":"101900"}, +{"id":"94270"}, +{"id":"9014"}, +{"id":"104762"}, +{"id":"180181"}, +{"id":"84315"}, +{"id":"142759"}, +{"id":"205140"}, +{"id":"43622"}, +{"id":"85140"}, +{"id":"124319"}, +{"id":"214683"}, +{"id":"156471"}, +{"id":"219928"}, +{"id":"22494"}, +{"id":"84213"}, +{"id":"136754"}, +{"id":"85557"}, +{"id":"195856"}, +{"id":"203838"}, +{"id":"135048"}, +{"id":"202710"}, +{"id":"135085"}, +{"id":"114963"}, +{"id":"184911"}, +{"id":"160067"}, +{"id":"104277"}, +{"id":"61936"}, +{"id":"150152"}, +{"id":"12429"}, +{"id":"21196"}, +{"id":"50794"}, +{"id":"136270"}, +{"id":"86530"}, +{"id":"173889"}, +{"id":"163640"}, +{"id":"126888"}, +{"id":"107055"}, +{"id":"139060"}, +{"id":"205419"}, +{"id":"132854"}, +{"id":"157060"}, +{"id":"92083"}, +{"id":"158161"}, +{"id":"162389"}, +{"id":"207878"}, +{"id":"81427"}, +{"id":"173267"}, +{"id":"208135"}, +{"id":"210820"}, +{"id":"203265"}, +{"id":"142437"}, +{"id":"112623"}, +{"id":"76189"}, +{"id":"184834"}, +{"id":"193400"}, +{"id":"153943"}, +{"id":"114499"}, +{"id":"157958"}, +{"id":"217752"}, +{"id":"71577"}, +{"id":"78924"}, +{"id":"66275"}, +{"id":"150291"}, +{"id":"44917"}, +{"id":"25934"}, +{"id":"14285"}, +{"id":"87431"}, +{"id":"86237"}, +{"id":"1818"}, +{"id":"38652"}, +{"id":"116839"}, +{"id":"21796"}, +{"id":"197714"}, +{"id":"98609"}, +{"id":"193930"}, +{"id":"112795"}, +{"id":"5755"}, +{"id":"117783"}, +{"id":"12901"}, +{"id":"102747"}, +{"id":"13705"}, +{"id":"117834"}, +{"id":"36859"}, +{"id":"18543"}, +{"id":"132076"}, +{"id":"212663"}, +{"id":"139041"}, +{"id":"121605"}, +{"id":"98462"}, +{"id":"203110"}, +{"id":"70701"}, +{"id":"61064"}, +{"id":"55887"}, +{"id":"116656"}, +{"id":"32135"}, +{"id":"159087"}, +{"id":"65671"}, +{"id":"146313"}, +{"id":"75844"}, +{"id":"212485"}, +{"id":"160048"}, +{"id":"100509"}, +{"id":"174833"}, +{"id":"156878"}, +{"id":"212886"}, +{"id":"129046"}, +{"id":"151811"}, +{"id":"125554"}, +{"id":"167060"}, +{"id":"182457"}, +{"id":"42364"}, +{"id":"37274"}, +{"id":"207583"}, +{"id":"58799"}, +{"id":"115760"}, +{"id":"82027"}, +{"id":"181029"}, +{"id":"109762"}, +{"id":"20409"}, +{"id":"135532"}, +{"id":"29180"}, +{"id":"140341"}, +{"id":"137320"}, +{"id":"56460"}, +{"id":"171963"}, +{"id":"160188"}, +{"id":"27619"}, +{"id":"75694"}, +{"id":"199441"}, +{"id":"211866"}, +{"id":"194626"}, +{"id":"46163"}, +{"id":"121419"}, +{"id":"108807"}, +{"id":"150432"}, +{"id":"210482"}, +{"id":"23896"}, +{"id":"201107"}, +{"id":"78210"}, +{"id":"147950"}, +{"id":"206111"}, +{"id":"160063"}, +{"id":"41882"}, +{"id":"196145"}, +{"id":"50473"}, +{"id":"189522"}, +{"id":"202237"}, +{"id":"207270"}, +{"id":"47418"}, +{"id":"141819"}, +{"id":"50745"}, +{"id":"6987"}, +{"id":"121675"}, +{"id":"201082"}, +{"id":"210711"}, +{"id":"186576"}, +{"id":"14949"}, +{"id":"141946"}, +{"id":"183896"}, +{"id":"61895"}, +{"id":"111133"}, +{"id":"16503"}, +{"id":"29759"}, +{"id":"164251"}, +{"id":"7555"}, +{"id":"12848"}, +{"id":"131646"}, +{"id":"187664"}, +{"id":"213712"}, +{"id":"157682"}, +{"id":"165559"}, +{"id":"173493"}, +{"id":"27376"}, +{"id":"120717"}, +{"id":"173271"}, +{"id":"204066"}, +{"id":"138234"}, +{"id":"160407"}, +{"id":"122387"}, +{"id":"176438"}, +{"id":"132174"}, +{"id":"84809"}, +{"id":"215038"}, +{"id":"53755"}, +{"id":"4928"}, +{"id":"17761"}, +{"id":"132578"}, +{"id":"20453"}, +{"id":"89135"}, +{"id":"109804"}, +{"id":"151997"}, +{"id":"204107"}, +{"id":"163342"}, +{"id":"165285"}, +{"id":"113039"}, +{"id":"197271"}, +{"id":"132901"}, +{"id":"168665"}, +{"id":"49693"}, +{"id":"25596"}, +{"id":"118263"}, +{"id":"187870"}, +{"id":"97277"}, +{"id":"91129"}, +{"id":"135240"}, +{"id":"97787"}, +{"id":"15719"}, +{"id":"103658"}, +{"id":"161616"}, +{"id":"20428"}, +{"id":"207569"}, +{"id":"64318"}, +{"id":"51369"}, +{"id":"112875"}, +{"id":"132256"}, +{"id":"65438"}, +{"id":"203416"}, +{"id":"27889"}, +{"id":"14109"}, +{"id":"127567"}, +{"id":"34167"}, +{"id":"217181"}, +{"id":"114434"}, +{"id":"208538"}, +{"id":"143582"}, +{"id":"111468"}, +{"id":"43515"}, +{"id":"48925"}, +{"id":"86765"}, +{"id":"15717"}, +{"id":"83986"}, +{"id":"120299"}, +{"id":"70650"}, +{"id":"90205"}, +{"id":"21885"}, +{"id":"203480"}, +{"id":"176138"}, +{"id":"110466"}, +{"id":"100758"}, +{"id":"118883"}, +{"id":"75726"}, +{"id":"220569"}, +{"id":"39586"}, +{"id":"23514"}, +{"id":"213219"}, +{"id":"86386"}, +{"id":"18937"}, +{"id":"3"}, +{"id":"174066"}, +{"id":"129229"}, +{"id":"96567"}, +{"id":"17999"}, +{"id":"27259"}, +{"id":"180407"}, +{"id":"59620"}, +{"id":"72873"}, +{"id":"45317"}, +{"id":"127835"}, +{"id":"63432"}, +{"id":"49360"}, +{"id":"57584"}, +{"id":"38964"}, +{"id":"14872"}, +{"id":"152892"}, +{"id":"141339"}, +{"id":"138186"}, +{"id":"70803"}, +{"id":"33949"}, +{"id":"63969"}, +{"id":"150688"}, +{"id":"18978"}, +{"id":"199423"}, +{"id":"76507"}, +{"id":"137244"}, +{"id":"174028"}, +{"id":"136730"}, +{"id":"173785"}, +{"id":"33879"}, +{"id":"85890"}, +{"id":"94421"}, +{"id":"20565"}, +{"id":"148636"}, +{"id":"75640"}, +{"id":"196684"}, +{"id":"201472"}, +{"id":"42719"}, +{"id":"166740"}, +{"id":"189675"}, +{"id":"35918"}, +{"id":"140967"}, +{"id":"105027"}, +{"id":"140921"}, +{"id":"87639"}, +{"id":"179008"}, +{"id":"36751"}, +{"id":"159109"}, +{"id":"169037"}, +{"id":"201405"}, +{"id":"53447"}, +{"id":"99726"}, +{"id":"181062"}, +{"id":"8823"}, +{"id":"123090"}, +{"id":"111436"}, +{"id":"164934"}, +{"id":"165300"}, +{"id":"114019"}, +{"id":"148820"}, +{"id":"202347"}, +{"id":"129539"}, +{"id":"33331"}, +{"id":"80017"}, +{"id":"51358"}, +{"id":"86038"}, +{"id":"141319"}, +{"id":"10602"}, +{"id":"149438"}, +{"id":"213377"}, +{"id":"156770"}, +{"id":"205779"}, +{"id":"137092"}, +{"id":"144327"}, +{"id":"116542"}, +{"id":"142516"}, +{"id":"117"}, +{"id":"130766"}, +{"id":"135079"}, +{"id":"146185"}, +{"id":"41673"}, +{"id":"200604"}, +{"id":"67721"}, +{"id":"56828"}, +{"id":"160815"}, +{"id":"202496"}, +{"id":"146329"}, +{"id":"29223"}, +{"id":"155"}, +{"id":"219991"}, +{"id":"171526"}, +{"id":"148684"}, +{"id":"190375"}, +{"id":"187827"}, +{"id":"95847"}, +{"id":"151698"}, +{"id":"109959"}, +{"id":"144972"}, +{"id":"18546"}, +{"id":"136825"}, +{"id":"146513"}, +{"id":"90045"}, +{"id":"153751"}, +{"id":"18258"}, +{"id":"116042"}, +{"id":"39913"}, +{"id":"153406"}, +{"id":"62043"}, +{"id":"212402"}, +{"id":"78686"}, +{"id":"170325"}, +{"id":"22866"}, +{"id":"216850"}, +{"id":"20597"}, +{"id":"107197"}, +{"id":"150215"}, +{"id":"28590"}, +{"id":"216805"}, +{"id":"56756"}, +{"id":"63910"}, +{"id":"12389"}, +{"id":"48365"}, +{"id":"54896"}, +{"id":"131235"}, +{"id":"186114"}, +{"id":"209526"}, +{"id":"118290"}, +{"id":"113400"}, +{"id":"42417"}, +{"id":"127493"}, +{"id":"99736"}, +{"id":"114662"}, +{"id":"108213"}, +{"id":"199258"}, +{"id":"159332"}, +{"id":"137536"}, +{"id":"108417"}, +{"id":"146155"}, +{"id":"121082"}, +{"id":"215877"}, +{"id":"69145"}, +{"id":"68259"}, +{"id":"214096"}, +{"id":"118371"}, +{"id":"5185"}, +{"id":"112751"}, +{"id":"72933"}, +{"id":"7450"}, +{"id":"15394"}, +{"id":"217160"}, +{"id":"194622"}, +{"id":"139809"}, +{"id":"124818"}, +{"id":"5375"}, +{"id":"1396"}, +{"id":"121771"}, +{"id":"64374"}, +{"id":"107764"}, +{"id":"40648"}, +{"id":"212710"}, +{"id":"32209"}, +{"id":"55517"}, +{"id":"113183"}, +{"id":"18523"}, +{"id":"31768"}, +{"id":"87296"}, +{"id":"23779"}, +{"id":"184086"}, +{"id":"44004"}, +{"id":"15833"}, +{"id":"44273"}, +{"id":"43997"}, +{"id":"214138"}, +{"id":"56191"}, +{"id":"196348"}, +{"id":"217758"}, +{"id":"42349"}, +{"id":"63911"}, +{"id":"93667"}, +{"id":"11058"}, +{"id":"75888"}, +{"id":"6897"}, +{"id":"190150"}, +{"id":"2596"}, +{"id":"195404"}, +{"id":"78188"}, +{"id":"16464"}, +{"id":"53218"}, +{"id":"588"}, +{"id":"18414"}, +{"id":"124231"}, +{"id":"135872"}, +{"id":"199980"}, +{"id":"217599"}, +{"id":"69452"}, +{"id":"172324"}, +{"id":"39308"}, +{"id":"30044"}, +{"id":"100829"}, +{"id":"124214"}, +{"id":"140475"}, +{"id":"173141"}, +{"id":"145878"}, +{"id":"145889"}, +{"id":"53910"}, +{"id":"85926"}, +{"id":"129425"}, +{"id":"16186"}, +{"id":"109811"}, +{"id":"119674"}, +{"id":"78366"}, +{"id":"192377"}, +{"id":"191216"}, +{"id":"188198"}, +{"id":"6319"}, +{"id":"171120"}, +{"id":"193561"}, +{"id":"81769"}, +{"id":"219303"}, +{"id":"85331"}, +{"id":"80918"}, +{"id":"30958"}, +{"id":"171471"}, +{"id":"183687"}, +{"id":"23060"}, +{"id":"2840"}, +{"id":"159567"}, +{"id":"112609"}, +{"id":"52293"}, +{"id":"106960"}, +{"id":"192881"}, +{"id":"108788"}, +{"id":"174359"}, +{"id":"122404"}, +{"id":"164738"}, +{"id":"137560"}, +{"id":"208559"}, +{"id":"109938"}, +{"id":"8719"}, +{"id":"168303"}, +{"id":"13112"}, +{"id":"170448"}, +{"id":"199374"}, +{"id":"35275"}, +{"id":"45810"}, +{"id":"12523"}, +{"id":"148054"}, +{"id":"7593"}, +{"id":"176698"}, +{"id":"94437"}, +{"id":"168471"}, +{"id":"29748"}, +{"id":"213181"}, +{"id":"108131"}, +{"id":"148855"}, +{"id":"134462"}, +{"id":"47986"}, +{"id":"6818"}, +{"id":"21649"}, +{"id":"116902"}, +{"id":"16898"}, +{"id":"185846"}, +{"id":"117811"}, +{"id":"128895"}, +{"id":"199956"}, +{"id":"179697"}, +{"id":"53582"}, +{"id":"173958"}, +{"id":"18880"}, +{"id":"92971"}, +{"id":"137639"}, +{"id":"78466"}, +{"id":"43705"}, +{"id":"120449"}, +{"id":"196187"}, +{"id":"208887"}, +{"id":"53180"}, +{"id":"147187"}, +{"id":"188173"}, +{"id":"145058"}, +{"id":"160049"}, +{"id":"148130"}, +{"id":"173899"}, +{"id":"29098"}, +{"id":"60356"}, +{"id":"136124"}, +{"id":"79003"}, +{"id":"119893"}, +{"id":"143851"}, +{"id":"77099"}, +{"id":"171803"}, +{"id":"76801"}, +{"id":"179361"}, +{"id":"171546"}, +{"id":"73364"}, +{"id":"190433"}, +{"id":"72423"}, +{"id":"131331"}, +{"id":"173922"}, +{"id":"166533"}, +{"id":"18239"}, +{"id":"184175"}, +{"id":"71542"}, +{"id":"73053"}, +{"id":"37047"}, +{"id":"191471"}, +{"id":"73254"}, +{"id":"105485"}, +{"id":"199349"}, +{"id":"75043"}, +{"id":"171782"}, +{"id":"97417"}, +{"id":"145472"}, +{"id":"123818"}, +{"id":"61555"}, +{"id":"43324"}, +{"id":"5911"}, +{"id":"147610"}, +{"id":"157138"}, +{"id":"44854"}, +{"id":"184219"}, +{"id":"18915"}, +{"id":"100530"}, +{"id":"77996"}, +{"id":"183554"}, +{"id":"85218"}, +{"id":"27075"}, +{"id":"21151"}, +{"id":"184752"}, +{"id":"111577"}, +{"id":"51680"}, +{"id":"128414"}, +{"id":"156936"}, +{"id":"89493"}, +{"id":"87456"}, +{"id":"55003"}, +{"id":"149590"}, +{"id":"66393"}, +{"id":"102655"}, +{"id":"176412"}, +{"id":"7137"}, +{"id":"43377"}, +{"id":"120232"}, +{"id":"103267"}, +{"id":"141229"}, +{"id":"127629"}, +{"id":"67851"}, +{"id":"166703"}, +{"id":"147634"}, +{"id":"191907"}, +{"id":"90906"}, +{"id":"203688"}, +{"id":"89125"}, +{"id":"92878"}, +{"id":"74962"}, +{"id":"210979"}, +{"id":"59472"}, +{"id":"190912"}, +{"id":"115380"}, +{"id":"211852"}, +{"id":"101481"}, +{"id":"206177"}, +{"id":"23418"}, +{"id":"9486"}, +{"id":"191919"}, +{"id":"35328"}, +{"id":"52836"}, +{"id":"172365"}, +{"id":"146132"}, +{"id":"65905"}, +{"id":"161209"}, +{"id":"179919"}, +{"id":"69926"}, +{"id":"173334"}, +{"id":"146208"}, +{"id":"63650"}, +{"id":"113207"}, +{"id":"31104"}, +{"id":"26826"}, +{"id":"111572"}, +{"id":"12133"}, +{"id":"33947"}, +{"id":"9941"}, +{"id":"180362"}, +{"id":"150746"}, +{"id":"163987"}, +{"id":"54135"}, +{"id":"214722"}, +{"id":"145077"}, +{"id":"32374"}, +{"id":"213542"}, +{"id":"169819"}, +{"id":"27518"}, +{"id":"186486"}, +{"id":"44980"}, +{"id":"17079"}, +{"id":"37137"}, +{"id":"158470"}, +{"id":"162434"}, +{"id":"204027"}, +{"id":"69285"}, +{"id":"27793"}, +{"id":"199503"}, +{"id":"189291"}, +{"id":"180014"}, +{"id":"157833"}, +{"id":"98195"}, +{"id":"214057"}, +{"id":"105063"}, +{"id":"148486"}, +{"id":"87169"}, +{"id":"77376"}, +{"id":"144049"}, +{"id":"208671"}, +{"id":"197533"}, +{"id":"206912"}, +{"id":"183279"}, +{"id":"70058"}, +{"id":"194075"}, +{"id":"165228"}, +{"id":"106065"}, +{"id":"130830"}, +{"id":"38607"}, +{"id":"172844"}, +{"id":"137493"}, +{"id":"204002"}, +{"id":"207480"}, +{"id":"137103"}, +{"id":"163522"}, +{"id":"202843"}, +{"id":"67161"}, +{"id":"12157"}, +{"id":"24795"}, +{"id":"66006"}, +{"id":"162577"}, +{"id":"123762"}, +{"id":"6204"}, +{"id":"138335"}, +{"id":"49119"}, +{"id":"158377"}, +{"id":"179229"}, +{"id":"152402"}, +{"id":"205723"}, +{"id":"118221"}, +{"id":"45614"}, +{"id":"130975"}, +{"id":"44653"}, +{"id":"148271"}, +{"id":"57114"}, +{"id":"208987"}, +{"id":"143718"}, +{"id":"55459"}, +{"id":"51422"}, +{"id":"9702"}, +{"id":"53941"}, +{"id":"120786"}, +{"id":"175996"}, +{"id":"156551"}, +{"id":"195150"}, +{"id":"168827"}, +{"id":"87279"}, +{"id":"45603"}, +{"id":"144483"}, +{"id":"197239"}, +{"id":"136602"}, +{"id":"189917"}, +{"id":"109438"}, +{"id":"143804"}, +{"id":"51846"}, +{"id":"21389"}, +{"id":"85552"}, +{"id":"99678"}, +{"id":"123570"}, +{"id":"122662"}, +{"id":"108009"}, +{"id":"213736"}, +{"id":"34843"}, +{"id":"117455"}, +{"id":"146233"}, +{"id":"1841"}, +{"id":"49332"}, +{"id":"170785"}, +{"id":"93709"}, +{"id":"206363"}, +{"id":"28092"}, +{"id":"102350"}, +{"id":"55530"}, +{"id":"86973"}, +{"id":"156167"}, +{"id":"62596"}, +{"id":"114223"}, +{"id":"206847"}, +{"id":"212938"}, +{"id":"202354"}, +{"id":"111918"}, +{"id":"110648"}, +{"id":"105270"}, +{"id":"21650"}, +{"id":"159093"}, +{"id":"161527"}, +{"id":"39973"}, +{"id":"201259"}, +{"id":"57362"}, +{"id":"197228"}, +{"id":"34558"}, +{"id":"22142"}, +{"id":"8337"}, +{"id":"161707"}, +{"id":"88932"}, +{"id":"83497"}, +{"id":"220221"}, +{"id":"54674"}, +{"id":"114345"}, +{"id":"179356"}, +{"id":"217524"}, +{"id":"202593"}, +{"id":"21927"}, +{"id":"197045"}, +{"id":"179451"}, +{"id":"48256"}, +{"id":"215862"}, +{"id":"100782"}, +{"id":"200440"}, +{"id":"54532"}, +{"id":"199529"}, +{"id":"142296"}, +{"id":"171955"}, +{"id":"104386"}, +{"id":"150877"}, +{"id":"34003"}, +{"id":"128393"}, +{"id":"140873"}, +{"id":"75471"}, +{"id":"58365"}, +{"id":"215711"}, +{"id":"66114"}, +{"id":"205772"}, +{"id":"86023"}, +{"id":"149616"}, +{"id":"107333"}, +{"id":"158139"}, +{"id":"21918"}, +{"id":"37387"}, +{"id":"46773"}, +{"id":"199971"}, +{"id":"100581"}, +{"id":"173825"}, +{"id":"58364"}, +{"id":"50538"}, +{"id":"197152"}, +{"id":"102482"}, +{"id":"141220"}, +{"id":"145211"}, +{"id":"47334"}, +{"id":"117226"}, +{"id":"29347"}, +{"id":"208183"}, +{"id":"37423"}, +{"id":"55962"}, +{"id":"77767"}, +{"id":"39237"}, +{"id":"215481"}, +{"id":"107999"}, +{"id":"165661"}, +{"id":"197909"}, +{"id":"152286"}, +{"id":"65447"}, +{"id":"198958"}, +{"id":"115415"}, +{"id":"208099"}, +{"id":"179556"}, +{"id":"157527"}, +{"id":"40574"}, +{"id":"79762"}, +{"id":"123213"}, +{"id":"57764"}, +{"id":"166965"}, +{"id":"19128"}, +{"id":"169846"}, +{"id":"68954"}, +{"id":"190371"}, +{"id":"66938"}, +{"id":"177940"}, +{"id":"194832"}, +{"id":"69897"}, +{"id":"217007"}, +{"id":"88093"}, +{"id":"38938"}, +{"id":"136350"}, +{"id":"134518"}, +{"id":"100164"}, +{"id":"93090"}, +{"id":"80361"}, +{"id":"60841"}, +{"id":"102145"}, +{"id":"85749"}, +{"id":"41071"}, +{"id":"27808"}, +{"id":"34370"}, +{"id":"155895"}, +{"id":"196115"}, +{"id":"14660"}, +{"id":"37033"}, +{"id":"131255"}, +{"id":"81560"}, +{"id":"20312"}, +{"id":"147070"}, +{"id":"123881"}, +{"id":"74902"}, +{"id":"139138"}, +{"id":"197546"}, +{"id":"45571"}, +{"id":"51983"}, +{"id":"92453"}, +{"id":"127868"}, +{"id":"23373"}, +{"id":"88578"}, +{"id":"50642"}, +{"id":"78891"}, +{"id":"215620"}, +{"id":"25740"}, +{"id":"87856"}, +{"id":"85148"}, +{"id":"55427"}, +{"id":"88621"}, +{"id":"55481"}, +{"id":"41280"}, +{"id":"17255"}, +{"id":"47803"}, +{"id":"34243"}, +{"id":"187208"}, +{"id":"22332"}, +{"id":"128171"}, +{"id":"143099"}, +{"id":"51279"}, +{"id":"92425"}, +{"id":"208271"}, +{"id":"46656"}, +{"id":"135537"}, +{"id":"28073"}, +{"id":"159473"}, +{"id":"96513"}, +{"id":"52284"}, +{"id":"150296"}, +{"id":"139966"}, +{"id":"8397"}, +{"id":"84665"}, +{"id":"127623"}, +{"id":"52011"}, +{"id":"120513"}, +{"id":"176380"}, +{"id":"112784"}, +{"id":"189026"}, +{"id":"146630"}, +{"id":"177436"}, +{"id":"29275"}, +{"id":"77427"}, +{"id":"116273"}, +{"id":"220746"}, +{"id":"35206"}, +{"id":"83267"}, +{"id":"70562"}, +{"id":"40832"}, +{"id":"205137"}, +{"id":"135391"}, +{"id":"193196"}, +{"id":"190514"}, +{"id":"53691"}, +{"id":"170554"}, +{"id":"82931"}, +{"id":"200459"}, +{"id":"40478"}, +{"id":"72095"}, +{"id":"39116"}, +{"id":"176920"}, +{"id":"131143"}, +{"id":"141971"}, +{"id":"134613"}, +{"id":"28890"}, +{"id":"58153"}, +{"id":"10565"}, +{"id":"123536"}, +{"id":"124665"}, +{"id":"213805"}, +{"id":"171425"}, +{"id":"116181"}, +{"id":"212419"}, +{"id":"190059"}, +{"id":"81331"}, +{"id":"35199"}, +{"id":"188414"}, +{"id":"44126"}, +{"id":"5893"}, +{"id":"12350"}, +{"id":"38858"}, +{"id":"179000"}, +{"id":"213328"}, +{"id":"73318"}, +{"id":"126984"}, +{"id":"165237"}, +{"id":"179374"}, +{"id":"118366"}, +{"id":"163334"}, +{"id":"102333"}, +{"id":"118217"}, +{"id":"8697"}, +{"id":"126088"}, +{"id":"40325"}, +{"id":"73533"}, +{"id":"47307"}, +{"id":"57769"}, +{"id":"35658"}, +{"id":"80245"}, +{"id":"1900"}, +{"id":"155630"}, +{"id":"31770"}, +{"id":"42021"}, +{"id":"90574"}, +{"id":"101992"}, +{"id":"61645"}, +{"id":"183907"}, +{"id":"160609"}, +{"id":"94268"}, +{"id":"15405"}, +{"id":"128826"}, +{"id":"198"}, +{"id":"120732"}, +{"id":"40017"}, +{"id":"125850"}, +{"id":"125560"}, +{"id":"26395"}, +{"id":"179529"}, +{"id":"31184"}, +{"id":"62685"}, +{"id":"191781"}, +{"id":"54386"}, +{"id":"186315"}, +{"id":"203129"}, +{"id":"14025"}, +{"id":"182677"}, +{"id":"60808"}, +{"id":"149201"}, +{"id":"120052"}, +{"id":"34364"}, +{"id":"7770"}, +{"id":"205549"}, +{"id":"10726"}, +{"id":"95270"}, +{"id":"168399"}, +{"id":"91132"}, +{"id":"109275"}, +{"id":"5023"}, +{"id":"65840"}, +{"id":"140351"}, +{"id":"162222"}, +{"id":"42701"}, +{"id":"183161"}, +{"id":"27385"}, +{"id":"39581"}, +{"id":"35518"}, +{"id":"219015"}, +{"id":"74881"}, +{"id":"30179"}, +{"id":"184734"}, +{"id":"32808"}, +{"id":"100808"}, +{"id":"51041"}, +{"id":"53145"}, +{"id":"41589"}, +{"id":"160614"}, +{"id":"83148"}, +{"id":"97184"}, +{"id":"173894"}, +{"id":"198281"}, +{"id":"129937"}, +{"id":"139233"}, +{"id":"149883"}, +{"id":"141490"}, +{"id":"78010"}, +{"id":"209236"}, +{"id":"78977"}, +{"id":"206092"}, +{"id":"142360"}, +{"id":"20265"}, +{"id":"76752"}, +{"id":"13593"}, +{"id":"971"}, +{"id":"180800"}, +{"id":"121695"}, +{"id":"596"}, +{"id":"48359"}, +{"id":"200872"}, +{"id":"149727"}, +{"id":"116265"}, +{"id":"179052"}, +{"id":"83725"}, +{"id":"106318"}, +{"id":"148956"}, +{"id":"83392"}, +{"id":"10511"}, +{"id":"207631"}, +{"id":"159003"}, +{"id":"119066"}, +{"id":"204146"}, +{"id":"57172"}, +{"id":"108128"}, +{"id":"68741"}, +{"id":"98808"}, +{"id":"160592"}, +{"id":"215940"}, +{"id":"220038"}, +{"id":"207193"}, +{"id":"162606"}, +{"id":"119097"}, +{"id":"52964"}, +{"id":"200703"}, +{"id":"100112"}, +{"id":"91421"}, +{"id":"165570"}, +{"id":"190478"}, +{"id":"206517"}, +{"id":"138744"}, +{"id":"111399"}, +{"id":"199919"}, +{"id":"117092"}, +{"id":"35930"}, +{"id":"100837"}, +{"id":"157590"}, +{"id":"117607"}, +{"id":"39090"}, +{"id":"220267"}, +{"id":"1075"}, +{"id":"136295"}, +{"id":"10077"}, +{"id":"149226"}, +{"id":"64560"}, +{"id":"188710"}, +{"id":"96439"}, +{"id":"4976"}, +{"id":"139581"}, +{"id":"112517"}, +{"id":"143960"}, +{"id":"167030"}, +{"id":"151824"}, +{"id":"89516"}, +{"id":"96269"}, +{"id":"173239"}, +{"id":"43389"}, +{"id":"43903"}, +{"id":"53195"}, +{"id":"190798"}, +{"id":"185228"}, +{"id":"159102"}, +{"id":"146488"}, +{"id":"82880"}, +{"id":"59845"}, +{"id":"178030"}, +{"id":"22945"}, +{"id":"188644"}, +{"id":"112613"}, +{"id":"40885"}, +{"id":"40896"}, +{"id":"200675"}, +{"id":"268"}, +{"id":"61115"}, +{"id":"46314"}, +{"id":"66542"}, +{"id":"11627"}, +{"id":"130728"}, +{"id":"26452"}, +{"id":"172891"}, +{"id":"93890"}, +{"id":"203988"}, +{"id":"209340"}, +{"id":"79348"}, +{"id":"210385"}, +{"id":"147215"}, +{"id":"97648"}, +{"id":"156662"}, +{"id":"142301"}, +{"id":"108871"}, +{"id":"174008"}, +{"id":"45439"}, +{"id":"200348"}, +{"id":"17484"}, +{"id":"140666"}, +{"id":"1747"}, +{"id":"199018"}, +{"id":"35380"}, +{"id":"74274"}, +{"id":"116599"}, +{"id":"124644"}, +{"id":"150121"}, +{"id":"6067"}, +{"id":"63958"}, +{"id":"193747"}, +{"id":"129069"}, +{"id":"198942"}, +{"id":"91690"}, +{"id":"70475"}, +{"id":"40307"}, +{"id":"136956"}, +{"id":"122334"}, +{"id":"32986"}, +{"id":"165592"}, +{"id":"55309"}, +{"id":"24092"}, +{"id":"199026"}, +{"id":"36985"}, +{"id":"141727"}, +{"id":"66095"}, +{"id":"115212"}, +{"id":"62531"}, +{"id":"168619"}, +{"id":"160497"}, +{"id":"97882"}, +{"id":"116703"}, +{"id":"59626"}, +{"id":"195622"}, +{"id":"199643"}, +{"id":"104260"}, +{"id":"72261"}, +{"id":"102566"}, +{"id":"6085"}, +{"id":"219355"}, +{"id":"15906"}, +{"id":"186899"}, +{"id":"60636"}, +{"id":"129750"}, +{"id":"11000"}, +{"id":"91127"}, +{"id":"20215"}, +{"id":"65774"}, +{"id":"207532"}, +{"id":"178091"}, +{"id":"190571"}, +{"id":"154036"}, +{"id":"161430"}, +{"id":"114175"}, +{"id":"26194"}, +{"id":"143171"}, +{"id":"181083"}, +{"id":"214320"}, +{"id":"182099"}, +{"id":"177240"}, +{"id":"133689"}, +{"id":"58039"}, +{"id":"30322"}, +{"id":"1219"}, +{"id":"52527"}, +{"id":"112364"}, +{"id":"9302"}, +{"id":"191396"}, +{"id":"150663"}, +{"id":"32571"}, +{"id":"17841"}, +{"id":"216919"}, +{"id":"211892"}, +{"id":"29877"}, +{"id":"87759"}, +{"id":"1046"}, +{"id":"55082"}, +{"id":"49064"}, +{"id":"92613"}, +{"id":"171007"}, +{"id":"139243"}, +{"id":"169634"}, +{"id":"14864"}, +{"id":"181870"}, +{"id":"21762"}, +{"id":"88669"}, +{"id":"4601"}, +{"id":"204746"}, +{"id":"159094"}, +{"id":"112315"}, +{"id":"171150"}, +{"id":"133446"}, +{"id":"44626"}, +{"id":"180579"}, +{"id":"157385"}, +{"id":"37831"}, +{"id":"60123"}, +{"id":"208033"}, +{"id":"48487"}, +{"id":"189501"}, +{"id":"125789"}, +{"id":"198740"}, +{"id":"32238"}, +{"id":"195357"}, +{"id":"68871"}, +{"id":"56104"}, +{"id":"33023"}, +{"id":"73850"}, +{"id":"187448"}, +{"id":"135628"}, +{"id":"187839"}, +{"id":"122932"}, +{"id":"9260"}, +{"id":"204041"}, +{"id":"151517"}, +{"id":"26377"}, +{"id":"2948"}, +{"id":"48107"}, +{"id":"106603"}, +{"id":"182257"}, +{"id":"148560"}, +{"id":"187019"}, +{"id":"151921"}, +{"id":"190713"}, +{"id":"107329"}, +{"id":"165777"}, +{"id":"133317"}, +{"id":"104781"}, +{"id":"158184"}, +{"id":"18487"}, +{"id":"6020"}, +{"id":"117732"}, +{"id":"207601"}, +{"id":"122530"}, +{"id":"133658"}, +{"id":"190047"}, +{"id":"61971"}, +{"id":"45025"}, +{"id":"133981"}, +{"id":"32995"}, +{"id":"96084"}, +{"id":"220288"}, +{"id":"150624"}, +{"id":"94010"}, +{"id":"105437"}, +{"id":"200892"}, +{"id":"88425"}, +{"id":"180525"}, +{"id":"171094"}, +{"id":"175459"}, +{"id":"180676"}, +{"id":"79479"}, +{"id":"136430"}, +{"id":"200030"}, +{"id":"140741"}, +{"id":"38241"}, +{"id":"23385"}, +{"id":"74700"}, +{"id":"216695"}, +{"id":"83360"}, +{"id":"217468"}, +{"id":"119950"}, +{"id":"60606"}, +{"id":"73760"}, +{"id":"165864"}, +{"id":"144788"}, +{"id":"45041"}, +{"id":"56365"}, +{"id":"136632"}, +{"id":"12485"}, +{"id":"34780"}, +{"id":"134314"}, +{"id":"212848"}, +{"id":"27202"}, +{"id":"66126"}, +{"id":"94434"}, +{"id":"168637"}, +{"id":"24819"}, +{"id":"75787"}, +{"id":"41568"}, +{"id":"102822"}, +{"id":"13422"}, +{"id":"193618"}, +{"id":"2292"}, +{"id":"208062"}, +{"id":"107777"}, +{"id":"11503"}, +{"id":"137189"}, +{"id":"163727"}, +{"id":"220727"}, +{"id":"3542"}, +{"id":"162699"}, +{"id":"27972"}, +{"id":"209755"}, +{"id":"158263"}, +{"id":"151958"}, +{"id":"152583"}, +{"id":"34117"}, +{"id":"204195"}, +{"id":"58951"}, +{"id":"136776"}, +{"id":"111357"}, +{"id":"72565"}, +{"id":"124836"}, +{"id":"81550"}, +{"id":"131353"}, +{"id":"201599"}, +{"id":"66231"}, +{"id":"163239"}, +{"id":"24757"}, +{"id":"105809"}, +{"id":"47612"}, +{"id":"31743"}, +{"id":"87339"}, +{"id":"56782"}, +{"id":"76348"}, +{"id":"156014"}, +{"id":"157869"}, +{"id":"127075"}, +{"id":"172127"}, +{"id":"57269"}, +{"id":"30888"}, +{"id":"174715"}, +{"id":"181414"}, +{"id":"50935"}, +{"id":"28373"}, +{"id":"82345"}, +{"id":"15787"}, +{"id":"149106"}, +{"id":"103824"}, +{"id":"199613"}, +{"id":"57422"}, +{"id":"114762"}, +{"id":"120429"}, +{"id":"2362"}, +{"id":"151960"}, +{"id":"198501"}, +{"id":"10036"}, +{"id":"6320"}, +{"id":"63426"}, +{"id":"62469"}, +{"id":"137419"}, +{"id":"15167"}, +{"id":"71090"}, +{"id":"111141"}, +{"id":"83647"}, +{"id":"39566"}, +{"id":"158566"}, +{"id":"74740"}, +{"id":"95266"}, +{"id":"198823"}, +{"id":"100685"}, +{"id":"203199"}, +{"id":"51830"}, +{"id":"117179"}, +{"id":"170264"}, +{"id":"37796"}, +{"id":"33596"}, +{"id":"204745"}, +{"id":"67731"}, +{"id":"185983"}, +{"id":"40277"}, +{"id":"216582"}, +{"id":"86822"}, +{"id":"69829"}, +{"id":"58719"}, +{"id":"65554"}, +{"id":"37997"}, +{"id":"47053"}, +{"id":"140386"}, +{"id":"4200"}, +{"id":"182499"}, +{"id":"157865"}, +{"id":"117464"}, +{"id":"56264"}, +{"id":"140719"}, +{"id":"97585"}, +{"id":"27697"}, +{"id":"185433"}, +{"id":"82874"}, +{"id":"117944"}, +{"id":"114302"}, +{"id":"74722"}, +{"id":"213116"}, +{"id":"21232"}, +{"id":"118249"}, +{"id":"145690"}, +{"id":"28945"}, +{"id":"20394"}, +{"id":"111685"}, +{"id":"199652"}, +{"id":"184777"}, +{"id":"213482"}, +{"id":"84199"}, +{"id":"22453"}, +{"id":"169286"}, +{"id":"142498"}, +{"id":"115388"}, +{"id":"88529"}, +{"id":"84747"}, +{"id":"170954"}, +{"id":"23251"}, +{"id":"219001"}, +{"id":"217014"}, +{"id":"38355"}, +{"id":"106674"}, +{"id":"106269"}, +{"id":"177192"}, +{"id":"197144"}, +{"id":"46705"}, +{"id":"196491"}, +{"id":"78930"}, +{"id":"121244"}, +{"id":"96648"}, +{"id":"59618"}, +{"id":"175534"}, +{"id":"216088"}, +{"id":"104557"}, +{"id":"128872"}, +{"id":"156798"}, +{"id":"16229"}, +{"id":"76960"}, +{"id":"24847"}, +{"id":"39428"}, +{"id":"187753"}, +{"id":"109673"}, +{"id":"88006"}, +{"id":"72835"}, +{"id":"13009"}, +{"id":"29873"}, +{"id":"36811"}, +{"id":"26393"}, +{"id":"11798"}, +{"id":"155018"}, +{"id":"99121"}, +{"id":"52030"}, +{"id":"106641"}, +{"id":"126391"}, +{"id":"156430"}, +{"id":"14560"}, +{"id":"10701"}, +{"id":"209119"}, +{"id":"32652"}, +{"id":"166881"}, +{"id":"33992"}, +{"id":"130204"}, +{"id":"33496"}, +{"id":"111366"}, +{"id":"26617"}, +{"id":"36590"}, +{"id":"35460"}, +{"id":"162564"}, +{"id":"29812"}, +{"id":"154938"}, +{"id":"136715"}, +{"id":"3600"}, +{"id":"189323"}, +{"id":"95400"}, +{"id":"1914"}, +{"id":"32913"}, +{"id":"37936"}, +{"id":"94266"}, +{"id":"144325"}, +{"id":"48428"}, +{"id":"161285"}, +{"id":"57443"}, +{"id":"44262"}, +{"id":"199195"}, +{"id":"132947"}, +{"id":"97953"}, +{"id":"64128"}, +{"id":"176559"}, +{"id":"5540"}, +{"id":"94100"}, +{"id":"212358"}, +{"id":"41283"}, +{"id":"17863"}, +{"id":"140650"}, +{"id":"104718"}, +{"id":"27118"}, +{"id":"138635"}, +{"id":"208667"}, +{"id":"20985"}, +{"id":"180748"}, +{"id":"104089"}, +{"id":"161968"}, +{"id":"70654"}, +{"id":"196641"}, +{"id":"56474"}, +{"id":"29723"}, +{"id":"188520"}, +{"id":"90114"}, +{"id":"120022"}, +{"id":"164409"}, +{"id":"173104"}, +{"id":"13696"}, +{"id":"87297"}, +{"id":"152435"}, +{"id":"96680"}, +{"id":"78090"}, +{"id":"82759"}, +{"id":"179986"}, +{"id":"174367"}, +{"id":"115318"}, +{"id":"131996"}, +{"id":"216916"}, +{"id":"79046"}, +{"id":"184010"}, +{"id":"73614"}, +{"id":"4078"}, +{"id":"107937"}, +{"id":"177040"}, +{"id":"100408"}, +{"id":"60284"}, +{"id":"4149"}, +{"id":"29940"}, +{"id":"114919"}, +{"id":"48682"}, +{"id":"19990"}, +{"id":"181429"}, +{"id":"199824"}, +{"id":"126965"}, +{"id":"215415"}, +{"id":"8856"}, +{"id":"20176"}, +{"id":"155800"}, +{"id":"26069"}, +{"id":"179833"}, +{"id":"204330"}, +{"id":"3086"}, +{"id":"157860"}, +{"id":"41750"}, +{"id":"60894"}, +{"id":"205579"}, +{"id":"38313"}, +{"id":"31360"}, +{"id":"97739"}, +{"id":"10838"}, +{"id":"187682"}, +{"id":"144340"}, +{"id":"13044"}, +{"id":"28632"}, +{"id":"67579"}, +{"id":"123838"}, +{"id":"28635"}, +{"id":"33895"}, +{"id":"93322"}, +{"id":"145056"}, +{"id":"131508"}, +{"id":"214560"}, +{"id":"44783"}, +{"id":"81178"}, +{"id":"112137"}, +{"id":"4553"}, +{"id":"130799"}, +{"id":"161668"}, +{"id":"135583"}, +{"id":"210596"}, +{"id":"87040"}, +{"id":"160239"}, +{"id":"158216"}, +{"id":"207294"}, +{"id":"149687"}, +{"id":"153608"}, +{"id":"149539"}, +{"id":"219977"}, +{"id":"186489"}, +{"id":"30184"}, +{"id":"107063"}, +{"id":"192072"}, +{"id":"163240"}, +{"id":"79496"}, +{"id":"182173"}, +{"id":"62956"}, +{"id":"184654"}, +{"id":"219386"}, +{"id":"135110"}, +{"id":"207855"}, +{"id":"213223"}, +{"id":"133112"}, +{"id":"97004"}, +{"id":"110505"}, +{"id":"190025"}, +{"id":"23652"}, +{"id":"79360"}, +{"id":"218798"}, +{"id":"49217"}, +{"id":"132539"}, +{"id":"150531"}, +{"id":"94829"}, +{"id":"16097"}, +{"id":"44382"}, +{"id":"11829"}, +{"id":"53185"}, +{"id":"2762"}, +{"id":"213263"}, +{"id":"80103"}, +{"id":"66470"}, +{"id":"34549"}, +{"id":"94772"}, +{"id":"58616"}, +{"id":"125019"}, +{"id":"187929"}, +{"id":"59031"}, +{"id":"137550"}, +{"id":"184362"}, +{"id":"131969"}, +{"id":"72123"}, +{"id":"140500"}, +{"id":"151023"}, +{"id":"149928"}, +{"id":"135784"}, +{"id":"32254"}, +{"id":"188751"}, +{"id":"114555"}, +{"id":"16399"}, +{"id":"171077"}, +{"id":"133888"}, +{"id":"42703"}, +{"id":"44120"}, +{"id":"28522"}, +{"id":"192965"}, +{"id":"171541"}, +{"id":"181058"}, +{"id":"159074"}, +{"id":"158637"}, +{"id":"181484"}, +{"id":"213303"}, +{"id":"3254"}, +{"id":"2296"}, +{"id":"62776"}, +{"id":"99383"}, +{"id":"112739"}, +{"id":"166702"}, +{"id":"174548"}, +{"id":"117657"}, +{"id":"28104"}, +{"id":"121271"}, +{"id":"17276"}, +{"id":"9335"}, +{"id":"62991"}, +{"id":"161122"}, +{"id":"139697"}, +{"id":"117994"}, +{"id":"41737"}, +{"id":"202798"}, +{"id":"63603"}, +{"id":"28250"}, +{"id":"15443"}, +{"id":"14581"}, +{"id":"5891"}, +{"id":"150602"}, +{"id":"57241"}, +{"id":"591"}, +{"id":"199623"}, +{"id":"178138"}, +{"id":"102053"}, +{"id":"111191"}, +{"id":"15562"}, +{"id":"134301"}, +{"id":"45827"}, +{"id":"33904"}, +{"id":"24011"}, +{"id":"208906"}, +{"id":"104410"}, +{"id":"42921"}, +{"id":"202437"}, +{"id":"211321"}, +{"id":"61209"}, +{"id":"1860"}, +{"id":"108920"}, +{"id":"105554"}, +{"id":"168001"}, +{"id":"158640"}, +{"id":"155085"}, +{"id":"151622"}, +{"id":"71673"}, +{"id":"168565"}, +{"id":"160874"}, +{"id":"96015"}, +{"id":"127225"}, +{"id":"19346"}, +{"id":"45576"}, +{"id":"151015"}, +{"id":"172376"}, +{"id":"192461"}, +{"id":"100914"}, +{"id":"129931"}, +{"id":"27200"}, +{"id":"151724"}, +{"id":"13903"}, +{"id":"110061"}, +{"id":"126280"}, +{"id":"58035"}, +{"id":"143182"}, +{"id":"14174"}, +{"id":"69088"}, +{"id":"133890"}, +{"id":"14621"}, +{"id":"54311"}, +{"id":"133282"}, +{"id":"14945"}, +{"id":"44979"}, +{"id":"52988"}, +{"id":"62455"}, +{"id":"91167"}, +{"id":"44488"}, +{"id":"39335"}, +{"id":"155833"}, +{"id":"2679"}, +{"id":"116108"}, +{"id":"92445"}, +{"id":"141942"}, +{"id":"108098"}, +{"id":"111968"}, +{"id":"10257"}, +{"id":"187976"}, +{"id":"154690"}, +{"id":"125544"}, +{"id":"160974"}, +{"id":"94634"}, +{"id":"163475"}, +{"id":"62957"}, +{"id":"125796"}, +{"id":"33716"}, +{"id":"134571"}, +{"id":"47213"}, +{"id":"216798"}, +{"id":"178286"}, +{"id":"116920"}, +{"id":"29880"}, +{"id":"128412"}, +{"id":"87913"}, +{"id":"168898"}, +{"id":"170317"}, +{"id":"7039"}, +{"id":"158350"}, +{"id":"24953"}, +{"id":"37518"}, +{"id":"169710"}, +{"id":"179331"}, +{"id":"57207"}, +{"id":"35278"}, +{"id":"1454"}, +{"id":"38077"}, +{"id":"69932"}, +{"id":"90245"}, +{"id":"130694"}, +{"id":"139058"}, +{"id":"11815"}, +{"id":"146106"}, +{"id":"79381"}, +{"id":"70293"}, +{"id":"179878"}, +{"id":"44946"}, +{"id":"195637"}, +{"id":"136922"}, +{"id":"96579"}, +{"id":"64653"}, +{"id":"66984"}, +{"id":"33524"}, +{"id":"162585"}, +{"id":"182873"}, +{"id":"89473"}, +{"id":"66522"}, +{"id":"35045"}, +{"id":"156355"}, +{"id":"2537"}, +{"id":"121292"}, +{"id":"43269"}, +{"id":"11972"}, +{"id":"200625"}, +{"id":"174161"}, +{"id":"219083"}, +{"id":"212962"}, +{"id":"132818"}, +{"id":"146637"}, +{"id":"200750"}, +{"id":"150806"}, +{"id":"17468"}, +{"id":"174189"}, +{"id":"196452"}, +{"id":"101608"}, +{"id":"180437"}, +{"id":"179980"}, +{"id":"183831"}, +{"id":"121013"}, +{"id":"166087"}, +{"id":"213771"}, +{"id":"144531"}, +{"id":"92053"}, +{"id":"61049"}, +{"id":"128941"}, +{"id":"61590"}, +{"id":"68647"}, +{"id":"143933"}, +{"id":"179376"}, +{"id":"219968"}, +{"id":"99231"}, +{"id":"40077"}, +{"id":"69447"}, +{"id":"189754"}, +{"id":"198198"}, +{"id":"131286"}, +{"id":"49058"}, +{"id":"189179"}, +{"id":"91059"}, +{"id":"21597"}, +{"id":"173981"}, +{"id":"176075"}, +{"id":"160840"}, +{"id":"126668"}, +{"id":"93098"}, +{"id":"61100"}, +{"id":"82420"}, +{"id":"118725"}, +{"id":"146325"}, +{"id":"124885"}, +{"id":"154366"}, +{"id":"98550"}, +{"id":"182080"}, +{"id":"59297"}, +{"id":"76674"}, +{"id":"20362"}, +{"id":"189370"}, +{"id":"166623"}, +{"id":"120634"}, +{"id":"215811"}, +{"id":"42946"}, +{"id":"171130"}, +{"id":"129057"}, +{"id":"144551"}, +{"id":"85612"}, +{"id":"84954"}, +{"id":"191185"}, +{"id":"177822"}, +{"id":"164320"}, +{"id":"42371"}, +{"id":"100352"}, +{"id":"154421"}, +{"id":"152259"}, +{"id":"110398"}, +{"id":"96301"}, +{"id":"7480"}, +{"id":"21257"}, +{"id":"169081"}, +{"id":"203964"}, +{"id":"11525"}, +{"id":"181456"}, +{"id":"152027"}, +{"id":"138360"}, +{"id":"134602"}, +{"id":"17874"}, +{"id":"58156"}, +{"id":"211607"}, +{"id":"20319"}, +{"id":"26523"}, +{"id":"210756"}, +{"id":"181174"}, +{"id":"151124"}, +{"id":"147580"}, +{"id":"165233"}, +{"id":"27782"}, +{"id":"52123"}, +{"id":"75560"}, +{"id":"76118"}, +{"id":"120129"}, +{"id":"207666"}, +{"id":"86637"}, +{"id":"141603"}, +{"id":"20415"}, +{"id":"5159"}, +{"id":"3570"}, +{"id":"103949"}, +{"id":"19449"}, +{"id":"203160"}, +{"id":"204354"}, +{"id":"99412"}, +{"id":"86406"}, +{"id":"188034"}, +{"id":"40552"}, +{"id":"134943"}, +{"id":"205052"}, +{"id":"135469"}, +{"id":"126422"}, +{"id":"195910"}, +{"id":"130022"}, +{"id":"120866"}, +{"id":"167358"}, +{"id":"194330"}, +{"id":"29418"}, +{"id":"192713"}, +{"id":"74607"}, +{"id":"51892"}, +{"id":"37628"}, +{"id":"175394"}, +{"id":"163102"}, +{"id":"725"}, +{"id":"139894"}, +{"id":"16538"}, +{"id":"215608"}, +{"id":"117020"}, +{"id":"9626"}, +{"id":"183513"}, +{"id":"186257"}, +{"id":"158202"}, +{"id":"122762"}, +{"id":"4912"}, +{"id":"184669"}, +{"id":"30445"}, +{"id":"46565"}, +{"id":"111098"}, +{"id":"96931"}, +{"id":"63592"}, +{"id":"139973"}, +{"id":"103805"}, +{"id":"28715"}, +{"id":"77787"}, +{"id":"9192"}, +{"id":"27106"}, +{"id":"82084"}, +{"id":"132715"}, +{"id":"200228"}, +{"id":"115081"}, +{"id":"169279"}, +{"id":"111669"}, +{"id":"161836"}, +{"id":"120257"}, +{"id":"116752"}, +{"id":"77563"}, +{"id":"192429"}, +{"id":"4011"}, +{"id":"40850"}, +{"id":"179054"}, +{"id":"183169"}, +{"id":"64760"}, +{"id":"174903"}, +{"id":"177756"}, +{"id":"189526"}, +{"id":"88606"}, +{"id":"66265"}, +{"id":"220521"}, +{"id":"44376"}, +{"id":"177975"}, +{"id":"91476"}, +{"id":"119111"}, +{"id":"141451"}, +{"id":"40978"}, +{"id":"50019"}, +{"id":"19820"}, +{"id":"147477"}, +{"id":"7911"}, +{"id":"178746"}, +{"id":"102471"}, +{"id":"57817"}, +{"id":"163386"}, +{"id":"211661"}, +{"id":"70065"}, +{"id":"55011"}, +{"id":"41525"}, +{"id":"107552"}, +{"id":"115534"}, +{"id":"197659"}, +{"id":"81079"}, +{"id":"180316"}, +{"id":"91200"}, +{"id":"122095"}, +{"id":"181233"}, +{"id":"21745"}, +{"id":"51515"}, +{"id":"211508"}, +{"id":"83229"}, +{"id":"19225"}, +{"id":"216638"}, +{"id":"69569"}, +{"id":"45007"}, +{"id":"13987"}, +{"id":"36904"}, +{"id":"22904"}, +{"id":"139136"}, +{"id":"177816"}, +{"id":"20225"}, +{"id":"76375"}, +{"id":"184948"}, +{"id":"25265"}, +{"id":"34507"}, +{"id":"190089"}, +{"id":"204142"}, +{"id":"132351"}, +{"id":"89809"}, +{"id":"110292"}, +{"id":"96046"}, +{"id":"61847"}, +{"id":"127078"}, +{"id":"169628"}, +{"id":"149691"}, +{"id":"135925"}, +{"id":"49975"}, +{"id":"207463"}, +{"id":"94973"}, +{"id":"127876"}, +{"id":"48657"}, +{"id":"93479"}, +{"id":"120586"}, +{"id":"170735"}, +{"id":"38494"}, +{"id":"29965"}, +{"id":"151104"}, +{"id":"101988"}, +{"id":"209377"}, +{"id":"190279"}, +{"id":"118568"}, +{"id":"193430"}, +{"id":"133791"}, +{"id":"8616"}, +{"id":"176486"}, +{"id":"24598"}, +{"id":"9231"}, +{"id":"203127"}, +{"id":"112701"}, +{"id":"96586"}, +{"id":"170856"}, +{"id":"97138"}, +{"id":"184691"}, +{"id":"674"}, +{"id":"171727"}, +{"id":"133919"}, +{"id":"46089"}, +{"id":"159861"}, +{"id":"189378"}, +{"id":"124826"}, +{"id":"34010"}, +{"id":"145960"}, +{"id":"43367"}, +{"id":"200374"}, +{"id":"34354"}, +{"id":"139401"}, +{"id":"172600"}, +{"id":"56448"}, +{"id":"87298"}, +{"id":"100686"}, +{"id":"124380"}, +{"id":"40473"}, +{"id":"85460"}, +{"id":"3555"}, +{"id":"36003"}, +{"id":"197521"}, +{"id":"12781"}, +{"id":"209638"}, +{"id":"129936"}, +{"id":"193269"}, +{"id":"21521"}, +{"id":"136204"}, +{"id":"37558"}, +{"id":"203386"}, +{"id":"70958"}, +{"id":"75270"}, +{"id":"19355"}, +{"id":"188812"}, +{"id":"180853"}, +{"id":"210499"}, +{"id":"169603"}, +{"id":"164316"}, +{"id":"183084"}, +{"id":"31407"}, +{"id":"189341"}, +{"id":"176971"}, +{"id":"33510"}, +{"id":"121635"}, +{"id":"78148"}, +{"id":"68675"}, +{"id":"133345"}, +{"id":"146081"}, +{"id":"111734"}, +{"id":"58882"}, +{"id":"81339"}, +{"id":"131212"}, +{"id":"106482"}, +{"id":"23219"}, +{"id":"164020"}, +{"id":"38675"}, +{"id":"68507"}, +{"id":"177022"}, +{"id":"95367"}, +{"id":"20142"}, +{"id":"114021"}, +{"id":"125903"}, +{"id":"202568"}, +{"id":"209776"}, +{"id":"171561"}, +{"id":"1094"}, +{"id":"137524"}, +{"id":"14583"}, +{"id":"207371"}, +{"id":"44032"}, +{"id":"117145"}, +{"id":"179669"}, +{"id":"201962"}, +{"id":"39489"}, +{"id":"156656"}, +{"id":"181592"}, +{"id":"48713"}, +{"id":"21835"}, +{"id":"35505"}, +{"id":"64237"}, +{"id":"87915"}, +{"id":"41696"}, +{"id":"128420"}, +{"id":"18823"}, +{"id":"156391"}, +{"id":"96400"}, +{"id":"173268"}, +{"id":"55022"}, +{"id":"82358"}, +{"id":"145422"}, +{"id":"157667"}, +{"id":"174754"}, +{"id":"108190"}, +{"id":"191619"}, +{"id":"29522"}, +{"id":"207139"}, +{"id":"37768"}, +{"id":"6882"}, +{"id":"91506"}, +{"id":"140434"}, +{"id":"153540"}, +{"id":"131146"}, +{"id":"108194"}, +{"id":"185527"}, +{"id":"180150"}, +{"id":"1467"}, +{"id":"178323"}, +{"id":"176727"}, +{"id":"116726"}, +{"id":"12334"}, +{"id":"91171"}, +{"id":"86362"}, +{"id":"175029"}, +{"id":"109792"}, +{"id":"14803"}, +{"id":"176185"}, +{"id":"77836"}, +{"id":"203889"}, +{"id":"92670"}, +{"id":"59245"}, +{"id":"132194"}, +{"id":"29090"}, +{"id":"56313"}, +{"id":"122563"}, +{"id":"49051"}, +{"id":"40646"}, +{"id":"213631"}, +{"id":"99171"}, +{"id":"139082"}, +{"id":"151241"}, +{"id":"11530"}, +{"id":"136979"}, +{"id":"56416"}, +{"id":"128358"}, +{"id":"115179"}, +{"id":"78653"}, +{"id":"43033"}, +{"id":"127103"}, +{"id":"52389"}, +{"id":"141114"}, +{"id":"179610"}, +{"id":"141877"}, +{"id":"213514"}, +{"id":"208083"}, +{"id":"32890"}, +{"id":"156075"}, +{"id":"122244"}, +{"id":"67676"}, +{"id":"219680"}, +{"id":"172415"}, +{"id":"219903"}, +{"id":"79585"}, +{"id":"163896"}, +{"id":"72319"}, +{"id":"178239"}, +{"id":"85394"}, +{"id":"203926"}, +{"id":"98434"}, +{"id":"189239"}, +{"id":"160029"}, +{"id":"166041"}, +{"id":"92367"}, +{"id":"57345"}, +{"id":"32535"}, +{"id":"92700"}, +{"id":"186338"}, +{"id":"14452"}, +{"id":"209100"}, +{"id":"136651"}, +{"id":"189836"}, +{"id":"185869"}, +{"id":"2780"}, +{"id":"30526"}, +{"id":"109144"}, +{"id":"128797"}, +{"id":"105400"}, +{"id":"46956"}, +{"id":"143441"}, +{"id":"98406"}, +{"id":"96225"}, +{"id":"146788"}, +{"id":"137239"}, +{"id":"134737"}, +{"id":"2680"}, +{"id":"11701"}, +{"id":"123153"}, +{"id":"47632"}, +{"id":"94734"}, +{"id":"220443"}, +{"id":"73626"}, +{"id":"207562"}, +{"id":"186410"}, +{"id":"138930"}, +{"id":"121514"}, +{"id":"94101"}, +{"id":"93513"}, +{"id":"205722"}, +{"id":"132152"}, +{"id":"121741"}, +{"id":"177030"}, +{"id":"213719"}, +{"id":"83728"}, +{"id":"210338"}, +{"id":"147881"}, +{"id":"123623"}, +{"id":"206563"}, +{"id":"13846"}, +{"id":"101540"}, +{"id":"103819"}, +{"id":"46203"}, +{"id":"168357"}, +{"id":"180366"}, +{"id":"100600"}, +{"id":"181056"}, +{"id":"105057"}, +{"id":"132466"}, +{"id":"217215"}, +{"id":"112453"}, +{"id":"593"}, +{"id":"50255"}, +{"id":"196848"}, +{"id":"210123"}, +{"id":"177417"}, +{"id":"151174"}, +{"id":"92903"}, +{"id":"128012"}, +{"id":"76832"}, +{"id":"170223"}, +{"id":"183221"}, +{"id":"127403"}, +{"id":"128671"}, +{"id":"111642"}, +{"id":"90173"}, +{"id":"183225"}, +{"id":"188617"}, +{"id":"69176"}, +{"id":"117113"}, +{"id":"63768"}, +{"id":"39442"}, +{"id":"192955"}, +{"id":"122801"}, +{"id":"70550"}, +{"id":"172341"}, +{"id":"185123"}, +{"id":"99487"}, +{"id":"28630"}, +{"id":"197676"}, +{"id":"79691"}, +{"id":"65392"}, +{"id":"100690"}, +{"id":"211594"}, +{"id":"99789"}, +{"id":"179372"}, +{"id":"3767"}, +{"id":"205990"}, +{"id":"81691"}, +{"id":"134531"}, +{"id":"186403"}, +{"id":"123988"}, +{"id":"138094"}, +{"id":"152830"}, +{"id":"61112"}, +{"id":"193124"}, +{"id":"107823"}, +{"id":"20064"}, +{"id":"180772"}, +{"id":"73325"}, +{"id":"51478"}, +{"id":"22755"}, +{"id":"159517"}, +{"id":"165645"}, +{"id":"27607"}, +{"id":"35004"}, +{"id":"99460"}, +{"id":"74174"}, +{"id":"138669"}, +{"id":"27888"}, +{"id":"44931"}, +{"id":"139386"}, +{"id":"105667"}, +{"id":"164027"}, +{"id":"193941"}, +{"id":"20996"}, +{"id":"12446"}, +{"id":"10910"}, +{"id":"200657"}, +{"id":"2343"}, +{"id":"170354"}, +{"id":"128592"}, +{"id":"195119"}, +{"id":"125666"}, +{"id":"37120"}, +{"id":"153353"}, +{"id":"153004"}, +{"id":"49300"}, +{"id":"103394"}, +{"id":"50898"}, +{"id":"178612"}, +{"id":"27791"}, +{"id":"202138"}, +{"id":"163807"}, +{"id":"27175"}, +{"id":"151470"}, +{"id":"39138"}, +{"id":"191755"}, +{"id":"95314"}, +{"id":"17022"}, +{"id":"130179"}, +{"id":"183857"}, +{"id":"60588"}, +{"id":"200929"}, +{"id":"66607"}, +{"id":"135598"}, +{"id":"23278"}, +{"id":"147264"}, +{"id":"146882"}, +{"id":"8263"}, +{"id":"53767"}, +{"id":"60137"}, +{"id":"183766"}, +{"id":"14459"}, +{"id":"197732"}, +{"id":"163992"}, +{"id":"163290"}, +{"id":"141082"}, +{"id":"94009"}, +{"id":"148940"}, +{"id":"104913"}, +{"id":"98772"}, +{"id":"28314"}, +{"id":"162216"}, +{"id":"132926"}, +{"id":"67580"}, +{"id":"121422"}, +{"id":"90270"}, +{"id":"181799"}, +{"id":"166624"}, +{"id":"109674"}, +{"id":"210813"}, +{"id":"163448"}, +{"id":"120170"}, +{"id":"119261"}, +{"id":"199379"}, +{"id":"191961"}, +{"id":"160007"}, +{"id":"68556"}, +{"id":"191700"}, +{"id":"216917"}, +{"id":"74730"}, +{"id":"78014"}, +{"id":"20470"}, +{"id":"63056"}, +{"id":"74551"}, +{"id":"36413"}, +{"id":"29034"}, +{"id":"94049"}, +{"id":"117098"}, +{"id":"25742"}, +{"id":"121317"}, +{"id":"130663"}, +{"id":"175397"}, +{"id":"19176"}, +{"id":"68297"}, +{"id":"81495"}, +{"id":"84852"}, +{"id":"36726"}, +{"id":"39805"}, +{"id":"217504"}, +{"id":"15538"}, +{"id":"129260"}, +{"id":"28837"}, +{"id":"159709"}, +{"id":"180397"}, +{"id":"14503"}, +{"id":"111601"}, +{"id":"171442"}, +{"id":"158743"}, +{"id":"41763"}, +{"id":"157782"}, +{"id":"57700"}, +{"id":"182146"}, +{"id":"30139"}, +{"id":"139874"}, +{"id":"186662"}, +{"id":"194661"}, +{"id":"123948"}, +{"id":"178475"}, +{"id":"54760"}, +{"id":"185185"}, +{"id":"42072"}, +{"id":"184605"}, +{"id":"103612"}, +{"id":"806"}, +{"id":"108087"}, +{"id":"181746"}, +{"id":"213668"}, +{"id":"69014"}, +{"id":"58025"}, +{"id":"28171"}, +{"id":"133080"}, +{"id":"219607"}, +{"id":"45501"}, +{"id":"196968"}, +{"id":"120149"}, +{"id":"158980"}, +{"id":"30679"}, +{"id":"59572"}, +{"id":"43171"}, +{"id":"93903"}, +{"id":"167784"}, +{"id":"179303"}, +{"id":"97599"}, +{"id":"47646"}, +{"id":"9138"}, +{"id":"209747"}, +{"id":"209551"}, +{"id":"120346"}, +{"id":"154530"}, +{"id":"116937"}, +{"id":"151335"}, +{"id":"181464"}, +{"id":"19028"}, +{"id":"159994"}, +{"id":"44787"}, +{"id":"163854"}, +{"id":"104081"}, +{"id":"165456"}, +{"id":"209941"}, +{"id":"161164"}, +{"id":"126769"}, +{"id":"61855"}, +{"id":"24916"}, +{"id":"143354"}, +{"id":"149730"}, +{"id":"199358"}, +{"id":"187364"}, +{"id":"9264"}, +{"id":"215040"}, +{"id":"198255"}, +{"id":"3975"}, +{"id":"80045"}, +{"id":"51667"}, +{"id":"69689"}, +{"id":"89345"}, +{"id":"58859"}, +{"id":"217773"}, +{"id":"143432"}, +{"id":"87785"}, +{"id":"13035"}, +{"id":"119555"}, +{"id":"71694"}, +{"id":"63329"}, +{"id":"64171"}, +{"id":"1364"}, +{"id":"39919"}, +{"id":"176260"}, +{"id":"95366"}, +{"id":"176781"}, +{"id":"28350"}, +{"id":"68225"}, +{"id":"145978"}, +{"id":"184249"}, +{"id":"17285"}, +{"id":"4428"}, +{"id":"46023"}, +{"id":"209029"}, +{"id":"119740"}, +{"id":"181249"}, +{"id":"187578"}, +{"id":"179784"}, +{"id":"199398"}, +{"id":"190954"}, +{"id":"215617"}, +{"id":"20173"}, +{"id":"79516"}, +{"id":"69734"}, +{"id":"159681"}, +{"id":"4858"}, +{"id":"101115"}, +{"id":"74113"}, +{"id":"61376"}, +{"id":"199323"}, +{"id":"196513"}, +{"id":"199400"}, +{"id":"145927"}, +{"id":"120968"}, +{"id":"7115"}, +{"id":"61197"}, +{"id":"213016"}, +{"id":"37007"}, +{"id":"132319"}, +{"id":"188835"}, +{"id":"55984"}, +{"id":"176104"}, +{"id":"43974"}, +{"id":"23006"}, +{"id":"3864"}, +{"id":"146113"}, +{"id":"194968"}, +{"id":"143735"}, +{"id":"97507"}, +{"id":"124589"}, +{"id":"119551"}, +{"id":"64619"}, +{"id":"184283"}, +{"id":"136142"}, +{"id":"194347"}, +{"id":"81451"}, +{"id":"84192"}, +{"id":"187132"}, +{"id":"195659"}, +{"id":"36972"}, +{"id":"208153"}, +{"id":"145291"}, +{"id":"133260"}, +{"id":"214280"}, +{"id":"201868"}, +{"id":"135878"}, +{"id":"212263"}, +{"id":"150554"}, +{"id":"26050"}, +{"id":"44561"}, +{"id":"41255"}, +{"id":"13295"}, +{"id":"141255"}, +{"id":"101496"}, +{"id":"116789"}, +{"id":"190615"}, +{"id":"102210"}, +{"id":"180184"}, +{"id":"42597"}, +{"id":"81172"}, +{"id":"51879"}, +{"id":"18237"}, +{"id":"109730"}, +{"id":"180294"}, +{"id":"152905"}, +{"id":"215483"}, +{"id":"167724"}, +{"id":"140506"}, +{"id":"88809"}, +{"id":"113479"}, +{"id":"102034"}, +{"id":"47617"}, +{"id":"164312"}, +{"id":"45758"}, +{"id":"11461"}, +{"id":"104146"}, +{"id":"191317"}, +{"id":"47535"}, +{"id":"47933"}, +{"id":"9033"}, +{"id":"85516"}, +{"id":"178016"}, +{"id":"191771"}, +{"id":"115242"}, +{"id":"59016"}, +{"id":"123587"}, +{"id":"106217"}, +{"id":"64808"}, +{"id":"41610"}, +{"id":"192656"}, +{"id":"184128"}, +{"id":"95373"}, +{"id":"136373"}, +{"id":"49820"}, +{"id":"58998"}, +{"id":"203207"}, +{"id":"104722"}, +{"id":"131133"}, +{"id":"112651"}, +{"id":"81808"}, +{"id":"183994"}, +{"id":"76693"}, +{"id":"3076"}, +{"id":"196022"}, +{"id":"179496"}, +{"id":"75128"}, +{"id":"206182"}, +{"id":"155306"}, +{"id":"37503"}, +{"id":"22665"}, +{"id":"195765"}, +{"id":"108214"}, +{"id":"168843"}, +{"id":"10737"}, +{"id":"83397"}, +{"id":"8950"}, +{"id":"203998"}, +{"id":"92584"}, +{"id":"205631"}, +{"id":"135713"}, +{"id":"5962"}, +{"id":"25920"}, +{"id":"103914"}, +{"id":"145522"}, +{"id":"171152"}, +{"id":"131792"}, +{"id":"11980"}, +{"id":"28562"}, +{"id":"30527"}, +{"id":"135660"}, +{"id":"35709"}, +{"id":"13495"}, +{"id":"32460"}, +{"id":"127440"}, +{"id":"6113"}, +{"id":"208349"}, +{"id":"167800"}, +{"id":"104381"}, +{"id":"20395"}, +{"id":"88263"}, +{"id":"43016"}, +{"id":"214121"}, +{"id":"36748"}, +{"id":"21498"}, +{"id":"106201"}, +{"id":"201293"}, +{"id":"138050"}, +{"id":"148643"}, +{"id":"60568"}, +{"id":"157453"}, +{"id":"20250"}, +{"id":"83430"}, +{"id":"124404"}, +{"id":"168249"}, +{"id":"120081"}, +{"id":"144469"}, +{"id":"175515"}, +{"id":"163104"}, +{"id":"41808"}, +{"id":"156388"}, +{"id":"115367"}, +{"id":"86782"}, +{"id":"143574"}, +{"id":"194074"}, +{"id":"206275"}, +{"id":"129315"}, +{"id":"91065"}, +{"id":"94969"}, +{"id":"49813"}, +{"id":"22472"}, +{"id":"61639"}, +{"id":"69855"}, +{"id":"31137"}, +{"id":"190854"}, +{"id":"31192"}, +{"id":"165178"}, +{"id":"114623"}, +{"id":"207253"}, +{"id":"31183"}, +{"id":"90546"}, +{"id":"146334"}, +{"id":"101718"}, +{"id":"146525"}, +{"id":"95126"}, +{"id":"39903"}, +{"id":"2282"}, +{"id":"43447"}, +{"id":"197031"}, +{"id":"147553"}, +{"id":"41380"}, +{"id":"161179"}, +{"id":"36215"}, +{"id":"58948"}, +{"id":"138103"}, +{"id":"33205"}, +{"id":"209507"}, +{"id":"169951"}, +{"id":"166391"}, +{"id":"183369"}, +{"id":"172205"}, +{"id":"11842"}, +{"id":"214665"}, +{"id":"182674"}, +{"id":"142067"}, +{"id":"97097"}, +{"id":"6063"}, +{"id":"197035"}, +{"id":"69118"}, +{"id":"13865"}, +{"id":"144234"}, +{"id":"31876"}, +{"id":"42867"}, +{"id":"99058"}, +{"id":"53844"}, +{"id":"91487"}, +{"id":"84870"}, +{"id":"182931"}, +{"id":"177063"}, +{"id":"183284"}, +{"id":"32473"}, +{"id":"25319"}, +{"id":"114109"}, +{"id":"140499"}, +{"id":"26930"}, +{"id":"99032"}, +{"id":"210893"}, +{"id":"50483"}, +{"id":"3809"}, +{"id":"10926"}, +{"id":"142065"}, +{"id":"28680"}, +{"id":"57904"}, +{"id":"159275"}, +{"id":"143917"}, +{"id":"199572"}, +{"id":"115069"}, +{"id":"44701"}, +{"id":"78920"}, +{"id":"10585"}, +{"id":"9909"}, +{"id":"117682"}, +{"id":"131274"}, +{"id":"171247"}, +{"id":"166561"}, +{"id":"166751"}, +{"id":"195862"}, +{"id":"180441"}, +{"id":"101484"}, +{"id":"116226"}, +{"id":"97639"}, +{"id":"143883"}, +{"id":"3325"}, +{"id":"144010"}, +{"id":"137882"}, +{"id":"203425"}, +{"id":"104695"}, +{"id":"179283"}, +{"id":"47578"}, +{"id":"13330"}, +{"id":"34297"}, +{"id":"58918"}, +{"id":"97133"}, +{"id":"10292"}, +{"id":"37205"}, +{"id":"201873"}, +{"id":"5583"}, +{"id":"81831"}, +{"id":"173054"}, +{"id":"146976"}, +{"id":"113523"}, +{"id":"40508"}, +{"id":"139487"}, +{"id":"156150"}, +{"id":"112804"}, +{"id":"58813"}, +{"id":"35622"}, +{"id":"218961"}, +{"id":"117302"}, +{"id":"105524"}, +{"id":"136591"}, +{"id":"31660"}, +{"id":"142367"}, +{"id":"215300"}, +{"id":"55702"}, +{"id":"82755"}, +{"id":"2739"}, +{"id":"13891"}, +{"id":"142358"}, +{"id":"7294"}, +{"id":"39229"}, +{"id":"73308"}, +{"id":"102695"}, +{"id":"83182"}, +{"id":"6236"}, +{"id":"1950"}, +{"id":"70472"}, +{"id":"194331"}, +{"id":"197149"}, +{"id":"46235"}, +{"id":"205117"}, +{"id":"198411"}, +{"id":"126960"}, +{"id":"123916"}, +{"id":"23962"}, +{"id":"201564"}, +{"id":"152184"}, +{"id":"52216"}, +{"id":"866"}, +{"id":"11121"}, +{"id":"169304"}, +{"id":"152024"}, +{"id":"65839"}, +{"id":"30579"}, +{"id":"36707"}, +{"id":"5510"}, +{"id":"178796"}, +{"id":"135063"}, +{"id":"72199"}, +{"id":"185404"}, +{"id":"128875"}, +{"id":"44178"}, +{"id":"209943"}, +{"id":"205643"}, +{"id":"15095"}, +{"id":"12656"}, +{"id":"63644"}, +{"id":"44660"}, +{"id":"88727"}, +{"id":"14364"}, +{"id":"147130"}, +{"id":"35409"}, +{"id":"219712"}, +{"id":"123523"}, +{"id":"32748"}, +{"id":"171799"}, +{"id":"178443"}, +{"id":"53305"}, +{"id":"215084"}, +{"id":"134771"}, +{"id":"21733"}, +{"id":"93369"}, +{"id":"22011"}, +{"id":"27772"}, +{"id":"99125"}, +{"id":"143057"}, +{"id":"57416"}, +{"id":"34795"}, +{"id":"39425"}, +{"id":"102851"}, +{"id":"212243"}, +{"id":"33275"}, +{"id":"18858"}, +{"id":"180786"}, +{"id":"52329"}, +{"id":"67861"}, +{"id":"134878"}, +{"id":"113967"}, +{"id":"105654"}, +{"id":"150865"}, +{"id":"150454"}, +{"id":"147841"}, +{"id":"77051"}, +{"id":"174404"}, +{"id":"142901"}, +{"id":"121075"}, +{"id":"164908"}, +{"id":"7102"}, +{"id":"25302"}, +{"id":"151729"}, +{"id":"127836"}, +{"id":"11941"}, +{"id":"127391"}, +{"id":"67247"}, +{"id":"218398"}, +{"id":"168012"}, +{"id":"11686"}, +{"id":"165720"}, +{"id":"72632"}, +{"id":"183353"}, +{"id":"165909"}, +{"id":"69246"}, +{"id":"117141"}, +{"id":"136894"}, +{"id":"34518"}, +{"id":"10959"}, +{"id":"16463"}, +{"id":"191081"}, +{"id":"174249"}, +{"id":"59660"}, +{"id":"169824"}, +{"id":"64275"}, +{"id":"74080"}, +{"id":"43270"}, +{"id":"31102"}, +{"id":"218040"}, +{"id":"145052"}, +{"id":"169269"}, +{"id":"172894"}, +{"id":"35712"}, +{"id":"20863"}, +{"id":"77466"}, +{"id":"91187"}, +{"id":"189113"}, +{"id":"25212"}, +{"id":"24922"}, +{"id":"100798"}, +{"id":"161391"}, +{"id":"160687"}, +{"id":"153617"}, +{"id":"124312"}, +{"id":"112499"}, +{"id":"59155"}, +{"id":"117545"}, +{"id":"135673"}, +{"id":"55261"}, +{"id":"123742"}, +{"id":"146873"}, +{"id":"173560"}, +{"id":"202692"}, +{"id":"98095"}, +{"id":"182354"}, +{"id":"173273"}, +{"id":"134221"}, +{"id":"215583"}, +{"id":"50311"}, +{"id":"74215"}, +{"id":"105318"}, +{"id":"219617"}, +{"id":"138708"}, +{"id":"175343"}, +{"id":"172316"}, +{"id":"64936"}, +{"id":"153118"}, +{"id":"204320"}, +{"id":"116283"}, +{"id":"18406"}, +{"id":"152937"}, +{"id":"164350"}, +{"id":"156334"}, +{"id":"173870"}, +{"id":"68532"}, +{"id":"133530"}, +{"id":"220720"}, +{"id":"202097"}, +{"id":"24527"}, +{"id":"132530"}, +{"id":"114587"}, +{"id":"70850"}, +{"id":"194517"}, +{"id":"108443"}, +{"id":"188820"}, +{"id":"72740"}, +{"id":"98189"}, +{"id":"67620"}, +{"id":"202777"}, +{"id":"114709"}, +{"id":"96869"}, +{"id":"204653"}, +{"id":"93601"}, +{"id":"157399"}, +{"id":"56000"}, +{"id":"57636"}, +{"id":"108835"}, +{"id":"214542"}, +{"id":"78990"}, +{"id":"184104"}, +{"id":"170582"}, +{"id":"211021"}, +{"id":"25325"}, +{"id":"203533"}, +{"id":"21430"}, +{"id":"215933"}, +{"id":"207271"}, +{"id":"42424"}, +{"id":"1895"}, +{"id":"11942"}, +{"id":"3644"}, +{"id":"4683"}, +{"id":"165709"}, +{"id":"220630"}, +{"id":"161807"}, +{"id":"160298"}, +{"id":"176933"}, +{"id":"130276"}, +{"id":"186183"}, +{"id":"138758"}, +{"id":"156776"}, +{"id":"142964"}, +{"id":"6375"}, +{"id":"184632"}, +{"id":"74908"}, +{"id":"75944"}, +{"id":"52006"}, +{"id":"51299"}, +{"id":"14729"}, +{"id":"143003"}, +{"id":"170356"}, +{"id":"106775"}, +{"id":"159239"}, +{"id":"161899"}, +{"id":"173976"}, +{"id":"52598"}, +{"id":"13713"}, +{"id":"151850"}, +{"id":"96993"}, +{"id":"4302"}, +{"id":"164679"}, +{"id":"31075"}, +{"id":"151480"}, +{"id":"183886"}, +{"id":"216671"}, +{"id":"136055"}, +{"id":"103777"}, +{"id":"9412"}, +{"id":"172037"}, +{"id":"22449"}, +{"id":"31428"}, +{"id":"136710"}, +{"id":"19528"}, +{"id":"86176"}, +{"id":"1924"}, +{"id":"41178"}, +{"id":"185530"}, +{"id":"117747"}, +{"id":"139462"}, +{"id":"54161"}, +{"id":"187555"}, +{"id":"142310"}, +{"id":"219422"}, +{"id":"194834"}, +{"id":"181311"}, +{"id":"27077"}, +{"id":"58788"}, +{"id":"2103"}, +{"id":"147509"}, +{"id":"209419"}, +{"id":"94840"}, +{"id":"45680"}, +{"id":"156612"}, +{"id":"3639"}, +{"id":"9457"}, +{"id":"203005"}, +{"id":"9149"}, +{"id":"74169"}, +{"id":"197744"}, +{"id":"216011"}, +{"id":"35422"}, +{"id":"13423"}, +{"id":"97867"}, +{"id":"128383"}, +{"id":"111697"}, +{"id":"104937"}, +{"id":"68604"}, +{"id":"85471"}, +{"id":"166745"}, +{"id":"89064"}, +{"id":"59358"}, +{"id":"83923"}, +{"id":"59274"}, +{"id":"77034"}, +{"id":"14548"}, +{"id":"209505"}, +{"id":"151060"}, +{"id":"169690"}, +{"id":"113762"}, +{"id":"4488"}, +{"id":"220236"}, +{"id":"40655"}, +{"id":"45298"}, +{"id":"151384"}, +{"id":"64227"}, +{"id":"209783"}, +{"id":"214868"}, +{"id":"46983"}, +{"id":"217683"}, +{"id":"44805"}, +{"id":"166661"}, +{"id":"66649"}, +{"id":"68705"}, +{"id":"167761"}, +{"id":"187427"}, +{"id":"212641"}, +{"id":"70575"}, +{"id":"204363"}, +{"id":"165985"}, +{"id":"113111"}, +{"id":"44909"}, +{"id":"92111"}, +{"id":"99405"}, +{"id":"66670"}, +{"id":"17711"}, +{"id":"31375"}, +{"id":"152469"}, +{"id":"24073"}, +{"id":"215074"}, +{"id":"215218"}, +{"id":"79881"}, +{"id":"77097"}, +{"id":"138703"}, +{"id":"214707"}, +{"id":"46"}, +{"id":"38090"}, +{"id":"159178"}, +{"id":"12433"}, +{"id":"82569"}, +{"id":"26838"}, +{"id":"159072"}, +{"id":"206289"}, +{"id":"182401"}, +{"id":"167413"}, +{"id":"18168"}, +{"id":"59143"}, +{"id":"104448"}, +{"id":"59714"}, +{"id":"148740"}, +{"id":"89888"}, +{"id":"110672"}, +{"id":"50956"}, +{"id":"50080"}, +{"id":"116917"}, +{"id":"144782"}, +{"id":"91263"}, +{"id":"7310"}, +{"id":"149850"}, +{"id":"65308"}, +{"id":"197015"}, +{"id":"36206"}, +{"id":"212134"}, +{"id":"201697"}, +{"id":"39882"}, +{"id":"4505"}, +{"id":"91550"}, +{"id":"88597"}, +{"id":"172175"}, +{"id":"53006"}, +{"id":"118943"}, +{"id":"158451"}, +{"id":"124961"}, +{"id":"8752"}, +{"id":"138563"}, +{"id":"54585"}, +{"id":"148311"}, +{"id":"175672"}, +{"id":"163794"}, +{"id":"56016"}, +{"id":"100432"}, +{"id":"164090"}, +{"id":"47980"}, +{"id":"85164"}, +{"id":"103189"}, +{"id":"43136"}, +{"id":"209181"}, +{"id":"94084"}, +{"id":"147525"}, +{"id":"47923"}, +{"id":"150816"}, +{"id":"87623"}, +{"id":"30488"}, +{"id":"4352"}, +{"id":"41006"}, +{"id":"179752"}, +{"id":"18532"}, +{"id":"170072"}, +{"id":"50726"}, +{"id":"158530"}, +{"id":"121304"}, +{"id":"179865"}, +{"id":"71211"}, +{"id":"52588"}, +{"id":"111498"}, +{"id":"143345"}, +{"id":"192284"}, +{"id":"155320"}, +{"id":"135635"}, +{"id":"110422"}, +{"id":"18424"}, +{"id":"142410"}, +{"id":"104194"}, +{"id":"62867"}, +{"id":"215908"}, +{"id":"194765"}, +{"id":"146068"}, +{"id":"99942"}, +{"id":"1344"}, +{"id":"112242"}, +{"id":"87226"}, +{"id":"216200"}, +{"id":"53228"}, +{"id":"13380"}, +{"id":"218200"}, +{"id":"33460"}, +{"id":"130841"}, +{"id":"160527"}, +{"id":"151726"}, +{"id":"118659"}, +{"id":"150435"}, +{"id":"81285"}, +{"id":"111408"}, +{"id":"76179"}, +{"id":"8261"}, +{"id":"69039"}, +{"id":"130314"}, +{"id":"211467"}, +{"id":"55722"}, +{"id":"100343"}, +{"id":"126027"}, +{"id":"198719"}, +{"id":"130655"}, +{"id":"75618"}, +{"id":"174602"}, +{"id":"157567"}, +{"id":"60978"}, +{"id":"109784"}, +{"id":"39935"}, +{"id":"187044"}, +{"id":"124488"}, +{"id":"25041"}, +{"id":"184787"}, +{"id":"114282"}, +{"id":"213237"}, +{"id":"99717"}, +{"id":"214375"}, +{"id":"199092"}, +{"id":"150337"}, +{"id":"37810"}, +{"id":"212900"}, +{"id":"213992"}, +{"id":"207723"}, +{"id":"97287"}, +{"id":"206896"}, +{"id":"78313"}, +{"id":"217368"}, +{"id":"161294"}, +{"id":"169046"}, +{"id":"149592"}, +{"id":"106335"}, +{"id":"152771"}, +{"id":"38790"}, +{"id":"12410"}, +{"id":"208476"}, +{"id":"185667"}, +{"id":"3300"}, +{"id":"20260"}, +{"id":"146022"}, +{"id":"41165"}, +{"id":"37614"}, +{"id":"175460"}, +{"id":"150614"}, +{"id":"203419"}, +{"id":"17908"}, +{"id":"118385"}, +{"id":"64018"}, +{"id":"163487"}, +{"id":"94903"}, +{"id":"188045"}, +{"id":"106220"}, +{"id":"460"}, +{"id":"135233"}, +{"id":"74118"}, +{"id":"56242"}, +{"id":"156813"}, +{"id":"44823"}, +{"id":"24933"}, +{"id":"110926"}, +{"id":"195389"}, +{"id":"48478"}, +{"id":"167520"}, +{"id":"83470"}, +{"id":"68055"}, +{"id":"100865"}, +{"id":"176403"}, +{"id":"197000"}, +{"id":"79095"}, +{"id":"11465"}, +{"id":"30732"}, +{"id":"103386"}, +{"id":"179364"}, +{"id":"3465"}, +{"id":"129595"}, +{"id":"174018"}, +{"id":"197269"}, +{"id":"50176"}, +{"id":"179842"}, +{"id":"18450"}, +{"id":"99612"}, +{"id":"1285"}, +{"id":"166089"}, +{"id":"42557"}, +{"id":"21922"}, +{"id":"163211"}, +{"id":"134750"}, +{"id":"79274"}, +{"id":"65528"}, +{"id":"115124"}, +{"id":"198480"}, +{"id":"80224"}, +{"id":"89326"}, +{"id":"118234"}, +{"id":"93893"}, +{"id":"162182"}, +{"id":"12069"}, +{"id":"169100"}, +{"id":"164699"}, +{"id":"42883"}, +{"id":"168027"}, +{"id":"82126"}, +{"id":"77540"}, +{"id":"189901"}, +{"id":"187267"}, +{"id":"43716"}, +{"id":"201213"}, +{"id":"39734"}, +{"id":"208489"}, +{"id":"216957"}, +{"id":"15295"}, +{"id":"142573"}, +{"id":"70272"}, +{"id":"154522"}, +{"id":"69724"}, +{"id":"216246"}, +{"id":"163437"}, +{"id":"53892"}, +{"id":"156856"}, +{"id":"93978"}, +{"id":"116089"}, +{"id":"171667"}, +{"id":"65654"}, +{"id":"65163"}, +{"id":"115588"}, +{"id":"146964"}, +{"id":"206098"}, +{"id":"86329"}, +{"id":"40256"}, +{"id":"135599"}, +{"id":"2881"}, +{"id":"161154"}, +{"id":"218196"}, +{"id":"39916"}, +{"id":"116204"}, +{"id":"92519"}, +{"id":"171326"}, +{"id":"173138"}, +{"id":"91999"}, +{"id":"72133"}, +{"id":"106272"}, +{"id":"95854"}, +{"id":"141582"}, +{"id":"142413"}, +{"id":"71144"}, +{"id":"25305"}, +{"id":"210330"}, +{"id":"183335"}, +{"id":"173142"}, +{"id":"18229"}, +{"id":"197874"}, +{"id":"216206"}, +{"id":"18296"}, +{"id":"109492"}, +{"id":"92315"}, +{"id":"12908"}, +{"id":"145617"}, +{"id":"197376"}, +{"id":"197150"}, +{"id":"74194"}, +{"id":"130787"}, +{"id":"51086"}, +{"id":"146553"}, +{"id":"101253"}, +{"id":"120677"}, +{"id":"23707"}, +{"id":"197050"}, +{"id":"12970"}, +{"id":"51160"}, +{"id":"167333"}, +{"id":"135447"}, +{"id":"78547"}, +{"id":"80233"}, +{"id":"98657"}, +{"id":"87529"}, +{"id":"58421"}, +{"id":"175907"}, +{"id":"216497"}, +{"id":"217521"}, +{"id":"76897"}, +{"id":"179707"}, +{"id":"127395"}, +{"id":"114059"}, +{"id":"28937"}, +{"id":"15149"}, +{"id":"33563"}, +{"id":"176816"}, +{"id":"66024"}, +{"id":"104076"}, +{"id":"189510"}, +{"id":"115363"}, +{"id":"28487"}, +{"id":"120075"}, +{"id":"31619"}, +{"id":"92457"}, +{"id":"35993"}, +{"id":"144149"}, +{"id":"59600"}, +{"id":"590"}, +{"id":"150685"}, +{"id":"149371"}, +{"id":"77499"}, +{"id":"200786"}, +{"id":"35069"}, +{"id":"21783"}, +{"id":"148891"}, +{"id":"174921"}, +{"id":"67151"}, +{"id":"87392"}, +{"id":"178092"}, +{"id":"166510"}, +{"id":"83357"}, +{"id":"162725"}, +{"id":"114519"}, +{"id":"31689"}, +{"id":"157642"}, +{"id":"114051"}, +{"id":"50680"}, +{"id":"220082"}, +{"id":"17402"}, +{"id":"59617"}, +{"id":"169403"}, +{"id":"74373"}, +{"id":"16241"}, +{"id":"19279"}, +{"id":"3241"}, +{"id":"80616"}, +{"id":"64676"}, +{"id":"152902"}, +{"id":"107732"}, +{"id":"114531"}, +{"id":"159396"}, +{"id":"122536"}, +{"id":"147285"}, +{"id":"51393"}, +{"id":"151605"}, +{"id":"188784"}, +{"id":"181757"}, +{"id":"73562"}, +{"id":"132457"}, +{"id":"39678"}, +{"id":"173543"}, +{"id":"115973"}, +{"id":"22501"}, +{"id":"52291"}, +{"id":"72736"}, +{"id":"210540"}, +{"id":"148581"}, +{"id":"32989"}, +{"id":"190016"}, +{"id":"17038"}, +{"id":"20488"}, +{"id":"74348"}, +{"id":"178876"}, +{"id":"185320"}, +{"id":"212280"}, +{"id":"113301"}, +{"id":"144812"}, +{"id":"65305"}, +{"id":"104940"}, +{"id":"174440"}, +{"id":"155336"}, +{"id":"49068"}, +{"id":"63092"}, +{"id":"181243"}, +{"id":"93586"}, +{"id":"129493"}, +{"id":"56745"}, +{"id":"40591"}, +{"id":"46406"}, +{"id":"12889"}, +{"id":"98496"}, +{"id":"97579"}, +{"id":"50714"}, +{"id":"83106"}, +{"id":"106107"}, +{"id":"142419"}, +{"id":"109976"}, +{"id":"12411"}, +{"id":"152401"}, +{"id":"169502"}, +{"id":"106897"}, +{"id":"20625"}, +{"id":"167824"}, +{"id":"169692"}, +{"id":"192574"}, +{"id":"94379"}, +{"id":"12468"}, +{"id":"98320"}, +{"id":"121090"}, +{"id":"46347"}, +{"id":"157408"}, +{"id":"175412"}, +{"id":"62121"}, +{"id":"167913"}, +{"id":"21710"}, +{"id":"84276"}, +{"id":"112413"}, +{"id":"145785"}, +{"id":"110630"}, +{"id":"59941"}, +{"id":"193115"}, +{"id":"101600"}, +{"id":"65786"}, +{"id":"163196"}, +{"id":"165007"}, +{"id":"96435"}, +{"id":"78965"}, +{"id":"202376"}, +{"id":"2576"}, +{"id":"139556"}, +{"id":"99240"}, +{"id":"217884"}, +{"id":"105864"}, +{"id":"173714"}, +{"id":"147543"}, +{"id":"202383"}, +{"id":"121121"}, +{"id":"166289"}, +{"id":"11165"}, +{"id":"72713"}, +{"id":"179587"}, +{"id":"108405"}, +{"id":"125457"}, +{"id":"31971"}, +{"id":"113560"}, +{"id":"54981"}, +{"id":"104836"}, +{"id":"146764"}, +{"id":"36447"}, +{"id":"117015"}, +{"id":"163924"}, +{"id":"220547"}, +{"id":"16426"}, +{"id":"56831"}, +{"id":"174044"}, +{"id":"109879"}, +{"id":"79309"}, +{"id":"97762"}, +{"id":"85034"}, +{"id":"130266"}, +{"id":"47935"}, +{"id":"127313"}, +{"id":"88016"}, +{"id":"38545"}, +{"id":"216396"}, +{"id":"25767"}, +{"id":"71413"}, +{"id":"113964"}, +{"id":"181675"}, +{"id":"183634"}, +{"id":"170340"}, +{"id":"207965"}, +{"id":"5309"}, +{"id":"47286"}, +{"id":"26793"}, +{"id":"183124"}, +{"id":"30646"}, +{"id":"120118"}, +{"id":"127119"}, +{"id":"11746"}, +{"id":"87548"}, +{"id":"63096"}, +{"id":"197346"}, +{"id":"126103"}, +{"id":"207212"}, +{"id":"82349"}, +{"id":"137589"}, +{"id":"23627"}, +{"id":"184186"}, +{"id":"150359"}, +{"id":"210040"}, +{"id":"152723"}, +{"id":"203078"}, +{"id":"199180"}, +{"id":"119947"}, +{"id":"53970"}, +{"id":"89112"}, +{"id":"68432"}, +{"id":"183774"}, +{"id":"176444"}, +{"id":"44021"}, +{"id":"150048"}, +{"id":"176133"}, +{"id":"173891"}, +{"id":"64955"}, +{"id":"190019"}, +{"id":"150937"}, +{"id":"160575"}, +{"id":"24471"}, +{"id":"152521"}, +{"id":"61524"}, +{"id":"180311"}, +{"id":"169752"}, +{"id":"41161"}, +{"id":"29551"}, +{"id":"218982"}, +{"id":"46652"}, +{"id":"205114"}, +{"id":"140235"}, +{"id":"208053"}, +{"id":"34964"}, +{"id":"70109"}, +{"id":"213506"}, +{"id":"128868"}, +{"id":"216991"}, +{"id":"169744"}, +{"id":"182536"}, +{"id":"604"}, +{"id":"186573"}, +{"id":"198991"}, +{"id":"117670"}, +{"id":"121025"}, +{"id":"188373"}, +{"id":"181544"}, +{"id":"152848"}, +{"id":"99805"}, +{"id":"60444"}, +{"id":"15904"}, +{"id":"120988"}, +{"id":"151171"}, +{"id":"95183"}, +{"id":"116830"}, +{"id":"33479"}, +{"id":"114643"}, +{"id":"73389"}, +{"id":"97167"}, +{"id":"136935"}, +{"id":"48083"}, +{"id":"165196"}, +{"id":"97699"}, +{"id":"64638"}, +{"id":"218516"}, +{"id":"46506"}, +{"id":"145607"}, +{"id":"170695"}, +{"id":"153642"}, +{"id":"174510"}, +{"id":"29024"}, +{"id":"59632"}, +{"id":"78398"}, +{"id":"132831"}, +{"id":"57425"}, +{"id":"161586"}, +{"id":"12792"}, +{"id":"20469"}, +{"id":"157333"}, +{"id":"200618"}, +{"id":"176693"}, +{"id":"66862"}, +{"id":"17340"}, +{"id":"3361"}, +{"id":"35705"}, +{"id":"99376"}, +{"id":"187343"}, +{"id":"12922"}, +{"id":"116435"}, +{"id":"176279"}, +{"id":"59490"}, +{"id":"67690"}, +{"id":"194261"}, +{"id":"185238"}, +{"id":"78860"}, +{"id":"190867"}, +{"id":"19885"}, +{"id":"211375"}, +{"id":"80056"}, +{"id":"144383"}, +{"id":"91297"}, +{"id":"182936"}, +{"id":"161226"}, +{"id":"111467"}, +{"id":"64989"}, +{"id":"6487"}, +{"id":"141127"}, +{"id":"151915"}, +{"id":"37161"}, +{"id":"119583"}, +{"id":"108885"}, +{"id":"207434"}, +{"id":"177692"}, +{"id":"217676"}, +{"id":"130360"}, +{"id":"128721"}, +{"id":"145335"}, +{"id":"179297"}, +{"id":"144309"}, +{"id":"77607"}, +{"id":"55359"}, +{"id":"26624"}, +{"id":"65857"}, +{"id":"15873"}, +{"id":"32206"}, +{"id":"59859"}, +{"id":"178898"}, +{"id":"159834"}, +{"id":"136987"}, +{"id":"122913"}, +{"id":"165958"}, +{"id":"168759"}, +{"id":"25054"}, +{"id":"206074"}, +{"id":"99532"}, +{"id":"64771"}, +{"id":"135377"}, +{"id":"114801"}, +{"id":"209585"}, +{"id":"79469"}, +{"id":"30247"}, +{"id":"33463"}, +{"id":"106760"}, +{"id":"37747"}, +{"id":"93480"}, +{"id":"201226"}, +{"id":"156225"}, +{"id":"68603"}, +{"id":"188978"}, +{"id":"42460"}, +{"id":"207620"}, +{"id":"179249"}, +{"id":"86893"}, +{"id":"33874"}, +{"id":"1803"}, +{"id":"143945"}, +{"id":"148504"}, +{"id":"99428"}, +{"id":"129401"}, +{"id":"88884"}, +{"id":"68838"}, +{"id":"216707"}, +{"id":"32470"}, +{"id":"218411"}, +{"id":"51498"}, +{"id":"14336"}, +{"id":"19240"}, +{"id":"105691"}, +{"id":"109768"}, +{"id":"202908"}, +{"id":"154606"}, +{"id":"19946"}, +{"id":"11342"}, +{"id":"36924"}, +{"id":"53319"}, +{"id":"25139"}, +{"id":"191158"}, +{"id":"35334"}, +{"id":"197453"}, +{"id":"162812"}, +{"id":"6663"}, +{"id":"22718"}, +{"id":"142278"}, +{"id":"94095"}, +{"id":"2586"}, +{"id":"92465"}, +{"id":"17755"}, +{"id":"199253"}, +{"id":"213063"}, +{"id":"88546"}, +{"id":"202495"}, +{"id":"193823"}, +{"id":"953"}, +{"id":"13841"}, +{"id":"167253"}, +{"id":"167342"}, +{"id":"172236"}, +{"id":"72536"}, +{"id":"108637"}, +{"id":"140182"}, +{"id":"197020"}, +{"id":"188344"}, +{"id":"193118"}, +{"id":"110130"}, +{"id":"216996"}, +{"id":"70886"}, +{"id":"190286"}, +{"id":"20465"}, +{"id":"182409"}, +{"id":"83807"}, +{"id":"117383"}, +{"id":"160248"}, +{"id":"21562"}, +{"id":"78907"}, +{"id":"180943"}, +{"id":"68440"}, +{"id":"195780"}, +{"id":"100308"}, +{"id":"217063"}, +{"id":"164442"}, +{"id":"79140"}, +{"id":"31426"}, +{"id":"189779"}, +{"id":"28097"}, +{"id":"123857"}, +{"id":"82385"}, +{"id":"125605"}, +{"id":"15841"}, +{"id":"107023"}, +{"id":"31253"}, +{"id":"165611"}, +{"id":"114002"}, +{"id":"162314"}, +{"id":"124804"}, +{"id":"90996"}, +{"id":"105980"}, +{"id":"165993"}, +{"id":"31215"}, +{"id":"19271"}, +{"id":"130675"}, +{"id":"137774"}, +{"id":"62847"}, +{"id":"137688"}, +{"id":"179574"}, +{"id":"136519"}, +{"id":"126943"}, +{"id":"146250"}, +{"id":"125539"}, +{"id":"208493"}, +{"id":"33089"}, +{"id":"62720"}, +{"id":"136073"}, +{"id":"48813"}, +{"id":"69098"}, +{"id":"154724"}, +{"id":"125774"}, +{"id":"40914"}, +{"id":"93448"}, +{"id":"132696"}, +{"id":"99164"}, +{"id":"10886"}, +{"id":"86261"}, +{"id":"171858"}, +{"id":"37384"}, +{"id":"164347"}, +{"id":"112532"}, +{"id":"186175"}, +{"id":"120723"}, +{"id":"76132"}, +{"id":"105260"}, +{"id":"86384"}, +{"id":"107886"}, +{"id":"201815"}, +{"id":"68940"}, +{"id":"205711"}, +{"id":"98300"}, +{"id":"163178"}, +{"id":"130308"}, +{"id":"188072"}, +{"id":"95697"}, +{"id":"210358"}, +{"id":"48030"}, +{"id":"35065"}, +{"id":"138489"}, +{"id":"203483"}, +{"id":"200874"}, +{"id":"156640"}, +{"id":"183360"}, +{"id":"34112"}, +{"id":"50684"}, +{"id":"186682"}, +{"id":"103697"}, +{"id":"178460"}, +{"id":"47192"}, +{"id":"177849"}, +{"id":"74030"}, +{"id":"203704"}, +{"id":"41770"}, +{"id":"9341"}, +{"id":"192659"}, +{"id":"153869"}, +{"id":"190147"}, +{"id":"198884"}, +{"id":"217876"}, +{"id":"133309"}, +{"id":"15624"}, +{"id":"6359"}, +{"id":"131584"}, +{"id":"99026"}, +{"id":"28412"}, +{"id":"38059"}, +{"id":"11547"}, +{"id":"174349"}, +{"id":"83140"}, +{"id":"99254"}, +{"id":"45479"}, +{"id":"77980"}, +{"id":"169366"}, +{"id":"59920"}, +{"id":"164557"}, +{"id":"63029"}, +{"id":"22779"}, +{"id":"48579"}, +{"id":"168179"}, +{"id":"32806"}, +{"id":"196216"}, +{"id":"168042"}, +{"id":"123853"}, +{"id":"190521"}, +{"id":"155087"}, +{"id":"12088"}, +{"id":"17645"}, +{"id":"112"}, +{"id":"42726"}, +{"id":"145406"}, +{"id":"18980"}, +{"id":"9430"}, +{"id":"42270"}, +{"id":"206459"}, +{"id":"2495"}, +{"id":"153956"}, +{"id":"206777"}, +{"id":"177914"}, +{"id":"42320"}, +{"id":"133490"}, +{"id":"59117"}, +{"id":"57376"}, +{"id":"96130"}, +{"id":"217654"}, +{"id":"56174"}, +{"id":"114532"}, +{"id":"48369"}, +{"id":"152578"}, +{"id":"75041"}, +{"id":"133375"}, +{"id":"131556"}, +{"id":"111611"}, +{"id":"75202"}, +{"id":"170098"}, +{"id":"65516"}, +{"id":"189195"}, +{"id":"200696"}, +{"id":"77251"}, +{"id":"25451"}, +{"id":"5683"}, +{"id":"203984"}, +{"id":"192443"}, +{"id":"156128"}, +{"id":"42567"}, +{"id":"44414"}, +{"id":"18965"}, +{"id":"32190"}, +{"id":"167363"}, +{"id":"46833"}, +{"id":"73582"}, +{"id":"83927"}, +{"id":"170271"}, +{"id":"67827"}, +{"id":"42747"}, +{"id":"158273"}, +{"id":"159261"}, +{"id":"138687"}, +{"id":"152854"}, +{"id":"152352"}, +{"id":"89576"}, +{"id":"97890"}, +{"id":"206894"}, +{"id":"176430"}, +{"id":"146679"}, +{"id":"49270"}, +{"id":"19524"}, +{"id":"118690"}, +{"id":"70519"}, +{"id":"46280"}, +{"id":"142703"}, +{"id":"198108"}, +{"id":"194813"}, +{"id":"151195"}, +{"id":"25874"}, +{"id":"151502"}, +{"id":"8768"}, +{"id":"71166"}, +{"id":"216203"}, +{"id":"124077"}, +{"id":"186798"}, +{"id":"149344"}, +{"id":"138039"}, +{"id":"139540"}, +{"id":"154143"}, +{"id":"90923"}, +{"id":"166014"}, +{"id":"20645"}, +{"id":"53194"}, +{"id":"82774"}, +{"id":"170430"}, +{"id":"5593"}, +{"id":"170324"}, +{"id":"41251"}, +{"id":"219251"}, +{"id":"80438"}, +{"id":"160654"}, +{"id":"190762"}, +{"id":"128379"}, +{"id":"31460"}, +{"id":"137992"}, +{"id":"41315"}, +{"id":"106943"}, +{"id":"98693"}, +{"id":"137121"}, +{"id":"109974"}, +{"id":"179333"}, +{"id":"204863"}, +{"id":"47793"}, +{"id":"40970"}, +{"id":"161726"}, +{"id":"206140"}, +{"id":"22478"}, +{"id":"157554"}, +{"id":"185911"}, +{"id":"178412"}, +{"id":"28696"}, +{"id":"80546"}, +{"id":"199345"}, +{"id":"141224"}, +{"id":"90814"}, +{"id":"116761"}, +{"id":"9324"}, +{"id":"144016"}, +{"id":"181201"}, +{"id":"58749"}, +{"id":"96327"}, +{"id":"176691"}, +{"id":"190688"}, +{"id":"204450"}, +{"id":"111571"}, +{"id":"112490"}, +{"id":"314"}, +{"id":"73351"}, +{"id":"141278"}, +{"id":"201364"}, +{"id":"188680"}, +{"id":"121400"}, +{"id":"218540"}, +{"id":"78528"}, +{"id":"91501"}, +{"id":"103225"}, +{"id":"163014"}, +{"id":"211327"}, +{"id":"80903"}, +{"id":"181451"}, +{"id":"80976"}, +{"id":"161814"}, +{"id":"215372"}, +{"id":"148202"}, +{"id":"29029"}, +{"id":"30318"}, +{"id":"147224"}, +{"id":"102630"}, +{"id":"64776"}, +{"id":"104165"}, +{"id":"123626"}, +{"id":"205505"}, +{"id":"184766"}, +{"id":"125108"}, +{"id":"141522"}, +{"id":"172137"}, +{"id":"179305"}, +{"id":"161490"}, +{"id":"60689"}, +{"id":"58817"}, +{"id":"183653"}, +{"id":"210308"}, +{"id":"187384"}, +{"id":"163713"}, +{"id":"72293"}, +{"id":"183421"}, +{"id":"178981"}, +{"id":"68791"}, +{"id":"200838"}, +{"id":"48447"}, +{"id":"173315"}, +{"id":"68861"}, +{"id":"44011"}, +{"id":"121062"}, +{"id":"217148"}, +{"id":"140205"}, +{"id":"45143"}, +{"id":"143621"}, +{"id":"3824"}, +{"id":"128278"}, +{"id":"40207"}, +{"id":"61249"}, +{"id":"8243"}, +{"id":"84970"}, +{"id":"16904"}, +{"id":"212339"}, +{"id":"18156"}, +{"id":"142865"}, +{"id":"177944"}, +{"id":"134171"}, +{"id":"104622"}, +{"id":"114831"}, +{"id":"157047"}, +{"id":"20779"}, +{"id":"175003"}, +{"id":"80663"}, +{"id":"203401"}, +{"id":"183071"}, +{"id":"43693"}, +{"id":"138536"}, +{"id":"56340"}, +{"id":"68612"}, +{"id":"46063"}, +{"id":"208632"}, +{"id":"173608"}, +{"id":"52870"}, +{"id":"133985"}, +{"id":"30534"}, +{"id":"103524"}, +{"id":"7691"}, +{"id":"45591"}, +{"id":"142275"}, +{"id":"62530"}, +{"id":"21405"}, +{"id":"102669"}, +{"id":"105043"}, +{"id":"133218"}, +{"id":"91524"}, +{"id":"164362"}, +{"id":"72013"}, +{"id":"197309"}, +{"id":"45071"}, +{"id":"118707"}, +{"id":"124501"}, +{"id":"134474"}, +{"id":"188316"}, +{"id":"104679"}, +{"id":"213608"}, +{"id":"49575"}, +{"id":"153334"}, +{"id":"141393"}, +{"id":"204992"}, +{"id":"66148"}, +{"id":"80188"}, +{"id":"199327"}, +{"id":"205216"}, +{"id":"124608"}, +{"id":"95104"}, +{"id":"104948"}, +{"id":"38172"}, +{"id":"152427"}, +{"id":"24956"}, +{"id":"133902"}, +{"id":"114728"}, +{"id":"29189"}, +{"id":"96246"}, +{"id":"141293"}, +{"id":"190238"}, +{"id":"12096"}, +{"id":"45647"}, +{"id":"163297"}, +{"id":"52152"}, +{"id":"202180"}, +{"id":"156848"}, +{"id":"55997"}, +{"id":"218118"}, +{"id":"144269"}, +{"id":"26265"}, +{"id":"67051"}, +{"id":"149136"}, +{"id":"83730"}, +{"id":"80276"}, +{"id":"160360"}, +{"id":"136806"}, +{"id":"103072"}, +{"id":"64413"}, +{"id":"146460"}, +{"id":"41976"}, +{"id":"139653"}, +{"id":"55859"}, +{"id":"45225"}, +{"id":"107832"}, +{"id":"193984"}, +{"id":"24979"}, +{"id":"142923"}, +{"id":"204421"}, +{"id":"145135"}, +{"id":"136464"}, +{"id":"160814"}, +{"id":"219140"}, +{"id":"89059"}, +{"id":"200840"}, +{"id":"174962"}, +{"id":"92952"}, +{"id":"39633"}, +{"id":"52533"}, +{"id":"90017"}, +{"id":"195547"}, +{"id":"89556"}, +{"id":"20068"}, +{"id":"26429"}, +{"id":"212218"}, +{"id":"92201"}, +{"id":"20204"}, +{"id":"5640"}, +{"id":"107916"}, +{"id":"100251"}, +{"id":"26613"}, +{"id":"92651"}, +{"id":"207015"}, +{"id":"13805"}, +{"id":"32768"}, +{"id":"82462"}, +{"id":"30685"}, +{"id":"63140"}, +{"id":"44690"}, +{"id":"133633"}, +{"id":"164702"}, +{"id":"67233"}, +{"id":"149449"}, +{"id":"217393"}, +{"id":"8145"}, +{"id":"6890"}, +{"id":"77898"}, +{"id":"14543"}, +{"id":"200425"}, +{"id":"97056"}, +{"id":"85298"}, +{"id":"70605"}, +{"id":"151075"}, +{"id":"208673"}, +{"id":"175138"}, +{"id":"184176"}, +{"id":"59531"}, +{"id":"150385"}, +{"id":"56274"}, +{"id":"1471"}, +{"id":"86270"}, +{"id":"162553"}, +{"id":"59877"}, +{"id":"193081"}, +{"id":"105041"}, +{"id":"32204"}, +{"id":"34390"}, +{"id":"69966"}, +{"id":"2961"}, +{"id":"61732"}, +{"id":"127126"}, +{"id":"176191"}, +{"id":"152590"}, +{"id":"120882"}, +{"id":"119737"}, +{"id":"31943"}, +{"id":"114206"}, +{"id":"47173"}, +{"id":"60059"}, +{"id":"133856"}, +{"id":"193391"}, +{"id":"158586"}, +{"id":"128240"}, +{"id":"137200"}, +{"id":"67365"}, +{"id":"191348"}, +{"id":"98075"}, +{"id":"50378"}, +{"id":"24894"}, +{"id":"70322"}, +{"id":"157217"}, +{"id":"84411"}, +{"id":"25447"}, +{"id":"64016"}, +{"id":"19819"}, +{"id":"99900"}, +{"id":"170375"}, +{"id":"9277"}, +{"id":"83889"}, +{"id":"179579"}, +{"id":"97086"}, +{"id":"139022"}, +{"id":"153160"}, +{"id":"179230"}, +{"id":"62366"}, +{"id":"88921"}, +{"id":"199525"}, +{"id":"115298"}, +{"id":"131658"}, +{"id":"199407"}, +{"id":"140382"}, +{"id":"177068"}, +{"id":"182745"}, +{"id":"31625"}, +{"id":"41979"}, +{"id":"103816"}, +{"id":"39001"}, +{"id":"122323"}, +{"id":"220387"}, +{"id":"189826"}, +{"id":"7708"}, +{"id":"42318"}, +{"id":"111956"}, +{"id":"107520"}, +{"id":"73326"}, +{"id":"18319"}, +{"id":"207484"}, +{"id":"213885"}, +{"id":"94603"}, +{"id":"205907"}, +{"id":"18625"}, +{"id":"196365"}, +{"id":"191768"}, +{"id":"34025"}, +{"id":"130617"}, +{"id":"179812"}, +{"id":"114438"}, +{"id":"83516"}, +{"id":"47126"}, +{"id":"136748"}, +{"id":"137097"}, +{"id":"200595"}, +{"id":"175191"}, +{"id":"43925"}, +{"id":"192946"}, +{"id":"52247"}, +{"id":"52107"}, +{"id":"152012"}, +{"id":"166952"}, +{"id":"86923"}, +{"id":"176947"}, +{"id":"123070"}, +{"id":"212107"}, +{"id":"96487"}, +{"id":"91651"}, +{"id":"79462"}, +{"id":"116611"}, +{"id":"214240"}, +{"id":"115366"}, +{"id":"151325"}, +{"id":"117765"}, +{"id":"89237"}, +{"id":"42034"}, +{"id":"159232"}, +{"id":"146348"}, +{"id":"61813"}, +{"id":"103960"}, +{"id":"207627"}, +{"id":"33196"}, +{"id":"71123"}, +{"id":"185892"}, +{"id":"97580"}, +{"id":"49301"}, +{"id":"30255"}, +{"id":"33626"}, +{"id":"27343"}, +{"id":"51254"}, +{"id":"179417"}, +{"id":"191798"}, +{"id":"20634"}, +{"id":"19601"}, +{"id":"214"}, +{"id":"55786"}, +{"id":"145716"}, +{"id":"208471"}, +{"id":"96630"}, +{"id":"196813"}, +{"id":"192911"}, +{"id":"77663"}, +{"id":"74392"}, +{"id":"89913"}, +{"id":"47448"}, +{"id":"159210"}, +{"id":"108893"}, +{"id":"62369"}, +{"id":"173935"}, +{"id":"107431"}, +{"id":"176880"}, +{"id":"98614"}, +{"id":"180429"}, +{"id":"72977"}, +{"id":"18217"}, +{"id":"41091"}, +{"id":"85873"}, +{"id":"150931"}, +{"id":"202926"}, +{"id":"60161"}, +{"id":"104334"}, +{"id":"53265"}, +{"id":"196702"}, +{"id":"91598"}, +{"id":"94012"}, +{"id":"32530"}, +{"id":"29816"}, +{"id":"12045"}, +{"id":"113562"}, +{"id":"172220"}, +{"id":"76427"}, +{"id":"24093"}, +{"id":"175232"}, +{"id":"210887"}, +{"id":"75795"}, +{"id":"202047"}, +{"id":"178881"}, +{"id":"220353"}, +{"id":"68627"}, +{"id":"65236"}, +{"id":"20685"}, +{"id":"159267"}, +{"id":"43402"}, +{"id":"11919"}, +{"id":"60236"}, +{"id":"81283"}, +{"id":"74037"}, +{"id":"65319"}, +{"id":"47973"}, +{"id":"11154"}, +{"id":"40715"}, +{"id":"169838"}, +{"id":"189253"}, +{"id":"214817"}, +{"id":"101978"}, +{"id":"171283"}, +{"id":"55822"}, +{"id":"30727"}, +{"id":"157985"}, +{"id":"90433"}, +{"id":"151856"}, +{"id":"48939"}, +{"id":"168378"}, +{"id":"137077"}, +{"id":"104911"}, +{"id":"924"}, +{"id":"97694"}, +{"id":"41523"}, +{"id":"128467"}, +{"id":"94768"}, +{"id":"58670"}, +{"id":"51259"}, +{"id":"53871"}, +{"id":"167096"}, +{"id":"117476"}, +{"id":"55265"}, +{"id":"75284"}, +{"id":"132921"}, +{"id":"202630"}, +{"id":"186611"}, +{"id":"187330"}, +{"id":"53894"}, +{"id":"135958"}, +{"id":"85987"}, +{"id":"9080"}, +{"id":"126119"}, +{"id":"217371"}, +{"id":"142808"}, +{"id":"173760"}, +{"id":"167641"}, +{"id":"197400"}, +{"id":"212897"}, +{"id":"5105"}, +{"id":"20983"}, +{"id":"209815"}, +{"id":"428"}, +{"id":"42711"}, +{"id":"2702"}, +{"id":"177093"}, +{"id":"62864"}, +{"id":"86011"}, +{"id":"120671"}, +{"id":"190709"}, +{"id":"110613"}, +{"id":"217962"}, +{"id":"66901"}, +{"id":"104701"}, +{"id":"146414"}, +{"id":"61350"}, +{"id":"202170"}, +{"id":"113309"}, +{"id":"129513"}, +{"id":"12919"}, +{"id":"57431"}, +{"id":"71014"}, +{"id":"146032"}, +{"id":"202732"}, +{"id":"200867"}, +{"id":"133895"}, +{"id":"157444"}, +{"id":"11534"}, +{"id":"116587"}, +{"id":"99173"}, +{"id":"195193"}, +{"id":"87062"}, +{"id":"147621"}, +{"id":"207091"}, +{"id":"5752"}, +{"id":"21567"}, +{"id":"56176"}, +{"id":"128716"}, +{"id":"115442"}, +{"id":"203605"}, +{"id":"11202"}, +{"id":"9072"}, +{"id":"167600"}, +{"id":"130283"}, +{"id":"18635"}, +{"id":"218069"}, +{"id":"219111"}, +{"id":"39862"}, +{"id":"4735"}, +{"id":"189612"}, +{"id":"68504"}, +{"id":"202584"}, +{"id":"27938"}, +{"id":"82096"}, +{"id":"6235"}, +{"id":"181028"}, +{"id":"216976"}, +{"id":"2930"}, +{"id":"92676"}, +{"id":"44216"}, +{"id":"168385"}, +{"id":"355"}, +{"id":"220137"}, +{"id":"121195"}, +{"id":"158385"}, +{"id":"177511"}, +{"id":"135428"}, +{"id":"73783"}, +{"id":"21404"}, +{"id":"19380"}, +{"id":"35311"}, +{"id":"188030"}, +{"id":"54910"}, +{"id":"114366"}, +{"id":"86254"}, +{"id":"90716"}, +{"id":"23693"}, +{"id":"213911"}, +{"id":"218297"}, +{"id":"216787"}, +{"id":"1933"}, +{"id":"48574"}, +{"id":"97674"}, +{"id":"47705"}, +{"id":"211240"}, +{"id":"180922"}, +{"id":"215700"}, +{"id":"141922"}, +{"id":"191876"}, +{"id":"206011"}, +{"id":"142749"}, +{"id":"7357"}, +{"id":"145034"}, +{"id":"104060"}, +{"id":"21470"}, +{"id":"200216"}, +{"id":"175012"}, +{"id":"78999"}, +{"id":"165904"}, +{"id":"18030"}, +{"id":"48948"}, +{"id":"210059"}, +{"id":"101665"}, +{"id":"140714"}, +{"id":"151347"}, +{"id":"10210"}, +{"id":"39104"}, +{"id":"142750"}, +{"id":"190894"}, +{"id":"145405"}, +{"id":"211986"}, +{"id":"126209"}, +{"id":"214780"}, +{"id":"73841"}, +{"id":"124729"}, +{"id":"30606"}, +{"id":"161413"}, +{"id":"182713"}, +{"id":"533"}, +{"id":"145997"}, +{"id":"101261"}, +{"id":"194621"}, +{"id":"109243"}, +{"id":"19246"}, +{"id":"130559"}, +{"id":"199030"}, +{"id":"218018"}, +{"id":"97192"}, +{"id":"188435"}, +{"id":"168118"}, +{"id":"41926"}, +{"id":"117334"}, +{"id":"57995"}, +{"id":"29868"}, +{"id":"112486"}, +{"id":"80192"}, +{"id":"118351"}, +{"id":"176153"}, +{"id":"148695"}, +{"id":"35874"}, +{"id":"43803"}, +{"id":"85737"}, +{"id":"105517"}, +{"id":"190979"}, +{"id":"57789"}, +{"id":"68904"}, +{"id":"156271"}, +{"id":"155418"}, +{"id":"38468"}, +{"id":"158687"}, +{"id":"106206"}, +{"id":"14902"}, +{"id":"25015"}, +{"id":"8852"}, +{"id":"27651"}, +{"id":"102156"}, +{"id":"146406"}, +{"id":"83231"}, +{"id":"77740"}, +{"id":"56665"}, +{"id":"171188"}, +{"id":"123282"}, +{"id":"21540"}, +{"id":"150541"}, +{"id":"172096"}, +{"id":"123819"}, +{"id":"26074"}, +{"id":"78228"}, +{"id":"140268"}, +{"id":"120215"}, +{"id":"200664"}, +{"id":"94861"}, +{"id":"182670"}, +{"id":"46729"}, +{"id":"145218"}, +{"id":"210460"}, +{"id":"138566"}, +{"id":"53376"}, +{"id":"114892"}, +{"id":"32466"}, +{"id":"7591"}, +{"id":"210112"}, +{"id":"1768"}, +{"id":"72586"}, +{"id":"56914"}, +{"id":"40218"}, +{"id":"213282"}, +{"id":"191564"}, +{"id":"72729"}, +{"id":"142444"}, +{"id":"190094"}, +{"id":"139786"}, +{"id":"145483"}, +{"id":"67509"}, +{"id":"197722"}, +{"id":"138222"}, +{"id":"199951"}, +{"id":"166687"}, +{"id":"59899"}, +{"id":"16987"}, +{"id":"154813"}, +{"id":"194193"}, +{"id":"48116"}, +{"id":"78976"}, +{"id":"171958"}, +{"id":"48174"}, +{"id":"5872"}, +{"id":"213802"}, +{"id":"186749"}, +{"id":"110818"}, +{"id":"215439"}, +{"id":"195621"}, +{"id":"44360"}, +{"id":"213317"}, +{"id":"180378"}, +{"id":"9247"}, +{"id":"75306"}, +{"id":"60504"}, +{"id":"42099"}, +{"id":"112376"}, +{"id":"125639"}, +{"id":"115944"}, +{"id":"149021"}, +{"id":"67321"}, +{"id":"106958"}, +{"id":"120236"}, +{"id":"156826"}, +{"id":"54408"}, +{"id":"164136"}, +{"id":"49818"}, +{"id":"20671"}, +{"id":"63146"}, +{"id":"55277"}, +{"id":"213145"}, +{"id":"169928"}, +{"id":"191403"}, +{"id":"136333"}, +{"id":"48067"}, +{"id":"133705"}, +{"id":"78287"}, +{"id":"140892"}, +{"id":"136587"}, +{"id":"153691"}, +{"id":"35991"}, +{"id":"31505"}, +{"id":"52888"}, +{"id":"135746"}, +{"id":"122511"}, +{"id":"209115"}, +{"id":"94605"}, +{"id":"90191"}, +{"id":"183444"}, +{"id":"135339"}, +{"id":"64939"}, +{"id":"66371"}, +{"id":"7139"}, +{"id":"11622"}, +{"id":"48576"}, +{"id":"128485"}, +{"id":"71255"}, +{"id":"185248"}, +{"id":"110991"}, +{"id":"111136"}, +{"id":"3523"}, +{"id":"88079"}, +{"id":"157824"}, +{"id":"159223"}, +{"id":"210942"}, +{"id":"70713"}, +{"id":"117497"}, +{"id":"200245"}, +{"id":"56082"}, +{"id":"147290"}, +{"id":"75329"}, +{"id":"101906"}, +{"id":"95561"}, +{"id":"187259"}, +{"id":"143192"}, +{"id":"116059"}, +{"id":"141823"}, +{"id":"33164"}, +{"id":"122118"}, +{"id":"197531"}, +{"id":"146803"}, +{"id":"170716"}, +{"id":"46253"}, +{"id":"150402"}, +{"id":"32237"}, +{"id":"8350"}, +{"id":"203482"}, +{"id":"110662"}, +{"id":"122629"}, +{"id":"78155"}, +{"id":"132985"}, +{"id":"118453"}, +{"id":"169104"}, +{"id":"70399"}, +{"id":"101046"}, +{"id":"139868"}, +{"id":"50715"}, +{"id":"178489"}, +{"id":"50159"}, +{"id":"68962"}, +{"id":"144539"}, +{"id":"91586"}, +{"id":"146765"}, +{"id":"166828"}, +{"id":"35321"}, +{"id":"188354"}, +{"id":"209318"}, +{"id":"95878"}, +{"id":"73593"}, +{"id":"188738"}, +{"id":"6438"}, +{"id":"202409"}, +{"id":"170166"}, +{"id":"6982"}, +{"id":"170579"}, +{"id":"138767"}, +{"id":"90876"}, +{"id":"189679"}, +{"id":"133406"}, +{"id":"195985"}, +{"id":"147882"}, +{"id":"203962"}, +{"id":"27932"}, +{"id":"76175"}, +{"id":"36895"}, +{"id":"13002"}, +{"id":"175226"}, +{"id":"113593"}, +{"id":"165394"}, +{"id":"91050"}, +{"id":"74491"}, +{"id":"31722"}, +{"id":"44163"}, +{"id":"199368"}, +{"id":"109157"}, +{"id":"71958"}, +{"id":"36417"}, +{"id":"134743"}, +{"id":"561"}, +{"id":"8788"}, +{"id":"176575"}, +{"id":"10318"}, +{"id":"168695"}, +{"id":"141810"}, +{"id":"85777"}, +{"id":"104560"}, +{"id":"121657"}, +{"id":"184729"}, +{"id":"209306"}, +{"id":"57715"}, +{"id":"3753"}, +{"id":"79078"}, +{"id":"6844"}, +{"id":"12203"}, +{"id":"9336"}, +{"id":"126778"}, +{"id":"37034"}, +{"id":"200676"}, +{"id":"162368"}, +{"id":"25159"}, +{"id":"145083"}, +{"id":"68958"}, +{"id":"89946"}, +{"id":"189724"}, +{"id":"6860"}, +{"id":"167977"}, +{"id":"175342"}, +{"id":"218608"}, +{"id":"34614"}, +{"id":"127716"}, +{"id":"204025"}, +{"id":"73248"}, +{"id":"11415"}, +{"id":"182076"}, +{"id":"89773"}, +{"id":"125645"}, +{"id":"193427"}, +{"id":"178811"}, +{"id":"10741"}, +{"id":"77052"}, +{"id":"173165"}, +{"id":"95644"}, +{"id":"71081"}, +{"id":"177087"}, +{"id":"104714"}, +{"id":"42840"}, +{"id":"97246"}, +{"id":"54964"}, +{"id":"141970"}, +{"id":"45762"}, +{"id":"147941"}, +{"id":"117496"}, +{"id":"27652"}, +{"id":"215026"}, +{"id":"101751"}, +{"id":"149620"}, +{"id":"115814"}, +{"id":"165654"}, +{"id":"6307"}, +{"id":"79259"}, +{"id":"160340"}, +{"id":"73956"}, +{"id":"90363"}, +{"id":"131453"}, +{"id":"114292"}, +{"id":"50828"}, +{"id":"42830"}, +{"id":"23181"}, +{"id":"102379"}, +{"id":"125846"}, +{"id":"178524"}, +{"id":"4786"}, +{"id":"54035"}, +{"id":"117002"}, +{"id":"111848"}, +{"id":"31340"}, +{"id":"101697"}, +{"id":"86517"}, +{"id":"171478"}, +{"id":"183506"}, +{"id":"29887"}, +{"id":"119385"}, +{"id":"44077"}, +{"id":"80101"}, +{"id":"158906"}, +{"id":"41586"}, +{"id":"145244"}, +{"id":"132600"}, +{"id":"148499"}, +{"id":"169044"}, +{"id":"165711"}, +{"id":"160682"}, +{"id":"11997"}, +{"id":"75968"}, +{"id":"156359"}, +{"id":"131463"}, +{"id":"5204"}, +{"id":"172927"}, +{"id":"105822"}, +{"id":"159089"}, +{"id":"207281"}, +{"id":"17694"}, +{"id":"206715"}, +{"id":"21318"}, +{"id":"17150"}, +{"id":"177210"}, +{"id":"16542"}, +{"id":"44073"}, +{"id":"64813"}, +{"id":"28388"}, +{"id":"80823"}, +{"id":"49289"}, +{"id":"69998"}, +{"id":"157045"}, +{"id":"56450"}, +{"id":"93136"}, +{"id":"22790"}, +{"id":"104041"}, +{"id":"10221"}, +{"id":"23236"}, +{"id":"66579"}, +{"id":"77869"}, +{"id":"129690"}, +{"id":"143165"}, +{"id":"183761"}, +{"id":"95676"}, +{"id":"80493"}, +{"id":"58178"}, +{"id":"170311"}, +{"id":"201271"}, +{"id":"181343"}, +{"id":"87483"}, +{"id":"144438"}, +{"id":"58818"}, +{"id":"43399"}, +{"id":"118191"}, +{"id":"53903"}, +{"id":"197790"}, +{"id":"144983"}, +{"id":"11549"}, +{"id":"192069"}, +{"id":"59836"}, +{"id":"210720"}, +{"id":"5721"}, +{"id":"5868"}, +{"id":"15372"}, +{"id":"132465"}, +{"id":"174654"}, +{"id":"13614"}, +{"id":"180011"}, +{"id":"172479"}, +{"id":"111279"}, +{"id":"62230"}, +{"id":"169309"}, +{"id":"128596"}, +{"id":"142243"}, +{"id":"164207"}, +{"id":"62585"}, +{"id":"78827"}, +{"id":"205223"}, +{"id":"205426"}, +{"id":"66012"}, +{"id":"191794"}, +{"id":"195011"}, +{"id":"54634"}, +{"id":"24869"}, +{"id":"24475"}, +{"id":"31008"}, +{"id":"128711"}, +{"id":"58527"}, +{"id":"108882"}, +{"id":"130087"}, +{"id":"108203"}, +{"id":"4769"}, +{"id":"47231"}, +{"id":"109024"}, +{"id":"121427"}, +{"id":"194580"}, +{"id":"40371"}, +{"id":"106154"}, +{"id":"181047"}, +{"id":"41298"}, +{"id":"41857"}, +{"id":"118162"}, +{"id":"154869"}, +{"id":"56161"}, +{"id":"28818"}, +{"id":"218546"}, +{"id":"192556"}, +{"id":"81400"}, +{"id":"109729"}, +{"id":"217169"}, +{"id":"123707"}, +{"id":"207906"}, +{"id":"176131"}, +{"id":"16461"}, +{"id":"169449"}, +{"id":"119226"}, +{"id":"126002"}, +{"id":"213860"}, +{"id":"967"}, +{"id":"96747"}, +{"id":"182414"}, +{"id":"20324"}, +{"id":"98752"}, +{"id":"89644"}, +{"id":"41391"}, +{"id":"196339"}, +{"id":"24647"}, +{"id":"60133"}, +{"id":"207943"}, +{"id":"153993"}, +{"id":"155527"}, +{"id":"65322"}, +{"id":"148634"}, +{"id":"187510"}, +{"id":"59980"}, +{"id":"186657"}, +{"id":"106953"}, +{"id":"28506"}, +{"id":"82377"}, +{"id":"109053"}, +{"id":"21352"}, +{"id":"126118"}, +{"id":"4821"}, +{"id":"135099"}, +{"id":"44264"}, +{"id":"188410"}, +{"id":"21189"}, +{"id":"125064"}, +{"id":"180262"}, +{"id":"151449"}, +{"id":"20604"}, +{"id":"168866"}, +{"id":"198698"}, +{"id":"198422"}, +{"id":"114970"}, +{"id":"167008"}, +{"id":"136259"}, +{"id":"102773"}, +{"id":"156301"}, +{"id":"117816"}, +{"id":"81105"}, +{"id":"19150"}, +{"id":"26666"}, +{"id":"67866"}, +{"id":"175530"}, +{"id":"18043"}, +{"id":"163945"}, +{"id":"48000"}, +{"id":"161385"}, +{"id":"86132"}, +{"id":"92144"}, +{"id":"192700"}, +{"id":"41803"}, +{"id":"69214"}, +{"id":"129071"}, +{"id":"167719"}, +{"id":"193288"}, +{"id":"190127"}, +{"id":"133126"}, +{"id":"111328"}, +{"id":"210571"}, +{"id":"149093"}, +{"id":"110272"}, +{"id":"99311"}, +{"id":"196061"}, +{"id":"89316"}, +{"id":"23815"}, +{"id":"70754"}, +{"id":"34353"}, +{"id":"181299"}, +{"id":"157005"}, +{"id":"19188"}, +{"id":"155178"}, +{"id":"54147"}, +{"id":"192517"}, +{"id":"93952"}, +{"id":"27529"}, +{"id":"203738"}, +{"id":"76115"}, +{"id":"50254"}, +{"id":"203043"}, +{"id":"33344"}, +{"id":"118076"}, +{"id":"172148"}, +{"id":"26058"}, +{"id":"197420"}, +{"id":"159378"}, +{"id":"127922"}, +{"id":"90072"}, +{"id":"66553"}, +{"id":"87659"}, +{"id":"18940"}, +{"id":"60728"}, +{"id":"69221"}, +{"id":"147409"}, +{"id":"86484"}, +{"id":"111916"}, +{"id":"212298"}, +{"id":"63898"}, +{"id":"56209"}, +{"id":"173583"}, +{"id":"61626"}, +{"id":"217823"}, +{"id":"133001"}, +{"id":"112641"}, +{"id":"31030"}, +{"id":"63079"}, +{"id":"213186"}, +{"id":"107531"}, +{"id":"107270"}, +{"id":"23325"}, +{"id":"13711"}, +{"id":"80658"}, +{"id":"204009"}, +{"id":"138643"}, +{"id":"164089"}, +{"id":"89137"}, +{"id":"14988"}, +{"id":"163393"}, +{"id":"98961"}, +{"id":"1745"}, +{"id":"85272"}, +{"id":"165893"}, +{"id":"42989"}, +{"id":"185096"}, +{"id":"137129"}, +{"id":"36395"}, +{"id":"206021"}, +{"id":"120792"}, +{"id":"183718"}, +{"id":"43706"}, +{"id":"72570"}, +{"id":"22162"}, +{"id":"113476"}, +{"id":"197916"}, +{"id":"182494"}, +{"id":"46195"}, +{"id":"126651"}, +{"id":"108851"}, +{"id":"128803"}, +{"id":"16247"}, +{"id":"12694"}, +{"id":"92120"}, +{"id":"208467"}, +{"id":"48719"}, +{"id":"128085"}, +{"id":"1952"}, +{"id":"78344"}, +{"id":"37131"}, +{"id":"52077"}, +{"id":"123244"}, +{"id":"165063"}, +{"id":"28051"}, +{"id":"35718"}, +{"id":"60"}, +{"id":"176350"}, +{"id":"38836"}, +{"id":"9142"}, +{"id":"12210"}, +{"id":"151113"}, +{"id":"77761"}, +{"id":"157144"}, +{"id":"219490"}, +{"id":"128436"}, +{"id":"90751"}, +{"id":"13010"}, +{"id":"90932"}, +{"id":"202775"}, +{"id":"3117"}, +{"id":"64579"}, +{"id":"198568"}, +{"id":"220696"}, +{"id":"178562"}, +{"id":"160724"}, +{"id":"104995"}, +{"id":"169341"}, +{"id":"112452"}, +{"id":"86302"}, +{"id":"27558"}, +{"id":"26079"}, +{"id":"190671"}, +{"id":"157920"}, +{"id":"105145"}, +{"id":"45629"}, +{"id":"96854"}, +{"id":"48367"}, +{"id":"110125"}, +{"id":"205590"}, +{"id":"140708"}, +{"id":"190692"}, +{"id":"120330"}, +{"id":"140220"}, +{"id":"192340"}, +{"id":"112921"}, +{"id":"101016"}, +{"id":"216373"}, +{"id":"96563"}, +{"id":"56822"}, +{"id":"149380"}, +{"id":"71697"}, +{"id":"106683"}, +{"id":"121179"}, +{"id":"47585"}, +{"id":"148898"}, +{"id":"97410"}, +{"id":"39562"}, +{"id":"130403"}, +{"id":"105995"}, +{"id":"135214"}, +{"id":"157963"}, +{"id":"177265"}, +{"id":"28187"}, +{"id":"161773"}, +{"id":"212385"}, +{"id":"211868"}, +{"id":"99833"}, +{"id":"47129"}, +{"id":"211647"}, +{"id":"178057"}, +{"id":"49531"}, +{"id":"213773"}, +{"id":"67257"}, +{"id":"99305"}, +{"id":"51096"}, +{"id":"182481"}, +{"id":"162531"}, +{"id":"82232"}, +{"id":"201617"}, +{"id":"157325"}, +{"id":"80377"}, +{"id":"47759"}, +{"id":"67878"}, +{"id":"23042"}, +{"id":"102955"}, +{"id":"68766"}, +{"id":"147312"}, +{"id":"203458"}, +{"id":"83543"}, +{"id":"37760"}, +{"id":"22102"}, +{"id":"118982"}, +{"id":"27742"}, +{"id":"97989"}, +{"id":"38268"}, +{"id":"6421"}, +{"id":"116637"}, +{"id":"211059"}, +{"id":"107477"}, +{"id":"78092"}, +{"id":"199926"}, +{"id":"44258"}, +{"id":"45751"}, +{"id":"48967"}, +{"id":"124770"}, +{"id":"100594"}, +{"id":"154308"}, +{"id":"139977"}, +{"id":"211105"}, +{"id":"156000"}, +{"id":"200960"}, +{"id":"203022"}, +{"id":"154015"}, +{"id":"102642"}, +{"id":"195170"}, +{"id":"101069"}, +{"id":"149169"}, +{"id":"46436"}, +{"id":"33862"}, +{"id":"156234"}, +{"id":"24134"}, +{"id":"217175"}, +{"id":"73859"}, +{"id":"39955"}, +{"id":"97317"}, +{"id":"122086"}, +{"id":"94016"}, +{"id":"115822"}, +{"id":"106992"}, +{"id":"185744"}, +{"id":"89619"}, +{"id":"102394"}, +{"id":"37853"}, +{"id":"192342"}, +{"id":"178509"}, +{"id":"189060"}, +{"id":"73079"}, +{"id":"42274"}, +{"id":"118753"}, +{"id":"7834"}, +{"id":"61388"}, +{"id":"76008"}, +{"id":"6636"}, +{"id":"150292"}, +{"id":"99262"}, +{"id":"58604"}, +{"id":"118137"}, +{"id":"12393"}, +{"id":"102764"}, +{"id":"117230"}, +{"id":"95907"}, +{"id":"139643"}, +{"id":"200317"}, +{"id":"21698"}, +{"id":"96757"}, +{"id":"61436"}, +{"id":"185119"}, +{"id":"22891"}, +{"id":"64816"}, +{"id":"48962"}, +{"id":"22534"}, +{"id":"80942"}, +{"id":"125407"}, +{"id":"193024"}, +{"id":"158249"}, +{"id":"33434"}, +{"id":"111952"}, +{"id":"59069"}, +{"id":"68826"}, +{"id":"170745"}, +{"id":"38480"}, +{"id":"157884"}, +{"id":"106572"}, +{"id":"46580"}, +{"id":"124787"}, +{"id":"119324"}, +{"id":"148688"}, +{"id":"197304"}, +{"id":"204272"}, +{"id":"61611"}, +{"id":"25601"}, +{"id":"34994"}, +{"id":"102811"}, +{"id":"46152"}, +{"id":"155428"}, +{"id":"115876"}, +{"id":"26915"}, +{"id":"162521"}, +{"id":"75221"}, +{"id":"58367"}, +{"id":"135876"}, +{"id":"168909"}, +{"id":"54319"}, +{"id":"11950"}, +{"id":"143798"}, +{"id":"73872"}, +{"id":"64758"}, +{"id":"29158"}, +{"id":"14603"}, +{"id":"148825"}, +{"id":"144823"}, +{"id":"62574"}, +{"id":"69272"}, +{"id":"168895"}, +{"id":"194738"}, +{"id":"52122"}, +{"id":"119339"}, +{"id":"91960"}, +{"id":"180346"}, +{"id":"183970"}, +{"id":"87250"}, +{"id":"216012"}, +{"id":"212535"}, +{"id":"155922"}, +{"id":"177855"}, +{"id":"154408"}, +{"id":"210805"}, +{"id":"83596"}, +{"id":"25548"}, +{"id":"150123"}, +{"id":"3832"}, +{"id":"111849"}, +{"id":"76363"}, +{"id":"83528"}, +{"id":"21701"}, +{"id":"145787"}, +{"id":"167473"}, +{"id":"45782"}, +{"id":"210377"}, +{"id":"16163"}, +{"id":"114497"}, +{"id":"13608"}, +{"id":"220071"}, +{"id":"174524"}, +{"id":"8880"}, +{"id":"62227"}, +{"id":"31097"}, +{"id":"116239"}, +{"id":"138571"}, +{"id":"80465"}, +{"id":"196226"}, +{"id":"62855"}, +{"id":"51298"}, +{"id":"131443"}, +{"id":"70554"}, +{"id":"24003"}, +{"id":"168972"}, +{"id":"48543"}, +{"id":"29574"}, +{"id":"94593"}, +{"id":"62397"}, +{"id":"23332"}, +{"id":"155660"}, +{"id":"145381"}, +{"id":"17939"}, +{"id":"218998"}, +{"id":"156233"}, +{"id":"149746"}, +{"id":"35006"}, +{"id":"164518"}, +{"id":"81304"}, +{"id":"38544"}, +{"id":"164319"}, +{"id":"168980"}, +{"id":"187645"}, +{"id":"129014"}, +{"id":"41254"}, +{"id":"157122"}, +{"id":"126862"}, +{"id":"121273"}, +{"id":"94596"}, +{"id":"8454"}, +{"id":"143069"}, +{"id":"4291"}, +{"id":"158258"}, +{"id":"209909"}, +{"id":"26261"}, +{"id":"40407"}, +{"id":"152510"}, +{"id":"159471"}, +{"id":"120814"}, +{"id":"14287"}, +{"id":"16106"}, +{"id":"191971"}, +{"id":"71780"}, +{"id":"45783"}, +{"id":"33976"}, +{"id":"68095"}, +{"id":"99056"}, +{"id":"109301"}, +{"id":"117405"}, +{"id":"4731"}, +{"id":"36313"}, +{"id":"44681"}, +{"id":"51827"}, +{"id":"114730"}, +{"id":"218999"}, +{"id":"162365"}, +{"id":"171788"}, +{"id":"129284"}, +{"id":"47470"}, +{"id":"98373"}, +{"id":"73677"}, +{"id":"171117"}, +{"id":"151634"}, +{"id":"211887"}, +{"id":"58195"}, +{"id":"2890"}, +{"id":"98911"}, +{"id":"169185"}, +{"id":"63774"}, +{"id":"113037"}, +{"id":"102772"}, +{"id":"61875"}, +{"id":"195832"}, +{"id":"3054"}, +{"id":"163061"}, +{"id":"165003"}, +{"id":"96668"}, +{"id":"58785"}, +{"id":"21936"}, +{"id":"112410"}, +{"id":"62635"}, +{"id":"59913"}, +{"id":"140000"}, +{"id":"213837"}, +{"id":"204237"}, +{"id":"153674"}, +{"id":"70057"}, +{"id":"99479"}, +{"id":"56139"}, +{"id":"40040"}, +{"id":"35647"}, +{"id":"99335"}, +{"id":"177232"}, +{"id":"200334"}, +{"id":"205597"}, +{"id":"79853"}, +{"id":"218840"}, +{"id":"74602"}, +{"id":"30589"}, +{"id":"81548"}, +{"id":"97350"}, +{"id":"202841"}, +{"id":"84525"}, +{"id":"197273"}, +{"id":"19224"}, +{"id":"152329"}, +{"id":"79655"}, +{"id":"146186"}, +{"id":"196686"}, +{"id":"108844"}, +{"id":"4080"}, +{"id":"75262"}, +{"id":"185385"}, +{"id":"99668"}, +{"id":"149661"}, +{"id":"137211"}, +{"id":"113568"}, +{"id":"96504"}, +{"id":"214808"}, +{"id":"58516"}, +{"id":"11592"}, +{"id":"143300"}, +{"id":"127093"}, +{"id":"75800"}, +{"id":"67157"}, +{"id":"116743"}, +{"id":"200209"}, +{"id":"44535"}, +{"id":"209997"}, +{"id":"203646"}, +{"id":"89207"}, +{"id":"58294"}, +{"id":"135416"}, +{"id":"216281"}, +{"id":"40063"}, +{"id":"95292"}, +{"id":"108775"}, +{"id":"88332"}, +{"id":"178175"}, +{"id":"150032"}, +{"id":"57638"}, +{"id":"210197"}, +{"id":"175321"}, +{"id":"145404"}, +{"id":"87106"}, +{"id":"153156"}, +{"id":"892"}, +{"id":"212275"}, +{"id":"116730"}, +{"id":"50735"}, +{"id":"205291"}, +{"id":"24517"}, +{"id":"153578"}, +{"id":"213492"}, +{"id":"3391"}, +{"id":"57296"}, +{"id":"119974"}, +{"id":"182663"}, +{"id":"205684"}, +{"id":"120433"}, +{"id":"200711"}, +{"id":"44532"}, +{"id":"216164"}, +{"id":"213248"}, +{"id":"66328"}, +{"id":"80826"}, +{"id":"123890"}, +{"id":"161061"}, +{"id":"87138"}, +{"id":"110429"}, +{"id":"32524"}, +{"id":"156448"}, +{"id":"19602"}, +{"id":"148322"}, +{"id":"215650"}, +{"id":"195829"}, +{"id":"54219"}, +{"id":"136590"}, +{"id":"82157"}, +{"id":"79958"}, +{"id":"136707"}, +{"id":"11084"}, +{"id":"5921"}, +{"id":"190669"}, +{"id":"45119"}, +{"id":"75632"}, +{"id":"140483"}, +{"id":"104523"}, +{"id":"33125"}, +{"id":"89110"}, +{"id":"125613"}, +{"id":"201344"}, +{"id":"134353"}, +{"id":"7841"}, +{"id":"1530"}, +{"id":"163595"}, +{"id":"143714"}, +{"id":"197788"}, +{"id":"164015"}, +{"id":"5982"}, +{"id":"170347"}, +{"id":"122668"}, +{"id":"194"}, +{"id":"37290"}, +{"id":"17341"}, +{"id":"114952"}, +{"id":"89017"}, +{"id":"20408"}, +{"id":"75160"}, +{"id":"200302"}, +{"id":"108479"}, +{"id":"90795"}, +{"id":"60682"}, +{"id":"153750"}, +{"id":"101955"}, +{"id":"105957"}, +{"id":"66986"}, +{"id":"100138"}, +{"id":"115107"}, +{"id":"107734"}, +{"id":"21092"}, +{"id":"191999"}, +{"id":"83977"}, +{"id":"15843"}, +{"id":"73274"}, +{"id":"193660"}, +{"id":"44762"}, +{"id":"110088"}, +{"id":"1337"}, +{"id":"94968"}, +{"id":"210832"}, +{"id":"23456"}, +{"id":"142907"}, +{"id":"102573"}, +{"id":"11828"}, +{"id":"91099"}, +{"id":"140349"}, +{"id":"172078"}, +{"id":"207276"}, +{"id":"156510"}, +{"id":"30541"}, +{"id":"103107"}, +{"id":"82565"}, +{"id":"135037"}, +{"id":"203001"}, +{"id":"95901"}, +{"id":"133926"}, +{"id":"219976"}, +{"id":"9294"}, +{"id":"204018"}, +{"id":"159292"}, +{"id":"210840"}, +{"id":"112355"}, +{"id":"124928"}, +{"id":"47316"}, +{"id":"81768"}, +{"id":"69814"}, +{"id":"142932"}, +{"id":"114674"}, +{"id":"130142"}, +{"id":"206645"}, +{"id":"32025"}, +{"id":"150316"}, +{"id":"127530"}, +{"id":"128329"}, +{"id":"204208"}, +{"id":"109251"}, +{"id":"152020"}, +{"id":"205080"}, +{"id":"86816"}, +{"id":"104318"}, +{"id":"189293"}, +{"id":"27328"}, +{"id":"17912"}, +{"id":"161198"}, +{"id":"126879"}, +{"id":"40866"}, +{"id":"160489"}, +{"id":"107017"}, +{"id":"177287"}, +{"id":"209642"}, +{"id":"159974"}, +{"id":"109921"}, +{"id":"124529"}, +{"id":"23321"}, +{"id":"132889"}, +{"id":"177881"}, +{"id":"6282"}, +{"id":"138711"}, +{"id":"216003"}, +{"id":"92069"}, +{"id":"95420"}, +{"id":"141249"}, +{"id":"150488"}, +{"id":"54738"}, +{"id":"101183"}, +{"id":"79278"}, +{"id":"162015"}, +{"id":"23304"}, +{"id":"102954"}, +{"id":"48439"}, +{"id":"182010"}, +{"id":"69540"}, +{"id":"11010"}, +{"id":"156565"}, +{"id":"38217"}, +{"id":"141497"}, +{"id":"31731"}, +{"id":"160516"}, +{"id":"187725"}, +{"id":"39560"}, +{"id":"51955"}, +{"id":"142809"}, +{"id":"217617"}, +{"id":"61810"}, +{"id":"5738"}, +{"id":"129974"}, +{"id":"9976"}, +{"id":"133351"}, +{"id":"72701"}, +{"id":"133896"}, +{"id":"87577"}, +{"id":"161307"}, +{"id":"217131"}, +{"id":"161774"}, +{"id":"169010"}, +{"id":"87300"}, +{"id":"55215"}, +{"id":"28286"}, +{"id":"182500"}, +{"id":"172957"}, +{"id":"52110"}, +{"id":"4950"}, +{"id":"36625"}, +{"id":"194224"}, +{"id":"43"}, +{"id":"141157"}, +{"id":"4135"}, +{"id":"199686"}, +{"id":"81963"}, +{"id":"57298"}, +{"id":"211753"}, +{"id":"171924"}, +{"id":"50066"}, +{"id":"68961"}, +{"id":"95896"}, +{"id":"69842"}, +{"id":"67632"}, +{"id":"74771"}, +{"id":"107358"}, +{"id":"216332"}, +{"id":"86674"}, +{"id":"35542"}, +{"id":"113891"}, +{"id":"106184"}, +{"id":"58378"}, +{"id":"91867"}, +{"id":"5289"}, +{"id":"122105"}, +{"id":"66717"}, +{"id":"58993"}, +{"id":"76357"}, +{"id":"94847"}, +{"id":"71569"}, +{"id":"195421"}, +{"id":"87589"}, +{"id":"180018"}, +{"id":"130374"}, +{"id":"166135"}, +{"id":"48179"}, +{"id":"102011"}, +{"id":"67282"}, +{"id":"195620"}, +{"id":"29111"}, +{"id":"52457"}, +{"id":"34271"}, +{"id":"94713"}, +{"id":"123164"}, +{"id":"112572"}, +{"id":"214645"}, +{"id":"71204"}, +{"id":"146515"}, +{"id":"47767"}, +{"id":"50135"}, +{"id":"69264"}, +{"id":"112526"}, +{"id":"115595"}, +{"id":"78411"}, +{"id":"152125"}, +{"id":"51612"}, +{"id":"70197"}, +{"id":"87950"}, +{"id":"95052"}, +{"id":"73659"}, +{"id":"203693"}, +{"id":"140676"}, +{"id":"82220"}, +{"id":"200746"}, +{"id":"85655"}, +{"id":"82552"}, +{"id":"58876"}, +{"id":"98288"}, +{"id":"106420"}, +{"id":"7826"}, +{"id":"58782"}, +{"id":"213486"}, +{"id":"171066"}, +{"id":"34522"}, +{"id":"166940"}, +{"id":"216587"}, +{"id":"213287"}, +{"id":"181946"}, +{"id":"130548"}, +{"id":"93185"}, +{"id":"30367"}, +{"id":"149287"}, +{"id":"46422"}, +{"id":"95494"}, +{"id":"166699"}, +{"id":"94145"}, +{"id":"133948"}, +{"id":"215486"}, +{"id":"40765"}, +{"id":"1395"}, +{"id":"111865"}, +{"id":"117795"}, +{"id":"169615"}, +{"id":"73243"}, +{"id":"203464"}, +{"id":"177862"}, +{"id":"155887"}, +{"id":"71638"}, +{"id":"154260"}, +{"id":"88590"}, +{"id":"118258"}, +{"id":"56600"}, +{"id":"96891"}, +{"id":"158486"}, +{"id":"168675"}, +{"id":"162230"}, +{"id":"40881"}, +{"id":"75720"}, +{"id":"23263"}, +{"id":"76276"}, +{"id":"140038"}, +{"id":"148241"}, +{"id":"124612"}, +{"id":"174383"}, +{"id":"120610"}, +{"id":"177325"}, +{"id":"103882"}, +{"id":"62438"}, +{"id":"34075"}, +{"id":"46505"}, +{"id":"32905"}, +{"id":"159979"}, +{"id":"118683"}, +{"id":"9797"}, +{"id":"128964"}, +{"id":"123497"}, +{"id":"48746"}, +{"id":"135640"}, +{"id":"181027"}, +{"id":"159496"}, +{"id":"106982"}, +{"id":"118476"}, +{"id":"130361"}, +{"id":"141046"}, +{"id":"187327"}, +{"id":"213375"}, +{"id":"118593"}, +{"id":"59609"}, +{"id":"209920"}, +{"id":"217864"}, +{"id":"10465"}, +{"id":"49529"}, +{"id":"27187"}, +{"id":"114689"}, +{"id":"46759"}, +{"id":"13897"}, +{"id":"81135"}, +{"id":"22128"}, +{"id":"155034"}, +{"id":"96114"}, +{"id":"163982"}, +{"id":"8365"}, +{"id":"204698"}, +{"id":"188380"}, +{"id":"201905"}, +{"id":"142899"}, +{"id":"93393"}, +{"id":"89458"}, +{"id":"108002"}, +{"id":"92671"}, +{"id":"52713"}, +{"id":"107056"}, +{"id":"22974"}, +{"id":"203162"}, +{"id":"131523"}, +{"id":"91270"}, +{"id":"81168"}, +{"id":"152126"}, +{"id":"17403"}, +{"id":"177639"}, +{"id":"84159"}, +{"id":"71505"}, +{"id":"30182"}, +{"id":"33283"}, +{"id":"70465"}, +{"id":"34237"}, +{"id":"136499"}, +{"id":"172855"}, +{"id":"155552"}, +{"id":"209845"}, +{"id":"62363"}, +{"id":"57187"}, +{"id":"186966"}, +{"id":"208715"}, +{"id":"170553"}, +{"id":"1991"}, +{"id":"81119"}, +{"id":"96772"}, +{"id":"220383"}, +{"id":"176100"}, +{"id":"106153"}, +{"id":"195947"}, +{"id":"187339"}, +{"id":"15376"}, +{"id":"124710"}, +{"id":"74900"}, +{"id":"102383"}, +{"id":"72017"}, +{"id":"177534"}, +{"id":"170189"}, +{"id":"56026"}, +{"id":"94170"}, +{"id":"118765"}, +{"id":"90368"}, +{"id":"31439"}, +{"id":"210169"}, +{"id":"175415"}, +{"id":"180096"}, +{"id":"140869"}, +{"id":"170669"}, +{"id":"12815"}, +{"id":"14494"}, +{"id":"96418"}, +{"id":"177828"}, +{"id":"147026"}, +{"id":"63074"}, +{"id":"194207"}, +{"id":"74029"}, +{"id":"64890"}, +{"id":"26405"}, +{"id":"70722"}, +{"id":"74024"}, +{"id":"141265"}, +{"id":"34834"}, +{"id":"149964"}, +{"id":"185254"}, +{"id":"50824"}, +{"id":"78248"}, +{"id":"212933"}, +{"id":"61431"}, +{"id":"22135"}, +{"id":"183492"}, +{"id":"197202"}, +{"id":"159573"}, +{"id":"199878"}, +{"id":"16526"}, +{"id":"95206"}, +{"id":"159331"}, +{"id":"188997"}, +{"id":"5093"}, +{"id":"177795"}, +{"id":"188909"}, +{"id":"135649"}, +{"id":"87046"}, +{"id":"17758"}, +{"id":"130894"}, +{"id":"26653"}, +{"id":"107665"}, +{"id":"123109"}, +{"id":"41092"}, +{"id":"170473"}, +{"id":"115466"}, +{"id":"191334"}, +{"id":"73092"}, +{"id":"1150"}, +{"id":"213525"}, +{"id":"141571"}, +{"id":"181016"}, +{"id":"14010"}, +{"id":"200091"}, +{"id":"143725"}, +{"id":"196872"}, +{"id":"173192"}, +{"id":"193552"}, +{"id":"138516"}, +{"id":"116426"}, +{"id":"178331"}, +{"id":"120004"}, +{"id":"69681"}, +{"id":"142696"}, +{"id":"93600"}, +{"id":"128219"}, +{"id":"93578"}, +{"id":"96572"}, +{"id":"206155"}, +{"id":"14458"}, +{"id":"127036"}, +{"id":"186147"}, +{"id":"60569"}, +{"id":"178121"}, +{"id":"199862"}, +{"id":"136117"}, +{"id":"133647"}, +{"id":"199523"}, +{"id":"137196"}, +{"id":"172528"}, +{"id":"32716"}, +{"id":"130847"}, +{"id":"85736"}, +{"id":"70205"}, +{"id":"112915"}, +{"id":"59642"}, +{"id":"199139"}, +{"id":"67407"}, +{"id":"42757"}, +{"id":"99469"}, +{"id":"181743"}, +{"id":"216775"}, +{"id":"198917"}, +{"id":"101530"}, +{"id":"26515"}, +{"id":"76778"}, +{"id":"190291"}, +{"id":"44105"}, +{"id":"23653"}, +{"id":"84566"}, +{"id":"111189"}, +{"id":"110739"}, +{"id":"113800"}, +{"id":"58266"}, +{"id":"2857"}, +{"id":"86851"}, +{"id":"99246"}, +{"id":"118836"}, +{"id":"196873"}, +{"id":"119411"}, +{"id":"187154"}, +{"id":"182753"}, +{"id":"200622"}, +{"id":"43430"}, +{"id":"102770"}, +{"id":"196738"}, +{"id":"30306"}, +{"id":"94739"}, +{"id":"2797"}, +{"id":"197932"}, +{"id":"129772"}, +{"id":"67702"}, +{"id":"36969"}, +{"id":"78525"}, +{"id":"202197"}, +{"id":"35447"}, +{"id":"21881"}, +{"id":"49621"}, +{"id":"69592"}, +{"id":"136912"}, +{"id":"198587"}, +{"id":"37993"}, +{"id":"148721"}, +{"id":"61581"}, +{"id":"124383"}, +{"id":"17596"}, +{"id":"174183"}, +{"id":"200385"}, +{"id":"132083"}, +{"id":"117286"}, +{"id":"167757"}, +{"id":"125874"}, +{"id":"121489"}, +{"id":"179049"}, +{"id":"37547"}, +{"id":"109017"}, +{"id":"175151"}, +{"id":"202250"}, +{"id":"14168"}, +{"id":"12703"}, +{"id":"50298"}, +{"id":"195325"}, +{"id":"178604"}, +{"id":"40362"}, +{"id":"157300"}, +{"id":"32595"}, +{"id":"200138"}, +{"id":"114571"}, +{"id":"71411"}, +{"id":"205283"}, +{"id":"59604"}, +{"id":"167151"}, +{"id":"156321"}, +{"id":"56390"}, +{"id":"115422"}, +{"id":"141702"}, +{"id":"149318"}, +{"id":"109814"}, +{"id":"187768"}, +{"id":"88919"}, +{"id":"215423"}, +{"id":"212101"}, +{"id":"77067"}, +{"id":"28695"}, +{"id":"2025"}, +{"id":"56091"}, +{"id":"138509"}, +{"id":"210304"}, +{"id":"137006"}, +{"id":"36591"}, +{"id":"105606"}, +{"id":"206578"}, +{"id":"196892"}, +{"id":"210717"}, +{"id":"122215"}, +{"id":"186792"}, +{"id":"200692"}, +{"id":"31396"}, +{"id":"199494"}, +{"id":"164890"}, +{"id":"33083"}, +{"id":"87276"}, +{"id":"66177"}, +{"id":"78832"}, +{"id":"116452"}, +{"id":"124096"}, +{"id":"107379"}, +{"id":"23811"}, +{"id":"162568"}, +{"id":"185412"}, +{"id":"77952"}, +{"id":"212692"}, +{"id":"113067"}, +{"id":"28151"}, +{"id":"201559"}, +{"id":"13389"}, +{"id":"142910"}, +{"id":"22392"}, +{"id":"182378"}, +{"id":"170607"}, +{"id":"219595"}, +{"id":"59519"}, +{"id":"84096"}, +{"id":"113691"}, +{"id":"5011"}, +{"id":"163745"}, +{"id":"155416"}, +{"id":"206959"}, +{"id":"179800"}, +{"id":"193027"}, +{"id":"96465"}, +{"id":"214885"}, +{"id":"48731"}, +{"id":"183776"}, +{"id":"109012"}, +{"id":"146312"}, +{"id":"25930"}, +{"id":"48488"}, +{"id":"175898"}, +{"id":"160493"}, +{"id":"131334"}, +{"id":"159082"}, +{"id":"84004"}, +{"id":"9376"}, +{"id":"95595"}, +{"id":"59036"}, +{"id":"97962"}, +{"id":"59552"}, +{"id":"127820"}, +{"id":"187234"}, +{"id":"117119"}, +{"id":"198830"}, +{"id":"211885"}, +{"id":"26388"}, +{"id":"1646"}, +{"id":"129630"}, +{"id":"77734"}, +{"id":"197078"}, +{"id":"82258"}, +{"id":"120307"}, +{"id":"117828"}, +{"id":"108373"}, +{"id":"24963"}, +{"id":"29786"}, +{"id":"122352"}, +{"id":"18824"}, +{"id":"15999"}, +{"id":"137055"}, +{"id":"55467"}, +{"id":"71258"}, +{"id":"43921"}, +{"id":"194913"}, +{"id":"78442"}, +{"id":"111779"}, +{"id":"57174"}, +{"id":"176389"}, +{"id":"16140"}, +{"id":"181020"}, +{"id":"137939"}, +{"id":"217043"}, +{"id":"158598"}, +{"id":"123111"}, +{"id":"165526"}, +{"id":"25057"}, +{"id":"103540"}, +{"id":"162410"}, +{"id":"150276"}, +{"id":"102928"}, +{"id":"142277"}, +{"id":"164526"}, +{"id":"10397"}, +{"id":"99397"}, +{"id":"461"}, +{"id":"102185"}, +{"id":"88966"}, +{"id":"195568"}, +{"id":"8587"}, +{"id":"60643"}, +{"id":"105266"}, +{"id":"204886"}, +{"id":"190672"}, +{"id":"152681"}, +{"id":"142867"}, +{"id":"105160"}, +{"id":"143726"}, +{"id":"168222"}, +{"id":"195605"}, +{"id":"156309"}, +{"id":"98359"}, +{"id":"87409"}, +{"id":"206032"}, +{"id":"163921"}, +{"id":"101005"}, +{"id":"28160"}, +{"id":"181653"}, +{"id":"189789"}, +{"id":"187319"}, +{"id":"63925"}, +{"id":"63658"}, +{"id":"33673"}, +{"id":"68109"}, +{"id":"98736"}, +{"id":"184895"}, +{"id":"198065"}, +{"id":"68018"}, +{"id":"68809"}, +{"id":"158718"}, +{"id":"177714"}, +{"id":"98865"}, +{"id":"90389"}, +{"id":"108346"}, +{"id":"125927"}, +{"id":"79450"}, +{"id":"50613"}, +{"id":"75181"}, +{"id":"80043"}, +{"id":"13400"}, +{"id":"212754"}, +{"id":"151219"}, +{"id":"63300"}, +{"id":"140"}, +{"id":"206756"}, +{"id":"134912"}, +{"id":"12683"}, +{"id":"20566"}, +{"id":"207490"}, +{"id":"123607"}, +{"id":"9384"}, +{"id":"49169"}, +{"id":"215507"}, +{"id":"80270"}, +{"id":"120026"}, +{"id":"61958"}, +{"id":"92226"}, +{"id":"169282"}, +{"id":"118179"}, +{"id":"108711"}, +{"id":"199622"}, +{"id":"217838"}, +{"id":"143347"}, +{"id":"77361"}, +{"id":"131884"}, +{"id":"60804"}, +{"id":"197977"}, +{"id":"19359"}, +{"id":"46715"}, +{"id":"175467"}, +{"id":"88308"}, +{"id":"31804"}, +{"id":"138299"}, +{"id":"213077"}, +{"id":"56576"}, +{"id":"154284"}, +{"id":"106726"}, +{"id":"195291"}, +{"id":"20870"}, +{"id":"847"}, +{"id":"187296"}, +{"id":"74798"}, +{"id":"66924"}, +{"id":"150534"}, +{"id":"70705"}, +{"id":"174806"}, +{"id":"165556"}, +{"id":"139769"}, +{"id":"30311"}, +{"id":"117115"}, +{"id":"104743"}, +{"id":"76554"}, +{"id":"207293"}, +{"id":"93289"}, +{"id":"198083"}, +{"id":"67857"}, +{"id":"85144"}, +{"id":"111629"}, +{"id":"7022"}, +{"id":"130224"}, +{"id":"174107"}, +{"id":"173938"}, +{"id":"210102"}, +{"id":"28515"}, +{"id":"115315"}, +{"id":"152901"}, +{"id":"188336"}, +{"id":"151076"}, +{"id":"163455"}, +{"id":"115329"}, +{"id":"216228"}, +{"id":"110287"}, +{"id":"74806"}, +{"id":"114267"}, +{"id":"73251"}, +{"id":"212108"}, +{"id":"137693"}, +{"id":"40344"}, +{"id":"36488"}, +{"id":"139208"}, +{"id":"170732"}, +{"id":"92989"}, +{"id":"33648"}, +{"id":"214547"}, +{"id":"109454"}, +{"id":"29706"}, +{"id":"75574"}, +{"id":"31446"}, +{"id":"80948"}, +{"id":"92"}, +{"id":"164477"}, +{"id":"220056"}, +{"id":"145800"}, +{"id":"31564"}, +{"id":"204020"}, +{"id":"206065"}, +{"id":"55412"}, +{"id":"89972"}, +{"id":"28273"}, +{"id":"112565"}, +{"id":"161694"}, +{"id":"196985"}, +{"id":"48603"}, +{"id":"178441"}, +{"id":"181472"}, +{"id":"59265"}, +{"id":"81676"}, +{"id":"8216"}, +{"id":"57442"}, +{"id":"10551"}, +{"id":"188454"}, +{"id":"207425"}, +{"id":"159958"}, +{"id":"213979"}, +{"id":"181366"}, +{"id":"58328"}, +{"id":"58461"}, +{"id":"104592"}, +{"id":"133889"}, +{"id":"116800"}, +{"id":"55697"}, +{"id":"206926"}, +{"id":"115304"}, +{"id":"110357"}, +{"id":"171458"}, +{"id":"148994"}, +{"id":"98283"}, +{"id":"77309"}, +{"id":"22014"}, +{"id":"48035"}, +{"id":"50638"}, +{"id":"155263"}, +{"id":"105653"}, +{"id":"12558"}, +{"id":"59251"}, +{"id":"57632"}, +{"id":"190561"}, +{"id":"187705"}, +{"id":"60279"}, +{"id":"582"}, +{"id":"1712"}, +{"id":"213015"}, +{"id":"141391"}, +{"id":"121278"}, +{"id":"163276"}, +{"id":"123225"}, +{"id":"24576"}, +{"id":"159919"}, +{"id":"168887"}, +{"id":"55809"}, +{"id":"13606"}, +{"id":"124923"}, +{"id":"158613"}, +{"id":"60906"}, +{"id":"140789"}, +{"id":"78218"}, +{"id":"213061"}, +{"id":"48834"}, +{"id":"35744"}, +{"id":"64647"}, +{"id":"112118"}, +{"id":"135920"}, +{"id":"110882"}, +{"id":"162253"}, +{"id":"95319"}, +{"id":"68650"}, +{"id":"2168"}, +{"id":"108370"}, +{"id":"173917"}, +{"id":"22640"}, +{"id":"113021"}, +{"id":"85101"}, +{"id":"43028"}, +{"id":"132520"}, +{"id":"110644"}, +{"id":"24487"}, +{"id":"21183"}, +{"id":"152965"}, +{"id":"95231"}, +{"id":"76906"}, +{"id":"132445"}, +{"id":"140855"}, +{"id":"38099"}, +{"id":"199961"}, +{"id":"124980"}, +{"id":"130983"}, +{"id":"69632"}, +{"id":"75399"}, +{"id":"218070"}, +{"id":"94510"}, +{"id":"187161"}, +{"id":"18199"}, +{"id":"155498"}, +{"id":"180021"}, +{"id":"183386"}, +{"id":"180212"}, +{"id":"158541"}, +{"id":"197570"}, +{"id":"211435"}, +{"id":"95610"}, +{"id":"217828"}, +{"id":"137226"}, +{"id":"5818"}, +{"id":"176037"}, +{"id":"144356"}, +{"id":"22766"}, +{"id":"103695"}, +{"id":"204252"}, +{"id":"80773"}, +{"id":"187008"}, +{"id":"48120"}, +{"id":"96900"}, +{"id":"83173"}, +{"id":"29035"}, +{"id":"23028"}, +{"id":"10472"}, +{"id":"206908"}, +{"id":"76958"}, +{"id":"38812"}, +{"id":"207208"}, +{"id":"36764"}, +{"id":"88387"}, +{"id":"16442"}, +{"id":"147"}, +{"id":"79419"}, +{"id":"195279"}, +{"id":"117735"}, +{"id":"111558"}, +{"id":"157656"}, +{"id":"152548"}, +{"id":"109679"}, +{"id":"13427"}, +{"id":"194132"}, +{"id":"123470"}, +{"id":"73354"}, +{"id":"39649"}, +{"id":"180415"}, +{"id":"21634"}, +{"id":"8285"}, +{"id":"17318"}, +{"id":"72527"}, +{"id":"163528"}, +{"id":"124856"}, +{"id":"123425"}, +{"id":"41687"}, +{"id":"119424"}, +{"id":"55518"}, +{"id":"75722"}, +{"id":"81482"}, +{"id":"199085"}, +{"id":"85343"}, +{"id":"111096"}, +{"id":"210475"}, +{"id":"186444"}, +{"id":"54237"}, +{"id":"55497"}, +{"id":"103142"}, +{"id":"67135"}, +{"id":"29817"}, +{"id":"83683"}, +{"id":"160960"}, +{"id":"187511"}, +{"id":"47974"}, +{"id":"197392"}, +{"id":"60976"}, +{"id":"145245"}, +{"id":"196401"}, +{"id":"114093"}, +{"id":"27846"}, +{"id":"45999"}, +{"id":"197667"}, +{"id":"154357"}, +{"id":"137314"}, +{"id":"113987"}, +{"id":"106938"}, +{"id":"40697"}, +{"id":"184802"}, +{"id":"35729"}, +{"id":"199210"}, +{"id":"23419"}, +{"id":"203345"}, +{"id":"153071"}, +{"id":"121817"}, +{"id":"145818"}, +{"id":"29500"}, +{"id":"8265"}, +{"id":"122080"}, +{"id":"18306"}, +{"id":"72581"}, +{"id":"87428"}, +{"id":"190132"}, +{"id":"164674"}, +{"id":"209294"}, +{"id":"155253"}, +{"id":"157295"}, +{"id":"77887"}, +{"id":"46751"}, +{"id":"27093"}, +{"id":"84146"}, +{"id":"79901"}, +{"id":"174944"}, +{"id":"9801"}, +{"id":"149491"}, +{"id":"133549"}, +{"id":"184105"}, +{"id":"60100"}, +{"id":"112968"}, +{"id":"176710"}, +{"id":"161332"}, +{"id":"136143"}, +{"id":"138725"}, +{"id":"119149"}, +{"id":"153756"}, +{"id":"189746"}, +{"id":"126733"}, +{"id":"182912"}, +{"id":"52783"}, +{"id":"203542"}, +{"id":"9314"}, +{"id":"146555"}, +{"id":"14944"}, +{"id":"211026"}, +{"id":"549"}, +{"id":"211143"}, +{"id":"108488"}, +{"id":"162919"}, +{"id":"15501"}, +{"id":"115004"}, +{"id":"65332"}, +{"id":"94058"}, +{"id":"17263"}, +{"id":"115818"}, +{"id":"8085"}, +{"id":"153166"}, +{"id":"27768"}, +{"id":"150428"}, +{"id":"130035"}, +{"id":"129243"}, +{"id":"138214"}, +{"id":"127189"}, +{"id":"203329"}, +{"id":"211214"}, +{"id":"25031"}, +{"id":"167562"}, +{"id":"134136"}, +{"id":"6601"}, +{"id":"107595"}, +{"id":"61157"}, +{"id":"100355"}, +{"id":"79176"}, +{"id":"13876"}, +{"id":"51261"}, +{"id":"13777"}, +{"id":"83278"}, +{"id":"8875"}, +{"id":"180548"}, +{"id":"169905"}, +{"id":"183325"}, +{"id":"214925"}, +{"id":"81457"}, +{"id":"220566"}, +{"id":"117280"}, +{"id":"140307"}, +{"id":"83729"}, +{"id":"188448"}, +{"id":"102838"}, +{"id":"80887"}, +{"id":"98250"}, +{"id":"126997"}, +{"id":"167624"}, +{"id":"111377"}, +{"id":"32663"}, +{"id":"216892"}, +{"id":"160809"}, +{"id":"204108"}, +{"id":"141325"}, +{"id":"53516"}, +{"id":"213823"}, +{"id":"90735"}, +{"id":"59394"}, +{"id":"111757"}, +{"id":"185247"}, +{"id":"89894"}, +{"id":"190366"}, +{"id":"109427"}, +{"id":"113561"}, +{"id":"13287"}, +{"id":"185870"}, +{"id":"145618"}, +{"id":"128605"}, +{"id":"51770"}, +{"id":"28648"}, +{"id":"46556"}, +{"id":"17589"}, +{"id":"190194"}, +{"id":"162001"}, +{"id":"70761"}, +{"id":"28439"}, +{"id":"96679"}, +{"id":"144936"}, +{"id":"67080"}, +{"id":"64906"}, +{"id":"147126"}, +{"id":"31334"}, +{"id":"149157"}, +{"id":"170697"}, +{"id":"5333"}, +{"id":"190030"}, +{"id":"89749"}, +{"id":"29351"}, +{"id":"204529"}, +{"id":"2155"}, +{"id":"68656"}, +{"id":"66214"}, +{"id":"66788"}, +{"id":"171176"}, +{"id":"3817"}, +{"id":"143738"}, +{"id":"180456"}, +{"id":"50147"}, +{"id":"117702"}, +{"id":"187963"}, +{"id":"39610"}, +{"id":"154134"}, +{"id":"165276"}, +{"id":"182125"}, +{"id":"217375"}, +{"id":"66499"}, +{"id":"211405"}, +{"id":"17591"}, +{"id":"63130"}, +{"id":"7073"}, +{"id":"167943"}, +{"id":"192871"}, +{"id":"77232"}, +{"id":"165573"}, +{"id":"203222"}, +{"id":"186534"}, +{"id":"163309"}, +{"id":"173822"}, +{"id":"123671"}, +{"id":"48126"}, +{"id":"21534"}, +{"id":"37343"}, +{"id":"84583"}, +{"id":"76296"}, +{"id":"156830"}, +{"id":"95033"}, +{"id":"134384"}, +{"id":"88674"}, +{"id":"143860"}, +{"id":"216502"}, +{"id":"154538"}, +{"id":"64093"}, +{"id":"10743"}, +{"id":"15681"}, +{"id":"206820"}, +{"id":"83917"}, +{"id":"141760"}, +{"id":"119387"}, +{"id":"146506"}, +{"id":"45384"}, +{"id":"194259"}, +{"id":"188679"}, +{"id":"174980"}, +{"id":"212555"}, +{"id":"169389"}, +{"id":"145318"}, +{"id":"103686"}, +{"id":"176387"}, +{"id":"147788"}, +{"id":"215738"}, +{"id":"51395"}, +{"id":"143075"}, +{"id":"107342"}, +{"id":"124070"}, +{"id":"64316"}, +{"id":"173925"}, +{"id":"189252"}, +{"id":"44003"}, +{"id":"24905"}, +{"id":"54927"}, +{"id":"211221"}, +{"id":"135510"}, +{"id":"65938"}, +{"id":"27408"}, +{"id":"189709"}, +{"id":"94781"}, +{"id":"182765"}, +{"id":"68247"}, +{"id":"81081"}, +{"id":"64563"}, +{"id":"219624"}, +{"id":"192728"}, +{"id":"97324"}, +{"id":"71590"}, +{"id":"685"}, +{"id":"166594"}, +{"id":"45101"}, +{"id":"156925"}, +{"id":"158168"}, +{"id":"189949"}, +{"id":"155281"}, +{"id":"214276"}, +{"id":"212103"}, +{"id":"70506"}, +{"id":"92103"}, +{"id":"27871"}, +{"id":"103676"}, +{"id":"90177"}, +{"id":"165190"}, +{"id":"165944"}, +{"id":"19097"}, +{"id":"58907"}, +{"id":"31248"}, +{"id":"71481"}, +{"id":"114288"}, +{"id":"46816"}, +{"id":"61386"}, +{"id":"158829"}, +{"id":"60972"}, +{"id":"24823"}, +{"id":"120265"}, +{"id":"26168"}, +{"id":"158836"}, +{"id":"68052"}, +{"id":"48529"}, +{"id":"92389"}, +{"id":"23241"}, +{"id":"70968"}, +{"id":"109295"}, +{"id":"152414"}, +{"id":"15667"}, +{"id":"54902"}, +{"id":"105280"}, +{"id":"90169"}, +{"id":"79809"}, +{"id":"29325"}, +{"id":"139956"}, +{"id":"58383"}, +{"id":"155706"}, +{"id":"146292"}, +{"id":"159092"}, +{"id":"201139"}, +{"id":"86425"}, +{"id":"185179"}, +{"id":"58532"}, +{"id":"25061"}, +{"id":"78016"}, +{"id":"151988"}, +{"id":"148692"}, +{"id":"198363"}, +{"id":"38472"}, +{"id":"82729"}, +{"id":"143213"}, +{"id":"206423"}, +{"id":"189306"}, +{"id":"10607"}, +{"id":"34595"}, +{"id":"87119"}, +{"id":"215922"}, +{"id":"175523"}, +{"id":"85332"}, +{"id":"30164"}, +{"id":"200313"}, +{"id":"61716"}, +{"id":"120558"}, +{"id":"212934"}, +{"id":"95502"}, +{"id":"134035"}, +{"id":"199752"}, +{"id":"72250"}, +{"id":"206209"}, +{"id":"22218"}, +{"id":"195513"}, +{"id":"49572"}, +{"id":"104160"}, +{"id":"77661"}, +{"id":"153532"}, +{"id":"200691"}, +{"id":"211898"}, +{"id":"32573"}, +{"id":"10964"}, +{"id":"185967"}, +{"id":"154671"}, +{"id":"161950"}, +{"id":"145390"}, +{"id":"147200"}, +{"id":"100991"}, +{"id":"63249"}, +{"id":"130801"}, +{"id":"119265"}, +{"id":"12184"}, +{"id":"121250"}, +{"id":"43762"}, +{"id":"101741"}, +{"id":"218348"}, +{"id":"166928"}, +{"id":"126920"}, +{"id":"61340"}, +{"id":"208777"}, +{"id":"71404"}, +{"id":"133548"}, +{"id":"70077"}, +{"id":"29207"}, +{"id":"56700"}, +{"id":"82490"}, +{"id":"29151"}, +{"id":"64562"}, +{"id":"119540"}, +{"id":"7567"}, +{"id":"39051"}, +{"id":"80340"}, +{"id":"86722"}, +{"id":"176927"}, +{"id":"139199"}, +{"id":"69147"}, +{"id":"130105"}, +{"id":"197781"}, +{"id":"5050"}, +{"id":"91383"}, +{"id":"214990"}, +{"id":"20186"}, +{"id":"117737"}, +{"id":"134643"}, +{"id":"89899"}, +{"id":"76000"}, +{"id":"25291"}, +{"id":"125956"}, +{"id":"156954"}, +{"id":"197170"}, +{"id":"21441"}, +{"id":"77158"}, +{"id":"5496"}, +{"id":"86906"}, +{"id":"56333"}, +{"id":"177520"}, +{"id":"133191"}, +{"id":"79772"}, +{"id":"78498"}, +{"id":"190353"}, +{"id":"220836"}, +{"id":"70852"}, +{"id":"145280"}, +{"id":"113605"}, +{"id":"130019"}, +{"id":"138172"}, +{"id":"12075"}, +{"id":"189944"}, +{"id":"208593"}, +{"id":"155047"}, +{"id":"102703"}, +{"id":"34734"}, +{"id":"192464"}, +{"id":"60386"}, +{"id":"201199"}, +{"id":"95859"}, +{"id":"217236"}, +{"id":"220251"}, +{"id":"207876"}, +{"id":"114441"}, +{"id":"1546"}, +{"id":"78562"}, +{"id":"39105"}, +{"id":"40595"}, +{"id":"187273"}, +{"id":"71156"}, +{"id":"111002"}, +{"id":"21143"}, +{"id":"74969"}, +{"id":"123242"}, +{"id":"48285"}, +{"id":"156822"}, +{"id":"55853"}, +{"id":"127418"}, +{"id":"67919"}, +{"id":"75792"}, +{"id":"207218"}, +{"id":"164483"}, +{"id":"90166"}, +{"id":"16415"}, +{"id":"129677"}, +{"id":"71634"}, +{"id":"167149"}, +{"id":"97548"}, +{"id":"119650"}, +{"id":"34588"}, +{"id":"80499"}, +{"id":"146283"}, +{"id":"131915"}, +{"id":"176826"}, +{"id":"6493"}, +{"id":"108198"}, +{"id":"103367"}, +{"id":"211546"}, +{"id":"185971"}, +{"id":"124375"}, +{"id":"20503"}, +{"id":"184462"}, +{"id":"111703"}, +{"id":"24573"}, +{"id":"162846"}, +{"id":"96235"}, +{"id":"219239"}, +{"id":"122180"}, +{"id":"153502"}, +{"id":"187650"}, +{"id":"133874"}, +{"id":"83828"}, +{"id":"143566"}, +{"id":"71640"}, +{"id":"184978"}, +{"id":"13241"}, +{"id":"129553"}, +{"id":"83672"}, +{"id":"43670"}, +{"id":"89295"}, +{"id":"90654"}, +{"id":"137917"}, +{"id":"116678"}, +{"id":"141415"}, +{"id":"147444"}, +{"id":"62014"}, +{"id":"16964"}, +{"id":"200305"}, +{"id":"200632"}, +{"id":"113255"}, +{"id":"36902"}, +{"id":"106506"}, +{"id":"207086"}, +{"id":"142970"}, +{"id":"90227"}, +{"id":"30158"}, +{"id":"13239"}, +{"id":"136398"}, +{"id":"146458"}, +{"id":"148488"}, +{"id":"69432"}, +{"id":"211997"}, +{"id":"164997"}, +{"id":"32428"}, +{"id":"145069"}, +{"id":"102243"}, +{"id":"145930"}, +{"id":"119410"}, +{"id":"124279"}, +{"id":"18308"}, +{"id":"64929"}, +{"id":"162502"}, +{"id":"31178"}, +{"id":"184908"}, +{"id":"162500"}, +{"id":"155120"}, +{"id":"64777"}, +{"id":"69269"}, +{"id":"116573"}, +{"id":"110360"}, +{"id":"45731"}, +{"id":"98476"}, +{"id":"28774"}, +{"id":"117426"}, +{"id":"156196"}, +{"id":"40305"}, +{"id":"182666"}, +{"id":"152061"}, +{"id":"187151"}, +{"id":"10575"}, +{"id":"181620"}, +{"id":"48678"}, +{"id":"75842"}, +{"id":"203511"}, +{"id":"70939"}, +{"id":"11437"}, +{"id":"181531"}, +{"id":"92051"}, +{"id":"141014"}, +{"id":"186658"}, +{"id":"139892"}, +{"id":"201528"}, +{"id":"97162"}, +{"id":"173477"}, +{"id":"77372"}, +{"id":"219945"}, +{"id":"84018"}, +{"id":"122282"}, +{"id":"127130"}, +{"id":"7995"}, +{"id":"188736"}, +{"id":"63701"}, +{"id":"167540"}, +{"id":"166558"}, +{"id":"144027"}, +{"id":"19212"}, +{"id":"174827"}, +{"id":"61666"}, +{"id":"195441"}, +{"id":"150240"}, +{"id":"119823"}, +{"id":"49535"}, +{"id":"189852"}, +{"id":"156932"}, +{"id":"138402"}, +{"id":"134883"}, +{"id":"13590"}, +{"id":"86730"}, +{"id":"167459"}, +{"id":"93855"}, +{"id":"86262"}, +{"id":"146196"}, +{"id":"22716"}, +{"id":"99976"}, +{"id":"148242"}, +{"id":"128443"}, +{"id":"185812"}, +{"id":"159736"}, +{"id":"37874"}, +{"id":"66330"}, +{"id":"167321"}, +{"id":"161101"}, +{"id":"25536"}, +{"id":"2508"}, +{"id":"216647"}, +{"id":"18397"}, +{"id":"6158"}, +{"id":"145172"}, +{"id":"98364"}, +{"id":"67909"}, +{"id":"91635"}, +{"id":"93091"}, +{"id":"30653"}, +{"id":"214003"}, +{"id":"10328"}, +{"id":"161019"}, +{"id":"123693"}, +{"id":"55751"}, +{"id":"217116"}, +{"id":"12994"}, +{"id":"156644"}, +{"id":"165595"}, +{"id":"220370"}, +{"id":"162712"}, +{"id":"213941"}, +{"id":"55850"}, +{"id":"191554"}, +{"id":"103752"}, +{"id":"216121"}, +{"id":"51028"}, +{"id":"139027"}, +{"id":"27956"}, +{"id":"202311"}, +{"id":"196014"}, +{"id":"141320"}, +{"id":"102106"}, +{"id":"33768"}, +{"id":"219920"}, +{"id":"77762"}, +{"id":"54395"}, +{"id":"194510"}, +{"id":"172278"}, +{"id":"87620"}, +{"id":"139625"}, +{"id":"30551"}, +{"id":"173230"}, +{"id":"182813"}, +{"id":"161727"}, +{"id":"80476"}, +{"id":"96790"}, +{"id":"172364"}, +{"id":"78685"}, +{"id":"46070"}, +{"id":"126923"}, +{"id":"148895"}, +{"id":"55005"}, +{"id":"71442"}, +{"id":"153808"}, +{"id":"93141"}, +{"id":"11383"}, +{"id":"23726"}, +{"id":"151794"}, +{"id":"60858"}, +{"id":"710"}, +{"id":"10250"}, +{"id":"169850"}, +{"id":"105674"}, +{"id":"121198"}, +{"id":"154125"}, +{"id":"195984"}, +{"id":"158666"}, +{"id":"176700"}, +{"id":"147036"}, +{"id":"147204"}, +{"id":"150047"}, +{"id":"101822"}, +{"id":"142119"}, +{"id":"23198"}, +{"id":"38219"}, +{"id":"8311"}, +{"id":"40733"}, +{"id":"127901"}, +{"id":"58348"}, +{"id":"155509"}, +{"id":"62754"}, +{"id":"213622"}, +{"id":"218322"}, +{"id":"117365"}, +{"id":"50687"}, +{"id":"704"}, +{"id":"61507"}, +{"id":"65383"}, +{"id":"169140"}, +{"id":"192894"}, +{"id":"194423"}, +{"id":"127217"}, +{"id":"47094"}, +{"id":"92323"}, +{"id":"170948"}, +{"id":"185086"}, +{"id":"24449"}, +{"id":"220708"}, +{"id":"40227"}, +{"id":"159856"}, +{"id":"152223"}, +{"id":"49690"}, +{"id":"144370"}, +{"id":"189859"}, +{"id":"216371"}, +{"id":"57997"}, +{"id":"30602"}, +{"id":"110482"}, +{"id":"205891"}, +{"id":"47181"}, +{"id":"29046"}, +{"id":"97337"}, +{"id":"45664"}, +{"id":"106649"}, +{"id":"38581"}, +{"id":"136023"}, +{"id":"109302"}, +{"id":"126388"}, +{"id":"81083"}, +{"id":"61644"}, +{"id":"204490"}, +{"id":"207603"}, +{"id":"47048"}, +{"id":"76209"}, +{"id":"164205"}, +{"id":"83809"}, +{"id":"37695"}, +{"id":"112958"}, +{"id":"64811"}, +{"id":"204327"}, +{"id":"47076"}, +{"id":"35112"}, +{"id":"77040"}, +{"id":"213285"}, +{"id":"198467"}, +{"id":"206543"}, +{"id":"162993"}, +{"id":"212235"}, +{"id":"178498"}, +{"id":"65450"}, +{"id":"168955"}, +{"id":"66645"}, +{"id":"45973"}, +{"id":"26815"}, +{"id":"1019"}, +{"id":"73433"}, +{"id":"192404"}, +{"id":"140142"}, +{"id":"209792"}, +{"id":"112992"}, +{"id":"210361"}, +{"id":"26255"}, +{"id":"123424"}, +{"id":"186210"}, +{"id":"19216"}, +{"id":"203459"}, +{"id":"67316"}, +{"id":"37926"}, +{"id":"10713"}, +{"id":"132775"}, +{"id":"168038"}, +{"id":"155393"}, +{"id":"219461"}, +{"id":"62949"}, +{"id":"69442"}, +{"id":"11470"}, +{"id":"38340"}, +{"id":"531"}, +{"id":"206477"}, +{"id":"102239"}, +{"id":"64242"}, +{"id":"39341"}, +{"id":"37999"}, +{"id":"5667"}, +{"id":"133523"}, +{"id":"130434"}, +{"id":"97163"}, +{"id":"36361"}, +{"id":"141164"}, +{"id":"103305"}, +{"id":"166546"}, +{"id":"2672"}, +{"id":"200431"}, +{"id":"175651"}, +{"id":"34287"}, +{"id":"210401"}, +{"id":"50156"}, +{"id":"191183"}, +{"id":"219425"}, +{"id":"100237"}, +{"id":"110538"}, +{"id":"207879"}, +{"id":"140653"}, +{"id":"208452"}, +{"id":"88726"}, +{"id":"160101"}, +{"id":"151799"}, +{"id":"6602"}, +{"id":"177361"}, +{"id":"74377"}, +{"id":"168818"}, +{"id":"140476"}, +{"id":"136120"}, +{"id":"126724"}, +{"id":"40399"}, +{"id":"138072"}, +{"id":"77113"}, +{"id":"58244"}, +{"id":"44072"}, +{"id":"68148"}, +{"id":"1132"}, +{"id":"146807"}, +{"id":"191749"}, +{"id":"218659"}, +{"id":"2029"}, +{"id":"120591"}, +{"id":"191274"}, +{"id":"192122"}, +{"id":"6859"}, +{"id":"45924"}, +{"id":"54636"}, +{"id":"119320"}, +{"id":"83269"}, +{"id":"79540"}, +{"id":"90369"}, +{"id":"56009"}, +{"id":"118813"}, +{"id":"44034"}, +{"id":"12381"}, +{"id":"173505"}, +{"id":"21245"}, +{"id":"58027"}, +{"id":"209390"}, +{"id":"50101"}, +{"id":"67107"}, +{"id":"129777"}, +{"id":"127547"}, +{"id":"153346"}, +{"id":"182283"}, +{"id":"130955"}, +{"id":"197444"}, +{"id":"4433"}, +{"id":"33027"}, +{"id":"128366"}, +{"id":"113355"}, +{"id":"114598"}, +{"id":"41015"}, +{"id":"60180"}, +{"id":"195289"}, +{"id":"78456"}, +{"id":"65732"}, +{"id":"83408"}, +{"id":"120119"}, +{"id":"216710"}, +{"id":"86786"}, +{"id":"70651"}, +{"id":"61322"}, +{"id":"212399"}, +{"id":"104222"}, +{"id":"201936"}, +{"id":"93419"}, +{"id":"18676"}, +{"id":"145495"}, +{"id":"123128"}, +{"id":"201463"}, +{"id":"65574"}, +{"id":"113835"}, +{"id":"12180"}, +{"id":"214259"}, +{"id":"6413"}, +{"id":"67136"}, +{"id":"191094"}, +{"id":"45359"}, +{"id":"159955"}, +{"id":"118386"}, +{"id":"153241"}, +{"id":"30412"}, +{"id":"155127"}, +{"id":"196601"}, +{"id":"80044"}, +{"id":"64224"}, +{"id":"203993"}, +{"id":"12982"}, +{"id":"119399"}, +{"id":"192769"}, +{"id":"111531"}, +{"id":"134858"}, +{"id":"20722"}, +{"id":"85455"}, +{"id":"169500"}, +{"id":"151782"}, +{"id":"19556"}, +{"id":"201955"}, +{"id":"104042"}, +{"id":"141033"}, +{"id":"189377"}, +{"id":"206315"}, +{"id":"79375"}, +{"id":"220170"}, +{"id":"172723"}, +{"id":"140188"}, +{"id":"119758"}, +{"id":"202089"}, +{"id":"84053"}, +{"id":"173187"}, +{"id":"17706"}, +{"id":"42963"}, +{"id":"14188"}, +{"id":"164094"}, +{"id":"139932"}, +{"id":"71328"}, +{"id":"188108"}, +{"id":"172924"}, +{"id":"159462"}, +{"id":"66029"}, +{"id":"132709"}, +{"id":"10386"}, +{"id":"67290"}, +{"id":"168024"}, +{"id":"210891"}, +{"id":"189895"}, +{"id":"69588"}, +{"id":"189972"}, +{"id":"83146"}, +{"id":"121134"}, +{"id":"102507"}, +{"id":"78958"}, +{"id":"50868"}, +{"id":"103439"}, +{"id":"46024"}, +{"id":"183733"}, +{"id":"205591"}, +{"id":"101347"}, +{"id":"164468"}, +{"id":"38231"}, +{"id":"214079"}, +{"id":"58314"}, +{"id":"50797"}, +{"id":"101175"}, +{"id":"110720"}, +{"id":"107904"}, +{"id":"164147"}, +{"id":"27488"}, +{"id":"161439"}, +{"id":"196166"}, +{"id":"31525"}, +{"id":"191825"}, +{"id":"217775"}, +{"id":"112302"}, +{"id":"202870"}, +{"id":"18112"}, +{"id":"5410"}, +{"id":"163753"}, +{"id":"195200"}, +{"id":"180427"}, +{"id":"199614"}, +{"id":"53497"}, +{"id":"217852"}, +{"id":"166793"}, +{"id":"187137"}, +{"id":"198993"}, +{"id":"111649"}, +{"id":"51805"}, +{"id":"85850"}, +{"id":"82489"}, +{"id":"187195"}, +{"id":"127004"}, +{"id":"133566"}, +{"id":"98106"}, +{"id":"195494"}, +{"id":"85550"}, +{"id":"178619"}, +{"id":"211975"}, +{"id":"209213"}, +{"id":"90396"}, +{"id":"6914"}, +{"id":"51788"}, +{"id":"50076"}, +{"id":"98953"}, +{"id":"152229"}, +{"id":"10980"}, +{"id":"78563"}, +{"id":"159776"}, +{"id":"115065"}, +{"id":"205215"}, +{"id":"109470"}, +{"id":"164268"}, +{"id":"219741"}, +{"id":"18782"}, +{"id":"1333"}, +{"id":"38367"}, +{"id":"112286"}, +{"id":"49375"}, +{"id":"68228"}, +{"id":"174351"}, +{"id":"30170"}, +{"id":"139534"}, +{"id":"104758"}, +{"id":"54448"}, +{"id":"149007"}, +{"id":"194703"}, +{"id":"75133"}, +{"id":"175270"}, +{"id":"218554"}, +{"id":"119312"}, +{"id":"89029"}, +{"id":"186900"}, +{"id":"43485"}, +{"id":"27788"}, +{"id":"142522"}, +{"id":"146327"}, +{"id":"191281"}, +{"id":"26932"}, +{"id":"67892"}, +{"id":"140390"}, +{"id":"203675"}, +{"id":"78271"}, +{"id":"53400"}, +{"id":"101332"}, +{"id":"164988"}, +{"id":"124825"}, +{"id":"133690"}, +{"id":"207597"}, +{"id":"144657"}, +{"id":"113256"}, +{"id":"102721"}, +{"id":"88926"}, +{"id":"139455"}, +{"id":"123077"}, +{"id":"28986"}, +{"id":"71603"}, +{"id":"203874"}, +{"id":"66341"}, +{"id":"205429"}, +{"id":"151709"}, +{"id":"105709"}, +{"id":"149012"}, +{"id":"96339"}, +{"id":"66166"}, +{"id":"26988"}, +{"id":"182872"}, +{"id":"40836"}, +{"id":"76631"}, +{"id":"7666"}, +{"id":"47544"}, +{"id":"134281"}, +{"id":"18410"}, +{"id":"121163"}, +{"id":"144920"}, +{"id":"88544"}, +{"id":"57788"}, +{"id":"21536"}, +{"id":"77416"}, +{"id":"112594"}, +{"id":"150792"}, +{"id":"192282"}, +{"id":"47215"}, +{"id":"104380"}, +{"id":"82176"}, +{"id":"152547"}, +{"id":"106086"}, +{"id":"136751"}, +{"id":"40490"}, +{"id":"203068"}, +{"id":"101240"}, +{"id":"144301"}, +{"id":"36062"}, +{"id":"27800"}, +{"id":"96403"}, +{"id":"56954"}, +{"id":"62094"}, +{"id":"172953"}, +{"id":"74406"}, +{"id":"85422"}, +{"id":"181015"}, +{"id":"87396"}, +{"id":"148616"}, +{"id":"97627"}, +{"id":"128392"}, +{"id":"198446"}, +{"id":"80018"}, +{"id":"61632"}, +{"id":"151618"}, +{"id":"105670"}, +{"id":"26324"}, +{"id":"193095"}, +{"id":"72221"}, +{"id":"178381"}, +{"id":"190772"}, +{"id":"148662"}, +{"id":"31738"}, +{"id":"115696"}, +{"id":"148856"}, +{"id":"156811"}, +{"id":"185294"}, +{"id":"120076"}, +{"id":"33906"}, +{"id":"114237"}, +{"id":"36137"}, +{"id":"114548"}, +{"id":"81295"}, +{"id":"167259"}, +{"id":"188961"}, +{"id":"92084"}, +{"id":"4710"}, +{"id":"47004"}, +{"id":"67106"}, +{"id":"139848"}, +{"id":"46702"}, +{"id":"194267"}, +{"id":"119895"}, +{"id":"203500"}, +{"id":"202596"}, +{"id":"37693"}, +{"id":"26170"}, +{"id":"205969"}, +{"id":"186048"}, +{"id":"53857"}, +{"id":"77382"}, +{"id":"63275"}, +{"id":"217708"}, +{"id":"9498"}, +{"id":"78635"}, +{"id":"11146"}, +{"id":"55599"}, +{"id":"22444"}, +{"id":"76248"}, +{"id":"215437"}, +{"id":"215260"}, +{"id":"87343"}, +{"id":"48781"}, +{"id":"4561"}, +{"id":"107127"}, +{"id":"88923"}, +{"id":"122516"}, +{"id":"48343"}, +{"id":"184217"}, +{"id":"218483"}, +{"id":"49736"}, +{"id":"172133"}, +{"id":"86442"}, +{"id":"207861"}, +{"id":"179674"}, +{"id":"62851"}, +{"id":"17475"}, +{"id":"107252"}, +{"id":"217674"}, +{"id":"91813"}, +{"id":"132625"}, +{"id":"175732"}, +{"id":"34988"}, +{"id":"66286"}, +{"id":"3295"}, +{"id":"180743"}, +{"id":"19527"}, +{"id":"50379"}, +{"id":"13179"}, +{"id":"126671"}, +{"id":"102920"}, +{"id":"4148"}, +{"id":"19987"}, +{"id":"167375"}, +{"id":"169959"}, +{"id":"94376"}, +{"id":"193190"}, +{"id":"65243"}, +{"id":"196764"}, +{"id":"140601"}, +{"id":"131786"}, +{"id":"84193"}, +{"id":"16059"}, +{"id":"209803"}, +{"id":"4964"}, +{"id":"160990"}, +{"id":"15533"}, +{"id":"5483"}, +{"id":"129536"}, +{"id":"23571"}, +{"id":"129002"}, +{"id":"152812"}, +{"id":"163200"}, +{"id":"66306"}, +{"id":"86577"}, +{"id":"165891"}, +{"id":"187123"}, +{"id":"132418"}, +{"id":"159738"}, +{"id":"178549"}, +{"id":"25837"}, +{"id":"66475"}, +{"id":"49880"}, +{"id":"97804"}, +{"id":"119381"}, +{"id":"152433"}, +{"id":"87611"}, +{"id":"95988"}, +{"id":"9382"}, +{"id":"147816"}, +{"id":"100342"}, +{"id":"156242"}, +{"id":"132814"}, +{"id":"72411"}, +{"id":"22553"}, +{"id":"8390"}, +{"id":"157507"}, +{"id":"7684"}, +{"id":"42595"}, +{"id":"3996"}, +{"id":"178444"}, +{"id":"60637"}, +{"id":"86233"}, +{"id":"110463"}, +{"id":"25052"}, +{"id":"169390"}, +{"id":"214778"}, +{"id":"85743"}, +{"id":"189700"}, +{"id":"39253"}, +{"id":"99475"}, +{"id":"136995"}, +{"id":"151931"}, +{"id":"45493"}, +{"id":"11886"}, +{"id":"126372"}, +{"id":"140764"}, +{"id":"135624"}, +{"id":"155394"}, +{"id":"27618"}, +{"id":"95998"}, +{"id":"24372"}, +{"id":"7235"}, +{"id":"115116"}, +{"id":"67824"}, +{"id":"59097"}, +{"id":"33578"}, +{"id":"178722"}, +{"id":"165771"}, +{"id":"74597"}, +{"id":"157321"}, +{"id":"82764"}, +{"id":"130200"}, +{"id":"24453"}, +{"id":"197550"}, +{"id":"94997"}, +{"id":"114511"}, +{"id":"149737"}, +{"id":"24101"}, +{"id":"23939"}, +{"id":"215240"}, +{"id":"217643"}, +{"id":"8948"}, +{"id":"133233"}, +{"id":"8387"}, +{"id":"80662"}, +{"id":"141985"}, +{"id":"110636"}, +{"id":"76044"}, +{"id":"155448"}, +{"id":"64372"}, +{"id":"193972"}, +{"id":"40692"}, +{"id":"45100"}, +{"id":"118348"}, +{"id":"73004"}, +{"id":"145594"}, +{"id":"139895"}, +{"id":"154150"}, +{"id":"76327"}, +{"id":"118818"}, +{"id":"113085"}, +{"id":"4157"}, +{"id":"25571"}, +{"id":"152014"}, +{"id":"31771"}, +{"id":"76823"}, +{"id":"128190"}, +{"id":"45026"}, +{"id":"55830"}, +{"id":"133292"}, +{"id":"53890"}, +{"id":"172048"}, +{"id":"74368"}, +{"id":"62086"}, +{"id":"118192"}, +{"id":"188275"}, +{"id":"137706"}, +{"id":"75475"}, +{"id":"109746"}, +{"id":"27347"}, +{"id":"150679"}, +{"id":"51238"}, +{"id":"32495"}, +{"id":"187436"}, +{"id":"117546"}, +{"id":"189309"}, +{"id":"134993"}, +{"id":"92126"}, +{"id":"180522"}, +{"id":"4022"}, +{"id":"172558"}, +{"id":"114432"}, +{"id":"34337"}, +{"id":"150543"}, +{"id":"82154"}, +{"id":"185131"}, +{"id":"213532"}, +{"id":"99598"}, +{"id":"10149"}, +{"id":"10942"}, +{"id":"215761"}, +{"id":"51114"}, +{"id":"194945"}, +{"id":"171162"}, +{"id":"40010"}, +{"id":"79573"}, +{"id":"56506"}, +{"id":"10778"}, +{"id":"9415"}, +{"id":"185573"}, +{"id":"21375"}, +{"id":"114738"}, +{"id":"201263"}, +{"id":"70079"}, +{"id":"61039"}, +{"id":"205925"}, +{"id":"179109"}, +{"id":"135459"}, +{"id":"35641"}, +{"id":"172315"}, +{"id":"184512"}, +{"id":"42646"}, +{"id":"17608"}, +{"id":"177834"}, +{"id":"40268"}, +{"id":"212324"}, +{"id":"78846"}, +{"id":"16976"}, +{"id":"100938"}, +{"id":"45554"}, +{"id":"129451"}, +{"id":"5655"}, +{"id":"205575"}, +{"id":"4836"}, +{"id":"68102"}, +{"id":"184122"}, +{"id":"76018"}, +{"id":"145476"}, +{"id":"94080"}, +{"id":"66749"}, +{"id":"160118"}, +{"id":"98915"}, +{"id":"171654"}, +{"id":"204004"}, +{"id":"199576"}, +{"id":"41890"}, +{"id":"24510"}, +{"id":"70024"}, +{"id":"94697"}, +{"id":"29126"}, +{"id":"190806"}, +{"id":"60691"}, +{"id":"133333"}, +{"id":"95630"}, +{"id":"11331"}, +{"id":"203876"}, +{"id":"91540"}, +{"id":"124366"}, +{"id":"86626"}, +{"id":"202654"}, +{"id":"142232"}, +{"id":"2795"}, +{"id":"116816"}, +{"id":"48726"}, +{"id":"84470"}, +{"id":"85566"}, +{"id":"98289"}, +{"id":"59515"}, +{"id":"196422"}, +{"id":"7768"}, +{"id":"25899"}, +{"id":"30857"}, +{"id":"164120"}, +{"id":"202994"}, +{"id":"154669"}, +{"id":"131328"}, +{"id":"71056"}, +{"id":"138334"}, +{"id":"142031"}, +{"id":"172309"}, +{"id":"89114"}, +{"id":"194701"}, +{"id":"59926"}, +{"id":"144741"}, +{"id":"4425"}, +{"id":"18750"}, +{"id":"158049"}, +{"id":"204117"}, +{"id":"80035"}, +{"id":"210940"}, +{"id":"43671"}, +{"id":"186209"}, +{"id":"138040"}, +{"id":"78465"}, +{"id":"8749"}, +{"id":"136483"}, +{"id":"64339"}, +{"id":"6694"}, +{"id":"49717"}, +{"id":"117247"}, +{"id":"139472"}, +{"id":"170133"}, +{"id":"191861"}, +{"id":"144179"}, +{"id":"132424"}, +{"id":"161966"}, +{"id":"76009"}, +{"id":"76052"}, +{"id":"60891"}, +{"id":"188439"}, +{"id":"7249"}, +{"id":"143455"}, +{"id":"39058"}, +{"id":"107220"}, +{"id":"168497"}, +{"id":"5164"}, +{"id":"140918"}, +{"id":"155935"}, +{"id":"119081"}, +{"id":"103100"}, +{"id":"118403"}, +{"id":"145669"}, +{"id":"4873"}, +{"id":"207910"}, +{"id":"177617"}, +{"id":"46646"}, +{"id":"143184"}, +{"id":"202392"}, +{"id":"34742"}, +{"id":"199216"}, +{"id":"178373"}, +{"id":"173415"}, +{"id":"136613"}, +{"id":"88999"}, +{"id":"18252"}, +{"id":"52629"}, +{"id":"216041"}, +{"id":"169161"}, +{"id":"154727"}, +{"id":"6360"}, +{"id":"93146"}, +{"id":"9724"}, +{"id":"8860"}, +{"id":"153401"}, +{"id":"71727"}, +{"id":"10852"}, +{"id":"82858"}, +{"id":"35197"}, +{"id":"204975"}, +{"id":"106589"}, +{"id":"203388"}, +{"id":"7871"}, +{"id":"49091"}, +{"id":"151497"}, +{"id":"163624"}, +{"id":"97995"}, +{"id":"10903"}, +{"id":"161570"}, +{"id":"126548"}, +{"id":"49685"}, +{"id":"31436"}, +{"id":"138052"}, +{"id":"13247"}, +{"id":"194692"}, +{"id":"172875"}, +{"id":"34890"}, +{"id":"130001"}, +{"id":"66650"}, +{"id":"55528"}, +{"id":"114550"}, +{"id":"52928"}, +{"id":"10669"}, +{"id":"90723"}, +{"id":"112323"}, +{"id":"67545"}, +{"id":"191943"}, +{"id":"20227"}, +{"id":"57648"}, +{"id":"23760"}, +{"id":"43032"}, +{"id":"171009"}, +{"id":"205175"}, +{"id":"106297"}, +{"id":"175001"}, +{"id":"176233"}, +{"id":"218287"}, +{"id":"176950"}, +{"id":"211280"}, +{"id":"117181"}, +{"id":"88498"}, +{"id":"73457"}, +{"id":"63772"}, +{"id":"44541"}, +{"id":"35124"}, +{"id":"86549"}, +{"id":"140544"}, +{"id":"45364"}, +{"id":"118574"}, +{"id":"38451"}, +{"id":"3167"}, +{"id":"132257"}, +{"id":"144184"}, +{"id":"188766"}, +{"id":"24313"}, +{"id":"75799"}, +{"id":"204509"}, +{"id":"135552"}, +{"id":"11445"}, +{"id":"76564"}, +{"id":"176142"}, +{"id":"23686"}, +{"id":"143965"}, +{"id":"152162"}, +{"id":"142057"}, +{"id":"95472"}, +{"id":"85672"}, +{"id":"161118"}, +{"id":"174727"}, +{"id":"219440"}, +{"id":"38588"}, +{"id":"127041"}, +{"id":"153308"}, +{"id":"162560"}, +{"id":"112869"}, +{"id":"208849"}, +{"id":"65248"}, +{"id":"16546"}, +{"id":"174313"}, +{"id":"27435"}, +{"id":"179125"}, +{"id":"71353"}, +{"id":"145797"}, +{"id":"132607"}, +{"id":"87966"}, +{"id":"106455"}, +{"id":"139902"}, +{"id":"217959"}, +{"id":"102991"}, +{"id":"93824"}, +{"id":"129559"}, +{"id":"57003"}, +{"id":"151748"}, +{"id":"131021"}, +{"id":"16107"}, +{"id":"77747"}, +{"id":"75427"}, +{"id":"117414"}, +{"id":"7930"}, +{"id":"73835"}, +{"id":"118370"}, +{"id":"90194"}, +{"id":"111540"}, +{"id":"107653"}, +{"id":"77250"}, +{"id":"42809"}, +{"id":"20696"}, +{"id":"192142"}, +{"id":"215242"}, +{"id":"163783"}, +{"id":"185350"}, +{"id":"97960"}, +{"id":"210757"}, +{"id":"64614"}, +{"id":"123096"}, +{"id":"188469"}, +{"id":"54461"}, +{"id":"162561"}, +{"id":"56172"}, +{"id":"110888"}, +{"id":"65407"}, +{"id":"57222"}, +{"id":"216226"}, +{"id":"204372"}, +{"id":"154970"}, +{"id":"210822"}, +{"id":"169925"}, +{"id":"79245"}, +{"id":"113900"}, +{"id":"7656"}, +{"id":"75572"}, +{"id":"70269"}, +{"id":"40497"}, +{"id":"121905"}, +{"id":"96748"}, +{"id":"151438"}, +{"id":"87651"}, +{"id":"159957"}, +{"id":"51506"}, +{"id":"162303"}, +{"id":"106429"}, +{"id":"80423"}, +{"id":"124933"}, +{"id":"180350"}, +{"id":"71775"}, +{"id":"97785"}, +{"id":"16472"}, +{"id":"53355"}, +{"id":"107253"}, +{"id":"69634"}, +{"id":"167125"}, +{"id":"220828"}, +{"id":"73552"}, +{"id":"134071"}, +{"id":"9159"}, +{"id":"45053"}, +{"id":"42198"}, +{"id":"109196"}, +{"id":"171114"}, +{"id":"86468"}, +{"id":"134795"}, +{"id":"67573"}, +{"id":"158792"}, +{"id":"120514"}, +{"id":"183314"}, +{"id":"172928"}, +{"id":"213786"}, +{"id":"169869"}, +{"id":"72290"}, +{"id":"81816"}, +{"id":"170755"}, +{"id":"125538"}, +{"id":"95773"}, +{"id":"68260"}, +{"id":"81379"}, +{"id":"146382"}, +{"id":"14619"}, +{"id":"111035"}, +{"id":"76444"}, +{"id":"106850"}, +{"id":"84604"}, +{"id":"76539"}, +{"id":"85508"}, +{"id":"197994"}, +{"id":"95588"}, +{"id":"135059"}, +{"id":"170149"}, +{"id":"21451"}, +{"id":"127479"}, +{"id":"210539"}, +{"id":"44159"}, +{"id":"100088"}, +{"id":"208986"}, +{"id":"104675"}, +{"id":"22073"}, +{"id":"206143"}, +{"id":"89945"}, +{"id":"146425"}, +{"id":"123971"}, +{"id":"42621"}, +{"id":"14284"}, +{"id":"80355"}, +{"id":"213849"}, +{"id":"16497"}, +{"id":"118681"}, +{"id":"196739"}, +{"id":"4098"}, +{"id":"190301"}, +{"id":"213923"}, +{"id":"148527"}, +{"id":"12036"}, +{"id":"121296"}, +{"id":"18071"}, +{"id":"74167"}, +{"id":"86990"}, +{"id":"38706"}, +{"id":"133991"}, +{"id":"192590"}, +{"id":"66230"}, +{"id":"145325"}, +{"id":"79248"}, +{"id":"61035"}, +{"id":"14414"}, +{"id":"2687"}, +{"id":"100090"}, +{"id":"30565"}, +{"id":"140160"}, +{"id":"131832"}, +{"id":"37932"}, +{"id":"135249"}, +{"id":"103920"}, +{"id":"43457"}, +{"id":"31675"}, +{"id":"216117"}, +{"id":"65190"}, +{"id":"136801"}, +{"id":"140554"}, +{"id":"71872"}, +{"id":"114049"}, +{"id":"207858"}, +{"id":"163643"}, +{"id":"96252"}, +{"id":"52878"}, +{"id":"145129"}, +{"id":"6817"}, +{"id":"130489"}, +{"id":"134382"}, +{"id":"125892"}, +{"id":"11535"}, +{"id":"183788"}, +{"id":"68747"}, +{"id":"147521"}, +{"id":"79300"}, +{"id":"46931"}, +{"id":"117022"}, +{"id":"26304"}, +{"id":"75753"}, +{"id":"6263"}, +{"id":"167213"}, +{"id":"33788"}, +{"id":"178485"}, +{"id":"29058"}, +{"id":"162393"}, +{"id":"33453"}, +{"id":"94955"}, +{"id":"34496"}, +{"id":"59795"}, +{"id":"193293"}, +{"id":"187741"}, +{"id":"210508"}, +{"id":"54872"}, +{"id":"77238"}, +{"id":"1459"}, +{"id":"121966"}, +{"id":"46812"}, +{"id":"36250"}, +{"id":"68039"}, +{"id":"60369"}, +{"id":"1462"}, +{"id":"219620"}, +{"id":"208140"}, +{"id":"107765"}, +{"id":"133987"}, +{"id":"214574"}, +{"id":"126748"}, +{"id":"139258"}, +{"id":"180585"}, +{"id":"201410"}, +{"id":"34293"}, +{"id":"187444"}, +{"id":"62171"}, +{"id":"87020"}, +{"id":"23883"}, +{"id":"52010"}, +{"id":"633"}, +{"id":"101410"}, +{"id":"75534"}, +{"id":"126869"}, +{"id":"203759"}, +{"id":"39148"}, +{"id":"220595"}, +{"id":"182209"}, +{"id":"156291"}, +{"id":"72630"}, +{"id":"4201"}, +{"id":"29300"}, +{"id":"25003"}, +{"id":"97504"}, +{"id":"219480"}, +{"id":"96722"}, +{"id":"83476"}, +{"id":"209060"}, +{"id":"136703"}, +{"id":"127013"}, +{"id":"145711"}, +{"id":"136264"}, +{"id":"45637"}, +{"id":"39971"}, +{"id":"206018"}, +{"id":"145804"}, +{"id":"49417"}, +{"id":"54611"}, +{"id":"164182"}, +{"id":"4311"}, +{"id":"135514"}, +{"id":"195951"}, +{"id":"202578"}, +{"id":"204165"}, +{"id":"51377"}, +{"id":"15709"}, +{"id":"50547"}, +{"id":"186754"}, +{"id":"116410"}, +{"id":"167887"}, +{"id":"128544"}, +{"id":"132401"}, +{"id":"88291"}, +{"id":"97404"}, +{"id":"89484"}, +{"id":"16513"}, +{"id":"74400"}, +{"id":"155942"}, +{"id":"203264"}, +{"id":"188145"}, +{"id":"202400"}, +{"id":"154167"}, +{"id":"137916"}, +{"id":"186203"}, +{"id":"80788"}, +{"id":"90737"}, +{"id":"147948"}, +{"id":"188501"}, +{"id":"69120"}, +{"id":"79950"}, +{"id":"145251"}, +{"id":"111249"}, +{"id":"42476"}, +{"id":"40012"}, +{"id":"52272"}, +{"id":"48043"}, +{"id":"67947"}, +{"id":"12042"}, +{"id":"149309"}, +{"id":"85886"}, +{"id":"198061"}, +{"id":"69369"}, +{"id":"166051"}, +{"id":"169859"}, +{"id":"136114"}, +{"id":"118684"}, +{"id":"210831"}, +{"id":"7558"}, +{"id":"149242"}, +{"id":"133265"}, +{"id":"201095"}, +{"id":"186311"}, +{"id":"29737"}, +{"id":"162855"}, +{"id":"212023"}, +{"id":"171134"}, +{"id":"55318"}, +{"id":"161803"}, +{"id":"167474"}, +{"id":"119090"}, +{"id":"60560"}, +{"id":"75331"}, +{"id":"12023"}, +{"id":"12132"}, +{"id":"192382"}, +{"id":"8705"}, +{"id":"113963"}, +{"id":"208161"}, +{"id":"187127"}, +{"id":"168849"}, +{"id":"211858"}, +{"id":"138684"}, +{"id":"43339"}, +{"id":"165633"}, +{"id":"173905"}, +{"id":"7471"}, +{"id":"182321"}, +{"id":"15561"}, +{"id":"162247"}, +{"id":"135408"}, +{"id":"77082"}, +{"id":"96810"}, +{"id":"161590"}, +{"id":"19061"}, +{"id":"17659"}, +{"id":"214966"}, +{"id":"17190"}, +{"id":"176921"}, +{"id":"71294"}, +{"id":"121722"}, +{"id":"131685"}, +{"id":"35285"}, +{"id":"175084"}, +{"id":"210638"}, +{"id":"188263"}, +{"id":"161445"}, +{"id":"154502"}, +{"id":"35322"}, +{"id":"31389"}, +{"id":"178058"}, +{"id":"210662"}, +{"id":"68549"}, +{"id":"104056"}, +{"id":"93605"}, +{"id":"194026"}, +{"id":"84592"}, +{"id":"86918"}, +{"id":"157694"}, +{"id":"90884"}, +{"id":"17640"}, +{"id":"70295"}, +{"id":"2792"}, +{"id":"21010"}, +{"id":"155318"}, +{"id":"170653"}, +{"id":"129184"}, +{"id":"136704"}, +{"id":"76964"}, +{"id":"2724"}, +{"id":"70233"}, +{"id":"19228"}, +{"id":"180223"}, +{"id":"54429"}, +{"id":"49067"}, +{"id":"198943"}, +{"id":"203686"}, +{"id":"43168"}, +{"id":"209850"}, +{"id":"16010"}, +{"id":"201733"}, +{"id":"66003"}, +{"id":"92317"}, +{"id":"90282"}, +{"id":"169193"}, +{"id":"216056"}, +{"id":"82773"}, +{"id":"194288"}, +{"id":"202440"}, +{"id":"31114"}, +{"id":"170951"}, +{"id":"218024"}, +{"id":"110443"}, +{"id":"155873"}, +{"id":"50478"}, +{"id":"183227"}, +{"id":"87007"}, +{"id":"101438"}, +{"id":"161478"}, +{"id":"164149"}, +{"id":"106525"}, +{"id":"48078"}, +{"id":"3386"}, +{"id":"126873"}, +{"id":"7641"}, +{"id":"128793"}, +{"id":"5359"}, +{"id":"52280"}, +{"id":"161348"}, +{"id":"178871"}, +{"id":"8125"}, +{"id":"139729"}, +{"id":"4459"}, +{"id":"63375"}, +{"id":"41333"}, +{"id":"112461"}, +{"id":"105851"}, +{"id":"189906"}, +{"id":"8995"}, +{"id":"174464"}, +{"id":"90375"}, +{"id":"4775"}, +{"id":"154102"}, +{"id":"158302"}, +{"id":"118585"}, +{"id":"3841"}, +{"id":"172586"}, +{"id":"109030"}, +{"id":"20115"}, +{"id":"103706"}, +{"id":"15312"}, +{"id":"217032"}, +{"id":"86419"}, +{"id":"130237"}, +{"id":"199914"}, +{"id":"140985"}, +{"id":"173458"}, +{"id":"130710"}, +{"id":"175042"}, +{"id":"59118"}, +{"id":"189244"}, +{"id":"120302"}, +{"id":"162664"}, +{"id":"108363"}, +{"id":"34981"}, +{"id":"72023"}, +{"id":"188765"}, +{"id":"132357"}, +{"id":"57598"}, +{"id":"3305"}, +{"id":"72516"}, +{"id":"156062"}, +{"id":"20328"}, +{"id":"102860"}, +{"id":"206219"}, +{"id":"23498"}, +{"id":"59242"}, +{"id":"124656"}, +{"id":"139291"}, +{"id":"101315"}, +{"id":"169319"}, +{"id":"41328"}, +{"id":"146344"}, +{"id":"89199"}, +{"id":"145599"}, +{"id":"134939"}, +{"id":"62418"}, +{"id":"196735"}, +{"id":"60786"}, +{"id":"118246"}, +{"id":"10865"}, +{"id":"17283"}, +{"id":"157745"}, +{"id":"51873"}, +{"id":"4307"}, +{"id":"171881"}, +{"id":"67173"}, +{"id":"57440"}, +{"id":"1400"}, +{"id":"88038"}, +{"id":"155484"}, +{"id":"32850"}, +{"id":"58488"}, +{"id":"157867"}, +{"id":"40572"}, +{"id":"110932"}, +{"id":"98815"}, +{"id":"92365"}, +{"id":"88903"}, +{"id":"97510"}, +{"id":"81475"}, +{"id":"39681"}, +{"id":"205077"}, +{"id":"108132"}, +{"id":"190160"}, +{"id":"109285"}, +{"id":"135505"}, +{"id":"137194"}, +{"id":"204206"}, +{"id":"207119"}, +{"id":"110909"}, +{"id":"69675"}, +{"id":"202214"}, +{"id":"172487"}, +{"id":"7397"}, +{"id":"92134"}, +{"id":"143218"}, +{"id":"99787"}, +{"id":"186193"}, +{"id":"215846"}, +{"id":"59283"}, +{"id":"219879"}, +{"id":"200424"}, +{"id":"140090"}, +{"id":"205108"}, +{"id":"196280"}, +{"id":"159886"}, +{"id":"163513"}, +{"id":"115096"}, +{"id":"174701"}, +{"id":"218180"}, +{"id":"105971"}, +{"id":"123485"}, +{"id":"25936"}, +{"id":"191645"}, +{"id":"75853"}, +{"id":"66004"}, +{"id":"153771"}, +{"id":"2958"}, +{"id":"208580"}, +{"id":"16270"}, +{"id":"71942"}, +{"id":"86170"}, +{"id":"101922"}, +{"id":"90351"}, +{"id":"77617"}, +{"id":"127798"}, +{"id":"110762"}, +{"id":"212397"}, +{"id":"72958"}, +{"id":"46242"}, +{"id":"22380"}, +{"id":"118780"}, +{"id":"217165"}, +{"id":"46959"}, +{"id":"220401"}, +{"id":"113504"}, +{"id":"184428"}, +{"id":"149389"}, +{"id":"41331"}, +{"id":"200150"}, +{"id":"47278"}, +{"id":"145388"}, +{"id":"41937"}, +{"id":"158505"}, +{"id":"11912"}, +{"id":"19093"}, +{"id":"187451"}, +{"id":"169517"}, +{"id":"107010"}, +{"id":"71414"}, +{"id":"201658"}, +{"id":"189288"}, +{"id":"82591"}, +{"id":"48139"}, +{"id":"49338"}, +{"id":"124252"}, +{"id":"39003"}, +{"id":"192031"}, +{"id":"172733"}, +{"id":"33979"}, +{"id":"170845"}, +{"id":"98515"}, +{"id":"36092"}, +{"id":"2723"}, +{"id":"207587"}, +{"id":"212983"}, +{"id":"104424"}, +{"id":"175514"}, +{"id":"215706"}, +{"id":"160203"}, +{"id":"136083"}, +{"id":"48692"}, +{"id":"27660"}, +{"id":"5440"}, +{"id":"31250"}, +{"id":"104414"}, +{"id":"214068"}, +{"id":"72631"}, +{"id":"108077"}, +{"id":"177524"}, +{"id":"179258"}, +{"id":"214851"}, +{"id":"211473"}, +{"id":"60996"}, +{"id":"135010"}, +{"id":"213419"}, +{"id":"210193"}, +{"id":"173404"}, +{"id":"178532"}, +{"id":"169172"}, +{"id":"3189"}, +{"id":"165926"}, +{"id":"192061"}, +{"id":"156298"}, +{"id":"126192"}, +{"id":"219821"}, +{"id":"127419"}, +{"id":"34021"}, +{"id":"164277"}, +{"id":"89290"}, +{"id":"175000"}, +{"id":"194918"}, +{"id":"148731"}, +{"id":"81217"}, +{"id":"158348"}, +{"id":"38319"}, +{"id":"84648"}, +{"id":"120686"}, +{"id":"159139"}, +{"id":"49326"}, +{"id":"56208"}, +{"id":"174968"}, +{"id":"39124"}, +{"id":"77102"}, +{"id":"87588"}, +{"id":"167712"}, +{"id":"209548"}, +{"id":"51436"}, +{"id":"179241"}, +{"id":"114596"}, +{"id":"90016"}, +{"id":"35666"}, +{"id":"89933"}, +{"id":"124591"}, +{"id":"41353"}, +{"id":"136759"}, +{"id":"115182"}, +{"id":"164580"}, +{"id":"208477"}, +{"id":"164944"}, +{"id":"204730"}, +{"id":"87910"}, +{"id":"29208"}, +{"id":"170127"}, +{"id":"110852"}, +{"id":"180320"}, +{"id":"161486"}, +{"id":"21194"}, +{"id":"49168"}, +{"id":"163384"}, +{"id":"92394"}, +{"id":"39207"}, +{"id":"198745"}, +{"id":"201723"}, +{"id":"88676"}, +{"id":"184627"}, +{"id":"125733"}, +{"id":"78590"}, +{"id":"69216"}, +{"id":"142477"}, +{"id":"125543"}, +{"id":"203885"}, +{"id":"58618"}, +{"id":"167484"}, +{"id":"107310"}, +{"id":"179786"}, +{"id":"162708"}, +{"id":"25862"}, +{"id":"131388"}, +{"id":"85901"}, +{"id":"95841"}, +{"id":"7162"}, +{"id":"52555"}, +{"id":"195896"}, +{"id":"92960"}, +{"id":"72300"}, +{"id":"130490"}, +{"id":"106158"}, +{"id":"72036"}, +{"id":"111837"}, +{"id":"23556"}, +{"id":"131898"}, +{"id":"7991"}, +{"id":"160947"}, +{"id":"146432"}, +{"id":"72663"}, +{"id":"57741"}, +{"id":"121066"}, +{"id":"35759"}, +{"id":"46255"}, +{"id":"202191"}, +{"id":"215438"}, +{"id":"44704"}, +{"id":"192740"}, +{"id":"401"}, +{"id":"64866"}, +{"id":"147951"}, +{"id":"203666"}, +{"id":"65994"}, +{"id":"186557"}, +{"id":"115372"}, +{"id":"145079"}, +{"id":"6676"}, +{"id":"116160"}, +{"id":"79137"}, +{"id":"76247"}, +{"id":"215201"}, +{"id":"199586"}, +{"id":"102832"}, +{"id":"34226"}, +{"id":"54950"}, +{"id":"97412"}, +{"id":"165763"}, +{"id":"59496"}, +{"id":"85039"}, +{"id":"13642"}, +{"id":"27931"}, +{"id":"141396"}, +{"id":"120385"}, +{"id":"183473"}, +{"id":"13101"}, +{"id":"146904"}, +{"id":"73084"}, +{"id":"147598"}, +{"id":"72240"}, +{"id":"124091"}, +{"id":"169298"}, +{"id":"44777"}, +{"id":"68303"}, +{"id":"204930"}, +{"id":"204896"}, +{"id":"4435"}, +{"id":"52404"}, +{"id":"49501"}, +{"id":"56124"}, +{"id":"166167"}, +{"id":"91708"}, +{"id":"183785"}, +{"id":"154472"}, +{"id":"31009"}, +{"id":"211192"}, +{"id":"130954"}, +{"id":"60405"}, +{"id":"77910"}, +{"id":"200001"}, +{"id":"12466"}, +{"id":"191846"}, +{"id":"10654"}, +{"id":"125711"}, +{"id":"74401"}, +{"id":"10705"}, +{"id":"74301"}, +{"id":"132586"}, +{"id":"98319"}, +{"id":"206489"}, +{"id":"148021"}, +{"id":"217903"}, +{"id":"132090"}, +{"id":"84655"}, +{"id":"93120"}, +{"id":"114186"}, +{"id":"62405"}, +{"id":"202532"}, +{"id":"69764"}, +{"id":"1367"}, +{"id":"73727"}, +{"id":"62124"}, +{"id":"29164"}, +{"id":"34059"}, +{"id":"78079"}, +{"id":"179486"}, +{"id":"192221"}, +{"id":"71925"}, +{"id":"155990"}, +{"id":"172715"}, +{"id":"61396"}, +{"id":"126054"}, +{"id":"32997"}, +{"id":"197119"}, +{"id":"50817"}, +{"id":"107373"}, +{"id":"50038"}, +{"id":"77234"}, +{"id":"88751"}, +{"id":"169149"}, +{"id":"54411"}, +{"id":"136588"}, +{"id":"196667"}, +{"id":"141639"}, +{"id":"42699"}, +{"id":"53460"}, +{"id":"78277"}, +{"id":"16054"}, +{"id":"82116"}, +{"id":"155507"}, +{"id":"27249"}, +{"id":"1610"}, +{"id":"174177"}, +{"id":"182214"}, +{"id":"205224"}, +{"id":"17313"}, +{"id":"84010"}, +{"id":"1797"}, +{"id":"6984"}, +{"id":"12983"}, +{"id":"33881"}, +{"id":"159729"}, +{"id":"104528"}, +{"id":"56605"}, +{"id":"55049"}, +{"id":"58111"}, +{"id":"51006"}, +{"id":"149128"}, +{"id":"84279"}, +{"id":"174500"}, +{"id":"131560"}, +{"id":"69713"}, +{"id":"108371"}, +{"id":"186954"}, +{"id":"51654"}, +{"id":"87667"}, +{"id":"78099"}, +{"id":"171138"}, +{"id":"198960"}, +{"id":"76953"}, +{"id":"186812"}, +{"id":"130603"}, +{"id":"168284"}, +{"id":"207092"}, +{"id":"159594"}, +{"id":"109405"}, +{"id":"113575"}, +{"id":"176417"}, +{"id":"145002"}, +{"id":"203435"}, +{"id":"158780"}, +{"id":"17078"}, +{"id":"76486"}, +{"id":"186243"}, +{"id":"136169"}, +{"id":"135576"}, +{"id":"156171"}, +{"id":"204630"}, +{"id":"79005"}, +{"id":"35117"}, +{"id":"46994"}, +{"id":"218912"}, +{"id":"135915"}, +{"id":"165538"}, +{"id":"170441"}, +{"id":"103668"}, +{"id":"163866"}, +{"id":"205712"}, +{"id":"190813"}, +{"id":"175165"}, +{"id":"56892"}, +{"id":"204179"}, +{"id":"19954"}, +{"id":"143598"}, +{"id":"70353"}, +{"id":"85854"}, +{"id":"40985"}, +{"id":"136038"}, +{"id":"683"}, +{"id":"186163"}, +{"id":"59383"}, +{"id":"205845"}, +{"id":"7623"}, +{"id":"142972"}, +{"id":"103028"}, +{"id":"142348"}, +{"id":"176501"}, +{"id":"71838"}, +{"id":"48729"}, +{"id":"135592"}, +{"id":"150578"}, +{"id":"1260"}, +{"id":"7045"}, +{"id":"220477"}, +{"id":"74822"}, +{"id":"71154"}, +{"id":"117259"}, +{"id":"67903"}, +{"id":"63457"}, +{"id":"121459"}, +{"id":"156479"}, +{"id":"3913"}, +{"id":"3410"}, +{"id":"91679"}, +{"id":"63243"}, +{"id":"97177"}, +{"id":"17175"}, +{"id":"71401"}, +{"id":"207057"}, +{"id":"30071"}, +{"id":"202449"}, +{"id":"144704"}, +{"id":"208299"}, +{"id":"140149"}, +{"id":"93163"}, +{"id":"63169"}, +{"id":"31489"}, +{"id":"112153"}, +{"id":"65352"}, +{"id":"195878"}, +{"id":"173472"}, +{"id":"142614"}, +{"id":"126701"}, +{"id":"153560"}, +{"id":"45593"}, +{"id":"165439"}, +{"id":"58482"}, +{"id":"128686"}, +{"id":"1612"}, +{"id":"6372"}, +{"id":"15214"}, +{"id":"196551"}, +{"id":"208326"}, +{"id":"96580"}, +{"id":"15782"}, +{"id":"75012"}, +{"id":"201652"}, +{"id":"26616"}, +{"id":"58342"}, +{"id":"18189"}, +{"id":"78101"}, +{"id":"44322"}, +{"id":"190526"}, +{"id":"204283"}, +{"id":"164341"}, +{"id":"145062"}, +{"id":"220505"}, +{"id":"220449"}, +{"id":"81951"}, +{"id":"109585"}, +{"id":"39757"}, +{"id":"63520"}, +{"id":"110810"}, +{"id":"133128"}, +{"id":"151307"}, +{"id":"59349"}, +{"id":"14000"}, +{"id":"16072"}, +{"id":"125247"}, +{"id":"27812"}, +{"id":"151518"}, +{"id":"132749"}, +{"id":"109121"}, +{"id":"170348"}, +{"id":"29921"}, +{"id":"59562"}, +{"id":"188704"}, +{"id":"48197"}, +{"id":"150864"}, +{"id":"98641"}, +{"id":"55692"}, +{"id":"14567"}, +{"id":"215931"}, +{"id":"56184"}, +{"id":"178849"}, +{"id":"26177"}, +{"id":"16061"}, +{"id":"138255"}, +{"id":"161089"}, +{"id":"46604"}, +{"id":"182212"}, +{"id":"214025"}, +{"id":"52505"}, +{"id":"125958"}, +{"id":"163994"}, +{"id":"114250"}, +{"id":"103639"}, +{"id":"57905"}, +{"id":"146172"}, +{"id":"204084"}, +{"id":"56338"}, +{"id":"170082"}, +{"id":"90271"}, +{"id":"44417"}, +{"id":"21217"}, +{"id":"209732"}, +{"id":"42080"}, +{"id":"149815"}, +{"id":"76001"}, +{"id":"138763"}, +{"id":"161771"}, +{"id":"29379"}, +{"id":"161451"}, +{"id":"42905"}, +{"id":"72582"}, +{"id":"206479"}, +{"id":"91260"}, +{"id":"167904"}, +{"id":"37905"}, +{"id":"78761"}, +{"id":"160603"}, +{"id":"36123"}, +{"id":"204310"}, +{"id":"99679"}, +{"id":"162935"}, +{"id":"66772"}, +{"id":"96213"}, +{"id":"177576"}, +{"id":"102498"}, +{"id":"79480"}, +{"id":"76067"}, +{"id":"51216"}, +{"id":"88226"}, +{"id":"190625"}, +{"id":"30816"}, +{"id":"180762"}, +{"id":"160673"}, +{"id":"56632"}, +{"id":"159853"}, +{"id":"6250"}, +{"id":"96894"}, +{"id":"137704"}, +{"id":"107702"}, +{"id":"125843"}, +{"id":"2111"}, +{"id":"10496"}, +{"id":"84078"}, +{"id":"133645"}, +{"id":"202193"}, +{"id":"6576"}, +{"id":"44759"}, +{"id":"128876"}, +{"id":"212087"}, +{"id":"597"}, +{"id":"128002"}, +{"id":"182095"}, +{"id":"128097"}, +{"id":"92965"}, +{"id":"107416"}, +{"id":"66001"}, +{"id":"205019"}, +{"id":"116583"}, +{"id":"22641"}, +{"id":"22960"}, +{"id":"65257"}, +{"id":"6546"}, +{"id":"200327"}, +{"id":"97254"}, +{"id":"60223"}, +{"id":"159903"}, +{"id":"110700"}, +{"id":"110386"}, +{"id":"90607"}, +{"id":"74867"}, +{"id":"216628"}, +{"id":"100220"}, +{"id":"87780"}, +{"id":"47209"}, +{"id":"19276"}, +{"id":"83134"}, +{"id":"47835"}, +{"id":"37886"}, +{"id":"21034"}, +{"id":"200599"}, +{"id":"98475"}, +{"id":"20139"}, +{"id":"219098"}, +{"id":"56615"}, +{"id":"132809"}, +{"id":"139390"}, +{"id":"204685"}, +{"id":"154550"}, +{"id":"84586"}, +{"id":"13148"}, +{"id":"138632"}, +{"id":"43750"}, +{"id":"198819"}, +{"id":"155898"}, +{"id":"119574"}, +{"id":"200104"}, +{"id":"34883"}, +{"id":"41721"}, +{"id":"82775"}, +{"id":"105441"}, +{"id":"208292"}, +{"id":"182356"}, +{"id":"68399"}, +{"id":"162050"}, +{"id":"165135"}, +{"id":"96304"}, +{"id":"127590"}, +{"id":"26893"}, +{"id":"164888"}, +{"id":"192606"}, +{"id":"45910"}, +{"id":"34115"}, +{"id":"143267"}, +{"id":"133855"}, +{"id":"71628"}, +{"id":"120389"}, +{"id":"100344"}, +{"id":"181843"}, +{"id":"111089"}, +{"id":"117930"}, +{"id":"163565"}, +{"id":"22442"}, +{"id":"136525"}, +{"id":"49350"}, +{"id":"35865"}, +{"id":"141948"}, +{"id":"4870"}, +{"id":"58518"}, +{"id":"112130"}, +{"id":"134976"}, +{"id":"153991"}, +{"id":"135210"}, +{"id":"145162"}, +{"id":"178292"}, +{"id":"1246"}, +{"id":"32276"}, +{"id":"22192"}, +{"id":"80251"}, +{"id":"102468"}, +{"id":"124034"}, +{"id":"40429"}, +{"id":"122153"}, +{"id":"83900"}, +{"id":"171856"}, +{"id":"7234"}, +{"id":"64721"}, +{"id":"174937"}, +{"id":"76172"}, +{"id":"211162"}, +{"id":"171700"}, +{"id":"109749"}, +{"id":"150641"}, +{"id":"21067"}, +{"id":"216776"}, +{"id":"48577"}, +{"id":"189415"}, +{"id":"216368"}, +{"id":"160735"}, +{"id":"95515"}, +{"id":"143194"}, +{"id":"50125"}, +{"id":"197335"}, +{"id":"16423"}, +{"id":"149845"}, +{"id":"43052"}, +{"id":"81422"}, +{"id":"205121"}, +{"id":"53406"}, +{"id":"147622"}, +{"id":"120319"}, +{"id":"105897"}, +{"id":"43001"}, +{"id":"43918"}, +{"id":"21892"}, +{"id":"188703"}, +{"id":"102996"}, +{"id":"130932"}, +{"id":"124178"}, +{"id":"134083"}, +{"id":"138564"}, +{"id":"134173"}, +{"id":"216702"}, +{"id":"55772"}, +{"id":"157194"}, +{"id":"117330"}, +{"id":"7948"}, +{"id":"79327"}, +{"id":"156111"}, +{"id":"23931"}, +{"id":"160805"}, +{"id":"26213"}, +{"id":"203718"}, +{"id":"96432"}, +{"id":"63475"}, +{"id":"66057"}, +{"id":"27940"}, +{"id":"165321"}, +{"id":"7409"}, +{"id":"215163"}, +{"id":"101383"}, +{"id":"38003"}, +{"id":"93405"}, +{"id":"53601"}, +{"id":"216698"}, +{"id":"89348"}, +{"id":"206196"}, +{"id":"113934"}, +{"id":"70893"}, +{"id":"36041"}, +{"id":"205354"}, +{"id":"123657"}, +{"id":"69422"}, +{"id":"104482"}, +{"id":"94113"}, +{"id":"1303"}, +{"id":"28622"}, +{"id":"129280"}, +{"id":"27282"}, +{"id":"135636"}, +{"id":"156096"}, +{"id":"184893"}, +{"id":"113646"}, +{"id":"173841"}, +{"id":"56246"}, +{"id":"208"}, +{"id":"92794"}, +{"id":"52009"}, +{"id":"147138"}, +{"id":"61066"}, +{"id":"60390"}, +{"id":"73327"}, +{"id":"49623"}, +{"id":"203846"}, +{"id":"161539"}, +{"id":"38478"}, +{"id":"13369"}, +{"id":"53071"}, +{"id":"107200"}, +{"id":"78033"}, +{"id":"136162"}, +{"id":"220002"}, +{"id":"59323"}, +{"id":"104896"}, +{"id":"113621"}, +{"id":"195027"}, +{"id":"78153"}, +{"id":"37722"}, +{"id":"62971"}, +{"id":"135797"}, +{"id":"59253"}, +{"id":"21455"}, +{"id":"180202"}, +{"id":"113063"}, +{"id":"158514"}, +{"id":"111587"}, +{"id":"50318"}, +{"id":"8094"}, +{"id":"82463"}, +{"id":"67172"}, +{"id":"179760"}, +{"id":"65655"}, +{"id":"219041"}, +{"id":"112755"}, +{"id":"189038"}, +{"id":"32271"}, +{"id":"55777"}, +{"id":"209888"}, +{"id":"137860"}, +{"id":"164822"}, +{"id":"124316"}, +{"id":"60188"}, +{"id":"36720"}, +{"id":"20103"}, +{"id":"73748"}, +{"id":"219863"}, +{"id":"99619"}, +{"id":"143151"}, +{"id":"173116"}, +{"id":"204364"}, +{"id":"191879"}, +{"id":"188374"}, +{"id":"206461"}, +{"id":"180138"}, +{"id":"99551"}, +{"id":"14295"}, +{"id":"43776"}, +{"id":"205895"}, +{"id":"70534"}, +{"id":"149036"}, +{"id":"208808"}, +{"id":"44995"}, +{"id":"73977"}, +{"id":"205536"}, +{"id":"162740"}, +{"id":"216939"}, +{"id":"161565"}, +{"id":"150281"}, +{"id":"160643"}, +{"id":"122926"}, +{"id":"112473"}, +{"id":"146509"}, +{"id":"43885"}, +{"id":"136220"}, +{"id":"26759"}, +{"id":"176002"}, +{"id":"20238"}, +{"id":"29016"}, +{"id":"4043"}, +{"id":"170563"}, +{"id":"82649"}, +{"id":"17800"}, +{"id":"144722"}, +{"id":"48795"}, +{"id":"103045"}, +{"id":"158712"}, +{"id":"167407"}, +{"id":"171597"}, +{"id":"54368"}, +{"id":"84529"}, +{"id":"80520"}, +{"id":"100576"}, +{"id":"5494"}, +{"id":"21582"}, +{"id":"82930"}, +{"id":"87625"}, +{"id":"209407"}, +{"id":"54686"}, +{"id":"139827"}, +{"id":"198558"}, +{"id":"96673"}, +{"id":"214046"}, +{"id":"191009"}, +{"id":"190308"}, +{"id":"169274"}, +{"id":"83423"}, +{"id":"200171"}, +{"id":"43139"}, +{"id":"188459"}, +{"id":"78397"}, +{"id":"88211"}, +{"id":"53630"}, +{"id":"16484"}, +{"id":"1049"}, +{"id":"122523"}, +{"id":"128911"}, +{"id":"37076"}, +{"id":"83225"}, +{"id":"153391"}, +{"id":"74081"}, +{"id":"27321"}, +{"id":"66201"}, +{"id":"160435"}, +{"id":"163415"}, +{"id":"110420"}, +{"id":"154738"}, +{"id":"155268"}, +{"id":"147073"}, +{"id":"76412"}, +{"id":"119389"}, +{"id":"110787"}, +{"id":"39773"}, +{"id":"90766"}, +{"id":"87564"}, +{"id":"162003"}, +{"id":"155349"}, +{"id":"49370"}, +{"id":"56377"}, +{"id":"53171"}, +{"id":"198313"}, +{"id":"218346"}, +{"id":"134923"}, +{"id":"202852"}, +{"id":"65807"}, +{"id":"12712"}, +{"id":"117502"}, +{"id":"4489"}, +{"id":"109697"}, +{"id":"118658"}, +{"id":"92954"}, +{"id":"203493"}, +{"id":"103511"}, +{"id":"153588"}, +{"id":"134641"}, +{"id":"1000"}, +{"id":"124491"}, +{"id":"34644"}, +{"id":"162423"}, +{"id":"202700"}, +{"id":"164360"}, +{"id":"77393"}, +{"id":"119093"}, +{"id":"4588"}, +{"id":"61602"}, +{"id":"198658"}, +{"id":"117563"}, +{"id":"210483"}, +{"id":"7315"}, +{"id":"200214"}, +{"id":"113814"}, +{"id":"65691"}, +{"id":"190394"}, +{"id":"6206"}, +{"id":"195381"}, +{"id":"190685"}, +{"id":"194243"}, +{"id":"6974"}, +{"id":"21810"}, +{"id":"33029"}, +{"id":"20271"}, +{"id":"11"}, +{"id":"186420"}, +{"id":"173127"}, +{"id":"173973"}, +{"id":"155997"}, +{"id":"211075"}, +{"id":"116101"}, +{"id":"187770"}, +{"id":"169240"}, +{"id":"103390"}, +{"id":"214679"}, +{"id":"193836"}, +{"id":"166772"}, +{"id":"159887"}, +{"id":"55892"}, +{"id":"79142"}, +{"id":"6836"}, +{"id":"217354"}, +{"id":"97230"}, +{"id":"68178"}, +{"id":"147305"}, +{"id":"128590"}, +{"id":"25516"}, +{"id":"3490"}, +{"id":"9840"}, +{"id":"90731"}, +{"id":"100792"}, +{"id":"174339"}, +{"id":"136238"}, +{"id":"58790"}, +{"id":"27683"}, +{"id":"73230"}, +{"id":"145514"}, +{"id":"172069"}, +{"id":"26846"}, +{"id":"191539"}, +{"id":"46704"}, +{"id":"23555"}, +{"id":"209242"}, +{"id":"57361"}, +{"id":"154853"}, +{"id":"96009"}, +{"id":"129147"}, +{"id":"114516"}, +{"id":"70019"}, +{"id":"80746"}, +{"id":"138587"}, +{"id":"61663"}, +{"id":"185902"}, +{"id":"117486"}, +{"id":"138305"}, +{"id":"192892"}, +{"id":"209303"}, +{"id":"154184"}, +{"id":"138641"}, +{"id":"109069"}, +{"id":"172691"}, +{"id":"24390"}, +{"id":"213275"}, +{"id":"57275"}, +{"id":"214001"}, +{"id":"149743"}, +{"id":"52045"}, +{"id":"165295"}, +{"id":"39576"}, +{"id":"57743"}, +{"id":"68557"}, +{"id":"128844"}, +{"id":"156263"}, +{"id":"157853"}, +{"id":"206655"}, +{"id":"110984"}, +{"id":"137151"}, +{"id":"80314"}, +{"id":"212184"}, +{"id":"150383"}, +{"id":"19649"}, +{"id":"26723"}, +{"id":"176353"}, +{"id":"147970"}, +{"id":"212574"}, +{"id":"44389"}, +{"id":"153148"}, +{"id":"30167"}, +{"id":"107821"}, +{"id":"189554"}, +{"id":"109276"}, +{"id":"164682"}, +{"id":"113581"}, +{"id":"58709"}, +{"id":"66075"}, +{"id":"152766"}, +{"id":"55365"}, +{"id":"79645"}, +{"id":"74884"}, +{"id":"159985"}, +{"id":"146778"}, +{"id":"129377"}, +{"id":"199279"}, +{"id":"202505"}, +{"id":"20174"}, +{"id":"3060"}, +{"id":"107592"}, +{"id":"15919"}, +{"id":"19916"}, +{"id":"197397"}, +{"id":"133143"}, +{"id":"107210"}, +{"id":"188059"}, +{"id":"110629"}, +{"id":"7197"}, +{"id":"28042"}, +{"id":"182177"}, +{"id":"191308"}, +{"id":"208458"}, +{"id":"156924"}, +{"id":"8715"}, +{"id":"190042"}, +{"id":"110243"}, +{"id":"125164"}, +{"id":"30221"}, +{"id":"147629"}, +{"id":"207813"}, +{"id":"41001"}, +{"id":"220283"}, +{"id":"160001"}, +{"id":"78972"}, +{"id":"29901"}, +{"id":"164542"}, +{"id":"68605"}, +{"id":"43319"}, +{"id":"128456"}, +{"id":"47874"}, +{"id":"65474"}, +{"id":"65826"}, +{"id":"34042"}, +{"id":"26491"}, +{"id":"81592"}, +{"id":"21103"}, +{"id":"118754"}, +{"id":"22637"}, +{"id":"134101"}, +{"id":"107459"}, +{"id":"200953"}, +{"id":"77460"}, +{"id":"172065"}, +{"id":"75324"}, +{"id":"192293"}, +{"id":"24317"}, +{"id":"112965"}, +{"id":"66805"}, +{"id":"55312"}, +{"id":"38519"}, +{"id":"95144"}, +{"id":"155698"}, +{"id":"95117"}, +{"id":"80216"}, +{"id":"20550"}, +{"id":"144376"}, +{"id":"50012"}, +{"id":"72699"}, +{"id":"73400"}, +{"id":"82290"}, +{"id":"152409"}, +{"id":"675"}, +{"id":"42304"}, +{"id":"180162"}, +{"id":"209923"}, +{"id":"136994"}, +{"id":"187286"}, +{"id":"161526"}, +{"id":"167649"}, +{"id":"79912"}, +{"id":"47207"}, +{"id":"102989"}, +{"id":"199938"}, +{"id":"40843"}, +{"id":"135386"}, +{"id":"199312"}, +{"id":"35916"}, +{"id":"183216"}, +{"id":"38101"}, +{"id":"127084"}, +{"id":"69794"}, +{"id":"72405"}, +{"id":"177732"}, +{"id":"24666"}, +{"id":"20344"}, +{"id":"72732"}, +{"id":"10933"}, +{"id":"59936"}, +{"id":"120746"}, +{"id":"112720"}, +{"id":"168395"}, +{"id":"148218"}, +{"id":"19613"}, +{"id":"156248"}, +{"id":"187528"}, +{"id":"164949"}, +{"id":"166918"}, +{"id":"101711"}, +{"id":"216417"}, +{"id":"34689"}, +{"id":"115092"}, +{"id":"18259"}, +{"id":"31189"}, +{"id":"70845"}, +{"id":"187020"}, +{"id":"218748"}, +{"id":"96291"}, +{"id":"70653"}, +{"id":"59119"}, +{"id":"187197"}, +{"id":"91728"}, +{"id":"144519"}, +{"id":"44790"}, +{"id":"53811"}, +{"id":"65743"}, +{"id":"24936"}, +{"id":"78186"}, +{"id":"218590"}, +{"id":"96877"}, +{"id":"92236"}, +{"id":"196322"}, +{"id":"192074"}, +{"id":"45182"}, +{"id":"80022"}, +{"id":"12373"}, +{"id":"48635"}, +{"id":"31254"}, +{"id":"131625"}, +{"id":"195512"}, +{"id":"217113"}, +{"id":"179652"}, +{"id":"181723"}, +{"id":"120163"}, +{"id":"148652"}, +{"id":"27764"}, +{"id":"97026"}, +{"id":"43507"}, +{"id":"218265"}, +{"id":"56296"}, +{"id":"67093"}, +{"id":"128378"}, +{"id":"102217"}, +{"id":"53486"}, +{"id":"15964"}, +{"id":"23685"}, +{"id":"201519"}, +{"id":"97556"}, +{"id":"114411"}, +{"id":"189219"}, +{"id":"216795"}, +{"id":"6924"}, +{"id":"100696"}, +{"id":"173830"}, +{"id":"315"}, +{"id":"44346"}, +{"id":"155867"}, +{"id":"78668"}, +{"id":"110729"}, +{"id":"17580"}, +{"id":"55460"}, +{"id":"144466"}, +{"id":"51270"}, +{"id":"57316"}, +{"id":"8541"}, +{"id":"191494"}, +{"id":"405"}, +{"id":"8028"}, +{"id":"141000"}, +{"id":"23428"}, +{"id":"81302"}, +{"id":"182849"}, +{"id":"98371"}, +{"id":"155273"}, +{"id":"206916"}, +{"id":"162540"}, +{"id":"192830"}, +{"id":"49745"}, +{"id":"209301"}, +{"id":"175797"}, +{"id":"156490"}, +{"id":"152491"}, +{"id":"107008"}, +{"id":"7929"}, +{"id":"151392"}, +{"id":"208170"}, +{"id":"93817"}, +{"id":"46480"}, +{"id":"146424"}, +{"id":"10104"}, +{"id":"140010"}, +{"id":"73574"}, +{"id":"120262"}, +{"id":"168000"}, +{"id":"66011"}, +{"id":"9673"}, +{"id":"16885"}, +{"id":"140624"}, +{"id":"52956"}, +{"id":"157512"}, +{"id":"197033"}, +{"id":"184475"}, +{"id":"76511"}, +{"id":"93279"}, +{"id":"34513"}, +{"id":"122374"}, +{"id":"152867"}, +{"id":"117257"}, +{"id":"67231"}, +{"id":"156667"}, +{"id":"192191"}, +{"id":"42222"}, +{"id":"131747"}, +{"id":"210685"}, +{"id":"198803"}, +{"id":"220160"}, +{"id":"104512"}, +{"id":"77518"}, +{"id":"153616"}, +{"id":"201579"}, +{"id":"184816"}, +{"id":"107199"}, +{"id":"168573"}, +{"id":"24797"}, +{"id":"82765"}, +{"id":"159850"}, +{"id":"132446"}, +{"id":"82925"}, +{"id":"214422"}, +{"id":"91466"}, +{"id":"162792"}, +{"id":"33654"}, +{"id":"214600"}, +{"id":"186306"}, +{"id":"99278"}, +{"id":"101048"}, +{"id":"185633"}, +{"id":"33727"}, +{"id":"161852"}, +{"id":"137366"}, +{"id":"199404"}, +{"id":"195407"}, +{"id":"86803"}, +{"id":"106226"}, +{"id":"180064"}, +{"id":"68992"}, +{"id":"206617"}, +{"id":"147663"}, +{"id":"103152"}, +{"id":"67803"}, +{"id":"82233"}, +{"id":"182782"}, +{"id":"131797"}, +{"id":"156840"}, +{"id":"123481"}, +{"id":"27745"}, +{"id":"174677"}, +{"id":"38961"}, +{"id":"130716"}, +{"id":"11163"}, +{"id":"94083"}, +{"id":"187844"}, +{"id":"211177"}, +{"id":"201891"}, +{"id":"109313"}, +{"id":"923"}, +{"id":"76927"}, +{"id":"116043"}, +{"id":"152132"}, +{"id":"74011"}, +{"id":"200635"}, +{"id":"58769"}, +{"id":"134302"}, +{"id":"29652"}, +{"id":"136217"}, +{"id":"143647"}, +{"id":"161418"}, +{"id":"110097"}, +{"id":"99975"}, +{"id":"197589"}, +{"id":"65353"}, +{"id":"83684"}, +{"id":"212109"}, +{"id":"98556"}, +{"id":"106969"}, +{"id":"107633"}, +{"id":"76224"}, +{"id":"108060"}, +{"id":"197246"}, +{"id":"203241"}, +{"id":"172298"}, +{"id":"86168"}, +{"id":"132564"}, +{"id":"114542"}, +{"id":"13333"}, +{"id":"169404"}, +{"id":"212045"}, +{"id":"189304"}, +{"id":"123545"}, +{"id":"70929"}, +{"id":"95066"}, +{"id":"27271"}, +{"id":"150728"}, +{"id":"59504"}, +{"id":"68621"}, +{"id":"39538"}, +{"id":"156686"}, +{"id":"32408"}, +{"id":"202393"}, +{"id":"29388"}, +{"id":"21827"}, +{"id":"175351"}, +{"id":"95976"}, +{"id":"774"}, +{"id":"117176"}, +{"id":"202435"}, +{"id":"199367"}, +{"id":"46643"}, +{"id":"155941"}, +{"id":"69363"}, +{"id":"203030"}, +{"id":"18949"}, +{"id":"92282"}, +{"id":"139403"}, +{"id":"173862"}, +{"id":"220017"}, +{"id":"123643"}, +{"id":"124432"}, +{"id":"188822"}, +{"id":"71734"}, +{"id":"150115"}, +{"id":"176473"}, +{"id":"183192"}, +{"id":"68133"}, +{"id":"33120"}, +{"id":"194373"}, +{"id":"48054"}, +{"id":"198391"}, +{"id":"104598"}, +{"id":"109982"}, +{"id":"18464"}, +{"id":"161801"}, +{"id":"52390"}, +{"id":"29212"}, +{"id":"17515"}, +{"id":"24607"}, +{"id":"12257"}, +{"id":"133357"}, +{"id":"29527"}, +{"id":"189133"}, +{"id":"217638"}, +{"id":"144069"}, +{"id":"22399"}, +{"id":"177558"}, +{"id":"140536"}, +{"id":"56112"}, +{"id":"126364"}, +{"id":"219988"}, +{"id":"8049"}, +{"id":"51699"}, +{"id":"21129"}, +{"id":"210034"}, +{"id":"192641"}, +{"id":"72200"}, +{"id":"28390"}, +{"id":"92728"}, +{"id":"208082"}, +{"id":"49928"}, +{"id":"190092"}, +{"id":"1904"}, +{"id":"58598"}, +{"id":"187856"}, +{"id":"152054"}, +{"id":"196785"}, +{"id":"212889"}, +{"id":"140630"}, +{"id":"31960"}, +{"id":"91747"}, +{"id":"35972"}, +{"id":"86745"}, +{"id":"175768"}, +{"id":"121723"}, +{"id":"159155"}, +{"id":"84624"}, +{"id":"41950"}, +{"id":"90193"}, +{"id":"211422"}, +{"id":"199053"}, +{"id":"168017"}, +{"id":"93703"}, +{"id":"194434"}, +{"id":"163283"}, +{"id":"201079"}, +{"id":"35236"}, +{"id":"44038"}, +{"id":"58743"}, +{"id":"156434"}, +{"id":"162424"}, +{"id":"118686"}, +{"id":"83369"}, +{"id":"95331"}, +{"id":"122495"}, +{"id":"188383"}, +{"id":"142988"}, +{"id":"6157"}, +{"id":"123466"}, +{"id":"22777"}, +{"id":"5823"}, +{"id":"149674"}, +{"id":"8373"}, +{"id":"79106"}, +{"id":"132352"}, +{"id":"160564"}, +{"id":"74040"}, +{"id":"164311"}, +{"id":"176471"}, +{"id":"79032"}, +{"id":"63217"}, +{"id":"178954"}, +{"id":"159592"}, +{"id":"53876"}, +{"id":"49937"}, +{"id":"3324"}, +{"id":"45793"}, +{"id":"12664"}, +{"id":"100776"}, +{"id":"219384"}, +{"id":"191889"}, +{"id":"59747"}, +{"id":"13694"}, +{"id":"94152"}, +{"id":"150377"}, +{"id":"34591"}, +{"id":"59404"}, +{"id":"195735"}, +{"id":"196073"}, +{"id":"105886"}, +{"id":"214181"}, +{"id":"162029"}, +{"id":"98565"}, +{"id":"26773"}, +{"id":"51334"}, +{"id":"46137"}, +{"id":"46056"}, +{"id":"6495"}, +{"id":"9573"}, +{"id":"16520"}, +{"id":"96866"}, +{"id":"20091"}, +{"id":"40358"}, +{"id":"73889"}, +{"id":"66567"}, +{"id":"24507"}, +{"id":"171902"}, +{"id":"159973"}, +{"id":"161810"}, +{"id":"87690"}, +{"id":"77985"}, +{"id":"90968"}, +{"id":"137694"}, +{"id":"201912"}, +{"id":"36680"}, +{"id":"101897"}, +{"id":"187549"}, +{"id":"207860"}, +{"id":"196587"}, +{"id":"85933"}, +{"id":"163887"}, +{"id":"184586"}, +{"id":"53732"}, +{"id":"146237"}, +{"id":"186501"}, +{"id":"49054"}, +{"id":"142595"}, +{"id":"173459"}, +{"id":"148082"}, +{"id":"167752"}, +{"id":"211408"}, +{"id":"70697"}, +{"id":"71106"}, +{"id":"213009"}, +{"id":"98630"}, +{"id":"118605"}, +{"id":"41708"}, +{"id":"47450"}, +{"id":"134962"}, +{"id":"190801"}, +{"id":"149671"}, +{"id":"55673"}, +{"id":"123788"}, +{"id":"10938"}, +{"id":"53702"}, +{"id":"110324"}, +{"id":"64712"}, +{"id":"153064"}, +{"id":"212673"}, +{"id":"104024"}, +{"id":"101659"}, +{"id":"73088"}, +{"id":"61522"}, +{"id":"7488"}, +{"id":"158766"}, +{"id":"158428"}, +{"id":"194248"}, +{"id":"123192"}, +{"id":"215787"}, +{"id":"157041"}, +{"id":"10611"}, +{"id":"140267"}, +{"id":"207957"}, +{"id":"142824"}, +{"id":"25071"}, +{"id":"164989"}, +{"id":"81000"}, +{"id":"27717"}, +{"id":"137628"}, +{"id":"48190"}, +{"id":"197834"}, +{"id":"187337"}, +{"id":"112359"}, +{"id":"216002"}, +{"id":"77947"}, +{"id":"145539"}, +{"id":"194752"}, +{"id":"73159"}, +{"id":"124926"}, +{"id":"178546"}, +{"id":"54303"}, +{"id":"132368"}, +{"id":"21188"}, +{"id":"34091"}, +{"id":"100566"}, +{"id":"22097"}, +{"id":"190935"}, +{"id":"152935"}, +{"id":"167836"}, +{"id":"89598"}, +{"id":"52584"}, +{"id":"25427"}, +{"id":"172779"}, +{"id":"23547"}, +{"id":"143899"}, +{"id":"9234"}, +{"id":"117122"}, +{"id":"169412"}, +{"id":"107089"}, +{"id":"44874"}, +{"id":"216377"}, +{"id":"134414"}, +{"id":"203830"}, +{"id":"25856"}, +{"id":"81663"}, +{"id":"114639"}, +{"id":"127439"}, +{"id":"213892"}, +{"id":"205029"}, +{"id":"43029"}, +{"id":"198373"}, +{"id":"199685"}, +{"id":"36335"}, +{"id":"56992"}, +{"id":"216792"}, +{"id":"159810"}, +{"id":"220025"}, +{"id":"19191"}, +{"id":"85751"}, +{"id":"120993"}, +{"id":"80351"}, +{"id":"118866"}, +{"id":"30523"}, +{"id":"41258"}, +{"id":"95237"}, +{"id":"18758"}, +{"id":"52824"}, +{"id":"84334"}, +{"id":"105018"}, +{"id":"205675"}, +{"id":"165277"}, +{"id":"7952"}, +{"id":"87400"}, +{"id":"57592"}, +{"id":"170074"}, +{"id":"144256"}, +{"id":"74010"}, +{"id":"18324"}, +{"id":"17796"}, +{"id":"188620"}, +{"id":"74646"}, +{"id":"90029"}, +{"id":"59450"}, +{"id":"4647"}, +{"id":"64468"}, +{"id":"11643"}, +{"id":"193245"}, +{"id":"195070"}, +{"id":"50350"}, +{"id":"18027"}, +{"id":"68074"}, +{"id":"31208"}, +{"id":"100367"}, +{"id":"167718"}, +{"id":"141658"}, +{"id":"2088"}, +{"id":"51384"}, +{"id":"146719"}, +{"id":"163007"}, +{"id":"91590"}, +{"id":"55337"}, +{"id":"161196"}, +{"id":"26500"}, +{"id":"128975"}, +{"id":"69464"}, +{"id":"33668"}, +{"id":"91845"}, +{"id":"13687"}, +{"id":"155944"}, +{"id":"104473"}, +{"id":"112625"}, +{"id":"174248"}, +{"id":"49500"}, +{"id":"147559"}, +{"id":"6194"}, +{"id":"196799"}, +{"id":"62502"}, +{"id":"54647"}, +{"id":"122902"}, +{"id":"127147"}, +{"id":"175997"}, +{"id":"146370"}, +{"id":"76212"}, +{"id":"16540"}, +{"id":"73999"}, +{"id":"138560"}, +{"id":"81588"}, +{"id":"44900"}, +{"id":"48113"}, +{"id":"112166"}, +{"id":"92121"}, +{"id":"50960"}, +{"id":"62131"}, +{"id":"139182"}, +{"id":"89879"}, +{"id":"89340"}, +{"id":"100934"}, +{"id":"213432"}, +{"id":"135627"}, +{"id":"52474"}, +{"id":"141016"}, +{"id":"212675"}, +{"id":"116485"}, +{"id":"141002"}, +{"id":"177042"}, +{"id":"76133"}, +{"id":"115887"}, +{"id":"166998"}, +{"id":"40762"}, +{"id":"148351"}, +{"id":"177130"}, +{"id":"213082"}, +{"id":"45256"}, +{"id":"29271"}, +{"id":"193278"}, +{"id":"125492"}, +{"id":"137765"}, +{"id":"169601"}, +{"id":"61783"}, +{"id":"110216"}, +{"id":"103256"}, +{"id":"52227"}, +{"id":"98382"}, +{"id":"85813"}, +{"id":"194606"}, +{"id":"208187"}, +{"id":"24574"}, +{"id":"113925"}, +{"id":"192324"}, +{"id":"122688"}, +{"id":"208239"}, +{"id":"149160"}, +{"id":"134495"}, +{"id":"54437"}, +{"id":"122848"}, +{"id":"103070"}, +{"id":"141911"}, +{"id":"175820"}, +{"id":"184294"}, +{"id":"156397"}, +{"id":"192987"}, +{"id":"143552"}, +{"id":"129895"}, +{"id":"196439"}, +{"id":"104876"}, +{"id":"74510"}, +{"id":"169251"}, +{"id":"76715"}, +{"id":"20547"}, +{"id":"61481"}, +{"id":"161517"}, +{"id":"131229"}, +{"id":"6961"}, +{"id":"132513"}, +{"id":"158770"}, +{"id":"180403"}, +{"id":"190168"}, +{"id":"212773"}, +{"id":"170368"}, +{"id":"74071"}, +{"id":"195436"}, +{"id":"151966"}, +{"id":"142764"}, +{"id":"84544"}, +{"id":"155794"}, +{"id":"119328"}, +{"id":"44557"}, +{"id":"1999"}, +{"id":"15188"}, +{"id":"170956"}, +{"id":"175773"}, +{"id":"137816"}, +{"id":"16731"}, +{"id":"49523"}, +{"id":"31349"}, +{"id":"98117"}, +{"id":"174312"}, +{"id":"145680"}, +{"id":"52471"}, +{"id":"47408"}, +{"id":"182179"}, +{"id":"202577"}, +{"id":"73763"}, +{"id":"14971"}, +{"id":"163496"}, +{"id":"131920"}, +{"id":"210119"}, +{"id":"13615"}, +{"id":"129896"}, +{"id":"32935"}, +{"id":"40385"}, +{"id":"41174"}, +{"id":"150053"}, +{"id":"59249"}, +{"id":"48624"}, +{"id":"68918"}, +{"id":"145156"}, +{"id":"160000"}, +{"id":"130405"}, +{"id":"87573"}, +{"id":"46333"}, +{"id":"191427"}, +{"id":"198716"}, +{"id":"32606"}, +{"id":"145603"}, +{"id":"180967"}, +{"id":"43969"}, +{"id":"201153"}, +{"id":"199707"}, +{"id":"52947"}, +{"id":"144892"}, +{"id":"38052"}, +{"id":"216280"}, +{"id":"32158"}, +{"id":"59285"}, +{"id":"152601"}, +{"id":"46499"}, +{"id":"98807"}, +{"id":"6615"}, +{"id":"213654"}, +{"id":"81499"}, +{"id":"21841"}, +{"id":"2740"}, +{"id":"79727"}, +{"id":"220752"}, +{"id":"44791"}, +{"id":"197899"}, +{"id":"207711"}, +{"id":"136275"}, +{"id":"31699"}, +{"id":"116628"}, +{"id":"10632"}, +{"id":"128673"}, +{"id":"52021"}, +{"id":"170146"}, +{"id":"166724"}, +{"id":"166146"}, +{"id":"193919"}, +{"id":"161272"}, +{"id":"22802"}, +{"id":"7837"}, +{"id":"115235"}, +{"id":"134930"}, +{"id":"4480"}, +{"id":"149047"}, +{"id":"99701"}, +{"id":"183200"}, +{"id":"203754"}, +{"id":"207203"}, +{"id":"129304"}, +{"id":"133900"}, +{"id":"202035"}, +{"id":"18703"}, +{"id":"174998"}, +{"id":"20804"}, +{"id":"159156"}, +{"id":"75975"}, +{"id":"67725"}, +{"id":"74126"}, +{"id":"15261"}, +{"id":"3090"}, +{"id":"194690"}, +{"id":"181157"}, +{"id":"75970"}, +{"id":"110187"}, +{"id":"28443"}, +{"id":"124334"}, +{"id":"71260"}, +{"id":"140780"}, +{"id":"112214"}, +{"id":"28722"}, +{"id":"10849"}, +{"id":"16272"}, +{"id":"62207"}, +{"id":"60573"}, +{"id":"213758"}, +{"id":"89994"}, +{"id":"93630"}, +{"id":"113235"}, +{"id":"218724"}, +{"id":"165318"}, +{"id":"153347"}, +{"id":"115811"}, +{"id":"158328"}, +{"id":"201464"}, +{"id":"125578"}, +{"id":"100051"}, +{"id":"108583"}, +{"id":"107356"}, +{"id":"147673"}, +{"id":"143750"}, +{"id":"63994"}, +{"id":"3798"}, +{"id":"14787"}, +{"id":"129148"}, +{"id":"89022"}, +{"id":"79963"}, +{"id":"90919"}, +{"id":"177043"}, +{"id":"74903"}, +{"id":"33269"}, +{"id":"178942"}, +{"id":"73796"}, +{"id":"166761"}, +{"id":"136145"}, +{"id":"84591"}, +{"id":"186199"}, +{"id":"135613"}, +{"id":"67256"}, +{"id":"57616"}, +{"id":"116170"}, +{"id":"133368"}, +{"id":"65934"}, +{"id":"19487"}, +{"id":"93468"}, +{"id":"159150"}, +{"id":"53594"}, +{"id":"51835"}, +{"id":"94557"}, +{"id":"215795"}, +{"id":"152067"}, +{"id":"60211"}, +{"id":"47730"}, +{"id":"71856"}, +{"id":"108164"}, +{"id":"157109"}, +{"id":"174528"}, +{"id":"38919"}, +{"id":"48496"}, +{"id":"149181"}, +{"id":"32222"}, +{"id":"187130"}, +{"id":"168516"}, +{"id":"215157"}, +{"id":"213214"}, +{"id":"106355"}, +{"id":"88646"}, +{"id":"68998"}, +{"id":"216841"}, +{"id":"88557"}, +{"id":"114915"}, +{"id":"94991"}, +{"id":"31490"}, +{"id":"128244"}, +{"id":"79729"}, +{"id":"57008"}, +{"id":"174606"}, +{"id":"155667"}, +{"id":"62909"}, +{"id":"205039"}, +{"id":"64896"}, +{"id":"2360"}, +{"id":"154752"}, +{"id":"78906"}, +{"id":"64843"}, +{"id":"131160"}, +{"id":"213596"}, +{"id":"43375"}, +{"id":"181493"}, +{"id":"44892"}, +{"id":"78422"}, +{"id":"60054"}, +{"id":"7827"}, +{"id":"209769"}, +{"id":"44328"}, +{"id":"35928"}, +{"id":"143270"}, +{"id":"100599"}, +{"id":"12091"}, +{"id":"136027"}, +{"id":"170490"}, +{"id":"171282"}, +{"id":"31262"}, +{"id":"125990"}, +{"id":"184590"}, +{"id":"163045"}, +{"id":"146217"}, +{"id":"119696"}, +{"id":"64004"}, +{"id":"19909"}, +{"id":"212690"}, +{"id":"158826"}, +{"id":"36179"}, +{"id":"147093"}, +{"id":"145258"}, +{"id":"63049"}, +{"id":"65180"}, +{"id":"79562"}, +{"id":"179291"}, +{"id":"50357"}, +{"id":"83276"}, +{"id":"197388"}, +{"id":"164323"}, +{"id":"105955"}, +{"id":"78330"}, +{"id":"130211"}, +{"id":"184970"}, +{"id":"151969"}, +{"id":"13391"}, +{"id":"51342"}, +{"id":"96074"}, +{"id":"165247"}, +{"id":"157961"}, +{"id":"193478"}, +{"id":"166218"}, +{"id":"112960"}, +{"id":"170117"}, +{"id":"111951"}, +{"id":"101631"}, +{"id":"139117"}, +{"id":"126540"}, +{"id":"180821"}, +{"id":"312"}, +{"id":"176078"}, +{"id":"174696"}, +{"id":"94015"}, +{"id":"139362"}, +{"id":"132474"}, +{"id":"89765"}, +{"id":"215089"}, +{"id":"131391"}, +{"id":"76020"}, +{"id":"12609"}, +{"id":"144083"}, +{"id":"125547"}, +{"id":"99006"}, +{"id":"51154"}, +{"id":"35934"}, +{"id":"114882"}, +{"id":"51156"}, +{"id":"116437"}, +{"id":"133027"}, +{"id":"750"}, +{"id":"146854"}, +{"id":"72099"}, +{"id":"126453"}, +{"id":"72198"}, +{"id":"37689"}, +{"id":"16592"}, +{"id":"177570"}, +{"id":"151840"}, +{"id":"196083"}, +{"id":"54774"}, +{"id":"97941"}, +{"id":"74007"}, +{"id":"56181"}, +{"id":"90957"}, +{"id":"134239"}, +{"id":"195426"}, +{"id":"167997"}, +{"id":"180307"}, +{"id":"39519"}, +{"id":"119056"}, +{"id":"206352"}, +{"id":"123465"}, +{"id":"207267"}, +{"id":"112679"}, +{"id":"138257"}, +{"id":"145657"}, +{"id":"138851"}, +{"id":"57591"}, +{"id":"123001"}, +{"id":"188645"}, +{"id":"29168"}, +{"id":"144498"}, +{"id":"124058"}, +{"id":"141284"}, +{"id":"26212"}, +{"id":"194202"}, +{"id":"202340"}, +{"id":"162684"}, +{"id":"77153"}, +{"id":"57493"}, +{"id":"169544"}, +{"id":"107842"}, +{"id":"12131"}, +{"id":"107516"}, +{"id":"203987"}, +{"id":"53646"}, +{"id":"147664"}, +{"id":"67713"}, +{"id":"192804"}, +{"id":"34459"}, +{"id":"21842"}, +{"id":"140692"}, +{"id":"39121"}, +{"id":"158764"}, +{"id":"197326"}, +{"id":"68926"}, +{"id":"60458"}, +{"id":"49362"}, +{"id":"96193"}, +{"id":"144593"}, +{"id":"116887"}, +{"id":"92154"}, +{"id":"6423"}, +{"id":"28784"}, +{"id":"214812"}, +{"id":"174916"}, +{"id":"54235"}, +{"id":"71150"}, +{"id":"59489"}, +{"id":"5768"}, +{"id":"174848"}, +{"id":"187837"}, +{"id":"215649"}, +{"id":"158624"}, +{"id":"174631"}, +{"id":"208089"}, +{"id":"51293"}, +{"id":"147826"}, +{"id":"190796"}, +{"id":"49673"}, +{"id":"160670"}, +{"id":"69640"}, +{"id":"199212"}, +{"id":"65034"}, +{"id":"42171"}, +{"id":"28441"}, +{"id":"128659"}, +{"id":"69017"}, +{"id":"12218"}, +{"id":"13233"}, +{"id":"200012"}, +{"id":"53224"}, +{"id":"110960"}, +{"id":"136384"}, +{"id":"185382"}, +{"id":"70426"}, +{"id":"118933"}, +{"id":"55170"}, +{"id":"41642"}, +{"id":"159551"}, +{"id":"107080"}, +{"id":"161532"}, +{"id":"19103"}, +{"id":"49788"}, +{"id":"135791"}, +{"id":"45043"}, +{"id":"133497"}, +{"id":"117105"}, +{"id":"199969"}, +{"id":"154064"}, +{"id":"96231"}, +{"id":"50442"}, +{"id":"60928"}, +{"id":"45953"}, +{"id":"40977"}, +{"id":"181753"}, +{"id":"172593"}, +{"id":"96514"}, +{"id":"151621"}, +{"id":"119747"}, +{"id":"196909"}, +{"id":"219313"}, +{"id":"143749"}, +{"id":"27603"}, +{"id":"83374"}, +{"id":"145852"}, +{"id":"55593"}, +{"id":"30567"}, +{"id":"114713"}, +{"id":"163914"}, +{"id":"188069"}, +{"id":"200987"}, +{"id":"77076"}, +{"id":"214643"}, +{"id":"47254"}, +{"id":"45271"}, +{"id":"195687"}, +{"id":"49369"}, +{"id":"188243"}, +{"id":"169969"}, +{"id":"179204"}, +{"id":"108699"}, +{"id":"40160"}, +{"id":"45700"}, +{"id":"5839"}, +{"id":"66158"}, +{"id":"66133"}, +{"id":"168768"}, +{"id":"8573"}, +{"id":"151995"}, +{"id":"215383"}, +{"id":"546"}, +{"id":"143264"}, +{"id":"51705"}, +{"id":"91830"}, +{"id":"121900"}, +{"id":"58103"}, +{"id":"201948"}, +{"id":"195031"}, +{"id":"184354"}, +{"id":"111857"}, +{"id":"182984"}, +{"id":"112299"}, +{"id":"171421"}, +{"id":"53600"}, +{"id":"95767"}, +{"id":"4402"}, +{"id":"134715"}, +{"id":"129400"}, +{"id":"139851"}, +{"id":"67105"}, +{"id":"202305"}, +{"id":"76791"}, +{"id":"201413"}, +{"id":"78737"}, +{"id":"118157"}, +{"id":"146085"}, +{"id":"62114"}, +{"id":"30425"}, +{"id":"62237"}, +{"id":"197254"}, +{"id":"77798"}, +{"id":"48079"}, +{"id":"110856"}, +{"id":"73072"}, +{"id":"205604"}, +{"id":"133075"}, +{"id":"51452"}, +{"id":"67192"}, +{"id":"169823"}, +{"id":"146733"}, +{"id":"169320"}, +{"id":"166457"}, +{"id":"215964"}, +{"id":"75874"}, +{"id":"183853"}, +{"id":"202014"}, +{"id":"156284"}, +{"id":"181257"}, +{"id":"28278"}, +{"id":"137759"}, +{"id":"148465"}, +{"id":"196574"}, +{"id":"118153"}, +{"id":"89173"}, +{"id":"82981"}, +{"id":"184874"}, +{"id":"76830"}, +{"id":"203530"}, +{"id":"70319"}, +{"id":"135251"}, +{"id":"81988"}, +{"id":"130495"}, +{"id":"97286"}, +{"id":"30185"}, +{"id":"48934"}, +{"id":"195484"}, +{"id":"41836"}, +{"id":"154333"}, +{"id":"138900"}, +{"id":"81344"}, +{"id":"219862"}, +{"id":"178668"}, +{"id":"56163"}, +{"id":"108594"}, +{"id":"90515"}, +{"id":"21973"}, +{"id":"30533"}, +{"id":"94845"}, +{"id":"196727"}, +{"id":"129905"}, +{"id":"154878"}, +{"id":"204238"}, +{"id":"172198"}, +{"id":"126810"}, +{"id":"26132"}, +{"id":"12810"}, +{"id":"57893"}, +{"id":"4190"}, +{"id":"123954"}, +{"id":"125230"}, +{"id":"72981"}, +{"id":"118186"}, +{"id":"67009"}, +{"id":"101170"}, +{"id":"8792"}, +{"id":"174798"}, +{"id":"217283"}, +{"id":"198044"}, +{"id":"180059"}, +{"id":"212958"}, +{"id":"123976"}, +{"id":"87479"}, +{"id":"93993"}, +{"id":"31825"}, +{"id":"35297"}, +{"id":"40177"}, +{"id":"153918"}, +{"id":"73735"}, +{"id":"116065"}, +{"id":"163387"}, +{"id":"1455"}, +{"id":"122209"}, +{"id":"74687"}, +{"id":"52473"}, +{"id":"73203"}, +{"id":"196500"}, +{"id":"18287"}, +{"id":"136636"}, +{"id":"30480"}, +{"id":"180469"}, +{"id":"75611"}, +{"id":"197231"}, +{"id":"152777"}, +{"id":"98323"}, +{"id":"113218"}, +{"id":"155536"}, +{"id":"167776"}, +{"id":"89042"}, +{"id":"4582"}, +{"id":"93593"}, +{"id":"141248"}, +{"id":"581"}, +{"id":"31336"}, +{"id":"32936"}, +{"id":"89769"}, +{"id":"119834"}, +{"id":"16151"}, +{"id":"61200"}, +{"id":"218933"}, +{"id":"3398"}, +{"id":"195327"}, +{"id":"142344"}, +{"id":"17273"}, +{"id":"163008"}, +{"id":"639"}, +{"id":"21543"}, +{"id":"104377"}, +{"id":"165020"}, +{"id":"71323"}, +{"id":"54196"}, +{"id":"32305"}, +{"id":"155243"}, +{"id":"34307"}, +{"id":"32228"}, +{"id":"78182"}, +{"id":"192295"}, +{"id":"176768"}, +{"id":"210644"}, +{"id":"203812"}, +{"id":"71776"}, +{"id":"216061"}, +{"id":"77012"}, +{"id":"150804"}, +{"id":"87520"}, +{"id":"100288"}, +{"id":"35619"}, +{"id":"52607"}, +{"id":"55063"}, +{"id":"85820"}, +{"id":"109809"}, +{"id":"159561"}, +{"id":"24927"}, +{"id":"15260"}, +{"id":"25967"}, +{"id":"216623"}, +{"id":"87439"}, +{"id":"118338"}, +{"id":"182124"}, +{"id":"23161"}, +{"id":"59608"}, +{"id":"21735"}, +{"id":"196833"}, +{"id":"126298"}, +{"id":"50209"}, +{"id":"21602"}, +{"id":"141894"}, +{"id":"103942"}, +{"id":"14202"}, +{"id":"8093"}, +{"id":"63868"}, +{"id":"178042"}, +{"id":"73893"}, +{"id":"195438"}, +{"id":"115812"}, +{"id":"93856"}, +{"id":"135218"}, +{"id":"7915"}, +{"id":"150425"}, +{"id":"154275"}, +{"id":"160579"}, +{"id":"31169"}, +{"id":"143291"}, +{"id":"193844"}, +{"id":"201163"}, +{"id":"197956"}, +{"id":"129574"}, +{"id":"15348"}, +{"id":"212307"}, +{"id":"54704"}, +{"id":"99893"}, +{"id":"152962"}, +{"id":"152568"}, +{"id":"108889"}, +{"id":"45433"}, +{"id":"88478"}, +{"id":"126845"}, +{"id":"151245"}, +{"id":"217337"}, +{"id":"126240"}, +{"id":"1997"}, +{"id":"190541"}, +{"id":"22540"}, +{"id":"103376"}, +{"id":"95450"}, +{"id":"43546"}, +{"id":"43019"}, +{"id":"25350"}, +{"id":"17905"}, +{"id":"188489"}, +{"id":"94936"}, +{"id":"149690"}, +{"id":"166198"}, +{"id":"212529"}, +{"id":"115417"}, +{"id":"130265"}, +{"id":"1717"}, +{"id":"112115"}, +{"id":"105186"}, +{"id":"219485"}, +{"id":"208596"}, +{"id":"57276"}, +{"id":"212726"}, +{"id":"200693"}, +{"id":"103190"}, +{"id":"177120"}, +{"id":"189886"}, +{"id":"41249"}, +{"id":"87727"}, +{"id":"195346"}, +{"id":"148972"}, +{"id":"51029"}, +{"id":"148823"}, +{"id":"25671"}, +{"id":"169420"}, +{"id":"196977"}, +{"id":"152646"}, +{"id":"8567"}, +{"id":"16382"}, +{"id":"17095"}, +{"id":"34715"}, +{"id":"70526"}, +{"id":"220394"}, +{"id":"58571"}, +{"id":"93892"}, +{"id":"118382"}, +{"id":"59333"}, +{"id":"193893"}, +{"id":"16760"}, +{"id":"54475"}, +{"id":"147423"}, +{"id":"210274"}, +{"id":"35942"}, +{"id":"79224"}, +{"id":"62077"}, +{"id":"34160"}, +{"id":"168917"}, +{"id":"122760"}, +{"id":"7816"}, +{"id":"86479"}, +{"id":"17371"}, +{"id":"129258"}, +{"id":"336"}, +{"id":"115801"}, +{"id":"112062"}, +{"id":"19768"}, +{"id":"142687"}, +{"id":"180239"}, +{"id":"147972"}, +{"id":"88708"}, +{"id":"103748"}, +{"id":"190263"}, +{"id":"114395"}, +{"id":"86473"}, +{"id":"44962"}, +{"id":"95060"}, +{"id":"72842"}, +{"id":"112569"}, +{"id":"183631"}, +{"id":"172016"}, +{"id":"20014"}, +{"id":"104185"}, +{"id":"46758"}, +{"id":"218796"}, +{"id":"92459"}, +{"id":"1928"}, +{"id":"61416"}, +{"id":"214362"}, +{"id":"59628"}, +{"id":"190231"}, +{"id":"185605"}, +{"id":"96799"}, +{"id":"207900"}, +{"id":"20169"}, +{"id":"33645"}, +{"id":"168766"}, +{"id":"138164"}, +{"id":"190171"}, +{"id":"96954"}, +{"id":"78253"}, +{"id":"129423"}, +{"id":"160706"}, +{"id":"219667"}, +{"id":"197307"}, +{"id":"203375"}, +{"id":"11611"}, +{"id":"149922"}, +{"id":"128010"}, +{"id":"123495"}, +{"id":"39059"}, +{"id":"27406"}, +{"id":"156346"}, +{"id":"16223"}, +{"id":"133603"}, +{"id":"69941"}, +{"id":"117520"}, +{"id":"149148"}, +{"id":"196803"}, +{"id":"118272"}, +{"id":"67765"}, +{"id":"186581"}, +{"id":"202093"}, +{"id":"115085"}, +{"id":"66069"}, +{"id":"121061"}, +{"id":"179236"}, +{"id":"129872"}, +{"id":"67383"}, +{"id":"184513"}, +{"id":"151686"}, +{"id":"1301"}, +{"id":"147051"}, +{"id":"21250"}, +{"id":"125953"}, +{"id":"103161"}, +{"id":"29669"}, +{"id":"90100"}, +{"id":"184614"}, +{"id":"110550"}, +{"id":"126592"}, +{"id":"157689"}, +{"id":"43525"}, +{"id":"47147"}, +{"id":"186797"}, +{"id":"66350"}, +{"id":"89170"}, +{"id":"88348"}, +{"id":"22788"}, +{"id":"57185"}, +{"id":"90074"}, +{"id":"61432"}, +{"id":"59567"}, +{"id":"40291"}, +{"id":"3211"}, +{"id":"97142"}, +{"id":"217731"}, +{"id":"213531"}, +{"id":"47481"}, +{"id":"137420"}, +{"id":"175906"}, +{"id":"76085"}, +{"id":"193712"}, +{"id":"116092"}, +{"id":"59991"}, +{"id":"112693"}, +{"id":"2905"}, +{"id":"181608"}, +{"id":"173236"}, +{"id":"53263"}, +{"id":"119127"}, +{"id":"22930"}, +{"id":"167966"}, +{"id":"208219"}, +{"id":"37310"}, +{"id":"55479"}, +{"id":"208838"}, +{"id":"126988"}, +{"id":"3101"}, +{"id":"207599"}, +{"id":"89426"}, +{"id":"64010"}, +{"id":"926"}, +{"id":"151920"}, +{"id":"105105"}, +{"id":"71099"}, +{"id":"22888"}, +{"id":"47741"}, +{"id":"38733"}, +{"id":"143526"}, +{"id":"27324"}, +{"id":"189185"}, +{"id":"33240"}, +{"id":"139469"}, +{"id":"198486"}, +{"id":"109368"}, +{"id":"137725"}, +{"id":"110213"}, +{"id":"61848"}, +{"id":"20166"}, +{"id":"83164"}, +{"id":"129550"}, +{"id":"11207"}, +{"id":"137768"}, +{"id":"3019"}, +{"id":"150727"}, +{"id":"180752"}, +{"id":"165888"}, +{"id":"181095"}, +{"id":"133617"}, +{"id":"45696"}, +{"id":"66586"}, +{"id":"145488"}, +{"id":"83328"}, +{"id":"110108"}, +{"id":"107577"}, +{"id":"161646"}, +{"id":"216174"}, +{"id":"9420"}, +{"id":"214141"}, +{"id":"101980"}, +{"id":"18639"}, +{"id":"97243"}, +{"id":"209285"}, +{"id":"140388"}, +{"id":"57291"}, +{"id":"202375"}, +{"id":"46606"}, +{"id":"52615"}, +{"id":"164204"}, +{"id":"200969"}, +{"id":"178717"}, +{"id":"148929"}, +{"id":"164787"}, +{"id":"46876"}, +{"id":"19037"}, +{"id":"153526"}, +{"id":"63997"}, +{"id":"21410"}, +{"id":"46755"}, +{"id":"164771"}, +{"id":"2484"}, +{"id":"103153"}, +{"id":"107193"}, +{"id":"49183"}, +{"id":"87637"}, +{"id":"57523"}, +{"id":"60755"}, +{"id":"171147"}, +{"id":"149127"}, +{"id":"51864"}, +{"id":"62838"}, +{"id":"57489"}, +{"id":"211167"}, +{"id":"219628"}, +{"id":"72568"}, +{"id":"202537"}, +{"id":"95074"}, +{"id":"3508"}, +{"id":"110458"}, +{"id":"140659"}, +{"id":"112203"}, +{"id":"165839"}, +{"id":"165822"}, +{"id":"84319"}, +{"id":"183916"}, +{"id":"17359"}, +{"id":"44752"}, +{"id":"79719"}, +{"id":"158546"}, +{"id":"93706"}, +{"id":"110356"}, +{"id":"63359"}, +{"id":"169176"}, +{"id":"108300"}, +{"id":"38132"}, +{"id":"2865"}, +{"id":"138328"}, +{"id":"100544"}, +{"id":"53449"}, +{"id":"120473"}, +{"id":"78998"}, +{"id":"209802"}, +{"id":"202515"}, +{"id":"12262"}, +{"id":"71943"}, +{"id":"106491"}, +{"id":"128317"}, +{"id":"168386"}, +{"id":"39210"}, +{"id":"129286"}, +{"id":"74212"}, +{"id":"38739"}, +{"id":"162722"}, +{"id":"128729"}, +{"id":"160624"}, +{"id":"106138"}, +{"id":"99482"}, +{"id":"99340"}, +{"id":"85945"}, +{"id":"186134"}, +{"id":"167225"}, +{"id":"62600"}, +{"id":"51832"}, +{"id":"17975"}, +{"id":"167619"}, +{"id":"174472"}, +{"id":"24156"}, +{"id":"3615"}, +{"id":"11853"}, +{"id":"194018"}, +{"id":"189556"}, +{"id":"10878"}, +{"id":"182281"}, +{"id":"106008"}, +{"id":"151403"}, +{"id":"151013"}, +{"id":"75765"}, +{"id":"158844"}, +{"id":"63339"}, +{"id":"92524"}, +{"id":"132905"}, +{"id":"174263"}, +{"id":"205046"}, +{"id":"63482"}, +{"id":"65535"}, +{"id":"165781"}, +{"id":"27236"}, +{"id":"169374"}, +{"id":"11140"}, +{"id":"52877"}, +{"id":"210636"}, +{"id":"179640"}, +{"id":"186852"}, +{"id":"100571"}, +{"id":"197637"}, +{"id":"202190"}, +{"id":"181347"}, +{"id":"17373"}, +{"id":"146883"}, +{"id":"125665"}, +{"id":"89546"}, +{"id":"154665"}, +{"id":"177116"}, +{"id":"76210"}, +{"id":"3207"}, +{"id":"57480"}, +{"id":"149979"}, +{"id":"182250"}, +{"id":"186040"}, +{"id":"120327"}, +{"id":"137905"}, +{"id":"5169"}, +{"id":"265"}, +{"id":"195018"}, +{"id":"7467"}, +{"id":"16564"}, +{"id":"208482"}, +{"id":"5391"}, +{"id":"157176"}, +{"id":"198398"}, +{"id":"66389"}, +{"id":"176175"}, +{"id":"7980"}, +{"id":"188331"}, +{"id":"80920"}, +{"id":"175886"}, +{"id":"65991"}, +{"id":"192042"}, +{"id":"210416"}, +{"id":"212160"}, +{"id":"121550"}, +{"id":"15163"}, +{"id":"185778"}, +{"id":"190402"}, +{"id":"142458"}, +{"id":"57717"}, +{"id":"216886"}, +{"id":"219583"}, +{"id":"134933"}, +{"id":"205840"}, +{"id":"51245"}, +{"id":"36115"}, +{"id":"16086"}, +{"id":"9960"}, +{"id":"11203"}, +{"id":"66442"}, +{"id":"13595"}, +{"id":"7071"}, +{"id":"99867"}, +{"id":"109473"}, +{"id":"172396"}, +{"id":"182097"}, +{"id":"68271"}, +{"id":"152116"}, +{"id":"156467"}, +{"id":"10438"}, +{"id":"174321"}, +{"id":"179212"}, +{"id":"163082"}, +{"id":"153403"}, +{"id":"50615"}, +{"id":"34333"}, +{"id":"16058"}, +{"id":"202706"}, +{"id":"3640"}, +{"id":"165563"}, +{"id":"62988"}, +{"id":"120194"}, +{"id":"21965"}, +{"id":"80835"}, +{"id":"191582"}, +{"id":"173672"}, +{"id":"31174"}, +{"id":"160222"}, +{"id":"71840"}, +{"id":"114241"}, +{"id":"183546"}, +{"id":"218855"}, +{"id":"170926"}, +{"id":"220326"}, +{"id":"101056"}, +{"id":"130324"}, +{"id":"90567"}, +{"id":"202534"}, +{"id":"194146"}, +{"id":"134579"}, +{"id":"63837"}, +{"id":"27047"}, +{"id":"142407"}, +{"id":"36006"}, +{"id":"195753"}, +{"id":"157800"}, +{"id":"75448"}, +{"id":"184680"}, +{"id":"119006"}, +{"id":"61697"}, +{"id":"182310"}, +{"id":"133010"}, +{"id":"81797"}, +{"id":"101012"}, +{"id":"174283"}, +{"id":"206272"}, +{"id":"107864"}, +{"id":"205564"}, +{"id":"136299"}, +{"id":"89875"}, +{"id":"161913"}, +{"id":"3894"}, +{"id":"22403"}, +{"id":"82716"}, +{"id":"165660"}, +{"id":"68405"}, +{"id":"72752"}, +{"id":"203284"}, +{"id":"188985"}, +{"id":"30612"}, +{"id":"68138"}, +{"id":"83298"}, +{"id":"139153"}, +{"id":"60339"}, +{"id":"117632"}, +{"id":"81917"}, +{"id":"137887"}, +{"id":"218975"}, +{"id":"121307"}, +{"id":"198675"}, +{"id":"205797"}, +{"id":"209685"}, +{"id":"146862"}, +{"id":"3451"}, +{"id":"61139"}, +{"id":"123561"}, +{"id":"174940"}, +{"id":"49829"}, +{"id":"165477"}, +{"id":"163124"}, +{"id":"149146"}, +{"id":"74657"}, +{"id":"165968"}, +{"id":"150407"}, +{"id":"2210"}, +{"id":"112898"}, +{"id":"73194"}, +{"id":"179848"}, +{"id":"114868"}, +{"id":"74050"}, +{"id":"170968"}, +{"id":"148877"}, +{"id":"131218"}, +{"id":"1190"}, +{"id":"19002"}, +{"id":"193150"}, +{"id":"21897"}, +{"id":"196541"}, +{"id":"78132"}, +{"id":"144754"}, +{"id":"182664"}, +{"id":"210194"}, +{"id":"183449"}, +{"id":"14014"}, +{"id":"46700"}, +{"id":"130447"}, +{"id":"34393"}, +{"id":"115806"}, +{"id":"148245"}, +{"id":"78700"}, +{"id":"180477"}, +{"id":"156709"}, +{"id":"76428"}, +{"id":"64140"}, +{"id":"206568"}, +{"id":"199906"}, +{"id":"123966"}, +{"id":"13979"}, +{"id":"134502"}, +{"id":"69200"}, +{"id":"175504"}, +{"id":"210873"}, +{"id":"147858"}, +{"id":"237"}, +{"id":"158154"}, +{"id":"153886"}, +{"id":"134724"}, +{"id":"150405"}, +{"id":"53663"}, +{"id":"58472"}, +{"id":"44761"}, +{"id":"16177"}, +{"id":"76879"}, +{"id":"103728"}, +{"id":"109000"}, +{"id":"147776"}, +{"id":"198431"}, +{"id":"95403"}, +{"id":"58869"}, +{"id":"101962"}, +{"id":"191994"}, +{"id":"119922"}, +{"id":"206132"}, +{"id":"45778"}, +{"id":"158234"}, +{"id":"112520"}, +{"id":"15638"}, +{"id":"142869"}, +{"id":"86077"}, +{"id":"114559"}, +{"id":"199370"}, +{"id":"104741"}, +{"id":"27551"}, +{"id":"118737"}, +{"id":"178009"}, +{"id":"110914"}, +{"id":"96470"}, +{"id":"209844"}, +{"id":"125275"}, +{"id":"194283"}, +{"id":"119296"}, +{"id":"35649"}, +{"id":"24841"}, +{"id":"153951"}, +{"id":"152498"}, +{"id":"12098"}, +{"id":"163801"}, +{"id":"124736"}, +{"id":"155413"}, +{"id":"118454"}, +{"id":"20964"}, +{"id":"108022"}, +{"id":"67374"}, +{"id":"148280"}, +{"id":"160123"}, +{"id":"49966"}, +{"id":"25841"}, +{"id":"75616"}, +{"id":"181780"}, +{"id":"88109"}, +{"id":"87781"}, +{"id":"18644"}, +{"id":"142890"}, +{"id":"19726"}, +{"id":"72177"}, +{"id":"148862"}, +{"id":"200177"}, +{"id":"205273"}, +{"id":"59292"}, +{"id":"10064"}, +{"id":"46368"}, +{"id":"159640"}, +{"id":"198294"}, +{"id":"215590"}, +{"id":"85227"}, +{"id":"69326"}, +{"id":"98343"}, +{"id":"106464"}, +{"id":"181525"}, +{"id":"133247"}, +{"id":"134636"}, +{"id":"180878"}, +{"id":"141836"}, +{"id":"48100"}, +{"id":"180207"}, +{"id":"83999"}, +{"id":"208806"}, +{"id":"159366"}, +{"id":"197791"}, +{"id":"201639"}, +{"id":"162814"}, +{"id":"217159"}, +{"id":"167016"}, +{"id":"65456"}, +{"id":"218388"}, +{"id":"96120"}, +{"id":"210691"}, +{"id":"10091"}, +{"id":"49328"}, +{"id":"140463"}, +{"id":"161600"}, +{"id":"25433"}, +{"id":"27701"}, +{"id":"15543"}, +{"id":"72493"}, +{"id":"159803"}, +{"id":"187860"}, +{"id":"166492"}, +{"id":"136702"}, +{"id":"131534"}, +{"id":"71946"}, +{"id":"137529"}, +{"id":"217799"}, +{"id":"178005"}, +{"id":"97927"}, +{"id":"55602"}, +{"id":"160377"}, +{"id":"88391"}, +{"id":"94373"}, +{"id":"129205"}, +{"id":"168883"}, +{"id":"101449"}, +{"id":"68085"}, +{"id":"200532"}, +{"id":"18952"}, +{"id":"139477"}, +{"id":"161634"}, +{"id":"145078"}, +{"id":"100699"}, +{"id":"12825"}, +{"id":"207675"}, +{"id":"110464"}, +{"id":"83442"}, +{"id":"157899"}, +{"id":"146892"}, +{"id":"121485"}, +{"id":"216083"}, +{"id":"17023"}, +{"id":"206623"}, +{"id":"148251"}, +{"id":"164"}, +{"id":"191830"}, +{"id":"144952"}, +{"id":"147453"}, +{"id":"142036"}, +{"id":"55185"}, +{"id":"170048"}, +{"id":"26100"}, +{"id":"26451"}, +{"id":"149870"}, +{"id":"136758"}, +{"id":"203390"}, +{"id":"97864"}, +{"id":"143014"}, +{"id":"143068"}, +{"id":"211673"}, +{"id":"198334"}, +{"id":"192715"}, +{"id":"21609"}, +{"id":"194889"}, +{"id":"167737"}, +{"id":"102463"}, +{"id":"135567"}, +{"id":"104698"}, +{"id":"124118"}, +{"id":"137841"}, +{"id":"44369"}, +{"id":"83959"}, +{"id":"11110"}, +{"id":"56774"}, +{"id":"127764"}, +{"id":"180891"}, +{"id":"157791"}, +{"id":"71197"}, +{"id":"154021"}, +{"id":"203271"}, +{"id":"198305"}, +{"id":"1020"}, +{"id":"101374"}, +{"id":"128934"}, +{"id":"104838"}, +{"id":"215296"}, +{"id":"56850"}, +{"id":"80206"}, +{"id":"108078"}, +{"id":"124469"}, +{"id":"66017"}, +{"id":"197484"}, +{"id":"83271"}, +{"id":"38821"}, +{"id":"182530"}, +{"id":"176751"}, +{"id":"112546"}, +{"id":"100467"}, +{"id":"114270"}, +{"id":"88091"}, +{"id":"84922"}, +{"id":"158905"}, +{"id":"162179"}, +{"id":"29640"}, +{"id":"59194"}, +{"id":"118383"}, +{"id":"158090"}, +{"id":"106599"}, +{"id":"94114"}, +{"id":"10282"}, +{"id":"122568"}, +{"id":"163125"}, +{"id":"28748"}, +{"id":"30604"}, +{"id":"136931"}, +{"id":"22894"}, +{"id":"205314"}, +{"id":"205862"}, +{"id":"159899"}, +{"id":"64963"}, +{"id":"24570"}, +{"id":"196713"}, +{"id":"150559"}, +{"id":"30338"}, +{"id":"37411"}, +{"id":"90060"}, +{"id":"57477"}, +{"id":"176799"}, +{"id":"64200"}, +{"id":"141389"}, +{"id":"99744"}, +{"id":"68323"}, +{"id":"212334"}, +{"id":"94930"}, +{"id":"125917"}, +{"id":"86105"}, +{"id":"55637"}, +{"id":"161009"}, +{"id":"162950"}, +{"id":"142788"}, +{"id":"61325"}, +{"id":"114700"}, +{"id":"48442"}, +{"id":"158022"}, +{"id":"31802"}, +{"id":"215478"}, +{"id":"5564"}, +{"id":"104540"}, +{"id":"86566"}, +{"id":"192681"}, +{"id":"46502"}, +{"id":"113127"}, +{"id":"87697"}, +{"id":"97649"}, +{"id":"194362"}, +{"id":"15234"}, +{"id":"8843"}, +{"id":"146154"}, +{"id":"207608"}, +{"id":"67989"}, +{"id":"102320"}, +{"id":"56844"}, +{"id":"181855"}, +{"id":"137734"}, +{"id":"61743"}, +{"id":"12130"}, +{"id":"40248"}, +{"id":"160060"}, +{"id":"133358"}, +{"id":"170585"}, +{"id":"177605"}, +{"id":"172808"}, +{"id":"43193"}, +{"id":"204399"}, +{"id":"52196"}, +{"id":"7546"}, +{"id":"25546"}, +{"id":"214691"}, +{"id":"165089"}, +{"id":"40829"}, +{"id":"55324"}, +{"id":"170005"}, +{"id":"38443"}, +{"id":"168410"}, +{"id":"135668"}, +{"id":"82921"}, +{"id":"8377"}, +{"id":"192567"}, +{"id":"61954"}, +{"id":"181562"}, +{"id":"175310"}, +{"id":"162456"}, +{"id":"61161"}, +{"id":"191275"}, +{"id":"128147"}, +{"id":"8938"}, +{"id":"194297"}, +{"id":"137903"}, +{"id":"181134"}, +{"id":"99312"}, +{"id":"133770"}, +{"id":"151106"}, +{"id":"198370"}, +{"id":"127930"}, +{"id":"18942"}, +{"id":"86391"}, +{"id":"7745"}, +{"id":"72110"}, +{"id":"18286"}, +{"id":"12194"}, +{"id":"82600"}, +{"id":"144056"}, +{"id":"194803"}, +{"id":"153352"}, +{"id":"98072"}, +{"id":"109084"}, +{"id":"136234"}, +{"id":"212858"}, +{"id":"199265"}, +{"id":"124018"}, +{"id":"25999"}, +{"id":"47719"}, +{"id":"62917"}, +{"id":"59178"}, +{"id":"14579"}, +{"id":"165075"}, +{"id":"202609"}, +{"id":"39982"}, +{"id":"70149"}, +{"id":"56366"}, +{"id":"20118"}, +{"id":"106299"}, +{"id":"102598"}, +{"id":"174068"}, +{"id":"104382"}, +{"id":"5318"}, +{"id":"133825"}, +{"id":"2395"}, +{"id":"175784"}, +{"id":"63028"}, +{"id":"29525"}, +{"id":"76156"}, +{"id":"141914"}, +{"id":"25963"}, +{"id":"41014"}, +{"id":"200998"}, +{"id":"180773"}, +{"id":"117981"}, +{"id":"143915"}, +{"id":"6027"}, +{"id":"138986"}, +{"id":"52662"}, +{"id":"10624"}, +{"id":"137817"}, +{"id":"160293"}, +{"id":"12364"}, +{"id":"168308"}, +{"id":"117870"}, +{"id":"101729"}, +{"id":"197638"}, +{"id":"18470"}, +{"id":"88267"}, +{"id":"136930"}, +{"id":"197411"}, +{"id":"3519"}, +{"id":"176658"}, +{"id":"142812"}, +{"id":"117542"}, +{"id":"129955"}, +{"id":"162186"}, +{"id":"11904"}, +{"id":"46503"}, +{"id":"27278"}, +{"id":"166822"}, +{"id":"62849"}, +{"id":"196236"}, +{"id":"25459"}, +{"id":"101442"}, +{"id":"104719"}, +{"id":"77442"}, +{"id":"149013"}, +{"id":"134902"}, +{"id":"27671"}, +{"id":"108511"}, +{"id":"47591"}, +{"id":"142998"}, +{"id":"141430"}, +{"id":"206248"}, +{"id":"205158"}, +{"id":"99856"}, +{"id":"85878"}, +{"id":"86470"}, +{"id":"107237"}, +{"id":"165286"}, +{"id":"164833"}, +{"id":"62139"}, +{"id":"102523"}, +{"id":"150372"}, +{"id":"189634"}, +{"id":"3564"}, +{"id":"16126"}, +{"id":"177403"}, +{"id":"88855"}, +{"id":"36175"}, +{"id":"168204"}, +{"id":"213745"}, +{"id":"200918"}, +{"id":"141528"}, +{"id":"87277"}, +{"id":"156010"}, +{"id":"174029"}, +{"id":"26716"}, +{"id":"161328"}, +{"id":"7328"}, +{"id":"43734"}, +{"id":"35969"}, +{"id":"117586"}, +{"id":"207787"}, +{"id":"47449"}, +{"id":"68813"}, +{"id":"142005"}, +{"id":"191066"}, +{"id":"27149"}, +{"id":"182618"}, +{"id":"8423"}, +{"id":"27261"}, +{"id":"101229"}, +{"id":"216366"}, +{"id":"68550"}, +{"id":"119665"}, +{"id":"97129"}, +{"id":"45484"}, +{"id":"136105"}, +{"id":"59329"}, +{"id":"13810"}, +{"id":"88411"}, +{"id":"114902"}, +{"id":"215267"}, +{"id":"167978"}, +{"id":"106251"}, +{"id":"205176"}, +{"id":"127849"}, +{"id":"102769"}, +{"id":"28232"}, +{"id":"185505"}, +{"id":"140934"}, +{"id":"55008"}, +{"id":"116150"}, +{"id":"197992"}, +{"id":"202343"}, +{"id":"75377"}, +{"id":"122574"}, +{"id":"189296"}, +{"id":"5418"}, +{"id":"164532"}, +{"id":"199024"}, +{"id":"202161"}, +{"id":"30340"}, +{"id":"186730"}, +{"id":"94852"}, +{"id":"178553"}, +{"id":"179507"}, +{"id":"158383"}, +{"id":"194491"}, +{"id":"209956"}, +{"id":"38103"}, +{"id":"24181"}, +{"id":"146127"}, +{"id":"128227"}, +{"id":"79800"}, +{"id":"183193"}, +{"id":"69580"}, +{"id":"68919"}, +{"id":"213690"}, +{"id":"177314"}, +{"id":"189549"}, +{"id":"140107"}, +{"id":"182612"}, +{"id":"154543"}, +{"id":"106548"}, +{"id":"23489"}, +{"id":"105889"}, +{"id":"206561"}, +{"id":"139359"}, +{"id":"59317"}, +{"id":"12360"}, +{"id":"28889"}, +{"id":"187425"}, +{"id":"72650"}, +{"id":"167502"}, +{"id":"5290"}, +{"id":"15001"}, +{"id":"20023"}, +{"id":"178140"}, +{"id":"72000"}, +{"id":"130459"}, +{"id":"25026"}, +{"id":"45289"}, +{"id":"44796"}, +{"id":"94148"}, +{"id":"15908"}, +{"id":"34544"}, +{"id":"9147"}, +{"id":"29549"}, +{"id":"119851"}, +{"id":"78072"}, +{"id":"22028"}, +{"id":"202140"}, +{"id":"143794"}, +{"id":"91700"}, +{"id":"80081"}, +{"id":"201256"}, +{"id":"103603"}, +{"id":"208661"}, +{"id":"32712"}, +{"id":"88216"}, +{"id":"134738"}, +{"id":"97773"}, +{"id":"184477"}, +{"id":"28008"}, +{"id":"132105"}, +{"id":"207731"}, +{"id":"138454"}, +{"id":"109200"}, +{"id":"91220"}, +{"id":"187367"}, +{"id":"73916"}, +{"id":"37674"}, +{"id":"22247"}, +{"id":"218450"}, +{"id":"181504"}, +{"id":"36187"}, +{"id":"2424"}, +{"id":"105529"}, +{"id":"88785"}, +{"id":"1590"}, +{"id":"6967"}, +{"id":"196634"}, +{"id":"188026"}, +{"id":"32421"}, +{"id":"126275"}, +{"id":"124106"}, +{"id":"71224"}, +{"id":"65445"}, +{"id":"70449"}, +{"id":"94091"}, +{"id":"95110"}, +{"id":"165530"}, +{"id":"20520"}, +{"id":"208159"}, +{"id":"203232"}, +{"id":"12208"}, +{"id":"77454"}, +{"id":"58529"}, +{"id":"99501"}, +{"id":"131524"}, +{"id":"58885"}, +{"id":"26897"}, +{"id":"50586"}, +{"id":"30628"}, +{"id":"52641"}, +{"id":"190465"}, +{"id":"8045"}, +{"id":"40211"}, +{"id":"156109"}, +{"id":"126018"}, +{"id":"64880"}, +{"id":"86349"}, +{"id":"145794"}, +{"id":"37102"}, +{"id":"46490"}, +{"id":"143116"}, +{"id":"196529"}, +{"id":"187922"}, +{"id":"219732"}, +{"id":"127405"}, +{"id":"90504"}, +{"id":"38078"}, +{"id":"43176"}, +{"id":"91818"}, +{"id":"75441"}, +{"id":"68533"}, +{"id":"85839"}, +{"id":"79394"}, +{"id":"218618"}, +{"id":"219702"}, +{"id":"137762"}, +{"id":"20766"}, +{"id":"132525"}, +{"id":"132243"}, +{"id":"168489"}, +{"id":"205161"}, +{"id":"10730"}, +{"id":"17082"}, +{"id":"191655"}, +{"id":"143844"}, +{"id":"180832"}, +{"id":"84363"}, +{"id":"57186"}, +{"id":"167455"}, +{"id":"204903"}, +{"id":"220717"}, +{"id":"71334"}, +{"id":"176208"}, +{"id":"125955"}, +{"id":"75775"}, +{"id":"215229"}, +{"id":"86101"}, +{"id":"61048"}, +{"id":"216197"}, +{"id":"134096"}, +{"id":"93886"}, +{"id":"99199"}, +{"id":"164879"}, +{"id":"98138"}, +{"id":"170581"}, +{"id":"171978"}, +{"id":"75916"}, +{"id":"118691"}, +{"id":"171624"}, +{"id":"48865"}, +{"id":"17355"}, +{"id":"74790"}, +{"id":"204091"}, +{"id":"150299"}, +{"id":"188117"}, +{"id":"136501"}, +{"id":"84424"}, +{"id":"147764"}, +{"id":"177706"}, +{"id":"102398"}, +{"id":"88419"}, +{"id":"115884"}, +{"id":"127948"}, +{"id":"146954"}, +{"id":"103662"}, +{"id":"27087"}, +{"id":"166545"}, +{"id":"73694"}, +{"id":"220132"}, +{"id":"215420"}, +{"id":"149482"}, +{"id":"140643"}, +{"id":"17066"}, +{"id":"209629"}, +{"id":"202452"}, +{"id":"198358"}, +{"id":"114388"}, +{"id":"72139"}, +{"id":"77430"}, +{"id":"169398"}, +{"id":"136013"}, +{"id":"214175"}, +{"id":"180742"}, +{"id":"87110"}, +{"id":"82315"}, +{"id":"187826"}, +{"id":"162324"}, +{"id":"177738"}, +{"id":"118951"}, +{"id":"5183"}, +{"id":"9615"}, +{"id":"13205"}, +{"id":"126897"}, +{"id":"212227"}, +{"id":"14917"}, +{"id":"52940"}, +{"id":"208230"}, +{"id":"63149"}, +{"id":"109996"}, +{"id":"178184"}, +{"id":"137270"}, +{"id":"139347"}, +{"id":"176957"}, +{"id":"90343"}, +{"id":"49160"}, +{"id":"64049"}, +{"id":"39115"}, +{"id":"48122"}, +{"id":"42523"}, +{"id":"62876"}, +{"id":"40188"}, +{"id":"121620"}, +{"id":"124879"}, +{"id":"186497"}, +{"id":"13398"}, +{"id":"135366"}, +{"id":"178571"}, +{"id":"5061"}, +{"id":"212490"}, +{"id":"87176"}, +{"id":"61468"}, +{"id":"11375"}, +{"id":"91593"}, +{"id":"165857"}, +{"id":"135242"}, +{"id":"421"}, +{"id":"95980"}, +{"id":"131204"}, +{"id":"188692"}, +{"id":"180515"}, +{"id":"74784"}, +{"id":"141967"}, +{"id":"116764"}, +{"id":"197804"}, +{"id":"112790"}, +{"id":"104141"}, +{"id":"212518"}, +{"id":"183720"}, +{"id":"158710"}, +{"id":"104316"}, +{"id":"64659"}, +{"id":"40436"}, +{"id":"156166"}, +{"id":"91569"}, +{"id":"215002"}, +{"id":"97508"}, +{"id":"207233"}, +{"id":"212556"}, +{"id":"41063"}, +{"id":"119642"}, +{"id":"73277"}, +{"id":"67133"}, +{"id":"166155"}, +{"id":"184024"}, +{"id":"109345"}, +{"id":"209725"}, +{"id":"131613"}, +{"id":"172969"}, +{"id":"161892"}, +{"id":"60441"}, +{"id":"173381"}, +{"id":"205599"}, +{"id":"219096"}, +{"id":"124650"}, +{"id":"67840"}, +{"id":"96311"}, +{"id":"541"}, +{"id":"2400"}, +{"id":"197218"}, +{"id":"3818"}, +{"id":"167146"}, +{"id":"151606"}, +{"id":"56096"}, +{"id":"177168"}, +{"id":"110652"}, +{"id":"190277"}, +{"id":"114609"}, +{"id":"126405"}, +{"id":"124429"}, +{"id":"217235"}, +{"id":"191051"}, +{"id":"92653"}, +{"id":"11995"}, +{"id":"115598"}, +{"id":"206344"}, +{"id":"3236"}, +{"id":"200321"}, +{"id":"180737"}, +{"id":"91716"}, +{"id":"65821"}, +{"id":"183337"}, +{"id":"90835"}, +{"id":"199397"}, +{"id":"142268"}, +{"id":"27250"}, +{"id":"94680"}, +{"id":"34406"}, +{"id":"187313"}, +{"id":"113073"}, +{"id":"142321"}, +{"id":"174237"}, +{"id":"42372"}, +{"id":"110387"}, +{"id":"7105"}, +{"id":"107697"}, +{"id":"193013"}, +{"id":"120325"}, +{"id":"196923"}, +{"id":"131947"}, +{"id":"173654"}, +{"id":"107807"}, +{"id":"159988"}, +{"id":"118716"}, +{"id":"124002"}, +{"id":"105137"}, +{"id":"205700"}, +{"id":"162286"}, +{"id":"129878"}, +{"id":"201503"}, +{"id":"20392"}, +{"id":"193938"}, +{"id":"7185"}, +{"id":"139667"}, +{"id":"139213"}, +{"id":"107269"}, +{"id":"143175"}, +{"id":"26060"}, +{"id":"169902"}, +{"id":"92292"}, +{"id":"207006"}, +{"id":"185347"}, +{"id":"123837"}, +{"id":"15756"}, +{"id":"11223"}, +{"id":"65242"}, +{"id":"61368"}, +{"id":"46301"}, +{"id":"95410"}, +{"id":"94581"}, +{"id":"177839"}, +{"id":"112235"}, +{"id":"104636"}, +{"id":"107541"}, +{"id":"9379"}, +{"id":"26753"}, +{"id":"44965"}, +{"id":"167564"}, +{"id":"141801"}, +{"id":"162825"}, +{"id":"161804"}, +{"id":"5385"}, +{"id":"154374"}, +{"id":"216766"}, +{"id":"117498"}, +{"id":"35547"}, +{"id":"153737"}, +{"id":"174084"}, +{"id":"122845"}, +{"id":"108587"}, +{"id":"158819"}, +{"id":"141488"}, +{"id":"32322"}, +{"id":"94910"}, +{"id":"137820"}, +{"id":"20880"}, +{"id":"208262"}, +{"id":"105133"}, +{"id":"74695"}, +{"id":"111426"}, +{"id":"73617"}, +{"id":"142566"}, +{"id":"62526"}, +{"id":"10453"}, +{"id":"110614"}, +{"id":"30539"}, +{"id":"15804"}, +{"id":"162753"}, +{"id":"63597"}, +{"id":"148007"}, +{"id":"69414"}, +{"id":"166284"}, +{"id":"155212"}, +{"id":"59213"}, +{"id":"127717"}, +{"id":"85618"}, +{"id":"72757"}, +{"id":"215303"}, +{"id":"200135"}, +{"id":"163184"}, +{"id":"151935"}, +{"id":"44493"}, +{"id":"3860"}, +{"id":"93806"}, +{"id":"211332"}, +{"id":"164225"}, +{"id":"150682"}, +{"id":"16708"}, +{"id":"47596"}, +{"id":"194812"}, +{"id":"128740"}, +{"id":"111101"}, +{"id":"37085"}, +{"id":"215031"}, +{"id":"169083"}, +{"id":"180063"}, +{"id":"92497"}, +{"id":"98115"}, +{"id":"14062"}, +{"id":"143959"}, +{"id":"22580"}, +{"id":"14956"}, +{"id":"83675"}, +{"id":"157663"}, +{"id":"71080"}, +{"id":"183832"}, +{"id":"216626"}, +{"id":"60314"}, +{"id":"105055"}, +{"id":"79929"}, +{"id":"135107"}, +{"id":"205065"}, +{"id":"51344"}, +{"id":"136674"}, +{"id":"99943"}, +{"id":"71331"}, +{"id":"13120"}, +{"id":"158126"}, +{"id":"92917"}, +{"id":"101306"}, +{"id":"9957"}, +{"id":"85902"}, +{"id":"100892"}, +{"id":"152667"}, +{"id":"38354"}, +{"id":"165954"}, +{"id":"74073"}, +{"id":"197761"}, +{"id":"193881"}, +{"id":"19914"}, +{"id":"74043"}, +{"id":"144587"}, +{"id":"24350"}, +{"id":"57064"}, +{"id":"17855"}, +{"id":"121207"}, +{"id":"101370"}, +{"id":"121534"}, +{"id":"208731"}, +{"id":"58932"}, +{"id":"145771"}, +{"id":"201126"}, +{"id":"80741"}, +{"id":"5557"}, +{"id":"26790"}, +{"id":"121477"}, +{"id":"9902"}, +{"id":"86943"}, +{"id":"94143"}, +{"id":"5323"}, +{"id":"159970"}, +{"id":"126493"}, +{"id":"198396"}, +{"id":"153945"}, +{"id":"153189"}, +{"id":"115476"}, +{"id":"39380"}, +{"id":"104015"}, +{"id":"44013"}, +{"id":"140957"}, +{"id":"168266"}, +{"id":"117911"}, +{"id":"6528"}, +{"id":"124381"}, +{"id":"76278"}, +{"id":"167051"}, +{"id":"150225"}, +{"id":"214054"}, +{"id":"207721"}, +{"id":"110981"}, +{"id":"64342"}, +{"id":"203261"}, +{"id":"34359"}, +{"id":"135341"}, +{"id":"164290"}, +{"id":"195451"}, +{"id":"108571"}, +{"id":"105004"}, +{"id":"49573"}, +{"id":"32440"}, +{"id":"76802"}, +{"id":"179341"}, +{"id":"164591"}, +{"id":"149356"}, +{"id":"16388"}, +{"id":"165898"}, +{"id":"206718"}, +{"id":"71878"}, +{"id":"15740"}, +{"id":"90750"}, +{"id":"166800"}, +{"id":"70242"}, +{"id":"23368"}, +{"id":"59849"}, +{"id":"9164"}, +{"id":"47970"}, +{"id":"155382"}, +{"id":"211996"}, +{"id":"43041"}, +{"id":"128569"}, +{"id":"50861"}, +{"id":"28886"}, +{"id":"193092"}, +{"id":"172441"}, +{"id":"90295"}, +{"id":"152208"}, +{"id":"15991"}, +{"id":"185594"}, +{"id":"144918"}, +{"id":"62654"}, +{"id":"206010"}, +{"id":"96943"}, +{"id":"16014"}, +{"id":"70167"}, +{"id":"52459"}, +{"id":"156122"}, +{"id":"33589"}, +{"id":"15151"}, +{"id":"83864"}, +{"id":"207595"}, +{"id":"185989"}, +{"id":"19009"}, +{"id":"186051"}, +{"id":"128977"}, +{"id":"194293"}, +{"id":"120536"}, +{"id":"175827"}, +{"id":"31373"}, +{"id":"112852"}, +{"id":"84766"}, +{"id":"201683"}, +{"id":"168252"}, +{"id":"97735"}, +{"id":"85714"}, +{"id":"182505"}, +{"id":"195392"}, +{"id":"91789"}, +{"id":"35452"}, +{"id":"81077"}, +{"id":"62327"}, +{"id":"32847"}, +{"id":"90020"}, +{"id":"175247"}, +{"id":"114936"}, +{"id":"75400"}, +{"id":"17065"}, +{"id":"192863"}, +{"id":"192332"}, +{"id":"64247"}, +{"id":"169879"}, +{"id":"48243"}, +{"id":"137423"}, +{"id":"71907"}, +{"id":"142037"}, +{"id":"96396"}, +{"id":"33607"}, +{"id":"174526"}, +{"id":"3981"}, +{"id":"20734"}, +{"id":"175933"}, +{"id":"193044"}, +{"id":"165995"}, +{"id":"67318"}, +{"id":"11364"}, +{"id":"98296"}, +{"id":"18549"}, +{"id":"13387"}, +{"id":"60795"}, +{"id":"145910"}, +{"id":"78440"}, +{"id":"77352"}, +{"id":"76520"}, +{"id":"90860"}, +{"id":"137148"}, +{"id":"82899"}, +{"id":"109896"}, +{"id":"156985"}, +{"id":"190240"}, +{"id":"126589"}, +{"id":"48287"}, +{"id":"4568"}, +{"id":"45975"}, +{"id":"163861"}, +{"id":"132316"}, +{"id":"193982"}, +{"id":"55814"}, +{"id":"152495"}, +{"id":"9843"}, +{"id":"85649"}, +{"id":"218786"}, +{"id":"128228"}, +{"id":"128961"}, +{"id":"82730"}, +{"id":"116266"}, +{"id":"94088"}, +{"id":"110306"}, +{"id":"210289"}, +{"id":"77498"}, +{"id":"118037"}, +{"id":"83913"}, +{"id":"23003"}, +{"id":"190553"}, +{"id":"11630"}, +{"id":"45919"}, +{"id":"153833"}, +{"id":"28950"}, +{"id":"48564"}, +{"id":"145287"}, +{"id":"204308"}, +{"id":"42177"}, +{"id":"167467"}, +{"id":"86994"}, +{"id":"82461"}, +{"id":"141775"}, +{"id":"80682"}, +{"id":"123817"}, +{"id":"42637"}, +{"id":"172233"}, +{"id":"33393"}, +{"id":"96682"}, +{"id":"39323"}, +{"id":"123094"}, +{"id":"21980"}, +{"id":"86888"}, +{"id":"50987"}, +{"id":"125375"}, +{"id":"166268"}, +{"id":"203818"}, +{"id":"149776"}, +{"id":"64982"}, +{"id":"203185"}, +{"id":"19541"}, +{"id":"5422"}, +{"id":"25855"}, +{"id":"64887"}, +{"id":"177079"}, +{"id":"45601"}, +{"id":"191698"}, +{"id":"162719"}, +{"id":"85449"}, +{"id":"25605"}, +{"id":"117033"}, +{"id":"163287"}, +{"id":"203097"}, +{"id":"14923"}, +{"id":"187936"}, +{"id":"94130"}, +{"id":"56297"}, +{"id":"16755"}, +{"id":"25301"}, +{"id":"79002"}, +{"id":"140849"}, +{"id":"192490"}, +{"id":"20061"}, +{"id":"85912"}, +{"id":"154027"}, +{"id":"26363"}, +{"id":"95871"}, +{"id":"196006"}, +{"id":"214596"}, +{"id":"152311"}, +{"id":"46425"}, +{"id":"29589"}, +{"id":"177480"}, +{"id":"214499"}, +{"id":"116565"}, +{"id":"183871"}, +{"id":"191506"}, +{"id":"172184"}, +{"id":"74963"}, +{"id":"96131"}, +{"id":"220698"}, +{"id":"192247"}, +{"id":"215118"}, +{"id":"153016"}, +{"id":"189492"}, +{"id":"152139"}, +{"id":"183199"}, +{"id":"151040"}, +{"id":"46309"}, +{"id":"107562"}, +{"id":"173509"}, +{"id":"178437"}, +{"id":"211522"}, +{"id":"203152"}, +{"id":"59101"}, +{"id":"216378"}, +{"id":"178718"}, +{"id":"152318"}, +{"id":"77902"}, +{"id":"29682"}, +{"id":"30884"}, +{"id":"173482"}, +{"id":"8229"}, +{"id":"20098"}, +{"id":"130076"}, +{"id":"202659"}, +{"id":"214771"}, +{"id":"30087"}, +{"id":"192542"}, +{"id":"111017"}, +{"id":"185696"}, +{"id":"151303"}, +{"id":"144077"}, +{"id":"186429"}, +{"id":"34748"}, +{"id":"13848"}, +{"id":"63591"}, +{"id":"63006"}, +{"id":"220765"}, +{"id":"191249"}, +{"id":"5312"}, +{"id":"134995"}, +{"id":"158620"}, +{"id":"219671"}, +{"id":"173801"}, +{"id":"48459"}, +{"id":"183383"}, +{"id":"22171"}, +{"id":"209924"}, +{"id":"171634"}, +{"id":"14931"}, +{"id":"145693"}, +{"id":"69443"}, +{"id":"109228"}, +{"id":"203942"}, +{"id":"55821"}, +{"id":"91034"}, +{"id":"93785"}, +{"id":"81001"}, +{"id":"95178"}, +{"id":"205670"}, +{"id":"183446"}, +{"id":"25450"}, +{"id":"169284"}, +{"id":"157565"}, +{"id":"215013"}, +{"id":"38892"}, +{"id":"36595"}, +{"id":"127765"}, +{"id":"71407"}, +{"id":"78873"}, +{"id":"91872"}, +{"id":"107290"}, +{"id":"153627"}, +{"id":"161409"}, +{"id":"4559"}, +{"id":"137691"}, +{"id":"115972"}, +{"id":"61578"}, +{"id":"119586"}, +{"id":"168217"}, +{"id":"110049"}, +{"id":"13684"}, +{"id":"138886"}, +{"id":"148991"}, +{"id":"136408"}, +{"id":"68234"}, +{"id":"96351"}, +{"id":"68996"}, +{"id":"31096"}, +{"id":"208402"}, +{"id":"203526"}, +{"id":"57984"}, +{"id":"115695"}, +{"id":"69961"}, +{"id":"143622"}, +{"id":"111873"}, +{"id":"132770"}, +{"id":"8371"}, +{"id":"11427"}, +{"id":"218545"}, +{"id":"24161"}, +{"id":"209599"}, +{"id":"120854"}, +{"id":"176796"}, +{"id":"162210"}, +{"id":"96461"}, +{"id":"69506"}, +{"id":"42464"}, +{"id":"182746"}, +{"id":"88136"}, +{"id":"199891"}, +{"id":"139068"}, +{"id":"172005"}, +{"id":"58199"}, +{"id":"82309"}, +{"id":"217068"}, +{"id":"193559"}, +{"id":"100265"}, +{"id":"168838"}, +{"id":"18326"}, +{"id":"152447"}, +{"id":"100219"}, +{"id":"126749"}, +{"id":"84234"}, +{"id":"79996"}, +{"id":"199859"}, +{"id":"39128"}, +{"id":"161363"}, +{"id":"204964"}, +{"id":"21106"}, +{"id":"132988"}, +{"id":"10222"}, +{"id":"61577"}, +{"id":"109040"}, +{"id":"100469"}, +{"id":"207245"}, +{"id":"85633"}, +{"id":"163370"}, +{"id":"108430"}, +{"id":"139304"}, +{"id":"134143"}, +{"id":"194112"}, +{"id":"46958"}, +{"id":"19231"}, +{"id":"88554"}, +{"id":"127206"}, +{"id":"120234"}, +{"id":"206802"}, +{"id":"66482"}, +{"id":"2097"}, +{"id":"121357"}, +{"id":"52125"}, +{"id":"144319"}, +{"id":"198196"}, +{"id":"10253"}, +{"id":"156314"}, +{"id":"175721"}, +{"id":"218783"}, +{"id":"51844"}, +{"id":"37971"}, +{"id":"152415"}, +{"id":"158172"}, +{"id":"134623"}, +{"id":"32139"}, +{"id":"88140"}, +{"id":"114368"}, +{"id":"16685"}, +{"id":"131679"}, +{"id":"32163"}, +{"id":"189829"}, +{"id":"100229"}, +{"id":"61543"}, +{"id":"146201"}, +{"id":"16462"}, +{"id":"130764"}, +{"id":"48247"}, +{"id":"156513"}, +{"id":"133464"}, +{"id":"126841"}, +{"id":"38026"}, +{"id":"7462"}, +{"id":"168186"}, +{"id":"128982"}, +{"id":"129342"}, +{"id":"103870"}, +{"id":"59928"}, +{"id":"31503"}, +{"id":"91056"}, +{"id":"11208"}, +{"id":"82543"}, +{"id":"1037"}, +{"id":"208766"}, +{"id":"118098"}, +{"id":"130287"}, +{"id":"17788"}, +{"id":"162714"}, +{"id":"154505"}, +{"id":"18069"}, +{"id":"129761"}, +{"id":"82689"}, +{"id":"198938"}, +{"id":"39959"}, +{"id":"2976"}, +{"id":"55237"}, +{"id":"22507"}, +{"id":"201088"}, +{"id":"70992"}, +{"id":"169290"}, +{"id":"199683"}, +{"id":"53065"}, +{"id":"92106"}, +{"id":"195757"}, +{"id":"201856"}, +{"id":"190880"}, +{"id":"100617"}, +{"id":"187545"}, +{"id":"12156"}, +{"id":"103244"}, +{"id":"103593"}, +{"id":"47134"}, +{"id":"108235"}, +{"id":"25263"}, +{"id":"21969"}, +{"id":"148676"}, +{"id":"146464"}, +{"id":"2590"}, +{"id":"56285"}, +{"id":"18304"}, +{"id":"74690"}, +{"id":"57083"}, +{"id":"6539"}, +{"id":"67918"}, +{"id":"200800"}, +{"id":"6762"}, +{"id":"217206"}, +{"id":"87068"}, +{"id":"113985"}, +{"id":"145387"}, +{"id":"134211"}, +{"id":"38663"}, +{"id":"191574"}, +{"id":"137587"}, +{"id":"196283"}, +{"id":"180157"}, +{"id":"70859"}, +{"id":"124573"}, +{"id":"35383"}, +{"id":"87086"}, +{"id":"27636"}, +{"id":"188304"}, +{"id":"5273"}, +{"id":"721"}, +{"id":"50748"}, +{"id":"184839"}, +{"id":"122138"}, +{"id":"147406"}, +{"id":"90903"}, +{"id":"208143"}, +{"id":"159103"}, +{"id":"190683"}, +{"id":"148253"}, +{"id":"30755"}, +{"id":"43244"}, +{"id":"21836"}, +{"id":"73646"}, +{"id":"113348"}, +{"id":"185388"}, +{"id":"34720"}, +{"id":"166189"}, +{"id":"206785"}, +{"id":"28677"}, +{"id":"18045"}, +{"id":"31092"}, +{"id":"48557"}, +{"id":"160466"}, +{"id":"18603"}, +{"id":"148194"}, +{"id":"184156"}, +{"id":"162612"}, +{"id":"63817"}, +{"id":"167955"}, +{"id":"47948"}, +{"id":"105892"}, +{"id":"124991"}, +{"id":"101272"}, +{"id":"191724"}, +{"id":"62965"}, +{"id":"198420"}, +{"id":"203622"}, +{"id":"64283"}, +{"id":"203681"}, +{"id":"51301"}, +{"id":"72843"}, +{"id":"19638"}, +{"id":"122591"}, +{"id":"11510"}, +{"id":"220442"}, +{"id":"93016"}, +{"id":"137052"}, +{"id":"27393"}, +{"id":"72619"}, +{"id":"115395"}, +{"id":"137956"}, +{"id":"193346"}, +{"id":"132687"}, +{"id":"220780"}, +{"id":"200048"}, +{"id":"139804"}, +{"id":"164489"}, +{"id":"87167"}, +{"id":"151229"}, +{"id":"135263"}, +{"id":"127412"}, +{"id":"134161"}, +{"id":"160352"}, +{"id":"13198"}, +{"id":"185850"}, +{"id":"121871"}, +{"id":"103296"}, +{"id":"217658"}, +{"id":"162600"}, +{"id":"159119"}, +{"id":"176485"}, +{"id":"99359"}, +{"id":"56379"}, +{"id":"200797"}, +{"id":"140310"}, +{"id":"39598"}, +{"id":"52111"}, +{"id":"176812"}, +{"id":"75134"}, +{"id":"171714"}, +{"id":"184047"}, +{"id":"217451"}, +{"id":"25786"}, +{"id":"61949"}, +{"id":"101136"}, +{"id":"67791"}, +{"id":"94086"}, +{"id":"193314"}, +{"id":"124697"}, +{"id":"15515"}, +{"id":"217673"}, +{"id":"58376"}, +{"id":"22933"}, +{"id":"44972"}, +{"id":"2880"}, +{"id":"177762"}, +{"id":"128924"}, +{"id":"114259"}, +{"id":"94584"}, +{"id":"159140"}, +{"id":"2999"}, +{"id":"210459"}, +{"id":"62645"}, +{"id":"198899"}, +{"id":"130078"}, +{"id":"12328"}, +{"id":"211734"}, +{"id":"37793"}, +{"id":"6324"}, +{"id":"31053"}, +{"id":"144898"}, +{"id":"167817"}, +{"id":"172736"}, +{"id":"152164"}, +{"id":"13163"}, +{"id":"37973"}, +{"id":"159652"}, +{"id":"116461"}, +{"id":"215023"}, +{"id":"3623"}, +{"id":"110177"}, +{"id":"67283"}, +{"id":"63086"}, +{"id":"24589"}, +{"id":"126190"}, +{"id":"38430"}, +{"id":"133181"}, +{"id":"30076"}, +{"id":"96649"}, +{"id":"189004"}, +{"id":"28737"}, +{"id":"56260"}, +{"id":"174408"}, +{"id":"106690"}, +{"id":"99459"}, +{"id":"107231"}, +{"id":"182661"}, +{"id":"101826"}, +{"id":"47790"}, +{"id":"129526"}, +{"id":"52177"}, +{"id":"117503"}, +{"id":"155460"}, +{"id":"136739"}, +{"id":"168264"}, +{"id":"34476"}, +{"id":"39293"}, +{"id":"43966"}, +{"id":"14907"}, +{"id":"143914"}, +{"id":"31305"}, +{"id":"25366"}, +{"id":"173199"}, +{"id":"105119"}, +{"id":"139836"}, +{"id":"124030"}, +{"id":"204446"}, +{"id":"151159"}, +{"id":"55437"}, +{"id":"6478"}, +{"id":"163274"}, +{"id":"47515"}, +{"id":"19654"}, +{"id":"46315"}, +{"id":"185842"}, +{"id":"187498"}, +{"id":"136479"}, +{"id":"30643"}, +{"id":"50287"}, +{"id":"193139"}, +{"id":"93716"}, +{"id":"20868"}, +{"id":"23363"}, +{"id":"30447"}, +{"id":"39404"}, +{"id":"157153"}, +{"id":"130589"}, +{"id":"50028"}, +{"id":"195892"}, +{"id":"45280"}, +{"id":"83582"}, +{"id":"195377"}, +{"id":"49198"}, +{"id":"112219"}, +{"id":"141848"}, +{"id":"119348"}, +{"id":"40392"}, +{"id":"26371"}, +{"id":"212776"}, +{"id":"30786"}, +{"id":"180868"}, +{"id":"92848"}, +{"id":"51840"}, +{"id":"62647"}, +{"id":"63511"}, +{"id":"30804"}, +{"id":"196090"}, +{"id":"107593"}, +{"id":"92218"}, +{"id":"121509"}, +{"id":"207746"}, +{"id":"197065"}, +{"id":"42684"}, +{"id":"43658"}, +{"id":"201451"}, +{"id":"214298"}, +{"id":"177953"}, +{"id":"155036"}, +{"id":"108990"}, +{"id":"165758"}, +{"id":"83006"}, +{"id":"38289"}, +{"id":"206174"}, +{"id":"130509"}, +{"id":"73238"}, +{"id":"86162"}, +{"id":"88018"}, +{"id":"150908"}, +{"id":"139617"}, +{"id":"194770"}, +{"id":"1126"}, +{"id":"80690"}, +{"id":"99029"}, +{"id":"48374"}, +{"id":"209579"}, +{"id":"32729"}, +{"id":"21134"}, +{"id":"110161"}, +{"id":"161827"}, +{"id":"99862"}, +{"id":"78767"}, +{"id":"121508"}, +{"id":"150675"}, +{"id":"127970"}, +{"id":"28790"}, +{"id":"66896"}, +{"id":"135448"}, +{"id":"95220"}, +{"id":"142080"}, +{"id":"116225"}, +{"id":"205063"}, +{"id":"9694"}, +{"id":"102367"}, +{"id":"143228"}, +{"id":"15523"}, +{"id":"219885"}, +{"id":"176375"}, +{"id":"165524"}, +{"id":"42396"}, +{"id":"218268"}, +{"id":"133833"}, +{"id":"191374"}, +{"id":"47103"}, +{"id":"70474"}, +{"id":"205834"}, +{"id":"79391"}, +{"id":"4280"}, +{"id":"177532"}, +{"id":"169636"}, +{"id":"62190"}, +{"id":"48463"}, +{"id":"100199"}, +{"id":"24591"}, +{"id":"154835"}, +{"id":"30568"}, +{"id":"49349"}, +{"id":"140752"}, +{"id":"140436"}, +{"id":"179242"}, +{"id":"40418"}, +{"id":"180941"}, +{"id":"208189"}, +{"id":"107335"}, +{"id":"38129"}, +{"id":"204852"}, +{"id":"11211"}, +{"id":"191045"}, +{"id":"103495"}, +{"id":"65695"}, +{"id":"155631"}, +{"id":"160722"}, +{"id":"143636"}, +{"id":"33081"}, +{"id":"127455"}, +{"id":"54394"}, +{"id":"35561"}, +{"id":"21826"}, +{"id":"37570"}, +{"id":"70748"}, +{"id":"88616"}, +{"id":"54245"}, +{"id":"96952"}, +{"id":"171015"}, +{"id":"67006"}, +{"id":"43030"}, +{"id":"70410"}, +{"id":"193240"}, +{"id":"175943"}, +{"id":"216812"}, +{"id":"56798"}, +{"id":"46393"}, +{"id":"167346"}, +{"id":"65491"}, +{"id":"58125"}, +{"id":"92745"}, +{"id":"157910"}, +{"id":"184843"}, +{"id":"95850"}, +{"id":"188531"}, +{"id":"84264"}, +{"id":"139641"}, +{"id":"85968"}, +{"id":"107251"}, +{"id":"111431"}, +{"id":"107841"}, +{"id":"216018"}, +{"id":"74097"}, +{"id":"73076"}, +{"id":"209068"}, +{"id":"155023"}, +{"id":"119393"}, +{"id":"61933"}, +{"id":"171423"}, +{"id":"110825"}, +{"id":"83952"}, +{"id":"14943"}, +{"id":"46744"}, +{"id":"40140"}, +{"id":"112294"}, +{"id":"203644"}, +{"id":"114004"}, +{"id":"1352"}, +{"id":"126308"}, +{"id":"95868"}, +{"id":"62040"}, +{"id":"172248"}, +{"id":"220438"}, +{"id":"16036"}, +{"id":"43856"}, +{"id":"82062"}, +{"id":"109079"}, +{"id":"112596"}, +{"id":"4908"}, +{"id":"1718"}, +{"id":"36889"}, +{"id":"165598"}, +{"id":"89293"}, +{"id":"199127"}, +{"id":"200678"}, +{"id":"62967"}, +{"id":"7273"}, +{"id":"51281"}, +{"id":"1799"}, +{"id":"132963"}, +{"id":"88709"}, +{"id":"153472"}, +{"id":"75073"}, +{"id":"166353"}, +{"id":"143886"}, +{"id":"193757"}, +{"id":"51472"}, +{"id":"89761"}, +{"id":"107736"}, +{"id":"102132"}, +{"id":"99917"}, +{"id":"195973"}, +{"id":"17352"}, +{"id":"1339"}, +{"id":"11487"}, +{"id":"106543"}, +{"id":"74502"}, +{"id":"172860"}, +{"id":"62623"}, +{"id":"123923"}, +{"id":"23733"}, +{"id":"152794"}, +{"id":"125603"}, +{"id":"65539"}, +{"id":"102887"}, +{"id":"66210"}, +{"id":"208528"}, +{"id":"108751"}, +{"id":"52082"}, +{"id":"7937"}, +{"id":"172170"}, +{"id":"174175"}, +{"id":"169126"}, +{"id":"62931"}, +{"id":"214170"}, +{"id":"112802"}, +{"id":"184836"}, +{"id":"208962"}, +{"id":"138514"}, +{"id":"98775"}, +{"id":"115752"}, +{"id":"89910"}, +{"id":"3355"}, +{"id":"60061"}, +{"id":"39159"}, +{"id":"161629"}, +{"id":"3448"}, +{"id":"201660"}, +{"id":"121146"}, +{"id":"127028"}, +{"id":"212611"}, +{"id":"187350"}, +{"id":"10963"}, +{"id":"92876"}, +{"id":"205674"}, +{"id":"58739"}, +{"id":"136821"}, +{"id":"8637"}, +{"id":"59157"}, +{"id":"89187"}, +{"id":"174804"}, +{"id":"92943"}, +{"id":"164254"}, +{"id":"7643"}, +{"id":"206712"}, +{"id":"56642"}, +{"id":"209927"}, +{"id":"118952"}, +{"id":"86481"}, +{"id":"162741"}, +{"id":"107923"}, +{"id":"80415"}, +{"id":"182117"}, +{"id":"33223"}, +{"id":"215215"}, +{"id":"190835"}, +{"id":"61285"}, +{"id":"79236"}, +{"id":"121326"}, +{"id":"45048"}, +{"id":"172832"}, +{"id":"131802"}, +{"id":"33213"}, +{"id":"67833"}, +{"id":"167191"}, +{"id":"13673"}, +{"id":"208301"}, +{"id":"13657"}, +{"id":"182927"}, +{"id":"171517"}, +{"id":"42327"}, +{"id":"16941"}, +{"id":"105346"}, +{"id":"42307"}, +{"id":"65246"}, +{"id":"29624"}, +{"id":"20777"}, +{"id":"88077"}, +{"id":"121788"}, +{"id":"13853"}, +{"id":"131467"}, +{"id":"45334"}, +{"id":"191833"}, +{"id":"32821"}, +{"id":"146924"}, +{"id":"44646"}, +{"id":"17551"}, +{"id":"102058"}, +{"id":"28692"}, +{"id":"47275"}, +{"id":"173517"}, +{"id":"213852"}, +{"id":"123065"}, +{"id":"71349"}, +{"id":"47698"}, +{"id":"72825"}, +{"id":"51182"}, +{"id":"167475"}, +{"id":"83849"}, +{"id":"65795"}, +{"id":"174167"}, +{"id":"201950"}, +{"id":"168380"}, +{"id":"161335"}, +{"id":"168507"}, +{"id":"166915"}, +{"id":"141226"}, +{"id":"17883"}, +{"id":"79251"}, +{"id":"20274"}, +{"id":"97226"}, +{"id":"166983"}, +{"id":"132766"}, +{"id":"45080"}, +{"id":"109431"}, +{"id":"25473"}, +{"id":"58343"}, +{"id":"102397"}, +{"id":"155292"}, +{"id":"42310"}, +{"id":"98006"}, +{"id":"157135"}, +{"id":"4290"}, +{"id":"33757"}, +{"id":"116714"}, +{"id":"126953"}, +{"id":"123717"}, +{"id":"108634"}, +{"id":"22196"}, +{"id":"37994"}, +{"id":"21312"}, +{"id":"197120"}, +{"id":"126005"}, +{"id":"143956"}, +{"id":"168472"}, +{"id":"142582"}, +{"id":"146565"}, +{"id":"117868"}, +{"id":"167150"}, +{"id":"32838"}, +{"id":"110167"}, +{"id":"152946"}, +{"id":"173989"}, +{"id":"108101"}, +{"id":"104734"}, +{"id":"163871"}, +{"id":"173336"}, +{"id":"38614"}, +{"id":"155871"}, +{"id":"102557"}, +{"id":"33046"}, +{"id":"141692"}, +{"id":"66340"}, +{"id":"189825"}, +{"id":"142311"}, +{"id":"202106"}, +{"id":"20541"}, +{"id":"12957"}, +{"id":"105768"}, +{"id":"214474"}, +{"id":"220774"}, +{"id":"118645"}, +{"id":"111481"}, +{"id":"18364"}, +{"id":"99829"}, +{"id":"141079"}, +{"id":"134836"}, +{"id":"54498"}, +{"id":"145597"}, +{"id":"190678"}, +{"id":"996"}, +{"id":"39101"}, +{"id":"93538"}, +{"id":"142247"}, +{"id":"210547"}, +{"id":"181333"}, +{"id":"2832"}, +{"id":"37184"}, +{"id":"98471"}, +{"id":"170335"}, +{"id":"130796"}, +{"id":"81668"}, +{"id":"41451"}, +{"id":"186461"}, +{"id":"207153"}, +{"id":"98921"}, +{"id":"99370"}, +{"id":"170620"}, +{"id":"155888"}, +{"id":"212789"}, +{"id":"83056"}, +{"id":"176528"}, +{"id":"113715"}, +{"id":"62313"}, +{"id":"33785"}, +{"id":"52712"}, +{"id":"199943"}, +{"id":"67661"}, +{"id":"112120"}, +{"id":"206063"}, +{"id":"713"}, +{"id":"4677"}, +{"id":"42345"}, +{"id":"45870"}, +{"id":"187333"}, +{"id":"73373"}, +{"id":"107227"}, +{"id":"59741"}, +{"id":"197665"}, +{"id":"123271"}, +{"id":"12973"}, +{"id":"46019"}, +{"id":"148896"}, +{"id":"51632"}, +{"id":"192263"}, +{"id":"147648"}, +{"id":"38039"}, +{"id":"81226"}, +{"id":"44524"}, +{"id":"188534"}, +{"id":"139845"}, +{"id":"869"}, +{"id":"46124"}, +{"id":"115755"}, +{"id":"95573"}, +{"id":"204688"}, +{"id":"191591"}, +{"id":"170060"}, +{"id":"192080"}, +{"id":"140616"}, +{"id":"126336"}, +{"id":"161262"}, +{"id":"173866"}, +{"id":"176348"}, +{"id":"16183"}, +{"id":"131619"}, +{"id":"167083"}, +{"id":"20661"}, +{"id":"198469"}, +{"id":"61148"}, +{"id":"77727"}, +{"id":"36761"}, +{"id":"66816"}, +{"id":"173499"}, +{"id":"166523"}, +{"id":"94469"}, +{"id":"108059"}, +{"id":"54930"}, +{"id":"52678"}, +{"id":"55064"}, +{"id":"186784"}, +{"id":"205527"}, +{"id":"66326"}, +{"id":"126037"}, +{"id":"187096"}, +{"id":"36083"}, +{"id":"159062"}, +{"id":"12141"}, +{"id":"12170"}, +{"id":"88982"}, +{"id":"93144"}, +{"id":"24538"}, +{"id":"145356"}, +{"id":"92861"}, +{"id":"173826"}, +{"id":"59196"}, +{"id":"210381"}, +{"id":"69691"}, +{"id":"166111"}, +{"id":"92414"}, +{"id":"181448"}, +{"id":"201566"}, +{"id":"169796"}, +{"id":"142718"}, +{"id":"38601"}, +{"id":"55965"}, +{"id":"196914"}, +{"id":"120654"}, +{"id":"216771"}, +{"id":"95411"}, +{"id":"14131"}, +{"id":"160310"}, +{"id":"25391"}, +{"id":"113299"}, +{"id":"104737"}, +{"id":"13754"}, +{"id":"41585"}, +{"id":"67204"}, +{"id":"56820"}, +{"id":"11221"}, +{"id":"21004"}, +{"id":"71651"}, +{"id":"83697"}, +{"id":"181579"}, +{"id":"186706"}, +{"id":"202922"}, +{"id":"139382"}, +{"id":"140606"}, +{"id":"169756"}, +{"id":"210821"}, +{"id":"35871"}, +{"id":"202976"}, +{"id":"31535"}, +{"id":"146731"}, +{"id":"66053"}, +{"id":"202785"}, +{"id":"14264"}, +{"id":"171860"}, +{"id":"214269"}, +{"id":"92332"}, +{"id":"180637"}, +{"id":"101392"}, +{"id":"178078"}, +{"id":"140450"}, +{"id":"49554"}, +{"id":"136240"}, +{"id":"8150"}, +{"id":"88731"}, +{"id":"16360"}, +{"id":"138614"}, +{"id":"187570"}, +{"id":"174180"}, +{"id":"212193"}, +{"id":"156049"}, +{"id":"47714"}, +{"id":"61646"}, +{"id":"193058"}, +{"id":"66419"}, +{"id":"46288"}, +{"id":"168657"}, +{"id":"215502"}, +{"id":"37623"}, +{"id":"212968"}, +{"id":"177757"}, +{"id":"42853"}, +{"id":"156034"}, +{"id":"133179"}, +{"id":"172085"}, +{"id":"110261"}, +{"id":"219703"}, +{"id":"14220"}, +{"id":"181221"}, +{"id":"165307"}, +{"id":"186638"}, +{"id":"14622"}, +{"id":"124652"}, +{"id":"128215"}, +{"id":"196217"}, +{"id":"23474"}, +{"id":"163719"}, +{"id":"168361"}, +{"id":"144484"}, +{"id":"39226"}, +{"id":"50131"}, +{"id":"72931"}, +{"id":"103488"}, +{"id":"99153"}, +{"id":"208121"}, +{"id":"10325"}, +{"id":"37644"}, +{"id":"130438"}, +{"id":"101011"}, +{"id":"31258"}, +{"id":"213850"}, +{"id":"208074"}, +{"id":"76158"}, +{"id":"173961"}, +{"id":"169008"}, +{"id":"162092"}, +{"id":"43132"}, +{"id":"100203"}, +{"id":"186428"}, +{"id":"169481"}, +{"id":"22897"}, +{"id":"50978"}, +{"id":"160903"}, +{"id":"201529"}, +{"id":"52614"}, +{"id":"105072"}, +{"id":"111003"}, +{"id":"174744"}, +{"id":"199610"}, +{"id":"179585"}, +{"id":"43896"}, +{"id":"34696"}, +{"id":"41753"}, +{"id":"37187"}, +{"id":"197305"}, +{"id":"159164"}, +{"id":"31281"}, +{"id":"50057"}, +{"id":"145763"}, +{"id":"15341"}, +{"id":"51616"}, +{"id":"171928"}, +{"id":"6986"}, +{"id":"104904"}, +{"id":"84285"}, +{"id":"172071"}, +{"id":"11117"}, +{"id":"209653"}, +{"id":"135681"}, +{"id":"12550"}, +{"id":"202418"}, +{"id":"185822"}, +{"id":"10689"}, +{"id":"101733"}, +{"id":"183098"}, +{"id":"92379"}, +{"id":"146527"}, +{"id":"145442"}, +{"id":"41945"}, +{"id":"4915"}, +{"id":"51456"}, +{"id":"124245"}, +{"id":"95016"}, +{"id":"131595"}, +{"id":"95342"}, +{"id":"4145"}, +{"id":"76586"}, +{"id":"147085"}, +{"id":"140631"}, +{"id":"89955"}, +{"id":"107991"}, +{"id":"208313"}, +{"id":"61689"}, +{"id":"129453"}, +{"id":"50887"}, +{"id":"63690"}, +{"id":"205888"}, +{"id":"80121"}, +{"id":"97400"}, +{"id":"91215"}, +{"id":"64991"}, +{"id":"163300"}, +{"id":"111348"}, +{"id":"39173"}, +{"id":"117363"}, +{"id":"146489"}, +{"id":"211254"}, +{"id":"214660"}, +{"id":"38395"}, +{"id":"159975"}, +{"id":"138968"}, +{"id":"111767"}, +{"id":"205699"}, +{"id":"50993"}, +{"id":"195140"}, +{"id":"109949"}, +{"id":"180087"}, +{"id":"188883"}, +{"id":"6963"}, +{"id":"204102"}, +{"id":"197460"}, +{"id":"46111"}, +{"id":"1189"}, +{"id":"218057"}, +{"id":"72678"}, +{"id":"123187"}, +{"id":"11914"}, +{"id":"220321"}, +{"id":"5071"}, +{"id":"19285"}, +{"id":"62889"}, +{"id":"203289"}, +{"id":"85278"}, +{"id":"134937"}, +{"id":"98931"}, +{"id":"75011"}, +{"id":"94864"}, +{"id":"123604"}, +{"id":"126053"}, +{"id":"138572"}, +{"id":"150087"}, +{"id":"169798"}, +{"id":"70933"}, +{"id":"115796"}, +{"id":"125725"}, +{"id":"125781"}, +{"id":"125855"}, +{"id":"133261"}, +{"id":"169109"}, +{"id":"192767"}, +{"id":"166262"}, +{"id":"196338"}, +{"id":"186879"}, +{"id":"173223"}, +{"id":"28099"}, +{"id":"184993"}, +{"id":"111356"}, +{"id":"106974"}, +{"id":"12308"}, +{"id":"10550"}, +{"id":"32866"}, +{"id":"83129"}, +{"id":"27276"}, +{"id":"4000"}, +{"id":"149330"}, +{"id":"112008"}, +{"id":"60642"}, +{"id":"205939"}, +{"id":"34099"}, +{"id":"181513"}, +{"id":"183892"}, +{"id":"47178"}, +{"id":"201392"}, +{"id":"172013"}, +{"id":"169900"}, +{"id":"99870"}, +{"id":"7174"}, +{"id":"44373"}, +{"id":"175200"}, +{"id":"69144"}, +{"id":"119155"}, +{"id":"167430"}, +{"id":"11438"}, +{"id":"192896"}, +{"id":"181839"}, +{"id":"97758"}, +{"id":"90469"}, +{"id":"68906"}, +{"id":"199770"}, +{"id":"199594"}, +{"id":"179050"}, +{"id":"81535"}, +{"id":"208480"}, +{"id":"91659"}, +{"id":"109708"}, +{"id":"73201"}, +{"id":"153458"}, +{"id":"149762"}, +{"id":"37251"}, +{"id":"39677"}, +{"id":"174783"}, +{"id":"163446"}, +{"id":"185450"}, +{"id":"51311"}, +{"id":"188545"}, +{"id":"186308"}, +{"id":"19503"}, +{"id":"75163"}, +{"id":"98377"}, +{"id":"116228"}, +{"id":"176931"}, +{"id":"114540"}, +{"id":"53914"}, +{"id":"129748"}, +{"id":"22350"}, +{"id":"162689"}, +{"id":"163563"}, +{"id":"212410"}, +{"id":"99774"}, +{"id":"45936"}, +{"id":"182529"}, +{"id":"167901"}, +{"id":"44718"}, +{"id":"189481"}, +{"id":"138721"}, +{"id":"139792"}, +{"id":"214282"}, +{"id":"38234"}, +{"id":"121255"}, +{"id":"61961"}, +{"id":"209168"}, +{"id":"184806"}, +{"id":"75885"}, +{"id":"48471"}, +{"id":"49774"}, +{"id":"47159"}, +{"id":"193393"}, +{"id":"78931"}, +{"id":"134820"}, +{"id":"91946"}, +{"id":"69247"}, +{"id":"87990"}, +{"id":"69343"}, +{"id":"88555"}, +{"id":"40533"}, +{"id":"124482"}, +{"id":"198632"}, +{"id":"413"}, +{"id":"144947"}, +{"id":"15467"}, +{"id":"35147"}, +{"id":"99379"}, +{"id":"17921"}, +{"id":"5675"}, +{"id":"200489"}, +{"id":"88689"}, +{"id":"143828"}, +{"id":"73870"}, +{"id":"187781"}, +{"id":"18365"}, +{"id":"193203"}, +{"id":"96712"}, +{"id":"93786"}, +{"id":"158521"}, +{"id":"79226"}, +{"id":"96073"}, +{"id":"212597"}, +{"id":"122217"}, +{"id":"199985"}, +{"id":"100634"}, +{"id":"129650"}, +{"id":"42328"}, +{"id":"97534"}, +{"id":"173364"}, +{"id":"197226"}, +{"id":"176478"}, +{"id":"214632"}, +{"id":"177887"}, +{"id":"211353"}, +{"id":"200995"}, +{"id":"135639"}, +{"id":"32665"}, +{"id":"126371"}, +{"id":"101401"}, +{"id":"173734"}, +{"id":"153099"}, +{"id":"43301"}, +{"id":"217183"}, +{"id":"23980"}, +{"id":"193467"}, +{"id":"156665"}, +{"id":"71268"}, +{"id":"56525"}, +{"id":"41871"}, +{"id":"38425"}, +{"id":"143547"}, +{"id":"220643"}, +{"id":"9204"}, +{"id":"216711"}, +{"id":"120390"}, +{"id":"69222"}, +{"id":"143088"}, +{"id":"48330"}, +{"id":"107684"}, +{"id":"82932"}, +{"id":"92061"}, +{"id":"49422"}, +{"id":"132439"}, +{"id":"58807"}, +{"id":"60318"}, +{"id":"11901"}, +{"id":"88952"}, +{"id":"152203"}, +{"id":"87422"}, +{"id":"112481"}, +{"id":"84621"}, +{"id":"96451"}, +{"id":"87117"}, +{"id":"6414"}, +{"id":"123373"}, +{"id":"56804"}, +{"id":"41345"}, +{"id":"144847"}, +{"id":"74710"}, +{"id":"143395"}, +{"id":"51615"}, +{"id":"196450"}, +{"id":"88032"}, +{"id":"193132"}, +{"id":"25609"}, +{"id":"60773"}, +{"id":"13299"}, +{"id":"143900"}, +{"id":"65806"}, +{"id":"20721"}, +{"id":"63513"}, +{"id":"84428"}, +{"id":"193446"}, +{"id":"123530"}, +{"id":"179400"}, +{"id":"13425"}, +{"id":"103811"}, +{"id":"178487"}, +{"id":"136562"}, +{"id":"187233"}, +{"id":"205878"}, +{"id":"14466"}, +{"id":"47595"}, +{"id":"31046"}, +{"id":"125179"}, +{"id":"38320"}, +{"id":"141491"}, +{"id":"203365"}, +{"id":"52374"}, +{"id":"180206"}, +{"id":"166182"}, +{"id":"191093"}, +{"id":"86614"}, +{"id":"96275"}, +{"id":"75378"}, +{"id":"5763"}, +{"id":"199972"}, +{"id":"72641"}, +{"id":"195822"}, +{"id":"28257"}, +{"id":"28150"}, +{"id":"147503"}, +{"id":"34227"}, +{"id":"22103"}, +{"id":"158191"}, +{"id":"217923"}, +{"id":"94466"}, +{"id":"30112"}, +{"id":"53276"}, +{"id":"187567"}, +{"id":"102571"}, +{"id":"179826"}, +{"id":"50948"}, +{"id":"180994"}, +{"id":"78771"}, +{"id":"184661"}, +{"id":"24989"}, +{"id":"116131"}, +{"id":"106148"}, +{"id":"88902"}, +{"id":"102730"}, +{"id":"21671"}, +{"id":"22547"}, +{"id":"166930"}, +{"id":"135220"}, +{"id":"188176"}, +{"id":"27310"}, +{"id":"186028"}, +{"id":"96934"}, +{"id":"88824"}, +{"id":"154106"}, +{"id":"192587"}, +{"id":"198826"}, +{"id":"30892"}, +{"id":"57018"}, +{"id":"119045"}, +{"id":"97028"}, +{"id":"135044"}, +{"id":"116649"}, +{"id":"152942"}, +{"id":"196672"}, +{"id":"24851"}, +{"id":"188483"}, +{"id":"60811"}, +{"id":"3622"}, +{"id":"207764"}, +{"id":"84534"}, +{"id":"109036"}, +{"id":"179059"}, +{"id":"32683"}, +{"id":"150415"}, +{"id":"139991"}, +{"id":"140931"}, +{"id":"171090"}, +{"id":"83253"}, +{"id":"96108"}, +{"id":"166145"}, +{"id":"446"}, +{"id":"89925"}, +{"id":"128668"}, +{"id":"13401"}, +{"id":"4544"}, +{"id":"130806"}, +{"id":"198870"}, +{"id":"46146"}, +{"id":"184880"}, +{"id":"101708"}, +{"id":"66229"}, +{"id":"87417"}, +{"id":"133785"}, +{"id":"139982"}, +{"id":"53991"}, +{"id":"96347"}, +{"id":"24660"}, +{"id":"155538"}, +{"id":"109761"}, +{"id":"108776"}, +{"id":"156085"}, +{"id":"151887"}, +{"id":"93488"}, +{"id":"197255"}, +{"id":"65547"}, +{"id":"94782"}, +{"id":"101466"}, +{"id":"46647"}, +{"id":"122996"}, +{"id":"41461"}, +{"id":"188348"}, +{"id":"108612"}, +{"id":"204998"}, +{"id":"119618"}, +{"id":"158093"}, +{"id":"8907"}, +{"id":"210086"}, +{"id":"55267"}, +{"id":"104263"}, +{"id":"65077"}, +{"id":"112741"}, +{"id":"217407"}, +{"id":"128580"}, +{"id":"156070"}, +{"id":"171550"}, +{"id":"20393"}, +{"id":"74410"}, +{"id":"36655"}, +{"id":"170447"}, +{"id":"3926"}, +{"id":"210920"}, +{"id":"49411"}, +{"id":"157290"}, +{"id":"125577"}, +{"id":"168869"}, +{"id":"43346"}, +{"id":"214627"}, +{"id":"167445"}, +{"id":"92205"}, +{"id":"87103"}, +{"id":"124291"}, +{"id":"144966"}, +{"id":"89755"}, +{"id":"164466"}, +{"id":"194925"}, +{"id":"7502"}, +{"id":"159560"}, +{"id":"109182"}, +{"id":"44095"}, +{"id":"92920"}, +{"id":"143333"}, +{"id":"67497"}, +{"id":"105314"}, +{"id":"136388"}, +{"id":"189009"}, +{"id":"13104"}, +{"id":"103424"}, +{"id":"18987"}, +{"id":"64538"}, +{"id":"207621"}, +{"id":"110771"}, +{"id":"172110"}, +{"id":"160560"}, +{"id":"142560"}, +{"id":"213820"}, +{"id":"86682"}, +{"id":"163917"}, +{"id":"103821"}, +{"id":"88168"}, +{"id":"108115"}, +{"id":"143190"}, +{"id":"144225"}, +{"id":"94179"}, +{"id":"26898"}, +{"id":"112034"}, +{"id":"149962"}, +{"id":"17412"}, +{"id":"89676"}, +{"id":"77435"}, +{"id":"44313"}, +{"id":"153612"}, +{"id":"22626"}, +{"id":"197375"}, +{"id":"142081"}, +{"id":"35859"}, +{"id":"89263"}, +{"id":"191070"}, +{"id":"17564"}, +{"id":"29784"}, +{"id":"194365"}, +{"id":"154254"}, +{"id":"205775"}, +{"id":"185182"}, +{"id":"85383"}, +{"id":"44666"}, +{"id":"83321"}, +{"id":"137663"}, +{"id":"28770"}, +{"id":"146926"}, +{"id":"200326"}, +{"id":"105563"}, +{"id":"163144"}, +{"id":"158969"}, +{"id":"171089"}, +{"id":"160855"}, +{"id":"82416"}, +{"id":"182624"}, +{"id":"65079"}, +{"id":"191529"}, +{"id":"58889"}, +{"id":"137941"}, +{"id":"86285"}, +{"id":"187262"}, +{"id":"47012"}, +{"id":"214760"}, +{"id":"194357"}, +{"id":"161364"}, +{"id":"154817"}, +{"id":"167960"}, +{"id":"34687"}, +{"id":"172707"}, +{"id":"192931"}, +{"id":"137289"}, +{"id":"130318"}, +{"id":"174737"}, +{"id":"179854"}, +{"id":"172128"}, +{"id":"1362"}, +{"id":"156539"}, +{"id":"127614"}, +{"id":"2147"}, +{"id":"125122"}, +{"id":"15350"}, +{"id":"210910"}, +{"id":"207198"}, +{"id":"77118"}, +{"id":"204971"}, +{"id":"61309"}, +{"id":"152954"}, +{"id":"71459"}, +{"id":"116400"}, +{"id":"118050"}, +{"id":"77423"}, +{"id":"97779"}, +{"id":"97726"}, +{"id":"200933"}, +{"id":"58337"}, +{"id":"155166"}, +{"id":"44918"}, +{"id":"214311"}, +{"id":"214838"}, +{"id":"77294"}, +{"id":"215165"}, +{"id":"161601"}, +{"id":"184299"}, +{"id":"130660"}, +{"id":"129370"}, +{"id":"209774"}, +{"id":"115251"}, +{"id":"76181"}, +{"id":"86716"}, +{"id":"54353"}, +{"id":"4390"}, +{"id":"107980"}, +{"id":"97545"}, +{"id":"22771"}, +{"id":"106125"}, +{"id":"146573"}, +{"id":"58968"}, +{"id":"174971"}, +{"id":"139127"}, +{"id":"40100"}, +{"id":"140517"}, +{"id":"72071"}, +{"id":"109372"}, +{"id":"188749"}, +{"id":"113759"}, +{"id":"53392"}, +{"id":"150012"}, +{"id":"46695"}, +{"id":"3756"}, +{"id":"122179"}, +{"id":"137248"}, +{"id":"83721"}, +{"id":"97411"}, +{"id":"8829"}, +{"id":"86711"}, +{"id":"187997"}, +{"id":"150350"}, +{"id":"146973"}, +{"id":"215914"}, +{"id":"218014"}, +{"id":"118928"}, +{"id":"1199"}, +{"id":"201106"}, +{"id":"164106"}, +{"id":"150718"}, +{"id":"44040"}, +{"id":"107224"}, +{"id":"113979"}, +{"id":"104230"}, +{"id":"25362"}, +{"id":"24351"}, +{"id":"86482"}, +{"id":"188471"}, +{"id":"188404"}, +{"id":"152169"}, +{"id":"35532"}, +{"id":"60534"}, +{"id":"144053"}, +{"id":"145963"}, +{"id":"149407"}, +{"id":"15679"}, +{"id":"131698"}, +{"id":"51741"}, +{"id":"80961"}, +{"id":"92815"}, +{"id":"86536"}, +{"id":"77935"}, +{"id":"62846"}, +{"id":"187092"}, +{"id":"35912"}, +{"id":"166791"}, +{"id":"129457"}, +{"id":"157268"}, +{"id":"194864"}, +{"id":"7867"}, +{"id":"135272"}, +{"id":"213023"}, +{"id":"123608"}, +{"id":"61331"}, +{"id":"95361"}, +{"id":"17017"}, +{"id":"195586"}, +{"id":"129430"}, +{"id":"7766"}, +{"id":"39064"}, +{"id":"152451"}, +{"id":"127975"}, +{"id":"55768"}, +{"id":"52116"}, +{"id":"121493"}, +{"id":"54904"}, +{"id":"71833"}, +{"id":"185639"}, +{"id":"5748"}, +{"id":"168435"}, +{"id":"121539"}, +{"id":"212849"}, +{"id":"151979"}, +{"id":"87213"}, +{"id":"182469"}, +{"id":"98187"}, +{"id":"93336"}, +{"id":"173473"}, +{"id":"120039"}, +{"id":"87628"}, +{"id":"89846"}, +{"id":"27947"}, +{"id":"121993"}, +{"id":"77448"}, +{"id":"110647"}, +{"id":"85033"}, +{"id":"15046"}, +{"id":"136330"}, +{"id":"99079"}, +{"id":"76205"}, +{"id":"59151"}, +{"id":"44677"}, +{"id":"159545"}, +{"id":"74002"}, +{"id":"201695"}, +{"id":"48915"}, +{"id":"10096"}, +{"id":"53563"}, +{"id":"31832"}, +{"id":"207182"}, +{"id":"128610"}, +{"id":"14638"}, +{"id":"163205"}, +{"id":"34721"}, +{"id":"198754"}, +{"id":"130621"}, +{"id":"58334"}, +{"id":"49488"}, +{"id":"95235"}, +{"id":"156680"}, +{"id":"119977"}, +{"id":"210707"}, +{"id":"159942"}, +{"id":"62937"}, +{"id":"69341"}, +{"id":"11538"}, +{"id":"97107"}, +{"id":"133221"}, +{"id":"28380"}, +{"id":"105656"}, +{"id":"158106"}, +{"id":"125439"}, +{"id":"210223"}, +{"id":"139592"}, +{"id":"175793"}, +{"id":"68878"}, +{"id":"40500"}, +{"id":"207063"}, +{"id":"214672"}, +{"id":"140759"}, +{"id":"4463"}, +{"id":"90934"}, +{"id":"181319"}, +{"id":"140246"}, +{"id":"180933"}, +{"id":"218053"}, +{"id":"20907"}, +{"id":"146560"}, +{"id":"217585"}, +{"id":"19778"}, +{"id":"51149"}, +{"id":"204712"}, +{"id":"38467"}, +{"id":"214983"}, +{"id":"80363"}, +{"id":"11679"}, +{"id":"94219"}, +{"id":"115584"}, +{"id":"199766"}, +{"id":"61442"}, +{"id":"39541"}, +{"id":"136807"}, +{"id":"92934"}, +{"id":"97897"}, +{"id":"125310"}, +{"id":"58834"}, +{"id":"46355"}, +{"id":"169741"}, +{"id":"127115"}, +{"id":"8817"}, +{"id":"74028"}, +{"id":"85064"}, +{"id":"27676"}, +{"id":"136197"}, +{"id":"213686"}, +{"id":"204150"}, +{"id":"179822"}, +{"id":"97209"}, +{"id":"189532"}, +{"id":"138157"}, +{"id":"170691"}, +{"id":"145182"}, +{"id":"139113"}, +{"id":"201822"}, +{"id":"90570"}, +{"id":"149316"}, +{"id":"47757"}, +{"id":"171506"}, +{"id":"125140"}, +{"id":"174800"}, +{"id":"163165"}, +{"id":"178707"}, +{"id":"30332"}, +{"id":"117678"}, +{"id":"68590"}, +{"id":"965"}, +{"id":"18595"}, +{"id":"172659"}, +{"id":"90313"}, +{"id":"75140"}, +{"id":"218389"}, +{"id":"183213"}, +{"id":"167017"}, +{"id":"66441"}, +{"id":"119873"}, +{"id":"173636"}, +{"id":"67574"}, +{"id":"37818"}, +{"id":"8917"}, +{"id":"82590"}, +{"id":"140209"}, +{"id":"119076"}, +{"id":"177892"}, +{"id":"212853"}, +{"id":"35687"}, +{"id":"215066"}, +{"id":"96573"}, +{"id":"168906"}, +{"id":"188025"}, +{"id":"91135"}, +{"id":"217272"}, +{"id":"145201"}, +{"id":"86552"}, +{"id":"150410"}, +{"id":"132112"}, +{"id":"123483"}, +{"id":"7141"}, +{"id":"10267"}, +{"id":"72040"}, +{"id":"190087"}, +{"id":"184076"}, +{"id":"185675"}, +{"id":"151251"}, +{"id":"3415"}, +{"id":"93254"}, +{"id":"48596"}, +{"id":"92405"}, +{"id":"216928"}, +{"id":"12209"}, +{"id":"171943"}, +{"id":"7987"}, +{"id":"198721"}, +{"id":"202653"}, +{"id":"216758"}, +{"id":"150219"}, +{"id":"218279"}, +{"id":"208058"}, +{"id":"88236"}, +{"id":"112138"}, +{"id":"88631"}, +{"id":"140127"}, +{"id":"20791"}, +{"id":"58701"}, +{"id":"90663"}, +{"id":"28873"}, +{"id":"123962"}, +{"id":"132581"}, +{"id":"160088"}, +{"id":"78923"}, +{"id":"194350"}, +{"id":"181656"}, +{"id":"79275"}, +{"id":"111084"}, +{"id":"121745"}, +{"id":"182280"}, +{"id":"147088"}, +{"id":"43012"}, +{"id":"77275"}, +{"id":"80813"}, +{"id":"149191"}, +{"id":"79579"}, +{"id":"66483"}, +{"id":"184824"}, +{"id":"157291"}, +{"id":"6823"}, +{"id":"2464"}, +{"id":"147414"}, +{"id":"91954"}, +{"id":"156598"}, +{"id":"153857"}, +{"id":"81770"}, +{"id":"79891"}, +{"id":"157788"}, +{"id":"175796"}, +{"id":"83254"}, +{"id":"134389"}, +{"id":"210476"}, +{"id":"183588"}, +{"id":"140565"}, +{"id":"191483"}, +{"id":"1083"}, +{"id":"42614"}, +{"id":"63984"}, +{"id":"86252"}, +{"id":"144705"}, +{"id":"43355"}, +{"id":"92102"}, +{"id":"153681"}, +{"id":"139234"}, +{"id":"15362"}, +{"id":"113118"}, +{"id":"12201"}, +{"id":"13912"}, +{"id":"73639"}, +{"id":"183015"}, +{"id":"72561"}, +{"id":"111414"}, +{"id":"98762"}, +{"id":"204579"}, +{"id":"184259"}, +{"id":"147459"}, +{"id":"125030"}, +{"id":"81090"}, +{"id":"182057"}, +{"id":"141374"}, +{"id":"10600"}, +{"id":"5601"}, +{"id":"213260"}, +{"id":"73808"}, +{"id":"184703"}, +{"id":"176394"}, +{"id":"200235"}, +{"id":"43014"}, +{"id":"156578"}, +{"id":"87203"}, +{"id":"174069"}, +{"id":"26895"}, +{"id":"162815"}, +{"id":"16297"}, +{"id":"116591"}, +{"id":"92190"}, +{"id":"13279"}, +{"id":"97646"}, +{"id":"217187"}, +{"id":"195125"}, +{"id":"59724"}, +{"id":"15988"}, +{"id":"21127"}, +{"id":"189848"}, +{"id":"170253"}, +{"id":"50188"}, +{"id":"87606"}, +{"id":"183607"}, +{"id":"143282"}, +{"id":"140251"}, +{"id":"17807"}, +{"id":"167717"}, +{"id":"215731"}, +{"id":"85860"}, +{"id":"159553"}, +{"id":"159780"}, +{"id":"50631"}, +{"id":"142671"}, +{"id":"177488"}, +{"id":"9906"}, +{"id":"5737"}, +{"id":"144509"}, +{"id":"153548"}, +{"id":"79622"}, +{"id":"187417"}, +{"id":"77094"}, +{"id":"218836"}, +{"id":"27142"}, +{"id":"27449"}, +{"id":"116577"}, +{"id":"91767"}, +{"id":"43730"}, +{"id":"77920"}, +{"id":"43242"}, +{"id":"77542"}, +{"id":"191143"}, +{"id":"142751"}, +{"id":"71276"}, +{"id":"62541"}, +{"id":"170102"}, +{"id":"78932"}, +{"id":"100972"}, +{"id":"96554"}, +{"id":"57976"}, +{"id":"117513"}, +{"id":"206307"}, +{"id":"36638"}, +{"id":"93044"}, +{"id":"170596"}, +{"id":"1672"}, +{"id":"104495"}, +{"id":"193126"}, +{"id":"47873"}, +{"id":"36171"}, +{"id":"165717"}, +{"id":"57863"}, +{"id":"25681"}, +{"id":"40763"}, +{"id":"181897"}, +{"id":"49323"}, +{"id":"52731"}, +{"id":"215231"}, +{"id":"199344"}, +{"id":"109603"}, +{"id":"217861"}, +{"id":"71537"}, +{"id":"178089"}, +{"id":"149084"}, +{"id":"94412"}, +{"id":"28199"}, +{"id":"214514"}, +{"id":"193939"}, +{"id":"78452"}, +{"id":"112145"}, +{"id":"28671"}, +{"id":"156051"}, +{"id":"50841"}, +{"id":"104660"}, +{"id":"218342"}, +{"id":"49512"}, +{"id":"33070"}, +{"id":"118823"}, +{"id":"33903"}, +{"id":"76505"}, +{"id":"94850"}, +{"id":"89314"}, +{"id":"134160"}, +{"id":"73244"}, +{"id":"72469"}, +{"id":"138082"}, +{"id":"107608"}, +{"id":"105230"}, +{"id":"77411"}, +{"id":"32798"}, +{"id":"209777"}, +{"id":"190206"}, +{"id":"220145"}, +{"id":"47384"}, +{"id":"144237"}, +{"id":"4408"}, +{"id":"9700"}, +{"id":"73610"}, +{"id":"165933"}, +{"id":"41678"}, +{"id":"110037"}, +{"id":"88846"}, +{"id":"139903"}, +{"id":"33774"}, +{"id":"139144"}, +{"id":"93201"}, +{"id":"124346"}, +{"id":"160317"}, +{"id":"117278"}, +{"id":"12283"}, +{"id":"44124"}, +{"id":"39619"}, +{"id":"126785"}, +{"id":"75182"}, +{"id":"61452"}, +{"id":"23287"}, +{"id":"207538"}, +{"id":"219265"}, +{"id":"167302"}, +{"id":"146125"}, +{"id":"95787"}, +{"id":"209368"}, +{"id":"210355"}, +{"id":"172562"}, +{"id":"364"}, +{"id":"120411"}, +{"id":"72090"}, +{"id":"190656"}, +{"id":"17626"}, +{"id":"179439"}, +{"id":"81710"}, +{"id":"195419"}, +{"id":"132849"}, +{"id":"89941"}, +{"id":"31611"}, +{"id":"207368"}, +{"id":"107746"}, +{"id":"179089"}, +{"id":"156320"}, +{"id":"91525"}, +{"id":"144896"}, +{"id":"29010"}, +{"id":"137615"}, +{"id":"190473"}, +{"id":"187538"}, +{"id":"48665"}, +{"id":"164608"}, +{"id":"103595"}, +{"id":"143149"}, +{"id":"83738"}, +{"id":"174241"}, +{"id":"78785"}, +{"id":"37015"}, +{"id":"154772"}, +{"id":"82086"}, +{"id":"163682"}, +{"id":"112083"}, +{"id":"105172"}, +{"id":"134412"}, +{"id":"173524"}, +{"id":"198627"}, +{"id":"65093"}, +{"id":"51625"}, +{"id":"74093"}, +{"id":"122968"}, +{"id":"198261"}, +{"id":"205947"}, +{"id":"160276"}, +{"id":"122397"}, +{"id":"88176"}, +{"id":"121456"}, +{"id":"155854"}, +{"id":"105793"}, +{"id":"187475"}, +{"id":"66197"}, +{"id":"208848"}, +{"id":"38455"}, +{"id":"40364"}, +{"id":"216310"}, +{"id":"172155"}, +{"id":"103313"}, +{"id":"101887"}, +{"id":"134569"}, +{"id":"175955"}, +{"id":"79602"}, +{"id":"117529"}, +{"id":"148065"}, +{"id":"56388"}, +{"id":"187632"}, +{"id":"134745"}, +{"id":"98387"}, +{"id":"83054"}, +{"id":"10113"}, +{"id":"58639"}, +{"id":"49860"}, +{"id":"15864"}, +{"id":"185351"}, +{"id":"2297"}, +{"id":"24794"}, +{"id":"168139"}, +{"id":"174341"}, +{"id":"32746"}, +{"id":"191566"}, +{"id":"126300"}, +{"id":"204606"}, +{"id":"130205"}, +{"id":"121492"}, +{"id":"59219"}, +{"id":"160484"}, +{"id":"24764"}, +{"id":"57378"}, +{"id":"156758"}, +{"id":"124592"}, +{"id":"76331"}, +{"id":"104180"}, +{"id":"180541"}, +{"id":"25299"}, +{"id":"150346"}, +{"id":"186178"}, +{"id":"137566"}, +{"id":"13294"}, +{"id":"191141"}, +{"id":"213550"}, +{"id":"45904"}, +{"id":"65986"}, +{"id":"157632"}, +{"id":"176672"}, +{"id":"138727"}, +{"id":"210741"}, +{"id":"106744"}, +{"id":"80944"}, +{"id":"194344"}, +{"id":"128770"}, +{"id":"61464"}, +{"id":"42750"}, +{"id":"165892"}, +{"id":"197937"}, +{"id":"68168"}, +{"id":"125876"}, +{"id":"128410"}, +{"id":"70478"}, +{"id":"120326"}, +{"id":"85317"}, +{"id":"33732"}, +{"id":"196800"}, +{"id":"78349"}, +{"id":"98424"}, +{"id":"103813"}, +{"id":"142019"}, +{"id":"172622"}, +{"id":"158998"}, +{"id":"96637"}, +{"id":"96797"}, +{"id":"62784"}, +{"id":"110834"}, +{"id":"183829"}, +{"id":"145412"}, +{"id":"158925"}, +{"id":"106957"}, +{"id":"15891"}, +{"id":"169988"}, +{"id":"182449"}, +{"id":"217474"}, +{"id":"182645"}, +{"id":"83854"}, +{"id":"131333"}, +{"id":"212093"}, +{"id":"204658"}, +{"id":"13"}, +{"id":"147939"}, +{"id":"202189"}, +{"id":"158662"}, +{"id":"21323"}, +{"id":"118215"}, +{"id":"170351"}, +{"id":"181992"}, +{"id":"203831"}, +{"id":"178180"}, +{"id":"139177"}, +{"id":"215722"}, +{"id":"53908"}, +{"id":"107188"}, +{"id":"156737"}, +{"id":"195328"}, +{"id":"146142"}, +{"id":"79941"}, +{"id":"2109"}, +{"id":"41122"}, +{"id":"89015"}, +{"id":"45117"}, +{"id":"99188"}, +{"id":"111027"}, +{"id":"43576"}, +{"id":"193227"}, +{"id":"184055"}, +{"id":"39304"}, +{"id":"105639"}, +{"id":"167438"}, +{"id":"71663"}, +{"id":"9439"}, +{"id":"217445"}, +{"id":"59240"}, +{"id":"195423"}, +{"id":"74831"}, +{"id":"107049"}, +{"id":"124586"}, +{"id":"82985"}, +{"id":"176841"}, +{"id":"22437"}, +{"id":"185172"}, +{"id":"13347"}, +{"id":"162157"}, +{"id":"191252"}, +{"id":"82064"}, +{"id":"25313"}, +{"id":"37517"}, +{"id":"75222"}, +{"id":"58171"}, +{"id":"177121"}, +{"id":"32044"}, +{"id":"133201"}, +{"id":"78508"}, +{"id":"29688"}, +{"id":"10983"}, +{"id":"220291"}, +{"id":"16844"}, +{"id":"1647"}, +{"id":"94688"}, +{"id":"136672"}, +{"id":"110132"}, +{"id":"158848"}, +{"id":"109347"}, +{"id":"100415"}, +{"id":"23976"}, +{"id":"203155"}, +{"id":"185167"}, +{"id":"70909"}, +{"id":"115317"}, +{"id":"157712"}, +{"id":"29124"}, +{"id":"147132"}, +{"id":"12641"}, +{"id":"205999"}, +{"id":"206301"}, +{"id":"182255"}, +{"id":"127818"}, +{"id":"151017"}, +{"id":"20258"}, +{"id":"75751"}, +{"id":"40184"}, +{"id":"4871"}, +{"id":"177646"}, +{"id":"13231"}, +{"id":"51735"}, +{"id":"127534"}, +{"id":"136466"}, +{"id":"68951"}, +{"id":"1520"}, +{"id":"51838"}, +{"id":"48191"}, +{"id":"55001"}, +{"id":"37866"}, +{"id":"66430"}, +{"id":"190841"}, +{"id":"137031"}, +{"id":"72424"}, +{"id":"464"}, +{"id":"2928"}, +{"id":"173868"}, +{"id":"52623"}, +{"id":"71055"}, +{"id":"135371"}, +{"id":"111139"}, +{"id":"160967"}, +{"id":"25646"}, +{"id":"185455"}, +{"id":"34627"}, +{"id":"93795"}, +{"id":"35546"}, +{"id":"151750"}, +{"id":"75241"}, +{"id":"184396"}, +{"id":"158676"}, +{"id":"197480"}, +{"id":"113694"}, +{"id":"171105"}, +{"id":"208358"}, +{"id":"193091"}, +{"id":"104247"}, +{"id":"4342"}, +{"id":"171580"}, +{"id":"89794"}, +{"id":"92690"}, +{"id":"127106"}, +{"id":"64602"}, +{"id":"179145"}, +{"id":"107124"}, +{"id":"45245"}, +{"id":"22781"}, +{"id":"68929"}, +{"id":"135345"}, +{"id":"80915"}, +{"id":"137382"}, +{"id":"188771"}, +{"id":"1667"}, +{"id":"51455"}, +{"id":"189036"}, +{"id":"42352"}, +{"id":"116556"}, +{"id":"11489"}, +{"id":"92330"}, +{"id":"62790"}, +{"id":"132052"}, +{"id":"143852"}, +{"id":"184288"}, +{"id":"29436"}, +{"id":"23844"}, +{"id":"125831"}, +{"id":"120251"}, +{"id":"192620"}, +{"id":"51662"}, +{"id":"85246"}, +{"id":"161753"}, +{"id":"172862"}, +{"id":"69565"}, +{"id":"107047"}, +{"id":"45049"}, +{"id":"181712"}, +{"id":"93299"}, +{"id":"56036"}, +{"id":"121354"}, +{"id":"169786"}, +{"id":"100140"}, +{"id":"113507"}, +{"id":"96147"}, +{"id":"42431"}, +{"id":"8004"}, +{"id":"157119"}, +{"id":"22919"}, +{"id":"70810"}, +{"id":"201945"}, +{"id":"157688"}, +{"id":"149955"}, +{"id":"127319"}, +{"id":"96957"}, +{"id":"42924"}, +{"id":"14769"}, +{"id":"207201"}, +{"id":"53429"}, +{"id":"180282"}, +{"id":"131062"}, +{"id":"88807"}, +{"id":"73074"}, +{"id":"85265"}, +{"id":"168158"}, +{"id":"145702"}, +{"id":"26115"}, +{"id":"139255"}, +{"id":"218653"}, +{"id":"193969"}, +{"id":"196009"}, +{"id":"66656"}, +{"id":"78432"}, +{"id":"50130"}, +{"id":"108308"}, +{"id":"39522"}, +{"id":"94961"}, +{"id":"172698"}, +{"id":"66027"}, +{"id":"112652"}, +{"id":"154206"}, +{"id":"55876"}, +{"id":"217126"}, +{"id":"130280"}, +{"id":"43953"}, +{"id":"45140"}, +{"id":"151461"}, +{"id":"12590"}, +{"id":"165124"}, +{"id":"174829"}, +{"id":"74335"}, +{"id":"110585"}, +{"id":"35174"}, +{"id":"138446"}, +{"id":"43246"}, +{"id":"176930"}, +{"id":"96280"}, +{"id":"67523"}, +{"id":"39135"}, +{"id":"216452"}, +{"id":"29424"}, +{"id":"188135"}, +{"id":"209272"}, +{"id":"23046"}, +{"id":"120875"}, +{"id":"154906"}, +{"id":"188789"}, +{"id":"107652"}, +{"id":"12668"}, +{"id":"168739"}, +{"id":"152444"}, +{"id":"14015"}, +{"id":"81879"}, +{"id":"165913"}, +{"id":"61235"}, +{"id":"199682"}, +{"id":"68274"}, +{"id":"115603"}, +{"id":"210588"}, +{"id":"3282"}, +{"id":"15517"}, +{"id":"156614"}, +{"id":"152000"}, +{"id":"41447"}, +{"id":"83604"}, +{"id":"189392"}, +{"id":"158387"}, +{"id":"16487"}, +{"id":"163832"}, +{"id":"10014"}, +{"id":"9436"}, +{"id":"180546"}, +{"id":"130991"}, +{"id":"191018"}, +{"id":"142726"}, +{"id":"119454"}, +{"id":"198292"}, +{"id":"98673"}, +{"id":"89531"}, +{"id":"181266"}, +{"id":"90185"}, +{"id":"98198"}, +{"id":"46047"}, +{"id":"122100"}, +{"id":"49130"}, +{"id":"149780"}, +{"id":"166867"}, +{"id":"94989"}, +{"id":"186153"}, +{"id":"151191"}, +{"id":"170742"}, +{"id":"175411"}, +{"id":"18661"}, +{"id":"154468"}, +{"id":"218076"}, +{"id":"150422"}, +{"id":"161721"}, +{"id":"108106"}, +{"id":"165721"}, +{"id":"46330"}, +{"id":"48868"}, +{"id":"81976"}, +{"id":"152288"}, +{"id":"155279"}, +{"id":"185575"}, +{"id":"8451"}, +{"id":"188563"}, +{"id":"210363"}, +{"id":"27378"}, +{"id":"112929"}, +{"id":"157426"}, +{"id":"92658"}, +{"id":"182101"}, +{"id":"107280"}, +{"id":"148920"}, +{"id":"43064"}, +{"id":"62676"}, +{"id":"195506"}, +{"id":"122651"}, +{"id":"3124"}, +{"id":"36942"}, +{"id":"212398"}, +{"id":"181655"}, +{"id":"24225"}, +{"id":"129189"}, +{"id":"75205"}, +{"id":"124955"}, +{"id":"100833"}, +{"id":"104605"}, +{"id":"204472"}, +{"id":"32547"}, +{"id":"163833"}, +{"id":"72914"}, +{"id":"153359"}, +{"id":"61556"}, +{"id":"33549"}, +{"id":"29190"}, +{"id":"50990"}, +{"id":"109179"}, +{"id":"195467"}, +{"id":"140408"}, +{"id":"116285"}, +{"id":"45432"}, +{"id":"31925"}, +{"id":"87736"}, +{"id":"126894"}, +{"id":"33364"}, +{"id":"24523"}, +{"id":"21573"}, +{"id":"57349"}, +{"id":"116409"}, +{"id":"161135"}, +{"id":"96625"}, +{"id":"137466"}, +{"id":"125002"}, +{"id":"191196"}, +{"id":"86463"}, +{"id":"185135"}, +{"id":"99722"}, +{"id":"46881"}, +{"id":"168826"}, +{"id":"26157"}, +{"id":"53690"}, +{"id":"45804"}, +{"id":"41734"}, +{"id":"136544"}, +{"id":"103351"}, +{"id":"175168"}, +{"id":"194045"}, +{"id":"199814"}, +{"id":"42294"}, +{"id":"86192"}, +{"id":"148314"}, +{"id":"45875"}, +{"id":"19428"}, +{"id":"5884"}, +{"id":"168064"}, +{"id":"146056"}, +{"id":"27067"}, +{"id":"96168"}, +{"id":"167368"}, +{"id":"45725"}, +{"id":"175317"}, +{"id":"173276"}, +{"id":"213540"}, +{"id":"11527"}, +{"id":"206778"}, +{"id":"107401"}, +{"id":"41905"}, +{"id":"74705"}, +{"id":"55087"}, +{"id":"179287"}, +{"id":"167792"}, +{"id":"182456"}, +{"id":"102495"}, +{"id":"170723"}, +{"id":"498"}, +{"id":"106695"}, +{"id":"62136"}, +{"id":"208888"}, +{"id":"149521"}, +{"id":"118340"}, +{"id":"17357"}, +{"id":"115928"}, +{"id":"172178"}, +{"id":"168920"}, +{"id":"156728"}, +{"id":"66933"}, +{"id":"212948"}, +{"id":"49011"}, +{"id":"194747"}, +{"id":"127951"}, +{"id":"29478"}, +{"id":"26439"}, +{"id":"152330"}, +{"id":"154888"}, +{"id":"182054"}, +{"id":"73041"}, +{"id":"99015"}, +{"id":"2164"}, +{"id":"71798"}, +{"id":"220549"}, +{"id":"26981"}, +{"id":"175076"}, +{"id":"115447"}, +{"id":"91057"}, +{"id":"136696"}, +{"id":"117522"}, +{"id":"27338"}, +{"id":"94900"}, +{"id":"163985"}, +{"id":"194201"}, +{"id":"108900"}, +{"id":"110989"}, +{"id":"157775"}, +{"id":"141591"}, +{"id":"167240"}, +{"id":"112077"}, +{"id":"199952"}, +{"id":"181188"}, +{"id":"99061"}, +{"id":"209373"}, +{"id":"47951"}, +{"id":"129442"}, +{"id":"77344"}, +{"id":"135858"}, +{"id":"150450"}, +{"id":"22248"}, +{"id":"69775"}, +{"id":"5479"}, +{"id":"180506"}, +{"id":"79446"}, +{"id":"58830"}, +{"id":"56136"}, +{"id":"14326"}, +{"id":"156725"}, +{"id":"39821"}, +{"id":"169490"}, +{"id":"98036"}, +{"id":"184985"}, +{"id":"179252"}, +{"id":"118513"}, +{"id":"181031"}, +{"id":"183030"}, +{"id":"42268"}, +{"id":"200059"}, +{"id":"93831"}, +{"id":"85098"}, +{"id":"40289"}, +{"id":"157342"}, +{"id":"143838"}, +{"id":"62576"}, +{"id":"122293"}, +{"id":"161719"}, +{"id":"71416"}, +{"id":"7754"}, +{"id":"62618"}, +{"id":"122168"}, +{"id":"6913"}, +{"id":"179045"}, +{"id":"117947"}, +{"id":"177471"}, +{"id":"209361"}, +{"id":"152245"}, +{"id":"57166"}, +{"id":"145769"}, +{"id":"132778"}, +{"id":"150067"}, +{"id":"153072"}, +{"id":"170477"}, +{"id":"8701"}, +{"id":"60828"}, +{"id":"199718"}, +{"id":"100982"}, +{"id":"156642"}, +{"id":"92427"}, +{"id":"20935"}, +{"id":"176783"}, +{"id":"188272"}, +{"id":"81997"}, +{"id":"139348"}, +{"id":"194665"}, +{"id":"175745"}, +{"id":"135227"}, +{"id":"29753"}, +{"id":"94464"}, +{"id":"125009"}, +{"id":"167528"}, +{"id":"156887"}, +{"id":"190812"}, +{"id":"129941"}, +{"id":"70769"}, +{"id":"206415"}, +{"id":"91988"}, +{"id":"30460"}, +{"id":"111192"}, +{"id":"63602"}, +{"id":"216208"}, +{"id":"218340"}, +{"id":"149340"}, +{"id":"141274"}, +{"id":"56591"}, +{"id":"132540"}, +{"id":"140746"}, +{"id":"206830"}, +{"id":"49628"}, +{"id":"77593"}, +{"id":"156557"}, +{"id":"139078"}, +{"id":"148310"}, +{"id":"66401"}, +{"id":"20386"}, +{"id":"45404"}, +{"id":"215463"}, +{"id":"169478"}, +{"id":"22488"}, +{"id":"38020"}, +{"id":"213874"}, +{"id":"66781"}, +{"id":"127263"}, +{"id":"42930"}, +{"id":"80832"}, +{"id":"125119"}, +{"id":"211174"}, +{"id":"186912"}, +{"id":"148096"}, +{"id":"149794"}, +{"id":"162837"}, +{"id":"157776"}, +{"id":"133376"}, +{"id":"187461"}, +{"id":"215918"}, +{"id":"114242"}, +{"id":"151525"}, +{"id":"182939"}, +{"id":"139923"}, +{"id":"187732"}, +{"id":"129541"}, +{"id":"182822"}, +{"id":"163111"}, +{"id":"92564"}, +{"id":"119150"}, +{"id":"203037"}, +{"id":"42346"}, +{"id":"33520"}, +{"id":"136025"}, +{"id":"200947"}, +{"id":"200355"}, +{"id":"214985"}, +{"id":"35938"}, +{"id":"191578"}, +{"id":"141754"}, +{"id":"125911"}, +{"id":"219994"}, +{"id":"94163"}, +{"id":"198377"}, +{"id":"126366"}, +{"id":"155684"}, +{"id":"75386"}, +{"id":"36959"}, +{"id":"8340"}, +{"id":"117275"}, +{"id":"96194"}, +{"id":"89742"}, +{"id":"59744"}, +{"id":"152179"}, +{"id":"86372"}, +{"id":"178662"}, +{"id":"82782"}, +{"id":"37804"}, +{"id":"47201"}, +{"id":"181756"}, +{"id":"88271"}, +{"id":"64343"}, +{"id":"70895"}, +{"id":"213192"}, +{"id":"161137"}, +{"id":"13806"}, +{"id":"85467"}, +{"id":"212875"}, +{"id":"110205"}, +{"id":"32255"}, +{"id":"78374"}, +{"id":"149701"}, +{"id":"141263"}, +{"id":"165303"}, +{"id":"77062"}, +{"id":"44406"}, +{"id":"113068"}, +{"id":"169206"}, +{"id":"124164"}, +{"id":"71264"}, +{"id":"81637"}, +{"id":"59997"}, +{"id":"15199"}, +{"id":"18382"}, +{"id":"22758"}, +{"id":"20969"}, +{"id":"154819"}, +{"id":"177588"}, +{"id":"112973"}, +{"id":"218176"}, +{"id":"115785"}, +{"id":"55936"}, +{"id":"57634"}, +{"id":"156793"}, +{"id":"101509"}, +{"id":"109645"}, +{"id":"57888"}, +{"id":"168039"}, +{"id":"135518"}, +{"id":"49142"}, +{"id":"210064"}, +{"id":"152724"}, +{"id":"95820"}, +{"id":"22000"}, +{"id":"165617"}, +{"id":"15718"}, +{"id":"179637"}, +{"id":"192482"}, +{"id":"146390"}, +{"id":"191822"}, +{"id":"158898"}, +{"id":"36944"}, +{"id":"104886"}, +{"id":"177613"}, +{"id":"75231"}, +{"id":"88248"}, +{"id":"156174"}, +{"id":"175064"}, +{"id":"163765"}, +{"id":"51242"}, +{"id":"126999"}, +{"id":"108735"}, +{"id":"41469"}, +{"id":"54900"}, +{"id":"10608"}, +{"id":"87955"}, +{"id":"160395"}, +{"id":"99868"}, +{"id":"44735"}, +{"id":"147194"}, +{"id":"113293"}, +{"id":"145117"}, +{"id":"21957"}, +{"id":"156055"}, +{"id":"67518"}, +{"id":"2068"}, +{"id":"40263"}, +{"id":"64649"}, +{"id":"5386"}, +{"id":"186574"}, +{"id":"187886"}, +{"id":"110265"}, +{"id":"136545"}, +{"id":"176740"}, +{"id":"171621"}, +{"id":"48408"}, +{"id":"209590"}, +{"id":"108354"}, +{"id":"123008"}, +{"id":"150049"}, +{"id":"146993"}, +{"id":"158649"}, +{"id":"204717"}, +{"id":"132681"}, +{"id":"146413"}, +{"id":"210760"}, +{"id":"59914"}, +{"id":"171677"}, +{"id":"66375"}, +{"id":"12076"}, +{"id":"25678"}, +{"id":"72367"}, +{"id":"73672"}, +{"id":"5087"}, +{"id":"161471"}, +{"id":"203204"}, +{"id":"129810"}, +{"id":"167929"}, +{"id":"158787"}, +{"id":"32854"}, +{"id":"77950"}, +{"id":"116408"}, +{"id":"97091"}, +{"id":"131116"}, +{"id":"147150"}, +{"id":"15856"}, +{"id":"194376"}, +{"id":"205663"}, +{"id":"201444"}, +{"id":"56217"}, +{"id":"15811"}, +{"id":"191176"}, +{"id":"190486"}, +{"id":"210007"}, +{"id":"63447"}, +{"id":"102799"}, +{"id":"128294"}, +{"id":"155462"}, +{"id":"142313"}, +{"id":"98544"}, +{"id":"203662"}, +{"id":"42842"}, +{"id":"146758"}, +{"id":"102396"}, +{"id":"111246"}, +{"id":"45386"}, +{"id":"133805"}, +{"id":"123443"}, +{"id":"182762"}, +{"id":"165406"}, +{"id":"182557"}, +{"id":"42622"}, +{"id":"136387"}, +{"id":"3788"}, +{"id":"51787"}, +{"id":"43499"}, +{"id":"139505"}, +{"id":"160336"}, +{"id":"54170"}, +{"id":"111663"}, +{"id":"149686"}, +{"id":"165271"}, +{"id":"94321"}, +{"id":"164689"}, +{"id":"68463"}, +{"id":"103684"}, +{"id":"109779"}, +{"id":"119567"}, +{"id":"146812"}, +{"id":"103740"}, +{"id":"194671"}, +{"id":"69595"}, +{"id":"115981"}, +{"id":"84303"}, +{"id":"91203"}, +{"id":"220181"}, +{"id":"115896"}, +{"id":"31739"}, +{"id":"180622"}, +{"id":"119363"}, +{"id":"199493"}, +{"id":"19297"}, +{"id":"140595"}, +{"id":"166882"}, +{"id":"136099"}, +{"id":"65316"}, +{"id":"51885"}, +{"id":"29803"}, +{"id":"154961"}, +{"id":"193129"}, +{"id":"147496"}, +{"id":"122815"}, +{"id":"200509"}, +{"id":"128794"}, +{"id":"121825"}, +{"id":"5971"}, +{"id":"177504"}, +{"id":"157677"}, +{"id":"1528"}, +{"id":"37355"}, +{"id":"66808"}, +{"id":"163813"}, +{"id":"130565"}, +{"id":"180570"}, +{"id":"125094"}, +{"id":"153459"}, +{"id":"189246"}, +{"id":"43352"}, +{"id":"194684"}, +{"id":"115693"}, +{"id":"34058"}, +{"id":"58575"}, +{"id":"168418"}, +{"id":"146131"}, +{"id":"9992"}, +{"id":"172825"}, +{"id":"80809"}, +{"id":"97518"}, +{"id":"178414"}, +{"id":"135752"}, +{"id":"141647"}, +{"id":"158763"}, +{"id":"164434"}, +{"id":"3870"}, +{"id":"69511"}, +{"id":"160928"}, +{"id":"178630"}, +{"id":"181700"}, +{"id":"1753"}, +{"id":"212018"}, +{"id":"215151"}, +{"id":"205771"}, +{"id":"189692"}, +{"id":"216070"}, +{"id":"89885"}, +{"id":"120313"}, +{"id":"23557"}, +{"id":"152897"}, +{"id":"9262"}, +{"id":"208122"}, +{"id":"113959"}, +{"id":"80927"}, +{"id":"209234"}, +{"id":"84022"}, +{"id":"146243"}, +{"id":"97771"}, +{"id":"219116"}, +{"id":"103815"}, +{"id":"183819"}, +{"id":"40451"}, +{"id":"69022"}, +{"id":"104487"}, +{"id":"35461"}, +{"id":"121614"}, +{"id":"48194"}, +{"id":"131702"}, +{"id":"66249"}, +{"id":"138522"}, +{"id":"210952"}, +{"id":"200582"}, +{"id":"6234"}, +{"id":"63874"}, +{"id":"61980"}, +{"id":"96041"}, +{"id":"135273"}, +{"id":"27751"}, +{"id":"39368"}, +{"id":"8754"}, +{"id":"209949"}, +{"id":"79461"}, +{"id":"129025"}, +{"id":"103534"}, +{"id":"159440"}, +{"id":"163201"}, +{"id":"69186"}, +{"id":"79036"}, +{"id":"190703"}, +{"id":"39193"}, +{"id":"45839"}, +{"id":"84251"}, +{"id":"218488"}, +{"id":"13270"}, +{"id":"20416"}, +{"id":"69411"}, +{"id":"140507"}, +{"id":"35358"}, +{"id":"180926"}, +{"id":"93173"}, +{"id":"62422"}, +{"id":"209991"}, +{"id":"89950"}, +{"id":"172616"}, +{"id":"121532"}, +{"id":"215455"}, +{"id":"104738"}, +{"id":"42252"}, +{"id":"113700"}, +{"id":"22326"}, +{"id":"127892"}, +{"id":"145494"}, +{"id":"170915"}, +{"id":"24793"}, +{"id":"36565"}, +{"id":"9984"}, +{"id":"205626"}, +{"id":"219279"}, +{"id":"159388"}, +{"id":"134062"}, +{"id":"182652"}, +{"id":"72299"}, +{"id":"132370"}, +{"id":"19963"}, +{"id":"14262"}, +{"id":"8639"}, +{"id":"116025"}, +{"id":"121172"}, +{"id":"192163"}, +{"id":"112450"}, +{"id":"24131"}, +{"id":"186715"}, +{"id":"181810"}, +{"id":"209793"}, +{"id":"137199"}, +{"id":"202367"}, +{"id":"163419"}, +{"id":"72149"}, +{"id":"101267"}, +{"id":"220073"}, +{"id":"194183"}, +{"id":"12650"}, +{"id":"764"}, +{"id":"39340"}, +{"id":"115645"}, +{"id":"149949"}, +{"id":"2070"}, +{"id":"105453"}, +{"id":"52238"}, +{"id":"192496"}, +{"id":"147149"}, +{"id":"135754"}, +{"id":"149375"}, +{"id":"147562"}, +{"id":"73429"}, +{"id":"12659"}, +{"id":"202541"}, +{"id":"218835"}, +{"id":"96941"}, +{"id":"83670"}, +{"id":"158704"}, +{"id":"59330"}, +{"id":"8369"}, +{"id":"22069"}, +{"id":"153002"}, +{"id":"29616"}, +{"id":"52943"}, +{"id":"35524"}, +{"id":"159033"}, +{"id":"16499"}, +{"id":"115671"}, +{"id":"21895"}, +{"id":"182383"}, +{"id":"29312"}, +{"id":"191617"}, +{"id":"68104"}, +{"id":"1650"}, +{"id":"155877"}, +{"id":"23270"}, +{"id":"10331"}, +{"id":"12991"}, +{"id":"206396"}, +{"id":"102607"}, +{"id":"55913"}, +{"id":"113721"}, +{"id":"130415"}, +{"id":"159550"}, +{"id":"79090"}, +{"id":"213043"}, +{"id":"68324"}, +{"id":"19138"}, +{"id":"176303"}, +{"id":"118442"}, +{"id":"66750"}, +{"id":"38294"}, +{"id":"145585"}, +{"id":"98856"}, +{"id":"1635"}, +{"id":"151209"}, +{"id":"16153"}, +{"id":"171593"}, +{"id":"67686"}, +{"id":"79223"}, +{"id":"302"}, +{"id":"67484"}, +{"id":"106793"}, +{"id":"117580"}, +{"id":"46862"}, +{"id":"60889"}, +{"id":"208795"}, +{"id":"180562"}, +{"id":"65686"}, +{"id":"78715"}, +{"id":"195944"}, +{"id":"213374"}, +{"id":"75428"}, +{"id":"73204"}, +{"id":"19972"}, +{"id":"63505"}, +{"id":"89768"}, +{"id":"126334"}, +{"id":"108316"}, +{"id":"191577"}, +{"id":"154477"}, +{"id":"156491"}, +{"id":"37482"}, +{"id":"11807"}, +{"id":"150736"}, +{"id":"55279"}, +{"id":"61582"}, +{"id":"220141"}, +{"id":"61233"}, +{"id":"99219"}, +{"id":"83643"}, +{"id":"36855"}, +{"id":"184367"}, +{"id":"8583"}, +{"id":"51603"}, +{"id":"76656"}, +{"id":"168816"}, +{"id":"67782"}, +{"id":"127060"}, +{"id":"96212"}, +{"id":"89370"}, +{"id":"46442"}, +{"id":"188750"}, +{"id":"189427"}, +{"id":"66010"}, +{"id":"16432"}, +{"id":"161080"}, +{"id":"5195"}, +{"id":"124339"}, +{"id":"60495"}, +{"id":"198835"}, +{"id":"162449"}, +{"id":"178980"}, +{"id":"10946"}, +{"id":"65746"}, +{"id":"13964"}, +{"id":"51878"}, +{"id":"114837"}, +{"id":"104215"}, +{"id":"121792"}, +{"id":"52289"}, +{"id":"127848"}, +{"id":"123512"}, +{"id":"143536"}, +{"id":"65195"}, +{"id":"31466"}, +{"id":"182593"}, +{"id":"30955"}, +{"id":"209049"}, +{"id":"163204"}, +{"id":"153050"}, +{"id":"83354"}, +{"id":"6931"}, +{"id":"200054"}, +{"id":"74435"}, +{"id":"78630"}, +{"id":"120958"}, +{"id":"102364"}, +{"id":"58008"}, +{"id":"64995"}, +{"id":"133374"}, +{"id":"167355"}, +{"id":"183971"}, +{"id":"84798"}, +{"id":"26840"}, +{"id":"191944"}, +{"id":"150961"}, +{"id":"188783"}, +{"id":"159199"}, +{"id":"74561"}, +{"id":"1437"}, +{"id":"96791"}, +{"id":"99151"}, +{"id":"30909"}, +{"id":"30864"}, +{"id":"121518"}, +{"id":"95175"}, +{"id":"128274"}, +{"id":"110571"}, +{"id":"44445"}, +{"id":"74540"}, +{"id":"36816"}, +{"id":"159390"}, +{"id":"63279"}, +{"id":"88853"}, +{"id":"84089"}, +{"id":"169017"}, +{"id":"77658"}, +{"id":"24653"}, +{"id":"193999"}, +{"id":"141424"}, +{"id":"57012"}, +{"id":"144916"}, +{"id":"17678"}, +{"id":"95823"}, +{"id":"134696"}, +{"id":"148161"}, +{"id":"52872"}, +{"id":"127558"}, +{"id":"79257"}, +{"id":"81174"}, +{"id":"84524"}, +{"id":"56401"}, +{"id":"27498"}, +{"id":"113402"}, +{"id":"108569"}, +{"id":"22202"}, +{"id":"26780"}, +{"id":"151315"}, +{"id":"216934"}, +{"id":"207340"}, +{"id":"17165"}, +{"id":"61499"}, +{"id":"203707"}, +{"id":"118288"}, +{"id":"72803"}, +{"id":"96517"}, +{"id":"30301"}, +{"id":"192177"}, +{"id":"65288"}, +{"id":"219689"}, +{"id":"19829"}, +{"id":"129271"}, +{"id":"178785"}, +{"id":"97891"}, +{"id":"51947"}, +{"id":"32991"}, +{"id":"54254"}, +{"id":"153200"}, +{"id":"78308"}, +{"id":"190603"}, +{"id":"144387"}, +{"id":"220846"}, +{"id":"4028"}, +{"id":"215454"}, +{"id":"127528"}, +{"id":"118180"}, +{"id":"10795"}, +{"id":"170689"}, +{"id":"198274"}, +{"id":"18979"}, +{"id":"34852"}, +{"id":"21915"}, +{"id":"66515"}, +{"id":"191672"}, +{"id":"209601"}, +{"id":"26994"}, +{"id":"67210"}, +{"id":"91640"}, +{"id":"23331"}, +{"id":"63390"}, +{"id":"158299"}, +{"id":"11212"}, +{"id":"155878"}, +{"id":"132267"}, +{"id":"21141"}, +{"id":"216135"}, +{"id":"151973"}, +{"id":"15525"}, +{"id":"219032"}, +{"id":"37238"}, +{"id":"124523"}, +{"id":"75020"}, +{"id":"219467"}, +{"id":"208164"}, +{"id":"186490"}, +{"id":"194515"}, +{"id":"214591"}, +{"id":"183157"}, +{"id":"174906"}, +{"id":"15630"}, +{"id":"4132"}, +{"id":"215815"}, +{"id":"14404"}, +{"id":"136786"}, +{"id":"2512"}, +{"id":"10173"}, +{"id":"201788"}, +{"id":"95735"}, +{"id":"76817"}, +{"id":"183562"}, +{"id":"196048"}, +{"id":"105840"}, +{"id":"181314"}, +{"id":"101269"}, +{"id":"172100"}, +{"id":"81440"}, +{"id":"13751"}, +{"id":"104214"}, +{"id":"136659"}, +{"id":"130678"}, +{"id":"150809"}, +{"id":"76894"}, +{"id":"77957"}, +{"id":"41146"}, +{"id":"142156"}, +{"id":"174941"}, +{"id":"39604"}, +{"id":"186967"}, +{"id":"87079"}, +{"id":"199932"}, +{"id":"49696"}, +{"id":"184747"}, +{"id":"106868"}, +{"id":"91161"}, +{"id":"87857"}, +{"id":"150236"}, +{"id":"163491"}, +{"id":"4249"}, +{"id":"16915"}, +{"id":"178797"}, +{"id":"5692"}, +{"id":"19796"}, +{"id":"2275"}, +{"id":"13994"}, +{"id":"37935"}, +{"id":"122942"}, +{"id":"130215"}, +{"id":"38844"}, +{"id":"172806"}, +{"id":"80935"}, +{"id":"74155"}, +{"id":"96556"}, +{"id":"93965"}, +{"id":"96335"}, +{"id":"35425"}, +{"id":"193158"}, +{"id":"109388"}, +{"id":"186872"}, +{"id":"216522"}, +{"id":"147757"}, +{"id":"138983"}, +{"id":"165545"}, +{"id":"189487"}, +{"id":"33179"}, +{"id":"203221"}, +{"id":"210749"}, +{"id":"8794"}, +{"id":"152017"}, +{"id":"4193"}, +{"id":"41787"}, +{"id":"115510"}, +{"id":"164533"}, +{"id":"181341"}, +{"id":"39419"}, +{"id":"35715"}, +{"id":"122965"}, +{"id":"149867"}, +{"id":"56998"}, +{"id":"44490"}, +{"id":"171990"}, +{"id":"81745"}, +{"id":"33869"}, +{"id":"48232"}, +{"id":"97109"}, +{"id":"119658"}, +{"id":"171286"}, +{"id":"174403"}, +{"id":"87251"}, +{"id":"94407"}, +{"id":"215510"}, +{"id":"211976"}, +{"id":"73982"}, +{"id":"183441"}, +{"id":"18310"}, +{"id":"211622"}, +{"id":"102546"}, +{"id":"14058"}, +{"id":"62356"}, +{"id":"88104"}, +{"id":"174991"}, +{"id":"187192"}, +{"id":"142756"}, +{"id":"44933"}, +{"id":"56975"}, +{"id":"210841"}, +{"id":"171428"}, +{"id":"133267"}, +{"id":"147934"}, +{"id":"25338"}, +{"id":"160858"}, +{"id":"18087"}, +{"id":"87614"}, +{"id":"2541"}, +{"id":"48683"}, +{"id":"134018"}, +{"id":"192227"}, +{"id":"99486"}, +{"id":"29675"}, +{"id":"97437"}, +{"id":"192581"}, +{"id":"128334"}, +{"id":"77385"}, +{"id":"2077"}, +{"id":"36650"}, +{"id":"214033"}, +{"id":"183476"}, +{"id":"38745"}, +{"id":"111931"}, +{"id":"69746"}, +{"id":"13874"}, +{"id":"97338"}, +{"id":"183107"}, +{"id":"188565"}, +{"id":"33152"}, +{"id":"208756"}, +{"id":"146265"}, +{"id":"36727"}, +{"id":"118462"}, +{"id":"95417"}, +{"id":"18696"}, +{"id":"131491"}, +{"id":"144809"}, +{"id":"215969"}, +{"id":"200624"}, +{"id":"75220"}, +{"id":"181293"}, +{"id":"35917"}, +{"id":"61731"}, +{"id":"95645"}, +{"id":"7813"}, +{"id":"114853"}, +{"id":"91912"}, +{"id":"168095"}, +{"id":"170487"}, +{"id":"38773"}, +{"id":"28249"}, +{"id":"19930"}, +{"id":"51128"}, +{"id":"166400"}, +{"id":"193320"}, +{"id":"4444"}, +{"id":"204337"}, +{"id":"46426"}, +{"id":"18662"}, +{"id":"208160"}, +{"id":"190216"}, +{"id":"132725"}, +{"id":"186634"}, +{"id":"28143"}, +{"id":"209349"}, +{"id":"6534"}, +{"id":"191851"}, +{"id":"66023"}, +{"id":"201072"}, +{"id":"31467"}, +{"id":"196879"}, +{"id":"151394"}, +{"id":"196901"}, +{"id":"44764"}, +{"id":"147692"}, +{"id":"115916"}, +{"id":"155432"}, +{"id":"91278"}, +{"id":"175265"}, +{"id":"204666"}, +{"id":"166023"}, +{"id":"26219"}, +{"id":"44760"}, +{"id":"9210"}, +{"id":"32214"}, +{"id":"87894"}, +{"id":"191653"}, +{"id":"156179"}, +{"id":"161789"}, +{"id":"103380"}, +{"id":"30101"}, +{"id":"72879"}, +{"id":"20357"}, +{"id":"97011"}, +{"id":"91324"}, +{"id":"180047"}, +{"id":"14905"}, +{"id":"86633"}, +{"id":"205719"}, +{"id":"133475"}, +{"id":"197979"}, +{"id":"150907"}, +{"id":"35875"}, +{"id":"218351"}, +{"id":"100821"}, +{"id":"143942"}, +{"id":"123009"}, +{"id":"201171"}, +{"id":"105847"}, +{"id":"96121"}, +{"id":"77477"}, +{"id":"131825"}, +{"id":"115769"}, +{"id":"161862"}, +{"id":"55000"}, +{"id":"58564"}, +{"id":"189391"}, +{"id":"62404"}, +{"id":"70628"}, +{"id":"85849"}, +{"id":"89337"}, +{"id":"28874"}, +{"id":"121014"}, +{"id":"43210"}, +{"id":"184239"}, +{"id":"99014"}, +{"id":"160925"}, +{"id":"178265"}, +{"id":"125748"}, +{"id":"185234"}, +{"id":"41885"}, +{"id":"20573"}, +{"id":"148246"}, +{"id":"182116"}, +{"id":"184664"}, +{"id":"177293"}, +{"id":"69245"}, +{"id":"137"}, +{"id":"102833"}, +{"id":"128281"}, +{"id":"170343"}, +{"id":"176902"}, +{"id":"139752"}, +{"id":"195024"}, +{"id":"32765"}, +{"id":"30466"}, +{"id":"35673"}, +{"id":"37335"}, +{"id":"19017"}, +{"id":"93088"}, +{"id":"197629"}, +{"id":"14844"}, +{"id":"10558"}, +{"id":"68984"}, +{"id":"120495"}, +{"id":"111196"}, +{"id":"14237"}, +{"id":"89066"}, +{"id":"37249"}, +{"id":"85881"}, +{"id":"202952"}, +{"id":"167398"}, +{"id":"59518"}, +{"id":"61120"}, +{"id":"151"}, +{"id":"141598"}, +{"id":"183220"}, +{"id":"114579"}, +{"id":"22955"}, +{"id":"68596"}, +{"id":"18149"}, +{"id":"10845"}, +{"id":"123086"}, +{"id":"209326"}, +{"id":"190245"}, +{"id":"115488"}, +{"id":"124414"}, +{"id":"128082"}, +{"id":"192354"}, +{"id":"125172"}, +{"id":"181218"}, +{"id":"75817"}, +{"id":"13023"}, +{"id":"30326"}, +{"id":"15507"}, +{"id":"23056"}, +{"id":"99503"}, +{"id":"210602"}, +{"id":"181827"}, +{"id":"150446"}, +{"id":"30293"}, +{"id":"210015"}, +{"id":"123690"}, +{"id":"206419"}, +{"id":"150396"}, +{"id":"44030"}, +{"id":"52159"}, +{"id":"87811"}, +{"id":"39055"}, +{"id":"183764"}, +{"id":"163149"}, +{"id":"53487"}, +{"id":"165128"}, +{"id":"211576"}, +{"id":"62492"}, +{"id":"189841"}, +{"id":"179290"}, +{"id":"50563"}, +{"id":"204814"}, +{"id":"187534"}, +{"id":"5355"}, +{"id":"106171"}, +{"id":"96113"}, +{"id":"44738"}, +{"id":"85515"}, +{"id":"213174"}, +{"id":"27350"}, +{"id":"67944"}, +{"id":"84033"}, +{"id":"193530"}, +{"id":"160847"}, +{"id":"12234"}, +{"id":"171171"}, +{"id":"193519"}, +{"id":"159638"}, +{"id":"44641"}, +{"id":"98737"}, +{"id":"217794"}, +{"id":"156418"}, +{"id":"83785"}, +{"id":"187636"}, +{"id":"219333"}, +{"id":"204414"}, +{"id":"67701"}, +{"id":"177666"}, +{"id":"120992"}, +{"id":"193644"}, +{"id":"202894"}, +{"id":"179011"}, +{"id":"56198"}, +{"id":"81936"}, +{"id":"103917"}, +{"id":"8932"}, +{"id":"19281"}, +{"id":"42152"}, +{"id":"177329"}, +{"id":"158607"}, +{"id":"209211"}, +{"id":"34821"}, +{"id":"87016"}, +{"id":"104213"}, +{"id":"168979"}, +{"id":"69810"}, +{"id":"212759"}, +{"id":"202007"}, +{"id":"195017"}, +{"id":"131858"}, +{"id":"25787"}, +{"id":"180795"}, +{"id":"62290"}, +{"id":"130485"}, +{"id":"90499"}, +{"id":"55058"}, +{"id":"4896"}, +{"id":"190843"}, +{"id":"124799"}, +{"id":"6786"}, +{"id":"120428"}, +{"id":"35082"}, +{"id":"174960"}, +{"id":"71015"}, +{"id":"176072"}, +{"id":"72652"}, +{"id":"27789"}, +{"id":"176096"}, +{"id":"78311"}, +{"id":"40764"}, +{"id":"78925"}, +{"id":"33167"}, +{"id":"38222"}, +{"id":"141973"}, +{"id":"114748"}, +{"id":"119656"}, +{"id":"206817"}, +{"id":"99580"}, +{"id":"147327"}, +{"id":"53282"}, +{"id":"206555"}, +{"id":"31708"}, +{"id":"97431"}, +{"id":"68895"}, +{"id":"53878"}, +{"id":"198789"}, +{"id":"14225"}, +{"id":"28367"}, +{"id":"114734"}, +{"id":"96690"}, +{"id":"18474"}, +{"id":"72824"}, +{"id":"49658"}, +{"id":"214177"}, +{"id":"70900"}, +{"id":"141434"}, +{"id":"138021"}, +{"id":"15884"}, +{"id":"125668"}, +{"id":"126976"}, +{"id":"84243"}, +{"id":"18096"}, +{"id":"69293"}, +{"id":"192219"}, +{"id":"109522"}, +{"id":"210378"}, +{"id":"189241"}, +{"id":"22041"}, +{"id":"120405"}, +{"id":"91443"}, +{"id":"179250"}, +{"id":"173726"}, +{"id":"98960"}, +{"id":"70698"}, +{"id":"7678"}, +{"id":"168313"}, +{"id":"27352"}, +{"id":"207485"}, +{"id":"3118"}, +{"id":"89487"}, +{"id":"90263"}, +{"id":"70224"}, +{"id":"69112"}, +{"id":"159095"}, +{"id":"94025"}, +{"id":"125399"}, +{"id":"92408"}, +{"id":"124323"}, +{"id":"158674"}, +{"id":"141143"}, +{"id":"183524"}, +{"id":"206303"}, +{"id":"51980"}, +{"id":"136427"}, +{"id":"162930"}, +{"id":"182464"}, +{"id":"120836"}, +{"id":"209411"}, +{"id":"174546"}, +{"id":"62436"}, +{"id":"28879"}, +{"id":"128126"}, +{"id":"118665"}, +{"id":"131994"}, +{"id":"132055"}, +{"id":"68257"}, +{"id":"89339"}, +{"id":"43328"}, +{"id":"163818"}, +{"id":"41102"}, +{"id":"217660"}, +{"id":"176046"}, +{"id":"116579"}, +{"id":"192577"}, +{"id":"119011"}, +{"id":"81279"}, +{"id":"57538"}, +{"id":"101713"}, +{"id":"22533"}, +{"id":"129186"}, +{"id":"125941"}, +{"id":"48534"}, +{"id":"184514"}, +{"id":"189573"}, +{"id":"205166"}, +{"id":"13866"}, +{"id":"123824"}, +{"id":"39415"}, +{"id":"139829"}, +{"id":"104201"}, +{"id":"89186"}, +{"id":"201158"}, +{"id":"124266"}, +{"id":"27934"}, +{"id":"17682"}, +{"id":"220239"}, +{"id":"180595"}, +{"id":"93745"}, +{"id":"166315"}, +{"id":"3808"}, +{"id":"7136"}, +{"id":"58304"}, +{"id":"160862"}, +{"id":"105876"}, +{"id":"57198"}, +{"id":"219370"}, +{"id":"106066"}, +{"id":"180357"}, +{"id":"113720"}, +{"id":"149053"}, +{"id":"129708"}, +{"id":"218906"}, +{"id":"130938"}, +{"id":"67836"}, +{"id":"84171"}, +{"id":"199889"}, +{"id":"106893"}, +{"id":"97448"}, +{"id":"170182"}, +{"id":"43427"}, +{"id":"39054"}, +{"id":"148959"}, +{"id":"149446"}, +{"id":"80541"}, +{"id":"209707"}, +{"id":"7822"}, +{"id":"2849"}, +{"id":"47807"}, +{"id":"185091"}, +{"id":"151373"}, +{"id":"78485"}, +{"id":"174950"}, +{"id":"195556"}, +{"id":"90210"}, +{"id":"14836"}, +{"id":"219840"}, +{"id":"158322"}, +{"id":"159133"}, +{"id":"7925"}, +{"id":"191397"}, +{"id":"210904"}, +{"id":"50437"}, +{"id":"189570"}, +{"id":"133599"}, +{"id":"171857"}, +{"id":"87940"}, +{"id":"65435"}, +{"id":"80381"}, +{"id":"42777"}, +{"id":"45031"}, +{"id":"179120"}, +{"id":"19643"}, +{"id":"194894"}, +{"id":"90304"}, +{"id":"22120"}, +{"id":"129968"}, +{"id":"21577"}, +{"id":"135369"}, +{"id":"177746"}, +{"id":"28777"}, +{"id":"203652"}, +{"id":"217627"}, +{"id":"36005"}, +{"id":"171383"}, +{"id":"94308"}, +{"id":"133580"}, +{"id":"168817"}, +{"id":"49139"}, +{"id":"70512"}, +{"id":"180433"}, +{"id":"126283"}, +{"id":"171620"}, +{"id":"107797"}, +{"id":"99886"}, +{"id":"59215"}, +{"id":"81581"}, +{"id":"14678"}, +{"id":"188807"}, +{"id":"140486"}, +{"id":"103064"}, +{"id":"104205"}, +{"id":"214075"}, +{"id":"187535"}, +{"id":"68403"}, +{"id":"94174"}, +{"id":"106012"}, +{"id":"191165"}, +{"id":"64324"}, +{"id":"39458"}, +{"id":"200728"}, +{"id":"194826"}, +{"id":"42710"}, +{"id":"167004"}, +{"id":"159467"}, +{"id":"187531"}, +{"id":"4013"}, +{"id":"111462"}, +{"id":"146705"}, +{"id":"46955"}, +{"id":"178607"}, +{"id":"184885"}, +{"id":"82803"}, +{"id":"73107"}, +{"id":"64772"}, +{"id":"45181"}, +{"id":"175928"}, +{"id":"128860"}, +{"id":"53704"}, +{"id":"53100"}, +{"id":"137158"}, +{"id":"52983"}, +{"id":"154818"}, +{"id":"14289"}, +{"id":"110760"}, +{"id":"119368"}, +{"id":"179410"}, +{"id":"54827"}, +{"id":"99512"}, +{"id":"14781"}, +{"id":"95401"}, +{"id":"129379"}, +{"id":"153207"}, +{"id":"44062"}, +{"id":"56459"}, +{"id":"90309"}, +{"id":"119788"}, +{"id":"153855"}, +{"id":"194586"}, +{"id":"91925"}, +{"id":"212428"}, +{"id":"156762"}, +{"id":"127880"}, +{"id":"78005"}, +{"id":"65529"}, +{"id":"136000"}, +{"id":"82857"}, +{"id":"93213"}, +{"id":"156127"}, +{"id":"206915"}, +{"id":"23842"}, +{"id":"29733"}, +{"id":"201810"}, +{"id":"195095"}, +{"id":"158889"}, +{"id":"40637"}, +{"id":"189334"}, +{"id":"87783"}, +{"id":"84630"}, +{"id":"47250"}, +{"id":"50922"}, +{"id":"140137"}, +{"id":"144316"}, +{"id":"156763"}, +{"id":"86663"}, +{"id":"31769"}, +{"id":"192563"}, +{"id":"75135"}, +{"id":"134097"}, +{"id":"192023"}, +{"id":"151680"}, +{"id":"55941"}, +{"id":"100312"}, +{"id":"159694"}, +{"id":"216955"}, +{"id":"147299"}, +{"id":"112249"}, +{"id":"10198"}, +{"id":"199860"}, +{"id":"42724"}, +{"id":"80244"}, +{"id":"218275"}, +{"id":"133294"}, +{"id":"56153"}, +{"id":"51161"}, +{"id":"93079"}, +{"id":"118127"}, +{"id":"38534"}, +{"id":"131142"}, +{"id":"50343"}, +{"id":"185157"}, +{"id":"191116"}, +{"id":"144534"}, +{"id":"123591"}, +{"id":"61872"}, +{"id":"115838"}, +{"id":"142896"}, +{"id":"159348"}, +{"id":"65451"}, +{"id":"42168"}, +{"id":"213943"}, +{"id":"118669"}, +{"id":"147665"}, +{"id":"129456"}, +{"id":"105922"}, +{"id":"100047"}, +{"id":"73064"}, +{"id":"108862"}, +{"id":"1899"}, +{"id":"162132"}, +{"id":"112328"}, +{"id":"33318"}, +{"id":"42779"}, +{"id":"23875"}, +{"id":"68320"}, +{"id":"205910"}, +{"id":"81388"}, +{"id":"10932"}, +{"id":"117376"}, +{"id":"49874"}, +{"id":"97166"}, +{"id":"184377"}, +{"id":"220220"}, +{"id":"30134"}, +{"id":"71002"}, +{"id":"187774"}, +{"id":"106314"}, +{"id":"100463"}, +{"id":"155791"}, +{"id":"15548"}, +{"id":"130090"}, +{"id":"30924"}, +{"id":"30288"}, +{"id":"41062"}, +{"id":"111982"}, +{"id":"63641"}, +{"id":"160568"}, +{"id":"54255"}, +{"id":"204979"}, +{"id":"170394"}, +{"id":"16335"}, +{"id":"117501"}, +{"id":"220789"}, +{"id":"35932"}, +{"id":"80516"}, +{"id":"133081"}, +{"id":"14576"}, +{"id":"57946"}, +{"id":"218526"}, +{"id":"191823"}, +{"id":"198425"}, +{"id":"11129"}, +{"id":"29665"}, +{"id":"115657"}, +{"id":"32049"}, +{"id":"26423"}, +{"id":"80087"}, +{"id":"219469"}, +{"id":"57455"}, +{"id":"51939"}, +{"id":"184352"}, +{"id":"189099"}, +{"id":"115700"}, +{"id":"132736"}, +{"id":"123404"}, +{"id":"147563"}, +{"id":"160526"}, +{"id":"22523"}, +{"id":"164619"}, +{"id":"159839"}, +{"id":"26105"}, +{"id":"41069"}, +{"id":"194251"}, +{"id":"17919"}, +{"id":"29298"}, +{"id":"134965"}, +{"id":"81382"}, +{"id":"169792"}, +{"id":"204077"}, +{"id":"112539"}, +{"id":"23944"}, +{"id":"43971"}, +{"id":"17787"}, +{"id":"128204"}, +{"id":"123138"}, +{"id":"166404"}, +{"id":"213054"}, +{"id":"201114"}, +{"id":"85024"}, +{"id":"185095"}, +{"id":"166886"}, +{"id":"57561"}, +{"id":"13383"}, +{"id":"85173"}, +{"id":"198983"}, +{"id":"149304"}, +{"id":"99698"}, +{"id":"104943"}, +{"id":"86668"}, +{"id":"117898"}, +{"id":"88301"}, +{"id":"94793"}, +{"id":"71653"}, +{"id":"219581"}, +{"id":"171953"}, +{"id":"131293"}, +{"id":"6120"}, +{"id":"110227"}, +{"id":"93072"}, +{"id":"207987"}, +{"id":"123780"}, +{"id":"149252"}, +{"id":"5253"}, +{"id":"153475"}, +{"id":"161705"}, +{"id":"134437"}, +{"id":"160975"}, +{"id":"95435"}, +{"id":"189203"}, +{"id":"97470"}, +{"id":"15728"}, +{"id":"1435"}, +{"id":"139668"}, +{"id":"69687"}, +{"id":"58431"}, +{"id":"15097"}, +{"id":"74481"}, +{"id":"170589"}, +{"id":"200221"}, +{"id":"213127"}, +{"id":"91017"}, +{"id":"138779"}, +{"id":"87391"}, +{"id":"85211"}, +{"id":"219209"}, +{"id":"201653"}, +{"id":"116539"}, +{"id":"99036"}, +{"id":"33243"}, +{"id":"207039"}, +{"id":"131285"}, +{"id":"49577"}, +{"id":"38713"}, +{"id":"171731"}, +{"id":"212355"}, +{"id":"219290"}, +{"id":"101230"}, +{"id":"215037"}, +{"id":"97490"}, +{"id":"132066"}, +{"id":"188806"}, +{"id":"124723"}, +{"id":"28907"}, +{"id":"62034"}, +{"id":"147854"}, +{"id":"96583"}, +{"id":"87401"}, +{"id":"189797"}, +{"id":"143461"}, +{"id":"54888"}, +{"id":"171235"}, +{"id":"32904"}, +{"id":"13621"}, +{"id":"199303"}, +{"id":"36672"}, +{"id":"81625"}, +{"id":"148503"}, +{"id":"119781"}, +{"id":"143106"}, +{"id":"77342"}, +{"id":"74728"}, +{"id":"39319"}, +{"id":"206277"}, +{"id":"77845"}, +{"id":"82167"}, +{"id":"155040"}, +{"id":"43667"}, +{"id":"156046"}, +{"id":"5592"}, +{"id":"215320"}, +{"id":"18597"}, +{"id":"171996"}, +{"id":"88696"}, +{"id":"126636"}, +{"id":"54542"}, +{"id":"188148"}, +{"id":"176025"}, +{"id":"178093"}, +{"id":"177328"}, +{"id":"172841"}, +{"id":"9944"}, +{"id":"67505"}, +{"id":"148252"}, +{"id":"166955"}, +{"id":"44449"}, +{"id":"23588"}, +{"id":"25016"}, +{"id":"219520"}, +{"id":"150717"}, +{"id":"64126"}, +{"id":"13970"}, +{"id":"146628"}, +{"id":"142333"}, +{"id":"36145"}, +{"id":"175368"}, +{"id":"160253"}, +{"id":"178694"}, +{"id":"138111"}, +{"id":"43496"}, +{"id":"194444"}, +{"id":"103778"}, +{"id":"213570"}, +{"id":"36679"}, +{"id":"77613"}, +{"id":"106637"}, +{"id":"190759"}, +{"id":"105130"}, +{"id":"115213"}, +{"id":"123093"}, +{"id":"68064"}, +{"id":"75507"}, +{"id":"211420"}, +{"id":"205078"}, +{"id":"168686"}, +{"id":"135991"}, +{"id":"74339"}, +{"id":"201245"}, +{"id":"41533"}, +{"id":"93616"}, +{"id":"112447"}, +{"id":"65951"}, +{"id":"101878"}, +{"id":"86672"}, +{"id":"75239"}, +{"id":"216644"}, +{"id":"73768"}, +{"id":"141359"}, +{"id":"24314"}, +{"id":"81299"}, +{"id":"185750"}, +{"id":"14246"}, +{"id":"202312"}, +{"id":"106828"}, +{"id":"150835"}, +{"id":"16366"}, +{"id":"190929"}, +{"id":"57203"}, +{"id":"185222"}, +{"id":"70490"}, +{"id":"204069"}, +{"id":"218160"}, +{"id":"152950"}, +{"id":"17041"}, +{"id":"193022"}, +{"id":"186120"}, +{"id":"30598"}, +{"id":"176598"}, +{"id":"110779"}, +{"id":"68141"}, +{"id":"212666"}, +{"id":"101082"}, +{"id":"212649"}, +{"id":"158407"}, +{"id":"46629"}, +{"id":"131676"}, +{"id":"218020"}, +{"id":"158994"}, +{"id":"42216"}, +{"id":"111244"}, +{"id":"165319"}, +{"id":"178123"}, +{"id":"121802"}, +{"id":"61909"}, +{"id":"193419"}, +{"id":"143876"}, +{"id":"141790"}, +{"id":"132768"}, +{"id":"115450"}, +{"id":"122386"}, +{"id":"52038"}, +{"id":"198599"}, +{"id":"69421"}, +{"id":"185898"}, +{"id":"19794"}, +{"id":"63129"}, +{"id":"89911"}, +{"id":"120058"}, +{"id":"205126"}, +{"id":"160153"}, +{"id":"88949"}, +{"id":"135151"}, +{"id":"85281"}, +{"id":"143684"}, +{"id":"211147"}, +{"id":"30106"}, +{"id":"182092"}, +{"id":"56555"}, +{"id":"59463"}, +{"id":"79776"}, +{"id":"78927"}, +{"id":"35141"}, +{"id":"36455"}, +{"id":"100462"}, +{"id":"97236"}, +{"id":"67612"}, +{"id":"134056"}, +{"id":"157007"}, +{"id":"4050"}, +{"id":"121752"}, +{"id":"28675"}, +{"id":"156775"}, +{"id":"139783"}, +{"id":"50744"}, +{"id":"69811"}, +{"id":"109490"}, +{"id":"27899"}, +{"id":"127942"}, +{"id":"106234"}, +{"id":"2178"}, +{"id":"116949"}, +{"id":"215553"}, +{"id":"61132"}, +{"id":"150061"}, +{"id":"77846"}, +{"id":"36734"}, +{"id":"173589"}, +{"id":"52033"}, +{"id":"146950"}, +{"id":"196759"}, +{"id":"103211"}, +{"id":"159297"}, +{"id":"174910"}, +{"id":"98112"}, +{"id":"149982"}, +{"id":"15880"}, +{"id":"176427"}, +{"id":"171413"}, +{"id":"82840"}, +{"id":"187116"}, +{"id":"44878"}, +{"id":"19835"}, +{"id":"109120"}, +{"id":"133628"}, +{"id":"136955"}, +{"id":"210090"}, +{"id":"44937"}, +{"id":"151231"}, +{"id":"123648"}, +{"id":"117091"}, +{"id":"186451"}, +{"id":"118332"}, +{"id":"109942"}, +{"id":"3273"}, +{"id":"48926"}, +{"id":"43542"}, +{"id":"161780"}, +{"id":"190355"}, +{"id":"208214"}, +{"id":"159039"}, +{"id":"78703"}, +{"id":"187996"}, +{"id":"9562"}, +{"id":"14680"}, +{"id":"4418"}, +{"id":"48041"}, +{"id":"136824"}, +{"id":"147961"}, +{"id":"215367"}, +{"id":"102327"}, +{"id":"215573"}, +{"id":"178901"}, +{"id":"122976"}, +{"id":"28302"}, +{"id":"61313"}, +{"id":"80628"}, +{"id":"156032"}, +{"id":"55074"}, +{"id":"20313"}, +{"id":"4203"}, +{"id":"159323"}, +{"id":"114827"}, +{"id":"95510"}, +{"id":"149609"}, +{"id":"46478"}, +{"id":"148846"}, +{"id":"207870"}, +{"id":"22846"}, +{"id":"139920"}, +{"id":"96176"}, +{"id":"51423"}, +{"id":"54345"}, +{"id":"109115"}, +{"id":"19775"}, +{"id":"145589"}, +{"id":"201208"}, +{"id":"119337"}, +{"id":"189628"}, +{"id":"1673"}, +{"id":"8560"}, +{"id":"215169"}, +{"id":"63730"}, +{"id":"177741"}, +{"id":"41751"}, +{"id":"138236"}, +{"id":"13786"}, +{"id":"136032"}, +{"id":"153740"}, +{"id":"206472"}, +{"id":"22206"}, +{"id":"104"}, +{"id":"201499"}, +{"id":"26889"}, +{"id":"88294"}, +{"id":"164220"}, +{"id":"212159"}, +{"id":"109825"}, +{"id":"202044"}, +{"id":"9974"}, +{"id":"191032"}, +{"id":"218706"}, +{"id":"200514"}, +{"id":"160177"}, +{"id":"141217"}, +{"id":"218799"}, +{"id":"39301"}, +{"id":"60473"}, +{"id":"79332"}, +{"id":"133296"}, +{"id":"87740"}, +{"id":"31657"}, +{"id":"166295"}, +{"id":"174849"}, +{"id":"123256"}, +{"id":"24503"}, +{"id":"108729"}, +{"id":"7944"}, +{"id":"53450"}, +{"id":"113682"}, +{"id":"152685"}, +{"id":"210156"}, +{"id":"180520"}, +{"id":"105086"}, +{"id":"86688"}, +{"id":"141034"}, +{"id":"18476"}, +{"id":"63601"}, +{"id":"200841"}, +{"id":"181219"}, +{"id":"26453"}, +{"id":"57982"}, +{"id":"122544"}, +{"id":"165453"}, +{"id":"194080"}, +{"id":"177942"}, +{"id":"176376"}, +{"id":"209313"}, +{"id":"161476"}, +{"id":"94891"}, +{"id":"164075"}, +{"id":"126507"}, +{"id":"160860"}, +{"id":"132537"}, +{"id":"111485"}, +{"id":"212665"}, +{"id":"26197"}, +{"id":"12731"}, +{"id":"191057"}, +{"id":"202207"}, +{"id":"146569"}, +{"id":"77645"}, +{"id":"34839"}, +{"id":"186889"}, +{"id":"106128"}, +{"id":"21971"}, +{"id":"158821"}, +{"id":"21990"}, +{"id":"52688"}, +{"id":"56753"}, +{"id":"189656"}, +{"id":"157991"}, +{"id":"35481"}, +{"id":"146055"}, +{"id":"158657"}, +{"id":"25650"}, +{"id":"36212"}, +{"id":"44075"}, +{"id":"35881"}, +{"id":"215982"}, +{"id":"167071"}, +{"id":"72111"}, +{"id":"118104"}, +{"id":"610"}, +{"id":"193567"}, +{"id":"180611"}, +{"id":"193847"}, +{"id":"67021"}, +{"id":"99064"}, +{"id":"138476"}, +{"id":"175540"}, +{"id":"14865"}, +{"id":"127361"}, +{"id":"207805"}, +{"id":"17671"}, +{"id":"38127"}, +{"id":"61696"}, +{"id":"148886"}, +{"id":"133086"}, +{"id":"163090"}, +{"id":"20614"}, +{"id":"200702"}, +{"id":"148974"}, +{"id":"9004"}, +{"id":"89313"}, +{"id":"34708"}, +{"id":"81901"}, +{"id":"62724"}, +{"id":"213565"}, +{"id":"30239"}, +{"id":"134245"}, +{"id":"54203"}, +{"id":"151703"}, +{"id":"20057"}, +{"id":"4825"}, +{"id":"65255"}, +{"id":"27289"}, +{"id":"100121"}, +{"id":"97328"}, +{"id":"170943"}, +{"id":"180702"}, +{"id":"206749"}, +{"id":"92359"}, +{"id":"176357"}, +{"id":"190328"}, +{"id":"170306"}, +{"id":"170825"}, +{"id":"125252"}, +{"id":"93729"}, +{"id":"887"}, +{"id":"72762"}, +{"id":"33336"}, +{"id":"108207"}, +{"id":"153141"}, +{"id":"51894"}, +{"id":"29518"}, +{"id":"180334"}, +{"id":"102480"}, +{"id":"82043"}, +{"id":"189965"}, +{"id":"133066"}, +{"id":"6923"}, +{"id":"123082"}, +{"id":"52772"}, +{"id":"73922"}, +{"id":"153444"}, +{"id":"119842"}, +{"id":"65179"}, +{"id":"207226"}, +{"id":"114656"}, +{"id":"119202"}, +{"id":"77001"}, +{"id":"201932"}, +{"id":"199152"}, +{"id":"159900"}, +{"id":"83294"}, +{"id":"200967"}, +{"id":"131267"}, +{"id":"159055"}, +{"id":"61979"}, +{"id":"3195"}, +{"id":"194374"}, +{"id":"40034"}, +{"id":"214506"}, +{"id":"194177"}, +{"id":"180767"}, +{"id":"110185"}, +{"id":"60289"}, +{"id":"210261"}, +{"id":"51643"}, +{"id":"35506"}, +{"id":"195137"}, +{"id":"28291"}, +{"id":"5134"}, +{"id":"95887"}, +{"id":"91244"}, +{"id":"182484"}, +{"id":"92761"}, +{"id":"9258"}, +{"id":"97949"}, +{"id":"26271"}, +{"id":"37962"}, +{"id":"189263"}, +{"id":"46533"}, +{"id":"90307"}, +{"id":"37758"}, +{"id":"116890"}, +{"id":"195459"}, +{"id":"211905"}, +{"id":"99466"}, +{"id":"153318"}, +{"id":"69375"}, +{"id":"203474"}, +{"id":"122"}, +{"id":"130570"}, +{"id":"87457"}, +{"id":"152931"}, +{"id":"37961"}, +{"id":"199669"}, +{"id":"43384"}, +{"id":"63606"}, +{"id":"176557"}, +{"id":"111870"}, +{"id":"64740"}, +{"id":"104955"}, +{"id":"39373"}, +{"id":"166532"}, +{"id":"8528"}, +{"id":"149919"}, +{"id":"217318"}, +{"id":"145312"}, +{"id":"198052"}, +{"id":"18634"}, +{"id":"173484"}, +{"id":"214143"}, +{"id":"55825"}, +{"id":"215256"}, +{"id":"153390"}, +{"id":"144606"}, +{"id":"186843"}, +{"id":"133423"}, +{"id":"22544"}, +{"id":"128800"}, +{"id":"150932"}, +{"id":"117413"}, +{"id":"151783"}, +{"id":"141053"}, +{"id":"127234"}, +{"id":"95994"}, +{"id":"7035"}, +{"id":"97255"}, +{"id":"71668"}, +{"id":"88155"}, +{"id":"185943"}, +{"id":"22643"}, +{"id":"197632"}, +{"id":"191003"}, +{"id":"157085"}, +{"id":"80076"}, +{"id":"98184"}, +{"id":"161037"}, +{"id":"136915"}, +{"id":"46765"}, +{"id":"35664"}, +{"id":"188187"}, +{"id":"101777"}, +{"id":"37041"}, +{"id":"201795"}, +{"id":"86606"}, +{"id":"117173"}, +{"id":"107112"}, +{"id":"75729"}, +{"id":"207718"}, +{"id":"127735"}, +{"id":"7404"}, +{"id":"71451"}, +{"id":"56967"}, +{"id":"36835"}, +{"id":"44174"}, +{"id":"57228"}, +{"id":"558"}, +{"id":"59402"}, +{"id":"191312"}, +{"id":"108052"}, +{"id":"92661"}, +{"id":"25778"}, +{"id":"166310"}, +{"id":"193970"}, +{"id":"72597"}, +{"id":"219834"}, +{"id":"6101"}, +{"id":"218973"}, +{"id":"166100"}, +{"id":"87022"}, +{"id":"70731"}, +{"id":"217814"}, +{"id":"91243"}, +{"id":"133228"}, +{"id":"54539"}, +{"id":"27873"}, +{"id":"157558"}, +{"id":"214277"}, +{"id":"184151"}, +{"id":"78778"}, +{"id":"51494"}, +{"id":"755"}, +{"id":"28939"}, +{"id":"90108"}, +{"id":"66910"}, +{"id":"187488"}, +{"id":"174572"}, +{"id":"114483"}, +{"id":"212763"}, +{"id":"121720"}, +{"id":"93678"}, +{"id":"135235"}, +{"id":"51463"}, +{"id":"82042"}, +{"id":"67258"}, +{"id":"62861"}, +{"id":"99010"}, +{"id":"23878"}, +{"id":"124481"}, +{"id":"121055"}, +{"id":"182861"}, +{"id":"112601"}, +{"id":"39279"}, +{"id":"188816"}, +{"id":"156876"}, +{"id":"187502"}, +{"id":"35495"}, +{"id":"121527"}, +{"id":"2964"}, +{"id":"191319"}, +{"id":"99491"}, +{"id":"37319"}, +{"id":"82578"}, +{"id":"40316"}, +{"id":"80631"}, +{"id":"11499"}, +{"id":"98826"}, +{"id":"213489"}, +{"id":"101913"}, +{"id":"17477"}, +{"id":"50049"}, +{"id":"124345"}, +{"id":"36559"}, +{"id":"47785"}, +{"id":"29048"}, +{"id":"74083"}, +{"id":"58901"}, +{"id":"215840"}, +{"id":"33466"}, +{"id":"193187"}, +{"id":"141949"}, +{"id":"130408"}, +{"id":"90732"}, +{"id":"161369"}, +{"id":"206386"}, +{"id":"113295"}, +{"id":"57558"}, +{"id":"61795"}, +{"id":"198687"}, +{"id":"172816"}, +{"id":"96276"}, +{"id":"71489"}, +{"id":"150101"}, +{"id":"56567"}, +{"id":"198822"}, +{"id":"91610"}, +{"id":"9370"}, +{"id":"135252"}, +{"id":"59932"}, +{"id":"25193"}, +{"id":"53885"}, +{"id":"44669"}, +{"id":"58333"}, +{"id":"111025"}, +{"id":"156477"}, +{"id":"122517"}, +{"id":"3576"}, +{"id":"151971"}, +{"id":"16577"}, +{"id":"128866"}, +{"id":"103311"}, +{"id":"173357"}, +{"id":"117929"}, +{"id":"15433"}, +{"id":"117422"}, +{"id":"75514"}, +{"id":"161491"}, +{"id":"92979"}, +{"id":"83103"}, +{"id":"63472"}, +{"id":"207714"}, +{"id":"65020"}, +{"id":"214663"}, +{"id":"42288"}, +{"id":"165602"}, +{"id":"207365"}, +{"id":"217818"}, +{"id":"130061"}, +{"id":"8198"}, +{"id":"202977"}, +{"id":"36237"}, +{"id":"220147"}, +{"id":"28196"}, +{"id":"7932"}, +{"id":"123765"}, +{"id":"72233"}, +{"id":"165797"}, +{"id":"211211"}, +{"id":"144148"}, +{"id":"148256"}, +{"id":"134232"}, +{"id":"169340"}, +{"id":"101134"}, +{"id":"125583"}, +{"id":"115963"}, +{"id":"70914"}, +{"id":"123356"}, +{"id":"120050"}, +{"id":"160180"}, +{"id":"98186"}, +{"id":"132005"}, +{"id":"48623"}, +{"id":"185300"}, +{"id":"199532"}, +{"id":"56930"}, +{"id":"178196"}, +{"id":"99969"}, +{"id":"179214"}, +{"id":"204384"}, +{"id":"42519"}, +{"id":"79603"}, +{"id":"178440"}, +{"id":"39149"}, +{"id":"55657"}, +{"id":"150210"}, +{"id":"123222"}, +{"id":"20303"}, +{"id":"135478"}, +{"id":"36861"}, +{"id":"191222"}, +{"id":"161229"}, +{"id":"96896"}, +{"id":"203089"}, +{"id":"216321"}, +{"id":"28735"}, +{"id":"191656"}, +{"id":"23560"}, +{"id":"8511"}, +{"id":"36964"}, +{"id":"2016"}, +{"id":"211437"}, +{"id":"81903"}, +{"id":"12013"}, +{"id":"104062"}, +{"id":"122859"}, +{"id":"152984"}, +{"id":"34556"}, +{"id":"156805"}, +{"id":"67276"}, +{"id":"44754"}, +{"id":"133386"}, +{"id":"142050"}, +{"id":"40546"}, +{"id":"82294"}, +{"id":"110415"}, +{"id":"202880"}, +{"id":"49269"}, +{"id":"74161"}, +{"id":"46934"}, +{"id":"46682"}, +{"id":"175333"}, +{"id":"89528"}, +{"id":"197247"}, +{"id":"40282"}, +{"id":"55465"}, +{"id":"169077"}, +{"id":"153093"}, +{"id":"64234"}, +{"id":"126424"}, +{"id":"189384"}, +{"id":"130422"}, +{"id":"49296"}, +{"id":"205095"}, +{"id":"115829"}, +{"id":"26238"}, +{"id":"215604"}, +{"id":"213865"}, +{"id":"103491"}, +{"id":"210284"}, +{"id":"139340"}, +{"id":"145205"}, +{"id":"14296"}, +{"id":"209881"}, +{"id":"137613"}, +{"id":"11591"}, +{"id":"67979"}, +{"id":"203453"}, +{"id":"3068"}, +{"id":"189870"}, +{"id":"158970"}, +{"id":"104921"}, +{"id":"152582"}, +{"id":"13682"}, +{"id":"211302"}, +{"id":"189455"}, +{"id":"71997"}, +{"id":"140655"}, +{"id":"162374"}, +{"id":"84874"}, +{"id":"220793"}, +{"id":"88528"}, +{"id":"123599"}, +{"id":"127662"}, +{"id":"42824"}, +{"id":"97424"}, +{"id":"13146"}, +{"id":"198355"}, +{"id":"144569"}, +{"id":"90498"}, +{"id":"42492"}, +{"id":"141422"}, +{"id":"187228"}, +{"id":"80791"}, +{"id":"147171"}, +{"id":"113270"}, +{"id":"155771"}, +{"id":"62595"}, +{"id":"17631"}, +{"id":"13907"}, +{"id":"75363"}, +{"id":"28115"}, +{"id":"180232"}, +{"id":"46766"}, +{"id":"29711"}, +{"id":"5784"}, +{"id":"7508"}, +{"id":"169852"}, +{"id":"121742"}, +{"id":"18394"}, +{"id":"30408"}, +{"id":"206637"}, +{"id":"89024"}, +{"id":"18194"}, +{"id":"12909"}, +{"id":"35013"}, +{"id":"147246"}, +{"id":"192594"}, +{"id":"94414"}, +{"id":"35195"}, +{"id":"80124"}, +{"id":"192491"}, +{"id":"113518"}, +{"id":"93595"}, +{"id":"38147"}, +{"id":"66151"}, +{"id":"129651"}, +{"id":"107240"}, +{"id":"33376"}, +{"id":"128632"}, +{"id":"2303"}, +{"id":"8070"}, +{"id":"195824"}, +{"id":"216422"}, +{"id":"217809"}, +{"id":"58503"}, +{"id":"91073"}, +{"id":"4697"}, +{"id":"153988"}, +{"id":"44988"}, +{"id":"25804"}, +{"id":"193665"}, +{"id":"45940"}, +{"id":"55327"}, +{"id":"150066"}, +{"id":"193039"}, +{"id":"123148"}, +{"id":"156389"}, +{"id":"49401"}, +{"id":"89332"}, +{"id":"176535"}, +{"id":"130017"}, +{"id":"62390"}, +{"id":"197446"}, +{"id":"27402"}, +{"id":"205376"}, +{"id":"198818"}, +{"id":"13103"}, +{"id":"160697"}, +{"id":"94489"}, +{"id":"79475"}, +{"id":"88686"}, +{"id":"94228"}, +{"id":"94815"}, +{"id":"110831"}, +{"id":"126779"}, +{"id":"13235"}, +{"id":"36472"}, +{"id":"78321"}, +{"id":"161230"}, +{"id":"45498"}, +{"id":"182992"}, +{"id":"74546"}, +{"id":"70152"}, +{"id":"142453"}, +{"id":"481"}, +{"id":"87750"}, +{"id":"18948"}, +{"id":"159409"}, +{"id":"65472"}, +{"id":"67312"}, +{"id":"45216"}, +{"id":"21088"}, +{"id":"60602"}, +{"id":"64692"}, +{"id":"152099"}, +{"id":"97990"}, +{"id":"34316"}, +{"id":"209056"}, +{"id":"45218"}, +{"id":"207513"}, +{"id":"87445"}, +{"id":"14608"}, +{"id":"52462"}, +{"id":"2763"}, +{"id":"38758"}, +{"id":"160869"}, +{"id":"121998"}, +{"id":"165062"}, +{"id":"185857"}, +{"id":"105028"}, +{"id":"188001"}, +{"id":"205059"}, +{"id":"206757"}, +{"id":"128885"}, +{"id":"47228"}, +{"id":"162209"}, +{"id":"220553"}, +{"id":"22180"}, +{"id":"176184"}, +{"id":"43046"}, +{"id":"125667"}, +{"id":"124313"}, +{"id":"220786"}, +{"id":"62768"}, +{"id":"29438"}, +{"id":"142664"}, +{"id":"21454"}, +{"id":"82132"}, +{"id":"75956"}, +{"id":"63174"}, +{"id":"157287"}, +{"id":"26317"}, +{"id":"141830"}, +{"id":"152834"}, +{"id":"18173"}, +{"id":"19529"}, +{"id":"74499"}, +{"id":"83346"}, +{"id":"3963"}, +{"id":"14495"}, +{"id":"141875"}, +{"id":"186869"}, +{"id":"26566"}, +{"id":"199664"}, +{"id":"155912"}, +{"id":"10796"}, +{"id":"62400"}, +{"id":"15110"}, +{"id":"3502"}, +{"id":"23194"}, +{"id":"50073"}, +{"id":"107194"}, +{"id":"28090"}, +{"id":"165275"}, +{"id":"198192"}, +{"id":"16404"}, +{"id":"94631"}, +{"id":"176646"}, +{"id":"20827"}, +{"id":"141619"}, +{"id":"68197"}, +{"id":"183522"}, +{"id":"148759"}, +{"id":"26055"}, +{"id":"58117"}, +{"id":"174433"}, +{"id":"135731"}, +{"id":"57494"}, +{"id":"90783"}, +{"id":"97664"}, +{"id":"173101"}, +{"id":"14409"}, +{"id":"86620"}, +{"id":"54373"}, +{"id":"21808"}, +{"id":"31154"}, +{"id":"70387"}, +{"id":"71084"}, +{"id":"165405"}, +{"id":"6143"}, +{"id":"210902"}, +{"id":"57168"}, +{"id":"21703"}, +{"id":"184565"}, +{"id":"157535"}, +{"id":"64172"}, +{"id":"128063"}, +{"id":"75458"}, +{"id":"9716"}, +{"id":"5191"}, +{"id":"144036"}, +{"id":"127350"}, +{"id":"53108"}, +{"id":"61807"}, +{"id":"56179"}, +{"id":"201722"}, +{"id":"186228"}, +{"id":"84416"}, +{"id":"108586"}, +{"id":"30142"}, +{"id":"36888"}, +{"id":"83872"}, +{"id":"180539"}, +{"id":"152764"}, +{"id":"127898"}, +{"id":"207461"}, +{"id":"26987"}, +{"id":"175102"}, +{"id":"5695"}, +{"id":"115637"}, +{"id":"43452"}, +{"id":"134914"}, +{"id":"71842"}, +{"id":"55319"}, +{"id":"215186"}, +{"id":"154004"}, +{"id":"153370"}, +{"id":"183463"}, +{"id":"149512"}, +{"id":"71957"}, +{"id":"156081"}, +{"id":"2128"}, +{"id":"155074"}, +{"id":"62555"}, +{"id":"80752"}, +{"id":"165403"}, +{"id":"6832"}, +{"id":"187695"}, +{"id":"195079"}, +{"id":"20297"}, +{"id":"81743"}, +{"id":"23352"}, +{"id":"130767"}, +{"id":"109261"}, +{"id":"161929"}, +{"id":"104927"}, +{"id":"111126"}, +{"id":"149067"}, +{"id":"126665"}, +{"id":"175249"}, +{"id":"201228"}, +{"id":"96352"}, +{"id":"183647"}, +{"id":"81288"}, +{"id":"187740"}, +{"id":"118060"}, +{"id":"52476"}, +{"id":"85420"}, +{"id":"169276"}, +{"id":"66996"}, +{"id":"8228"}, +{"id":"149585"}, +{"id":"14099"}, +{"id":"109395"}, +{"id":"60783"}, +{"id":"74490"}, +{"id":"150897"}, +{"id":"66830"}, +{"id":"206173"}, +{"id":"220633"}, +{"id":"214317"}, +{"id":"141258"}, +{"id":"121283"}, +{"id":"15412"}, +{"id":"205899"}, +{"id":"59025"}, +{"id":"64209"}, +{"id":"118437"}, +{"id":"187403"}, +{"id":"135987"}, +{"id":"79865"}, +{"id":"136792"}, +{"id":"96600"}, +{"id":"138221"}, +{"id":"118542"}, +{"id":"162360"}, +{"id":"132642"}, +{"id":"79751"}, +{"id":"206973"}, +{"id":"95154"}, +{"id":"84772"}, +{"id":"151002"}, +{"id":"128623"}, +{"id":"150510"}, +{"id":"50160"}, +{"id":"131395"}, +{"id":"113819"}, +{"id":"13382"}, +{"id":"115512"}, +{"id":"82318"}, +{"id":"147851"}, +{"id":"5731"}, +{"id":"145520"}, +{"id":"55813"}, +{"id":"85745"}, +{"id":"31283"}, +{"id":"108887"}, +{"id":"214326"}, +{"id":"168787"}, +{"id":"37946"}, +{"id":"113994"}, +{"id":"69522"}, +{"id":"159173"}, +{"id":"19422"}, +{"id":"58130"}, +{"id":"89076"}, +{"id":"33214"}, +{"id":"100557"}, +{"id":"195186"}, +{"id":"82396"}, +{"id":"209998"}, +{"id":"143043"}, +{"id":"89003"}, +{"id":"133398"}, +{"id":"205157"}, +{"id":"78535"}, +{"id":"70377"}, +{"id":"196958"}, +{"id":"95014"}, +{"id":"150142"}, +{"id":"61808"}, +{"id":"23586"}, +{"id":"62749"}, +{"id":"170467"}, +{"id":"137027"}, +{"id":"80974"}, +{"id":"45003"}, +{"id":"34208"}, +{"id":"93787"}, +{"id":"113702"}, +{"id":"186977"}, +{"id":"79745"}, +{"id":"52207"}, +{"id":"207732"}, +{"id":"206615"}, +{"id":"207938"}, +{"id":"187811"}, +{"id":"92520"}, +{"id":"27844"}, +{"id":"129525"}, +{"id":"142149"}, +{"id":"124159"}, +{"id":"66932"}, +{"id":"172153"}, +{"id":"27656"}, +{"id":"122860"}, +{"id":"77253"}, +{"id":"127306"}, +{"id":"29394"}, +{"id":"95027"}, +{"id":"127808"}, +{"id":"211544"}, +{"id":"81362"}, +{"id":"25780"}, +{"id":"4823"}, +{"id":"72572"}, +{"id":"174014"}, +{"id":"66959"}, +{"id":"199687"}, +{"id":"11507"}, +{"id":"182477"}, +{"id":"172534"}, +{"id":"99997"}, +{"id":"9224"}, +{"id":"125421"}, +{"id":"71234"}, +{"id":"90742"}, +{"id":"72715"}, +{"id":"929"}, +{"id":"75559"}, +{"id":"104474"}, +{"id":"80230"}, +{"id":"73146"}, +{"id":"95434"}, +{"id":"70607"}, +{"id":"103763"}, +{"id":"198282"}, +{"id":"131381"}, +{"id":"101051"}, +{"id":"147112"}, +{"id":"41152"}, +{"id":"63527"}, +{"id":"191780"}, +{"id":"159672"}, +{"id":"188796"}, +{"id":"79072"}, +{"id":"34823"}, +{"id":"5639"}, +{"id":"53179"}, +{"id":"20440"}, +{"id":"135056"}, +{"id":"69651"}, +{"id":"59004"}, +{"id":"62249"}, +{"id":"66840"}, +{"id":"27719"}, +{"id":"133922"}, +{"id":"30343"}, +{"id":"199084"}, +{"id":"70182"}, +{"id":"217076"}, +{"id":"158802"}, +{"id":"190209"}, +{"id":"131647"}, +{"id":"183812"}, +{"id":"80908"}, +{"id":"93106"}, +{"id":"55179"}, +{"id":"135430"}, +{"id":"144007"}, +{"id":"100720"}, +{"id":"24187"}, +{"id":"167422"}, +{"id":"87184"}, +{"id":"202745"}, +{"id":"132918"}, +{"id":"136075"}, +{"id":"136913"}, +{"id":"211329"}, +{"id":"42295"}, +{"id":"170978"}, +{"id":"130218"}, +{"id":"6811"}, +{"id":"133767"}, +{"id":"126669"}, +{"id":"32101"}, +{"id":"45832"}, +{"id":"218536"}, +{"id":"90652"}, +{"id":"199175"}, +{"id":"46932"}, +{"id":"166444"}, +{"id":"174669"}, +{"id":"51459"}, +{"id":"115328"}, +{"id":"217277"}, +{"id":"161993"}, +{"id":"125460"}, +{"id":"165314"}, +{"id":"59066"}, +{"id":"209172"}, +{"id":"6446"}, +{"id":"102018"}, +{"id":"118390"}, +{"id":"184195"}, +{"id":"167774"}, +{"id":"211388"}, +{"id":"148305"}, +{"id":"51100"}, +{"id":"25056"}, +{"id":"220264"}, +{"id":"71034"}, +{"id":"113914"}, +{"id":"118916"}, +{"id":"144452"}, +{"id":"220508"}, +{"id":"65124"}, +{"id":"129461"}, +{"id":"169115"}, +{"id":"76295"}, +{"id":"58203"}, +{"id":"30232"}, +{"id":"174278"}, +{"id":"189668"}, +{"id":"158678"}, +{"id":"65846"}, +{"id":"98403"}, +{"id":"90757"}, +{"id":"162378"}, +{"id":"111307"}, +{"id":"125170"}, +{"id":"33073"}, +{"id":"35753"}, +{"id":"158859"}, +{"id":"219246"}, +{"id":"51341"}, +{"id":"86189"}, +{"id":"44358"}, +{"id":"170714"}, +{"id":"91166"}, +{"id":"155035"}, +{"id":"48261"}, +{"id":"109269"}, +{"id":"132639"}, +{"id":"57286"}, +{"id":"153818"}, +{"id":"65504"}, +{"id":"99330"}, +{"id":"101854"}, +{"id":"21659"}, +{"id":"35507"}, +{"id":"4563"}, +{"id":"24439"}, +{"id":"191886"}, +{"id":"106851"}, +{"id":"199500"}, +{"id":"134616"}, +{"id":"79192"}, +{"id":"215588"}, +{"id":"5470"}, +{"id":"167673"}, +{"id":"93424"}, +{"id":"193746"}, +{"id":"20071"}, +{"id":"110854"}, +{"id":"80989"}, +{"id":"115224"}, +{"id":"126043"}, +{"id":"190503"}, +{"id":"170428"}, +{"id":"69684"}, +{"id":"38809"}, +{"id":"90984"}, +{"id":"60770"}, +{"id":"145801"}, +{"id":"127731"}, +{"id":"31465"}, +{"id":"65587"}, +{"id":"160241"}, +{"id":"210062"}, +{"id":"192065"}, +{"id":"128409"}, +{"id":"164345"}, +{"id":"41206"}, +{"id":"206458"}, +{"id":"22391"}, +{"id":"132201"}, +{"id":"121875"}, +{"id":"149118"}, +{"id":"43689"}, +{"id":"144616"}, +{"id":"54661"}, +{"id":"215538"}, +{"id":"195152"}, +{"id":"207683"}, +{"id":"152372"}, +{"id":"136847"}, +{"id":"112729"}, +{"id":"7346"}, +{"id":"29484"}, +{"id":"216827"}, +{"id":"138011"}, +{"id":"110508"}, +{"id":"213250"}, +{"id":"3807"}, +{"id":"26964"}, +{"id":"177566"}, +{"id":"134634"}, +{"id":"106772"}, +{"id":"16594"}, +{"id":"77786"}, +{"id":"179405"}, +{"id":"35992"}, +{"id":"114108"}, +{"id":"139619"}, +{"id":"135664"}, +{"id":"10663"}, +{"id":"60079"}, +{"id":"145095"}, +{"id":"99798"}, +{"id":"150363"}, +{"id":"24365"}, +{"id":"117404"}, +{"id":"30043"}, +{"id":"82726"}, +{"id":"16319"}, +{"id":"6111"}, +{"id":"214363"}, +{"id":"206943"}, +{"id":"199228"}, +{"id":"155838"}, +{"id":"126108"}, +{"id":"161994"}, +{"id":"51471"}, +{"id":"105907"}, +{"id":"199247"}, +{"id":"149884"}, +{"id":"40981"}, +{"id":"3455"}, +{"id":"207379"}, +{"id":"119201"}, +{"id":"25355"}, +{"id":"136988"}, +{"id":"136001"}, +{"id":"203422"}, +{"id":"133297"}, +{"id":"69278"}, +{"id":"193802"}, +{"id":"219496"}, +{"id":"110978"}, +{"id":"77426"}, +{"id":"199793"}, +{"id":"115252"}, +{"id":"86160"}, +{"id":"195126"}, +{"id":"91887"}, +{"id":"81044"}, +{"id":"158866"}, +{"id":"190390"}, +{"id":"151108"}, +{"id":"122954"}, +{"id":"220667"}, +{"id":"67193"}, +{"id":"201457"}, +{"id":"24718"}, +{"id":"6441"}, +{"id":"149885"}, +{"id":"14243"}, +{"id":"102619"}, +{"id":"120338"}, +{"id":"149342"}, +{"id":"185273"}, +{"id":"122500"}, +{"id":"198137"}, +{"id":"93378"}, +{"id":"3473"}, +{"id":"18444"}, +{"id":"30879"}, +{"id":"144491"}, +{"id":"208241"}, +{"id":"181113"}, +{"id":"193539"}, +{"id":"191413"}, +{"id":"97191"}, +{"id":"96126"}, +{"id":"69999"}, +{"id":"71249"}, +{"id":"128931"}, +{"id":"139109"}, +{"id":"37660"}, +{"id":"147174"}, +{"id":"151410"}, +{"id":"137295"}, +{"id":"156215"}, +{"id":"203446"}, +{"id":"196437"}, +{"id":"91300"}, +{"id":"157727"}, +{"id":"87290"}, +{"id":"24183"}, +{"id":"88797"}, +{"id":"130059"}, +{"id":"109199"}, +{"id":"213507"}, +{"id":"199724"}, +{"id":"100017"}, +{"id":"2750"}, +{"id":"36025"}, +{"id":"4528"}, +{"id":"21516"}, +{"id":"145985"}, +{"id":"30037"}, +{"id":"65084"}, +{"id":"21307"}, +{"id":"137738"}, +{"id":"146200"}, +{"id":"29397"}, +{"id":"41292"}, +{"id":"176014"}, +{"id":"209185"}, +{"id":"203678"}, +{"id":"155792"}, +{"id":"119248"}, +{"id":"44342"}, +{"id":"149376"}, +{"id":"11937"}, +{"id":"194725"}, +{"id":"189637"}, +{"id":"147836"}, +{"id":"119414"}, +{"id":"159227"}, +{"id":"126502"}, +{"id":"73304"}, +{"id":"111556"}, +{"id":"199731"}, +{"id":"103346"}, +{"id":"144978"}, +{"id":"6906"}, +{"id":"192422"}, +{"id":"134236"}, +{"id":"95752"}, +{"id":"103518"}, +{"id":"147328"}, +{"id":"161710"}, +{"id":"149934"}, +{"id":"3671"}, +{"id":"23592"}, +{"id":"203069"}, +{"id":"168372"}, +{"id":"95500"}, +{"id":"70522"}, +{"id":"20000"}, +{"id":"75492"}, +{"id":"112446"}, +{"id":"42815"}, +{"id":"185797"}, +{"id":"184204"}, +{"id":"25110"}, +{"id":"36624"}, +{"id":"47735"}, +{"id":"35840"}, +{"id":"39564"}, +{"id":"125783"}, +{"id":"42042"}, +{"id":"36925"}, +{"id":"68002"}, +{"id":"122132"}, +{"id":"25693"}, +{"id":"14544"}, +{"id":"99328"}, +{"id":"220066"}, +{"id":"138940"}, +{"id":"23472"}, +{"id":"85597"}, +{"id":"198191"}, +{"id":"220180"}, +{"id":"70592"}, +{"id":"169528"}, +{"id":"35590"}, +{"id":"85631"}, +{"id":"37298"}, +{"id":"88760"}, +{"id":"72401"}, +{"id":"54432"}, +{"id":"82127"}, +{"id":"171229"}, +{"id":"100461"}, +{"id":"9594"}, +{"id":"24810"}, +{"id":"179911"}, +{"id":"74627"}, +{"id":"18762"}, +{"id":"151895"}, +{"id":"39765"}, +{"id":"154841"}, +{"id":"220044"}, +{"id":"182541"}, +{"id":"54036"}, +{"id":"171760"}, +{"id":"60705"}, +{"id":"98499"}, +{"id":"28524"}, +{"id":"63574"}, +{"id":"181590"}, +{"id":"195054"}, +{"id":"34576"}, +{"id":"148264"}, +{"id":"219212"}, +{"id":"43381"}, +{"id":"83072"}, +{"id":"97250"}, +{"id":"65302"}, +{"id":"183158"}, +{"id":"63507"}, +{"id":"201222"}, +{"id":"91365"}, +{"id":"54846"}, +{"id":"142784"}, +{"id":"62103"}, +{"id":"35873"}, +{"id":"8047"}, +{"id":"169483"}, +{"id":"14259"}, +{"id":"46857"}, +{"id":"107776"}, +{"id":"104912"}, +{"id":"75875"}, +{"id":"49254"}, +{"id":"137170"}, +{"id":"213025"}, +{"id":"36259"}, +{"id":"48422"}, +{"id":"68049"}, +{"id":"57217"}, +{"id":"176116"}, +{"id":"192854"}, +{"id":"109458"}, +{"id":"147390"}, +{"id":"204699"}, +{"id":"12918"}, +{"id":"54698"}, +{"id":"172898"}, +{"id":"220103"}, +{"id":"32805"}, +{"id":"28419"}, +{"id":"194478"}, +{"id":"191103"}, +{"id":"24235"}, +{"id":"5694"}, +{"id":"141518"}, +{"id":"138776"}, +{"id":"204567"}, +{"id":"182412"}, +{"id":"146772"}, +{"id":"187292"}, +{"id":"115776"}, +{"id":"16118"}, +{"id":"63835"}, +{"id":"179056"}, +{"id":"185085"}, +{"id":"90314"}, +{"id":"27397"}, +{"id":"94201"}, +{"id":"220571"}, +{"id":"201969"}, +{"id":"137485"}, +{"id":"180107"}, +{"id":"188055"}, +{"id":"45934"}, +{"id":"76207"}, +{"id":"46039"}, +{"id":"192742"}, +{"id":"80013"}, +{"id":"78514"}, +{"id":"104363"}, +{"id":"44584"}, +{"id":"109831"}, +{"id":"71174"}, +{"id":"135113"}, +{"id":"181074"}, +{"id":"51887"}, +{"id":"201415"}, +{"id":"132320"}, +{"id":"208990"}, +{"id":"196704"}, +{"id":"30088"}, +{"id":"188636"}, +{"id":"153415"}, +{"id":"154893"}, +{"id":"127375"}, +{"id":"132783"}, +{"id":"103198"}, +{"id":"108865"}, +{"id":"169422"}, +{"id":"85324"}, +{"id":"70665"}, +{"id":"74182"}, +{"id":"23355"}, +{"id":"95798"}, +{"id":"78163"}, +{"id":"161847"}, +{"id":"9745"}, +{"id":"181176"}, +{"id":"206541"}, +{"id":"146486"}, +{"id":"59244"}, +{"id":"84425"}, +{"id":"133199"}, +{"id":"119198"}, +{"id":"89800"}, +{"id":"146160"}, +{"id":"183617"}, +{"id":"16316"}, +{"id":"139529"}, +{"id":"217589"}, +{"id":"16598"}, +{"id":"32077"}, +{"id":"12533"}, +{"id":"29138"}, +{"id":"218150"}, +{"id":"23922"}, +{"id":"105134"}, +{"id":"140678"}, +{"id":"18061"}, +{"id":"219341"}, +{"id":"141739"}, +{"id":"219034"}, +{"id":"82511"}, +{"id":"114646"}, +{"id":"122127"}, +{"id":"92880"}, +{"id":"210173"}, +{"id":"161877"}, +{"id":"20373"}, +{"id":"56743"}, +{"id":"48804"}, +{"id":"7494"}, +{"id":"33890"}, +{"id":"190736"}, +{"id":"44381"}, +{"id":"117998"}, +{"id":"40516"}, +{"id":"17777"}, +{"id":"50058"}, +{"id":"55096"}, +{"id":"22887"}, +{"id":"161612"}, +{"id":"39609"}, +{"id":"46933"}, +{"id":"68393"}, +{"id":"136392"}, +{"id":"106043"}, +{"id":"183668"}, +{"id":"206854"}, +{"id":"24756"}, +{"id":"376"}, +{"id":"141594"}, +{"id":"169153"}, +{"id":"40070"}, +{"id":"124281"}, +{"id":"191062"}, +{"id":"53266"}, +{"id":"104545"}, +{"id":"121265"}, +{"id":"122458"}, +{"id":"54197"}, +{"id":"121787"}, +{"id":"114684"}, +{"id":"25356"}, +{"id":"7360"}, +{"id":"75212"}, +{"id":"82195"}, +{"id":"144147"}, +{"id":"33575"}, +{"id":"50179"}, +{"id":"150962"}, +{"id":"135346"}, +{"id":"40922"}, +{"id":"147704"}, +{"id":"55223"}, +{"id":"22242"}, +{"id":"56878"}, +{"id":"141668"}, +{"id":"39267"}, +{"id":"22649"}, +{"id":"81857"}, +{"id":"176785"}, +{"id":"164673"}, +{"id":"149700"}, +{"id":"197156"}, +{"id":"53275"}, +{"id":"5607"}, +{"id":"105852"}, +{"id":"141228"}, +{"id":"216685"}, +{"id":"93178"}, +{"id":"211748"}, +{"id":"51465"}, +{"id":"54381"}, +{"id":"106451"}, +{"id":"107769"}, +{"id":"16164"}, +{"id":"212660"}, +{"id":"88511"}, +{"id":"187244"}, +{"id":"138667"}, +{"id":"84968"}, +{"id":"209643"}, +{"id":"83499"}, +{"id":"105365"}, +{"id":"12517"}, +{"id":"117903"}, +{"id":"186840"}, +{"id":"200162"}, +{"id":"110295"}, +{"id":"194910"}, +{"id":"11252"}, +{"id":"30875"}, +{"id":"188695"}, +{"id":"126742"}, +{"id":"213000"}, +{"id":"93719"}, +{"id":"178417"}, +{"id":"161510"}, +{"id":"4371"}, +{"id":"209391"}, +{"id":"12290"}, +{"id":"33646"}, +{"id":"152386"}, +{"id":"7737"}, +{"id":"41921"}, +{"id":"179955"}, +{"id":"120020"}, +{"id":"191497"}, +{"id":"9236"}, +{"id":"14082"}, +{"id":"74693"}, +{"id":"58256"}, +{"id":"84481"}, +{"id":"153952"}, +{"id":"177186"}, +{"id":"139256"}, +{"id":"114488"}, +{"id":"203970"}, +{"id":"183729"}, +{"id":"92054"}, +{"id":"149613"}, +{"id":"219472"}, +{"id":"76350"}, +{"id":"51856"}, +{"id":"181929"}, +{"id":"90425"}, +{"id":"161632"}, +{"id":"160649"}, +{"id":"29018"}, +{"id":"130558"}, +{"id":"133956"}, +{"id":"26360"}, +{"id":"91413"}, +{"id":"201339"}, +{"id":"98711"}, +{"id":"202523"}, +{"id":"64891"}, +{"id":"179959"}, +{"id":"149326"}, +{"id":"115537"}, +{"id":"130505"}, +{"id":"125326"}, +{"id":"185452"}, +{"id":"55"}, +{"id":"121702"}, +{"id":"167026"}, +{"id":"25913"}, +{"id":"90803"}, +{"id":"81359"}, +{"id":"181811"}, +{"id":"121182"}, +{"id":"54889"}, +{"id":"24722"}, +{"id":"171840"}, +{"id":"93412"}, +{"id":"144241"}, +{"id":"4056"}, +{"id":"158890"}, +{"id":"29021"}, +{"id":"172311"}, +{"id":"219797"}, +{"id":"115550"}, +{"id":"98291"}, +{"id":"124995"}, +{"id":"203011"}, +{"id":"118035"}, +{"id":"44852"}, +{"id":"15809"}, +{"id":"181361"}, +{"id":"212077"}, +{"id":"157079"}, +{"id":"93060"}, +{"id":"120294"}, +{"id":"18822"}, +{"id":"152837"}, +{"id":"1145"}, +{"id":"106761"}, +{"id":"105973"}, +{"id":"163882"}, +{"id":"32462"}, +{"id":"217561"}, +{"id":"198490"}, +{"id":"77128"}, +{"id":"161644"}, +{"id":"179672"}, +{"id":"33078"}, +{"id":"191001"}, +{"id":"105171"}, +{"id":"159218"}, +{"id":"68310"}, +{"id":"202387"}, +{"id":"155815"}, +{"id":"17286"}, +{"id":"196613"}, +{"id":"12302"}, +{"id":"150925"}, +{"id":"135535"}, +{"id":"133122"}, +{"id":"20302"}, +{"id":"107753"}, +{"id":"123540"}, +{"id":"199469"}, +{"id":"11405"}, +{"id":"216621"}, +{"id":"171177"}, +{"id":"140372"}, +{"id":"110153"}, +{"id":"92027"}, +{"id":"81289"}, +{"id":"89861"}, +{"id":"135009"}, +{"id":"151202"}, +{"id":"150322"}, +{"id":"185831"}, +{"id":"83474"}, +{"id":"220770"}, +{"id":"195069"}, +{"id":"52080"}, +{"id":"70237"}, +{"id":"205092"}, +{"id":"146280"}, +{"id":"169767"}, +{"id":"139418"}, +{"id":"177392"}, +{"id":"91790"}, +{"id":"129059"}, +{"id":"144204"}, +{"id":"204538"}, +{"id":"53779"}, +{"id":"113538"}, +{"id":"118790"}, +{"id":"137630"}, +{"id":"147703"}, +{"id":"127649"}, +{"id":"79371"}, +{"id":"1421"}, +{"id":"206838"}, +{"id":"25460"}, +{"id":"61280"}, +{"id":"162025"}, +{"id":"220269"}, +{"id":"213624"}, +{"id":"50685"}, +{"id":"148421"}, +{"id":"4827"}, +{"id":"2695"}, +{"id":"161121"}, +{"id":"150912"}, +{"id":"115223"}, +{"id":"29147"}, +{"id":"163708"}, +{"id":"128213"}, +{"id":"1106"}, +{"id":"24549"}, +{"id":"170234"}, +{"id":"145146"}, +{"id":"127233"}, +{"id":"161545"}, +{"id":"56231"}, +{"id":"11586"}, +{"id":"23751"}, +{"id":"48763"}, +{"id":"201308"}, +{"id":"100221"}, +{"id":"163812"}, +{"id":"117271"}, +{"id":"32051"}, +{"id":"57052"}, +{"id":"1361"}, +{"id":"55890"}, +{"id":"177962"}, +{"id":"163777"}, +{"id":"72771"}, +{"id":"112583"}, +{"id":"130864"}, +{"id":"177369"}, +{"id":"213385"}, +{"id":"157353"}, +{"id":"161606"}, +{"id":"129517"}, +{"id":"23598"}, +{"id":"35140"}, +{"id":"71844"}, +{"id":"38360"}, +{"id":"13984"}, +{"id":"86985"}, +{"id":"5274"}, +{"id":"18828"}, +{"id":"183378"}, +{"id":"55450"}, +{"id":"191154"}, +{"id":"4988"}, +{"id":"48684"}, +{"id":"55514"}, +{"id":"215741"}, +{"id":"146247"}, +{"id":"103444"}, +{"id":"139379"}, +{"id":"162185"}, +{"id":"179001"}, +{"id":"59170"}, +{"id":"176946"}, +{"id":"41166"}, +{"id":"58735"}, +{"id":"136635"}, +{"id":"69290"}, +{"id":"187226"}, +{"id":"21344"}, +{"id":"93061"}, +{"id":"1169"}, +{"id":"198246"}, +{"id":"106067"}, +{"id":"71754"}, +{"id":"118056"}, +{"id":"156941"}, +{"id":"28157"}, +{"id":"210420"}, +{"id":"165535"}, +{"id":"107586"}, +{"id":"120616"}, +{"id":"45296"}, +{"id":"104537"}, +{"id":"157407"}, +{"id":"167797"}, +{"id":"207415"}, +{"id":"16409"}, +{"id":"57473"}, +{"id":"28120"}, +{"id":"16793"}, +{"id":"164896"}, +{"id":"180499"}, +{"id":"67315"}, +{"id":"8005"}, +{"id":"183587"}, +{"id":"207954"}, +{"id":"24918"}, +{"id":"184760"}, +{"id":"56746"}, +{"id":"131178"}, +{"id":"30580"}, +{"id":"211144"}, +{"id":"144520"}, +{"id":"94536"}, +{"id":"6555"}, +{"id":"100766"}, +{"id":"46113"}, +{"id":"32999"}, +{"id":"144632"}, +{"id":"182961"}, +{"id":"32156"}, +{"id":"116885"}, +{"id":"152119"}, +{"id":"205472"}, +{"id":"65427"}, +{"id":"16182"}, +{"id":"55843"}, +{"id":"75679"}, +{"id":"155115"}, +{"id":"216799"}, +{"id":"27189"}, +{"id":"136172"}, +{"id":"12219"}, +{"id":"10181"}, +{"id":"39664"}, +{"id":"172484"}, +{"id":"121018"}, +{"id":"201042"}, +{"id":"20031"}, +{"id":"91351"}, +{"id":"181641"}, +{"id":"216755"}, +{"id":"35984"}, +{"id":"196051"}, +{"id":"70492"}, +{"id":"202582"}, +{"id":"160711"}, +{"id":"149856"}, +{"id":"57968"}, +{"id":"62857"}, +{"id":"82229"}, +{"id":"34811"}, +{"id":"116052"}, +{"id":"5619"}, +{"id":"25129"}, +{"id":"134307"}, +{"id":"45380"}, +{"id":"152661"}, +{"id":"191160"}, +{"id":"17871"}, +{"id":"14740"}, +{"id":"180296"}, +{"id":"9103"}, +{"id":"59326"}, +{"id":"96055"}, +{"id":"186296"}, +{"id":"21402"}, +{"id":"10369"}, +{"id":"181005"}, +{"id":"177310"}, +{"id":"81491"}, +{"id":"218045"}, +{"id":"109556"}, +{"id":"71449"}, +{"id":"20459"}, +{"id":"153304"}, +{"id":"110819"}, +{"id":"4626"}, +{"id":"105219"}, +{"id":"5798"}, +{"id":"31454"}, +{"id":"95040"}, +{"id":"34407"}, +{"id":"192497"}, +{"id":"104647"}, +{"id":"100083"}, +{"id":"183867"}, +{"id":"99315"}, +{"id":"139483"}, +{"id":"198874"}, +{"id":"28117"}, +{"id":"53439"}, +{"id":"89041"}, +{"id":"188464"}, +{"id":"60190"}, +{"id":"105568"}, +{"id":"4085"}, +{"id":"33246"}, +{"id":"68778"}, +{"id":"114790"}, +{"id":"17219"}, +{"id":"198227"}, +{"id":"6686"}, +{"id":"182607"}, +{"id":"36884"}, +{"id":"101003"}, +{"id":"138689"}, +{"id":"111419"}, +{"id":"114239"}, +{"id":"171490"}, +{"id":"62968"}, +{"id":"140277"}, +{"id":"75939"}, +{"id":"86855"}, +{"id":"66718"}, +{"id":"48783"}, +{"id":"149483"}, +{"id":"17260"}, +{"id":"57501"}, +{"id":"213666"}, +{"id":"150050"}, +{"id":"107625"}, +{"id":"8316"}, +{"id":"95687"}, +{"id":"74548"}, +{"id":"112035"}, +{"id":"46289"}, +{"id":"127445"}, +{"id":"116128"}, +{"id":"64542"}, +{"id":"20335"}, +{"id":"52517"}, +{"id":"98744"}, +{"id":"55145"}, +{"id":"56796"}, +{"id":"203486"}, +{"id":"132228"}, +{"id":"75354"}, +{"id":"186881"}, +{"id":"213528"}, +{"id":"23631"}, +{"id":"209364"}, +{"id":"73502"}, +{"id":"179666"}, +{"id":"215670"}, +{"id":"141989"}, +{"id":"19484"}, +{"id":"44947"}, +{"id":"60667"}, +{"id":"71325"}, +{"id":"138029"}, +{"id":"161648"}, +{"id":"20859"}, +{"id":"214335"}, +{"id":"189648"}, +{"id":"90868"}, +{"id":"113465"}, +{"id":"72359"}, +{"id":"150427"}, +{"id":"134674"}, +{"id":"98780"}, +{"id":"47577"}, +{"id":"168886"}, +{"id":"208235"}, +{"id":"153838"}, +{"id":"35166"}, +{"id":"191112"}, +{"id":"151367"}, +{"id":"120608"}, +{"id":"16435"}, +{"id":"185859"}, +{"id":"17576"}, +{"id":"200118"}, +{"id":"33920"}, +{"id":"17574"}, +{"id":"85106"}, +{"id":"34620"}, +{"id":"74974"}, +{"id":"179386"}, +{"id":"70211"}, +{"id":"7824"}, +{"id":"64782"}, +{"id":"2703"}, +{"id":"25493"}, +{"id":"139214"}, +{"id":"38007"}, +{"id":"200411"}, +{"id":"216869"}, +{"id":"125076"}, +{"id":"46217"}, +{"id":"205234"}, +{"id":"30504"}, +{"id":"77635"}, +{"id":"130664"}, +{"id":"109988"}, +{"id":"188698"}, +{"id":"75321"}, +{"id":"61332"}, +{"id":"205836"}, +{"id":"48338"}, +{"id":"43388"}, +{"id":"74170"}, +{"id":"158400"}, +{"id":"75571"}, +{"id":"192118"}, +{"id":"192164"}, +{"id":"22188"}, +{"id":"153966"}, +{"id":"202129"}, +{"id":"200545"}, +{"id":"191496"}, +{"id":"180406"}, +{"id":"111970"}, +{"id":"9560"}, +{"id":"93919"}, +{"id":"51326"}, +{"id":"22620"}, +{"id":"141854"}, +{"id":"151494"}, +{"id":"57644"}, +{"id":"3679"}, +{"id":"194759"}, +{"id":"63001"}, +{"id":"140334"}, +{"id":"16641"}, +{"id":"157547"}, +{"id":"194393"}, +{"id":"45481"}, +{"id":"26686"}, +{"id":"132048"}, +{"id":"133319"}, +{"id":"193857"}, +{"id":"33381"}, +{"id":"210679"}, +{"id":"5809"}, +{"id":"150825"}, +{"id":"141407"}, +{"id":"128447"}, +{"id":"103730"}, +{"id":"71367"}, +{"id":"178233"}, +{"id":"135680"}, +{"id":"65810"}, +{"id":"76947"}, +{"id":"115878"}, +{"id":"72257"}, +{"id":"166728"}, +{"id":"211276"}, +{"id":"203151"}, +{"id":"147400"}, +{"id":"127959"}, +{"id":"211439"}, +{"id":"127800"}, +{"id":"197285"}, +{"id":"20212"}, +{"id":"32434"}, +{"id":"133213"}, +{"id":"207403"}, +{"id":"37669"}, +{"id":"77464"}, +{"id":"139709"}, +{"id":"119664"}, +{"id":"13193"}, +{"id":"107631"}, +{"id":"127484"}, +{"id":"170216"}, +{"id":"195664"}, +{"id":"175212"}, +{"id":"169782"}, +{"id":"116393"}, +{"id":"150954"}, +{"id":"174949"}, +{"id":"23235"}, +{"id":"72781"}, +{"id":"213600"}, +{"id":"153643"}, +{"id":"75690"}, +{"id":"114158"}, +{"id":"129001"}, +{"id":"154307"}, +{"id":"119069"}, +{"id":"72556"}, +{"id":"141185"}, +{"id":"123726"}, +{"id":"18835"}, +{"id":"47276"}, +{"id":"139680"}, +{"id":"54716"}, +{"id":"170986"}, +{"id":"180636"}, +{"id":"21825"}, +{"id":"41120"}, +{"id":"149880"}, +{"id":"128040"}, +{"id":"72112"}, +{"id":"50778"}, +{"id":"37927"}, +{"id":"55791"}, +{"id":"115782"}, +{"id":"157361"}, +{"id":"34321"}, +{"id":"124126"}, +{"id":"16213"}, +{"id":"186189"}, +{"id":"160513"}, +{"id":"102696"}, +{"id":"101"}, +{"id":"58109"}, +{"id":"82009"}, +{"id":"34947"}, +{"id":"30774"}, +{"id":"140290"}, +{"id":"93841"}, +{"id":"24816"}, +{"id":"86460"}, +{"id":"31791"}, +{"id":"91979"}, +{"id":"205825"}, +{"id":"116524"}, +{"id":"48632"}, +{"id":"137975"}, +{"id":"178394"}, +{"id":"87982"}, +{"id":"114467"}, +{"id":"92649"}, +{"id":"180725"}, +{"id":"131474"}, +{"id":"31951"}, +{"id":"87140"}, +{"id":"97174"}, +{"id":"16048"}, +{"id":"66465"}, +{"id":"12663"}, +{"id":"88896"}, +{"id":"50368"}, +{"id":"110277"}, +{"id":"114415"}, +{"id":"37618"}, +{"id":"219993"}, +{"id":"131590"}, +{"id":"46664"}, +{"id":"114046"}, +{"id":"102257"}, +{"id":"59152"}, +{"id":"4374"}, +{"id":"199840"}, +{"id":"35722"}, +{"id":"104954"}, +{"id":"217860"}, +{"id":"94722"}, +{"id":"23112"}, +{"id":"112190"}, +{"id":"53149"}, +{"id":"159513"}, +{"id":"207477"}, +{"id":"203658"}, +{"id":"21846"}, +{"id":"205778"}, +{"id":"114520"}, +{"id":"116087"}, +{"id":"20561"}, +{"id":"155314"}, +{"id":"205908"}, +{"id":"66351"}, +{"id":"108528"}, +{"id":"124877"}, +{"id":"215986"}, +{"id":"207827"}, +{"id":"186271"}, +{"id":"162097"}, +{"id":"27312"}, +{"id":"114703"}, +{"id":"115187"}, +{"id":"113437"}, +{"id":"197404"}, +{"id":"122797"}, +{"id":"16222"}, +{"id":"122434"}, +{"id":"114230"}, +{"id":"153761"}, +{"id":"54154"}, +{"id":"28575"}, +{"id":"93621"}, +{"id":"209570"}, +{"id":"61525"}, +{"id":"16046"}, +{"id":"66631"}, +{"id":"44031"}, +{"id":"23225"}, +{"id":"126354"}, +{"id":"217855"}, +{"id":"50161"}, +{"id":"66182"}, +{"id":"201184"}, +{"id":"172053"}, +{"id":"62739"}, +{"id":"82428"}, +{"id":"72039"}, +{"id":"94738"}, +{"id":"28355"}, +{"id":"111834"}, +{"id":"194983"}, +{"id":"202046"}, +{"id":"208005"}, +{"id":"77969"}, +{"id":"167389"}, +{"id":"97172"}, +{"id":"142898"}, +{"id":"157890"}, +{"id":"144806"}, +{"id":"188653"}, +{"id":"201759"}, +{"id":"88969"}, +{"id":"64737"}, +{"id":"96344"}, +{"id":"15307"}, +{"id":"129126"}, +{"id":"140807"}, +{"id":"116689"}, +{"id":"50356"}, +{"id":"1661"}, +{"id":"41532"}, +{"id":"97500"}, +{"id":"64414"}, +{"id":"46662"}, +{"id":"48814"}, +{"id":"103017"}, +{"id":"95662"}, +{"id":"38670"}, +{"id":"166065"}, +{"id":"67310"}, +{"id":"43613"}, +{"id":"67753"}, +{"id":"112768"}, +{"id":"164968"}, +{"id":"112135"}, +{"id":"69212"}, +{"id":"195030"}, +{"id":"136675"}, +{"id":"27668"}, +{"id":"108053"}, +{"id":"18176"}, +{"id":"16568"}, +{"id":"9507"}, +{"id":"59809"}, +{"id":"159642"}, +{"id":"99137"}, +{"id":"83158"}, +{"id":"209617"}, +{"id":"103447"}, +{"id":"160740"}, +{"id":"219433"}, +{"id":"43746"}, +{"id":"151817"}, +{"id":"208120"}, +{"id":"190421"}, +{"id":"185073"}, +{"id":"179192"}, +{"id":"5989"}, +{"id":"82629"}, +{"id":"147172"}, +{"id":"133237"}, +{"id":"186010"}, +{"id":"25154"}, +{"id":"185097"}, +{"id":"75196"}, +{"id":"149091"}, +{"id":"46808"}, +{"id":"181775"}, +{"id":"65974"}, +{"id":"150478"}, +{"id":"133642"}, +{"id":"114959"}, +{"id":"21628"}, +{"id":"4688"}, +{"id":"125335"}, +{"id":"113976"}, +{"id":"63484"}, +{"id":"8088"}, +{"id":"113317"}, +{"id":"202819"}, +{"id":"180123"}, +{"id":"146490"}, +{"id":"5329"}, +{"id":"213406"}, +{"id":"114942"}, +{"id":"170850"}, +{"id":"127127"}, +{"id":"26834"}, +{"id":"26015"}, +{"id":"201992"}, +{"id":"191372"}, +{"id":"124724"}, +{"id":"6730"}, +{"id":"216092"}, +{"id":"188299"}, +{"id":"19218"}, +{"id":"91493"}, +{"id":"107458"}, +{"id":"32772"}, +{"id":"102065"}, +{"id":"106481"}, +{"id":"157726"}, +{"id":"68190"}, +{"id":"74094"}, +{"id":"181949"}, +{"id":"112855"}, +{"id":"173356"}, +{"id":"186903"}, +{"id":"144229"}, +{"id":"54580"}, +{"id":"65548"}, +{"id":"90857"}, +{"id":"22420"}, +{"id":"24850"}, +{"id":"171197"}, +{"id":"156530"}, +{"id":"119725"}, +{"id":"190193"}, +{"id":"159641"}, +{"id":"86320"}, +{"id":"8645"}, +{"id":"190116"}, +{"id":"28720"}, +{"id":"48245"}, +{"id":"46069"}, +{"id":"162525"}, +{"id":"92570"}, +{"id":"47197"}, +{"id":"170097"}, +{"id":"57171"}, +{"id":"164521"}, +{"id":"47290"}, +{"id":"101828"}, +{"id":"44644"}, +{"id":"102565"}, +{"id":"43263"}, +{"id":"72555"}, +{"id":"190379"}, +{"id":"96330"}, +{"id":"95297"}, +{"id":"187048"}, +{"id":"169084"}, +{"id":"96264"}, +{"id":"209577"}, +{"id":"211309"}, +{"id":"82549"}, +{"id":"192241"}, +{"id":"45047"}, +{"id":"46598"}, +{"id":"61262"}, +{"id":"4646"}, +{"id":"63968"}, +{"id":"49439"}, +{"id":"133403"}, +{"id":"218134"}, +{"id":"47328"}, +{"id":"24525"}, +{"id":"179723"}, +{"id":"64039"}, +{"id":"125759"}, +{"id":"149306"}, +{"id":"156277"}, +{"id":"163451"}, +{"id":"160750"}, +{"id":"204554"}, +{"id":"77776"}, +{"id":"67887"}, +{"id":"120054"}, +{"id":"202707"}, +{"id":"202223"}, +{"id":"119309"}, +{"id":"69198"}, +{"id":"153934"}, +{"id":"160064"}, +{"id":"110678"}, +{"id":"58"}, +{"id":"56812"}, +{"id":"217008"}, +{"id":"89953"}, +{"id":"188623"}, +{"id":"194097"}, +{"id":"85458"}, +{"id":"79561"}, +{"id":"174368"}, +{"id":"109367"}, +{"id":"148812"}, +{"id":"17526"}, +{"id":"39114"}, +{"id":"99378"}, +{"id":"139406"}, +{"id":"174614"}, +{"id":"116705"}, +{"id":"12253"}, +{"id":"135013"}, +{"id":"121232"}, +{"id":"128324"}, +{"id":"12217"}, +{"id":"74295"}, +{"id":"2338"}, +{"id":"211393"}, +{"id":"33486"}, +{"id":"25062"}, +{"id":"201093"}, +{"id":"75082"}, +{"id":"11928"}, +{"id":"149060"}, +{"id":"46885"}, +{"id":"85904"}, +{"id":"81693"}, +{"id":"87433"}, +{"id":"120409"}, +{"id":"47016"}, +{"id":"129797"}, +{"id":"192448"}, +{"id":"139044"}, +{"id":"135892"}, +{"id":"53025"}, +{"id":"183935"}, +{"id":"49726"}, +{"id":"97465"}, +{"id":"131070"}, +{"id":"8399"}, +{"id":"125295"}, +{"id":"94527"}, +{"id":"78954"}, +{"id":"98990"}, +{"id":"169414"}, +{"id":"219143"}, +{"id":"200679"}, +{"id":"82254"}, +{"id":"54191"}, +{"id":"217670"}, +{"id":"35097"}, +{"id":"202412"}, +{"id":"37573"}, +{"id":"174507"}, +{"id":"128730"}, +{"id":"46699"}, +{"id":"127238"}, +{"id":"58515"}, +{"id":"198543"}, +{"id":"33403"}, +{"id":"106075"}, +{"id":"73050"}, +{"id":"86865"}, +{"id":"182513"}, +{"id":"79355"}, +{"id":"209448"}, +{"id":"101767"}, +{"id":"9112"}, +{"id":"195528"}, +{"id":"110986"}, +{"id":"205136"}, +{"id":"120778"}, +{"id":"24893"}, +{"id":"83062"}, +{"id":"59592"}, +{"id":"212113"}, +{"id":"88116"}, +{"id":"111243"}, +{"id":"175296"}, +{"id":"166598"}, +{"id":"85869"}, +{"id":"37615"}, +{"id":"135016"}, +{"id":"25347"}, +{"id":"172359"}, +{"id":"187548"}, +{"id":"82051"}, +{"id":"114375"}, +{"id":"27153"}, +{"id":"64867"}, +{"id":"175424"}, +{"id":"47984"}, +{"id":"202158"}, +{"id":"101212"}, +{"id":"189431"}, +{"id":"187722"}, +{"id":"81349"}, +{"id":"143322"}, +{"id":"158955"}, +{"id":"27174"}, +{"id":"40359"}, +{"id":"55140"}, +{"id":"7545"}, +{"id":"122928"}, +{"id":"102871"}, +{"id":"166559"}, +{"id":"148674"}, +{"id":"179392"}, +{"id":"38818"}, +{"id":"210801"}, +{"id":"75444"}, +{"id":"69866"}, +{"id":"42857"}, +{"id":"131949"}, +{"id":"212513"}, +{"id":"75189"}, +{"id":"148575"}, +{"id":"30342"}, +{"id":"206290"}, +{"id":"127711"}, +{"id":"53247"}, +{"id":"8582"}, +{"id":"181693"}, +{"id":"201637"}, +{"id":"218781"}, +{"id":"71171"}, +{"id":"91502"}, +{"id":"182509"}, +{"id":"71443"}, +{"id":"140226"}, +{"id":"36019"}, +{"id":"107435"}, +{"id":"47872"}, +{"id":"204467"}, +{"id":"36740"}, +{"id":"79228"}, +{"id":"165622"}, +{"id":"57604"}, +{"id":"29844"}, +{"id":"154075"}, +{"id":"93653"}, +{"id":"103999"}, +{"id":"124461"}, +{"id":"106227"}, +{"id":"135317"}, +{"id":"34347"}, +{"id":"57999"}, +{"id":"83105"}, +{"id":"41034"}, +{"id":"69913"}, +{"id":"140305"}, +{"id":"110747"}, +{"id":"20481"}, +{"id":"111164"}, +{"id":"99220"}, +{"id":"10063"}, +{"id":"141987"}, +{"id":"4229"}, +{"id":"74217"}, +{"id":"168189"}, +{"id":"50097"}, +{"id":"9827"}, +{"id":"163408"}, +{"id":"136316"}, +{"id":"45307"}, +{"id":"91952"}, +{"id":"100195"}, +{"id":"192862"}, +{"id":"163722"}, +{"id":"91043"}, +{"id":"22441"}, +{"id":"181671"}, +{"id":"149071"}, +{"id":"37044"}, +{"id":"2119"}, +{"id":"155858"}, +{"id":"119317"}, +{"id":"113367"}, +{"id":"72474"}, +{"id":"154708"}, +{"id":"125110"}, +{"id":"150297"}, +{"id":"172169"}, +{"id":"16044"}, +{"id":"205757"}, +{"id":"60265"}, +{"id":"527"}, +{"id":"212945"}, +{"id":"180764"}, +{"id":"124751"}, +{"id":"73673"}, +{"id":"174729"}, +{"id":"119147"}, +{"id":"29537"}, +{"id":"77612"}, +{"id":"14073"}, +{"id":"100722"}, +{"id":"9110"}, +{"id":"140660"}, +{"id":"88842"}, +{"id":"118170"}, +{"id":"191562"}, +{"id":"210502"}, +{"id":"171545"}, +{"id":"176490"}, +{"id":"184035"}, +{"id":"102636"}, +{"id":"172165"}, +{"id":"162342"}, +{"id":"2127"}, +{"id":"144285"}, +{"id":"84819"}, +{"id":"14388"}, +{"id":"90129"}, +{"id":"209355"}, +{"id":"184535"}, +{"id":"152388"}, +{"id":"85962"}, +{"id":"11970"}, +{"id":"80261"}, +{"id":"199517"}, +{"id":"145789"}, +{"id":"85666"}, +{"id":"112530"}, +{"id":"22415"}, +{"id":"168302"}, +{"id":"158190"}, +{"id":"171370"}, +{"id":"193990"}, +{"id":"729"}, +{"id":"219061"}, +{"id":"185713"}, +{"id":"202365"}, +{"id":"99603"}, +{"id":"194302"}, +{"id":"86225"}, +{"id":"108429"}, +{"id":"70299"}, +{"id":"177477"}, +{"id":"171873"}, +{"id":"100255"}, +{"id":"113541"}, +{"id":"7140"}, +{"id":"31227"}, +{"id":"54993"}, +{"id":"182277"}, +{"id":"173553"}, +{"id":"192625"}, +{"id":"29935"}, +{"id":"149253"}, +{"id":"72195"}, +{"id":"98951"}, +{"id":"139568"}, +{"id":"24901"}, +{"id":"106710"}, +{"id":"21289"}, +{"id":"206005"}, +{"id":"157163"}, +{"id":"54484"}, +{"id":"10379"}, +{"id":"208999"}, +{"id":"124627"}, +{"id":"138840"}, +{"id":"133412"}, +{"id":"41016"}, +{"id":"107241"}, +{"id":"70715"}, +{"id":"23741"}, +{"id":"173739"}, +{"id":"218098"}, +{"id":"187865"}, +{"id":"122766"}, +{"id":"171530"}, +{"id":"90725"}, +{"id":"156259"}, +{"id":"14989"}, +{"id":"186974"}, +{"id":"217486"}, +{"id":"134788"}, +{"id":"18918"}, +{"id":"122698"}, +{"id":"98712"}, +{"id":"193679"}, +{"id":"126295"}, +{"id":"66264"}, +{"id":"161152"}, +{"id":"156416"}, +{"id":"169278"}, +{"id":"128701"}, +{"id":"191290"}, +{"id":"89418"}, +{"id":"168345"}, +{"id":"193274"}, +{"id":"134395"}, +{"id":"41176"}, +{"id":"45524"}, +{"id":"40165"}, +{"id":"149933"}, +{"id":"38216"}, +{"id":"128748"}, +{"id":"14518"}, +{"id":"36299"}, +{"id":"8460"}, +{"id":"70460"}, +{"id":"82242"}, +{"id":"14009"}, +{"id":"88310"}, +{"id":"161222"}, +{"id":"104416"}, +{"id":"126802"}, +{"id":"83979"}, +{"id":"205709"}, +{"id":"54095"}, +{"id":"48380"}, +{"id":"156700"}, +{"id":"10240"}, +{"id":"187052"}, +{"id":"109459"}, +{"id":"65299"}, +{"id":"154719"}, +{"id":"11583"}, +{"id":"41193"}, +{"id":"146013"}, +{"id":"175549"}, +{"id":"89869"}, +{"id":"62989"}, +{"id":"125071"}, +{"id":"219257"}, +{"id":"23333"}, +{"id":"118522"}, +{"id":"163098"}, +{"id":"45318"}, +{"id":"123930"}, +{"id":"66374"}, +{"id":"140457"}, +{"id":"38358"}, +{"id":"77009"}, +{"id":"7415"}, +{"id":"41661"}, +{"id":"169680"}, +{"id":"101150"}, +{"id":"185339"}, +{"id":"183592"}, +{"id":"31289"}, +{"id":"11803"}, +{"id":"159063"}, +{"id":"27160"}, +{"id":"20309"}, +{"id":"151557"}, +{"id":"101514"}, +{"id":"71420"}, +{"id":"99116"}, +{"id":"130583"}, +{"id":"144786"}, +{"id":"75815"}, +{"id":"204129"}, +{"id":"162824"}, +{"id":"99472"}, +{"id":"102731"}, +{"id":"59963"}, +{"id":"124137"}, +{"id":"47776"}, +{"id":"140991"}, +{"id":"210785"}, +{"id":"54151"}, +{"id":"31120"}, +{"id":"60893"}, +{"id":"29785"}, +{"id":"87143"}, +{"id":"114498"}, +{"id":"12797"}, +{"id":"39851"}, +{"id":"194972"}, +{"id":"65860"}, +{"id":"5400"}, +{"id":"153797"}, +{"id":"182308"}, +{"id":"212285"}, +{"id":"105855"}, +{"id":"4211"}, +{"id":"220340"}, +{"id":"144492"}, +{"id":"139377"}, +{"id":"15680"}, +{"id":"21413"}, +{"id":"6213"}, +{"id":"171195"}, +{"id":"1885"}, +{"id":"174178"}, +{"id":"26540"}, +{"id":"16347"}, +{"id":"159616"}, +{"id":"16239"}, +{"id":"205492"}, +{"id":"150114"}, +{"id":"212814"}, +{"id":"47560"}, +{"id":"168871"}, +{"id":"188641"}, +{"id":"15272"}, +{"id":"80914"}, +{"id":"81629"}, +{"id":"24540"}, +{"id":"128984"}, +{"id":"21517"}, +{"id":"59677"}, +{"id":"68802"}, +{"id":"85433"}, +{"id":"105154"}, +{"id":"164676"}, +{"id":"41046"}, +{"id":"65791"}, +{"id":"32877"}, +{"id":"42952"}, +{"id":"64725"}, +{"id":"12687"}, +{"id":"177725"}, +{"id":"38408"}, +{"id":"211324"}, +{"id":"71469"}, +{"id":"21356"}, +{"id":"197526"}, +{"id":"107415"}, +{"id":"126906"}, +{"id":"165473"}, +{"id":"107476"}, +{"id":"40520"}, +{"id":"138309"}, +{"id":"172054"}, +{"id":"106991"}, +{"id":"212466"}, +{"id":"206999"}, +{"id":"46198"}, +{"id":"32017"}, +{"id":"17960"}, +{"id":"212352"}, +{"id":"162227"}, +{"id":"167325"}, +{"id":"33996"}, +{"id":"47820"}, +{"id":"104895"}, +{"id":"59228"}, +{"id":"161452"}, +{"id":"25482"}, +{"id":"92582"}, +{"id":"40377"}, +{"id":"199936"}, +{"id":"138836"}, +{"id":"201500"}, +{"id":"63826"}, +{"id":"215001"}, +{"id":"219674"}, +{"id":"33454"}, +{"id":"147330"}, +{"id":"32975"}, +{"id":"138769"}, +{"id":"173050"}, +{"id":"210449"}, +{"id":"90760"}, +{"id":"34280"}, +{"id":"218418"}, +{"id":"114295"}, +{"id":"38765"}, +{"id":"130538"}, +{"id":"16308"}, +{"id":"183069"}, +{"id":"6847"}, +{"id":"17887"}, +{"id":"158186"}, +{"id":"158047"}, +{"id":"141182"}, +{"id":"119996"}, +{"id":"218656"}, +{"id":"23237"}, +{"id":"53428"}, +{"id":"218928"}, +{"id":"132576"}, +{"id":"117366"}, +{"id":"155693"}, +{"id":"83990"}, +{"id":"200723"}, +{"id":"11967"}, +{"id":"52012"}, +{"id":"110400"}, +{"id":"104516"}, +{"id":"137636"}, +{"id":"172615"}, +{"id":"47398"}, +{"id":"187348"}, +{"id":"23964"}, +{"id":"208513"}, +{"id":"169648"}, +{"id":"69992"}, +{"id":"4450"}, +{"id":"10275"}, +{"id":"14999"}, +{"id":"62975"}, +{"id":"60427"}, +{"id":"69232"}, +{"id":"175893"}, +{"id":"72578"}, +{"id":"175885"}, +{"id":"213653"}, +{"id":"1054"}, +{"id":"196012"}, +{"id":"149341"}, +{"id":"33417"}, +{"id":"32617"}, +{"id":"95514"}, +{"id":"125451"}, +{"id":"143132"}, +{"id":"21330"}, +{"id":"140123"}, +{"id":"17229"}, +{"id":"122204"}, +{"id":"77308"}, +{"id":"135834"}, +{"id":"4663"}, +{"id":"26727"}, +{"id":"98798"}, +{"id":"10759"}, +{"id":"32232"}, +{"id":"168121"}, +{"id":"107685"}, +{"id":"166388"}, +{"id":"18256"}, +{"id":"211452"}, +{"id":"198029"}, +{"id":"54565"}, +{"id":"49132"}, +{"id":"66762"}, +{"id":"50556"}, +{"id":"70454"}, +{"id":"75059"}, +{"id":"123937"}, +{"id":"178606"}, +{"id":"196456"}, +{"id":"178040"}, +{"id":"91302"}, +{"id":"188904"}, +{"id":"32771"}, +{"id":"215073"}, +{"id":"29875"}, +{"id":"39407"}, +{"id":"68576"}, +{"id":"220834"}, +{"id":"165023"}, +{"id":"127875"}, +{"id":"107994"}, +{"id":"36757"}, +{"id":"111776"}, +{"id":"46401"}, +{"id":"61113"}, +{"id":"181830"}, +{"id":"197969"}, +{"id":"74495"}, +{"id":"214106"}, +{"id":"52429"}, +{"id":"22876"}, +{"id":"36381"}, +{"id":"182629"}, +{"id":"87264"}, +{"id":"207567"}, +{"id":"184915"}, +{"id":"193372"}, +{"id":"2518"}, +{"id":"161205"}, +{"id":"169427"}, +{"id":"18562"}, +{"id":"169310"}, +{"id":"17862"}, +{"id":"217311"}, +{"id":"116102"}, +{"id":"26638"}, +{"id":"139541"}, +{"id":"65430"}, +{"id":"196445"}, +{"id":"213323"}, +{"id":"44135"}, +{"id":"82048"}, +{"id":"69922"}, +{"id":"206431"}, +{"id":"218793"}, +{"id":"82473"}, +{"id":"189039"}, +{"id":"78270"}, +{"id":"7468"}, +{"id":"157433"}, +{"id":"81920"}, +{"id":"216060"}, +{"id":"83285"}, +{"id":"188194"}, +{"id":"148633"}, +{"id":"205295"}, +{"id":"186171"}, +{"id":"22204"}, +{"id":"98131"}, +{"id":"139596"}, +{"id":"106768"}, +{"id":"208704"}, +{"id":"217587"}, +{"id":"183106"}, +{"id":"131035"}, +{"id":"37600"}, +{"id":"160242"}, +{"id":"61835"}, +{"id":"50355"}, +{"id":"72667"}, +{"id":"136537"}, +{"id":"154495"}, +{"id":"135397"}, +{"id":"112251"}, +{"id":"93516"}, +{"id":"212173"}, +{"id":"145320"}, +{"id":"31766"}, +{"id":"44662"}, +{"id":"140509"}, +{"id":"51329"}, +{"id":"114353"}, +{"id":"1407"}, +{"id":"127018"}, +{"id":"50761"}, +{"id":"11078"}, +{"id":"119602"}, +{"id":"132729"}, +{"id":"188562"}, +{"id":"56218"}, +{"id":"121431"}, +{"id":"92327"}, +{"id":"137354"}, +{"id":"206805"}, +{"id":"44910"}, +{"id":"160479"}, +{"id":"154499"}, +{"id":"167454"}, +{"id":"210936"}, +{"id":"136796"}, +{"id":"33638"}, +{"id":"122985"}, +{"id":"43912"}, +{"id":"206031"}, +{"id":"205647"}, +{"id":"45798"}, +{"id":"93240"}, +{"id":"185781"}, +{"id":"2991"}, +{"id":"58280"}, +{"id":"4240"}, +{"id":"76783"}, +{"id":"128024"}, +{"id":"219360"}, +{"id":"197567"}, +{"id":"126883"}, +{"id":"215748"}, +{"id":"213818"}, +{"id":"66352"}, +{"id":"111879"}, +{"id":"164272"}, +{"id":"190550"}, +{"id":"103501"}, +{"id":"139666"}, +{"id":"28511"}, +{"id":"49361"}, +{"id":"199662"}, +{"id":"141870"}, +{"id":"183957"}, +{"id":"87338"}, +{"id":"105187"}, +{"id":"72107"}, +{"id":"75600"}, +{"id":"1086"}, +{"id":"214018"}, +{"id":"108534"}, +{"id":"38067"}, +{"id":"215051"}, +{"id":"173518"}, +{"id":"219157"}, +{"id":"210148"}, +{"id":"72772"}, +{"id":"219806"}, +{"id":"68465"}, +{"id":"173000"}, +{"id":"72138"}, +{"id":"143281"}, +{"id":"219609"}, +{"id":"85464"}, +{"id":"127895"}, +{"id":"16928"}, +{"id":"4304"}, +{"id":"40775"}, +{"id":"142871"}, +{"id":"179753"}, +{"id":"40440"}, +{"id":"156708"}, +{"id":"109849"}, +{"id":"178784"}, +{"id":"52304"}, +{"id":"136004"}, +{"id":"141654"}, +{"id":"78643"}, +{"id":"76717"}, +{"id":"119755"}, +{"id":"7735"}, +{"id":"138279"}, +{"id":"186386"}, +{"id":"136620"}, +{"id":"82823"}, +{"id":"62368"}, +{"id":"217147"}, +{"id":"163564"}, +{"id":"58393"}, +{"id":"23168"}, +{"id":"108689"}, +{"id":"28454"}, +{"id":"193915"}, +{"id":"52341"}, +{"id":"130940"}, +{"id":"33424"}, +{"id":"7560"}, +{"id":"187736"}, +{"id":"126154"}, +{"id":"134629"}, +{"id":"1947"}, +{"id":"27468"}, +{"id":"67517"}, +{"id":"77171"}, +{"id":"205879"}, +{"id":"178409"}, +{"id":"15458"}, +{"id":"73908"}, +{"id":"6933"}, +{"id":"113320"}, +{"id":"26215"}, +{"id":"219407"}, +{"id":"17499"}, +{"id":"136889"}, +{"id":"156581"}, +{"id":"106639"}, +{"id":"159186"}, +{"id":"219632"}, +{"id":"2491"}, +{"id":"111910"}, +{"id":"31798"}, +{"id":"90390"}, +{"id":"160854"}, +{"id":"118083"}, +{"id":"39272"}, +{"id":"53383"}, +{"id":"157335"}, +{"id":"56431"}, +{"id":"137728"}, +{"id":"176451"}, +{"id":"112995"}, +{"id":"80164"}, +{"id":"116039"}, +{"id":"27805"}, +{"id":"33290"}, +{"id":"119846"}, +{"id":"75019"}, +{"id":"135794"}, +{"id":"67398"}, +{"id":"16496"}, +{"id":"78664"}, +{"id":"136924"}, +{"id":"40501"}, +{"id":"189535"}, +{"id":"106685"}, +{"id":"146730"}, +{"id":"24171"}, +{"id":"108605"}, +{"id":"57467"}, +{"id":"172950"}, +{"id":"178185"}, +{"id":"45441"}, +{"id":"183780"}, +{"id":"49902"}, +{"id":"219855"}, +{"id":"60954"}, +{"id":"128000"}, +{"id":"6672"}, +{"id":"201260"}, +{"id":"150361"}, +{"id":"24170"}, +{"id":"158811"}, +{"id":"205886"}, +{"id":"109559"}, +{"id":"160420"}, +{"id":"59561"}, +{"id":"169462"}, +{"id":"31693"}, +{"id":"17039"}, +{"id":"51733"}, +{"id":"3373"}, +{"id":"175371"}, +{"id":"154189"}, +{"id":"68565"}, +{"id":"203671"}, +{"id":"205409"}, +{"id":"176526"}, +{"id":"89372"}, +{"id":"132797"}, +{"id":"205109"}, +{"id":"137463"}, +{"id":"17613"}, +{"id":"8766"}, +{"id":"73648"}, +{"id":"118337"}, +{"id":"162840"}, +{"id":"180060"}, +{"id":"107027"}, +{"id":"159976"}, +{"id":"175627"}, +{"id":"73446"}, +{"id":"55080"}, +{"id":"208399"}, +{"id":"10674"}, +{"id":"175106"}, +{"id":"79761"}, +{"id":"16879"}, +{"id":"132461"}, +{"id":"121413"}, +{"id":"49732"}, +{"id":"169604"}, +{"id":"119741"}, +{"id":"120451"}, +{"id":"209300"}, +{"id":"130989"}, +{"id":"207728"}, +{"id":"27874"}, +{"id":"146166"}, +{"id":"55845"}, +{"id":"89238"}, +{"id":"36780"}, +{"id":"123482"}, +{"id":"79255"}, +{"id":"81778"}, +{"id":"134003"}, +{"id":"69030"}, +{"id":"123577"}, +{"id":"20747"}, +{"id":"137632"}, +{"id":"56695"}, +{"id":"28372"}, +{"id":"70836"}, +{"id":"62834"}, +{"id":"50060"}, +{"id":"66624"}, +{"id":"174601"}, +{"id":"108623"}, +{"id":"12191"}, +{"id":"191171"}, +{"id":"198779"}, +{"id":"63748"}, +{"id":"122415"}, +{"id":"131722"}, +{"id":"57058"}, +{"id":"74223"}, +{"id":"208319"}, +{"id":"69430"}, +{"id":"205614"}, +{"id":"113212"}, +{"id":"162751"}, +{"id":"41121"}, +{"id":"159266"}, +{"id":"120439"}, +{"id":"137255"}, +{"id":"103120"}, +{"id":"98396"}, +{"id":"161415"}, +{"id":"134582"}, +{"id":"63162"}, +{"id":"56162"}, +{"id":"207563"}, +{"id":"57045"}, +{"id":"217054"}, +{"id":"110092"}, +{"id":"157916"}, +{"id":"141020"}, +{"id":"212971"}, +{"id":"30441"}, +{"id":"51672"}, +{"id":"66980"}, +{"id":"69166"}, +{"id":"39611"}, +{"id":"132153"}, +{"id":"213639"}, +{"id":"81352"}, +{"id":"53863"}, +{"id":"13301"}, +{"id":"104686"}, +{"id":"169754"}, +{"id":"166339"}, +{"id":"120289"}, +{"id":"97030"}, +{"id":"69863"}, +{"id":"152726"}, +{"id":"120272"}, +{"id":"108640"}, +{"id":"99658"}, +{"id":"24628"}, +{"id":"212772"}, +{"id":"71820"}, +{"id":"147017"}, +{"id":"73293"}, +{"id":"65103"}, +{"id":"120483"}, +{"id":"27525"}, +{"id":"118649"}, +{"id":"38582"}, +{"id":"150829"}, +{"id":"86357"}, +{"id":"119206"}, +{"id":"164033"}, +{"id":"116187"}, +{"id":"169557"}, +{"id":"8081"}, +{"id":"86021"}, +{"id":"34642"}, +{"id":"13063"}, +{"id":"40900"}, +{"id":"61629"}, +{"id":"115199"}, +{"id":"140519"}, +{"id":"171151"}, +{"id":"122422"}, +{"id":"30590"}, +{"id":"142747"}, +{"id":"19470"}, +{"id":"175398"}, +{"id":"53532"}, +{"id":"129621"}, +{"id":"63435"}, +{"id":"54010"}, +{"id":"86272"}, +{"id":"207412"}, +{"id":"110335"}, +{"id":"55846"}, +{"id":"156296"}, +{"id":"82717"}, +{"id":"31113"}, +{"id":"193821"}, +{"id":"140399"}, +{"id":"86556"}, +{"id":"153488"}, +{"id":"63649"}, +{"id":"63206"}, +{"id":"105815"}, +{"id":"183297"}, +{"id":"102270"}, +{"id":"166473"}, +{"id":"163039"}, +{"id":"76173"}, +{"id":"105738"}, +{"id":"150259"}, +{"id":"103996"}, +{"id":"169545"}, +{"id":"44678"}, +{"id":"97354"}, +{"id":"49805"}, +{"id":"188688"}, +{"id":"122276"}, +{"id":"84846"}, +{"id":"177556"}, +{"id":"125028"}, +{"id":"117838"}, +{"id":"107005"}, +{"id":"173837"}, +{"id":"138202"}, +{"id":"96110"}, +{"id":"100258"}, +{"id":"163312"}, +{"id":"140167"}, +{"id":"48918"}, +{"id":"122452"}, +{"id":"28242"}, +{"id":"105258"}, +{"id":"146108"}, +{"id":"116419"}, +{"id":"142244"}, +{"id":"217453"}, +{"id":"219082"}, +{"id":"26028"}, +{"id":"112384"}, +{"id":"58793"}, +{"id":"14100"}, +{"id":"89772"}, +{"id":"177215"}, +{"id":"158874"}, +{"id":"116534"}, +{"id":"147992"}, +{"id":"44702"}, +{"id":"206833"}, +{"id":"21230"}, +{"id":"19910"}, +{"id":"202971"}, +{"id":"55532"}, +{"id":"38659"}, +{"id":"162"}, +{"id":"21697"}, +{"id":"67625"}, +{"id":"75590"}, +{"id":"200236"}, +{"id":"5615"}, +{"id":"131380"}, +{"id":"147996"}, +{"id":"208147"}, +{"id":"58724"}, +{"id":"102977"}, +{"id":"110048"}, +{"id":"38024"}, +{"id":"143064"}, +{"id":"193094"}, +{"id":"183012"}, +{"id":"42525"}, +{"id":"197212"}, +{"id":"97271"}, +{"id":"121726"}, +{"id":"31021"}, +{"id":"165385"}, +{"id":"92605"}, +{"id":"109984"}, +{"id":"73731"}, +{"id":"175047"}, +{"id":"211108"}, +{"id":"181900"}, +{"id":"100249"}, +{"id":"206901"}, +{"id":"66612"}, +{"id":"102974"}, +{"id":"220747"}, +{"id":"105757"}, +{"id":"72984"}, +{"id":"80331"}, +{"id":"77319"}, +{"id":"115893"}, +{"id":"192242"}, +{"id":"184419"}, +{"id":"112421"}, +{"id":"30061"}, +{"id":"37843"}, +{"id":"179810"}, +{"id":"129662"}, +{"id":"112036"}, +{"id":"176044"}, +{"id":"103417"}, +{"id":"135035"}, +{"id":"1164"}, +{"id":"114189"}, +{"id":"217808"}, +{"id":"101981"}, +{"id":"198245"}, +{"id":"109833"}, +{"id":"149300"}, +{"id":"35361"}, +{"id":"111496"}, +{"id":"75406"}, +{"id":"177391"}, +{"id":"109241"}, +{"id":"148117"}, +{"id":"82186"}, +{"id":"40687"}, +{"id":"166619"}, +{"id":"187763"}, +{"id":"134669"}, +{"id":"190182"}, +{"id":"97915"}, +{"id":"150936"}, +{"id":"30415"}, +{"id":"211896"}, +{"id":"212907"}, +{"id":"175950"}, +{"id":"176817"}, +{"id":"97729"}, +{"id":"200026"}, +{"id":"172887"}, +{"id":"112801"}, +{"id":"113665"}, +{"id":"132343"}, +{"id":"175475"}, +{"id":"27095"}, +{"id":"127724"}, +{"id":"35567"}, +{"id":"128560"}, +{"id":"29248"}, +{"id":"181453"}, +{"id":"102355"}, +{"id":"88979"}, +{"id":"89856"}, +{"id":"65465"}, +{"id":"192139"}, +{"id":"199176"}, +{"id":"123160"}, +{"id":"154097"}, +{"id":"12011"}, +{"id":"11708"}, +{"id":"36475"}, +{"id":"141694"}, +{"id":"35182"}, +{"id":"177136"}, +{"id":"191203"}, +{"id":"177228"}, +{"id":"46568"}, +{"id":"219040"}, +{"id":"172900"}, +{"id":"220759"}, +{"id":"45029"}, +{"id":"6160"}, +{"id":"28983"}, +{"id":"75144"}, +{"id":"170522"}, +{"id":"185338"}, +{"id":"111376"}, +{"id":"215802"}, +{"id":"98950"}, +{"id":"91027"}, +{"id":"156998"}, +{"id":"38452"}, +{"id":"78460"}, +{"id":"206087"}, +{"id":"144138"}, +{"id":"71990"}, +{"id":"9913"}, +{"id":"55580"}, +{"id":"178303"}, +{"id":"19058"}, +{"id":"210762"}, +{"id":"85421"}, +{"id":"100065"}, +{"id":"124024"}, +{"id":"216738"}, +{"id":"100708"}, +{"id":"62100"}, +{"id":"78991"}, +{"id":"180733"}, +{"id":"2557"}, +{"id":"74178"}, +{"id":"9532"}, +{"id":"12332"}, +{"id":"153436"}, +{"id":"69382"}, +{"id":"138053"}, +{"id":"149472"}, +{"id":"63541"}, +{"id":"91245"}, +{"id":"30790"}, +{"id":"147911"}, +{"id":"16143"}, +{"id":"190618"}, +{"id":"100936"}, +{"id":"215406"}, +{"id":"145537"}, +{"id":"17577"}, +{"id":"213449"}, +{"id":"33801"}, +{"id":"197153"}, +{"id":"164332"}, +{"id":"144224"}, +{"id":"24086"}, +{"id":"215393"}, +{"id":"59947"}, +{"id":"83853"}, +{"id":"116645"}, +{"id":"112432"}, +{"id":"159522"}, +{"id":"167087"}, +{"id":"10419"}, +{"id":"157369"}, +{"id":"16356"}, +{"id":"198615"}, +{"id":"54349"}, +{"id":"15631"}, +{"id":"95207"}, +{"id":"181372"}, +{"id":"16018"}, +{"id":"179348"}, +{"id":"8157"}, +{"id":"157593"}, +{"id":"38638"}, +{"id":"183876"}, +{"id":"58219"}, +{"id":"56030"}, +{"id":"183509"}, +{"id":"98170"}, +{"id":"8241"}, +{"id":"148272"}, +{"id":"127873"}, +{"id":"190811"}, +{"id":"113671"}, +{"id":"124513"}, +{"id":"119804"}, +{"id":"37014"}, +{"id":"63344"}, +{"id":"64946"}, +{"id":"210814"}, +{"id":"185980"}, +{"id":"9441"}, +{"id":"126576"}, +{"id":"156452"}, +{"id":"142264"}, +{"id":"150783"}, +{"id":"144608"}, +{"id":"187573"}, +{"id":"141063"}, +{"id":"196922"}, +{"id":"104099"}, +{"id":"63576"}, +{"id":"34239"}, +{"id":"160663"}, +{"id":"38107"}, +{"id":"3339"}, +{"id":"185564"}, +{"id":"183543"}, +{"id":"3222"}, +{"id":"107894"}, +{"id":"208473"}, +{"id":"57101"}, +{"id":"16147"}, +{"id":"177446"}, +{"id":"85009"}, +{"id":"62837"}, +{"id":"202605"}, +{"id":"98947"}, +{"id":"167297"}, +{"id":"145987"}, +{"id":"142327"}, +{"id":"152021"}, +{"id":"181272"}, +{"id":"151338"}, +{"id":"165493"}, +{"id":"118870"}, +{"id":"204141"}, +{"id":"85523"}, +{"id":"136291"}, +{"id":"90352"}, +{"id":"191499"}, +{"id":"127096"}, +{"id":"113509"}, +{"id":"158083"}, +{"id":"68535"}, +{"id":"89219"}, +{"id":"104328"}, +{"id":"21163"}, +{"id":"134355"}, +{"id":"165783"}, +{"id":"83789"}, +{"id":"47876"}, +{"id":"220304"}, +{"id":"216761"}, +{"id":"26000"}, +{"id":"115482"}, +{"id":"10448"}, +{"id":"110013"}, +{"id":"78351"}, +{"id":"4445"}, +{"id":"170181"}, +{"id":"177589"}, +{"id":"131598"}, +{"id":"139318"}, +{"id":"114529"}, +{"id":"146357"}, +{"id":"100774"}, +{"id":"13137"}, +{"id":"79183"}, +{"id":"157486"}, +{"id":"54493"}, +{"id":"109715"}, +{"id":"105765"}, +{"id":"218273"}, +{"id":"11065"}, +{"id":"8459"}, +{"id":"170927"}, +{"id":"20966"}, +{"id":"189677"}, +{"id":"44779"}, +{"id":"214686"}, +{"id":"165468"}, +{"id":"118647"}, +{"id":"143279"}, +{"id":"219331"}, +{"id":"36053"}, +{"id":"174883"}, +{"id":"67577"}, +{"id":"36756"}, +{"id":"137341"}, +{"id":"217058"}, +{"id":"94487"}, +{"id":"171773"}, +{"id":"10246"}, +{"id":"168155"}, +{"id":"29209"}, +{"id":"144670"}, +{"id":"14642"}, +{"id":"60208"}, +{"id":"58214"}, +{"id":"172697"}, +{"id":"23487"}, +{"id":"106092"}, +{"id":"219835"}, +{"id":"220681"}, +{"id":"47774"}, +{"id":"177670"}, +{"id":"32207"}, +{"id":"56024"}, +{"id":"195316"}, +{"id":"32922"}, +{"id":"17890"}, +{"id":"42794"}, +{"id":"105502"}, +{"id":"23509"}, +{"id":"5658"}, +{"id":"33268"}, +{"id":"70118"}, +{"id":"169675"}, +{"id":"33840"}, +{"id":"4350"}, +{"id":"117256"}, +{"id":"194833"}, +{"id":"23599"}, +{"id":"216927"}, +{"id":"81860"}, +{"id":"98392"}, +{"id":"46822"}, +{"id":"53517"}, +{"id":"110432"}, +{"id":"24937"}, +{"id":"216080"}, +{"id":"43789"}, +{"id":"53032"}, +{"id":"151196"}, +{"id":"70374"}, +{"id":"85271"}, +{"id":"134857"}, +{"id":"19554"}, +{"id":"142994"}, +{"id":"26024"}, +{"id":"199852"}, +{"id":"104331"}, +{"id":"190782"}, +{"id":"22249"}, +{"id":"29772"}, +{"id":"175949"}, +{"id":"116601"}, +{"id":"206193"}, +{"id":"193123"}, +{"id":"152752"}, +{"id":"129768"}, +{"id":"204428"}, +{"id":"133164"}, +{"id":"13431"}, +{"id":"69671"}, +{"id":"16877"}, +{"id":"81354"}, +{"id":"68113"}, +{"id":"141315"}, +{"id":"164400"}, +{"id":"1213"}, +{"id":"26284"}, +{"id":"152945"}, +{"id":"16063"}, +{"id":"80333"}, +{"id":"200686"}, +{"id":"34474"}, +{"id":"42386"}, +{"id":"162044"}, +{"id":"197129"}, +{"id":"27159"}, +{"id":"186336"}, +{"id":"218534"}, +{"id":"88214"}, +{"id":"137300"}, +{"id":"85692"}, +{"id":"194636"}, +{"id":"62029"}, +{"id":"45555"}, +{"id":"216923"}, +{"id":"215233"}, +{"id":"158773"}, +{"id":"134251"}, +{"id":"8226"}, +{"id":"89369"}, +{"id":"71363"}, +{"id":"191976"}, +{"id":"195146"}, +{"id":"95828"}, +{"id":"106385"}, +{"id":"45567"}, +{"id":"126016"}, +{"id":"207373"}, +{"id":"131528"}, +{"id":"34705"}, +{"id":"13963"}, +{"id":"56921"}, +{"id":"219432"}, +{"id":"174059"}, +{"id":"64000"}, +{"id":"209922"}, +{"id":"38705"}, +{"id":"81303"}, +{"id":"151918"}, +{"id":"29469"}, +{"id":"81405"}, +{"id":"133685"}, +{"id":"191110"}, +{"id":"11685"}, +{"id":"179966"}, +{"id":"205119"}, +{"id":"218600"}, +{"id":"86950"}, +{"id":"189912"}, +{"id":"168830"}, +{"id":"80095"}, +{"id":"118509"}, +{"id":"160244"}, +{"id":"133932"}, +{"id":"64517"}, +{"id":"101747"}, +{"id":"121685"}, +{"id":"155107"}, +{"id":"90606"}, +{"id":"13611"}, +{"id":"121618"}, +{"id":"91143"}, +{"id":"145961"}, +{"id":"115967"}, +{"id":"5292"}, +{"id":"137971"}, +{"id":"147378"}, +{"id":"202318"}, +{"id":"180002"}, +{"id":"196619"}, +{"id":"89441"}, +{"id":"78130"}, +{"id":"205346"}, +{"id":"68739"}, +{"id":"62584"}, +{"id":"52063"}, +{"id":"114899"}, +{"id":"159228"}, +{"id":"219926"}, +{"id":"103955"}, +{"id":"10150"}, +{"id":"178614"}, +{"id":"125165"}, +{"id":"94022"}, +{"id":"98724"}, +{"id":"197321"}, +{"id":"219636"}, +{"id":"87113"}, +{"id":"73403"}, +{"id":"45019"}, +{"id":"6727"}, +{"id":"21039"}, +{"id":"206379"}, +{"id":"10978"}, +{"id":"26924"}, +{"id":"83326"}, +{"id":"374"}, +{"id":"164124"}, +{"id":"4415"}, +{"id":"50827"}, +{"id":"76909"}, +{"id":"14520"}, +{"id":"63917"}, +{"id":"202941"}, +{"id":"50801"}, +{"id":"80467"}, +{"id":"188830"}, +{"id":"100171"}, +{"id":"10026"}, +{"id":"10714"}, +{"id":"58016"}, +{"id":"14443"}, +{"id":"18128"}, +{"id":"86649"}, +{"id":"93675"}, +{"id":"123732"}, +{"id":"213769"}, +{"id":"205810"}, +{"id":"129597"}, +{"id":"219182"}, +{"id":"145369"}, +{"id":"67086"}, +{"id":"145890"}, +{"id":"106114"}, +{"id":"169722"}, +{"id":"145885"}, +{"id":"49502"}, +{"id":"76737"}, +{"id":"122899"}, +{"id":"137283"}, +{"id":"147004"}, +{"id":"186997"}, +{"id":"146634"}, +{"id":"156930"}, +{"id":"7564"}, +{"id":"599"}, +{"id":"50018"}, +{"id":"73509"}, +{"id":"200442"}, +{"id":"49324"}, +{"id":"30706"}, +{"id":"70733"}, +{"id":"103243"}, +{"id":"56168"}, +{"id":"208008"}, +{"id":"213729"}, +{"id":"5332"}, +{"id":"160226"}, +{"id":"126153"}, +{"id":"74511"}, +{"id":"103043"}, +{"id":"197863"}, +{"id":"31765"}, +{"id":"121522"}, +{"id":"100078"}, +{"id":"139071"}, +{"id":"57987"}, +{"id":"57253"}, +{"id":"167291"}, +{"id":"14568"}, +{"id":"198397"}, +{"id":"1678"}, +{"id":"142497"}, +{"id":"71189"}, +{"id":"160882"}, +{"id":"159255"}, +{"id":"155662"}, +{"id":"160828"}, +{"id":"219176"}, +{"id":"10879"}, +{"id":"211074"}, +{"id":"71115"}, +{"id":"98575"}, +{"id":"197827"}, +{"id":"27743"}, +{"id":"202717"}, +{"id":"42211"}, +{"id":"102059"}, +{"id":"30865"}, +{"id":"156489"}, +{"id":"37379"}, +{"id":"134486"}, +{"id":"162940"}, +{"id":"83631"}, +{"id":"27912"}, +{"id":"71584"}, +{"id":"16273"}, +{"id":"41604"}, +{"id":"38978"}, +{"id":"34543"}, +{"id":"190807"}, +{"id":"99317"}, +{"id":"28240"}, +{"id":"184251"}, +{"id":"209123"}, +{"id":"16491"}, +{"id":"46615"}, +{"id":"211015"}, +{"id":"145773"}, +{"id":"5442"}, +{"id":"52127"}, +{"id":"171070"}, +{"id":"94585"}, +{"id":"158181"}, +{"id":"150081"}, +{"id":"2741"}, +{"id":"193099"}, +{"id":"200277"}, +{"id":"130000"}, +{"id":"28007"}, +{"id":"179732"}, +{"id":"172062"}, +{"id":"85183"}, +{"id":"107101"}, +{"id":"21428"}, +{"id":"209450"}, +{"id":"32775"}, +{"id":"5383"}, +{"id":"115130"}, +{"id":"109303"}, +{"id":"70730"}, +{"id":"48546"}, +{"id":"22981"}, +{"id":"9091"}, +{"id":"199460"}, +{"id":"23345"}, +{"id":"112398"}, +{"id":"2904"}, +{"id":"162195"}, +{"id":"18314"}, +{"id":"72737"}, +{"id":"51994"}, +{"id":"216925"}, +{"id":"130701"}, +{"id":"8474"}, +{"id":"204621"}, +{"id":"47155"}, +{"id":"44654"}, +{"id":"28018"}, +{"id":"12294"}, +{"id":"134927"}, +{"id":"78328"}, +{"id":"109918"}, +{"id":"7295"}, +{"id":"213045"}, +{"id":"177840"}, +{"id":"107575"}, +{"id":"122348"}, +{"id":"149770"}, +{"id":"49713"}, +{"id":"180325"}, +{"id":"58210"}, +{"id":"14020"}, +{"id":"75009"}, +{"id":"171142"}, +{"id":"175163"}, +{"id":"150260"}, +{"id":"26009"}, +{"id":"111715"}, +{"id":"76332"}, +{"id":"180345"}, +{"id":"144561"}, +{"id":"92342"}, +{"id":"201929"}, +{"id":"3953"}, +{"id":"202210"}, +{"id":"196100"}, +{"id":"37407"}, +{"id":"12176"}, +{"id":"83782"}, +{"id":"218387"}, +{"id":"49987"}, +{"id":"81896"}, +{"id":"39953"}, +{"id":"76389"}, +{"id":"111980"}, +{"id":"121789"}, +{"id":"30581"}, +{"id":"34212"}, +{"id":"58746"}, +{"id":"103366"}, +{"id":"178930"}, +{"id":"98622"}, +{"id":"51201"}, +{"id":"180609"}, +{"id":"103414"}, +{"id":"61030"}, +{"id":"195508"}, +{"id":"122941"}, +{"id":"29740"}, +{"id":"169405"}, +{"id":"42117"}, +{"id":"57013"}, +{"id":"23984"}, +{"id":"190998"}, +{"id":"27694"}, +{"id":"193514"}, +{"id":"51969"}, +{"id":"62620"}, +{"id":"128145"}, +{"id":"195190"}, +{"id":"183127"}, +{"id":"128232"}, +{"id":"129171"}, +{"id":"162279"}, +{"id":"88629"}, +{"id":"130163"}, +{"id":"102305"}, +{"id":"88771"}, +{"id":"192166"}, +{"id":"141011"}, +{"id":"47891"}, +{"id":"135814"}, +{"id":"51379"}, +{"id":"208997"}, +{"id":"197753"}, +{"id":"33567"}, +{"id":"193588"}, +{"id":"109117"}, +{"id":"176539"}, +{"id":"25059"}, +{"id":"117265"}, +{"id":"202038"}, +{"id":"172904"}, +{"id":"121708"}, +{"id":"28899"}, +{"id":"22474"}, +{"id":"6595"}, +{"id":"77568"}, +{"id":"209977"}, +{"id":"87701"}, +{"id":"140195"}, +{"id":"162260"}, +{"id":"114126"}, +{"id":"128295"}, +{"id":"186152"}, +{"id":"139750"}, +{"id":"47020"}, +{"id":"211853"}, +{"id":"72837"}, +{"id":"172952"}, +{"id":"149414"}, +{"id":"152860"}, +{"id":"96806"}, +{"id":"27136"}, +{"id":"191387"}, +{"id":"164052"}, +{"id":"131260"}, +{"id":"59346"}, +{"id":"157858"}, +{"id":"114148"}, +{"id":"20552"}, +{"id":"199820"}, +{"id":"11767"}, +{"id":"178469"}, +{"id":"135793"}, +{"id":"192886"}, +{"id":"122267"}, +{"id":"188583"}, +{"id":"58477"}, +{"id":"5745"}, +{"id":"149617"}, +{"id":"52262"}, +{"id":"59395"}, +{"id":"119577"}, +{"id":"204960"}, +{"id":"188554"}, +{"id":"121519"}, +{"id":"11150"}, +{"id":"60324"}, +{"id":"100627"}, +{"id":"30980"}, +{"id":"2869"}, +{"id":"106984"}, +{"id":"53736"}, +{"id":"2698"}, +{"id":"32065"}, +{"id":"182883"}, +{"id":"155764"}, +{"id":"32387"}, +{"id":"188210"}, +{"id":"82399"}, +{"id":"136575"}, +{"id":"128723"}, +{"id":"47287"}, +{"id":"143256"}, +{"id":"71087"}, +{"id":"99431"}, +{"id":"213933"}, +{"id":"114464"}, +{"id":"108340"}, +{"id":"140617"}, +{"id":"67614"}, +{"id":"73384"}, +{"id":"53632"}, +{"id":"212220"}, +{"id":"66537"}, +{"id":"159009"}, +{"id":"43775"}, +{"id":"164664"}, +{"id":"183714"}, +{"id":"43247"}, +{"id":"133818"}, +{"id":"65368"}, +{"id":"180314"}, +{"id":"205027"}, +{"id":"169793"}, +{"id":"4530"}, +{"id":"162802"}, +{"id":"41556"}, +{"id":"26691"}, +{"id":"67563"}, +{"id":"69509"}, +{"id":"202010"}, +{"id":"168505"}, +{"id":"193774"}, +{"id":"47922"}, +{"id":"108428"}, +{"id":"106865"}, +{"id":"108686"}, +{"id":"112189"}, +{"id":"166512"}, +{"id":"172210"}, +{"id":"23075"}, +{"id":"208984"}, +{"id":"79151"}, +{"id":"176765"}, +{"id":"80719"}, +{"id":"73355"}, +{"id":"152030"}, +{"id":"94450"}, +{"id":"117715"}, +{"id":"5586"}, +{"id":"205755"}, +{"id":"22832"}, +{"id":"59839"}, +{"id":"161971"}, +{"id":"176536"}, +{"id":"212860"}, +{"id":"33469"}, +{"id":"21768"}, +{"id":"154197"}, +{"id":"49541"}, +{"id":"165084"}, +{"id":"101259"}, +{"id":"58534"}, +{"id":"4178"}, +{"id":"135239"}, +{"id":"64844"}, +{"id":"130661"}, +{"id":"93148"}, +{"id":"101620"}, +{"id":"55014"}, +{"id":"15171"}, +{"id":"36327"}, +{"id":"217323"}, +{"id":"134644"}, +{"id":"203956"}, +{"id":"103789"}, +{"id":"211599"}, +{"id":"87070"}, +{"id":"38189"}, +{"id":"150294"}, +{"id":"152193"}, +{"id":"170670"}, +{"id":"179354"}, +{"id":"112859"}, +{"id":"63082"}, +{"id":"61793"}, +{"id":"146592"}, +{"id":"127338"}, +{"id":"127482"}, +{"id":"1961"}, +{"id":"18391"}, +{"id":"195271"}, +{"id":"22377"}, +{"id":"147121"}, +{"id":"96093"}, +{"id":"72733"}, +{"id":"41488"}, +{"id":"121777"}, +{"id":"21301"}, +{"id":"47356"}, +{"id":"100334"}, +{"id":"165722"}, +{"id":"114953"}, +{"id":"141055"}, +{"id":"104098"}, +{"id":"116966"}, +{"id":"167402"}, +{"id":"47932"}, +{"id":"159520"}, +{"id":"67998"}, +{"id":"143991"}, +{"id":"65452"}, +{"id":"2973"}, +{"id":"105312"}, +{"id":"51012"}, +{"id":"37672"}, +{"id":"37877"}, +{"id":"168885"}, +{"id":"113252"}, +{"id":"179362"}, +{"id":"57343"}, +{"id":"134910"}, +{"id":"169979"}, +{"id":"93778"}, +{"id":"143200"}, +{"id":"83431"}, +{"id":"148244"}, +{"id":"72248"}, +{"id":"58546"}, +{"id":"155360"}, +{"id":"185623"}, +{"id":"101216"}, +{"id":"156956"}, +{"id":"63075"}, +{"id":"42543"}, +{"id":"181928"}, +{"id":"154726"}, +{"id":"216284"}, +{"id":"57117"}, +{"id":"183561"}, +{"id":"165111"}, +{"id":"161933"}, +{"id":"3288"}, +{"id":"71473"}, +{"id":"35395"}, +{"id":"128111"}, +{"id":"10521"}, +{"id":"103079"}, +{"id":"76092"}, +{"id":"177913"}, +{"id":"109255"}, +{"id":"84297"}, +{"id":"158118"}, +{"id":"202716"}, +{"id":"144100"}, +{"id":"134530"}, +{"id":"209890"}, +{"id":"180335"}, +{"id":"55547"}, +{"id":"74609"}, +{"id":"32285"}, +{"id":"190993"}, +{"id":"30204"}, +{"id":"100879"}, +{"id":"67027"}, +{"id":"179690"}, +{"id":"182317"}, +{"id":"15676"}, +{"id":"157103"}, +{"id":"123716"}, +{"id":"88886"}, +{"id":"219723"}, +{"id":"49582"}, +{"id":"112887"}, +{"id":"187594"}, +{"id":"26151"}, +{"id":"208436"}, +{"id":"209045"}, +{"id":"104880"}, +{"id":"43894"}, +{"id":"83490"}, +{"id":"93112"}, +{"id":"208293"}, +{"id":"124033"}, +{"id":"161281"}, +{"id":"124083"}, +{"id":"203895"}, +{"id":"169909"}, +{"id":"181364"}, +{"id":"97837"}, +{"id":"61410"}, +{"id":"181344"}, +{"id":"84419"}, +{"id":"3119"}, +{"id":"73323"}, +{"id":"12956"}, +{"id":"99713"}, +{"id":"78044"}, +{"id":"13910"}, +{"id":"48758"}, +{"id":"31879"}, +{"id":"211406"}, +{"id":"158326"}, +{"id":"169439"}, +{"id":"30010"}, +{"id":"48394"}, +{"id":"144919"}, +{"id":"29544"}, +{"id":"91138"}, +{"id":"164704"}, +{"id":"119310"}, +{"id":"19054"}, +{"id":"162567"}, +{"id":"83029"}, +{"id":"7654"}, +{"id":"129357"}, +{"id":"98004"}, +{"id":"154072"}, +{"id":"154963"}, +{"id":"150342"}, +{"id":"59"}, +{"id":"66682"}, +{"id":"46709"}, +{"id":"67928"}, +{"id":"41707"}, +{"id":"113533"}, +{"id":"212906"}, +{"id":"125336"}, +{"id":"210113"}, +{"id":"9066"}, +{"id":"137757"}, +{"id":"61026"}, +{"id":"158029"}, +{"id":"73645"}, +{"id":"190296"}, +{"id":"199963"}, +{"id":"108832"}, +{"id":"76481"}, +{"id":"12078"}, +{"id":"97249"}, +{"id":"188753"}, +{"id":"196247"}, +{"id":"147605"}, +{"id":"208784"}, +{"id":"155274"}, +{"id":"156481"}, +{"id":"170583"}, +{"id":"190176"}, +{"id":"131201"}, +{"id":"69124"}, +{"id":"143601"}, +{"id":"8895"}, +{"id":"160585"}, +{"id":"99365"}, +{"id":"51001"}, +{"id":"166481"}, +{"id":"30863"}, +{"id":"220402"}, +{"id":"100889"}, +{"id":"28520"}, +{"id":"106981"}, +{"id":"108356"}, +{"id":"154466"}, +{"id":"70739"}, +{"id":"185678"}, +{"id":"113187"}, +{"id":"147497"}, +{"id":"22068"}, +{"id":"202492"}, +{"id":"101671"}, +{"id":"110144"}, +{"id":"64354"}, +{"id":"30966"}, +{"id":"146711"}, +{"id":"120973"}, +{"id":"8993"}, +{"id":"31881"}, +{"id":"198224"}, +{"id":"56814"}, +{"id":"25937"}, +{"id":"134619"}, +{"id":"182213"}, +{"id":"128064"}, +{"id":"163209"}, +{"id":"74344"}, +{"id":"74666"}, +{"id":"41164"}, +{"id":"56375"}, +{"id":"56574"}, +{"id":"61606"}, +{"id":"163490"}, +{"id":"5824"}, +{"id":"195964"}, +{"id":"159944"}, +{"id":"61799"}, +{"id":"77838"}, +{"id":"37035"}, +{"id":"148337"}, +{"id":"92203"}, +{"id":"143778"}, +{"id":"150008"}, +{"id":"65572"}, +{"id":"6843"}, +{"id":"61725"}, +{"id":"179146"}, +{"id":"122648"}, +{"id":"148240"}, +{"id":"79504"}, +{"id":"24689"}, +{"id":"100424"}, +{"id":"186109"}, +{"id":"126310"}, +{"id":"103016"}, +{"id":"176636"}, +{"id":"208681"}, +{"id":"45347"}, +{"id":"197893"}, +{"id":"62785"}, +{"id":"166372"}, +{"id":"12906"}, +{"id":"32817"}, +{"id":"9162"}, +{"id":"131822"}, +{"id":"92784"}, +{"id":"122408"}, +{"id":"670"}, +{"id":"130073"}, +{"id":"212345"}, +{"id":"67699"}, +{"id":"28277"}, +{"id":"169406"}, +{"id":"12568"}, +{"id":"197432"}, +{"id":"138283"}, +{"id":"11033"}, +{"id":"104488"}, +{"id":"152722"}, +{"id":"70621"}, +{"id":"154568"}, +{"id":"123967"}, +{"id":"28527"}, +{"id":"127685"}, +{"id":"41635"}, +{"id":"133298"}, +{"id":"85189"}, +{"id":"174391"}, +{"id":"203607"}, +{"id":"35405"}, +{"id":"99941"}, +{"id":"26885"}, +{"id":"165055"}, +{"id":"11827"}, +{"id":"5584"}, +{"id":"111175"}, +{"id":"143995"}, +{"id":"105468"}, +{"id":"193355"}, +{"id":"182385"}, +{"id":"128987"}, +{"id":"73910"}, +{"id":"192465"}, +{"id":"56150"}, +{"id":"162072"}, +{"id":"62657"}, +{"id":"215893"}, +{"id":"218968"}, +{"id":"34384"}, +{"id":"201295"}, +{"id":"207219"}, +{"id":"166747"}, +{"id":"35743"}, +{"id":"57795"}, +{"id":"137906"}, +{"id":"87859"}, +{"id":"110454"}, +{"id":"50119"}, +{"id":"145060"}, +{"id":"157666"}, +{"id":"167696"}, +{"id":"19439"}, +{"id":"151890"}, +{"id":"60851"}, +{"id":"40534"}, +{"id":"7033"}, +{"id":"87502"}, +{"id":"200850"}, +{"id":"33880"}, +{"id":"157994"}, +{"id":"69969"}, +{"id":"144881"}, +{"id":"161213"}, +{"id":"74346"}, +{"id":"141931"}, +{"id":"96020"}, +{"id":"114400"}, +{"id":"20938"}, +{"id":"88558"}, +{"id":"87010"}, +{"id":"109839"}, +{"id":"74361"}, +{"id":"182246"}, +{"id":"161279"}, +{"id":"204989"}, +{"id":"176794"}, +{"id":"170059"}, +{"id":"175787"}, +{"id":"115940"}, +{"id":"102649"}, +{"id":"159937"}, +{"id":"20445"}, +{"id":"199546"}, +{"id":"217532"}, +{"id":"155112"}, +{"id":"10455"}, +{"id":"214946"}, +{"id":"174357"}, +{"id":"28915"}, +{"id":"175884"}, +{"id":"101937"}, +{"id":"122917"}, +{"id":"155681"}, +{"id":"137015"}, +{"id":"10719"}, +{"id":"31732"}, +{"id":"164150"}, +{"id":"29903"}, +{"id":"220812"}, +{"id":"1862"}, +{"id":"199125"}, +{"id":"166528"}, +{"id":"86138"}, +{"id":"192940"}, +{"id":"77927"}, +{"id":"27388"}, +{"id":"9131"}, +{"id":"192183"}, +{"id":"91069"}, +{"id":"149660"}, +{"id":"193437"}, +{"id":"167072"}, +{"id":"22982"}, +{"id":"15456"}, +{"id":"185724"}, +{"id":"82214"}, +{"id":"209658"}, +{"id":"38603"}, +{"id":"174214"}, +{"id":"75681"}, +{"id":"148124"}, +{"id":"88725"}, +{"id":"184460"}, +{"id":"20120"}, +{"id":"64796"}, +{"id":"170562"}, +{"id":"33850"}, +{"id":"193460"}, +{"id":"192889"}, +{"id":"216029"}, +{"id":"70944"}, +{"id":"198350"}, +{"id":"112492"}, +{"id":"153206"}, +{"id":"122381"}, +{"id":"141038"}, +{"id":"171265"}, +{"id":"84351"}, +{"id":"201986"}, +{"id":"14332"}, +{"id":"72253"}, +{"id":"2810"}, +{"id":"34723"}, +{"id":"12223"}, +{"id":"219909"}, +{"id":"104195"}, +{"id":"18982"}, +{"id":"48616"}, +{"id":"128013"}, +{"id":"96286"}, +{"id":"115121"}, +{"id":"52565"}, +{"id":"136518"}, +{"id":"80827"}, +{"id":"37711"}, +{"id":"111622"}, +{"id":"183802"}, +{"id":"17705"}, +{"id":"81779"}, +{"id":"119437"}, +{"id":"209794"}, +{"id":"212935"}, +{"id":"91666"}, +{"id":"192852"}, +{"id":"64610"}, +{"id":"188370"}, +{"id":"68563"}, +{"id":"98228"}, +{"id":"160866"}, +{"id":"134894"}, +{"id":"174661"}, +{"id":"156950"}, +{"id":"107230"}, +{"id":"118334"}, +{"id":"177792"}, +{"id":"140693"}, +{"id":"91531"}, +{"id":"140296"}, +{"id":"156606"}, +{"id":"119221"}, +{"id":"163282"}, +{"id":"56488"}, +{"id":"191356"}, +{"id":"64322"}, +{"id":"193995"}, +{"id":"86228"}, +{"id":"214890"}, +{"id":"95247"}, +{"id":"48089"}, +{"id":"131067"}, +{"id":"181144"}, +{"id":"43396"}, +{"id":"219871"}, +{"id":"4306"}, +{"id":"82836"}, +{"id":"126689"}, +{"id":"206769"}, +{"id":"149282"}, +{"id":"15765"}, +{"id":"167411"}, +{"id":"102393"}, +{"id":"86124"}, +{"id":"88504"}, +{"id":"44642"}, +{"id":"185501"}, +{"id":"64174"}, +{"id":"164594"}, +{"id":"57594"}, +{"id":"76592"}, +{"id":"97468"}, +{"id":"82853"}, +{"id":"198532"}, +{"id":"80968"}, +{"id":"134882"}, +{"id":"138846"}, +{"id":"164479"}, +{"id":"123432"}, +{"id":"131115"}, +{"id":"2311"}, +{"id":"88001"}, +{"id":"141486"}, +{"id":"186983"}, +{"id":"79580"}, +{"id":"218241"}, +{"id":"68784"}, +{"id":"85818"}, +{"id":"50539"}, +{"id":"82731"}, +{"id":"30333"}, +{"id":"40999"}, +{"id":"152822"}, +{"id":"136109"}, +{"id":"202167"}, +{"id":"170925"}, +{"id":"97828"}, +{"id":"48522"}, +{"id":"95334"}, +{"id":"164737"}, +{"id":"41512"}, +{"id":"14173"}, +{"id":"191679"}, +{"id":"117936"}, +{"id":"36550"}, +{"id":"28780"}, +{"id":"208691"}, +{"id":"169986"}, +{"id":"183088"}, +{"id":"202008"}, +{"id":"92251"}, +{"id":"34009"}, +{"id":"114031"}, +{"id":"166313"}, +{"id":"210532"}, +{"id":"28173"}, +{"id":"34388"}, +{"id":"141487"}, +{"id":"81015"}, +{"id":"180100"}, +{"id":"13737"}, +{"id":"92008"}, +{"id":"90962"}, +{"id":"153607"}, +{"id":"68433"}, +{"id":"210006"}, +{"id":"213210"}, +{"id":"25744"}, +{"id":"78881"}, +{"id":"220679"}, +{"id":"137167"}, +{"id":"100979"}, +{"id":"184071"}, +{"id":"185596"}, +{"id":"194305"}, +{"id":"60624"}, +{"id":"164314"}, +{"id":"76497"}, +{"id":"116595"}, +{"id":"129118"}, +{"id":"153056"}, +{"id":"132992"}, +{"id":"133135"}, +{"id":"119315"}, +{"id":"54938"}, +{"id":"75178"}, +{"id":"23203"}, +{"id":"164333"}, +{"id":"107919"}, +{"id":"121298"}, +{"id":"78594"}, +{"id":"187602"}, +{"id":"28825"}, +{"id":"134135"}, +{"id":"77504"}, +{"id":"193564"}, +{"id":"104667"}, +{"id":"84893"}, +{"id":"29983"}, +{"id":"60080"}, +{"id":"114197"}, +{"id":"91833"}, +{"id":"141382"}, +{"id":"187884"}, +{"id":"151264"}, +{"id":"57073"}, +{"id":"82363"}, +{"id":"156989"}, +{"id":"86478"}, +{"id":"136648"}, +{"id":"135782"}, +{"id":"107155"}, +{"id":"107022"}, +{"id":"29982"}, +{"id":"22340"}, +{"id":"148356"}, +{"id":"160859"}, +{"id":"9582"}, +{"id":"135516"}, +{"id":"79359"}, +{"id":"133594"}, +{"id":"218432"}, +{"id":"100795"}, +{"id":"151011"}, +{"id":"74958"}, +{"id":"135189"}, +{"id":"164962"}, +{"id":"56368"}, +{"id":"101797"}, +{"id":"57675"}, +{"id":"60546"}, +{"id":"195541"}, +{"id":"216569"}, +{"id":"71354"}, +{"id":"172906"}, +{"id":"45443"}, +{"id":"25884"}, +{"id":"207470"}, +{"id":"204508"}, +{"id":"104755"}, +{"id":"155122"}, +{"id":"215097"}, +{"id":"89984"}, +{"id":"75392"}, +{"id":"23403"}, +{"id":"34087"}, +{"id":"20027"}, +{"id":"112482"}, +{"id":"40308"}, +{"id":"34991"}, +{"id":"31433"}, +{"id":"70113"}, +{"id":"207686"}, +{"id":"125116"}, +{"id":"95799"}, +{"id":"92406"}, +{"id":"93887"}, +{"id":"176752"}, +{"id":"141568"}, +{"id":"181801"}, +{"id":"180768"}, +{"id":"184061"}, +{"id":"32268"}, +{"id":"33165"}, +{"id":"127355"}, +{"id":"68593"}, +{"id":"78511"}, +{"id":"193267"}, +{"id":"129101"}, +{"id":"2337"}, +{"id":"99882"}, +{"id":"119559"}, +{"id":"93991"}, +{"id":"85598"}, +{"id":"134564"}, +{"id":"148598"}, +{"id":"44001"}, +{"id":"54369"}, +{"id":"52834"}, +{"id":"28218"}, +{"id":"138898"}, +{"id":"144717"}, +{"id":"54830"}, +{"id":"186331"}, +{"id":"178118"}, +{"id":"31507"}, +{"id":"197731"}, +{"id":"65549"}, +{"id":"105652"}, +{"id":"213241"}, +{"id":"46981"}, +{"id":"212435"}, +{"id":"47543"}, +{"id":"209456"}, +{"id":"204809"}, +{"id":"166572"}, +{"id":"120908"}, +{"id":"101384"}, +{"id":"45612"}, +{"id":"20902"}, +{"id":"199995"}, +{"id":"156399"}, +{"id":"168832"}, +{"id":"137668"}, +{"id":"157462"}, +{"id":"35000"}, +{"id":"193441"}, +{"id":"33643"}, +{"id":"97171"}, +{"id":"18211"}, +{"id":"166734"}, +{"id":"174266"}, +{"id":"36551"}, +{"id":"208825"}, +{"id":"24090"}, +{"id":"112700"}, +{"id":"127784"}, +{"id":"137985"}, +{"id":"175541"}, +{"id":"59597"}, +{"id":"162194"}, +{"id":"151220"}, +{"id":"139849"}, +{"id":"66823"}, +{"id":"124855"}, +{"id":"12549"}, +{"id":"78548"}, +{"id":"87730"}, +{"id":"82204"}, +{"id":"193481"}, +{"id":"1276"}, +{"id":"151030"}, +{"id":"147790"}, +{"id":"39069"}, +{"id":"118041"}, +{"id":"30123"}, +{"id":"72759"}, +{"id":"104476"}, +{"id":"40335"}, +{"id":"92086"}, +{"id":"202756"}, +{"id":"73484"}, +{"id":"171001"}, +{"id":"81995"}, +{"id":"81366"}, +{"id":"207324"}, +{"id":"200606"}, +{"id":"157112"}, +{"id":"33970"}, +{"id":"49784"}, +{"id":"139611"}, +{"id":"210792"}, +{"id":"215175"}, +{"id":"120178"}, +{"id":"119041"}, +{"id":"98265"}, +{"id":"219686"}, +{"id":"5257"}, +{"id":"118602"}, +{"id":"163850"}, +{"id":"65414"}, +{"id":"162110"}, +{"id":"4905"}, +{"id":"183798"}, +{"id":"42467"}, +{"id":"136119"}, +{"id":"6874"}, +{"id":"47039"}, +{"id":"149802"}, +{"id":"66152"}, +{"id":"118567"}, +{"id":"90720"}, +{"id":"164865"}, +{"id":"108692"}, +{"id":"174318"}, +{"id":"33872"}, +{"id":"33077"}, +{"id":"137482"}, +{"id":"204901"}, +{"id":"2841"}, +{"id":"14084"}, +{"id":"205125"}, +{"id":"80830"}, +{"id":"195239"}, +{"id":"203669"}, +{"id":"136867"}, +{"id":"118330"}, +{"id":"219025"}, +{"id":"65706"}, +{"id":"29448"}, +{"id":"114057"}, +{"id":"149986"}, +{"id":"202398"}, +{"id":"112515"}, +{"id":"141943"}, +{"id":"22322"}, +{"id":"38299"}, +{"id":"167826"}, +{"id":"96744"}, +{"id":"159614"}, +{"id":"123190"}, +{"id":"54901"}, +{"id":"186540"}, +{"id":"162170"}, +{"id":"152913"}, +{"id":"207362"}, +{"id":"136311"}, +{"id":"18503"}, +{"id":"160642"}, +{"id":"132175"}, +{"id":"46093"}, +{"id":"49804"}, +{"id":"152784"}, +{"id":"11481"}, +{"id":"103677"}, +{"id":"178258"}, +{"id":"47525"}, +{"id":"174457"}, +{"id":"4023"}, +{"id":"26122"}, +{"id":"50314"}, +{"id":"40300"}, +{"id":"26143"}, +{"id":"162847"}, +{"id":"136569"}, +{"id":"41244"}, +{"id":"60120"}, +{"id":"16978"}, +{"id":"157081"}, +{"id":"5669"}, +{"id":"31595"}, +{"id":"168422"}, +{"id":"189562"}, +{"id":"216139"}, +{"id":"208131"}, +{"id":"199954"}, +{"id":"80487"}, +{"id":"9865"}, +{"id":"208917"}, +{"id":"101800"}, +{"id":"218313"}, +{"id":"92599"}, +{"id":"126969"}, +{"id":"152765"}, +{"id":"202970"}, +{"id":"42704"}, +{"id":"15595"}, +{"id":"113238"}, +{"id":"102559"}, +{"id":"131640"}, +{"id":"105801"}, +{"id":"42634"}, +{"id":"99818"}, +{"id":"94906"}, +{"id":"110715"}, +{"id":"68799"}, +{"id":"75863"}, +{"id":"26747"}, +{"id":"142956"}, +{"id":"22588"}, +{"id":"10703"}, +{"id":"54695"}, +{"id":"175399"}, +{"id":"134088"}, +{"id":"80325"}, +{"id":"91761"}, +{"id":"34482"}, +{"id":"53022"}, +{"id":"190373"}, +{"id":"69585"}, +{"id":"215895"}, +{"id":"18491"}, +{"id":"153240"}, +{"id":"117890"}, +{"id":"49218"}, +{"id":"147595"}, +{"id":"91701"}, +{"id":"43307"}, +{"id":"116908"}, +{"id":"175389"}, +{"id":"36112"}, +{"id":"15070"}, +{"id":"220623"}, +{"id":"116316"}, +{"id":"150546"}, +{"id":"83270"}, +{"id":"79324"}, +{"id":"129730"}, +{"id":"48260"}, +{"id":"108258"}, +{"id":"100671"}, +{"id":"48317"}, +{"id":"58798"}, +{"id":"1166"}, +{"id":"104638"}, +{"id":"67473"}, +{"id":"104034"}, +{"id":"53946"}, +{"id":"186251"}, +{"id":"107485"}, +{"id":"218272"}, +{"id":"201820"}, +{"id":"63144"}, +{"id":"169998"}, +{"id":"172850"}, +{"id":"76628"}, +{"id":"21795"}, +{"id":"67773"}, +{"id":"173212"}, +{"id":"190389"}, +{"id":"36853"}, +{"id":"167810"}, +{"id":"151466"}, +{"id":"37370"}, +{"id":"87346"}, +{"id":"147062"}, +{"id":"62997"}, +{"id":"169307"}, +{"id":"144005"}, +{"id":"38903"}, +{"id":"137106"}, +{"id":"210321"}, +{"id":"60146"}, +{"id":"98694"}, +{"id":"108734"}, +{"id":"179747"}, +{"id":"202092"}, +{"id":"164043"}, +{"id":"140909"}, +{"id":"71102"}, +{"id":"44227"}, +{"id":"112634"}, +{"id":"213746"}, +{"id":"38102"}, +{"id":"81059"}, +{"id":"63824"}, +{"id":"178842"}, +{"id":"37671"}, +{"id":"85054"}, +{"id":"33969"}, +{"id":"95405"}, +{"id":"145928"}, +{"id":"162896"}, +{"id":"84174"}, +{"id":"43778"}, +{"id":"201761"}, +{"id":"130567"}, +{"id":"196518"}, +{"id":"154843"}, +{"id":"54485"}, +{"id":"33112"}, +{"id":"140257"}, +{"id":"164553"}, +{"id":"210686"}, +{"id":"153865"}, +{"id":"109476"}, +{"id":"133100"}, +{"id":"135338"}, +{"id":"136990"}, +{"id":"68005"}, +{"id":"75405"}, +{"id":"159797"}, +{"id":"6558"}, +{"id":"15226"}, +{"id":"148220"}, +{"id":"142777"}, +{"id":"26029"}, +{"id":"24148"}, +{"id":"62186"}, +{"id":"142334"}, +{"id":"174749"}, +{"id":"122572"}, +{"id":"21452"}, +{"id":"17818"}, +{"id":"89717"}, +{"id":"121030"}, +{"id":"204104"}, +{"id":"87051"}, +{"id":"53010"}, +{"id":"208880"}, +{"id":"156143"}, +{"id":"46133"}, +{"id":"217872"}, +{"id":"47084"}, +{"id":"213706"}, +{"id":"87908"}, +{"id":"52307"}, +{"id":"64932"}, +{"id":"104393"}, +{"id":"193330"}, +{"id":"184542"}, +{"id":"20015"}, +{"id":"16692"}, +{"id":"115660"}, +{"id":"94164"}, +{"id":"1840"}, +{"id":"131092"}, +{"id":"176982"}, +{"id":"184644"}, +{"id":"216495"}, +{"id":"126911"}, +{"id":"218174"}, +{"id":"43897"}, +{"id":"180677"}, +{"id":"95852"}, +{"id":"194300"}, +{"id":"56253"}, +{"id":"212653"}, +{"id":"213862"}, +{"id":"189922"}, +{"id":"196621"}, +{"id":"105003"}, +{"id":"53535"}, +{"id":"184260"}, +{"id":"170437"}, +{"id":"190987"}, +{"id":"69271"}, +{"id":"69086"}, +{"id":"18974"}, +{"id":"132163"}, +{"id":"69743"}, +{"id":"98449"}, +{"id":"122521"}, +{"id":"18956"}, +{"id":"55630"}, +{"id":"112562"}, +{"id":"63845"}, +{"id":"202286"}, +{"id":"125504"}, +{"id":"111086"}, +{"id":"75638"}, +{"id":"116505"}, +{"id":"194263"}, +{"id":"2909"}, +{"id":"75214"}, +{"id":"211988"}, +{"id":"170329"}, +{"id":"204848"}, +{"id":"85544"}, +{"id":"113522"}, +{"id":"1941"}, +{"id":"203251"}, +{"id":"147644"}, +{"id":"95674"}, +{"id":"66671"}, +{"id":"129096"}, +{"id":"131794"}, +{"id":"75472"}, +{"id":"99494"}, +{"id":"57308"}, +{"id":"38266"}, +{"id":"46952"}, +{"id":"79678"}, +{"id":"152917"}, +{"id":"74677"}, +{"id":"212777"}, +{"id":"162816"}, +{"id":"134021"}, +{"id":"73016"}, +{"id":"34704"}, +{"id":"215174"}, +{"id":"52282"}, +{"id":"142593"}, +{"id":"107093"}, +{"id":"144170"}, +{"id":"113287"}, +{"id":"201018"}, +{"id":"61335"}, +{"id":"154725"}, +{"id":"15576"}, +{"id":"56926"}, +{"id":"121302"}, +{"id":"73898"}, +{"id":"4857"}, +{"id":"41281"}, +{"id":"74829"}, +{"id":"215544"}, +{"id":"46635"}, +{"id":"172"}, +{"id":"72161"}, +{"id":"126474"}, +{"id":"116980"}, +{"id":"203226"}, +{"id":"183457"}, +{"id":"117757"}, +{"id":"31659"}, +{"id":"144413"}, +{"id":"58234"}, +{"id":"173217"}, +{"id":"114179"}, +{"id":"51332"}, +{"id":"118317"}, +{"id":"133012"}, +{"id":"167420"}, +{"id":"39555"}, +{"id":"217379"}, +{"id":"104858"}, +{"id":"182234"}, +{"id":"124600"}, +{"id":"21296"}, +{"id":"207758"}, +{"id":"154404"}, +{"id":"188607"}, +{"id":"125819"}, +{"id":"219896"}, +{"id":"88612"}, +{"id":"102950"}, +{"id":"22447"}, +{"id":"204455"}, +{"id":"70817"}, +{"id":"114208"}, +{"id":"20641"}, +{"id":"52205"}, +{"id":"131906"}, +{"id":"176717"}, +{"id":"20301"}, +{"id":"46821"}, +{"id":"38218"}, +{"id":"143938"}, +{"id":"97905"}, +{"id":"215567"}, +{"id":"154459"}, +{"id":"4345"}, +{"id":"45112"}, +{"id":"68334"}, +{"id":"188705"}, +{"id":"31060"}, +{"id":"119775"}, +{"id":"14545"}, +{"id":"127325"}, +{"id":"67654"}, +{"id":"114041"}, +{"id":"3956"}, +{"id":"208040"}, +{"id":"107925"}, +{"id":"82414"}, +{"id":"206869"}, +{"id":"160889"}, +{"id":"82247"}, +{"id":"121003"}, +{"id":"19008"}, +{"id":"64046"}, +{"id":"24450"}, +{"id":"56329"}, +{"id":"108520"}, +{"id":"112888"}, +{"id":"33166"}, +{"id":"190633"}, +{"id":"159274"}, +{"id":"125203"}, +{"id":"99953"}, +{"id":"126536"}, +{"id":"138556"}, +{"id":"172126"}, +{"id":"40742"}, +{"id":"102322"}, +{"id":"151066"}, +{"id":"39869"}, +{"id":"209913"}, +{"id":"5620"}, +{"id":"57339"}, +{"id":"24166"}, +{"id":"160066"}, +{"id":"147005"}, +{"id":"102323"}, +{"id":"205066"}, +{"id":"66058"}, +{"id":"123313"}, +{"id":"138401"}, +{"id":"44230"}, +{"id":"193911"}, +{"id":"31240"}, +{"id":"114718"}, +{"id":"127551"}, +{"id":"187614"}, +{"id":"176055"}, +{"id":"186637"}, +{"id":"96071"}, +{"id":"150196"}, +{"id":"37699"}, +{"id":"20532"}, +{"id":"54365"}, +{"id":"49078"}, +{"id":"84825"}, +{"id":"211395"}, +{"id":"55352"}, +{"id":"89520"}, +{"id":"34005"}, +{"id":"158127"}, +{"id":"183105"}, +{"id":"2883"}, +{"id":"128689"}, +{"id":"83005"}, +{"id":"180435"}, +{"id":"28971"}, +{"id":"164613"}, +{"id":"126696"}, +{"id":"199468"}, +{"id":"94577"}, +{"id":"179216"}, +{"id":"162060"}, +{"id":"151163"}, +{"id":"212433"}, +{"id":"20980"}, +{"id":"32150"}, +{"id":"167165"}, +{"id":"161829"}, +{"id":"128134"}, +{"id":"162004"}, +{"id":"21780"}, +{"id":"47967"}, +{"id":"108903"}, +{"id":"7535"}, +{"id":"186530"}, +{"id":"104371"}, +{"id":"204131"}, +{"id":"213788"}, +{"id":"115340"}, +{"id":"137575"}, +{"id":"155622"}, +{"id":"214991"}, +{"id":"135378"}, +{"id":"28891"}, +{"id":"20624"}, +{"id":"116682"}, +{"id":"34810"}, +{"id":"26318"}, +{"id":"87864"}, +{"id":"138386"}, +{"id":"116970"}, +{"id":"98481"}, +{"id":"53118"}, +{"id":"144570"}, +{"id":"59314"}, +{"id":"79816"}, +{"id":"156348"}, +{"id":"5917"}, +{"id":"189163"}, +{"id":"14613"}, +{"id":"22019"}, +{"id":"202603"}, +{"id":"206783"}, +{"id":"98050"}, +{"id":"102196"}, +{"id":"160108"}, +{"id":"209075"}, +{"id":"75365"}, +{"id":"212668"}, +{"id":"179096"}, +{"id":"49776"}, +{"id":"67203"}, +{"id":"102142"}, +{"id":"180035"}, +{"id":"11579"}, +{"id":"44387"}, +{"id":"177208"}, +{"id":"2225"}, +{"id":"182216"}, +{"id":"38115"}, +{"id":"30931"}, +{"id":"4127"}, +{"id":"35679"}, +{"id":"178766"}, +{"id":"86453"}, +{"id":"180128"}, +{"id":"206732"}, +{"id":"11777"}, +{"id":"199291"}, +{"id":"18352"}, +{"id":"81528"}, +{"id":"211502"}, +{"id":"176886"}, +{"id":"185271"}, +{"id":"93711"}, +{"id":"154618"}, +{"id":"196176"}, +{"id":"128214"}, +{"id":"60446"}, +{"id":"53183"}, +{"id":"122496"}, +{"id":"37576"}, +{"id":"15675"}, +{"id":"164899"}, +{"id":"51822"}, +{"id":"69576"}, +{"id":"201174"}, +{"id":"49352"}, +{"id":"140414"}, +{"id":"48903"}, +{"id":"26882"}, +{"id":"88285"}, +{"id":"54961"}, +{"id":"30192"}, +{"id":"45984"}, +{"id":"38921"}, +{"id":"134455"}, +{"id":"119967"}, +{"id":"190988"}, +{"id":"96398"}, +{"id":"119484"}, +{"id":"129420"}, +{"id":"162733"}, +{"id":"171314"}, +{"id":"47693"}, +{"id":"105082"}, +{"id":"153615"}, +{"id":"3557"}, +{"id":"42686"}, +{"id":"204418"}, +{"id":"13195"}, +{"id":"39387"}, +{"id":"40599"}, +{"id":"201277"}, +{"id":"64057"}, +{"id":"656"}, +{"id":"148857"}, +{"id":"130410"}, +{"id":"147208"}, +{"id":"181468"}, +{"id":"198895"}, +{"id":"84129"}, +{"id":"58087"}, +{"id":"96631"}, +{"id":"99564"}, +{"id":"192249"}, +{"id":"58731"}, +{"id":"169252"}, +{"id":"133002"}, +{"id":"20326"}, +{"id":"78754"}, +{"id":"88742"}, +{"id":"168925"}, +{"id":"47433"}, +{"id":"201435"}, +{"id":"157614"}, +{"id":"213238"}, +{"id":"196029"}, +{"id":"180356"}, +{"id":"141634"}, +{"id":"41606"}, +{"id":"144751"}, +{"id":"204391"}, +{"id":"174413"}, +{"id":"70035"}, +{"id":"106802"}, +{"id":"158215"}, +{"id":"90557"}, +{"id":"60876"}, +{"id":"81458"}, +{"id":"130253"}, +{"id":"69938"}, +{"id":"92770"}, +{"id":"18317"}, +{"id":"162370"}, +{"id":"54263"}, +{"id":"140255"}, +{"id":"18387"}, +{"id":"113734"}, +{"id":"39072"}, +{"id":"173778"}, +{"id":"170594"}, +{"id":"67369"}, +{"id":"95970"}, +{"id":"119423"}, +{"id":"147763"}, +{"id":"211000"}, +{"id":"131036"}, +{"id":"206482"}, +{"id":"32856"}, +{"id":"42203"}, +{"id":"98299"}, +{"id":"145650"}, +{"id":"99684"}, +{"id":"157180"}, +{"id":"130154"}, +{"id":"171143"}, +{"id":"179275"}, +{"id":"207832"}, +{"id":"129295"}, +{"id":"132494"}, +{"id":"45173"}, +{"id":"182332"}, +{"id":"206410"}, +{"id":"71864"}, +{"id":"5243"}, +{"id":"6051"}, +{"id":"202948"}, +{"id":"54758"}, +{"id":"50304"}, +{"id":"25561"}, +{"id":"14005"}, +{"id":"10135"}, +{"id":"198146"}, +{"id":"182145"}, +{"id":"19929"}, +{"id":"4842"}, +{"id":"22122"}, +{"id":"208822"}, +{"id":"119490"}, +{"id":"169455"}, +{"id":"210677"}, +{"id":"72945"}, +{"id":"202005"}, +{"id":"186337"}, +{"id":"190548"}, +{"id":"58230"}, +{"id":"67364"}, +{"id":"71359"}, +{"id":"26208"}, +{"id":"30374"}, +{"id":"41562"}, +{"id":"82529"}, +{"id":"203515"}, +{"id":"96010"}, +{"id":"153289"}, +{"id":"51496"}, +{"id":"170205"}, +{"id":"164428"}, +{"id":"10156"}, +{"id":"216185"}, +{"id":"16832"}, +{"id":"99570"}, +{"id":"130513"}, +{"id":"25630"}, +{"id":"170201"}, +{"id":"146066"}, +{"id":"205431"}, +{"id":"177349"}, +{"id":"9113"}, +{"id":"135556"}, +{"id":"123794"}, +{"id":"109604"}, +{"id":"56058"}, +{"id":"16289"}, +{"id":"134004"}, +{"id":"179347"}, +{"id":"118548"}, +{"id":"37309"}, +{"id":"105189"}, +{"id":"202979"}, +{"id":"135546"}, +{"id":"175030"}, +{"id":"49172"}, +{"id":"130380"}, +{"id":"158366"}, +{"id":"191473"}, +{"id":"195373"}, +{"id":"125801"}, +{"id":"188586"}, +{"id":"60058"}, +{"id":"146848"}, +{"id":"210970"}, +{"id":"213089"}, +{"id":"115730"}, +{"id":"120339"}, +{"id":"135329"}, +{"id":"160109"}, +{"id":"176792"}, +{"id":"113452"}, +{"id":"51539"}, +{"id":"34788"}, +{"id":"50365"}, +{"id":"185008"}, +{"id":"82089"}, +{"id":"190802"}, +{"id":"12344"}, +{"id":"111716"}, +{"id":"36125"}, +{"id":"127851"}, +{"id":"157046"}, +{"id":"210587"}, +{"id":"62772"}, +{"id":"156747"}, +{"id":"121901"}, +{"id":"122414"}, +{"id":"208592"}, +{"id":"92366"}, +{"id":"88408"}, +{"id":"54732"}, +{"id":"16322"}, +{"id":"168026"}, +{"id":"86853"}, +{"id":"84258"}, +{"id":"34392"}, +{"id":"33945"}, +{"id":"190424"}, +{"id":"438"}, +{"id":"186325"}, +{"id":"62020"}, +{"id":"102244"}, +{"id":"105378"}, +{"id":"122893"}, +{"id":"152482"}, +{"id":"153456"}, +{"id":"204677"}, +{"id":"10426"}, +{"id":"188891"}, +{"id":"49580"}, +{"id":"205055"}, +{"id":"153888"}, +{"id":"159506"}, +{"id":"12992"}, +{"id":"134822"}, +{"id":"69552"}, +{"id":"94743"}, +{"id":"93477"}, +{"id":"105657"}, +{"id":"118048"}, +{"id":"49154"}, +{"id":"139170"}, +{"id":"174414"}, +{"id":"156749"}, +{"id":"115835"}, +{"id":"189287"}, +{"id":"178031"}, +{"id":"79390"}, +{"id":"23893"}, +{"id":"50611"}, +{"id":"83385"}, +{"id":"36489"}, +{"id":"71866"}, +{"id":"82208"}, +{"id":"156787"}, +{"id":"202611"}, +{"id":"129981"}, +{"id":"119144"}, +{"id":"157624"}, +{"id":"76580"}, +{"id":"80010"}, +{"id":"17948"}, +{"id":"29646"}, +{"id":"188094"}, +{"id":"17025"}, +{"id":"65624"}, +{"id":"199955"}, +{"id":"43927"}, +{"id":"94787"}, +{"id":"22538"}, +{"id":"102467"}, +{"id":"111283"}, +{"id":"44440"}, +{"id":"50788"}, +{"id":"100847"}, +{"id":"72105"}, +{"id":"78226"}, +{"id":"155946"}, +{"id":"811"}, +{"id":"47801"}, +{"id":"108298"}, +{"id":"22736"}, +{"id":"199750"}, +{"id":"84960"}, +{"id":"67206"}, +{"id":"156502"}, +{"id":"110139"}, +{"id":"44531"}, +{"id":"208167"}, +{"id":"123555"}, +{"id":"28023"}, +{"id":"203606"}, +{"id":"28422"}, +{"id":"147197"}, +{"id":"113150"}, +{"id":"198354"}, +{"id":"19999"}, +{"id":"177781"}, +{"id":"32799"}, +{"id":"151052"}, +{"id":"169407"}, +{"id":"135706"}, +{"id":"122846"}, +{"id":"3459"}, +{"id":"61217"}, +{"id":"167514"}, +{"id":"99112"}, +{"id":"92015"}, +{"id":"77045"}, +{"id":"139198"}, +{"id":"103940"}, +{"id":"156716"}, +{"id":"2009"}, +{"id":"194558"}, +{"id":"142544"}, +{"id":"132441"}, +{"id":"109323"}, +{"id":"7222"}, +{"id":"31975"}, +{"id":"121325"}, +{"id":"50303"}, +{"id":"151898"}, +{"id":"129666"}, +{"id":"144286"}, +{"id":"15493"}, +{"id":"122359"}, +{"id":"190015"}, +{"id":"198636"}, +{"id":"160918"}, +{"id":"103109"}, +{"id":"155129"}, +{"id":"45388"}, +{"id":"40060"}, +{"id":"84850"}, +{"id":"35348"}, +{"id":"25620"}, +{"id":"183006"}, +{"id":"38647"}, +{"id":"106806"}, +{"id":"49513"}, +{"id":"195265"}, +{"id":"105904"}, +{"id":"173940"}, +{"id":"154901"}, +{"id":"154248"}, +{"id":"146267"}, +{"id":"115790"}, +{"id":"1872"}, +{"id":"2139"}, +{"id":"185783"}, +{"id":"45923"}, +{"id":"80433"}, +{"id":"161457"}, +{"id":"151483"}, +{"id":"16587"}, +{"id":"109742"}, +{"id":"88088"}, +{"id":"62407"}, +{"id":"17077"}, +{"id":"66993"}, +{"id":"217281"}, +{"id":"188352"}, +{"id":"62781"}, +{"id":"2166"}, +{"id":"57892"}, +{"id":"149889"}, +{"id":"104292"}, +{"id":"28662"}, +{"id":"110908"}, +{"id":"146067"}, +{"id":"144777"}, +{"id":"134315"}, +{"id":"69780"}, +{"id":"123435"}, +{"id":"136450"}, +{"id":"106569"}, +{"id":"23813"}, +{"id":"129485"}, +{"id":"134566"}, +{"id":"181771"}, +{"id":"34422"}, +{"id":"30870"}, +{"id":"11841"}, +{"id":"103722"}, +{"id":"13703"}, +{"id":"17961"}, +{"id":"137605"}, +{"id":"202456"}, +{"id":"151362"}, +{"id":"23613"}, +{"id":"164035"}, +{"id":"123323"}, +{"id":"121052"}, +{"id":"151450"}, +{"id":"66697"}, +{"id":"36084"}, +{"id":"192479"}, +{"id":"180186"}, +{"id":"199425"}, +{"id":"142089"}, +{"id":"164834"}, +{"id":"200570"}, +{"id":"102872"}, +{"id":"65506"}, +{"id":"180213"}, +{"id":"32393"}, +{"id":"2716"}, +{"id":"68955"}, +{"id":"205823"}, +{"id":"23829"}, +{"id":"107639"}, +{"id":"24409"}, +{"id":"94094"}, +{"id":"86337"}, +{"id":"110096"}, +{"id":"166760"}, +{"id":"132044"}, +{"id":"118557"}, +{"id":"143220"}, +{"id":"123343"}, +{"id":"130413"}, +{"id":"51618"}, +{"id":"137332"}, +{"id":"3521"}, +{"id":"166679"}, +{"id":"66726"}, +{"id":"18674"}, +{"id":"204510"}, +{"id":"17779"}, +{"id":"14532"}, +{"id":"184929"}, +{"id":"201268"}, +{"id":"51318"}, +{"id":"194707"}, +{"id":"26235"}, +{"id":"147536"}, +{"id":"217912"}, +{"id":"16632"}, +{"id":"219562"}, +{"id":"127269"}, +{"id":"43929"}, +{"id":"203776"}, +{"id":"46572"}, +{"id":"43806"}, +{"id":"95223"}, +{"id":"105933"}, +{"id":"183822"}, +{"id":"156162"}, +{"id":"16719"}, +{"id":"173077"}, +{"id":"204357"}, +{"id":"172211"}, +{"id":"93450"}, +{"id":"206547"}, +{"id":"194648"}, +{"id":"114167"}, +{"id":"62948"}, +{"id":"207279"}, +{"id":"23283"}, +{"id":"20498"}, +{"id":"82595"}, +{"id":"199699"}, +{"id":"86712"}, +{"id":"104065"}, +{"id":"137895"}, +{"id":"163325"}, +{"id":"167234"}, +{"id":"30982"}, +{"id":"134320"}, +{"id":"213343"}, +{"id":"70406"}, +{"id":"56556"}, +{"id":"113811"}, +{"id":"171719"}, +{"id":"128152"}, +{"id":"187829"}, +{"id":"187472"}, +{"id":"153153"}, +{"id":"120238"}, +{"id":"58091"}, +{"id":"60319"}, +{"id":"119822"}, +{"id":"90288"}, +{"id":"190331"}, +{"id":"46267"}, +{"id":"86028"}, +{"id":"113754"}, +{"id":"41526"}, +{"id":"130346"}, +{"id":"138307"}, +{"id":"176084"}, +{"id":"77782"}, +{"id":"28518"}, +{"id":"186832"}, +{"id":"156783"}, +{"id":"69256"}, +{"id":"80635"}, +{"id":"136243"}, +{"id":"144029"}, +{"id":"87480"}, +{"id":"29032"}, +{"id":"180431"}, +{"id":"74501"}, +{"id":"179129"}, +{"id":"157025"}, +{"id":"86034"}, +{"id":"15951"}, +{"id":"144869"}, +{"id":"167742"}, +{"id":"70625"}, +{"id":"868"}, +{"id":"191634"}, +{"id":"64827"}, +{"id":"125649"}, +{"id":"178037"}, +{"id":"85512"}, +{"id":"27341"}, +{"id":"181170"}, +{"id":"174201"}, +{"id":"131030"}, +{"id":"36531"}, +{"id":"198888"}, +{"id":"5277"}, +{"id":"88366"}, +{"id":"124910"}, +{"id":"47516"}, +{"id":"29678"}, +{"id":"22328"}, +{"id":"143330"}, +{"id":"28833"}, +{"id":"157612"}, +{"id":"66958"}, +{"id":"38334"}, +{"id":"180360"}, +{"id":"82338"}, +{"id":"212072"}, +{"id":"67768"}, +{"id":"214275"}, +{"id":"1453"}, +{"id":"37840"}, +{"id":"36817"}, +{"id":"217422"}, +{"id":"130148"}, +{"id":"203443"}, +{"id":"129378"}, +{"id":"76898"}, +{"id":"107098"}, +{"id":"179036"}, +{"id":"21667"}, +{"id":"158033"}, +{"id":"35854"}, +{"id":"75708"}, +{"id":"203321"}, +{"id":"98982"}, +{"id":"172336"}, +{"id":"126435"}, +{"id":"100315"}, +{"id":"210642"}, +{"id":"128066"}, +{"id":"191223"}, +{"id":"216653"}, +{"id":"36628"}, +{"id":"190223"}, +{"id":"92016"}, +{"id":"150725"}, +{"id":"52434"}, +{"id":"4850"}, +{"id":"215578"}, +{"id":"204593"}, +{"id":"38650"}, +{"id":"172214"}, +{"id":"93928"}, +{"id":"53294"}, +{"id":"27584"}, +{"id":"40265"}, +{"id":"164916"}, +{"id":"142217"}, +{"id":"156319"}, +{"id":"94388"}, +{"id":"97528"}, +{"id":"38372"}, +{"id":"151928"}, +{"id":"11656"}, +{"id":"150528"}, +{"id":"21982"}, +{"id":"145041"}, +{"id":"119062"}, +{"id":"181306"}, +{"id":"196673"}, +{"id":"7204"}, +{"id":"78651"}, +{"id":"68651"}, +{"id":"156534"}, +{"id":"140052"}, +{"id":"43809"}, +{"id":"36140"}, +{"id":"44168"}, +{"id":"142078"}, +{"id":"148480"}, +{"id":"3342"}, +{"id":"17171"}, +{"id":"213630"}, +{"id":"158670"}, +{"id":"134850"}, +{"id":"12601"}, +{"id":"193085"}, +{"id":"41055"}, +{"id":"135231"}, +{"id":"106145"}, +{"id":"99352"}, +{"id":"202739"}, +{"id":"145477"}, +{"id":"157018"}, +{"id":"78165"}, +{"id":"200716"}, +{"id":"175262"}, +{"id":"47080"}, +{"id":"215995"}, +{"id":"192945"}, +{"id":"203713"}, +{"id":"152544"}, +{"id":"197185"}, +{"id":"184690"}, +{"id":"53513"}, +{"id":"106521"}, +{"id":"52126"}, +{"id":"11381"}, +{"id":"91264"}, +{"id":"50622"}, +{"id":"194595"}, +{"id":"7628"}, +{"id":"127955"}, +{"id":"207703"}, +{"id":"117941"}, +{"id":"70703"}, +{"id":"177080"}, +{"id":"14392"}, +{"id":"42818"}, +{"id":"173838"}, +{"id":"87794"}, +{"id":"144835"}, +{"id":"216744"}, +{"id":"141893"}, +{"id":"178096"}, +{"id":"141529"}, +{"id":"196711"}, +{"id":"156064"}, +{"id":"159219"}, +{"id":"171704"}, +{"id":"210521"}, +{"id":"119774"}, +{"id":"113841"}, +{"id":"102184"}, +{"id":"144582"}, +{"id":"186284"}, +{"id":"185849"}, +{"id":"82373"}, +{"id":"26023"}, +{"id":"147341"}, +{"id":"178537"}, +{"id":"37852"}, +{"id":"10915"}, +{"id":"168767"}, +{"id":"6634"}, +{"id":"148762"}, +{"id":"105398"}, +{"id":"15013"}, +{"id":"92766"}, +{"id":"12126"}, +{"id":"196978"}, +{"id":"131570"}, +{"id":"63865"}, +{"id":"181445"}, +{"id":"220064"}, +{"id":"19703"}, +{"id":"76236"}, +{"id":"219406"}, +{"id":"196313"}, +{"id":"199033"}, +{"id":"60900"}, +{"id":"147196"}, +{"id":"130432"}, +{"id":"133295"}, +{"id":"183910"}, +{"id":"96057"}, +{"id":"68964"}, +{"id":"181395"}, +{"id":"213827"}, +{"id":"53174"}, +{"id":"74780"}, +{"id":"180164"}, +{"id":"90383"}, +{"id":"22907"}, +{"id":"131971"}, +{"id":"78204"}, +{"id":"220664"}, +{"id":"169243"}, +{"id":"134163"}, +{"id":"203620"}, +{"id":"101908"}, +{"id":"166628"}, +{"id":"194473"}, +{"id":"45912"}, +{"id":"14627"}, +{"id":"121019"}, +{"id":"104166"}, +{"id":"181240"}, +{"id":"78702"}, +{"id":"107359"}, +{"id":"49483"}, +{"id":"46100"}, +{"id":"19686"}, +{"id":"1874"}, +{"id":"199508"}, +{"id":"214986"}, +{"id":"4942"}, +{"id":"95298"}, +{"id":"72591"}, +{"id":"198887"}, +{"id":"133049"}, +{"id":"109114"}, +{"id":"220636"}, +{"id":"79367"}, +{"id":"163303"}, +{"id":"400"}, +{"id":"207242"}, +{"id":"94440"}, +{"id":"148399"}, +{"id":"191517"}, +{"id":"183828"}, +{"id":"13778"}, +{"id":"147761"}, +{"id":"85325"}, +{"id":"145587"}, +{"id":"147682"}, +{"id":"78279"}, +{"id":"31854"}, +{"id":"151009"}, +{"id":"217767"}, +{"id":"4158"}, +{"id":"14973"}, +{"id":"155616"}, +{"id":"20501"}, +{"id":"187065"}, +{"id":"22096"}, +{"id":"81137"}, +{"id":"89009"}, +{"id":"139275"}, +{"id":"180808"}, +{"id":"87700"}, +{"id":"188773"}, +{"id":"37413"}, +{"id":"174394"}, +{"id":"72683"}, +{"id":"97956"}, +{"id":"17852"}, +{"id":"76063"}, +{"id":"82609"}, +{"id":"13780"}, +{"id":"57418"}, +{"id":"85228"}, +{"id":"72075"}, +{"id":"77971"}, +{"id":"30505"}, +{"id":"80093"}, +{"id":"37583"}, +{"id":"99584"}, +{"id":"12338"}, +{"id":"200802"}, +{"id":"121364"}, +{"id":"159367"}, +{"id":"43007"}, +{"id":"189576"}, +{"id":"69296"}, +{"id":"71270"}, +{"id":"182860"}, +{"id":"31834"}, +{"id":"117506"}, +{"id":"36815"}, +{"id":"88453"}, +{"id":"135025"}, +{"id":"189465"}, +{"id":"20510"}, +{"id":"138582"}, +{"id":"80175"}, +{"id":"179474"}, +{"id":"132056"}, +{"id":"214470"}, +{"id":"46162"}, +{"id":"157345"}, +{"id":"161377"}, +{"id":"177353"}, +{"id":"198695"}, +{"id":"186951"}, +{"id":"53556"}, +{"id":"51771"}, +{"id":"119876"}, +{"id":"91121"}, +{"id":"8898"}, +{"id":"78759"}, +{"id":"175316"}, +{"id":"146256"}, +{"id":"100900"}, +{"id":"205820"}, +{"id":"27456"}, +{"id":"131924"}, +{"id":"125008"}, +{"id":"190937"}, +{"id":"119919"}, +{"id":"141291"}, +{"id":"209034"}, +{"id":"211063"}, +{"id":"27885"}, +{"id":"79897"}, +{"id":"104526"}, +{"id":"32115"}, +{"id":"190418"}, +{"id":"61616"}, +{"id":"87821"}, +{"id":"204834"}, +{"id":"96104"}, +{"id":"212623"}, +{"id":"64388"}, +{"id":"134808"}, +{"id":"103896"}, +{"id":"197605"}, +{"id":"166221"}, +{"id":"102417"}, +{"id":"14026"}, +{"id":"58822"}, +{"id":"81372"}, +{"id":"201440"}, +{"id":"166725"}, +{"id":"100489"}, +{"id":"69100"}, +{"id":"200156"}, +{"id":"95448"}, +{"id":"60330"}, +{"id":"24713"}, +{"id":"220211"}, +{"id":"127745"}, +{"id":"72002"}, +{"id":"129578"}, +{"id":"87703"}, +{"id":"95393"}, +{"id":"198821"}, +{"id":"99594"}, +{"id":"28275"}, +{"id":"38536"}, +{"id":"107659"}, +{"id":"125612"}, +{"id":"15297"}, +{"id":"142488"}, +{"id":"162451"}, +{"id":"55206"}, +{"id":"34278"}, +{"id":"23629"}, +{"id":"90419"}, +{"id":"48418"}, +{"id":"99557"}, +{"id":"163846"}, +{"id":"86191"}, +{"id":"13604"}, +{"id":"28751"}, +{"id":"197720"}, +{"id":"82558"}, +{"id":"132088"}, +{"id":"97058"}, +{"id":"164992"}, +{"id":"119738"}, +{"id":"210484"}, +{"id":"168490"}, +{"id":"46274"}, +{"id":"79361"}, +{"id":"212746"}, +{"id":"203245"}, +{"id":"176746"}, +{"id":"103155"}, +{"id":"87874"}, +{"id":"44384"}, +{"id":"147791"}, +{"id":"141560"}, +{"id":"141183"}, +{"id":"139815"}, +{"id":"84183"}, +{"id":"68286"}, +{"id":"94952"}, +{"id":"21737"}, +{"id":"82082"}, +{"id":"24473"}, +{"id":"120281"}, +{"id":"11402"}, +{"id":"46540"}, +{"id":"91130"}, +{"id":"78896"}, +{"id":"187972"}, +{"id":"61412"}, +{"id":"20148"}, +{"id":"146323"}, +{"id":"188873"}, +{"id":"137355"}, +{"id":"130358"}, +{"id":"174370"}, +{"id":"125410"}, +{"id":"205628"}, +{"id":"174024"}, +{"id":"130112"}, +{"id":"98902"}, +{"id":"3069"}, +{"id":"30555"}, +{"id":"35782"}, +{"id":"219707"}, +{"id":"34397"}, +{"id":"67568"}, +{"id":"126161"}, +{"id":"33597"}, +{"id":"176445"}, +{"id":"165226"}, +{"id":"2036"}, +{"id":"203557"}, +{"id":"91047"}, +{"id":"43128"}, +{"id":"85863"}, +{"id":"80031"}, +{"id":"87063"}, +{"id":"61329"}, +{"id":"38885"}, +{"id":"88068"}, +{"id":"5002"}, +{"id":"184738"}, +{"id":"79034"}, +{"id":"133047"}, +{"id":"127911"}, +{"id":"119809"}, +{"id":"212245"}, +{"id":"212625"}, +{"id":"622"}, +{"id":"143789"}, +{"id":"175149"}, +{"id":"200928"}, +{"id":"56997"}, +{"id":"122368"}, +{"id":"83393"}, +{"id":"89518"}, +{"id":"167660"}, +{"id":"181612"}, +{"id":"16905"}, +{"id":"170263"}, +{"id":"109607"}, +{"id":"161402"}, +{"id":"171897"}, +{"id":"215779"}, +{"id":"114150"}, +{"id":"175493"}, +{"id":"143973"}, +{"id":"43311"}, +{"id":"118226"}, +{"id":"166032"}, +{"id":"99179"}, +{"id":"163130"}, +{"id":"56398"}, +{"id":"164958"}, +{"id":"210016"}, +{"id":"135471"}, +{"id":"34718"}, +{"id":"145967"}, +{"id":"24200"}, +{"id":"136936"}, +{"id":"14165"}, +{"id":"33410"}, +{"id":"88973"}, +{"id":"159790"}, +{"id":"159676"}, +{"id":"1543"}, +{"id":"73280"}, +{"id":"63627"}, +{"id":"106911"}, +{"id":"62342"}, +{"id":"137938"}, +{"id":"18765"}, +{"id":"2713"}, +{"id":"1139"}, +{"id":"69670"}, +{"id":"11850"}, +{"id":"215888"}, +{"id":"7339"}, +{"id":"38323"}, +{"id":"2301"}, +{"id":"74389"}, +{"id":"93065"}, +{"id":"84848"}, +{"id":"64216"}, +{"id":"121102"}, +{"id":"63856"}, +{"id":"151027"}, +{"id":"67078"}, +{"id":"107118"}, +{"id":"118223"}, +{"id":"57929"}, +{"id":"22605"}, +{"id":"122621"}, +{"id":"40679"}, +{"id":"176729"}, +{"id":"107466"}, +{"id":"72190"}, +{"id":"213423"}, +{"id":"163582"}, +{"id":"82370"}, +{"id":"144048"}, +{"id":"93791"}, +{"id":"100704"}, +{"id":"175114"}, +{"id":"52083"}, +{"id":"26319"}, +{"id":"57492"}, +{"id":"113901"}, +{"id":"64536"}, +{"id":"175110"}, +{"id":"7724"}, +{"id":"74291"}, +{"id":"194629"}, +{"id":"17338"}, +{"id":"117294"}, +{"id":"83586"}, +{"id":"70735"}, +{"id":"54960"}, +{"id":"172930"}, +{"id":"99752"}, +{"id":"9760"}, +{"id":"152347"}, +{"id":"171266"}, +{"id":"98353"}, +{"id":"98173"}, +{"id":"66563"}, +{"id":"19158"}, +{"id":"143724"}, +{"id":"64812"}, +{"id":"12646"}, +{"id":"220348"}, +{"id":"18403"}, +{"id":"81027"}, +{"id":"190720"}, +{"id":"82843"}, +{"id":"84615"}, +{"id":"176210"}, +{"id":"101559"}, +{"id":"71105"}, +{"id":"153953"}, +{"id":"137410"}, +{"id":"69480"}, +{"id":"108269"}, +{"id":"148068"}, +{"id":"93679"}, +{"id":"122504"}, +{"id":"188366"}, +{"id":"190653"}, +{"id":"15993"}, +{"id":"107304"}, +{"id":"46396"}, +{"id":"27632"}, +{"id":"114775"}, +{"id":"177681"}, +{"id":"120104"}, +{"id":"77103"}, +{"id":"93150"}, +{"id":"126285"}, +{"id":"18079"}, +{"id":"81911"}, +{"id":"38635"}, +{"id":"187328"}, +{"id":"187205"}, +{"id":"181308"}, +{"id":"200291"}, +{"id":"120892"}, +{"id":"18609"}, +{"id":"201306"}, +{"id":"205768"}, +{"id":"187149"}, +{"id":"89069"}, +{"id":"20369"}, +{"id":"73178"}, +{"id":"27915"}, +{"id":"134099"}, +{"id":"88831"}, +{"id":"191321"}, +{"id":"143888"}, +{"id":"188023"}, +{"id":"194170"}, +{"id":"183704"}, +{"id":"51665"}, +{"id":"45015"}, +{"id":"71515"}, +{"id":"157383"}, +{"id":"85084"}, +{"id":"16530"}, +{"id":"32110"}, +{"id":"126964"}, +{"id":"159722"}, +{"id":"216049"}, +{"id":"24150"}, +{"id":"132386"}, +{"id":"170026"}, +{"id":"167994"}, +{"id":"169438"}, +{"id":"138797"}, +{"id":"39729"}, +{"id":"90564"}, +{"id":"137457"}, +{"id":"211020"}, +{"id":"180938"}, +{"id":"100624"}, +{"id":"212439"}, +{"id":"23329"}, +{"id":"126376"}, +{"id":"60429"}, +{"id":"152628"}, +{"id":"178826"}, +{"id":"39998"}, +{"id":"121773"}, +{"id":"1321"}, +{"id":"6685"}, +{"id":"121050"}, +{"id":"136203"}, +{"id":"175213"}, +{"id":"48668"}, +{"id":"147042"}, +{"id":"190879"}, +{"id":"98948"}, +{"id":"50979"}, +{"id":"59777"}, +{"id":"103633"}, +{"id":"407"}, +{"id":"90778"}, +{"id":"165392"}, +{"id":"114849"}, +{"id":"216944"}, +{"id":"200965"}, +{"id":"128216"}, +{"id":"140373"}, +{"id":"87030"}, +{"id":"25826"}, +{"id":"166731"}, +{"id":"161219"}, +{"id":"171977"}, +{"id":"38435"}, +{"id":"32325"}, +{"id":"74332"}, +{"id":"123718"}, +{"id":"156218"}, +{"id":"90176"}, +{"id":"12774"}, +{"id":"91621"}, +{"id":"174958"}, +{"id":"204826"}, +{"id":"154235"}, +{"id":"8574"}, +{"id":"148663"}, +{"id":"140938"}, +{"id":"215669"}, +{"id":"91676"}, +{"id":"101409"}, +{"id":"55069"}, +{"id":"150677"}, +{"id":"40181"}, +{"id":"24214"}, +{"id":"188690"}, +{"id":"171883"}, +{"id":"207411"}, +{"id":"31621"}, +{"id":"40943"}, +{"id":"159615"}, +{"id":"21911"}, +{"id":"23040"}, +{"id":"69898"}, +{"id":"116619"}, +{"id":"179866"}, +{"id":"105337"}, +{"id":"82486"}, +{"id":"215851"}, +{"id":"60481"}, +{"id":"218688"}, +{"id":"36943"}, +{"id":"42663"}, +{"id":"35978"}, +{"id":"217575"}, +{"id":"91620"}, +{"id":"79238"}, +{"id":"156546"}, +{"id":"188801"}, +{"id":"173568"}, +{"id":"69965"}, +{"id":"119855"}, +{"id":"183007"}, +{"id":"49053"}, +{"id":"111917"}, +{"id":"6998"}, +{"id":"148912"}, +{"id":"82613"}, +{"id":"13246"}, +{"id":"69738"}, +{"id":"26266"}, +{"id":"170874"}, +{"id":"88491"}, +{"id":"102285"}, +{"id":"219417"}, +{"id":"22445"}, +{"id":"189742"}, +{"id":"71497"}, +{"id":"91928"}, +{"id":"18039"}, +{"id":"23651"}, +{"id":"157577"}, +{"id":"27428"}, +{"id":"180247"}, +{"id":"87497"}, +{"id":"54877"}, +{"id":"21109"}, +{"id":"133974"}, +{"id":"155282"}, +{"id":"41304"}, +{"id":"187752"}, +{"id":"220355"}, +{"id":"43654"}, +{"id":"16748"}, +{"id":"121099"}, +{"id":"98093"}, +{"id":"2238"}, +{"id":"150077"}, +{"id":"48058"}, +{"id":"190310"}, +{"id":"205043"}, +{"id":"178757"}, +{"id":"201409"}, +{"id":"70623"}, +{"id":"219720"}, +{"id":"102098"}, +{"id":"156632"}, +{"id":"128501"}, +{"id":"204914"}, +{"id":"191624"}, +{"id":"54055"}, +{"id":"83575"}, +{"id":"34269"}, +{"id":"27443"}, +{"id":"19315"}, +{"id":"11062"}, +{"id":"121873"}, +{"id":"202639"}, +{"id":"152349"}, +{"id":"180446"}, +{"id":"138223"}, +{"id":"127814"}, +{"id":"66096"}, +{"id":"30093"}, +{"id":"45739"}, +{"id":"18368"}, +{"id":"151482"}, +{"id":"89355"}, +{"id":"72191"}, +{"id":"28001"}, +{"id":"16468"}, +{"id":"196850"}, +{"id":"61717"}, +{"id":"190200"}, +{"id":"97464"}, +{"id":"24987"}, +{"id":"83088"}, +{"id":"51268"}, +{"id":"205221"}, +{"id":"104105"}, +{"id":"133360"}, +{"id":"183419"}, +{"id":"179526"}, +{"id":"23597"}, +{"id":"97476"}, +{"id":"95956"}, +{"id":"205929"}, +{"id":"127260"}, +{"id":"167931"}, +{"id":"245"}, +{"id":"56940"}, +{"id":"161534"}, +{"id":"105141"}, +{"id":"148455"}, +{"id":"167521"}, +{"id":"133515"}, +{"id":"95883"}, +{"id":"219068"}, +{"id":"128545"}, +{"id":"65459"}, +{"id":"216604"}, +{"id":"125083"}, +{"id":"50405"}, +{"id":"115151"}, +{"id":"104122"}, +{"id":"70907"}, +{"id":"202073"}, +{"id":"6024"}, +{"id":"61761"}, +{"id":"325"}, +{"id":"195847"}, +{"id":"66491"}, +{"id":"19051"}, +{"id":"51545"}, +{"id":"15109"}, +{"id":"189256"}, +{"id":"115766"}, +{"id":"157660"}, +{"id":"159633"}, +{"id":"202019"}, +{"id":"51235"}, +{"id":"44371"}, +{"id":"106058"}, +{"id":"196904"}, +{"id":"187392"}, +{"id":"22757"}, +{"id":"64344"}, +{"id":"99595"}, +{"id":"60503"}, +{"id":"72008"}, +{"id":"38245"}, +{"id":"20035"}, +{"id":"131365"}, +{"id":"160185"}, +{"id":"24716"}, +{"id":"2439"}, +{"id":"195712"}, +{"id":"36866"}, +{"id":"132059"}, +{"id":"118475"}, +{"id":"138831"}, +{"id":"23902"}, +{"id":"26117"}, +{"id":"178328"}, +{"id":"23288"}, +{"id":"98461"}, +{"id":"66121"}, +{"id":"43017"}, +{"id":"127989"}, +{"id":"49618"}, +{"id":"186169"}, +{"id":"65339"}, +{"id":"81198"}, +{"id":"75813"}, +{"id":"85665"}, +{"id":"65098"}, +{"id":"57568"}, +{"id":"66746"}, +{"id":"111524"}, +{"id":"178997"}, +{"id":"65172"}, +{"id":"16012"}, +{"id":"83337"}, +{"id":"124505"}, +{"id":"115946"}, +{"id":"213566"}, +{"id":"188329"}, +{"id":"188227"}, +{"id":"62172"}, +{"id":"204461"}, +{"id":"120593"}, +{"id":"78997"}, +{"id":"90686"}, +{"id":"188128"}, +{"id":"116010"}, +{"id":"38600"}, +{"id":"205808"}, +{"id":"148478"}, +{"id":"20883"}, +{"id":"220560"}, +{"id":"79103"}, +{"id":"9651"}, +{"id":"41406"}, +{"id":"188312"}, +{"id":"91221"}, +{"id":"94430"}, +{"id":"137469"}, +{"id":"179097"}, +{"id":"98504"}, +{"id":"219784"}, +{"id":"76239"}, +{"id":"145371"}, +{"id":"96626"}, +{"id":"121424"}, +{"id":"40138"}, +{"id":"76997"}, +{"id":"86429"}, +{"id":"21048"}, +{"id":"132635"}, +{"id":"57839"}, +{"id":"66565"}, +{"id":"176900"}, +{"id":"101933"}, +{"id":"63583"}, +{"id":"128745"}, +{"id":"85439"}, +{"id":"99037"}, +{"id":"185960"}, +{"id":"143070"}, +{"id":"36266"}, +{"id":"58454"}, +{"id":"126635"}, +{"id":"47090"}, +{"id":"49837"}, +{"id":"108240"}, +{"id":"141456"}, +{"id":"173070"}, +{"id":"99309"}, +{"id":"92091"}, +{"id":"81452"}, +{"id":"74553"}, +{"id":"23423"}, +{"id":"118072"}, +{"id":"119558"}, +{"id":"179887"}, +{"id":"11403"}, +{"id":"5447"}, +{"id":"28251"}, +{"id":"201862"}, +{"id":"136320"}, +{"id":"113956"}, +{"id":"183372"}, +{"id":"89230"}, +{"id":"136328"}, +{"id":"7840"}, +{"id":"95963"}, +{"id":"45010"}, +{"id":"10872"}, +{"id":"11341"}, +{"id":"3827"}, +{"id":"197897"}, +{"id":"32007"}, +{"id":"9050"}, +{"id":"215184"}, +{"id":"191633"}, +{"id":"94350"}, +{"id":"115558"}, +{"id":"185523"}, +{"id":"136752"}, +{"id":"12917"}, +{"id":"54722"}, +{"id":"107324"}, +{"id":"54249"}, +{"id":"127302"}, +{"id":"71667"}, +{"id":"118063"}, +{"id":"41403"}, +{"id":"81772"}, +{"id":"186137"}, +{"id":"63692"}, +{"id":"153716"}, +{"id":"92138"}, +{"id":"209019"}, +{"id":"206936"}, +{"id":"113278"}, +{"id":"68959"}, +{"id":"60726"}, +{"id":"93585"}, +{"id":"160829"}, +{"id":"172873"}, +{"id":"211810"}, +{"id":"184552"}, +{"id":"183895"}, +{"id":"31670"}, +{"id":"73657"}, +{"id":"175975"}, +{"id":"170370"}, +{"id":"127274"}, +{"id":"144863"}, +{"id":"122365"}, +{"id":"178002"}, +{"id":"50893"}, +{"id":"212037"}, +{"id":"145984"}, +{"id":"143074"}, +{"id":"208088"}, +{"id":"57482"}, +{"id":"208378"}, +{"id":"117283"}, +{"id":"130636"}, +{"id":"206490"}, +{"id":"27857"}, +{"id":"202827"}, +{"id":"42522"}, +{"id":"128195"}, +{"id":"77701"}, +{"id":"13574"}, +{"id":"76049"}, +{"id":"182459"}, +{"id":"58920"}, +{"id":"214156"}, +{"id":"14563"}, +{"id":"193907"}, +{"id":"198442"}, +{"id":"11556"}, +{"id":"210311"}, +{"id":"207958"}, +{"id":"55249"}, +{"id":"166496"}, +{"id":"116982"}, +{"id":"160690"}, +{"id":"154086"}, +{"id":"143812"}, +{"id":"63498"}, +{"id":"109147"}, +{"id":"61088"}, +{"id":"44246"}, +{"id":"161425"}, +{"id":"62476"}, +{"id":"50847"}, +{"id":"113032"}, +{"id":"219848"}, +{"id":"163744"}, +{"id":"175657"}, +{"id":"65436"}, +{"id":"97825"}, +{"id":"128553"}, +{"id":"92748"}, +{"id":"40988"}, +{"id":"138768"}, +{"id":"57059"}, +{"id":"79756"}, +{"id":"12939"}, +{"id":"28323"}, +{"id":"56669"}, +{"id":"211552"}, +{"id":"153176"}, +{"id":"46294"}, +{"id":"135159"}, +{"id":"79081"}, +{"id":"138511"}, +{"id":"137801"}, +{"id":"98779"}, +{"id":"180809"}, +{"id":"205843"}, +{"id":"71828"}, +{"id":"203779"}, +{"id":"96077"}, +{"id":"128459"}, +{"id":"87450"}, +{"id":"128901"}, +{"id":"187380"}, +{"id":"188368"}, +{"id":"169716"}, +{"id":"184872"}, +{"id":"4562"}, +{"id":"40416"}, +{"id":"17599"}, +{"id":"170764"}, +{"id":"61337"}, +{"id":"49166"}, +{"id":"139526"}, +{"id":"95832"}, +{"id":"63134"}, +{"id":"147054"}, +{"id":"136033"}, +{"id":"117535"}, +{"id":"119591"}, +{"id":"47852"}, +{"id":"74159"}, +{"id":"134961"}, +{"id":"101110"}, +{"id":"61111"}, +{"id":"217538"}, +{"id":"85627"}, +{"id":"24924"}, +{"id":"158380"}, +{"id":"182585"}, +{"id":"153974"}, +{"id":"71825"}, +{"id":"124021"}, +{"id":"40425"}, +{"id":"200781"}, +{"id":"94530"}, +{"id":"213789"}, +{"id":"123800"}, +{"id":"113965"}, +{"id":"39840"}, +{"id":"203949"}, +{"id":"11325"}, +{"id":"18994"}, +{"id":"194694"}, +{"id":"12115"}, +{"id":"142875"}, +{"id":"67571"}, +{"id":"211529"}, +{"id":"182528"}, +{"id":"219809"}, +{"id":"67429"}, +{"id":"207381"}, +{"id":"208959"}, +{"id":"22661"}, +{"id":"44241"}, +{"id":"86931"}, +{"id":"138503"}, +{"id":"135804"}, +{"id":"150009"}, +{"id":"133786"}, +{"id":"8762"}, +{"id":"34264"}, +{"id":"130785"}, +{"id":"122317"}, +{"id":"26843"}, +{"id":"26934"}, +{"id":"87077"}, +{"id":"81117"}, +{"id":"24818"}, +{"id":"172738"}, +{"id":"64111"}, +{"id":"85824"}, +{"id":"185071"}, +{"id":"68539"}, +{"id":"164607"}, +{"id":"153605"}, +{"id":"190901"}, +{"id":"117636"}, +{"id":"76279"}, +{"id":"148844"}, +{"id":"161536"}, +{"id":"10850"}, +{"id":"14083"}, +{"id":"131238"}, +{"id":"90481"}, +{"id":"143921"}, +{"id":"54190"}, +{"id":"120153"}, +{"id":"79610"}, +{"id":"152191"}, +{"id":"203572"}, +{"id":"5464"}, +{"id":"142105"}, +{"id":"52511"}, +{"id":"81292"}, +{"id":"75862"}, +{"id":"179742"}, +{"id":"156781"}, +{"id":"159636"}, +{"id":"110916"}, +{"id":"117814"}, +{"id":"182963"}, +{"id":"119705"}, +{"id":"171895"}, +{"id":"51333"}, +{"id":"112459"}, +{"id":"106218"}, +{"id":"22632"}, +{"id":"102004"}, +{"id":"95239"}, +{"id":"95882"}, +{"id":"48679"}, +{"id":"99044"}, +{"id":"145676"}, +{"id":"67449"}, +{"id":"92556"}, +{"id":"11625"}, +{"id":"198135"}, +{"id":"128637"}, +{"id":"215475"}, +{"id":"190637"}, +{"id":"118034"}, +{"id":"1901"}, +{"id":"164782"}, +{"id":"90422"}, +{"id":"14104"}, +{"id":"15128"}, +{"id":"171994"}, +{"id":"219142"}, +{"id":"11711"}, +{"id":"180242"}, +{"id":"97170"}, +{"id":"141681"}, +{"id":"140168"}, +{"id":"154347"}, +{"id":"85519"}, +{"id":"202771"}, +{"id":"45831"}, +{"id":"34489"}, +{"id":"25698"}, +{"id":"3849"}, +{"id":"29184"}, +{"id":"133753"}, +{"id":"140839"}, +{"id":"185552"}, +{"id":"50819"}, +{"id":"41996"}, +{"id":"220822"}, +{"id":"4671"}, +{"id":"5698"}, +{"id":"135125"}, +{"id":"18892"}, +{"id":"152486"}, +{"id":"93935"}, +{"id":"107363"}, +{"id":"108311"}, +{"id":"98502"}, +{"id":"192646"}, +{"id":"23562"}, +{"id":"155643"}, +{"id":"130239"}, +{"id":"197754"}, +{"id":"117135"}, +{"id":"38521"}, +{"id":"69672"}, +{"id":"27039"}, +{"id":"22270"}, +{"id":"145822"}, +{"id":"27583"}, +{"id":"87547"}, +{"id":"67400"}, +{"id":"104615"}, +{"id":"51061"}, +{"id":"194823"}, +{"id":"77160"}, +{"id":"212640"}, +{"id":"208852"}, +{"id":"49903"}, +{"id":"70672"}, +{"id":"82832"}, +{"id":"103288"}, +{"id":"138479"}, +{"id":"153987"}, +{"id":"169880"}, +{"id":"108773"}, +{"id":"76204"}, +{"id":"79038"}, +{"id":"82644"}, +{"id":"58729"}, +{"id":"179591"}, +{"id":"3260"}, +{"id":"33985"}, +{"id":"146677"}, +{"id":"164018"}, +{"id":"76095"}, +{"id":"185411"}, +{"id":"183408"}, +{"id":"165119"}, +{"id":"129136"}, +{"id":"129851"}, +{"id":"76101"}, +{"id":"85638"}, +{"id":"175676"}, +{"id":"160733"}, +{"id":"64183"}, +{"id":"48855"}, +{"id":"73334"}, +{"id":"52228"}, +{"id":"75947"}, +{"id":"103500"}, +{"id":"173004"}, +{"id":"164960"}, +{"id":"173032"}, +{"id":"107285"}, +{"id":"130832"}, +{"id":"28764"}, +{"id":"205047"}, +{"id":"6514"}, +{"id":"154388"}, +{"id":"111329"}, +{"id":"95895"}, +{"id":"188098"}, +{"id":"164296"}, +{"id":"72621"}, +{"id":"122710"}, +{"id":"70012"}, +{"id":"149432"}, +{"id":"22153"}, +{"id":"21510"}, +{"id":"44569"}, +{"id":"63571"}, +{"id":"41018"}, +{"id":"133162"}, +{"id":"163225"}, +{"id":"208317"}, +{"id":"181042"}, +{"id":"168287"}, +{"id":"159171"}, +{"id":"56158"}, +{"id":"163356"}, +{"id":"91261"}, +{"id":"41867"}, +{"id":"93610"}, +{"id":"145604"}, +{"id":"79820"}, +{"id":"209884"}, +{"id":"200768"}, +{"id":"192086"}, +{"id":"172417"}, +{"id":"128257"}, +{"id":"14837"}, +{"id":"117204"}, +{"id":"98549"}, +{"id":"75964"}, +{"id":"153068"}, +{"id":"107428"}, +{"id":"96996"}, +{"id":"49562"}, +{"id":"219582"}, +{"id":"205800"}, +{"id":"205507"}, +{"id":"99600"}, +{"id":"505"}, +{"id":"151826"}, +{"id":"26662"}, +{"id":"10381"}, +{"id":"131758"}, +{"id":"180454"}, +{"id":"59255"}, +{"id":"162922"}, +{"id":"136253"}, +{"id":"76251"}, +{"id":"41338"}, +{"id":"143697"}, +{"id":"158440"}, +{"id":"99296"}, +{"id":"178925"}, +{"id":"169477"}, +{"id":"219428"}, +{"id":"209745"}, +{"id":"112896"}, +{"id":"3900"}, +{"id":"144209"}, +{"id":"145665"}, +{"id":"213676"}, +{"id":"48160"}, +{"id":"92615"}, +{"id":"61851"}, +{"id":"113953"}, +{"id":"71086"}, +{"id":"36917"}, +{"id":"21959"}, +{"id":"88416"}, +{"id":"56052"}, +{"id":"45448"}, +{"id":"56662"}, +{"id":"73772"}, +{"id":"75837"}, +{"id":"195749"}, +{"id":"90832"}, +{"id":"139686"}, +{"id":"112648"}, +{"id":"129073"}, +{"id":"121991"}, +{"id":"17988"}, +{"id":"126527"}, +{"id":"28845"}, +{"id":"152092"}, +{"id":"180813"}, +{"id":"144124"}, +{"id":"150619"}, +{"id":"119036"}, +{"id":"210200"}, +{"id":"81671"}, +{"id":"190635"}, +{"id":"170859"}, +{"id":"10294"}, +{"id":"57231"}, +{"id":"167524"}, +{"id":"161153"}, +{"id":"7812"}, +{"id":"100188"}, +{"id":"90950"}, +{"id":"96786"}, +{"id":"58318"}, +{"id":"88184"}, +{"id":"65439"}, +{"id":"162070"}, +{"id":"112439"}, +{"id":"121820"}, +{"id":"24594"}, +{"id":"193812"}, +{"id":"3416"}, +{"id":"142803"}, +{"id":"108113"}, +{"id":"51117"}, +{"id":"28927"}, +{"id":"59000"}, +{"id":"99694"}, +{"id":"137898"}, +{"id":"186375"}, +{"id":"122649"}, +{"id":"114420"}, +{"id":"164161"}, +{"id":"107198"}, +{"id":"51181"}, +{"id":"94924"}, +{"id":"160288"}, +{"id":"171676"}, +{"id":"178820"}, +{"id":"30528"}, +{"id":"45407"}, +{"id":"201821"}, +{"id":"120304"}, +{"id":"202748"}, +{"id":"122597"}, +{"id":"46495"}, +{"id":"164128"}, +{"id":"80738"}, +{"id":"43518"}, +{"id":"102414"}, +{"id":"163705"}, +{"id":"166157"}, +{"id":"53288"}, +{"id":"43443"}, +{"id":"67816"}, +{"id":"156580"}, +{"id":"150109"}, +{"id":"13319"}, +{"id":"386"}, +{"id":"45677"}, +{"id":"76937"}, +{"id":"60196"}, +{"id":"197623"}, +{"id":"195676"}, +{"id":"133383"}, +{"id":"213880"}, +{"id":"140091"}, +{"id":"19140"}, +{"id":"550"}, +{"id":"46554"}, +{"id":"108704"}, +{"id":"50407"}, +{"id":"189299"}, +{"id":"30287"}, +{"id":"170629"}, +{"id":"58255"}, +{"id":"168317"}, +{"id":"3638"}, +{"id":"194772"}, +{"id":"166627"}, +{"id":"87953"}, +{"id":"167217"}, +{"id":"166410"}, +{"id":"128694"}, +{"id":"174761"}, +{"id":"182289"}, +{"id":"13260"}, +{"id":"3066"}, +{"id":"196497"}, +{"id":"60819"}, +{"id":"159193"}, +{"id":"199405"}, +{"id":"169529"}, +{"id":"114984"}, +{"id":"65690"}, +{"id":"149125"}, +{"id":"167481"}, +{"id":"198392"}, +{"id":"66416"}, +{"id":"100404"}, +{"id":"178505"}, +{"id":"120945"}, +{"id":"36596"}, +{"id":"193395"}, +{"id":"5150"}, +{"id":"97903"}, +{"id":"134975"}, +{"id":"218560"}, +{"id":"38806"}, +{"id":"140262"}, +{"id":"27698"}, +{"id":"213936"}, +{"id":"29286"}, +{"id":"82781"}, +{"id":"211425"}, +{"id":"24613"}, +{"id":"166357"}, +{"id":"115338"}, +{"id":"140828"}, +{"id":"74622"}, +{"id":"113344"}, +{"id":"177072"}, +{"id":"110045"}, +{"id":"121721"}, +{"id":"20294"}, +{"id":"79378"}, +{"id":"19562"}, +{"id":"166066"}, +{"id":"32669"}, +{"id":"21449"}, +{"id":"182901"}, +{"id":"435"}, +{"id":"57516"}, +{"id":"138165"}, +{"id":"6134"}, +{"id":"163367"}, +{"id":"220083"}, +{"id":"189958"}, +{"id":"176026"}, +{"id":"42914"}, +{"id":"100869"}, +{"id":"184764"}, +{"id":"204460"}, +{"id":"42164"}, +{"id":"80137"}, +{"id":"205620"}, +{"id":"88768"}, +{"id":"93231"}, +{"id":"120612"}, +{"id":"50692"}, +{"id":"152105"}, +{"id":"127333"}, +{"id":"189181"}, +{"id":"157439"}, +{"id":"93373"}, +{"id":"191105"}, +{"id":"136011"}, +{"id":"94956"}, +{"id":"163919"}, +{"id":"31522"}, +{"id":"45287"}, +{"id":"212639"}, +{"id":"159984"}, +{"id":"28299"}, +{"id":"8054"}, +{"id":"100218"}, +{"id":"146278"}, +{"id":"157189"}, +{"id":"109643"}, +{"id":"80724"}, +{"id":"201520"}, +{"id":"31555"}, +{"id":"83771"}, +{"id":"95810"}, +{"id":"203820"}, +{"id":"6399"}, +{"id":"71926"}, +{"id":"101298"}, +{"id":"197766"}, +{"id":"217768"}, +{"id":"168800"}, +{"id":"82133"}, +{"id":"122758"}, +{"id":"85341"}, +{"id":"209333"}, +{"id":"167902"}, +{"id":"30177"}, +{"id":"144960"}, +{"id":"6099"}, +{"id":"101594"}, +{"id":"90138"}, +{"id":"68475"}, +{"id":"12256"}, +{"id":"126476"}, +{"id":"137532"}, +{"id":"11784"}, +{"id":"191684"}, +{"id":"205256"}, +{"id":"50183"}, +{"id":"199110"}, +{"id":"45991"}, +{"id":"190062"}, +{"id":"111285"}, +{"id":"179660"}, +{"id":"13501"}, +{"id":"7094"}, +{"id":"179914"}, +{"id":"99161"}, +{"id":"42261"}, +{"id":"134712"}, +{"id":"96085"}, +{"id":"52120"}, +{"id":"18148"}, +{"id":"189339"}, +{"id":"181114"}, +{"id":"21414"}, +{"id":"132888"}, +{"id":"117987"}, +{"id":"171930"}, +{"id":"90157"}, +{"id":"90426"}, +{"id":"11743"}, +{"id":"89881"}, +{"id":"178542"}, +{"id":"175313"}, +{"id":"117945"}, +{"id":"17031"}, +{"id":"217645"}, +{"id":"209135"}, +{"id":"91829"}, +{"id":"143127"}, +{"id":"212255"}, +{"id":"29914"}, +{"id":"153150"}, +{"id":"67467"}, +{"id":"150180"}, +{"id":"169596"}, +{"id":"14060"}, +{"id":"131945"}, +{"id":"128759"}, +{"id":"143992"}, +{"id":"217951"}, +{"id":"32858"}, +{"id":"209936"}, +{"id":"216201"}, +{"id":"182812"}, +{"id":"75730"}, +{"id":"11102"}, +{"id":"93049"}, +{"id":"131003"}, +{"id":"177856"}, +{"id":"150107"}, +{"id":"218626"}, +{"id":"124999"}, +{"id":"132894"}, +{"id":"22631"}, +{"id":"170545"}, +{"id":"14248"}, +{"id":"103525"}, +{"id":"163750"}, +{"id":"167755"}, +{"id":"77156"}, +{"id":"175485"}, +{"id":"192176"}, +{"id":"72398"}, +{"id":"61540"}, +{"id":"134725"}, +{"id":"191126"}, +{"id":"216415"}, +{"id":"214197"}, +{"id":"9918"}, +{"id":"23049"}, +{"id":"19761"}, +{"id":"62741"}, +{"id":"3908"}, +{"id":"131643"}, +{"id":"43166"}, +{"id":"55908"}, +{"id":"142904"}, +{"id":"161979"}, +{"id":"128994"}, +{"id":"126251"}, +{"id":"201170"}, +{"id":"139839"}, +{"id":"67330"}, +{"id":"77673"}, +{"id":"78753"}, +{"id":"137267"}, +{"id":"16105"}, +{"id":"150231"}, +{"id":"173332"}, +{"id":"42493"}, +{"id":"154904"}, +{"id":"77642"}, +{"id":"43729"}, +{"id":"63066"}, +{"id":"8599"}, +{"id":"47758"}, +{"id":"24729"}, +{"id":"68706"}, +{"id":"68337"}, +{"id":"23485"}, +{"id":"134202"}, +{"id":"90187"}, +{"id":"103148"}, +{"id":"59707"}, +{"id":"15939"}, +{"id":"192402"}, +{"id":"129998"}, +{"id":"50248"}, +{"id":"202648"}, +{"id":"111513"}, +{"id":"23047"}, +{"id":"142657"}, +{"id":"179984"}, +{"id":"197208"}, +{"id":"28149"}, +{"id":"86400"}, +{"id":"120128"}, +{"id":"142467"}, +{"id":"174666"}, +{"id":"162830"}, +{"id":"129435"}, +{"id":"108474"}, +{"id":"10949"}, +{"id":"165880"}, +{"id":"212739"}, +{"id":"104740"}, +{"id":"211936"}, +{"id":"127660"}, +{"id":"73723"}, +{"id":"10219"}, +{"id":"142112"}, +{"id":"85613"}, +{"id":"214646"}, +{"id":"100347"}, +{"id":"216273"}, +{"id":"140383"}, +{"id":"82811"}, +{"id":"115029"}, +{"id":"60982"}, +{"id":"173213"}, +{"id":"164921"}, +{"id":"27182"}, +{"id":"42221"}, +{"id":"94804"}, +{"id":"134548"}, +{"id":"197796"}, +{"id":"121329"}, +{"id":"108685"}, +{"id":"50062"}, +{"id":"220378"}, +{"id":"184912"}, +{"id":"212724"}, +{"id":"21242"}, +{"id":"25381"}, +{"id":"172173"}, +{"id":"97079"}, +{"id":"42023"}, +{"id":"107044"}, +{"id":"155576"}, +{"id":"36050"}, +{"id":"3594"}, +{"id":"68347"}, +{"id":"73184"}, +{"id":"72070"}, +{"id":"90945"}, +{"id":"167692"}, +{"id":"139273"}, +{"id":"206180"}, +{"id":"202996"}, +{"id":"139936"}, +{"id":"188477"}, +{"id":"134327"}, +{"id":"68637"}, +{"id":"134170"}, +{"id":"128887"}, +{"id":"180003"}, +{"id":"180829"}, +{"id":"28828"}, +{"id":"133071"}, +{"id":"33651"}, +{"id":"65513"}, +{"id":"137914"}, +{"id":"130160"}, +{"id":"138812"}, +{"id":"25749"}, +{"id":"116831"}, +{"id":"119294"}, +{"id":"137395"}, +{"id":"132562"}, +{"id":"172035"}, +{"id":"39582"}, +{"id":"34897"}, +{"id":"36384"}, +{"id":"61221"}, +{"id":"24087"}, +{"id":"189899"}, +{"id":"131899"}, +{"id":"150971"}, +{"id":"41104"}, +{"id":"17756"}, +{"id":"158921"}, +{"id":"198984"}, +{"id":"208631"}, +{"id":"138501"}, +{"id":"171903"}, +{"id":"196355"}, +{"id":"32961"}, +{"id":"209489"}, +{"id":"48328"}, +{"id":"52501"}, +{"id":"115931"}, +{"id":"71379"}, +{"id":"132113"}, +{"id":"20105"}, +{"id":"94619"}, +{"id":"91296"}, +{"id":"161261"}, +{"id":"68977"}, +{"id":"110301"}, +{"id":"98602"}, +{"id":"219980"}, +{"id":"213595"}, +{"id":"134112"}, +{"id":"209895"}, +{"id":"169463"}, +{"id":"213494"}, +{"id":"101125"}, +{"id":"195653"}, +{"id":"13003"}, +{"id":"202612"}, +{"id":"10885"}, +{"id":"43379"}, +{"id":"89147"}, +{"id":"200456"}, +{"id":"62432"}, +{"id":"18020"}, +{"id":"10008"}, +{"id":"190990"}, +{"id":"209822"}, +{"id":"125722"}, +{"id":"19220"}, +{"id":"83454"}, +{"id":"127186"}, +{"id":"124821"}, +{"id":"107610"}, +{"id":"21533"}, +{"id":"169595"}, +{"id":"100490"}, +{"id":"107560"}, +{"id":"55895"}, +{"id":"17033"}, +{"id":"129128"}, +{"id":"83534"}, +{"id":"10348"}, +{"id":"91982"}, +{"id":"134411"}, +{"id":"8367"}, +{"id":"109691"}, +{"id":"149396"}, +{"id":"106983"}, +{"id":"71625"}, +{"id":"96761"}, +{"id":"11645"}, +{"id":"36120"}, +{"id":"192502"}, +{"id":"13898"}, +{"id":"10125"}, +{"id":"177723"}, +{"id":"129546"}, +{"id":"115772"}, +{"id":"8335"}, +{"id":"82249"}, +{"id":"128112"}, +{"id":"87001"}, +{"id":"186359"}, +{"id":"216364"}, +{"id":"39290"}, +{"id":"135027"}, +{"id":"207964"}, +{"id":"27830"}, +{"id":"28904"}, +{"id":"5069"}, +{"id":"31234"}, +{"id":"200518"}, +{"id":"101147"}, +{"id":"186202"}, +{"id":"128799"}, +{"id":"189247"}, +{"id":"97319"}, +{"id":"11112"}, +{"id":"1601"}, +{"id":"118200"}, +{"id":"143908"}, +{"id":"215024"}, +{"id":"58382"}, +{"id":"165090"}, +{"id":"5638"}, +{"id":"117925"}, +{"id":"150680"}, +{"id":"133023"}, +{"id":"44293"}, +{"id":"41511"}, +{"id":"91623"}, +{"id":"76924"}, +{"id":"14690"}, +{"id":"205150"}, +{"id":"27557"}, +{"id":"87375"}, +{"id":"114452"}, +{"id":"148107"}, +{"id":"202937"}, +{"id":"117709"}, +{"id":"2651"}, +{"id":"216581"}, +{"id":"116243"}, +{"id":"64112"}, +{"id":"147635"}, +{"id":"65782"}, +{"id":"52730"}, +{"id":"164975"}, +{"id":"215666"}, +{"id":"29946"}, +{"id":"100827"}, +{"id":"150191"}, +{"id":"4318"}, +{"id":"72881"}, +{"id":"198299"}, +{"id":"129358"}, +{"id":"131737"}, +{"id":"99097"}, +{"id":"157927"}, +{"id":"70402"}, +{"id":"207788"}, +{"id":"31796"}, +{"id":"84176"}, +{"id":"210379"}, +{"id":"58073"}, +{"id":"171806"}, +{"id":"71509"}, +{"id":"21824"}, +{"id":"35861"}, +{"id":"60762"}, +{"id":"88296"}, +{"id":"26092"}, +{"id":"38909"}, +{"id":"191593"}, +{"id":"161383"}, +{"id":"31930"}, +{"id":"147190"}, +{"id":"218649"}, +{"id":"62932"}, +{"id":"9323"}, +{"id":"43394"}, +{"id":"103381"}, +{"id":"65507"}, +{"id":"124661"}, +{"id":"215930"}, +{"id":"62899"}, +{"id":"202635"}, +{"id":"178036"}, +{"id":"215182"}, +{"id":"15712"}, +{"id":"132787"}, +{"id":"79262"}, +{"id":"61316"}, +{"id":"56358"}, +{"id":"196277"}, +{"id":"48766"}, +{"id":"163464"}, +{"id":"98832"}, +{"id":"45634"}, +{"id":"36576"}, +{"id":"168269"}, +{"id":"141749"}, +{"id":"295"}, +{"id":"205787"}, +{"id":"7984"}, +{"id":"134467"}, +{"id":"70640"}, +{"id":"82044"}, +{"id":"103227"}, +{"id":"203046"}, +{"id":"206464"}, +{"id":"64802"}, +{"id":"103378"}, +{"id":"62477"}, +{"id":"49161"}, +{"id":"28625"}, +{"id":"140852"}, +{"id":"7511"}, +{"id":"105510"}, +{"id":"72211"}, +{"id":"21165"}, +{"id":"98372"}, +{"id":"40356"}, +{"id":"111735"}, +{"id":"186377"}, +{"id":"192891"}, +{"id":"131055"}, +{"id":"107045"}, +{"id":"200909"}, +{"id":"153597"}, +{"id":"71587"}, +{"id":"153998"}, +{"id":"96481"}, +{"id":"105163"}, +{"id":"152622"}, +{"id":"33616"}, +{"id":"205838"}, +{"id":"114829"}, +{"id":"158262"}, +{"id":"201407"}, +{"id":"195403"}, +{"id":"36200"}, +{"id":"27822"}, +{"id":"187669"}, +{"id":"206656"}, +{"id":"92309"}, +{"id":"12941"}, +{"id":"71062"}, +{"id":"141271"}, +{"id":"74371"}, +{"id":"152343"}, +{"id":"203454"}, +{"id":"216131"}, +{"id":"83331"}, +{"id":"94459"}, +{"id":"217319"}, +{"id":"81088"}, +{"id":"183481"}, +{"id":"47202"}, +{"id":"216763"}, +{"id":"139399"}, +{"id":"15857"}, +{"id":"162532"}, +{"id":"149008"}, +{"id":"38042"}, +{"id":"8853"}, +{"id":"27882"}, +{"id":"37739"}, +{"id":"182952"}, +{"id":"187978"}, +{"id":"41679"}, +{"id":"6572"}, +{"id":"40434"}, +{"id":"39854"}, +{"id":"111104"}, +{"id":"122162"}, +{"id":"107540"}, +{"id":"76023"}, +{"id":"169762"}, +{"id":"103654"}, +{"id":"113310"}, +{"id":"38778"}, +{"id":"111346"}, +{"id":"157115"}, +{"id":"7191"}, +{"id":"213445"}, +{"id":"40967"}, +{"id":"134866"}, +{"id":"60057"}, +{"id":"178970"}, +{"id":"79123"}, +{"id":"93019"}, +{"id":"140025"}, +{"id":"21519"}, +{"id":"2133"}, +{"id":"24771"}, +{"id":"150182"}, +{"id":"15536"}, +{"id":"65773"}, +{"id":"99017"}, +{"id":"74383"}, +{"id":"219957"}, +{"id":"7861"}, +{"id":"166117"}, +{"id":"43426"}, +{"id":"158167"}, +{"id":"16886"}, +{"id":"162886"}, +{"id":"208920"}, +{"id":"175241"}, +{"id":"30996"}, +{"id":"31421"}, +{"id":"87507"}, +{"id":"67984"}, +{"id":"27138"}, +{"id":"990"}, +{"id":"44086"}, +{"id":"93288"}, +{"id":"147693"}, +{"id":"108639"}, +{"id":"14994"}, +{"id":"6291"}, +{"id":"158424"}, +{"id":"152878"}, +{"id":"78009"}, +{"id":"24834"}, +{"id":"187652"}, +{"id":"86226"}, +{"id":"98988"}, +{"id":"172668"}, +{"id":"65496"}, +{"id":"80901"}, +{"id":"116320"}, +{"id":"122746"}, +{"id":"40011"}, +{"id":"6289"}, +{"id":"209655"}, +{"id":"198657"}, +{"id":"190152"}, +{"id":"107737"}, +{"id":"91239"}, +{"id":"26153"}, +{"id":"70664"}, +{"id":"128761"}, +{"id":"40495"}, +{"id":"92563"}, +{"id":"156442"}, +{"id":"7543"}, +{"id":"19873"}, +{"id":"175494"}, +{"id":"193507"}, +{"id":"164091"}, +{"id":"85593"}, +{"id":"64409"}, +{"id":"65425"}, +{"id":"139461"}, +{"id":"16864"}, +{"id":"65720"}, +{"id":"140029"}, +{"id":"16590"}, +{"id":"196647"}, +{"id":"183801"}, +{"id":"96188"}, +{"id":"184191"}, +{"id":"2756"}, +{"id":"210360"}, +{"id":"109632"}, +{"id":"36945"}, +{"id":"185737"}, +{"id":"89597"}, +{"id":"81829"}, +{"id":"127258"}, +{"id":"152411"}, +{"id":"114602"}, +{"id":"34141"}, +{"id":"46090"}, +{"id":"218754"}, +{"id":"149810"}, +{"id":"32505"}, +{"id":"39958"}, +{"id":"28726"}, +{"id":"39252"}, +{"id":"126735"}, +{"id":"18080"}, +{"id":"201773"}, +{"id":"58631"}, +{"id":"110552"}, +{"id":"85213"}, +{"id":"45581"}, +{"id":"97987"}, +{"id":"177429"}, +{"id":"126487"}, +{"id":"175443"}, +{"id":"66141"}, +{"id":"126714"}, +{"id":"128331"}, +{"id":"109844"}, +{"id":"30645"}, +{"id":"145632"}, +{"id":"121065"}, +{"id":"194971"}, +{"id":"134740"}, +{"id":"156050"}, +{"id":"140716"}, +{"id":"86013"}, +{"id":"153497"}, +{"id":"44272"}, +{"id":"159897"}, +{"id":"43714"}, +{"id":"205525"}, +{"id":"108755"}, +{"id":"17222"}, +{"id":"100445"}, +{"id":"62070"}, +{"id":"156435"}, +{"id":"131357"}, +{"id":"27552"}, +{"id":"205967"}, +{"id":"177983"}, +{"id":"96262"}, +{"id":"209531"}, +{"id":"74737"}, +{"id":"115303"}, +{"id":"181781"}, +{"id":"170173"}, +{"id":"89526"}, +{"id":"186363"}, +{"id":"167084"}, +{"id":"89874"}, +{"id":"151098"}, +{"id":"13008"}, +{"id":"66179"}, +{"id":"179632"}, +{"id":"184250"}, +{"id":"187574"}, +{"id":"124376"}, +{"id":"208569"}, +{"id":"108307"}, +{"id":"7456"}, +{"id":"157720"}, +{"id":"220140"}, +{"id":"52887"}, +{"id":"165773"}, +{"id":"34711"}, +{"id":"184172"}, +{"id":"203445"}, +{"id":"27062"}, +{"id":"177011"}, +{"id":"101320"}, +{"id":"53328"}, +{"id":"38648"}, +{"id":"43998"}, +{"id":"76818"}, +{"id":"37824"}, +{"id":"149251"}, +{"id":"10021"}, +{"id":"80778"}, +{"id":"156311"}, +{"id":"175905"}, +{"id":"14112"}, +{"id":"109242"}, +{"id":"89164"}, +{"id":"8412"}, +{"id":"166801"}, +{"id":"84084"}, +{"id":"159170"}, +{"id":"24251"}, +{"id":"89938"}, +{"id":"56393"}, +{"id":"76826"}, +{"id":"143863"}, +{"id":"121706"}, +{"id":"210170"}, +{"id":"153408"}, +{"id":"17125"}, +{"id":"10566"}, +{"id":"21854"}, +{"id":"58624"}, +{"id":"40892"}, +{"id":"147588"}, +{"id":"191777"}, +{"id":"150207"}, +{"id":"38227"}, +{"id":"122117"}, +{"id":"35426"}, +{"id":"136845"}, +{"id":"90626"}, +{"id":"43947"}, +{"id":"214751"}, +{"id":"89664"}, +{"id":"22749"}, +{"id":"130375"}, +{"id":"9755"}, +{"id":"184337"}, +{"id":"110503"}, +{"id":"53434"}, +{"id":"82797"}, +{"id":"148387"}, +{"id":"143578"}, +{"id":"39265"}, +{"id":"130594"}, +{"id":"32177"}, +{"id":"38297"}, +{"id":"182138"}, +{"id":"106720"}, +{"id":"98427"}, +{"id":"104267"}, +{"id":"123402"}, +{"id":"145121"}, +{"id":"178555"}, +{"id":"89413"}, +{"id":"85811"}, +{"id":"38618"}, +{"id":"157485"}, +{"id":"163190"}, +{"id":"7501"}, +{"id":"205560"}, +{"id":"52973"}, +{"id":"204735"}, +{"id":"174468"}, +{"id":"99228"}, +{"id":"148922"}, +{"id":"155315"}, +{"id":"175853"}, +{"id":"61395"}, +{"id":"177172"}, +{"id":"102525"}, +{"id":"51447"}, +{"id":"83599"}, +{"id":"44849"}, +{"id":"200888"}, +{"id":"185732"}, +{"id":"64376"}, +{"id":"184449"}, +{"id":"36076"}, +{"id":"212784"}, +{"id":"159619"}, +{"id":"71369"}, +{"id":"210806"}, +{"id":"118884"}, +{"id":"70991"}, +{"id":"180432"}, +{"id":"50629"}, +{"id":"208498"}, +{"id":"184054"}, +{"id":"170786"}, +{"id":"154732"}, +{"id":"121186"}, +{"id":"131345"}, +{"id":"42539"}, +{"id":"210372"}, +{"id":"49402"}, +{"id":"94913"}, +{"id":"40515"}, +{"id":"100226"}, +{"id":"131148"}, +{"id":"29408"}, +{"id":"209152"}, +{"id":"165425"}, +{"id":"53766"}, +{"id":"77325"}, +{"id":"95825"}, +{"id":"5461"}, +{"id":"175812"}, +{"id":"23502"}, +{"id":"162057"}, +{"id":"86151"}, +{"id":"139616"}, +{"id":"209559"}, +{"id":"96083"}, +{"id":"55504"}, +{"id":"8102"}, +{"id":"36276"}, +{"id":"22308"}, +{"id":"49252"}, +{"id":"175134"}, +{"id":"21357"}, +{"id":"107232"}, +{"id":"116914"}, +{"id":"1045"}, +{"id":"182972"}, +{"id":"211106"}, +{"id":"171385"}, +{"id":"132291"}, +{"id":"156823"}, +{"id":"66737"}, +{"id":"131241"}, +{"id":"144530"}, +{"id":"152100"}, +{"id":"212999"}, +{"id":"31217"}, +{"id":"214965"}, +{"id":"129247"}, +{"id":"3665"}, +{"id":"215130"}, +{"id":"170559"}, +{"id":"48954"}, +{"id":"18796"}, +{"id":"81928"}, +{"id":"127502"}, +{"id":"20795"}, +{"id":"219752"}, +{"id":"7391"}, +{"id":"199456"}, +{"id":"112656"}, +{"id":"98399"}, +{"id":"100940"}, +{"id":"190819"}, +{"id":"85197"}, +{"id":"204026"}, +{"id":"111782"}, +{"id":"175413"}, +{"id":"140841"}, +{"id":"43003"}, +{"id":"31784"}, +{"id":"216662"}, +{"id":"102301"}, +{"id":"102531"}, +{"id":"9155"}, +{"id":"189249"}, +{"id":"2738"}, +{"id":"52098"}, +{"id":"32074"}, +{"id":"156144"}, +{"id":"172828"}, +{"id":"43753"}, +{"id":"22026"}, +{"id":"74417"}, +{"id":"39214"}, +{"id":"79679"}, +{"id":"36690"}, +{"id":"42948"}, +{"id":"184161"}, +{"id":"109264"}, +{"id":"99425"}, +{"id":"156892"}, +{"id":"129355"}, +{"id":"58770"}, +{"id":"26973"}, +{"id":"154579"}, +{"id":"100978"}, +{"id":"91114"}, +{"id":"176985"}, +{"id":"63187"}, +{"id":"79944"}, +{"id":"105204"}, +{"id":"189266"}, +{"id":"7241"}, +{"id":"101174"}, +{"id":"69717"}, +{"id":"60420"}, +{"id":"77889"}, +{"id":"61394"}, +{"id":"203484"}, +{"id":"1444"}, +{"id":"124288"}, +{"id":"120212"}, +{"id":"61307"}, +{"id":"214337"}, +{"id":"120906"}, +{"id":"153132"}, +{"id":"72470"}, +{"id":"128484"}, +{"id":"199181"}, +{"id":"64954"}, +{"id":"98955"}, +{"id":"94476"}, +{"id":"113312"}, +{"id":"179676"}, +{"id":"156799"}, +{"id":"200530"}, +{"id":"205153"}, +{"id":"131216"}, +{"id":"42340"}, +{"id":"190096"}, +{"id":"138314"}, +{"id":"141332"}, +{"id":"5506"}, +{"id":"149666"}, +{"id":"41154"}, +{"id":"173990"}, +{"id":"54555"}, +{"id":"160200"}, +{"id":"123029"}, +{"id":"216084"}, +{"id":"87652"}, +{"id":"9438"}, +{"id":"1726"}, +{"id":"154119"}, +{"id":"72226"}, +{"id":"119290"}, +{"id":"173047"}, +{"id":"211160"}, +{"id":"37409"}, +{"id":"203433"}, +{"id":"50074"}, +{"id":"75286"}, +{"id":"36463"}, +{"id":"54076"}, +{"id":"209080"}, +{"id":"134103"}, +{"id":"184363"}, +{"id":"163360"}, +{"id":"186643"}, +{"id":"183328"}, +{"id":"134972"}, +{"id":"117229"}, +{"id":"194500"}, +{"id":"53389"}, +{"id":"153845"}, +{"id":"20944"}, +{"id":"24694"}, +{"id":"85051"}, +{"id":"159051"}, +{"id":"148711"}, +{"id":"57611"}, +{"id":"45281"}, +{"id":"191354"}, +{"id":"181987"}, +{"id":"71317"}, +{"id":"60840"}, +{"id":"102041"}, +{"id":"147461"}, +{"id":"94564"}, +{"id":"84181"}, +{"id":"114604"}, +{"id":"79896"}, +{"id":"59357"}, +{"id":"88948"}, +{"id":"11557"}, +{"id":"94332"}, +{"id":"97784"}, +{"id":"65136"}, +{"id":"34664"}, +{"id":"219258"}, +{"id":"104665"}, +{"id":"192807"}, +{"id":"6378"}, +{"id":"15789"}, +{"id":"70755"}, +{"id":"148635"}, +{"id":"42785"}, +{"id":"157147"}, +{"id":"13007"}, +{"id":"187250"}, +{"id":"59808"}, +{"id":"157978"}, +{"id":"6210"}, +{"id":"25766"}, +{"id":"216499"}, +{"id":"213072"}, +{"id":"178992"}, +{"id":"216354"}, +{"id":"200412"}, +{"id":"144394"}, +{"id":"32038"}, +{"id":"71310"}, +{"id":"118081"}, +{"id":"82958"}, +{"id":"91095"}, +{"id":"95733"}, +{"id":"134705"}, +{"id":"208157"}, +{"id":"65399"}, +{"id":"26609"}, +{"id":"104233"}, +{"id":"11766"}, +{"id":"179658"}, +{"id":"28935"}, +{"id":"109564"}, +{"id":"131765"}, +{"id":"17158"}, +{"id":"32612"}, +{"id":"28331"}, +{"id":"184910"}, +{"id":"55298"}, +{"id":"208081"}, +{"id":"156633"}, +{"id":"95454"}, +{"id":"85542"}, +{"id":"220021"}, +{"id":"143642"}, +{"id":"33916"}, +{"id":"93469"}, +{"id":"217002"}, +{"id":"136980"}, +{"id":"114086"}, +{"id":"68092"}, +{"id":"90354"}, +{"id":"181075"}, +{"id":"73259"}, +{"id":"16640"}, +{"id":"81648"}, +{"id":"175868"}, +{"id":"617"}, +{"id":"17847"}, +{"id":"63727"}, +{"id":"210622"}, +{"id":"23120"}, +{"id":"41747"}, +{"id":"34404"}, +{"id":"15238"}, +{"id":"197592"}, +{"id":"187119"}, +{"id":"62357"}, +{"id":"214205"}, +{"id":"156511"}, +{"id":"106205"}, +{"id":"215480"}, +{"id":"93734"}, +{"id":"30030"}, +{"id":"212277"}, +{"id":"101907"}, +{"id":"156190"}, +{"id":"175759"}, +{"id":"49767"}, +{"id":"162934"}, +{"id":"141682"}, +{"id":"62792"}, +{"id":"174372"}, +{"id":"152332"}, +{"id":"99230"}, +{"id":"52711"}, +{"id":"211967"}, +{"id":"145679"}, +{"id":"74244"}, +{"id":"218675"}, +{"id":"15730"}, +{"id":"213184"}, +{"id":"97514"}, +{"id":"93587"}, +{"id":"112193"}, +{"id":"8113"}, +{"id":"179020"}, +{"id":"108493"}, +{"id":"34259"}, +{"id":"136693"}, +{"id":"11262"}, +{"id":"79550"}, +{"id":"65003"}, +{"id":"41484"}, +{"id":"121433"}, +{"id":"61648"}, +{"id":"22849"}, +{"id":"169182"}, +{"id":"46837"}, +{"id":"57678"}, +{"id":"35204"}, +{"id":"48475"}, +{"id":"113462"}, +{"id":"96287"}, +{"id":"204332"}, +{"id":"17607"}, +{"id":"83808"}, +{"id":"190315"}, +{"id":"94970"}, +{"id":"749"}, +{"id":"26448"}, +{"id":"181469"}, +{"id":"179409"}, +{"id":"36834"}, +{"id":"29528"}, +{"id":"144347"}, +{"id":"109351"}, +{"id":"189624"}, +{"id":"97918"}, +{"id":"46286"}, +{"id":"20849"}, +{"id":"101541"}, +{"id":"122405"}, +{"id":"51964"}, +{"id":"111799"}, +{"id":"121272"}, +{"id":"97910"}, +{"id":"102093"}, +{"id":"111617"}, +{"id":"108418"}, +{"id":"159355"}, +{"id":"86020"}, +{"id":"92179"}, +{"id":"188456"}, +{"id":"20979"}, +{"id":"198097"}, +{"id":"46178"}, +{"id":"161712"}, +{"id":"128705"}, +{"id":"134693"}, +{"id":"5088"}, +{"id":"66541"}, +{"id":"115456"}, +{"id":"5556"}, +{"id":"196390"}, +{"id":"142909"}, +{"id":"121758"}, +{"id":"48696"}, +{"id":"120680"}, +{"id":"150653"}, +{"id":"202136"}, +{"id":"64005"}, +{"id":"211633"}, +{"id":"73597"}, +{"id":"74041"}, +{"id":"139947"}, +{"id":"41910"}, +{"id":"147855"}, +{"id":"58594"}, +{"id":"109769"}, +{"id":"91738"}, +{"id":"18552"}, +{"id":"91340"}, +{"id":"105402"}, +{"id":"74497"}, +{"id":"81076"}, +{"id":"174725"}, +{"id":"203219"}, +{"id":"147165"}, +{"id":"142905"}, +{"id":"142098"}, +{"id":"188493"}, +{"id":"124047"}, +{"id":"58722"}, +{"id":"5187"}, +{"id":"215443"}, +{"id":"183362"}, +{"id":"126719"}, +{"id":"107311"}, +{"id":"69549"}, +{"id":"27633"}, +{"id":"23824"}, +{"id":"155201"}, +{"id":"192565"}, +{"id":"73443"}, +{"id":"46340"}, +{"id":"103671"}, +{"id":"36286"}, +{"id":"146293"}, +{"id":"151884"}, +{"id":"23467"}, +{"id":"119115"}, +{"id":"102674"}, +{"id":"184867"}, +{"id":"173492"}, +{"id":"6850"}, +{"id":"125561"}, +{"id":"53669"}, +{"id":"54948"}, +{"id":"92036"}, +{"id":"200463"}, +{"id":"20099"}, +{"id":"42106"}, +{"id":"172004"}, +{"id":"89472"}, +{"id":"177544"}, +{"id":"189823"}, +{"id":"178380"}, +{"id":"26786"}, +{"id":"127397"}, +{"id":"164575"}, +{"id":"131820"}, +{"id":"2302"}, +{"id":"204144"}, +{"id":"99984"}, +{"id":"127267"}, +{"id":"138750"}, +{"id":"67777"}, +{"id":"32889"}, +{"id":"79009"}, +{"id":"69788"}, +{"id":"193116"}, +{"id":"13985"}, +{"id":"50813"}, +{"id":"87626"}, +{"id":"92828"}, +{"id":"84788"}, +{"id":"194496"}, +{"id":"62146"}, +{"id":"16817"}, +{"id":"162016"}, +{"id":"182407"}, +{"id":"110789"}, +{"id":"201291"}, +{"id":"215043"}, +{"id":"188205"}, +{"id":"182319"}, +{"id":"68233"}, +{"id":"101006"}, +{"id":"195260"}, +{"id":"209816"}, +{"id":"90700"}, +{"id":"211232"}, +{"id":"170238"}, +{"id":"119180"}, +{"id":"196324"}, +{"id":"62716"}, +{"id":"51960"}, +{"id":"5276"}, +{"id":"32709"}, +{"id":"21123"}, +{"id":"92346"}, +{"id":"25246"}, +{"id":"210142"}, +{"id":"154293"}, +{"id":"187369"}, +{"id":"93968"}, +{"id":"36987"}, +{"id":"24275"}, +{"id":"199083"}, +{"id":"87028"}, +{"id":"108043"}, +{"id":"30638"}, +{"id":"3251"}, +{"id":"10570"}, +{"id":"51321"}, +{"id":"186442"}, +{"id":"100123"}, +{"id":"121449"}, +{"id":"89162"}, +{"id":"115028"}, +{"id":"181087"}, +{"id":"32093"}, +{"id":"116692"}, +{"id":"119346"}, +{"id":"159998"}, +{"id":"78412"}, +{"id":"139271"}, +{"id":"4315"}, +{"id":"89574"}, +{"id":"74418"}, +{"id":"155184"}, +{"id":"58291"}, +{"id":"157639"}, +{"id":"207934"}, +{"id":"116383"}, +{"id":"71543"}, +{"id":"124704"}, +{"id":"214713"}, +{"id":"178504"}, +{"id":"215173"}, +{"id":"93937"}, +{"id":"139708"}, +{"id":"26059"}, +{"id":"198709"}, +{"id":"173156"}, +{"id":"152570"}, +{"id":"7825"}, +{"id":"169799"}, +{"id":"132763"}, +{"id":"21554"}, +{"id":"173445"}, +{"id":"130357"}, +{"id":"19423"}, +{"id":"215096"}, +{"id":"12538"}, +{"id":"35868"}, +{"id":"118519"}, +{"id":"62947"}, +{"id":"943"}, +{"id":"122745"}, +{"id":"85494"}, +{"id":"67853"}, +{"id":"27866"}, +{"id":"68321"}, +{"id":"173570"}, +{"id":"13757"}, +{"id":"56982"}, +{"id":"1848"}, +{"id":"171916"}, +{"id":"64020"}, +{"id":"6557"}, +{"id":"119598"}, +{"id":"50803"}, +{"id":"206167"}, +{"id":"126008"}, +{"id":"144351"}, +{"id":"127979"}, +{"id":"151125"}, +{"id":"85126"}, +{"id":"200039"}, +{"id":"168193"}, +{"id":"3980"}, +{"id":"27451"}, +{"id":"164710"}, +{"id":"101185"}, +{"id":"1738"}, +{"id":"106137"}, +{"id":"33264"}, +{"id":"19366"}, +{"id":"50768"}, +{"id":"39198"}, +{"id":"23405"}, +{"id":"6783"}, +{"id":"148824"}, +{"id":"152977"}, +{"id":"187945"}, +{"id":"213197"}, +{"id":"28385"}, +{"id":"155799"}, +{"id":"23020"}, +{"id":"104989"}, +{"id":"101635"}, +{"id":"1615"}, +{"id":"65359"}, +{"id":"37226"}, +{"id":"126919"}, +{"id":"5014"}, +{"id":"64364"}, +{"id":"155322"}, +{"id":"199818"}, +{"id":"136496"}, +{"id":"9089"}, +{"id":"55449"}, +{"id":"216220"}, +{"id":"155977"}, +{"id":"152096"}, +{"id":"57954"}, +{"id":"29357"}, +{"id":"11205"}, +{"id":"165121"}, +{"id":"118783"}, +{"id":"25074"}, +{"id":"192444"}, +{"id":"151676"}, +{"id":"125674"}, +{"id":"170302"}, +{"id":"207743"}, +{"id":"190178"}, +{"id":"7340"}, +{"id":"196656"}, +{"id":"124540"}, +{"id":"103923"}, +{"id":"95259"}, +{"id":"163873"}, +{"id":"91596"}, +{"id":"5457"}, +{"id":"91237"}, +{"id":"115941"}, +{"id":"186121"}, +{"id":"160032"}, +{"id":"102096"}, +{"id":"58710"}, +{"id":"27227"}, +{"id":"27696"}, +{"id":"188389"}, +{"id":"98409"}, +{"id":"217046"}, +{"id":"188591"}, +{"id":"121038"}, +{"id":"171232"}, +{"id":"25977"}, +{"id":"1681"}, +{"id":"150778"}, +{"id":"196706"}, +{"id":"39188"}, +{"id":"167946"}, +{"id":"137307"}, +{"id":"114880"}, +{"id":"53474"}, +{"id":"68626"}, +{"id":"210567"}, +{"id":"79409"}, +{"id":"11946"}, +{"id":"31527"}, +{"id":"3063"}, +{"id":"111051"}, +{"id":"205641"}, +{"id":"12379"}, +{"id":"140176"}, +{"id":"101686"}, +{"id":"105615"}, +{"id":"203178"}, +{"id":"103382"}, +{"id":"206976"}, +{"id":"23725"}, +{"id":"60810"}, +{"id":"152930"}, +{"id":"100638"}, +{"id":"50999"}, +{"id":"174697"}, +{"id":"99265"}, +{"id":"93211"}, +{"id":"102810"}, +{"id":"138159"}, +{"id":"105058"}, +{"id":"32229"}, +{"id":"194303"}, +{"id":"61571"}, +{"id":"157067"}, +{"id":"82391"}, +{"id":"49308"}, +{"id":"214908"}, +{"id":"134563"}, +{"id":"42285"}, +{"id":"126594"}, +{"id":"182038"}, +{"id":"96501"}, +{"id":"158110"}, +{"id":"203489"}, +{"id":"121380"}, +{"id":"130026"}, +{"id":"24265"}, +{"id":"139065"}, +{"id":"187541"}, +{"id":"123963"}, +{"id":"152740"}, +{"id":"65701"}, +{"id":"139389"}, +{"id":"113213"}, +{"id":"158212"}, +{"id":"212209"}, +{"id":"186174"}, +{"id":"35324"}, +{"id":"92170"}, +{"id":"64441"}, +{"id":"45427"}, +{"id":"122486"}, +{"id":"15643"}, +{"id":"155932"}, +{"id":"219514"}, +{"id":"10884"}, +{"id":"186738"}, +{"id":"10090"}, +{"id":"175778"}, +{"id":"63799"}, +{"id":"18085"}, +{"id":"176801"}, +{"id":"127845"}, +{"id":"139601"}, +{"id":"132686"}, +{"id":"125362"}, +{"id":"203494"}, +{"id":"100472"}, +{"id":"3186"}, +{"id":"172158"}, +{"id":"168897"}, +{"id":"77027"}, +{"id":"169594"}, +{"id":"98421"}, +{"id":"157631"}, +{"id":"12236"}, +{"id":"64727"}, +{"id":"201326"}, +{"id":"984"}, +{"id":"181355"}, +{"id":"49173"}, +{"id":"79346"}, +{"id":"182334"}, +{"id":"198670"}, +{"id":"123510"}, +{"id":"160341"}, +{"id":"52697"}, +{"id":"203674"}, +{"id":"73155"}, +{"id":"98992"}, +{"id":"177529"}, +{"id":"212030"}, +{"id":"151713"}, +{"id":"45881"}, +{"id":"15353"}, +{"id":"77830"}, +{"id":"163452"}, +{"id":"197414"}, +{"id":"94471"}, +{"id":"97188"}, +{"id":"108805"}, +{"id":"41481"}, +{"id":"64059"}, +{"id":"68041"}, +{"id":"163351"}, +{"id":"193626"}, +{"id":"112001"}, +{"id":"52442"}, +{"id":"210708"}, +{"id":"176500"}, +{"id":"158045"}, +{"id":"39503"}, +{"id":"76014"}, +{"id":"33428"}, +{"id":"79527"}, +{"id":"185908"}, +{"id":"63918"}, +{"id":"55344"}, +{"id":"29384"}, +{"id":"210558"}, +{"id":"217927"}, +{"id":"52043"}, +{"id":"63785"}, +{"id":"54136"}, +{"id":"55614"}, +{"id":"19808"}, +{"id":"167678"}, +{"id":"15007"}, +{"id":"199260"}, +{"id":"96008"}, +{"id":"127760"}, +{"id":"147552"}, +{"id":"65978"}, +{"id":"121173"}, +{"id":"19259"}, +{"id":"12896"}, +{"id":"188657"}, +{"id":"82275"}, +{"id":"201491"}, +{"id":"15315"}, +{"id":"166325"}, +{"id":"149433"}, +{"id":"56575"}, +{"id":"99098"}, +{"id":"100647"}, +{"id":"43649"}, +{"id":"206271"}, +{"id":"145248"}, +{"id":"45360"}, +{"id":"37712"}, +{"id":"172401"}, +{"id":"61287"}, +{"id":"153731"}, +{"id":"137770"}, +{"id":"66951"}, +{"id":"205783"}, +{"id":"69113"}, +{"id":"28709"}, +{"id":"101532"}, +{"id":"124564"}, +{"id":"102856"}, +{"id":"95664"}, +{"id":"123199"}, +{"id":"152925"}, +{"id":"44920"}, +{"id":"130175"}, +{"id":"198464"}, +{"id":"161494"}, +{"id":"9547"}, +{"id":"149215"}, +{"id":"219987"}, +{"id":"192890"}, +{"id":"83340"}, +{"id":"136512"}, +{"id":"199200"}, +{"id":"175693"}, +{"id":"112127"}, +{"id":"144857"}, +{"id":"28357"}, +{"id":"86441"}, +{"id":"132295"}, +{"id":"151440"}, +{"id":"182633"}, +{"id":"204078"}, +{"id":"146925"}, +{"id":"84688"}, +{"id":"110928"}, +{"id":"156861"}, +{"id":"131364"}, +{"id":"87487"}, +{"id":"41119"}, +{"id":"42172"}, +{"id":"51517"}, +{"id":"213209"}, +{"id":"5411"}, +{"id":"28141"}, +{"id":"208198"}, +{"id":"152569"}, +{"id":"49399"}, +{"id":"24414"}, +{"id":"77837"}, +{"id":"152082"}, +{"id":"159691"}, +{"id":"80973"}, +{"id":"163828"}, +{"id":"220149"}, +{"id":"88455"}, +{"id":"4215"}, +{"id":"24421"}, +{"id":"83256"}, +{"id":"211432"}, +{"id":"55633"}, +{"id":"172167"}, +{"id":"54317"}, +{"id":"204011"}, +{"id":"160742"}, +{"id":"8306"}, +{"id":"141993"}, +{"id":"62467"}, +{"id":"149987"}, +{"id":"123227"}, +{"id":"83384"}, +{"id":"170801"}, +{"id":"49718"}, +{"id":"45268"}, +{"id":"69728"}, +{"id":"187346"}, +{"id":"198921"}, +{"id":"110051"}, +{"id":"19793"}, +{"id":"127095"}, +{"id":"159175"}, +{"id":"175816"}, +{"id":"53323"}, +{"id":"219256"}, +{"id":"30898"}, +{"id":"124872"}, +{"id":"110031"}, +{"id":"208583"}, +{"id":"87898"}, +{"id":"137760"}, +{"id":"91831"}, +{"id":"207978"}, +{"id":"196936"}, +{"id":"22760"}, +{"id":"164601"}, +{"id":"178261"}, +{"id":"23881"}, +{"id":"123056"}, +{"id":"166516"}, +{"id":"190847"}, +{"id":"3214"}, +{"id":"73282"}, +{"id":"80565"}, +{"id":"607"}, +{"id":"173790"}, +{"id":"115486"}, +{"id":"66889"}, +{"id":"91686"}, +{"id":"139574"}, +{"id":"17687"}, +{"id":"11023"}, +{"id":"175856"}, +{"id":"88144"}, +{"id":"85509"}, +{"id":"51757"}, +{"id":"144756"}, +{"id":"200352"}, +{"id":"46476"}, +{"id":"177151"}, +{"id":"166084"}, +{"id":"104109"}, +{"id":"60760"}, +{"id":"181203"}, +{"id":"140960"}, +{"id":"25030"}, +{"id":"125596"}, +{"id":"144076"}, +{"id":"120410"}, +{"id":"99524"}, +{"id":"25390"}, +{"id":"194871"}, +{"id":"129283"}, +{"id":"158148"}, +{"id":"70610"}, +{"id":"77810"}, +{"id":"170226"}, +{"id":"75461"}, +{"id":"124190"}, +{"id":"60513"}, +{"id":"6089"}, +{"id":"40712"}, +{"id":"100407"}, +{"id":"30021"}, +{"id":"81444"}, +{"id":"175611"}, +{"id":"2203"}, +{"id":"59773"}, +{"id":"165067"}, +{"id":"14630"}, +{"id":"183050"}, +{"id":"89678"}, +{"id":"20155"}, +{"id":"186831"}, +{"id":"62892"}, +{"id":"48003"}, +{"id":"215227"}, +{"id":"161392"}, +{"id":"67378"}, +{"id":"140329"}, +{"id":"147352"}, +{"id":"177214"}, +{"id":"178652"}, +{"id":"182970"}, +{"id":"11646"}, +{"id":"158616"}, +{"id":"193631"}, +{"id":"165860"}, +{"id":"209799"}, +{"id":"166068"}, +{"id":"133379"}, +{"id":"216824"}, +{"id":"18599"}, +{"id":"31001"}, +{"id":"159697"}, +{"id":"138517"}, +{"id":"2647"}, +{"id":"105515"}, +{"id":"163892"}, +{"id":"37640"}, +{"id":"23790"}, +{"id":"116771"}, +{"id":"122599"}, +{"id":"219826"}, +{"id":"47112"}, +{"id":"30151"}, +{"id":"129297"}, +{"id":"35304"}, +{"id":"144333"}, +{"id":"143760"}, +{"id":"112586"}, +{"id":"186680"}, +{"id":"182606"}, +{"id":"91800"}, +{"id":"208913"}, +{"id":"149602"}, +{"id":"158345"}, +{"id":"167278"}, +{"id":"25448"}, +{"id":"186047"}, +{"id":"151295"}, +{"id":"62274"}, +{"id":"174888"}, +{"id":"159634"}, +{"id":"118630"}, +{"id":"5222"}, +{"id":"166279"}, +{"id":"2345"}, +{"id":"164631"}, +{"id":"114891"}, +{"id":"87884"}, +{"id":"27936"}, +{"id":"218119"}, +{"id":"48014"}, +{"id":"88803"}, +{"id":"208435"}, +{"id":"93954"}, +{"id":"212459"}, +{"id":"49455"}, +{"id":"169356"}, +{"id":"62046"}, +{"id":"31898"}, +{"id":"106949"}, +{"id":"204277"}, +{"id":"212060"}, +{"id":"163906"}, +{"id":"101417"}, +{"id":"112914"}, +{"id":"73077"}, +{"id":"183091"}, +{"id":"126568"}, +{"id":"162778"}, +{"id":"5471"}, +{"id":"62566"}, +{"id":"60539"}, +{"id":"191108"}, +{"id":"66161"}, +{"id":"117237"}, +{"id":"58456"}, +{"id":"172996"}, +{"id":"181500"}, +{"id":"20197"}, +{"id":"68268"}, +{"id":"164752"}, +{"id":"188844"}, +{"id":"124614"}, +{"id":"33703"}, +{"id":"205782"}, +{"id":"20421"}, +{"id":"87354"}, +{"id":"183665"}, +{"id":"41317"}, +{"id":"104326"}, +{"id":"137624"}, +{"id":"134596"}, +{"id":"28775"}, +{"id":"71136"}, +{"id":"188828"}, +{"id":"182934"}, +{"id":"18298"}, +{"id":"136969"}, +{"id":"123408"}, +{"id":"42508"}, +{"id":"44944"}, +{"id":"191478"}, +{"id":"118198"}, +{"id":"143091"}, +{"id":"115077"}, +{"id":"22717"}, +{"id":"124274"}, +{"id":"63990"}, +{"id":"126566"}, +{"id":"110891"}, +{"id":"186981"}, +{"id":"112416"}, +{"id":"194560"}, +{"id":"107002"}, +{"id":"101414"}, +{"id":"218519"}, +{"id":"200247"}, +{"id":"85661"}, +{"id":"83922"}, +{"id":"210880"}, +{"id":"11553"}, +{"id":"195176"}, +{"id":"217101"}, +{"id":"25369"}, +{"id":"27033"}, +{"id":"115049"}, +{"id":"4269"}, +{"id":"22305"}, +{"id":"81233"}, +{"id":"198583"}, +{"id":"204099"}, +{"id":"203383"}, +{"id":"117192"}, +{"id":"218154"}, +{"id":"210258"}, +{"id":"162660"}, +{"id":"97212"}, +{"id":"164660"}, +{"id":"87583"}, +{"id":"140126"}, +{"id":"26275"}, +{"id":"198016"}, +{"id":"22770"}, +{"id":"120043"}, +{"id":"193723"}, +{"id":"17827"}, +{"id":"131323"}, +{"id":"208201"}, +{"id":"196371"}, +{"id":"200834"}, +{"id":"6396"}, +{"id":"246"}, +{"id":"153275"}, +{"id":"170204"}, +{"id":"118599"}, +{"id":"217010"}, +{"id":"168901"}, +{"id":"139553"}, +{"id":"170651"}, +{"id":"197236"}, +{"id":"208251"}, +{"id":"70143"}, +{"id":"26828"}, +{"id":"201895"}, +{"id":"171735"}, +{"id":"29854"}, +{"id":"8526"}, +{"id":"164816"}, +{"id":"33544"}, +{"id":"38998"}, +{"id":"123840"}, +{"id":"48765"}, +{"id":"177264"}, +{"id":"69134"}, +{"id":"210578"}, +{"id":"95806"}, +{"id":"36777"}, +{"id":"31996"}, +{"id":"59047"}, +{"id":"55457"}, +{"id":"150791"}, +{"id":"132695"}, +{"id":"65812"}, +{"id":"46283"}, +{"id":"13957"}, +{"id":"58553"}, +{"id":"189242"}, +{"id":"171931"}, +{"id":"66894"}, +{"id":"208624"}, +{"id":"91926"}, +{"id":"75300"}, +{"id":"155865"}, +{"id":"195361"}, +{"id":"202201"}, +{"id":"119299"}, +{"id":"104809"}, +{"id":"163647"}, +{"id":"145871"}, +{"id":"1798"}, +{"id":"211907"}, +{"id":"168328"}, +{"id":"193313"}, +{"id":"181854"}, +{"id":"175206"}, +{"id":"118534"}, +{"id":"131159"}, +{"id":"214758"}, +{"id":"169486"}, +{"id":"50450"}, +{"id":"115798"}, +{"id":"195093"}, +{"id":"35554"}, +{"id":"56950"}, +{"id":"7961"}, +{"id":"46896"}, +{"id":"203091"}, +{"id":"81364"}, +{"id":"10731"}, +{"id":"59684"}, +{"id":"144102"}, +{"id":"4938"}, +{"id":"195978"}, +{"id":"209836"}, +{"id":"164506"}, +{"id":"122263"}, +{"id":"158497"}, +{"id":"162139"}, +{"id":"14569"}, +{"id":"21082"}, +{"id":"178748"}, +{"id":"79657"}, +{"id":"39225"}, +{"id":"15333"}, +{"id":"149726"}, +{"id":"116994"}, +{"id":"196071"}, +{"id":"48571"}, +{"id":"127030"}, +{"id":"160861"}, +{"id":"83091"}, +{"id":"32485"}, +{"id":"111760"}, +{"id":"48277"}, +{"id":"28637"}, +{"id":"190588"}, +{"id":"182329"}, +{"id":"121219"}, +{"id":"106554"}, +{"id":"78824"}, +{"id":"104602"}, +{"id":"117852"}, +{"id":"140020"}, +{"id":"73162"}, +{"id":"57047"}, +{"id":"120200"}, +{"id":"45819"}, +{"id":"39297"}, +{"id":"135062"}, +{"id":"4831"}, +{"id":"115998"}, +{"id":"23383"}, +{"id":"118109"}, +{"id":"139415"}, +{"id":"41169"}, +{"id":"89795"}, +{"id":"90671"}, +{"id":"116859"}, +{"id":"110158"}, +{"id":"220030"}, +{"id":"24690"}, +{"id":"53831"}, +{"id":"178190"}, +{"id":"97863"}, +{"id":"94149"}, +{"id":"142562"}, +{"id":"59783"}, +{"id":"97278"}, +{"id":"17279"}, +{"id":"39309"}, +{"id":"156237"}, +{"id":"14135"}, +{"id":"42018"}, +{"id":"202215"}, +{"id":"126090"}, +{"id":"114278"}, +{"id":"128973"}, +{"id":"81393"}, +{"id":"65750"}, +{"id":"64698"}, +{"id":"140508"}, +{"id":"129973"}, +{"id":"143172"}, +{"id":"37109"}, +{"id":"36696"}, +{"id":"33216"}, +{"id":"99607"}, +{"id":"138349"}, +{"id":"158552"}, +{"id":"36666"}, +{"id":"127398"}, +{"id":"142680"}, +{"id":"166052"}, +{"id":"137909"}, +{"id":"5478"}, +{"id":"98414"}, +{"id":"128593"}, +{"id":"127541"}, +{"id":"49314"}, +{"id":"34519"}, +{"id":"176728"}, +{"id":"147084"}, +{"id":"87371"}, +{"id":"154659"}, +{"id":"62520"}, +{"id":"56064"}, +{"id":"33431"}, +{"id":"12142"}, +{"id":"207383"}, +{"id":"200552"}, +{"id":"173380"}, +{"id":"63491"}, +{"id":"61491"}, +{"id":"211746"}, +{"id":"183395"}, +{"id":"201267"}, +{"id":"171706"}, +{"id":"84749"}, +{"id":"84257"}, +{"id":"5337"}, +{"id":"175352"}, +{"id":"134080"}, +{"id":"73961"}, +{"id":"78171"}, +{"id":"29685"}, +{"id":"207206"}, +{"id":"151593"}, +{"id":"77189"}, +{"id":"24017"}, +{"id":"9146"}, +{"id":"31549"}, +{"id":"33174"}, +{"id":"21060"}, +{"id":"31165"}, +{"id":"168470"}, +{"id":"105214"}, +{"id":"73914"}, +{"id":"199787"}, +{"id":"22217"}, +{"id":"115787"}, +{"id":"106399"}, +{"id":"128963"}, +{"id":"36821"}, +{"id":"137036"}, +{"id":"195462"}, +{"id":"209591"}, +{"id":"66383"}, +{"id":"120877"}, +{"id":"138422"}, +{"id":"158447"}, +{"id":"55785"}, +{"id":"27765"}, +{"id":"193978"}, +{"id":"211642"}, +{"id":"215493"} +] diff --git a/data/something/labels/validation.json b/data/something/labels/validation.json new file mode 100644 index 0000000000000000000000000000000000000000..a09751eebe760824bdae523980a7530938866421 --- /dev/null +++ b/data/something/labels/validation.json @@ -0,0 +1,24779 @@ +[ +{"id":"74225","label":"spinning cube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cube"]}, +{"id":"116154","label":"showing clay box on top of wallet","template":"Showing [something] on top of [something]","placeholders":["clay box","wallet"]}, +{"id":"198186","label":"wiping words off of a paper","template":"Wiping [something] off of [something]","placeholders":["words","a paper"]}, +{"id":"137878","label":"pushing scissors so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["scissors"]}, +{"id":"151151","label":"turning the camera left while filming wall mounted fan","template":"Turning the camera left while filming [something]","placeholders":["wall mounted fan"]}, +{"id":"195025","label":"showing hamburger next to glasses","template":"Showing [something] next to [something]","placeholders":["hamburger","glasses"]}, +{"id":"172305","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"92355","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"35671","label":"bending book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["book"]}, +{"id":"69703","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"177890","label":"pretending to pick a tennisball up","template":"Pretending to pick [something] up","placeholders":["a tennisball"]}, +{"id":"217571","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"202564","label":"covering salt shaker with a towel","template":"Covering [something] with [something]","placeholders":["salt shaker","a towel"]}, +{"id":"107014","label":"dropping a card in front of a coin","template":"Dropping [something] in front of [something]","placeholders":["a card","a coin"]}, +{"id":"215371","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"149956","label":"tipping jar with hand over, so charger falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["jar","hand","charger"]}, +{"id":"91336","label":"hitting a teddy bear with a stick","template":"Hitting [something] with [something]","placeholders":["a teddy bear","a stick"]}, +{"id":"194094","label":"holding toy next to remote","template":"Holding [something] next to [something]","placeholders":["toy","remote"]}, +{"id":"121269","label":"stuffing jacket into knacksac","template":"Stuffing [something] into [something]","placeholders":["jacket","knacksac"]}, +{"id":"169362","label":"taking glass from desk","template":"Taking [something] from [somewhere]","placeholders":["glass","desk"]}, +{"id":"166924","label":"pushing iphone adapter from left to right","template":"Pushing [something] from left to right","placeholders":["iphone adapter"]}, +{"id":"188509","label":"lifting up one end of duster, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["duster"]}, +{"id":"97908","label":"letting a toy train roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a toy train"]}, +{"id":"74440","label":"stuffing a charger into a box","template":"Stuffing [something] into [something]","placeholders":["a charger","a box"]}, +{"id":"104085","label":"stuffing pajamas into a bag","template":"Stuffing [something] into [something]","placeholders":["pajamas","a bag"]}, +{"id":"171745","label":"burying quarter in flower pot","template":"Burying [something] in [something]","placeholders":["quarter","flower pot"]}, +{"id":"33395","label":"covering a chappal with mat","template":"Covering [something] with [something]","placeholders":["a chappal","mat"]}, +{"id":"29495","label":"moving bowl up","template":"Moving [something] up","placeholders":["bowl"]}, +{"id":"20330","label":"showing a charger behind diaries","template":"Showing [something] behind [something]","placeholders":["a charger","diaries"]}, +{"id":"24837","label":"folding mat","template":"Folding [something]","placeholders":["mat"]}, +{"id":"147255","label":"putting battery on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["battery"]}, +{"id":"96312","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"214198","label":"putting egg into bowl","template":"Putting [something] into [something]","placeholders":["egg","bowl"]}, +{"id":"108901","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"66480","label":"pushing a hair clip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a hair clip"]}, +{"id":"136478","label":"moving door away from the camera","template":"Moving [something] away from the camera","placeholders":["door"]}, +{"id":"82561","label":"letting a can of mints roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a can of mints"]}, +{"id":"211603","label":"spinning phone so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["phone"]}, +{"id":"104732","label":"folding wool mat","template":"Folding [something]","placeholders":["wool mat"]}, +{"id":"19977","label":"removing a beer can, revealing a glass behind","template":"Removing [something], revealing [something] behind","placeholders":["a beer can","a glass"]}, +{"id":"443","label":"tilting lid with quarter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["lid","quarter"]}, +{"id":"184679","label":"plugging charger into extension cord","template":"Plugging [something] into [something]","placeholders":["charger","extension cord"]}, +{"id":"29910","label":"moving wallet down","template":"Moving [something] down","placeholders":["wallet"]}, +{"id":"160261","label":"pushing orange bowl from left to right","template":"Pushing [something] from left to right","placeholders":["orange bowl"]}, +{"id":"32708","label":"opening phone case","template":"Opening [something]","placeholders":["phone case"]}, +{"id":"132073","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"124009","label":"moving control closer to vase","template":"Moving [something] closer to [something]","placeholders":["control","vase"]}, +{"id":"139061","label":"letting glue bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glue bottle"]}, +{"id":"191800","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"51945","label":"moving remote and small remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["remote","small remote"]}, +{"id":"69417","label":"putting a banana that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a banana"]}, +{"id":"83691","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"35220","label":"wiping stain off of fridge","template":"Wiping [something] off of [something]","placeholders":["stain","fridge"]}, +{"id":"28840","label":"moving a bottle and a glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a glass"]}, +{"id":"111709","label":"turning thermos bottle upside down","template":"Turning [something] upside down","placeholders":["thermos bottle"]}, +{"id":"94330","label":"stacking 3 tin cans","template":"Stacking [number of] [something]","placeholders":["3","tin cans"]}, +{"id":"57049","label":"dropping something into something","template":"Dropping [something] into [something]","placeholders":["something","something"]}, +{"id":"24972","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"103503","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"211520","label":"hitting match box with stick","template":"Hitting [something] with [something]","placeholders":["match box","stick"]}, +{"id":"154368","label":"showing thumb up to the camera","template":"Showing [something] to the camera","placeholders":["thumb up"]}, +{"id":"64515","label":"showing a pencil behind a hammer","template":"Showing [something] behind [something]","placeholders":["a pencil","a hammer"]}, +{"id":"35628","label":"pretending to put lighter on a surface","template":"Pretending to put [something] on a surface","placeholders":["lighter"]}, +{"id":"113779","label":"stuffing tissue into box","template":"Stuffing [something] into [something]","placeholders":["tissue","box"]}, +{"id":"156507","label":"pretending to scoop suitcase up with hand","template":"Pretending to scoop [something] up with [something]","placeholders":["suitcase","hand"]}, +{"id":"136644","label":"holding paper over an ornament","template":"Holding [something] over [something]","placeholders":["paper","an ornament"]}, +{"id":"52838","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43876","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"49167","label":"pushing a lighter so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a lighter"]}, +{"id":"123630","label":"throwing usb cable in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["usb cable"]}, +{"id":"189367","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"44212","label":"putting coaster","template":"Putting [something similar to other things that are already on the table]","placeholders":["coaster"]}, +{"id":"84962","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"28209","label":"dropping something onto something","template":"Dropping [something] onto [something]","placeholders":["something","something"]}, +{"id":"96361","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"43315","label":"dropping a flip flop behind a box of origami cranes","template":"Dropping [something] behind [something]","placeholders":["a flip flop","a box of origami cranes"]}, +{"id":"114129","label":"showing piece of bread behind bottle","template":"Showing [something] behind [something]","placeholders":["piece of bread","bottle"]}, +{"id":"141732","label":"putting a cup, a knife and a spoon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a cup","a knife","a spoon"]}, +{"id":"77719","label":"putting 3 toy cars onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["3","toy cars","yellow note"]}, +{"id":"108136","label":"approaching red punching machine with your camera","template":"Approaching [something] with your camera","placeholders":["red punching machine"]}, +{"id":"97052","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"26380","label":"putting letter that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["letter"]}, +{"id":"106595","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"2645","label":"stuffing paper into a mug","template":"Stuffing [something] into [something]","placeholders":["paper","a mug"]}, +{"id":"18966","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"64373","label":"moving tablet up","template":"Moving [something] up","placeholders":["tablet"]}, +{"id":"67199","label":"putting a stapler in front of the match box","template":"Putting [something] in front of [something]","placeholders":["a stapler","the match box"]}, +{"id":"89496","label":"uncovering spoon","template":"Uncovering [something]","placeholders":["spoon"]}, +{"id":"70565","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"36620","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"164170","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"18689","label":"taking one marker","template":"Taking [one of many similar things on the table]","placeholders":["one marker"]}, +{"id":"44748","label":"lifting mobile phone with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["mobile phone","mobile phone"]}, +{"id":"153476","label":"tilting a book with a measuring tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a measuring tape"]}, +{"id":"212494","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"7675","label":"pretending to put laundry detergent onto a washing machine","template":"Pretending to put [something] onto [something]","placeholders":["laundry detergent","a washing machine"]}, +{"id":"177775","label":"turning the camera downwards while filming tea box","template":"Turning the camera downwards while filming [something]","placeholders":["tea box"]}, +{"id":"193283","label":"pretending to pour water out of a mug, but the mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a mug","the mug"]}, +{"id":"138997","label":"pretending to pick a box of juice up","template":"Pretending to pick [something] up","placeholders":["a box of juice"]}, +{"id":"20890","label":"pretending to close a box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a box"]}, +{"id":"154208","label":"moving a toy car down","template":"Moving [something] down","placeholders":["a toy car"]}, +{"id":"156912","label":"putting small sharpener on a surface","template":"Putting [something] on a surface","placeholders":["small sharpener"]}, +{"id":"201874","label":"spilling water next to a container","template":"Spilling [something] next to [something]","placeholders":["water","a container"]}, +{"id":"166797","label":"putting something similar to other things that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar to other things that are already on the table"]}, +{"id":"9037","label":"showing money on top of chair","template":"Showing [something] on top of [something]","placeholders":["money","chair"]}, +{"id":"14004","label":"touching (without moving) bottle cap of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["bottle cap","bottle"]}, +{"id":"189328","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"161257","label":"teething ring falling like a rock","template":"[Something] falling like a rock","placeholders":["teething ring"]}, +{"id":"71728","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"95667","label":"a bottle being deflected from a wall","template":"[Something] being deflected from [something]","placeholders":["a bottle","a wall"]}, +{"id":"94158","label":"pretending to be tearing a fidget spinner","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a fidget spinner"]}, +{"id":"155705","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"84062","label":"showing doctor sign to the camera","template":"Showing [something] to the camera","placeholders":["doctor sign"]}, +{"id":"161043","label":"pretending to be tearing silicone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["silicone"]}, +{"id":"35870","label":"letting a can roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a can"]}, +{"id":"183708","label":"pushing a mug from right to left","template":"Pushing [something] from right to left","placeholders":["a mug"]}, +{"id":"38954","label":"pushing a charger from left to right","template":"Pushing [something] from left to right","placeholders":["a charger"]}, +{"id":"29556","label":"pretending to put bottle next to bottle","template":"Pretending to put [something] next to [something]","placeholders":["bottle","bottle"]}, +{"id":"60790","label":"pulling two ends of hair tie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair tie"]}, +{"id":"43799","label":"uncovering jar","template":"Uncovering [something]","placeholders":["jar"]}, +{"id":"139114","label":"poking a toy bunny so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a toy bunny"]}, +{"id":"210862","label":"showing name plate to the camera","template":"Showing [something] to the camera","placeholders":["name plate"]}, +{"id":"187386","label":"holding comb over remote control","template":"Holding [something] over [something]","placeholders":["comb","remote control"]}, +{"id":"13823","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"147203","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"36317","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"39332","label":"tilting book with package on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","package"]}, +{"id":"4709","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"97677","label":"pushing striker coin with wooden stick","template":"Pushing [something] with [something]","placeholders":["striker coin","wooden stick"]}, +{"id":"193244","label":"uncovering eyeshadow","template":"Uncovering [something]","placeholders":["eyeshadow"]}, +{"id":"19088","label":"moving package down","template":"Moving [something] down","placeholders":["package"]}, +{"id":"129417","label":"putting three pieces of paper towel onto box","template":"Putting [number of] [something] onto [something]","placeholders":["three","pieces of paper towel","box"]}, +{"id":"69390","label":"moving cotton and cotton closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cotton","cotton"]}, +{"id":"147675","label":"plugging charger into extension cord","template":"Plugging [something] into [something]","placeholders":["charger","extension cord"]}, +{"id":"43138","label":"pushing blanket from left to right","template":"Pushing [something] from left to right","placeholders":["blanket"]}, +{"id":"131042","label":"taking a doll out of another doll","template":"Taking [something] out of [something]","placeholders":["a doll","another doll"]}, +{"id":"166241","label":"approaching banana leaves with your camera","template":"Approaching [something] with your camera","placeholders":["banana leaves"]}, +{"id":"83546","label":"putting tomato into bowl","template":"Putting [something] into [something]","placeholders":["tomato","bowl"]}, +{"id":"48021","label":"pretending to turn orange post-it upside down","template":"Pretending to turn [something] upside down","placeholders":["orange post-it"]}, +{"id":"216344","label":"putting picture frame in front of toiletpaper","template":"Putting [something] in front of [something]","placeholders":["picture frame","toiletpaper"]}, +{"id":"69819","label":"removing a mug, revealing a spoon behind","template":"Removing [something], revealing [something] behind","placeholders":["a mug","a spoon"]}, +{"id":"19415","label":"turning plastic bottle upside down","template":"Turning [something] upside down","placeholders":["plastic bottle"]}, +{"id":"209572","label":"rolling luggage on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["luggage"]}, +{"id":"27539","label":"bending headband so that it deforms","template":"Bending [something] so that it deforms","placeholders":["headband"]}, +{"id":"168029","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"124553","label":"throwing tea spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tea spoon"]}, +{"id":"40518","label":"tilting phone with pencil on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["phone","pencil"]}, +{"id":"51449","label":"touching (without moving) nosel of toothbrush","template":"Touching (without moving) [part] of [something]","placeholders":["nosel","toothbrush"]}, +{"id":"97706","label":"spilling yoghurt next to glass","template":"Spilling [something] next to [something]","placeholders":["yoghurt","glass"]}, +{"id":"147987","label":"moving a battery down","template":"Moving [something] down","placeholders":["a battery"]}, +{"id":"91410","label":"taking yellow colour pen of many similar colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["yellow colour pen of many similar colour pens on the table"]}, +{"id":"110768","label":"throwing green toy car onto a surface","template":"Throwing [something] onto a surface","placeholders":["green toy car"]}, +{"id":"214816","label":"poking highlighter so that it falls over","template":"Poking [something] so that it falls over","placeholders":["highlighter"]}, +{"id":"44183","label":"tilting a box with a piece of plastic on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","a piece of plastic"]}, +{"id":"77738","label":"stacking 2 toy wheels","template":"Stacking [number of] [something]","placeholders":["2","toy wheels"]}, +{"id":"153613","label":"holding pen over bottle","template":"Holding [something] over [something]","placeholders":["pen","bottle"]}, +{"id":"90979","label":"letting a small ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a small ball"]}, +{"id":"192450","label":"putting toy idol into orange bowl","template":"Putting [something] into [something]","placeholders":["toy idol","orange bowl"]}, +{"id":"26839","label":"putting 3 colour pens onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["3","colour pens","blue note"]}, +{"id":"98966","label":"pretending to open book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["book"]}, +{"id":"159182","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"37042","label":"spinning marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker"]}, +{"id":"196208","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"120594","label":"putting glasses behind glass cup","template":"Putting [something] behind [something]","placeholders":["glasses","glass cup"]}, +{"id":"218684","label":"holding a fork over a sauce container","template":"Holding [something] over [something]","placeholders":["a fork","a sauce container"]}, +{"id":"217129","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"181985","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"45474","label":"plugging wire into microcontroller but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["wire","microcontroller"]}, +{"id":"142616","label":"pouring cereal into a bowl","template":"Pouring [something] into [something]","placeholders":["cereal","a bowl"]}, +{"id":"53972","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"107532","label":"putting matchstick","template":"Putting [something similar to other things that are already on the table]","placeholders":["matchstick"]}, +{"id":"12310","label":"putting something, something and something on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["something","something","something"]}, +{"id":"38403","label":"pretending or failing to wipe water off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["water","table"]}, +{"id":"52717","label":"pretending to throw pack","template":"Pretending to throw [something]","placeholders":["pack"]}, +{"id":"165886","label":"spinning ring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ring"]}, +{"id":"99224","label":"tilting iphone with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["iphone","pen"]}, +{"id":"119911","label":"pretending to take cellphone from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","table"]}, +{"id":"216970","label":"dropping a comb into a box","template":"Dropping [something] into [something]","placeholders":["a comb","a box"]}, +{"id":"209810","label":"pouring water into a sink","template":"Pouring [something] into [something]","placeholders":["water","a sink"]}, +{"id":"95120","label":"spinning pendrive that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pendrive"]}, +{"id":"66609","label":"dropping book in front of plastic-container","template":"Dropping [something] in front of [something]","placeholders":["book","plastic-container"]}, +{"id":"95884","label":"throwing tooth paste","template":"Throwing [something]","placeholders":["tooth paste"]}, +{"id":"125327","label":"attaching a sticky note to a bowl","template":"Attaching [something] to [something]","placeholders":["a sticky note","a bowl"]}, +{"id":"43009","label":"uncovering blinds","template":"Uncovering [something]","placeholders":["blinds"]}, +{"id":"84631","label":"pretending to put orange behind a bag","template":"Pretending to put [something] behind [something]","placeholders":["orange","a bag"]}, +{"id":"120692","label":"taking a block","template":"Taking [one of many similar things on the table]","placeholders":["a block"]}, +{"id":"68578","label":"turning the camera right while filming pad lock","template":"Turning the camera right while filming [something]","placeholders":["pad lock"]}, +{"id":"110564","label":"showing that a plastic box is empty","template":"Showing that [something] is empty","placeholders":["a plastic box"]}, +{"id":"129856","label":"putting a dvd behind a tissue box","template":"Putting [something] behind [something]","placeholders":["a dvd","a tissue box"]}, +{"id":"194528","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"217077","label":"putting cutting board in front of clock","template":"Putting [something] in front of [something]","placeholders":["cutting board","clock"]}, +{"id":"29714","label":"showing number plate to the camera","template":"Showing [something] to the camera","placeholders":["number plate"]}, +{"id":"175014","label":"moving away from white board clip with your camera","template":"Moving away from [something] with your camera","placeholders":["white board clip"]}, +{"id":"160529","label":"moving silicone towards the camera","template":"Moving [something] towards the camera","placeholders":["silicone"]}, +{"id":"125183","label":"moving a pen closer to marker","template":"Moving [something] closer to [something]","placeholders":["a pen","marker"]}, +{"id":"68811","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43345","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"136567","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"99051","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"181793","label":"turning hourglass upside down","template":"Turning [something] upside down","placeholders":["hourglass"]}, +{"id":"36907","label":"pulling a spoon from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a spoon","a box"]}, +{"id":"80573","label":"squeezing a dish sponge","template":"Squeezing [something]","placeholders":["a dish sponge"]}, +{"id":"182272","label":"throwing a sock against the wall","template":"Throwing [something] against [something]","placeholders":["a sock","the wall"]}, +{"id":"25769","label":"poking sea shell so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["sea shell"]}, +{"id":"143967","label":"poking plush doll so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["plush doll"]}, +{"id":"86832","label":"moving usb cable and smarthphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb cable","smarthphone"]}, +{"id":"93613","label":"moving a fork down","template":"Moving [something] down","placeholders":["a fork"]}, +{"id":"23019","label":"digging lighter out of soil","template":"Digging [something] out of [something]","placeholders":["lighter","soil"]}, +{"id":"11672","label":"spilling cleaner onto floor","template":"Spilling [something] onto [something]","placeholders":["cleaner","floor"]}, +{"id":"68670","label":"hitting glass with spoon","template":"Hitting [something] with [something]","placeholders":["glass","spoon"]}, +{"id":"151913","label":"dropping a marker pen behind a box","template":"Dropping [something] behind [something]","placeholders":["a marker pen","a box"]}, +{"id":"96349","label":"lifting up one end of tablet box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["tablet box"]}, +{"id":"139640","label":"pretending to pick wallet up","template":"Pretending to pick [something] up","placeholders":["wallet"]}, +{"id":"211654","label":"sprinkling glitter onto paper","template":"Sprinkling [something] onto [something]","placeholders":["glitter","paper"]}, +{"id":"129019","label":"pushing phone with pen","template":"Pushing [something] with [something]","placeholders":["phone","pen"]}, +{"id":"45806","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"82769","label":"throwing a feather in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a feather"]}, +{"id":"138002","label":"tilting a plate with a battery on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plate","a battery"]}, +{"id":"132364","label":"putting knife into knife holder","template":"Putting [something] into [something]","placeholders":["knife","knife holder"]}, +{"id":"51295","label":"moving remote and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["remote","remote"]}, +{"id":"202718","label":"stacking 3 cookie packages","template":"Stacking [number of] [something]","placeholders":["3","cookie packages"]}, +{"id":"113757","label":"dropping a matchstick behind a book","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a book"]}, +{"id":"151505","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"142778","label":"tearing cleaning cloth into two pieces","template":"Tearing [something] into two pieces","placeholders":["cleaning cloth"]}, +{"id":"117601","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"141784","label":"a chip falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a chip"]}, +{"id":"174585","label":"hitting toy with hammer","template":"Hitting [something] with [something]","placeholders":["toy","hammer"]}, +{"id":"216878","label":"poking a fork so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a fork"]}, +{"id":"134197","label":"taking screw from table","template":"Taking [something] from [somewhere]","placeholders":["screw","table"]}, +{"id":"50435","label":"spinning a remote controller so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a remote controller"]}, +{"id":"40786","label":"lifting wallet with memory stick on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","memory stick"]}, +{"id":"112756","label":"holding bottle in front of fan","template":"Holding [something] in front of [something]","placeholders":["bottle","fan"]}, +{"id":"123488","label":"showing that salted snacks is inside food container","template":"Showing that [something] is inside [something]","placeholders":["salted snacks","food container"]}, +{"id":"15708","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"26563","label":"touching (without moving) outside of tank","template":"Touching (without moving) [part] of [something]","placeholders":["outside","tank"]}, +{"id":"47727","label":"holding a pen behind a cup","template":"Holding [something] behind [something]","placeholders":["a pen","a cup"]}, +{"id":"211220","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"67926","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"54357","label":"moving cigarette up","template":"Moving [something] up","placeholders":["cigarette"]}, +{"id":"47054","label":"showing that plastic case is empty","template":"Showing that [something] is empty","placeholders":["plastic case"]}, +{"id":"43855","label":"showing tube behind bottle","template":"Showing [something] behind [something]","placeholders":["tube","bottle"]}, +{"id":"13467","label":"poking a dog so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a dog"]}, +{"id":"46161","label":"laying candle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["candle"]}, +{"id":"43943","label":"remote colliding with mobile phone and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["remote","mobile phone"]}, +{"id":"96345","label":"moving silicone away from cardboard","template":"Moving [something] away from [something]","placeholders":["silicone","cardboard"]}, +{"id":"142870","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"41835","label":"putting a fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["a fork"]}, +{"id":"60868","label":"showing bottle behind book","template":"Showing [something] behind [something]","placeholders":["bottle","book"]}, +{"id":"140726","label":"throwing toy onto a surface","template":"Throwing [something] onto a surface","placeholders":["toy"]}, +{"id":"155339","label":"plugging cable into power supply","template":"Plugging [something] into [something]","placeholders":["cable","power supply"]}, +{"id":"60415","label":"wiping nutella off of a plastic spoon","template":"Wiping [something] off of [something]","placeholders":["nutella","a plastic spoon"]}, +{"id":"27484","label":"covering a pen with a shirt","template":"Covering [something] with [something]","placeholders":["a pen","a shirt"]}, +{"id":"181945","label":"poking mouse so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["mouse"]}, +{"id":"38537","label":"plugging headphone into laptop","template":"Plugging [something] into [something]","placeholders":["headphone","laptop"]}, +{"id":"103498","label":"covering toy figure with a piece of paper","template":"Covering [something] with [something]","placeholders":["toy figure","a piece of paper"]}, +{"id":"29662","label":"dropping pen next to paper","template":"Dropping [something] next to [something]","placeholders":["pen","paper"]}, +{"id":"158404","label":"putting a pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pen"]}, +{"id":"118748","label":"poking cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cup"]}, +{"id":"88654","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"43133","label":"stuffing blanket into box","template":"Stuffing [something] into [something]","placeholders":["blanket","box"]}, +{"id":"74754","label":"moving tiolet paper away from tiolet paper","template":"Moving [something] away from [something]","placeholders":["tiolet paper","tiolet paper"]}, +{"id":"19691","label":"removing lotion, revealing small bottle behind","template":"Removing [something], revealing [something] behind","placeholders":["lotion","small bottle"]}, +{"id":"142038","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"48464","label":"pretending to put a cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cup"]}, +{"id":"155421","label":"holding sponge over bed","template":"Holding [something] over [something]","placeholders":["sponge","bed"]}, +{"id":"169068","label":"piling bags up","template":"Piling [something] up","placeholders":["bags"]}, +{"id":"27404","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"135385","label":"throwing a piece of cloth onto a surface","template":"Throwing [something] onto a surface","placeholders":["a piece of cloth"]}, +{"id":"177251","label":"poking a bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a bottle"]}, +{"id":"137007","label":"pulling two ends of ballpoint pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["ballpoint pen"]}, +{"id":"22357","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"97368","label":"holding cup over lamp","template":"Holding [something] over [something]","placeholders":["cup","lamp"]}, +{"id":"55968","label":"covering doll with doily","template":"Covering [something] with [something]","placeholders":["doll","doily"]}, +{"id":"184318","label":"dropping purse onto clothes","template":"Dropping [something] onto [something]","placeholders":["purse","clothes"]}, +{"id":"9163","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181378","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"62602","label":"pen being deflected from banana","template":"[Something] being deflected from [something]","placeholders":["pen","banana"]}, +{"id":"65760","label":"scooping salt up with spoon","template":"Scooping [something] up with [something]","placeholders":["salt","spoon"]}, +{"id":"33701","label":"pushing an eraser off of a book","template":"Pushing [something] off of [something]","placeholders":["an eraser","a book"]}, +{"id":"126021","label":"plugging a charger into a laptop","template":"Plugging [something] into [something]","placeholders":["a charger","a laptop"]}, +{"id":"87711","label":"moving pen and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","marker"]}, +{"id":"93569","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"11495","label":"putting rice upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["rice"]}, +{"id":"40341","label":"pulling two ends of spponch so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["spponch"]}, +{"id":"25961","label":"moving red spoon down","template":"Moving [something] down","placeholders":["red spoon"]}, +{"id":"33659","label":"uncovering a pear","template":"Uncovering [something]","placeholders":["a pear"]}, +{"id":"77886","label":"hitting book with calculator","template":"Hitting [something] with [something]","placeholders":["book","calculator"]}, +{"id":"66421","label":"spinning a toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy"]}, +{"id":"203992","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"139642","label":"putting ruler behind mug","template":"Putting [something] behind [something]","placeholders":["ruler","mug"]}, +{"id":"217421","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"24644","label":"pretending to be tearing selfi stick","template":"Pretending to be tearing [something that is not tearable]","placeholders":["selfi stick"]}, +{"id":"26938","label":"moving box closer to car","template":"Moving [something] closer to [something]","placeholders":["box","car"]}, +{"id":"184342","label":"moving a boot down","template":"Moving [something] down","placeholders":["a boot"]}, +{"id":"130116","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"146367","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"133332","label":"pushing a glass with a banana","template":"Pushing [something] with [something]","placeholders":["a glass","a banana"]}, +{"id":"204813","label":"pushing remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote"]}, +{"id":"28909","label":"holding small stone in front of rectangular box","template":"Holding [something] in front of [something]","placeholders":["small stone","rectangular box"]}, +{"id":"132447","label":"uncovering coin","template":"Uncovering [something]","placeholders":["coin"]}, +{"id":"39137","label":"stuffing keychain into black pouch","template":"Stuffing [something] into [something]","placeholders":["keychain","black pouch"]}, +{"id":"56726","label":"wiping toothpaste off of table","template":"Wiping [something] off of [something]","placeholders":["toothpaste","table"]}, +{"id":"49546","label":"moving simcard down","template":"Moving [something] down","placeholders":["simcard"]}, +{"id":"190480","label":"putting blue pen on a surface","template":"Putting [something] on a surface","placeholders":["blue pen"]}, +{"id":"94056","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64086","label":"taking a cup out of the microwave","template":"Taking [something] out of [something]","placeholders":["a cup","the microwave"]}, +{"id":"153513","label":"putting pencil behind toy car","template":"Putting [something] behind [something]","placeholders":["pencil","toy car"]}, +{"id":"101379","label":"lifting a surface with carpet on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["carpet"]}, +{"id":"207859","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"86006","label":"twisting ribbon cable","template":"Twisting [something]","placeholders":["ribbon cable"]}, +{"id":"174410","label":"pushing can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["can"]}, +{"id":"140212","label":"poking lipstick so that it falls over","template":"Poking [something] so that it falls over","placeholders":["lipstick"]}, +{"id":"66504","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"144105","label":"lifting orange cup up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["orange cup"]}, +{"id":"204422","label":"pretending or failing to wipe ink mark off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink mark","table"]}, +{"id":"111689","label":"putting pillow into chair","template":"Putting [something] into [something]","placeholders":["pillow","chair"]}, +{"id":"199467","label":"moving board clip away from pebble","template":"Moving [something] away from [something]","placeholders":["board clip","pebble"]}, +{"id":"131283","label":"a handkerchief falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a handkerchief"]}, +{"id":"125112","label":"holding bottle in front of computer","template":"Holding [something] in front of [something]","placeholders":["bottle","computer"]}, +{"id":"207851","label":"hitting cup with cup","template":"Hitting [something] with [something]","placeholders":["cup","cup"]}, +{"id":"151641","label":"showing tibex mouse behind glas","template":"Showing [something] behind [something]","placeholders":["tibex mouse","glas"]}, +{"id":"219701","label":"pretending to put plastic screwcap into mug","template":"Pretending to put [something] into [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"92321","label":"lifting up one end of spanner, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spanner"]}, +{"id":"163739","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"46410","label":"digging rock out of dirt","template":"Digging [something] out of [something]","placeholders":["rock","dirt"]}, +{"id":"13138","label":"showing that glass jar is empty","template":"Showing that [something] is empty","placeholders":["glass jar"]}, +{"id":"9152","label":"uncovering pencil","template":"Uncovering [something]","placeholders":["pencil"]}, +{"id":"48167","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"163950","label":"throwing earphones","template":"Throwing [something]","placeholders":["earphones"]}, +{"id":"122281","label":"opening bag's chain","template":"Opening [something]","placeholders":["bag's chain"]}, +{"id":"170880","label":"spreading peanut butter onto apple slice","template":"Spreading [something] onto [something]","placeholders":["peanut butter","apple slice"]}, +{"id":"85779","label":"pretending to close a laptop without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a laptop"]}, +{"id":"161872","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"138207","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"32191","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"5668","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"80436","label":"turning the camera right while filming advertisement board","template":"Turning the camera right while filming [something]","placeholders":["advertisement board"]}, +{"id":"116286","label":"tilting napkin with plastic twist tie on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["napkin","plastic twist tie"]}, +{"id":"4448","label":"pretending to be tearing dishtowel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["dishtowel"]}, +{"id":"51999","label":"picking a ball up","template":"Picking [something] up","placeholders":["a ball"]}, +{"id":"84661","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"30256","label":"putting sunglasses into box","template":"Putting [something] into [something]","placeholders":["sunglasses","box"]}, +{"id":"118280","label":"lifting laptop with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["laptop","mouse"]}, +{"id":"104974","label":"cube falling like a rock","template":"[Something] falling like a rock","placeholders":["cube"]}, +{"id":"182774","label":"pretending to pick candle up","template":"Pretending to pick [something] up","placeholders":["candle"]}, +{"id":"88339","label":"holding cup in front of fan","template":"Holding [something] in front of [something]","placeholders":["cup","fan"]}, +{"id":"4443","label":"moving paper and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper","paper"]}, +{"id":"180344","label":"spinning baseball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["baseball"]}, +{"id":"73115","label":"pushing a piece of sponge so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a piece of sponge"]}, +{"id":"199645","label":"throwing bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle"]}, +{"id":"48730","label":"pushing marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["marker"]}, +{"id":"47106","label":"moving a pair of scissors up","template":"Moving [something] up","placeholders":["a pair of scissors"]}, +{"id":"87921","label":"pen colliding with purse and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pen","purse"]}, +{"id":"54675","label":"turning the camera right while filming small hand gel","template":"Turning the camera right while filming [something]","placeholders":["small hand gel"]}, +{"id":"27731","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"207402","label":"uncovering book","template":"Uncovering [something]","placeholders":["book"]}, +{"id":"190260","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"86035","label":"poking pillow so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pillow"]}, +{"id":"109202","label":"picking marker up","template":"Picking [something] up","placeholders":["marker"]}, +{"id":"102985","label":"moving cup and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","cup"]}, +{"id":"168229","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"39873","label":"stuffing white kerchief into purse","template":"Stuffing [something] into [something]","placeholders":["white kerchief","purse"]}, +{"id":"6483","label":"spinning purse that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["purse"]}, +{"id":"180572","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"179989","label":"spinning pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pen"]}, +{"id":"131301","label":"turning the camera right while filming jeep","template":"Turning the camera right while filming [something]","placeholders":["jeep"]}, +{"id":"152734","label":"pushing a coin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a coin"]}, +{"id":"71265","label":"showing a boot on top of a chair","template":"Showing [something] on top of [something]","placeholders":["a boot","a chair"]}, +{"id":"24601","label":"plugging phone charger into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone charger","power socket"]}, +{"id":"124806","label":"unfolding notebook","template":"Unfolding [something]","placeholders":["notebook"]}, +{"id":"4929","label":"pretending to take brush from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["brush","floor"]}, +{"id":"119183","label":"moving tree branch up","template":"Moving [something] up","placeholders":["tree branch"]}, +{"id":"208282","label":"pulling lipstick from behind of deodorant","template":"Pulling [something] from behind of [something]","placeholders":["lipstick","deodorant"]}, +{"id":"219796","label":"lifting tv remote with ninja turtle toy on it","template":"Lifting [something] with [something] on it","placeholders":["tv remote","ninja turtle toy"]}, +{"id":"50228","label":"poking a stack of pillows without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["pillows"]}, +{"id":"218363","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"171263","label":"moving a cup closer to a bottle","template":"Moving [something] closer to [something]","placeholders":["a cup","a bottle"]}, +{"id":"46937","label":"moving a small jar away from a jug","template":"Moving [something] away from [something]","placeholders":["a small jar","a jug"]}, +{"id":"159928","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"93921","label":"holding shower head behind tap","template":"Holding [something] behind [something]","placeholders":["shower head","tap"]}, +{"id":"101217","label":"moving mobile up","template":"Moving [something] up","placeholders":["mobile"]}, +{"id":"41416","label":"dropping bear in front of chair","template":"Dropping [something] in front of [something]","placeholders":["bear","chair"]}, +{"id":"29297","label":"taking hairpins","template":"Taking [one of many similar things on the table]","placeholders":["hairpins"]}, +{"id":"55161","label":"tipping mouthwash bottle over","template":"Tipping [something] over","placeholders":["mouthwash bottle"]}, +{"id":"159924","label":"tearing a sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a sheet of paper"]}, +{"id":"121523","label":"pulling two ends of book but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["book"]}, +{"id":"171596","label":"showing that plastic jar is empty","template":"Showing that [something] is empty","placeholders":["plastic jar"]}, +{"id":"108076","label":"pretending to put cd cover on a surface","template":"Pretending to put [something] on a surface","placeholders":["cd cover"]}, +{"id":"28538","label":"squeezing a soda can","template":"Squeezing [something]","placeholders":["a soda can"]}, +{"id":"125216","label":"pouring water into bucket until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","bucket"]}, +{"id":"181459","label":"holding sieve next to tap","template":"Holding [something] next to [something]","placeholders":["sieve","tap"]}, +{"id":"188731","label":"pulling cookie box from left to right","template":"Pulling [something] from left to right","placeholders":["cookie box"]}, +{"id":"8214","label":"moving tv controller closer to hair comb","template":"Moving [something] closer to [something]","placeholders":["tv controller","hair comb"]}, +{"id":"98665","label":"spilling water next to gas stove","template":"Spilling [something] next to [something]","placeholders":["water","gas stove"]}, +{"id":"114789","label":"moving jacket down","template":"Moving [something] down","placeholders":["jacket"]}, +{"id":"133200","label":"tilting beer can with crayon on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["beer can","crayon"]}, +{"id":"162595","label":"moving keys closer to phone","template":"Moving [something] closer to [something]","placeholders":["keys","phone"]}, +{"id":"205011","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"205658","label":"holding a spoon over a cup","template":"Holding [something] over [something]","placeholders":["a spoon","a cup"]}, +{"id":"17161","label":"putting red spoon that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["red spoon"]}, +{"id":"106034","label":"picking pen up","template":"Picking [something] up","placeholders":["pen"]}, +{"id":"15785","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"195941","label":"pretending to put the shampoo on a surface","template":"Pretending to put [something] on a surface","placeholders":["the shampoo"]}, +{"id":"205232","label":"spilling earrings onto the table","template":"Spilling [something] onto [something]","placeholders":["earrings","the table"]}, +{"id":"189608","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"219259","label":"laying shampoo bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["shampoo bottle"]}, +{"id":"13119","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"127636","label":"removing cup, revealing lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["cup","lighter"]}, +{"id":"15607","label":"holding mouse behind book","template":"Holding [something] behind [something]","placeholders":["mouse","book"]}, +{"id":"90648","label":"putting paperweight on a surface","template":"Putting [something] on a surface","placeholders":["paperweight"]}, +{"id":"161637","label":"moving camera closer to dry erase board","template":"Moving [something] closer to [something]","placeholders":["camera","dry erase board"]}, +{"id":"61072","label":"taking shirt from bed","template":"Taking [something] from [somewhere]","placeholders":["shirt","bed"]}, +{"id":"180765","label":"paper falling to the ground falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper falling to the ground"]}, +{"id":"209704","label":"pushing red hair band from right to left","template":"Pushing [something] from right to left","placeholders":["red hair band"]}, +{"id":"207771","label":"covering die with paper towel","template":"Covering [something] with [something]","placeholders":["die","paper towel"]}, +{"id":"35575","label":"picking purse up","template":"Picking [something] up","placeholders":["purse"]}, +{"id":"37280","label":"putting razor blade next to pink book","template":"Putting [something] next to [something]","placeholders":["razor blade","pink book"]}, +{"id":"40676","label":"turning the camera upwards while filming microwave","template":"Turning the camera upwards while filming [something]","placeholders":["microwave"]}, +{"id":"39213","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"110933","label":"holding vape behind wall","template":"Holding [something] behind [something]","placeholders":["vape","wall"]}, +{"id":"164048","label":"taking setofcompasses out of mug","template":"Taking [something] out of [something]","placeholders":["setofcompasses","mug"]}, +{"id":"195886","label":"taking coin out of cup","template":"Taking [something] out of [something]","placeholders":["coin","cup"]}, +{"id":"161206","label":"pulling something from left to right","template":"Pulling [something] from left to right","placeholders":["something"]}, +{"id":"156860","label":"holding a pen over dictionary","template":"Holding [something] over [something]","placeholders":["a pen","dictionary"]}, +{"id":"187422","label":"putting the letter a upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["the letter a"]}, +{"id":"184481","label":"moving eraser and sharpner closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eraser","sharpner"]}, +{"id":"182929","label":"stuffing a packet into a small container","template":"Stuffing [something] into [something]","placeholders":["a packet","a small container"]}, +{"id":"115602","label":"showing bannana to the camera","template":"Showing [something] to the camera","placeholders":["bannana"]}, +{"id":"204553","label":"throwing a pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pencil"]}, +{"id":"204188","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"215451","label":"pretending to throw ball","template":"Pretending to throw [something]","placeholders":["ball"]}, +{"id":"24898","label":"putting gear wheel onto black pouch","template":"Putting [something] onto [something]","placeholders":["gear wheel","black pouch"]}, +{"id":"98600","label":"pretending to scoop cereal up with measuring cup","template":"Pretending to scoop [something] up with [something]","placeholders":["cereal","measuring cup"]}, +{"id":"124507","label":"tilting book with tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","tape"]}, +{"id":"130106","label":"pretending to put plastic toy on a surface","template":"Pretending to put [something] on a surface","placeholders":["plastic toy"]}, +{"id":"125857","label":"moving an eraser up","template":"Moving [something] up","placeholders":["an eraser"]}, +{"id":"180341","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"8943","label":"taking tomato out of saucepan","template":"Taking [something] out of [something]","placeholders":["tomato","saucepan"]}, +{"id":"19993","label":"covering sketch pen with book","template":"Covering [something] with [something]","placeholders":["sketch pen","book"]}, +{"id":"68934","label":"trying to bend a remote control so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a remote control"]}, +{"id":"165134","label":"pouring juice onto glass","template":"Pouring [something] onto [something]","placeholders":["juice","glass"]}, +{"id":"20135","label":"pushing spring from left to right","template":"Pushing [something] from left to right","placeholders":["spring"]}, +{"id":"162901","label":"twisting (wringing) tissue wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["tissue"]}, +{"id":"129277","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"109688","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"59940","label":"moving cup closer to stapler","template":"Moving [something] closer to [something]","placeholders":["cup","stapler"]}, +{"id":"6785","label":"turning the camera left while filming steam cake","template":"Turning the camera left while filming [something]","placeholders":["steam cake"]}, +{"id":"151206","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"110181","label":"covering a deodorant with a towel","template":"Covering [something] with [something]","placeholders":["a deodorant","a towel"]}, +{"id":"180193","label":"moving plate and glasses closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["plate","glasses"]}, +{"id":"159983","label":"pretending or trying and failing to twist knob","template":"Pretending or trying and failing to twist [something]","placeholders":["knob"]}, +{"id":"187603","label":"putting a fork into a metalic mug","template":"Putting [something] into [something]","placeholders":["a fork","a metalic mug"]}, +{"id":"197612","label":"marker falling like a rock","template":"[Something] falling like a rock","placeholders":["marker"]}, +{"id":"131231","label":"pouring water out of bucket","template":"Pouring [something] out of [something]","placeholders":["water","bucket"]}, +{"id":"194540","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"79556","label":"pushing spinning top so it spins","template":"Pushing [something] so it spins","placeholders":["spinning top"]}, +{"id":"185884","label":"putting banana and plastic bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["banana","plastic bottle"]}, +{"id":"38859","label":"plugging earbuds into cell phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earbuds","cell phone"]}, +{"id":"131742","label":"dropping keys onto bed","template":"Dropping [something] onto [something]","placeholders":["keys","bed"]}, +{"id":"218646","label":"spilling water behind a calculator","template":"Spilling [something] behind [something]","placeholders":["water","a calculator"]}, +{"id":"22666","label":"throwing key onto a surface","template":"Throwing [something] onto a surface","placeholders":["key"]}, +{"id":"51194","label":"showing that pot is empty","template":"Showing that [something] is empty","placeholders":["pot"]}, +{"id":"190456","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"186093","label":"putting white deodorant on a surface","template":"Putting [something] on a surface","placeholders":["white deodorant"]}, +{"id":"125656","label":"moving string down","template":"Moving [something] down","placeholders":["string"]}, +{"id":"5368","label":"squeezing felt","template":"Squeezing [something]","placeholders":["felt"]}, +{"id":"34240","label":"moving stapler away from scissors","template":"Moving [something] away from [something]","placeholders":["stapler","scissors"]}, +{"id":"88413","label":"bear being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["bear","couch"]}, +{"id":"87879","label":"putting item underneath pillow","template":"Putting [something] underneath [something]","placeholders":["item","pillow"]}, +{"id":"145197","label":"tipping a pot with garlic over, so a garlic bunch falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a pot","garlic","a garlic bunch"]}, +{"id":"217432","label":"dropping wallet next to remote control","template":"Dropping [something] next to [something]","placeholders":["wallet","remote control"]}, +{"id":"146493","label":"holding rubber duck behind cactus","template":"Holding [something] behind [something]","placeholders":["rubber duck","cactus"]}, +{"id":"160044","label":"moving toy duck and plastic flower closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy duck","plastic flower"]}, +{"id":"59921","label":"showing a photo of food to the camera","template":"Showing a photo of [something] to the camera","placeholders":["food"]}, +{"id":"181548","label":"lifting clock up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["clock"]}, +{"id":"88699","label":"pushing a notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a notebook"]}, +{"id":"145183","label":"pulling clamp from right to left","template":"Pulling [something] from right to left","placeholders":["clamp"]}, +{"id":"98582","label":"pretending to spread air onto dashboard","template":"Pretending to spread air onto [something]","placeholders":["dashboard"]}, +{"id":"19159","label":"putting 3 books onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["3","books","a box"]}, +{"id":"144584","label":"putting a can in front of a pair of tweezers","template":"Putting [something] in front of [something]","placeholders":["a can","a pair of tweezers"]}, +{"id":"123873","label":"squeezing a cotton pad","template":"Squeezing [something]","placeholders":["a cotton pad"]}, +{"id":"51707","label":"holding a pencil over a sink","template":"Holding [something] over [something]","placeholders":["a pencil","a sink"]}, +{"id":"185047","label":"putting bangle, hair clip and lotion on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bangle","hair clip","lotion"]}, +{"id":"8053","label":"opening box of cards","template":"Opening [something]","placeholders":["box of cards"]}, +{"id":"92195","label":"pushing am emergency lamp off of a tv remote","template":"Pushing [something] off of [something]","placeholders":["am emergency lamp","a tv remote"]}, +{"id":"19670","label":"lifting plate with glass on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glass"]}, +{"id":"84092","label":"pushing a battery so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a battery"]}, +{"id":"63981","label":"uncovering a plant","template":"Uncovering [something]","placeholders":["a plant"]}, +{"id":"204865","label":"squeezing toy","template":"Squeezing [something]","placeholders":["toy"]}, +{"id":"126522","label":"pushing a glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a glass"]}, +{"id":"108375","label":"pushing jar from left to right","template":"Pushing [something] from left to right","placeholders":["jar"]}, +{"id":"48313","label":"putting 2 spanners onto cookie box","template":"Putting [number of] [something] onto [something]","placeholders":["2","spanners","cookie box"]}, +{"id":"56648","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"217288","label":"putting key, comb and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["key","comb","cup"]}, +{"id":"64459","label":"putting 3 white board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["3","white board clips","cookie box lid"]}, +{"id":"183565","label":"putting a remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a remote"]}, +{"id":"47452","label":"stuffing bubble wrap into plastic bag","template":"Stuffing [something] into [something]","placeholders":["bubble wrap","plastic bag"]}, +{"id":"4324","label":"turning the camera right while filming pink toothbrush case","template":"Turning the camera right while filming [something]","placeholders":["pink toothbrush case"]}, +{"id":"211561","label":"showing rubber duck behind cactus","template":"Showing [something] behind [something]","placeholders":["rubber duck","cactus"]}, +{"id":"56288","label":"stuffing bondpaper into photocopier tray","template":"Stuffing [something] into [something]","placeholders":["bondpaper","photocopier tray"]}, +{"id":"8564","label":"closing file","template":"Closing [something]","placeholders":["file"]}, +{"id":"34480","label":"putting guitar pick into guitar","template":"Putting [something] into [something]","placeholders":["guitar pick","guitar"]}, +{"id":"204782","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"219866","label":"putting orange similar to","template":"Putting [something similar to other things that are already on the table]","placeholders":["orange similar to"]}, +{"id":"89298","label":"pouring water onto bowl","template":"Pouring [something] onto [something]","placeholders":["water","bowl"]}, +{"id":"52202","label":"holding monile next to other mobile","template":"Holding [something] next to [something]","placeholders":["monile","other mobile"]}, +{"id":"184118","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"196793","label":"pushing stapler with scissors","template":"Pushing [something] with [something]","placeholders":["stapler","scissors"]}, +{"id":"12990","label":"turning an apple upside down","template":"Turning [something] upside down","placeholders":["an apple"]}, +{"id":"79414","label":"turning bin upside down","template":"Turning [something] upside down","placeholders":["bin"]}, +{"id":"24063","label":"pretending to put pumpkin on a surface","template":"Pretending to put [something] on a surface","placeholders":["pumpkin"]}, +{"id":"155937","label":"tilting a notebook with a pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","a pen"]}, +{"id":"9781","label":"moving top of mug","template":"Moving [part] of [something]","placeholders":["top","mug"]}, +{"id":"129710","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"151665","label":"wooden piece being deflected from a concrete pillar","template":"[Something] being deflected from [something]","placeholders":["wooden piece","a concrete pillar"]}, +{"id":"112644","label":"dropping clothes peg into mug","template":"Dropping [something] into [something]","placeholders":["clothes peg","mug"]}, +{"id":"52734","label":"turning the camera left while filming bag","template":"Turning the camera left while filming [something]","placeholders":["bag"]}, +{"id":"191962","label":"covering glass of water with paper towel","template":"Covering [something] with [something]","placeholders":["glass of water","paper towel"]}, +{"id":"215975","label":"pretending to pick black pouch up","template":"Pretending to pick [something] up","placeholders":["black pouch"]}, +{"id":"204753","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"212577","label":"squeezing stress ball","template":"Squeezing [something]","placeholders":["stress ball"]}, +{"id":"135631","label":"pretending to squeeze a tub of handcream","template":"Pretending to squeeze [something]","placeholders":["a tub of handcream"]}, +{"id":"83291","label":"spinning a remote control that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a remote control"]}, +{"id":"45667","label":"holding a balloon in front of a book","template":"Holding [something] in front of [something]","placeholders":["a balloon","a book"]}, +{"id":"113563","label":"turning taschentücher upside down","template":"Turning [something] upside down","placeholders":["taschentücher"]}, +{"id":"48558","label":"lifting wallet up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["wallet"]}, +{"id":"96161","label":"attaching a magnet to a refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","a refrigerator"]}, +{"id":"55429","label":"dropping a pack of gum in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a pack of gum","a cup"]}, +{"id":"71089","label":"holding a bottle over letters","template":"Holding [something] over [something]","placeholders":["a bottle","letters"]}, +{"id":"2446","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"114180","label":"pulling bottle from right to left","template":"Pulling [something] from right to left","placeholders":["bottle"]}, +{"id":"1473","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"44143","label":"lifting up one end of pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pen"]}, +{"id":"140573","label":"moving a water bottle and a cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a water bottle","a cup"]}, +{"id":"93521","label":"plugging usb stick into laptop","template":"Plugging [something] into [something]","placeholders":["usb stick","laptop"]}, +{"id":"191738","label":"moving water bottle and water bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["water bottle","water bottle"]}, +{"id":"81536","label":"moving ruler up","template":"Moving [something] up","placeholders":["ruler"]}, +{"id":"130789","label":"putting 1 bowl onto head","template":"Putting [number of] [something] onto [something]","placeholders":["1","bowl","head"]}, +{"id":"199072","label":"pretending or failing to wipe stain off of phone","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","phone"]}, +{"id":"140919","label":"folding pants","template":"Folding [something]","placeholders":["pants"]}, +{"id":"219941","label":"moving foot pedal of a bicycle","template":"Moving [part] of [something]","placeholders":["foot pedal","a bicycle"]}, +{"id":"162398","label":"pretending to close bottle cap without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle cap"]}, +{"id":"22740","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"29368","label":"moving top of cd box","template":"Moving [part] of [something]","placeholders":["top","cd box"]}, +{"id":"71981","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"162156","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"21101","label":"moving glass of left","template":"Moving [part] of [something]","placeholders":["glass","left"]}, +{"id":"75436","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"204098","label":"burying spoon in hand towel","template":"Burying [something] in [something]","placeholders":["spoon","hand towel"]}, +{"id":"68513","label":"pretending to open trunk box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["trunk box"]}, +{"id":"39277","label":"pulling speaker from left to right","template":"Pulling [something] from left to right","placeholders":["speaker"]}, +{"id":"121394","label":"moving away from white gourd with your camera","template":"Moving away from [something] with your camera","placeholders":["white gourd"]}, +{"id":"6420","label":"putting toy wheel, marker pen and punching machine on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy wheel","marker pen","punching machine"]}, +{"id":"39814","label":"plugging data cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["data cable","charger"]}, +{"id":"144562","label":"pulling red spoon from right to left","template":"Pulling [something] from right to left","placeholders":["red spoon"]}, +{"id":"69434","label":"tipping a coin over","template":"Tipping [something] over","placeholders":["a coin"]}, +{"id":"49185","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"83104","label":"throwing thorwing something","template":"Throwing [something]","placeholders":["thorwing something"]}, +{"id":"32363","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"72277","label":"pushing box with pen","template":"Pushing [something] with [something]","placeholders":["box","pen"]}, +{"id":"50070","label":"hitting a soda lids with a hammer","template":"Hitting [something] with [something]","placeholders":["a soda lids","a hammer"]}, +{"id":"2934","label":"pushing toy two wheel trolly off of table","template":"Pushing [something] off of [something]","placeholders":["toy two wheel trolly","table"]}, +{"id":"29121","label":"hitting desk with toothbrush","template":"Hitting [something] with [something]","placeholders":["desk","toothbrush"]}, +{"id":"157635","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"106056","label":"lifting red bottlecap up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["red bottlecap"]}, +{"id":"84393","label":"spilling water onto a bowl","template":"Spilling [something] onto [something]","placeholders":["water","a bowl"]}, +{"id":"102538","label":"uncovering hot pot","template":"Uncovering [something]","placeholders":["hot pot"]}, +{"id":"8746","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"1113","label":"pushing box from left to right","template":"Pushing [something] from left to right","placeholders":["box"]}, +{"id":"5269","label":"spinning golf ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["golf ball"]}, +{"id":"7189","label":"poking cube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cube"]}, +{"id":"153528","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"124831","label":"digging puzzle piece out of middle of couch seat cushions","template":"Digging [something] out of [something]","placeholders":["puzzle piece","middle of couch seat cushions"]}, +{"id":"198336","label":"taking a four-sided object","template":"Taking [one of many similar things on the table]","placeholders":["a four-sided object"]}, +{"id":"103890","label":"pushing brush from left to right","template":"Pushing [something] from left to right","placeholders":["brush"]}, +{"id":"57312","label":"moving the spoon away from the fork","template":"Moving [something] away from [something]","placeholders":["the spoon","the fork"]}, +{"id":"52771","label":"sprinkling salt onto apple","template":"Sprinkling [something] onto [something]","placeholders":["salt","apple"]}, +{"id":"198706","label":"holding index cards in front of book","template":"Holding [something] in front of [something]","placeholders":["index cards","book"]}, +{"id":"84949","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"56604","label":"putting remote into bag","template":"Putting [something] into [something]","placeholders":["remote","bag"]}, +{"id":"167002","label":"putting shoe polish liquid container on a surface","template":"Putting [something] on a surface","placeholders":["shoe polish liquid container"]}, +{"id":"88084","label":"moving notebook and pigtail away from each other","template":"Moving [something] and [something] away from each other","placeholders":["notebook","pigtail"]}, +{"id":"182780","label":"putting a little bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["a little bottle"]}, +{"id":"54100","label":"stuffing carry bag into bag","template":"Stuffing [something] into [something]","placeholders":["carry bag","bag"]}, +{"id":"161316","label":"pushing duster with white coloured pen","template":"Pushing [something] with [something]","placeholders":["duster","white coloured pen"]}, +{"id":"179694","label":"holding headphones over wallet","template":"Holding [something] over [something]","placeholders":["headphones","wallet"]}, +{"id":"97913","label":"lifting a paper up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a paper"]}, +{"id":"96214","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"103415","label":"holding tumbler","template":"Holding [something]","placeholders":["tumbler"]}, +{"id":"51732","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"181749","label":"lifting lollipop up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["lollipop"]}, +{"id":"26002","label":"plugging a phone charger into a socket","template":"Plugging [something] into [something]","placeholders":["a phone charger","a socket"]}, +{"id":"100961","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"43847","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"193916","label":"cup falling like a rock","template":"[Something] falling like a rock","placeholders":["cup"]}, +{"id":"148919","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"3304","label":"closing an oven door","template":"Closing [something]","placeholders":["an oven door"]}, +{"id":"98012","label":"pushing lipstick from right to left","template":"Pushing [something] from right to left","placeholders":["lipstick"]}, +{"id":"179542","label":"pushing button so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["button"]}, +{"id":"137291","label":"putting orange on the edge of paper so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["orange","paper"]}, +{"id":"59087","label":"picking tv remote up","template":"Picking [something] up","placeholders":["tv remote"]}, +{"id":"19019","label":"dropping a screwdriver into a box","template":"Dropping [something] into [something]","placeholders":["a screwdriver","a box"]}, +{"id":"2968","label":"putting tooth brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["tooth brush"]}, +{"id":"122992","label":"dropping a wallet next to a mouse","template":"Dropping [something] next to [something]","placeholders":["a wallet","a mouse"]}, +{"id":"148938","label":"spinning cardboard tube so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cardboard tube"]}, +{"id":"200936","label":"tilting plate with rubber duck on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","rubber duck"]}, +{"id":"87164","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"88008","label":"boot colliding with boot and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["boot","boot"]}, +{"id":"51727","label":"tipping peanut butter over","template":"Tipping [something] over","placeholders":["peanut butter"]}, +{"id":"219673","label":"pushing punching machine from left to right","template":"Pushing [something] from left to right","placeholders":["punching machine"]}, +{"id":"55231","label":"pretending to be tearing specs cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["specs cover"]}, +{"id":"192797","label":"showing bottle behind can","template":"Showing [something] behind [something]","placeholders":["bottle","can"]}, +{"id":"88259","label":"pulling paper onto paper","template":"Pulling [something] onto [something]","placeholders":["paper","paper"]}, +{"id":"54400","label":"spilling water next to a glue stick","template":"Spilling [something] next to [something]","placeholders":["water","a glue stick"]}, +{"id":"12116","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"64454","label":"tipping a tin can over","template":"Tipping [something] over","placeholders":["a tin can"]}, +{"id":"34449","label":"holding key next to keypad","template":"Holding [something] next to [something]","placeholders":["key","keypad"]}, +{"id":"120038","label":"opening diary","template":"Opening [something]","placeholders":["diary"]}, +{"id":"93281","label":"taking mouse from table","template":"Taking [something] from [somewhere]","placeholders":["mouse","table"]}, +{"id":"127009","label":"pushing stapler from right to left","template":"Pushing [something] from right to left","placeholders":["stapler"]}, +{"id":"213751","label":"opening notebook","template":"Opening [something]","placeholders":["notebook"]}, +{"id":"84172","label":"opening a beer can","template":"Opening [something]","placeholders":["a beer can"]}, +{"id":"135196","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"80667","label":"taking matchstick","template":"Taking [one of many similar things on the table]","placeholders":["matchstick"]}, +{"id":"207043","label":"uncovering a mouse","template":"Uncovering [something]","placeholders":["a mouse"]}, +{"id":"131938","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"171666","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"173710","label":"putting crayon","template":"Putting [something similar to other things that are already on the table]","placeholders":["crayon"]}, +{"id":"154026","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"139805","label":"holding shot glass","template":"Holding [something]","placeholders":["shot glass"]}, +{"id":"4698","label":"pushing dvd case onto sock","template":"Pushing [something] onto [something]","placeholders":["dvd case","sock"]}, +{"id":"39785","label":"pretending to squeeze paperweight","template":"Pretending to squeeze [something]","placeholders":["paperweight"]}, +{"id":"44129","label":"moving a bottle and another bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","another bottle"]}, +{"id":"129612","label":"pretending to pick battery up","template":"Pretending to pick [something] up","placeholders":["battery"]}, +{"id":"100116","label":"moving cup and specs away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","specs"]}, +{"id":"53780","label":"moving container across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["container"]}, +{"id":"137899","label":"key falling like a rock","template":"[Something] falling like a rock","placeholders":["key"]}, +{"id":"219962","label":"tearing putty just a little bit","template":"Tearing [something] just a little bit","placeholders":["putty"]}, +{"id":"184458","label":"pushing cup with pen","template":"Pushing [something] with [something]","placeholders":["cup","pen"]}, +{"id":"142356","label":"covering cord with hands","template":"Covering [something] with [something]","placeholders":["cord","hands"]}, +{"id":"174056","label":"pouring liquid into a cup","template":"Pouring [something] into [something]","placeholders":["liquid","a cup"]}, +{"id":"58374","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"20377","label":"pretending to pick glasses up","template":"Pretending to pick [something] up","placeholders":["glasses"]}, +{"id":"144122","label":"putting a comb on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a comb","the table"]}, +{"id":"148893","label":"putting plate on the edge of can so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["plate","can"]}, +{"id":"49968","label":"attaching clip magnet to light switch panel","template":"Attaching [something] to [something]","placeholders":["clip magnet","light switch panel"]}, +{"id":"209612","label":"spinning cap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cap"]}, +{"id":"207592","label":"tipping drinking glass with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["drinking glass","water","water"]}, +{"id":"166933","label":"covering bed with sheet","template":"Covering [something] with [something]","placeholders":["bed","sheet"]}, +{"id":"80875","label":"holding rubik cube next to card","template":"Holding [something] next to [something]","placeholders":["rubik cube","card"]}, +{"id":"104006","label":"tearing a sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a sheet of paper"]}, +{"id":"36","label":"putting a remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a remote"]}, +{"id":"7935","label":"turning the camera left while filming transformer","template":"Turning the camera left while filming [something]","placeholders":["transformer"]}, +{"id":"15300","label":"tearing flower into two pieces","template":"Tearing [something] into two pieces","placeholders":["flower"]}, +{"id":"175556","label":"squeezing cream tube","template":"Squeezing [something]","placeholders":["cream tube"]}, +{"id":"61162","label":"closing a container","template":"Closing [something]","placeholders":["a container"]}, +{"id":"203180","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"110394","label":"holding rubik cube over card","template":"Holding [something] over [something]","placeholders":["rubik cube","card"]}, +{"id":"142775","label":"plugging extension cord into outlet","template":"Plugging [something] into [something]","placeholders":["extension cord","outlet"]}, +{"id":"202729","label":"spilling water next to a plate","template":"Spilling [something] next to [something]","placeholders":["water","a plate"]}, +{"id":"76196","label":"holding glass over bailer","template":"Holding [something] over [something]","placeholders":["glass","bailer"]}, +{"id":"213684","label":"putting lighter, cigarette pack and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["lighter","cigarette pack","cup"]}, +{"id":"39615","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"132025","label":"pretending to sprinkle air onto tablet","template":"Pretending to sprinkle air onto [something]","placeholders":["tablet"]}, +{"id":"145547","label":"moving orange post-it down","template":"Moving [something] down","placeholders":["orange post-it"]}, +{"id":"155923","label":"pulling black disc case from right to left","template":"Pulling [something] from right to left","placeholders":["black disc case"]}, +{"id":"207481","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"17498","label":"attaching post-it note to book","template":"Attaching [something] to [something]","placeholders":["post-it note","book"]}, +{"id":"38591","label":"taking letter","template":"Taking [one of many similar things on the table]","placeholders":["letter"]}, +{"id":"55925","label":"turning the camera left while filming dress","template":"Turning the camera left while filming [something]","placeholders":["dress"]}, +{"id":"17257","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"185322","label":"an envelope falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["an envelope"]}, +{"id":"67287","label":"opening oven","template":"Opening [something]","placeholders":["oven"]}, +{"id":"12829","label":"removing makeup bottle, revealing lipstick behind","template":"Removing [something], revealing [something] behind","placeholders":["makeup bottle","lipstick"]}, +{"id":"48257","label":"putting a container upright on the table","template":"Putting [something] upright on the table","placeholders":["a container"]}, +{"id":"137900","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"102786","label":"putting a bottle next to pen storage","template":"Putting [something] next to [something]","placeholders":["a bottle","pen storage"]}, +{"id":"179131","label":"pretending to poke wood blocks","template":"Pretending to poke [something]","placeholders":["wood blocks"]}, +{"id":"17372","label":"spinning a fidget spinner toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner toy"]}, +{"id":"141667","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"169121","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"157468","label":"twisting cord","template":"Twisting [something]","placeholders":["cord"]}, +{"id":"24886","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"79939","label":"pretending to take a lid out of a cabinet","template":"Pretending to take [something] out of [something]","placeholders":["a lid","a cabinet"]}, +{"id":"180723","label":"spinning celllphone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["celllphone"]}, +{"id":"42073","label":"pushing an egg so it spins","template":"Pushing [something] so it spins","placeholders":["an egg"]}, +{"id":"128996","label":"rolling spray bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["spray bottle"]}, +{"id":"46354","label":"poking stuff animal so that it falls over","template":"Poking [something] so that it falls over","placeholders":["stuff animal"]}, +{"id":"44549","label":"pretending to poke a pillow","template":"Pretending to poke [something]","placeholders":["a pillow"]}, +{"id":"101453","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"175300","label":"turning a pill bottle upside down","template":"Turning [something] upside down","placeholders":["a pill bottle"]}, +{"id":"197320","label":"moving the bottle closer to the pencil case","template":"Moving [something] closer to [something]","placeholders":["the bottle","the pencil case"]}, +{"id":"36139","label":"covering coupon with pamphlet","template":"Covering [something] with [something]","placeholders":["coupon","pamphlet"]}, +{"id":"28580","label":"trying but failing to attach block to chair because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["block","chair"]}, +{"id":"181053","label":"pretending or trying and failing to twist brush","template":"Pretending or trying and failing to twist [something]","placeholders":["brush"]}, +{"id":"73519","label":"showing that vessel is empty","template":"Showing that [something] is empty","placeholders":["vessel"]}, +{"id":"170185","label":"showing that tea cup is empty","template":"Showing that [something] is empty","placeholders":["tea cup"]}, +{"id":"115519","label":"poking scissors so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["scissors"]}, +{"id":"196881","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"114209","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"175363","label":"pushing wallet so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["wallet"]}, +{"id":"34488","label":"twisting pipe","template":"Twisting [something]","placeholders":["pipe"]}, +{"id":"55896","label":"showing tender coconut to the camera","template":"Showing [something] to the camera","placeholders":["tender coconut"]}, +{"id":"127051","label":"putting black disc case on a surface","template":"Putting [something] on a surface","placeholders":["black disc case"]}, +{"id":"53797","label":"pushing a bottle off of a table","template":"Pushing [something] off of [something]","placeholders":["a bottle","a table"]}, +{"id":"112551","label":"poking a stack of computers without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["computers"]}, +{"id":"219208","label":"showing that soap is inside drawer","template":"Showing that [something] is inside [something]","placeholders":["soap","drawer"]}, +{"id":"55643","label":"poking a hole into peanut butter","template":"Poking a hole into [some substance]","placeholders":["peanut butter"]}, +{"id":"145447","label":"moving box towards the camera","template":"Moving [something] towards the camera","placeholders":["box"]}, +{"id":"161041","label":"turning the camera right while filming picture","template":"Turning the camera right while filming [something]","placeholders":["picture"]}, +{"id":"9546","label":"turning the camera upwards while filming black disc case","template":"Turning the camera upwards while filming [something]","placeholders":["black disc case"]}, +{"id":"191512","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"34768","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"96072","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"25797","label":"piling paper up","template":"Piling [something] up","placeholders":["paper"]}, +{"id":"48721","label":"tearing gift envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["gift envelope"]}, +{"id":"116458","label":"dropping mouse behind keyboard","template":"Dropping [something] behind [something]","placeholders":["mouse","keyboard"]}, +{"id":"199745","label":"moving mobile up","template":"Moving [something] up","placeholders":["mobile"]}, +{"id":"171164","label":"lifting up one end of towel, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["towel"]}, +{"id":"81877","label":"pretending to open opening bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["opening bottle"]}, +{"id":"178404","label":"moving nickel and quarter away from each other","template":"Moving [something] and [something] away from each other","placeholders":["nickel","quarter"]}, +{"id":"25929","label":"moving a spoon away from a knife","template":"Moving [something] away from [something]","placeholders":["a spoon","a knife"]}, +{"id":"68485","label":"moving hand down","template":"Moving [something] down","placeholders":["hand"]}, +{"id":"84686","label":"pushing water bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["water bottle"]}, +{"id":"194298","label":"putting coins into cash box","template":"Putting [something] into [something]","placeholders":["coins","cash box"]}, +{"id":"81898","label":"plugging a cord into an extension cord","template":"Plugging [something] into [something]","placeholders":["a cord","an extension cord"]}, +{"id":"132006","label":"pretending to put bottle onto bowl","template":"Pretending to put [something] onto [something]","placeholders":["bottle","bowl"]}, +{"id":"115508","label":"holding sunglasses over mug","template":"Holding [something] over [something]","placeholders":["sunglasses","mug"]}, +{"id":"203901","label":"opening a closet door","template":"Opening [something]","placeholders":["a closet door"]}, +{"id":"199559","label":"moving something and something so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["something","something"]}, +{"id":"68149","label":"putting spoon and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["spoon","cup"]}, +{"id":"183143","label":"rolling an avocado on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an avocado"]}, +{"id":"73154","label":"moving toy idol up","template":"Moving [something] up","placeholders":["toy idol"]}, +{"id":"214021","label":"lifting purse with keys on it","template":"Lifting [something] with [something] on it","placeholders":["purse","keys"]}, +{"id":"23496","label":"taking one of many pen","template":"Taking [one of many similar things on the table]","placeholders":["one of many pen"]}, +{"id":"159341","label":"lifting a screw driver up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a screw driver"]}, +{"id":"158255","label":"covering a toy with a blanket","template":"Covering [something] with [something]","placeholders":["a toy","a blanket"]}, +{"id":"36758","label":"pushing cup with spoon","template":"Pushing [something] with [something]","placeholders":["cup","spoon"]}, +{"id":"73746","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"56349","label":"moving cell phone down","template":"Moving [something] down","placeholders":["cell phone"]}, +{"id":"133178","label":"showing that backpack is empty","template":"Showing that [something] is empty","placeholders":["backpack"]}, +{"id":"43735","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"102829","label":"dropping envelopes in front of candle","template":"Dropping [something] in front of [something]","placeholders":["envelopes","candle"]}, +{"id":"132376","label":"showing a glas bottle behind a pair of shoes","template":"Showing [something] behind [something]","placeholders":["a glas bottle","a pair of shoes"]}, +{"id":"114323","label":"putting box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["box"]}, +{"id":"94666","label":"pushing chair so it spins","template":"Pushing [something] so it spins","placeholders":["chair"]}, +{"id":"183954","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"108046","label":"tipping block over","template":"Tipping [something] over","placeholders":["block"]}, +{"id":"80215","label":"throwing letter in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["letter"]}, +{"id":"159703","label":"digging coin out of rice","template":"Digging [something] out of [something]","placeholders":["coin","rice"]}, +{"id":"51146","label":"moving a hairband away from a puzzle piece","template":"Moving [something] away from [something]","placeholders":["a hairband","a puzzle piece"]}, +{"id":"197195","label":"showing that pencil case is empty","template":"Showing that [something] is empty","placeholders":["pencil case"]}, +{"id":"200783","label":"putting brush, remote and bag on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["brush","remote","bag"]}, +{"id":"170730","label":"attaching paper to paper","template":"Attaching [something] to [something]","placeholders":["paper","paper"]}, +{"id":"893","label":"putting cotton balls into container","template":"Putting [something] into [something]","placeholders":["cotton balls","container"]}, +{"id":"202591","label":"turning the camera left while filming green toy car","template":"Turning the camera left while filming [something]","placeholders":["green toy car"]}, +{"id":"120511","label":"showing mobile on top of bed","template":"Showing [something] on top of [something]","placeholders":["mobile","bed"]}, +{"id":"103177","label":"picking small book up","template":"Picking [something] up","placeholders":["small book"]}, +{"id":"38000","label":"letting something roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["something"]}, +{"id":"173354","label":"holding phone next to headphones","template":"Holding [something] next to [something]","placeholders":["phone","headphones"]}, +{"id":"175194","label":"showing a photo of dog to the camera","template":"Showing a photo of [something] to the camera","placeholders":["dog"]}, +{"id":"74163","label":"tearing business card into two pieces","template":"Tearing [something] into two pieces","placeholders":["business card"]}, +{"id":"150105","label":"turning the camera upwards while filming food pack","template":"Turning the camera upwards while filming [something]","placeholders":["food pack"]}, +{"id":"178548","label":"pushing black pocket knife with metal bar","template":"Pushing [something] with [something]","placeholders":["black pocket knife","metal bar"]}, +{"id":"184233","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"146417","label":"taking a tea bag out of a mug","template":"Taking [something] out of [something]","placeholders":["a tea bag","a mug"]}, +{"id":"113557","label":"attaching a matchstick to a wall","template":"Attaching [something] to [something]","placeholders":["a matchstick","a wall"]}, +{"id":"99639","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"218009","label":"showing that rubbing alchol is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["rubbing alchol","a bottle"]}, +{"id":"170123","label":"pushing controller from right to left","template":"Pushing [something] from right to left","placeholders":["controller"]}, +{"id":"92611","label":"moving clasp of jewelry box","template":"Moving [part] of [something]","placeholders":["clasp","jewelry box"]}, +{"id":"121093","label":"putting a doll on a surface","template":"Putting [something] on a surface","placeholders":["a doll"]}, +{"id":"186299","label":"uncovering pencils","template":"Uncovering [something]","placeholders":["pencils"]}, +{"id":"82325","label":"pushing a clementine so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a clementine"]}, +{"id":"182795","label":"showing a coffee cup behind a notebook","template":"Showing [something] behind [something]","placeholders":["a coffee cup","a notebook"]}, +{"id":"170213","label":"a box of medicine falling like a rock","template":"[Something] falling like a rock","placeholders":["a box of medicine"]}, +{"id":"109932","label":"spinning a toy top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy top"]}, +{"id":"128065","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"76718","label":"moving the bottle and the pencil case away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the bottle","the pencil case"]}, +{"id":"3916","label":"taking screwdriver out of the case","template":"Taking [something] out of [something]","placeholders":["screwdriver","the case"]}, +{"id":"67907","label":"pretending to take plush from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["plush","surface"]}, +{"id":"216385","label":"pretending to be tearing a cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cloth"]}, +{"id":"85174","label":"putting bottle onto bottle","template":"Putting [something] onto [something]","placeholders":["bottle","bottle"]}, +{"id":"20401","label":"poking pineapple drink container so that it falls over","template":"Poking [something] so that it falls over","placeholders":["pineapple drink container"]}, +{"id":"203086","label":"opening a microwave oven","template":"Opening [something]","placeholders":["a microwave oven"]}, +{"id":"135581","label":"covering book with newspaper","template":"Covering [something] with [something]","placeholders":["book","newspaper"]}, +{"id":"32647","label":"attaching a cap to the whitner pen","template":"Attaching [something] to [something]","placeholders":["a cap","the whitner pen"]}, +{"id":"105132","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"67687","label":"pretending to put glass onto glass","template":"Pretending to put [something] onto [something]","placeholders":["glass","glass"]}, +{"id":"127642","label":"attaching clip to belt","template":"Attaching [something] to [something]","placeholders":["clip","belt"]}, +{"id":"129778","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"146629","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"203028","label":"taking sunglasses","template":"Taking [one of many similar things on the table]","placeholders":["sunglasses"]}, +{"id":"190241","label":"dropping a bottletop behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a bottletop","a padlock"]}, +{"id":"58450","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"25966","label":"turning coaster upside down","template":"Turning [something] upside down","placeholders":["coaster"]}, +{"id":"18620","label":"pretending to pick a screwdriver up","template":"Pretending to pick [something] up","placeholders":["a screwdriver"]}, +{"id":"136097","label":"pretending to pick pretending to pick up glass up","template":"Pretending to pick [something] up","placeholders":["pretending to pick up glass"]}, +{"id":"198080","label":"pulling two ends of a book but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a book"]}, +{"id":"123899","label":"pushing a remote control so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a remote control"]}, +{"id":"146718","label":"pushing plant so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plant"]}, +{"id":"191530","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"88362","label":"tipping pencil holder with pencils over, so pencils falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["pencil holder","pencils","pencils"]}, +{"id":"10866","label":"unfolding napkin","template":"Unfolding [something]","placeholders":["napkin"]}, +{"id":"198452","label":"putting a bear next to a ball","template":"Putting [something] next to [something]","placeholders":["a bear","a ball"]}, +{"id":"205408","label":"putting a box in front of stamp pad","template":"Putting [something] in front of [something]","placeholders":["a box","stamp pad"]}, +{"id":"18715","label":"pushing smoothie so it spins","template":"Pushing [something] so it spins","placeholders":["smoothie"]}, +{"id":"118514","label":"throwing a book","template":"Throwing [something]","placeholders":["a book"]}, +{"id":"167767","label":"putting a pencil next to a cord","template":"Putting [something] next to [something]","placeholders":["a pencil","a cord"]}, +{"id":"6246","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"161997","label":"putting joystick next to remote","template":"Putting [something] next to [something]","placeholders":["joystick","remote"]}, +{"id":"143239","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"143776","label":"showing cup behind pot","template":"Showing [something] behind [something]","placeholders":["cup","pot"]}, +{"id":"151168","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"35812","label":"dropping box in front of trash can","template":"Dropping [something] in front of [something]","placeholders":["box","trash can"]}, +{"id":"7049","label":"pushing stapler with pen","template":"Pushing [something] with [something]","placeholders":["stapler","pen"]}, +{"id":"65771","label":"pulling clementine from behind of laptop screen","template":"Pulling [something] from behind of [something]","placeholders":["clementine","laptop screen"]}, +{"id":"180652","label":"showing lemon to the camera","template":"Showing [something] to the camera","placeholders":["lemon"]}, +{"id":"3869","label":"squeezing a moisturizing cream bottle","template":"Squeezing [something]","placeholders":["a moisturizing cream bottle"]}, +{"id":"215332","label":"twisting a fly swatter","template":"Twisting [something]","placeholders":["a fly swatter"]}, +{"id":"214773","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"33897","label":"pushing black umbrella from left to right","template":"Pushing [something] from left to right","placeholders":["black umbrella"]}, +{"id":"126292","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"204398","label":"moving box away from car","template":"Moving [something] away from [something]","placeholders":["box","car"]}, +{"id":"177247","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"95594","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"56447","label":"dropping phone in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["phone","pillow"]}, +{"id":"156586","label":"putting a cup in front of a remote","template":"Putting [something] in front of [something]","placeholders":["a cup","a remote"]}, +{"id":"149055","label":"moving led of coffee machine","template":"Moving [part] of [something]","placeholders":["led","coffee machine"]}, +{"id":"175295","label":"pouring suji onto bowl","template":"Pouring [something] onto [something]","placeholders":["suji","bowl"]}, +{"id":"155575","label":"twisting (wringing) rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["rag"]}, +{"id":"106207","label":"moving card across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["card"]}, +{"id":"135901","label":"moving red spoon towards the camera","template":"Moving [something] towards the camera","placeholders":["red spoon"]}, +{"id":"112457","label":"putting compass on the edge of stair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["compass","stair"]}, +{"id":"177749","label":"lifting marble flake with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["marble flake","bottle"]}, +{"id":"179425","label":"letting toilet paper roll roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["toilet paper roll"]}, +{"id":"22470","label":"pretending to put teddy bear into glass bowl","template":"Pretending to put [something] into [something]","placeholders":["teddy bear","glass bowl"]}, +{"id":"67221","label":"hitting soda can with water bottle","template":"Hitting [something] with [something]","placeholders":["soda can","water bottle"]}, +{"id":"66587","label":"tilting wallet with tac case on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["wallet","tac case"]}, +{"id":"93447","label":"lifting comb up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["comb"]}, +{"id":"39111","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"22496","label":"laying a lighter on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a lighter"]}, +{"id":"168445","label":"squeezing sunscreen bottle","template":"Squeezing [something]","placeholders":["sunscreen bottle"]}, +{"id":"175608","label":"stuffing paper clippings into a basket","template":"Stuffing [something] into [something]","placeholders":["paper clippings","a basket"]}, +{"id":"154517","label":"spinning a banana that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a banana"]}, +{"id":"23799","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"99129","label":"trying to pour water into a glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a glass"]}, +{"id":"99593","label":"dropping stapler in front of duster","template":"Dropping [something] in front of [something]","placeholders":["stapler","duster"]}, +{"id":"39565","label":"putting marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker pen"]}, +{"id":"16918","label":"pretending to be tearing notepad that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["notepad that is not tearable"]}, +{"id":"96201","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"97034","label":"moving mouse and mobile closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mouse","mobile"]}, +{"id":"138227","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"80109","label":"lifting up one end of a pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pen"]}, +{"id":"137350","label":"moving bam tin and bowl closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bam tin","bowl"]}, +{"id":"55254","label":"moving tissues up","template":"Moving [something] up","placeholders":["tissues"]}, +{"id":"10352","label":"turning the camera left while filming smart phone","template":"Turning the camera left while filming [something]","placeholders":["smart phone"]}, +{"id":"29454","label":"putting a key into a purse","template":"Putting [something] into [something]","placeholders":["a key","a purse"]}, +{"id":"128655","label":"lifting up one end of green colour pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["green colour pen"]}, +{"id":"98943","label":"folding a paper plate","template":"Folding [something]","placeholders":["a paper plate"]}, +{"id":"110371","label":"turning elephant statue upside down","template":"Turning [something] upside down","placeholders":["elephant statue"]}, +{"id":"127268","label":"lifting book with bowl on it","template":"Lifting [something] with [something] on it","placeholders":["book","bowl"]}, +{"id":"11747","label":"folding money","template":"Folding [something]","placeholders":["money"]}, +{"id":"163742","label":"moving a candle cover away from the comb","template":"Moving [something] away from [something]","placeholders":["a candle cover","the comb"]}, +{"id":"44007","label":"holding fork next to plate","template":"Holding [something] next to [something]","placeholders":["fork","plate"]}, +{"id":"108282","label":"putting gel on a surface","template":"Putting [something] on a surface","placeholders":["gel"]}, +{"id":"85979","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"80391","label":"putting currency into cash desk","template":"Putting [something] into [something]","placeholders":["currency","cash desk"]}, +{"id":"65068","label":"squeezing a peace bear","template":"Squeezing [something]","placeholders":["a peace bear"]}, +{"id":"65134","label":"moving a magnet down","template":"Moving [something] down","placeholders":["a magnet"]}, +{"id":"210472","label":"pushing double-sided adhesive tape from right to left","template":"Pushing [something] from right to left","placeholders":["double-sided adhesive tape"]}, +{"id":"82314","label":"squeezing a lemon","template":"Squeezing [something]","placeholders":["a lemon"]}, +{"id":"204636","label":"burying red-chili in shallots","template":"Burying [something] in [something]","placeholders":["red-chili","shallots"]}, +{"id":"137994","label":"pulling candle from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["candle","laptop"]}, +{"id":"115202","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"157182","label":"moving ball and ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ball","ball"]}, +{"id":"2997","label":"pushing matchbox so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["matchbox"]}, +{"id":"68560","label":"stuffing paper towel into glas","template":"Stuffing [something] into [something]","placeholders":["paper towel","glas"]}, +{"id":"160555","label":"moving toy closer to plastic glass","template":"Moving [something] closer to [something]","placeholders":["toy","plastic glass"]}, +{"id":"182982","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"32194","label":"trying to bend phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["phone"]}, +{"id":"217495","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"172000","label":"digging hair clip out of rice","template":"Digging [something] out of [something]","placeholders":["hair clip","rice"]}, +{"id":"180257","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"206266","label":"moving top of coffee maker","template":"Moving [part] of [something]","placeholders":["top","coffee maker"]}, +{"id":"27356","label":"paper clip being deflected from a bottle","template":"[Something] being deflected from [something]","placeholders":["paper clip","a bottle"]}, +{"id":"80","label":"pretending to poke pillow","template":"Pretending to poke [something]","placeholders":["pillow"]}, +{"id":"61492","label":"plugging a charger into an extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an extension cord"]}, +{"id":"119502","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"143429","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"190335","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"208342","label":"tearing a fabric softener sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["a fabric softener sheet"]}, +{"id":"4026","label":"showing house to the camera","template":"Showing [something] to the camera","placeholders":["house"]}, +{"id":"14019","label":"taking can out of trash","template":"Taking [something] out of [something]","placeholders":["can","trash"]}, +{"id":"73450","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"105603","label":"pushing ruler so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["ruler"]}, +{"id":"67550","label":"putting a pen on a desk full of pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen on a desk full of pens"]}, +{"id":"218504","label":"putting a pencase onto a calculator","template":"Putting [something] onto [something]","placeholders":["a pencase","a calculator"]}, +{"id":"119426","label":"covering branch with paper","template":"Covering [something] with [something]","placeholders":["branch","paper"]}, +{"id":"148698","label":"pushing ring so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ring"]}, +{"id":"216296","label":"dropping paper behind cup","template":"Dropping [something] behind [something]","placeholders":["paper","cup"]}, +{"id":"172098","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"157190","label":"poking can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["can"]}, +{"id":"152731","label":"squeezing my winnie the pooh plush","template":"Squeezing [something]","placeholders":["my winnie the pooh plush"]}, +{"id":"64511","label":"folding shorts","template":"Folding [something]","placeholders":["shorts"]}, +{"id":"171468","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"92623","label":"pushing flower pot onto laptop liner","template":"Pushing [something] onto [something]","placeholders":["flower pot","laptop liner"]}, +{"id":"82601","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"200233","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"70367","label":"dropping marker pen behind white toy car","template":"Dropping [something] behind [something]","placeholders":["marker pen","white toy car"]}, +{"id":"16171","label":"candy in glass colliding with dish towel and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["candy in glass","dish towel"]}, +{"id":"30381","label":"showing a screwdriver behind an orange","template":"Showing [something] behind [something]","placeholders":["a screwdriver","an orange"]}, +{"id":"139224","label":"uncovering toy car","template":"Uncovering [something]","placeholders":["toy car"]}, +{"id":"205267","label":"wiping a spill off of a counter","template":"Wiping [something] off of [something]","placeholders":["a spill","a counter"]}, +{"id":"115867","label":"wiping glass cleaner off of glass","template":"Wiping [something] off of [something]","placeholders":["glass cleaner","glass"]}, +{"id":"11013","label":"plugging hdmi cable into laptop","template":"Plugging [something] into [something]","placeholders":["hdmi cable","laptop"]}, +{"id":"160394","label":"pulling two ends of tissue so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["tissue"]}, +{"id":"23009","label":"stuffing jar candle into plastic bag","template":"Stuffing [something] into [something]","placeholders":["jar candle","plastic bag"]}, +{"id":"192030","label":"spilling grains onto a container","template":"Spilling [something] onto [something]","placeholders":["grains","a container"]}, +{"id":"9943","label":"a pillow colliding with a cup and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pillow","a cup"]}, +{"id":"113305","label":"pouring water into a bowl.","template":"Pouring [something] into [something]","placeholders":["water","a bowl."]}, +{"id":"209001","label":"pushing package from left to right","template":"Pushing [something] from left to right","placeholders":["package"]}, +{"id":"171899","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"181540","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"171372","label":"showing that block is empty","template":"Showing that [something] is empty","placeholders":["block"]}, +{"id":"8220","label":"opening bottle cap","template":"Opening [something]","placeholders":["bottle cap"]}, +{"id":"29614","label":"showing a candlestick on top of a furniture","template":"Showing [something] on top of [something]","placeholders":["a candlestick","a furniture"]}, +{"id":"184258","label":"moving potato and potato so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["potato","potato"]}, +{"id":"214569","label":"showing that padlock is inside glass jar","template":"Showing that [something] is inside [something]","placeholders":["padlock","glass jar"]}, +{"id":"31654","label":"folding paper in half","template":"Folding [something]","placeholders":["paper in half"]}, +{"id":"4602","label":"putting a pencil box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a pencil box"]}, +{"id":"181856","label":"moving rc up","template":"Moving [something] up","placeholders":["rc"]}, +{"id":"150041","label":"putting marker behind mug","template":"Putting [something] behind [something]","placeholders":["marker","mug"]}, +{"id":"197779","label":"putting a book to a pile of books","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book to a pile of books"]}, +{"id":"188180","label":"uncovering stone","template":"Uncovering [something]","placeholders":["stone"]}, +{"id":"16353","label":"stacking 4 envelopes","template":"Stacking [number of] [something]","placeholders":["4","envelopes"]}, +{"id":"144039","label":"dropping a coin onto a box","template":"Dropping [something] onto [something]","placeholders":["a coin","a box"]}, +{"id":"62236","label":"pretending to take cup of coffee from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["cup of coffee","countertop"]}, +{"id":"220","label":"dropping a peg next to a wallet","template":"Dropping [something] next to [something]","placeholders":["a peg","a wallet"]}, +{"id":"172517","label":"moving sheep and pig away from each other","template":"Moving [something] and [something] away from each other","placeholders":["sheep","pig"]}, +{"id":"15926","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"200607","label":"removing stapler, revealing pencil behind","template":"Removing [something], revealing [something] behind","placeholders":["stapler","pencil"]}, +{"id":"177070","label":"dropping a comb into a box","template":"Dropping [something] into [something]","placeholders":["a comb","a box"]}, +{"id":"24705","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"166183","label":"holding toothpicks in front of mug","template":"Holding [something] in front of [something]","placeholders":["toothpicks","mug"]}, +{"id":"120471","label":"touching (without moving) handle of faucet","template":"Touching (without moving) [part] of [something]","placeholders":["handle","faucet"]}, +{"id":"100045","label":"throwing chocolate pretzel sticks in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["chocolate pretzel sticks"]}, +{"id":"193452","label":"showing black remote to the camera","template":"Showing [something] to the camera","placeholders":["black remote"]}, +{"id":"169397","label":"putting fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["fork"]}, +{"id":"149391","label":"tilting xbox game with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["xbox game","phone"]}, +{"id":"70771","label":"tearing a post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["a post it note"]}, +{"id":"205818","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"201976","label":"moving a candle closer to another candle","template":"Moving [something] closer to [something]","placeholders":["a candle","another candle"]}, +{"id":"180785","label":"picking a bowl up","template":"Picking [something] up","placeholders":["a bowl"]}, +{"id":"86412","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"200877","label":"showing comb to the camera","template":"Showing [something] to the camera","placeholders":["comb"]}, +{"id":"175926","label":"taking pencil","template":"Taking [one of many similar things on the table]","placeholders":["pencil"]}, +{"id":"130708","label":"dropping pencil next to tape","template":"Dropping [something] next to [something]","placeholders":["pencil","tape"]}, +{"id":"136140","label":"pretending to squeeze a can of beans","template":"Pretending to squeeze [something]","placeholders":["a can of beans"]}, +{"id":"144094","label":"rolling rolling chapstick on table on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling chapstick on table"]}, +{"id":"120855","label":"stuffing blanket into box","template":"Stuffing [something] into [something]","placeholders":["blanket","box"]}, +{"id":"157922","label":"moving a ball and toys closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","toys"]}, +{"id":"132951","label":"moving apple and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["apple","glass"]}, +{"id":"19952","label":"plugging a usb into a power supply","template":"Plugging [something] into [something]","placeholders":["a usb","a power supply"]}, +{"id":"142852","label":"pushing study table from right to left","template":"Pushing [something] from right to left","placeholders":["study table"]}, +{"id":"33458","label":"spilling water next to doll","template":"Spilling [something] next to [something]","placeholders":["water","doll"]}, +{"id":"8970","label":"pulling two ends of metal rod but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["metal rod"]}, +{"id":"118252","label":"stuffing duvet into washing machine","template":"Stuffing [something] into [something]","placeholders":["duvet","washing machine"]}, +{"id":"34355","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"122558","label":"letting tomato roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tomato"]}, +{"id":"72831","label":"putting a highlighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["a highlighter"]}, +{"id":"113603","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"128353","label":"dropping a cube onto a hairclip","template":"Dropping [something] onto [something]","placeholders":["a cube","a hairclip"]}, +{"id":"111726","label":"taking tissue out of box","template":"Taking [something] out of [something]","placeholders":["tissue","box"]}, +{"id":"127348","label":"pretending to put brown case on a surface","template":"Pretending to put [something] on a surface","placeholders":["brown case"]}, +{"id":"33531","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"214723","label":"taking a marker from a bunch of markers on the table","template":"Taking [one of many similar things on the table]","placeholders":["a marker from a bunch of markers on the table"]}, +{"id":"210166","label":"stuffing a pen into a pack of tissue","template":"Stuffing [something] into [something]","placeholders":["a pen","a pack of tissue"]}, +{"id":"32334","label":"bending stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["stick"]}, +{"id":"41023","label":"pouring water out of a glass","template":"Pouring [something] out of [something]","placeholders":["water","a glass"]}, +{"id":"112309","label":"holding something over something","template":"Holding [something] over [something]","placeholders":["something","something"]}, +{"id":"190017","label":"dropping red hairband into green cup","template":"Dropping [something] into [something]","placeholders":["red hairband","green cup"]}, +{"id":"47843","label":"taking fork out of drawer","template":"Taking [something] out of [something]","placeholders":["fork","drawer"]}, +{"id":"95559","label":"moving blue coloured glasses up","template":"Moving [something] up","placeholders":["blue coloured glasses"]}, +{"id":"10016","label":"showing flowers behind bottle","template":"Showing [something] behind [something]","placeholders":["flowers","bottle"]}, +{"id":"64452","label":"moving a peg across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a peg"]}, +{"id":"115321","label":"picking mug up","template":"Picking [something] up","placeholders":["mug"]}, +{"id":"3669","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"129880","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"53300","label":"dropping book behind plastic-container","template":"Dropping [something] behind [something]","placeholders":["book","plastic-container"]}, +{"id":"174005","label":"pushing coaster with remote","template":"Pushing [something] with [something]","placeholders":["coaster","remote"]}, +{"id":"67307","label":"moving knife and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["knife","spoon"]}, +{"id":"14686","label":"dropping nail clippers next to pen","template":"Dropping [something] next to [something]","placeholders":["nail clippers","pen"]}, +{"id":"134148","label":"putting 4 buttons onto book","template":"Putting [number of] [something] onto [something]","placeholders":["4","buttons","book"]}, +{"id":"202425","label":"squeezing toy elephant","template":"Squeezing [something]","placeholders":["toy elephant"]}, +{"id":"155691","label":"putting carton in front of bottle","template":"Putting [something] in front of [something]","placeholders":["carton","bottle"]}, +{"id":"18425","label":"pouring water into plastic jar","template":"Pouring [something] into [something]","placeholders":["water","plastic jar"]}, +{"id":"92782","label":"moving toothbrush away from the camera","template":"Moving [something] away from the camera","placeholders":["toothbrush"]}, +{"id":"136336","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"89690","label":"turning ramekin upside down","template":"Turning [something] upside down","placeholders":["ramekin"]}, +{"id":"220450","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"30855","label":"moving a fork away from a knife","template":"Moving [something] away from [something]","placeholders":["a fork","a knife"]}, +{"id":"190157","label":"showing snack packaging to the camera","template":"Showing [something] to the camera","placeholders":["snack packaging"]}, +{"id":"160073","label":"turning a jar upside down","template":"Turning [something] upside down","placeholders":["a jar"]}, +{"id":"201302","label":"hitting mug with straw","template":"Hitting [something] with [something]","placeholders":["mug","straw"]}, +{"id":"51886","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"156996","label":"laying lipstick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lipstick"]}, +{"id":"101424","label":"showing green cup to the camera","template":"Showing [something] to the camera","placeholders":["green cup"]}, +{"id":"194614","label":"moving a toy panda away from a toy donkey","template":"Moving [something] away from [something]","placeholders":["a toy panda","a toy donkey"]}, +{"id":"130874","label":"tilting books with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["books","phone"]}, +{"id":"35769","label":"dropping cow in front of box","template":"Dropping [something] in front of [something]","placeholders":["cow","box"]}, +{"id":"189169","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"118271","label":"pushing magnet from right to left","template":"Pushing [something] from right to left","placeholders":["magnet"]}, +{"id":"170870","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"55550","label":"showing lighter behind earring","template":"Showing [something] behind [something]","placeholders":["lighter","earring"]}, +{"id":"93623","label":"squeezing half of a lime","template":"Squeezing [something]","placeholders":["half of a lime"]}, +{"id":"51973","label":"taking remote from table","template":"Taking [something] from [somewhere]","placeholders":["remote","table"]}, +{"id":"216042","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"114694","label":"unfolding unfolding a paper","template":"Unfolding [something]","placeholders":["unfolding a paper"]}, +{"id":"102728","label":"moving pick closer to scissor","template":"Moving [something] closer to [something]","placeholders":["pick","scissor"]}, +{"id":"218726","label":"holding wallet over desk","template":"Holding [something] over [something]","placeholders":["wallet","desk"]}, +{"id":"173292","label":"hitting stapler with eraser","template":"Hitting [something] with [something]","placeholders":["stapler","eraser"]}, +{"id":"55731","label":"holding ipad in front of car","template":"Holding [something] in front of [something]","placeholders":["ipad","car"]}, +{"id":"32531","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"102174","label":"scooping dog food up with a cup","template":"Scooping [something] up with [something]","placeholders":["dog food","a cup"]}, +{"id":"63802","label":"tilting paper with brush on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","brush"]}, +{"id":"57612","label":"pushing stapler so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["stapler"]}, +{"id":"14774","label":"showing a battery next to wallet","template":"Showing [something] next to [something]","placeholders":["a battery","wallet"]}, +{"id":"211053","label":"pretending to put a banana behind a glass","template":"Pretending to put [something] behind [something]","placeholders":["a banana","a glass"]}, +{"id":"146355","label":"pulling black lipstick from right to left","template":"Pulling [something] from right to left","placeholders":["black lipstick"]}, +{"id":"134009","label":"failing to put glass into wooden bowl because the glass does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["glass","wooden bowl","the glass"]}, +{"id":"143538","label":"putting a rock on a surface","template":"Putting [something] on a surface","placeholders":["a rock"]}, +{"id":"25343","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"125482","label":"dropping bottle into bucket","template":"Dropping [something] into [something]","placeholders":["bottle","bucket"]}, +{"id":"64605","label":"showing cat to the camera","template":"Showing [something] to the camera","placeholders":["cat"]}, +{"id":"40470","label":"showing that pail is empty","template":"Showing that [something] is empty","placeholders":["pail"]}, +{"id":"96698","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"209962","label":"taking one lighter","template":"Taking [one of many similar things on the table]","placeholders":["one lighter"]}, +{"id":"47738","label":"putting flashdisk","template":"Putting [something similar to other things that are already on the table]","placeholders":["flashdisk"]}, +{"id":"95863","label":"dropping a card into a box","template":"Dropping [something] into [something]","placeholders":["a card","a box"]}, +{"id":"170385","label":"twisting (wringing) piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["piece of cloth"]}, +{"id":"167603","label":"closing a bottle","template":"Closing [something]","placeholders":["a bottle"]}, +{"id":"76369","label":"lifting a box with a cup on it","template":"Lifting [something] with [something] on it","placeholders":["a box","a cup"]}, +{"id":"56383","label":"unfolding paper than has been folded in half","template":"Unfolding [something]","placeholders":["paper than has been folded in half"]}, +{"id":"98394","label":"putting pen, toy car and ball on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","toy car","ball"]}, +{"id":"151268","label":"picking banana leaf up","template":"Picking [something] up","placeholders":["banana leaf"]}, +{"id":"205421","label":"spilling water onto the floor","template":"Spilling [something] onto [something]","placeholders":["water","the floor"]}, +{"id":"170006","label":"holding water bottle","template":"Holding [something]","placeholders":["water bottle"]}, +{"id":"7199","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"7799","label":"taking foot ball from concrete bench","template":"Taking [something] from [somewhere]","placeholders":["foot ball","concrete bench"]}, +{"id":"36854","label":"tape colliding with deodorant and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["tape","deodorant"]}, +{"id":"35794","label":"pushing a straw so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a straw"]}, +{"id":"174123","label":"letting apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["apple"]}, +{"id":"76171","label":"plugging usb into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","computer"]}, +{"id":"89270","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"196201","label":"pretending to pour a liquid out of mug, but mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["a liquid","mug","mug"]}, +{"id":"200429","label":"holding remote next to head","template":"Holding [something] next to [something]","placeholders":["remote","head"]}, +{"id":"58959","label":"pretending to put perfume into a purse","template":"Pretending to put [something] into [something]","placeholders":["perfume","a purse"]}, +{"id":"129516","label":"pushing red coloured toy car with pen","template":"Pushing [something] with [something]","placeholders":["red coloured toy car","pen"]}, +{"id":"38974","label":"turning the camera upwards while filming violin","template":"Turning the camera upwards while filming [something]","placeholders":["violin"]}, +{"id":"140684","label":"pushing a ball off of a table","template":"Pushing [something] off of [something]","placeholders":["a ball","a table"]}, +{"id":"83915","label":"putting pill bottle onto modge modge container","template":"Putting [something] onto [something]","placeholders":["pill bottle","modge modge container"]}, +{"id":"91721","label":"tilting folder with orange on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder","orange"]}, +{"id":"200447","label":"putting red spoon and battery on the table","template":"Putting [something] and [something] on the table","placeholders":["red spoon","battery"]}, +{"id":"50362","label":"moving book closer to pillow","template":"Moving [something] closer to [something]","placeholders":["book","pillow"]}, +{"id":"182340","label":"putting cigarette pack upright on the table","template":"Putting [something] upright on the table","placeholders":["cigarette pack"]}, +{"id":"40410","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"209575","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"3734","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"49285","label":"moving glasses and plate away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glasses","plate"]}, +{"id":"872","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"101111","label":"approaching water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["water bottle"]}, +{"id":"204225","label":"spinning cologne bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cologne bottle"]}, +{"id":"180828","label":"letting soldering wire reel roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["soldering wire reel"]}, +{"id":"130528","label":"uncovering toy figure","template":"Uncovering [something]","placeholders":["toy figure"]}, +{"id":"55100","label":"pretending to put tennisball into mug","template":"Pretending to put [something] into [something]","placeholders":["tennisball","mug"]}, +{"id":"204764","label":"pushing phone from left to right","template":"Pushing [something] from left to right","placeholders":["phone"]}, +{"id":"57476","label":"letting paper towel roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["paper towel roll"]}, +{"id":"127787","label":"taking a pen out of a mug","template":"Taking [something] out of [something]","placeholders":["a pen","a mug"]}, +{"id":"209781","label":"putting a jar on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a jar"]}, +{"id":"196343","label":"plugging night light into wall outlet","template":"Plugging [something] into [something]","placeholders":["night light","wall outlet"]}, +{"id":"52799","label":"pouring water onto flowers","template":"Pouring [something] onto [something]","placeholders":["water","flowers"]}, +{"id":"93128","label":"dropping box onto toilet","template":"Dropping [something] onto [something]","placeholders":["box","toilet"]}, +{"id":"20512","label":"holding a pen behind a glass","template":"Holding [something] behind [something]","placeholders":["a pen","a glass"]}, +{"id":"47196","label":"plugging a plug into an adapter","template":"Plugging [something] into [something]","placeholders":["a plug","an adapter"]}, +{"id":"100276","label":"tilting a notebook with keys on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","keys"]}, +{"id":"157915","label":"trying but failing to attach card to table because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["card","table"]}, +{"id":"75487","label":"lifting plastic cup with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["plastic cup","scissors"]}, +{"id":"60401","label":"tipping container with tums over, so tums falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["container","tums","tums"]}, +{"id":"195730","label":"picking purple microfiber up","template":"Picking [something] up","placeholders":["purple microfiber"]}, +{"id":"199536","label":"tipping cup with finger over, so usb adaptor falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","finger","usb adaptor"]}, +{"id":"129946","label":"pushing shoe from left to right","template":"Pushing [something] from left to right","placeholders":["shoe"]}, +{"id":"97458","label":"pushing a toothbrush case so it spins","template":"Pushing [something] so it spins","placeholders":["a toothbrush case"]}, +{"id":"67466","label":"wiping food off of countertop","template":"Wiping [something] off of [something]","placeholders":["food","countertop"]}, +{"id":"1870","label":"uncovering tweezers","template":"Uncovering [something]","placeholders":["tweezers"]}, +{"id":"124039","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"174946","label":"moving a belt closer to a box","template":"Moving [something] closer to [something]","placeholders":["a belt","a box"]}, +{"id":"54550","label":"putting coin onto paper","template":"Putting [something] onto [something]","placeholders":["coin","paper"]}, +{"id":"187909","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"101804","label":"moving adapter down","template":"Moving [something] down","placeholders":["adapter"]}, +{"id":"16083","label":"covering box with towel","template":"Covering [something] with [something]","placeholders":["box","towel"]}, +{"id":"216153","label":"office chair colliding with office chair and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["office chair","office chair"]}, +{"id":"57154","label":"pushing small sunscreen lotion so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["small sunscreen lotion"]}, +{"id":"94375","label":"picking spatula up","template":"Picking [something] up","placeholders":["spatula"]}, +{"id":"16479","label":"holding toothpicks behind mug","template":"Holding [something] behind [something]","placeholders":["toothpicks","mug"]}, +{"id":"160059","label":"pretending to spread air onto a slice of bread","template":"Pretending to spread air onto [something]","placeholders":["a slice of bread"]}, +{"id":"83962","label":"lifting case with pen on it","template":"Lifting [something] with [something] on it","placeholders":["case","pen"]}, +{"id":"113755","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"76973","label":"pretending to open the milk without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the milk"]}, +{"id":"158149","label":"turning sunglasses upside down","template":"Turning [something] upside down","placeholders":["sunglasses"]}, +{"id":"79770","label":"letting glassball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glassball"]}, +{"id":"192839","label":"opening pencil case","template":"Opening [something]","placeholders":["pencil case"]}, +{"id":"38744","label":"pulling two ends of a tissue so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a tissue"]}, +{"id":"153247","label":"turning the camera right while filming truck","template":"Turning the camera right while filming [something]","placeholders":["truck"]}, +{"id":"144295","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"35939","label":"pushing a glass from right to left","template":"Pushing [something] from right to left","placeholders":["a glass"]}, +{"id":"149489","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"203879","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"209868","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"23226","label":"folding tawel","template":"Folding [something]","placeholders":["tawel"]}, +{"id":"51363","label":"taking remote out of pen stand","template":"Taking [something] out of [something]","placeholders":["remote","pen stand"]}, +{"id":"193653","label":"putting dvd box in front of matrioska","template":"Putting [something] in front of [something]","placeholders":["dvd box","matrioska"]}, +{"id":"1767","label":"picking mobile phone up","template":"Picking [something] up","placeholders":["mobile phone"]}, +{"id":"16446","label":"dropping a peg behind a box","template":"Dropping [something] behind [something]","placeholders":["a peg","a box"]}, +{"id":"109910","label":"holding toy","template":"Holding [something]","placeholders":["toy"]}, +{"id":"197410","label":"holding a measuring cup behind a bowl","template":"Holding [something] behind [something]","placeholders":["a measuring cup","a bowl"]}, +{"id":"110248","label":"pulling a flyer out of a bag","template":"Pulling [something] out of [something]","placeholders":["a flyer","a bag"]}, +{"id":"90530","label":"holding a cup in front of of a tv","template":"Holding [something] in front of [something]","placeholders":["a cup","of a tv"]}, +{"id":"88762","label":"putting plate onto cup","template":"Putting [something] onto [something]","placeholders":["plate","cup"]}, +{"id":"209519","label":"uncovering a box","template":"Uncovering [something]","placeholders":["a box"]}, +{"id":"81747","label":"digging spoon out of salt","template":"Digging [something] out of [something]","placeholders":["spoon","salt"]}, +{"id":"118316","label":"laying a vitamin bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a vitamin bottle"]}, +{"id":"91511","label":"moving a spoon up","template":"Moving [something] up","placeholders":["a spoon"]}, +{"id":"28083","label":"pushing a pencil box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pencil box"]}, +{"id":"34864","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"179566","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"62606","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"105198","label":"hitting thermos with nail clipper","template":"Hitting [something] with [something]","placeholders":["thermos","nail clipper"]}, +{"id":"46229","label":"spinning a handspinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a handspinner"]}, +{"id":"26350","label":"lifting a surface with quarter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["quarter"]}, +{"id":"96824","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"145397","label":"throwing cloth in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cloth"]}, +{"id":"38835","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"208507","label":"putting bottle onto soap dispenser so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["bottle","soap dispenser"]}, +{"id":"86308","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38574","label":"holding dog toy over box","template":"Holding [something] over [something]","placeholders":["dog toy","box"]}, +{"id":"23831","label":"lifting up one end of plastic case, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["plastic case"]}, +{"id":"85641","label":"pretending to be tearing a flexible notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a flexible notebook"]}, +{"id":"219411","label":"lifting a surface with green bottle on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["green bottle"]}, +{"id":"132830","label":"putting round box on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["round box"]}, +{"id":"38646","label":"pushing a shaving razor from left to right","template":"Pushing [something] from left to right","placeholders":["a shaving razor"]}, +{"id":"187452","label":"turning the camera upwards while filming a guitar","template":"Turning the camera upwards while filming [something]","placeholders":["a guitar"]}, +{"id":"44945","label":"poking lipstick so that it spins around","template":"Poking [something] so that it spins around","placeholders":["lipstick"]}, +{"id":"209652","label":"stuffing keys into bag","template":"Stuffing [something] into [something]","placeholders":["keys","bag"]}, +{"id":"138354","label":"plugging fan into wall outlet","template":"Plugging [something] into [something]","placeholders":["fan","wall outlet"]}, +{"id":"158107","label":"showing wallet behind glasses","template":"Showing [something] behind [something]","placeholders":["wallet","glasses"]}, +{"id":"78013","label":"moving ring up","template":"Moving [something] up","placeholders":["ring"]}, +{"id":"66302","label":"dropping a shoe next to another shoe","template":"Dropping [something] next to [something]","placeholders":["a shoe","another shoe"]}, +{"id":"121362","label":"showing purple balloon pump to the camera","template":"Showing [something] to the camera","placeholders":["purple balloon pump"]}, +{"id":"187285","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"12300","label":"dropping a box of juice in front of a box of juice","template":"Dropping [something] in front of [something]","placeholders":["a box of juice","a box of juice"]}, +{"id":"200445","label":"bending toothpic until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpic"]}, +{"id":"8131","label":"showing hair clip next to the trophy","template":"Showing [something] next to [something]","placeholders":["hair clip","the trophy"]}, +{"id":"6470","label":"letting tape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tape"]}, +{"id":"105178","label":"tipping train over","template":"Tipping [something] over","placeholders":["train"]}, +{"id":"166116","label":"turning the camera downwards while filming shelves","template":"Turning the camera downwards while filming [something]","placeholders":["shelves"]}, +{"id":"25964","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"196998","label":"holding box in front of chair","template":"Holding [something] in front of [something]","placeholders":["box","chair"]}, +{"id":"95190","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"186292","label":"unfolding bedsheet","template":"Unfolding [something]","placeholders":["bedsheet"]}, +{"id":"79406","label":"holding biscuits in front of bin","template":"Holding [something] in front of [something]","placeholders":["biscuits","bin"]}, +{"id":"135169","label":"toy falling like a rock","template":"[Something] falling like a rock","placeholders":["toy"]}, +{"id":"38674","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"151981","label":"taking banana","template":"Taking [one of many similar things on the table]","placeholders":["banana"]}, +{"id":"39585","label":"twisting (wringing) a sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a sponge"]}, +{"id":"190591","label":"moving pen away from the camera","template":"Moving [something] away from the camera","placeholders":["pen"]}, +{"id":"56762","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"124802","label":"showing plastic cup behind baseball cap","template":"Showing [something] behind [something]","placeholders":["plastic cup","baseball cap"]}, +{"id":"217177","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"16876","label":"bending pack of gum so that it deforms","template":"Bending [something] so that it deforms","placeholders":["pack of gum"]}, +{"id":"120137","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"116083","label":"wiping papers off of floor","template":"Wiping [something] off of [something]","placeholders":["papers","floor"]}, +{"id":"117857","label":"putting hand on a surface","template":"Putting [something] on a surface","placeholders":["hand"]}, +{"id":"43412","label":"putting toffee container on a surface","template":"Putting [something] on a surface","placeholders":["toffee container"]}, +{"id":"66554","label":"turning the camera upwards while filming motorbike","template":"Turning the camera upwards while filming [something]","placeholders":["motorbike"]}, +{"id":"95045","label":"holding flowervase","template":"Holding [something]","placeholders":["flowervase"]}, +{"id":"99390","label":"spilling water next to glass","template":"Spilling [something] next to [something]","placeholders":["water","glass"]}, +{"id":"61037","label":"pushing comb so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["comb"]}, +{"id":"5476","label":"attaching a marker to a lid","template":"Attaching [something] to [something]","placeholders":["a marker","a lid"]}, +{"id":"169568","label":"burying a scoth roll in stack of gravel","template":"Burying [something] in [something]","placeholders":["a scoth roll","stack of gravel"]}, +{"id":"30899","label":"putting plastic glasses","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic glasses"]}, +{"id":"103362","label":"moving cell phone up","template":"Moving [something] up","placeholders":["cell phone"]}, +{"id":"95193","label":"pretending to squeeze deo can","template":"Pretending to squeeze [something]","placeholders":["deo can"]}, +{"id":"209101","label":"picking note cards up","template":"Picking [something] up","placeholders":["note cards"]}, +{"id":"81420","label":"throwing a pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a pen"]}, +{"id":"16259","label":"pushing a chappal from left to right","template":"Pushing [something] from left to right","placeholders":["a chappal"]}, +{"id":"120527","label":"plugging plug into plug in","template":"Plugging [something] into [something]","placeholders":["plug","plug in"]}, +{"id":"61699","label":"pretending to throw bottle","template":"Pretending to throw [something]","placeholders":["bottle"]}, +{"id":"164123","label":"holding pencil behind glass","template":"Holding [something] behind [something]","placeholders":["pencil","glass"]}, +{"id":"180214","label":"pushing note pad so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["note pad"]}, +{"id":"206312","label":"pretending to close notebook without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notebook"]}, +{"id":"178590","label":"uncovering toothpaste","template":"Uncovering [something]","placeholders":["toothpaste"]}, +{"id":"45024","label":"laying doll masha on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["doll masha"]}, +{"id":"115171","label":"pretending or failing to wipe ink off of a dry erase board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","a dry erase board"]}, +{"id":"196544","label":"moving pick away from scissor","template":"Moving [something] away from [something]","placeholders":["pick","scissor"]}, +{"id":"176519","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"213068","label":"pushing black pouch bag from left to right","template":"Pushing [something] from left to right","placeholders":["black pouch bag"]}, +{"id":"183839","label":"putting mug in front of pencil","template":"Putting [something] in front of [something]","placeholders":["mug","pencil"]}, +{"id":"77674","label":"stuffing clothes into trunk","template":"Stuffing [something] into [something]","placeholders":["clothes","trunk"]}, +{"id":"160802","label":"pretending to turn deodorant upside down","template":"Pretending to turn [something] upside down","placeholders":["deodorant"]}, +{"id":"150767","label":"closing pot","template":"Closing [something]","placeholders":["pot"]}, +{"id":"105046","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"107939","label":"turning scissors upside down","template":"Turning [something] upside down","placeholders":["scissors"]}, +{"id":"136323","label":"pushing rock so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["rock"]}, +{"id":"219970","label":"spinning a knife that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a knife"]}, +{"id":"114154","label":"putting nail polish on table","template":"Putting [something similar to other things that are already on the table]","placeholders":["nail polish on table"]}, +{"id":"66301","label":"pouring water onto lemon","template":"Pouring [something] onto [something]","placeholders":["water","lemon"]}, +{"id":"220092","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"179237","label":"uncovering violet colour pocket knife","template":"Uncovering [something]","placeholders":["violet colour pocket knife"]}, +{"id":"191990","label":"pretending to pick hat up","template":"Pretending to pick [something] up","placeholders":["hat"]}, +{"id":"67596","label":"pretending to pick pencil up","template":"Pretending to pick [something] up","placeholders":["pencil"]}, +{"id":"128403","label":"putting pegs next to similar pegs","template":"Putting [something similar to other things that are already on the table]","placeholders":["pegs next to similar pegs"]}, +{"id":"168500","label":"taking sharpener out of rack","template":"Taking [something] out of [something]","placeholders":["sharpener","rack"]}, +{"id":"175770","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"136368","label":"showing speaker behind screen","template":"Showing [something] behind [something]","placeholders":["speaker","screen"]}, +{"id":"94004","label":"putting pen next to box","template":"Putting [something] next to [something]","placeholders":["pen","box"]}, +{"id":"162071","label":"pulling two ends of piece of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["piece of a paper"]}, +{"id":"82451","label":"poking jar so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["jar"]}, +{"id":"187495","label":"putting headphones on a surface","template":"Putting [something] on a surface","placeholders":["headphones"]}, +{"id":"217555","label":"turning a water bottle upside down","template":"Turning [something] upside down","placeholders":["a water bottle"]}, +{"id":"76550","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"86179","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"35313","label":"holding pen next to hole puncher","template":"Holding [something] next to [something]","placeholders":["pen","hole puncher"]}, +{"id":"26145","label":"putting safety glasses and tape on the table","template":"Putting [something] and [something] on the table","placeholders":["safety glasses","tape"]}, +{"id":"207648","label":"putting battery into mug","template":"Putting [something] into [something]","placeholders":["battery","mug"]}, +{"id":"30050","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"146478","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"203637","label":"wiping happy face off of white board","template":"Wiping [something] off of [something]","placeholders":["happy face","white board"]}, +{"id":"42587","label":"throwing a phone","template":"Throwing [something]","placeholders":["a phone"]}, +{"id":"106764","label":"tipping paper towels over","template":"Tipping [something] over","placeholders":["paper towels"]}, +{"id":"175539","label":"covering a smartphone with my hand","template":"Covering [something] with [something]","placeholders":["a smartphone","my hand"]}, +{"id":"7284","label":"tearing a papertowel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a papertowel"]}, +{"id":"36671","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"141334","label":"scooping flour up with a spoon","template":"Scooping [something] up with [something]","placeholders":["flour","a spoon"]}, +{"id":"202465","label":"moving tv remote and xbox controller closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["tv remote","xbox controller"]}, +{"id":"24133","label":"wiping water off of wash basin","template":"Wiping [something] off of [something]","placeholders":["water","wash basin"]}, +{"id":"66323","label":"dropping yellow hairband into orange cup","template":"Dropping [something] into [something]","placeholders":["yellow hairband","orange cup"]}, +{"id":"49569","label":"lifting up one end of lightning cable charger without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["lightning cable charger"]}, +{"id":"92714","label":"holding iphone adapter","template":"Holding [something]","placeholders":["iphone adapter"]}, +{"id":"134523","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"100466","label":"furk falling like a rock","template":"[Something] falling like a rock","placeholders":["furk"]}, +{"id":"28427","label":"putting rubix cube in front of board clip","template":"Putting [something] in front of [something]","placeholders":["rubix cube","board clip"]}, +{"id":"3937","label":"cellotape falling like a rock","template":"[Something] falling like a rock","placeholders":["cellotape"]}, +{"id":"216236","label":"stuffing paper into cup","template":"Stuffing [something] into [something]","placeholders":["paper","cup"]}, +{"id":"89993","label":"moving marker and marker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["marker","marker"]}, +{"id":"211441","label":"pushing joystick so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["joystick"]}, +{"id":"209578","label":"spinning tape so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["tape"]}, +{"id":"91736","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"27845","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"95600","label":"pulling a napkin from left to right","template":"Pulling [something] from left to right","placeholders":["a napkin"]}, +{"id":"178294","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"216998","label":"putting a book and a lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["a book","a lighter"]}, +{"id":"97294","label":"spilling a mug of water onto a kitchen counter.","template":"Spilling [something] onto [something]","placeholders":["a mug of water","a kitchen counter."]}, +{"id":"196884","label":"holding bread over toaster","template":"Holding [something] over [something]","placeholders":["bread","toaster"]}, +{"id":"82266","label":"pushing tea cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["tea cup"]}, +{"id":"36800","label":"pushing yellow clay box from left to right","template":"Pushing [something] from left to right","placeholders":["yellow clay box"]}, +{"id":"27672","label":"putting a coin into a container","template":"Putting [something] into [something]","placeholders":["a coin","a container"]}, +{"id":"215692","label":"tipping knickknack over","template":"Tipping [something] over","placeholders":["knickknack"]}, +{"id":"166191","label":"moving phone and controller so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["phone","controller"]}, +{"id":"11138","label":"showing a photo of a group of people on the water to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a group of people on the water"]}, +{"id":"34962","label":"pretending to open pencil case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pencil case"]}, +{"id":"217107","label":"putting 2 matchbox onto book","template":"Putting [number of] [something] onto [something]","placeholders":["2","matchbox","book"]}, +{"id":"35781","label":"turning the camera upwards while filming computer monitor","template":"Turning the camera upwards while filming [something]","placeholders":["computer monitor"]}, +{"id":"107463","label":"putting a knife, a fork and a glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a knife","a fork","a glass"]}, +{"id":"9409","label":"holding tablet box next to ink bottle","template":"Holding [something] next to [something]","placeholders":["tablet box","ink bottle"]}, +{"id":"58990","label":"pretending to put keys next to bag","template":"Pretending to put [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"36177","label":"moving pen and pencil away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","pencil"]}, +{"id":"206702","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"21225","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"217013","label":"spilling water onto medicine","template":"Spilling [something] onto [something]","placeholders":["water","medicine"]}, +{"id":"162440","label":"lifting flashlight up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["flashlight"]}, +{"id":"2697","label":"taking an eraser out of a pencil case","template":"Taking [something] out of [something]","placeholders":["an eraser","a pencil case"]}, +{"id":"184397","label":"touching (without moving) top of cloth","template":"Touching (without moving) [part] of [something]","placeholders":["top","cloth"]}, +{"id":"136942","label":"pretending to open cigarettes without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cigarettes"]}, +{"id":"90403","label":"moving a plastic bottle away from a box","template":"Moving [something] away from [something]","placeholders":["a plastic bottle","a box"]}, +{"id":"206928","label":"stuffing tablet box into black pouch","template":"Stuffing [something] into [something]","placeholders":["tablet box","black pouch"]}, +{"id":"47026","label":"holding box in front of lamp","template":"Holding [something] in front of [something]","placeholders":["box","lamp"]}, +{"id":"76365","label":"uncovering magnifying glass","template":"Uncovering [something]","placeholders":["magnifying glass"]}, +{"id":"71030","label":"moving wristwatch up","template":"Moving [something] up","placeholders":["wristwatch"]}, +{"id":"173521","label":"covering the bottle with the hoodie","template":"Covering [something] with [something]","placeholders":["the bottle","the hoodie"]}, +{"id":"19782","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"88486","label":"bending microphone so that it deforms","template":"Bending [something] so that it deforms","placeholders":["microphone"]}, +{"id":"212836","label":"moving glass closer to mug","template":"Moving [something] closer to [something]","placeholders":["glass","mug"]}, +{"id":"201575","label":"pushing a necklace off of a table","template":"Pushing [something] off of [something]","placeholders":["a necklace","a table"]}, +{"id":"148937","label":"putting box in front of notebook","template":"Putting [something] in front of [something]","placeholders":["box","notebook"]}, +{"id":"85207","label":"moving cup down","template":"Moving [something] down","placeholders":["cup"]}, +{"id":"22070","label":"letting toy wheel roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["toy wheel"]}, +{"id":"168771","label":"plugging a charger into a phone","template":"Plugging [something] into [something]","placeholders":["a charger","a phone"]}, +{"id":"125403","label":"pretending to take botle out of purse","template":"Pretending to take [something] out of [something]","placeholders":["botle","purse"]}, +{"id":"104599","label":"covering tissue with clothes","template":"Covering [something] with [something]","placeholders":["tissue","clothes"]}, +{"id":"218713","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"127431","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"71928","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"194696","label":"pretending to poke a pillow","template":"Pretending to poke [something]","placeholders":["a pillow"]}, +{"id":"178438","label":"hitting sink with towel","template":"Hitting [something] with [something]","placeholders":["sink","towel"]}, +{"id":"133328","label":"holding a book behind a book","template":"Holding [something] behind [something]","placeholders":["a book","a book"]}, +{"id":"204435","label":"throwing rubber duck in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["rubber duck"]}, +{"id":"49038","label":"a badminton bat being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["a badminton bat","wall"]}, +{"id":"95655","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"19469","label":"putting cell phone on a surface","template":"Putting [something] on a surface","placeholders":["cell phone"]}, +{"id":"147202","label":"showing air freshener behind monitor","template":"Showing [something] behind [something]","placeholders":["air freshener","monitor"]}, +{"id":"81391","label":"pushing a reactine bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a reactine bottle"]}, +{"id":"207239","label":"holding glasses behind plate","template":"Holding [something] behind [something]","placeholders":["glasses","plate"]}, +{"id":"52746","label":"bending card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["card"]}, +{"id":"38075","label":"touching (without moving) the corner cover of a book","template":"Touching (without moving) [part] of [something]","placeholders":["the corner cover","a book"]}, +{"id":"76026","label":"putting a ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a ball"]}, +{"id":"218699","label":"putting keys into bowl","template":"Putting [something] into [something]","placeholders":["keys","bowl"]}, +{"id":"215135","label":"crayon falling like a rock","template":"[Something] falling like a rock","placeholders":["crayon"]}, +{"id":"187028","label":"unfolding place mat","template":"Unfolding [something]","placeholders":["place mat"]}, +{"id":"170270","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"170284","label":"putting stone next to seashell","template":"Putting [something] next to [something]","placeholders":["stone","seashell"]}, +{"id":"7694","label":"pouring water out of kettle","template":"Pouring [something] out of [something]","placeholders":["water","kettle"]}, +{"id":"100419","label":"holding mobile phone in front of radio","template":"Holding [something] in front of [something]","placeholders":["mobile phone","radio"]}, +{"id":"189032","label":"holding cup in front of lamp","template":"Holding [something] in front of [something]","placeholders":["cup","lamp"]}, +{"id":"160452","label":"pushing a toy car from right to left","template":"Pushing [something] from right to left","placeholders":["a toy car"]}, +{"id":"143941","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"184817","label":"folding a sheet of paper","template":"Folding [something]","placeholders":["a sheet of paper"]}, +{"id":"210886","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"188411","label":"showing an orange behind a bunch of bananas","template":"Showing [something] behind [something]","placeholders":["an orange","a bunch of bananas"]}, +{"id":"84218","label":"tilting paper with rule on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","rule"]}, +{"id":"162184","label":"putting bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottles"]}, +{"id":"141429","label":"stuffing a cellphone into a bag","template":"Stuffing [something] into [something]","placeholders":["a cellphone","a bag"]}, +{"id":"70518","label":"pushing can so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["can"]}, +{"id":"92198","label":"putting 3 spoons onto stove","template":"Putting [number of] [something] onto [something]","placeholders":["3","spoons","stove"]}, +{"id":"196385","label":"turning paint brush upside down","template":"Turning [something] upside down","placeholders":["paint brush"]}, +{"id":"97896","label":"showing thread on top of box of pins","template":"Showing [something] on top of [something]","placeholders":["thread","box of pins"]}, +{"id":"174775","label":"pretending to put hand cream on a surface","template":"Pretending to put [something] on a surface","placeholders":["hand cream"]}, +{"id":"206534","label":"moving fork closer to spoon","template":"Moving [something] closer to [something]","placeholders":["fork","spoon"]}, +{"id":"87461","label":"letting toy truck roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy truck"]}, +{"id":"103842","label":"covering remote control with pillow","template":"Covering [something] with [something]","placeholders":["remote control","pillow"]}, +{"id":"175048","label":"putting scissors behind book","template":"Putting [something] behind [something]","placeholders":["scissors","book"]}, +{"id":"209109","label":"throwing empty gum wrapper","template":"Throwing [something]","placeholders":["empty gum wrapper"]}, +{"id":"20230","label":"plugging a power cord into a wall socket","template":"Plugging [something] into [something]","placeholders":["a power cord","a wall socket"]}, +{"id":"176266","label":"holding tweezers in front of mouthwash","template":"Holding [something] in front of [something]","placeholders":["tweezers","mouthwash"]}, +{"id":"3201","label":"moving away from wireless mouse with your camera","template":"Moving away from [something] with your camera","placeholders":["wireless mouse"]}, +{"id":"100799","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"33238","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"164953","label":"a book falling like a rock","template":"[Something] falling like a rock","placeholders":["a book"]}, +{"id":"30439","label":"tearing tearing paper into two pieces into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing paper into two pieces"]}, +{"id":"65966","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"92412","label":"tipping block over","template":"Tipping [something] over","placeholders":["block"]}, +{"id":"31921","label":"lifting a book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a book"]}, +{"id":"61550","label":"pouring soda into mug","template":"Pouring [something] into [something]","placeholders":["soda","mug"]}, +{"id":"127476","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"164788","label":"showing book on top of box","template":"Showing [something] on top of [something]","placeholders":["book","box"]}, +{"id":"56568","label":"opening fridge door","template":"Opening [something]","placeholders":["fridge door"]}, +{"id":"159427","label":"pretending or failing to wipe flour off of sink","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["flour","sink"]}, +{"id":"158855","label":"covering remote with plate","template":"Covering [something] with [something]","placeholders":["remote","plate"]}, +{"id":"140415","label":"pushing towel with foot","template":"Pushing [something] with [something]","placeholders":["towel","foot"]}, +{"id":"38364","label":"piling blankets up","template":"Piling [something] up","placeholders":["blankets"]}, +{"id":"91437","label":"squeezing toy football","template":"Squeezing [something]","placeholders":["toy football"]}, +{"id":"37741","label":"poking mouse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["mouse"]}, +{"id":"126884","label":"pulling a pen from behind of a book","template":"Pulling [something] from behind of [something]","placeholders":["a pen","a book"]}, +{"id":"18374","label":"stuffing a rag into a cup","template":"Stuffing [something] into [something]","placeholders":["a rag","a cup"]}, +{"id":"215058","label":"covering marker with tissue","template":"Covering [something] with [something]","placeholders":["marker","tissue"]}, +{"id":"214157","label":"putting a coaster","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coaster"]}, +{"id":"169558","label":"putting red colour spoon on a surface","template":"Putting [something] on a surface","placeholders":["red colour spoon"]}, +{"id":"147298","label":"holding hat next to blanket","template":"Holding [something] next to [something]","placeholders":["hat","blanket"]}, +{"id":"136718","label":"squeezing a ball of yarn","template":"Squeezing [something]","placeholders":["a ball of yarn"]}, +{"id":"212895","label":"letting a crayon roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a crayon"]}, +{"id":"206851","label":"moving sunglasses across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["sunglasses"]}, +{"id":"9746","label":"moving thread away from the bangle","template":"Moving [something] away from [something]","placeholders":["thread","the bangle"]}, +{"id":"51713","label":"closing cabinet door","template":"Closing [something]","placeholders":["cabinet door"]}, +{"id":"97730","label":"holding a coin","template":"Holding [something]","placeholders":["a coin"]}, +{"id":"108615","label":"squeezing cat","template":"Squeezing [something]","placeholders":["cat"]}, +{"id":"18771","label":"pretending or trying and failing to twist spanner","template":"Pretending or trying and failing to twist [something]","placeholders":["spanner"]}, +{"id":"145257","label":"putting a box behind remote","template":"Putting [something] behind [something]","placeholders":["a box","remote"]}, +{"id":"20901","label":"putting mouse behind laptop","template":"Putting [something] behind [something]","placeholders":["mouse","laptop"]}, +{"id":"203613","label":"pushing bat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bat"]}, +{"id":"53468","label":"trying to bend bat so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["bat"]}, +{"id":"19792","label":"holding bottle in front of bowl","template":"Holding [something] in front of [something]","placeholders":["bottle","bowl"]}, +{"id":"93315","label":"moving small book down","template":"Moving [something] down","placeholders":["small book"]}, +{"id":"31475","label":"dropping a cup next to text books","template":"Dropping [something] next to [something]","placeholders":["a cup","text books"]}, +{"id":"3007","label":"putting a metal cylinder underneath a mug","template":"Putting [something] underneath [something]","placeholders":["a metal cylinder","a mug"]}, +{"id":"18103","label":"putting pendrive behind mug","template":"Putting [something] behind [something]","placeholders":["pendrive","mug"]}, +{"id":"202404","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"123298","label":"pretending to pick something up","template":"Pretending to pick [something] up","placeholders":["something"]}, +{"id":"31368","label":"tearing movies brochure into two pieces","template":"Tearing [something] into two pieces","placeholders":["movies brochure"]}, +{"id":"156834","label":"showing glass behind lighter","template":"Showing [something] behind [something]","placeholders":["glass","lighter"]}, +{"id":"163114","label":"pushing toy idol so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy idol"]}, +{"id":"135014","label":"dropping a handkerchief in front of a ruler","template":"Dropping [something] in front of [something]","placeholders":["a handkerchief","a ruler"]}, +{"id":"208368","label":"lifting cereal box with tape on it","template":"Lifting [something] with [something] on it","placeholders":["cereal box","tape"]}, +{"id":"100042","label":"touching (without moving) cup of table","template":"Touching (without moving) [part] of [something]","placeholders":["cup","table"]}, +{"id":"3480","label":"throwing a key chain","template":"Throwing [something]","placeholders":["a key chain"]}, +{"id":"11978","label":"pushing empty treat bar wrap from left to right","template":"Pushing [something] from left to right","placeholders":["empty treat bar wrap"]}, +{"id":"109841","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"172317","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"135910","label":"turning the camera right while filming vacuum cleaner","template":"Turning the camera right while filming [something]","placeholders":["vacuum cleaner"]}, +{"id":"127573","label":"plugging earphones into a laptop computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earphones","a laptop computer"]}, +{"id":"119536","label":"pushing double-sided adhesive tape so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["double-sided adhesive tape"]}, +{"id":"76016","label":"putting box in front of tape dispenser","template":"Putting [something] in front of [something]","placeholders":["box","tape dispenser"]}, +{"id":"145187","label":"letting superball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["superball"]}, +{"id":"151633","label":"pretending to be tearing denim jacket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["denim jacket"]}, +{"id":"8968","label":"spreading cloth onto laptop","template":"Spreading [something] onto [something]","placeholders":["cloth","laptop"]}, +{"id":"80347","label":"throwing a tennisball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a tennisball"]}, +{"id":"20536","label":"pretending to throw stone","template":"Pretending to throw [something]","placeholders":["stone"]}, +{"id":"98652","label":"turning the camera upwards while filming brown case","template":"Turning the camera upwards while filming [something]","placeholders":["brown case"]}, +{"id":"38916","label":"spinning a wheel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a wheel"]}, +{"id":"21847","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"25472","label":"putting something similar","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar"]}, +{"id":"70039","label":"holding a ball","template":"Holding [something]","placeholders":["a ball"]}, +{"id":"205513","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"183702","label":"failing to put a bread layer into a basket because the bread does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bread layer","a basket","the bread"]}, +{"id":"59775","label":"dropping a pencil in front of a container","template":"Dropping [something] in front of [something]","placeholders":["a pencil","a container"]}, +{"id":"134425","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"82109","label":"pushing red candle from left to right","template":"Pushing [something] from left to right","placeholders":["red candle"]}, +{"id":"130886","label":"pushing a mobile phone with a book","template":"Pushing [something] with [something]","placeholders":["a mobile phone","a book"]}, +{"id":"12231","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"48204","label":"stuffing paper into beaker","template":"Stuffing [something] into [something]","placeholders":["paper","beaker"]}, +{"id":"216476","label":"uncovering headphones","template":"Uncovering [something]","placeholders":["headphones"]}, +{"id":"112503","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"208116","label":"dropping a peg next to a hanger","template":"Dropping [something] next to [something]","placeholders":["a peg","a hanger"]}, +{"id":"17055","label":"turning the camera left while filming a jar","template":"Turning the camera left while filming [something]","placeholders":["a jar"]}, +{"id":"51196","label":"pulling two ends of newspaper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["newspaper"]}, +{"id":"38723","label":"turning glue stick upside down","template":"Turning [something] upside down","placeholders":["glue stick"]}, +{"id":"50683","label":"trying to pour water into bucket, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bucket"]}, +{"id":"103055","label":"pouring water into sink","template":"Pouring [something] into [something]","placeholders":["water","sink"]}, +{"id":"141058","label":"pushing scotch tape so it spins","template":"Pushing [something] so it spins","placeholders":["scotch tape"]}, +{"id":"80069","label":"spinning a pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pencil"]}, +{"id":"113033","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"22006","label":"bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bag"]}, +{"id":"16942","label":"tilting a metronome with a spool of thread on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a metronome","a spool of thread"]}, +{"id":"80694","label":"moving magnet down","template":"Moving [something] down","placeholders":["magnet"]}, +{"id":"9373","label":"showing that dish is empty","template":"Showing that [something] is empty","placeholders":["dish"]}, +{"id":"212290","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"206977","label":"moving white car and yellow car closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["white car","yellow car"]}, +{"id":"138580","label":"holding a mouse next to a wallet","template":"Holding [something] next to [something]","placeholders":["a mouse","a wallet"]}, +{"id":"203140","label":"squeezing paper","template":"Squeezing [something]","placeholders":["paper"]}, +{"id":"115617","label":"squeezing a cream bottle","template":"Squeezing [something]","placeholders":["a cream bottle"]}, +{"id":"68631","label":"moving lid of glass bottle","template":"Moving [part] of [something]","placeholders":["lid","glass bottle"]}, +{"id":"40601","label":"glove colliding with glove and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["glove","glove"]}, +{"id":"147838","label":"showing bottle cap next to aluminium channel","template":"Showing [something] next to [something]","placeholders":["bottle cap","aluminium channel"]}, +{"id":"108578","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"178651","label":"uncovering headphones","template":"Uncovering [something]","placeholders":["headphones"]}, +{"id":"153663","label":"moving a cup away from a bottle","template":"Moving [something] away from [something]","placeholders":["a cup","a bottle"]}, +{"id":"4137","label":"bending a straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a straw"]}, +{"id":"95339","label":"moving remote control up","template":"Moving [something] up","placeholders":["remote control"]}, +{"id":"207985","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"197169","label":"lifting up one end of table without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["table"]}, +{"id":"199010","label":"pretending or trying and failing to twist a roll of masking tape","template":"Pretending or trying and failing to twist [something]","placeholders":["a roll of masking tape"]}, +{"id":"44096","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"203398","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"75498","label":"touching (without moving) adaptor of the charger","template":"Touching (without moving) [part] of [something]","placeholders":["adaptor","the charger"]}, +{"id":"4378","label":"pushing bar soap from right to left","template":"Pushing [something] from right to left","placeholders":["bar soap"]}, +{"id":"136076","label":"poking paper towels so that it falls over","template":"Poking [something] so that it falls over","placeholders":["paper towels"]}, +{"id":"102947","label":"tilting a box with a coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","a coin"]}, +{"id":"65208","label":"holding the deodorant next to the shampoo","template":"Holding [something] next to [something]","placeholders":["the deodorant","the shampoo"]}, +{"id":"10507","label":"trying to pour water into bottle, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bottle"]}, +{"id":"201854","label":"opening guitar liner","template":"Opening [something]","placeholders":["guitar liner"]}, +{"id":"166267","label":"taking box from floor","template":"Taking [something] from [somewhere]","placeholders":["box","floor"]}, +{"id":"42489","label":"pretending or failing to wipe boot polish off of surface","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["boot polish","surface"]}, +{"id":"152204","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"162973","label":"putting 1 mirror onto laptop","template":"Putting [number of] [something] onto [something]","placeholders":["1","mirror","laptop"]}, +{"id":"76986","label":"plugging a charger into the wall","template":"Plugging [something] into [something]","placeholders":["a charger","the wall"]}, +{"id":"115480","label":"folding underwear","template":"Folding [something]","placeholders":["underwear"]}, +{"id":"145974","label":"picking bag up","template":"Picking [something] up","placeholders":["bag"]}, +{"id":"210579","label":"attaching cover switch to fan regulator","template":"Attaching [something] to [something]","placeholders":["cover switch","fan regulator"]}, +{"id":"28855","label":"showing scooter to the camera","template":"Showing [something] to the camera","placeholders":["scooter"]}, +{"id":"184328","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"213259","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"162563","label":"tipping cylinder over","template":"Tipping [something] over","placeholders":["cylinder"]}, +{"id":"120445","label":"uncovering a tomato","template":"Uncovering [something]","placeholders":["a tomato"]}, +{"id":"176721","label":"putting paper onto book","template":"Putting [something] onto [something]","placeholders":["paper","book"]}, +{"id":"110673","label":"pushing white hand gel from left to right","template":"Pushing [something] from left to right","placeholders":["white hand gel"]}, +{"id":"169556","label":"showing bowl on top of carpet","template":"Showing [something] on top of [something]","placeholders":["bowl","carpet"]}, +{"id":"44659","label":"holding small green ball","template":"Holding [something]","placeholders":["small green ball"]}, +{"id":"101108","label":"tearing sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet"]}, +{"id":"52560","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"30260","label":"moving stapler towards the camera","template":"Moving [something] towards the camera","placeholders":["stapler"]}, +{"id":"104610","label":"removing basket, revealing cds behind","template":"Removing [something], revealing [something] behind","placeholders":["basket","cds"]}, +{"id":"107117","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"207150","label":"moving bucket away from the camera","template":"Moving [something] away from the camera","placeholders":["bucket"]}, +{"id":"132004","label":"dropping stapler next to ink bottle","template":"Dropping [something] next to [something]","placeholders":["stapler","ink bottle"]}, +{"id":"98853","label":"pushing a screwdriver so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a screwdriver"]}, +{"id":"25036","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"3127","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"131082","label":"covering paper clip with paper napkin","template":"Covering [something] with [something]","placeholders":["paper clip","paper napkin"]}, +{"id":"205156","label":"moving a cream tube away from the camera","template":"Moving [something] away from the camera","placeholders":["a cream tube"]}, +{"id":"156711","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"144063","label":"pretending to close tea box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["tea box"]}, +{"id":"31644","label":"holding a picture behind a case","template":"Holding [something] behind [something]","placeholders":["a picture","a case"]}, +{"id":"6793","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"193709","label":"moving green bowl closer to orange bowl","template":"Moving [something] closer to [something]","placeholders":["green bowl","orange bowl"]}, +{"id":"122887","label":"showing that coins is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["coins","a jar"]}, +{"id":"174300","label":"putting scieser on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["scieser","box"]}, +{"id":"59962","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"168562","label":"lifting a surface with candy on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["candy"]}, +{"id":"94262","label":"lifting spoon with nut on it","template":"Lifting [something] with [something] on it","placeholders":["spoon","nut"]}, +{"id":"188559","label":"holding tangerine next to mug","template":"Holding [something] next to [something]","placeholders":["tangerine","mug"]}, +{"id":"160211","label":"putting pen, pen and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","pen","pen"]}, +{"id":"213518","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"152981","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38624","label":"throwing a sock","template":"Throwing [something]","placeholders":["a sock"]}, +{"id":"116263","label":"pretending to throw a phone","template":"Pretending to throw [something]","placeholders":["a phone"]}, +{"id":"58042","label":"pretending or failing to wipe ink off of box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","box"]}, +{"id":"200839","label":"pretending to open a cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cup"]}, +{"id":"89268","label":"pushing napkins off of the table","template":"Pushing [something] off of [something]","placeholders":["napkins","the table"]}, +{"id":"38914","label":"dropping bottle behind bagback","template":"Dropping [something] behind [something]","placeholders":["bottle","bagback"]}, +{"id":"140338","label":"tilting box with lipbalm on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","lipbalm"]}, +{"id":"49806","label":"dropping remote control in front of wallet","template":"Dropping [something] in front of [something]","placeholders":["remote control","wallet"]}, +{"id":"81589","label":"moving leaf of plant","template":"Moving [part] of [something]","placeholders":["leaf","plant"]}, +{"id":"53297","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"72982","label":"pushing chocolate from left to right","template":"Pushing [something] from left to right","placeholders":["chocolate"]}, +{"id":"137146","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"113598","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"161249","label":"twisting hand towel","template":"Twisting [something]","placeholders":["hand towel"]}, +{"id":"100710","label":"putting mouse underneath table","template":"Putting [something] underneath [something]","placeholders":["mouse","table"]}, +{"id":"113508","label":"digging a fork out of the sugar","template":"Digging [something] out of [something]","placeholders":["a fork","the sugar"]}, +{"id":"98503","label":"showing a cup behind an apple","template":"Showing [something] behind [something]","placeholders":["a cup","an apple"]}, +{"id":"161111","label":"showing cup behind candle","template":"Showing [something] behind [something]","placeholders":["cup","candle"]}, +{"id":"153984","label":"pulling two ends of a hair tie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a hair tie"]}, +{"id":"211937","label":"failing to put ball into cup because ball does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["ball","cup","ball"]}, +{"id":"176187","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"49872","label":"moving phone and controller so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["phone","controller"]}, +{"id":"42504","label":"covering a pen with paper","template":"Covering [something] with [something]","placeholders":["a pen","paper"]}, +{"id":"52275","label":"plugging iron into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["iron","wall plug"]}, +{"id":"158429","label":"covering a tomato with a washcloth","template":"Covering [something] with [something]","placeholders":["a tomato","a washcloth"]}, +{"id":"43861","label":"uncovering cell phone","template":"Uncovering [something]","placeholders":["cell phone"]}, +{"id":"104388","label":"turning the camera right while filming cycle","template":"Turning the camera right while filming [something]","placeholders":["cycle"]}, +{"id":"210434","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"108421","label":"taking marking pen","template":"Taking [one of many similar things on the table]","placeholders":["marking pen"]}, +{"id":"185945","label":"taking paperclip","template":"Taking [one of many similar things on the table]","placeholders":["paperclip"]}, +{"id":"177476","label":"putting a pillow onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a pillow"]}, +{"id":"163227","label":"tilting a box with a little shoe on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a box","a little shoe"]}, +{"id":"17916","label":"closing spectacle box","template":"Closing [something]","placeholders":["spectacle box"]}, +{"id":"165313","label":"taking tape dispenser","template":"Taking [one of many similar things on the table]","placeholders":["tape dispenser"]}, +{"id":"204194","label":"moving container and cigarettes closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["container","cigarettes"]}, +{"id":"49358","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"136506","label":"putting a shoe behind deodorant","template":"Putting [something] behind [something]","placeholders":["a shoe","deodorant"]}, +{"id":"170330","label":"opening plastic box","template":"Opening [something]","placeholders":["plastic box"]}, +{"id":"86972","label":"pretending to poke glasses","template":"Pretending to poke [something]","placeholders":["glasses"]}, +{"id":"207996","label":"holding soldering wire reel next to black plastic box","template":"Holding [something] next to [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"159586","label":"poking deodorant so that it falls over","template":"Poking [something] so that it falls over","placeholders":["deodorant"]}, +{"id":"204388","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"10315","label":"removing bottle, revealing paper weight behind","template":"Removing [something], revealing [something] behind","placeholders":["bottle","paper weight"]}, +{"id":"60251","label":"pretending to put keys into bag","template":"Pretending to put [something] into [something]","placeholders":["keys","bag"]}, +{"id":"40202","label":"pretending to put jar behind monitor","template":"Pretending to put [something] behind [something]","placeholders":["jar","monitor"]}, +{"id":"140953","label":"lifting ring up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["ring"]}, +{"id":"176873","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"171029","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"63599","label":"covering flower with cup","template":"Covering [something] with [something]","placeholders":["flower","cup"]}, +{"id":"154967","label":"pushing a cylindrical box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a cylindrical box"]}, +{"id":"189662","label":"holding a toy fish","template":"Holding [something]","placeholders":["a toy fish"]}, +{"id":"3003","label":"putting granola bar into lunchbox","template":"Putting [something] into [something]","placeholders":["granola bar","lunchbox"]}, +{"id":"189919","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"108506","label":"moving glue stick away from the camera","template":"Moving [something] away from the camera","placeholders":["glue stick"]}, +{"id":"216852","label":"tearing cough drop wrapper into two pieces","template":"Tearing [something] into two pieces","placeholders":["cough drop wrapper"]}, +{"id":"136059","label":"pretending to put pen into mug","template":"Pretending to put [something] into [something]","placeholders":["pen","mug"]}, +{"id":"157249","label":"lifting notebook with pen on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","pen"]}, +{"id":"90236","label":"putting 3 white colour board clips onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["3","white colour board clips","red pouch"]}, +{"id":"121736","label":"turning tumbler upside down","template":"Turning [something] upside down","placeholders":["tumbler"]}, +{"id":"158353","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"122473","label":"touching (without moving) handle of tap","template":"Touching (without moving) [part] of [something]","placeholders":["handle","tap"]}, +{"id":"84466","label":"covering football with towel","template":"Covering [something] with [something]","placeholders":["football","towel"]}, +{"id":"54341","label":"moving a mug and a mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","a mug"]}, +{"id":"171045","label":"putting apple corer","template":"Putting [something similar to other things that are already on the table]","placeholders":["apple corer"]}, +{"id":"147490","label":"uncovering bear","template":"Uncovering [something]","placeholders":["bear"]}, +{"id":"172398","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"96257","label":"moving bar soap up","template":"Moving [something] up","placeholders":["bar soap"]}, +{"id":"167683","label":"pretending to turn football upside down","template":"Pretending to turn [something] upside down","placeholders":["football"]}, +{"id":"73217","label":"approaching ring with your camera","template":"Approaching [something] with your camera","placeholders":["ring"]}, +{"id":"200328","label":"picking racket up","template":"Picking [something] up","placeholders":["racket"]}, +{"id":"79856","label":"moving pen closer to notebook","template":"Moving [something] closer to [something]","placeholders":["pen","notebook"]}, +{"id":"155582","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"48258","label":"throwing the pen","template":"Throwing [something]","placeholders":["the pen"]}, +{"id":"173048","label":"putting glass and wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["glass","wallet"]}, +{"id":"210076","label":"showing an apple next to a jar","template":"Showing [something] next to [something]","placeholders":["an apple","a jar"]}, +{"id":"96474","label":"holding a stick","template":"Holding [something]","placeholders":["a stick"]}, +{"id":"180705","label":"twisting (wringing) colth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["colth"]}, +{"id":"213403","label":"wiping dirt off of counter","template":"Wiping [something] off of [something]","placeholders":["dirt","counter"]}, +{"id":"2100","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"162169","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"78202","label":"turning phone upside down","template":"Turning [something] upside down","placeholders":["phone"]}, +{"id":"175028","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"193214","label":"turning the camera left while filming water pipe","template":"Turning the camera left while filming [something]","placeholders":["water pipe"]}, +{"id":"65211","label":"closing pen top","template":"Closing [something]","placeholders":["pen top"]}, +{"id":"192232","label":"pushing shoe so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe"]}, +{"id":"21259","label":"dropping notebook onto table","template":"Dropping [something] onto [something]","placeholders":["notebook","table"]}, +{"id":"17390","label":"tilting folder with orange on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","orange"]}, +{"id":"8139","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"151677","label":"putting a makeup brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a makeup brush"]}, +{"id":"169434","label":"moving light reflector down","template":"Moving [something] down","placeholders":["light reflector"]}, +{"id":"34188","label":"letting something roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["something"]}, +{"id":"215836","label":"moving book and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["book","remote"]}, +{"id":"39979","label":"moving box and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["box","pen"]}, +{"id":"23014","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"164137","label":"holding a mobile over a paper","template":"Holding [something] over [something]","placeholders":["a mobile","a paper"]}, +{"id":"137683","label":"holding leaf","template":"Holding [something]","placeholders":["leaf"]}, +{"id":"164504","label":"pushing pen drive so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen drive"]}, +{"id":"54489","label":"pulling toy car from left to right","template":"Pulling [something] from left to right","placeholders":["toy car"]}, +{"id":"216106","label":"moving a candle closer to another candle","template":"Moving [something] closer to [something]","placeholders":["a candle","another candle"]}, +{"id":"213667","label":"holding ashtray in front of glass","template":"Holding [something] in front of [something]","placeholders":["ashtray","glass"]}, +{"id":"150128","label":"moving a bottle and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a box"]}, +{"id":"80575","label":"lifting up one end of blanket without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["blanket"]}, +{"id":"200695","label":"turning cell upside down","template":"Turning [something] upside down","placeholders":["cell"]}, +{"id":"68181","label":"pretending to close the small bag without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["the small bag"]}, +{"id":"10484","label":"twisting a lid","template":"Twisting [something]","placeholders":["a lid"]}, +{"id":"101633","label":"pushing cd so it spins","template":"Pushing [something] so it spins","placeholders":["cd"]}, +{"id":"139712","label":"turning the camera upwards while filming trolley","template":"Turning the camera upwards while filming [something]","placeholders":["trolley"]}, +{"id":"102673","label":"pretending to be tearing cardboard","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cardboard"]}, +{"id":"195417","label":"putting a clip on a surface","template":"Putting [something] on a surface","placeholders":["a clip"]}, +{"id":"162571","label":"dropping cufflinks behind a book","template":"Dropping [something] behind [something]","placeholders":["cufflinks","a book"]}, +{"id":"165871","label":"throwing small box in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["small box"]}, +{"id":"200700","label":"pushing spectacles so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spectacles"]}, +{"id":"68698","label":"lifting up one end of bat, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bat"]}, +{"id":"206","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"192363","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"158627","label":"burying a watch in a cloth","template":"Burying [something] in [something]","placeholders":["a watch","a cloth"]}, +{"id":"73095","label":"putting the squeeze on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["the squeeze"]}, +{"id":"42457","label":"lifting up one end of screw driver without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["screw driver"]}, +{"id":"112527","label":"taking spoon from teacup","template":"Taking [something] from [somewhere]","placeholders":["spoon","teacup"]}, +{"id":"184059","label":"holding comb in front of computer screen","template":"Holding [something] in front of [something]","placeholders":["comb","computer screen"]}, +{"id":"148709","label":"pouring water out of can","template":"Pouring [something] out of [something]","placeholders":["water","can"]}, +{"id":"142684","label":"moving glue stick and diskette away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glue stick","diskette"]}, +{"id":"76113","label":"pushing a pen onto a bearer","template":"Pushing [something] onto [something]","placeholders":["a pen","a bearer"]}, +{"id":"167337","label":"showing that purse is empty","template":"Showing that [something] is empty","placeholders":["purse"]}, +{"id":"114485","label":"holding toothpicks next to mug","template":"Holding [something] next to [something]","placeholders":["toothpicks","mug"]}, +{"id":"123603","label":"throwing sachet against mosquito bat","template":"Throwing [something] against [something]","placeholders":["sachet","mosquito bat"]}, +{"id":"110868","label":"pushing a book with a box cutter","template":"Pushing [something] with [something]","placeholders":["a book","a box cutter"]}, +{"id":"204067","label":"putting a pear","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pear"]}, +{"id":"54935","label":"pulling stool from right to left","template":"Pulling [something] from right to left","placeholders":["stool"]}, +{"id":"87943","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"107626","label":"spinning spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spoon"]}, +{"id":"146350","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"23804","label":"putting pen similar to others that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen similar to others that are already on the table"]}, +{"id":"138179","label":"taking wallet","template":"Taking [one of many similar things on the table]","placeholders":["wallet"]}, +{"id":"85790","label":"moving mug up","template":"Moving [something] up","placeholders":["mug"]}, +{"id":"47879","label":"lifting a surface with box on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["box"]}, +{"id":"195609","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"218002","label":"avocado colliding with banana and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["avocado","banana"]}, +{"id":"712","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"114612","label":"plugging an electric fan plug into a socket","template":"Plugging [something] into [something]","placeholders":["an electric fan plug","a socket"]}, +{"id":"181077","label":"turning plate upside down","template":"Turning [something] upside down","placeholders":["plate"]}, +{"id":"3360","label":"plugging flash drive into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["flash drive","computer"]}, +{"id":"87","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"93520","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"33158","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"84793","label":"tearing sponge into two pieces","template":"Tearing [something] into two pieces","placeholders":["sponge"]}, +{"id":"27945","label":"stacking 3 toys","template":"Stacking [number of] [something]","placeholders":["3","toys"]}, +{"id":"39170","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"56735","label":"moving granola bar down","template":"Moving [something] down","placeholders":["granola bar"]}, +{"id":"108286","label":"approaching bench with your camera","template":"Approaching [something] with your camera","placeholders":["bench"]}, +{"id":"41644","label":"throwing a garbage","template":"Throwing [something]","placeholders":["a garbage"]}, +{"id":"218016","label":"lifting a surface with coin on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["coin"]}, +{"id":"200847","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"165912","label":"putting a candle in front of a ring","template":"Putting [something] in front of [something]","placeholders":["a candle","a ring"]}, +{"id":"47239","label":"putting coin, calculator and a book on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["coin","calculator","a book"]}, +{"id":"144648","label":"moving away from toy giraffe with your camera","template":"Moving away from [something] with your camera","placeholders":["toy giraffe"]}, +{"id":"167570","label":"moving cufflinks closer to a cup","template":"Moving [something] closer to [something]","placeholders":["cufflinks","a cup"]}, +{"id":"29084","label":"taking watch from desk","template":"Taking [something] from [somewhere]","placeholders":["watch","desk"]}, +{"id":"95589","label":"putting card upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["card"]}, +{"id":"186396","label":"putting a bottle behind the cup","template":"Putting [something] behind [something]","placeholders":["a bottle","the cup"]}, +{"id":"101187","label":"putting a plastic container on the edge of a dresser so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a plastic container","a dresser"]}, +{"id":"45052","label":"holding yellow ball in front of duster","template":"Holding [something] in front of [something]","placeholders":["yellow ball","duster"]}, +{"id":"71100","label":"lifting up one end of a paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a paper"]}, +{"id":"15959","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"187924","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"19880","label":"showing that a plastic container is empty","template":"Showing that [something] is empty","placeholders":["a plastic container"]}, +{"id":"24712","label":"pushing cherry so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cherry"]}, +{"id":"164063","label":"showing trophy behind the clip","template":"Showing [something] behind [something]","placeholders":["trophy","the clip"]}, +{"id":"3906","label":"tearing duct tape into two pieces","template":"Tearing [something] into two pieces","placeholders":["duct tape"]}, +{"id":"192990","label":"unfolding glasses","template":"Unfolding [something]","placeholders":["glasses"]}, +{"id":"91030","label":"pouring oil onto palm","template":"Pouring [something] onto [something]","placeholders":["oil","palm"]}, +{"id":"3017","label":"dropping claw onto floor","template":"Dropping [something] onto [something]","placeholders":["claw","floor"]}, +{"id":"113226","label":"taking clothclips","template":"Taking [one of many similar things on the table]","placeholders":["clothclips"]}, +{"id":"154697","label":"pulling pencil case from left to right","template":"Pulling [something] from left to right","placeholders":["pencil case"]}, +{"id":"68883","label":"showing switch board to the camera","template":"Showing [something] to the camera","placeholders":["switch board"]}, +{"id":"146966","label":"pushing duster so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["duster"]}, +{"id":"124443","label":"showing a tablet computer behind a blood pressure monitor","template":"Showing [something] behind [something]","placeholders":["a tablet computer","a blood pressure monitor"]}, +{"id":"84389","label":"holding a box next to a glass","template":"Holding [something] next to [something]","placeholders":["a box","a glass"]}, +{"id":"129239","label":"wiping food off of sideboard","template":"Wiping [something] off of [something]","placeholders":["food","sideboard"]}, +{"id":"196658","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"67013","label":"putting skate wheel with other wheels","template":"Putting [something similar to other things that are already on the table]","placeholders":["skate wheel with other wheels"]}, +{"id":"135663","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"31652","label":"pushing a box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box"]}, +{"id":"161551","label":"squeezing a lime","template":"Squeezing [something]","placeholders":["a lime"]}, +{"id":"100250","label":"showing monitor on top of table","template":"Showing [something] on top of [something]","placeholders":["monitor","table"]}, +{"id":"71741","label":"tearing sticky note just a little bit","template":"Tearing [something] just a little bit","placeholders":["sticky note"]}, +{"id":"113228","label":"moving card across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["card"]}, +{"id":"165849","label":"uncovering a container","template":"Uncovering [something]","placeholders":["a container"]}, +{"id":"178896","label":"turning water jug upside down","template":"Turning [something] upside down","placeholders":["water jug"]}, +{"id":"12620","label":"squeezing hand sanitizer","template":"Squeezing [something]","placeholders":["hand sanitizer"]}, +{"id":"113429","label":"hitting a market with another market","template":"Hitting [something] with [something]","placeholders":["a market","another market"]}, +{"id":"180734","label":"showing that a trash bin is empty","template":"Showing that [something] is empty","placeholders":["a trash bin"]}, +{"id":"33581","label":"pulling white deodorant from right to left","template":"Pulling [something] from right to left","placeholders":["white deodorant"]}, +{"id":"108984","label":"pushing a flashlight from right to left","template":"Pushing [something] from right to left","placeholders":["a flashlight"]}, +{"id":"203205","label":"pouring something out of something","template":"Pouring [something] out of [something]","placeholders":["something","something"]}, +{"id":"26748","label":"pretending to put a watch into a bowl","template":"Pretending to put [something] into [something]","placeholders":["a watch","a bowl"]}, +{"id":"113827","label":"holding marker next to cup","template":"Holding [something] next to [something]","placeholders":["marker","cup"]}, +{"id":"215057","label":"laying tablet box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["tablet box"]}, +{"id":"107584","label":"showing escalator to the camera","template":"Showing [something] to the camera","placeholders":["escalator"]}, +{"id":"35357","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"152472","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"161547","label":"poking tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["tube"]}, +{"id":"64319","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"32721","label":"holding pineapple in front of bicycle","template":"Holding [something] in front of [something]","placeholders":["pineapple","bicycle"]}, +{"id":"181536","label":"pulling two ends of earmuffs so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["earmuffs"]}, +{"id":"43528","label":"uncovering badge","template":"Uncovering [something]","placeholders":["badge"]}, +{"id":"76642","label":"putting coin onto onion so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["coin","onion"]}, +{"id":"111947","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"115161","label":"spinning football that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["football"]}, +{"id":"209801","label":"putting bottle behind juicer","template":"Putting [something] behind [something]","placeholders":["bottle","juicer"]}, +{"id":"68156","label":"turning pencil case upside down","template":"Turning [something] upside down","placeholders":["pencil case"]}, +{"id":"216074","label":"moving nail clipper and sponge closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["nail clipper","sponge"]}, +{"id":"163710","label":"closing cream powder","template":"Closing [something]","placeholders":["cream powder"]}, +{"id":"125852","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"102850","label":"squeezing handkerchief","template":"Squeezing [something]","placeholders":["handkerchief"]}, +{"id":"136046","label":"pushing fidget spinner from right to left","template":"Pushing [something] from right to left","placeholders":["fidget spinner"]}, +{"id":"83025","label":"dropping camera onto bed","template":"Dropping [something] onto [something]","placeholders":["camera","bed"]}, +{"id":"164334","label":"dropping hairclip in front of piggybank","template":"Dropping [something] in front of [something]","placeholders":["hairclip","piggybank"]}, +{"id":"182325","label":"showing lemon behind doll","template":"Showing [something] behind [something]","placeholders":["lemon","doll"]}, +{"id":"49617","label":"putting pen onto book","template":"Putting [something] onto [something]","placeholders":["pen","book"]}, +{"id":"215405","label":"putting battery next to mug","template":"Putting [something] next to [something]","placeholders":["battery","mug"]}, +{"id":"68874","label":"pulling a watch from right to left","template":"Pulling [something] from right to left","placeholders":["a watch"]}, +{"id":"17265","label":"pushing cup with pen","template":"Pushing [something] with [something]","placeholders":["cup","pen"]}, +{"id":"46282","label":"letting spray can roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["spray can"]}, +{"id":"46392","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"43625","label":"putting a teacup onto a saucer","template":"Putting [something] onto [something]","placeholders":["a teacup","a saucer"]}, +{"id":"59226","label":"taking garlic","template":"Taking [one of many similar things on the table]","placeholders":["garlic"]}, +{"id":"10055","label":"moving marker and tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["marker","tape"]}, +{"id":"218890","label":"moving spoon down","template":"Moving [something] down","placeholders":["spoon"]}, +{"id":"151645","label":"stacking three quarters","template":"Stacking [number of] [something]","placeholders":["three","quarters"]}, +{"id":"216772","label":"pulling a pencil from right to left","template":"Pulling [something] from right to left","placeholders":["a pencil"]}, +{"id":"121170","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"164401","label":"poking shoe so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["shoe"]}, +{"id":"37520","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"170515","label":"lifting rubik's cube up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rubik's cube"]}, +{"id":"30365","label":"showing that yellow container is empty","template":"Showing that [something] is empty","placeholders":["yellow container"]}, +{"id":"193767","label":"pretending or failing to wipe ink off of paper","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","paper"]}, +{"id":"68045","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"35660","label":"tearing white paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["white paper"]}, +{"id":"109184","label":"pushing chocolate off of pillow","template":"Pushing [something] off of [something]","placeholders":["chocolate","pillow"]}, +{"id":"17202","label":"putting ipad on a surface","template":"Putting [something] on a surface","placeholders":["ipad"]}, +{"id":"13728","label":"putting 3 paper clips onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","paper clips","table"]}, +{"id":"40992","label":"putting a toothbrush and nail polish on the table","template":"Putting [something] and [something] on the table","placeholders":["a toothbrush","nail polish"]}, +{"id":"201156","label":"trying to bend nail cutter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["nail cutter"]}, +{"id":"5118","label":"pushing screw driver from right to left","template":"Pushing [something] from right to left","placeholders":["screw driver"]}, +{"id":"192944","label":"dropping smartphone in front of feet","template":"Dropping [something] in front of [something]","placeholders":["smartphone","feet"]}, +{"id":"205024","label":"putting a pen into a pencilcase","template":"Putting [something] into [something]","placeholders":["a pen","a pencilcase"]}, +{"id":"163117","label":"putting one apple to many of them","template":"Putting [something similar to other things that are already on the table]","placeholders":["one apple to many of them"]}, +{"id":"212257","label":"putting glass into bowl","template":"Putting [something] into [something]","placeholders":["glass","bowl"]}, +{"id":"56511","label":"lifting up one end of piece of wood, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["piece of wood"]}, +{"id":"82778","label":"pretending to put white candle on a surface","template":"Pretending to put [something] on a surface","placeholders":["white candle"]}, +{"id":"109072","label":"putting 6 feeding bottles onto a sterilizer","template":"Putting [number of] [something] onto [something]","placeholders":["6 feeding","bottles","a sterilizer"]}, +{"id":"10589","label":"pretending to throw a pair of socks","template":"Pretending to throw [something]","placeholders":["a pair of socks"]}, +{"id":"75517","label":"lifting basket with fruit on it","template":"Lifting [something] with [something] on it","placeholders":["basket","fruit"]}, +{"id":"170404","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"161479","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"98420","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"57188","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"93183","label":"pulling paper out of box","template":"Pulling [something] out of [something]","placeholders":["paper","box"]}, +{"id":"136410","label":"putting a cup of liquid on a surface","template":"Putting [something] on a surface","placeholders":["a cup of liquid"]}, +{"id":"76758","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"13016","label":"tearing cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["cover"]}, +{"id":"46430","label":"putting wallet, wrist watch and pen drive on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wallet","wrist watch","pen drive"]}, +{"id":"97975","label":"trying but failing to attach magnet to stove because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magnet","stove"]}, +{"id":"212636","label":"holding a teaspoon next to a jar","template":"Holding [something] next to [something]","placeholders":["a teaspoon","a jar"]}, +{"id":"182438","label":"tilting a cylindrical box with a stone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cylindrical box","a stone"]}, +{"id":"88527","label":"pouring sand onto paper","template":"Pouring [something] onto [something]","placeholders":["sand","paper"]}, +{"id":"187374","label":"bending template so that it deforms","template":"Bending [something] so that it deforms","placeholders":["template"]}, +{"id":"218094","label":"showing black hair tie to the camera","template":"Showing [something] to the camera","placeholders":["black hair tie"]}, +{"id":"102052","label":"pouring water out of a glass","template":"Pouring [something] out of [something]","placeholders":["water","a glass"]}, +{"id":"18436","label":"uncovering vitamin","template":"Uncovering [something]","placeholders":["vitamin"]}, +{"id":"119829","label":"turning the camera right while filming bush plant","template":"Turning the camera right while filming [something]","placeholders":["bush plant"]}, +{"id":"18563","label":"scooping powdered grains up with spoon","template":"Scooping [something] up with [something]","placeholders":["powdered grains","spoon"]}, +{"id":"211867","label":"pushing earring so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["earring"]}, +{"id":"68931","label":"spinning a coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a coin"]}, +{"id":"67844","label":"pretending to squeeze a powerbank","template":"Pretending to squeeze [something]","placeholders":["a powerbank"]}, +{"id":"174009","label":"taking shell out of hat","template":"Taking [something] out of [something]","placeholders":["shell","hat"]}, +{"id":"118183","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"176401","label":"putting stone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stone"]}, +{"id":"75529","label":"pushing a toy so it spins","template":"Pushing [something] so it spins","placeholders":["a toy"]}, +{"id":"88867","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"52644","label":"piling vegetables and fruits up","template":"Piling [something] up","placeholders":["vegetables and fruits"]}, +{"id":"100406","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"122633","label":"pretending to pick book up","template":"Pretending to pick [something] up","placeholders":["book"]}, +{"id":"49876","label":"holding mobile phone behind laptop","template":"Holding [something] behind [something]","placeholders":["mobile phone","laptop"]}, +{"id":"138396","label":"putting white envelope on a surface","template":"Putting [something] on a surface","placeholders":["white envelope"]}, +{"id":"176431","label":"pretending to be tearing thick cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["thick cloth"]}, +{"id":"47220","label":"uncovering a deodorant","template":"Uncovering [something]","placeholders":["a deodorant"]}, +{"id":"114275","label":"pretending to close a book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a book"]}, +{"id":"3231","label":"moving red pencil sharpner up","template":"Moving [something] up","placeholders":["red pencil sharpner"]}, +{"id":"65834","label":"moving orange post-it up","template":"Moving [something] up","placeholders":["orange post-it"]}, +{"id":"203917","label":"dropping eraser behind cup","template":"Dropping [something] behind [something]","placeholders":["eraser","cup"]}, +{"id":"39802","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"198332","label":"moving computer up","template":"Moving [something] up","placeholders":["computer"]}, +{"id":"13693","label":"tearing wipe into two pieces","template":"Tearing [something] into two pieces","placeholders":["wipe"]}, +{"id":"28614","label":"attaching a post it note to the wall","template":"Attaching [something] to [something]","placeholders":["a post it note","the wall"]}, +{"id":"142168","label":"dropping pencil onto coaster","template":"Dropping [something] onto [something]","placeholders":["pencil","coaster"]}, +{"id":"60467","label":"pushing red candle from right to left","template":"Pushing [something] from right to left","placeholders":["red candle"]}, +{"id":"202939","label":"spilling water onto a surface","template":"Spilling [something] onto [something]","placeholders":["water","a surface"]}, +{"id":"72059","label":"showing a fork on top of a plate","template":"Showing [something] on top of [something]","placeholders":["a fork","a plate"]}, +{"id":"58994","label":"taking card out of wallet","template":"Taking [something] out of [something]","placeholders":["card","wallet"]}, +{"id":"58957","label":"poking scissor so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["scissor"]}, +{"id":"94154","label":"flash light falling like a rock","template":"[Something] falling like a rock","placeholders":["flash light"]}, +{"id":"185558","label":"taking fork out of cup","template":"Taking [something] out of [something]","placeholders":["fork","cup"]}, +{"id":"28449","label":"digging blanket out of flashlight","template":"Digging [something] out of [something]","placeholders":["blanket","flashlight"]}, +{"id":"208445","label":"spreading books onto bed","template":"Spreading [something] onto [something]","placeholders":["books","bed"]}, +{"id":"59467","label":"moving a pen and a screwdriver closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pen","a screwdriver"]}, +{"id":"91210","label":"plugging charger into plug","template":"Plugging [something] into [something]","placeholders":["charger","plug"]}, +{"id":"103336","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"18873","label":"showing matchbox on top of the wallet","template":"Showing [something] on top of [something]","placeholders":["matchbox","the wallet"]}, +{"id":"69727","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"39019","label":"moving purple microfiber up","template":"Moving [something] up","placeholders":["purple microfiber"]}, +{"id":"4866","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"164500","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"122879","label":"putting glass into glass holder","template":"Putting [something] into [something]","placeholders":["glass","glass holder"]}, +{"id":"194245","label":"throwing a teddybear","template":"Throwing [something]","placeholders":["a teddybear"]}, +{"id":"178000","label":"scooping baking soda up with spoon","template":"Scooping [something] up with [something]","placeholders":["baking soda","spoon"]}, +{"id":"207132","label":"holding a stapler in front of a fan","template":"Holding [something] in front of [something]","placeholders":["a stapler","a fan"]}, +{"id":"121872","label":"lifting a box of cereal up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a box of cereal"]}, +{"id":"186084","label":"holding toy in front of jar","template":"Holding [something] in front of [something]","placeholders":["toy","jar"]}, +{"id":"45459","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"126890","label":"uncovering paper clip","template":"Uncovering [something]","placeholders":["paper clip"]}, +{"id":"154576","label":"pretending to be tearing shoe","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shoe"]}, +{"id":"148402","label":"bending blinds so that it deforms","template":"Bending [something] so that it deforms","placeholders":["blinds"]}, +{"id":"11001","label":"moving hand of doll masha","template":"Moving [part] of [something]","placeholders":["hand","doll masha"]}, +{"id":"45156","label":"taking slipper from ground","template":"Taking [something] from [somewhere]","placeholders":["slipper","ground"]}, +{"id":"50271","label":"stuffing cloth into bucket","template":"Stuffing [something] into [something]","placeholders":["cloth","bucket"]}, +{"id":"161477","label":"pushing toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy"]}, +{"id":"174523","label":"spilling water onto counter","template":"Spilling [something] onto [something]","placeholders":["water","counter"]}, +{"id":"56679","label":"putting oil bottle on a surface","template":"Putting [something] on a surface","placeholders":["oil bottle"]}, +{"id":"55329","label":"covering bag with plastic cover","template":"Covering [something] with [something]","placeholders":["bag","plastic cover"]}, +{"id":"113169","label":"holding crayons in front of a coloring book","template":"Holding [something] in front of [something]","placeholders":["crayons","a coloring book"]}, +{"id":"160586","label":"lifting a bucket with a hammer on it","template":"Lifting [something] with [something] on it","placeholders":["a bucket","a hammer"]}, +{"id":"172151","label":"showing red pot holder to the camera","template":"Showing [something] to the camera","placeholders":["red pot holder"]}, +{"id":"114815","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"138146","label":"pretending to take shirt from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["shirt","floor"]}, +{"id":"119959","label":"taking a spinner out of a box","template":"Taking [something] out of [something]","placeholders":["a spinner","a box"]}, +{"id":"40279","label":"putting thermal cup on a surface","template":"Putting [something] on a surface","placeholders":["thermal cup"]}, +{"id":"118694","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"182930","label":"taking one pencil","template":"Taking [one of many similar things on the table]","placeholders":["one pencil"]}, +{"id":"47918","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"145683","label":"throwing a lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["a lighter"]}, +{"id":"132205","label":"holding broom in front of ladder","template":"Holding [something] in front of [something]","placeholders":["broom","ladder"]}, +{"id":"146813","label":"plugging cord into cable box but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","cable box"]}, +{"id":"157043","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"174599","label":"pulling pencil case from right to left","template":"Pulling [something] from right to left","placeholders":["pencil case"]}, +{"id":"138903","label":"plugging a usb into a pc but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb","a pc"]}, +{"id":"194118","label":"showing a perfume behind a flashlight","template":"Showing [something] behind [something]","placeholders":["a perfume","a flashlight"]}, +{"id":"101276","label":"putting compass next to punching machine","template":"Putting [something] next to [something]","placeholders":["compass","punching machine"]}, +{"id":"137513","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196021","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"167631","label":"holding a knife next to a fan","template":"Holding [something] next to [something]","placeholders":["a knife","a fan"]}, +{"id":"193595","label":"covering the tape with a towel","template":"Covering [something] with [something]","placeholders":["the tape","a towel"]}, +{"id":"12708","label":"holding glass over a glass","template":"Holding [something] over [something]","placeholders":["glass","a glass"]}, +{"id":"194484","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"71658","label":"holding helmet","template":"Holding [something]","placeholders":["helmet"]}, +{"id":"184495","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"195851","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"10327","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"193319","label":"turning the camera right while filming auto rickshaw","template":"Turning the camera right while filming [something]","placeholders":["auto rickshaw"]}, +{"id":"23063","label":"showing wires behind telephone","template":"Showing [something] behind [something]","placeholders":["wires","telephone"]}, +{"id":"40109","label":"pouring orange soda into a bowl","template":"Pouring [something] into [something]","placeholders":["orange soda","a bowl"]}, +{"id":"20082","label":"moving smartphone and smartphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["smartphone","smartphone"]}, +{"id":"133794","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"155182","label":"putting 4 board clips onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["4","board clips","diary"]}, +{"id":"41347","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"165708","label":"showing calendar to the camera","template":"Showing [something] to the camera","placeholders":["calendar"]}, +{"id":"104083","label":"holding paper in front of game","template":"Holding [something] in front of [something]","placeholders":["paper","game"]}, +{"id":"188081","label":"holding a phone over a bed","template":"Holding [something] over [something]","placeholders":["a phone","a bed"]}, +{"id":"122707","label":"holding a pen in front of a dvd","template":"Holding [something] in front of [something]","placeholders":["a pen","a dvd"]}, +{"id":"186354","label":"lifting up one end of banana, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["banana"]}, +{"id":"219074","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"130875","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"162061","label":"turning the camera left while filming snacks packet","template":"Turning the camera left while filming [something]","placeholders":["snacks packet"]}, +{"id":"100771","label":"pulling two ends of remote but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["remote"]}, +{"id":"148029","label":"covering a wok with a lid","template":"Covering [something] with [something]","placeholders":["a wok","a lid"]}, +{"id":"170391","label":"putting a nail on a surface","template":"Putting [something] on a surface","placeholders":["a nail"]}, +{"id":"100064","label":"moving away from poster with your camera","template":"Moving away from [something] with your camera","placeholders":["poster"]}, +{"id":"21349","label":"putting toy, remote and box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy","remote","box"]}, +{"id":"56553","label":"moving a mug and a remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","a remote"]}, +{"id":"106803","label":"showing a photo of a part of an amusement park to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a part of an amusement park"]}, +{"id":"72128","label":"putting a ball into a helmet","template":"Putting [something] into [something]","placeholders":["a ball","a helmet"]}, +{"id":"28183","label":"taking one toy car away from many toy cars","template":"Taking [one of many similar things on the table]","placeholders":["one toy car away from many toy cars"]}, +{"id":"64726","label":"turning a plastic cup upside down","template":"Turning [something] upside down","placeholders":["a plastic cup"]}, +{"id":"69379","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"89686","label":"covering apple with hand towel","template":"Covering [something] with [something]","placeholders":["apple","hand towel"]}, +{"id":"118009","label":"pushing a bottle with a book","template":"Pushing [something] with [something]","placeholders":["a bottle","a book"]}, +{"id":"79521","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"168777","label":"folding card","template":"Folding [something]","placeholders":["card"]}, +{"id":"123789","label":"powder tin colliding with perfume bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["powder tin","perfume bottle"]}, +{"id":"112487","label":"showing that candy is inside the box","template":"Showing that [something] is inside [something]","placeholders":["candy","the box"]}, +{"id":"69952","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"143460","label":"holding something over something","template":"Holding [something] over [something]","placeholders":["something","something"]}, +{"id":"59410","label":"covering a pen with a paper","template":"Covering [something] with [something]","placeholders":["a pen","a paper"]}, +{"id":"28991","label":"throwing hand towel in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["hand towel"]}, +{"id":"188279","label":"pouring a water into a glass","template":"Pouring [something] into [something]","placeholders":["a water","a glass"]}, +{"id":"80548","label":"tearing a sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a sheet of paper"]}, +{"id":"193255","label":"pushing ring so it spins","template":"Pushing [something] so it spins","placeholders":["ring"]}, +{"id":"185714","label":"pushing hat so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hat"]}, +{"id":"195098","label":"putting cashier that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["cashier"]}, +{"id":"118858","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"15743","label":"putting pen behind mug","template":"Putting [something] behind [something]","placeholders":["pen","mug"]}, +{"id":"162789","label":"uncovering a calculator","template":"Uncovering [something]","placeholders":["a calculator"]}, +{"id":"133903","label":"showing box behind cup","template":"Showing [something] behind [something]","placeholders":["box","cup"]}, +{"id":"58896","label":"pushing napkins so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["napkins"]}, +{"id":"2314","label":"plugging mobile charger into power socket","template":"Plugging [something] into [something]","placeholders":["mobile charger","power socket"]}, +{"id":"169866","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"60802","label":"pouring soda into clear container","template":"Pouring [something] into [something]","placeholders":["soda","clear container"]}, +{"id":"203240","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"30571","label":"spinning fruit so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fruit"]}, +{"id":"83861","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"15277","label":"a flower falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a flower"]}, +{"id":"148162","label":"putting a steel wheel on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a steel wheel"]}, +{"id":"109693","label":"pretending to be tearing blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["blanket"]}, +{"id":"36226","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"22822","label":"moving away from the table with your camera","template":"Moving away from [something] with your camera","placeholders":["the table"]}, +{"id":"152577","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"128455","label":"letting old beer bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["old beer bottle"]}, +{"id":"106848","label":"moving fork up","template":"Moving [something] up","placeholders":["fork"]}, +{"id":"54351","label":"moving grinding mechanism of pepper grinder","template":"Moving [part] of [something]","placeholders":["grinding mechanism","pepper grinder"]}, +{"id":"36741","label":"stacking 6 cans","template":"Stacking [number of] [something]","placeholders":["6","cans"]}, +{"id":"77598","label":"rolling glass to drink water on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["glass to drink water"]}, +{"id":"68921","label":"pulling two ends of a shoelace so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a shoelace"]}, +{"id":"112353","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"38226","label":"pushing water bottle from right to left","template":"Pushing [something] from right to left","placeholders":["water bottle"]}, +{"id":"29578","label":"throwing nutrition bar in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["nutrition bar"]}, +{"id":"213707","label":"turning the camera upwards while filming junction box","template":"Turning the camera upwards while filming [something]","placeholders":["junction box"]}, +{"id":"41241","label":"approaching a ball with your camera","template":"Approaching [something] with your camera","placeholders":["a ball"]}, +{"id":"16205","label":"moving the ball and the cube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the ball","the cube"]}, +{"id":"138078","label":"pouring water into a glass cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass cup"]}, +{"id":"142181","label":"moving paper clip away from the camera","template":"Moving [something] away from the camera","placeholders":["paper clip"]}, +{"id":"100765","label":"pouring juice into jar","template":"Pouring [something] into [something]","placeholders":["juice","jar"]}, +{"id":"204766","label":"putting 2 hair bands onto calculator","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bands","calculator"]}, +{"id":"81026","label":"twisting (wringing) tissue wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["tissue"]}, +{"id":"193473","label":"turning the camera left while filming wastebin","template":"Turning the camera left while filming [something]","placeholders":["wastebin"]}, +{"id":"11166","label":"brush falling like a rock","template":"[Something] falling like a rock","placeholders":["brush"]}, +{"id":"173634","label":"letting tomato roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tomato"]}, +{"id":"109596","label":"pushing remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote"]}, +{"id":"143756","label":"lifting ear plugs up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["ear plugs"]}, +{"id":"76748","label":"dropping a coin onto a handkerchief","template":"Dropping [something] onto [something]","placeholders":["a coin","a handkerchief"]}, +{"id":"55366","label":"hitting a bottle with a highlighter","template":"Hitting [something] with [something]","placeholders":["a bottle","a highlighter"]}, +{"id":"23062","label":"moving a cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a cup"]}, +{"id":"46605","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"204936","label":"pretending to be tearing something that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["something that is not tearable"]}, +{"id":"148931","label":"putting candy into bowl","template":"Putting [something] into [something]","placeholders":["candy","bowl"]}, +{"id":"214165","label":"showing the thermocol piece behind a screwdiver","template":"Showing [something] behind [something]","placeholders":["the thermocol piece","a screwdiver"]}, +{"id":"188146","label":"moving paper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["paper"]}, +{"id":"1023","label":"poking lime so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lime"]}, +{"id":"38335","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"143865","label":"lifting up one end of plastic case without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["plastic case"]}, +{"id":"25413","label":"moving metal of pendrive","template":"Moving [part] of [something]","placeholders":["metal","pendrive"]}, +{"id":"39501","label":"spinning a fidget so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget"]}, +{"id":"135795","label":"putting digital clock on a surface","template":"Putting [something] on a surface","placeholders":["digital clock"]}, +{"id":"177033","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"97607","label":"hitting tin with comb","template":"Hitting [something] with [something]","placeholders":["tin","comb"]}, +{"id":"192933","label":"showing a photo of curry to the camera","template":"Showing a photo of [something] to the camera","placeholders":["curry"]}, +{"id":"208846","label":"holding glass behind stapler","template":"Holding [something] behind [something]","placeholders":["glass","stapler"]}, +{"id":"152128","label":"moving scissor closer to dumbbell","template":"Moving [something] closer to [something]","placeholders":["scissor","dumbbell"]}, +{"id":"155885","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"160837","label":"receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["receipt"]}, +{"id":"62132","label":"hitting a match box with a hair pin","template":"Hitting [something] with [something]","placeholders":["a match box","a hair pin"]}, +{"id":"211689","label":"lifting bowl with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["bowl","bottle"]}, +{"id":"159435","label":"twisting cap of dr. pepper bottle","template":"Twisting [something]","placeholders":["cap of dr. pepper bottle"]}, +{"id":"95343","label":"laying supplement bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["supplement bottle"]}, +{"id":"9914","label":"tipping vape mod over","template":"Tipping [something] over","placeholders":["vape mod"]}, +{"id":"164370","label":"picking a mug up","template":"Picking [something] up","placeholders":["a mug"]}, +{"id":"138121","label":"poking glasses so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glasses"]}, +{"id":"72410","label":"plugging data cable into charger","template":"Plugging [something] into [something]","placeholders":["data cable","charger"]}, +{"id":"184018","label":"stuffing spoon into glass","template":"Stuffing [something] into [something]","placeholders":["spoon","glass"]}, +{"id":"61086","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"112264","label":"pushing a plastic rat skeleton so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a plastic rat skeleton"]}, +{"id":"153216","label":"throwing white badge against board clip","template":"Throwing [something] against [something]","placeholders":["white badge","board clip"]}, +{"id":"91981","label":"pen colliding with chalk and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pen","chalk"]}, +{"id":"13980","label":"moving a stapler down","template":"Moving [something] down","placeholders":["a stapler"]}, +{"id":"36174","label":"holding a spoon behind a cup","template":"Holding [something] behind [something]","placeholders":["a spoon","a cup"]}, +{"id":"190430","label":"throwing a bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a bottle"]}, +{"id":"11092","label":"wristwatch falling like a rock","template":"[Something] falling like a rock","placeholders":["wristwatch"]}, +{"id":"107995","label":"holding brown case","template":"Holding [something]","placeholders":["brown case"]}, +{"id":"73665","label":"plugging sink plug into sink with running water but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["sink plug","sink with running water"]}, +{"id":"45729","label":"tilting remote control with mobile on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["remote control","mobile"]}, +{"id":"192875","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"109678","label":"holding sponge ball","template":"Holding [something]","placeholders":["sponge ball"]}, +{"id":"24303","label":"taking a pickled chili pepper out of a jar","template":"Taking [something] out of [something]","placeholders":["a pickled chili pepper","a jar"]}, +{"id":"182576","label":"piling apple up","template":"Piling [something] up","placeholders":["apple"]}, +{"id":"10700","label":"throwing juice box","template":"Throwing [something]","placeholders":["juice box"]}, +{"id":"31220","label":"moving plate away from toy","template":"Moving [something] away from [something]","placeholders":["plate","toy"]}, +{"id":"159894","label":"putting a circuit tester on a surface","template":"Putting [something] on a surface","placeholders":["a circuit tester"]}, +{"id":"84862","label":"showing decor on top of counter","template":"Showing [something] on top of [something]","placeholders":["decor","counter"]}, +{"id":"31846","label":"trying to pour gems into plastic container, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["gems","plastic container"]}, +{"id":"183490","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"73501","label":"pushing a candle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a candle"]}, +{"id":"113948","label":"putting trash into the trash can","template":"Putting [something] into [something]","placeholders":["trash","the trash can"]}, +{"id":"30647","label":"pushing dish wash bar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["dish wash bar"]}, +{"id":"141388","label":"wiping cream off of toy","template":"Wiping [something] off of [something]","placeholders":["cream","toy"]}, +{"id":"124456","label":"taking t-shirt packet from floor","template":"Taking [something] from [somewhere]","placeholders":["t-shirt packet","floor"]}, +{"id":"13184","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"59391","label":"showing book to the camera","template":"Showing [something] to the camera","placeholders":["book"]}, +{"id":"178610","label":"turning a jar of jalapenos upside down","template":"Turning [something] upside down","placeholders":["a jar of jalapenos"]}, +{"id":"210489","label":"showing a photo of movie picture to the camera","template":"Showing a photo of [something] to the camera","placeholders":["movie picture"]}, +{"id":"64186","label":"pretending to be tearing a carpet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a carpet"]}, +{"id":"160467","label":"picking flower up","template":"Picking [something] up","placeholders":["flower"]}, +{"id":"28065","label":"putting mouse on a surface","template":"Putting [something] on a surface","placeholders":["mouse"]}, +{"id":"114212","label":"putting knife","template":"Putting [something similar to other things that are already on the table]","placeholders":["knife"]}, +{"id":"73515","label":"holding a tube of lip balm","template":"Holding [something]","placeholders":["a tube of lip balm"]}, +{"id":"200524","label":"pushing pill bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pill bottle"]}, +{"id":"185784","label":"pretending to poke plastic bag","template":"Pretending to poke [something]","placeholders":["plastic bag"]}, +{"id":"67964","label":"pretending to be tearing a hat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a hat"]}, +{"id":"29146","label":"moving glass and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","spoon"]}, +{"id":"153896","label":"moving a usb stick away from a cd","template":"Moving [something] away from [something]","placeholders":["a usb stick","a cd"]}, +{"id":"18830","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"63154","label":"pushing plate so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["plate"]}, +{"id":"210288","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"79514","label":"turning mini globe upside down","template":"Turning [something] upside down","placeholders":["mini globe"]}, +{"id":"205436","label":"putting bottle cap behind cup","template":"Putting [something] behind [something]","placeholders":["bottle cap","cup"]}, +{"id":"99973","label":"pouring melted ice cream out of cup","template":"Pouring [something] out of [something]","placeholders":["melted ice cream","cup"]}, +{"id":"160422","label":"throwing keys onto a surface","template":"Throwing [something] onto a surface","placeholders":["keys"]}, +{"id":"187246","label":"failing to put a box into an envelope because the box does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a box","an envelope","the box"]}, +{"id":"113374","label":"spinning white badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["white badge"]}, +{"id":"215565","label":"putting a flower, glue and a container on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a flower","glue","a container"]}, +{"id":"165759","label":"taking ball from table","template":"Taking [something] from [somewhere]","placeholders":["ball","table"]}, +{"id":"115191","label":"pretending to throw a plug","template":"Pretending to throw [something]","placeholders":["a plug"]}, +{"id":"55204","label":"covering a watch with a paper towel","template":"Covering [something] with [something]","placeholders":["a watch","a paper towel"]}, +{"id":"119470","label":"pen being deflected from paper roll","template":"[Something] being deflected from [something]","placeholders":["pen","paper roll"]}, +{"id":"74999","label":"plugging a charger into a wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a wall plug"]}, +{"id":"199039","label":"putting a toy upright on the table","template":"Putting [something] upright on the table","placeholders":["a toy"]}, +{"id":"213316","label":"moving bottle away from bottle","template":"Moving [something] away from [something]","placeholders":["bottle","bottle"]}, +{"id":"70155","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"142590","label":"moving a handkerchief closer to a comb","template":"Moving [something] closer to [something]","placeholders":["a handkerchief","a comb"]}, +{"id":"145252","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"150645","label":"moving scissor up","template":"Moving [something] up","placeholders":["scissor"]}, +{"id":"110723","label":"pretending to sprinkle air onto a bowl","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl"]}, +{"id":"58860","label":"trying but failing to attach a sticky note to a bowl because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticky note","a bowl"]}, +{"id":"33148","label":"pretending to pick remote control up","template":"Pretending to pick [something] up","placeholders":["remote control"]}, +{"id":"150776","label":"poking a candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle"]}, +{"id":"55274","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"47417","label":"tennis balls colliding with tennis ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["tennis balls","tennis ball"]}, +{"id":"184956","label":"putting a toy on a surface","template":"Putting [something] on a surface","placeholders":["a toy"]}, +{"id":"92967","label":"pulling two ends of cotton ball so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["cotton ball"]}, +{"id":"137117","label":"taking soft ball out of box","template":"Taking [something] out of [something]","placeholders":["soft ball","box"]}, +{"id":"44194","label":"putting 2 sharpners onto duster","template":"Putting [number of] [something] onto [something]","placeholders":["2","sharpners","duster"]}, +{"id":"137928","label":"plugging battery charger into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["battery charger","laptop"]}, +{"id":"161885","label":"turning the camera right while filming banana bunch","template":"Turning the camera right while filming [something]","placeholders":["banana bunch"]}, +{"id":"167518","label":"tearing binder paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["binder paper"]}, +{"id":"61334","label":"pushing paper towel roll so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper towel roll"]}, +{"id":"210912","label":"opening food container","template":"Opening [something]","placeholders":["food container"]}, +{"id":"123068","label":"moving glasses down","template":"Moving [something] down","placeholders":["glasses"]}, +{"id":"111289","label":"pretending to put syringe into mug","template":"Pretending to put [something] into [something]","placeholders":["syringe","mug"]}, +{"id":"43627","label":"moving thread and clip away from each other","template":"Moving [something] and [something] away from each other","placeholders":["thread","clip"]}, +{"id":"78793","label":"pulling box from behind of front of","template":"Pulling [something] from behind of [something]","placeholders":["box","front of"]}, +{"id":"70585","label":"pushing a stapler from left to right","template":"Pushing [something] from left to right","placeholders":["a stapler"]}, +{"id":"149685","label":"spoon colliding with spoon and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["spoon","spoon"]}, +{"id":"72950","label":"pretending to pick jug up","template":"Pretending to pick [something] up","placeholders":["jug"]}, +{"id":"105551","label":"holding purple microfiber","template":"Holding [something]","placeholders":["purple microfiber"]}, +{"id":"9555","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"214340","label":"holding spatula","template":"Holding [something]","placeholders":["spatula"]}, +{"id":"59260","label":"mail falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["mail"]}, +{"id":"105492","label":"covering dog with blanket","template":"Covering [something] with [something]","placeholders":["dog","blanket"]}, +{"id":"110133","label":"twisting two wires","template":"Twisting [something]","placeholders":["two wires"]}, +{"id":"211019","label":"putting rubix cube that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["rubix cube"]}, +{"id":"188603","label":"putting a bottle on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a bottle","the table"]}, +{"id":"81490","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"206364","label":"chips packaging falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["chips packaging"]}, +{"id":"217641","label":"pushing mouse from left to right","template":"Pushing [something] from left to right","placeholders":["mouse"]}, +{"id":"105660","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"130317","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"214537","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"46357","label":"pushing plastic stool so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plastic stool"]}, +{"id":"157456","label":"showing small game card to the camera","template":"Showing [something] to the camera","placeholders":["small game card"]}, +{"id":"54614","label":"holding incense box","template":"Holding [something]","placeholders":["incense box"]}, +{"id":"128539","label":"pushing nail varnish so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail varnish"]}, +{"id":"140665","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"17554","label":"spilling water next to sand paper","template":"Spilling [something] next to [something]","placeholders":["water","sand paper"]}, +{"id":"173363","label":"putting cup behind shield","template":"Putting [something] behind [something]","placeholders":["cup","shield"]}, +{"id":"116900","label":"sprinkling raisins onto oatmeal","template":"Sprinkling [something] onto [something]","placeholders":["raisins","oatmeal"]}, +{"id":"112624","label":"turning the camera left while filming poster","template":"Turning the camera left while filming [something]","placeholders":["poster"]}, +{"id":"49216","label":"putting a water bottle into a refrigerator","template":"Putting [something] into [something]","placeholders":["a water bottle","a refrigerator"]}, +{"id":"118270","label":"moving a smartphone towards the camera","template":"Moving [something] towards the camera","placeholders":["a smartphone"]}, +{"id":"60004","label":"putting a shoe underneath a blanket","template":"Putting [something] underneath [something]","placeholders":["a shoe","a blanket"]}, +{"id":"146782","label":"pencil box falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil box"]}, +{"id":"210751","label":"plugging charger into computer","template":"Plugging [something] into [something]","placeholders":["charger","computer"]}, +{"id":"195911","label":"taking one comb of many similar combs on the table","template":"Taking [one of many similar things on the table]","placeholders":["one comb of many similar combs on the table"]}, +{"id":"218431","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"101461","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"11961","label":"moving something and something away from each other","template":"Moving [something] and [something] away from each other","placeholders":["something","something"]}, +{"id":"113010","label":"bending cactus so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cactus"]}, +{"id":"110460","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"74890","label":"holding notebook","template":"Holding [something]","placeholders":["notebook"]}, +{"id":"216304","label":"wiping water off of mirror","template":"Wiping [something] off of [something]","placeholders":["water","mirror"]}, +{"id":"208961","label":"putting play-doh next to mug","template":"Putting [something] next to [something]","placeholders":["play-doh","mug"]}, +{"id":"197373","label":"turning the camera left while filming van","template":"Turning the camera left while filming [something]","placeholders":["van"]}, +{"id":"31416","label":"approaching a pen with your camera","template":"Approaching [something] with your camera","placeholders":["a pen"]}, +{"id":"73602","label":"showing display clothes to the camera","template":"Showing [something] to the camera","placeholders":["display clothes"]}, +{"id":"211345","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"208340","label":"moving plate and glove closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["plate","glove"]}, +{"id":"166237","label":"pushing a bottle from right to left","template":"Pushing [something] from right to left","placeholders":["a bottle"]}, +{"id":"22909","label":"holding spoon in front of coffee mug","template":"Holding [something] in front of [something]","placeholders":["spoon","coffee mug"]}, +{"id":"134338","label":"holding mail in front of tv","template":"Holding [something] in front of [something]","placeholders":["mail","tv"]}, +{"id":"72045","label":"turning the camera right while filming toy","template":"Turning the camera right while filming [something]","placeholders":["toy"]}, +{"id":"188355","label":"putting a pencil onto a magazine","template":"Putting [something] onto [something]","placeholders":["a pencil","a magazine"]}, +{"id":"75482","label":"wiping foam soap off of counter","template":"Wiping [something] off of [something]","placeholders":["foam soap","counter"]}, +{"id":"216936","label":"wiping water off of the table","template":"Wiping [something] off of [something]","placeholders":["water","the table"]}, +{"id":"24491","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"65636","label":"stuffing sock into sock","template":"Stuffing [something] into [something]","placeholders":["sock","sock"]}, +{"id":"9567","label":"uncovering remote","template":"Uncovering [something]","placeholders":["remote"]}, +{"id":"214831","label":"bottle being deflected from ball","template":"[Something] being deflected from [something]","placeholders":["bottle","ball"]}, +{"id":"161689","label":"putting apple onto can","template":"Putting [something] onto [something]","placeholders":["apple","can"]}, +{"id":"31319","label":"pretending to put a shot glass next to a measuring cup","template":"Pretending to put [something] next to [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"99776","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"210327","label":"pulling a mouse from left to right","template":"Pulling [something] from left to right","placeholders":["a mouse"]}, +{"id":"209926","label":"pulling board clip from behind of green pouch","template":"Pulling [something] from behind of [something]","placeholders":["board clip","green pouch"]}, +{"id":"182914","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"95615","label":"putting fruit onto bowl","template":"Putting [something] onto [something]","placeholders":["fruit","bowl"]}, +{"id":"115112","label":"unfolding book","template":"Unfolding [something]","placeholders":["book"]}, +{"id":"77667","label":"trying to bend hard book so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["hard book"]}, +{"id":"104658","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"29764","label":"throwing napkin","template":"Throwing [something]","placeholders":["napkin"]}, +{"id":"115396","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"218846","label":"dropping a bottletop in front of a ruler","template":"Dropping [something] in front of [something]","placeholders":["a bottletop","a ruler"]}, +{"id":"91309","label":"throwing tissue","template":"Throwing [something]","placeholders":["tissue"]}, +{"id":"6747","label":"taking a pen from the table","template":"Taking [something] from [somewhere]","placeholders":["a pen","the table"]}, +{"id":"103255","label":"stuffing candy into candy bag","template":"Stuffing [something] into [something]","placeholders":["candy","candy bag"]}, +{"id":"203902","label":"squeezing a paper","template":"Squeezing [something]","placeholders":["a paper"]}, +{"id":"118209","label":"showing that egg carton is empty","template":"Showing that [something] is empty","placeholders":["egg carton"]}, +{"id":"211176","label":"taking a pen out of a desk organizer","template":"Taking [something] out of [something]","placeholders":["a pen","a desk organizer"]}, +{"id":"207751","label":"showing a comb next to the candle packet","template":"Showing [something] next to [something]","placeholders":["a comb","the candle packet"]}, +{"id":"107349","label":"holding perfume bottle next to a video game case","template":"Holding [something] next to [something]","placeholders":["perfume bottle","a video game case"]}, +{"id":"199743","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"62548","label":"covering empty water bottle with comforter","template":"Covering [something] with [something]","placeholders":["empty water bottle","comforter"]}, +{"id":"35330","label":"covering a ball with a cloth","template":"Covering [something] with [something]","placeholders":["a ball","a cloth"]}, +{"id":"117724","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"20376","label":"pushing baking powder from right to left","template":"Pushing [something] from right to left","placeholders":["baking powder"]}, +{"id":"185409","label":"rolling union on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["union"]}, +{"id":"136882","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"138718","label":"putting polish remover behind cup","template":"Putting [something] behind [something]","placeholders":["polish remover","cup"]}, +{"id":"86983","label":"moving eyeglasses towards the camera","template":"Moving [something] towards the camera","placeholders":["eyeglasses"]}, +{"id":"64037","label":"turning the camera downwards while filming rubix cube","template":"Turning the camera downwards while filming [something]","placeholders":["rubix cube"]}, +{"id":"47503","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"205698","label":"taking pineapple from chair","template":"Taking [something] from [somewhere]","placeholders":["pineapple","chair"]}, +{"id":"172444","label":"plugging wire into mobile phone","template":"Plugging [something] into [something]","placeholders":["wire","mobile phone"]}, +{"id":"206053","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"111309","label":"moving a glass down","template":"Moving [something] down","placeholders":["a glass"]}, +{"id":"40260","label":"hitting a glue with bottle","template":"Hitting [something] with [something]","placeholders":["a glue","bottle"]}, +{"id":"197925","label":"taking knife","template":"Taking [one of many similar things on the table]","placeholders":["knife"]}, +{"id":"129371","label":"letting toilet paper roll roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["toilet paper roll"]}, +{"id":"159214","label":"twisting (wringing) napkin wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["napkin"]}, +{"id":"94365","label":"putting a shell casing","template":"Putting [something similar to other things that are already on the table]","placeholders":["a shell casing"]}, +{"id":"147159","label":"uncovering pc mouse","template":"Uncovering [something]","placeholders":["pc mouse"]}, +{"id":"75056","label":"putting cup and saucer on a surface","template":"Putting [something] on a surface","placeholders":["cup and saucer"]}, +{"id":"192980","label":"uncovering red spoon","template":"Uncovering [something]","placeholders":["red spoon"]}, +{"id":"65326","label":"taking a bottle cap","template":"Taking [one of many similar things on the table]","placeholders":["a bottle cap"]}, +{"id":"155989","label":"covering a glass with a scarf","template":"Covering [something] with [something]","placeholders":["a glass","a scarf"]}, +{"id":"119467","label":"taking a spoon out of a mug","template":"Taking [something] out of [something]","placeholders":["a spoon","a mug"]}, +{"id":"71304","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"139260","label":"dropping a wallet behind a mouse","template":"Dropping [something] behind [something]","placeholders":["a wallet","a mouse"]}, +{"id":"113291","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"65833","label":"apple being deflected from iron","template":"[Something] being deflected from [something]","placeholders":["apple","iron"]}, +{"id":"42661","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"14230","label":"poking a lighter so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a lighter"]}, +{"id":"180099","label":"pretending to take eggs from refrigerator","template":"Pretending to take [something] from [somewhere]","placeholders":["eggs","refrigerator"]}, +{"id":"163397","label":"wiping water off of wooden floor","template":"Wiping [something] off of [something]","placeholders":["water","wooden floor"]}, +{"id":"93436","label":"poking cord so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cord"]}, +{"id":"208810","label":"squeezing squeezing ball","template":"Squeezing [something]","placeholders":["squeezing ball"]}, +{"id":"12239","label":"holding toy cell phone","template":"Holding [something]","placeholders":["toy cell phone"]}, +{"id":"23898","label":"moving canister and cup so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["canister","cup"]}, +{"id":"28984","label":"spinning something so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["something"]}, +{"id":"10405","label":"moving bucket towards the camera","template":"Moving [something] towards the camera","placeholders":["bucket"]}, +{"id":"219925","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"114092","label":"putting power bank and a rubix cube on the table","template":"Putting [something] and [something] on the table","placeholders":["power bank","a rubix cube"]}, +{"id":"87380","label":"dropping a plastic toy into a glass jar","template":"Dropping [something] into [something]","placeholders":["a plastic toy","a glass jar"]}, +{"id":"124","label":"wiping water off of desk","template":"Wiping [something] off of [something]","placeholders":["water","desk"]}, +{"id":"32472","label":"putting phone on a surface","template":"Putting [something] on a surface","placeholders":["phone"]}, +{"id":"163470","label":"closing a bottle","template":"Closing [something]","placeholders":["a bottle"]}, +{"id":"61951","label":"letting lipstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipstick"]}, +{"id":"77961","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"28606","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"180626","label":"pretending to turn a can upside down","template":"Pretending to turn [something] upside down","placeholders":["a can"]}, +{"id":"51855","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"174385","label":"pretending to be tearing brown covered note book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["brown covered note book"]}, +{"id":"78578","label":"trying but failing to attach a paper to phone because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","phone"]}, +{"id":"13481","label":"turning the camera right while filming white candle","template":"Turning the camera right while filming [something]","placeholders":["white candle"]}, +{"id":"132634","label":"pushing a spoon with a belt","template":"Pushing [something] with [something]","placeholders":["a spoon","a belt"]}, +{"id":"77892","label":"showing that a mug is empty","template":"Showing that [something] is empty","placeholders":["a mug"]}, +{"id":"188191","label":"putting orange pencil sharpner, red spoon and stapler on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["orange pencil sharpner","red spoon","stapler"]}, +{"id":"13953","label":"covering bottle with cloth","template":"Covering [something] with [something]","placeholders":["bottle","cloth"]}, +{"id":"32626","label":"hitting table with remote","template":"Hitting [something] with [something]","placeholders":["table","remote"]}, +{"id":"183501","label":"throwing tissue in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tissue"]}, +{"id":"115706","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"147645","label":"bending paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper"]}, +{"id":"166656","label":"dropping a toothpick onto a box","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a box"]}, +{"id":"132365","label":"pouring rocks onto floor","template":"Pouring [something] onto [something]","placeholders":["rocks","floor"]}, +{"id":"90199","label":"piling a mouse, makeupbrush, charger usb adaptor and tablestopper up","template":"Piling [something] up","placeholders":["a mouse, makeupbrush, charger usb adaptor and tablestopper"]}, +{"id":"211679","label":"screwdriver falling like a rock","template":"[Something] falling like a rock","placeholders":["screwdriver"]}, +{"id":"193940","label":"dropping ball onto table","template":"Dropping [something] onto [something]","placeholders":["ball","table"]}, +{"id":"134371","label":"folding magazine","template":"Folding [something]","placeholders":["magazine"]}, +{"id":"25330","label":"pretending to close magazine without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["magazine"]}, +{"id":"65291","label":"throwing pipe cleaner in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pipe cleaner"]}, +{"id":"124399","label":"poking box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["box"]}, +{"id":"112330","label":"hitting onion with a garlic","template":"Hitting [something] with [something]","placeholders":["onion","a garlic"]}, +{"id":"97632","label":"moving pen and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","remote"]}, +{"id":"89143","label":"moving a glass up","template":"Moving [something] up","placeholders":["a glass"]}, +{"id":"44507","label":"showing that white toy car is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["white toy car","green bowl"]}, +{"id":"164265","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"18135","label":"tennis ball colliding with golf ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["tennis ball","golf ball"]}, +{"id":"107287","label":"showing that metallblock is inside a box","template":"Showing that [something] is inside [something]","placeholders":["metallblock","a box"]}, +{"id":"190508","label":"holding cure for the nose in front of gift bag","template":"Holding [something] in front of [something]","placeholders":["cure for the nose","gift bag"]}, +{"id":"45887","label":"tilting tree twig with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tree twig","finger"]}, +{"id":"194800","label":"turning the camera right while filming park entrance","template":"Turning the camera right while filming [something]","placeholders":["park entrance"]}, +{"id":"168062","label":"lifting a lock with a nail polish on it","template":"Lifting [something] with [something] on it","placeholders":["a lock","a nail polish"]}, +{"id":"183390","label":"dropping a sieve next to a belt","template":"Dropping [something] next to [something]","placeholders":["a sieve","a belt"]}, +{"id":"62706","label":"poking a stuffed bird so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a stuffed bird"]}, +{"id":"104319","label":"trying to bend a tablet so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a tablet"]}, +{"id":"26366","label":"spinning a lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lighter"]}, +{"id":"180882","label":"pretending to poke blanket","template":"Pretending to poke [something]","placeholders":["blanket"]}, +{"id":"19845","label":"putting spoon into coffee mug","template":"Putting [something] into [something]","placeholders":["spoon","coffee mug"]}, +{"id":"43077","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"68479","label":"moving mouse and mobile away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mouse","mobile"]}, +{"id":"50651","label":"turning the camera upwards while filming snacks","template":"Turning the camera upwards while filming [something]","placeholders":["snacks"]}, +{"id":"174560","label":"taking a book from the shelf","template":"Taking [something] from [somewhere]","placeholders":["a book","the shelf"]}, +{"id":"112221","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"961","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"69126","label":"showing hair dryer to the camera","template":"Showing [something] to the camera","placeholders":["hair dryer"]}, +{"id":"117341","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"35438","label":"moving away from white board clip with your camera","template":"Moving away from [something] with your camera","placeholders":["white board clip"]}, +{"id":"20123","label":"moving keys away from phone","template":"Moving [something] away from [something]","placeholders":["keys","phone"]}, +{"id":"100534","label":"putting a battery and a coin on the table","template":"Putting [something] and [something] on the table","placeholders":["a battery","a coin"]}, +{"id":"187609","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"101995","label":"pouring coffee into a cup","template":"Pouring [something] into [something]","placeholders":["coffee","a cup"]}, +{"id":"87900","label":"covering shirt with blanket","template":"Covering [something] with [something]","placeholders":["shirt","blanket"]}, +{"id":"108662","label":"dropping coins into milk jug","template":"Dropping [something] into [something]","placeholders":["coins","milk jug"]}, +{"id":"217395","label":"squeezing a peanutbutter jar","template":"Squeezing [something]","placeholders":["a peanutbutter jar"]}, +{"id":"209562","label":"holding letter in front of calculater","template":"Holding [something] in front of [something]","placeholders":["letter","calculater"]}, +{"id":"108531","label":"pulling pencil out of box","template":"Pulling [something] out of [something]","placeholders":["pencil","box"]}, +{"id":"124973","label":"throwing a marker in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a marker"]}, +{"id":"53252","label":"putting lighter into cup","template":"Putting [something] into [something]","placeholders":["lighter","cup"]}, +{"id":"206631","label":"putting paint brush onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["paint brush"]}, +{"id":"84254","label":"pushing tennis ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tennis ball"]}, +{"id":"96209","label":"moving bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["bottle"]}, +{"id":"21174","label":"bending a paperclip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paperclip"]}, +{"id":"11824","label":"lifting up one end of flower pot, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["flower pot"]}, +{"id":"143033","label":"removing coffee pot, revealing lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["coffee pot","lighter"]}, +{"id":"5621","label":"pouring water into tumbler until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","tumbler"]}, +{"id":"97036","label":"lifting red pouch up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["red pouch"]}, +{"id":"12229","label":"pushing a pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pencil"]}, +{"id":"41922","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"9226","label":"a cellphone case falling like a rock","template":"[Something] falling like a rock","placeholders":["a cellphone case"]}, +{"id":"127158","label":"pouring soda out of can","template":"Pouring [something] out of [something]","placeholders":["soda","can"]}, +{"id":"43626","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"2290","label":"plugging phone charger into outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","outlet"]}, +{"id":"140254","label":"showing that something is inside something","template":"Showing that [something] is inside [something]","placeholders":["something","something"]}, +{"id":"134946","label":"moving notebook and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["notebook","pen"]}, +{"id":"115906","label":"letting toy car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy car"]}, +{"id":"25791","label":"holding cup next to mouse","template":"Holding [something] next to [something]","placeholders":["cup","mouse"]}, +{"id":"175512","label":"pushing ink bottle from right to left","template":"Pushing [something] from right to left","placeholders":["ink bottle"]}, +{"id":"165772","label":"uncovering a watch","template":"Uncovering [something]","placeholders":["a watch"]}, +{"id":"17051","label":"stuffing tissue into cylinder","template":"Stuffing [something] into [something]","placeholders":["tissue","cylinder"]}, +{"id":"14707","label":"pretending to close cd box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["cd box"]}, +{"id":"104671","label":"plugging a plug head into socket","template":"Plugging [something] into [something]","placeholders":["a plug head","socket"]}, +{"id":"38093","label":"turning bottle cap upside down","template":"Turning [something] upside down","placeholders":["bottle cap"]}, +{"id":"41140","label":"hitting a container of nuts with a pencil","template":"Hitting [something] with [something]","placeholders":["a container of nuts","a pencil"]}, +{"id":"94719","label":"dropping blackberry priv next to flip flop","template":"Dropping [something] next to [something]","placeholders":["blackberry priv","flip flop"]}, +{"id":"123918","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"51345","label":"pushing a box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box"]}, +{"id":"168091","label":"putting shopping cart on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["shopping cart"]}, +{"id":"2517","label":"putting usb, keys and spinner on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["usb","keys","spinner"]}, +{"id":"158336","label":"taking color pencil","template":"Taking [one of many similar things on the table]","placeholders":["color pencil"]}, +{"id":"169847","label":"pretending to sprinkle air onto an eraser","template":"Pretending to sprinkle air onto [something]","placeholders":["an eraser"]}, +{"id":"13776","label":"tipping a purse with money in it over, so nothing falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a purse","money in it","nothing"]}, +{"id":"128280","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"163790","label":"piling clothing up","template":"Piling [something] up","placeholders":["clothing"]}, +{"id":"67552","label":"stuffing clothing into a plastic bag","template":"Stuffing [something] into [something]","placeholders":["clothing","a plastic bag"]}, +{"id":"118797","label":"spilling drink onto surface","template":"Spilling [something] onto [something]","placeholders":["drink","surface"]}, +{"id":"144726","label":"turning the camera downwards while filming something","template":"Turning the camera downwards while filming [something]","placeholders":["something"]}, +{"id":"54618","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"43712","label":"opening battery compartment of tv remote","template":"Opening [something]","placeholders":["battery compartment of tv remote"]}, +{"id":"190789","label":"holding hole puncher next to playstation controller","template":"Holding [something] next to [something]","placeholders":["hole puncher","playstation controller"]}, +{"id":"85178","label":"holding toy behind jar","template":"Holding [something] behind [something]","placeholders":["toy","jar"]}, +{"id":"141090","label":"moving mobile phone away from the adapter","template":"Moving [something] away from [something]","placeholders":["mobile phone","the adapter"]}, +{"id":"176712","label":"plugging charger into power strip","template":"Plugging [something] into [something]","placeholders":["charger","power strip"]}, +{"id":"103872","label":"wiping jam off of a plate","template":"Wiping [something] off of [something]","placeholders":["jam","a plate"]}, +{"id":"118739","label":"spinning a fork that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a fork"]}, +{"id":"140317","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"138115","label":"stuffing car keys into a pocket","template":"Stuffing [something] into [something]","placeholders":["car keys","a pocket"]}, +{"id":"141404","label":"spinning phone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["phone"]}, +{"id":"142928","label":"moving a pen and a pencil so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a pencil"]}, +{"id":"103969","label":"moving a plastic bottle up","template":"Moving [something] up","placeholders":["a plastic bottle"]}, +{"id":"129307","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"35504","label":"dropping a coin onto a comb","template":"Dropping [something] onto [something]","placeholders":["a coin","a comb"]}, +{"id":"60731","label":"pouring water into plastic case","template":"Pouring [something] into [something]","placeholders":["water","plastic case"]}, +{"id":"14343","label":"laying a figurine on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a figurine"]}, +{"id":"23615","label":"stuffing money into bowl","template":"Stuffing [something] into [something]","placeholders":["money","bowl"]}, +{"id":"162187","label":"moving glass of lantern","template":"Moving [part] of [something]","placeholders":["glass","lantern"]}, +{"id":"198844","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"104262","label":"taking hairclip","template":"Taking [one of many similar things on the table]","placeholders":["hairclip"]}, +{"id":"165792","label":"pushing spoon from right to left","template":"Pushing [something] from right to left","placeholders":["spoon"]}, +{"id":"178208","label":"putting sticky note","template":"Putting [something similar to other things that are already on the table]","placeholders":["sticky note"]}, +{"id":"211461","label":"piling notebooks up","template":"Piling [something] up","placeholders":["notebooks"]}, +{"id":"209312","label":"hitting a wine glass with a spoon","template":"Hitting [something] with [something]","placeholders":["a wine glass","a spoon"]}, +{"id":"7493","label":"putting bottle behind shoe","template":"Putting [something] behind [something]","placeholders":["bottle","shoe"]}, +{"id":"200373","label":"dropping packet in front of chair","template":"Dropping [something] in front of [something]","placeholders":["packet","chair"]}, +{"id":"215115","label":"turning the camera upwards while filming scooty","template":"Turning the camera upwards while filming [something]","placeholders":["scooty"]}, +{"id":"149185","label":"plugging charger into tablet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","tablet"]}, +{"id":"85116","label":"ball being deflected from helmet","template":"[Something] being deflected from [something]","placeholders":["ball","helmet"]}, +{"id":"97788","label":"hitting a bicycle wheel with a shoe","template":"Hitting [something] with [something]","placeholders":["a bicycle wheel","a shoe"]}, +{"id":"103641","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"30104","label":"pushing wallet from left to right","template":"Pushing [something] from left to right","placeholders":["wallet"]}, +{"id":"18943","label":"folding bill","template":"Folding [something]","placeholders":["bill"]}, +{"id":"52999","label":"taking pencil","template":"Taking [one of many similar things on the table]","placeholders":["pencil"]}, +{"id":"170849","label":"pushing wireless mouse from right to left","template":"Pushing [something] from right to left","placeholders":["wireless mouse"]}, +{"id":"162459","label":"hitting perfume with lighter","template":"Hitting [something] with [something]","placeholders":["perfume","lighter"]}, +{"id":"74226","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"62403","label":"putting a plastic bottle that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a plastic bottle"]}, +{"id":"121139","label":"taking crackers","template":"Taking [one of many similar things on the table]","placeholders":["crackers"]}, +{"id":"207422","label":"showing keys behind wallet","template":"Showing [something] behind [something]","placeholders":["keys","wallet"]}, +{"id":"183082","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"54965","label":"closing tin container","template":"Closing [something]","placeholders":["tin container"]}, +{"id":"213409","label":"putting a bottle on a surface","template":"Putting [something] on a surface","placeholders":["a bottle"]}, +{"id":"16515","label":"pretending to take a mug out of a sink","template":"Pretending to take [something] out of [something]","placeholders":["a mug","a sink"]}, +{"id":"126939","label":"twisting aluminium foil","template":"Twisting [something]","placeholders":["aluminium foil"]}, +{"id":"86378","label":"spilling water onto desk","template":"Spilling [something] onto [something]","placeholders":["water","desk"]}, +{"id":"181381","label":"holding spectacles","template":"Holding [something]","placeholders":["spectacles"]}, +{"id":"189796","label":"putting a napkin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a napkin"]}, +{"id":"160424","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"103742","label":"putting a water bottle onto a plastic bag so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a water bottle","a plastic bag"]}, +{"id":"134580","label":"dropping crumpled paper next to trash can","template":"Dropping [something] next to [something]","placeholders":["crumpled paper","trash can"]}, +{"id":"172985","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"43331","label":"holding blanket next to hat","template":"Holding [something] next to [something]","placeholders":["blanket","hat"]}, +{"id":"25171","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"109452","label":"plugging phone charger into plug extension","template":"Plugging [something] into [something]","placeholders":["phone charger","plug extension"]}, +{"id":"1328","label":"showing white out on top of a big eraser","template":"Showing [something] on top of [something]","placeholders":["white out","a big eraser"]}, +{"id":"193830","label":"putting box underneath cup","template":"Putting [something] underneath [something]","placeholders":["box","cup"]}, +{"id":"185034","label":"turning the camera upwards while filming red watch box","template":"Turning the camera upwards while filming [something]","placeholders":["red watch box"]}, +{"id":"8418","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"192986","label":"uncovering scissors","template":"Uncovering [something]","placeholders":["scissors"]}, +{"id":"78752","label":"moving pen and lead box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","lead box"]}, +{"id":"213730","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"210425","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"205533","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"146846","label":"plugging a cord into a surge protector but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","a surge protector"]}, +{"id":"145803","label":"pulling remote from behind of box","template":"Pulling [something] from behind of [something]","placeholders":["remote","box"]}, +{"id":"132000","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"3073","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"38860","label":"showing spoon next to lipstick","template":"Showing [something] next to [something]","placeholders":["spoon","lipstick"]}, +{"id":"57676","label":"stuffing cotton into bottle","template":"Stuffing [something] into [something]","placeholders":["cotton","bottle"]}, +{"id":"200419","label":"pulling pen out of notebook","template":"Pulling [something] out of [something]","placeholders":["pen","notebook"]}, +{"id":"128042","label":"tipping pepper over","template":"Tipping [something] over","placeholders":["pepper"]}, +{"id":"194370","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"67433","label":"uncovering remote","template":"Uncovering [something]","placeholders":["remote"]}, +{"id":"178576","label":"moving usb flash drive closer to cover","template":"Moving [something] closer to [something]","placeholders":["usb flash drive","cover"]}, +{"id":"84672","label":"pouring sugar onto glass","template":"Pouring [something] onto [something]","placeholders":["sugar","glass"]}, +{"id":"5759","label":"showing cup next to paper towel","template":"Showing [something] next to [something]","placeholders":["cup","paper towel"]}, +{"id":"206699","label":"throwing crumbled paper","template":"Throwing [something]","placeholders":["crumbled paper"]}, +{"id":"32468","label":"trying but failing to attach cable to adapter because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cable","adapter"]}, +{"id":"12106","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"178445","label":"turning the camera right while filming light switch","template":"Turning the camera right while filming [something]","placeholders":["light switch"]}, +{"id":"206162","label":"turning water bottle upside down","template":"Turning [something] upside down","placeholders":["water bottle"]}, +{"id":"57548","label":"pushing a disposable saucer from left to right","template":"Pushing [something] from left to right","placeholders":["a disposable saucer"]}, +{"id":"96695","label":"pretending to open lipstick without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["lipstick"]}, +{"id":"69354","label":"unfolding socks","template":"Unfolding [something]","placeholders":["socks"]}, +{"id":"29471","label":"throwing a receipt onto a surface","template":"Throwing [something] onto a surface","placeholders":["a receipt"]}, +{"id":"106","label":"opening waste basket","template":"Opening [something]","placeholders":["waste basket"]}, +{"id":"52995","label":"touching (without moving) top of hand soap","template":"Touching (without moving) [part] of [something]","placeholders":["top","hand soap"]}, +{"id":"59183","label":"holding a washclothe next to a towel","template":"Holding [something] next to [something]","placeholders":["a washclothe","a towel"]}, +{"id":"83012","label":"hitting paper punch with remote","template":"Hitting [something] with [something]","placeholders":["paper punch","remote"]}, +{"id":"126799","label":"moving purple microfiber down","template":"Moving [something] down","placeholders":["purple microfiber"]}, +{"id":"79050","label":"burying jar lid in small tomatoes","template":"Burying [something] in [something]","placeholders":["jar lid","small tomatoes"]}, +{"id":"121356","label":"plugging a plug into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","the wall"]}, +{"id":"59179","label":"spreading pens onto the table","template":"Spreading [something] onto [something]","placeholders":["pens","the table"]}, +{"id":"194984","label":"holding cell phone next to face","template":"Holding [something] next to [something]","placeholders":["cell phone","face"]}, +{"id":"137539","label":"holding a harmonica next to a pocket knife","template":"Holding [something] next to [something]","placeholders":["a harmonica","a pocket knife"]}, +{"id":"4419","label":"wiping candy off of canister","template":"Wiping [something] off of [something]","placeholders":["candy","canister"]}, +{"id":"134296","label":"tipping a spice bottle over","template":"Tipping [something] over","placeholders":["a spice bottle"]}, +{"id":"8909","label":"bending a pen so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen"]}, +{"id":"210309","label":"moving scissors closer to mouse","template":"Moving [something] closer to [something]","placeholders":["scissors","mouse"]}, +{"id":"25214","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"157075","label":"hitting lamp with pen","template":"Hitting [something] with [something]","placeholders":["lamp","pen"]}, +{"id":"161965","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"59065","label":"pretending to spread air onto table","template":"Pretending to spread air onto [something]","placeholders":["table"]}, +{"id":"98171","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"124860","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"55585","label":"poking cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cup"]}, +{"id":"67980","label":"tipping a box over","template":"Tipping [something] over","placeholders":["a box"]}, +{"id":"78888","label":"pouring coffee into a cup","template":"Pouring [something] into [something]","placeholders":["coffee","a cup"]}, +{"id":"132084","label":"putting a spoon to other spoons on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a spoon to other spoons on the table"]}, +{"id":"3846","label":"poking a stack of wooden pieces without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["wooden pieces"]}, +{"id":"12043","label":"rolling a water bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a water bottle"]}, +{"id":"139808","label":"moving something away from the camera","template":"Moving [something] away from the camera","placeholders":["something"]}, +{"id":"160978","label":"putting a deoderant aerosol and a tube of lotion on the table","template":"Putting [something] and [something] on the table","placeholders":["a deoderant aerosol","a tube of lotion"]}, +{"id":"136958","label":"pretending to open trash can without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["trash can"]}, +{"id":"156543","label":"showing that steel glass is empty","template":"Showing that [something] is empty","placeholders":["steel glass"]}, +{"id":"102876","label":"putting lollipop, tissues and coin on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["lollipop","tissues","coin"]}, +{"id":"73081","label":"a receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a receipt"]}, +{"id":"62649","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"159299","label":"dropping a knife next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a knife","a matchbox"]}, +{"id":"2674","label":"poking table cover so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["table cover"]}, +{"id":"24053","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"39930","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"60155","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"184916","label":"showing a match box next to the box","template":"Showing [something] next to [something]","placeholders":["a match box","the box"]}, +{"id":"63663","label":"poking lime so that it spins around","template":"Poking [something] so that it spins around","placeholders":["lime"]}, +{"id":"124988","label":"holding water bottle next to green clip","template":"Holding [something] next to [something]","placeholders":["water bottle","green clip"]}, +{"id":"33157","label":"folding car's side mirror","template":"Folding [something]","placeholders":["car's side mirror"]}, +{"id":"95249","label":"water botle colliding with water botle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["water botle","water botle"]}, +{"id":"47538","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"123156","label":"pushing a sharpener so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a sharpener"]}, +{"id":"158100","label":"opening a bottle cap","template":"Opening [something]","placeholders":["a bottle cap"]}, +{"id":"183851","label":"twisting charger cable","template":"Twisting [something]","placeholders":["charger cable"]}, +{"id":"113430","label":"pretending to be tearing something that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["something that is not tearable"]}, +{"id":"90446","label":"poking a hole into clay","template":"Poking a hole into [something soft]","placeholders":["clay"]}, +{"id":"75719","label":"lifting plate with flower pot on it","template":"Lifting [something] with [something] on it","placeholders":["plate","flower pot"]}, +{"id":"75905","label":"moving bottle and tube so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["bottle","tube"]}, +{"id":"103584","label":"holding vape","template":"Holding [something]","placeholders":["vape"]}, +{"id":"44794","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"20388","label":"pretending to pick toilet paper roll up","template":"Pretending to pick [something] up","placeholders":["toilet paper roll"]}, +{"id":"130616","label":"putting bottled water and bottle of oil on the table","template":"Putting [something] and [something] on the table","placeholders":["bottled water","bottle of oil"]}, +{"id":"70897","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"111678","label":"trying to bend highlighter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["highlighter"]}, +{"id":"190933","label":"putting 1 car onto remote","template":"Putting [number of] [something] onto [something]","placeholders":["1","car","remote"]}, +{"id":"28733","label":"lifting a folder with a mouse on it","template":"Lifting [something] with [something] on it","placeholders":["a folder","a mouse"]}, +{"id":"157207","label":"putting hairband, scale and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hairband","scale","pen"]}, +{"id":"213743","label":"putting a bottle and card on the table","template":"Putting [something] and [something] on the table","placeholders":["a bottle","card"]}, +{"id":"155170","label":"showing a bottle behind stool","template":"Showing [something] behind [something]","placeholders":["a bottle","stool"]}, +{"id":"128818","label":"turning something upside down","template":"Turning [something] upside down","placeholders":["something"]}, +{"id":"215962","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"152595","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"120774","label":"pretending to pick small book up","template":"Pretending to pick [something] up","placeholders":["small book"]}, +{"id":"30487","label":"putting pen that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["pen"]}, +{"id":"40297","label":"turning a pepper shaker upside down","template":"Turning [something] upside down","placeholders":["a pepper shaker"]}, +{"id":"87991","label":"showing brown bracelet to the camera","template":"Showing [something] to the camera","placeholders":["brown bracelet"]}, +{"id":"136721","label":"tearing something just a little bit","template":"Tearing [something] just a little bit","placeholders":["something"]}, +{"id":"119146","label":"covering magnifying glass with duster","template":"Covering [something] with [something]","placeholders":["magnifying glass","duster"]}, +{"id":"139124","label":"putting fork and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["fork","spoon"]}, +{"id":"210444","label":"lifting the razor up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["the razor"]}, +{"id":"19242","label":"unfolding ipad cover","template":"Unfolding [something]","placeholders":["ipad cover"]}, +{"id":"162527","label":"moving a toy up","template":"Moving [something] up","placeholders":["a toy"]}, +{"id":"135124","label":"pretending to open cellphone without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cellphone"]}, +{"id":"186025","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"68077","label":"poking a stack of pillows so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["pillows"]}, +{"id":"126299","label":"moving cup and teaspoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","teaspoon"]}, +{"id":"99480","label":"spinning bottel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottel"]}, +{"id":"48710","label":"pulling glass from left to right","template":"Pulling [something] from left to right","placeholders":["glass"]}, +{"id":"152201","label":"putting powder tin, lock and pomegranate on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["powder tin","lock","pomegranate"]}, +{"id":"92131","label":"lifting up one end of a folder without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a folder"]}, +{"id":"98869","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"17476","label":"putting the stapler pin into the stapler","template":"Putting [something] into [something]","placeholders":["the stapler pin","the stapler"]}, +{"id":"66019","label":"lifting cup with book on it","template":"Lifting [something] with [something] on it","placeholders":["cup","book"]}, +{"id":"179909","label":"squeezing red pot holder","template":"Squeezing [something]","placeholders":["red pot holder"]}, +{"id":"21924","label":"moving cup up","template":"Moving [something] up","placeholders":["cup"]}, +{"id":"5225","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"28462","label":"dropping a lighter onto a phone","template":"Dropping [something] onto [something]","placeholders":["a lighter","a phone"]}, +{"id":"124076","label":"pulling two ends of a butterknife but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a butterknife"]}, +{"id":"215221","label":"taking one match box of many similar match boxes on the table","template":"Taking [one of many similar things on the table]","placeholders":["one match box of many similar match boxes on the table"]}, +{"id":"180769","label":"throwing chocolate pretzel sticks in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["chocolate pretzel sticks"]}, +{"id":"148770","label":"closing the book","template":"Closing [something]","placeholders":["the book"]}, +{"id":"99958","label":"putting 3 pencil sharpners onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["3","pencil sharpners","yellow note"]}, +{"id":"143415","label":"holding a plastic fork over a pot of flowers","template":"Holding [something] over [something]","placeholders":["a plastic fork","a pot of flowers"]}, +{"id":"28765","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"106497","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"90627","label":"throwing newspaper against wall","template":"Throwing [something] against [something]","placeholders":["newspaper","wall"]}, +{"id":"39641","label":"fork falling like a rock","template":"[Something] falling like a rock","placeholders":["fork"]}, +{"id":"193193","label":"putting cream tube behind apple","template":"Putting [something] behind [something]","placeholders":["cream tube","apple"]}, +{"id":"114121","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"110354","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"218705","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"69251","label":"showing a photo of tubelight to the camera","template":"Showing a photo of [something] to the camera","placeholders":["tubelight"]}, +{"id":"93162","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"218634","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"74478","label":"dropping dough onto mat","template":"Dropping [something] onto [something]","placeholders":["dough","mat"]}, +{"id":"76120","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"27860","label":"turning the camera right while filming small green ball","template":"Turning the camera right while filming [something]","placeholders":["small green ball"]}, +{"id":"183880","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"16962","label":"turning the camera left while filming water bottle","template":"Turning the camera left while filming [something]","placeholders":["water bottle"]}, +{"id":"94171","label":"moving lipstick and bag closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lipstick","bag"]}, +{"id":"216666","label":"pretending to turn a fidget spinner upside down","template":"Pretending to turn [something] upside down","placeholders":["a fidget spinner"]}, +{"id":"198272","label":"throwing a plastic bottle cap in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a plastic bottle cap"]}, +{"id":"158538","label":"pushing can from left to right","template":"Pushing [something] from left to right","placeholders":["can"]}, +{"id":"212550","label":"pouring water into a mason jar","template":"Pouring [something] into [something]","placeholders":["water","a mason jar"]}, +{"id":"111433","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"4655","label":"bending a branch until it breaks","template":"Bending [something] until it breaks","placeholders":["a branch"]}, +{"id":"57358","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"81910","label":"showing autorickshaw to the camera","template":"Showing [something] to the camera","placeholders":["autorickshaw"]}, +{"id":"197939","label":"pretending or failing to wipe stain off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","chair"]}, +{"id":"129494","label":"pouring water onto glass","template":"Pouring [something] onto [something]","placeholders":["water","glass"]}, +{"id":"86314","label":"pouring soda into a glass","template":"Pouring [something] into [something]","placeholders":["soda","a glass"]}, +{"id":"92857","label":"turning the camera right while filming purple microfiber","template":"Turning the camera right while filming [something]","placeholders":["purple microfiber"]}, +{"id":"153244","label":"pulling cloth out of case","template":"Pulling [something] out of [something]","placeholders":["cloth","case"]}, +{"id":"21816","label":"die colliding with die and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["die","die"]}, +{"id":"119433","label":"moving a water bottle up","template":"Moving [something] up","placeholders":["a water bottle"]}, +{"id":"17233","label":"attaching a cloth holder clip to a leaf","template":"Attaching [something] to [something]","placeholders":["a cloth holder clip","a leaf"]}, +{"id":"63437","label":"wiping furniture polish off of coffee table","template":"Wiping [something] off of [something]","placeholders":["furniture polish","coffee table"]}, +{"id":"3933","label":"showing that the cup is empty","template":"Showing that [something] is empty","placeholders":["the cup"]}, +{"id":"178547","label":"picking aim toothpaste up","template":"Picking [something] up","placeholders":["aim toothpaste"]}, +{"id":"41457","label":"closing a glue","template":"Closing [something]","placeholders":["a glue"]}, +{"id":"137565","label":"pretending or failing to wipe crumbs off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["crumbs","counter"]}, +{"id":"139011","label":"pretending to be tearing journal","template":"Pretending to be tearing [something that is not tearable]","placeholders":["journal"]}, +{"id":"38760","label":"pushing lotion so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lotion"]}, +{"id":"49646","label":"moving cover down","template":"Moving [something] down","placeholders":["cover"]}, +{"id":"88907","label":"rolling tablet box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tablet box"]}, +{"id":"213359","label":"putting handphone, comb and notebook on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["handphone","comb","notebook"]}, +{"id":"90621","label":"plugging a usb into a usb-port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb","a usb-port"]}, +{"id":"183769","label":"controller falling like a rock","template":"[Something] falling like a rock","placeholders":["controller"]}, +{"id":"167709","label":"lifting a bowl up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a bowl"]}, +{"id":"41605","label":"plastic falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic"]}, +{"id":"10941","label":"taking food out of the fridge","template":"Taking [something] out of [something]","placeholders":["food","the fridge"]}, +{"id":"205931","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"109224","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"40270","label":"stuffing wipes into container","template":"Stuffing [something] into [something]","placeholders":["wipes","container"]}, +{"id":"185643","label":"turning the camera left while filming the window","template":"Turning the camera left while filming [something]","placeholders":["the window"]}, +{"id":"201875","label":"attaching a magnet to a refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","a refrigerator"]}, +{"id":"89051","label":"putting something similar to","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar to"]}, +{"id":"12443","label":"putting the shampoo on a surface","template":"Putting [something] on a surface","placeholders":["the shampoo"]}, +{"id":"32058","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"39389","label":"taking stapler from pen stand","template":"Taking [something] from [somewhere]","placeholders":["stapler","pen stand"]}, +{"id":"14098","label":"holding candle next to plate","template":"Holding [something] next to [something]","placeholders":["candle","plate"]}, +{"id":"129509","label":"pushing jar with charger","template":"Pushing [something] with [something]","placeholders":["jar","charger"]}, +{"id":"45186","label":"moving cup and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","cup"]}, +{"id":"49176","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"138410","label":"stuffing glove into hat","template":"Stuffing [something] into [something]","placeholders":["glove","hat"]}, +{"id":"141098","label":"putting 2 pencil sharpners onto rubix cube","template":"Putting [number of] [something] onto [something]","placeholders":["2","pencil sharpners","rubix cube"]}, +{"id":"208341","label":"putting 2 blue spoons onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","blue spoons","blue note"]}, +{"id":"161331","label":"taking medicine from medicine bottle","template":"Taking [something] from [somewhere]","placeholders":["medicine","medicine bottle"]}, +{"id":"30889","label":"throwing paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper"]}, +{"id":"156048","label":"holding bottle behind chair","template":"Holding [something] behind [something]","placeholders":["bottle","chair"]}, +{"id":"117597","label":"pushing a deodorant from left to right","template":"Pushing [something] from left to right","placeholders":["a deodorant"]}, +{"id":"37074","label":"laying soapbox on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["soapbox"]}, +{"id":"218837","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"186707","label":"taking metal out of bowl","template":"Taking [something] out of [something]","placeholders":["metal","bowl"]}, +{"id":"143809","label":"burying a wad of tinfoil in woodchips","template":"Burying [something] in [something]","placeholders":["a wad of tinfoil","woodchips"]}, +{"id":"5227","label":"pretending to put tablet on a surface","template":"Pretending to put [something] on a surface","placeholders":["tablet"]}, +{"id":"92548","label":"dropping remote control onto sheets","template":"Dropping [something] onto [something]","placeholders":["remote control","sheets"]}, +{"id":"27547","label":"throwing spoon against a box","template":"Throwing [something] against [something]","placeholders":["spoon","a box"]}, +{"id":"179611","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"67502","label":"pouring water into bucket","template":"Pouring [something] into [something]","placeholders":["water","bucket"]}, +{"id":"46829","label":"pushing a coin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a coin"]}, +{"id":"208724","label":"plugging plug into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","power outlet"]}, +{"id":"116206","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"117045","label":"digging soil out of land","template":"Digging [something] out of [something]","placeholders":["soil","land"]}, +{"id":"59204","label":"plugging bit into screwdriver","template":"Plugging [something] into [something]","placeholders":["bit","screwdriver"]}, +{"id":"42175","label":"pretending to open a salsa jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a salsa jar"]}, +{"id":"184177","label":"putting sewing reel onto plastic box","template":"Putting [something] onto [something]","placeholders":["sewing reel","plastic box"]}, +{"id":"203044","label":"moving bowl up","template":"Moving [something] up","placeholders":["bowl"]}, +{"id":"101486","label":"poking an empty bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["an empty bottle"]}, +{"id":"190133","label":"piling electronics up","template":"Piling [something] up","placeholders":["electronics"]}, +{"id":"184075","label":"showing mouse behind mug","template":"Showing [something] behind [something]","placeholders":["mouse","mug"]}, +{"id":"210195","label":"removing book, revealing earbuds behind","template":"Removing [something], revealing [something] behind","placeholders":["book","earbuds"]}, +{"id":"180057","label":"piling a calculator and remote controllers up","template":"Piling [something] up","placeholders":["a calculator and remote controllers"]}, +{"id":"10943","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"57948","label":"holding keys","template":"Holding [something]","placeholders":["keys"]}, +{"id":"161611","label":"touching (without moving) glass of spectacles","template":"Touching (without moving) [part] of [something]","placeholders":["glass","spectacles"]}, +{"id":"26944","label":"rolling orange colour pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["orange colour pen"]}, +{"id":"47639","label":"tearing a paer towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paer towel"]}, +{"id":"73900","label":"dropping hairclip behind piggybank","template":"Dropping [something] behind [something]","placeholders":["hairclip","piggybank"]}, +{"id":"119693","label":"lifting a surface with tape on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["tape"]}, +{"id":"121088","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"140239","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"117062","label":"moving black umbrella down","template":"Moving [something] down","placeholders":["black umbrella"]}, +{"id":"44298","label":"moving away from washing machine with your camera","template":"Moving away from [something] with your camera","placeholders":["washing machine"]}, +{"id":"120932","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"181962","label":"putting ball into cup","template":"Putting [something] into [something]","placeholders":["ball","cup"]}, +{"id":"137475","label":"picking shot glass up","template":"Picking [something] up","placeholders":["shot glass"]}, +{"id":"61828","label":"putting spoon","template":"Putting [something similar to other things that are already on the table]","placeholders":["spoon"]}, +{"id":"13192","label":"pretending or failing to wipe salt off of a table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a table"]}, +{"id":"174054","label":"putting comb underneath drawer","template":"Putting [something] underneath [something]","placeholders":["comb","drawer"]}, +{"id":"76150","label":"tipping waterbottle over","template":"Tipping [something] over","placeholders":["waterbottle"]}, +{"id":"215721","label":"wiping water off of floor","template":"Wiping [something] off of [something]","placeholders":["water","floor"]}, +{"id":"200719","label":"pushing a cup from left to right","template":"Pushing [something] from left to right","placeholders":["a cup"]}, +{"id":"131421","label":"moving a kart toy across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a kart toy"]}, +{"id":"118582","label":"folding scarf","template":"Folding [something]","placeholders":["scarf"]}, +{"id":"80242","label":"lifting a pack of tissu with a ruler on it","template":"Lifting [something] with [something] on it","placeholders":["a pack of tissu","a ruler"]}, +{"id":"114878","label":"pretending to sprinkle air onto laptop power brick","template":"Pretending to sprinkle air onto [something]","placeholders":["laptop power brick"]}, +{"id":"207263","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"48080","label":"picking pen up","template":"Picking [something] up","placeholders":["pen"]}, +{"id":"82871","label":"pretending to put fruit into fruir platter","template":"Pretending to put [something] into [something]","placeholders":["fruit","fruir platter"]}, +{"id":"150604","label":"moving mp3 player up","template":"Moving [something] up","placeholders":["mp3 player"]}, +{"id":"159544","label":"moving a block of paper down","template":"Moving [something] down","placeholders":["a block of paper"]}, +{"id":"45301","label":"lifting mousepad with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["mousepad","mouse"]}, +{"id":"25933","label":"rolling lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon"]}, +{"id":"59704","label":"bending a fork so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fork"]}, +{"id":"25370","label":"pulling electrical tape from left to right","template":"Pulling [something] from left to right","placeholders":["electrical tape"]}, +{"id":"55526","label":"holding banana behind plate","template":"Holding [something] behind [something]","placeholders":["banana","plate"]}, +{"id":"53505","label":"bending a plastic fork until it breaks","template":"Bending [something] until it breaks","placeholders":["a plastic fork"]}, +{"id":"24799","label":"uncovering mug","template":"Uncovering [something]","placeholders":["mug"]}, +{"id":"24290","label":"tipping an empty bottle over","template":"Tipping [something] over","placeholders":["an empty bottle"]}, +{"id":"15633","label":"tipping toy dragon over","template":"Tipping [something] over","placeholders":["toy dragon"]}, +{"id":"118738","label":"dropping pen onto watch","template":"Dropping [something] onto [something]","placeholders":["pen","watch"]}, +{"id":"88570","label":"opening a container of lotion","template":"Opening [something]","placeholders":["a container of lotion"]}, +{"id":"67954","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"37980","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"22759","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"80611","label":"attaching a post it note to a teapot","template":"Attaching [something] to [something]","placeholders":["a post it note","a teapot"]}, +{"id":"187453","label":"putting a hairbrush next to deodorant","template":"Putting [something] next to [something]","placeholders":["a hairbrush","deodorant"]}, +{"id":"62316","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"55255","label":"putting gear wheel, white pebble and chalk on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["gear wheel","white pebble","chalk"]}, +{"id":"82714","label":"pouring peas into a thermos/can","template":"Pouring [something] into [something]","placeholders":["peas","a thermos/can"]}, +{"id":"101949","label":"plugging charger into switch","template":"Plugging [something] into [something]","placeholders":["charger","switch"]}, +{"id":"115921","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"91753","label":"turning the camera left while filming waste basket","template":"Turning the camera left while filming [something]","placeholders":["waste basket"]}, +{"id":"70957","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"62365","label":"pushing lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lighter"]}, +{"id":"215668","label":"moving cup away from pen","template":"Moving [something] away from [something]","placeholders":["cup","pen"]}, +{"id":"141149","label":"showing sunset to the camera","template":"Showing [something] to the camera","placeholders":["sunset"]}, +{"id":"118833","label":"scooping water up with cup","template":"Scooping [something] up with [something]","placeholders":["water","cup"]}, +{"id":"1759","label":"putting box, pen and lip bam on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","pen","lip bam"]}, +{"id":"215270","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"186612","label":"moving mouse closer to keyboard","template":"Moving [something] closer to [something]","placeholders":["mouse","keyboard"]}, +{"id":"172874","label":"spilling water next to a coin","template":"Spilling [something] next to [something]","placeholders":["water","a coin"]}, +{"id":"24884","label":"taking one of many markers on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many markers on the table"]}, +{"id":"163120","label":"pouring tomato sauce into a dish","template":"Pouring [something] into [something]","placeholders":["tomato sauce","a dish"]}, +{"id":"110967","label":"showing pillow on top of pillow","template":"Showing [something] on top of [something]","placeholders":["pillow","pillow"]}, +{"id":"8010","label":"throwing hair clip against green toy car","template":"Throwing [something] against [something]","placeholders":["hair clip","green toy car"]}, +{"id":"104064","label":"lifting glass with banana on it","template":"Lifting [something] with [something] on it","placeholders":["glass","banana"]}, +{"id":"192357","label":"lifting paper with green chalk on it","template":"Lifting [something] with [something] on it","placeholders":["paper","green chalk"]}, +{"id":"210572","label":"spilling rice onto a vessel","template":"Spilling [something] onto [something]","placeholders":["rice","a vessel"]}, +{"id":"161329","label":"taking match stick from the box","template":"Taking [something] from [somewhere]","placeholders":["match stick","the box"]}, +{"id":"203320","label":"tilting a video game case with an eraser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a video game case","an eraser"]}, +{"id":"163516","label":"taking conch shell from floor","template":"Taking [something] from [somewhere]","placeholders":["conch shell","floor"]}, +{"id":"218934","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"208427","label":"showing a photo of rat to the camera","template":"Showing a photo of [something] to the camera","placeholders":["rat"]}, +{"id":"70380","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"2396","label":"putting a bouncer on the edge of a foot stool so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a bouncer","a foot stool"]}, +{"id":"126899","label":"moving top of spice canister","template":"Moving [part] of [something]","placeholders":["top","spice canister"]}, +{"id":"99238","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"120920","label":"pushing mp3 player from right to left","template":"Pushing [something] from right to left","placeholders":["mp3 player"]}, +{"id":"83372","label":"closing padlock","template":"Closing [something]","placeholders":["padlock"]}, +{"id":"64662","label":"putting telephone on a surface","template":"Putting [something] on a surface","placeholders":["telephone"]}, +{"id":"178529","label":"lifting blue colour punching machine up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["blue colour punching machine"]}, +{"id":"150209","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"36868","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"99206","label":"moving glasses down","template":"Moving [something] down","placeholders":["glasses"]}, +{"id":"81888","label":"pretending to put paperweight on a surface","template":"Pretending to put [something] on a surface","placeholders":["paperweight"]}, +{"id":"165650","label":"putting stapler upright on the table","template":"Putting [something] upright on the table","placeholders":["stapler"]}, +{"id":"86488","label":"putting play-doh behind mug","template":"Putting [something] behind [something]","placeholders":["play-doh","mug"]}, +{"id":"179920","label":"moving box closer to box","template":"Moving [something] closer to [something]","placeholders":["box","box"]}, +{"id":"147731","label":"putting a bowl onto ice tray","template":"Putting [something] onto [something]","placeholders":["a bowl","ice tray"]}, +{"id":"165583","label":"dropping a tape in front of scissors","template":"Dropping [something] in front of [something]","placeholders":["a tape","scissors"]}, +{"id":"32815","label":"moving eraser and sharpener away from each other","template":"Moving [something] and [something] away from each other","placeholders":["eraser","sharpener"]}, +{"id":"124431","label":"taking one hair clip of many similar hair clips on the table","template":"Taking [one of many similar things on the table]","placeholders":["one hair clip of many similar hair clips on the table"]}, +{"id":"19509","label":"spreading ketchup onto biscuit","template":"Spreading [something] onto [something]","placeholders":["ketchup","biscuit"]}, +{"id":"49242","label":"dropping a comb behind a box","template":"Dropping [something] behind [something]","placeholders":["a comb","a box"]}, +{"id":"144899","label":"pushing a phone off of a table","template":"Pushing [something] off of [something]","placeholders":["a phone","a table"]}, +{"id":"8537","label":"plugging headphone into computer jack but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphone","computer jack"]}, +{"id":"21494","label":"dropping a tissue box behind a mug","template":"Dropping [something] behind [something]","placeholders":["a tissue box","a mug"]}, +{"id":"181501","label":"laying a container on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a container"]}, +{"id":"129410","label":"lifting a book with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a pen"]}, +{"id":"159321","label":"holding camera next to chair","template":"Holding [something] next to [something]","placeholders":["camera","chair"]}, +{"id":"216809","label":"unfolding a wrap","template":"Unfolding [something]","placeholders":["a wrap"]}, +{"id":"178689","label":"pulling two wheel toy trolley onto table","template":"Pulling [something] onto [something]","placeholders":["two wheel toy trolley","table"]}, +{"id":"12839","label":"pretending or trying and failing to twist smartphone","template":"Pretending or trying and failing to twist [something]","placeholders":["smartphone"]}, +{"id":"83382","label":"dropping a rubiks cube into a lunch box","template":"Dropping [something] into [something]","placeholders":["a rubiks cube","a lunch box"]}, +{"id":"202891","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"126351","label":"tipping a cup with pens over, so pens falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","pens","pens"]}, +{"id":"156590","label":"holding a cell phone in front of a bottle","template":"Holding [something] in front of [something]","placeholders":["a cell phone","a bottle"]}, +{"id":"89277","label":"putting lid upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["lid"]}, +{"id":"29475","label":"tearing folded sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["folded sheet of paper"]}, +{"id":"186681","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"103412","label":"sticky note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sticky note"]}, +{"id":"72244","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"132790","label":"pushing a pack of gum so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pack of gum"]}, +{"id":"63371","label":"closing filing cabinet","template":"Closing [something]","placeholders":["filing cabinet"]}, +{"id":"123636","label":"moving away from talcum powder bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["talcum powder bottle"]}, +{"id":"22596","label":"throwing highlighter pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["highlighter pen"]}, +{"id":"27386","label":"tearing a tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["a tissue"]}, +{"id":"63935","label":"showing a mug behind a laptop","template":"Showing [something] behind [something]","placeholders":["a mug","a laptop"]}, +{"id":"167982","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"147363","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"85674","label":"hitting a stabilizer with a pen","template":"Hitting [something] with [something]","placeholders":["a stabilizer","a pen"]}, +{"id":"175002","label":"putting water bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["water bottle"]}, +{"id":"54283","label":"turning a tea cup upside down","template":"Turning [something] upside down","placeholders":["a tea cup"]}, +{"id":"205686","label":"pulling glasses from right to left","template":"Pulling [something] from right to left","placeholders":["glasses"]}, +{"id":"176874","label":"spinning newspaper that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["newspaper"]}, +{"id":"154431","label":"putting a toothbrush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a toothbrush"]}, +{"id":"41274","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"9520","label":"putting 1 bell onto table","template":"Putting [number of] [something] onto [something]","placeholders":["1","bell","table"]}, +{"id":"216333","label":"putting a plug next to a candleholder","template":"Putting [something] next to [something]","placeholders":["a plug","a candleholder"]}, +{"id":"645","label":"trying but failing to attach a piece of clothing to another piece of clothing because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a piece of clothing","another piece of clothing"]}, +{"id":"84353","label":"rolling can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["can"]}, +{"id":"11307","label":"putting game piece into container","template":"Putting [something] into [something]","placeholders":["game piece","container"]}, +{"id":"22675","label":"tearing movies brochure just a little bit","template":"Tearing [something] just a little bit","placeholders":["movies brochure"]}, +{"id":"29373","label":"pulling mug from right to left","template":"Pulling [something] from right to left","placeholders":["mug"]}, +{"id":"161102","label":"letting a pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pencil"]}, +{"id":"145625","label":"showing street to the camera","template":"Showing [something] to the camera","placeholders":["street"]}, +{"id":"164510","label":"pulling two ends of flashlight but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["flashlight"]}, +{"id":"192093","label":"pushing small book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["small book"]}, +{"id":"67569","label":"pretending to be tearing wallet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["wallet"]}, +{"id":"6248","label":"pouring sugar into glass","template":"Pouring [something] into [something]","placeholders":["sugar","glass"]}, +{"id":"101569","label":"pretending to poke a stuffed toy","template":"Pretending to poke [something]","placeholders":["a stuffed toy"]}, +{"id":"144173","label":"pulling two ends of elastic so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["elastic"]}, +{"id":"118503","label":"pretending to put a votive next to a votive","template":"Pretending to put [something] next to [something]","placeholders":["a votive","a votive"]}, +{"id":"110573","label":"tearing uno card into two pieces","template":"Tearing [something] into two pieces","placeholders":["uno card"]}, +{"id":"35514","label":"letting refill roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["refill"]}, +{"id":"84877","label":"putting a marker into supplies box","template":"Putting [something] into [something]","placeholders":["a marker","supplies box"]}, +{"id":"162857","label":"removing board, revealing book behind","template":"Removing [something], revealing [something] behind","placeholders":["board","book"]}, +{"id":"64138","label":"pretending to put scissors onto book","template":"Pretending to put [something] onto [something]","placeholders":["scissors","book"]}, +{"id":"173769","label":"moving glasses down","template":"Moving [something] down","placeholders":["glasses"]}, +{"id":"102111","label":"letting old beer bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["old beer bottle"]}, +{"id":"134107","label":"moving cellphone and notebook closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cellphone","notebook"]}, +{"id":"90823","label":"holding scissor","template":"Holding [something]","placeholders":["scissor"]}, +{"id":"145999","label":"a sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sheet of paper"]}, +{"id":"2146","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"18456","label":"moving apple and banana away from each other","template":"Moving [something] and [something] away from each other","placeholders":["apple","banana"]}, +{"id":"162416","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"85032","label":"showing chair behind paper","template":"Showing [something] behind [something]","placeholders":["chair","paper"]}, +{"id":"152557","label":"turning a bottle of water upside down","template":"Turning [something] upside down","placeholders":["a bottle of water"]}, +{"id":"168096","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"102267","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"104759","label":"stuffing a money into wallet","template":"Stuffing [something] into [something]","placeholders":["a money","wallet"]}, +{"id":"18013","label":"tearing paper tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper tissue"]}, +{"id":"18208","label":"putting wallet and spanner on the table","template":"Putting [something] and [something] on the table","placeholders":["wallet","spanner"]}, +{"id":"83790","label":"pretending to close hair gel bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["hair gel bottle"]}, +{"id":"125623","label":"pouring drink out of bottle","template":"Pouring [something] out of [something]","placeholders":["drink","bottle"]}, +{"id":"153662","label":"showing that food is inside the box","template":"Showing that [something] is inside [something]","placeholders":["food","the box"]}, +{"id":"76914","label":"pretending to scoop sugar up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"15229","label":"turning smart phone upside down","template":"Turning [something] upside down","placeholders":["smart phone"]}, +{"id":"107667","label":"a monkey figure falling like a rock","template":"[Something] falling like a rock","placeholders":["a monkey figure"]}, +{"id":"125243","label":"putting tablet into floor","template":"Putting [something] into [something]","placeholders":["tablet","floor"]}, +{"id":"38901","label":"squeezing dough","template":"Squeezing [something]","placeholders":["dough"]}, +{"id":"133259","label":"touching (without moving) glas of glas","template":"Touching (without moving) [part] of [something]","placeholders":["glas","glas"]}, +{"id":"197708","label":"moving purse up","template":"Moving [something] up","placeholders":["purse"]}, +{"id":"33272","label":"bending spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["spoon"]}, +{"id":"65469","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"133762","label":"trying to bend table so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["table"]}, +{"id":"163782","label":"taking a pill bottle out of a purse","template":"Taking [something] out of [something]","placeholders":["a pill bottle","a purse"]}, +{"id":"149795","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"159235","label":"spinning a coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a coin"]}, +{"id":"139484","label":"putting a pillow","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pillow"]}, +{"id":"202600","label":"putting pen next to holder","template":"Putting [something] next to [something]","placeholders":["pen","holder"]}, +{"id":"3161","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"35408","label":"taking grape","template":"Taking [one of many similar things on the table]","placeholders":["grape"]}, +{"id":"152065","label":"closing notebook","template":"Closing [something]","placeholders":["notebook"]}, +{"id":"181357","label":"opening a fish can","template":"Opening [something]","placeholders":["a fish can"]}, +{"id":"60193","label":"putting a pencil on a surface","template":"Putting [something] on a surface","placeholders":["a pencil"]}, +{"id":"147523","label":"tipping candle over","template":"Tipping [something] over","placeholders":["candle"]}, +{"id":"104699","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"86941","label":"poking toy zelda so that it falls over","template":"Poking [something] so that it falls over","placeholders":["toy zelda"]}, +{"id":"37118","label":"sprinkling salt onto tomato pieces","template":"Sprinkling [something] onto [something]","placeholders":["salt","tomato pieces"]}, +{"id":"183796","label":"showing flowers behind cup","template":"Showing [something] behind [something]","placeholders":["flowers","cup"]}, +{"id":"53388","label":"lifting a keyboard up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a keyboard"]}, +{"id":"203100","label":"throwing a drinks mat in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a drinks mat"]}, +{"id":"74314","label":"piling boxes of matches up","template":"Piling [something] up","placeholders":["boxes of matches"]}, +{"id":"87275","label":"pushing container from right to left","template":"Pushing [something] from right to left","placeholders":["container"]}, +{"id":"189155","label":"holding mobile phone over wallet","template":"Holding [something] over [something]","placeholders":["mobile phone","wallet"]}, +{"id":"99734","label":"showing cup behind bottle","template":"Showing [something] behind [something]","placeholders":["cup","bottle"]}, +{"id":"105191","label":"turning the camera left while filming a lighter","template":"Turning the camera left while filming [something]","placeholders":["a lighter"]}, +{"id":"61010","label":"spinning bangle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bangle"]}, +{"id":"53891","label":"hitting cup with spoon","template":"Hitting [something] with [something]","placeholders":["cup","spoon"]}, +{"id":"196240","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"80317","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"213978","label":"plugging usb into port","template":"Plugging [something] into [something]","placeholders":["usb","port"]}, +{"id":"76636","label":"pushing stapler off of drawing board","template":"Pushing [something] off of [something]","placeholders":["stapler","drawing board"]}, +{"id":"131816","label":"plugging hair dryer into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["hair dryer","wall outlet"]}, +{"id":"33505","label":"tipping nose spray bottle over","template":"Tipping [something] over","placeholders":["nose spray bottle"]}, +{"id":"18788","label":"moving soap box and container away from each other","template":"Moving [something] and [something] away from each other","placeholders":["soap box","container"]}, +{"id":"214846","label":"attaching pencil sharpener cap to pencil sharpener","template":"Attaching [something] to [something]","placeholders":["pencil sharpener cap","pencil sharpener"]}, +{"id":"146557","label":"putting a shot glass next to a measuring cup","template":"Putting [something] next to [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"210479","label":"plugging otg into mobile but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["otg","mobile"]}, +{"id":"211477","label":"showing that water is inside glass","template":"Showing that [something] is inside [something]","placeholders":["water","glass"]}, +{"id":"104140","label":"turning the camera left while filming traffic signboard","template":"Turning the camera left while filming [something]","placeholders":["traffic signboard"]}, +{"id":"2310","label":"taking khaki out of bowl","template":"Taking [something] out of [something]","placeholders":["khaki","bowl"]}, +{"id":"120656","label":"lifting up one end of a tape, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a tape"]}, +{"id":"151910","label":"wiping dirt off of mirror","template":"Wiping [something] off of [something]","placeholders":["dirt","mirror"]}, +{"id":"67588","label":"lifting wallet with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","sunglasses"]}, +{"id":"137336","label":"putting hat that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["hat"]}, +{"id":"46454","label":"tilting book with coin on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","coin"]}, +{"id":"22336","label":"holding notebook over bed","template":"Holding [something] over [something]","placeholders":["notebook","bed"]}, +{"id":"173643","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"176453","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"170112","label":"pushing calculator from right to left","template":"Pushing [something] from right to left","placeholders":["calculator"]}, +{"id":"66520","label":"spreading salt onto plate","template":"Spreading [something] onto [something]","placeholders":["salt","plate"]}, +{"id":"40096","label":"squeezing a plushie","template":"Squeezing [something]","placeholders":["a plushie"]}, +{"id":"134459","label":"lifting set of compasses up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["set of compasses"]}, +{"id":"216839","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"155692","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"217464","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"52380","label":"spinning fan that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["fan"]}, +{"id":"63928","label":"spilling water next to a shoe brush","template":"Spilling [something] next to [something]","placeholders":["water","a shoe brush"]}, +{"id":"121037","label":"stuffing a blanket into a bag","template":"Stuffing [something] into [something]","placeholders":["a blanket","a bag"]}, +{"id":"69257","label":"picking pink water bottle up","template":"Picking [something] up","placeholders":["pink water bottle"]}, +{"id":"52709","label":"pushing socks with broom","template":"Pushing [something] with [something]","placeholders":["socks","broom"]}, +{"id":"122115","label":"pulling two ends of toy but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["toy"]}, +{"id":"164398","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"199077","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"25380","label":"folding cardboart","template":"Folding [something]","placeholders":["cardboart"]}, +{"id":"120700","label":"squeezing a lime","template":"Squeezing [something]","placeholders":["a lime"]}, +{"id":"204675","label":"dropping paper onto bed","template":"Dropping [something] onto [something]","placeholders":["paper","bed"]}, +{"id":"140033","label":"closing phone case","template":"Closing [something]","placeholders":["phone case"]}, +{"id":"25382","label":"pushing towel onto paper","template":"Pushing [something] onto [something]","placeholders":["towel","paper"]}, +{"id":"160867","label":"showing small green ball to the camera","template":"Showing [something] to the camera","placeholders":["small green ball"]}, +{"id":"82636","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"109964","label":"pulling two ends of a toothbrush case so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a toothbrush case"]}, +{"id":"162359","label":"covering coaster with book","template":"Covering [something] with [something]","placeholders":["coaster","book"]}, +{"id":"24919","label":"moving chap stick across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["chap stick"]}, +{"id":"62115","label":"covering mug with shirt","template":"Covering [something] with [something]","placeholders":["mug","shirt"]}, +{"id":"160623","label":"lifting mousepad with keys on it","template":"Lifting [something] with [something] on it","placeholders":["mousepad","keys"]}, +{"id":"175220","label":"pulling soda pop can from behind of coffee can","template":"Pulling [something] from behind of [something]","placeholders":["soda pop can","coffee can"]}, +{"id":"49262","label":"holding controller next to headset","template":"Holding [something] next to [something]","placeholders":["controller","headset"]}, +{"id":"171818","label":"putting knife next to mug","template":"Putting [something] next to [something]","placeholders":["knife","mug"]}, +{"id":"39289","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"71477","label":"poking a toy flywheel so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a toy flywheel"]}, +{"id":"13569","label":"poking a stack of wood blocks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["wood blocks"]}, +{"id":"100405","label":"lifting rubber up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rubber"]}, +{"id":"172619","label":"poking ipad case so that it falls over","template":"Poking [something] so that it falls over","placeholders":["ipad case"]}, +{"id":"31712","label":"pretending to poke wall","template":"Pretending to poke [something]","placeholders":["wall"]}, +{"id":"39471","label":"pretending to sprinkle air onto plant","template":"Pretending to sprinkle air onto [something]","placeholders":["plant"]}, +{"id":"100086","label":"showing jeep to the camera","template":"Showing [something] to the camera","placeholders":["jeep"]}, +{"id":"117570","label":"moving a pen down","template":"Moving [something] down","placeholders":["a pen"]}, +{"id":"91283","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"211881","label":"pushing ball so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ball"]}, +{"id":"48821","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"62788","label":"lifting a towel up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a towel"]}, +{"id":"81608","label":"lifting jar up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["jar"]}, +{"id":"139768","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"65276","label":"moving box away from the camera","template":"Moving [something] away from the camera","placeholders":["box"]}, +{"id":"51718","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"132962","label":"pretending to be tearing book case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["book case"]}, +{"id":"122556","label":"tearing aluminium foil just a little bit","template":"Tearing [something] just a little bit","placeholders":["aluminium foil"]}, +{"id":"129682","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"51051","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"50980","label":"pulling red dairy from right to left","template":"Pulling [something] from right to left","placeholders":["red dairy"]}, +{"id":"94999","label":"putting jar on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["jar","box"]}, +{"id":"120890","label":"holding marker over cup","template":"Holding [something] over [something]","placeholders":["marker","cup"]}, +{"id":"29171","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"164766","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"105367","label":"showing pinecone behind glass","template":"Showing [something] behind [something]","placeholders":["pinecone","glass"]}, +{"id":"164508","label":"burying cell phone in blanket","template":"Burying [something] in [something]","placeholders":["cell phone","blanket"]}, +{"id":"138620","label":"putting a scotch roll on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a scotch roll"]}, +{"id":"163764","label":"tipping something nearly over","template":"Tipping [something] over","placeholders":["something nearly"]}, +{"id":"182642","label":"rolling marble on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marble"]}, +{"id":"66666","label":"moving toy towards the camera","template":"Moving [something] towards the camera","placeholders":["toy"]}, +{"id":"173718","label":"pretending or failing to wipe coffee off of glass desk","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["coffee","glass desk"]}, +{"id":"93666","label":"folding a washcloth","template":"Folding [something]","placeholders":["a washcloth"]}, +{"id":"170294","label":"pretending to pick brush up","template":"Pretending to pick [something] up","placeholders":["brush"]}, +{"id":"63166","label":"lifting coin up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["coin"]}, +{"id":"92754","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"154556","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"27331","label":"pushing red booklet from left to right","template":"Pushing [something] from left to right","placeholders":["red booklet"]}, +{"id":"35178","label":"opening cover","template":"Opening [something]","placeholders":["cover"]}, +{"id":"207108","label":"uncovering binder","template":"Uncovering [something]","placeholders":["binder"]}, +{"id":"169142","label":"tearing card just a little bit","template":"Tearing [something] just a little bit","placeholders":["card"]}, +{"id":"153491","label":"box colliding with a piece of candle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["box","a piece of candle"]}, +{"id":"6904","label":"tilting notebook with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["notebook","mouse"]}, +{"id":"123947","label":"lifting suitcase up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["suitcase"]}, +{"id":"198304","label":"putting 4 colour pens onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["4","colour pens","yellow note"]}, +{"id":"49565","label":"showing that a lunch box is empty","template":"Showing that [something] is empty","placeholders":["a lunch box"]}, +{"id":"27430","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"39006","label":"pushing a bottle from right to left","template":"Pushing [something] from right to left","placeholders":["a bottle"]}, +{"id":"201799","label":"pouring water out of jug","template":"Pouring [something] out of [something]","placeholders":["water","jug"]}, +{"id":"69835","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"175713","label":"plugging phone charger into wall","template":"Plugging [something] into [something]","placeholders":["phone charger","wall"]}, +{"id":"207785","label":"putting glasses on a surface","template":"Putting [something] on a surface","placeholders":["glasses"]}, +{"id":"155308","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"69108","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"160922","label":"tilting stand with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["stand","phone"]}, +{"id":"23697","label":"tilting a water bottle with another water bottle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a water bottle","another water bottle"]}, +{"id":"121497","label":"putting books into backpack","template":"Putting [something] into [something]","placeholders":["books","backpack"]}, +{"id":"189210","label":"moving a book away from another book","template":"Moving [something] away from [something]","placeholders":["a book","another book"]}, +{"id":"84487","label":"moving glass closer to another glass","template":"Moving [something] closer to [something]","placeholders":["glass","another glass"]}, +{"id":"131385","label":"plugging switch into socket","template":"Plugging [something] into [something]","placeholders":["switch","socket"]}, +{"id":"122329","label":"putting a teaspoon next to a mug","template":"Putting [something] next to [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"68751","label":"taking marker out of can","template":"Taking [something] out of [something]","placeholders":["marker","can"]}, +{"id":"202028","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"97248","label":"moving top of heart box","template":"Moving [part] of [something]","placeholders":["top","heart box"]}, +{"id":"198172","label":"turning the camera upwards while filming vacuum cleaner","template":"Turning the camera upwards while filming [something]","placeholders":["vacuum cleaner"]}, +{"id":"7507","label":"turning the camera downwards while filming air conditioner","template":"Turning the camera downwards while filming [something]","placeholders":["air conditioner"]}, +{"id":"193934","label":"plastic rat skeleton falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic rat skeleton"]}, +{"id":"151187","label":"taking one die from group of dice","template":"Taking [one of many similar things on the table]","placeholders":["one die from group of dice"]}, +{"id":"185031","label":"turning a bottle of contact solution upside down","template":"Turning [something] upside down","placeholders":["a bottle of contact solution"]}, +{"id":"99258","label":"moving apple and khaki closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["apple","khaki"]}, +{"id":"90142","label":"pretending to put scotch tape on a surface","template":"Pretending to put [something] on a surface","placeholders":["scotch tape"]}, +{"id":"143280","label":"bending a match stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a match stick"]}, +{"id":"86839","label":"pretending to pick remote control up","template":"Pretending to pick [something] up","placeholders":["remote control"]}, +{"id":"57405","label":"throwing kerchief","template":"Throwing [something]","placeholders":["kerchief"]}, +{"id":"128939","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"18518","label":"covering stuffed animal with blanket","template":"Covering [something] with [something]","placeholders":["stuffed animal","blanket"]}, +{"id":"160546","label":"turning a phone upside down","template":"Turning [something] upside down","placeholders":["a phone"]}, +{"id":"206154","label":"bending a wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a wooden stick"]}, +{"id":"131361","label":"removing chewing gums, revealing a necklace behind","template":"Removing [something], revealing [something] behind","placeholders":["chewing gums","a necklace"]}, +{"id":"119422","label":"approaching striker coin with your camera","template":"Approaching [something] with your camera","placeholders":["striker coin"]}, +{"id":"122462","label":"holding diary in front of laptop","template":"Holding [something] in front of [something]","placeholders":["diary","laptop"]}, +{"id":"17266","label":"pretending to take a remote control from a table","template":"Pretending to take [something] from [somewhere]","placeholders":["a remote control","a table"]}, +{"id":"63706","label":"failing to put sponge into jar because sponge does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["sponge","jar","sponge"]}, +{"id":"66941","label":"turning the camera right while filming baby diaper pack","template":"Turning the camera right while filming [something]","placeholders":["baby diaper pack"]}, +{"id":"90269","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"220614","label":"pretending to take earring from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["earring","surface"]}, +{"id":"193677","label":"pretending or failing to wipe black-ink off of plastic-board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["black-ink","plastic-board"]}, +{"id":"35035","label":"putting hat next to shoe","template":"Putting [something] next to [something]","placeholders":["hat","shoe"]}, +{"id":"122000","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"60060","label":"putting kitchen paper on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["kitchen paper","table"]}, +{"id":"52648","label":"showing fire to the camera","template":"Showing [something] to the camera","placeholders":["fire"]}, +{"id":"166033","label":"throwing throwing something on the air in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["throwing something on the air"]}, +{"id":"775","label":"covering baby with blanket","template":"Covering [something] with [something]","placeholders":["baby","blanket"]}, +{"id":"199091","label":"covering glass jar with cloth","template":"Covering [something] with [something]","placeholders":["glass jar","cloth"]}, +{"id":"102570","label":"pretending to take mouse from book","template":"Pretending to take [something] from [somewhere]","placeholders":["mouse","book"]}, +{"id":"125445","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"193550","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"82237","label":"covering pen with napkin","template":"Covering [something] with [something]","placeholders":["pen","napkin"]}, +{"id":"59269","label":"attaching a pen to a comb","template":"Attaching [something] to [something]","placeholders":["a pen","a comb"]}, +{"id":"101936","label":"taking binder clips out of a cup","template":"Taking [something] out of [something]","placeholders":["binder clips","a cup"]}, +{"id":"87892","label":"pulling two ends of a tissue paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a tissue paper"]}, +{"id":"67793","label":"turning the camera right while filming granola bar","template":"Turning the camera right while filming [something]","placeholders":["granola bar"]}, +{"id":"108929","label":"pushing a book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a book"]}, +{"id":"211670","label":"attaching a sticky note to a book","template":"Attaching [something] to [something]","placeholders":["a sticky note","a book"]}, +{"id":"6060","label":"lifting a phone with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a phone","a pen"]}, +{"id":"201541","label":"trying but failing to attach magazine to battleship game because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magazine","battleship game"]}, +{"id":"167133","label":"holding nail polish next to shoe","template":"Holding [something] next to [something]","placeholders":["nail polish","shoe"]}, +{"id":"170460","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209179","label":"pushing a sieve so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a sieve"]}, +{"id":"69722","label":"showing corn icecream to the camera","template":"Showing [something] to the camera","placeholders":["corn icecream"]}, +{"id":"188403","label":"stuffing paper pieces into a tincan","template":"Stuffing [something] into [something]","placeholders":["paper pieces","a tincan"]}, +{"id":"168733","label":"uncovering something","template":"Uncovering [something]","placeholders":["something"]}, +{"id":"45771","label":"pouring water into container until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","container"]}, +{"id":"53048","label":"putting a coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin"]}, +{"id":"49228","label":"removing box, revealing bottle behind","template":"Removing [something], revealing [something] behind","placeholders":["box","bottle"]}, +{"id":"67341","label":"pushing bracelet from right to left","template":"Pushing [something] from right to left","placeholders":["bracelet"]}, +{"id":"204301","label":"showing that a bottle is empty","template":"Showing that [something] is empty","placeholders":["a bottle"]}, +{"id":"125509","label":"putting a spoon upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a spoon"]}, +{"id":"29272","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"67723","label":"opening compassbox","template":"Opening [something]","placeholders":["compassbox"]}, +{"id":"119253","label":"burying ipad in blanket","template":"Burying [something] in [something]","placeholders":["ipad","blanket"]}, +{"id":"43144","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"43293","label":"pretending to pick toy up","template":"Pretending to pick [something] up","placeholders":["toy"]}, +{"id":"177748","label":"lifting battery up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["battery"]}, +{"id":"11728","label":"hitting a bottle with a book","template":"Hitting [something] with [something]","placeholders":["a bottle","a book"]}, +{"id":"160567","label":"spilling water onto newspaper","template":"Spilling [something] onto [something]","placeholders":["water","newspaper"]}, +{"id":"85695","label":"pretending or failing to wipe flour off of a counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["flour","a counter"]}, +{"id":"212729","label":"poking lpg tank so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lpg tank"]}, +{"id":"169129","label":"plugging cable into charger","template":"Plugging [something] into [something]","placeholders":["cable","charger"]}, +{"id":"90589","label":"stuffing tissue into a glass","template":"Stuffing [something] into [something]","placeholders":["tissue","a glass"]}, +{"id":"60106","label":"trying but failing to attach horse to white board because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["horse","white board"]}, +{"id":"125149","label":"putting tape into a bag","template":"Putting [something] into [something]","placeholders":["tape","a bag"]}, +{"id":"62159","label":"failing to put an apple into a mug because the apple does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["an apple","a mug","the apple"]}, +{"id":"166059","label":"spreading hot sauce onto rice","template":"Spreading [something] onto [something]","placeholders":["hot sauce","rice"]}, +{"id":"64966","label":"pretending or failing to wipe stain off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","wall"]}, +{"id":"11590","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"85046","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"63535","label":"twisting a thermos open","template":"Twisting [something]","placeholders":["a thermos open"]}, +{"id":"171207","label":"wiping gel off of box","template":"Wiping [something] off of [something]","placeholders":["gel","box"]}, +{"id":"154519","label":"twisting rubber","template":"Twisting [something]","placeholders":["rubber"]}, +{"id":"154560","label":"taking paper","template":"Taking [one of many similar things on the table]","placeholders":["paper"]}, +{"id":"103939","label":"poking clip so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["clip"]}, +{"id":"161682","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"40398","label":"pretending or failing to wipe a stain off of a table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["a stain","a table"]}, +{"id":"102681","label":"pulling tape out of tape measure","template":"Pulling [something] out of [something]","placeholders":["tape","tape measure"]}, +{"id":"111830","label":"tearing reciept just a little bit","template":"Tearing [something] just a little bit","placeholders":["reciept"]}, +{"id":"54121","label":"a marble ball colliding with another marble ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a marble ball","another marble ball"]}, +{"id":"61182","label":"lifting box with hands on it","template":"Lifting [something] with [something] on it","placeholders":["box","hands"]}, +{"id":"75404","label":"pushing cufflinks with a book","template":"Pushing [something] with [something]","placeholders":["cufflinks","a book"]}, +{"id":"154202","label":"turning the camera left while filming camel","template":"Turning the camera left while filming [something]","placeholders":["camel"]}, +{"id":"74487","label":"holding pink box","template":"Holding [something]","placeholders":["pink box"]}, +{"id":"195805","label":"plugging the plug into the socket","template":"Plugging [something] into [something]","placeholders":["the plug","the socket"]}, +{"id":"190795","label":"turning the camera downwards while filming bottle","template":"Turning the camera downwards while filming [something]","placeholders":["bottle"]}, +{"id":"131125","label":"bending carrot until it breaks","template":"Bending [something] until it breaks","placeholders":["carrot"]}, +{"id":"220123","label":"covering card with papper","template":"Covering [something] with [something]","placeholders":["card","papper"]}, +{"id":"2047","label":"tissue box falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue box"]}, +{"id":"81132","label":"pushing an eraser so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an eraser"]}, +{"id":"32","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"1147","label":"moving mobile phone and specs closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mobile phone","specs"]}, +{"id":"215974","label":"spinning a lollipop that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lollipop"]}, +{"id":"43453","label":"pretending to poke lime","template":"Pretending to poke [something]","placeholders":["lime"]}, +{"id":"143583","label":"showing that medicine is empty","template":"Showing that [something] is empty","placeholders":["medicine"]}, +{"id":"141261","label":"tearing a plastic bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["a plastic bag"]}, +{"id":"35295","label":"plugging plug into plug socket","template":"Plugging [something] into [something]","placeholders":["plug","plug socket"]}, +{"id":"67020","label":"pretending to take spoon from table","template":"Pretending to take [something] from [somewhere]","placeholders":["spoon","table"]}, +{"id":"184107","label":"moving key chain up","template":"Moving [something] up","placeholders":["key chain"]}, +{"id":"5140","label":"taking bottle","template":"Taking [one of many similar things on the table]","placeholders":["bottle"]}, +{"id":"71847","label":"moving plate down","template":"Moving [something] down","placeholders":["plate"]}, +{"id":"133331","label":"dropping remote control onto desk","template":"Dropping [something] onto [something]","placeholders":["remote control","desk"]}, +{"id":"185267","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"172793","label":"moving headphones and seal closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["headphones","seal"]}, +{"id":"149139","label":"putting 2 toy cars onto duster","template":"Putting [number of] [something] onto [something]","placeholders":["2","toy cars","duster"]}, +{"id":"157845","label":"pouring apple juice into a glass","template":"Pouring [something] into [something]","placeholders":["apple juice","a glass"]}, +{"id":"183482","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"71433","label":"folding leaf","template":"Folding [something]","placeholders":["leaf"]}, +{"id":"198715","label":"pushing glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glass"]}, +{"id":"198475","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"18154","label":"pushing glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glass"]}, +{"id":"116658","label":"failing to put box into cup because box does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["box","cup","box"]}, +{"id":"102187","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"126211","label":"pushing fork from right to left","template":"Pushing [something] from right to left","placeholders":["fork"]}, +{"id":"29186","label":"pretending to poke bowl","template":"Pretending to poke [something]","placeholders":["bowl"]}, +{"id":"14292","label":"putting a teaspoon behind a mug","template":"Putting [something] behind [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"208472","label":"pushing something so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["something"]}, +{"id":"52696","label":"lifting notebook with spoon on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","spoon"]}, +{"id":"64006","label":"taking marker","template":"Taking [one of many similar things on the table]","placeholders":["marker"]}, +{"id":"33239","label":"squeezing can","template":"Squeezing [something]","placeholders":["can"]}, +{"id":"213104","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"37382","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"5165","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"132589","label":"pushing laptop so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["laptop"]}, +{"id":"6853","label":"turning the camera downwards while filming shampoo bottle","template":"Turning the camera downwards while filming [something]","placeholders":["shampoo bottle"]}, +{"id":"60360","label":"moving a pen and a marker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a marker"]}, +{"id":"45788","label":"pulling rubbing alcohol from behind of a soup dispenser","template":"Pulling [something] from behind of [something]","placeholders":["rubbing alcohol","a soup dispenser"]}, +{"id":"176844","label":"covering a doll with a face towel","template":"Covering [something] with [something]","placeholders":["a doll","a face towel"]}, +{"id":"207533","label":"sprinkling wheat bran onto a counter","template":"Sprinkling [something] onto [something]","placeholders":["wheat bran","a counter"]}, +{"id":"53834","label":"putting knife next to glass cup","template":"Putting [something] next to [something]","placeholders":["knife","glass cup"]}, +{"id":"98523","label":"sprinkling sugar onto plate","template":"Sprinkling [something] onto [something]","placeholders":["sugar","plate"]}, +{"id":"73330","label":"pretending to pick cellphone up","template":"Pretending to pick [something] up","placeholders":["cellphone"]}, +{"id":"534","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"89300","label":"opening oreo package","template":"Opening [something]","placeholders":["oreo package"]}, +{"id":"174121","label":"moving foot of feet","template":"Moving [part] of [something]","placeholders":["foot","feet"]}, +{"id":"81048","label":"moving earring up","template":"Moving [something] up","placeholders":["earring"]}, +{"id":"195416","label":"tilting book with bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","bottle"]}, +{"id":"169257","label":"pretending to squeeze a tennisball","template":"Pretending to squeeze [something]","placeholders":["a tennisball"]}, +{"id":"129488","label":"pulling bottle from left to right","template":"Pulling [something] from left to right","placeholders":["bottle"]}, +{"id":"9228","label":"earring falling like a rock","template":"[Something] falling like a rock","placeholders":["earring"]}, +{"id":"190364","label":"holding ruler in front of tape","template":"Holding [something] in front of [something]","placeholders":["ruler","tape"]}, +{"id":"216225","label":"dropping pillow onto floor","template":"Dropping [something] onto [something]","placeholders":["pillow","floor"]}, +{"id":"55736","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"179339","label":"taking dominoes","template":"Taking [one of many similar things on the table]","placeholders":["dominoes"]}, +{"id":"131628","label":"putting phone on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["phone"]}, +{"id":"166813","label":"throwing teddy bear against wall","template":"Throwing [something] against [something]","placeholders":["teddy bear","wall"]}, +{"id":"97447","label":"tipping phone over","template":"Tipping [something] over","placeholders":["phone"]}, +{"id":"160355","label":"tilting a notebook with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","a pen"]}, +{"id":"112080","label":"pouring canola oi into the hot pan","template":"Pouring [something] into [something]","placeholders":["canola oi","the hot pan"]}, +{"id":"98309","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"136247","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"117335","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"129901","label":"tipping a spray bottle over","template":"Tipping [something] over","placeholders":["a spray bottle"]}, +{"id":"141900","label":"dropping a textbook onto a box","template":"Dropping [something] onto [something]","placeholders":["a textbook","a box"]}, +{"id":"103377","label":"picking headphones up","template":"Picking [something] up","placeholders":["headphones"]}, +{"id":"194530","label":"pulling pen onto iphone","template":"Pulling [something] onto [something]","placeholders":["pen","iphone"]}, +{"id":"122952","label":"pretending to put candle into bag","template":"Pretending to put [something] into [something]","placeholders":["candle","bag"]}, +{"id":"141507","label":"bending paper roll so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper roll"]}, +{"id":"95874","label":"plugging a cable into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","the wall"]}, +{"id":"88820","label":"covering chapstick with a pot lid","template":"Covering [something] with [something]","placeholders":["chapstick","a pot lid"]}, +{"id":"95683","label":"covering a toy with a towel","template":"Covering [something] with [something]","placeholders":["a toy","a towel"]}, +{"id":"104527","label":"bending small magazine so that it deforms","template":"Bending [something] so that it deforms","placeholders":["small magazine"]}, +{"id":"215203","label":"covering computer with blanket","template":"Covering [something] with [something]","placeholders":["computer","blanket"]}, +{"id":"68386","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"44727","label":"poking pc so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pc"]}, +{"id":"158759","label":"pushing a mouse from left to right","template":"Pushing [something] from left to right","placeholders":["a mouse"]}, +{"id":"218282","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"72990","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"169237","label":"hitting a teddy with a spoon","template":"Hitting [something] with [something]","placeholders":["a teddy","a spoon"]}, +{"id":"83637","label":"moving a box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a box"]}, +{"id":"65311","label":"throwing tomato in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tomato"]}, +{"id":"133764","label":"covering glasses with cloth","template":"Covering [something] with [something]","placeholders":["glasses","cloth"]}, +{"id":"16687","label":"pushing a rubber duck so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a rubber duck"]}, +{"id":"106031","label":"moving tapemeasure across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["tapemeasure"]}, +{"id":"74405","label":"covering tablet with newspaper","template":"Covering [something] with [something]","placeholders":["tablet","newspaper"]}, +{"id":"197747","label":"showing balloons to the camera","template":"Showing [something] to the camera","placeholders":["balloons"]}, +{"id":"4887","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"156885","label":"tipping teacup with tea over, so tea falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["teacup","tea","tea"]}, +{"id":"141662","label":"showing red booklet to the camera","template":"Showing [something] to the camera","placeholders":["red booklet"]}, +{"id":"203074","label":"moving away from wastebin with your camera","template":"Moving away from [something] with your camera","placeholders":["wastebin"]}, +{"id":"92117","label":"pretending or trying and failing to twist paper roll","template":"Pretending or trying and failing to twist [something]","placeholders":["paper roll"]}, +{"id":"16512","label":"unfolding paper sheet","template":"Unfolding [something]","placeholders":["paper sheet"]}, +{"id":"76635","label":"holding scissors","template":"Holding [something]","placeholders":["scissors"]}, +{"id":"147022","label":"tilting keyboard with ruler on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["keyboard","ruler"]}, +{"id":"175606","label":"approaching small green ball with your camera","template":"Approaching [something] with your camera","placeholders":["small green ball"]}, +{"id":"76552","label":"hitting a ball with racket","template":"Hitting [something] with [something]","placeholders":["a ball","racket"]}, +{"id":"104280","label":"putting cup in front of outlet","template":"Putting [something] in front of [something]","placeholders":["cup","outlet"]}, +{"id":"111134","label":"covering a cream tube with a paper","template":"Covering [something] with [something]","placeholders":["a cream tube","a paper"]}, +{"id":"89658","label":"bending bed sheet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bed sheet"]}, +{"id":"767","label":"uncovering glass jar","template":"Uncovering [something]","placeholders":["glass jar"]}, +{"id":"96652","label":"tipping train car with chapstick over, so chapstick falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["train car","chapstick","chapstick"]}, +{"id":"114491","label":"pulling two ends of a sugar bag but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a sugar bag"]}, +{"id":"37841","label":"pretending to close notebook without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notebook"]}, +{"id":"220035","label":"moving cycle towards the camera","template":"Moving [something] towards the camera","placeholders":["cycle"]}, +{"id":"149505","label":"moving compass with pencil down","template":"Moving [something] down","placeholders":["compass with pencil"]}, +{"id":"49419","label":"hitting bowl with bottle","template":"Hitting [something] with [something]","placeholders":["bowl","bottle"]}, +{"id":"86126","label":"toy colliding with toy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["toy","toy"]}, +{"id":"73765","label":"dropping a ball in front of headphones","template":"Dropping [something] in front of [something]","placeholders":["a ball","headphones"]}, +{"id":"154331","label":"taking a small toy","template":"Taking [one of many similar things on the table]","placeholders":["a small toy"]}, +{"id":"9806","label":"pretending to pour water out of a bottle, but the bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a bottle","the bottle"]}, +{"id":"83760","label":"throwing shoe","template":"Throwing [something]","placeholders":["shoe"]}, +{"id":"122538","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"155213","label":"pushing glove so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glove"]}, +{"id":"174861","label":"putting yellow clay container into orange bowl","template":"Putting [something] into [something]","placeholders":["yellow clay container","orange bowl"]}, +{"id":"119272","label":"tilting book with flute on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","flute"]}, +{"id":"33834","label":"picking soda can up","template":"Picking [something] up","placeholders":["soda can"]}, +{"id":"35202","label":"stacking 2 cup","template":"Stacking [number of] [something]","placeholders":["2","cup"]}, +{"id":"30028","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"184918","label":"pretending to pick box up","template":"Pretending to pick [something] up","placeholders":["box"]}, +{"id":"70281","label":"turning the camera upwards while filming atm machine","template":"Turning the camera upwards while filming [something]","placeholders":["atm machine"]}, +{"id":"7700","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"32562","label":"stuffing pillow into pillowcase","template":"Stuffing [something] into [something]","placeholders":["pillow","pillowcase"]}, +{"id":"112003","label":"pushing towel so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towel"]}, +{"id":"22383","label":"moving the pen up","template":"Moving [something] up","placeholders":["the pen"]}, +{"id":"95173","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"45504","label":"turning the camera right while filming pick up van","template":"Turning the camera right while filming [something]","placeholders":["pick up van"]}, +{"id":"107032","label":"sprinkling water onto referigerator","template":"Sprinkling [something] onto [something]","placeholders":["water","referigerator"]}, +{"id":"124218","label":"turning the camera right while filming steps","template":"Turning the camera right while filming [something]","placeholders":["steps"]}, +{"id":"95234","label":"showing that tape measure is inside jar","template":"Showing that [something] is inside [something]","placeholders":["tape measure","jar"]}, +{"id":"102055","label":"holding a stick next to a bike","template":"Holding [something] next to [something]","placeholders":["a stick","a bike"]}, +{"id":"36341","label":"holding knife","template":"Holding [something]","placeholders":["knife"]}, +{"id":"1584","label":"pretending to take toy out of box","template":"Pretending to take [something] out of [something]","placeholders":["toy","box"]}, +{"id":"129920","label":"putting glue stick upright on the table","template":"Putting [something] upright on the table","placeholders":["glue stick"]}, +{"id":"67825","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"150802","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"53609","label":"pushing bicycle camera clamp so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bicycle camera clamp"]}, +{"id":"101585","label":"moving pen and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","spoon"]}, +{"id":"107628","label":"stacking 3 breads","template":"Stacking [number of] [something]","placeholders":["3","breads"]}, +{"id":"182550","label":"pushing highlighter pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["highlighter pen"]}, +{"id":"67266","label":"putting fork next to mug","template":"Putting [something] next to [something]","placeholders":["fork","mug"]}, +{"id":"180111","label":"pretending or trying and failing to twist remote","template":"Pretending or trying and failing to twist [something]","placeholders":["remote"]}, +{"id":"124412","label":"stacking ten twigs","template":"Stacking [number of] [something]","placeholders":["ten","twigs"]}, +{"id":"129534","label":"taking top from carmex container","template":"Taking [something] from [somewhere]","placeholders":["top","carmex container"]}, +{"id":"154312","label":"moving garlic presser towards the camera","template":"Moving [something] towards the camera","placeholders":["garlic presser"]}, +{"id":"82971","label":"holding compass next to ink bottle","template":"Holding [something] next to [something]","placeholders":["compass","ink bottle"]}, +{"id":"33329","label":"pretending to put black umbrella on a surface","template":"Pretending to put [something] on a surface","placeholders":["black umbrella"]}, +{"id":"148258","label":"taking orange","template":"Taking [one of many similar things on the table]","placeholders":["orange"]}, +{"id":"220302","label":"pulling cup from right to left","template":"Pulling [something] from right to left","placeholders":["cup"]}, +{"id":"32650","label":"showing book on top of peanut butter jar","template":"Showing [something] on top of [something]","placeholders":["book","peanut butter jar"]}, +{"id":"134700","label":"hitting glass with magnifying glass","template":"Hitting [something] with [something]","placeholders":["glass","magnifying glass"]}, +{"id":"195636","label":"plugging cable into laptop","template":"Plugging [something] into [something]","placeholders":["cable","laptop"]}, +{"id":"46158","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"166346","label":"pretending to sprinkle air onto cup","template":"Pretending to sprinkle air onto [something]","placeholders":["cup"]}, +{"id":"164606","label":"holding a tea bag over a mug","template":"Holding [something] over [something]","placeholders":["a tea bag","a mug"]}, +{"id":"9576","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"2185","label":"putting pencil on a surface","template":"Putting [something] on a surface","placeholders":["pencil"]}, +{"id":"48640","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"10979","label":"moving post-it notes down","template":"Moving [something] down","placeholders":["post-it notes"]}, +{"id":"132896","label":"dropping small empty bottle into a mug","template":"Dropping [something] into [something]","placeholders":["small empty bottle","a mug"]}, +{"id":"184596","label":"throwing a rope","template":"Throwing [something]","placeholders":["a rope"]}, +{"id":"144945","label":"putting a bottle of mustrd upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle of mustrd"]}, +{"id":"206937","label":"plugging duracell charger into outlet","template":"Plugging [something] into [something]","placeholders":["duracell charger","outlet"]}, +{"id":"13498","label":"pushing instrument so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["instrument"]}, +{"id":"59128","label":"plugging a charger into the wall","template":"Plugging [something] into [something]","placeholders":["a charger","the wall"]}, +{"id":"41668","label":"pouring drink into a glass","template":"Pouring [something] into [something]","placeholders":["drink","a glass"]}, +{"id":"74468","label":"holding quarter over paper","template":"Holding [something] over [something]","placeholders":["quarter","paper"]}, +{"id":"168937","label":"lighter being deflected from control","template":"[Something] being deflected from [something]","placeholders":["lighter","control"]}, +{"id":"91516","label":"putting cap into head","template":"Putting [something] into [something]","placeholders":["cap","head"]}, +{"id":"36379","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"26004","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"118507","label":"pushing nail varnish so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail varnish"]}, +{"id":"182859","label":"pushing a bottle with a pencil","template":"Pushing [something] with [something]","placeholders":["a bottle","a pencil"]}, +{"id":"70680","label":"throwing a pencil onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pencil"]}, +{"id":"144563","label":"showing a cup behind a container","template":"Showing [something] behind [something]","placeholders":["a cup","a container"]}, +{"id":"96350","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"160798","label":"turning the camera left while filming earphone","template":"Turning the camera left while filming [something]","placeholders":["earphone"]}, +{"id":"151740","label":"turning the camera right while filming wireless mouse","template":"Turning the camera right while filming [something]","placeholders":["wireless mouse"]}, +{"id":"144311","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"121340","label":"putting toy car into plastic bowl","template":"Putting [something] into [something]","placeholders":["toy car","plastic bowl"]}, +{"id":"187094","label":"lifting book with calculator on it","template":"Lifting [something] with [something] on it","placeholders":["book","calculator"]}, +{"id":"163013","label":"squeezing glue bottle","template":"Squeezing [something]","placeholders":["glue bottle"]}, +{"id":"60396","label":"putting mug in front of marker","template":"Putting [something] in front of [something]","placeholders":["mug","marker"]}, +{"id":"87209","label":"opening mason jar","template":"Opening [something]","placeholders":["mason jar"]}, +{"id":"36967","label":"pretending to take shirt out of closet","template":"Pretending to take [something] out of [something]","placeholders":["shirt","closet"]}, +{"id":"95042","label":"wiping water off of a table","template":"Wiping [something] off of [something]","placeholders":["water","a table"]}, +{"id":"154158","label":"pouring milk into blue cup","template":"Pouring [something] into [something]","placeholders":["milk","blue cup"]}, +{"id":"88938","label":"putting spoon next to cup","template":"Putting [something] next to [something]","placeholders":["spoon","cup"]}, +{"id":"4949","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"154852","label":"taking a tomato out of a box of tomatoes","template":"Taking [something] out of [something]","placeholders":["a tomato","a box of tomatoes"]}, +{"id":"73083","label":"moving ball across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["ball"]}, +{"id":"44577","label":"lifting up one end of wallet without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["wallet"]}, +{"id":"28624","label":"tipping pepper shaker over","template":"Tipping [something] over","placeholders":["pepper shaker"]}, +{"id":"152912","label":"putting orange in front of cup","template":"Putting [something] in front of [something]","placeholders":["orange","cup"]}, +{"id":"60407","label":"holding packing tape","template":"Holding [something]","placeholders":["packing tape"]}, +{"id":"197287","label":"lifting a surface with ring on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["ring"]}, +{"id":"111338","label":"pulling two ends of a rubberband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubberband"]}, +{"id":"115409","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"116864","label":"holding pumpkin cookie","template":"Holding [something]","placeholders":["pumpkin cookie"]}, +{"id":"75999","label":"wafer colliding with wafer and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["wafer","wafer"]}, +{"id":"63526","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"45227","label":"turning the camera right while filming jackfruits","template":"Turning the camera right while filming [something]","placeholders":["jackfruits"]}, +{"id":"96222","label":"squeezing play-doh","template":"Squeezing [something]","placeholders":["play-doh"]}, +{"id":"66432","label":"wiping marker off of a white board","template":"Wiping [something] off of [something]","placeholders":["marker","a white board"]}, +{"id":"123292","label":"pretending to be tearing remote","template":"Pretending to be tearing [something that is not tearable]","placeholders":["remote"]}, +{"id":"148454","label":"pretending to put a book on a surface","template":"Pretending to put [something] on a surface","placeholders":["a book"]}, +{"id":"77538","label":"poking tape so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tape"]}, +{"id":"104293","label":"moving a lip balm and a laser toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a lip balm","a laser toy"]}, +{"id":"177798","label":"holding chapstick behind candle","template":"Holding [something] behind [something]","placeholders":["chapstick","candle"]}, +{"id":"217782","label":"lifting clip box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["clip box"]}, +{"id":"179385","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"6774","label":"taking mouse from table","template":"Taking [something] from [somewhere]","placeholders":["mouse","table"]}, +{"id":"173425","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"41732","label":"dropping a pillow onto a bed","template":"Dropping [something] onto [something]","placeholders":["a pillow","a bed"]}, +{"id":"9729","label":"showing tape behind book","template":"Showing [something] behind [something]","placeholders":["tape","book"]}, +{"id":"173242","label":"stacking 4 coins","template":"Stacking [number of] [something]","placeholders":["4","coins"]}, +{"id":"43549","label":"moving button of light switch","template":"Moving [part] of [something]","placeholders":["button","light switch"]}, +{"id":"167907","label":"taking a pen from a glass","template":"Taking [something] from [somewhere]","placeholders":["a pen","a glass"]}, +{"id":"91216","label":"dropping a toothpick behind a belt","template":"Dropping [something] behind [something]","placeholders":["a toothpick","a belt"]}, +{"id":"211630","label":"turning the camera upwards while filming box","template":"Turning the camera upwards while filming [something]","placeholders":["box"]}, +{"id":"53007","label":"poking a pillow so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pillow"]}, +{"id":"46188","label":"pretending to put tablet on a surface","template":"Pretending to put [something] on a surface","placeholders":["tablet"]}, +{"id":"133798","label":"putting a box in front of a lip balm","template":"Putting [something] in front of [something]","placeholders":["a box","a lip balm"]}, +{"id":"192470","label":"moving glue stick and eraser away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glue stick","eraser"]}, +{"id":"92474","label":"lifting up one end of duster, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["duster"]}, +{"id":"203018","label":"putting book underneath book","template":"Putting [something] underneath [something]","placeholders":["book","book"]}, +{"id":"18785","label":"piling cell phones up","template":"Piling [something] up","placeholders":["cell phones"]}, +{"id":"207766","label":"moving bottle closer to pencil holders","template":"Moving [something] closer to [something]","placeholders":["bottle","pencil holders"]}, +{"id":"209129","label":"hitting statue with pen","template":"Hitting [something] with [something]","placeholders":["statue","pen"]}, +{"id":"169125","label":"poking a pen so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a pen"]}, +{"id":"142604","label":"failing to put basting brush into mini jar because basting brush does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["basting brush","mini jar","basting brush"]}, +{"id":"12358","label":"pretending to be tearing napkin","template":"Pretending to be tearing [something that is not tearable]","placeholders":["napkin"]}, +{"id":"151527","label":"lifting up one end of a remote without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a remote"]}, +{"id":"180046","label":"closing hand bag","template":"Closing [something]","placeholders":["hand bag"]}, +{"id":"152375","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"191558","label":"pulling vasmol bottle from left to right","template":"Pulling [something] from left to right","placeholders":["vasmol bottle"]}, +{"id":"36222","label":"holding keyboard behind backpack","template":"Holding [something] behind [something]","placeholders":["keyboard","backpack"]}, +{"id":"12621","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"130007","label":"covering paperclip with notepad","template":"Covering [something] with [something]","placeholders":["paperclip","notepad"]}, +{"id":"44978","label":"spinning lipbalm so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lipbalm"]}, +{"id":"51884","label":"holding glove in front of plate","template":"Holding [something] in front of [something]","placeholders":["glove","plate"]}, +{"id":"177810","label":"pushing face from right to left","template":"Pushing [something] from right to left","placeholders":["face"]}, +{"id":"68922","label":"moving fuel can away from the camera","template":"Moving [something] away from the camera","placeholders":["fuel can"]}, +{"id":"169513","label":"moving box and soap away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","soap"]}, +{"id":"163246","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"76274","label":"dropping cup onto cup","template":"Dropping [something] onto [something]","placeholders":["cup","cup"]}, +{"id":"71565","label":"pretending to pick purple plastic spider up","template":"Pretending to pick [something] up","placeholders":["purple plastic spider"]}, +{"id":"8551","label":"dropping a bottletop into a box","template":"Dropping [something] into [something]","placeholders":["a bottletop","a box"]}, +{"id":"153414","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"132100","label":"lifting marker up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["marker"]}, +{"id":"184818","label":"plugging a cable into a laptop power adapter","template":"Plugging [something] into [something]","placeholders":["a cable","a laptop power adapter"]}, +{"id":"165192","label":"moving head charger and head charger closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["head charger","head charger"]}, +{"id":"98584","label":"dropping sandals next to chair","template":"Dropping [something] next to [something]","placeholders":["sandals","chair"]}, +{"id":"31892","label":"lifting up one end of box without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["box"]}, +{"id":"208470","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"159635","label":"uncovering mobile phone","template":"Uncovering [something]","placeholders":["mobile phone"]}, +{"id":"214517","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"5335","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213520","label":"tilting note book with rubix cube on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["note book","rubix cube"]}, +{"id":"35659","label":"putting a box of tissues on the edge of a table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a box of tissues","a table"]}, +{"id":"89540","label":"pretending to put pebble next to glass","template":"Pretending to put [something] next to [something]","placeholders":["pebble","glass"]}, +{"id":"172748","label":"pulling two ends of a bracelet so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a bracelet"]}, +{"id":"184196","label":"putting mug in front of ruler","template":"Putting [something] in front of [something]","placeholders":["mug","ruler"]}, +{"id":"74086","label":"pushing a coin with a pen","template":"Pushing [something] with [something]","placeholders":["a coin","a pen"]}, +{"id":"8842","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"188369","label":"poking my dog so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["my dog"]}, +{"id":"174621","label":"pushing hat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hat"]}, +{"id":"145850","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"148958","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"2863","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"100149","label":"dropping a bottle into a trash can","template":"Dropping [something] into [something]","placeholders":["a bottle","a trash can"]}, +{"id":"63857","label":"putting a pellet to other pellets","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pellet to other pellets"]}, +{"id":"110553","label":"wiping dust off of table","template":"Wiping [something] off of [something]","placeholders":["dust","table"]}, +{"id":"161834","label":"poking poking plastic spray once so that it falls so that it falls over","template":"Poking [something] so that it falls over","placeholders":["poking plastic spray once so that it falls"]}, +{"id":"18944","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"74394","label":"approaching notebook with your camera","template":"Approaching [something] with your camera","placeholders":["notebook"]}, +{"id":"60261","label":"letting a coconut roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a coconut"]}, +{"id":"42793","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"102660","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"107944","label":"a water can colliding with another water can and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a water can","another water can"]}, +{"id":"127342","label":"coin of inr 2 colliding with coin of inr 1 and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["coin of inr 2","coin of inr 1"]}, +{"id":"45070","label":"turning the cup upside down","template":"Turning [something] upside down","placeholders":["the cup"]}, +{"id":"27055","label":"lifting wooden stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wooden stick"]}, +{"id":"218395","label":"covering shaker with napkin","template":"Covering [something] with [something]","placeholders":["shaker","napkin"]}, +{"id":"92214","label":"pretending to be tearing a phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a phone"]}, +{"id":"201710","label":"putting mascara bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["mascara bottle"]}, +{"id":"53020","label":"pulling a hat out of decorative shell","template":"Pulling [something] out of [something]","placeholders":["a hat","decorative shell"]}, +{"id":"168634","label":"moving bottle and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","bottle"]}, +{"id":"149646","label":"stuffing a game into an envelope","template":"Stuffing [something] into [something]","placeholders":["a game","an envelope"]}, +{"id":"99451","label":"throwing empty sachets in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["empty sachets"]}, +{"id":"169117","label":"turning the camera downwards while filming cup","template":"Turning the camera downwards while filming [something]","placeholders":["cup"]}, +{"id":"113108","label":"pretending to close perfume without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["perfume"]}, +{"id":"41412","label":"showing shoe polish brush to the camera","template":"Showing [something] to the camera","placeholders":["shoe polish brush"]}, +{"id":"187318","label":"putting 2 cans of compressed fuel onto a book","template":"Putting [number of] [something] onto [something]","placeholders":["2","cans of compressed fuel","a book"]}, +{"id":"35757","label":"pretending to open jar with honey without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar with honey"]}, +{"id":"3257","label":"throwing toy wheel in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["toy wheel"]}, +{"id":"35365","label":"opening trash can","template":"Opening [something]","placeholders":["trash can"]}, +{"id":"40312","label":"putting record book","template":"Putting [something similar to other things that are already on the table]","placeholders":["record book"]}, +{"id":"114541","label":"pushing cleaning product so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cleaning product"]}, +{"id":"139818","label":"putting wallet underneath a book","template":"Putting [something] underneath [something]","placeholders":["wallet","a book"]}, +{"id":"152719","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"141737","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"71873","label":"taking sandwich out of lunchbox","template":"Taking [something] out of [something]","placeholders":["sandwich","lunchbox"]}, +{"id":"181318","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"198362","label":"plugging cord into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","outlet"]}, +{"id":"97601","label":"moving eraser and usb cable closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eraser","usb cable"]}, +{"id":"92059","label":"pushing laptop so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["laptop"]}, +{"id":"102700","label":"scooping sand up with a toy","template":"Scooping [something] up with [something]","placeholders":["sand","a toy"]}, +{"id":"17650","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"169027","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"134067","label":"pretending to put a pencil into a cup","template":"Pretending to put [something] into [something]","placeholders":["a pencil","a cup"]}, +{"id":"111964","label":"spilling water next to glasses","template":"Spilling [something] next to [something]","placeholders":["water","glasses"]}, +{"id":"39292","label":"failing to put a box into a glass because the box does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a box","a glass","the box"]}, +{"id":"4768","label":"plugging a cable into a computer","template":"Plugging [something] into [something]","placeholders":["a cable","a computer"]}, +{"id":"163214","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"130060","label":"turning the camera right while filming white book marker","template":"Turning the camera right while filming [something]","placeholders":["white book marker"]}, +{"id":"128518","label":"putting a mug upright on the table","template":"Putting [something] upright on the table","placeholders":["a mug"]}, +{"id":"93739","label":"pretending to take a remote control from counter","template":"Pretending to take [something] from [somewhere]","placeholders":["a remote control","counter"]}, +{"id":"47791","label":"scooping sugar up with measuring cup","template":"Scooping [something] up with [something]","placeholders":["sugar","measuring cup"]}, +{"id":"211385","label":"seashell falling like a rock","template":"[Something] falling like a rock","placeholders":["seashell"]}, +{"id":"108836","label":"dropping die into cup","template":"Dropping [something] into [something]","placeholders":["die","cup"]}, +{"id":"182282","label":"moving banana and plate closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["banana","plate"]}, +{"id":"92266","label":"pretending to pick lemon up","template":"Pretending to pick [something] up","placeholders":["lemon"]}, +{"id":"23954","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"205638","label":"pretending to throw an apple","template":"Pretending to throw [something]","placeholders":["an apple"]}, +{"id":"174675","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"27820","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"130207","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"23102","label":"plugging charger into plug hole but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","plug hole"]}, +{"id":"188898","label":"putting a glass behind a cup","template":"Putting [something] behind [something]","placeholders":["a glass","a cup"]}, +{"id":"203547","label":"closing a drawer","template":"Closing [something]","placeholders":["a drawer"]}, +{"id":"125653","label":"moving glass and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","bottle"]}, +{"id":"58070","label":"spinning empty bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["empty bottle"]}, +{"id":"64105","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"153990","label":"hitting a child toy with a hammer","template":"Hitting [something] with [something]","placeholders":["a child toy","a hammer"]}, +{"id":"104040","label":"holding a paint brush in front of a doll","template":"Holding [something] in front of [something]","placeholders":["a paint brush","a doll"]}, +{"id":"75154","label":"pushing mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mug"]}, +{"id":"94202","label":"holding something","template":"Holding [something]","placeholders":["something"]}, +{"id":"208577","label":"closing umbrella","template":"Closing [something]","placeholders":["umbrella"]}, +{"id":"218730","label":"dropping shirt behind videotapes","template":"Dropping [something] behind [something]","placeholders":["shirt","videotapes"]}, +{"id":"84638","label":"spinning ring that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ring"]}, +{"id":"132415","label":"pretending to pick a smartphone up","template":"Pretending to pick [something] up","placeholders":["a smartphone"]}, +{"id":"28863","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"62321","label":"twisting (wringing) dish cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["dish cloth"]}, +{"id":"213167","label":"turning the camera upwards while filming hat","template":"Turning the camera upwards while filming [something]","placeholders":["hat"]}, +{"id":"208891","label":"taking hair pins on the table","template":"Taking [one of many similar things on the table]","placeholders":["hair pins on the table"]}, +{"id":"25435","label":"lifting tablet with paper on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","paper"]}, +{"id":"10309","label":"moving clip box up","template":"Moving [something] up","placeholders":["clip box"]}, +{"id":"18068","label":"opening a can","template":"Opening [something]","placeholders":["a can"]}, +{"id":"214419","label":"bangle being deflected from a book","template":"[Something] being deflected from [something]","placeholders":["bangle","a book"]}, +{"id":"127427","label":"dropping yellow pen next to blue pen","template":"Dropping [something] next to [something]","placeholders":["yellow pen","blue pen"]}, +{"id":"123212","label":"opening thermos","template":"Opening [something]","placeholders":["thermos"]}, +{"id":"76637","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"65067","label":"closing closing plastic spray","template":"Closing [something]","placeholders":["closing plastic spray"]}, +{"id":"73278","label":"pushing button onto printer","template":"Pushing [something] onto [something]","placeholders":["button","printer"]}, +{"id":"11713","label":"pushing plate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plate"]}, +{"id":"21655","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"164127","label":"dropping a matchbox in front of a bottletop","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a bottletop"]}, +{"id":"205040","label":"pulling a matchbox from behind of a book","template":"Pulling [something] from behind of [something]","placeholders":["a matchbox","a book"]}, +{"id":"84352","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"210950","label":"stacking four cookies","template":"Stacking [number of] [something]","placeholders":["four","cookies"]}, +{"id":"200906","label":"pretending to put fork on a surface","template":"Pretending to put [something] on a surface","placeholders":["fork"]}, +{"id":"197965","label":"moving soft drink can away from the camera","template":"Moving [something] away from the camera","placeholders":["soft drink can"]}, +{"id":"210709","label":"pretending to open a drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a drawer"]}, +{"id":"72806","label":"putting duster and blue colour spectacle box on the table","template":"Putting [something] and [something] on the table","placeholders":["duster","blue colour spectacle box"]}, +{"id":"67692","label":"putting magnet on a surface","template":"Putting [something] on a surface","placeholders":["magnet"]}, +{"id":"164131","label":"pushing spanner from right to left","template":"Pushing [something] from right to left","placeholders":["spanner"]}, +{"id":"13867","label":"attaching a battery to headphones","template":"Attaching [something] to [something]","placeholders":["a battery","headphones"]}, +{"id":"11086","label":"dropping something behind something","template":"Dropping [something] behind [something]","placeholders":["something","something"]}, +{"id":"128492","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"65849","label":"covering pen with cloth","template":"Covering [something] with [something]","placeholders":["pen","cloth"]}, +{"id":"4441","label":"stuffing cookie into box","template":"Stuffing [something] into [something]","placeholders":["cookie","box"]}, +{"id":"42005","label":"putting bowel","template":"Putting [something similar to other things that are already on the table]","placeholders":["bowel"]}, +{"id":"106051","label":"lifting cup with tissue on it","template":"Lifting [something] with [something] on it","placeholders":["cup","tissue"]}, +{"id":"165799","label":"pushing coaster from right to left","template":"Pushing [something] from right to left","placeholders":["coaster"]}, +{"id":"35662","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"216679","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"52158","label":"throwing pink ball against black chair","template":"Throwing [something] against [something]","placeholders":["pink ball","black chair"]}, +{"id":"47837","label":"opening a safe","template":"Opening [something]","placeholders":["a safe"]}, +{"id":"220224","label":"trying but failing to attach battery cover to remote because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["battery cover","remote"]}, +{"id":"3208","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"209765","label":"twisting lamp","template":"Twisting [something]","placeholders":["lamp"]}, +{"id":"140826","label":"pulling book out of plastic bag","template":"Pulling [something] out of [something]","placeholders":["book","plastic bag"]}, +{"id":"201101","label":"putting card into box","template":"Putting [something] into [something]","placeholders":["card","box"]}, +{"id":"217325","label":"covering tool with cloth","template":"Covering [something] with [something]","placeholders":["tool","cloth"]}, +{"id":"184358","label":"throwing a bottle against a cupboard","template":"Throwing [something] against [something]","placeholders":["a bottle","a cupboard"]}, +{"id":"110477","label":"putting knife into dish","template":"Putting [something] into [something]","placeholders":["knife","dish"]}, +{"id":"194797","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"120311","label":"dropping water in front of bottle","template":"Dropping [something] in front of [something]","placeholders":["water","bottle"]}, +{"id":"10013","label":"holding plastic ring","template":"Holding [something]","placeholders":["plastic ring"]}, +{"id":"159327","label":"holding notebook next to closet door","template":"Holding [something] next to [something]","placeholders":["notebook","closet door"]}, +{"id":"105867","label":"moving rock away from lighter","template":"Moving [something] away from [something]","placeholders":["rock","lighter"]}, +{"id":"9496","label":"removing wood box, revealing mobile behind","template":"Removing [something], revealing [something] behind","placeholders":["wood box","mobile"]}, +{"id":"210080","label":"showing that stapler is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["stapler","spectacle box"]}, +{"id":"172770","label":"holding toy car","template":"Holding [something]","placeholders":["toy car"]}, +{"id":"81269","label":"wiping tea off of counter","template":"Wiping [something] off of [something]","placeholders":["tea","counter"]}, +{"id":"134125","label":"poking a stuffed animal so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a stuffed animal"]}, +{"id":"27154","label":"putting a can upright on the table","template":"Putting [something] upright on the table","placeholders":["a can"]}, +{"id":"125063","label":"spinning toothpaste that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothpaste"]}, +{"id":"83649","label":"turning the camera upwards while filming me","template":"Turning the camera upwards while filming [something]","placeholders":["me"]}, +{"id":"114106","label":"putting a bag in front of a spec","template":"Putting [something] in front of [something]","placeholders":["a bag","a spec"]}, +{"id":"175430","label":"moving branch across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["branch"]}, +{"id":"150472","label":"attaching sticker to table","template":"Attaching [something] to [something]","placeholders":["sticker","table"]}, +{"id":"72679","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"34882","label":"uncovering a robot","template":"Uncovering [something]","placeholders":["a robot"]}, +{"id":"186671","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"157137","label":"moving soft drink can towards the camera","template":"Moving [something] towards the camera","placeholders":["soft drink can"]}, +{"id":"122632","label":"pretending to open a pencil case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a pencil case"]}, +{"id":"62688","label":"pretending to put glass next to glass","template":"Pretending to put [something] next to [something]","placeholders":["glass","glass"]}, +{"id":"52843","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"127977","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"135061","label":"pushing black sharpner with glue stick","template":"Pushing [something] with [something]","placeholders":["black sharpner","glue stick"]}, +{"id":"34162","label":"lifting diary with punching machine on it","template":"Lifting [something] with [something] on it","placeholders":["diary","punching machine"]}, +{"id":"123678","label":"pulling tape onto box","template":"Pulling [something] onto [something]","placeholders":["tape","box"]}, +{"id":"18619","label":"letting pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil"]}, +{"id":"174027","label":"approaching light with your camera","template":"Approaching [something] with your camera","placeholders":["light"]}, +{"id":"125947","label":"poking a hole into chocolate","template":"Poking a hole into [some substance]","placeholders":["chocolate"]}, +{"id":"80707","label":"tilting a cutting board with a dish towel on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cutting board","a dish towel"]}, +{"id":"89725","label":"showing that green cup is empty","template":"Showing that [something] is empty","placeholders":["green cup"]}, +{"id":"111509","label":"taking fork out of drawer","template":"Taking [something] out of [something]","placeholders":["fork","drawer"]}, +{"id":"135568","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"170507","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"199789","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"220360","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"219838","label":"burying stone in sand","template":"Burying [something] in [something]","placeholders":["stone","sand"]}, +{"id":"82723","label":"stacking 3 coins","template":"Stacking [number of] [something]","placeholders":["3","coins"]}, +{"id":"168986","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"126836","label":"holding pen behind bottle","template":"Holding [something] behind [something]","placeholders":["pen","bottle"]}, +{"id":"84086","label":"throwing a tennis ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["a tennis ball"]}, +{"id":"54222","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"103402","label":"pushing the air off of the air","template":"Pushing [something] off of [something]","placeholders":["the air","the air"]}, +{"id":"203567","label":"pretending to poke a bottle of cologne","template":"Pretending to poke [something]","placeholders":["a bottle of cologne"]}, +{"id":"206745","label":"putting a spoon onto a container so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a spoon","a container"]}, +{"id":"204660","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"205381","label":"moving cloth up","template":"Moving [something] up","placeholders":["cloth"]}, +{"id":"29045","label":"pretending to put a box on a surface","template":"Pretending to put [something] on a surface","placeholders":["a box"]}, +{"id":"79045","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"181241","label":"dropping ring next to bracelet","template":"Dropping [something] next to [something]","placeholders":["ring","bracelet"]}, +{"id":"156280","label":"folding a wash cloth","template":"Folding [something]","placeholders":["a wash cloth"]}, +{"id":"164703","label":"sheep falling like a rock","template":"[Something] falling like a rock","placeholders":["sheep"]}, +{"id":"136926","label":"letting a marker roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a marker"]}, +{"id":"143988","label":"pushing mp3 player off of cookie box","template":"Pushing [something] off of [something]","placeholders":["mp3 player","cookie box"]}, +{"id":"35522","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"134490","label":"closing fridge door","template":"Closing [something]","placeholders":["fridge door"]}, +{"id":"105525","label":"putting glass next to bowl","template":"Putting [something] next to [something]","placeholders":["glass","bowl"]}, +{"id":"99753","label":"holding a slipper in front of a vacuum cleaner","template":"Holding [something] in front of [something]","placeholders":["a slipper","a vacuum cleaner"]}, +{"id":"46581","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"105972","label":"tearing pamphlet into two pieces","template":"Tearing [something] into two pieces","placeholders":["pamphlet"]}, +{"id":"183491","label":"putting a bear behind a ball","template":"Putting [something] behind [something]","placeholders":["a bear","a ball"]}, +{"id":"74098","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"210140","label":"trying but failing to attach credit card to black box because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["credit card","black box"]}, +{"id":"70842","label":"pillow colliding with pillow and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pillow","pillow"]}, +{"id":"144578","label":"spinning a ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ball"]}, +{"id":"182789","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"25290","label":"putting pusher, nail cutter and nipper on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pusher","nail cutter","nipper"]}, +{"id":"219137","label":"pushing a toy tractor so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a toy tractor"]}, +{"id":"148441","label":"moving bottle cap across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["bottle cap"]}, +{"id":"29996","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"166003","label":"turning the camera left while filming ring","template":"Turning the camera left while filming [something]","placeholders":["ring"]}, +{"id":"87210","label":"moving inhaler up","template":"Moving [something] up","placeholders":["inhaler"]}, +{"id":"99090","label":"dropping a coin next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a coin","a shoe brush"]}, +{"id":"134372","label":"folding a kitchen towel","template":"Folding [something]","placeholders":["a kitchen towel"]}, +{"id":"131278","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"100358","label":"pretending to put eggs next to coffee","template":"Pretending to put [something] next to [something]","placeholders":["eggs","coffee"]}, +{"id":"146517","label":"showing a snack maker next to the jug","template":"Showing [something] next to [something]","placeholders":["a snack maker","the jug"]}, +{"id":"138577","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"185981","label":"picking candle up","template":"Picking [something] up","placeholders":["candle"]}, +{"id":"58789","label":"moving a book down","template":"Moving [something] down","placeholders":["a book"]}, +{"id":"53611","label":"plugging a lead into a wall plug","template":"Plugging [something] into [something]","placeholders":["a lead","a wall plug"]}, +{"id":"97871","label":"sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet"]}, +{"id":"142654","label":"moving tomato and mandarin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["tomato","mandarin"]}, +{"id":"131838","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"103954","label":"turning the camera upwards while filming poster","template":"Turning the camera upwards while filming [something]","placeholders":["poster"]}, +{"id":"188950","label":"sprinkling salt onto table","template":"Sprinkling [something] onto [something]","placeholders":["salt","table"]}, +{"id":"113617","label":"lifting up one end of a book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a book"]}, +{"id":"6392","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"211762","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"85972","label":"taking keys out of bowl","template":"Taking [something] out of [something]","placeholders":["keys","bowl"]}, +{"id":"11780","label":"pulling two ends of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a paper"]}, +{"id":"164847","label":"putting toys next to toys","template":"Putting [something similar to other things that are already on the table]","placeholders":["toys next to toys"]}, +{"id":"152520","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"173497","label":"taking one of many knives","template":"Taking [one of many similar things on the table]","placeholders":["one of many knives"]}, +{"id":"167119","label":"pushing mouse from right to left","template":"Pushing [something] from right to left","placeholders":["mouse"]}, +{"id":"81559","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"194875","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"197706","label":"pretending to close plastic jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["plastic jar"]}, +{"id":"9655","label":"opening container of slime","template":"Opening [something]","placeholders":["container of slime"]}, +{"id":"22416","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"17836","label":"dropping cat behind cube","template":"Dropping [something] behind [something]","placeholders":["cat","cube"]}, +{"id":"10569","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"116322","label":"putting marker and debit card on the table","template":"Putting [something] and [something] on the table","placeholders":["marker","debit card"]}, +{"id":"204410","label":"covering a salt shaker with a towel","template":"Covering [something] with [something]","placeholders":["a salt shaker","a towel"]}, +{"id":"21256","label":"stuffing plastic bags into bag","template":"Stuffing [something] into [something]","placeholders":["plastic bags","bag"]}, +{"id":"148979","label":"approaching a cat with your camera","template":"Approaching [something] with your camera","placeholders":["a cat"]}, +{"id":"181003","label":"turning the camera right while filming posters","template":"Turning the camera right while filming [something]","placeholders":["posters"]}, +{"id":"192580","label":"tilting a notebook with a jar on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","a jar"]}, +{"id":"30116","label":"uncovering mouse","template":"Uncovering [something]","placeholders":["mouse"]}, +{"id":"4336","label":"squeezing an ethernet cable","template":"Squeezing [something]","placeholders":["an ethernet cable"]}, +{"id":"20957","label":"showing that cocoa powder is inside transparent box","template":"Showing that [something] is inside [something]","placeholders":["cocoa powder","transparent box"]}, +{"id":"20355","label":"trying to bend plate so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plate"]}, +{"id":"50572","label":"putting a ball next to a bottle","template":"Putting [something] next to [something]","placeholders":["a ball","a bottle"]}, +{"id":"206260","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"120655","label":"failing to put a shoebox into a trashcan because a shoebox does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a shoebox","a trashcan","a shoebox"]}, +{"id":"188511","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"77527","label":"scooping a command hook up with post it","template":"Scooping [something] up with [something]","placeholders":["a command hook","post it"]}, +{"id":"117728","label":"putting shoe onto jar so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["shoe","jar"]}, +{"id":"120585","label":"turning the camera downwards while filming traffic light","template":"Turning the camera downwards while filming [something]","placeholders":["traffic light"]}, +{"id":"116233","label":"stuffing a wipe into a bottle","template":"Stuffing [something] into [something]","placeholders":["a wipe","a bottle"]}, +{"id":"49325","label":"spinning spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning a coin"]}, +{"id":"46148","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"162441","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"149516","label":"pretending to open food container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["food container"]}, +{"id":"124065","label":"pushing a box of tissues with a clothespin","template":"Pushing [something] with [something]","placeholders":["a box of tissues","a clothespin"]}, +{"id":"78698","label":"putting plate into pile","template":"Putting [something] into [something]","placeholders":["plate","pile"]}, +{"id":"55349","label":"putting duster and spectacle box on the table","template":"Putting [something] and [something] on the table","placeholders":["duster","spectacle box"]}, +{"id":"26202","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"108921","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"41967","label":"picking a laptop charger up","template":"Picking [something] up","placeholders":["a laptop charger"]}, +{"id":"58923","label":"moving black charger adapter up","template":"Moving [something] up","placeholders":["black charger adapter"]}, +{"id":"41321","label":"hitting a stappler with scissors","template":"Hitting [something] with [something]","placeholders":["a stappler","scissors"]}, +{"id":"46364","label":"pretending to pick stuffed toy up","template":"Pretending to pick [something] up","placeholders":["stuffed toy"]}, +{"id":"176278","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"47312","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"105366","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"191829","label":"poking notebook so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["notebook"]}, +{"id":"166871","label":"holding a mouse over a printer","template":"Holding [something] over [something]","placeholders":["a mouse","a printer"]}, +{"id":"120918","label":"lifting up one end of a screw-wrench, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a screw-wrench"]}, +{"id":"49179","label":"holding charger adapter next to glass bowl","template":"Holding [something] next to [something]","placeholders":["charger adapter","glass bowl"]}, +{"id":"82488","label":"tearing tissues into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissues"]}, +{"id":"32372","label":"plugging phone into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone","charger"]}, +{"id":"154425","label":"lifting up one end of breadboard without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["breadboard"]}, +{"id":"160256","label":"pretending to be tearing a ruler","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a ruler"]}, +{"id":"48022","label":"moving away from glass tumbler with your camera","template":"Moving away from [something] with your camera","placeholders":["glass tumbler"]}, +{"id":"151796","label":"putting flashdrive into container","template":"Putting [something] into [something]","placeholders":["flashdrive","container"]}, +{"id":"206480","label":"tearing flower just a little bit","template":"Tearing [something] just a little bit","placeholders":["flower"]}, +{"id":"120767","label":"moving lighter up","template":"Moving [something] up","placeholders":["lighter"]}, +{"id":"214705","label":"poking red diary so that it falls over","template":"Poking [something] so that it falls over","placeholders":["red diary"]}, +{"id":"195189","label":"pretending to put a doll underneath a table","template":"Pretending to put [something] underneath [something]","placeholders":["a doll","a table"]}, +{"id":"194471","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"217970","label":"holding a domino chip behind wooden box","template":"Holding [something] behind [something]","placeholders":["a domino chip","wooden box"]}, +{"id":"59756","label":"garage opener being deflected from cell phone","template":"[Something] being deflected from [something]","placeholders":["garage opener","cell phone"]}, +{"id":"149031","label":"putting five gooseberry onto a container","template":"Putting [number of] [something] onto [something]","placeholders":["five","gooseberry","a container"]}, +{"id":"50584","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"125672","label":"putting binder clips behind a cup","template":"Putting [something] behind [something]","placeholders":["binder clips","a cup"]}, +{"id":"38932","label":"pulling toy from right to left","template":"Pulling [something] from right to left","placeholders":["toy"]}, +{"id":"143179","label":"dropping a spoon next to a bowl","template":"Dropping [something] next to [something]","placeholders":["a spoon","a bowl"]}, +{"id":"219206","label":"stuffing napkin into cup","template":"Stuffing [something] into [something]","placeholders":["napkin","cup"]}, +{"id":"12959","label":"pretending to pick fork up","template":"Pretending to pick [something] up","placeholders":["fork"]}, +{"id":"75809","label":"throwing puzzle piece against couch","template":"Throwing [something] against [something]","placeholders":["puzzle piece","couch"]}, +{"id":"151322","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"35446","label":"uncovering rice jar","template":"Uncovering [something]","placeholders":["rice jar"]}, +{"id":"23222","label":"squeezing a rag","template":"Squeezing [something]","placeholders":["a rag"]}, +{"id":"133037","label":"moving an eraser and a bottlecap away from each other","template":"Moving [something] and [something] away from each other","placeholders":["an eraser","a bottlecap"]}, +{"id":"159767","label":"moving banana up","template":"Moving [something] up","placeholders":["banana"]}, +{"id":"126202","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"34311","label":"pushing toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy car"]}, +{"id":"130349","label":"putting mug in front of cassette tape","template":"Putting [something] in front of [something]","placeholders":["mug","cassette tape"]}, +{"id":"109736","label":"putting a marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["a marker"]}, +{"id":"47822","label":"spinning something so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["something"]}, +{"id":"7873","label":"showing small box on top of large box","template":"Showing [something] on top of [something]","placeholders":["small box","large box"]}, +{"id":"117490","label":"pulling dvd case from left to right","template":"Pulling [something] from left to right","placeholders":["dvd case"]}, +{"id":"63032","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"49632","label":"pushing specs so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["specs"]}, +{"id":"216211","label":"dropping a backpack onto the floor","template":"Dropping [something] onto [something]","placeholders":["a backpack","the floor"]}, +{"id":"146757","label":"putting a coat in front of a coat hanger","template":"Putting [something] in front of [something]","placeholders":["a coat","a coat hanger"]}, +{"id":"141467","label":"putting 2 staplers onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","staplers","yellow note"]}, +{"id":"88101","label":"covering cup with blanket","template":"Covering [something] with [something]","placeholders":["cup","blanket"]}, +{"id":"68496","label":"uncovering a stuffed bunny","template":"Uncovering [something]","placeholders":["a stuffed bunny"]}, +{"id":"54071","label":"taking a spoon out of a cup","template":"Taking [something] out of [something]","placeholders":["a spoon","a cup"]}, +{"id":"12871","label":"package falling like a rock","template":"[Something] falling like a rock","placeholders":["package"]}, +{"id":"176994","label":"pushing pebble from right to left","template":"Pushing [something] from right to left","placeholders":["pebble"]}, +{"id":"1431","label":"closing transperent sugar jar","template":"Closing [something]","placeholders":["transperent sugar jar"]}, +{"id":"59216","label":"squeezing a trigger","template":"Squeezing [something]","placeholders":["a trigger"]}, +{"id":"87587","label":"moving scissors away from a wallet","template":"Moving [something] away from [something]","placeholders":["scissors","a wallet"]}, +{"id":"78943","label":"pretending to pick thread up","template":"Pretending to pick [something] up","placeholders":["thread"]}, +{"id":"20480","label":"stuffing plastic bag into small gift bag","template":"Stuffing [something] into [something]","placeholders":["plastic bag","small gift bag"]}, +{"id":"121922","label":"pulling red booklet from right to left","template":"Pulling [something] from right to left","placeholders":["red booklet"]}, +{"id":"42321","label":"turning the camera downwards while filming plants","template":"Turning the camera downwards while filming [something]","placeholders":["plants"]}, +{"id":"40619","label":"dropping pen onto envelope","template":"Dropping [something] onto [something]","placeholders":["pen","envelope"]}, +{"id":"95483","label":"putting something and something on the table","template":"Putting [something] and [something] on the table","placeholders":["something","something"]}, +{"id":"46676","label":"showing fan regulator to the camera","template":"Showing [something] to the camera","placeholders":["fan regulator"]}, +{"id":"94123","label":"pushing ball off of books","template":"Pushing [something] off of [something]","placeholders":["ball","books"]}, +{"id":"7992","label":"pushing figurine so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["figurine"]}, +{"id":"60652","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"214358","label":"stacking 3 boxes","template":"Stacking [number of] [something]","placeholders":["3","boxes"]}, +{"id":"1334","label":"pouring water into flower pot","template":"Pouring [something] into [something]","placeholders":["water","flower pot"]}, +{"id":"119824","label":"moving a stapler up","template":"Moving [something] up","placeholders":["a stapler"]}, +{"id":"15602","label":"poking blender blade so that it spins around","template":"Poking [something] so that it spins around","placeholders":["blender blade"]}, +{"id":"54513","label":"moving ball and bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ball","bottle"]}, +{"id":"119359","label":"plugging usb cord into computer","template":"Plugging [something] into [something]","placeholders":["usb cord","computer"]}, +{"id":"176577","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"12607","label":"holding a cd","template":"Holding [something]","placeholders":["a cd"]}, +{"id":"119723","label":"poking plant so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["plant"]}, +{"id":"103987","label":"putting usb cable next to pink book","template":"Putting [something] next to [something]","placeholders":["usb cable","pink book"]}, +{"id":"87245","label":"pushing card with card","template":"Pushing [something] with [something]","placeholders":["card","card"]}, +{"id":"96676","label":"pushing ring so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ring"]}, +{"id":"186341","label":"moving teacup away from teacup","template":"Moving [something] away from [something]","placeholders":["teacup","teacup"]}, +{"id":"144282","label":"letting basketball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["basketball"]}, +{"id":"177728","label":"pretending to be tearing cell phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cell phone"]}, +{"id":"144685","label":"pretending to sprinkle air onto bottle","template":"Pretending to sprinkle air onto [something]","placeholders":["bottle"]}, +{"id":"19501","label":"stuffing a tissue into a tissue box","template":"Stuffing [something] into [something]","placeholders":["a tissue","a tissue box"]}, +{"id":"111545","label":"lifting up one end of a razor, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a razor"]}, +{"id":"49364","label":"approaching shampoo bottle with your camera","template":"Approaching [something] with your camera","placeholders":["shampoo bottle"]}, +{"id":"45213","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64817","label":"uncovering a toy","template":"Uncovering [something]","placeholders":["a toy"]}, +{"id":"28778","label":"dropping toothbrush in front of container","template":"Dropping [something] in front of [something]","placeholders":["toothbrush","container"]}, +{"id":"155475","label":"dropping coin in front of paper","template":"Dropping [something] in front of [something]","placeholders":["coin","paper"]}, +{"id":"91","label":"attaching a guitar pick to a ukelele","template":"Attaching [something] to [something]","placeholders":["a guitar pick","a ukelele"]}, +{"id":"52801","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"90178","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"92684","label":"pretending to put knife into mug","template":"Pretending to put [something] into [something]","placeholders":["knife","mug"]}, +{"id":"68995","label":"dropping white chalk in front of duster","template":"Dropping [something] in front of [something]","placeholders":["white chalk","duster"]}, +{"id":"67471","label":"moving box away from box","template":"Moving [something] away from [something]","placeholders":["box","box"]}, +{"id":"173679","label":"poking charger so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["charger"]}, +{"id":"106456","label":"folding sideview mirror","template":"Folding [something]","placeholders":["sideview mirror"]}, +{"id":"173519","label":"letting tape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tape"]}, +{"id":"165323","label":"turning the camera upwards while filming perfume","template":"Turning the camera upwards while filming [something]","placeholders":["perfume"]}, +{"id":"173035","label":"showing small book to the camera","template":"Showing [something] to the camera","placeholders":["small book"]}, +{"id":"154842","label":"putting pen behind box","template":"Putting [something] behind [something]","placeholders":["pen","box"]}, +{"id":"59721","label":"lifting up one end of pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil"]}, +{"id":"134862","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"178709","label":"pretending to put book into bag","template":"Pretending to put [something] into [something]","placeholders":["book","bag"]}, +{"id":"80776","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"123327","label":"letting baseball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["baseball"]}, +{"id":"69320","label":"ploythene bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["ploythene bag"]}, +{"id":"107772","label":"picking perfume bottle up","template":"Picking [something] up","placeholders":["perfume bottle"]}, +{"id":"46893","label":"throwing book against bed","template":"Throwing [something] against [something]","placeholders":["book","bed"]}, +{"id":"90889","label":"moving teaspoon of a cup","template":"Moving [part] of [something]","placeholders":["teaspoon","a cup"]}, +{"id":"187218","label":"pushing a cup off of wooden ledge","template":"Pushing [something] off of [something]","placeholders":["a cup","wooden ledge"]}, +{"id":"111511","label":"trying to pour water into the glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","the glass"]}, +{"id":"74663","label":"dropping a container into a box","template":"Dropping [something] into [something]","placeholders":["a container","a box"]}, +{"id":"105292","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"179191","label":"approaching hat with your camera","template":"Approaching [something] with your camera","placeholders":["hat"]}, +{"id":"151275","label":"pushing computer keyboard so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["computer keyboard"]}, +{"id":"85888","label":"stapler falling like a rock","template":"[Something] falling like a rock","placeholders":["stapler"]}, +{"id":"92501","label":"paper sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper sheet"]}, +{"id":"180192","label":"putting water into glass","template":"Putting [something] into [something]","placeholders":["water","glass"]}, +{"id":"204438","label":"removing a glass, revealing a banana behind","template":"Removing [something], revealing [something] behind","placeholders":["a glass","a banana"]}, +{"id":"150071","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"106357","label":"moving pencil towards the camera","template":"Moving [something] towards the camera","placeholders":["pencil"]}, +{"id":"202294","label":"putting a water bottle in front of a mallet","template":"Putting [something] in front of [something]","placeholders":["a water bottle","a mallet"]}, +{"id":"143334","label":"dropping clip into cup","template":"Dropping [something] into [something]","placeholders":["clip","cup"]}, +{"id":"140884","label":"trying but failing to attach phone to pencile because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["phone","pencile"]}, +{"id":"178493","label":"showing that eraser is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["eraser","green bowl"]}, +{"id":"61506","label":"piling things on the table up","template":"Piling [something] up","placeholders":["things on the table"]}, +{"id":"82744","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"68265","label":"tilting block with sunglasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["block","sunglasses"]}, +{"id":"117856","label":"taking a bottle","template":"Taking [one of many similar things on the table]","placeholders":["a bottle"]}, +{"id":"82610","label":"letting wood stick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["wood stick"]}, +{"id":"19621","label":"throwing a pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a pen"]}, +{"id":"91361","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"160277","label":"putting pen and paper on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","paper"]}, +{"id":"55776","label":"tilting plate with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","marker"]}, +{"id":"18678","label":"tearing a post-it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a post-it note"]}, +{"id":"68661","label":"putting grape","template":"Putting [something similar to other things that are already on the table]","placeholders":["grape"]}, +{"id":"4247","label":"taking candy out of sugar case","template":"Taking [something] out of [something]","placeholders":["candy","sugar case"]}, +{"id":"193996","label":"pouring drink onto glass","template":"Pouring [something] onto [something]","placeholders":["drink","glass"]}, +{"id":"673","label":"putting deodorant upright on the table","template":"Putting [something] upright on the table","placeholders":["deodorant"]}, +{"id":"203039","label":"approaching traffic light with your camera","template":"Approaching [something] with your camera","placeholders":["traffic light"]}, +{"id":"89708","label":"poking marker so that it spins around","template":"Poking [something] so that it spins around","placeholders":["marker"]}, +{"id":"84989","label":"pretending to put mobile behind pillow","template":"Pretending to put [something] behind [something]","placeholders":["mobile","pillow"]}, +{"id":"46708","label":"pretending to take a book from a bookcase","template":"Pretending to take [something] from [somewhere]","placeholders":["a book","a bookcase"]}, +{"id":"178909","label":"showing that water is inside cup","template":"Showing that [something] is inside [something]","placeholders":["water","cup"]}, +{"id":"164212","label":"moving birdcage towards the camera","template":"Moving [something] towards the camera","placeholders":["birdcage"]}, +{"id":"172312","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"114258","label":"pulling broom from right to left","template":"Pulling [something] from right to left","placeholders":["broom"]}, +{"id":"25958","label":"twisting shirt","template":"Twisting [something]","placeholders":["shirt"]}, +{"id":"107088","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"162387","label":"taking a napkin","template":"Taking [one of many similar things on the table]","placeholders":["a napkin"]}, +{"id":"125807","label":"turning the camera upwards while filming staircase","template":"Turning the camera upwards while filming [something]","placeholders":["staircase"]}, +{"id":"101146","label":"putting kiwi, pencil and wine glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["kiwi","pencil","wine glass"]}, +{"id":"134260","label":"holding cup behind wall","template":"Holding [something] behind [something]","placeholders":["cup","wall"]}, +{"id":"20255","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"102091","label":"moving green toy car up","template":"Moving [something] up","placeholders":["green toy car"]}, +{"id":"99332","label":"throwing a dog chew bone","template":"Throwing [something]","placeholders":["a dog chew bone"]}, +{"id":"130607","label":"uncovering uncovering microphone","template":"Uncovering [something]","placeholders":["uncovering microphone"]}, +{"id":"127461","label":"spilling water onto bowl","template":"Spilling [something] onto [something]","placeholders":["water","bowl"]}, +{"id":"45899","label":"pretending to take a game piece from it's container","template":"Pretending to take [something] from [somewhere]","placeholders":["a game piece","it's container"]}, +{"id":"10535","label":"bending a pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["a pencil"]}, +{"id":"102157","label":"stuffing knife into its slot place","template":"Stuffing [something] into [something]","placeholders":["knife","its slot place"]}, +{"id":"60447","label":"showing that saucepan is empty","template":"Showing that [something] is empty","placeholders":["saucepan"]}, +{"id":"121426","label":"tipping toothpaste over","template":"Tipping [something] over","placeholders":["toothpaste"]}, +{"id":"209091","label":"sunglasses falling like a rock","template":"[Something] falling like a rock","placeholders":["sunglasses"]}, +{"id":"207888","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"13056","label":"tearing a paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper towel"]}, +{"id":"130416","label":"putting a candle onto a candelabra","template":"Putting [something] onto [something]","placeholders":["a candle","a candelabra"]}, +{"id":"62163","label":"holding teddybear","template":"Holding [something]","placeholders":["teddybear"]}, +{"id":"87753","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"104198","label":"holding a letter behind a lamp","template":"Holding [something] behind [something]","placeholders":["a letter","a lamp"]}, +{"id":"197061","label":"holding fork over plate","template":"Holding [something] over [something]","placeholders":["fork","plate"]}, +{"id":"198500","label":"turning the camera upwards while filming shampoo bottle","template":"Turning the camera upwards while filming [something]","placeholders":["shampoo bottle"]}, +{"id":"178034","label":"pouring oil onto pan","template":"Pouring [something] onto [something]","placeholders":["oil","pan"]}, +{"id":"58890","label":"showing that a biskit packge is inside of a cup","template":"Showing that [something] is inside [something]","placeholders":["a biskit packge","of a cup"]}, +{"id":"144108","label":"moving glue stick and diskette closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glue stick","diskette"]}, +{"id":"172019","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"60266","label":"plugging plug into bottle","template":"Plugging [something] into [something]","placeholders":["plug","bottle"]}, +{"id":"146709","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"204213","label":"scooping sugar up with scoop","template":"Scooping [something] up with [something]","placeholders":["sugar","scoop"]}, +{"id":"89947","label":"dropping green toy car into pouch","template":"Dropping [something] into [something]","placeholders":["green toy car","pouch"]}, +{"id":"175660","label":"pouring water onto bucket","template":"Pouring [something] onto [something]","placeholders":["water","bucket"]}, +{"id":"103604","label":"holding keys behind a plant","template":"Holding [something] behind [something]","placeholders":["keys","a plant"]}, +{"id":"168863","label":"uncovering a watch","template":"Uncovering [something]","placeholders":["a watch"]}, +{"id":"2977","label":"tipping sugar jar over","template":"Tipping [something] over","placeholders":["sugar jar"]}, +{"id":"186875","label":"pretending to put tube onto stand","template":"Pretending to put [something] onto [something]","placeholders":["tube","stand"]}, +{"id":"116114","label":"uncovering tomato","template":"Uncovering [something]","placeholders":["tomato"]}, +{"id":"121896","label":"stuffing paper into a plant holder","template":"Stuffing [something] into [something]","placeholders":["paper","a plant holder"]}, +{"id":"76127","label":"tilting bike seat form with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["bike seat form","finger"]}, +{"id":"105483","label":"moving pc mouse away from scissors","template":"Moving [something] away from [something]","placeholders":["pc mouse","scissors"]}, +{"id":"52179","label":"a phone falling like a rock","template":"[Something] falling like a rock","placeholders":["a phone"]}, +{"id":"132505","label":"taking vegetable peeler","template":"Taking [one of many similar things on the table]","placeholders":["vegetable peeler"]}, +{"id":"93196","label":"showing pen next to scissors","template":"Showing [something] next to [something]","placeholders":["pen","scissors"]}, +{"id":"48472","label":"turning the camera left while filming backyard","template":"Turning the camera left while filming [something]","placeholders":["backyard"]}, +{"id":"172041","label":"poking candle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["candle"]}, +{"id":"147410","label":"holding red spoon in front of spectacle box","template":"Holding [something] in front of [something]","placeholders":["red spoon","spectacle box"]}, +{"id":"64846","label":"turning the camera left while filming scotch tape","template":"Turning the camera left while filming [something]","placeholders":["scotch tape"]}, +{"id":"187712","label":"uncovering muffins","template":"Uncovering [something]","placeholders":["muffins"]}, +{"id":"83150","label":"picking granola bar up","template":"Picking [something] up","placeholders":["granola bar"]}, +{"id":"131318","label":"turning the camera downwards while filming a dog in a frame","template":"Turning the camera downwards while filming [something]","placeholders":["a dog in a frame"]}, +{"id":"160877","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"192064","label":"hitting cup with stick","template":"Hitting [something] with [something]","placeholders":["cup","stick"]}, +{"id":"176798","label":"moving toffee box towards the camera","template":"Moving [something] towards the camera","placeholders":["toffee box"]}, +{"id":"21605","label":"pulling two ends of npaperote so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["npaperote"]}, +{"id":"55671","label":"moving key and padlock away from each other","template":"Moving [something] and [something] away from each other","placeholders":["key","padlock"]}, +{"id":"164617","label":"moving away from knife with your camera","template":"Moving away from [something] with your camera","placeholders":["knife"]}, +{"id":"46548","label":"tilting purse with scissors on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["purse","scissors"]}, +{"id":"107051","label":"pushing pillbox onto marlboro pack","template":"Pushing [something] onto [something]","placeholders":["pillbox","marlboro pack"]}, +{"id":"195066","label":"holding jug over ipad","template":"Holding [something] over [something]","placeholders":["jug","ipad"]}, +{"id":"85965","label":"moving xbox controller and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["xbox controller","remote"]}, +{"id":"64184","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"189226","label":"pretending to be tearing a pen","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a pen"]}, +{"id":"39826","label":"turning the camera right while filming flower","template":"Turning the camera right while filming [something]","placeholders":["flower"]}, +{"id":"220130","label":"dropping a pen next to sunglasses","template":"Dropping [something] next to [something]","placeholders":["a pen","sunglasses"]}, +{"id":"97799","label":"poking a hole into a soft pillow","template":"Poking a hole into [something soft]","placeholders":["a soft pillow"]}, +{"id":"26334","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"133859","label":"moving stone down","template":"Moving [something] down","placeholders":["stone"]}, +{"id":"31441","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150729","label":"pulling pen out of drawer","template":"Pulling [something] out of [something]","placeholders":["pen","drawer"]}, +{"id":"211927","label":"poking a clear plastic cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a clear plastic cup"]}, +{"id":"110812","label":"moving a container closer to another one","template":"Moving [something] closer to [something]","placeholders":["a container","another one"]}, +{"id":"93204","label":"hitting cup with pen","template":"Hitting [something] with [something]","placeholders":["cup","pen"]}, +{"id":"116741","label":"pushing scotch tape from left to right","template":"Pushing [something] from left to right","placeholders":["scotch tape"]}, +{"id":"32937","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"117127","label":"holding a plant next to a box","template":"Holding [something] next to [something]","placeholders":["a plant","a box"]}, +{"id":"167318","label":"moving away from red spoon with your camera","template":"Moving away from [something] with your camera","placeholders":["red spoon"]}, +{"id":"73015","label":"pulling a lipstick from left to right","template":"Pulling [something] from left to right","placeholders":["a lipstick"]}, +{"id":"124987","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"205593","label":"uncovering cup","template":"Uncovering [something]","placeholders":["cup"]}, +{"id":"194818","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"130041","label":"pouring soapy water into surface","template":"Pouring [something] into [something]","placeholders":["soapy water","surface"]}, +{"id":"42299","label":"closing letter box","template":"Closing [something]","placeholders":["letter box"]}, +{"id":"52972","label":"throwing a stone onto a surface","template":"Throwing [something] onto a surface","placeholders":["a stone"]}, +{"id":"99955","label":"picking blanket up","template":"Picking [something] up","placeholders":["blanket"]}, +{"id":"46838","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"109594","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"187580","label":"turning the camera left while filming closet","template":"Turning the camera left while filming [something]","placeholders":["closet"]}, +{"id":"63477","label":"showing that can is inside bin","template":"Showing that [something] is inside [something]","placeholders":["can","bin"]}, +{"id":"142433","label":"bending metal so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal"]}, +{"id":"99126","label":"pushing purple microfiber from left to right","template":"Pushing [something] from left to right","placeholders":["purple microfiber"]}, +{"id":"187644","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"124756","label":"throwing bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle"]}, +{"id":"175786","label":"uncovering a rose","template":"Uncovering [something]","placeholders":["a rose"]}, +{"id":"211377","label":"piling disks up","template":"Piling [something] up","placeholders":["disks"]}, +{"id":"9601","label":"dropping a tape next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a tape","a matchbox"]}, +{"id":"176624","label":"uncovering a chair","template":"Uncovering [something]","placeholders":["a chair"]}, +{"id":"3252","label":"moving box away from box","template":"Moving [something] away from [something]","placeholders":["box","box"]}, +{"id":"52153","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"40822","label":"taking highligher out of pencil cup","template":"Taking [something] out of [something]","placeholders":["highligher","pencil cup"]}, +{"id":"75699","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"68372","label":"turning the camera downwards while filming picture","template":"Turning the camera downwards while filming [something]","placeholders":["picture"]}, +{"id":"142768","label":"putting a jar in front of a glass","template":"Putting [something] in front of [something]","placeholders":["a jar","a glass"]}, +{"id":"66568","label":"pushing cup so it spins","template":"Pushing [something] so it spins","placeholders":["cup"]}, +{"id":"175484","label":"folding t-shirt","template":"Folding [something]","placeholders":["t-shirt"]}, +{"id":"177969","label":"putting a confetti start with other confetti stars that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a confetti start with other confetti stars that are already on the table"]}, +{"id":"153394","label":"covering a container with a blanket","template":"Covering [something] with [something]","placeholders":["a container","a blanket"]}, +{"id":"17590","label":"stacking 2 cards","template":"Stacking [number of] [something]","placeholders":["2","cards"]}, +{"id":"131210","label":"twisting doorknob","template":"Twisting [something]","placeholders":["doorknob"]}, +{"id":"210105","label":"showing mobile phone behind wooden crate","template":"Showing [something] behind [something]","placeholders":["mobile phone","wooden crate"]}, +{"id":"106551","label":"taking ball from ground","template":"Taking [something] from [somewhere]","placeholders":["ball","ground"]}, +{"id":"99642","label":"moving mug and cellphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mug","cellphone"]}, +{"id":"176434","label":"pushing book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["book"]}, +{"id":"145434","label":"pretending to be tearing samsung s5","template":"Pretending to be tearing [something that is not tearable]","placeholders":["samsung s5"]}, +{"id":"73496","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"7219","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"189748","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"135472","label":"pushing tupperware onto towel","template":"Pushing [something] onto [something]","placeholders":["tupperware","towel"]}, +{"id":"61413","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"3962","label":"showing pumpkin cookie to the camera","template":"Showing [something] to the camera","placeholders":["pumpkin cookie"]}, +{"id":"201362","label":"moving a phone away from the camera","template":"Moving [something] away from the camera","placeholders":["a phone"]}, +{"id":"176476","label":"tearing a sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a sheet of paper"]}, +{"id":"215098","label":"pretending to pick pencil up","template":"Pretending to pick [something] up","placeholders":["pencil"]}, +{"id":"60030","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"62848","label":"putting cup and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["cup","spoon"]}, +{"id":"72140","label":"bubbles falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bubbles"]}, +{"id":"37332","label":"throwing a box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a box"]}, +{"id":"207908","label":"holding remote in front of dog","template":"Holding [something] in front of [something]","placeholders":["remote","dog"]}, +{"id":"5553","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"150400","label":"lifting a surface with ruler on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ruler"]}, +{"id":"38391","label":"putting lipstisck on a surface","template":"Putting [something] on a surface","placeholders":["lipstisck"]}, +{"id":"23620","label":"poking note book so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["note book"]}, +{"id":"127428","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"35454","label":"hitting mouse with remote","template":"Hitting [something] with [something]","placeholders":["mouse","remote"]}, +{"id":"19600","label":"throwing charger in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["charger"]}, +{"id":"168654","label":"putting powder tin, watch and nail polish on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["powder tin","watch","nail polish"]}, +{"id":"216492","label":"removing bowl, revealing egg behind","template":"Removing [something], revealing [something] behind","placeholders":["bowl","egg"]}, +{"id":"23217","label":"putting banana next to apples","template":"Putting [something] next to [something]","placeholders":["banana","apples"]}, +{"id":"210445","label":"holding a book next to table","template":"Holding [something] next to [something]","placeholders":["a book","table"]}, +{"id":"132499","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"176808","label":"showing cow to the camera","template":"Showing [something] to the camera","placeholders":["cow"]}, +{"id":"167837","label":"lifting the lamp handle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["the lamp handle"]}, +{"id":"101071","label":"pushing can from left to right","template":"Pushing [something] from left to right","placeholders":["can"]}, +{"id":"66900","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"188165","label":"holding tablet in front of laptop","template":"Holding [something] in front of [something]","placeholders":["tablet","laptop"]}, +{"id":"7412","label":"moving candle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["candle"]}, +{"id":"174080","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"104072","label":"wiping sauce off of counter","template":"Wiping [something] off of [something]","placeholders":["sauce","counter"]}, +{"id":"102036","label":"plugging power plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power plug","socket"]}, +{"id":"49961","label":"tilting a coffee cup with a pair of scissors on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a coffee cup","a pair of scissors"]}, +{"id":"81806","label":"closing a bottle cap","template":"Closing [something]","placeholders":["a bottle cap"]}, +{"id":"218089","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"190657","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"100473","label":"lifting milk with knife on it","template":"Lifting [something] with [something] on it","placeholders":["milk","knife"]}, +{"id":"3763","label":"covering a mug with a towel","template":"Covering [something] with [something]","placeholders":["a mug","a towel"]}, +{"id":"91885","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"1167","label":"pretending to be tearing sock","template":"Pretending to be tearing [something that is not tearable]","placeholders":["sock"]}, +{"id":"145973","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"49312","label":"pretending to pick medicine up","template":"Pretending to pick [something] up","placeholders":["medicine"]}, +{"id":"38091","label":"hitting wall with stone","template":"Hitting [something] with [something]","placeholders":["wall","stone"]}, +{"id":"185743","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"216764","label":"top falling like a rock","template":"[Something] falling like a rock","placeholders":["top"]}, +{"id":"84882","label":"pretending to be tearing a plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plate"]}, +{"id":"124537","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"51867","label":"stuffing wafer into laptop","template":"Stuffing [something] into [something]","placeholders":["wafer","laptop"]}, +{"id":"18181","label":"spilling medicinal powder behind a toothbrush holder","template":"Spilling [something] behind [something]","placeholders":["medicinal powder","a toothbrush holder"]}, +{"id":"135900","label":"putting a can of instant coffee upright on the table","template":"Putting [something] upright on the table","placeholders":["a can of instant coffee"]}, +{"id":"219564","label":"dropping a card in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a card","a cup"]}, +{"id":"125744","label":"letting a cylinder roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a cylinder"]}, +{"id":"190232","label":"pushing wooden small home so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wooden small home"]}, +{"id":"177735","label":"pushing glasses with bottle","template":"Pushing [something] with [something]","placeholders":["glasses","bottle"]}, +{"id":"164263","label":"turning the camera right while filming curtains","template":"Turning the camera right while filming [something]","placeholders":["curtains"]}, +{"id":"84019","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"191587","label":"putting candle next to candles","template":"Putting [something] next to [something]","placeholders":["candle","candles"]}, +{"id":"123451","label":"showing a potted plant behind a mug","template":"Showing [something] behind [something]","placeholders":["a potted plant","a mug"]}, +{"id":"187793","label":"stacking 3 candies","template":"Stacking [number of] [something]","placeholders":["3","candies"]}, +{"id":"33444","label":"covering keys with cloth","template":"Covering [something] with [something]","placeholders":["keys","cloth"]}, +{"id":"33309","label":"holding a coffee cup","template":"Holding [something]","placeholders":["a coffee cup"]}, +{"id":"122313","label":"pretending to spread air onto a table","template":"Pretending to spread air onto [something]","placeholders":["a table"]}, +{"id":"38853","label":"opening a pen","template":"Opening [something]","placeholders":["a pen"]}, +{"id":"176125","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"32348","label":"putting a mug that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a mug"]}, +{"id":"205081","label":"putting sunglasses onto the table next to other glasses","template":"Putting [something similar to other things that are already on the table]","placeholders":["sunglasses onto the table next to other glasses"]}, +{"id":"3702","label":"pretending to pick an electric toothbrush without its head up","template":"Pretending to pick [something] up","placeholders":["an electric toothbrush without its head"]}, +{"id":"145634","label":"dropping a peg behind a plate","template":"Dropping [something] behind [something]","placeholders":["a peg","a plate"]}, +{"id":"159969","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"159205","label":"holding tissue in front of box of tissues","template":"Holding [something] in front of [something]","placeholders":["tissue","box of tissues"]}, +{"id":"5990","label":"holding gatorade next to computer","template":"Holding [something] next to [something]","placeholders":["gatorade","computer"]}, +{"id":"15818","label":"pushing paper weight from right to left","template":"Pushing [something] from right to left","placeholders":["paper weight"]}, +{"id":"4328","label":"moving away from headphones with your camera","template":"Moving away from [something] with your camera","placeholders":["headphones"]}, +{"id":"118998","label":"showing rubix cube on top of duster","template":"Showing [something] on top of [something]","placeholders":["rubix cube","duster"]}, +{"id":"166565","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"205753","label":"uncovering glue stick","template":"Uncovering [something]","placeholders":["glue stick"]}, +{"id":"27396","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"741","label":"taking cd","template":"Taking [one of many similar things on the table]","placeholders":["cd"]}, +{"id":"47770","label":"flashdisk colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["flashdisk","pen"]}, +{"id":"3670","label":"pushing pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pen"]}, +{"id":"74243","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"67804","label":"holding a toothpick over a padlock","template":"Holding [something] over [something]","placeholders":["a toothpick","a padlock"]}, +{"id":"85158","label":"putting bottle on the edge of speaker so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["bottle","speaker"]}, +{"id":"137969","label":"showing that little vase is empty","template":"Showing that [something] is empty","placeholders":["little vase"]}, +{"id":"209987","label":"taking lead pencils out of pencil box","template":"Taking [something] out of [something]","placeholders":["lead pencils","pencil box"]}, +{"id":"120661","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"158708","label":"throwing fruit in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["fruit"]}, +{"id":"190411","label":"pushing a marker so it spins","template":"Pushing [something] so it spins","placeholders":["a marker"]}, +{"id":"201054","label":"hitting cup with fork","template":"Hitting [something] with [something]","placeholders":["cup","fork"]}, +{"id":"112932","label":"moving match box up","template":"Moving [something] up","placeholders":["match box"]}, +{"id":"206667","label":"moving nail clipper up","template":"Moving [something] up","placeholders":["nail clipper"]}, +{"id":"119894","label":"turning the camera right while filming bottle","template":"Turning the camera right while filming [something]","placeholders":["bottle"]}, +{"id":"155054","label":"holding charger","template":"Holding [something]","placeholders":["charger"]}, +{"id":"177197","label":"a book falling like a rock","template":"[Something] falling like a rock","placeholders":["a book"]}, +{"id":"43376","label":"moving orange colour pencil sharpner up up","template":"Moving [something] up","placeholders":["orange colour pencil sharpner up"]}, +{"id":"214952","label":"putting sunglasses into mug","template":"Putting [something] into [something]","placeholders":["sunglasses","mug"]}, +{"id":"154849","label":"lifting up one end of spectacle box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spectacle box"]}, +{"id":"120781","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"112684","label":"spilling water onto plant vase","template":"Spilling [something] onto [something]","placeholders":["water","plant vase"]}, +{"id":"23809","label":"pretending to open a laptop without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a laptop"]}, +{"id":"142040","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"127393","label":"poking cable so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cable"]}, +{"id":"215606","label":"moving a scissors across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a scissors"]}, +{"id":"26367","label":"moving away from laterite stone with your camera","template":"Moving away from [something] with your camera","placeholders":["laterite stone"]}, +{"id":"60477","label":"pulling box from right to left","template":"Pulling [something] from right to left","placeholders":["box"]}, +{"id":"36736","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"188064","label":"trying to bend stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["stick"]}, +{"id":"207317","label":"pushing toy car so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["toy car"]}, +{"id":"193297","label":"taking frame from table","template":"Taking [something] from [somewhere]","placeholders":["frame","table"]}, +{"id":"21173","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"77202","label":"pushing silver coloured pen off of drawing board","template":"Pushing [something] off of [something]","placeholders":["silver coloured pen","drawing board"]}, +{"id":"126686","label":"putting mail","template":"Putting [something similar to other things that are already on the table]","placeholders":["mail"]}, +{"id":"165841","label":"poking stuffed animal so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["stuffed animal"]}, +{"id":"24184","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"18057","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"61568","label":"pushing speaker from right to left","template":"Pushing [something] from right to left","placeholders":["speaker"]}, +{"id":"67245","label":"moving controller down","template":"Moving [something] down","placeholders":["controller"]}, +{"id":"140169","label":"dropping hair band in front of pen","template":"Dropping [something] in front of [something]","placeholders":["hair band","pen"]}, +{"id":"5946","label":"wiping water off of sink","template":"Wiping [something] off of [something]","placeholders":["water","sink"]}, +{"id":"108436","label":"picking spectacle box up","template":"Picking [something] up","placeholders":["spectacle box"]}, +{"id":"141381","label":"opening refrigerator door","template":"Opening [something]","placeholders":["refrigerator door"]}, +{"id":"35995","label":"throwing adaptor onto a surface","template":"Throwing [something] onto a surface","placeholders":["adaptor"]}, +{"id":"115383","label":"lifting up one end of clipboard, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["clipboard"]}, +{"id":"137679","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"163567","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"156902","label":"spinning small bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["small bottle"]}, +{"id":"83646","label":"tipping a dvd over","template":"Tipping [something] over","placeholders":["a dvd"]}, +{"id":"13468","label":"stuffing card into envelope","template":"Stuffing [something] into [something]","placeholders":["card","envelope"]}, +{"id":"171405","label":"putting pen into glass","template":"Putting [something] into [something]","placeholders":["pen","glass"]}, +{"id":"37455","label":"unfolding handkerchief","template":"Unfolding [something]","placeholders":["handkerchief"]}, +{"id":"214534","label":"pushing eyeglass box so it spins","template":"Pushing [something] so it spins","placeholders":["eyeglass box"]}, +{"id":"209427","label":"pretending to sprinkle air onto mug","template":"Pretending to sprinkle air onto [something]","placeholders":["mug"]}, +{"id":"153856","label":"moving coconut away from the camera","template":"Moving [something] away from the camera","placeholders":["coconut"]}, +{"id":"184753","label":"pulling bucket from left to right","template":"Pulling [something] from left to right","placeholders":["bucket"]}, +{"id":"157447","label":"touching (without moving) the surface of memorabilia","template":"Touching (without moving) [part] of [something]","placeholders":["the surface","memorabilia"]}, +{"id":"40820","label":"putting box, spoon and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","spoon","pen"]}, +{"id":"215140","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"23093","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"121181","label":"turning the camera left while filming small hand gel","template":"Turning the camera left while filming [something]","placeholders":["small hand gel"]}, +{"id":"83066","label":"taking onion out of bowl","template":"Taking [something] out of [something]","placeholders":["onion","bowl"]}, +{"id":"63338","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"1939","label":"plugging a cable into a laptop","template":"Plugging [something] into [something]","placeholders":["a cable","a laptop"]}, +{"id":"42000","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"50207","label":"lighter colliding with ruler and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["lighter","ruler"]}, +{"id":"76606","label":"tilting paper with chalk on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper","chalk"]}, +{"id":"132827","label":"letting battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["battery"]}, +{"id":"22430","label":"pushing cologne bottle so it spins","template":"Pushing [something] so it spins","placeholders":["cologne bottle"]}, +{"id":"121549","label":"dropping brush onto blanket","template":"Dropping [something] onto [something]","placeholders":["brush","blanket"]}, +{"id":"188416","label":"dropping banana in front of basket","template":"Dropping [something] in front of [something]","placeholders":["banana","basket"]}, +{"id":"219516","label":"spilling water onto water the plants","template":"Spilling [something] onto [something]","placeholders":["water","water the plants"]}, +{"id":"124191","label":"pretending or trying and failing to twist wallet","template":"Pretending or trying and failing to twist [something]","placeholders":["wallet"]}, +{"id":"181792","label":"opening black spectacle box","template":"Opening [something]","placeholders":["black spectacle box"]}, +{"id":"217963","label":"dropping lemon next to doll","template":"Dropping [something] next to [something]","placeholders":["lemon","doll"]}, +{"id":"142633","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"157203","label":"garlic falling like a rock","template":"[Something] falling like a rock","placeholders":["garlic"]}, +{"id":"191935","label":"hitting sweet with bottle","template":"Hitting [something] with [something]","placeholders":["sweet","bottle"]}, +{"id":"6102","label":"plugging usb cord into power block but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cord","power block"]}, +{"id":"130289","label":"plugging cable into headphones but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","headphones"]}, +{"id":"186395","label":"showing sweets to the camera","template":"Showing [something] to the camera","placeholders":["sweets"]}, +{"id":"107136","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"28866","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"35538","label":"pouring a fabric conditioner into a plastic container","template":"Pouring [something] into [something]","placeholders":["a fabric conditioner","a plastic container"]}, +{"id":"34876","label":"pushing bottle cap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle cap"]}, +{"id":"98934","label":"failing to put a bottle of ketchup into a glass because the bottle of ketchup does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bottle of ketchup","a glass","the bottle of ketchup"]}, +{"id":"219511","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"39479","label":"throwing bottle against bottle","template":"Throwing [something] against [something]","placeholders":["bottle","bottle"]}, +{"id":"8249","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"116464","label":"moving a knife and a spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a knife","a spoon"]}, +{"id":"57093","label":"twisting (wringing) a rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a rag"]}, +{"id":"154013","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"136201","label":"showing watch to the camera","template":"Showing [something] to the camera","placeholders":["watch"]}, +{"id":"217957","label":"plugging a power supply into a wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a power supply","a wall socket"]}, +{"id":"42603","label":"holding coupon in front of light switch","template":"Holding [something] in front of [something]","placeholders":["coupon","light switch"]}, +{"id":"147451","label":"pulling black lipstick from left to right","template":"Pulling [something] from left to right","placeholders":["black lipstick"]}, +{"id":"72296","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"155410","label":"moving hand towards the camera","template":"Moving [something] towards the camera","placeholders":["hand"]}, +{"id":"67855","label":"putting mug in front of cup","template":"Putting [something] in front of [something]","placeholders":["mug","cup"]}, +{"id":"6732","label":"dropping book next to pillow","template":"Dropping [something] next to [something]","placeholders":["book","pillow"]}, +{"id":"157604","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"64258","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"150436","label":"showing tissue box on top of table","template":"Showing [something] on top of [something]","placeholders":["tissue box","table"]}, +{"id":"213815","label":"putting board clip and eraser on the table","template":"Putting [something] and [something] on the table","placeholders":["board clip","eraser"]}, +{"id":"92575","label":"spinning basketball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["basketball"]}, +{"id":"131033","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"119498","label":"spinning a medicine cup so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a medicine cup"]}, +{"id":"199880","label":"pretending to put a box next to a glass","template":"Pretending to put [something] next to [something]","placeholders":["a box","a glass"]}, +{"id":"47364","label":"putting microscope on a surface","template":"Putting [something] on a surface","placeholders":["microscope"]}, +{"id":"26993","label":"squeezing stapler","template":"Squeezing [something]","placeholders":["stapler"]}, +{"id":"90101","label":"plugging power cable into laptop","template":"Plugging [something] into [something]","placeholders":["power cable","laptop"]}, +{"id":"104878","label":"putting a watch behind a clock","template":"Putting [something] behind [something]","placeholders":["a watch","a clock"]}, +{"id":"44540","label":"moving mobile and other mobile away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mobile","other mobile"]}, +{"id":"165210","label":"piling blankets up","template":"Piling [something] up","placeholders":["blankets"]}, +{"id":"90217","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"83053","label":"putting a pot into an oven","template":"Putting [something] into [something]","placeholders":["a pot","an oven"]}, +{"id":"141208","label":"holding scissors over pen","template":"Holding [something] over [something]","placeholders":["scissors","pen"]}, +{"id":"69652","label":"dropping a matchbox next to a coin","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a coin"]}, +{"id":"110615","label":"taking a cockroach out of a ear","template":"Taking [something] out of [something]","placeholders":["a cockroach","a ear"]}, +{"id":"147079","label":"taking notepad","template":"Taking [one of many similar things on the table]","placeholders":["notepad"]}, +{"id":"75065","label":"wiping marker off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"83907","label":"dropping a toothpick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a toothpick","a remote"]}, +{"id":"116388","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"219989","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"156661","label":"pretending to throw crayon","template":"Pretending to throw [something]","placeholders":["crayon"]}, +{"id":"67854","label":"putting a teddy bear in front of a teddy bear","template":"Putting [something] in front of [something]","placeholders":["a teddy bear","a teddy bear"]}, +{"id":"44070","label":"dropping bra in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["bra","pillow"]}, +{"id":"71979","label":"putting dia next to 3rd dia","template":"Putting [something] next to [something]","placeholders":["dia","3rd dia"]}, +{"id":"21590","label":"moving a plush ball across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a plush ball"]}, +{"id":"209939","label":"covering pen with cloth","template":"Covering [something] with [something]","placeholders":["pen","cloth"]}, +{"id":"88132","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"8771","label":"pulling white kerchief out of orange purse","template":"Pulling [something] out of [something]","placeholders":["white kerchief","orange purse"]}, +{"id":"118341","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"57985","label":"putting a mug and a cup on the table","template":"Putting [something] and [something] on the table","placeholders":["a mug","a cup"]}, +{"id":"181337","label":"stuffing cloth into pen stand","template":"Stuffing [something] into [something]","placeholders":["cloth","pen stand"]}, +{"id":"48406","label":"attaching a loop to a hook","template":"Attaching [something] to [something]","placeholders":["a loop","a hook"]}, +{"id":"47806","label":"pulling pen out of case","template":"Pulling [something] out of [something]","placeholders":["pen","case"]}, +{"id":"43276","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"186132","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"202204","label":"pretending to poke jar","template":"Pretending to poke [something]","placeholders":["jar"]}, +{"id":"24711","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"124527","label":"putting bear next to pillow","template":"Putting [something] next to [something]","placeholders":["bear","pillow"]}, +{"id":"217905","label":"rolling earplug on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["earplug"]}, +{"id":"87807","label":"holding a phone over a table","template":"Holding [something] over [something]","placeholders":["a phone","a table"]}, +{"id":"48874","label":"uncovering a doll","template":"Uncovering [something]","placeholders":["a doll"]}, +{"id":"182635","label":"holding lip balm behind paper clips","template":"Holding [something] behind [something]","placeholders":["lip balm","paper clips"]}, +{"id":"63580","label":"lifting up one end of an eraser, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["an eraser"]}, +{"id":"90789","label":"pushing remote controller from left to right","template":"Pushing [something] from left to right","placeholders":["remote controller"]}, +{"id":"147273","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"21563","label":"pouring water out of water pitcher","template":"Pouring [something] out of [something]","placeholders":["water","water pitcher"]}, +{"id":"17347","label":"throwing paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper"]}, +{"id":"166829","label":"uncovering bracelet","template":"Uncovering [something]","placeholders":["bracelet"]}, +{"id":"136820","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"180986","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"203617","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"134879","label":"putting a pen behind book","template":"Putting [something] behind [something]","placeholders":["a pen","book"]}, +{"id":"50912","label":"pretending to squeeze a powder bottle","template":"Pretending to squeeze [something]","placeholders":["a powder bottle"]}, +{"id":"5538","label":"lifting candle up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["candle"]}, +{"id":"164688","label":"turning the camera right while filming flowers","template":"Turning the camera right while filming [something]","placeholders":["flowers"]}, +{"id":"19278","label":"pushing telephone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["telephone"]}, +{"id":"103151","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"39889","label":"covering gear wheel with black pouch","template":"Covering [something] with [something]","placeholders":["gear wheel","black pouch"]}, +{"id":"46167","label":"plugging a phone charger into a wall socket","template":"Plugging [something] into [something]","placeholders":["a phone charger","a wall socket"]}, +{"id":"126710","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"137371","label":"uncovering a clothespin","template":"Uncovering [something]","placeholders":["a clothespin"]}, +{"id":"147065","label":"plugging earphones into the computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earphones","the computer"]}, +{"id":"114325","label":"showing a bag behind stool","template":"Showing [something] behind [something]","placeholders":["a bag","stool"]}, +{"id":"207999","label":"dropping coffee in front of canister","template":"Dropping [something] in front of [something]","placeholders":["coffee","canister"]}, +{"id":"41035","label":"putting screw next to carabiner","template":"Putting [something] next to [something]","placeholders":["screw","carabiner"]}, +{"id":"189002","label":"trying to bend a wooden block so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a wooden block"]}, +{"id":"145863","label":"cup being deflected from counter","template":"[Something] being deflected from [something]","placeholders":["cup","counter"]}, +{"id":"60668","label":"pushing coin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["coin"]}, +{"id":"87666","label":"stuffing a towel into a bag","template":"Stuffing [something] into [something]","placeholders":["a towel","a bag"]}, +{"id":"120377","label":"candy colliding with candy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["candy","candy"]}, +{"id":"138379","label":"pretending to squeeze something","template":"Pretending to squeeze [something]","placeholders":["something"]}, +{"id":"116899","label":"squeezing box","template":"Squeezing [something]","placeholders":["box"]}, +{"id":"39602","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"157883","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"189590","label":"holding mouse over wallet","template":"Holding [something] over [something]","placeholders":["mouse","wallet"]}, +{"id":"150621","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"29699","label":"plugging headphones into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","computer"]}, +{"id":"123229","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"12651","label":"putting a screwdriver","template":"Putting [something similar to other things that are already on the table]","placeholders":["a screwdriver"]}, +{"id":"82560","label":"taking striped pen out of sturdy glass","template":"Taking [something] out of [something]","placeholders":["striped pen","sturdy glass"]}, +{"id":"117511","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"57408","label":"moving bottle cap across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bottle cap"]}, +{"id":"33672","label":"pretending to pick a candy up","template":"Pretending to pick [something] up","placeholders":["a candy"]}, +{"id":"92697","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"92628","label":"pushing a pen from right to left","template":"Pushing [something] from right to left","placeholders":["a pen"]}, +{"id":"170558","label":"pouring water into pot of a plant","template":"Pouring [something] into [something]","placeholders":["water","pot of a plant"]}, +{"id":"211161","label":"folding shorts","template":"Folding [something]","placeholders":["shorts"]}, +{"id":"95415","label":"tipping cup with ice over, so ice falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","ice","ice"]}, +{"id":"99964","label":"holding wallet","template":"Holding [something]","placeholders":["wallet"]}, +{"id":"27602","label":"moving a ball and a glass figure closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","a glass figure"]}, +{"id":"142836","label":"turning the camera right while filming sign board","template":"Turning the camera right while filming [something]","placeholders":["sign board"]}, +{"id":"70798","label":"pretending to put money on a surface","template":"Pretending to put [something] on a surface","placeholders":["money"]}, +{"id":"161497","label":"unfolding a tissue","template":"Unfolding [something]","placeholders":["a tissue"]}, +{"id":"21809","label":"moving spoon away from the camera","template":"Moving [something] away from the camera","placeholders":["spoon"]}, +{"id":"112028","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"160002","label":"pretending to open supplement bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["supplement bottle"]}, +{"id":"185796","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"143051","label":"pulling bar soap from left to right","template":"Pulling [something] from left to right","placeholders":["bar soap"]}, +{"id":"57909","label":"pretending to squeeze toothpaste","template":"Pretending to squeeze [something]","placeholders":["toothpaste"]}, +{"id":"183747","label":"spinning a highlighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a highlighter"]}, +{"id":"115697","label":"moving the cube and the ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the cube","the ball"]}, +{"id":"130396","label":"pushing dropping mobile charger off table so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["dropping mobile charger off table"]}, +{"id":"136968","label":"lifting up one end of bottle without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["bottle"]}, +{"id":"205726","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"220678","label":"dropping packet behind chair","template":"Dropping [something] behind [something]","placeholders":["packet","chair"]}, +{"id":"73417","label":"pretending to close a door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a door"]}, +{"id":"119246","label":"lifting plastic box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plastic box"]}, +{"id":"40056","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"157499","label":"pretending to be tearing toy","template":"Pretending to be tearing [something that is not tearable]","placeholders":["toy"]}, +{"id":"40845","label":"pushing pen off of box","template":"Pushing [something] off of [something]","placeholders":["pen","box"]}, +{"id":"154023","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"200201","label":"folding pants","template":"Folding [something]","placeholders":["pants"]}, +{"id":"59762","label":"trying to pour juice into bowl, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["juice","bowl"]}, +{"id":"127006","label":"letting lime roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lime"]}, +{"id":"85151","label":"showing controller behind mouse","template":"Showing [something] behind [something]","placeholders":["controller","mouse"]}, +{"id":"107984","label":"pretending to put earphone onto keyboard","template":"Pretending to put [something] onto [something]","placeholders":["earphone","keyboard"]}, +{"id":"186712","label":"pretending to scoop coffee up with scoop","template":"Pretending to scoop [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"5299","label":"putting sunscreen on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["sunscreen","the table"]}, +{"id":"165921","label":"tipping battery over","template":"Tipping [something] over","placeholders":["battery"]}, +{"id":"6175","label":"pulling drawer out of desk","template":"Pulling [something] out of [something]","placeholders":["drawer","desk"]}, +{"id":"96788","label":"poking remote control so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["remote control"]}, +{"id":"113610","label":"pushing toilet paper so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toilet paper"]}, +{"id":"152924","label":"touching (without moving) cap of pen","template":"Touching (without moving) [part] of [something]","placeholders":["cap","pen"]}, +{"id":"100907","label":"letting marker roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["marker"]}, +{"id":"54321","label":"moving a towel across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a towel"]}, +{"id":"193788","label":"tearing a note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a note"]}, +{"id":"46550","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"174210","label":"pretending to put bottle onto table","template":"Pretending to put [something] onto [something]","placeholders":["bottle","table"]}, +{"id":"167927","label":"putting a water bottle on the edge of a book so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a water bottle","a book"]}, +{"id":"25680","label":"pushing a mouse from left to right","template":"Pushing [something] from left to right","placeholders":["a mouse"]}, +{"id":"844","label":"turning the camera downwards while filming scotch tape","template":"Turning the camera downwards while filming [something]","placeholders":["scotch tape"]}, +{"id":"188825","label":"putting card into wallet","template":"Putting [something] into [something]","placeholders":["card","wallet"]}, +{"id":"113152","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"109334","label":"pretending to pick mobile up","template":"Pretending to pick [something] up","placeholders":["mobile"]}, +{"id":"184786","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"141800","label":"tilting a stool with a roll of tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a stool","a roll of tape"]}, +{"id":"119880","label":"turning black play cards upside down","template":"Turning [something] upside down","placeholders":["black play cards"]}, +{"id":"181980","label":"dropping hair tie onto floor","template":"Dropping [something] onto [something]","placeholders":["hair tie","floor"]}, +{"id":"90646","label":"pulling bottle from right to left","template":"Pulling [something] from right to left","placeholders":["bottle"]}, +{"id":"158672","label":"uncovering mug","template":"Uncovering [something]","placeholders":["mug"]}, +{"id":"20153","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"21894","label":"pushing rubber duck so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["rubber duck"]}, +{"id":"149681","label":"tipping little bottle over","template":"Tipping [something] over","placeholders":["little bottle"]}, +{"id":"1091","label":"sprinkling cookie crumbs onto banana pudding","template":"Sprinkling [something] onto [something]","placeholders":["cookie crumbs","banana pudding"]}, +{"id":"111318","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"38384","label":"plugging an adapter into an aoutlet","template":"Plugging [something] into [something]","placeholders":["an adapter","an aoutlet"]}, +{"id":"194468","label":"putting marker next to mug","template":"Putting [something] next to [something]","placeholders":["marker","mug"]}, +{"id":"149648","label":"stuffing key into pouch","template":"Stuffing [something] into [something]","placeholders":["key","pouch"]}, +{"id":"197733","label":"pretending to be tearing a bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a bag"]}, +{"id":"57653","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"177859","label":"turning the camera right while filming blue pen","template":"Turning the camera right while filming [something]","placeholders":["blue pen"]}, +{"id":"98316","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"220367","label":"lime being deflected from phone","template":"[Something] being deflected from [something]","placeholders":["lime","phone"]}, +{"id":"105780","label":"dropping hair tie next to slipper","template":"Dropping [something] next to [something]","placeholders":["hair tie","slipper"]}, +{"id":"178559","label":"pretending to squeeze an apple","template":"Pretending to squeeze [something]","placeholders":["an apple"]}, +{"id":"140835","label":"pretending to sprinkle air onto a cup","template":"Pretending to sprinkle air onto [something]","placeholders":["a cup"]}, +{"id":"142024","label":"putting a clip on the edge of refrigerator so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a clip","refrigerator"]}, +{"id":"176130","label":"tipping bottle of antibacterial gel with notebook over, so bottle of antibacterial gel falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["bottle of antibacterial gel","notebook","bottle of antibacterial gel"]}, +{"id":"116148","label":"pulling toy cart from left to right","template":"Pulling [something] from left to right","placeholders":["toy cart"]}, +{"id":"40794","label":"pretending to turn ink bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["ink bottle"]}, +{"id":"5182","label":"pouring coffee into a glass","template":"Pouring [something] into [something]","placeholders":["coffee","a glass"]}, +{"id":"46143","label":"throwing matchbox in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["matchbox"]}, +{"id":"59847","label":"holding controller in front of headset","template":"Holding [something] in front of [something]","placeholders":["controller","headset"]}, +{"id":"39928","label":"spinning basketball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["basketball"]}, +{"id":"193877","label":"showing that water is inside glass","template":"Showing that [something] is inside [something]","placeholders":["water","glass"]}, +{"id":"105942","label":"throwing bra in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bra"]}, +{"id":"87064","label":"putting a marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["a marker"]}, +{"id":"181779","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"148763","label":"showing a photo of emblem to the camera","template":"Showing a photo of [something] to the camera","placeholders":["emblem"]}, +{"id":"60908","label":"tearing papper just a little bit","template":"Tearing [something] just a little bit","placeholders":["papper"]}, +{"id":"9561","label":"turning the camera upwards while filming photo scenery","template":"Turning the camera upwards while filming [something]","placeholders":["photo scenery"]}, +{"id":"45088","label":"pushing a paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a paper"]}, +{"id":"81181","label":"showing that paper is inside box","template":"Showing that [something] is inside [something]","placeholders":["paper","box"]}, +{"id":"174527","label":"touching (without moving) the edge of smartphone","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","smartphone"]}, +{"id":"200178","label":"dropping trash into a trash can","template":"Dropping [something] into [something]","placeholders":["trash","a trash can"]}, +{"id":"46963","label":"taking one of many skateboard","template":"Taking [one of many similar things on the table]","placeholders":["one of many skateboard"]}, +{"id":"121267","label":"holding spectacles over tablet","template":"Holding [something] over [something]","placeholders":["spectacles","tablet"]}, +{"id":"197927","label":"uncovering marker","template":"Uncovering [something]","placeholders":["marker"]}, +{"id":"150544","label":"stuffing rice into cup","template":"Stuffing [something] into [something]","placeholders":["rice","cup"]}, +{"id":"149285","label":"letting the cup to roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["the cup to"]}, +{"id":"49836","label":"pretending to be tearing phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["phone"]}, +{"id":"50395","label":"pushing a screw from right to left","template":"Pushing [something] from right to left","placeholders":["a screw"]}, +{"id":"93872","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"11676","label":"lifting up one end of tricycle without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["tricycle"]}, +{"id":"126614","label":"turning the camera right while filming scotch tape","template":"Turning the camera right while filming [something]","placeholders":["scotch tape"]}, +{"id":"10792","label":"pretending to be tearing container lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["container lid"]}, +{"id":"187029","label":"plugging usb drive into usb port","template":"Plugging [something] into [something]","placeholders":["usb drive","usb port"]}, +{"id":"28312","label":"putting books into cabinet","template":"Putting [something] into [something]","placeholders":["books","cabinet"]}, +{"id":"778","label":"showing that a bottle is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["a bottle","a cup"]}, +{"id":"158885","label":"turning the camera left while filming transformer","template":"Turning the camera left while filming [something]","placeholders":["transformer"]}, +{"id":"180075","label":"pushing a mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a mouse"]}, +{"id":"203354","label":"picking plastic bag up","template":"Picking [something] up","placeholders":["plastic bag"]}, +{"id":"53649","label":"moving comb down","template":"Moving [something] down","placeholders":["comb"]}, +{"id":"210666","label":"twisting something","template":"Twisting [something]","placeholders":["something"]}, +{"id":"117011","label":"a roll of tape falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a roll of tape"]}, +{"id":"63587","label":"sprinkling origami stars onto spiraled notebook","template":"Sprinkling [something] onto [something]","placeholders":["origami stars","spiraled notebook"]}, +{"id":"202999","label":"moving book and lock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","lock"]}, +{"id":"177123","label":"dropping paper onto box","template":"Dropping [something] onto [something]","placeholders":["paper","box"]}, +{"id":"27827","label":"moving plastic bottle and plastic bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["plastic bottle","plastic bottle"]}, +{"id":"699","label":"pretending to squeeze cup","template":"Pretending to squeeze [something]","placeholders":["cup"]}, +{"id":"108015","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"157289","label":"closing something","template":"Closing [something]","placeholders":["something"]}, +{"id":"54354","label":"unfolding a $20 bill","template":"Unfolding [something]","placeholders":["a $20 bill"]}, +{"id":"67174","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"92580","label":"taking ribbon out of mug","template":"Taking [something] out of [something]","placeholders":["ribbon","mug"]}, +{"id":"183926","label":"plugging memory into usb but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["memory","usb"]}, +{"id":"86654","label":"rock colliding with rock and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["rock","rock"]}, +{"id":"105671","label":"taking a marker from a group of markers on the table","template":"Taking [one of many similar things on the table]","placeholders":["a marker from a group of markers on the table"]}, +{"id":"179956","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"85917","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"72507","label":"turning an ashtray upside down","template":"Turning [something] upside down","placeholders":["an ashtray"]}, +{"id":"45350","label":"lifting tablet box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["tablet box"]}, +{"id":"170686","label":"turning the camera left while filming small green ball","template":"Turning the camera left while filming [something]","placeholders":["small green ball"]}, +{"id":"101343","label":"pulling brown case from left to right","template":"Pulling [something] from left to right","placeholders":["brown case"]}, +{"id":"75398","label":"pulling two ends of plastic bag so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["plastic bag"]}, +{"id":"120176","label":"covering lighter with tissue","template":"Covering [something] with [something]","placeholders":["lighter","tissue"]}, +{"id":"134267","label":"taking umbrella","template":"Taking [one of many similar things on the table]","placeholders":["umbrella"]}, +{"id":"142785","label":"putting clothclips","template":"Putting [something similar to other things that are already on the table]","placeholders":["clothclips"]}, +{"id":"164235","label":"rolling a tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a tape"]}, +{"id":"91894","label":"pushing a lighter so it spins","template":"Pushing [something] so it spins","placeholders":["a lighter"]}, +{"id":"3548","label":"taking crayon out of box","template":"Taking [something] out of [something]","placeholders":["crayon","box"]}, +{"id":"58014","label":"uncovering nail polish remover","template":"Uncovering [something]","placeholders":["nail polish remover"]}, +{"id":"12570","label":"pushing mini book from left to right","template":"Pushing [something] from left to right","placeholders":["mini book"]}, +{"id":"130213","label":"taking receipts","template":"Taking [one of many similar things on the table]","placeholders":["receipts"]}, +{"id":"42391","label":"picking purple container up","template":"Picking [something] up","placeholders":["purple container"]}, +{"id":"126167","label":"pretending to be tearing elastic strap","template":"Pretending to be tearing [something that is not tearable]","placeholders":["elastic strap"]}, +{"id":"176110","label":"moving cup towards the camera","template":"Moving [something] towards the camera","placeholders":["cup"]}, +{"id":"192254","label":"pushing red watch case from right to left","template":"Pushing [something] from right to left","placeholders":["red watch case"]}, +{"id":"110620","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"20405","label":"putting pebble and spanner on the table","template":"Putting [something] and [something] on the table","placeholders":["pebble","spanner"]}, +{"id":"8128","label":"touching (without moving) the edge of bag","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","bag"]}, +{"id":"135241","label":"pushing white board clip from left to right","template":"Pushing [something] from left to right","placeholders":["white board clip"]}, +{"id":"76076","label":"showing that a bag is empty","template":"Showing that [something] is empty","placeholders":["a bag"]}, +{"id":"50078","label":"folding bed sheet","template":"Folding [something]","placeholders":["bed sheet"]}, +{"id":"192208","label":"taking push pins out of container","template":"Taking [something] out of [something]","placeholders":["push pins","container"]}, +{"id":"13959","label":"showing a toothbrush behind a bottle","template":"Showing [something] behind [something]","placeholders":["a toothbrush","a bottle"]}, +{"id":"15645","label":"putting chocolate bar","template":"Putting [something similar to other things that are already on the table]","placeholders":["chocolate bar"]}, +{"id":"211822","label":"letting toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy"]}, +{"id":"167693","label":"sprinkling pepper onto envelope","template":"Sprinkling [something] onto [something]","placeholders":["pepper","envelope"]}, +{"id":"105091","label":"taking glass of many similar glasses","template":"Taking [one of many similar things on the table]","placeholders":["glass of many similar glasses"]}, +{"id":"197319","label":"uncovering scissors","template":"Uncovering [something]","placeholders":["scissors"]}, +{"id":"39680","label":"pushing a lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a lighter"]}, +{"id":"119993","label":"putting a bird on a surface","template":"Putting [something] on a surface","placeholders":["a bird"]}, +{"id":"107016","label":"moving remote across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["remote"]}, +{"id":"78969","label":"twisting grass","template":"Twisting [something]","placeholders":["grass"]}, +{"id":"217238","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"147868","label":"turning the camera left while filming brown case","template":"Turning the camera left while filming [something]","placeholders":["brown case"]}, +{"id":"204296","label":"putting 1 coin onto hair oil bottle","template":"Putting [number of] [something] onto [something]","placeholders":["1","coin","hair oil bottle"]}, +{"id":"97082","label":"taking comb","template":"Taking [one of many similar things on the table]","placeholders":["comb"]}, +{"id":"135944","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213296","label":"putting paper-clip upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["paper-clip"]}, +{"id":"140321","label":"showing mug behind plant","template":"Showing [something] behind [something]","placeholders":["mug","plant"]}, +{"id":"102224","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"71060","label":"piling socks up","template":"Piling [something] up","placeholders":["socks"]}, +{"id":"14995","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"20672","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"169929","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"57753","label":"dropping bean bag onto floor","template":"Dropping [something] onto [something]","placeholders":["bean bag","floor"]}, +{"id":"184562","label":"tearing a paper sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper sheet"]}, +{"id":"209315","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"149542","label":"throwing cigarette lighter in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["cigarette lighter"]}, +{"id":"6045","label":"tilting notebook with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["notebook","pen"]}, +{"id":"66953","label":"moving green toy car towards the camera","template":"Moving [something] towards the camera","placeholders":["green toy car"]}, +{"id":"43233","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"103869","label":"turning soupbowl upside down","template":"Turning [something] upside down","placeholders":["soupbowl"]}, +{"id":"191488","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"178356","label":"moving away from flowers with your camera","template":"Moving away from [something] with your camera","placeholders":["flowers"]}, +{"id":"42228","label":"covering mobilephone with paper","template":"Covering [something] with [something]","placeholders":["mobilephone","paper"]}, +{"id":"63548","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"66319","label":"turning the camera right while filming dinosaur prototype","template":"Turning the camera right while filming [something]","placeholders":["dinosaur prototype"]}, +{"id":"85905","label":"covering keys with towel","template":"Covering [something] with [something]","placeholders":["keys","towel"]}, +{"id":"181921","label":"pretending to be tearing plastic bag of filters","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic bag of filters"]}, +{"id":"183031","label":"turning the camera left while filming old mobile phone","template":"Turning the camera left while filming [something]","placeholders":["old mobile phone"]}, +{"id":"201187","label":"showing a jug behind a box","template":"Showing [something] behind [something]","placeholders":["a jug","a box"]}, +{"id":"33513","label":"pretending to be tearing blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["blanket"]}, +{"id":"209030","label":"holding a water bottle","template":"Holding [something]","placeholders":["a water bottle"]}, +{"id":"162748","label":"moving screw up","template":"Moving [something] up","placeholders":["screw"]}, +{"id":"37745","label":"showing that a pop bottle is empty","template":"Showing that [something] is empty","placeholders":["a pop bottle"]}, +{"id":"51761","label":"showing books to the camera","template":"Showing [something] to the camera","placeholders":["books"]}, +{"id":"82424","label":"moving the arm of a teddy bear","template":"Moving [part] of [something]","placeholders":["the arm","a teddy bear"]}, +{"id":"103429","label":"moving a phone and a lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a phone","a lighter"]}, +{"id":"132614","label":"laying pig on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["pig"]}, +{"id":"133111","label":"showing that vessel is empty","template":"Showing that [something] is empty","placeholders":["vessel"]}, +{"id":"142564","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"125738","label":"poking bowl so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bowl"]}, +{"id":"198792","label":"poking towel so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["towel"]}, +{"id":"165322","label":"hitting a pillow with a fist","template":"Hitting [something] with [something]","placeholders":["a pillow","a fist"]}, +{"id":"78190","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"72552","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"21575","label":"putting pliers upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pliers"]}, +{"id":"104775","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"154264","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"126910","label":"throwing sweet potato","template":"Throwing [something]","placeholders":["sweet potato"]}, +{"id":"122777","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"106533","label":"putting 3 pens onto the table","template":"Putting [number of] [something] onto [something]","placeholders":["3","pens","the table"]}, +{"id":"34352","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"104458","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"42782","label":"opening oil bottle","template":"Opening [something]","placeholders":["oil bottle"]}, +{"id":"138899","label":"uncovering compass","template":"Uncovering [something]","placeholders":["compass"]}, +{"id":"130929","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"129551","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"155287","label":"piling things up","template":"Piling [something] up","placeholders":["things"]}, +{"id":"32579","label":"moving comb across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["comb"]}, +{"id":"161270","label":"bending cord so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cord"]}, +{"id":"125147","label":"tilting bottle with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bottle","finger"]}, +{"id":"206508","label":"moving away from banana bunch with your camera","template":"Moving away from [something] with your camera","placeholders":["banana bunch"]}, +{"id":"49334","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"10098","label":"unfolding a pink sticky note","template":"Unfolding [something]","placeholders":["a pink sticky note"]}, +{"id":"201686","label":"pushing a plastic cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a plastic cup"]}, +{"id":"49280","label":"plugging machine into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["machine","wall"]}, +{"id":"64934","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"84064","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"145196","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"177244","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"50310","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"138993","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"44722","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"85895","label":"moving a jumpdrive closer to a stapler","template":"Moving [something] closer to [something]","placeholders":["a jumpdrive","a stapler"]}, +{"id":"93909","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"105054","label":"pouring water from bottle into glass","template":"Pouring [something] into [something]","placeholders":["water from bottle","glass"]}, +{"id":"11119","label":"pulling a paper tissue out of a tissue box","template":"Pulling [something] out of [something]","placeholders":["a paper tissue","a tissue box"]}, +{"id":"11267","label":"dropping remote behind pillow","template":"Dropping [something] behind [something]","placeholders":["remote","pillow"]}, +{"id":"12448","label":"pushing toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy car"]}, +{"id":"193127","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"45244","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"203717","label":"poking a hole into marshmallow","template":"Poking a hole into [something soft]","placeholders":["marshmallow"]}, +{"id":"194955","label":"pushing toy car from left to right","template":"Pushing [something] from left to right","placeholders":["toy car"]}, +{"id":"18592","label":"pouring soda into whiskey","template":"Pouring [something] into [something]","placeholders":["soda","whiskey"]}, +{"id":"53531","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"77401","label":"moving glass and fruit closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","fruit"]}, +{"id":"12160","label":"dropping rubix cube next to pillow","template":"Dropping [something] next to [something]","placeholders":["rubix cube","pillow"]}, +{"id":"194954","label":"burying bangle in rice","template":"Burying [something] in [something]","placeholders":["bangle","rice"]}, +{"id":"113364","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"30186","label":"hitting bicycle-bell with hammer","template":"Hitting [something] with [something]","placeholders":["bicycle-bell","hammer"]}, +{"id":"203047","label":"opening pad lock","template":"Opening [something]","placeholders":["pad lock"]}, +{"id":"95737","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"190281","label":"turning the camera upwards while filming pictures","template":"Turning the camera upwards while filming [something]","placeholders":["pictures"]}, +{"id":"121393","label":"squeezing rubber duck","template":"Squeezing [something]","placeholders":["rubber duck"]}, +{"id":"127980","label":"plugging ac charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["ac charger","wall socket"]}, +{"id":"83799","label":"putting lidded cup next to container","template":"Putting [something] next to [something]","placeholders":["lidded cup","container"]}, +{"id":"177874","label":"tipping wallet over","template":"Tipping [something] over","placeholders":["wallet"]}, +{"id":"72077","label":"dropping sellotape behind box","template":"Dropping [something] behind [something]","placeholders":["sellotape","box"]}, +{"id":"164248","label":"throwing a plastic cup","template":"Throwing [something]","placeholders":["a plastic cup"]}, +{"id":"159532","label":"pouring hot water into cup","template":"Pouring [something] into [something]","placeholders":["hot water","cup"]}, +{"id":"19584","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"56794","label":"pretending to sprinkle air onto tomato","template":"Pretending to sprinkle air onto [something]","placeholders":["tomato"]}, +{"id":"111395","label":"tearing cardboard just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardboard"]}, +{"id":"193322","label":"moving bottle and box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","box"]}, +{"id":"63904","label":"pretending to put glass cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["glass cup"]}, +{"id":"91376","label":"putting wired headset on a surface","template":"Putting [something] on a surface","placeholders":["wired headset"]}, +{"id":"61610","label":"spinning a coaster that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a coaster"]}, +{"id":"62082","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"170528","label":"showing junction box to the camera","template":"Showing [something] to the camera","placeholders":["junction box"]}, +{"id":"47651","label":"showing standing box next to case with bottles","template":"Showing [something] next to [something]","placeholders":["standing box","case with bottles"]}, +{"id":"74980","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"60229","label":"hitting bottle with glass","template":"Hitting [something] with [something]","placeholders":["bottle","glass"]}, +{"id":"186166","label":"moving talcum power bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["talcum power bottle"]}, +{"id":"193671","label":"putting a box in front of a cube","template":"Putting [something] in front of [something]","placeholders":["a box","a cube"]}, +{"id":"23292","label":"stacking 3 different items","template":"Stacking [number of] [something]","placeholders":["3","different items"]}, +{"id":"41924","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"91755","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"117454","label":"lifting a surface with pen on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["pen"]}, +{"id":"100409","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"174211","label":"stuffing pant into bag","template":"Stuffing [something] into [something]","placeholders":["pant","bag"]}, +{"id":"78261","label":"tipping bear over","template":"Tipping [something] over","placeholders":["bear"]}, +{"id":"141684","label":"moving cup and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","cup"]}, +{"id":"217180","label":"spinning an orange that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["an orange"]}, +{"id":"122772","label":"folding coversheet","template":"Folding [something]","placeholders":["coversheet"]}, +{"id":"104693","label":"dropping water bottle into cd cover","template":"Dropping [something] into [something]","placeholders":["water bottle","cd cover"]}, +{"id":"78579","label":"pushing binder clip from left to right","template":"Pushing [something] from left to right","placeholders":["binder clip"]}, +{"id":"78678","label":"wiping toothpaste off of a table","template":"Wiping [something] off of [something]","placeholders":["toothpaste","a table"]}, +{"id":"16191","label":"poking a gatorade bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a gatorade bottle"]}, +{"id":"164685","label":"unfolding car's side mirror","template":"Unfolding [something]","placeholders":["car's side mirror"]}, +{"id":"183226","label":"holding notebook behind bed frame","template":"Holding [something] behind [something]","placeholders":["notebook","bed frame"]}, +{"id":"125987","label":"pretending to open container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["container"]}, +{"id":"157582","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"168622","label":"pretending to take cd case from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cd case","table"]}, +{"id":"213350","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"217620","label":"pushing canned food from right to left","template":"Pushing [something] from right to left","placeholders":["canned food"]}, +{"id":"111440","label":"turning spoon rest upside down","template":"Turning [something] upside down","placeholders":["spoon rest"]}, +{"id":"17351","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"68685","label":"gum colliding with gum and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["gum","gum"]}, +{"id":"402","label":"pushing marker off of table","template":"Pushing [something] off of [something]","placeholders":["marker","table"]}, +{"id":"144523","label":"pushing bucket from left to right","template":"Pushing [something] from left to right","placeholders":["bucket"]}, +{"id":"172835","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"169848","label":"lighter falling like a rock","template":"[Something] falling like a rock","placeholders":["lighter"]}, +{"id":"212475","label":"spilling water next to a peg","template":"Spilling [something] next to [something]","placeholders":["water","a peg"]}, +{"id":"180301","label":"picking a cell phone up","template":"Picking [something] up","placeholders":["a cell phone"]}, +{"id":"100740","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"96842","label":"lifting rule up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rule"]}, +{"id":"146552","label":"showing a photo behind the cross","template":"Showing [something] behind [something]","placeholders":["a photo","the cross"]}, +{"id":"42088","label":"tearing masking tape just a little bit","template":"Tearing [something] just a little bit","placeholders":["masking tape"]}, +{"id":"84449","label":"putting calculator and a coin on the table","template":"Putting [something] and [something] on the table","placeholders":["calculator","a coin"]}, +{"id":"203223","label":"taking wallet from floor","template":"Taking [something] from [somewhere]","placeholders":["wallet","floor"]}, +{"id":"90746","label":"dropping toy into bowl","template":"Dropping [something] into [something]","placeholders":["toy","bowl"]}, +{"id":"25962","label":"moving a lamp up","template":"Moving [something] up","placeholders":["a lamp"]}, +{"id":"70536","label":"showing diary to the camera","template":"Showing [something] to the camera","placeholders":["diary"]}, +{"id":"50772","label":"spilling water onto a ruler","template":"Spilling [something] onto [something]","placeholders":["water","a ruler"]}, +{"id":"106048","label":"tearing a leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["a leaf"]}, +{"id":"94859","label":"holding pen behind cup","template":"Holding [something] behind [something]","placeholders":["pen","cup"]}, +{"id":"76946","label":"pretending to be tearing a mouse pad","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a mouse pad"]}, +{"id":"187138","label":"turning the camera right while filming temple","template":"Turning the camera right while filming [something]","placeholders":["temple"]}, +{"id":"74575","label":"dropping a bottletop next to a remote","template":"Dropping [something] next to [something]","placeholders":["a bottletop","a remote"]}, +{"id":"44680","label":"showing a photo of a photo of mom holding a baby to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a photo of mom holding a baby"]}, +{"id":"57579","label":"approaching bolt with your camera","template":"Approaching [something] with your camera","placeholders":["bolt"]}, +{"id":"210051","label":"dropping pen next to glass","template":"Dropping [something] next to [something]","placeholders":["pen","glass"]}, +{"id":"178725","label":"pulling two ends of a cable but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a cable"]}, +{"id":"179043","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"71524","label":"showing bat behind toy","template":"Showing [something] behind [something]","placeholders":["bat","toy"]}, +{"id":"218376","label":"putting league, camera case and shoe on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["league","camera case","shoe"]}, +{"id":"179512","label":"taking a pencil from many others","template":"Taking [one of many similar things on the table]","placeholders":["a pencil from many others"]}, +{"id":"31859","label":"plugging power adapter into outlet","template":"Plugging [something] into [something]","placeholders":["power adapter","outlet"]}, +{"id":"108294","label":"uncovering can","template":"Uncovering [something]","placeholders":["can"]}, +{"id":"135954","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"98361","label":"pulling granola bar from right to left","template":"Pulling [something] from right to left","placeholders":["granola bar"]}, +{"id":"62240","label":"spilling water behind a bath-tube","template":"Spilling [something] behind [something]","placeholders":["water","a bath-tube"]}, +{"id":"70122","label":"holding magnet next to playstation controller","template":"Holding [something] next to [something]","placeholders":["magnet","playstation controller"]}, +{"id":"49916","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"179902","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"198860","label":"hitting a bottle with a spoon","template":"Hitting [something] with [something]","placeholders":["a bottle","a spoon"]}, +{"id":"53730","label":"putting screw upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["screw"]}, +{"id":"106822","label":"tipping vitamin bottle with vitamins over, so vitamins falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["vitamin bottle","vitamins","vitamins"]}, +{"id":"72929","label":"pretending to close waterbottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["waterbottle"]}, +{"id":"98636","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"90940","label":"tilting a notebook with a jar on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","a jar"]}, +{"id":"59299","label":"putting book onto book so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["book","book"]}, +{"id":"41214","label":"stacking 5 train tracks","template":"Stacking [number of] [something]","placeholders":["5","train tracks"]}, +{"id":"61621","label":"pouring water into the sink","template":"Pouring [something] into [something]","placeholders":["water","the sink"]}, +{"id":"156790","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"180692","label":"digging soil out of ground","template":"Digging [something] out of [something]","placeholders":["soil","ground"]}, +{"id":"34709","label":"pen colliding with flashdisk and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pen","flashdisk"]}, +{"id":"42640","label":"lifting up one end of paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["paper"]}, +{"id":"139766","label":"lifting up one end of pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil"]}, +{"id":"141994","label":"moving a piece of tangerine and a dish closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a piece of tangerine","a dish"]}, +{"id":"102550","label":"bending medicine tablet strip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["medicine tablet strip"]}, +{"id":"219800","label":"moving salt closer to pepper","template":"Moving [something] closer to [something]","placeholders":["salt","pepper"]}, +{"id":"39177","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"78847","label":"closing a pen","template":"Closing [something]","placeholders":["a pen"]}, +{"id":"87838","label":"pushing potted plant so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["potted plant"]}, +{"id":"191662","label":"plugging wire into mobile","template":"Plugging [something] into [something]","placeholders":["wire","mobile"]}, +{"id":"74760","label":"putting a bowl behind a jbl","template":"Putting [something] behind [something]","placeholders":["a bowl","a jbl"]}, +{"id":"148945","label":"moving a screwdriver closer to a box","template":"Moving [something] closer to [something]","placeholders":["a screwdriver","a box"]}, +{"id":"184051","label":"lifting a surface with knife on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["knife"]}, +{"id":"216657","label":"pushing a spoon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a spoon"]}, +{"id":"37666","label":"showing scotch tape to the camera","template":"Showing [something] to the camera","placeholders":["scotch tape"]}, +{"id":"98301","label":"pulling black remote from left to right","template":"Pulling [something] from left to right","placeholders":["black remote"]}, +{"id":"161014","label":"turning the camera upwards while filming bottled ponzu sauce","template":"Turning the camera upwards while filming [something]","placeholders":["bottled ponzu sauce"]}, +{"id":"38392","label":"pretending to be tearing hand towel that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["hand towel that is not tearable"]}, +{"id":"194936","label":"pretending to spread air onto banana","template":"Pretending to spread air onto [something]","placeholders":["banana"]}, +{"id":"95962","label":"poking book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["book"]}, +{"id":"202556","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"166833","label":"opening a glass jar","template":"Opening [something]","placeholders":["a glass jar"]}, +{"id":"22966","label":"putting remote behind textbook","template":"Putting [something] behind [something]","placeholders":["remote","textbook"]}, +{"id":"109192","label":"pretending to pick hand broom up","template":"Pretending to pick [something] up","placeholders":["hand broom"]}, +{"id":"44441","label":"picking pillow up","template":"Picking [something] up","placeholders":["pillow"]}, +{"id":"152155","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"158205","label":"turning glass jar upside down","template":"Turning [something] upside down","placeholders":["glass jar"]}, +{"id":"45058","label":"plugging a power box into an outlet","template":"Plugging [something] into [something]","placeholders":["a power box","an outlet"]}, +{"id":"74966","label":"lifting wooden block up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["wooden block"]}, +{"id":"134415","label":"plastic oignons being deflected from palstic choux","template":"[Something] being deflected from [something]","placeholders":["plastic oignons","palstic choux"]}, +{"id":"60426","label":"poking lighter so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lighter"]}, +{"id":"169775","label":"pretending to pick wallet up","template":"Pretending to pick [something] up","placeholders":["wallet"]}, +{"id":"60063","label":"moving rubix cube closer to yellow ball","template":"Moving [something] closer to [something]","placeholders":["rubix cube","yellow ball"]}, +{"id":"62279","label":"a phone falling like a rock","template":"[Something] falling like a rock","placeholders":["a phone"]}, +{"id":"151919","label":"rolling a duct tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a duct tape"]}, +{"id":"127204","label":"tilting book with scissors on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","scissors"]}, +{"id":"174540","label":"pretending to be tearing something that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["something that is not tearable"]}, +{"id":"77904","label":"putting paper onto fridge","template":"Putting [something] onto [something]","placeholders":["paper","fridge"]}, +{"id":"154355","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"24532","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"207871","label":"covering shoe with shirt","template":"Covering [something] with [something]","placeholders":["shoe","shirt"]}, +{"id":"66088","label":"trying but failing to attach a sticker to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticker","the wall"]}, +{"id":"192999","label":"opening waste bin","template":"Opening [something]","placeholders":["waste bin"]}, +{"id":"159145","label":"moving nail clippers closer to pen","template":"Moving [something] closer to [something]","placeholders":["nail clippers","pen"]}, +{"id":"125214","label":"spilling coffee onto the counter","template":"Spilling [something] onto [something]","placeholders":["coffee","the counter"]}, +{"id":"104739","label":"picking mouse up","template":"Picking [something] up","placeholders":["mouse"]}, +{"id":"147219","label":"moving red pen and black pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["red pen","black pen"]}, +{"id":"212006","label":"putting cassette tape behind mug","template":"Putting [something] behind [something]","placeholders":["cassette tape","mug"]}, +{"id":"105208","label":"lifting the laundry basket up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["the laundry basket"]}, +{"id":"164273","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"170235","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"216040","label":"pretending to put hat onto shoe","template":"Pretending to put [something] onto [something]","placeholders":["hat","shoe"]}, +{"id":"37328","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"70631","label":"putting pebble onto paper structure so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pebble","paper structure"]}, +{"id":"121801","label":"trying to bend steel so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["steel"]}, +{"id":"196910","label":"hitting dinosaur with car","template":"Hitting [something] with [something]","placeholders":["dinosaur","car"]}, +{"id":"148169","label":"dropping a cross onto a container","template":"Dropping [something] onto [something]","placeholders":["a cross","a container"]}, +{"id":"62725","label":"twisting belt","template":"Twisting [something]","placeholders":["belt"]}, +{"id":"181858","label":"taking one card of many cards on the table","template":"Taking [one of many similar things on the table]","placeholders":["one card of many cards on the table"]}, +{"id":"93923","label":"hitting a mouse with a spanner","template":"Hitting [something] with [something]","placeholders":["a mouse","a spanner"]}, +{"id":"82611","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"172902","label":"moving a cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cup"]}, +{"id":"108786","label":"putting a lemon into a jug","template":"Putting [something] into [something]","placeholders":["a lemon","a jug"]}, +{"id":"130905","label":"putting tv remote onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["tv remote"]}, +{"id":"52646","label":"poking a bubble bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bubble bottle"]}, +{"id":"175112","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"118974","label":"putting body moisturiser bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["body moisturiser bottle"]}, +{"id":"53974","label":"plugging cord into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","outlet"]}, +{"id":"93367","label":"letting container roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["container"]}, +{"id":"198782","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"34187","label":"putting ball onto glass","template":"Putting [something] onto [something]","placeholders":["ball","glass"]}, +{"id":"182974","label":"lifting up one end of keyboard, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["keyboard"]}, +{"id":"89104","label":"wiping cough syrup off of counter","template":"Wiping [something] off of [something]","placeholders":["cough syrup","counter"]}, +{"id":"171612","label":"pulling red pot holder from right to left","template":"Pulling [something] from right to left","placeholders":["red pot holder"]}, +{"id":"219456","label":"lifting lift pump up without dropdown up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["lift pump up without dropdown"]}, +{"id":"38922","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"128208","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"3735","label":"pushing a toy car so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toy car"]}, +{"id":"101985","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"132230","label":"spilling candies onto a plate","template":"Spilling [something] onto [something]","placeholders":["candies","a plate"]}, +{"id":"181910","label":"moving a sphere and a stone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a sphere","a stone"]}, +{"id":"10659","label":"picking mouse up","template":"Picking [something] up","placeholders":["mouse"]}, +{"id":"34615","label":"pretending to spread air onto phone","template":"Pretending to spread air onto [something]","placeholders":["phone"]}, +{"id":"128832","label":"showing wrist watch to the camera","template":"Showing [something] to the camera","placeholders":["wrist watch"]}, +{"id":"83778","label":"uncovering tv remote","template":"Uncovering [something]","placeholders":["tv remote"]}, +{"id":"151465","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"182466","label":"showing that orange bowl is empty","template":"Showing that [something] is empty","placeholders":["orange bowl"]}, +{"id":"200234","label":"stuffing paper into cup","template":"Stuffing [something] into [something]","placeholders":["paper","cup"]}, +{"id":"34412","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"171317","label":"moving pen and ruler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","ruler"]}, +{"id":"207671","label":"lifting notebook with pen on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","pen"]}, +{"id":"69783","label":"showing that the sanitizer or lotion is inside the bottle","template":"Showing that [something] is inside [something]","placeholders":["the sanitizer or lotion","the bottle"]}, +{"id":"143494","label":"holding hair brush","template":"Holding [something]","placeholders":["hair brush"]}, +{"id":"25172","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"89103","label":"unfolding piece of paper","template":"Unfolding [something]","placeholders":["piece of paper"]}, +{"id":"163743","label":"showing that crips is inside snack pot","template":"Showing that [something] is inside [something]","placeholders":["crips","snack pot"]}, +{"id":"217749","label":"tipping cereal over","template":"Tipping [something] over","placeholders":["cereal"]}, +{"id":"39512","label":"putting s phone in front of key","template":"Putting [something] in front of [something]","placeholders":["s phone","key"]}, +{"id":"40747","label":"showing a laptop behind a spray bottle","template":"Showing [something] behind [something]","placeholders":["a laptop","a spray bottle"]}, +{"id":"189696","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"110486","label":"throwing powder packet onto a surface","template":"Throwing [something] onto a surface","placeholders":["powder packet"]}, +{"id":"163025","label":"an eraser falling like a rock","template":"[Something] falling like a rock","placeholders":["an eraser"]}, +{"id":"45983","label":"moving a pen and a usb stick away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a usb stick"]}, +{"id":"113384","label":"dropping something next to something","template":"Dropping [something] next to [something]","placeholders":["something","something"]}, +{"id":"16214","label":"tipping a lighter over","template":"Tipping [something] over","placeholders":["a lighter"]}, +{"id":"53680","label":"putting plate onto coversheet","template":"Putting [something] onto [something]","placeholders":["plate","coversheet"]}, +{"id":"198737","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"54257","label":"putting cow that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["cow"]}, +{"id":"187591","label":"putting remote next to phone","template":"Putting [something] next to [something]","placeholders":["remote","phone"]}, +{"id":"179770","label":"tearing something just a little bit","template":"Tearing [something] just a little bit","placeholders":["something"]}, +{"id":"33362","label":"dropping a matchbox behind a bucket lid","template":"Dropping [something] behind [something]","placeholders":["a matchbox","a bucket lid"]}, +{"id":"138915","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"36124","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"30316","label":"pushing pumpkin cookie from right to left","template":"Pushing [something] from right to left","placeholders":["pumpkin cookie"]}, +{"id":"19583","label":"taking snack from box","template":"Taking [something] from [somewhere]","placeholders":["snack","box"]}, +{"id":"173811","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"190674","label":"spinning a deodorant can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a deodorant can"]}, +{"id":"138482","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"146988","label":"dropping spanner behind paper clip","template":"Dropping [something] behind [something]","placeholders":["spanner","paper clip"]}, +{"id":"47387","label":"holding case over speaker","template":"Holding [something] over [something]","placeholders":["case","speaker"]}, +{"id":"205496","label":"lifting lamp with double-sided adhesive tape on it","template":"Lifting [something] with [something] on it","placeholders":["lamp","double-sided adhesive tape"]}, +{"id":"100661","label":"putting a pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pencil"]}, +{"id":"14842","label":"putting candle next to paper","template":"Putting [something] next to [something]","placeholders":["candle","paper"]}, +{"id":"118049","label":"air hockey puck being deflected from air hockey mallet","template":"[Something] being deflected from [something]","placeholders":["air hockey puck","air hockey mallet"]}, +{"id":"93308","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"188413","label":"poking a hole into cake","template":"Poking a hole into [something soft]","placeholders":["cake"]}, +{"id":"46057","label":"lifting box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["box"]}, +{"id":"25805","label":"throwing book onto a surface","template":"Throwing [something] onto a surface","placeholders":["book"]}, +{"id":"39783","label":"holding a 3d optical mouse","template":"Holding [something]","placeholders":["a 3d optical mouse"]}, +{"id":"65200","label":"putting a flashlight on a surface","template":"Putting [something] on a surface","placeholders":["a flashlight"]}, +{"id":"171772","label":"pretending to take a lighter from a chair","template":"Pretending to take [something] from [somewhere]","placeholders":["a lighter","a chair"]}, +{"id":"76980","label":"moving away from toy with your camera","template":"Moving away from [something] with your camera","placeholders":["toy"]}, +{"id":"186942","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"141010","label":"showing that matchbox is inside jar","template":"Showing that [something] is inside [something]","placeholders":["matchbox","jar"]}, +{"id":"157478","label":"dropping a key behind a book","template":"Dropping [something] behind [something]","placeholders":["a key","a book"]}, +{"id":"160765","label":"taking taking knife","template":"Taking [one of many similar things on the table]","placeholders":["taking knife"]}, +{"id":"159540","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"111995","label":"opening a tube","template":"Opening [something]","placeholders":["a tube"]}, +{"id":"107701","label":"plugging a cord into a laptop","template":"Plugging [something] into [something]","placeholders":["a cord","a laptop"]}, +{"id":"117648","label":"putting apple onto a glass","template":"Putting [something] onto [something]","placeholders":["apple","a glass"]}, +{"id":"173542","label":"pretending to poke glasses","template":"Pretending to poke [something]","placeholders":["glasses"]}, +{"id":"11588","label":"lifting a surface with spoon on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["spoon"]}, +{"id":"204757","label":"moving pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pen"]}, +{"id":"155606","label":"putting pencil into jar","template":"Putting [something] into [something]","placeholders":["pencil","jar"]}, +{"id":"185958","label":"plugging usb plug into laptop","template":"Plugging [something] into [something]","placeholders":["usb plug","laptop"]}, +{"id":"365","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"78170","label":"showing something on top of something","template":"Showing [something] on top of [something]","placeholders":["something","something"]}, +{"id":"195612","label":"opening scissor","template":"Opening [something]","placeholders":["scissor"]}, +{"id":"103389","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"10975","label":"turning the camera left while filming banana bunch","template":"Turning the camera left while filming [something]","placeholders":["banana bunch"]}, +{"id":"84838","label":"pushing cube so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cube"]}, +{"id":"3540","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"204776","label":"putting coins (pennies)","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins (pennies)"]}, +{"id":"6639","label":"trying to bend stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["stick"]}, +{"id":"213669","label":"putting bottle into cup","template":"Putting [something] into [something]","placeholders":["bottle","cup"]}, +{"id":"191031","label":"moving a hammer and a nail closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a hammer","a nail"]}, +{"id":"85558","label":"putting spatula upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["spatula"]}, +{"id":"103586","label":"holding a stick in front of the clock","template":"Holding [something] in front of [something]","placeholders":["a stick","the clock"]}, +{"id":"200985","label":"moving cup away from plate","template":"Moving [something] away from [something]","placeholders":["cup","plate"]}, +{"id":"154385","label":"picking a watering can up","template":"Picking [something] up","placeholders":["a watering can"]}, +{"id":"20586","label":"pouring water into glass flower vase until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass flower vase"]}, +{"id":"62926","label":"bending a wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a wooden stick"]}, +{"id":"35421","label":"pushing toothpicks so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toothpicks"]}, +{"id":"196297","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"56670","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"163607","label":"lifting playing card with tweezers on it","template":"Lifting [something] with [something] on it","placeholders":["playing card","tweezers"]}, +{"id":"123124","label":"removing a cube, revealing a toy behind","template":"Removing [something], revealing [something] behind","placeholders":["a cube","a toy"]}, +{"id":"71173","label":"moving away from book with your camera","template":"Moving away from [something] with your camera","placeholders":["book"]}, +{"id":"80513","label":"moving potato and potato so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["potato","potato"]}, +{"id":"50150","label":"pretending to pour liquid out of can, but can is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["liquid","can","can"]}, +{"id":"52137","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"211202","label":"moving toy away from the camera","template":"Moving [something] away from the camera","placeholders":["toy"]}, +{"id":"64983","label":"holding powder bottle behind paint bottle","template":"Holding [something] behind [something]","placeholders":["powder bottle","paint bottle"]}, +{"id":"62001","label":"moving pen towards the camera","template":"Moving [something] towards the camera","placeholders":["pen"]}, +{"id":"135520","label":"removing blanket, revealing piggy bank on notebook behind","template":"Removing [something], revealing [something] behind","placeholders":["blanket","piggy bank on notebook"]}, +{"id":"180287","label":"pushing blue ballpen from right to left","template":"Pushing [something] from right to left","placeholders":["blue ballpen"]}, +{"id":"214308","label":"a pair of scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["a pair of scissors"]}, +{"id":"17446","label":"throwing a ball against a wall","template":"Throwing [something] against [something]","placeholders":["a ball","a wall"]}, +{"id":"55937","label":"picking key up","template":"Picking [something] up","placeholders":["key"]}, +{"id":"124975","label":"putting board clip that cannot stand upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["board clip that cannot stand"]}, +{"id":"128508","label":"pretending to squeeze remote","template":"Pretending to squeeze [something]","placeholders":["remote"]}, +{"id":"185198","label":"moving a stapler and a remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a stapler","a remote control"]}, +{"id":"219139","label":"moving fluorescent colour pen up","template":"Moving [something] up","placeholders":["fluorescent colour pen"]}, +{"id":"205348","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"132337","label":"hitting a wall with a stick","template":"Hitting [something] with [something]","placeholders":["a wall","a stick"]}, +{"id":"87906","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"147296","label":"pushing a pencil so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pencil"]}, +{"id":"117588","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"55818","label":"throwing headphones in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["headphones"]}, +{"id":"57826","label":"spilling water next to a peg","template":"Spilling [something] next to [something]","placeholders":["water","a peg"]}, +{"id":"149698","label":"dropping beach pebble next to plastic cup","template":"Dropping [something] next to [something]","placeholders":["beach pebble","plastic cup"]}, +{"id":"133145","label":"rolling a golf ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a golf ball"]}, +{"id":"3445","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"75049","label":"bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bag"]}, +{"id":"150419","label":"pretending to pour water out of mug, but mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","mug","mug"]}, +{"id":"149490","label":"showing green colour pen next to blue colour pen","template":"Showing [something] next to [something]","placeholders":["green colour pen","blue colour pen"]}, +{"id":"92579","label":"moving tiger down","template":"Moving [something] down","placeholders":["tiger"]}, +{"id":"16718","label":"showing that coins is inside box","template":"Showing that [something] is inside [something]","placeholders":["coins","box"]}, +{"id":"206004","label":"holding cup over table","template":"Holding [something] over [something]","placeholders":["cup","table"]}, +{"id":"168536","label":"touching (without moving) sole of shoe","template":"Touching (without moving) [part] of [something]","placeholders":["sole","shoe"]}, +{"id":"173369","label":"taking a pot out of an oven","template":"Taking [something] out of [something]","placeholders":["a pot","an oven"]}, +{"id":"106306","label":"pushing water bottle with cell phone","template":"Pushing [something] with [something]","placeholders":["water bottle","cell phone"]}, +{"id":"138238","label":"touching (without moving) part of candle","template":"Touching (without moving) [part] of [something]","placeholders":["part","candle"]}, +{"id":"57112","label":"lifting book with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["book","scissors"]}, +{"id":"35431","label":"putting shoe on a surface","template":"Putting [something] on a surface","placeholders":["shoe"]}, +{"id":"180817","label":"putting a pencil sharpener next to a pen","template":"Putting [something] next to [something]","placeholders":["a pencil sharpener","a pen"]}, +{"id":"55848","label":"taking a toy out of a box","template":"Taking [something] out of [something]","placeholders":["a toy","a box"]}, +{"id":"205301","label":"pretending to be tearing pen","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pen"]}, +{"id":"134683","label":"taking a clothespin out of a mug","template":"Taking [something] out of [something]","placeholders":["a clothespin","a mug"]}, +{"id":"29487","label":"failing to put cigarette pack into cup because cigarette pack does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["cigarette pack","cup","cigarette pack"]}, +{"id":"40861","label":"holding a lid next to a pot","template":"Holding [something] next to [something]","placeholders":["a lid","a pot"]}, +{"id":"220767","label":"squeezing pink toothbrush case","template":"Squeezing [something]","placeholders":["pink toothbrush case"]}, +{"id":"32993","label":"pushing mp3 player so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mp3 player"]}, +{"id":"53018","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"71619","label":"tilting a book with a measuring tape on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a measuring tape"]}, +{"id":"150440","label":"pretending to be tearing a cotton t-shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cotton t-shirt"]}, +{"id":"202536","label":"holding a watch in front of a mobile","template":"Holding [something] in front of [something]","placeholders":["a watch","a mobile"]}, +{"id":"54073","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"3619","label":"pushing black lipstick from left to right","template":"Pushing [something] from left to right","placeholders":["black lipstick"]}, +{"id":"137154","label":"pretending to take remote from table","template":"Pretending to take [something] from [somewhere]","placeholders":["remote","table"]}, +{"id":"125048","label":"a shampoo tube colliding with a comb and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a shampoo tube","a comb"]}, +{"id":"56156","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"169342","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"54657","label":"pushing pushing plastic spray from right to left from right to left","template":"Pushing [something] from right to left","placeholders":["pushing plastic spray from right to left"]}, +{"id":"70571","label":"squeezing flannel","template":"Squeezing [something]","placeholders":["flannel"]}, +{"id":"209016","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"8042","label":"folding jeans","template":"Folding [something]","placeholders":["jeans"]}, +{"id":"108315","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"105737","label":"pushing pillbox off of marlboro pack","template":"Pushing [something] off of [something]","placeholders":["pillbox","marlboro pack"]}, +{"id":"214111","label":"remote falling like a rock","template":"[Something] falling like a rock","placeholders":["remote"]}, +{"id":"38426","label":"showing paper bag behind cat toy","template":"Showing [something] behind [something]","placeholders":["paper bag","cat toy"]}, +{"id":"118419","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"41495","label":"showing knife to the camera","template":"Showing [something] to the camera","placeholders":["knife"]}, +{"id":"88187","label":"pulling two ends of a rope but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a rope"]}, +{"id":"37680","label":"pouring water into bucket until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","bucket"]}, +{"id":"145765","label":"holding spectacle box over cup","template":"Holding [something] over [something]","placeholders":["spectacle box","cup"]}, +{"id":"34931","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"86032","label":"putting glass upright on the table","template":"Putting [something] upright on the table","placeholders":["glass"]}, +{"id":"118166","label":"pushing heater component from right to left","template":"Pushing [something] from right to left","placeholders":["heater component"]}, +{"id":"14056","label":"pushing calculator from left to right","template":"Pushing [something] from left to right","placeholders":["calculator"]}, +{"id":"155351","label":"tearing candy wrapper into two pieces","template":"Tearing [something] into two pieces","placeholders":["candy wrapper"]}, +{"id":"32037","label":"pretending to poke a cup","template":"Pretending to poke [something]","placeholders":["a cup"]}, +{"id":"8740","label":"moving a doll and a doll so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a doll","a doll"]}, +{"id":"140042","label":"putting a spoon onto a pillow","template":"Putting [something] onto [something]","placeholders":["a spoon","a pillow"]}, +{"id":"62427","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"68352","label":"plugging headphones into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","laptop"]}, +{"id":"20683","label":"trying to bend spidol so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["spidol"]}, +{"id":"11143","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"208530","label":"moving wooden puppet across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["wooden puppet"]}, +{"id":"51308","label":"showing water bottle next to telephone","template":"Showing [something] next to [something]","placeholders":["water bottle","telephone"]}, +{"id":"197639","label":"holding sunglasses in front of box","template":"Holding [something] in front of [something]","placeholders":["sunglasses","box"]}, +{"id":"119971","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"83303","label":"poking a monitor so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a monitor"]}, +{"id":"12738","label":"pushing a wallet from right to left","template":"Pushing [something] from right to left","placeholders":["a wallet"]}, +{"id":"144470","label":"pushing a bottle from right to left","template":"Pushing [something] from right to left","placeholders":["a bottle"]}, +{"id":"116117","label":"failing to put a bottle into a vase because the bottle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bottle","a vase","the bottle"]}, +{"id":"108357","label":"spinning comb so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["comb"]}, +{"id":"193842","label":"turning a bowl upside down","template":"Turning [something] upside down","placeholders":["a bowl"]}, +{"id":"89214","label":"pretending to pick nail polish up","template":"Pretending to pick [something] up","placeholders":["nail polish"]}, +{"id":"218349","label":"moving a peace of paper across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a peace of paper"]}, +{"id":"123833","label":"putting lidded cup into container","template":"Putting [something] into [something]","placeholders":["lidded cup","container"]}, +{"id":"116984","label":"tilting a notebook with keys on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","keys"]}, +{"id":"24155","label":"laying a glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glass"]}, +{"id":"169507","label":"twisting a sock","template":"Twisting [something]","placeholders":["a sock"]}, +{"id":"111092","label":"picking a bottle up","template":"Picking [something] up","placeholders":["a bottle"]}, +{"id":"97369","label":"putting postit into cup","template":"Putting [something] into [something]","placeholders":["postit","cup"]}, +{"id":"77068","label":"moving candle and mug so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["candle","mug"]}, +{"id":"94183","label":"moving a calculator towards the camera","template":"Moving [something] towards the camera","placeholders":["a calculator"]}, +{"id":"147600","label":"dropping a spoon into a bowl","template":"Dropping [something] into [something]","placeholders":["a spoon","a bowl"]}, +{"id":"169688","label":"poking a hole into mattress","template":"Poking a hole into [something soft]","placeholders":["mattress"]}, +{"id":"119679","label":"pushing salt onto plate","template":"Pushing [something] onto [something]","placeholders":["salt","plate"]}, +{"id":"24781","label":"opening side view mirror","template":"Opening [something]","placeholders":["side view mirror"]}, +{"id":"108505","label":"taking one of many coins on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many coins on the table"]}, +{"id":"190668","label":"covering a mug with a piece of paper","template":"Covering [something] with [something]","placeholders":["a mug","a piece of paper"]}, +{"id":"212697","label":"lifting a surface with glass on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["glass"]}, +{"id":"194731","label":"turning the camera right while filming ball","template":"Turning the camera right while filming [something]","placeholders":["ball"]}, +{"id":"104347","label":"spinning teacup that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["teacup"]}, +{"id":"205710","label":"putting plant on a surface","template":"Putting [something] on a surface","placeholders":["plant"]}, +{"id":"74522","label":"bending green bean until it breaks","template":"Bending [something] until it breaks","placeholders":["green bean"]}, +{"id":"102896","label":"bending twist tie so that it deforms","template":"Bending [something] so that it deforms","placeholders":["twist tie"]}, +{"id":"206950","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"64129","label":"moving arm of glasses","template":"Moving [part] of [something]","placeholders":["arm","glasses"]}, +{"id":"187904","label":"wiping water off of a bench","template":"Wiping [something] off of [something]","placeholders":["water","a bench"]}, +{"id":"36935","label":"pretending to take sunglasses out of box","template":"Pretending to take [something] out of [something]","placeholders":["sunglasses","box"]}, +{"id":"169515","label":"spinning the bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["the bottle"]}, +{"id":"195213","label":"lifting mobile phone up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["mobile phone"]}, +{"id":"6107","label":"turning the camera right while filming motor bike","template":"Turning the camera right while filming [something]","placeholders":["motor bike"]}, +{"id":"88128","label":"poking a water bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a water bottle"]}, +{"id":"35037","label":"removing bag, revealing glasses behind","template":"Removing [something], revealing [something] behind","placeholders":["bag","glasses"]}, +{"id":"57685","label":"spilling water onto sink","template":"Spilling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"80221","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"106786","label":"dropping a comb in front of a container","template":"Dropping [something] in front of [something]","placeholders":["a comb","a container"]}, +{"id":"147885","label":"throwing earrings in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["earrings"]}, +{"id":"112889","label":"lifting a towel up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a towel"]}, +{"id":"78265","label":"holding torch over bottle","template":"Holding [something] over [something]","placeholders":["torch","bottle"]}, +{"id":"11193","label":"moving knife down","template":"Moving [something] down","placeholders":["knife"]}, +{"id":"66983","label":"holding a letter opener over a cloth","template":"Holding [something] over [something]","placeholders":["a letter opener","a cloth"]}, +{"id":"23455","label":"attaching a hose to a spirometer","template":"Attaching [something] to [something]","placeholders":["a hose","a spirometer"]}, +{"id":"152849","label":"throwing sponge","template":"Throwing [something]","placeholders":["sponge"]}, +{"id":"203640","label":"pretending to take a bottle of shampoo from a table","template":"Pretending to take [something] from [somewhere]","placeholders":["a bottle of shampoo","a table"]}, +{"id":"15345","label":"pretending to pick mouse up","template":"Pretending to pick [something] up","placeholders":["mouse"]}, +{"id":"6010","label":"uncovering cow","template":"Uncovering [something]","placeholders":["cow"]}, +{"id":"212602","label":"dropping pen in front of my leg","template":"Dropping [something] in front of [something]","placeholders":["pen","my leg"]}, +{"id":"56518","label":"taking helmet from ground","template":"Taking [something] from [somewhere]","placeholders":["helmet","ground"]}, +{"id":"100767","label":"dropping balled up paper onto counter","template":"Dropping [something] onto [something]","placeholders":["balled up paper","counter"]}, +{"id":"131135","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"2659","label":"pushing small bin off of large bin","template":"Pushing [something] off of [something]","placeholders":["small bin","large bin"]}, +{"id":"53781","label":"folding a tiny scarf","template":"Folding [something]","placeholders":["a tiny scarf"]}, +{"id":"32250","label":"lighter colliding with control and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["lighter","control"]}, +{"id":"216856","label":"putting 2 hair clips onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair clips","black pouch"]}, +{"id":"160836","label":"dropping folded napkin into cup","template":"Dropping [something] into [something]","placeholders":["folded napkin","cup"]}, +{"id":"128086","label":"spinning bottlecap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottlecap"]}, +{"id":"138353","label":"a small bottlr being deflected from a lock","template":"[Something] being deflected from [something]","placeholders":["a small bottlr","a lock"]}, +{"id":"69512","label":"putting marker pen and tubelight relay on the table","template":"Putting [something] and [something] on the table","placeholders":["marker pen","tubelight relay"]}, +{"id":"82701","label":"pretending to open notepad without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notepad"]}, +{"id":"206294","label":"holding a lighter","template":"Holding [something]","placeholders":["a lighter"]}, +{"id":"163163","label":"wiping gummy off of stool","template":"Wiping [something] off of [something]","placeholders":["gummy","stool"]}, +{"id":"190946","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"173535","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"129246","label":"uncovering tool","template":"Uncovering [something]","placeholders":["tool"]}, +{"id":"183894","label":"pretending to scoop liquid up with tablespoon","template":"Pretending to scoop [something] up with [something]","placeholders":["liquid","tablespoon"]}, +{"id":"174397","label":"moving remote and water bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["remote","water bottle"]}, +{"id":"139879","label":"showing pen behind box","template":"Showing [something] behind [something]","placeholders":["pen","box"]}, +{"id":"145046","label":"holding mail behind tv","template":"Holding [something] behind [something]","placeholders":["mail","tv"]}, +{"id":"15762","label":"tilting folder with liner on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder","liner"]}, +{"id":"6976","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"176713","label":"wiping water off of glass","template":"Wiping [something] off of [something]","placeholders":["water","glass"]}, +{"id":"9740","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"157457","label":"pretending to put box on a surface","template":"Pretending to put [something] on a surface","placeholders":["box"]}, +{"id":"212315","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"217353","label":"opening something","template":"Opening [something]","placeholders":["something"]}, +{"id":"70366","label":"moving paper weight up","template":"Moving [something] up","placeholders":["paper weight"]}, +{"id":"130901","label":"spinning place mat so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["place mat"]}, +{"id":"200043","label":"pretending to pick make-up container up","template":"Pretending to pick [something] up","placeholders":["make-up container"]}, +{"id":"64347","label":"pushing black play cards so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["black play cards"]}, +{"id":"127619","label":"tilting plan sheet with rubber on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plan sheet","rubber"]}, +{"id":"211490","label":"putting stuffed bear that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stuffed bear"]}, +{"id":"125970","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"128561","label":"throwing object","template":"Throwing [something]","placeholders":["object"]}, +{"id":"111502","label":"taking diaper","template":"Taking [one of many similar things on the table]","placeholders":["diaper"]}, +{"id":"191640","label":"pretending to poke audio helmet","template":"Pretending to poke [something]","placeholders":["audio helmet"]}, +{"id":"97370","label":"poking charger so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["charger"]}, +{"id":"79041","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"2417","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"36138","label":"pulling two ends of a claw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a claw"]}, +{"id":"145858","label":"spreading toothpaste onto toothbrush","template":"Spreading [something] onto [something]","placeholders":["toothpaste","toothbrush"]}, +{"id":"95700","label":"moving a shoe and a cat brush closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a shoe","a cat brush"]}, +{"id":"6389","label":"pretending to put bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottle"]}, +{"id":"204891","label":"pretending to be tearing a card","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a card"]}, +{"id":"62579","label":"rolling battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["battery"]}, +{"id":"1241","label":"taking one of candy packs","template":"Taking [one of many similar things on the table]","placeholders":["one of candy packs"]}, +{"id":"183134","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"115391","label":"twisting a jumper","template":"Twisting [something]","placeholders":["a jumper"]}, +{"id":"33288","label":"spinning sponge ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["sponge ball"]}, +{"id":"155620","label":"tearing paper sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper sheet"]}, +{"id":"58989","label":"showing box next to pen","template":"Showing [something] next to [something]","placeholders":["box","pen"]}, +{"id":"218231","label":"rolling can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["can"]}, +{"id":"189493","label":"pouring water out of glass","template":"Pouring [something] out of [something]","placeholders":["water","glass"]}, +{"id":"23123","label":"attaching a post-it to a monitor","template":"Attaching [something] to [something]","placeholders":["a post-it","a monitor"]}, +{"id":"89442","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"82690","label":"moving flashlight and glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["flashlight","glass"]}, +{"id":"148354","label":"pretending to put marker into mug","template":"Pretending to put [something] into [something]","placeholders":["marker","mug"]}, +{"id":"212161","label":"uncovering sketch book","template":"Uncovering [something]","placeholders":["sketch book"]}, +{"id":"161086","label":"moving a monkey figure and a monkey figure closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a monkey figure","a monkey figure"]}, +{"id":"203659","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"202184","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"108661","label":"tilting bin with container on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bin","container"]}, +{"id":"209430","label":"a comb colliding with another comb and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a comb","another comb"]}, +{"id":"83567","label":"trying to pour some grains into a glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["some grains","a glass"]}, +{"id":"101977","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"131849","label":"moving bottle and ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["bottle","ball"]}, +{"id":"201504","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"22324","label":"poking sponge so that it falls over","template":"Poking [something] so that it falls over","placeholders":["sponge"]}, +{"id":"75976","label":"plugging power cord into power board","template":"Plugging [something] into [something]","placeholders":["power cord","power board"]}, +{"id":"76073","label":"lifting up one end of envelope, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["envelope"]}, +{"id":"52058","label":"pretending to pick book up","template":"Pretending to pick [something] up","placeholders":["book"]}, +{"id":"27479","label":"uncovering whiteboard marker","template":"Uncovering [something]","placeholders":["whiteboard marker"]}, +{"id":"92909","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"216055","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"89811","label":"pushing envelope box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["envelope box"]}, +{"id":"217404","label":"moving notebook down","template":"Moving [something] down","placeholders":["notebook"]}, +{"id":"128813","label":"closing gate","template":"Closing [something]","placeholders":["gate"]}, +{"id":"150380","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"213378","label":"pulling a game out of an envelope","template":"Pulling [something] out of [something]","placeholders":["a game","an envelope"]}, +{"id":"84230","label":"rolling tablet box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tablet box"]}, +{"id":"206408","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"66269","label":"covering cell phone with envelope","template":"Covering [something] with [something]","placeholders":["cell phone","envelope"]}, +{"id":"138244","label":"putting a figurine upright on the table","template":"Putting [something] upright on the table","placeholders":["a figurine"]}, +{"id":"200366","label":"showing that yellow ball is inside cookie box","template":"Showing that [something] is inside [something]","placeholders":["yellow ball","cookie box"]}, +{"id":"184211","label":"opening pencilbox","template":"Opening [something]","placeholders":["pencilbox"]}, +{"id":"32751","label":"pushing brown bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["brown bottle"]}, +{"id":"175586","label":"pushing iron onto board","template":"Pushing [something] onto [something]","placeholders":["iron","board"]}, +{"id":"112121","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"106317","label":"squeezing pig","template":"Squeezing [something]","placeholders":["pig"]}, +{"id":"7627","label":"dropping ice into a cup","template":"Dropping [something] into [something]","placeholders":["ice","a cup"]}, +{"id":"209874","label":"pushing spanner with screw driver","template":"Pushing [something] with [something]","placeholders":["spanner","screw driver"]}, +{"id":"138894","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"127985","label":"spinning lid that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lid"]}, +{"id":"120887","label":"plugging an audio cable into headphones but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["an audio cable","headphones"]}, +{"id":"80814","label":"putting tin into cup","template":"Putting [something] into [something]","placeholders":["tin","cup"]}, +{"id":"6973","label":"taking coins (pennies)","template":"Taking [one of many similar things on the table]","placeholders":["coins (pennies)"]}, +{"id":"91802","label":"taking a remote","template":"Taking [one of many similar things on the table]","placeholders":["a remote"]}, +{"id":"197389","label":"putting a water bottle back","template":"Putting [something similar to other things that are already on the table]","placeholders":["a water bottle back"]}, +{"id":"139760","label":"moving ring away from the earing","template":"Moving [something] away from [something]","placeholders":["ring","the earing"]}, +{"id":"61881","label":"turning the camera left while filming bb-8 cup","template":"Turning the camera left while filming [something]","placeholders":["bb-8 cup"]}, +{"id":"61982","label":"moving glass canister and glass canister closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass canister","glass canister"]}, +{"id":"59379","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"202235","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"97009","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"83304","label":"plugging charger into a plug","template":"Plugging [something] into [something]","placeholders":["charger","a plug"]}, +{"id":"46005","label":"taking coloured pen","template":"Taking [one of many similar things on the table]","placeholders":["coloured pen"]}, +{"id":"60719","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"201616","label":"taking marker","template":"Taking [one of many similar things on the table]","placeholders":["marker"]}, +{"id":"181896","label":"plugging a cord into a wall","template":"Plugging [something] into [something]","placeholders":["a cord","a wall"]}, +{"id":"142062","label":"plugging usb data cable into usb slot","template":"Plugging [something] into [something]","placeholders":["usb data cable","usb slot"]}, +{"id":"201509","label":"dropping book onto shoe box","template":"Dropping [something] onto [something]","placeholders":["book","shoe box"]}, +{"id":"88103","label":"moving a remote control and a pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a remote control","a pen"]}, +{"id":"123668","label":"holding cell phone over water bottle","template":"Holding [something] over [something]","placeholders":["cell phone","water bottle"]}, +{"id":"220373","label":"tilting hat with purse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["hat","purse"]}, +{"id":"169102","label":"laying a lighter on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a lighter"]}, +{"id":"109131","label":"showing glass behind apple","template":"Showing [something] behind [something]","placeholders":["glass","apple"]}, +{"id":"50975","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"43184","label":"touching (without moving) part of scissors","template":"Touching (without moving) [part] of [something]","placeholders":["part","scissors"]}, +{"id":"143272","label":"lifting a wallet up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wallet"]}, +{"id":"158390","label":"lifting scissors up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["scissors"]}, +{"id":"199119","label":"putting beer bottle on a surface","template":"Putting [something] on a surface","placeholders":["beer bottle"]}, +{"id":"31874","label":"lifting music player with coin on it","template":"Lifting [something] with [something] on it","placeholders":["music player","coin"]}, +{"id":"42212","label":"turning the camera upwards while filming picture","template":"Turning the camera upwards while filming [something]","placeholders":["picture"]}, +{"id":"87206","label":"moving hand sanitizer across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["hand sanitizer"]}, +{"id":"72183","label":"taking file out of almirah","template":"Taking [something] out of [something]","placeholders":["file","almirah"]}, +{"id":"79071","label":"twisting off a bottle cap","template":"Twisting [something]","placeholders":["off a bottle cap"]}, +{"id":"166855","label":"showing a spray-paint can behind a keyboard","template":"Showing [something] behind [something]","placeholders":["a spray-paint can","a keyboard"]}, +{"id":"190027","label":"plugging a usb to micro-usb cord into a wall adapter","template":"Plugging [something] into [something]","placeholders":["a usb to micro-usb cord","a wall adapter"]}, +{"id":"73133","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"79097","label":"taking flowers","template":"Taking [one of many similar things on the table]","placeholders":["flowers"]}, +{"id":"77732","label":"plastic-paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic-paper"]}, +{"id":"125253","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"141783","label":"showing tape on top of box","template":"Showing [something] on top of [something]","placeholders":["tape","box"]}, +{"id":"160912","label":"pulling two ends of metal ruler but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["metal ruler"]}, +{"id":"17933","label":"pushing white deodorant from left to right","template":"Pushing [something] from left to right","placeholders":["white deodorant"]}, +{"id":"216540","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"144803","label":"showing a photo of man to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man"]}, +{"id":"85715","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"45087","label":"holding tweezers next to mouthwash","template":"Holding [something] next to [something]","placeholders":["tweezers","mouthwash"]}, +{"id":"65485","label":"plugging juice machine into electric socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["juice machine","electric socket"]}, +{"id":"76825","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"219473","label":"holding bottle behind sunglasses","template":"Holding [something] behind [something]","placeholders":["bottle","sunglasses"]}, +{"id":"202581","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"100253","label":"covering feuerzeug with papier","template":"Covering [something] with [something]","placeholders":["feuerzeug","papier"]}, +{"id":"67856","label":"putting a pen next to a pen","template":"Putting [something] next to [something]","placeholders":["a pen","a pen"]}, +{"id":"82068","label":"pretending or failing to wipe lotion off of a tablet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["lotion","a tablet"]}, +{"id":"12139","label":"uncovering toothbrushes","template":"Uncovering [something]","placeholders":["toothbrushes"]}, +{"id":"156898","label":"squeezing a staff toy","template":"Squeezing [something]","placeholders":["a staff toy"]}, +{"id":"157935","label":"taking fluorescent light bulb out of mug","template":"Taking [something] out of [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"15661","label":"spreading vegetables onto a vessel","template":"Spreading [something] onto [something]","placeholders":["vegetables","a vessel"]}, +{"id":"50974","label":"stuffing book into box","template":"Stuffing [something] into [something]","placeholders":["book","box"]}, +{"id":"83262","label":"moving book and phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["book","phone"]}, +{"id":"84359","label":"pulling two ends of a box of cards but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a box of cards"]}, +{"id":"123836","label":"stuffing a pillow into a pillow case","template":"Stuffing [something] into [something]","placeholders":["a pillow","a pillow case"]}, +{"id":"151294","label":"covering keyboard with clothes","template":"Covering [something] with [something]","placeholders":["keyboard","clothes"]}, +{"id":"212966","label":"holding keys in front of bag","template":"Holding [something] in front of [something]","placeholders":["keys","bag"]}, +{"id":"78303","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"109256","label":"pulling colorful scarf from left to right","template":"Pulling [something] from left to right","placeholders":["colorful scarf"]}, +{"id":"214988","label":"pushing wallet from right to left","template":"Pushing [something] from right to left","placeholders":["wallet"]}, +{"id":"182252","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"105275","label":"plugging stove cord into wall","template":"Plugging [something] into [something]","placeholders":["stove cord","wall"]}, +{"id":"157211","label":"moving away from wardrobe with your camera","template":"Moving away from [something] with your camera","placeholders":["wardrobe"]}, +{"id":"3659","label":"hitting a toaster oven with an egg whisk","template":"Hitting [something] with [something]","placeholders":["a toaster oven","an egg whisk"]}, +{"id":"139227","label":"holding a coin over a box","template":"Holding [something] over [something]","placeholders":["a coin","a box"]}, +{"id":"196811","label":"putting tape, ball and helmet on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["tape","ball","helmet"]}, +{"id":"139577","label":"putting pen into holder","template":"Putting [something] into [something]","placeholders":["pen","holder"]}, +{"id":"141856","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"21812","label":"holding bottle over trash can","template":"Holding [something] over [something]","placeholders":["bottle","trash can"]}, +{"id":"122269","label":"putting chocolate next to other chocolates","template":"Putting [something similar to other things that are already on the table]","placeholders":["chocolate next to other chocolates"]}, +{"id":"120355","label":"uncovering battery","template":"Uncovering [something]","placeholders":["battery"]}, +{"id":"180330","label":"lifting up one end of laptop without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["laptop"]}, +{"id":"216558","label":"showing laboratory material on top of a table","template":"Showing [something] on top of [something]","placeholders":["laboratory material","a table"]}, +{"id":"66070","label":"spilling water onto envelope","template":"Spilling [something] onto [something]","placeholders":["water","envelope"]}, +{"id":"132373","label":"tilting dumptruck bed with legos on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["dumptruck bed","legos"]}, +{"id":"215876","label":"dropping envelopes onto a chair","template":"Dropping [something] onto [something]","placeholders":["envelopes","a chair"]}, +{"id":"171441","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"201176","label":"burying pocket bible in blanket","template":"Burying [something] in [something]","placeholders":["pocket bible","blanket"]}, +{"id":"139070","label":"pushing scissors from left to right","template":"Pushing [something] from left to right","placeholders":["scissors"]}, +{"id":"205013","label":"pulling a book from right to left","template":"Pulling [something] from right to left","placeholders":["a book"]}, +{"id":"141056","label":"pulling backpack onto table","template":"Pulling [something] onto [something]","placeholders":["backpack","table"]}, +{"id":"83064","label":"holding sock in front of small pillow","template":"Holding [something] in front of [something]","placeholders":["sock","small pillow"]}, +{"id":"192020","label":"turning container upside down","template":"Turning [something] upside down","placeholders":["container"]}, +{"id":"7769","label":"throwing an apple","template":"Throwing [something]","placeholders":["an apple"]}, +{"id":"191452","label":"pushing sunglasses so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["sunglasses"]}, +{"id":"115729","label":"holding two box","template":"Holding [something]","placeholders":["two box"]}, +{"id":"183847","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"174205","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"139317","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"79473","label":"tearing flower into two pieces","template":"Tearing [something] into two pieces","placeholders":["flower"]}, +{"id":"2022","label":"pushing lighter from right to left","template":"Pushing [something] from right to left","placeholders":["lighter"]}, +{"id":"86088","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"157810","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"160076","label":"opening stein lid","template":"Opening [something]","placeholders":["stein lid"]}, +{"id":"87580","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"65677","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"155138","label":"putting a cord into an outlet","template":"Putting [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"13124","label":"putting comb next to remote control","template":"Putting [something] next to [something]","placeholders":["comb","remote control"]}, +{"id":"121899","label":"putting paper on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["paper","table"]}, +{"id":"67126","label":"twisting nail polish cap","template":"Twisting [something]","placeholders":["nail polish cap"]}, +{"id":"128649","label":"holding spoon next to fork","template":"Holding [something] next to [something]","placeholders":["spoon","fork"]}, +{"id":"177083","label":"squeezing tube","template":"Squeezing [something]","placeholders":["tube"]}, +{"id":"63501","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"87014","label":"putting highlighter on the edge of desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["highlighter","desk"]}, +{"id":"17220","label":"soda can being deflected from jug","template":"[Something] being deflected from [something]","placeholders":["soda can","jug"]}, +{"id":"218819","label":"pushing pink toothbrush case from right to left","template":"Pushing [something] from right to left","placeholders":["pink toothbrush case"]}, +{"id":"98671","label":"poking a stack of shoes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["shoes"]}, +{"id":"83415","label":"moving phone closer to glasses","template":"Moving [something] closer to [something]","placeholders":["phone","glasses"]}, +{"id":"22851","label":"tipping plastic cup over","template":"Tipping [something] over","placeholders":["plastic cup"]}, +{"id":"50434","label":"trying to pour water into plastic case, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","plastic case"]}, +{"id":"123909","label":"pushing hat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hat"]}, +{"id":"37420","label":"pushing shoe so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe"]}, +{"id":"217280","label":"turning a plastic bottle upside down","template":"Turning [something] upside down","placeholders":["a plastic bottle"]}, +{"id":"208665","label":"putting stone onto stool","template":"Putting [something] onto [something]","placeholders":["stone","stool"]}, +{"id":"181291","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"125396","label":"wiping dirt off of a chair","template":"Wiping [something] off of [something]","placeholders":["dirt","a chair"]}, +{"id":"51189","label":"pushing glue stick from left to right","template":"Pushing [something] from left to right","placeholders":["glue stick"]}, +{"id":"113254","label":"letting lipstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipstick"]}, +{"id":"126230","label":"stuffing a pillow into a case","template":"Stuffing [something] into [something]","placeholders":["a pillow","a case"]}, +{"id":"118682","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"89924","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"210586","label":"pretending to open a dishsoap container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a dishsoap container"]}, +{"id":"47979","label":"poking a card reader so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a card reader"]}, +{"id":"216407","label":"poking a candle holder so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle holder"]}, +{"id":"144763","label":"putting metal next to bowl","template":"Putting [something] next to [something]","placeholders":["metal","bowl"]}, +{"id":"111358","label":"holding gogals over mobile","template":"Holding [something] over [something]","placeholders":["gogals","mobile"]}, +{"id":"175560","label":"moving plastic cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["plastic cup"]}, +{"id":"72810","label":"unfolding a sheet of paper","template":"Unfolding [something]","placeholders":["a sheet of paper"]}, +{"id":"203314","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"175924","label":"lifting eyeglass case with clip on it","template":"Lifting [something] with [something] on it","placeholders":["eyeglass case","clip"]}, +{"id":"185108","label":"moving marker pen away from the camera","template":"Moving [something] away from the camera","placeholders":["marker pen"]}, +{"id":"118934","label":"trying to bend samsung s5 so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["samsung s5"]}, +{"id":"11881","label":"putting 2 hair bands onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bands","red pouch"]}, +{"id":"60583","label":"taking oranges","template":"Taking [one of many similar things on the table]","placeholders":["oranges"]}, +{"id":"218316","label":"holding lid over pot","template":"Holding [something] over [something]","placeholders":["lid","pot"]}, +{"id":"47335","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"144004","label":"holding remote in front of tv","template":"Holding [something] in front of [something]","placeholders":["remote","tv"]}, +{"id":"183131","label":"pushing green bowl from right to left","template":"Pushing [something] from right to left","placeholders":["green bowl"]}, +{"id":"112178","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"167536","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"38232","label":"burying a clothes peg in sand","template":"Burying [something] in [something]","placeholders":["a clothes peg","sand"]}, +{"id":"139106","label":"closing paint bottle","template":"Closing [something]","placeholders":["paint bottle"]}, +{"id":"3629","label":"turning the camera upwards while filming smart phone","template":"Turning the camera upwards while filming [something]","placeholders":["smart phone"]}, +{"id":"174333","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"144303","label":"touching (without moving) a wallet of a table","template":"Touching (without moving) [part] of [something]","placeholders":["a wallet","a table"]}, +{"id":"49396","label":"pretending to open mug without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["mug"]}, +{"id":"62545","label":"taking cube from plastic box","template":"Taking [something] from [somewhere]","placeholders":["cube","plastic box"]}, +{"id":"44413","label":"poking can so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["can"]}, +{"id":"43796","label":"moving a cell phone and a pendrive closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cell phone","a pendrive"]}, +{"id":"175736","label":"moving fork and knife closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","knife"]}, +{"id":"44024","label":"putting a nail cutter upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a nail cutter"]}, +{"id":"211702","label":"showing that plastic glass is empty","template":"Showing that [something] is empty","placeholders":["plastic glass"]}, +{"id":"218097","label":"tilting paper with rule on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper","rule"]}, +{"id":"115721","label":"showing a photo of a mouse to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a mouse"]}, +{"id":"157330","label":"covering bottle with big bottle","template":"Covering [something] with [something]","placeholders":["bottle","big bottle"]}, +{"id":"206521","label":"scooping rice up with spoon","template":"Scooping [something] up with [something]","placeholders":["rice","spoon"]}, +{"id":"112665","label":"putting pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["pen"]}, +{"id":"33210","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"175642","label":"uncovering spoon","template":"Uncovering [something]","placeholders":["spoon"]}, +{"id":"343","label":"tilting book with glass on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","glass"]}, +{"id":"56241","label":"plugging a plug into the wall","template":"Plugging [something] into [something]","placeholders":["a plug","the wall"]}, +{"id":"201792","label":"wiping butter off of plate","template":"Wiping [something] off of [something]","placeholders":["butter","plate"]}, +{"id":"105493","label":"lifting lotion container with pen on it","template":"Lifting [something] with [something] on it","placeholders":["lotion container","pen"]}, +{"id":"166294","label":"putting battery upright on the table","template":"Putting [something] upright on the table","placeholders":["battery"]}, +{"id":"96234","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"34830","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150272","label":"pushing a cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a cup"]}, +{"id":"181209","label":"moving toy closer to spectical box","template":"Moving [something] closer to [something]","placeholders":["toy","spectical box"]}, +{"id":"131666","label":"showing that toy idol is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["toy idol","green bowl"]}, +{"id":"1502","label":"throwing remote control","template":"Throwing [something]","placeholders":["remote control"]}, +{"id":"159438","label":"taking one of many pens","template":"Taking [one of many similar things on the table]","placeholders":["one of many pens"]}, +{"id":"152497","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"180089","label":"moving a phone and a tablet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a phone","a tablet"]}, +{"id":"126896","label":"attaching pen to receipt book","template":"Attaching [something] to [something]","placeholders":["pen","receipt book"]}, +{"id":"64908","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"161398","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"215797","label":"moving a cat figure and a dog figure closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cat figure","a dog figure"]}, +{"id":"190824","label":"sprinkling sugar onto table","template":"Sprinkling [something] onto [something]","placeholders":["sugar","table"]}, +{"id":"44895","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"13147","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"191418","label":"opening purse","template":"Opening [something]","placeholders":["purse"]}, +{"id":"165397","label":"moving duster away from the camera","template":"Moving [something] away from the camera","placeholders":["duster"]}, +{"id":"204196","label":"pretending to put orange onto notebook","template":"Pretending to put [something] onto [something]","placeholders":["orange","notebook"]}, +{"id":"109733","label":"putting oil container","template":"Putting [something similar to other things that are already on the table]","placeholders":["oil container"]}, +{"id":"153700","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"80885","label":"hitting a toy with a toy","template":"Hitting [something] with [something]","placeholders":["a toy","a toy"]}, +{"id":"40485","label":"pushing stick so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stick"]}, +{"id":"89248","label":"holding remote behind pillow","template":"Holding [something] behind [something]","placeholders":["remote","pillow"]}, +{"id":"26433","label":"squeezing a soft ball","template":"Squeezing [something]","placeholders":["a soft ball"]}, +{"id":"26852","label":"moving card down","template":"Moving [something] down","placeholders":["card"]}, +{"id":"122418","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"10108","label":"turning turning bottles water upside down upside down","template":"Turning [something] upside down","placeholders":["turning bottles water upside down"]}, +{"id":"80820","label":"pushing soft tissue roll from left to right","template":"Pushing [something] from left to right","placeholders":["soft tissue roll"]}, +{"id":"176716","label":"moving wooden stick down","template":"Moving [something] down","placeholders":["wooden stick"]}, +{"id":"139197","label":"tilting black file with marker pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","marker pen"]}, +{"id":"115011","label":"moving away from bismuth with your camera","template":"Moving away from [something] with your camera","placeholders":["bismuth"]}, +{"id":"167549","label":"pushing a table so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a table"]}, +{"id":"92197","label":"holding cookbook","template":"Holding [something]","placeholders":["cookbook"]}, +{"id":"102791","label":"closing freezer","template":"Closing [something]","placeholders":["freezer"]}, +{"id":"94572","label":"pouring sand into cup","template":"Pouring [something] into [something]","placeholders":["sand","cup"]}, +{"id":"85114","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"110601","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"100452","label":"stacking 5 blocks","template":"Stacking [number of] [something]","placeholders":["5","blocks"]}, +{"id":"89456","label":"poking plate so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["plate"]}, +{"id":"91409","label":"putting fruit","template":"Putting [something similar to other things that are already on the table]","placeholders":["fruit"]}, +{"id":"214690","label":"pulling two ends of a peace of bread but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a peace of bread"]}, +{"id":"73057","label":"stuffing towel into glass","template":"Stuffing [something] into [something]","placeholders":["towel","glass"]}, +{"id":"205113","label":"moving away from a sandbax with your camera","template":"Moving away from [something] with your camera","placeholders":["a sandbax"]}, +{"id":"24137","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"123975","label":"attaching a sticky note to a sheet of paper","template":"Attaching [something] to [something]","placeholders":["a sticky note","a sheet of paper"]}, +{"id":"50796","label":"taking a tablet out of bottle","template":"Taking [something] out of [something]","placeholders":["a tablet","bottle"]}, +{"id":"138389","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"7369","label":"pushing toy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["toy"]}, +{"id":"73233","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"217426","label":"plugging headphones into laptop","template":"Plugging [something] into [something]","placeholders":["headphones","laptop"]}, +{"id":"199086","label":"turning the camera right while filming hair comb","template":"Turning the camera right while filming [something]","placeholders":["hair comb"]}, +{"id":"103284","label":"unfolding blanket","template":"Unfolding [something]","placeholders":["blanket"]}, +{"id":"156751","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"107504","label":"pretending to open notebook without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notebook"]}, +{"id":"131324","label":"pushing a salt shaker so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a salt shaker"]}, +{"id":"82695","label":"picking pen up","template":"Picking [something] up","placeholders":["pen"]}, +{"id":"23393","label":"pulling two ends of crocheted yarn so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["crocheted yarn"]}, +{"id":"89832","label":"attaching lid to bottle","template":"Attaching [something] to [something]","placeholders":["lid","bottle"]}, +{"id":"87615","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"68182","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"7651","label":"pretending to spread air onto graham cracker","template":"Pretending to spread air onto [something]","placeholders":["graham cracker"]}, +{"id":"180358","label":"poking garbage can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["garbage can"]}, +{"id":"38808","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"140913","label":"pulling two ends of cotton ball so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cotton ball"]}, +{"id":"29698","label":"poking a container so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a container"]}, +{"id":"43316","label":"moving rubix cube away from the camera","template":"Moving [something] away from the camera","placeholders":["rubix cube"]}, +{"id":"176209","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"881","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"127704","label":"taking one rubber band of many similar rubber bands on the table","template":"Taking [one of many similar things on the table]","placeholders":["one rubber band of many similar rubber bands on the table"]}, +{"id":"18224","label":"stuffing cloth rags into plastic cup","template":"Stuffing [something] into [something]","placeholders":["cloth rags","plastic cup"]}, +{"id":"64282","label":"putting pen onto cup","template":"Putting [something] onto [something]","placeholders":["pen","cup"]}, +{"id":"114755","label":"scooping sheet up with pizza cutter","template":"Scooping [something] up with [something]","placeholders":["sheet","pizza cutter"]}, +{"id":"76441","label":"hitting pillow with bottle","template":"Hitting [something] with [something]","placeholders":["pillow","bottle"]}, +{"id":"155249","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"61250","label":"holding watch in front of mouse","template":"Holding [something] in front of [something]","placeholders":["watch","mouse"]}, +{"id":"63281","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"2352","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"205562","label":"uncovering cell phone charger","template":"Uncovering [something]","placeholders":["cell phone charger"]}, +{"id":"150255","label":"showing toy on top of table","template":"Showing [something] on top of [something]","placeholders":["toy","table"]}, +{"id":"70820","label":"throwing clementine in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["clementine"]}, +{"id":"176755","label":"putting a pen and a water bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["a pen","a water bottle"]}, +{"id":"102308","label":"moving cup closer to box","template":"Moving [something] closer to [something]","placeholders":["cup","box"]}, +{"id":"24462","label":"showing that oil is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["oil","bottle"]}, +{"id":"134581","label":"tipping glue bottle over","template":"Tipping [something] over","placeholders":["glue bottle"]}, +{"id":"113790","label":"moving paper and cellphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper","cellphone"]}, +{"id":"115622","label":"pushing a handkerchief so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a handkerchief"]}, +{"id":"40152","label":"bending small envelope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["small envelope"]}, +{"id":"182489","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"21912","label":"putting pen into box","template":"Putting [something] into [something]","placeholders":["pen","box"]}, +{"id":"87965","label":"putting a watch","template":"Putting [something similar to other things that are already on the table]","placeholders":["a watch"]}, +{"id":"56944","label":"pulling beads from left to right","template":"Pulling [something] from left to right","placeholders":["beads"]}, +{"id":"50321","label":"moving car key towards the camera","template":"Moving [something] towards the camera","placeholders":["car key"]}, +{"id":"19086","label":"throwing pillow against wall","template":"Throwing [something] against [something]","placeholders":["pillow","wall"]}, +{"id":"198540","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"29559","label":"stuffing cube into dish","template":"Stuffing [something] into [something]","placeholders":["cube","dish"]}, +{"id":"189827","label":"laying a computer mouse on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a computer mouse"]}, +{"id":"160870","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"92356","label":"hitting books with remote","template":"Hitting [something] with [something]","placeholders":["books","remote"]}, +{"id":"78978","label":"hitting wall with tape","template":"Hitting [something] with [something]","placeholders":["wall","tape"]}, +{"id":"131089","label":"cotton falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cotton"]}, +{"id":"183276","label":"tipping shot glass over","template":"Tipping [something] over","placeholders":["shot glass"]}, +{"id":"189156","label":"stuffing handkerchief into box","template":"Stuffing [something] into [something]","placeholders":["handkerchief","box"]}, +{"id":"28947","label":"stuffing gift into of plastic egg","template":"Stuffing [something] into [something]","placeholders":["gift","of plastic egg"]}, +{"id":"123","label":"picking brush up","template":"Picking [something] up","placeholders":["brush"]}, +{"id":"163918","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"186095","label":"pulling two ends of marker pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["marker pen"]}, +{"id":"210525","label":"letting a can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a can"]}, +{"id":"31780","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"16516","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"132288","label":"lifting up one end of a screwdriver without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a screwdriver"]}, +{"id":"92194","label":"turning a can upside down","template":"Turning [something] upside down","placeholders":["a can"]}, +{"id":"112017","label":"stuffing clothes into a drawer","template":"Stuffing [something] into [something]","placeholders":["clothes","a drawer"]}, +{"id":"205255","label":"hitting backpack with boot","template":"Hitting [something] with [something]","placeholders":["backpack","boot"]}, +{"id":"86971","label":"pretending to pick a marker up","template":"Pretending to pick [something] up","placeholders":["a marker"]}, +{"id":"182072","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"71510","label":"pretending to poke flowers","template":"Pretending to poke [something]","placeholders":["flowers"]}, +{"id":"46199","label":"money falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["money"]}, +{"id":"24643","label":"holding soaps over tooth paste","template":"Holding [something] over [something]","placeholders":["soaps","tooth paste"]}, +{"id":"214953","label":"pretending or trying and failing to twist wooden cylinder","template":"Pretending or trying and failing to twist [something]","placeholders":["wooden cylinder"]}, +{"id":"52020","label":"taking wallet out of trash can","template":"Taking [something] out of [something]","placeholders":["wallet","trash can"]}, +{"id":"112495","label":"throwing umbrella in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["umbrella"]}, +{"id":"97774","label":"laying something on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["something"]}, +{"id":"149051","label":"pretending to open ketchup bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["ketchup bottle"]}, +{"id":"53698","label":"turning the camera left while filming battery","template":"Turning the camera left while filming [something]","placeholders":["battery"]}, +{"id":"150814","label":"turning the camera right while filming wood carving","template":"Turning the camera right while filming [something]","placeholders":["wood carving"]}, +{"id":"151351","label":"piling four blocks up","template":"Piling [something] up","placeholders":["four blocks"]}, +{"id":"124129","label":"putting a mallet underneath a chair","template":"Putting [something] underneath [something]","placeholders":["a mallet","a chair"]}, +{"id":"73868","label":"stuffing a tissue into a cup","template":"Stuffing [something] into [something]","placeholders":["a tissue","a cup"]}, +{"id":"166258","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"187593","label":"plugging cord into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall"]}, +{"id":"207992","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"105620","label":"pulling a coin from behind of a padlock","template":"Pulling [something] from behind of [something]","placeholders":["a coin","a padlock"]}, +{"id":"181124","label":"spinning pin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pin"]}, +{"id":"52271","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"121692","label":"pouring coffee into bowl","template":"Pouring [something] into [something]","placeholders":["coffee","bowl"]}, +{"id":"24136","label":"lifting box with marker on it","template":"Lifting [something] with [something] on it","placeholders":["box","marker"]}, +{"id":"112584","label":"moving cucumber down","template":"Moving [something] down","placeholders":["cucumber"]}, +{"id":"220500","label":"plugging charger into power strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","power strip"]}, +{"id":"3603","label":"pretending to take remote from table","template":"Pretending to take [something] from [somewhere]","placeholders":["remote","table"]}, +{"id":"56863","label":"putting pendrive next to mug","template":"Putting [something] next to [something]","placeholders":["pendrive","mug"]}, +{"id":"176076","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"99295","label":"putting a matchbox upright on the table","template":"Putting [something] upright on the table","placeholders":["a matchbox"]}, +{"id":"139036","label":"putting a rock with other rocks","template":"Putting [something similar to other things that are already on the table]","placeholders":["a rock with other rocks"]}, +{"id":"200343","label":"lifting up one end of spectacle box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spectacle box"]}, +{"id":"74211","label":"stacking 2 toy wheels","template":"Stacking [number of] [something]","placeholders":["2","toy wheels"]}, +{"id":"115291","label":"twisting bottle cap","template":"Twisting [something]","placeholders":["bottle cap"]}, +{"id":"119902","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"81572","label":"lifting a book with a mug on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a mug"]}, +{"id":"114381","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"29493","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"94617","label":"pushing the drawer from left to right","template":"Pushing [something] from left to right","placeholders":["the drawer"]}, +{"id":"151671","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"3115","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"183003","label":"pretending to take smaller box out of larger box","template":"Pretending to take [something] out of [something]","placeholders":["smaller box","larger box"]}, +{"id":"28577","label":"pretending to turn notebook upside down","template":"Pretending to turn [something] upside down","placeholders":["notebook"]}, +{"id":"79373","label":"pushing something onto something","template":"Pushing [something] onto [something]","placeholders":["something","something"]}, +{"id":"146181","label":"moving oil bottle up","template":"Moving [something] up","placeholders":["oil bottle"]}, +{"id":"52432","label":"covering glass with plate","template":"Covering [something] with [something]","placeholders":["glass","plate"]}, +{"id":"70882","label":"putting setquare next to mug","template":"Putting [something] next to [something]","placeholders":["setquare","mug"]}, +{"id":"43899","label":"showing bottle behind shoe","template":"Showing [something] behind [something]","placeholders":["bottle","shoe"]}, +{"id":"85196","label":"lifting eyeglass case up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["eyeglass case"]}, +{"id":"10454","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"215234","label":"pulling a bottle from left to right","template":"Pulling [something] from left to right","placeholders":["a bottle"]}, +{"id":"171041","label":"putting box behind bottle","template":"Putting [something] behind [something]","placeholders":["box","bottle"]}, +{"id":"178993","label":"burying lighter in soil","template":"Burying [something] in [something]","placeholders":["lighter","soil"]}, +{"id":"93184","label":"trying but failing to attach paper to book because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","book"]}, +{"id":"94423","label":"moving coaster across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["coaster"]}, +{"id":"16887","label":"pushing bar soap from left to right","template":"Pushing [something] from left to right","placeholders":["bar soap"]}, +{"id":"104053","label":"hitting my phone with a spoon","template":"Hitting [something] with [something]","placeholders":["my phone","a spoon"]}, +{"id":"185533","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"110332","label":"showing a keyboard next to a mouse","template":"Showing [something] next to [something]","placeholders":["a keyboard","a mouse"]}, +{"id":"24455","label":"letting pipe roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pipe"]}, +{"id":"53062","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"106101","label":"attaching a t-shirt to laundry thread","template":"Attaching [something] to [something]","placeholders":["a t-shirt","laundry thread"]}, +{"id":"120242","label":"taking a ball out of cardboard box","template":"Taking [something] out of [something]","placeholders":["a ball","cardboard box"]}, +{"id":"20994","label":"moving lip gloss and coffee mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lip gloss","coffee mug"]}, +{"id":"73054","label":"moving a cell phone and a pendrive away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cell phone","a pendrive"]}, +{"id":"42151","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"6058","label":"squeezing bar soap","template":"Squeezing [something]","placeholders":["bar soap"]}, +{"id":"93206","label":"holding cup next to phone","template":"Holding [something] next to [something]","placeholders":["cup","phone"]}, +{"id":"92701","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"60986","label":"holding purple balloon pump","template":"Holding [something]","placeholders":["purple balloon pump"]}, +{"id":"148101","label":"holding lighter in front of refrigerator","template":"Holding [something] in front of [something]","placeholders":["lighter","refrigerator"]}, +{"id":"171173","label":"putting a shoe next to a box","template":"Putting [something] next to [something]","placeholders":["a shoe","a box"]}, +{"id":"14519","label":"pulling a toy car from right to left","template":"Pulling [something] from right to left","placeholders":["a toy car"]}, +{"id":"159433","label":"pulling paper out of rift","template":"Pulling [something] out of [something]","placeholders":["paper","rift"]}, +{"id":"47374","label":"pretending to be tearing a plastic bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic bag"]}, +{"id":"131883","label":"pretending or failing to wipe stain off of cloth","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","cloth"]}, +{"id":"192179","label":"pretending to poke a container","template":"Pretending to poke [something]","placeholders":["a container"]}, +{"id":"127954","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"61613","label":"rolling perfume on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["perfume"]}, +{"id":"58108","label":"approaching toothpaste tube with your camera","template":"Approaching [something] with your camera","placeholders":["toothpaste tube"]}, +{"id":"138724","label":"scooping dog food up with a cup","template":"Scooping [something] up with [something]","placeholders":["dog food","a cup"]}, +{"id":"31455","label":"pushing glass award so it spins","template":"Pushing [something] so it spins","placeholders":["glass award"]}, +{"id":"152424","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"97015","label":"pushing a toy tiger so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toy tiger"]}, +{"id":"168066","label":"dropping hairclip next to piggybank","template":"Dropping [something] next to [something]","placeholders":["hairclip","piggybank"]}, +{"id":"25092","label":"moving pencil up","template":"Moving [something] up","placeholders":["pencil"]}, +{"id":"181078","label":"pushing a box with a pencil","template":"Pushing [something] with [something]","placeholders":["a box","a pencil"]}, +{"id":"191177","label":"picking world globe up","template":"Picking [something] up","placeholders":["world globe"]}, +{"id":"84959","label":"moving ribbon up","template":"Moving [something] up","placeholders":["ribbon"]}, +{"id":"111324","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"209867","label":"pushing clip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["clip"]}, +{"id":"37195","label":"showing readymade dress to the camera","template":"Showing [something] to the camera","placeholders":["readymade dress"]}, +{"id":"112667","label":"poking a hole into a piece of cloth","template":"Poking a hole into [something soft]","placeholders":["a piece of cloth"]}, +{"id":"114731","label":"moving the handle of the purse","template":"Moving [part] of [something]","placeholders":["the handle","the purse"]}, +{"id":"77481","label":"turning body cream upside down","template":"Turning [something] upside down","placeholders":["body cream"]}, +{"id":"53960","label":"moving a pen up","template":"Moving [something] up","placeholders":["a pen"]}, +{"id":"181149","label":"plugging a headphone plug into a jack","template":"Plugging [something] into [something]","placeholders":["a headphone plug","a jack"]}, +{"id":"89731","label":"poking clip so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["clip"]}, +{"id":"176925","label":"moving rule away from highlighter pen","template":"Moving [something] away from [something]","placeholders":["rule","highlighter pen"]}, +{"id":"148668","label":"pretending to be tearing a towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a towel"]}, +{"id":"188910","label":"holding a bottle next to a jar","template":"Holding [something] next to [something]","placeholders":["a bottle","a jar"]}, +{"id":"201294","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"9644","label":"moving matchbox down","template":"Moving [something] down","placeholders":["matchbox"]}, +{"id":"143847","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"16722","label":"piling starburst up","template":"Piling [something] up","placeholders":["starburst"]}, +{"id":"41807","label":"moving plate closer to toy car","template":"Moving [something] closer to [something]","placeholders":["plate","toy car"]}, +{"id":"148261","label":"attaching cord to phone","template":"Attaching [something] to [something]","placeholders":["cord","phone"]}, +{"id":"47439","label":"a cover colliding with pen and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a cover","pen"]}, +{"id":"176261","label":"taking comb out of mug","template":"Taking [something] out of [something]","placeholders":["comb","mug"]}, +{"id":"16734","label":"putting coin that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["coin"]}, +{"id":"104588","label":"pretending to put landphone behind monitor","template":"Pretending to put [something] behind [something]","placeholders":["landphone","monitor"]}, +{"id":"25599","label":"moving wheel of bike","template":"Moving [part] of [something]","placeholders":["wheel","bike"]}, +{"id":"56463","label":"lifting up one end of pillow, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pillow"]}, +{"id":"14204","label":"showing horse to the camera","template":"Showing [something] to the camera","placeholders":["horse"]}, +{"id":"122584","label":"uncovering a cooking pan","template":"Uncovering [something]","placeholders":["a cooking pan"]}, +{"id":"100906","label":"dropping medicine bottle onto a medicine bottle","template":"Dropping [something] onto [something]","placeholders":["medicine bottle","a medicine bottle"]}, +{"id":"99226","label":"moving pencil sharpner away from pen","template":"Moving [something] away from [something]","placeholders":["pencil sharpner","pen"]}, +{"id":"207527","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"121842","label":"putting 1 laptop onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","laptop","chair"]}, +{"id":"74886","label":"plugging phone charger into wall","template":"Plugging [something] into [something]","placeholders":["phone charger","wall"]}, +{"id":"195465","label":"rolling orange on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["orange"]}, +{"id":"39731","label":"pretending to open closet door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["closet door"]}, +{"id":"140637","label":"pushing carton so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["carton"]}, +{"id":"149622","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"23178","label":"pulling small book from left to right","template":"Pulling [something] from left to right","placeholders":["small book"]}, +{"id":"156427","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"773","label":"showing calculator on top of printer","template":"Showing [something] on top of [something]","placeholders":["calculator","printer"]}, +{"id":"192598","label":"lifting plate with glasses on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glasses"]}, +{"id":"50045","label":"removing the book, revealing the key behind","template":"Removing [something], revealing [something] behind","placeholders":["the book","the key"]}, +{"id":"131362","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"40547","label":"turning the camera right while filming blanket","template":"Turning the camera right while filming [something]","placeholders":["blanket"]}, +{"id":"64291","label":"pretending to pour water out of the bottle, but the bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","the bottle","the bottle"]}, +{"id":"43039","label":"stacking three books","template":"Stacking [number of] [something]","placeholders":["three","books"]}, +{"id":"183302","label":"poking ball so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ball"]}, +{"id":"84842","label":"pushing paper cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper cup"]}, +{"id":"154845","label":"poking banana so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["banana"]}, +{"id":"142742","label":"folding sheet of paper","template":"Folding [something]","placeholders":["sheet of paper"]}, +{"id":"425","label":"holding bottle next to fan","template":"Holding [something] next to [something]","placeholders":["bottle","fan"]}, +{"id":"62212","label":"moving charger away from toy","template":"Moving [something] away from [something]","placeholders":["charger","toy"]}, +{"id":"81447","label":"turning something upside down","template":"Turning [something] upside down","placeholders":["something"]}, +{"id":"77720","label":"moving battery closer to pebble","template":"Moving [something] closer to [something]","placeholders":["battery","pebble"]}, +{"id":"219971","label":"trying to bend mobile so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["mobile"]}, +{"id":"113084","label":"lifting tablet with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","mouse"]}, +{"id":"13558","label":"taking a stapler","template":"Taking [one of many similar things on the table]","placeholders":["a stapler"]}, +{"id":"107705","label":"failing to put hand sanitizer into a desk organizer because hand sanitizer does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["hand sanitizer","a desk organizer","hand sanitizer"]}, +{"id":"129871","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"4316","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"148516","label":"bending a slice of bread until it breaks","template":"Bending [something] until it breaks","placeholders":["a slice of bread"]}, +{"id":"138625","label":"pretending to put pen next to holder","template":"Pretending to put [something] next to [something]","placeholders":["pen","holder"]}, +{"id":"61921","label":"pulling coffee cup from left to right","template":"Pulling [something] from left to right","placeholders":["coffee cup"]}, +{"id":"134199","label":"moving hairclip up","template":"Moving [something] up","placeholders":["hairclip"]}, +{"id":"131644","label":"tearing notepad into two pieces","template":"Tearing [something] into two pieces","placeholders":["notepad"]}, +{"id":"181931","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"214887","label":"pushing spice from left to right","template":"Pushing [something] from left to right","placeholders":["spice"]}, +{"id":"129979","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"104939","label":"spinning a marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a marker"]}, +{"id":"176903","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"148472","label":"pulling tablet onto mirror","template":"Pulling [something] onto [something]","placeholders":["tablet","mirror"]}, +{"id":"5328","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"34157","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"11274","label":"touching (without moving) ear of coffeecup","template":"Touching (without moving) [part] of [something]","placeholders":["ear","coffeecup"]}, +{"id":"26564","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"200926","label":"moving away from metal wall art with your camera","template":"Moving away from [something] with your camera","placeholders":["metal wall art"]}, +{"id":"120798","label":"putting a battery upright on the table","template":"Putting [something] upright on the table","placeholders":["a battery"]}, +{"id":"93464","label":"plugging usb into port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","port"]}, +{"id":"51185","label":"pretending to turn glass upside down","template":"Pretending to turn [something] upside down","placeholders":["glass"]}, +{"id":"36819","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"55817","label":"tearing envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["envelope"]}, +{"id":"23745","label":"dropping a wallet behind a bowl","template":"Dropping [something] behind [something]","placeholders":["a wallet","a bowl"]}, +{"id":"93346","label":"pushing cigarette lighter with pencil","template":"Pushing [something] with [something]","placeholders":["cigarette lighter","pencil"]}, +{"id":"134497","label":"plugging usb cable into laptop","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"97421","label":"holding a glass next to a bottle","template":"Holding [something] next to [something]","placeholders":["a glass","a bottle"]}, +{"id":"214742","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"173566","label":"turning perfume bottle upside down","template":"Turning [something] upside down","placeholders":["perfume bottle"]}, +{"id":"207901","label":"hitting container with pen","template":"Hitting [something] with [something]","placeholders":["container","pen"]}, +{"id":"59905","label":"putting orange onto notebook so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["orange","notebook"]}, +{"id":"187446","label":"pushing study table from left to right","template":"Pushing [something] from left to right","placeholders":["study table"]}, +{"id":"102339","label":"throwing a pencil against a wallet","template":"Throwing [something] against [something]","placeholders":["a pencil","a wallet"]}, +{"id":"57036","label":"pushing the shaver so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["the shaver"]}, +{"id":"31006","label":"turning a toy cradle upside down","template":"Turning [something] upside down","placeholders":["a toy cradle"]}, +{"id":"83332","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"96478","label":"unfolding pillowcase","template":"Unfolding [something]","placeholders":["pillowcase"]}, +{"id":"130128","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"16152","label":"digging coin out of flour","template":"Digging [something] out of [something]","placeholders":["coin","flour"]}, +{"id":"97671","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"86389","label":"dropping tube into bowl","template":"Dropping [something] into [something]","placeholders":["tube","bowl"]}, +{"id":"21821","label":"holding cup behind bottle","template":"Holding [something] behind [something]","placeholders":["cup","bottle"]}, +{"id":"78901","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"207707","label":"pouring water onto sink surface","template":"Pouring [something] onto [something]","placeholders":["water","sink surface"]}, +{"id":"163709","label":"plugging wall charger into home outlet","template":"Plugging [something] into [something]","placeholders":["wall charger","home outlet"]}, +{"id":"203364","label":"dropping marker onto table","template":"Dropping [something] onto [something]","placeholders":["marker","table"]}, +{"id":"69101","label":"pulling fingernail clippers from left to right","template":"Pulling [something] from left to right","placeholders":["fingernail clippers"]}, +{"id":"131418","label":"turning the camera right while filming christmas tree","template":"Turning the camera right while filming [something]","placeholders":["christmas tree"]}, +{"id":"189363","label":"pretending to take watch from table","template":"Pretending to take [something] from [somewhere]","placeholders":["watch","table"]}, +{"id":"62447","label":"putting powder bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["powder bottle"]}, +{"id":"204370","label":"pouring grains into a plate","template":"Pouring [something] into [something]","placeholders":["grains","a plate"]}, +{"id":"45558","label":"approaching pink water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["pink water bottle"]}, +{"id":"166929","label":"turning the camera right while filming wheel chair","template":"Turning the camera right while filming [something]","placeholders":["wheel chair"]}, +{"id":"212508","label":"spinning pully so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pully"]}, +{"id":"140485","label":"putting suncreen, a stuffed animal and fake flowers on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["suncreen","a stuffed animal","fake flowers"]}, +{"id":"45463","label":"covering remote with pillow","template":"Covering [something] with [something]","placeholders":["remote","pillow"]}, +{"id":"157606","label":"spinning highlighter pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["highlighter pen"]}, +{"id":"120452","label":"pretending to squeeze remote","template":"Pretending to squeeze [something]","placeholders":["remote"]}, +{"id":"212684","label":"putting 2 sheets of paper onto an envelope","template":"Putting [number of] [something] onto [something]","placeholders":["2","sheets of paper","an envelope"]}, +{"id":"186970","label":"putting roll of paper on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["roll of paper"]}, +{"id":"63801","label":"taking water bottle from table","template":"Taking [something] from [somewhere]","placeholders":["water bottle","table"]}, +{"id":"24807","label":"pretending or failing to wipe marker off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"10028","label":"pretending to throw tissues","template":"Pretending to throw [something]","placeholders":["tissues"]}, +{"id":"168963","label":"lifting a lid up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a lid"]}, +{"id":"134899","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"211057","label":"uncovering blue spoon","template":"Uncovering [something]","placeholders":["blue spoon"]}, +{"id":"187316","label":"moving soap closer to soap","template":"Moving [something] closer to [something]","placeholders":["soap","soap"]}, +{"id":"59378","label":"pushing action camera from left to right","template":"Pushing [something] from left to right","placeholders":["action camera"]}, +{"id":"207085","label":"picking a bottle up","template":"Picking [something] up","placeholders":["a bottle"]}, +{"id":"46863","label":"lifting a surface with paper on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["paper"]}, +{"id":"113421","label":"pretending to pick a pencil case up","template":"Pretending to pick [something] up","placeholders":["a pencil case"]}, +{"id":"102868","label":"holding a battery","template":"Holding [something]","placeholders":["a battery"]}, +{"id":"58248","label":"putting a box upright on the table","template":"Putting [something] upright on the table","placeholders":["a box"]}, +{"id":"34063","label":"pushing a chair from left to right","template":"Pushing [something] from left to right","placeholders":["a chair"]}, +{"id":"107918","label":"putting stapler behind comb","template":"Putting [something] behind [something]","placeholders":["stapler","comb"]}, +{"id":"142422","label":"pouring water into tumbler until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","tumbler"]}, +{"id":"129405","label":"notice paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["notice paper"]}, +{"id":"178608","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"70778","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"73228","label":"throwing remote control","template":"Throwing [something]","placeholders":["remote control"]}, +{"id":"164826","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"141418","label":"covering a pen with a sweater","template":"Covering [something] with [something]","placeholders":["a pen","a sweater"]}, +{"id":"40960","label":"poking a stack of plastic boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["plastic boxes"]}, +{"id":"206599","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"16041","label":"holding fork over plate","template":"Holding [something] over [something]","placeholders":["fork","plate"]}, +{"id":"65977","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"99091","label":"moving scissors and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["scissors","scissors"]}, +{"id":"70159","label":"putting a cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["a cup"]}, +{"id":"109071","label":"putting 3 breads onto plate","template":"Putting [number of] [something] onto [something]","placeholders":["3","breads","plate"]}, +{"id":"178872","label":"moving paper of pile of papers","template":"Moving [part] of [something]","placeholders":["paper","pile of papers"]}, +{"id":"137184","label":"taking a glass","template":"Taking [one of many similar things on the table]","placeholders":["a glass"]}, +{"id":"8827","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"11335","label":"pushing a potholder so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a potholder"]}, +{"id":"23262","label":"putting pen into bag","template":"Putting [something] into [something]","placeholders":["pen","bag"]}, +{"id":"171455","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"139537","label":"lifting a box with a cottonball on it","template":"Lifting [something] with [something] on it","placeholders":["a box","a cottonball"]}, +{"id":"136113","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"181302","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"163458","label":"lifting wood log up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wood log"]}, +{"id":"36775","label":"closing carton","template":"Closing [something]","placeholders":["carton"]}, +{"id":"180081","label":"putting a spoon into a cup","template":"Putting [something] into [something]","placeholders":["a spoon","a cup"]}, +{"id":"93609","label":"dropping a matchbox onto a plate","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a plate"]}, +{"id":"144967","label":"wiping juice off of table","template":"Wiping [something] off of [something]","placeholders":["juice","table"]}, +{"id":"39036","label":"poking a stack of clementines so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["clementines"]}, +{"id":"142843","label":"pushing a tomato so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a tomato"]}, +{"id":"9338","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"63057","label":"taking bottle from bench","template":"Taking [something] from [somewhere]","placeholders":["bottle","bench"]}, +{"id":"176392","label":"putting bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle"]}, +{"id":"141612","label":"stuffing a toy into a bag","template":"Stuffing [something] into [something]","placeholders":["a toy","a bag"]}, +{"id":"29307","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"208462","label":"pouring water out of spoon","template":"Pouring [something] out of [something]","placeholders":["water","spoon"]}, +{"id":"75993","label":"putting green bowl on a surface","template":"Putting [something] on a surface","placeholders":["green bowl"]}, +{"id":"130409","label":"dropping a coin into a bowl","template":"Dropping [something] into [something]","placeholders":["a coin","a bowl"]}, +{"id":"205323","label":"tipping water bottle with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["water bottle","water","water"]}, +{"id":"148533","label":"cup falling like a rock","template":"[Something] falling like a rock","placeholders":["cup"]}, +{"id":"50385","label":"poking tube so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tube"]}, +{"id":"133940","label":"plugging a power cord into a laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a power cord","a laptop"]}, +{"id":"208307","label":"putting red spoon and battery on the table","template":"Putting [something] and [something] on the table","placeholders":["red spoon","battery"]}, +{"id":"38329","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"15503","label":"putting badminton bat upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["badminton bat"]}, +{"id":"101726","label":"stacking 3 plates","template":"Stacking [number of] [something]","placeholders":["3","plates"]}, +{"id":"64623","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"85026","label":"turning a peanut butter jar upside down","template":"Turning [something] upside down","placeholders":["a peanut butter jar"]}, +{"id":"91836","label":"lifting up one end of pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pen"]}, +{"id":"125220","label":"sprinkling water onto sink","template":"Sprinkling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"147016","label":"pushing pear from right to left","template":"Pushing [something] from right to left","placeholders":["pear"]}, +{"id":"178035","label":"pretending to take coin out of wallet","template":"Pretending to take [something] out of [something]","placeholders":["coin","wallet"]}, +{"id":"8151","label":"showing glasses on top of pillow","template":"Showing [something] on top of [something]","placeholders":["glasses","pillow"]}, +{"id":"48289","label":"throwing spinner onto a surface","template":"Throwing [something] onto a surface","placeholders":["spinner"]}, +{"id":"101653","label":"taking plastic cap out of glass","template":"Taking [something] out of [something]","placeholders":["plastic cap","glass"]}, +{"id":"11977","label":"lifting up one end of a drumstick without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a drumstick"]}, +{"id":"196402","label":"showing scissors behind mug","template":"Showing [something] behind [something]","placeholders":["scissors","mug"]}, +{"id":"10189","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"218573","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"135434","label":"plugging a charger into a circuit","template":"Plugging [something] into [something]","placeholders":["a charger","a circuit"]}, +{"id":"188313","label":"tilting box with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","phone"]}, +{"id":"121727","label":"folding a tissue","template":"Folding [something]","placeholders":["a tissue"]}, +{"id":"55262","label":"moving pencil and snap off blade closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pencil","snap off blade"]}, +{"id":"110296","label":"throwing ball against wall","template":"Throwing [something] against [something]","placeholders":["ball","wall"]}, +{"id":"74538","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"174830","label":"putting bottle and box on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","box"]}, +{"id":"149422","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"142478","label":"moving mug and candle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["mug","candle"]}, +{"id":"124677","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"34199","label":"turning a wine glass upside down","template":"Turning [something] upside down","placeholders":["a wine glass"]}, +{"id":"79548","label":"tearing a flyer just a little bit","template":"Tearing [something] just a little bit","placeholders":["a flyer"]}, +{"id":"97210","label":"failing to put lid into cup because lid does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["lid","cup","lid"]}, +{"id":"5810","label":"pulling a napkin out of container","template":"Pulling [something] out of [something]","placeholders":["a napkin","container"]}, +{"id":"157563","label":"moving mouse and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mouse","remote"]}, +{"id":"34926","label":"taking a pair of scissors","template":"Taking [one of many similar things on the table]","placeholders":["a pair of scissors"]}, +{"id":"128376","label":"pretending to take phone out of case","template":"Pretending to take [something] out of [something]","placeholders":["phone","case"]}, +{"id":"200748","label":"pouring suji into bowl","template":"Pouring [something] into [something]","placeholders":["suji","bowl"]}, +{"id":"20466","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"73180","label":"throwing a rag against the wall","template":"Throwing [something] against [something]","placeholders":["a rag","the wall"]}, +{"id":"208794","label":"holding a bottle","template":"Holding [something]","placeholders":["a bottle"]}, +{"id":"198068","label":"pretending to be tearing a cutting board","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cutting board"]}, +{"id":"131308","label":"moving make up closer to a soda","template":"Moving [something] closer to [something]","placeholders":["make up","a soda"]}, +{"id":"61617","label":"pushing a card so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a card"]}, +{"id":"213276","label":"putting empty treat bar wrap on a surface","template":"Putting [something] on a surface","placeholders":["empty treat bar wrap"]}, +{"id":"75931","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"175595","label":"picking pillow up","template":"Picking [something] up","placeholders":["pillow"]}, +{"id":"52402","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"116399","label":"pouring water onto a chair","template":"Pouring [something] onto [something]","placeholders":["water","a chair"]}, +{"id":"15896","label":"trying to pour oil into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["oil","glass"]}, +{"id":"115808","label":"pouring beer out of a can","template":"Pouring [something] out of [something]","placeholders":["beer","a can"]}, +{"id":"173157","label":"approaching cup with your camera","template":"Approaching [something] with your camera","placeholders":["cup"]}, +{"id":"23234","label":"uncovering purse","template":"Uncovering [something]","placeholders":["purse"]}, +{"id":"15783","label":"pushing apple from left to right","template":"Pushing [something] from left to right","placeholders":["apple"]}, +{"id":"30078","label":"tilting a dvd player with a remote control on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a dvd player","a remote control"]}, +{"id":"135596","label":"moving a smartphone away from a calculator","template":"Moving [something] away from [something]","placeholders":["a smartphone","a calculator"]}, +{"id":"182519","label":"pulling car out of bag","template":"Pulling [something] out of [something]","placeholders":["car","bag"]}, +{"id":"14898","label":"lifting a notebook with a jar on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a jar"]}, +{"id":"9660","label":"throwing a balled up tissue against a wall","template":"Throwing [something] against [something]","placeholders":["a balled up tissue","a wall"]}, +{"id":"128300","label":"pouring water into a wine glass","template":"Pouring [something] into [something]","placeholders":["water","a wine glass"]}, +{"id":"217935","label":"plugging a charging cable into a charging port","template":"Plugging [something] into [something]","placeholders":["a charging cable","a charging port"]}, +{"id":"139854","label":"putting stapler into cup","template":"Putting [something] into [something]","placeholders":["stapler","cup"]}, +{"id":"143118","label":"pretending to be tearing a coaster","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a coaster"]}, +{"id":"1686","label":"pulling paper out of book","template":"Pulling [something] out of [something]","placeholders":["paper","book"]}, +{"id":"169062","label":"showing that water is inside a glass","template":"Showing that [something] is inside [something]","placeholders":["water","a glass"]}, +{"id":"215545","label":"lifting a remote control with a comb on it","template":"Lifting [something] with [something] on it","placeholders":["a remote control","a comb"]}, +{"id":"70553","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"40456","label":"turning the camera upwards while filming tooth paste","template":"Turning the camera upwards while filming [something]","placeholders":["tooth paste"]}, +{"id":"181516","label":"putting elephant statue on a surface","template":"Putting [something] on a surface","placeholders":["elephant statue"]}, +{"id":"79254","label":"pulling pillow out of bed","template":"Pulling [something] out of [something]","placeholders":["pillow","bed"]}, +{"id":"89362","label":"trying but failing to attach wire to phone because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["wire","phone"]}, +{"id":"136173","label":"putting a plate into the sink","template":"Putting [something] into [something]","placeholders":["a plate","the sink"]}, +{"id":"150165","label":"pulling two ends of elastic cloth so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["elastic cloth"]}, +{"id":"129033","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"172694","label":"stone falling like a rock","template":"[Something] falling like a rock","placeholders":["stone"]}, +{"id":"114147","label":"moving geometric compass down","template":"Moving [something] down","placeholders":["geometric compass"]}, +{"id":"6806","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"38045","label":"throwing something in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["something"]}, +{"id":"195699","label":"dropping comb into glass","template":"Dropping [something] into [something]","placeholders":["comb","glass"]}, +{"id":"186819","label":"putting clip on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["clip","slab"]}, +{"id":"79888","label":"holding glass over mug","template":"Holding [something] over [something]","placeholders":["glass","mug"]}, +{"id":"54111","label":"dropping a deck of cards onto a fidget spinner","template":"Dropping [something] onto [something]","placeholders":["a deck of cards","a fidget spinner"]}, +{"id":"133453","label":"letting a tenis ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a tenis ball"]}, +{"id":"57642","label":"plugging charger into powerpoint","template":"Plugging [something] into [something]","placeholders":["charger","powerpoint"]}, +{"id":"59109","label":"bending chocolate bar until it breaks","template":"Bending [something] until it breaks","placeholders":["chocolate bar"]}, +{"id":"78142","label":"holding toy next to jar","template":"Holding [something] next to [something]","placeholders":["toy","jar"]}, +{"id":"176739","label":"newspaper falling like a rock","template":"[Something] falling like a rock","placeholders":["newspaper"]}, +{"id":"22091","label":"taking tv remote from ground","template":"Taking [something] from [somewhere]","placeholders":["tv remote","ground"]}, +{"id":"147834","label":"dropping battery next to yellow container","template":"Dropping [something] next to [something]","placeholders":["battery","yellow container"]}, +{"id":"140733","label":"moving a shovel of a toy excavator","template":"Moving [part] of [something]","placeholders":["a shovel","a toy excavator"]}, +{"id":"23054","label":"holding broom in front of car","template":"Holding [something] in front of [something]","placeholders":["broom","car"]}, +{"id":"71752","label":"opening trash can","template":"Opening [something]","placeholders":["trash can"]}, +{"id":"39269","label":"poking a stack of dice so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["dice"]}, +{"id":"68317","label":"putting small box on the edge of bigger box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["small box","bigger box"]}, +{"id":"39513","label":"failing to put dish into candle because dish does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["dish","candle","dish"]}, +{"id":"193511","label":"putting a roll of masking tape on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a roll of masking tape"]}, +{"id":"145926","label":"lifting a notebook with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a pen"]}, +{"id":"41326","label":"pretending to pour wine out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["wine","bottle","bottle"]}, +{"id":"132839","label":"stuffing tissues into a tissue box","template":"Stuffing [something] into [something]","placeholders":["tissues","a tissue box"]}, +{"id":"125693","label":"holding can over remote","template":"Holding [something] over [something]","placeholders":["can","remote"]}, +{"id":"125419","label":"pretending to spread air onto plate","template":"Pretending to spread air onto [something]","placeholders":["plate"]}, +{"id":"209592","label":"showing that toy car is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["toy car","spectacle box"]}, +{"id":"9855","label":"spreading rice onto plastic-lid","template":"Spreading [something] onto [something]","placeholders":["rice","plastic-lid"]}, +{"id":"39056","label":"poking massage pillow so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["massage pillow"]}, +{"id":"207570","label":"attaching a note to a notice board","template":"Attaching [something] to [something]","placeholders":["a note","a notice board"]}, +{"id":"156325","label":"pushing card onto puzzle","template":"Pushing [something] onto [something]","placeholders":["card","puzzle"]}, +{"id":"219722","label":"holding toothbrush in front of toothpaste","template":"Holding [something] in front of [something]","placeholders":["toothbrush","toothpaste"]}, +{"id":"138624","label":"turning spoon upside down","template":"Turning [something] upside down","placeholders":["spoon"]}, +{"id":"92118","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"49215","label":"pretending to sprinkle air onto scissors","template":"Pretending to sprinkle air onto [something]","placeholders":["scissors"]}, +{"id":"178041","label":"trying but failing to attach card to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["card","fridge"]}, +{"id":"175312","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"10501","label":"putting a fork, a spoon and a knife on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a fork","a spoon","a knife"]}, +{"id":"78336","label":"moving toothbrush and toothpaste so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toothbrush","toothpaste"]}, +{"id":"175704","label":"throwing a paciphier in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a paciphier"]}, +{"id":"16134","label":"pulling metal keys from left to right","template":"Pulling [something] from left to right","placeholders":["metal keys"]}, +{"id":"148138","label":"pulling book from left to right","template":"Pulling [something] from left to right","placeholders":["book"]}, +{"id":"85095","label":"lifting cup with marker on it","template":"Lifting [something] with [something] on it","placeholders":["cup","marker"]}, +{"id":"10568","label":"throwing marker","template":"Throwing [something]","placeholders":["marker"]}, +{"id":"7064","label":"holding a glass in front of a pillar","template":"Holding [something] in front of [something]","placeholders":["a glass","a pillar"]}, +{"id":"107442","label":"approaching door with your camera","template":"Approaching [something] with your camera","placeholders":["door"]}, +{"id":"63915","label":"dropping a comb in front of a pen","template":"Dropping [something] in front of [something]","placeholders":["a comb","a pen"]}, +{"id":"171460","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"202831","label":"putting book that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["book"]}, +{"id":"76402","label":"pretending to take supplement from cabinet","template":"Pretending to take [something] from [somewhere]","placeholders":["supplement","cabinet"]}, +{"id":"162105","label":"pushing mug so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["mug"]}, +{"id":"35742","label":"putting a pen and a pen on the table","template":"Putting [something] and [something] on the table","placeholders":["a pen","a pen"]}, +{"id":"195049","label":"spinning glass spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["glass spinner"]}, +{"id":"72327","label":"opening a children's book","template":"Opening [something]","placeholders":["a children's book"]}, +{"id":"207394","label":"taking a sweet","template":"Taking [one of many similar things on the table]","placeholders":["a sweet"]}, +{"id":"123869","label":"moving nail polish bottle and post it notes away from each other","template":"Moving [something] and [something] away from each other","placeholders":["nail polish bottle","post it notes"]}, +{"id":"180889","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"110444","label":"tilting a tape with a coaster on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a tape","a coaster"]}, +{"id":"94899","label":"taking one binder clip of many similar binder clips on the table","template":"Taking [one of many similar things on the table]","placeholders":["one binder clip of many similar binder clips on the table"]}, +{"id":"109650","label":"pushing metal box from left to right","template":"Pushing [something] from left to right","placeholders":["metal box"]}, +{"id":"160198","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"196745","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"74580","label":"moving calculator up","template":"Moving [something] up","placeholders":["calculator"]}, +{"id":"26536","label":"failing to put an orange into a plastic bottle because the orange does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["an orange","a plastic bottle","the orange"]}, +{"id":"2957","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"51260","label":"uncovering a coffee mug","template":"Uncovering [something]","placeholders":["a coffee mug"]}, +{"id":"69437","label":"pretending to pick book up","template":"Pretending to pick [something] up","placeholders":["book"]}, +{"id":"24028","label":"showing that pieces is inside glass","template":"Showing that [something] is inside [something]","placeholders":["pieces","glass"]}, +{"id":"38946","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"11340","label":"moving wolf and wolf closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wolf","wolf"]}, +{"id":"92976","label":"tearing carbon paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["carbon paper"]}, +{"id":"65527","label":"pretending to turn glass upside down","template":"Pretending to turn [something] upside down","placeholders":["glass"]}, +{"id":"109278","label":"closing a cupboard door","template":"Closing [something]","placeholders":["a cupboard door"]}, +{"id":"167504","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"49253","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"202121","label":"stuffing cookie into jar","template":"Stuffing [something] into [something]","placeholders":["cookie","jar"]}, +{"id":"145707","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"1524","label":"covering mobile with towel","template":"Covering [something] with [something]","placeholders":["mobile","towel"]}, +{"id":"189933","label":"moving caps and caps closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["caps","caps"]}, +{"id":"148236","label":"throwing ball against mirror","template":"Throwing [something] against [something]","placeholders":["ball","mirror"]}, +{"id":"43321","label":"dropping neckalce behind door","template":"Dropping [something] behind [something]","placeholders":["neckalce","door"]}, +{"id":"185607","label":"holding straw in front of sink","template":"Holding [something] in front of [something]","placeholders":["straw","sink"]}, +{"id":"27569","label":"throwing pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pillow"]}, +{"id":"121203","label":"taking book out of backpack","template":"Taking [something] out of [something]","placeholders":["book","backpack"]}, +{"id":"9239","label":"tipping can over","template":"Tipping [something] over","placeholders":["can"]}, +{"id":"154513","label":"opening lipstick","template":"Opening [something]","placeholders":["lipstick"]}, +{"id":"191567","label":"taking knife","template":"Taking [one of many similar things on the table]","placeholders":["knife"]}, +{"id":"16725","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"54945","label":"pushing scissors from left to right","template":"Pushing [something] from left to right","placeholders":["scissors"]}, +{"id":"72364","label":"squeezing a swiss army knife","template":"Squeezing [something]","placeholders":["a swiss army knife"]}, +{"id":"28799","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"217399","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"204638","label":"aqua colliding with aqua and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["aqua","aqua"]}, +{"id":"215093","label":"letting a jar roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a jar"]}, +{"id":"132915","label":"dropping a matchbox onto a comb","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a comb"]}, +{"id":"71345","label":"showing photo to the camera","template":"Showing [something] to the camera","placeholders":["photo"]}, +{"id":"2342","label":"dropping cat onto cube","template":"Dropping [something] onto [something]","placeholders":["cat","cube"]}, +{"id":"141321","label":"taking garlic","template":"Taking [one of many similar things on the table]","placeholders":["garlic"]}, +{"id":"201906","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"101578","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"101394","label":"turning the camera downwards while filming scissors","template":"Turning the camera downwards while filming [something]","placeholders":["scissors"]}, +{"id":"218001","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"28687","label":"pushing small gear wheel from right to left","template":"Pushing [something] from right to left","placeholders":["small gear wheel"]}, +{"id":"6383","label":"stacking 4 envelopes","template":"Stacking [number of] [something]","placeholders":["4","envelopes"]}, +{"id":"32706","label":"twisting an apple","template":"Twisting [something]","placeholders":["an apple"]}, +{"id":"186664","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"121894","label":"showing a photo of man and a horse to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man and a horse"]}, +{"id":"9900","label":"tearing brochure into two pieces","template":"Tearing [something] into two pieces","placeholders":["brochure"]}, +{"id":"38085","label":"pulling anchor from right to left","template":"Pulling [something] from right to left","placeholders":["anchor"]}, +{"id":"58864","label":"holding onion behind mug","template":"Holding [something] behind [something]","placeholders":["onion","mug"]}, +{"id":"176035","label":"poking glasses box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glasses box"]}, +{"id":"39063","label":"tipping an empty water bottle over","template":"Tipping [something] over","placeholders":["an empty water bottle"]}, +{"id":"18604","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"116797","label":"picking plastic basket up","template":"Picking [something] up","placeholders":["plastic basket"]}, +{"id":"57322","label":"poking a mug so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a mug"]}, +{"id":"89713","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"51585","label":"holding keyboard behind 3g dongle","template":"Holding [something] behind [something]","placeholders":["keyboard","3g dongle"]}, +{"id":"132724","label":"holding paper over candle","template":"Holding [something] over [something]","placeholders":["paper","candle"]}, +{"id":"67512","label":"uncovering waterbottle","template":"Uncovering [something]","placeholders":["waterbottle"]}, +{"id":"102347","label":"letting small bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["small bottle"]}, +{"id":"173148","label":"pushing something from left to right","template":"Pushing [something] from left to right","placeholders":["something"]}, +{"id":"98174","label":"putting a tape upright on the table","template":"Putting [something] upright on the table","placeholders":["a tape"]}, +{"id":"122967","label":"turning waterbottle upside down","template":"Turning [something] upside down","placeholders":["waterbottle"]}, +{"id":"102714","label":"opening notebook","template":"Opening [something]","placeholders":["notebook"]}, +{"id":"4420","label":"turning the camera right while filming sandals","template":"Turning the camera right while filming [something]","placeholders":["sandals"]}, +{"id":"15567","label":"dropping lighter behind box","template":"Dropping [something] behind [something]","placeholders":["lighter","box"]}, +{"id":"92811","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"102777","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"54595","label":"moving red object up","template":"Moving [something] up","placeholders":["red object"]}, +{"id":"9011","label":"poking baby toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["baby toy"]}, +{"id":"94610","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"213048","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"104330","label":"lifting a surface with ring on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ring"]}, +{"id":"17547","label":"moving scissors away from a box","template":"Moving [something] away from [something]","placeholders":["scissors","a box"]}, +{"id":"4720","label":"pouring water into a bowl until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a bowl"]}, +{"id":"34858","label":"pushing apple so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["apple"]}, +{"id":"192198","label":"moving away from hat with your camera","template":"Moving away from [something] with your camera","placeholders":["hat"]}, +{"id":"206519","label":"turning the camera right while filming wastebin","template":"Turning the camera right while filming [something]","placeholders":["wastebin"]}, +{"id":"115917","label":"showing big bowl to the camera","template":"Showing [something] to the camera","placeholders":["big bowl"]}, +{"id":"68993","label":"taking ball","template":"Taking [one of many similar things on the table]","placeholders":["ball"]}, +{"id":"72492","label":"pretending to be tearing pillow","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pillow"]}, +{"id":"198750","label":"moving jar and bowl so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["jar","bowl"]}, +{"id":"160141","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"153598","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"38956","label":"stuffing cloth into jar","template":"Stuffing [something] into [something]","placeholders":["cloth","jar"]}, +{"id":"175751","label":"uncovering a can","template":"Uncovering [something]","placeholders":["a can"]}, +{"id":"51038","label":"moving remote away from remote","template":"Moving [something] away from [something]","placeholders":["remote","remote"]}, +{"id":"65838","label":"pretending to open the bathroom cabinet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the bathroom cabinet"]}, +{"id":"71540","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"197098","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"25173","label":"spinning mobile phone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["mobile phone"]}, +{"id":"57157","label":"throwing sandal against floor","template":"Throwing [something] against [something]","placeholders":["sandal","floor"]}, +{"id":"216535","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"218452","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"191690","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"195575","label":"putting a pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pen"]}, +{"id":"119916","label":"closing wallet","template":"Closing [something]","placeholders":["wallet"]}, +{"id":"77710","label":"pretending to close note book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["note book"]}, +{"id":"151204","label":"moving pendrive and eye kajal away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pendrive","eye kajal"]}, +{"id":"1764","label":"stuffing cloth into jar","template":"Stuffing [something] into [something]","placeholders":["cloth","jar"]}, +{"id":"163880","label":"holding headphone in front of laptop","template":"Holding [something] in front of [something]","placeholders":["headphone","laptop"]}, +{"id":"14242","label":"attaching carabiner to handle","template":"Attaching [something] to [something]","placeholders":["carabiner","handle"]}, +{"id":"11925","label":"dropping a pen into a box","template":"Dropping [something] into [something]","placeholders":["a pen","a box"]}, +{"id":"220473","label":"putting candy that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["candy"]}, +{"id":"133077","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"25820","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"90063","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"76797","label":"taking telephone receiver from table","template":"Taking [something] from [somewhere]","placeholders":["telephone receiver","table"]}, +{"id":"101223","label":"a block falling like a rock","template":"[Something] falling like a rock","placeholders":["a block"]}, +{"id":"179977","label":"pretending to poke a drum","template":"Pretending to poke [something]","placeholders":["a drum"]}, +{"id":"94801","label":"removing napkin holder, revealing salt and pepper behind","template":"Removing [something], revealing [something] behind","placeholders":["napkin holder","salt and pepper"]}, +{"id":"133517","label":"wiping toothpaste off of notepad","template":"Wiping [something] off of [something]","placeholders":["toothpaste","notepad"]}, +{"id":"115750","label":"putting a pillow that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a pillow"]}, +{"id":"139242","label":"pushing notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["notebook"]}, +{"id":"173775","label":"stuffing a scarf into a helmet","template":"Stuffing [something] into [something]","placeholders":["a scarf","a helmet"]}, +{"id":"171355","label":"pretending to pick a stapler up","template":"Pretending to pick [something] up","placeholders":["a stapler"]}, +{"id":"211062","label":"taking plastic skull","template":"Taking [one of many similar things on the table]","placeholders":["plastic skull"]}, +{"id":"138308","label":"moving candle and candle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["candle","candle"]}, +{"id":"214999","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"139344","label":"pulling a calculator from left to right","template":"Pulling [something] from left to right","placeholders":["a calculator"]}, +{"id":"132487","label":"pushing a cloth clip from right to left","template":"Pushing [something] from right to left","placeholders":["a cloth clip"]}, +{"id":"127399","label":"tilting paper with paper ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","paper ball"]}, +{"id":"119151","label":"putting a portable lamp upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a portable lamp"]}, +{"id":"129899","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"205794","label":"putting dvd case on a surface","template":"Putting [something] on a surface","placeholders":["dvd case"]}, +{"id":"184002","label":"trying but failing to attach a paper to a wooden surface because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","a wooden surface"]}, +{"id":"63842","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"80435","label":"pretending to put rubber into mug","template":"Pretending to put [something] into [something]","placeholders":["rubber","mug"]}, +{"id":"206077","label":"putting paper clip","template":"Putting [something similar to other things that are already on the table]","placeholders":["paper clip"]}, +{"id":"65777","label":"lifting a surface with lid on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["lid"]}, +{"id":"203989","label":"moving eraser and glue stick closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eraser","glue stick"]}, +{"id":"193728","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"65064","label":"showing that a trashcan is empty","template":"Showing that [something] is empty","placeholders":["a trashcan"]}, +{"id":"149423","label":"moving toy closer to clip","template":"Moving [something] closer to [something]","placeholders":["toy","clip"]}, +{"id":"139264","label":"pushing android phone so it spins","template":"Pushing [something] so it spins","placeholders":["android phone"]}, +{"id":"4331","label":"turning white out upside down","template":"Turning [something] upside down","placeholders":["white out"]}, +{"id":"213396","label":"showing that something is empty is empty","template":"Showing that [something] is empty","placeholders":["something is empty"]}, +{"id":"53345","label":"covering waterbottle with blanket","template":"Covering [something] with [something]","placeholders":["waterbottle","blanket"]}, +{"id":"142546","label":"showing usb to the camera","template":"Showing [something] to the camera","placeholders":["usb"]}, +{"id":"39875","label":"turning the camera right while filming toy giraffe","template":"Turning the camera right while filming [something]","placeholders":["toy giraffe"]}, +{"id":"135849","label":"throwing broken charger","template":"Throwing [something]","placeholders":["broken charger"]}, +{"id":"89443","label":"moving a cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cup"]}, +{"id":"214050","label":"pulling mouse from left to right","template":"Pulling [something] from left to right","placeholders":["mouse"]}, +{"id":"82015","label":"opening table drawer","template":"Opening [something]","placeholders":["table drawer"]}, +{"id":"77655","label":"pretending to close notebook without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notebook"]}, +{"id":"161938","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"24069","label":"pouring water onto wooden floor","template":"Pouring [something] onto [something]","placeholders":["water","wooden floor"]}, +{"id":"49858","label":"moving red pot holder up","template":"Moving [something] up","placeholders":["red pot holder"]}, +{"id":"62529","label":"dropping biscuit packet next to water-bottle","template":"Dropping [something] next to [something]","placeholders":["biscuit packet","water-bottle"]}, +{"id":"65409","label":"poking a stack of coasters without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["coasters"]}, +{"id":"96827","label":"twisting a towel","template":"Twisting [something]","placeholders":["a towel"]}, +{"id":"186931","label":"folding calendar","template":"Folding [something]","placeholders":["calendar"]}, +{"id":"53506","label":"unfolding sheet","template":"Unfolding [something]","placeholders":["sheet"]}, +{"id":"41755","label":"lifting a cantaloupe up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a cantaloupe"]}, +{"id":"99788","label":"putting book next to box","template":"Putting [something] next to [something]","placeholders":["book","box"]}, +{"id":"61137","label":"showing a tissue box next to a mug","template":"Showing [something] next to [something]","placeholders":["a tissue box","a mug"]}, +{"id":"80290","label":"trying but failing to attach plastic to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["plastic","wall"]}, +{"id":"180401","label":"pushing food container so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["food container"]}, +{"id":"171136","label":"picking eraser up","template":"Picking [something] up","placeholders":["eraser"]}, +{"id":"84354","label":"moving a pencil away from scissors","template":"Moving [something] away from [something]","placeholders":["a pencil","scissors"]}, +{"id":"119099","label":"hitting bed with belt","template":"Hitting [something] with [something]","placeholders":["bed","belt"]}, +{"id":"158294","label":"pushing clip box from right to left","template":"Pushing [something] from right to left","placeholders":["clip box"]}, +{"id":"88347","label":"closing purse","template":"Closing [something]","placeholders":["purse"]}, +{"id":"146130","label":"laying a salt shaker on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a salt shaker"]}, +{"id":"208669","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"77457","label":"opening a container","template":"Opening [something]","placeholders":["a container"]}, +{"id":"74201","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"28216","label":"turning coffee kuerig cup upside down","template":"Turning [something] upside down","placeholders":["coffee kuerig cup"]}, +{"id":"135785","label":"lifting box with pen on it","template":"Lifting [something] with [something] on it","placeholders":["box","pen"]}, +{"id":"31720","label":"pushing cable so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cable"]}, +{"id":"202743","label":"pretending to sprinkle air onto a cracker","template":"Pretending to sprinkle air onto [something]","placeholders":["a cracker"]}, +{"id":"53562","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"123960","label":"dropping scoop next to canister","template":"Dropping [something] next to [something]","placeholders":["scoop","canister"]}, +{"id":"194068","label":"showing soft tissue roll to the camera","template":"Showing [something] to the camera","placeholders":["soft tissue roll"]}, +{"id":"109720","label":"lifting up one end of a wooden stick without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a wooden stick"]}, +{"id":"16231","label":"pretending to pick glass up","template":"Pretending to pick [something] up","placeholders":["glass"]}, +{"id":"32452","label":"turning a pill bottle upside down","template":"Turning [something] upside down","placeholders":["a pill bottle"]}, +{"id":"26899","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"177191","label":"closing hotbox","template":"Closing [something]","placeholders":["hotbox"]}, +{"id":"172001","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"56752","label":"throwing dust mask in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["dust mask"]}, +{"id":"179142","label":"orange in the sink5 falling like a rock","template":"[Something] falling like a rock","placeholders":["orange in the sink5"]}, +{"id":"48452","label":"pretending to put clothes peg into mug","template":"Pretending to put [something] into [something]","placeholders":["clothes peg","mug"]}, +{"id":"17833","label":"pulling glas from left to right","template":"Pulling [something] from left to right","placeholders":["glas"]}, +{"id":"23202","label":"pulling remote from right to left","template":"Pulling [something] from right to left","placeholders":["remote"]}, +{"id":"169396","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"78795","label":"pulling a book out of a gym bag","template":"Pulling [something] out of [something]","placeholders":["a book","a gym bag"]}, +{"id":"148464","label":"taking teabag out of tin","template":"Taking [something] out of [something]","placeholders":["teabag","tin"]}, +{"id":"91704","label":"putting perfume on a surface","template":"Putting [something] on a surface","placeholders":["perfume"]}, +{"id":"53957","label":"moving banana closer to shoe","template":"Moving [something] closer to [something]","placeholders":["banana","shoe"]}, +{"id":"198453","label":"pretending to pick soap bar up","template":"Pretending to pick [something] up","placeholders":["soap bar"]}, +{"id":"33816","label":"putting crystal","template":"Putting [something similar to other things that are already on the table]","placeholders":["crystal"]}, +{"id":"23275","label":"poking prescription so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["prescription"]}, +{"id":"192617","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"63861","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"144753","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"40909","label":"letting a bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a bottle"]}, +{"id":"152747","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"54561","label":"pretending to put bottle onto book","template":"Pretending to put [something] onto [something]","placeholders":["bottle","book"]}, +{"id":"20872","label":"putting ipad upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["ipad"]}, +{"id":"188211","label":"letting a ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a ball"]}, +{"id":"137455","label":"lifting a surface with ball on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ball"]}, +{"id":"210611","label":"letting a container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a container"]}, +{"id":"158625","label":"tearing a flyer just a little bit","template":"Tearing [something] just a little bit","placeholders":["a flyer"]}, +{"id":"148722","label":"putting book next to other books","template":"Putting [something] next to [something]","placeholders":["book","other books"]}, +{"id":"185049","label":"putting 2 toy wheels onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","toy wheels","yellow note"]}, +{"id":"148071","label":"squeezing newspaper","template":"Squeezing [something]","placeholders":["newspaper"]}, +{"id":"203253","label":"twisting a doorknob","template":"Twisting [something]","placeholders":["a doorknob"]}, +{"id":"87836","label":"showing a book behind ink bottle","template":"Showing [something] behind [something]","placeholders":["a book","ink bottle"]}, +{"id":"15767","label":"tilting a purse with a piece of clothing on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a purse","a piece of clothing"]}, +{"id":"16584","label":"poking a hole into paper","template":"Poking a hole into [something soft]","placeholders":["paper"]}, +{"id":"55971","label":"moving sponge and nail clipper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["sponge","nail clipper"]}, +{"id":"164445","label":"putting an apple next to a glass","template":"Putting [something] next to [something]","placeholders":["an apple","a glass"]}, +{"id":"136803","label":"blue marble colliding with red marble and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["blue marble","red marble"]}, +{"id":"50909","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"157212","label":"tearing a shuttle cock just a little bit","template":"Tearing [something] just a little bit","placeholders":["a shuttle cock"]}, +{"id":"69444","label":"sprinkling something onto something","template":"Sprinkling [something] onto [something]","placeholders":["something","something"]}, +{"id":"1571","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"219699","label":"lifting a tote bag up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a tote bag"]}, +{"id":"108657","label":"plugging usb bluetooth into usb port","template":"Plugging [something] into [something]","placeholders":["usb bluetooth","usb port"]}, +{"id":"163271","label":"dropping bottle onto chair","template":"Dropping [something] onto [something]","placeholders":["bottle","chair"]}, +{"id":"98509","label":"putting book next to book","template":"Putting [something] next to [something]","placeholders":["book","book"]}, +{"id":"47827","label":"showing phone behind screen","template":"Showing [something] behind [something]","placeholders":["phone","screen"]}, +{"id":"163545","label":"taking one of the lip glosses from the table","template":"Taking [one of many similar things on the table]","placeholders":["one of the lip glosses from the table"]}, +{"id":"65141","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"45627","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"57337","label":"moving ruler down","template":"Moving [something] down","placeholders":["ruler"]}, +{"id":"218338","label":"laying moisturizer on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["moisturizer"]}, +{"id":"166647","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"216460","label":"covering paste with box","template":"Covering [something] with [something]","placeholders":["paste","box"]}, +{"id":"84977","label":"throwing pen against water bottle","template":"Throwing [something] against [something]","placeholders":["pen","water bottle"]}, +{"id":"220728","label":"trying to bend knife so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["knife"]}, +{"id":"128976","label":"opening a window","template":"Opening [something]","placeholders":["a window"]}, +{"id":"1071","label":"pretending to put a bowl on a surface","template":"Pretending to put [something] on a surface","placeholders":["a bowl"]}, +{"id":"90926","label":"closing a note book","template":"Closing [something]","placeholders":["a note book"]}, +{"id":"27944","label":"pretending to pick toothbrush up","template":"Pretending to pick [something] up","placeholders":["toothbrush"]}, +{"id":"124577","label":"dropping wrist-watch in front of plastic-container","template":"Dropping [something] in front of [something]","placeholders":["wrist-watch","plastic-container"]}, +{"id":"36281","label":"showing bus waiting shulter to the camera","template":"Showing [something] to the camera","placeholders":["bus waiting shulter"]}, +{"id":"43317","label":"spilling water next to a card","template":"Spilling [something] next to [something]","placeholders":["water","a card"]}, +{"id":"108177","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"215636","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"178760","label":"putting one spray bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["one spray bottle"]}, +{"id":"120528","label":"pushing duster so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["duster"]}, +{"id":"49583","label":"lifting mobile phone with ipod on it","template":"Lifting [something] with [something] on it","placeholders":["mobile phone","ipod"]}, +{"id":"83918","label":"bending a fork so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fork"]}, +{"id":"46969","label":"moving lighter closer to book","template":"Moving [something] closer to [something]","placeholders":["lighter","book"]}, +{"id":"38730","label":"plugging cable into power adapter","template":"Plugging [something] into [something]","placeholders":["cable","power adapter"]}, +{"id":"1697","label":"approaching waist basket with your camera","template":"Approaching [something] with your camera","placeholders":["waist basket"]}, +{"id":"141742","label":"putting camphor packet next to sugar bottle","template":"Putting [something] next to [something]","placeholders":["camphor packet","sugar bottle"]}, +{"id":"65851","label":"pretending or failing to wipe spot off of cow","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["spot","cow"]}, +{"id":"191998","label":"showing that dustbin is empty","template":"Showing that [something] is empty","placeholders":["dustbin"]}, +{"id":"126457","label":"putting pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pencil"]}, +{"id":"199705","label":"wiping ketchup off of surface","template":"Wiping [something] off of [something]","placeholders":["ketchup","surface"]}, +{"id":"47588","label":"spinning a ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a ball"]}, +{"id":"101554","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"200075","label":"poking teddy bear so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["teddy bear"]}, +{"id":"8900","label":"letting a wheel roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a wheel"]}, +{"id":"136661","label":"turning mobile phone upside down","template":"Turning [something] upside down","placeholders":["mobile phone"]}, +{"id":"21481","label":"putting pen into jar","template":"Putting [something] into [something]","placeholders":["pen","jar"]}, +{"id":"35645","label":"hitting pillow with fist","template":"Hitting [something] with [something]","placeholders":["pillow","fist"]}, +{"id":"141638","label":"lifting book with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["book","sunglasses"]}, +{"id":"110256","label":"dropping red hair band next to diary","template":"Dropping [something] next to [something]","placeholders":["red hair band","diary"]}, +{"id":"181940","label":"holding deodorant in front of box","template":"Holding [something] in front of [something]","placeholders":["deodorant","box"]}, +{"id":"173850","label":"pretending to sprinkle air onto the table","template":"Pretending to sprinkle air onto [something]","placeholders":["the table"]}, +{"id":"202211","label":"turning the camera left while filming window view","template":"Turning the camera left while filming [something]","placeholders":["window view"]}, +{"id":"57771","label":"moving a toy and another toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a toy","another toy"]}, +{"id":"169918","label":"tilting paper with coins on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","coins"]}, +{"id":"142814","label":"putting a calculator in front of stapler cover","template":"Putting [something] in front of [something]","placeholders":["a calculator","stapler cover"]}, +{"id":"7664","label":"turning the camera upwards while filming ceiling","template":"Turning the camera upwards while filming [something]","placeholders":["ceiling"]}, +{"id":"177182","label":"moving rectangular box and ramekin closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["rectangular box","ramekin"]}, +{"id":"193578","label":"stuffing pens into box","template":"Stuffing [something] into [something]","placeholders":["pens","box"]}, +{"id":"88885","label":"holding keys in front of a plant","template":"Holding [something] in front of [something]","placeholders":["keys","a plant"]}, +{"id":"113521","label":"putting color pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["color pencil"]}, +{"id":"152458","label":"bending a paper heart so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper heart"]}, +{"id":"136491","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"135323","label":"folding an envelope","template":"Folding [something]","placeholders":["an envelope"]}, +{"id":"172920","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"78443","label":"holding sock next to small pillow","template":"Holding [something] next to [something]","placeholders":["sock","small pillow"]}, +{"id":"145553","label":"showing a bird behind a lamp","template":"Showing [something] behind [something]","placeholders":["a bird","a lamp"]}, +{"id":"39700","label":"putting book behind book","template":"Putting [something] behind [something]","placeholders":["book","book"]}, +{"id":"167988","label":"folding duppatta","template":"Folding [something]","placeholders":["duppatta"]}, +{"id":"85236","label":"pretending to be tearing ruler","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ruler"]}, +{"id":"165698","label":"crackers colliding with crackers and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["crackers","crackers"]}, +{"id":"81176","label":"pretending to spread air onto curtain","template":"Pretending to spread air onto [something]","placeholders":["curtain"]}, +{"id":"101194","label":"dropping yellow ball into orange cup","template":"Dropping [something] into [something]","placeholders":["yellow ball","orange cup"]}, +{"id":"123037","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"189335","label":"dropping coin onto cloth","template":"Dropping [something] onto [something]","placeholders":["coin","cloth"]}, +{"id":"194411","label":"plugging electrical plug into wall socket","template":"Plugging [something] into [something]","placeholders":["electrical plug","wall socket"]}, +{"id":"32036","label":"showing that a bucket is empty","template":"Showing that [something] is empty","placeholders":["a bucket"]}, +{"id":"219270","label":"approaching sandal with your camera","template":"Approaching [something] with your camera","placeholders":["sandal"]}, +{"id":"28528","label":"pulling glasses from right to left","template":"Pulling [something] from right to left","placeholders":["glasses"]}, +{"id":"94236","label":"removing a large measuring cup, revealing a small measuring cup behind","template":"Removing [something], revealing [something] behind","placeholders":["a large measuring cup","a small measuring cup"]}, +{"id":"33079","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"82425","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"136393","label":"pushing a deck of cards so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a deck of cards"]}, +{"id":"77933","label":"lifting a toy plane with a sharpener on it","template":"Lifting [something] with [something] on it","placeholders":["a toy plane","a sharpener"]}, +{"id":"196089","label":"moving cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["cup"]}, +{"id":"197710","label":"holding a box behind a glass","template":"Holding [something] behind [something]","placeholders":["a box","a glass"]}, +{"id":"85244","label":"soda can colliding with deodarant and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["soda can","deodarant"]}, +{"id":"140034","label":"putting a makeup brush into a cup","template":"Putting [something] into [something]","placeholders":["a makeup brush","a cup"]}, +{"id":"95047","label":"moving a bolt down","template":"Moving [something] down","placeholders":["a bolt"]}, +{"id":"121054","label":"attaching a sticky paper to a wooden surface","template":"Attaching [something] to [something]","placeholders":["a sticky paper","a wooden surface"]}, +{"id":"197644","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"205025","label":"pretending to scoop ice cream up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["ice cream","spoon"]}, +{"id":"175235","label":"pretending to put a shoe behind the door","template":"Pretending to put [something] behind [something]","placeholders":["a shoe","the door"]}, +{"id":"64153","label":"putting little cup next to cat doll","template":"Putting [something] next to [something]","placeholders":["little cup","cat doll"]}, +{"id":"175088","label":"pushing a vase from left to right","template":"Pushing [something] from left to right","placeholders":["a vase"]}, +{"id":"155545","label":"lifting up one end of cotton, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["cotton"]}, +{"id":"182737","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"145367","label":"putting greetings card upright on the table","template":"Putting [something] upright on the table","placeholders":["greetings card"]}, +{"id":"38894","label":"throwing marker against guide","template":"Throwing [something] against [something]","placeholders":["marker","guide"]}, +{"id":"133571","label":"lifting toy with box on it","template":"Lifting [something] with [something] on it","placeholders":["toy","box"]}, +{"id":"68793","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"194076","label":"turning the camera left while filming aquarium","template":"Turning the camera left while filming [something]","placeholders":["aquarium"]}, +{"id":"154882","label":"bending a bottle of mineral water so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a bottle of mineral water"]}, +{"id":"119718","label":"showing dvd case to the camera","template":"Showing [something] to the camera","placeholders":["dvd case"]}, +{"id":"30402","label":"putting a jar upright on the table","template":"Putting [something] upright on the table","placeholders":["a jar"]}, +{"id":"158893","label":"moving mobile down","template":"Moving [something] down","placeholders":["mobile"]}, +{"id":"159257","label":"tipping a wine bottle over","template":"Tipping [something] over","placeholders":["a wine bottle"]}, +{"id":"84401","label":"turning plastic cup upside down","template":"Turning [something] upside down","placeholders":["plastic cup"]}, +{"id":"119528","label":"moving earpiece of sunglasses","template":"Moving [part] of [something]","placeholders":["earpiece","sunglasses"]}, +{"id":"155968","label":"poking a hole into a tissue","template":"Poking a hole into [some substance]","placeholders":["a tissue"]}, +{"id":"42780","label":"trying but failing to attach paper to a planner because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","a planner"]}, +{"id":"38735","label":"moving a bottle up","template":"Moving [something] up","placeholders":["a bottle"]}, +{"id":"97075","label":"putting battery upright on the table","template":"Putting [something] upright on the table","placeholders":["battery"]}, +{"id":"46978","label":"tilting plate with small bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","small bottle"]}, +{"id":"7505","label":"dropping a peanut into a bottle","template":"Dropping [something] into [something]","placeholders":["a peanut","a bottle"]}, +{"id":"198935","label":"touching (without moving) lid of lip gloss","template":"Touching (without moving) [part] of [something]","placeholders":["lid","lip gloss"]}, +{"id":"16459","label":"pushing shoe from right to left","template":"Pushing [something] from right to left","placeholders":["shoe"]}, +{"id":"212796","label":"lifting up one end of spectacle box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spectacle box"]}, +{"id":"73021","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"172641","label":"holding flower vase","template":"Holding [something]","placeholders":["flower vase"]}, +{"id":"140718","label":"poking a hole into napkin","template":"Poking a hole into [something soft]","placeholders":["napkin"]}, +{"id":"217892","label":"lifting calculator with scissor on it","template":"Lifting [something] with [something] on it","placeholders":["calculator","scissor"]}, +{"id":"211525","label":"pretending to pick paint up","template":"Pretending to pick [something] up","placeholders":["paint"]}, +{"id":"36400","label":"putting an owl upright on the table","template":"Putting [something] upright on the table","placeholders":["an owl"]}, +{"id":"108540","label":"dropping a tube of toothpaste in front of a mirror","template":"Dropping [something] in front of [something]","placeholders":["a tube of toothpaste","a mirror"]}, +{"id":"118062","label":"spinning \\\"plastic chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["\\\"plastic chair"]}, +{"id":"108727","label":"lifting a laptop box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a laptop box"]}, +{"id":"214998","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"73539","label":"pretending to poke a stack of dice","template":"Pretending to poke [something]","placeholders":["a stack of dice"]}, +{"id":"166020","label":"tearing plastic into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic"]}, +{"id":"108484","label":"putting wood box in front of phone","template":"Putting [something] in front of [something]","placeholders":["wood box","phone"]}, +{"id":"36803","label":"moving green toy car and red toy car closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["green toy car","red toy car"]}, +{"id":"162835","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"138381","label":"pretending or failing to wipe powder off of dining table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["powder","dining table"]}, +{"id":"151326","label":"a4 paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a4 paper"]}, +{"id":"31942","label":"putting jar behind monitor","template":"Putting [something] behind [something]","placeholders":["jar","monitor"]}, +{"id":"71016","label":"taking 1 jar away from other jars","template":"Taking [one of many similar things on the table]","placeholders":["1 jar away from other jars"]}, +{"id":"53962","label":"pretending to open a cap from a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cap from a bottle"]}, +{"id":"110148","label":"showing a book on top of hot pot","template":"Showing [something] on top of [something]","placeholders":["a book","hot pot"]}, +{"id":"143041","label":"pretending to put red pot holder on a surface","template":"Pretending to put [something] on a surface","placeholders":["red pot holder"]}, +{"id":"80147","label":"poking a hole into tissue","template":"Poking a hole into [something soft]","placeholders":["tissue"]}, +{"id":"64400","label":"pushing plushie so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["plushie"]}, +{"id":"111375","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"151752","label":"burying ball in towels","template":"Burying [something] in [something]","placeholders":["ball","towels"]}, +{"id":"442","label":"stuffing a towel into a drawer","template":"Stuffing [something] into [something]","placeholders":["a towel","a drawer"]}, +{"id":"106936","label":"pulling green hair comb from right to left","template":"Pulling [something] from right to left","placeholders":["green hair comb"]}, +{"id":"22840","label":"moving spoon rest away from stove eye","template":"Moving [something] away from [something]","placeholders":["spoon rest","stove eye"]}, +{"id":"172370","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"196566","label":"stuffing papers into purse","template":"Stuffing [something] into [something]","placeholders":["papers","purse"]}, +{"id":"180696","label":"showing a roll of paper behind a bowl","template":"Showing [something] behind [something]","placeholders":["a roll of paper","a bowl"]}, +{"id":"152059","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"88448","label":"showing a jar behind another jar","template":"Showing [something] behind [something]","placeholders":["a jar","another jar"]}, +{"id":"136558","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"86804","label":"putting key on a surface","template":"Putting [something] on a surface","placeholders":["key"]}, +{"id":"208266","label":"opening letter box","template":"Opening [something]","placeholders":["letter box"]}, +{"id":"220711","label":"pulling computer mouse onto pillow","template":"Pulling [something] onto [something]","placeholders":["computer mouse","pillow"]}, +{"id":"25983","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"199375","label":"pushing revolving table top so it spins","template":"Pushing [something] so it spins","placeholders":["revolving table top"]}, +{"id":"107779","label":"spinning a pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pencil"]}, +{"id":"39273","label":"putting one coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["one coin"]}, +{"id":"107953","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"91549","label":"putting wallet onto paper so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["wallet","paper"]}, +{"id":"125709","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"116063","label":"putting a textbook in front of a coin","template":"Putting [something] in front of [something]","placeholders":["a textbook","a coin"]}, +{"id":"171833","label":"pretending to throw pen","template":"Pretending to throw [something]","placeholders":["pen"]}, +{"id":"19036","label":"removing lidded coffee cup, revealing small red cup behind","template":"Removing [something], revealing [something] behind","placeholders":["lidded coffee cup","small red cup"]}, +{"id":"9672","label":"throwing a pillow","template":"Throwing [something]","placeholders":["a pillow"]}, +{"id":"111194","label":"twisting a piece of paper","template":"Twisting [something]","placeholders":["a piece of paper"]}, +{"id":"29810","label":"uncovering bed","template":"Uncovering [something]","placeholders":["bed"]}, +{"id":"55903","label":"pretending to poke a cat","template":"Pretending to poke [something]","placeholders":["a cat"]}, +{"id":"57454","label":"letting lipstick roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["lipstick"]}, +{"id":"19486","label":"picking glass up","template":"Picking [something] up","placeholders":["glass"]}, +{"id":"148396","label":"putting red chilli","template":"Putting [something similar to other things that are already on the table]","placeholders":["red chilli"]}, +{"id":"46541","label":"a pen being deflected from a mug","template":"[Something] being deflected from [something]","placeholders":["a pen","a mug"]}, +{"id":"25277","label":"holding a soap dispenser in front of keys","template":"Holding [something] in front of [something]","placeholders":["a soap dispenser","keys"]}, +{"id":"86207","label":"putting 2 pencil sharpners onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","pencil sharpners","black pouch"]}, +{"id":"3904","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"176413","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"61965","label":"a napking falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a napking"]}, +{"id":"8941","label":"moving powerbank down","template":"Moving [something] down","placeholders":["powerbank"]}, +{"id":"180665","label":"spinning marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker"]}, +{"id":"133752","label":"letting can of coke roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["can of coke"]}, +{"id":"3928","label":"turning the camera left while filming rice cooker","template":"Turning the camera left while filming [something]","placeholders":["rice cooker"]}, +{"id":"24026","label":"pretending to put glasses on a surface","template":"Pretending to put [something] on a surface","placeholders":["glasses"]}, +{"id":"125103","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"53872","label":"poking a bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bottle"]}, +{"id":"11069","label":"key falling like a rock","template":"[Something] falling like a rock","placeholders":["key"]}, +{"id":"106612","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"194620","label":"spreading kercief onto rubix cube","template":"Spreading [something] onto [something]","placeholders":["kercief","rubix cube"]}, +{"id":"4362","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"108304","label":"pretending to be tearing cloth that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth that is not tearable"]}, +{"id":"129592","label":"stuffing book into backpack","template":"Stuffing [something] into [something]","placeholders":["book","backpack"]}, +{"id":"147091","label":"showing gate to the camera","template":"Showing [something] to the camera","placeholders":["gate"]}, +{"id":"4466","label":"a steel ball colliding with a steel ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a steel ball","a steel ball"]}, +{"id":"56755","label":"lemon falling like a rock","template":"[Something] falling like a rock","placeholders":["lemon"]}, +{"id":"178174","label":"spreading peanut butter onto bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","bread"]}, +{"id":"79720","label":"holding wire in front of wall","template":"Holding [something] in front of [something]","placeholders":["wire","wall"]}, +{"id":"211303","label":"approaching purple microfiber with your camera","template":"Approaching [something] with your camera","placeholders":["purple microfiber"]}, +{"id":"194327","label":"lifting a phone with a spinner on it","template":"Lifting [something] with [something] on it","placeholders":["a phone","a spinner"]}, +{"id":"179226","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"174610","label":"pushing flowers so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["flowers"]}, +{"id":"105854","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"87619","label":"squeezing green water bottle","template":"Squeezing [something]","placeholders":["green water bottle"]}, +{"id":"78820","label":"putting box, handphone and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","handphone","pen"]}, +{"id":"45343","label":"spreading butter onto cracker","template":"Spreading [something] onto [something]","placeholders":["butter","cracker"]}, +{"id":"65518","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"2784","label":"taking a stone","template":"Taking [one of many similar things on the table]","placeholders":["a stone"]}, +{"id":"68397","label":"showing water bottle to the camera","template":"Showing [something] to the camera","placeholders":["water bottle"]}, +{"id":"115868","label":"turning the camera upwards while filming bullet bike","template":"Turning the camera upwards while filming [something]","placeholders":["bullet bike"]}, +{"id":"189082","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"158563","label":"turning the camera left while filming animals","template":"Turning the camera left while filming [something]","placeholders":["animals"]}, +{"id":"64793","label":"stuffing book into bag","template":"Stuffing [something] into [something]","placeholders":["book","bag"]}, +{"id":"196867","label":"plugging alarm clock into wall outlet","template":"Plugging [something] into [something]","placeholders":["alarm clock","wall outlet"]}, +{"id":"10402","label":"pretending to pick ball up","template":"Pretending to pick [something] up","placeholders":["ball"]}, +{"id":"113160","label":"dropping a toothpick onto a matchbox","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a matchbox"]}, +{"id":"148629","label":"putting 3 soda pop cans onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","soda pop cans","table"]}, +{"id":"105846","label":"moving a water bottle and a book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a water bottle","a book"]}, +{"id":"84606","label":"turning purple balloon pump upside down","template":"Turning [something] upside down","placeholders":["purple balloon pump"]}, +{"id":"164238","label":"squeezing playdoh","template":"Squeezing [something]","placeholders":["playdoh"]}, +{"id":"16778","label":"picking a ball up","template":"Picking [something] up","placeholders":["a ball"]}, +{"id":"126256","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"212301","label":"pushing green hair comb from left to right","template":"Pushing [something] from left to right","placeholders":["green hair comb"]}, +{"id":"39039","label":"tipping a pen over","template":"Tipping [something] over","placeholders":["a pen"]}, +{"id":"208446","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"193490","label":"stuffing paper towels into a drawer","template":"Stuffing [something] into [something]","placeholders":["paper towels","a drawer"]}, +{"id":"101232","label":"putting paper towel roll on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["paper towel roll"]}, +{"id":"138138","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"26118","label":"moving candle and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["candle","a box"]}, +{"id":"14361","label":"pushing deodorant so it spins","template":"Pushing [something] so it spins","placeholders":["deodorant"]}, +{"id":"110785","label":"showing a cup behind a cup","template":"Showing [something] behind [something]","placeholders":["a cup","a cup"]}, +{"id":"123912","label":"newspaper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["newspaper"]}, +{"id":"133709","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"96919","label":"moving a pen and a ruler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a ruler"]}, +{"id":"124722","label":"letting container roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["container"]}, +{"id":"145870","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"10753","label":"sprinkling glitter onto paper plate","template":"Sprinkling [something] onto [something]","placeholders":["glitter","paper plate"]}, +{"id":"12384","label":"covering kettle with cap","template":"Covering [something] with [something]","placeholders":["kettle","cap"]}, +{"id":"201252","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"137974","label":"bending a rod so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a rod"]}, +{"id":"184924","label":"pen colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pen","pen"]}, +{"id":"173130","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"187078","label":"pillow falling like a rock","template":"[Something] falling like a rock","placeholders":["pillow"]}, +{"id":"78483","label":"pretending to open snacks-box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["snacks-box"]}, +{"id":"64279","label":"showing casual hat to the camera","template":"Showing [something] to the camera","placeholders":["casual hat"]}, +{"id":"56607","label":"dropping phone case next to crayon","template":"Dropping [something] next to [something]","placeholders":["phone case","crayon"]}, +{"id":"168893","label":"bending a cup until it breaks","template":"Bending [something] until it breaks","placeholders":["a cup"]}, +{"id":"165231","label":"moving hair comb up","template":"Moving [something] up","placeholders":["hair comb"]}, +{"id":"79033","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"101677","label":"tilting spiral pad notebook with watch on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["spiral pad notebook","watch"]}, +{"id":"161614","label":"putting 1 book onto pillow","template":"Putting [number of] [something] onto [something]","placeholders":["1","book","pillow"]}, +{"id":"191439","label":"turning a tv remote upside down","template":"Turning [something] upside down","placeholders":["a tv remote"]}, +{"id":"193208","label":"pulling two ends of knife but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["knife"]}, +{"id":"206759","label":"pretending to put brush on a surface","template":"Pretending to put [something] on a surface","placeholders":["brush"]}, +{"id":"201433","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"217590","label":"uncovering sunglasses","template":"Uncovering [something]","placeholders":["sunglasses"]}, +{"id":"218219","label":"a packet falling like a rock","template":"[Something] falling like a rock","placeholders":["a packet"]}, +{"id":"209561","label":"pretending to pick nailpolish up","template":"Pretending to pick [something] up","placeholders":["nailpolish"]}, +{"id":"49407","label":"putting a figure into a box","template":"Putting [something] into [something]","placeholders":["a figure","a box"]}, +{"id":"205391","label":"tearing a tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["a tissue"]}, +{"id":"130343","label":"opening a vape battery box","template":"Opening [something]","placeholders":["a vape battery box"]}, +{"id":"169038","label":"tissue box falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue box"]}, +{"id":"160315","label":"pushing spray can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spray can"]}, +{"id":"124642","label":"approaching white brick with your camera","template":"Approaching [something] with your camera","placeholders":["white brick"]}, +{"id":"61237","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"79001","label":"bending branch until it breaks","template":"Bending [something] until it breaks","placeholders":["branch"]}, +{"id":"160034","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"49220","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"70171","label":"moving a roll of tissue and a comb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a roll of tissue","a comb"]}, +{"id":"60325","label":"bending fragrance stick until it breaks","template":"Bending [something] until it breaks","placeholders":["fragrance stick"]}, +{"id":"46492","label":"taking pen out of glass","template":"Taking [something] out of [something]","placeholders":["pen","glass"]}, +{"id":"21642","label":"covering bottle with jacket","template":"Covering [something] with [something]","placeholders":["bottle","jacket"]}, +{"id":"84073","label":"touching (without moving) cover of pan","template":"Touching (without moving) [part] of [something]","placeholders":["cover","pan"]}, +{"id":"19555","label":"lifting jar with folder on it","template":"Lifting [something] with [something] on it","placeholders":["jar","folder"]}, +{"id":"11864","label":"adapter falling like a rock","template":"[Something] falling like a rock","placeholders":["adapter"]}, +{"id":"113531","label":"closing a dvd","template":"Closing [something]","placeholders":["a dvd"]}, +{"id":"111069","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"70677","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"172598","label":"closing cd box","template":"Closing [something]","placeholders":["cd box"]}, +{"id":"218702","label":"uncovering cellphone","template":"Uncovering [something]","placeholders":["cellphone"]}, +{"id":"116184","label":"moving milk away from knife","template":"Moving [something] away from [something]","placeholders":["milk","knife"]}, +{"id":"190186","label":"showing a pillow behind a water bottle","template":"Showing [something] behind [something]","placeholders":["a pillow","a water bottle"]}, +{"id":"153694","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"148204","label":"putting plastic chip","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic chip"]}, +{"id":"123574","label":"putting another pen on the floor","template":"Putting [something similar to other things that are already on the table]","placeholders":["another pen on the floor"]}, +{"id":"143160","label":"moving hand cream and banana away from each other","template":"Moving [something] and [something] away from each other","placeholders":["hand cream","banana"]}, +{"id":"209695","label":"holding folder with documents over ebook","template":"Holding [something] over [something]","placeholders":["folder with documents","ebook"]}, +{"id":"22257","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185538","label":"pretending to close mascara without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["mascara"]}, +{"id":"214513","label":"taking ironbox from table","template":"Taking [something] from [somewhere]","placeholders":["ironbox","table"]}, +{"id":"199886","label":"moving triangle and pen so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["triangle","pen"]}, +{"id":"48318","label":"spinning a boiled egg so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a boiled egg"]}, +{"id":"187937","label":"taking one of many biscuits","template":"Taking [one of many similar things on the table]","placeholders":["one of many biscuits"]}, +{"id":"91527","label":"taking a ukulele out of the case","template":"Taking [something] out of [something]","placeholders":["a ukulele","the case"]}, +{"id":"143962","label":"covering headphone with hand","template":"Covering [something] with [something]","placeholders":["headphone","hand"]}, +{"id":"169616","label":"plugging phone into usb","template":"Plugging [something] into [something]","placeholders":["phone","usb"]}, +{"id":"2031","label":"pretending to put colorful scarf on a surface","template":"Pretending to put [something] on a surface","placeholders":["colorful scarf"]}, +{"id":"29620","label":"covering rubix cube with white hand kerchief","template":"Covering [something] with [something]","placeholders":["rubix cube","white hand kerchief"]}, +{"id":"163636","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"186090","label":"turning the camera upwards while filming laterate stone","template":"Turning the camera upwards while filming [something]","placeholders":["laterate stone"]}, +{"id":"148558","label":"coin falling like a rock","template":"[Something] falling like a rock","placeholders":["coin"]}, +{"id":"93744","label":"poking poking plastic spray once so that it slightly moves so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["poking plastic spray once so that it slightly moves"]}, +{"id":"49702","label":"moving remote closer to pen/marker","template":"Moving [something] closer to [something]","placeholders":["remote","pen/marker"]}, +{"id":"133971","label":"squeezing waterbottle","template":"Squeezing [something]","placeholders":["waterbottle"]}, +{"id":"173571","label":"tipping nail polish over","template":"Tipping [something] over","placeholders":["nail polish"]}, +{"id":"40186","label":"covering legs with blanket","template":"Covering [something] with [something]","placeholders":["legs","blanket"]}, +{"id":"215258","label":"pretending to take a jar out of a shelf","template":"Pretending to take [something] out of [something]","placeholders":["a jar","a shelf"]}, +{"id":"69189","label":"pushing key so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["key"]}, +{"id":"120996","label":"pulling car key from right to left","template":"Pulling [something] from right to left","placeholders":["car key"]}, +{"id":"187082","label":"pulling two ends of a pot but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pot"]}, +{"id":"214684","label":"covering glass jar with paper towel","template":"Covering [something] with [something]","placeholders":["glass jar","paper towel"]}, +{"id":"209141","label":"twisting (wringing) a cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a cloth"]}, +{"id":"210098","label":"tilting a phone with a battery case on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a phone","a battery case"]}, +{"id":"73667","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"166247","label":"covering tape with cardboard","template":"Covering [something] with [something]","placeholders":["tape","cardboard"]}, +{"id":"42333","label":"pulling two ends of glove so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["glove"]}, +{"id":"28337","label":"turning the camera upwards while filming switch board","template":"Turning the camera upwards while filming [something]","placeholders":["switch board"]}, +{"id":"23963","label":"moving notebook up","template":"Moving [something] up","placeholders":["notebook"]}, +{"id":"163169","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"186256","label":"pushing jar lid so it spins","template":"Pushing [something] so it spins","placeholders":["jar lid"]}, +{"id":"206788","label":"pretending to poke mouse","template":"Pretending to poke [something]","placeholders":["mouse"]}, +{"id":"101590","label":"letting can roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["can"]}, +{"id":"121383","label":"tilting box with plush toy on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","plush toy"]}, +{"id":"209000","label":"uncovering drumstick","template":"Uncovering [something]","placeholders":["drumstick"]}, +{"id":"161310","label":"moving hanger and screwdriver away from each other","template":"Moving [something] and [something] away from each other","placeholders":["hanger","screwdriver"]}, +{"id":"149192","label":"unfolding handkerchief","template":"Unfolding [something]","placeholders":["handkerchief"]}, +{"id":"10540","label":"holding keys next to bag","template":"Holding [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"80165","label":"rolling a musical tabala on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a musical tabala"]}, +{"id":"65192","label":"pretending to throw nail clippers","template":"Pretending to throw [something]","placeholders":["nail clippers"]}, +{"id":"189122","label":"taking paper weight from bed","template":"Taking [something] from [somewhere]","placeholders":["paper weight","bed"]}, +{"id":"126045","label":"twisting wire","template":"Twisting [something]","placeholders":["wire"]}, +{"id":"49367","label":"spilling milk next to cookie","template":"Spilling [something] next to [something]","placeholders":["milk","cookie"]}, +{"id":"83203","label":"pulling green purse from left to right","template":"Pulling [something] from left to right","placeholders":["green purse"]}, +{"id":"42805","label":"failing to put fidget spinner into jar because fidget spinner does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["fidget spinner","jar","fidget spinner"]}, +{"id":"193613","label":"pretending to open the small bag without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the small bag"]}, +{"id":"33687","label":"pretending to pick a bag up","template":"Pretending to pick [something] up","placeholders":["a bag"]}, +{"id":"22563","label":"dropping keys next to bag","template":"Dropping [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"150314","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"107548","label":"tipping blistex chapstick over","template":"Tipping [something] over","placeholders":["blistex chapstick"]}, +{"id":"29610","label":"uncovering small gear wheel","template":"Uncovering [something]","placeholders":["small gear wheel"]}, +{"id":"171965","label":"putting paper towels in front of board","template":"Putting [something] in front of [something]","placeholders":["paper towels","board"]}, +{"id":"51744","label":"taking paper out of container","template":"Taking [something] out of [something]","placeholders":["paper","container"]}, +{"id":"145332","label":"throwing stapler against pillow","template":"Throwing [something] against [something]","placeholders":["stapler","pillow"]}, +{"id":"53129","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"176176","label":"moving red crayon closer to blue crayon","template":"Moving [something] closer to [something]","placeholders":["red crayon","blue crayon"]}, +{"id":"121016","label":"holding a pen in front of a pencil case","template":"Holding [something] in front of [something]","placeholders":["a pen","a pencil case"]}, +{"id":"26413","label":"holding pen next to iron","template":"Holding [something] next to [something]","placeholders":["pen","iron"]}, +{"id":"97509","label":"opening filing cabinet","template":"Opening [something]","placeholders":["filing cabinet"]}, +{"id":"110581","label":"lifting spectacle box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spectacle box"]}, +{"id":"69971","label":"putting a rubber bush that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a rubber bush"]}, +{"id":"88985","label":"pretending to take camera from drawer","template":"Pretending to take [something] from [somewhere]","placeholders":["camera","drawer"]}, +{"id":"3757","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"12456","label":"showing that microwave is empty","template":"Showing that [something] is empty","placeholders":["microwave"]}, +{"id":"196683","label":"lifting a container up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a container"]}, +{"id":"14323","label":"twisting hair ribbon","template":"Twisting [something]","placeholders":["hair ribbon"]}, +{"id":"39718","label":"wiping crumbs off of table","template":"Wiping [something] off of [something]","placeholders":["crumbs","table"]}, +{"id":"103321","label":"showing that a pen is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["a pen","a cup"]}, +{"id":"220068","label":"poking car so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["car"]}, +{"id":"205413","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"25864","label":"turning the camera upwards while filming notebook","template":"Turning the camera upwards while filming [something]","placeholders":["notebook"]}, +{"id":"116433","label":"letting a plastic container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a plastic container"]}, +{"id":"132612","label":"holding roll of aluminum foil behind pill bottle","template":"Holding [something] behind [something]","placeholders":["roll of aluminum foil","pill bottle"]}, +{"id":"204280","label":"lifting a surface with a pen on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a pen"]}, +{"id":"188297","label":"putting a pen on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a pen","chair"]}, +{"id":"176336","label":"showing that keys is inside bag","template":"Showing that [something] is inside [something]","placeholders":["keys","bag"]}, +{"id":"179085","label":"pretending to take pen out of holder","template":"Pretending to take [something] out of [something]","placeholders":["pen","holder"]}, +{"id":"9108","label":"lifting paper up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["paper"]}, +{"id":"60121","label":"a toy car colliding with a toy car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a toy car","a toy car"]}, +{"id":"537","label":"moving a ball and a ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a ball","a ball"]}, +{"id":"146944","label":"moving handle of a lock","template":"Moving [part] of [something]","placeholders":["handle","a lock"]}, +{"id":"14835","label":"poking dustpan so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["dustpan"]}, +{"id":"114127","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"181485","label":"plugging cord into wall","template":"Plugging [something] into [something]","placeholders":["cord","wall"]}, +{"id":"173900","label":"pushing bottle off of box","template":"Pushing [something] off of [something]","placeholders":["bottle","box"]}, +{"id":"132965","label":"folding a tshirt","template":"Folding [something]","placeholders":["a tshirt"]}, +{"id":"174184","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"44905","label":"holding mobile phone behind wallet","template":"Holding [something] behind [something]","placeholders":["mobile phone","wallet"]}, +{"id":"64907","label":"taking notebook and pen","template":"Taking [one of many similar things on the table]","placeholders":["notebook and pen"]}, +{"id":"165916","label":"putting a coin upright on the table","template":"Putting [something] upright on the table","placeholders":["a coin"]}, +{"id":"218228","label":"putting a bowl","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bowl"]}, +{"id":"28717","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"48501","label":"putting nail clippers, remote and hole punch on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["nail clippers","remote","hole punch"]}, +{"id":"90985","label":"putting a lighter upright on the table","template":"Putting [something] upright on the table","placeholders":["a lighter"]}, +{"id":"157575","label":"throwing red cup in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["red cup"]}, +{"id":"202336","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"33053","label":"putting a plant underneath a plate","template":"Putting [something] underneath [something]","placeholders":["a plant","a plate"]}, +{"id":"99492","label":"piling cookies up","template":"Piling [something] up","placeholders":["cookies"]}, +{"id":"168434","label":"showing that the jar is empty","template":"Showing that [something] is empty","placeholders":["the jar"]}, +{"id":"72624","label":"dropping a coin onto a box","template":"Dropping [something] onto [something]","placeholders":["a coin","a box"]}, +{"id":"219431","label":"pushing packet with a bottle","template":"Pushing [something] with [something]","placeholders":["packet","a bottle"]}, +{"id":"8867","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"64053","label":"pretending to put pink water bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["pink water bottle"]}, +{"id":"125022","label":"pretending to pick duster up","template":"Pretending to pick [something] up","placeholders":["duster"]}, +{"id":"29040","label":"twisting a pill bottle cap","template":"Twisting [something]","placeholders":["a pill bottle cap"]}, +{"id":"18307","label":"turning the camera left while filming dog","template":"Turning the camera left while filming [something]","placeholders":["dog"]}, +{"id":"127077","label":"holding based over based","template":"Holding [something] over [something]","placeholders":["based","based"]}, +{"id":"195395","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"68082","label":"laying a bottle of juice on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle of juice"]}, +{"id":"5009","label":"pulling zipper from right to left","template":"Pulling [something] from right to left","placeholders":["zipper"]}, +{"id":"95549","label":"holding baking powder","template":"Holding [something]","placeholders":["baking powder"]}, +{"id":"128954","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"90784","label":"stuffing a water bottle into a sock","template":"Stuffing [something] into [something]","placeholders":["a water bottle","a sock"]}, +{"id":"48697","label":"plugging a power supply into a wall socket","template":"Plugging [something] into [something]","placeholders":["a power supply","a wall socket"]}, +{"id":"42843","label":"bending a fluorescent stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fluorescent stick"]}, +{"id":"45429","label":"moving remote and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["remote","remote"]}, +{"id":"159389","label":"putting glass next to jug","template":"Putting [something] next to [something]","placeholders":["glass","jug"]}, +{"id":"170813","label":"letting a cylindrical bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a cylindrical bottle"]}, +{"id":"114052","label":"taking pears out of a bowl","template":"Taking [something] out of [something]","placeholders":["pears","a bowl"]}, +{"id":"52509","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"142650","label":"moving the wallet and the remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the wallet","the remote control"]}, +{"id":"209669","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"204534","label":"plugging plug into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","charger"]}, +{"id":"18253","label":"approaching ball with your camera","template":"Approaching [something] with your camera","placeholders":["ball"]}, +{"id":"21450","label":"poking tissue box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tissue box"]}, +{"id":"181733","label":"pulling mouse onto binder","template":"Pulling [something] onto [something]","placeholders":["mouse","binder"]}, +{"id":"82593","label":"rolling pill bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pill bottle"]}, +{"id":"121841","label":"throwing a sock against wall","template":"Throwing [something] against [something]","placeholders":["a sock","wall"]}, +{"id":"210150","label":"spinning clip so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["clip"]}, +{"id":"46475","label":"showing that a container is empty","template":"Showing that [something] is empty","placeholders":["a container"]}, +{"id":"105680","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"18642","label":"taking flashdrive out of container","template":"Taking [something] out of [something]","placeholders":["flashdrive","container"]}, +{"id":"201855","label":"pulling two ends of chopsticks so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["chopsticks"]}, +{"id":"168646","label":"putting remote","template":"Putting [something similar to other things that are already on the table]","placeholders":["remote"]}, +{"id":"133879","label":"dropping cloth into cover phone","template":"Dropping [something] into [something]","placeholders":["cloth","cover phone"]}, +{"id":"95754","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"32351","label":"closing spectacle box","template":"Closing [something]","placeholders":["spectacle box"]}, +{"id":"202209","label":"putting a coffee cup next to coffee creamer","template":"Putting [something] next to [something]","placeholders":["a coffee cup","coffee creamer"]}, +{"id":"54497","label":"piling blocks up","template":"Piling [something] up","placeholders":["blocks"]}, +{"id":"148700","label":"attaching ps4 controller to charging dock","template":"Attaching [something] to [something]","placeholders":["ps4 controller","charging dock"]}, +{"id":"44698","label":"pretending to put remote underneath blanket","template":"Pretending to put [something] underneath [something]","placeholders":["remote","blanket"]}, +{"id":"90208","label":"holding a towel over the sink","template":"Holding [something] over [something]","placeholders":["a towel","the sink"]}, +{"id":"216643","label":"letting exercise foam roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["exercise foam"]}, +{"id":"202068","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"3668","label":"moving bag up","template":"Moving [something] up","placeholders":["bag"]}, +{"id":"156915","label":"trying but failing to attach magnet to briefcase because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magnet","briefcase"]}, +{"id":"46529","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"2732","label":"throwing small box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["small box"]}, +{"id":"72887","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"161280","label":"tilting stoll with cashier on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stoll","cashier"]}, +{"id":"109321","label":"showing boating to the camera","template":"Showing [something] to the camera","placeholders":["boating"]}, +{"id":"114025","label":"plugging a usb into wall plug","template":"Plugging [something] into [something]","placeholders":["a usb","wall plug"]}, +{"id":"10144","label":"putting spoon into small bottle","template":"Putting [something] into [something]","placeholders":["spoon","small bottle"]}, +{"id":"39801","label":"pretending to pick bar soap up","template":"Pretending to pick [something] up","placeholders":["bar soap"]}, +{"id":"23763","label":"poking marker so that it falls over","template":"Poking [something] so that it falls over","placeholders":["marker"]}, +{"id":"13276","label":"pushing a peg so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a peg"]}, +{"id":"115410","label":"trying but failing to attach block to tv because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["block","tv"]}, +{"id":"43891","label":"plugging usb cable into usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","usb port"]}, +{"id":"115824","label":"putting a box onto a ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a box","a ball"]}, +{"id":"77077","label":"showing battery next to striker coin","template":"Showing [something] next to [something]","placeholders":["battery","striker coin"]}, +{"id":"123997","label":"spinning scissors that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["scissors"]}, +{"id":"177316","label":"moving medicines up","template":"Moving [something] up","placeholders":["medicines"]}, +{"id":"60470","label":"showing that battery is inside mobile","template":"Showing that [something] is inside [something]","placeholders":["battery","mobile"]}, +{"id":"75505","label":"taking phone out of mug","template":"Taking [something] out of [something]","placeholders":["phone","mug"]}, +{"id":"185053","label":"putting remote and ear phones on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","ear phones"]}, +{"id":"220730","label":"lifting a package with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["a package","sunglasses"]}, +{"id":"192411","label":"pushing chalk with ring","template":"Pushing [something] with [something]","placeholders":["chalk","ring"]}, +{"id":"189786","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"145730","label":"spilling water onto the table","template":"Spilling [something] onto [something]","placeholders":["water","the table"]}, +{"id":"34506","label":"putting 3 marker pens onto brown note","template":"Putting [number of] [something] onto [something]","placeholders":["3","marker pens","brown note"]}, +{"id":"68223","label":"squeezing toothpaste tube","template":"Squeezing [something]","placeholders":["toothpaste tube"]}, +{"id":"127666","label":"holding torch behind shoe","template":"Holding [something] behind [something]","placeholders":["torch","shoe"]}, +{"id":"170403","label":"dropping a cup onto text books","template":"Dropping [something] onto [something]","placeholders":["a cup","text books"]}, +{"id":"35818","label":"unfolding t shit","template":"Unfolding [something]","placeholders":["t shit"]}, +{"id":"207051","label":"holding car keys next to sports drink","template":"Holding [something] next to [something]","placeholders":["car keys","sports drink"]}, +{"id":"205989","label":"showing aim toothpaste to the camera","template":"Showing [something] to the camera","placeholders":["aim toothpaste"]}, +{"id":"59764","label":"stuffing mini tripod into camera bag","template":"Stuffing [something] into [something]","placeholders":["mini tripod","camera bag"]}, +{"id":"70846","label":"putting fabric","template":"Putting [something similar to other things that are already on the table]","placeholders":["fabric"]}, +{"id":"150484","label":"digging batteries out of paper","template":"Digging [something] out of [something]","placeholders":["batteries","paper"]}, +{"id":"132255","label":"tilting box with comp on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","comp"]}, +{"id":"28803","label":"putting sewing reel into plastic cup","template":"Putting [something] into [something]","placeholders":["sewing reel","plastic cup"]}, +{"id":"7655","label":"putting green toy car onto yellow clay container","template":"Putting [something] onto [something]","placeholders":["green toy car","yellow clay container"]}, +{"id":"84237","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"161327","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"104036","label":"pulling green purse from right to left","template":"Pulling [something] from right to left","placeholders":["green purse"]}, +{"id":"161506","label":"holding plate next to candle","template":"Holding [something] next to [something]","placeholders":["plate","candle"]}, +{"id":"81183","label":"putting cup and candle on the table","template":"Putting [something] and [something] on the table","placeholders":["cup","candle"]}, +{"id":"219735","label":"putting candies on a surface","template":"Putting [something] on a surface","placeholders":["candies"]}, +{"id":"124193","label":"pretending to pick razor up","template":"Pretending to pick [something] up","placeholders":["razor"]}, +{"id":"16017","label":"showing that a pot is empty","template":"Showing that [something] is empty","placeholders":["a pot"]}, +{"id":"173102","label":"stuffing key into pouch","template":"Stuffing [something] into [something]","placeholders":["key","pouch"]}, +{"id":"178220","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"47006","label":"poking a medicine bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a medicine bottle"]}, +{"id":"52775","label":"moving a cellphone and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cellphone","mouse"]}, +{"id":"204469","label":"moving nickel and quarter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["nickel","quarter"]}, +{"id":"158352","label":"pretending to spread air onto a phone","template":"Pretending to spread air onto [something]","placeholders":["a phone"]}, +{"id":"22017","label":"putting candle into bag","template":"Putting [something] into [something]","placeholders":["candle","bag"]}, +{"id":"76668","label":"pretending to throw frisbee","template":"Pretending to throw [something]","placeholders":["frisbee"]}, +{"id":"161453","label":"tilting plastic cup with scissors on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plastic cup","scissors"]}, +{"id":"45417","label":"taking crayon","template":"Taking [one of many similar things on the table]","placeholders":["crayon"]}, +{"id":"97377","label":"wiping a plastic bag off of a bed","template":"Wiping [something] off of [something]","placeholders":["a plastic bag","a bed"]}, +{"id":"33943","label":"pulling green headlight from left to right","template":"Pulling [something] from left to right","placeholders":["green headlight"]}, +{"id":"128411","label":"poking a fork so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a fork"]}, +{"id":"189395","label":"lifting up one end of comb, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["comb"]}, +{"id":"113011","label":"lifting plate with book on it","template":"Lifting [something] with [something] on it","placeholders":["plate","book"]}, +{"id":"209746","label":"pushing a comb off of a box","template":"Pushing [something] off of [something]","placeholders":["a comb","a box"]}, +{"id":"40813","label":"moving lotion bottle up","template":"Moving [something] up","placeholders":["lotion bottle"]}, +{"id":"183815","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"144421","label":"spinning a bulb so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bulb"]}, +{"id":"39206","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"199250","label":"closing closet","template":"Closing [something]","placeholders":["closet"]}, +{"id":"118314","label":"moving cup and stuffed toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","stuffed toy"]}, +{"id":"159110","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"217565","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"128187","label":"picking bowl up","template":"Picking [something] up","placeholders":["bowl"]}, +{"id":"126941","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"8828","label":"putting sunglasses, a sticky note pad and dental floss on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sunglasses","a sticky note pad","dental floss"]}, +{"id":"11742","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"33634","label":"putting green toy car onto clay container","template":"Putting [something] onto [something]","placeholders":["green toy car","clay container"]}, +{"id":"88722","label":"spatula falling like a rock","template":"[Something] falling like a rock","placeholders":["spatula"]}, +{"id":"90413","label":"showing that cage is empty","template":"Showing that [something] is empty","placeholders":["cage"]}, +{"id":"130427","label":"dropping tape onto floor","template":"Dropping [something] onto [something]","placeholders":["tape","floor"]}, +{"id":"194788","label":"pretending to be tearing a journal","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a journal"]}, +{"id":"195588","label":"holding bag","template":"Holding [something]","placeholders":["bag"]}, +{"id":"103892","label":"pretending to take mobile from book surface","template":"Pretending to take [something] from [somewhere]","placeholders":["mobile","book surface"]}, +{"id":"201096","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"55078","label":"holding paper over cups","template":"Holding [something] over [something]","placeholders":["paper","cups"]}, +{"id":"166839","label":"covering jar with towel","template":"Covering [something] with [something]","placeholders":["jar","towel"]}, +{"id":"136838","label":"opening cover","template":"Opening [something]","placeholders":["cover"]}, +{"id":"173321","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"169593","label":"showing that eraser is inside glass","template":"Showing that [something] is inside [something]","placeholders":["eraser","glass"]}, +{"id":"47907","label":"pushing brush so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["brush"]}, +{"id":"156289","label":"holding a book over a book","template":"Holding [something] over [something]","placeholders":["a book","a book"]}, +{"id":"155444","label":"moving away from keys with your camera","template":"Moving away from [something] with your camera","placeholders":["keys"]}, +{"id":"138665","label":"pushing a plastic bottle cap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a plastic bottle cap"]}, +{"id":"52683","label":"putting box and handphone on the table","template":"Putting [something] and [something] on the table","placeholders":["box","handphone"]}, +{"id":"81944","label":"closing a fridge","template":"Closing [something]","placeholders":["a fridge"]}, +{"id":"137016","label":"holding a pen next to a pencil case","template":"Holding [something] next to [something]","placeholders":["a pen","a pencil case"]}, +{"id":"54552","label":"poking door so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["door"]}, +{"id":"32934","label":"showing that money is inside a piggy bank","template":"Showing that [something] is inside [something]","placeholders":["money","a piggy bank"]}, +{"id":"98498","label":"lifting up one end of a notepad without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a notepad"]}, +{"id":"216823","label":"spilling water next to orange","template":"Spilling [something] next to [something]","placeholders":["water","orange"]}, +{"id":"102837","label":"dropping candy next to magazine","template":"Dropping [something] next to [something]","placeholders":["candy","magazine"]}, +{"id":"118865","label":"hitting towel with wallet","template":"Hitting [something] with [something]","placeholders":["towel","wallet"]}, +{"id":"117360","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"66540","label":"pretending to throw yellow hairband","template":"Pretending to throw [something]","placeholders":["yellow hairband"]}, +{"id":"59104","label":"moving toy and toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy","toy"]}, +{"id":"192209","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"149632","label":"sprinkling salt onto a sliced tomato","template":"Sprinkling [something] onto [something]","placeholders":["salt","a sliced tomato"]}, +{"id":"123040","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"163721","label":"dropping a pen behind wooden box","template":"Dropping [something] behind [something]","placeholders":["a pen","wooden box"]}, +{"id":"106103","label":"holding sunglasses next to package","template":"Holding [something] next to [something]","placeholders":["sunglasses","package"]}, +{"id":"173998","label":"plugging cord into outlet","template":"Plugging [something] into [something]","placeholders":["cord","outlet"]}, +{"id":"178430","label":"holding cup over bottle","template":"Holding [something] over [something]","placeholders":["cup","bottle"]}, +{"id":"166646","label":"putting bangle, thread and key on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bangle","thread","key"]}, +{"id":"106562","label":"plugging usb into pc but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","pc"]}, +{"id":"126014","label":"picking stone up","template":"Picking [something] up","placeholders":["stone"]}, +{"id":"169107","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"33151","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"202258","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"187462","label":"twisting clothes","template":"Twisting [something]","placeholders":["clothes"]}, +{"id":"25654","label":"moving green colour pen away from blue colour pen","template":"Moving [something] away from [something]","placeholders":["green colour pen","blue colour pen"]}, +{"id":"133565","label":"showing that paper napking is inside plastic cube","template":"Showing that [something] is inside [something]","placeholders":["paper napking","plastic cube"]}, +{"id":"87997","label":"pushing a toy truck from right to left","template":"Pushing [something] from right to left","placeholders":["a toy truck"]}, +{"id":"125918","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"203297","label":"bending tissues so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tissues"]}, +{"id":"55396","label":"putting remote onto plate","template":"Putting [something] onto [something]","placeholders":["remote","plate"]}, +{"id":"58692","label":"showing kids sandals to the camera","template":"Showing [something] to the camera","placeholders":["kids sandals"]}, +{"id":"183205","label":"putting envelope in front of card","template":"Putting [something] in front of [something]","placeholders":["envelope","card"]}, +{"id":"189495","label":"showing a mug on top of a tissue box","template":"Showing [something] on top of [something]","placeholders":["a mug","a tissue box"]}, +{"id":"166629","label":"turning the camera right while filming water bottle","template":"Turning the camera right while filming [something]","placeholders":["water bottle"]}, +{"id":"133366","label":"tissue paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue paper"]}, +{"id":"122999","label":"tearing post it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["post it note"]}, +{"id":"115281","label":"uncovering an apple","template":"Uncovering [something]","placeholders":["an apple"]}, +{"id":"196295","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"35459","label":"covering chair with blanket","template":"Covering [something] with [something]","placeholders":["chair","blanket"]}, +{"id":"129865","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"77758","label":"lifting small box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["small box"]}, +{"id":"66066","label":"spilling water next to paper","template":"Spilling [something] next to [something]","placeholders":["water","paper"]}, +{"id":"141983","label":"bending tongue cleaner so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tongue cleaner"]}, +{"id":"211776","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"113628","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"131492","label":"stuffing scissor into bucket","template":"Stuffing [something] into [something]","placeholders":["scissor","bucket"]}, +{"id":"104274","label":"putting power bank and head charger on the table","template":"Putting [something] and [something] on the table","placeholders":["power bank","head charger"]}, +{"id":"104350","label":"turning inhaler upside down","template":"Turning [something] upside down","placeholders":["inhaler"]}, +{"id":"77745","label":"throwing \\\"keys against \\\"wall","template":"Throwing [something] against [something]","placeholders":["\\\"keys","\\\"wall"]}, +{"id":"14207","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"109913","label":"letting marker pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["marker pen"]}, +{"id":"219388","label":"showing pillow to the camera","template":"Showing [something] to the camera","placeholders":["pillow"]}, +{"id":"99245","label":"dropping a card behind a cup","template":"Dropping [something] behind [something]","placeholders":["a card","a cup"]}, +{"id":"41000","label":"covering a pan with a lid","template":"Covering [something] with [something]","placeholders":["a pan","a lid"]}, +{"id":"179445","label":"dropping remote next to pillow","template":"Dropping [something] next to [something]","placeholders":["remote","pillow"]}, +{"id":"140250","label":"moving plastic tin up","template":"Moving [something] up","placeholders":["plastic tin"]}, +{"id":"73185","label":"box of matches falling like a rock","template":"[Something] falling like a rock","placeholders":["box of matches"]}, +{"id":"163441","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"181207","label":"pretending to squeeze a water bottle","template":"Pretending to squeeze [something]","placeholders":["a water bottle"]}, +{"id":"213980","label":"hitting tv with pen","template":"Hitting [something] with [something]","placeholders":["tv","pen"]}, +{"id":"84816","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"183188","label":"plugging usb into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","laptop"]}, +{"id":"170543","label":"pulling two ends of measuring tape but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["measuring tape"]}, +{"id":"10704","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"144568","label":"moving top of wipe bottle","template":"Moving [part] of [something]","placeholders":["top","wipe bottle"]}, +{"id":"92333","label":"attaching cap to marker","template":"Attaching [something] to [something]","placeholders":["cap","marker"]}, +{"id":"76714","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"8124","label":"showing that pink frozen cup is empty","template":"Showing that [something] is empty","placeholders":["pink frozen cup"]}, +{"id":"220300","label":"pouring water onto soap","template":"Pouring [something] onto [something]","placeholders":["water","soap"]}, +{"id":"18481","label":"pulling glasses from left to right","template":"Pulling [something] from left to right","placeholders":["glasses"]}, +{"id":"11639","label":"stuffed animal being deflected from door","template":"[Something] being deflected from [something]","placeholders":["stuffed animal","door"]}, +{"id":"50697","label":"stacking three coins","template":"Stacking [number of] [something]","placeholders":["three","coins"]}, +{"id":"100880","label":"picking stone up","template":"Picking [something] up","placeholders":["stone"]}, +{"id":"109218","label":"putting specs next to wire","template":"Putting [something] next to [something]","placeholders":["specs","wire"]}, +{"id":"70147","label":"opening scissors","template":"Opening [something]","placeholders":["scissors"]}, +{"id":"56969","label":"twisting scarf","template":"Twisting [something]","placeholders":["scarf"]}, +{"id":"109945","label":"moving toy tiger and toy elephant so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy tiger","toy elephant"]}, +{"id":"199524","label":"putting a mug into a sink","template":"Putting [something] into [something]","placeholders":["a mug","a sink"]}, +{"id":"195627","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"79967","label":"covering a phone with paper","template":"Covering [something] with [something]","placeholders":["a phone","paper"]}, +{"id":"151522","label":"stuffing towel into plastic bag","template":"Stuffing [something] into [something]","placeholders":["towel","plastic bag"]}, +{"id":"49478","label":"trying to bend elephant statue so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["elephant statue"]}, +{"id":"188886","label":"turning green cup upside down","template":"Turning [something] upside down","placeholders":["green cup"]}, +{"id":"119020","label":"putting marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["marker"]}, +{"id":"87773","label":"putting card","template":"Putting [something similar to other things that are already on the table]","placeholders":["card"]}, +{"id":"33184","label":"moving knife up","template":"Moving [something] up","placeholders":["knife"]}, +{"id":"157192","label":"twisting t shirt","template":"Twisting [something]","placeholders":["t shirt"]}, +{"id":"49107","label":"dropping an object onto the floor","template":"Dropping [something] onto [something]","placeholders":["an object","the floor"]}, +{"id":"123521","label":"putting water bottle into bowl","template":"Putting [something] into [something]","placeholders":["water bottle","bowl"]}, +{"id":"165705","label":"pulling a napkin from right to left","template":"Pulling [something] from right to left","placeholders":["a napkin"]}, +{"id":"134861","label":"pushing selfie stick so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["selfie stick"]}, +{"id":"6911","label":"a toy car being deflected from a jar","template":"[Something] being deflected from [something]","placeholders":["a toy car","a jar"]}, +{"id":"7955","label":"taking plastic tin out of plastic glass","template":"Taking [something] out of [something]","placeholders":["plastic tin","plastic glass"]}, +{"id":"37888","label":"pretending to take key from table","template":"Pretending to take [something] from [somewhere]","placeholders":["key","table"]}, +{"id":"36285","label":"piling dish towels up","template":"Piling [something] up","placeholders":["dish towels"]}, +{"id":"71858","label":"picking bucket up","template":"Picking [something] up","placeholders":["bucket"]}, +{"id":"140211","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"115778","label":"putting block onto plate","template":"Putting [something] onto [something]","placeholders":["block","plate"]}, +{"id":"182899","label":"throwing paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper"]}, +{"id":"51796","label":"moving thimble down","template":"Moving [something] down","placeholders":["thimble"]}, +{"id":"107239","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"123092","label":"tilting a cutting board with a flashlight on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cutting board","a flashlight"]}, +{"id":"26033","label":"dropping a coin into pocket","template":"Dropping [something] into [something]","placeholders":["a coin","pocket"]}, +{"id":"184604","label":"plugging charger into swicth","template":"Plugging [something] into [something]","placeholders":["charger","swicth"]}, +{"id":"164098","label":"pretending to open vitamins without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["vitamins"]}, +{"id":"61572","label":"putting diaper","template":"Putting [something similar to other things that are already on the table]","placeholders":["diaper"]}, +{"id":"106796","label":"putting mouse on a surface","template":"Putting [something] on a surface","placeholders":["mouse"]}, +{"id":"67884","label":"trying to bend stem so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["stem"]}, +{"id":"120427","label":"pretending to close a box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a box"]}, +{"id":"57524","label":"wiping water off of car","template":"Wiping [something] off of [something]","placeholders":["water","car"]}, +{"id":"59338","label":"moving a bottle and a bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a bottle"]}, +{"id":"45734","label":"pushing scotch tape from right to left","template":"Pushing [something] from right to left","placeholders":["scotch tape"]}, +{"id":"37639","label":"showing a photo of man to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man"]}, +{"id":"212652","label":"opening cabinet door","template":"Opening [something]","placeholders":["cabinet door"]}, +{"id":"106844","label":"turning pink toothbrush case upside down","template":"Turning [something] upside down","placeholders":["pink toothbrush case"]}, +{"id":"201371","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"85316","label":"showing that the washer is empty","template":"Showing that [something] is empty","placeholders":["the washer"]}, +{"id":"3264","label":"tilting a bottle with a tv remote control on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a bottle","a tv remote control"]}, +{"id":"209404","label":"a feather falling to the floor falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a feather falling to the floor"]}, +{"id":"188230","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"48736","label":"dropping a coin onto a rubiks cube","template":"Dropping [something] onto [something]","placeholders":["a coin","a rubiks cube"]}, +{"id":"38513","label":"pulling white kercief from behind of diary","template":"Pulling [something] from behind of [something]","placeholders":["white kercief","diary"]}, +{"id":"56237","label":"tipping a small bag over","template":"Tipping [something] over","placeholders":["a small bag"]}, +{"id":"132312","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"29504","label":"stacking 2 shot glasses","template":"Stacking [number of] [something]","placeholders":["2","shot glasses"]}, +{"id":"183368","label":"showing sock to the camera","template":"Showing [something] to the camera","placeholders":["sock"]}, +{"id":"111682","label":"dropping remote control behind wallet","template":"Dropping [something] behind [something]","placeholders":["remote control","wallet"]}, +{"id":"126279","label":"unfolding bag","template":"Unfolding [something]","placeholders":["bag"]}, +{"id":"54107","label":"dropping water bottle onto bed","template":"Dropping [something] onto [something]","placeholders":["water bottle","bed"]}, +{"id":"174342","label":"putting mug in front of sponge","template":"Putting [something] in front of [something]","placeholders":["mug","sponge"]}, +{"id":"178329","label":"putting stapler upright on the table","template":"Putting [something] upright on the table","placeholders":["stapler"]}, +{"id":"19756","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"74576","label":"pushing soap holder so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["soap holder"]}, +{"id":"185853","label":"lifting up one end of a wooden stick, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a wooden stick"]}, +{"id":"116041","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"51337","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"99070","label":"putting spoon upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["spoon"]}, +{"id":"205466","label":"moving bangle closer to hard drive","template":"Moving [something] closer to [something]","placeholders":["bangle","hard drive"]}, +{"id":"96961","label":"poking wristwatch so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["wristwatch"]}, +{"id":"147217","label":"pushing a box of juice onto a box of juice","template":"Pushing [something] onto [something]","placeholders":["a box of juice","a box of juice"]}, +{"id":"80743","label":"pushing a bucket lid so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bucket lid"]}, +{"id":"15710","label":"pushing ring from right to left","template":"Pushing [something] from right to left","placeholders":["ring"]}, +{"id":"1144","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"92452","label":"putting black umbrella on a surface","template":"Putting [something] on a surface","placeholders":["black umbrella"]}, +{"id":"2791","label":"taking one mobile of many other","template":"Taking [one of many similar things on the table]","placeholders":["one mobile of many other"]}, +{"id":"124283","label":"bending q-tip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["q-tip"]}, +{"id":"64965","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"71769","label":"pushing mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mug"]}, +{"id":"158614","label":"moving spray and bowl away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spray","bowl"]}, +{"id":"123898","label":"pulling the purse onto the towel","template":"Pulling [something] onto [something]","placeholders":["the purse","the towel"]}, +{"id":"47325","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"161313","label":"opening table drawer","template":"Opening [something]","placeholders":["table drawer"]}, +{"id":"99001","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"56258","label":"bending crayon until it breaks","template":"Bending [something] until it breaks","placeholders":["crayon"]}, +{"id":"210640","label":"putting a pen in front of a book","template":"Putting [something] in front of [something]","placeholders":["a pen","a book"]}, +{"id":"130772","label":"spilling honey onto plate","template":"Spilling [something] onto [something]","placeholders":["honey","plate"]}, +{"id":"198300","label":"pretending to squeeze handwash can","template":"Pretending to squeeze [something]","placeholders":["handwash can"]}, +{"id":"217772","label":"covering a watch with a cap","template":"Covering [something] with [something]","placeholders":["a watch","a cap"]}, +{"id":"47421","label":"dropping a ball onto a beanbag","template":"Dropping [something] onto [something]","placeholders":["a ball","a beanbag"]}, +{"id":"52415","label":"putting a container on the edge of a gle so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a container","a gle"]}, +{"id":"121949","label":"moving toothpaste closer to a tap","template":"Moving [something] closer to [something]","placeholders":["toothpaste","a tap"]}, +{"id":"172650","label":"putting tape onto box","template":"Putting [something] onto [something]","placeholders":["tape","box"]}, +{"id":"133673","label":"burying coin in hand towel","template":"Burying [something] in [something]","placeholders":["coin","hand towel"]}, +{"id":"189636","label":"taking paper out of printer","template":"Taking [something] out of [something]","placeholders":["paper","printer"]}, +{"id":"54897","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"173865","label":"pretending to take hand from metal","template":"Pretending to take [something] from [somewhere]","placeholders":["hand","metal"]}, +{"id":"86186","label":"lifting a book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a book"]}, +{"id":"190121","label":"unfolding napkin","template":"Unfolding [something]","placeholders":["napkin"]}, +{"id":"91326","label":"dropping box onto floor","template":"Dropping [something] onto [something]","placeholders":["box","floor"]}, +{"id":"128687","label":"putting pen next to wristwatch","template":"Putting [something] next to [something]","placeholders":["pen","wristwatch"]}, +{"id":"51645","label":"lifting bottle with half onnion on it","template":"Lifting [something] with [something] on it","placeholders":["bottle","half onnion"]}, +{"id":"77290","label":"plugging iphone cord into electric socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["iphone cord","electric socket"]}, +{"id":"204269","label":"covering orange color pencil sharpner with wallet","template":"Covering [something] with [something]","placeholders":["orange color pencil sharpner","wallet"]}, +{"id":"15161","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"195800","label":"showing helmet behind kettle","template":"Showing [something] behind [something]","placeholders":["helmet","kettle"]}, +{"id":"190947","label":"lifting plate with bread on it","template":"Lifting [something] with [something] on it","placeholders":["plate","bread"]}, +{"id":"33117","label":"tipping ashtray with cigarette butt over, so cigarette butt falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["ashtray","cigarette butt","cigarette butt"]}, +{"id":"141757","label":"moving a cup and plastic bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","plastic bottle"]}, +{"id":"139164","label":"something colliding with something and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["something","something"]}, +{"id":"112587","label":"holding can behind remote","template":"Holding [something] behind [something]","placeholders":["can","remote"]}, +{"id":"72485","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"169313","label":"plugging wall charger into socket","template":"Plugging [something] into [something]","placeholders":["wall charger","socket"]}, +{"id":"105966","label":"squeezing a marshmellow","template":"Squeezing [something]","placeholders":["a marshmellow"]}, +{"id":"104987","label":"stuffing pair of socks into shoe","template":"Stuffing [something] into [something]","placeholders":["pair of socks","shoe"]}, +{"id":"220644","label":"stuffing a sweatshirt into a bag","template":"Stuffing [something] into [something]","placeholders":["a sweatshirt","a bag"]}, +{"id":"126549","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"121240","label":"putting box cap that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box cap"]}, +{"id":"156357","label":"dropping clip onto container","template":"Dropping [something] onto [something]","placeholders":["clip","container"]}, +{"id":"156624","label":"taking photo from wardrobe","template":"Taking [something] from [somewhere]","placeholders":["photo","wardrobe"]}, +{"id":"124542","label":"opening bottel","template":"Opening [something]","placeholders":["bottel"]}, +{"id":"42627","label":"showing that prayer book is inside vessel","template":"Showing that [something] is inside [something]","placeholders":["prayer book","vessel"]}, +{"id":"118632","label":"scooping coffee up with scoop","template":"Scooping [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"3103","label":"taking pebble out of cookie box","template":"Taking [something] out of [something]","placeholders":["pebble","cookie box"]}, +{"id":"95488","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"46310","label":"pretending to be tearing ruler","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ruler"]}, +{"id":"108021","label":"moving sketch pen up","template":"Moving [something] up","placeholders":["sketch pen"]}, +{"id":"209960","label":"putting a container upright on the table","template":"Putting [something] upright on the table","placeholders":["a container"]}, +{"id":"91382","label":"moving chocolate towards the camera","template":"Moving [something] towards the camera","placeholders":["chocolate"]}, +{"id":"101440","label":"moving something and something closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["something","something"]}, +{"id":"95067","label":"putting 2 punching machines onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","punching machines","blue note"]}, +{"id":"40810","label":"putting spoon behind remote","template":"Putting [something] behind [something]","placeholders":["spoon","remote"]}, +{"id":"14200","label":"showing that a bowl is inside a microwave oven","template":"Showing that [something] is inside [something]","placeholders":["a bowl","a microwave oven"]}, +{"id":"64231","label":"holding small game card","template":"Holding [something]","placeholders":["small game card"]}, +{"id":"121183","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"76951","label":"throwing pen against closet","template":"Throwing [something] against [something]","placeholders":["pen","closet"]}, +{"id":"170725","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"210991","label":"twisting cable cord","template":"Twisting [something]","placeholders":["cable cord"]}, +{"id":"174797","label":"dropping paper next to box","template":"Dropping [something] next to [something]","placeholders":["paper","box"]}, +{"id":"84919","label":"stuffing crayon into crayon box","template":"Stuffing [something] into [something]","placeholders":["crayon","crayon box"]}, +{"id":"136003","label":"pretending to pick toothpaste up","template":"Pretending to pick [something] up","placeholders":["toothpaste"]}, +{"id":"132599","label":"moving tree branch down","template":"Moving [something] down","placeholders":["tree branch"]}, +{"id":"171590","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"15944","label":"taking pin","template":"Taking [one of many similar things on the table]","placeholders":["pin"]}, +{"id":"140156","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"52789","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"125021","label":"pushing a tape with a cup","template":"Pushing [something] with [something]","placeholders":["a tape","a cup"]}, +{"id":"26111","label":"stacking 2 glasses","template":"Stacking [number of] [something]","placeholders":["2","glasses"]}, +{"id":"197265","label":"putting book similar to other books that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["book similar to other books that are already on the table"]}, +{"id":"5717","label":"pretending to poke mouse","template":"Pretending to poke [something]","placeholders":["mouse"]}, +{"id":"193353","label":"taking pushpins","template":"Taking [one of many similar things on the table]","placeholders":["pushpins"]}, +{"id":"68476","label":"lifting book with book on it","template":"Lifting [something] with [something] on it","placeholders":["book","book"]}, +{"id":"220420","label":"putting a spoon onto stove","template":"Putting [something] onto [something]","placeholders":["a spoon","stove"]}, +{"id":"93515","label":"pouring lentils into container","template":"Pouring [something] into [something]","placeholders":["lentils","container"]}, +{"id":"17113","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"208503","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"159711","label":"showing that a tupper is inside a lunch box","template":"Showing that [something] is inside [something]","placeholders":["a tupper","a lunch box"]}, +{"id":"160644","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"84609","label":"pretending to take flower from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["flower","surface"]}, +{"id":"220554","label":"putting watch and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["watch","pen"]}, +{"id":"15472","label":"pushing toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy"]}, +{"id":"104724","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"151474","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"219646","label":"covering bottle with plate","template":"Covering [something] with [something]","placeholders":["bottle","plate"]}, +{"id":"127344","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"45657","label":"poking plastic bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["plastic bottle"]}, +{"id":"178448","label":"lifting ecig up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["ecig"]}, +{"id":"108918","label":"pretending to take cable from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["cable","surface"]}, +{"id":"122733","label":"spreading cream cheese onto bread","template":"Spreading [something] onto [something]","placeholders":["cream cheese","bread"]}, +{"id":"118117","label":"moving spoon across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["spoon"]}, +{"id":"209276","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"189157","label":"lifting mouse pad with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["mouse pad","mouse"]}, +{"id":"101664","label":"closing medicine bottle","template":"Closing [something]","placeholders":["medicine bottle"]}, +{"id":"98568","label":"pretending to poke shoe","template":"Pretending to poke [something]","placeholders":["shoe"]}, +{"id":"43682","label":"dropping mouse into glass","template":"Dropping [something] into [something]","placeholders":["mouse","glass"]}, +{"id":"31545","label":"tilting stone with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stone","finger"]}, +{"id":"197685","label":"pretending to sprinkle air onto a toothpick container","template":"Pretending to sprinkle air onto [something]","placeholders":["a toothpick container"]}, +{"id":"48401","label":"putting pen into jar","template":"Putting [something] into [something]","placeholders":["pen","jar"]}, +{"id":"196693","label":"holding small stone behind rectangular box","template":"Holding [something] behind [something]","placeholders":["small stone","rectangular box"]}, +{"id":"100574","label":"showing that cloth is inside case","template":"Showing that [something] is inside [something]","placeholders":["cloth","case"]}, +{"id":"100011","label":"piling clothing up","template":"Piling [something] up","placeholders":["clothing"]}, +{"id":"101982","label":"putting kaugummi-packung on a surface","template":"Putting [something] on a surface","placeholders":["kaugummi-packung"]}, +{"id":"176593","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"16363","label":"putting a comb that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a comb"]}, +{"id":"98601","label":"lifting a bowl with a book on it","template":"Lifting [something] with [something] on it","placeholders":["a bowl","a book"]}, +{"id":"13219","label":"tilting bottle with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["bottle","finger"]}, +{"id":"42769","label":"putting a paint brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a paint brush"]}, +{"id":"219351","label":"pushing ball so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ball"]}, +{"id":"61339","label":"tearing a paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper towel"]}, +{"id":"127289","label":"tearing papier into two pieces","template":"Tearing [something] into two pieces","placeholders":["papier"]}, +{"id":"159271","label":"twisting doorknob","template":"Twisting [something]","placeholders":["doorknob"]}, +{"id":"137779","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"187372","label":"lifting up one end of something without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["something"]}, +{"id":"136463","label":"pretending to turn plastic cup upside down","template":"Pretending to turn [something] upside down","placeholders":["plastic cup"]}, +{"id":"152106","label":"putting box onto prayer book","template":"Putting [something] onto [something]","placeholders":["box","prayer book"]}, +{"id":"3026","label":"plugging power cord into laptop","template":"Plugging [something] into [something]","placeholders":["power cord","laptop"]}, +{"id":"119352","label":"spinning specs box so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["specs box"]}, +{"id":"99784","label":"putting a pen next to the other pen on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen next to the other pen on the table"]}, +{"id":"131363","label":"pushing ball with broom","template":"Pushing [something] with [something]","placeholders":["ball","broom"]}, +{"id":"115961","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"96059","label":"showing bottle on top of pillow","template":"Showing [something] on top of [something]","placeholders":["bottle","pillow"]}, +{"id":"153702","label":"pretending to poke paper","template":"Pretending to poke [something]","placeholders":["paper"]}, +{"id":"24315","label":"showing that a water bottle is empty","template":"Showing that [something] is empty","placeholders":["a water bottle"]}, +{"id":"37426","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"54932","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"2076","label":"letting a steel wheel roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a steel wheel"]}, +{"id":"146189","label":"poking air freshner so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["air freshner"]}, +{"id":"103631","label":"turning the camera right while filming landscaping","template":"Turning the camera right while filming [something]","placeholders":["landscaping"]}, +{"id":"159644","label":"tipping a glass with pens over, so pens falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a glass","pens","pens"]}, +{"id":"40489","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"140315","label":"candy box falling like a rock","template":"[Something] falling like a rock","placeholders":["candy box"]}, +{"id":"71001","label":"closing a wallet","template":"Closing [something]","placeholders":["a wallet"]}, +{"id":"193675","label":"spinning audio jack that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["audio jack"]}, +{"id":"152140","label":"pretending to poke blocks","template":"Pretending to poke [something]","placeholders":["blocks"]}, +{"id":"166311","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"91655","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"24199","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"103193","label":"letting bucket roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bucket"]}, +{"id":"87569","label":"squeezing a hat","template":"Squeezing [something]","placeholders":["a hat"]}, +{"id":"25490","label":"opening a box of tea","template":"Opening [something]","placeholders":["a box of tea"]}, +{"id":"66176","label":"spinning scissor that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["scissor"]}, +{"id":"192918","label":"pushing the weighing scale so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["the weighing scale"]}, +{"id":"108982","label":"dropping a banana onto a packet","template":"Dropping [something] onto [something]","placeholders":["a banana","a packet"]}, +{"id":"26614","label":"covering lamp with blanket","template":"Covering [something] with [something]","placeholders":["lamp","blanket"]}, +{"id":"210739","label":"showing scissors next to mug","template":"Showing [something] next to [something]","placeholders":["scissors","mug"]}, +{"id":"179122","label":"putting bottle in front of juicer","template":"Putting [something] in front of [something]","placeholders":["bottle","juicer"]}, +{"id":"109666","label":"showing canned food to the camera","template":"Showing [something] to the camera","placeholders":["canned food"]}, +{"id":"187901","label":"closing juicer cap","template":"Closing [something]","placeholders":["juicer cap"]}, +{"id":"124752","label":"pretending to throw a book","template":"Pretending to throw [something]","placeholders":["a book"]}, +{"id":"190800","label":"spoon falling like a rock","template":"[Something] falling like a rock","placeholders":["spoon"]}, +{"id":"68336","label":"pretending to close something without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["something"]}, +{"id":"46159","label":"putting book upright on the table","template":"Putting [something] upright on the table","placeholders":["book"]}, +{"id":"121455","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"161579","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"105698","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"71529","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"129790","label":"moving key up","template":"Moving [something] up","placeholders":["key"]}, +{"id":"75918","label":"taking soda can","template":"Taking [one of many similar things on the table]","placeholders":["soda can"]}, +{"id":"187321","label":"pretending to be tearing plastic plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic plate"]}, +{"id":"211039","label":"squeezing a wet paper towel","template":"Squeezing [something]","placeholders":["a wet paper towel"]}, +{"id":"89329","label":"tearing pink paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["pink paper"]}, +{"id":"90374","label":"soldering wire reel falling like a rock","template":"[Something] falling like a rock","placeholders":["soldering wire reel"]}, +{"id":"168785","label":"pulling jar from right to left","template":"Pulling [something] from right to left","placeholders":["jar"]}, +{"id":"195901","label":"covering a banana with baking tray","template":"Covering [something] with [something]","placeholders":["a banana","baking tray"]}, +{"id":"177797","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"89023","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"127867","label":"pulling a tablet computer from behind of speakers","template":"Pulling [something] from behind of [something]","placeholders":["a tablet computer","speakers"]}, +{"id":"50957","label":"moving a pencase closer to a calculator","template":"Moving [something] closer to [something]","placeholders":["a pencase","a calculator"]}, +{"id":"72458","label":"rolling plastic bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["plastic bottle"]}, +{"id":"25665","label":"pushing a wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a wallet"]}, +{"id":"149099","label":"putting marker next to nail file","template":"Putting [something] next to [something]","placeholders":["marker","nail file"]}, +{"id":"136341","label":"putting 2 pens onto a desk","template":"Putting [number of] [something] onto [something]","placeholders":["2","pens","a desk"]}, +{"id":"106434","label":"putting a calculator, paper weight and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a calculator","paper weight","pen"]}, +{"id":"77129","label":"folding blanket","template":"Folding [something]","placeholders":["blanket"]}, +{"id":"135839","label":"stuffing cup into bag","template":"Stuffing [something] into [something]","placeholders":["cup","bag"]}, +{"id":"140633","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"9378","label":"holding pen next to tiger","template":"Holding [something] next to [something]","placeholders":["pen","tiger"]}, +{"id":"26469","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"187615","label":"taking tube out of box","template":"Taking [something] out of [something]","placeholders":["tube","box"]}, +{"id":"162154","label":"showing that trash can is empty","template":"Showing that [something] is empty","placeholders":["trash can"]}, +{"id":"132531","label":"pouring mike's hard lemonade out of bottle","template":"Pouring [something] out of [something]","placeholders":["mike's hard lemonade","bottle"]}, +{"id":"42873","label":"pushing a charger so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a charger"]}, +{"id":"96117","label":"poking a small trash can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a small trash can"]}, +{"id":"27323","label":"putting spoon underneath napkin","template":"Putting [something] underneath [something]","placeholders":["spoon","napkin"]}, +{"id":"194634","label":"pretending to put hammer on a surface","template":"Pretending to put [something] on a surface","placeholders":["hammer"]}, +{"id":"33894","label":"touching (without moving) top of tissue","template":"Touching (without moving) [part] of [something]","placeholders":["top","tissue"]}, +{"id":"20925","label":"moving coin down","template":"Moving [something] down","placeholders":["coin"]}, +{"id":"56852","label":"pushing a coin with an envelope","template":"Pushing [something] with [something]","placeholders":["a coin","an envelope"]}, +{"id":"42312","label":"throwing a box against a water bottle","template":"Throwing [something] against [something]","placeholders":["a box","a water bottle"]}, +{"id":"129978","label":"moving cat and cube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cat","cube"]}, +{"id":"28913","label":"dropping a ruler in front of socks","template":"Dropping [something] in front of [something]","placeholders":["a ruler","socks"]}, +{"id":"17804","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"18950","label":"squeezing a stuffed ball","template":"Squeezing [something]","placeholders":["a stuffed ball"]}, +{"id":"95929","label":"moving scissor away from tool","template":"Moving [something] away from [something]","placeholders":["scissor","tool"]}, +{"id":"129039","label":"moving sugar container closer to tomato","template":"Moving [something] closer to [something]","placeholders":["sugar container","tomato"]}, +{"id":"213177","label":"putting pendrive with other pendrives","template":"Putting [something similar to other things that are already on the table]","placeholders":["pendrive with other pendrives"]}, +{"id":"181013","label":"turning salt upside down","template":"Turning [something] upside down","placeholders":["salt"]}, +{"id":"186553","label":"throwing pillow in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pillow"]}, +{"id":"5008","label":"tilting a book with a box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a box"]}, +{"id":"140540","label":"putting balm onto mobile","template":"Putting [something] onto [something]","placeholders":["balm","mobile"]}, +{"id":"87369","label":"pushing shoe box with book","template":"Pushing [something] with [something]","placeholders":["shoe box","book"]}, +{"id":"142111","label":"putting lighter onto candle","template":"Putting [something] onto [something]","placeholders":["lighter","candle"]}, +{"id":"129889","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"89291","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"135982","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"167940","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"83504","label":"dropping a pin onto a container","template":"Dropping [something] onto [something]","placeholders":["a pin","a container"]}, +{"id":"40718","label":"taking lidded cup out of container","template":"Taking [something] out of [something]","placeholders":["lidded cup","container"]}, +{"id":"180147","label":"spinning cup that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cup"]}, +{"id":"203120","label":"removing mango, revealing dice behind","template":"Removing [something], revealing [something] behind","placeholders":["mango","dice"]}, +{"id":"174519","label":"approaching soda can with your camera","template":"Approaching [something] with your camera","placeholders":["soda can"]}, +{"id":"18431","label":"poking stuffed bear so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["stuffed bear"]}, +{"id":"75587","label":"tearing a sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a sheet of paper"]}, +{"id":"183833","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"173098","label":"putting wristlet, luggage tag and hat on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wristlet","luggage tag","hat"]}, +{"id":"99514","label":"spilling water onto sink","template":"Spilling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"140929","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"61837","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"59005","label":"pretending to pour soda pop out of a bottle, but the bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["soda pop","a bottle","the bottle"]}, +{"id":"123134","label":"moving charger and pendrive away from each other","template":"Moving [something] and [something] away from each other","placeholders":["charger","pendrive"]}, +{"id":"149879","label":"moving wheat of plate wheat","template":"Moving [part] of [something]","placeholders":["wheat","plate wheat"]}, +{"id":"18343","label":"putting binder clip similar to other binder clips that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["binder clip similar to other binder clips that are already on the table"]}, +{"id":"217420","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"143924","label":"putting a napkin, a box and a charger on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a napkin","a box","a charger"]}, +{"id":"180932","label":"tilting a cup with a card on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cup","a card"]}, +{"id":"174813","label":"pulling two ends of something so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["something"]}, +{"id":"112463","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"126450","label":"moving vape away from wallet","template":"Moving [something] away from [something]","placeholders":["vape","wallet"]}, +{"id":"127505","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"53917","label":"pretending to pick top up","template":"Pretending to pick [something] up","placeholders":["top"]}, +{"id":"95898","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"112846","label":"approaching calculator with your camera","template":"Approaching [something] with your camera","placeholders":["calculator"]}, +{"id":"124357","label":"spinning paint bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint bottle"]}, +{"id":"38394","label":"putting a lid onto a pot","template":"Putting [something] onto [something]","placeholders":["a lid","a pot"]}, +{"id":"63033","label":"putting pen into glass","template":"Putting [something] into [something]","placeholders":["pen","glass"]}, +{"id":"146621","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"132169","label":"pulling hand kercief out of pouch","template":"Pulling [something] out of [something]","placeholders":["hand kercief","pouch"]}, +{"id":"195781","label":"folding wallet","template":"Folding [something]","placeholders":["wallet"]}, +{"id":"50173","label":"turning the camera upwards while filming curtains","template":"Turning the camera upwards while filming [something]","placeholders":["curtains"]}, +{"id":"127345","label":"lifting headset with paper on it","template":"Lifting [something] with [something] on it","placeholders":["headset","paper"]}, +{"id":"48029","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"96691","label":"poking a stack of cards so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cards"]}, +{"id":"178672","label":"squeezing cloth","template":"Squeezing [something]","placeholders":["cloth"]}, +{"id":"165214","label":"moving comb down","template":"Moving [something] down","placeholders":["comb"]}, +{"id":"67898","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"176204","label":"taking one of the glasses on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of the glasses on the table"]}, +{"id":"103655","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"20053","label":"wiping juice off of counter","template":"Wiping [something] off of [something]","placeholders":["juice","counter"]}, +{"id":"91152","label":"squeezing plastic bag","template":"Squeezing [something]","placeholders":["plastic bag"]}, +{"id":"185612","label":"pushing hat from left to right","template":"Pushing [something] from left to right","placeholders":["hat"]}, +{"id":"104918","label":"unfolding wool mat","template":"Unfolding [something]","placeholders":["wool mat"]}, +{"id":"130352","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"81878","label":"taking knife from table","template":"Taking [something] from [somewhere]","placeholders":["knife","table"]}, +{"id":"146523","label":"moving a pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a pen"]}, +{"id":"97877","label":"rolling a ring on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ring"]}, +{"id":"149475","label":"spilling water next to a hanger","template":"Spilling [something] next to [something]","placeholders":["water","a hanger"]}, +{"id":"101214","label":"turning the camera upwards while filming toy giraffe","template":"Turning the camera upwards while filming [something]","placeholders":["toy giraffe"]}, +{"id":"31145","label":"putting screwdriver on a surface","template":"Putting [something] on a surface","placeholders":["screwdriver"]}, +{"id":"210816","label":"tipping a large plastic container over","template":"Tipping [something] over","placeholders":["a large plastic container"]}, +{"id":"112165","label":"covering a plush with a shirt","template":"Covering [something] with [something]","placeholders":["a plush","a shirt"]}, +{"id":"135493","label":"laying unopened drink on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["unopened drink"]}, +{"id":"80429","label":"pretending to put a bottle onto the bed","template":"Pretending to put [something] onto [something]","placeholders":["a bottle","the bed"]}, +{"id":"148845","label":"moving remote up","template":"Moving [something] up","placeholders":["remote"]}, +{"id":"12583","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"9928","label":"pushing salt shaker from right to left","template":"Pushing [something] from right to left","placeholders":["salt shaker"]}, +{"id":"111451","label":"turning lipstick upside down","template":"Turning [something] upside down","placeholders":["lipstick"]}, +{"id":"39402","label":"uncovering a razor","template":"Uncovering [something]","placeholders":["a razor"]}, +{"id":"27300","label":"stuffing hoodie into bag","template":"Stuffing [something] into [something]","placeholders":["hoodie","bag"]}, +{"id":"65281","label":"dropping a pen onto the table","template":"Dropping [something] onto [something]","placeholders":["a pen","the table"]}, +{"id":"143328","label":"closing jam-box","template":"Closing [something]","placeholders":["jam-box"]}, +{"id":"125400","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"155999","label":"pretending to close pocket diary without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["pocket diary"]}, +{"id":"149765","label":"tipping red cup with paperwad over, so paperwad falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["red cup","paperwad","paperwad"]}, +{"id":"194951","label":"holding purple container","template":"Holding [something]","placeholders":["purple container"]}, +{"id":"135606","label":"pushing bracelet so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bracelet"]}, +{"id":"491","label":"opening fridge door","template":"Opening [something]","placeholders":["fridge door"]}, +{"id":"50245","label":"pretending to open book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["book"]}, +{"id":"154369","label":"pushing a candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a candle"]}, +{"id":"95626","label":"moving pen and highlighter away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","highlighter"]}, +{"id":"172560","label":"rolling steel weight on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["steel weight"]}, +{"id":"102941","label":"moving candle away from candle","template":"Moving [something] away from [something]","placeholders":["candle","candle"]}, +{"id":"41296","label":"showing that cookie jar is empty","template":"Showing that [something] is empty","placeholders":["cookie jar"]}, +{"id":"13578","label":"pulling grass out of soil ground","template":"Pulling [something] out of [something]","placeholders":["grass","soil ground"]}, +{"id":"124854","label":"putting a pencil on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pencil"]}, +{"id":"103941","label":"putting shoes into packet","template":"Putting [something] into [something]","placeholders":["shoes","packet"]}, +{"id":"217218","label":"throwing emblem onto a surface","template":"Throwing [something] onto a surface","placeholders":["emblem"]}, +{"id":"43636","label":"turning the bottle upside down","template":"Turning [something] upside down","placeholders":["the bottle"]}, +{"id":"71989","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"177622","label":"putting screwdiver, clip and thread on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["screwdiver","clip","thread"]}, +{"id":"66130","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"67288","label":"moving mug and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mug","bottle"]}, +{"id":"6903","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"57971","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"125178","label":"tearing magazine page into two pieces","template":"Tearing [something] into two pieces","placeholders":["magazine page"]}, +{"id":"95180","label":"pretending to pour something out of something, but something is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["something","something","something"]}, +{"id":"108609","label":"pushing coffee from left to right","template":"Pushing [something] from left to right","placeholders":["coffee"]}, +{"id":"216818","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"111036","label":"stuffing a towel into a box","template":"Stuffing [something] into [something]","placeholders":["a towel","a box"]}, +{"id":"220270","label":"twisting hair","template":"Twisting [something]","placeholders":["hair"]}, +{"id":"133003","label":"putting keys behind bag","template":"Putting [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"71644","label":"holding a fork next to a can or container","template":"Holding [something] next to [something]","placeholders":["a fork","a can or container"]}, +{"id":"180020","label":"cotton falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cotton"]}, +{"id":"119669","label":"showing pen on top of holder","template":"Showing [something] on top of [something]","placeholders":["pen","holder"]}, +{"id":"152234","label":"moving blue colour pen down","template":"Moving [something] down","placeholders":["blue colour pen"]}, +{"id":"47593","label":"spilling tea onto sink","template":"Spilling [something] onto [something]","placeholders":["tea","sink"]}, +{"id":"51121","label":"turning a can upside down","template":"Turning [something] upside down","placeholders":["a can"]}, +{"id":"69836","label":"pretending to open canister without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["canister"]}, +{"id":"23437","label":"showing bootle behind book","template":"Showing [something] behind [something]","placeholders":["bootle","book"]}, +{"id":"140100","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"124651","label":"putting a pen next to container","template":"Putting [something] next to [something]","placeholders":["a pen","container"]}, +{"id":"152291","label":"showing that drawer is empty","template":"Showing that [something] is empty","placeholders":["drawer"]}, +{"id":"31723","label":"dropping lipstick tube onto floor","template":"Dropping [something] onto [something]","placeholders":["lipstick tube","floor"]}, +{"id":"197532","label":"pretending to take paper out of notebook","template":"Pretending to take [something] out of [something]","placeholders":["paper","notebook"]}, +{"id":"90483","label":"showing car keys to the camera","template":"Showing [something] to the camera","placeholders":["car keys"]}, +{"id":"217567","label":"putting stuffed animal that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stuffed animal"]}, +{"id":"49496","label":"pretending to pick a key up","template":"Pretending to pick [something] up","placeholders":["a key"]}, +{"id":"116325","label":"tilting a tablet with a block on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a tablet","a block"]}, +{"id":"182391","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"32261","label":"pretending to put something on a surface","template":"Pretending to put [something] on a surface","placeholders":["something"]}, +{"id":"91072","label":"plugging cord into power socket","template":"Plugging [something] into [something]","placeholders":["cord","power socket"]}, +{"id":"70684","label":"putting 2 bananas onto box","template":"Putting [number of] [something] onto [something]","placeholders":["2","bananas","box"]}, +{"id":"57802","label":"lifting a stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a stick"]}, +{"id":"78979","label":"plugging phone charger into electrical plug","template":"Plugging [something] into [something]","placeholders":["phone charger","electrical plug"]}, +{"id":"66550","label":"opening a bucket","template":"Opening [something]","placeholders":["a bucket"]}, +{"id":"42104","label":"holding vape behind guitar case","template":"Holding [something] behind [something]","placeholders":["vape","guitar case"]}, +{"id":"100444","label":"rolling a tennis ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a tennis ball"]}, +{"id":"60832","label":"showing that drawer is empty","template":"Showing that [something] is empty","placeholders":["drawer"]}, +{"id":"218256","label":"pretending to be tearing a tablet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a tablet"]}, +{"id":"121410","label":"taking one of containers","template":"Taking [one of many similar things on the table]","placeholders":["one of containers"]}, +{"id":"214725","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"44842","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"40536","label":"twisting ecobag","template":"Twisting [something]","placeholders":["ecobag"]}, +{"id":"201242","label":"pretending to put plant on a surface","template":"Pretending to put [something] on a surface","placeholders":["plant"]}, +{"id":"184338","label":"attaching a post it note to a map","template":"Attaching [something] to [something]","placeholders":["a post it note","a map"]}, +{"id":"81114","label":"putting a wooden piece onto the top of a plant so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a wooden piece","the top of a plant"]}, +{"id":"81725","label":"pushing comp so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["comp"]}, +{"id":"47599","label":"hitting a candle with a piece of paper","template":"Hitting [something] with [something]","placeholders":["a candle","a piece of paper"]}, +{"id":"118955","label":"lifting a book with a measuring tape on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a measuring tape"]}, +{"id":"122419","label":"throwing a tissue box against a mug","template":"Throwing [something] against [something]","placeholders":["a tissue box","a mug"]}, +{"id":"57704","label":"stuffing cards into card box","template":"Stuffing [something] into [something]","placeholders":["cards","card box"]}, +{"id":"182514","label":"picking flipflop up","template":"Picking [something] up","placeholders":["flipflop"]}, +{"id":"188763","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"72022","label":"pulling scotch tape from left to right","template":"Pulling [something] from left to right","placeholders":["scotch tape"]}, +{"id":"146427","label":"covering calculator with it's protective lid","template":"Covering [something] with [something]","placeholders":["calculator","it's protective lid"]}, +{"id":"216933","label":"pulling two ends of paper but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["paper"]}, +{"id":"61529","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"72418","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"217982","label":"holding wine bottle","template":"Holding [something]","placeholders":["wine bottle"]}, +{"id":"14012","label":"hitting mouse with finger","template":"Hitting [something] with [something]","placeholders":["mouse","finger"]}, +{"id":"137462","label":"holding bottle in front of bag","template":"Holding [something] in front of [something]","placeholders":["bottle","bag"]}, +{"id":"40237","label":"pretending or trying and failing to twist knife","template":"Pretending or trying and failing to twist [something]","placeholders":["knife"]}, +{"id":"209478","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"16624","label":"picking a calculator up","template":"Picking [something] up","placeholders":["a calculator"]}, +{"id":"26785","label":"taking a toy owl","template":"Taking [one of many similar things on the table]","placeholders":["a toy owl"]}, +{"id":"207141","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"197850","label":"turning smarthphone upside down","template":"Turning [something] upside down","placeholders":["smarthphone"]}, +{"id":"23607","label":"rolling cover on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cover"]}, +{"id":"203861","label":"lifting up one end of a book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a book"]}, +{"id":"45310","label":"hitting skateboard with a powerbank","template":"Hitting [something] with [something]","placeholders":["skateboard","a powerbank"]}, +{"id":"75454","label":"pushing hair gum so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hair gum"]}, +{"id":"97442","label":"poking leaves so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["leaves"]}, +{"id":"212504","label":"spilling water behind bucket","template":"Spilling [something] behind [something]","placeholders":["water","bucket"]}, +{"id":"30751","label":"putting shirt into cover","template":"Putting [something] into [something]","placeholders":["shirt","cover"]}, +{"id":"51426","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"135659","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"66745","label":"pretending to take a pen from a glass","template":"Pretending to take [something] from [somewhere]","placeholders":["a pen","a glass"]}, +{"id":"9482","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"92832","label":"lifting a surface with box on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["box"]}, +{"id":"363","label":"spinning ball pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ball pen"]}, +{"id":"132251","label":"pushing cell from right to left","template":"Pushing [something] from right to left","placeholders":["cell"]}, +{"id":"2733","label":"putting a tape dispenser upright on the table","template":"Putting [something] upright on the table","placeholders":["a tape dispenser"]}, +{"id":"94214","label":"lifting tray with cup on it","template":"Lifting [something] with [something] on it","placeholders":["tray","cup"]}, +{"id":"18593","label":"pretending to take carpet slippers from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["carpet slippers","ground"]}, +{"id":"186411","label":"putting a fork into a tea cup","template":"Putting [something] into [something]","placeholders":["a fork","a tea cup"]}, +{"id":"47303","label":"opening food container","template":"Opening [something]","placeholders":["food container"]}, +{"id":"68882","label":"squeezing a reindeer bear","template":"Squeezing [something]","placeholders":["a reindeer bear"]}, +{"id":"101560","label":"lifting a surface with tweezers on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["tweezers"]}, +{"id":"25515","label":"plugging a usb into a laptop","template":"Plugging [something] into [something]","placeholders":["a usb","a laptop"]}, +{"id":"115683","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"158690","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"182749","label":"showing gooseberry to the camera","template":"Showing [something] to the camera","placeholders":["gooseberry"]}, +{"id":"54443","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"100236","label":"pushing cable from left to right","template":"Pushing [something] from left to right","placeholders":["cable"]}, +{"id":"183623","label":"spilling water next to a peg","template":"Spilling [something] next to [something]","placeholders":["water","a peg"]}, +{"id":"133861","label":"pushing car audio cassette adaptor with whiteboard marker","template":"Pushing [something] with [something]","placeholders":["car audio cassette adaptor","whiteboard marker"]}, +{"id":"59929","label":"holding white toy car in front of cup","template":"Holding [something] in front of [something]","placeholders":["white toy car","cup"]}, +{"id":"167482","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"24285","label":"moving phone case up","template":"Moving [something] up","placeholders":["phone case"]}, +{"id":"43219","label":"spinning mobilephone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["mobilephone"]}, +{"id":"81790","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"152597","label":"covering a shor with a blanket","template":"Covering [something] with [something]","placeholders":["a shor","a blanket"]}, +{"id":"49163","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"6889","label":"pretending to pick red pot holder up","template":"Pretending to pick [something] up","placeholders":["red pot holder"]}, +{"id":"211484","label":"putting water bottle on a surface","template":"Putting [something] on a surface","placeholders":["water bottle"]}, +{"id":"188567","label":"putting a pencil behind a dumbbell","template":"Putting [something] behind [something]","placeholders":["a pencil","a dumbbell"]}, +{"id":"54563","label":"dropping box next to trash can","template":"Dropping [something] next to [something]","placeholders":["box","trash can"]}, +{"id":"64597","label":"dropping boot onto floor","template":"Dropping [something] onto [something]","placeholders":["boot","floor"]}, +{"id":"69778","label":"turning the camera left while filming wall","template":"Turning the camera left while filming [something]","placeholders":["wall"]}, +{"id":"98108","label":"tilting teeth brush with a teeth brush on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["teeth brush","a teeth brush"]}, +{"id":"176907","label":"turning the camera left while filming lighter","template":"Turning the camera left while filming [something]","placeholders":["lighter"]}, +{"id":"220079","label":"pretending or trying and failing to twist remote-control","template":"Pretending or trying and failing to twist [something]","placeholders":["remote-control"]}, +{"id":"95432","label":"pretending to be tearing a belt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a belt"]}, +{"id":"31875","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"7435","label":"pretending to take stapler from table","template":"Pretending to take [something] from [somewhere]","placeholders":["stapler","table"]}, +{"id":"53126","label":"spinning package that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["package"]}, +{"id":"101895","label":"dropping a qtip onto the counter","template":"Dropping [something] onto [something]","placeholders":["a qtip","the counter"]}, +{"id":"23188","label":"holding a paperclip over a pen cap","template":"Holding [something] over [something]","placeholders":["a paperclip","a pen cap"]}, +{"id":"5353","label":"holding a bottle behind christmas tree","template":"Holding [something] behind [something]","placeholders":["a bottle","christmas tree"]}, +{"id":"52930","label":"moving a mug and a dvd closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","a dvd"]}, +{"id":"155605","label":"pulling wristwatch from left to right","template":"Pulling [something] from left to right","placeholders":["wristwatch"]}, +{"id":"78067","label":"putting a box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a box"]}, +{"id":"70316","label":"pushing pen onto box","template":"Pushing [something] onto [something]","placeholders":["pen","box"]}, +{"id":"122272","label":"stuffing spectacle box into pouch","template":"Stuffing [something] into [something]","placeholders":["spectacle box","pouch"]}, +{"id":"110958","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"59218","label":"key falling like a rock","template":"[Something] falling like a rock","placeholders":["key"]}, +{"id":"52414","label":"candy wrapper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["candy wrapper"]}, +{"id":"74370","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"75335","label":"moving a matchbox across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a matchbox"]}, +{"id":"164385","label":"putting pink cologne on a surface","template":"Putting [something] on a surface","placeholders":["pink cologne"]}, +{"id":"195175","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"137160","label":"letting a small iron rod roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a small iron rod"]}, +{"id":"85889","label":"pushing towel from left to right","template":"Pushing [something] from left to right","placeholders":["towel"]}, +{"id":"148203","label":"holding green water bottle","template":"Holding [something]","placeholders":["green water bottle"]}, +{"id":"71965","label":"pushing keys so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["keys"]}, +{"id":"100234","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"22791","label":"pretending to be tearing a blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a blanket"]}, +{"id":"64951","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"8858","label":"twisting a lid onto a container","template":"Twisting [something]","placeholders":["a lid onto a container"]}, +{"id":"112949","label":"putting a coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin"]}, +{"id":"24023","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"31181","label":"putting a book on a surface","template":"Putting [something] on a surface","placeholders":["a book"]}, +{"id":"44803","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"198976","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"127935","label":"showing a remote behind a tv","template":"Showing [something] behind [something]","placeholders":["a remote","a tv"]}, +{"id":"170806","label":"pretending to take mouse from desk","template":"Pretending to take [something] from [somewhere]","placeholders":["mouse","desk"]}, +{"id":"25484","label":"holding nail polish over air freshener can","template":"Holding [something] over [something]","placeholders":["nail polish","air freshener can"]}, +{"id":"178462","label":"pretending to put a spoon on a surface","template":"Pretending to put [something] on a surface","placeholders":["a spoon"]}, +{"id":"202241","label":"showing that skillet is empty","template":"Showing that [something] is empty","placeholders":["skillet"]}, +{"id":"13820","label":"moving a tape away from sun glasses","template":"Moving [something] away from [something]","placeholders":["a tape","sun glasses"]}, +{"id":"151876","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"45389","label":"showing that a tray is empty","template":"Showing that [something] is empty","placeholders":["a tray"]}, +{"id":"211245","label":"pulling phone from behind of camera","template":"Pulling [something] from behind of [something]","placeholders":["phone","camera"]}, +{"id":"201569","label":"pulling paint tube from left to right","template":"Pulling [something] from left to right","placeholders":["paint tube"]}, +{"id":"215016","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"128682","label":"dropping a chalk into a chalk box","template":"Dropping [something] into [something]","placeholders":["a chalk","a chalk box"]}, +{"id":"112777","label":"plugging plag into wall outlet","template":"Plugging [something] into [something]","placeholders":["plag","wall outlet"]}, +{"id":"100595","label":"tipping hand soap over","template":"Tipping [something] over","placeholders":["hand soap"]}, +{"id":"91913","label":"dropping rubix cube into bowl","template":"Dropping [something] into [something]","placeholders":["rubix cube","bowl"]}, +{"id":"130127","label":"putting a pen next to a screwdriver","template":"Putting [something] next to [something]","placeholders":["a pen","a screwdriver"]}, +{"id":"218929","label":"pushing a snake ladder board so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a snake ladder board"]}, +{"id":"21691","label":"moving milk closer to knife","template":"Moving [something] closer to [something]","placeholders":["milk","knife"]}, +{"id":"60025","label":"taking newspaper from floor","template":"Taking [something] from [somewhere]","placeholders":["newspaper","floor"]}, +{"id":"201852","label":"letting a glass jar roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a glass jar"]}, +{"id":"8763","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"112745","label":"moving toy closer to plastic glass","template":"Moving [something] closer to [something]","placeholders":["toy","plastic glass"]}, +{"id":"126111","label":"pretending to scoop soup up with a spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["soup","a spoon"]}, +{"id":"8503","label":"putting 1 bag of rice onto a pot","template":"Putting [number of] [something] onto [something]","placeholders":["1","bag of rice","a pot"]}, +{"id":"6863","label":"wiping crumbs off of plate","template":"Wiping [something] off of [something]","placeholders":["crumbs","plate"]}, +{"id":"116785","label":"tearing orange paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["orange paper"]}, +{"id":"33564","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"172634","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"199855","label":"bending a piece of paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a piece of paper"]}, +{"id":"212373","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"150892","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"103485","label":"pretending to put a cable into a laptop port","template":"Pretending to put [something] into [something]","placeholders":["a cable","a laptop port"]}, +{"id":"65914","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"49463","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"123288","label":"pushing pot with stick","template":"Pushing [something] with [something]","placeholders":["pot","stick"]}, +{"id":"202867","label":"uncovering a cellphone","template":"Uncovering [something]","placeholders":["a cellphone"]}, +{"id":"180774","label":"polythene cover falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["polythene cover"]}, +{"id":"186768","label":"bending wooden reeper until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden reeper"]}, +{"id":"94925","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"147099","label":"pushing toy car from left to right","template":"Pushing [something] from left to right","placeholders":["toy car"]}, +{"id":"77707","label":"pulling black hair tie from right to left","template":"Pulling [something] from right to left","placeholders":["black hair tie"]}, +{"id":"211101","label":"taking mail","template":"Taking [one of many similar things on the table]","placeholders":["mail"]}, +{"id":"169919","label":"pouring water into a mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a mug"]}, +{"id":"134050","label":"stacking one cup onto a can","template":"Stacking [number of] [something]","placeholders":["one cup","onto a can"]}, +{"id":"75323","label":"unfolding underwear","template":"Unfolding [something]","placeholders":["underwear"]}, +{"id":"107295","label":"pretending or trying and failing to twist moprod","template":"Pretending or trying and failing to twist [something]","placeholders":["moprod"]}, +{"id":"38411","label":"opening a container","template":"Opening [something]","placeholders":["a container"]}, +{"id":"130539","label":"putting usb cable next to yellowbook","template":"Putting [something] next to [something]","placeholders":["usb cable","yellowbook"]}, +{"id":"169026","label":"throwing towel","template":"Throwing [something]","placeholders":["towel"]}, +{"id":"121585","label":"putting a musical tabala onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a musical tabala"]}, +{"id":"129496","label":"bending carrot until it breaks","template":"Bending [something] until it breaks","placeholders":["carrot"]}, +{"id":"207166","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"192226","label":"putting book underneath mobile","template":"Putting [something] underneath [something]","placeholders":["book","mobile"]}, +{"id":"82929","label":"trying to pour soda into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["soda","a cup"]}, +{"id":"37072","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"90253","label":"bending wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["wire"]}, +{"id":"138521","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"41066","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"164039","label":"pretending to take pen out of glass","template":"Pretending to take [something] out of [something]","placeholders":["pen","glass"]}, +{"id":"32583","label":"tilting coaster with avocado on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["coaster","avocado"]}, +{"id":"162338","label":"pushing torch from right to left","template":"Pushing [something] from right to left","placeholders":["torch"]}, +{"id":"108769","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"127291","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"67862","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"134947","label":"turning the camera upwards while filming brown bracelet","template":"Turning the camera upwards while filming [something]","placeholders":["brown bracelet"]}, +{"id":"452","label":"spinning fidget that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["fidget"]}, +{"id":"80228","label":"tipping pepper shaker over","template":"Tipping [something] over","placeholders":["pepper shaker"]}, +{"id":"124674","label":"opening a tap","template":"Opening [something]","placeholders":["a tap"]}, +{"id":"135976","label":"lifting ipad with pen on it","template":"Lifting [something] with [something] on it","placeholders":["ipad","pen"]}, +{"id":"94872","label":"putting a tape in front of a coil of wires","template":"Putting [something] in front of [something]","placeholders":["a tape","a coil of wires"]}, +{"id":"120936","label":"moving bottle and can away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","can"]}, +{"id":"172949","label":"pretending to pick a coffee cup up","template":"Pretending to pick [something] up","placeholders":["a coffee cup"]}, +{"id":"178666","label":"pretending to squeeze a tube of toothpaste","template":"Pretending to squeeze [something]","placeholders":["a tube of toothpaste"]}, +{"id":"98452","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"121613","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"157241","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"207756","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"22059","label":"holding remote in front of clock","template":"Holding [something] in front of [something]","placeholders":["remote","clock"]}, +{"id":"108274","label":"putting leaf","template":"Putting [something similar to other things that are already on the table]","placeholders":["leaf"]}, +{"id":"215063","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"217781","label":"stuffing paper clips box into a container","template":"Stuffing [something] into [something]","placeholders":["paper clips box","a container"]}, +{"id":"99067","label":"trying to bend a textsufer so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a textsufer"]}, +{"id":"191007","label":"pouring juice into a cup","template":"Pouring [something] into [something]","placeholders":["juice","a cup"]}, +{"id":"12888","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"154401","label":"stuffing tissue into mug","template":"Stuffing [something] into [something]","placeholders":["tissue","mug"]}, +{"id":"188573","label":"putting glue stick upright on the table","template":"Putting [something] upright on the table","placeholders":["glue stick"]}, +{"id":"97789","label":"holding coins (pennies)","template":"Holding [something]","placeholders":["coins (pennies)"]}, +{"id":"214483","label":"pushing a box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a box"]}, +{"id":"87387","label":"spinning a spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a spoon"]}, +{"id":"4917","label":"taking water bottle out of refrigerator","template":"Taking [something] out of [something]","placeholders":["water bottle","refrigerator"]}, +{"id":"157382","label":"uncovering plush doll","template":"Uncovering [something]","placeholders":["plush doll"]}, +{"id":"128530","label":"holding nail clipper in front of pencil case","template":"Holding [something] in front of [something]","placeholders":["nail clipper","pencil case"]}, +{"id":"150113","label":"pretending to put crayon into mug","template":"Pretending to put [something] into [something]","placeholders":["crayon","mug"]}, +{"id":"217900","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"167177","label":"turning the camera right while filming violin","template":"Turning the camera right while filming [something]","placeholders":["violin"]}, +{"id":"102979","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"39397","label":"dropping cigarette lighter in front of black pouch","template":"Dropping [something] in front of [something]","placeholders":["cigarette lighter","black pouch"]}, +{"id":"18570","label":"wiping cleaner off of window","template":"Wiping [something] off of [something]","placeholders":["cleaner","window"]}, +{"id":"112472","label":"lifting a compact disk up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a compact disk"]}, +{"id":"41036","label":"uncovering brush","template":"Uncovering [something]","placeholders":["brush"]}, +{"id":"32957","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"190226","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"148404","label":"holding bottle next to ashtray","template":"Holding [something] next to [something]","placeholders":["bottle","ashtray"]}, +{"id":"73965","label":"scooping crayons up with hands","template":"Scooping [something] up with [something]","placeholders":["crayons","hands"]}, +{"id":"137786","label":"putting a spoon into bucket","template":"Putting [something] into [something]","placeholders":["a spoon","bucket"]}, +{"id":"63892","label":"pushing jug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jug"]}, +{"id":"8851","label":"stacking 3 sponges","template":"Stacking [number of] [something]","placeholders":["3","sponges"]}, +{"id":"24378","label":"holding a lighter over a table","template":"Holding [something] over [something]","placeholders":["a lighter","a table"]}, +{"id":"83163","label":"moving glasses across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["glasses"]}, +{"id":"134233","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"32152","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"220758","label":"turning a mayo jar upside down","template":"Turning [something] upside down","placeholders":["a mayo jar"]}, +{"id":"216825","label":"tearing post it just a little bit","template":"Tearing [something] just a little bit","placeholders":["post it"]}, +{"id":"203974","label":"pouring water into glass bottle","template":"Pouring [something] into [something]","placeholders":["water","glass bottle"]}, +{"id":"108285","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"31431","label":"putting a mug in front of the stapler","template":"Putting [something] in front of [something]","placeholders":["a mug","the stapler"]}, +{"id":"188843","label":"pushing a marker from left to right","template":"Pushing [something] from left to right","placeholders":["a marker"]}, +{"id":"163577","label":"pretending to pick glass up","template":"Pretending to pick [something] up","placeholders":["glass"]}, +{"id":"51076","label":"lifting a surface with kitchen scissors on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["kitchen scissors"]}, +{"id":"178388","label":"lifting up one end of chair, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["chair"]}, +{"id":"173081","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"189818","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"135111","label":"spreading sauce onto a plate","template":"Spreading [something] onto [something]","placeholders":["sauce","a plate"]}, +{"id":"150305","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"149224","label":"putting candle behind frame","template":"Putting [something] behind [something]","placeholders":["candle","frame"]}, +{"id":"49283","label":"pouring milk out of container","template":"Pouring [something] out of [something]","placeholders":["milk","container"]}, +{"id":"160267","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"38515","label":"letting a medicine bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a medicine bottle"]}, +{"id":"156782","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"55101","label":"pushing marker so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["marker"]}, +{"id":"203764","label":"moving torch across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["torch"]}, +{"id":"38820","label":"closing folder","template":"Closing [something]","placeholders":["folder"]}, +{"id":"40514","label":"pretending or failing to wipe butter off of plate","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["butter","plate"]}, +{"id":"204491","label":"plugging charger into wall","template":"Plugging [something] into [something]","placeholders":["charger","wall"]}, +{"id":"55311","label":"pretending to turn a smartphone upside down","template":"Pretending to turn [something] upside down","placeholders":["a smartphone"]}, +{"id":"24349","label":"holding food container behind a man","template":"Holding [something] behind [something]","placeholders":["food container","a man"]}, +{"id":"187962","label":"spinning usb drive so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["usb drive"]}, +{"id":"195002","label":"tipping eraser over","template":"Tipping [something] over","placeholders":["eraser"]}, +{"id":"121547","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"21040","label":"pretending to be tearing change purse","template":"Pretending to be tearing [something that is not tearable]","placeholders":["change purse"]}, +{"id":"117837","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"48916","label":"holding sticky notes in front of sticky notes","template":"Holding [something] in front of [something]","placeholders":["sticky notes","sticky notes"]}, +{"id":"28970","label":"holding a matchbox over a padlock","template":"Holding [something] over [something]","placeholders":["a matchbox","a padlock"]}, +{"id":"168721","label":"dropping a cup into a paper bag","template":"Dropping [something] into [something]","placeholders":["a cup","a paper bag"]}, +{"id":"40949","label":"dropping a peg behind a cup","template":"Dropping [something] behind [something]","placeholders":["a peg","a cup"]}, +{"id":"218509","label":"uncovering a book","template":"Uncovering [something]","placeholders":["a book"]}, +{"id":"85919","label":"moving tyre of a bicycle","template":"Moving [part] of [something]","placeholders":["tyre","a bicycle"]}, +{"id":"74013","label":"spilling water next to a knife","template":"Spilling [something] next to [something]","placeholders":["water","a knife"]}, +{"id":"170548","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"84035","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"169543","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"176003","label":"showing headphones on top of a television","template":"Showing [something] on top of [something]","placeholders":["headphones","a television"]}, +{"id":"189993","label":"putting a lighter into a measuring cup","template":"Putting [something] into [something]","placeholders":["a lighter","a measuring cup"]}, +{"id":"58250","label":"lifting a surface with a mug on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a mug"]}, +{"id":"145003","label":"poking a hole into sugar","template":"Poking a hole into [something soft]","placeholders":["sugar"]}, +{"id":"184341","label":"pretending to put purple balloon pump on a surface","template":"Pretending to put [something] on a surface","placeholders":["purple balloon pump"]}, +{"id":"50619","label":"poking pan so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["pan"]}, +{"id":"192749","label":"folding blowes","template":"Folding [something]","placeholders":["blowes"]}, +{"id":"137998","label":"holding magazine next to hand bag","template":"Holding [something] next to [something]","placeholders":["magazine","hand bag"]}, +{"id":"33587","label":"showing chair next to desk","template":"Showing [something] next to [something]","placeholders":["chair","desk"]}, +{"id":"10338","label":"uncovering twizzer","template":"Uncovering [something]","placeholders":["twizzer"]}, +{"id":"77834","label":"turning a lighter upside down","template":"Turning [something] upside down","placeholders":["a lighter"]}, +{"id":"28479","label":"pushing a mouse with a wallet","template":"Pushing [something] with [something]","placeholders":["a mouse","a wallet"]}, +{"id":"176955","label":"turning tea light candle upside down","template":"Turning [something] upside down","placeholders":["tea light candle"]}, +{"id":"215686","label":"putting 2 ink bottles onto calculator","template":"Putting [number of] [something] onto [something]","placeholders":["2","ink bottles","calculator"]}, +{"id":"57022","label":"pretending to open phone without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["phone"]}, +{"id":"15776","label":"pretending to put yellow hairband next to duster","template":"Pretending to put [something] next to [something]","placeholders":["yellow hairband","duster"]}, +{"id":"26287","label":"holding pill bottle over laptop","template":"Holding [something] over [something]","placeholders":["pill bottle","laptop"]}, +{"id":"189438","label":"turning the camera downwards while filming scent bottle","template":"Turning the camera downwards while filming [something]","placeholders":["scent bottle"]}, +{"id":"97139","label":"attaching a coin to a padlock","template":"Attaching [something] to [something]","placeholders":["a coin","a padlock"]}, +{"id":"185196","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"188622","label":"tissue box being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["tissue box","couch"]}, +{"id":"97822","label":"moving away from a painting with your camera","template":"Moving away from [something] with your camera","placeholders":["a painting"]}, +{"id":"109085","label":"putting a perfume next to lotion bottle","template":"Putting [something] next to [something]","placeholders":["a perfume","lotion bottle"]}, +{"id":"138243","label":"moving arm of stuffed bear","template":"Moving [part] of [something]","placeholders":["arm","stuffed bear"]}, +{"id":"29941","label":"pulling tv remote from right to left","template":"Pulling [something] from right to left","placeholders":["tv remote"]}, +{"id":"171121","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"110140","label":"pretending to put a pen onto a bag","template":"Pretending to put [something] onto [something]","placeholders":["a pen","a bag"]}, +{"id":"178377","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"100336","label":"turning the camera right while filming orange notebook","template":"Turning the camera right while filming [something]","placeholders":["orange notebook"]}, +{"id":"168150","label":"stuffing box into cube","template":"Stuffing [something] into [something]","placeholders":["box","cube"]}, +{"id":"172025","label":"pretending to poke ipad case","template":"Pretending to poke [something]","placeholders":["ipad case"]}, +{"id":"156740","label":"pretending to put tiffen box on a surface","template":"Pretending to put [something] on a surface","placeholders":["tiffen box"]}, +{"id":"139013","label":"putting chalk into jar","template":"Putting [something] into [something]","placeholders":["chalk","jar"]}, +{"id":"8563","label":"pretending to throw plastic bottle","template":"Pretending to throw [something]","placeholders":["plastic bottle"]}, +{"id":"36373","label":"lifting up one end of bottle, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bottle"]}, +{"id":"131442","label":"closing ink bottle","template":"Closing [something]","placeholders":["ink bottle"]}, +{"id":"5249","label":"spilling water next to a box","template":"Spilling [something] next to [something]","placeholders":["water","a box"]}, +{"id":"146221","label":"dropping hair tie into cupholder","template":"Dropping [something] into [something]","placeholders":["hair tie","cupholder"]}, +{"id":"71815","label":"holding 50 peso bill","template":"Holding [something]","placeholders":["50 peso bill"]}, +{"id":"151083","label":"tilting book with remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","remote"]}, +{"id":"186033","label":"pretending to open a drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a drawer"]}, +{"id":"1027","label":"putting pencil into pencil case","template":"Putting [something] into [something]","placeholders":["pencil","pencil case"]}, +{"id":"15130","label":"uncovering a plate","template":"Uncovering [something]","placeholders":["a plate"]}, +{"id":"180385","label":"trying to bend marker so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["marker"]}, +{"id":"199966","label":"twisting blouse","template":"Twisting [something]","placeholders":["blouse"]}, +{"id":"125581","label":"pushing pink blush on from right to left","template":"Pushing [something] from right to left","placeholders":["pink blush on"]}, +{"id":"168726","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"169827","label":"throwing empty water bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["empty water bottle"]}, +{"id":"84000","label":"lifting match box with ointment tube on it","template":"Lifting [something] with [something] on it","placeholders":["match box","ointment tube"]}, +{"id":"205352","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"99398","label":"pushing small sharpener from left to right","template":"Pushing [something] from left to right","placeholders":["small sharpener"]}, +{"id":"205927","label":"showing that tin is empty","template":"Showing that [something] is empty","placeholders":["tin"]}, +{"id":"5432","label":"holding business card in front of pen","template":"Holding [something] in front of [something]","placeholders":["business card","pen"]}, +{"id":"90233","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"137165","label":"plugging cord into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall"]}, +{"id":"194379","label":"tipping pepper grinder over","template":"Tipping [something] over","placeholders":["pepper grinder"]}, +{"id":"186192","label":"hitting drum with sock","template":"Hitting [something] with [something]","placeholders":["drum","sock"]}, +{"id":"118939","label":"scooping starburst up with hand","template":"Scooping [something] up with [something]","placeholders":["starburst","hand"]}, +{"id":"104653","label":"lifting up one end of a hammer without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a hammer"]}, +{"id":"168206","label":"tilting a book with a mobile phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a mobile phone"]}, +{"id":"189063","label":"spinning quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["quarter"]}, +{"id":"193607","label":"moving striker coin away from whiteboard marker pen","template":"Moving [something] away from [something]","placeholders":["striker coin","whiteboard marker pen"]}, +{"id":"143000","label":"moving a pen and a pair of sunglasses away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a pair of sunglasses"]}, +{"id":"125443","label":"stacking 2 pill bottles","template":"Stacking [number of] [something]","placeholders":["2","pill bottles"]}, +{"id":"115580","label":"spinning a spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a spoon"]}, +{"id":"113955","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"97768","label":"putting a can in front of keys","template":"Putting [something] in front of [something]","placeholders":["a can","keys"]}, +{"id":"12211","label":"turning the camera upwards while filming ring","template":"Turning the camera upwards while filming [something]","placeholders":["ring"]}, +{"id":"180612","label":"scooping a toy up with my hand","template":"Scooping [something] up with [something]","placeholders":["a toy","my hand"]}, +{"id":"63348","label":"taking controller","template":"Taking [one of many similar things on the table]","placeholders":["controller"]}, +{"id":"95246","label":"putting a paperclip back","template":"Putting [something similar to other things that are already on the table]","placeholders":["a paperclip back"]}, +{"id":"167367","label":"putting 2 wooden sticks onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","wooden sticks","black pouch"]}, +{"id":"68544","label":"putting gear wheel next to tablet box","template":"Putting [something] next to [something]","placeholders":["gear wheel","tablet box"]}, +{"id":"59287","label":"letting ping pong ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ping pong ball"]}, +{"id":"157709","label":"lotion falling like a rock","template":"[Something] falling like a rock","placeholders":["lotion"]}, +{"id":"30017","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"171359","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"67952","label":"carry synthetic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["carry synthetic bag"]}, +{"id":"194103","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"108440","label":"dropping glue in front of paper holder","template":"Dropping [something] in front of [something]","placeholders":["glue","paper holder"]}, +{"id":"31391","label":"spinning kid toy that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["kid toy"]}, +{"id":"20782","label":"stapler falling like a rock","template":"[Something] falling like a rock","placeholders":["stapler"]}, +{"id":"189513","label":"pulling a toy skull out of a box","template":"Pulling [something] out of [something]","placeholders":["a toy skull","a box"]}, +{"id":"3525","label":"pretending or trying and failing to twist spray can","template":"Pretending or trying and failing to twist [something]","placeholders":["spray can"]}, +{"id":"192278","label":"plugging jack into speaker","template":"Plugging [something] into [something]","placeholders":["jack","speaker"]}, +{"id":"120747","label":"putting phone and computer mouse on the table","template":"Putting [something] and [something] on the table","placeholders":["phone","computer mouse"]}, +{"id":"208064","label":"putting pot holder upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pot holder"]}, +{"id":"121848","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"17700","label":"putting a glass in front of the adapter","template":"Putting [something] in front of [something]","placeholders":["a glass","the adapter"]}, +{"id":"36063","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"143952","label":"putting coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins"]}, +{"id":"50199","label":"moving a hair brush and a glass so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a hair brush","a glass"]}, +{"id":"82875","label":"piling sponge, converter, nail clipper up","template":"Piling [something] up","placeholders":["sponge, converter, nail clipper"]}, +{"id":"5469","label":"wiping chocolate off of counter","template":"Wiping [something] off of [something]","placeholders":["chocolate","counter"]}, +{"id":"120977","label":"moving pen and holder closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","holder"]}, +{"id":"73986","label":"putting a salt shaker upright on the table","template":"Putting [something] upright on the table","placeholders":["a salt shaker"]}, +{"id":"83612","label":"moving a small jar away from a big jar","template":"Moving [something] away from [something]","placeholders":["a small jar","a big jar"]}, +{"id":"14538","label":"plugging cord into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","socket"]}, +{"id":"37067","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"103829","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"66093","label":"fidget spinner being deflected from pop bottle","template":"[Something] being deflected from [something]","placeholders":["fidget spinner","pop bottle"]}, +{"id":"197696","label":"sneaker colliding with sneaker and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["sneaker","sneaker"]}, +{"id":"33574","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"110649","label":"laying tablet box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["tablet box"]}, +{"id":"163049","label":"uncovering wallet","template":"Uncovering [something]","placeholders":["wallet"]}, +{"id":"84770","label":"laying black colour marker pen cap on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["black colour marker pen cap"]}, +{"id":"110218","label":"tilting comb with pencil sharpner on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["comb","pencil sharpner"]}, +{"id":"53748","label":"moving keyboard down","template":"Moving [something] down","placeholders":["keyboard"]}, +{"id":"50290","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"47558","label":"tearing receipt into two pieces","template":"Tearing [something] into two pieces","placeholders":["receipt"]}, +{"id":"43126","label":"showing that a small container is empty","template":"Showing that [something] is empty","placeholders":["a small container"]}, +{"id":"72218","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"187940","label":"throwing onion","template":"Throwing [something]","placeholders":["onion"]}, +{"id":"28905","label":"pulling paper towel from right to left","template":"Pulling [something] from right to left","placeholders":["paper towel"]}, +{"id":"120974","label":"moving the remote and the mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the remote","the mouse"]}, +{"id":"177582","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"172706","label":"tilting folder with orange ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","orange ball"]}, +{"id":"5977","label":"failing to put a book into a mug because the book does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a book","a mug","the book"]}, +{"id":"161148","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"171192","label":"plugging a cable into a charger","template":"Plugging [something] into [something]","placeholders":["a cable","a charger"]}, +{"id":"172144","label":"putting watch, glass and doll on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["watch","glass","doll"]}, +{"id":"117965","label":"tilting book with glass on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","glass"]}, +{"id":"193055","label":"moving green colour toy car up","template":"Moving [something] up","placeholders":["green colour toy car"]}, +{"id":"141828","label":"putting medicine on a surface","template":"Putting [something] on a surface","placeholders":["medicine"]}, +{"id":"180327","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"218385","label":"letting a small iron rod roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a small iron rod"]}, +{"id":"263","label":"wiping mark off of counter","template":"Wiping [something] off of [something]","placeholders":["mark","counter"]}, +{"id":"53414","label":"removing a box, revealing a glass behind","template":"Removing [something], revealing [something] behind","placeholders":["a box","a glass"]}, +{"id":"73406","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"189874","label":"laying a can on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a can"]}, +{"id":"110162","label":"turning stacking block upside down","template":"Turning [something] upside down","placeholders":["stacking block"]}, +{"id":"95527","label":"pretending or failing to wipe stain off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","chair"]}, +{"id":"137399","label":"pretending to pick magazine up","template":"Pretending to pick [something] up","placeholders":["magazine"]}, +{"id":"12636","label":"plugging a building block into another building block but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a building block","another building block"]}, +{"id":"181528","label":"lifting up one end of a booklet without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a booklet"]}, +{"id":"3016","label":"turning the camera left while filming pink water bottle","template":"Turning the camera left while filming [something]","placeholders":["pink water bottle"]}, +{"id":"205607","label":"pretending to take sandals from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["sandals","floor"]}, +{"id":"1761","label":"pushing a book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a book"]}, +{"id":"149797","label":"pushing adhesive tape so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["adhesive tape"]}, +{"id":"185264","label":"uncovering an empty water bottle","template":"Uncovering [something]","placeholders":["an empty water bottle"]}, +{"id":"4493","label":"pretending to take tissue from clothes","template":"Pretending to take [something] from [somewhere]","placeholders":["tissue","clothes"]}, +{"id":"113242","label":"failing to put a dvd into a mug because the dvd does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a dvd","a mug","the dvd"]}, +{"id":"179073","label":"pushing book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["book"]}, +{"id":"203213","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"10606","label":"showing flower pot behind tiger figurine","template":"Showing [something] behind [something]","placeholders":["flower pot","tiger figurine"]}, +{"id":"212014","label":"dropping news paper into ground","template":"Dropping [something] into [something]","placeholders":["news paper","ground"]}, +{"id":"198138","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"162876","label":"moving a paint brush up","template":"Moving [something] up","placeholders":["a paint brush"]}, +{"id":"152836","label":"spinning a battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a battery"]}, +{"id":"125729","label":"moving blue colour pen down","template":"Moving [something] down","placeholders":["blue colour pen"]}, +{"id":"120135","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78670","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"100493","label":"cover falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cover"]}, +{"id":"175517","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"154287","label":"throwing an eye dropper in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["an eye dropper"]}, +{"id":"38824","label":"dropping coffee behind canister","template":"Dropping [something] behind [something]","placeholders":["coffee","canister"]}, +{"id":"81307","label":"squeezing a toothpaste tube","template":"Squeezing [something]","placeholders":["a toothpaste tube"]}, +{"id":"149517","label":"putting push pin","template":"Putting [something similar to other things that are already on the table]","placeholders":["push pin"]}, +{"id":"172232","label":"moving water bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["water bottle"]}, +{"id":"94104","label":"turning the camera upwards while filming instruction board","template":"Turning the camera upwards while filming [something]","placeholders":["instruction board"]}, +{"id":"164079","label":"putting a brush, an eraser and a glass of water on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a brush","an eraser","a glass of water"]}, +{"id":"145148","label":"pretending to take cellphone from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","countertop"]}, +{"id":"200318","label":"tipping pill bottle over","template":"Tipping [something] over","placeholders":["pill bottle"]}, +{"id":"77429","label":"putting pillow in front of dog","template":"Putting [something] in front of [something]","placeholders":["pillow","dog"]}, +{"id":"76993","label":"lifting hose head up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["hose head"]}, +{"id":"141069","label":"opening car bonnet","template":"Opening [something]","placeholders":["car bonnet"]}, +{"id":"57791","label":"showing book to the camera","template":"Showing [something] to the camera","placeholders":["book"]}, +{"id":"20424","label":"dropping toy tiger in front of toy elephant","template":"Dropping [something] in front of [something]","placeholders":["toy tiger","toy elephant"]}, +{"id":"137695","label":"spilling water onto bucket","template":"Spilling [something] onto [something]","placeholders":["water","bucket"]}, +{"id":"47388","label":"tipping toothbrush over","template":"Tipping [something] over","placeholders":["toothbrush"]}, +{"id":"13588","label":"spinning scissors so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["scissors"]}, +{"id":"103205","label":"pushing toy idol from left to right","template":"Pushing [something] from left to right","placeholders":["toy idol"]}, +{"id":"19995","label":"pushing knife so it spins","template":"Pushing [something] so it spins","placeholders":["knife"]}, +{"id":"174532","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"8041","label":"moving branch across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["branch"]}, +{"id":"140864","label":"putting stapler next to digital stamp","template":"Putting [something] next to [something]","placeholders":["stapler","digital stamp"]}, +{"id":"18962","label":"dropping phone behind pants","template":"Dropping [something] behind [something]","placeholders":["phone","pants"]}, +{"id":"89675","label":"pushing oil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["oil"]}, +{"id":"29666","label":"taking button","template":"Taking [one of many similar things on the table]","placeholders":["button"]}, +{"id":"40294","label":"taking a pen out of bunch of pens","template":"Taking [one of many similar things on the table]","placeholders":["a pen out of bunch of pens"]}, +{"id":"146736","label":"putting pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pencil"]}, +{"id":"14234","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"35217","label":"squeezing socks","template":"Squeezing [something]","placeholders":["socks"]}, +{"id":"198968","label":"pretending to put a pen next to a highlighter","template":"Pretending to put [something] next to [something]","placeholders":["a pen","a highlighter"]}, +{"id":"631","label":"taking hair pin","template":"Taking [one of many similar things on the table]","placeholders":["hair pin"]}, +{"id":"125034","label":"putting small freshmints on a surface","template":"Putting [something] on a surface","placeholders":["small freshmints"]}, +{"id":"67138","label":"tipping t.v tray over","template":"Tipping [something] over","placeholders":["t.v tray"]}, +{"id":"28512","label":"putting dental gel upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["dental gel"]}, +{"id":"187241","label":"removing book, revealing book behind","template":"Removing [something], revealing [something] behind","placeholders":["book","book"]}, +{"id":"27320","label":"putting a mug onto a mouse pad","template":"Putting [something] onto [something]","placeholders":["a mug","a mouse pad"]}, +{"id":"57481","label":"pretending to pick bracelet up","template":"Pretending to pick [something] up","placeholders":["bracelet"]}, +{"id":"155143","label":"lifting cap with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["cap","sunglasses"]}, +{"id":"53769","label":"moving away from something with your camera","template":"Moving away from [something] with your camera","placeholders":["something"]}, +{"id":"97746","label":"showing matchbox behind jar","template":"Showing [something] behind [something]","placeholders":["matchbox","jar"]}, +{"id":"215853","label":"uncovering soda cap","template":"Uncovering [something]","placeholders":["soda cap"]}, +{"id":"161338","label":"moving lighter across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["lighter"]}, +{"id":"171309","label":"tipping wooden doll over","template":"Tipping [something] over","placeholders":["wooden doll"]}, +{"id":"169835","label":"turning the camera upwards while filming ink bottle","template":"Turning the camera upwards while filming [something]","placeholders":["ink bottle"]}, +{"id":"144500","label":"putting 5 xbox games onto couch","template":"Putting [number of] [something] onto [something]","placeholders":["5","xbox games","couch"]}, +{"id":"52401","label":"unfolding frock","template":"Unfolding [something]","placeholders":["frock"]}, +{"id":"79738","label":"putting glass behind teacup","template":"Putting [something] behind [something]","placeholders":["glass","teacup"]}, +{"id":"175735","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"70349","label":"holding a marker","template":"Holding [something]","placeholders":["a marker"]}, +{"id":"78699","label":"pushing pencil with ruler","template":"Pushing [something] with [something]","placeholders":["pencil","ruler"]}, +{"id":"169231","label":"turning tinbox upside down","template":"Turning [something] upside down","placeholders":["tinbox"]}, +{"id":"193451","label":"picking bar soap up","template":"Picking [something] up","placeholders":["bar soap"]}, +{"id":"180526","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"184964","label":"lifting a surface with a broom on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a broom"]}, +{"id":"193142","label":"holding keys over bag","template":"Holding [something] over [something]","placeholders":["keys","bag"]}, +{"id":"103533","label":"pushing toy car from right to left","template":"Pushing [something] from right to left","placeholders":["toy car"]}, +{"id":"175214","label":"pushing stapler with spanner","template":"Pushing [something] with [something]","placeholders":["stapler","spanner"]}, +{"id":"54434","label":"opening ice cream freezer","template":"Opening [something]","placeholders":["ice cream freezer"]}, +{"id":"134838","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"25910","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"44458","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"172657","label":"pretending to close carmex bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["carmex bottle"]}, +{"id":"102448","label":"tilting recipe book with a lighter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["recipe book","a lighter"]}, +{"id":"62270","label":"moving usb and soap closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["usb","soap"]}, +{"id":"137207","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"194895","label":"pulling book out of box","template":"Pulling [something] out of [something]","placeholders":["book","box"]}, +{"id":"22463","label":"tearing something into two pieces","template":"Tearing [something] into two pieces","placeholders":["something"]}, +{"id":"3855","label":"something being deflected from something","template":"[Something] being deflected from [something]","placeholders":["something","something"]}, +{"id":"184981","label":"pretending to take a beer can from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a beer can","the table"]}, +{"id":"35306","label":"moving key and padlock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["key","padlock"]}, +{"id":"154890","label":"pushing stapler so it spins","template":"Pushing [something] so it spins","placeholders":["stapler"]}, +{"id":"208793","label":"taking a stuffed animal out of a locker","template":"Taking [something] out of [something]","placeholders":["a stuffed animal","a locker"]}, +{"id":"111294","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"32444","label":"folding paper in half","template":"Folding [something]","placeholders":["paper in half"]}, +{"id":"168467","label":"sprinkling water onto soil","template":"Sprinkling [something] onto [something]","placeholders":["water","soil"]}, +{"id":"84702","label":"turning the camera right while filming beer bottle","template":"Turning the camera right while filming [something]","placeholders":["beer bottle"]}, +{"id":"153082","label":"showing paint tube next to cactus","template":"Showing [something] next to [something]","placeholders":["paint tube","cactus"]}, +{"id":"182461","label":"a shoe colliding with filp flop and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a shoe","filp flop"]}, +{"id":"45090","label":"turning the camera right while filming bird","template":"Turning the camera right while filming [something]","placeholders":["bird"]}, +{"id":"75372","label":"approaching bag with your camera","template":"Approaching [something] with your camera","placeholders":["bag"]}, +{"id":"47429","label":"putting glass next to glass","template":"Putting [something] next to [something]","placeholders":["glass","glass"]}, +{"id":"217360","label":"uncovering candies","template":"Uncovering [something]","placeholders":["candies"]}, +{"id":"2736","label":"pretending to pick black umbrella up","template":"Pretending to pick [something] up","placeholders":["black umbrella"]}, +{"id":"145308","label":"putting a glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["a glass"]}, +{"id":"205","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"2882","label":"putting shoes underneath scooter","template":"Putting [something] underneath [something]","placeholders":["shoes","scooter"]}, +{"id":"35693","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"154510","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"95587","label":"dropping heart next to bowl","template":"Dropping [something] next to [something]","placeholders":["heart","bowl"]}, +{"id":"102446","label":"plugging a key into a door knob","template":"Plugging [something] into [something]","placeholders":["a key","a door knob"]}, +{"id":"70336","label":"turning a pack of tissue upside down","template":"Turning [something] upside down","placeholders":["a pack of tissue"]}, +{"id":"15647","label":"plugging cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","charger"]}, +{"id":"42534","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"26729","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"152146","label":"pretending to be tearing a boot cane","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a boot cane"]}, +{"id":"144166","label":"turning the camera downwards while filming shoe rack","template":"Turning the camera downwards while filming [something]","placeholders":["shoe rack"]}, +{"id":"155720","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"191965","label":"plugging a male plug into a socket","template":"Plugging [something] into [something]","placeholders":["a male plug","a socket"]}, +{"id":"7355","label":"pushing red dairy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["red dairy"]}, +{"id":"218614","label":"hitting canister with spoon","template":"Hitting [something] with [something]","placeholders":["canister","spoon"]}, +{"id":"51673","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"99731","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"20384","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"54669","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"72137","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"54011","label":"throwing cd in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cd"]}, +{"id":"67059","label":"pulling rock from left to right","template":"Pulling [something] from left to right","placeholders":["rock"]}, +{"id":"213844","label":"falling the paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling the paper"]}, +{"id":"188393","label":"putting screwdriver into jar","template":"Putting [something] into [something]","placeholders":["screwdriver","jar"]}, +{"id":"68542","label":"moving cell phone up","template":"Moving [something] up","placeholders":["cell phone"]}, +{"id":"18026","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"159935","label":"plugging something into something but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["something","something"]}, +{"id":"50512","label":"wiping spilled water off of surface","template":"Wiping [something] off of [something]","placeholders":["spilled water","surface"]}, +{"id":"19926","label":"pushing thread so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["thread"]}, +{"id":"149170","label":"uncovering a head","template":"Uncovering [something]","placeholders":["a head"]}, +{"id":"201416","label":"showing pen next to holder","template":"Showing [something] next to [something]","placeholders":["pen","holder"]}, +{"id":"180420","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"59683","label":"opening cd cover","template":"Opening [something]","placeholders":["cd cover"]}, +{"id":"17102","label":"moving markers closer to a box","template":"Moving [something] closer to [something]","placeholders":["markers","a box"]}, +{"id":"93187","label":"wiping chalk off of a mini chalkboard","template":"Wiping [something] off of [something]","placeholders":["chalk","a mini chalkboard"]}, +{"id":"157951","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"170930","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"28396","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"73461","label":"putting red spoon next to glue stick","template":"Putting [something] next to [something]","placeholders":["red spoon","glue stick"]}, +{"id":"81981","label":"pulling toilet paper out of toilet paper roll","template":"Pulling [something] out of [something]","placeholders":["toilet paper","toilet paper roll"]}, +{"id":"115740","label":"showing padlock behind glass jar","template":"Showing [something] behind [something]","placeholders":["padlock","glass jar"]}, +{"id":"124292","label":"throwing a napkin in the trash","template":"Throwing [something]","placeholders":["a napkin in the trash"]}, +{"id":"157592","label":"putting a wallet into a boot","template":"Putting [something] into [something]","placeholders":["a wallet","a boot"]}, +{"id":"63784","label":"laying angel on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["angel"]}, +{"id":"191762","label":"showing a pair of shoes behind a glas bottle","template":"Showing [something] behind [something]","placeholders":["a pair of shoes","a glas bottle"]}, +{"id":"2831","label":"putting tv remote next to pill bottle","template":"Putting [something] next to [something]","placeholders":["tv remote","pill bottle"]}, +{"id":"217569","label":"spinning an owl so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["an owl"]}, +{"id":"179780","label":"sprinkling oregano onto pasta salad","template":"Sprinkling [something] onto [something]","placeholders":["oregano","pasta salad"]}, +{"id":"158733","label":"putting mobile phone on a surface","template":"Putting [something] on a surface","placeholders":["mobile phone"]}, +{"id":"167310","label":"putting bottle next to juicer","template":"Putting [something] next to [something]","placeholders":["bottle","juicer"]}, +{"id":"124639","label":"opening clamp","template":"Opening [something]","placeholders":["clamp"]}, +{"id":"65174","label":"dropping a shuttle cock into a container","template":"Dropping [something] into [something]","placeholders":["a shuttle cock","a container"]}, +{"id":"207821","label":"putting belt onto bag","template":"Putting [something] onto [something]","placeholders":["belt","bag"]}, +{"id":"63123","label":"taking book from table","template":"Taking [something] from [somewhere]","placeholders":["book","table"]}, +{"id":"128313","label":"dropping a bottle top behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a bottle top","a padlock"]}, +{"id":"71476","label":"tilting black file with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","pen"]}, +{"id":"200556","label":"putting a paintbrush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a paintbrush"]}, +{"id":"44580","label":"touching (without moving) a lid of tupper ware","template":"Touching (without moving) [part] of [something]","placeholders":["a lid","tupper ware"]}, +{"id":"57792","label":"pretending to open apple airpods case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["apple airpods case"]}, +{"id":"150213","label":"opening peanut butter jar","template":"Opening [something]","placeholders":["peanut butter jar"]}, +{"id":"153535","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"164486","label":"taking adapter","template":"Taking [one of many similar things on the table]","placeholders":["adapter"]}, +{"id":"150457","label":"tearing white paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["white paper"]}, +{"id":"188697","label":"pretending to pick a salt grinder up","template":"Pretending to pick [something] up","placeholders":["a salt grinder"]}, +{"id":"103183","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"209309","label":"covering remote with blanket","template":"Covering [something] with [something]","placeholders":["remote","blanket"]}, +{"id":"202198","label":"showing that green cup is empty","template":"Showing that [something] is empty","placeholders":["green cup"]}, +{"id":"95255","label":"hitting chair with hairbrush","template":"Hitting [something] with [something]","placeholders":["chair","hairbrush"]}, +{"id":"37133","label":"moving part of match box","template":"Moving [part] of [something]","placeholders":["part","match box"]}, +{"id":"23995","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"71876","label":"poking flowers so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["flowers"]}, +{"id":"178006","label":"taking marker pen","template":"Taking [one of many similar things on the table]","placeholders":["marker pen"]}, +{"id":"135467","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"128833","label":"tilting card with lighter on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["card","lighter"]}, +{"id":"64706","label":"removing bouncing reindeer toy, revealing a toy robot behind","template":"Removing [something], revealing [something] behind","placeholders":["bouncing reindeer toy","a toy robot"]}, +{"id":"50826","label":"throwing pillow onto a surface","template":"Throwing [something] onto a surface","placeholders":["pillow"]}, +{"id":"38349","label":"closing drawyer","template":"Closing [something]","placeholders":["drawyer"]}, +{"id":"122866","label":"dropping a knife next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a knife","a matchbox"]}, +{"id":"138191","label":"pulling liptint from left to right","template":"Pulling [something] from left to right","placeholders":["liptint"]}, +{"id":"9153","label":"pushing bike light from left to right","template":"Pushing [something] from left to right","placeholders":["bike light"]}, +{"id":"72791","label":"pretending to be tearing pomegranate peel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pomegranate peel"]}, +{"id":"103071","label":"uncovering fish","template":"Uncovering [something]","placeholders":["fish"]}, +{"id":"41263","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"78020","label":"putting battery, pebble and toy idol on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["battery","pebble","toy idol"]}, +{"id":"213470","label":"stacking 3 blocks","template":"Stacking [number of] [something]","placeholders":["3","blocks"]}, +{"id":"134680","label":"tilting plate with banana on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","banana"]}, +{"id":"161278","label":"putting wire strippers that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["wire strippers"]}, +{"id":"210496","label":"putting mop into dustbin","template":"Putting [something] into [something]","placeholders":["mop","dustbin"]}, +{"id":"94678","label":"pushing sunglasses so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sunglasses"]}, +{"id":"62821","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"110044","label":"lifting pumpkin pie up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pumpkin pie"]}, +{"id":"61230","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"126822","label":"showing pen behind glass jar","template":"Showing [something] behind [something]","placeholders":["pen","glass jar"]}, +{"id":"119356","label":"putting a broom next to a trash shovel","template":"Putting [something] next to [something]","placeholders":["a broom","a trash shovel"]}, +{"id":"67557","label":"throwing a shoe","template":"Throwing [something]","placeholders":["a shoe"]}, +{"id":"121577","label":"moving a tape closer to sun glasses","template":"Moving [something] closer to [something]","placeholders":["a tape","sun glasses"]}, +{"id":"130692","label":"showing the beautiful christmas tree behind the couch","template":"Showing [something] behind [something]","placeholders":["the beautiful christmas tree","the couch"]}, +{"id":"25819","label":"lifting chair with cushion on it","template":"Lifting [something] with [something] on it","placeholders":["chair","cushion"]}, +{"id":"1036","label":"taking a donut out of a pot","template":"Taking [something] out of [something]","placeholders":["a donut","a pot"]}, +{"id":"31593","label":"holding cup behind wall","template":"Holding [something] behind [something]","placeholders":["cup","wall"]}, +{"id":"6962","label":"holding torchlight","template":"Holding [something]","placeholders":["torchlight"]}, +{"id":"114102","label":"holding ball behind iphone","template":"Holding [something] behind [something]","placeholders":["ball","iphone"]}, +{"id":"23801","label":"plugging a cable into a charger","template":"Plugging [something] into [something]","placeholders":["a cable","a charger"]}, +{"id":"4121","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"184825","label":"closing plastic box","template":"Closing [something]","placeholders":["plastic box"]}, +{"id":"26332","label":"dropping clip onto box","template":"Dropping [something] onto [something]","placeholders":["clip","box"]}, +{"id":"67826","label":"touching (without moving) nose of minne mouse","template":"Touching (without moving) [part] of [something]","placeholders":["nose","minne mouse"]}, +{"id":"88299","label":"turning a notebook upside down","template":"Turning [something] upside down","placeholders":["a notebook"]}, +{"id":"95274","label":"paper falling like a rock","template":"[Something] falling like a rock","placeholders":["paper"]}, +{"id":"119633","label":"pushing makeup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["makeup"]}, +{"id":"51108","label":"showing merci-packung behind tipex-maus","template":"Showing [something] behind [something]","placeholders":["merci-packung","tipex-maus"]}, +{"id":"180201","label":"sprinkling salt onto paper","template":"Sprinkling [something] onto [something]","placeholders":["salt","paper"]}, +{"id":"41859","label":"tilting toy truck with toy trailer on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["toy truck","toy trailer"]}, +{"id":"186914","label":"throwing water bottle in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["water bottle"]}, +{"id":"157165","label":"lifting a surface with ball on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ball"]}, +{"id":"56585","label":"unfolding unfolding kerchief","template":"Unfolding [something]","placeholders":["unfolding kerchief"]}, +{"id":"64335","label":"pushing remote so it spins","template":"Pushing [something] so it spins","placeholders":["remote"]}, +{"id":"146279","label":"folding notecard","template":"Folding [something]","placeholders":["notecard"]}, +{"id":"150946","label":"bending meat stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["meat stick"]}, +{"id":"149694","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"5207","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"23981","label":"moving box and can closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["box","can"]}, +{"id":"54046","label":"dropping a matchbox next to a container","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a container"]}, +{"id":"159885","label":"lifting a surface with lotion container on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["lotion container"]}, +{"id":"175257","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"37269","label":"pushing purple microfiber so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["purple microfiber"]}, +{"id":"107976","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"125163","label":"putting straw upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["straw"]}, +{"id":"218165","label":"putting lime behind nectarine","template":"Putting [something] behind [something]","placeholders":["lime","nectarine"]}, +{"id":"188778","label":"dropping a coin into a box","template":"Dropping [something] into [something]","placeholders":["a coin","a box"]}, +{"id":"108643","label":"spinning calculator that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["calculator"]}, +{"id":"83282","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"15252","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"23021","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"179777","label":"failing to put camera into canister because camera does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["camera","canister","camera"]}, +{"id":"211935","label":"pushing charger head so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["charger head"]}, +{"id":"42536","label":"approaching a shoe with your camera","template":"Approaching [something] with your camera","placeholders":["a shoe"]}, +{"id":"110820","label":"putting a cup into a dishwasher","template":"Putting [something] into [something]","placeholders":["a cup","a dishwasher"]}, +{"id":"128205","label":"putting a smartphone on a surface","template":"Putting [something] on a surface","placeholders":["a smartphone"]}, +{"id":"142505","label":"hitting door glass with bottle","template":"Hitting [something] with [something]","placeholders":["door glass","bottle"]}, +{"id":"141995","label":"pretending to pick shot glass up","template":"Pretending to pick [something] up","placeholders":["shot glass"]}, +{"id":"197993","label":"trying to bend hard plastic piece so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["hard plastic piece"]}, +{"id":"156899","label":"squeezing a racquetball","template":"Squeezing [something]","placeholders":["a racquetball"]}, +{"id":"72922","label":"holding phone behind hand","template":"Holding [something] behind [something]","placeholders":["phone","hand"]}, +{"id":"197330","label":"tilting placemat with paper on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["placemat","paper"]}, +{"id":"110329","label":"stuffing a plastic bottle into a bag","template":"Stuffing [something] into [something]","placeholders":["a plastic bottle","a bag"]}, +{"id":"216835","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"160220","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"70040","label":"holding tiger over book","template":"Holding [something] over [something]","placeholders":["tiger","book"]}, +{"id":"116164","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"148838","label":"dropping ball behind box","template":"Dropping [something] behind [something]","placeholders":["ball","box"]}, +{"id":"192355","label":"removing bottled water, revealing nail cutter behind","template":"Removing [something], revealing [something] behind","placeholders":["bottled water","nail cutter"]}, +{"id":"125710","label":"pushing nail polish from right to left","template":"Pushing [something] from right to left","placeholders":["nail polish"]}, +{"id":"197559","label":"uncovering toy duck","template":"Uncovering [something]","placeholders":["toy duck"]}, +{"id":"149682","label":"taking diary from table","template":"Taking [something] from [somewhere]","placeholders":["diary","table"]}, +{"id":"209933","label":"holding small book","template":"Holding [something]","placeholders":["small book"]}, +{"id":"116350","label":"pushing coconut shell from right to left","template":"Pushing [something] from right to left","placeholders":["coconut shell"]}, +{"id":"111903","label":"pretending to put hat next to shoe","template":"Pretending to put [something] next to [something]","placeholders":["hat","shoe"]}, +{"id":"80488","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"43337","label":"putting compact po and bottle of water on the table","template":"Putting [something] and [something] on the table","placeholders":["compact po","bottle of water"]}, +{"id":"109704","label":"putting pen and box on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","box"]}, +{"id":"214243","label":"touching (without moving) top of scissor","template":"Touching (without moving) [part] of [something]","placeholders":["top","scissor"]}, +{"id":"22286","label":"showing mobile phone to the camera","template":"Showing [something] to the camera","placeholders":["mobile phone"]}, +{"id":"167762","label":"poking lipstick so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lipstick"]}, +{"id":"62250","label":"pushing a tape onto a book","template":"Pushing [something] onto [something]","placeholders":["a tape","a book"]}, +{"id":"42143","label":"pulling marker from behind of automon","template":"Pulling [something] from behind of [something]","placeholders":["marker","automon"]}, +{"id":"169671","label":"plugging cord into wall outlet","template":"Plugging [something] into [something]","placeholders":["cord","wall outlet"]}, +{"id":"110530","label":"pretending to put tube into box","template":"Pretending to put [something] into [something]","placeholders":["tube","box"]}, +{"id":"211313","label":"attaching clip magnet to refrigerator","template":"Attaching [something] to [something]","placeholders":["clip magnet","refrigerator"]}, +{"id":"81218","label":"holding a pen over scissors","template":"Holding [something] over [something]","placeholders":["a pen","scissors"]}, +{"id":"41762","label":"taking paint from similar items on table","template":"Taking [one of many similar things on the table]","placeholders":["paint from similar items on table"]}, +{"id":"116306","label":"piling markets up","template":"Piling [something] up","placeholders":["markets"]}, +{"id":"18288","label":"turning the camera left while filming tyre","template":"Turning the camera left while filming [something]","placeholders":["tyre"]}, +{"id":"77241","label":"spinning rock so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["rock"]}, +{"id":"113411","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"135120","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"57751","label":"throwing a hat onto a surface","template":"Throwing [something] onto a surface","placeholders":["a hat"]}, +{"id":"57533","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"160043","label":"pretending to pick a tobasco bottle up","template":"Pretending to pick [something] up","placeholders":["a tobasco bottle"]}, +{"id":"90874","label":"plugging usb cable into notebook but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","notebook"]}, +{"id":"62474","label":"pretending to pick highliner up","template":"Pretending to pick [something] up","placeholders":["highliner"]}, +{"id":"210488","label":"tearing colorful advertisement paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["colorful advertisement paper"]}, +{"id":"188203","label":"showing that the cup is empty","template":"Showing that [something] is empty","placeholders":["the cup"]}, +{"id":"153957","label":"putting 1 plate onto stand","template":"Putting [number of] [something] onto [something]","placeholders":["1","plate","stand"]}, +{"id":"44961","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"23626","label":"putting a nonstick pan onto a portable stove","template":"Putting [something] onto [something]","placeholders":["a nonstick pan","a portable stove"]}, +{"id":"197861","label":"throwing remote in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["remote"]}, +{"id":"24384","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"72745","label":"covering blue spoon with white handkerchief","template":"Covering [something] with [something]","placeholders":["blue spoon","white handkerchief"]}, +{"id":"181837","label":"moving scrap paper closer to scrap paper","template":"Moving [something] closer to [something]","placeholders":["scrap paper","scrap paper"]}, +{"id":"207899","label":"removing mug, revealing fluorescent lightbulb behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","fluorescent lightbulb"]}, +{"id":"89683","label":"squeezing cuddly turtle toy","template":"Squeezing [something]","placeholders":["cuddly turtle toy"]}, +{"id":"32641","label":"covering a headphones with a remote control","template":"Covering [something] with [something]","placeholders":["a headphones","a remote control"]}, +{"id":"15014","label":"holding controller over book","template":"Holding [something] over [something]","placeholders":["controller","book"]}, +{"id":"175872","label":"putting bottle on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["bottle","box"]}, +{"id":"163210","label":"tearing bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["bag"]}, +{"id":"11629","label":"showing that blue cup is empty","template":"Showing that [something] is empty","placeholders":["blue cup"]}, +{"id":"11020","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"57017","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"14426","label":"putting a beer can on a surface","template":"Putting [something] on a surface","placeholders":["a beer can"]}, +{"id":"78062","label":"pushing bag so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bag"]}, +{"id":"201793","label":"putting a ball","template":"Putting [something similar to other things that are already on the table]","placeholders":["a ball"]}, +{"id":"90818","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"92715","label":"tilting box with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","phone"]}, +{"id":"88774","label":"laying mug on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["mug"]}, +{"id":"60352","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"36523","label":"putting sunglasses behind mug","template":"Putting [something] behind [something]","placeholders":["sunglasses","mug"]}, +{"id":"214556","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"24846","label":"letting bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["bottle"]}, +{"id":"56475","label":"tilting paper with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper","pen"]}, +{"id":"23561","label":"holding a knife next to a cup","template":"Holding [something] next to [something]","placeholders":["a knife","a cup"]}, +{"id":"182148","label":"picking nail polish up","template":"Picking [something] up","placeholders":["nail polish"]}, +{"id":"44065","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"94819","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"186155","label":"putting stapler that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stapler"]}, +{"id":"123886","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"103195","label":"trying to bend pipe so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pipe"]}, +{"id":"5315","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"151038","label":"pushing plug adapter from right to left","template":"Pushing [something] from right to left","placeholders":["plug adapter"]}, +{"id":"135815","label":"pushing glass so it spins","template":"Pushing [something] so it spins","placeholders":["glass"]}, +{"id":"104923","label":"spinning a tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a tube"]}, +{"id":"50649","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"173269","label":"dropping a coin onto a table","template":"Dropping [something] onto [something]","placeholders":["a coin","a table"]}, +{"id":"79120","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"99449","label":"stuffing green coloured toy car into black pouch","template":"Stuffing [something] into [something]","placeholders":["green coloured toy car","black pouch"]}, +{"id":"20675","label":"twisting a basket handle","template":"Twisting [something]","placeholders":["a basket handle"]}, +{"id":"145487","label":"moving purple balloon pump down","template":"Moving [something] down","placeholders":["purple balloon pump"]}, +{"id":"213083","label":"twisting tube","template":"Twisting [something]","placeholders":["tube"]}, +{"id":"201968","label":"approaching chair with your camera","template":"Approaching [something] with your camera","placeholders":["chair"]}, +{"id":"18455","label":"putting 1 laptop charger onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","laptop charger","chair"]}, +{"id":"80510","label":"putting a toy on a surface","template":"Putting [something] on a surface","placeholders":["a toy"]}, +{"id":"144605","label":"holding candle over fireplace","template":"Holding [something] over [something]","placeholders":["candle","fireplace"]}, +{"id":"103980","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"1153","label":"pulling toy car from right to left","template":"Pulling [something] from right to left","placeholders":["toy car"]}, +{"id":"12327","label":"putting comb similar to other combs that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["comb similar to other combs that are already on the table"]}, +{"id":"81138","label":"lifting a coin up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a coin"]}, +{"id":"155369","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"28747","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"191956","label":"throwing wallet","template":"Throwing [something]","placeholders":["wallet"]}, +{"id":"29152","label":"moving coin towards the camera","template":"Moving [something] towards the camera","placeholders":["coin"]}, +{"id":"38900","label":"pretending to throw powder bottle","template":"Pretending to throw [something]","placeholders":["powder bottle"]}, +{"id":"35407","label":"unfolding piece of paper","template":"Unfolding [something]","placeholders":["piece of paper"]}, +{"id":"9779","label":"pretending to open canister without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["canister"]}, +{"id":"139004","label":"picking duster up","template":"Picking [something] up","placeholders":["duster"]}, +{"id":"143696","label":"holding a pencil in front of a box","template":"Holding [something] in front of [something]","placeholders":["a pencil","a box"]}, +{"id":"212098","label":"tilting chalkboard with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["chalkboard","marker"]}, +{"id":"71232","label":"pretending to take game from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["game","shelf"]}, +{"id":"66059","label":"showing that horlicks is inside container","template":"Showing that [something] is inside [something]","placeholders":["horlicks","container"]}, +{"id":"208933","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"96476","label":"lifting a surface with highlighter on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["highlighter"]}, +{"id":"218059","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"209512","label":"picking coffee cup up","template":"Picking [something] up","placeholders":["coffee cup"]}, +{"id":"16836","label":"putting an ink bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["an ink bottle"]}, +{"id":"87330","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"110961","label":"spinning miniature fan so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["miniature fan"]}, +{"id":"189231","label":"putting vase on a surface","template":"Putting [something] on a surface","placeholders":["vase"]}, +{"id":"95551","label":"plugging usb cable into laptop computer","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop computer"]}, +{"id":"220548","label":"putting remote onto box","template":"Putting [something] onto [something]","placeholders":["remote","box"]}, +{"id":"209958","label":"spinning baseball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["baseball"]}, +{"id":"126554","label":"moving post-it up","template":"Moving [something] up","placeholders":["post-it"]}, +{"id":"9501","label":"dropping book onto bed","template":"Dropping [something] onto [something]","placeholders":["book","bed"]}, +{"id":"93470","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"4452","label":"showing gear wheel on top of spectacle box","template":"Showing [something] on top of [something]","placeholders":["gear wheel","spectacle box"]}, +{"id":"69505","label":"holding remote next to can","template":"Holding [something] next to [something]","placeholders":["remote","can"]}, +{"id":"141483","label":"putting hair tie into cup","template":"Putting [something] into [something]","placeholders":["hair tie","cup"]}, +{"id":"167275","label":"pouring water into mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","mug"]}, +{"id":"32553","label":"pushing box with remote","template":"Pushing [something] with [something]","placeholders":["box","remote"]}, +{"id":"217282","label":"opening umbrella","template":"Opening [something]","placeholders":["umbrella"]}, +{"id":"128115","label":"throwing onion in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["onion"]}, +{"id":"3246","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78749","label":"poking lime so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lime"]}, +{"id":"13925","label":"bending a refill so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a refill"]}, +{"id":"25518","label":"moving a tennis ball and a tennis ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a tennis ball","a tennis ball"]}, +{"id":"9602","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"190527","label":"pushing earring so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["earring"]}, +{"id":"109418","label":"trying to bend remote control so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["remote control"]}, +{"id":"125171","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"171797","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"164029","label":"scooping ice cream up with spoon","template":"Scooping [something] up with [something]","placeholders":["ice cream","spoon"]}, +{"id":"87608","label":"dropping lid next to box","template":"Dropping [something] next to [something]","placeholders":["lid","box"]}, +{"id":"69740","label":"spilling water onto a bottle top","template":"Spilling [something] onto [something]","placeholders":["water","a bottle top"]}, +{"id":"146825","label":"plugging a lamp into the wall","template":"Plugging [something] into [something]","placeholders":["a lamp","the wall"]}, +{"id":"100955","label":"moving toothpaste up","template":"Moving [something] up","placeholders":["toothpaste"]}, +{"id":"160887","label":"moving purse and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["purse","pen"]}, +{"id":"205865","label":"turning rainboot upside down","template":"Turning [something] upside down","placeholders":["rainboot"]}, +{"id":"69151","label":"putting spoon and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["spoon","cup"]}, +{"id":"171353","label":"putting jar of peanut butter in front of bottle aspirin","template":"Putting [something] in front of [something]","placeholders":["jar of peanut butter","bottle aspirin"]}, +{"id":"205299","label":"turning a hat upside down","template":"Turning [something] upside down","placeholders":["a hat"]}, +{"id":"149892","label":"pulling spoon from behind of pan","template":"Pulling [something] from behind of [something]","placeholders":["spoon","pan"]}, +{"id":"152514","label":"putting comb upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["comb"]}, +{"id":"27828","label":"folding an envelope","template":"Folding [something]","placeholders":["an envelope"]}, +{"id":"109950","label":"dropping something in front of something","template":"Dropping [something] in front of [something]","placeholders":["something","something"]}, +{"id":"217275","label":"squeezing bread","template":"Squeezing [something]","placeholders":["bread"]}, +{"id":"99923","label":"holding drink behind body","template":"Holding [something] behind [something]","placeholders":["drink","body"]}, +{"id":"165280","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38896","label":"uncovering usb cable","template":"Uncovering [something]","placeholders":["usb cable"]}, +{"id":"125973","label":"putting cassette tape into mug","template":"Putting [something] into [something]","placeholders":["cassette tape","mug"]}, +{"id":"15545","label":"lifting sand bag up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["sand bag"]}, +{"id":"79760","label":"burying puzzle piece in middle of couch seat cushions","template":"Burying [something] in [something]","placeholders":["puzzle piece","middle of couch seat cushions"]}, +{"id":"119182","label":"dropping cushion onto floor","template":"Dropping [something] onto [something]","placeholders":["cushion","floor"]}, +{"id":"129064","label":"putting hammer on a surface","template":"Putting [something] on a surface","placeholders":["hammer"]}, +{"id":"119769","label":"showing bandage to the camera","template":"Showing [something] to the camera","placeholders":["bandage"]}, +{"id":"214876","label":"pretending to take a coin out of a cup","template":"Pretending to take [something] out of [something]","placeholders":["a coin","a cup"]}, +{"id":"118240","label":"tearing sponge just a little bit","template":"Tearing [something] just a little bit","placeholders":["sponge"]}, +{"id":"16514","label":"hitting a toy with a ball","template":"Hitting [something] with [something]","placeholders":["a toy","a ball"]}, +{"id":"18432","label":"showing remote control next to pillow","template":"Showing [something] next to [something]","placeholders":["remote control","pillow"]}, +{"id":"215973","label":"throwing a cell phone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a cell phone"]}, +{"id":"130569","label":"letting a candle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a candle"]}, +{"id":"52261","label":"lifting cushion with clock on it","template":"Lifting [something] with [something] on it","placeholders":["cushion","clock"]}, +{"id":"96092","label":"pulling stapler from right to left","template":"Pulling [something] from right to left","placeholders":["stapler"]}, +{"id":"176601","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"122474","label":"folding frock","template":"Folding [something]","placeholders":["frock"]}, +{"id":"195430","label":"lifting up one end of paper without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["paper"]}, +{"id":"140866","label":"pulling flashlight onto laptop","template":"Pulling [something] onto [something]","placeholders":["flashlight","laptop"]}, +{"id":"101419","label":"plugging headphones into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","laptop"]}, +{"id":"80166","label":"taking a mouse from the table","template":"Taking [something] from [somewhere]","placeholders":["a mouse","the table"]}, +{"id":"184459","label":"lifting box tape up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["box tape"]}, +{"id":"34430","label":"poking pot so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pot"]}, +{"id":"170397","label":"twisting bottle lid","template":"Twisting [something]","placeholders":["bottle lid"]}, +{"id":"31913","label":"holding candle over easel","template":"Holding [something] over [something]","placeholders":["candle","easel"]}, +{"id":"21630","label":"opening window","template":"Opening [something]","placeholders":["window"]}, +{"id":"109892","label":"moving perfume bottle closer to toy","template":"Moving [something] closer to [something]","placeholders":["perfume bottle","toy"]}, +{"id":"203487","label":"lifting up one end of a pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pen"]}, +{"id":"195576","label":"a sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sheet of paper"]}, +{"id":"92780","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"95433","label":"throwing a paper","template":"Throwing [something]","placeholders":["a paper"]}, +{"id":"103425","label":"pretending to squeeze onion","template":"Pretending to squeeze [something]","placeholders":["onion"]}, +{"id":"158296","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"153364","label":"pretending to squeeze lime","template":"Pretending to squeeze [something]","placeholders":["lime"]}, +{"id":"38752","label":"putting matchbox on the edge of laptop so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["matchbox","laptop"]}, +{"id":"100421","label":"pretending to take a jar from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a jar","the table"]}, +{"id":"174380","label":"throwing battery in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["battery"]}, +{"id":"202728","label":"spinning tv remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["tv remote"]}, +{"id":"32780","label":"twisting (wringing) a cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a cloth"]}, +{"id":"124326","label":"pushing a pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pencil"]}, +{"id":"137443","label":"rolling rolling pin on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling pin"]}, +{"id":"210732","label":"tearing blue fabric into two pieces","template":"Tearing [something] into two pieces","placeholders":["blue fabric"]}, +{"id":"110608","label":"turning the camera left while filming board","template":"Turning the camera left while filming [something]","placeholders":["board"]}, +{"id":"194341","label":"pushing pencil from left to right","template":"Pushing [something] from left to right","placeholders":["pencil"]}, +{"id":"154080","label":"pushing a fishing lure with a screwdriver","template":"Pushing [something] with [something]","placeholders":["a fishing lure","a screwdriver"]}, +{"id":"127560","label":"covering cellphone with handkerchief","template":"Covering [something] with [something]","placeholders":["cellphone","handkerchief"]}, +{"id":"4049","label":"opening jeep door","template":"Opening [something]","placeholders":["jeep door"]}, +{"id":"209537","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"50967","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"66261","label":"putting pen and white pebble on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","white pebble"]}, +{"id":"34019","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"80122","label":"lifting red bottlecap up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["red bottlecap"]}, +{"id":"112903","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"131775","label":"pretending or trying and failing to twist a cap","template":"Pretending or trying and failing to twist [something]","placeholders":["a cap"]}, +{"id":"195038","label":"putting glasses, scissors and nail polish on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["glasses","scissors","nail polish"]}, +{"id":"29686","label":"turning scotch tape upside down","template":"Turning [something] upside down","placeholders":["scotch tape"]}, +{"id":"109837","label":"putting scissors","template":"Putting [something similar to other things that are already on the table]","placeholders":["scissors"]}, +{"id":"211030","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"68847","label":"pretending to turn a glass upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass"]}, +{"id":"155499","label":"touching (without moving) top of lid","template":"Touching (without moving) [part] of [something]","placeholders":["top","lid"]}, +{"id":"130551","label":"tilting a notebook with a battery on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","a battery"]}, +{"id":"15907","label":"holding scissors behind purse","template":"Holding [something] behind [something]","placeholders":["scissors","purse"]}, +{"id":"90091","label":"plastic falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic"]}, +{"id":"29265","label":"tilting tuperware with playdoh on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["tuperware","playdoh"]}, +{"id":"33525","label":"moving candle and can closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["candle","can"]}, +{"id":"34040","label":"moving canister closer to paper towels","template":"Moving [something] closer to [something]","placeholders":["canister","paper towels"]}, +{"id":"152866","label":"holding business card behind pen","template":"Holding [something] behind [something]","placeholders":["business card","pen"]}, +{"id":"132191","label":"letting tumbler roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tumbler"]}, +{"id":"59787","label":"poking a bag so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a bag"]}, +{"id":"173845","label":"moving mouse away from watch","template":"Moving [something] away from [something]","placeholders":["mouse","watch"]}, +{"id":"18932","label":"letting a sphere roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a sphere"]}, +{"id":"40180","label":"tilting black file with toy car on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","toy car"]}, +{"id":"108135","label":"lifting up one end of chair without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["chair"]}, +{"id":"181658","label":"turning air conditioner remote upside down","template":"Turning [something] upside down","placeholders":["air conditioner remote"]}, +{"id":"27948","label":"holding remote control in front of television","template":"Holding [something] in front of [something]","placeholders":["remote control","television"]}, +{"id":"57662","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"5690","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"79426","label":"taking knife","template":"Taking [one of many similar things on the table]","placeholders":["knife"]}, +{"id":"4283","label":"bending a chord so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a chord"]}, +{"id":"141599","label":"taking a glass","template":"Taking [one of many similar things on the table]","placeholders":["a glass"]}, +{"id":"163915","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"216386","label":"picking a book up","template":"Picking [something] up","placeholders":["a book"]}, +{"id":"76041","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191571","label":"moving a bottle and a bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a bottle"]}, +{"id":"216370","label":"taking a cup","template":"Taking [one of many similar things on the table]","placeholders":["a cup"]}, +{"id":"149035","label":"orange being deflected from vase","template":"[Something] being deflected from [something]","placeholders":["orange","vase"]}, +{"id":"32497","label":"pushing a spray-paint can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a spray-paint can"]}, +{"id":"204335","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"164129","label":"moving a leg of a toy","template":"Moving [part] of [something]","placeholders":["a leg","a toy"]}, +{"id":"91601","label":"wiping dust off of slab","template":"Wiping [something] off of [something]","placeholders":["dust","slab"]}, +{"id":"5347","label":"turning the camera upwards while filming gate","template":"Turning the camera upwards while filming [something]","placeholders":["gate"]}, +{"id":"59796","label":"spilling water next to a pen","template":"Spilling [something] next to [something]","placeholders":["water","a pen"]}, +{"id":"5199","label":"showing car behind metal gate","template":"Showing [something] behind [something]","placeholders":["car","metal gate"]}, +{"id":"152217","label":"lifting plastic case up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["plastic case"]}, +{"id":"164683","label":"sprinkling salt onto table","template":"Sprinkling [something] onto [something]","placeholders":["salt","table"]}, +{"id":"126951","label":"moving scissors across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["scissors"]}, +{"id":"29540","label":"dropping a coin behind a box","template":"Dropping [something] behind [something]","placeholders":["a coin","a box"]}, +{"id":"125787","label":"putting a smartphone behind a book","template":"Putting [something] behind [something]","placeholders":["a smartphone","a book"]}, +{"id":"214420","label":"taking bag from floor","template":"Taking [something] from [somewhere]","placeholders":["bag","floor"]}, +{"id":"108358","label":"pretending or failing to wipe soap off of a wallet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["soap","a wallet"]}, +{"id":"111521","label":"opening piller","template":"Opening [something]","placeholders":["piller"]}, +{"id":"151426","label":"showing a hotpot behind the plate","template":"Showing [something] behind [something]","placeholders":["a hotpot","the plate"]}, +{"id":"166184","label":"moving note down","template":"Moving [something] down","placeholders":["note"]}, +{"id":"114225","label":"showing that ram is inside cup","template":"Showing that [something] is inside [something]","placeholders":["ram","cup"]}, +{"id":"36558","label":"pulling rock from right to left","template":"Pulling [something] from right to left","placeholders":["rock"]}, +{"id":"2499","label":"holding a magazine in front of a cellphone","template":"Holding [something] in front of [something]","placeholders":["a magazine","a cellphone"]}, +{"id":"24375","label":"stuffing a sponge into a glass","template":"Stuffing [something] into [something]","placeholders":["a sponge","a glass"]}, +{"id":"66399","label":"dropping hairband into green bowl","template":"Dropping [something] into [something]","placeholders":["hairband","green bowl"]}, +{"id":"159862","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"79101","label":"showing a cuddly toy to the camera","template":"Showing [something] to the camera","placeholders":["a cuddly toy"]}, +{"id":"157001","label":"trying but failing to attach paper to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","fridge"]}, +{"id":"117292","label":"plugging charger into iphone 7","template":"Plugging [something] into [something]","placeholders":["charger","iphone 7"]}, +{"id":"26104","label":"dropping lighter behind cup","template":"Dropping [something] behind [something]","placeholders":["lighter","cup"]}, +{"id":"176042","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"154155","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"9872","label":"pushing books so it spins","template":"Pushing [something] so it spins","placeholders":["books"]}, +{"id":"123641","label":"dropping bottle in front of kendama","template":"Dropping [something] in front of [something]","placeholders":["bottle","kendama"]}, +{"id":"130288","label":"turning candle holder upside down","template":"Turning [something] upside down","placeholders":["candle holder"]}, +{"id":"191799","label":"closing briefcase","template":"Closing [something]","placeholders":["briefcase"]}, +{"id":"74513","label":"pushing remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote control"]}, +{"id":"171682","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"73240","label":"moving eraser closer to usb cable","template":"Moving [something] closer to [something]","placeholders":["eraser","usb cable"]}, +{"id":"103474","label":"putting a pen that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a pen"]}, +{"id":"125027","label":"turning the camera right while filming flowers","template":"Turning the camera right while filming [something]","placeholders":["flowers"]}, +{"id":"214423","label":"moving top of bracelets holder","template":"Moving [part] of [something]","placeholders":["top","bracelets holder"]}, +{"id":"202869","label":"squeezing a canteen","template":"Squeezing [something]","placeholders":["a canteen"]}, +{"id":"35908","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"115639","label":"putting wallet in front of coaster","template":"Putting [something] in front of [something]","placeholders":["wallet","coaster"]}, +{"id":"130683","label":"putting salt and pepper on the table","template":"Putting [something] and [something] on the table","placeholders":["salt","pepper"]}, +{"id":"178102","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"204622","label":"pushing paint so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paint"]}, +{"id":"167443","label":"spinning a marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a marker"]}, +{"id":"182330","label":"pretending to put pen on a surface","template":"Pretending to put [something] on a surface","placeholders":["pen"]}, +{"id":"64611","label":"glass colliding with tube and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["glass","tube"]}, +{"id":"84008","label":"moving wallet up","template":"Moving [something] up","placeholders":["wallet"]}, +{"id":"90925","label":"pulling red pot holder from left to right","template":"Pulling [something] from left to right","placeholders":["red pot holder"]}, +{"id":"50433","label":"bangle colliding with another bangle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bangle","another bangle"]}, +{"id":"70372","label":"holding orange colour pencil next to duster","template":"Holding [something] next to [something]","placeholders":["orange colour pencil","duster"]}, +{"id":"107327","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"135454","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"136195","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"174437","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"91163","label":"pulling two ends of envelope but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["envelope"]}, +{"id":"81368","label":"picking jar up","template":"Picking [something] up","placeholders":["jar"]}, +{"id":"123907","label":"poking doll so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["doll"]}, +{"id":"151814","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"141781","label":"moving candlestick closer to candlestick","template":"Moving [something] closer to [something]","placeholders":["candlestick","candlestick"]}, +{"id":"95251","label":"pushing ceiling fan so it spins","template":"Pushing [something] so it spins","placeholders":["ceiling fan"]}, +{"id":"165532","label":"dropping ball into water","template":"Dropping [something] into [something]","placeholders":["ball","water"]}, +{"id":"62593","label":"pulling red dairy from left to right","template":"Pulling [something] from left to right","placeholders":["red dairy"]}, +{"id":"54070","label":"putting lipbam into cup","template":"Putting [something] into [something]","placeholders":["lipbam","cup"]}, +{"id":"188737","label":"showing box behind jar","template":"Showing [something] behind [something]","placeholders":["box","jar"]}, +{"id":"156170","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"76942","label":"moving pick away from eraser","template":"Moving [something] away from [something]","placeholders":["pick","eraser"]}, +{"id":"101784","label":"removing polish remover, revealing moisturizer behind","template":"Removing [something], revealing [something] behind","placeholders":["polish remover","moisturizer"]}, +{"id":"44725","label":"moving lid of liitle red box","template":"Moving [part] of [something]","placeholders":["lid","liitle red box"]}, +{"id":"210074","label":"showing wallet to the camera","template":"Showing [something] to the camera","placeholders":["wallet"]}, +{"id":"69614","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"102783","label":"pretending to open a wallet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a wallet"]}, +{"id":"144377","label":"pretending to take cd from pile","template":"Pretending to take [something] from [somewhere]","placeholders":["cd","pile"]}, +{"id":"98541","label":"putting tape next to yellowbook","template":"Putting [something] next to [something]","placeholders":["tape","yellowbook"]}, +{"id":"21829","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"146440","label":"poking a spray bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a spray bottle"]}, +{"id":"145686","label":"showing that fabric conditioner is inside of a bottle","template":"Showing that [something] is inside [something]","placeholders":["fabric conditioner","of a bottle"]}, +{"id":"203352","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"161017","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"58916","label":"uncovering the tablet","template":"Uncovering [something]","placeholders":["the tablet"]}, +{"id":"16369","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"156468","label":"putting marker pen next to tooth brush","template":"Putting [something] next to [something]","placeholders":["marker pen","tooth brush"]}, +{"id":"161465","label":"pushing sunscreen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["sunscreen"]}, +{"id":"31556","label":"purse falling like a rock","template":"[Something] falling like a rock","placeholders":["purse"]}, +{"id":"204063","label":"throwing a small teddy bear","template":"Throwing [something]","placeholders":["a small teddy bear"]}, +{"id":"37731","label":"covering a candle holder with a dishcloth","template":"Covering [something] with [something]","placeholders":["a candle holder","a dishcloth"]}, +{"id":"199641","label":"pretending to open ointment without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["ointment"]}, +{"id":"135788","label":"moving well and fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["well","fork"]}, +{"id":"198852","label":"pushing comb with bottle cap","template":"Pushing [something] with [something]","placeholders":["comb","bottle cap"]}, +{"id":"93864","label":"turning the camera downwards while filming clouds","template":"Turning the camera downwards while filming [something]","placeholders":["clouds"]}, +{"id":"142103","label":"covering bolt with sky blue colour cloth","template":"Covering [something] with [something]","placeholders":["bolt","sky blue colour cloth"]}, +{"id":"29928","label":"holding spoon over glass","template":"Holding [something] over [something]","placeholders":["spoon","glass"]}, +{"id":"16840","label":"taking brochure out of plastic box","template":"Taking [something] out of [something]","placeholders":["brochure","plastic box"]}, +{"id":"39556","label":"putting pen next to paper","template":"Putting [something] next to [something]","placeholders":["pen","paper"]}, +{"id":"84635","label":"spinning a drink can so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a drink can"]}, +{"id":"166766","label":"poking green frog doll so that it falls over","template":"Poking [something] so that it falls over","placeholders":["green frog doll"]}, +{"id":"143122","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"208107","label":"taking yellow ball out of cookie box","template":"Taking [something] out of [something]","placeholders":["yellow ball","cookie box"]}, +{"id":"58361","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"62648","label":"moving spoon away from stapler","template":"Moving [something] away from [something]","placeholders":["spoon","stapler"]}, +{"id":"118021","label":"moving calculator up","template":"Moving [something] up","placeholders":["calculator"]}, +{"id":"96385","label":"opening tub of coconut oil","template":"Opening [something]","placeholders":["tub of coconut oil"]}, +{"id":"14129","label":"putting powder bottle behind wood box","template":"Putting [something] behind [something]","placeholders":["powder bottle","wood box"]}, +{"id":"133520","label":"plugging charger into electric plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","electric plug"]}, +{"id":"184798","label":"burying an onion in rice","template":"Burying [something] in [something]","placeholders":["an onion","rice"]}, +{"id":"156241","label":"pretending to pick something up","template":"Pretending to pick [something] up","placeholders":["something"]}, +{"id":"44894","label":"a notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["a notebook"]}, +{"id":"124960","label":"pretending to take money from wallet","template":"Pretending to take [something] from [somewhere]","placeholders":["money","wallet"]}, +{"id":"182427","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"193768","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"178486","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"207802","label":"pushing green cup from left to right","template":"Pushing [something] from left to right","placeholders":["green cup"]}, +{"id":"11552","label":"dental floss container falling like a rock","template":"[Something] falling like a rock","placeholders":["dental floss container"]}, +{"id":"3227","label":"pouring water into water bottle","template":"Pouring [something] into [something]","placeholders":["water","water bottle"]}, +{"id":"13607","label":"hitting trash bin with dustpan","template":"Hitting [something] with [something]","placeholders":["trash bin","dustpan"]}, +{"id":"92938","label":"moving lamp up","template":"Moving [something] up","placeholders":["lamp"]}, +{"id":"214435","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"97587","label":"moving wheel of baby carriage","template":"Moving [part] of [something]","placeholders":["wheel","baby carriage"]}, +{"id":"152256","label":"pushing a bowl from left to right","template":"Pushing [something] from left to right","placeholders":["a bowl"]}, +{"id":"18272","label":"putting dinosaur into plate","template":"Putting [something] into [something]","placeholders":["dinosaur","plate"]}, +{"id":"23699","label":"putting cupcake onto plate","template":"Putting [something] onto [something]","placeholders":["cupcake","plate"]}, +{"id":"9443","label":"putting pint glass on a surface","template":"Putting [something] on a surface","placeholders":["pint glass"]}, +{"id":"200743","label":"dropping pen in front of box","template":"Dropping [something] in front of [something]","placeholders":["pen","box"]}, +{"id":"9748","label":"spinning eye drops so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["eye drops"]}, +{"id":"80845","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"169572","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"7909","label":"approaching white chalk piece with your camera","template":"Approaching [something] with your camera","placeholders":["white chalk piece"]}, +{"id":"218172","label":"pretending to put a shoulder bag onto flower vase","template":"Pretending to put [something] onto [something]","placeholders":["a shoulder bag","flower vase"]}, +{"id":"10193","label":"pretending to open perfume cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["perfume cap"]}, +{"id":"134419","label":"putting a calculator on a surface","template":"Putting [something] on a surface","placeholders":["a calculator"]}, +{"id":"83261","label":"pushing glasses from left to right","template":"Pushing [something] from left to right","placeholders":["glasses"]}, +{"id":"151515","label":"putting round box on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["round box"]}, +{"id":"17174","label":"putting glass behind bottle","template":"Putting [something] behind [something]","placeholders":["glass","bottle"]}, +{"id":"124896","label":"putting straw","template":"Putting [something similar to other things that are already on the table]","placeholders":["straw"]}, +{"id":"219647","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"69704","label":"letting marble roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["marble"]}, +{"id":"92437","label":"bending a tooth-stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a tooth-stick"]}, +{"id":"87247","label":"pushing shoe from left to right","template":"Pushing [something] from left to right","placeholders":["shoe"]}, +{"id":"56958","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"125207","label":"attaching a phone charger to a plug point","template":"Attaching [something] to [something]","placeholders":["a phone charger","a plug point"]}, +{"id":"105799","label":"putting a marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a marker pen"]}, +{"id":"140766","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185634","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"148192","label":"putting pencil box underneath a table","template":"Putting [something] underneath [something]","placeholders":["pencil box","a table"]}, +{"id":"65310","label":"stuffing knife into basket","template":"Stuffing [something] into [something]","placeholders":["knife","basket"]}, +{"id":"138497","label":"showing mug behind water bottle","template":"Showing [something] behind [something]","placeholders":["mug","water bottle"]}, +{"id":"34688","label":"plugging power cable into laptop","template":"Plugging [something] into [something]","placeholders":["power cable","laptop"]}, +{"id":"109423","label":"pushing pillow so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pillow"]}, +{"id":"71786","label":"closing cd cover","template":"Closing [something]","placeholders":["cd cover"]}, +{"id":"149782","label":"pretending to be tearing a cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cloth"]}, +{"id":"152378","label":"holding scissors next to glue","template":"Holding [something] next to [something]","placeholders":["scissors","glue"]}, +{"id":"95377","label":"holding can","template":"Holding [something]","placeholders":["can"]}, +{"id":"44513","label":"covering a cell phone with a piece of paper","template":"Covering [something] with [something]","placeholders":["a cell phone","a piece of paper"]}, +{"id":"19025","label":"showing battery next to pink colour pencil","template":"Showing [something] next to [something]","placeholders":["battery","pink colour pencil"]}, +{"id":"206900","label":"attaching a post-it to a chair","template":"Attaching [something] to [something]","placeholders":["a post-it","a chair"]}, +{"id":"3109","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"21693","label":"hitting a phone with a pencil","template":"Hitting [something] with [something]","placeholders":["a phone","a pencil"]}, +{"id":"4270","label":"covering garlic with box","template":"Covering [something] with [something]","placeholders":["garlic","box"]}, +{"id":"153962","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"167385","label":"poking a hole into salt","template":"Poking a hole into [some substance]","placeholders":["salt"]}, +{"id":"15705","label":"lifting coin up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["coin"]}, +{"id":"87524","label":"plugging flashcard into loptop","template":"Plugging [something] into [something]","placeholders":["flashcard","loptop"]}, +{"id":"96488","label":"showing a box behind a tv controller","template":"Showing [something] behind [something]","placeholders":["a box","a tv controller"]}, +{"id":"132207","label":"showing granola bar to the camera","template":"Showing [something] to the camera","placeholders":["granola bar"]}, +{"id":"15520","label":"putting a hair brush and a mirror on the table","template":"Putting [something] and [something] on the table","placeholders":["a hair brush","a mirror"]}, +{"id":"125592","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"120839","label":"uncovering an ipad","template":"Uncovering [something]","placeholders":["an ipad"]}, +{"id":"9935","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"93331","label":"holding moisturizer over a pamphlet","template":"Holding [something] over [something]","placeholders":["moisturizer","a pamphlet"]}, +{"id":"195691","label":"showing a cd next to a lighter","template":"Showing [something] next to [something]","placeholders":["a cd","a lighter"]}, +{"id":"184963","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"178990","label":"putting box on a surface","template":"Putting [something] on a surface","placeholders":["box"]}, +{"id":"220421","label":"pushing a penguin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a penguin"]}, +{"id":"35325","label":"pretending to pour glass out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["glass","glass","glass"]}, +{"id":"82703","label":"pushing a shoe with a stick","template":"Pushing [something] with [something]","placeholders":["a shoe","a stick"]}, +{"id":"131651","label":"opening highlighter","template":"Opening [something]","placeholders":["highlighter"]}, +{"id":"180698","label":"moving a key and a battery closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a key","a battery"]}, +{"id":"133998","label":"scooping nuts up with spoon","template":"Scooping [something] up with [something]","placeholders":["nuts","spoon"]}, +{"id":"80260","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"128454","label":"pushing a pinwheel so it spins","template":"Pushing [something] so it spins","placeholders":["a pinwheel"]}, +{"id":"26546","label":"holding keys behind a soap dispenser","template":"Holding [something] behind [something]","placeholders":["keys","a soap dispenser"]}, +{"id":"107139","label":"unfolding a receipt","template":"Unfolding [something]","placeholders":["a receipt"]}, +{"id":"59648","label":"spreading jam onto toast","template":"Spreading [something] onto [something]","placeholders":["jam","toast"]}, +{"id":"137685","label":"pushing knife so it spins","template":"Pushing [something] so it spins","placeholders":["knife"]}, +{"id":"133821","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"106558","label":"moving lip bam closer to pen","template":"Moving [something] closer to [something]","placeholders":["lip bam","pen"]}, +{"id":"60961","label":"poking cork so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cork"]}, +{"id":"34847","label":"throwing lighter in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["lighter"]}, +{"id":"93748","label":"covering pick with cloth","template":"Covering [something] with [something]","placeholders":["pick","cloth"]}, +{"id":"68135","label":"pretending to throw pillow","template":"Pretending to throw [something]","placeholders":["pillow"]}, +{"id":"201772","label":"pushing chocolate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["chocolate"]}, +{"id":"35545","label":"pretending to poke keys","template":"Pretending to poke [something]","placeholders":["keys"]}, +{"id":"206727","label":"putting can on a surface","template":"Putting [something] on a surface","placeholders":["can"]}, +{"id":"28509","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"129737","label":"sprinkling colour onto paper","template":"Sprinkling [something] onto [something]","placeholders":["colour","paper"]}, +{"id":"181400","label":"putting phone and scissors on the table","template":"Putting [something] and [something] on the table","placeholders":["phone","scissors"]}, +{"id":"100110","label":"holding glass behind bowl","template":"Holding [something] behind [something]","placeholders":["glass","bowl"]}, +{"id":"108687","label":"plugging cord into power strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","power strip"]}, +{"id":"29807","label":"taking an apple out of a bowl","template":"Taking [something] out of [something]","placeholders":["an apple","a bowl"]}, +{"id":"80491","label":"covering a cat with a blanket","template":"Covering [something] with [something]","placeholders":["a cat","a blanket"]}, +{"id":"63879","label":"putting board clip and cigarette lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["board clip","cigarette lighter"]}, +{"id":"116813","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"134524","label":"holding keychain over purse","template":"Holding [something] over [something]","placeholders":["keychain","purse"]}, +{"id":"200914","label":"showing key next to music player","template":"Showing [something] next to [something]","placeholders":["key","music player"]}, +{"id":"67643","label":"pretending to be tearing ipad case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ipad case"]}, +{"id":"63957","label":"cloth holder falling like a rock","template":"[Something] falling like a rock","placeholders":["cloth holder"]}, +{"id":"160716","label":"putting cell phone upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["cell phone"]}, +{"id":"34193","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"43274","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"34433","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"122339","label":"pretending to poke curtain","template":"Pretending to poke [something]","placeholders":["curtain"]}, +{"id":"15407","label":"tilting bottle with book on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bottle","book"]}, +{"id":"95619","label":"pretending to be tearing plastic lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic lid"]}, +{"id":"141809","label":"holding orange post-it","template":"Holding [something]","placeholders":["orange post-it"]}, +{"id":"22358","label":"throwing opener against wall","template":"Throwing [something] against [something]","placeholders":["opener","wall"]}, +{"id":"182311","label":"putting onion onto cloth","template":"Putting [something] onto [something]","placeholders":["onion","cloth"]}, +{"id":"127199","label":"squeezing a carton","template":"Squeezing [something]","placeholders":["a carton"]}, +{"id":"172608","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"53919","label":"throwing pick in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pick"]}, +{"id":"182726","label":"squeezing stress ball","template":"Squeezing [something]","placeholders":["stress ball"]}, +{"id":"139178","label":"putting waste paper into dustbin","template":"Putting [something] into [something]","placeholders":["waste paper","dustbin"]}, +{"id":"213128","label":"pulling pink blush on from left to right","template":"Pulling [something] from left to right","placeholders":["pink blush on"]}, +{"id":"165812","label":"holding case behind speaker","template":"Holding [something] behind [something]","placeholders":["case","speaker"]}, +{"id":"25869","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"187404","label":"putting a steel ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a steel ball"]}, +{"id":"155105","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"213321","label":"pulling a bracelet out of a plastic bag","template":"Pulling [something] out of [something]","placeholders":["a bracelet","a plastic bag"]}, +{"id":"139211","label":"remote control falling like a rock","template":"[Something] falling like a rock","placeholders":["remote control"]}, +{"id":"211726","label":"twisting (wringing) a wipe wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a wipe"]}, +{"id":"201989","label":"trying to bend a drumstick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a drumstick"]}, +{"id":"184241","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"99754","label":"putting toy in front of toy watch","template":"Putting [something] in front of [something]","placeholders":["toy","toy watch"]}, +{"id":"14403","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"99490","label":"opening a ukulele case","template":"Opening [something]","placeholders":["a ukulele case"]}, +{"id":"97159","label":"dropping paper clip next to medicine bottle","template":"Dropping [something] next to [something]","placeholders":["paper clip","medicine bottle"]}, +{"id":"217863","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"117940","label":"throwing notebook against bookbag","template":"Throwing [something] against [something]","placeholders":["notebook","bookbag"]}, +{"id":"54924","label":"pretending to be tearing table cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["table cloth"]}, +{"id":"179183","label":"pushing hat so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hat"]}, +{"id":"159543","label":"pushing a book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a book"]}, +{"id":"129718","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"172066","label":"tilting book with keys on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","keys"]}, +{"id":"200824","label":"throwing a tissue box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a tissue box"]}, +{"id":"99669","label":"lifting newspaper with hair brush on it","template":"Lifting [something] with [something] on it","placeholders":["newspaper","hair brush"]}, +{"id":"37562","label":"dropping a box in front of a pencil","template":"Dropping [something] in front of [something]","placeholders":["a box","a pencil"]}, +{"id":"214675","label":"moving a light switch down","template":"Moving [something] down","placeholders":["a light switch"]}, +{"id":"1591","label":"spilling water onto saucer","template":"Spilling [something] onto [something]","placeholders":["water","saucer"]}, +{"id":"207221","label":"picking a cup up","template":"Picking [something] up","placeholders":["a cup"]}, +{"id":"17637","label":"stuffing tissue into paper bag","template":"Stuffing [something] into [something]","placeholders":["tissue","paper bag"]}, +{"id":"12873","label":"approaching washing machine with your camera","template":"Approaching [something] with your camera","placeholders":["washing machine"]}, +{"id":"151380","label":"putting wallet that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["wallet"]}, +{"id":"130051","label":"throwing mechanical pencil onto a surface","template":"Throwing [something] onto a surface","placeholders":["mechanical pencil"]}, +{"id":"104985","label":"holding compact disk next to book","template":"Holding [something] next to [something]","placeholders":["compact disk","book"]}, +{"id":"76226","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"109534","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"28953","label":"putting tape on a surface","template":"Putting [something] on a surface","placeholders":["tape"]}, +{"id":"202657","label":"trying but failing to attach a cap to a jar because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a cap","a jar"]}, +{"id":"73670","label":"uncovering baby","template":"Uncovering [something]","placeholders":["baby"]}, +{"id":"64988","label":"lifting a book with a box on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a box"]}, +{"id":"54977","label":"moving bag down","template":"Moving [something] down","placeholders":["bag"]}, +{"id":"127682","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"191175","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"40897","label":"taking divider on the bottom that is similar to other divider on the table","template":"Taking [one of many similar things on the table]","placeholders":["divider on the bottom that is similar to other divider on the table"]}, +{"id":"39559","label":"poking a fork so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a fork"]}, +{"id":"3843","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"11606","label":"moving a toy car across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a toy car"]}, +{"id":"148819","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"214964","label":"throwing a pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pen"]}, +{"id":"18405","label":"holding scissors behind a bottle","template":"Holding [something] behind [something]","placeholders":["scissors","a bottle"]}, +{"id":"88484","label":"taking hacksaw blade from table","template":"Taking [something] from [somewhere]","placeholders":["hacksaw blade","table"]}, +{"id":"47769","label":"pushing bucket from right to left","template":"Pushing [something] from right to left","placeholders":["bucket"]}, +{"id":"140039","label":"moving toilet paper away from inhaler","template":"Moving [something] away from [something]","placeholders":["toilet paper","inhaler"]}, +{"id":"60661","label":"pushing kitchen roll so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["kitchen roll"]}, +{"id":"40102","label":"lifting up one end of flashlight, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["flashlight"]}, +{"id":"199620","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"114265","label":"lifting book with toy on it","template":"Lifting [something] with [something] on it","placeholders":["book","toy"]}, +{"id":"142623","label":"wiping cranberry off of the wall","template":"Wiping [something] off of [something]","placeholders":["cranberry","the wall"]}, +{"id":"60669","label":"playing card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["playing card"]}, +{"id":"189410","label":"tearing sandpaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["sandpaper"]}, +{"id":"133783","label":"letting pill bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pill bottle"]}, +{"id":"158967","label":"pushing lighter so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["lighter"]}, +{"id":"138147","label":"hitting box with comb","template":"Hitting [something] with [something]","placeholders":["box","comb"]}, +{"id":"64795","label":"turning pen holder upside down","template":"Turning [something] upside down","placeholders":["pen holder"]}, +{"id":"125793","label":"putting a pen next to pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen next to pens"]}, +{"id":"62977","label":"milk jug being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["milk jug","couch"]}, +{"id":"205285","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"87043","label":"turning the camera right while filming me","template":"Turning the camera right while filming [something]","placeholders":["me"]}, +{"id":"15283","label":"beanbag falling like a rock","template":"[Something] falling like a rock","placeholders":["beanbag"]}, +{"id":"13372","label":"approaching doorknob with your camera","template":"Approaching [something] with your camera","placeholders":["doorknob"]}, +{"id":"188281","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"120777","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"21623","label":"pretending to squeeze box","template":"Pretending to squeeze [something]","placeholders":["box"]}, +{"id":"81617","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"61091","label":"scooping dhal up with spoon","template":"Scooping [something] up with [something]","placeholders":["dhal","spoon"]}, +{"id":"107782","label":"pulling car from left to right","template":"Pulling [something] from left to right","placeholders":["car"]}, +{"id":"165840","label":"moving rectangular box and ramekin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["rectangular box","ramekin"]}, +{"id":"99316","label":"turning toy badge upside down","template":"Turning [something] upside down","placeholders":["toy badge"]}, +{"id":"183969","label":"lifting dish with apple on it","template":"Lifting [something] with [something] on it","placeholders":["dish","apple"]}, +{"id":"213404","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"131706","label":"folding childs shirt","template":"Folding [something]","placeholders":["childs shirt"]}, +{"id":"191199","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"19204","label":"pouring beer into mug","template":"Pouring [something] into [something]","placeholders":["beer","mug"]}, +{"id":"160841","label":"wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet"]}, +{"id":"164567","label":"moving a ink bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a ink bottle"]}, +{"id":"151395","label":"throwing a leaf in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a leaf"]}, +{"id":"50646","label":"moving medicines down","template":"Moving [something] down","placeholders":["medicines"]}, +{"id":"11569","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"22129","label":"approaching gate with your camera","template":"Approaching [something] with your camera","placeholders":["gate"]}, +{"id":"165593","label":"plugging electric cord into power outlet","template":"Plugging [something] into [something]","placeholders":["electric cord","power outlet"]}, +{"id":"216210","label":"turning the camera right while filming a jar","template":"Turning the camera right while filming [something]","placeholders":["a jar"]}, +{"id":"118579","label":"spreading kerchief onto diary","template":"Spreading [something] onto [something]","placeholders":["kerchief","diary"]}, +{"id":"100908","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"208016","label":"tearing a magazine just a little bit","template":"Tearing [something] just a little bit","placeholders":["a magazine"]}, +{"id":"37237","label":"showing slide next to easel","template":"Showing [something] next to [something]","placeholders":["slide","easel"]}, +{"id":"94529","label":"putting spanner on the top similar to many spanners on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["spanner on the top similar to many spanners on the table"]}, +{"id":"6173","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"35652","label":"uncovering laptop","template":"Uncovering [something]","placeholders":["laptop"]}, +{"id":"181119","label":"dropping a cell phone in front of a shoe","template":"Dropping [something] in front of [something]","placeholders":["a cell phone","a shoe"]}, +{"id":"61047","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"155237","label":"pretending to take bottle from table","template":"Pretending to take [something] from [somewhere]","placeholders":["bottle","table"]}, +{"id":"14805","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"120400","label":"pushing a shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a shoe"]}, +{"id":"211145","label":"putting the book on a surface","template":"Putting [something] on a surface","placeholders":["the book"]}, +{"id":"95848","label":"tilting book with box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","box"]}, +{"id":"122338","label":"showing newspaper on top of car bonnet","template":"Showing [something] on top of [something]","placeholders":["newspaper","car bonnet"]}, +{"id":"147873","label":"putting bracelete into jeweler","template":"Putting [something] into [something]","placeholders":["bracelete","jeweler"]}, +{"id":"81836","label":"a water bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["a water bottle"]}, +{"id":"18649","label":"showing bottle behind bottle","template":"Showing [something] behind [something]","placeholders":["bottle","bottle"]}, +{"id":"97820","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"2931","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"13248","label":"pretending to put comb into mug","template":"Pretending to put [something] into [something]","placeholders":["comb","mug"]}, +{"id":"154629","label":"uncovering something","template":"Uncovering [something]","placeholders":["something"]}, +{"id":"99256","label":"throwing roll of toilet paper against cabinet door","template":"Throwing [something] against [something]","placeholders":["roll of toilet paper","cabinet door"]}, +{"id":"31631","label":"trying to bend spoon so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["spoon"]}, +{"id":"207023","label":"opening the window","template":"Opening [something]","placeholders":["the window"]}, +{"id":"158297","label":"throwing an eraser in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["an eraser"]}, +{"id":"141132","label":"twisting lotion cap","template":"Twisting [something]","placeholders":["lotion cap"]}, +{"id":"29362","label":"pouring water into silver glass","template":"Pouring [something] into [something]","placeholders":["water","silver glass"]}, +{"id":"107908","label":"taking a spoon out of a coffee cup","template":"Taking [something] out of [something]","placeholders":["a spoon","a coffee cup"]}, +{"id":"48878","label":"pretending to put a battery next to a coin","template":"Pretending to put [something] next to [something]","placeholders":["a battery","a coin"]}, +{"id":"40910","label":"putting keys on a surface","template":"Putting [something] on a surface","placeholders":["keys"]}, +{"id":"155002","label":"tilting a roll of tape with a tape dispenser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a roll of tape","a tape dispenser"]}, +{"id":"182398","label":"pretending to pour water out of bucket, but bucket is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bucket","bucket"]}, +{"id":"55632","label":"dropping box next to cup","template":"Dropping [something] next to [something]","placeholders":["box","cup"]}, +{"id":"190506","label":"putting keys into bag","template":"Putting [something] into [something]","placeholders":["keys","bag"]}, +{"id":"65649","label":"holding keyboard next to backpack","template":"Holding [something] next to [something]","placeholders":["keyboard","backpack"]}, +{"id":"64307","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"203882","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"20549","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"41567","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"149647","label":"twisting (wringing) a washcloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a washcloth"]}, +{"id":"218178","label":"squeezing clear plastic hair band","template":"Squeezing [something]","placeholders":["clear plastic hair band"]}, +{"id":"38345","label":"tipping water over","template":"Tipping [something] over","placeholders":["water"]}, +{"id":"183898","label":"pretending to take black box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["black box","table"]}, +{"id":"167308","label":"folding a news paper","template":"Folding [something]","placeholders":["a news paper"]}, +{"id":"122975","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"131583","label":"putting dvds onto dvds","template":"Putting [something] onto [something]","placeholders":["dvds","dvds"]}, +{"id":"169505","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"26279","label":"stuffing paper into box","template":"Stuffing [something] into [something]","placeholders":["paper","box"]}, +{"id":"91079","label":"letting a ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a ball"]}, +{"id":"155092","label":"dropping scoop behind canister","template":"Dropping [something] behind [something]","placeholders":["scoop","canister"]}, +{"id":"35052","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"34920","label":"pretending to put shoe on a surface","template":"Pretending to put [something] on a surface","placeholders":["shoe"]}, +{"id":"19350","label":"poking plastic bag so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["plastic bag"]}, +{"id":"6482","label":"pushing phone from right to left","template":"Pushing [something] from right to left","placeholders":["phone"]}, +{"id":"48203","label":"pushing pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pencil"]}, +{"id":"176836","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"103204","label":"spilling tea next to a coin","template":"Spilling [something] next to [something]","placeholders":["tea","a coin"]}, +{"id":"215693","label":"pulling two ends of leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaf"]}, +{"id":"34235","label":"spilling water onto a plant","template":"Spilling [something] onto [something]","placeholders":["water","a plant"]}, +{"id":"218714","label":"lifting a blanket up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a blanket"]}, +{"id":"31539","label":"a ball colliding with a ball and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a ball","a ball"]}, +{"id":"50282","label":"pouring juice into can","template":"Pouring [something] into [something]","placeholders":["juice","can"]}, +{"id":"26647","label":"moving mirror and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mirror","bottle"]}, +{"id":"215561","label":"taking a tag","template":"Taking [one of many similar things on the table]","placeholders":["a tag"]}, +{"id":"44391","label":"pretending to pick wipes up","template":"Pretending to pick [something] up","placeholders":["wipes"]}, +{"id":"40013","label":"moving triangle and sun glasses away from each other","template":"Moving [something] and [something] away from each other","placeholders":["triangle","sun glasses"]}, +{"id":"107400","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"167711","label":"pulling mobile phone from right to left","template":"Pulling [something] from right to left","placeholders":["mobile phone"]}, +{"id":"32672","label":"usb cable falling like a rock","template":"[Something] falling like a rock","placeholders":["usb cable"]}, +{"id":"12749","label":"letting car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["car"]}, +{"id":"208606","label":"holding electric guitar over stool","template":"Holding [something] over [something]","placeholders":["electric guitar","stool"]}, +{"id":"202558","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"120224","label":"salt shaker falling like a rock","template":"[Something] falling like a rock","placeholders":["salt shaker"]}, +{"id":"4885","label":"pretending to pick scotch tape up","template":"Pretending to pick [something] up","placeholders":["scotch tape"]}, +{"id":"29369","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"156891","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"134845","label":"dropping an envelope behind a box","template":"Dropping [something] behind [something]","placeholders":["an envelope","a box"]}, +{"id":"90080","label":"pushing a knife so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a knife"]}, +{"id":"134378","label":"stuffing pens into vase","template":"Stuffing [something] into [something]","placeholders":["pens","vase"]}, +{"id":"18052","label":"pretending to close case without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["case"]}, +{"id":"15840","label":"bending pasta until it breaks","template":"Bending [something] until it breaks","placeholders":["pasta"]}, +{"id":"62960","label":"pretending to take tea infuser out of mug","template":"Pretending to take [something] out of [something]","placeholders":["tea infuser","mug"]}, +{"id":"54131","label":"tilting a cup with a notebook on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cup","a notebook"]}, +{"id":"43859","label":"pushing shot glass from right to left","template":"Pushing [something] from right to left","placeholders":["shot glass"]}, +{"id":"32356","label":"poking a stack of packaging handkerchiefs so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["packaging handkerchiefs"]}, +{"id":"130709","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"49839","label":"lifting a book up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a book"]}, +{"id":"88916","label":"lifting a paper up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a paper"]}, +{"id":"55315","label":"pretending to poke paper","template":"Pretending to poke [something]","placeholders":["paper"]}, +{"id":"189830","label":"picking betel nut up","template":"Picking [something] up","placeholders":["betel nut"]}, +{"id":"207518","label":"moving usb and usb cable away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb","usb cable"]}, +{"id":"125551","label":"attaching paperclip to paper","template":"Attaching [something] to [something]","placeholders":["paperclip","paper"]}, +{"id":"128078","label":"holding a measuring tape in front of helmet","template":"Holding [something] in front of [something]","placeholders":["a measuring tape","helmet"]}, +{"id":"139405","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"183917","label":"turning fabric softener upside down","template":"Turning [something] upside down","placeholders":["fabric softener"]}, +{"id":"32345","label":"pushing case from left to right","template":"Pushing [something] from left to right","placeholders":["case"]}, +{"id":"171954","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"140503","label":"lifting straw up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["straw"]}, +{"id":"144156","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"126597","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"175187","label":"uncovering fabric","template":"Uncovering [something]","placeholders":["fabric"]}, +{"id":"159995","label":"pretending to put a paper onto a box","template":"Pretending to put [something] onto [something]","placeholders":["a paper","a box"]}, +{"id":"31907","label":"stuffing calculator into pen bag","template":"Stuffing [something] into [something]","placeholders":["calculator","pen bag"]}, +{"id":"171538","label":"putting braclet onto table","template":"Putting [something] onto [something]","placeholders":["braclet","table"]}, +{"id":"1073","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"118066","label":"dropping a toy onto the bed","template":"Dropping [something] onto [something]","placeholders":["a toy","the bed"]}, +{"id":"76450","label":"taking tangerine from group of tangerines","template":"Taking [one of many similar things on the table]","placeholders":["tangerine from group of tangerines"]}, +{"id":"105370","label":"holding keychain in front of bear doll","template":"Holding [something] in front of [something]","placeholders":["keychain","bear doll"]}, +{"id":"49307","label":"pretending to put saucer underneath teacup","template":"Pretending to put [something] underneath [something]","placeholders":["saucer","teacup"]}, +{"id":"148143","label":"folding receipt paper","template":"Folding [something]","placeholders":["receipt paper"]}, +{"id":"62897","label":"putting a computer mouse on a surface","template":"Putting [something] on a surface","placeholders":["a computer mouse"]}, +{"id":"22530","label":"gluestick falling like a rock","template":"[Something] falling like a rock","placeholders":["gluestick"]}, +{"id":"100338","label":"dropping game piece onto book","template":"Dropping [something] onto [something]","placeholders":["game piece","book"]}, +{"id":"173735","label":"pulling white book marker from right to left","template":"Pulling [something] from right to left","placeholders":["white book marker"]}, +{"id":"160390","label":"dropping book onto chair","template":"Dropping [something] onto [something]","placeholders":["book","chair"]}, +{"id":"210405","label":"putting bottle onto jar","template":"Putting [something] onto [something]","placeholders":["bottle","jar"]}, +{"id":"130744","label":"dropping a matchbox next to a pencil","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a pencil"]}, +{"id":"216179","label":"failing to put an apple into a shot glass because the apple does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["an apple","a shot glass","the apple"]}, +{"id":"74720","label":"plugging phone charger into wall plug","template":"Plugging [something] into [something]","placeholders":["phone charger","wall plug"]}, +{"id":"112750","label":"pretending to sprinkle air onto floor","template":"Pretending to sprinkle air onto [something]","placeholders":["floor"]}, +{"id":"10230","label":"twisting pill bottle","template":"Twisting [something]","placeholders":["pill bottle"]}, +{"id":"53484","label":"throwing a tennis ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a tennis ball"]}, +{"id":"185570","label":"dropping a bottle top onto a plate","template":"Dropping [something] onto [something]","placeholders":["a bottle top","a plate"]}, +{"id":"28448","label":"putting box next to yellowbook","template":"Putting [something] next to [something]","placeholders":["box","yellowbook"]}, +{"id":"186661","label":"lifting up one end of comb without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["comb"]}, +{"id":"56215","label":"putting one tape dispenser onto table","template":"Putting [number of] [something] onto [something]","placeholders":["one","tape dispenser","table"]}, +{"id":"135525","label":"pushing sugar jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sugar jar"]}, +{"id":"164155","label":"putting tailoring tap into plastic bowl","template":"Putting [something] into [something]","placeholders":["tailoring tap","plastic bowl"]}, +{"id":"153105","label":"lifting telephone with box on it","template":"Lifting [something] with [something] on it","placeholders":["telephone","box"]}, +{"id":"196227","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"44982","label":"pretending to squeeze plastic funnel","template":"Pretending to squeeze [something]","placeholders":["plastic funnel"]}, +{"id":"1170","label":"showing nail varnish behind lighter","template":"Showing [something] behind [something]","placeholders":["nail varnish","lighter"]}, +{"id":"173897","label":"pouring water onto spoon","template":"Pouring [something] onto [something]","placeholders":["water","spoon"]}, +{"id":"13105","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"40","label":"poking lipstick so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lipstick"]}, +{"id":"30680","label":"moving battery down","template":"Moving [something] down","placeholders":["battery"]}, +{"id":"80332","label":"holding binoculars in front of an anvil","template":"Holding [something] in front of [something]","placeholders":["binoculars","an anvil"]}, +{"id":"207331","label":"spilling water behind glass","template":"Spilling [something] behind [something]","placeholders":["water","glass"]}, +{"id":"198269","label":"dropping plate next to plate","template":"Dropping [something] next to [something]","placeholders":["plate","plate"]}, +{"id":"149320","label":"putting crochet needle into box","template":"Putting [something] into [something]","placeholders":["crochet needle","box"]}, +{"id":"90851","label":"moving stapler closer to scissors","template":"Moving [something] closer to [something]","placeholders":["stapler","scissors"]}, +{"id":"10617","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196534","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"214007","label":"pulling two ends of sock so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["sock"]}, +{"id":"54805","label":"spilling water next to a container","template":"Spilling [something] next to [something]","placeholders":["water","a container"]}, +{"id":"60416","label":"pretending to take a pen from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["a pen","ground"]}, +{"id":"13992","label":"dropping calculator into bowl","template":"Dropping [something] into [something]","placeholders":["calculator","bowl"]}, +{"id":"5143","label":"covering a phone with a piece of cloth","template":"Covering [something] with [something]","placeholders":["a phone","a piece of cloth"]}, +{"id":"17629","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"21300","label":"turning hole puncher upside down","template":"Turning [something] upside down","placeholders":["hole puncher"]}, +{"id":"37441","label":"letting a ring roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ring"]}, +{"id":"44586","label":"unfolding chair","template":"Unfolding [something]","placeholders":["chair"]}, +{"id":"10288","label":"bending a flexo lamp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a flexo lamp"]}, +{"id":"147119","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"129113","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"209706","label":"turning tumbler upside down","template":"Turning [something] upside down","placeholders":["tumbler"]}, +{"id":"70116","label":"dropping a glove behind a bowl","template":"Dropping [something] behind [something]","placeholders":["a glove","a bowl"]}, +{"id":"12575","label":"pieces of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["pieces of paper"]}, +{"id":"120673","label":"stacking 3 things","template":"Stacking [number of] [something]","placeholders":["3","things"]}, +{"id":"192054","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"201525","label":"pretending or trying and failing to twist comb","template":"Pretending or trying and failing to twist [something]","placeholders":["comb"]}, +{"id":"173596","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"109644","label":"putting mug in front of plastic screwcap","template":"Putting [something] in front of [something]","placeholders":["mug","plastic screwcap"]}, +{"id":"190134","label":"putting pillow onto sofa","template":"Putting [something] onto [something]","placeholders":["pillow","sofa"]}, +{"id":"1143","label":"hitting box with fork","template":"Hitting [something] with [something]","placeholders":["box","fork"]}, +{"id":"198242","label":"spinning a fidgit spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidgit spinner"]}, +{"id":"143109","label":"moving wallet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["wallet"]}, +{"id":"156613","label":"taking one of many similar coins","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar coins"]}, +{"id":"154380","label":"newspaper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["newspaper"]}, +{"id":"27419","label":"putting thing in front of drawers","template":"Putting [something] in front of [something]","placeholders":["thing","drawers"]}, +{"id":"23015","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"119171","label":"moving rack down","template":"Moving [something] down","placeholders":["rack"]}, +{"id":"98538","label":"putting a wallet upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a wallet"]}, +{"id":"88575","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"83334","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"65017","label":"putting stapler that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stapler"]}, +{"id":"32914","label":"covering white chalk with paper","template":"Covering [something] with [something]","placeholders":["white chalk","paper"]}, +{"id":"218471","label":"putting black brush on a surface","template":"Putting [something] on a surface","placeholders":["black brush"]}, +{"id":"131108","label":"twisting headphones","template":"Twisting [something]","placeholders":["headphones"]}, +{"id":"64717","label":"putting a pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pen"]}, +{"id":"22618","label":"attaching sticky note to monitor","template":"Attaching [something] to [something]","placeholders":["sticky note","monitor"]}, +{"id":"83230","label":"pretending to be tearing bib","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bib"]}, +{"id":"3178","label":"tilting box with speaker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","speaker"]}, +{"id":"146962","label":"uncovering football","template":"Uncovering [something]","placeholders":["football"]}, +{"id":"135995","label":"moving cup closer to plate","template":"Moving [something] closer to [something]","placeholders":["cup","plate"]}, +{"id":"115389","label":"pushing wireless mouse from left to right","template":"Pushing [something] from left to right","placeholders":["wireless mouse"]}, +{"id":"149939","label":"holding stapler in front of cup","template":"Holding [something] in front of [something]","placeholders":["stapler","cup"]}, +{"id":"80659","label":"spreading butter onto toast","template":"Spreading [something] onto [something]","placeholders":["butter","toast"]}, +{"id":"108589","label":"turning shampoo bottle upside down","template":"Turning [something] upside down","placeholders":["shampoo bottle"]}, +{"id":"77398","label":"bulb syringe being deflected from dishwasher","template":"[Something] being deflected from [something]","placeholders":["bulb syringe","dishwasher"]}, +{"id":"4770","label":"spilling milk onto table","template":"Spilling [something] onto [something]","placeholders":["milk","table"]}, +{"id":"191579","label":"pulling a matchstick from behind of a book","template":"Pulling [something] from behind of [something]","placeholders":["a matchstick","a book"]}, +{"id":"18648","label":"pulling the dollar out of purse","template":"Pulling [something] out of [something]","placeholders":["the dollar","purse"]}, +{"id":"216095","label":"poking string so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["string"]}, +{"id":"139599","label":"moving fan and controller closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fan","controller"]}, +{"id":"37659","label":"pushing a bowl so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bowl"]}, +{"id":"56924","label":"lifting electronic calculator up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["electronic calculator"]}, +{"id":"39846","label":"moving sketch pen down","template":"Moving [something] down","placeholders":["sketch pen"]}, +{"id":"169464","label":"putting 3 letters onto the table","template":"Putting [number of] [something] onto [something]","placeholders":["3","letters","the table"]}, +{"id":"25282","label":"rolling rolling ball on flat surface on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling ball on flat surface"]}, +{"id":"200932","label":"pushing something from left to right","template":"Pushing [something] from left to right","placeholders":["something"]}, +{"id":"135973","label":"pretending to close small hand gel without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["small hand gel"]}, +{"id":"211506","label":"moving fork and knife away from each other","template":"Moving [something] and [something] away from each other","placeholders":["fork","knife"]}, +{"id":"137392","label":"poking a rack shelf so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a rack shelf"]}, +{"id":"52628","label":"moving remote control down","template":"Moving [something] down","placeholders":["remote control"]}, +{"id":"118743","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"206974","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"138027","label":"wiping ink off of table","template":"Wiping [something] off of [something]","placeholders":["ink","table"]}, +{"id":"211838","label":"pretending to put pebble onto glass","template":"Pretending to put [something] onto [something]","placeholders":["pebble","glass"]}, +{"id":"118245","label":"bending cotton swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cotton swab"]}, +{"id":"50123","label":"moving a pen up","template":"Moving [something] up","placeholders":["a pen"]}, +{"id":"215302","label":"letting a lemon roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a lemon"]}, +{"id":"48590","label":"pulling two ends of rubber string so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber string"]}, +{"id":"188162","label":"spinning soap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["soap"]}, +{"id":"180886","label":"taking block out of container","template":"Taking [something] out of [something]","placeholders":["block","container"]}, +{"id":"54527","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"93301","label":"moving salt away from pepper","template":"Moving [something] away from [something]","placeholders":["salt","pepper"]}, +{"id":"116978","label":"turning the camera left while filming atm machine","template":"Turning the camera left while filming [something]","placeholders":["atm machine"]}, +{"id":"9474","label":"pretending to pick flowers up","template":"Pretending to pick [something] up","placeholders":["flowers"]}, +{"id":"93579","label":"moving pages of note book","template":"Moving [part] of [something]","placeholders":["pages","note book"]}, +{"id":"5790","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"31941","label":"throwing bag in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bag"]}, +{"id":"140727","label":"dropping a toothpick onto a box","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a box"]}, +{"id":"107804","label":"showing that coffee is inside cup","template":"Showing that [something] is inside [something]","placeholders":["coffee","cup"]}, +{"id":"93247","label":"lifting the bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["the bottle"]}, +{"id":"39588","label":"pretending to close envelope without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["envelope"]}, +{"id":"203816","label":"stuffing notecard into purple container","template":"Stuffing [something] into [something]","placeholders":["notecard","purple container"]}, +{"id":"121095","label":"lifting spiral pad notebook with pencil on it","template":"Lifting [something] with [something] on it","placeholders":["spiral pad notebook","pencil"]}, +{"id":"152711","label":"holding vape over box","template":"Holding [something] over [something]","placeholders":["vape","box"]}, +{"id":"212095","label":"unfolding tote bags","template":"Unfolding [something]","placeholders":["tote bags"]}, +{"id":"156918","label":"pulling squeezable strawberry jam from left to right","template":"Pulling [something] from left to right","placeholders":["squeezable strawberry jam"]}, +{"id":"16115","label":"lifting tumbler up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["tumbler"]}, +{"id":"190435","label":"putting pendrive into mug","template":"Putting [something] into [something]","placeholders":["pendrive","mug"]}, +{"id":"110772","label":"holding cord","template":"Holding [something]","placeholders":["cord"]}, +{"id":"49938","label":"pretending or failing to wipe water off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["water","table"]}, +{"id":"65470","label":"plugging a usb into a laptop","template":"Plugging [something] into [something]","placeholders":["a usb","a laptop"]}, +{"id":"80418","label":"plugging headphones into a computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","a computer"]}, +{"id":"111896","label":"tilting a book with a mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a mouse"]}, +{"id":"85952","label":"stuffing papers into bag","template":"Stuffing [something] into [something]","placeholders":["papers","bag"]}, +{"id":"25701","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"94303","label":"lifting a wallet up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wallet"]}, +{"id":"163017","label":"plugging cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","laptop"]}, +{"id":"72127","label":"a sticky falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sticky"]}, +{"id":"5129","label":"throwing a plastic ball","template":"Throwing [something]","placeholders":["a plastic ball"]}, +{"id":"128222","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"146559","label":"spreading black pepper onto paper","template":"Spreading [something] onto [something]","placeholders":["black pepper","paper"]}, +{"id":"28957","label":"taking bond paper out of mini cabinet","template":"Taking [something] out of [something]","placeholders":["bond paper","mini cabinet"]}, +{"id":"69274","label":"taking a hair brush out of a box","template":"Taking [something] out of [something]","placeholders":["a hair brush","a box"]}, +{"id":"132942","label":"covering pens with a pillow","template":"Covering [something] with [something]","placeholders":["pens","a pillow"]}, +{"id":"49112","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"21500","label":"poking a roll of duct tape so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a roll of duct tape"]}, +{"id":"134120","label":"dropping marker into pen holder","template":"Dropping [something] into [something]","placeholders":["marker","pen holder"]}, +{"id":"105591","label":"putting sunglasses next to mug","template":"Putting [something] next to [something]","placeholders":["sunglasses","mug"]}, +{"id":"39260","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"83960","label":"holding vape next to jacket","template":"Holding [something] next to [something]","placeholders":["vape","jacket"]}, +{"id":"200337","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"119795","label":"moving towel up","template":"Moving [something] up","placeholders":["towel"]}, +{"id":"188868","label":"pushing toy gun so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["toy gun"]}, +{"id":"209768","label":"plugging plug connector into double plug socket","template":"Plugging [something] into [something]","placeholders":["plug connector","double plug socket"]}, +{"id":"60260","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"214070","label":"moving glass ball and glass ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass ball","glass ball"]}, +{"id":"108501","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"162613","label":"opening hotbox","template":"Opening [something]","placeholders":["hotbox"]}, +{"id":"183206","label":"taking a spoon","template":"Taking [one of many similar things on the table]","placeholders":["a spoon"]}, +{"id":"216140","label":"rolling a grape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a grape"]}, +{"id":"104030","label":"pulling two ends of sunglasses but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["sunglasses"]}, +{"id":"43127","label":"lifting box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["box"]}, +{"id":"178806","label":"showing toffees to the camera","template":"Showing [something] to the camera","placeholders":["toffees"]}, +{"id":"69128","label":"pulling brown bracelet from left to right","template":"Pulling [something] from left to right","placeholders":["brown bracelet"]}, +{"id":"12121","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"147286","label":"pretending to be tearing atm card","template":"Pretending to be tearing [something that is not tearable]","placeholders":["atm card"]}, +{"id":"117080","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"8609","label":"bending a plastic bottle so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a plastic bottle"]}, +{"id":"127611","label":"tearing a stickey note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a stickey note"]}, +{"id":"43928","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"44929","label":"pretending to spread air onto a table","template":"Pretending to spread air onto [something]","placeholders":["a table"]}, +{"id":"192009","label":"spinning my fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["my fidget spinner"]}, +{"id":"104378","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"190978","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"1108","label":"putting watch next to tablet","template":"Putting [something] next to [something]","placeholders":["watch","tablet"]}, +{"id":"195604","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"58221","label":"turning the camera right while filming ink bottle","template":"Turning the camera right while filming [something]","placeholders":["ink bottle"]}, +{"id":"173554","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"86574","label":"pushing iphone adapter from right to left","template":"Pushing [something] from right to left","placeholders":["iphone adapter"]}, +{"id":"203418","label":"uncovering a jbl","template":"Uncovering [something]","placeholders":["a jbl"]}, +{"id":"8453","label":"pushing nail varnish bottle from right to left","template":"Pushing [something] from right to left","placeholders":["nail varnish bottle"]}, +{"id":"61968","label":"tilting chair with watering can on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["chair","watering can"]}, +{"id":"47322","label":"twisting sock","template":"Twisting [something]","placeholders":["sock"]}, +{"id":"194167","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"86177","label":"moving toy and toy puppy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["toy","toy puppy"]}, +{"id":"180969","label":"throwing a small hollow box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a small hollow box"]}, +{"id":"185349","label":"tearing a piece of mail into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of mail"]}, +{"id":"65325","label":"dropping pen in front of glass","template":"Dropping [something] in front of [something]","placeholders":["pen","glass"]}, +{"id":"40839","label":"throwing a water bottle","template":"Throwing [something]","placeholders":["a water bottle"]}, +{"id":"158981","label":"putting sugar pack","template":"Putting [something similar to other things that are already on the table]","placeholders":["sugar pack"]}, +{"id":"107176","label":"tilting plate with glove on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","glove"]}, +{"id":"23199","label":"moving remote closer to remote","template":"Moving [something] closer to [something]","placeholders":["remote","remote"]}, +{"id":"182171","label":"pretending to take snack from box","template":"Pretending to take [something] from [somewhere]","placeholders":["snack","box"]}, +{"id":"16210","label":"tipping a pill bottle over","template":"Tipping [something] over","placeholders":["a pill bottle"]}, +{"id":"65258","label":"showing a box on top of the television","template":"Showing [something] on top of [something]","placeholders":["a box","the television"]}, +{"id":"216498","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"96343","label":"putting 2 red spoons onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","red spoons","black pouch"]}, +{"id":"128109","label":"showing that potato chips is inside the pack","template":"Showing that [something] is inside [something]","placeholders":["potato chips","the pack"]}, +{"id":"136608","label":"spinning deodrant that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["deodrant"]}, +{"id":"109513","label":"uncovering dvd disk","template":"Uncovering [something]","placeholders":["dvd disk"]}, +{"id":"42623","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"218883","label":"bending raw turmeric until it breaks","template":"Bending [something] until it breaks","placeholders":["raw turmeric"]}, +{"id":"45856","label":"failing to put shoe into jar because shoe does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["shoe","jar","shoe"]}, +{"id":"25037","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"66153","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"200413","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"150037","label":"turning the camera right while filming earphone","template":"Turning the camera right while filming [something]","placeholders":["earphone"]}, +{"id":"47610","label":"covering sunglasses with a scarf","template":"Covering [something] with [something]","placeholders":["sunglasses","a scarf"]}, +{"id":"62408","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"25345","label":"pouring coffee onto an overturned cup","template":"Pouring [something] onto [something]","placeholders":["coffee","an overturned cup"]}, +{"id":"82095","label":"putting a notebook in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a notebook","a cup"]}, +{"id":"129105","label":"pretending to take flashdisk from laptop","template":"Pretending to take [something] from [somewhere]","placeholders":["flashdisk","laptop"]}, +{"id":"16096","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"210291","label":"spilling water onto plant","template":"Spilling [something] onto [something]","placeholders":["water","plant"]}, +{"id":"143203","label":"moving coconunt down","template":"Moving [something] down","placeholders":["coconunt"]}, +{"id":"85082","label":"putting sewing reel onto plastic plate","template":"Putting [something] onto [something]","placeholders":["sewing reel","plastic plate"]}, +{"id":"32948","label":"moving pick and scissor closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pick","scissor"]}, +{"id":"159241","label":"showing pen next to box","template":"Showing [something] next to [something]","placeholders":["pen","box"]}, +{"id":"124750","label":"showing a box on top of a book","template":"Showing [something] on top of [something]","placeholders":["a box","a book"]}, +{"id":"36445","label":"tilting a plate with a candle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a plate","a candle"]}, +{"id":"31003","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"53502","label":"poking a perfume so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a perfume"]}, +{"id":"186103","label":"showing can next to book","template":"Showing [something] next to [something]","placeholders":["can","book"]}, +{"id":"47844","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"211636","label":"holding remote control next to helmet","template":"Holding [something] next to [something]","placeholders":["remote control","helmet"]}, +{"id":"53916","label":"pretending to put box on a surface","template":"Pretending to put [something] on a surface","placeholders":["box"]}, +{"id":"207974","label":"pretending to close small fresh mint without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["small fresh mint"]}, +{"id":"93819","label":"burying worms in wheat bran","template":"Burying [something] in [something]","placeholders":["worms","wheat bran"]}, +{"id":"192125","label":"putting book, mug and ball on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","mug","ball"]}, +{"id":"89852","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"51946","label":"pushing pistachio off of clementine","template":"Pushing [something] off of [something]","placeholders":["pistachio","clementine"]}, +{"id":"10213","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"218945","label":"pushing make up from left to right","template":"Pushing [something] from left to right","placeholders":["make up"]}, +{"id":"121856","label":"sprinkling sugar onto toast","template":"Sprinkling [something] onto [something]","placeholders":["sugar","toast"]}, +{"id":"39969","label":"spinning baby wipes that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["baby wipes"]}, +{"id":"160811","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"19275","label":"failing to put a vape into a usb because connection does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a vape","a usb","connection"]}, +{"id":"192186","label":"pushing glasses so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glasses"]}, +{"id":"130150","label":"tilting block with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["block","box"]}, +{"id":"146213","label":"putting lidded cup underneath container","template":"Putting [something] underneath [something]","placeholders":["lidded cup","container"]}, +{"id":"140618","label":"trying to bend plastic rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plastic rod"]}, +{"id":"15069","label":"squeezing brown sugar bag","template":"Squeezing [something]","placeholders":["brown sugar bag"]}, +{"id":"140304","label":"moving mobile phone down","template":"Moving [something] down","placeholders":["mobile phone"]}, +{"id":"6490","label":"pulling two ends of plastic cover so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["plastic cover"]}, +{"id":"41093","label":"moving jar and jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["jar","jar"]}, +{"id":"202709","label":"putting wooden bowl in front of glass","template":"Putting [something] in front of [something]","placeholders":["wooden bowl","glass"]}, +{"id":"103278","label":"putting pencil next to spiral pad notebook","template":"Putting [something] next to [something]","placeholders":["pencil","spiral pad notebook"]}, +{"id":"124418","label":"pretending to take cosmetic out of plastic box","template":"Pretending to take [something] out of [something]","placeholders":["cosmetic","plastic box"]}, +{"id":"33722","label":"moving hat and shoe so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["hat","shoe"]}, +{"id":"4088","label":"approaching colorful, wooden toy chicken car with your camera","template":"Approaching [something] with your camera","placeholders":["colorful, wooden toy chicken car"]}, +{"id":"198607","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"106253","label":"putting jar onto box","template":"Putting [something] onto [something]","placeholders":["jar","box"]}, +{"id":"142733","label":"putting sponge next to mug","template":"Putting [something] next to [something]","placeholders":["sponge","mug"]}, +{"id":"101651","label":"showing that my pan is empty","template":"Showing that [something] is empty","placeholders":["my pan"]}, +{"id":"3676","label":"touching (without moving) box of left side","template":"Touching (without moving) [part] of [something]","placeholders":["box","left side"]}, +{"id":"195646","label":"putting toy car in front of plastic bowl","template":"Putting [something] in front of [something]","placeholders":["toy car","plastic bowl"]}, +{"id":"102295","label":"holding red pot holder","template":"Holding [something]","placeholders":["red pot holder"]}, +{"id":"116845","label":"putting a tube on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a tube","table"]}, +{"id":"104829","label":"turning the camera downwards while filming iron","template":"Turning the camera downwards while filming [something]","placeholders":["iron"]}, +{"id":"106896","label":"turning the camera upwards while filming pedestal fan","template":"Turning the camera upwards while filming [something]","placeholders":["pedestal fan"]}, +{"id":"182388","label":"putting book and lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["book","lighter"]}, +{"id":"2382","label":"rolling candle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["candle"]}, +{"id":"136509","label":"pouring pure water into into another cup","template":"Pouring [something] into [something]","placeholders":["pure water","into another cup"]}, +{"id":"32117","label":"pulling a lighter from left to right","template":"Pulling [something] from left to right","placeholders":["a lighter"]}, +{"id":"75825","label":"dropping watch onto floor","template":"Dropping [something] onto [something]","placeholders":["watch","floor"]}, +{"id":"139346","label":"poking a stack of dice without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["dice"]}, +{"id":"145073","label":"putting a napkin onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a napkin"]}, +{"id":"43387","label":"putting plastic screwcap behind mug","template":"Putting [something] behind [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"169346","label":"lifting book with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["book","mouse"]}, +{"id":"217321","label":"poking the soap so that it falls over","template":"Poking [something] so that it falls over","placeholders":["the soap"]}, +{"id":"64181","label":"putting saucer underneath teacup","template":"Putting [something] underneath [something]","placeholders":["saucer","teacup"]}, +{"id":"161238","label":"a stuffed bird falling like a rock","template":"[Something] falling like a rock","placeholders":["a stuffed bird"]}, +{"id":"63078","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"103203","label":"throwing cellphone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["cellphone"]}, +{"id":"16756","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"98624","label":"pulling bottle from behind of paint bottle","template":"Pulling [something] from behind of [something]","placeholders":["bottle","paint bottle"]}, +{"id":"26625","label":"putting remote control on a surface","template":"Putting [something] on a surface","placeholders":["remote control"]}, +{"id":"124696","label":"moving box closer to bottle","template":"Moving [something] closer to [something]","placeholders":["box","bottle"]}, +{"id":"20799","label":"pushing legos from left to right","template":"Pushing [something] from left to right","placeholders":["legos"]}, +{"id":"151870","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"25064","label":"holding key behind laptop charger","template":"Holding [something] behind [something]","placeholders":["key","laptop charger"]}, +{"id":"214787","label":"throwing lighter against bed","template":"Throwing [something] against [something]","placeholders":["lighter","bed"]}, +{"id":"52755","label":"turning the camera right while filming black hat","template":"Turning the camera right while filming [something]","placeholders":["black hat"]}, +{"id":"170363","label":"picking a hat up","template":"Picking [something] up","placeholders":["a hat"]}, +{"id":"210945","label":"pretending to throw coaster","template":"Pretending to throw [something]","placeholders":["coaster"]}, +{"id":"171435","label":"taking taking one of the monkeys from the table","template":"Taking [one of many similar things on the table]","placeholders":["taking one of the monkeys from the table"]}, +{"id":"124183","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"203983","label":"rake falling like a rock","template":"[Something] falling like a rock","placeholders":["rake"]}, +{"id":"89177","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"75123","label":"folding baby blanket","template":"Folding [something]","placeholders":["baby blanket"]}, +{"id":"201325","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"72830","label":"showing that sand is inside glass","template":"Showing that [something] is inside [something]","placeholders":["sand","glass"]}, +{"id":"53135","label":"poking perfume so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["perfume"]}, +{"id":"68815","label":"burying candle in dirt","template":"Burying [something] in [something]","placeholders":["candle","dirt"]}, +{"id":"120309","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"209322","label":"stuffing cloth into cup","template":"Stuffing [something] into [something]","placeholders":["cloth","cup"]}, +{"id":"49066","label":"turning a stuffed toy upside down","template":"Turning [something] upside down","placeholders":["a stuffed toy"]}, +{"id":"204564","label":"throwing back pack onto a surface","template":"Throwing [something] onto a surface","placeholders":["back pack"]}, +{"id":"83375","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"19173","label":"uncovering brush","template":"Uncovering [something]","placeholders":["brush"]}, +{"id":"157988","label":"pulling pink toothbrush case from left to right","template":"Pulling [something] from left to right","placeholders":["pink toothbrush case"]}, +{"id":"184393","label":"covering keys with a towel","template":"Covering [something] with [something]","placeholders":["keys","a towel"]}, +{"id":"166206","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"178255","label":"moving toy away from block","template":"Moving [something] away from [something]","placeholders":["toy","block"]}, +{"id":"83026","label":"stuffing sheets into box","template":"Stuffing [something] into [something]","placeholders":["sheets","box"]}, +{"id":"59986","label":"pulling remote control from right to left","template":"Pulling [something] from right to left","placeholders":["remote control"]}, +{"id":"157769","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"106014","label":"lifting pocket up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["pocket"]}, +{"id":"6912","label":"lifting mirror with pen on it","template":"Lifting [something] with [something] on it","placeholders":["mirror","pen"]}, +{"id":"86526","label":"removing board, revealing basket behind","template":"Removing [something], revealing [something] behind","placeholders":["board","basket"]}, +{"id":"97759","label":"putting 2 pencil sharpners onto blue spectacle box","template":"Putting [number of] [something] onto [something]","placeholders":["2","pencil sharpners","blue spectacle box"]}, +{"id":"14280","label":"pretending to put a knife next to a mug","template":"Pretending to put [something] next to [something]","placeholders":["a knife","a mug"]}, +{"id":"166814","label":"moving white king and black king closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["white king","black king"]}, +{"id":"45656","label":"turning the camera left while filming tea box","template":"Turning the camera left while filming [something]","placeholders":["tea box"]}, +{"id":"157430","label":"taking ruler","template":"Taking [one of many similar things on the table]","placeholders":["ruler"]}, +{"id":"81735","label":"showing a match next to a flashlight","template":"Showing [something] next to [something]","placeholders":["a match","a flashlight"]}, +{"id":"146834","label":"putting glasses next to a bottle","template":"Putting [something] next to [something]","placeholders":["glasses","a bottle"]}, +{"id":"182226","label":"putting silverware","template":"Putting [something similar to other things that are already on the table]","placeholders":["silverware"]}, +{"id":"9352","label":"spreading lotion onto a hand","template":"Spreading [something] onto [something]","placeholders":["lotion","a hand"]}, +{"id":"120474","label":"pouring water out of glass cup","template":"Pouring [something] out of [something]","placeholders":["water","glass cup"]}, +{"id":"93960","label":"pretending to put cellphone on a surface","template":"Pretending to put [something] on a surface","placeholders":["cellphone"]}, +{"id":"139430","label":"folding a pant","template":"Folding [something]","placeholders":["a pant"]}, +{"id":"3507","label":"rolling an orange on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an orange"]}, +{"id":"110832","label":"attaching dog collar to door handle","template":"Attaching [something] to [something]","placeholders":["dog collar","door handle"]}, +{"id":"139064","label":"covering wood piece with a basket","template":"Covering [something] with [something]","placeholders":["wood piece","a basket"]}, +{"id":"23367","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"219287","label":"pulling two ends of a rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber band"]}, +{"id":"148960","label":"tipping pencil holder over","template":"Tipping [something] over","placeholders":["pencil holder"]}, +{"id":"23341","label":"moving a book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a book"]}, +{"id":"65830","label":"putting hair tie, ruler and cutlery on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hair tie","ruler","cutlery"]}, +{"id":"113592","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"66977","label":"tipping can over","template":"Tipping [something] over","placeholders":["can"]}, +{"id":"29285","label":"spinning remote controller that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote controller"]}, +{"id":"107115","label":"dropping a lid onto a glass","template":"Dropping [something] onto [something]","placeholders":["a lid","a glass"]}, +{"id":"76152","label":"pushing stuffed animal from left to right","template":"Pushing [something] from left to right","placeholders":["stuffed animal"]}, +{"id":"126874","label":"removing basket, revealing cellphone behind","template":"Removing [something], revealing [something] behind","placeholders":["basket","cellphone"]}, +{"id":"104394","label":"showing that coffee cup is empty","template":"Showing that [something] is empty","placeholders":["coffee cup"]}, +{"id":"101623","label":"moving toy tractor across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["toy tractor"]}, +{"id":"48500","label":"pushing pencil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pencil"]}, +{"id":"214974","label":"moving cup and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","cup"]}, +{"id":"121704","label":"putting glass onto glass","template":"Putting [something] onto [something]","placeholders":["glass","glass"]}, +{"id":"38851","label":"pretending to be tearing cotton towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cotton towel"]}, +{"id":"55717","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"189578","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"116310","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"163368","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"129811","label":"pushing ring from right to left","template":"Pushing [something] from right to left","placeholders":["ring"]}, +{"id":"50202","label":"showing a pencil on top of a notebook","template":"Showing [something] on top of [something]","placeholders":["a pencil","a notebook"]}, +{"id":"111999","label":"pretending or failing to wipe soap off of a wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["soap","a wall"]}, +{"id":"24505","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"196483","label":"letting water bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["water bottle"]}, +{"id":"107521","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"189987","label":"putting punching machine, spectacle and cigarette lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["punching machine","spectacle","cigarette lighter"]}, +{"id":"197427","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"12080","label":"tipping a toilet roll over","template":"Tipping [something] over","placeholders":["a toilet roll"]}, +{"id":"183010","label":"holding lighter behind foil ball","template":"Holding [something] behind [something]","placeholders":["lighter","foil ball"]}, +{"id":"184324","label":"dropping bear into chair","template":"Dropping [something] into [something]","placeholders":["bear","chair"]}, +{"id":"23071","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"141188","label":"holding pink water bottle","template":"Holding [something]","placeholders":["pink water bottle"]}, +{"id":"65140","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"175095","label":"pretending to turn black umbrella upside down","template":"Pretending to turn [something] upside down","placeholders":["black umbrella"]}, +{"id":"128335","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"91995","label":"plugging charger into power outlet","template":"Plugging [something] into [something]","placeholders":["charger","power outlet"]}, +{"id":"190833","label":"taking plate out of pile","template":"Taking [something] out of [something]","placeholders":["plate","pile"]}, +{"id":"52669","label":"stuffing tissue paper into plastic lid","template":"Stuffing [something] into [something]","placeholders":["tissue paper","plastic lid"]}, +{"id":"199199","label":"touching (without moving) an ear of a soft toy cat","template":"Touching (without moving) [part] of [something]","placeholders":["an ear","a soft toy cat"]}, +{"id":"32221","label":"pretending to put earphone on a surface","template":"Pretending to put [something] on a surface","placeholders":["earphone"]}, +{"id":"10368","label":"moving yellow ball up","template":"Moving [something] up","placeholders":["yellow ball"]}, +{"id":"190881","label":"showing people playing in the beach to the camera","template":"Showing [something] to the camera","placeholders":["people playing in the beach"]}, +{"id":"131257","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"182488","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"77942","label":"spilling water next to a pen","template":"Spilling [something] next to [something]","placeholders":["water","a pen"]}, +{"id":"186728","label":"putting an apple on a surface","template":"Putting [something] on a surface","placeholders":["an apple"]}, +{"id":"199417","label":"pretending to put keys into bag","template":"Pretending to put [something] into [something]","placeholders":["keys","bag"]}, +{"id":"52541","label":"putting hair brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["hair brush"]}, +{"id":"182589","label":"turning pencil box upside down","template":"Turning [something] upside down","placeholders":["pencil box"]}, +{"id":"134989","label":"pushing a book from left to right","template":"Pushing [something] from left to right","placeholders":["a book"]}, +{"id":"58095","label":"holding compact disc over mirror","template":"Holding [something] over [something]","placeholders":["compact disc","mirror"]}, +{"id":"59676","label":"pushing pc mice so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pc mice"]}, +{"id":"171828","label":"approaching bismuth with your camera","template":"Approaching [something] with your camera","placeholders":["bismuth"]}, +{"id":"63668","label":"putting handkerchief into front storage kneeroom","template":"Putting [something] into [something]","placeholders":["handkerchief","front storage kneeroom"]}, +{"id":"151660","label":"stacking 4 rings","template":"Stacking [number of] [something]","placeholders":["4","rings"]}, +{"id":"188663","label":"showing pen behind hair gum","template":"Showing [something] behind [something]","placeholders":["pen","hair gum"]}, +{"id":"153448","label":"twisting fabric","template":"Twisting [something]","placeholders":["fabric"]}, +{"id":"204714","label":"soap falling like a rock","template":"[Something] falling like a rock","placeholders":["soap"]}, +{"id":"88459","label":"putting pebble, badge and toy white car on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pebble","badge","toy white car"]}, +{"id":"68170","label":"hitting bucket with knife","template":"Hitting [something] with [something]","placeholders":["bucket","knife"]}, +{"id":"3275","label":"hitting a book with a remote","template":"Hitting [something] with [something]","placeholders":["a book","a remote"]}, +{"id":"25161","label":"dropping fruits into a bowl","template":"Dropping [something] into [something]","placeholders":["fruits","a bowl"]}, +{"id":"15037","label":"stuffing tissue into jar","template":"Stuffing [something] into [something]","placeholders":["tissue","jar"]}, +{"id":"150935","label":"piling cards up","template":"Piling [something] up","placeholders":["cards"]}, +{"id":"92970","label":"lifting a wallet with a coin on it","template":"Lifting [something] with [something] on it","placeholders":["a wallet","a coin"]}, +{"id":"171956","label":"showing padlock next to glass jar","template":"Showing [something] next to [something]","placeholders":["padlock","glass jar"]}, +{"id":"28673","label":"pouring water out of glass","template":"Pouring [something] out of [something]","placeholders":["water","glass"]}, +{"id":"13887","label":"pretending to pick plant up","template":"Pretending to pick [something] up","placeholders":["plant"]}, +{"id":"98959","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"193690","label":"rolling doll on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["doll"]}, +{"id":"208574","label":"turning the camera right while filming lighter","template":"Turning the camera right while filming [something]","placeholders":["lighter"]}, +{"id":"58865","label":"pulling ipod from left to right","template":"Pulling [something] from left to right","placeholders":["ipod"]}, +{"id":"98958","label":"holding mouse in front of ipad","template":"Holding [something] in front of [something]","placeholders":["mouse","ipad"]}, +{"id":"11164","label":"yellow flower(feather) falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["yellow flower(feather)"]}, +{"id":"125096","label":"pretending to pick scissors up","template":"Pretending to pick [something] up","placeholders":["scissors"]}, +{"id":"158075","label":"spinning a lint roller that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lint roller"]}, +{"id":"37011","label":"turning a smartphone upside down","template":"Turning [something] upside down","placeholders":["a smartphone"]}, +{"id":"159097","label":"laying a plastic packaging on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a plastic packaging"]}, +{"id":"208829","label":"spilling milk onto worktop","template":"Spilling [something] onto [something]","placeholders":["milk","worktop"]}, +{"id":"20089","label":"putting marker into cap","template":"Putting [something] into [something]","placeholders":["marker","cap"]}, +{"id":"216132","label":"throwing goggles against wall","template":"Throwing [something] against [something]","placeholders":["goggles","wall"]}, +{"id":"116066","label":"poking a minion toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a minion toy"]}, +{"id":"7629","label":"laying cleaning wipes on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cleaning wipes"]}, +{"id":"55897","label":"pretending to throw comb","template":"Pretending to throw [something]","placeholders":["comb"]}, +{"id":"43206","label":"putting a travel magazine","template":"Putting [something similar to other things that are already on the table]","placeholders":["a travel magazine"]}, +{"id":"51217","label":"poking a card reader so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a card reader"]}, +{"id":"75541","label":"a toy car falling like a rock","template":"[Something] falling like a rock","placeholders":["a toy car"]}, +{"id":"150872","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"204704","label":"throwing black pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["black pencil"]}, +{"id":"34985","label":"pretending to squeeze a smartphone","template":"Pretending to squeeze [something]","placeholders":["a smartphone"]}, +{"id":"145529","label":"holding a plate behind a teapot","template":"Holding [something] behind [something]","placeholders":["a plate","a teapot"]}, +{"id":"106360","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"179908","label":"putting juice bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["juice bottles"]}, +{"id":"52921","label":"pouring water into sink","template":"Pouring [something] into [something]","placeholders":["water","sink"]}, +{"id":"40317","label":"covering bucket with towel","template":"Covering [something] with [something]","placeholders":["bucket","towel"]}, +{"id":"135269","label":"taking pasta out of plastic jar","template":"Taking [something] out of [something]","placeholders":["pasta","plastic jar"]}, +{"id":"114565","label":"tipping glass bottle with liquid over, so liquid falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["glass bottle","liquid","liquid"]}, +{"id":"164250","label":"turning the camera left while filming glass","template":"Turning the camera left while filming [something]","placeholders":["glass"]}, +{"id":"53661","label":"throwing deodorant in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["deodorant"]}, +{"id":"153325","label":"putting a wallet behind a bag","template":"Putting [something] behind [something]","placeholders":["a wallet","a bag"]}, +{"id":"73066","label":"plugging a usb cable into a power bank but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb cable","a power bank"]}, +{"id":"87379","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"40872","label":"pulling black pouch bag from left to right","template":"Pulling [something] from left to right","placeholders":["black pouch bag"]}, +{"id":"47805","label":"putting one lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["one lighter"]}, +{"id":"11541","label":"holding key over cup","template":"Holding [something] over [something]","placeholders":["key","cup"]}, +{"id":"36388","label":"lifting a surface with letter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["letter"]}, +{"id":"196898","label":"moving spectacles up","template":"Moving [something] up","placeholders":["spectacles"]}, +{"id":"152638","label":"moving red hair band and white toy car away from each other","template":"Moving [something] and [something] away from each other","placeholders":["red hair band","white toy car"]}, +{"id":"123285","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"60601","label":"spilling water onto a box","template":"Spilling [something] onto [something]","placeholders":["water","a box"]}, +{"id":"203627","label":"moving soda and box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["soda","box"]}, +{"id":"216439","label":"pretending to put pendrive into mug","template":"Pretending to put [something] into [something]","placeholders":["pendrive","mug"]}, +{"id":"146838","label":"showing that pot is empty","template":"Showing that [something] is empty","placeholders":["pot"]}, +{"id":"44658","label":"putting cone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cone"]}, +{"id":"78199","label":"taking a battery","template":"Taking [one of many similar things on the table]","placeholders":["a battery"]}, +{"id":"195177","label":"pushing battery from right to left","template":"Pushing [something] from right to left","placeholders":["battery"]}, +{"id":"87244","label":"moving marker and paper clip holder away from each other","template":"Moving [something] and [something] away from each other","placeholders":["marker","paper clip holder"]}, +{"id":"80557","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"207110","label":"spilling water next to a bottle top","template":"Spilling [something] next to [something]","placeholders":["water","a bottle top"]}, +{"id":"62563","label":"letting toy car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy car"]}, +{"id":"19490","label":"tilting folder with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","marker"]}, +{"id":"85937","label":"stacking 3 blushes in their makeup boxes","template":"Stacking [number of] [something]","placeholders":["3","blushes in their makeup boxes"]}, +{"id":"40806","label":"turning the camera upwards while filming adaptor","template":"Turning the camera upwards while filming [something]","placeholders":["adaptor"]}, +{"id":"80824","label":"turning a plate upside down","template":"Turning [something] upside down","placeholders":["a plate"]}, +{"id":"163580","label":"showing a smartphone behind a keyboard","template":"Showing [something] behind [something]","placeholders":["a smartphone","a keyboard"]}, +{"id":"169712","label":"showing keyboard behind helmet","template":"Showing [something] behind [something]","placeholders":["keyboard","helmet"]}, +{"id":"108465","label":"putting lighter next to cup","template":"Putting [something] next to [something]","placeholders":["lighter","cup"]}, +{"id":"118843","label":"putting mug in front of crayon","template":"Putting [something] in front of [something]","placeholders":["mug","crayon"]}, +{"id":"98512","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"185213","label":"spreading sauce onto roti","template":"Spreading [something] onto [something]","placeholders":["sauce","roti"]}, +{"id":"57991","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"176810","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"150560","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"157977","label":"moving white board clip away from red spoon","template":"Moving [something] away from [something]","placeholders":["white board clip","red spoon"]}, +{"id":"88228","label":"holding a teaspoon in front of a jar","template":"Holding [something] in front of [something]","placeholders":["a teaspoon","a jar"]}, +{"id":"92003","label":"moving glas and glas away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glas","glas"]}, +{"id":"108541","label":"attaching cape to bottle","template":"Attaching [something] to [something]","placeholders":["cape","bottle"]}, +{"id":"166449","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"22763","label":"pretending to squeeze something","template":"Pretending to squeeze [something]","placeholders":["something"]}, +{"id":"61946","label":"hitting a bottle with a comb","template":"Hitting [something] with [something]","placeholders":["a bottle","a comb"]}, +{"id":"51951","label":"approaching grill with your camera","template":"Approaching [something] with your camera","placeholders":["grill"]}, +{"id":"185560","label":"hitting bottle with pen","template":"Hitting [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"22302","label":"holding a plant in front of a box","template":"Holding [something] in front of [something]","placeholders":["a plant","a box"]}, +{"id":"104133","label":"showing that a pink ball is inside the milk jar","template":"Showing that [something] is inside [something]","placeholders":["a pink ball","the milk jar"]}, +{"id":"170009","label":"bending spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["spoon"]}, +{"id":"102140","label":"putting ball into bowl","template":"Putting [something] into [something]","placeholders":["ball","bowl"]}, +{"id":"26736","label":"throwing puzzle piece in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["puzzle piece"]}, +{"id":"98147","label":"moving a pen away from a battery","template":"Moving [something] away from [something]","placeholders":["a pen","a battery"]}, +{"id":"185266","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"94934","label":"holding sunglasses in front of package","template":"Holding [something] in front of [something]","placeholders":["sunglasses","package"]}, +{"id":"95721","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"157914","label":"burying plastic spoon in salt","template":"Burying [something] in [something]","placeholders":["plastic spoon","salt"]}, +{"id":"158767","label":"pushing romote controller so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["romote controller"]}, +{"id":"88179","label":"holding a glass next to a glass","template":"Holding [something] next to [something]","placeholders":["a glass","a glass"]}, +{"id":"204297","label":"attaching a spoon to a book","template":"Attaching [something] to [something]","placeholders":["a spoon","a book"]}, +{"id":"76590","label":"turning pink water bottle upside down","template":"Turning [something] upside down","placeholders":["pink water bottle"]}, +{"id":"64850","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"15685","label":"moving eye kajal closer to pendrive","template":"Moving [something] closer to [something]","placeholders":["eye kajal","pendrive"]}, +{"id":"214573","label":"turning the camera left while filming a paint bottle","template":"Turning the camera left while filming [something]","placeholders":["a paint bottle"]}, +{"id":"183430","label":"letting something roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["something"]}, +{"id":"173544","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"26875","label":"letting a scotch roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a scotch roll"]}, +{"id":"208792","label":"folding purse","template":"Folding [something]","placeholders":["purse"]}, +{"id":"218594","label":"pushing pumpkin cookie from left to right","template":"Pushing [something] from left to right","placeholders":["pumpkin cookie"]}, +{"id":"141070","label":"showing a cup behind a fan","template":"Showing [something] behind [something]","placeholders":["a cup","a fan"]}, +{"id":"52193","label":"pretending to put cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["cup"]}, +{"id":"91414","label":"rolling rolling plastic spray on a flat surface on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling plastic spray on a flat surface"]}, +{"id":"134153","label":"holding a marker in front of a pencil case","template":"Holding [something] in front of [something]","placeholders":["a marker","a pencil case"]}, +{"id":"186844","label":"throwing matchbox onto a surface","template":"Throwing [something] onto a surface","placeholders":["matchbox"]}, +{"id":"99929","label":"poking waterbottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["waterbottle"]}, +{"id":"172077","label":"dropping box behind trash can","template":"Dropping [something] behind [something]","placeholders":["box","trash can"]}, +{"id":"160784","label":"taking a toy car","template":"Taking [one of many similar things on the table]","placeholders":["a toy car"]}, +{"id":"40758","label":"dropping paper onto table","template":"Dropping [something] onto [something]","placeholders":["paper","table"]}, +{"id":"106886","label":"putting remote control that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["remote control"]}, +{"id":"211109","label":"turning the camera upwards while filming chair","template":"Turning the camera upwards while filming [something]","placeholders":["chair"]}, +{"id":"140946","label":"turning an espadrille upside down","template":"Turning [something] upside down","placeholders":["an espadrille"]}, +{"id":"29922","label":"spilling water next to a scooter","template":"Spilling [something] next to [something]","placeholders":["water","a scooter"]}, +{"id":"120624","label":"pushing ornament so it spins","template":"Pushing [something] so it spins","placeholders":["ornament"]}, +{"id":"184373","label":"turning the camera right while filming water tap","template":"Turning the camera right while filming [something]","placeholders":["water tap"]}, +{"id":"131392","label":"turning the camera left while filming brown bracelet","template":"Turning the camera left while filming [something]","placeholders":["brown bracelet"]}, +{"id":"208367","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"66213","label":"bending paperclip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paperclip"]}, +{"id":"216525","label":"stuffing book into bag","template":"Stuffing [something] into [something]","placeholders":["book","bag"]}, +{"id":"86136","label":"twisting tie","template":"Twisting [something]","placeholders":["tie"]}, +{"id":"158341","label":"pushing bottle of water from right to left","template":"Pushing [something] from right to left","placeholders":["bottle of water"]}, +{"id":"159873","label":"poking battery so that it falls over","template":"Poking [something] so that it falls over","placeholders":["battery"]}, +{"id":"48978","label":"turning the camera upwards while filming induction cooker","template":"Turning the camera upwards while filming [something]","placeholders":["induction cooker"]}, +{"id":"159309","label":"moving something and something closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["something","something"]}, +{"id":"61007","label":"turning candle upside down","template":"Turning [something] upside down","placeholders":["candle"]}, +{"id":"15753","label":"a sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sheet of paper"]}, +{"id":"8561","label":"pushing helmet from left to right","template":"Pushing [something] from left to right","placeholders":["helmet"]}, +{"id":"948","label":"trying to bend a stapler so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a stapler"]}, +{"id":"206622","label":"pushing empty milk mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["empty milk mug"]}, +{"id":"621","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"195644","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"48045","label":"lifting folder with phone on it","template":"Lifting [something] with [something] on it","placeholders":["folder","phone"]}, +{"id":"191905","label":"poking a hole into dough","template":"Poking a hole into [something soft]","placeholders":["dough"]}, +{"id":"19903","label":"letting a bottle cap roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a bottle cap"]}, +{"id":"157054","label":"pretending to close wooden box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["wooden box"]}, +{"id":"15634","label":"stacking 2 glass","template":"Stacking [number of] [something]","placeholders":["2","glass"]}, +{"id":"108250","label":"poking picture so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["picture"]}, +{"id":"135871","label":"covering a tablet with cap","template":"Covering [something] with [something]","placeholders":["a tablet","cap"]}, +{"id":"198251","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"10514","label":"taking sun glass from car seat","template":"Taking [something] from [somewhere]","placeholders":["sun glass","car seat"]}, +{"id":"175148","label":"touching (without moving) a doorknob of a door","template":"Touching (without moving) [part] of [something]","placeholders":["a doorknob","a door"]}, +{"id":"36064","label":"pretending to take ball from table","template":"Pretending to take [something] from [somewhere]","placeholders":["ball","table"]}, +{"id":"182490","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"148274","label":"pulling two ends of leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaf"]}, +{"id":"188343","label":"piling dirty clothes up","template":"Piling [something] up","placeholders":["dirty clothes"]}, +{"id":"183249","label":"holding a smartphone","template":"Holding [something]","placeholders":["a smartphone"]}, +{"id":"54216","label":"approaching pen holder with your camera","template":"Approaching [something] with your camera","placeholders":["pen holder"]}, +{"id":"30813","label":"throwing a jar in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a jar"]}, +{"id":"135409","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"133032","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"37393","label":"moving lever of wine key","template":"Moving [part] of [something]","placeholders":["lever","wine key"]}, +{"id":"3775","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"152407","label":"moving cap and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cap","box"]}, +{"id":"37641","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"215477","label":"holding a lid in front of a pot","template":"Holding [something] in front of [something]","placeholders":["a lid","a pot"]}, +{"id":"151402","label":"pretending to take magnet out of refrigerator","template":"Pretending to take [something] out of [something]","placeholders":["magnet","refrigerator"]}, +{"id":"7232","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"189047","label":"throwing keys","template":"Throwing [something]","placeholders":["keys"]}, +{"id":"188097","label":"covering dedorant with tablet","template":"Covering [something] with [something]","placeholders":["dedorant","tablet"]}, +{"id":"202431","label":"throwing can in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["can"]}, +{"id":"12699","label":"pretending to throw a highlighter","template":"Pretending to throw [something]","placeholders":["a highlighter"]}, +{"id":"141433","label":"pretending or failing to wipe paint off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","counter"]}, +{"id":"101083","label":"dropping a box next to a coin","template":"Dropping [something] next to [something]","placeholders":["a box","a coin"]}, +{"id":"64543","label":"moving book closer to chair","template":"Moving [something] closer to [something]","placeholders":["book","chair"]}, +{"id":"141287","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"172379","label":"moving lip bam away from pen","template":"Moving [something] away from [something]","placeholders":["lip bam","pen"]}, +{"id":"140845","label":"turning the camera right while filming indoor plant","template":"Turning the camera right while filming [something]","placeholders":["indoor plant"]}, +{"id":"51125","label":"spilling water onto floor","template":"Spilling [something] onto [something]","placeholders":["water","floor"]}, +{"id":"67849","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191360","label":"holding a pen next to a pencil case","template":"Holding [something] next to [something]","placeholders":["a pen","a pencil case"]}, +{"id":"23997","label":"lifting up one end of pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pen"]}, +{"id":"21199","label":"an orange falling like a rock","template":"[Something] falling like a rock","placeholders":["an orange"]}, +{"id":"153291","label":"pushing container lid from right to left","template":"Pushing [something] from right to left","placeholders":["container lid"]}, +{"id":"18554","label":"tv remote falling like a rock","template":"[Something] falling like a rock","placeholders":["tv remote"]}, +{"id":"130721","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"123168","label":"moving away from ring with your camera","template":"Moving away from [something] with your camera","placeholders":["ring"]}, +{"id":"40445","label":"putting a perfume bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a perfume bottle"]}, +{"id":"49084","label":"squeezing a pencil case","template":"Squeezing [something]","placeholders":["a pencil case"]}, +{"id":"71971","label":"moving away from a hairbrush with your camera","template":"Moving away from [something] with your camera","placeholders":["a hairbrush"]}, +{"id":"57609","label":"cigarettes falling like a rock","template":"[Something] falling like a rock","placeholders":["cigarettes"]}, +{"id":"144277","label":"lifting up one end of pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil"]}, +{"id":"58925","label":"unfolding a kitchen towel","template":"Unfolding [something]","placeholders":["a kitchen towel"]}, +{"id":"26080","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"184409","label":"car colliding with car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["car","car"]}, +{"id":"149523","label":"showing pot to the camera","template":"Showing [something] to the camera","placeholders":["pot"]}, +{"id":"17491","label":"plugging cellphone cord into outlet strip","template":"Plugging [something] into [something]","placeholders":["cellphone cord","outlet strip"]}, +{"id":"214465","label":"putting slime into tuperware","template":"Putting [something] into [something]","placeholders":["slime","tuperware"]}, +{"id":"73785","label":"putting box on the edge of counter so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["box","counter"]}, +{"id":"6545","label":"pretending to put paper into a cup","template":"Pretending to put [something] into [something]","placeholders":["paper","a cup"]}, +{"id":"151780","label":"putting wooden piece onto leaf of a plant which cannot support it so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["wooden piece","leaf of a plant which cannot support it"]}, +{"id":"123895","label":"moving away from wall light with your camera","template":"Moving away from [something] with your camera","placeholders":["wall light"]}, +{"id":"84718","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"97818","label":"uncovering plastic jar","template":"Uncovering [something]","placeholders":["plastic jar"]}, +{"id":"48465","label":"lifting a compact disk with a remote on it","template":"Lifting [something] with [something] on it","placeholders":["a compact disk","a remote"]}, +{"id":"149500","label":"poking a can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a can"]}, +{"id":"188693","label":"pushing cap from left to right","template":"Pushing [something] from left to right","placeholders":["cap"]}, +{"id":"138150","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"200654","label":"dropping a phone behind a toy car","template":"Dropping [something] behind [something]","placeholders":["a phone","a toy car"]}, +{"id":"159813","label":"pushing green chalk so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["green chalk"]}, +{"id":"52682","label":"plugging earphone into earphone jack","template":"Plugging [something] into [something]","placeholders":["earphone","earphone jack"]}, +{"id":"119450","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"65937","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"206241","label":"plugging charging cable into portable game device but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charging cable","portable game device"]}, +{"id":"121646","label":"dropping plastic container onto bucket","template":"Dropping [something] onto [something]","placeholders":["plastic container","bucket"]}, +{"id":"175614","label":"pretending to put book next to bag","template":"Pretending to put [something] next to [something]","placeholders":["book","bag"]}, +{"id":"49034","label":"putting brush on a surface","template":"Putting [something] on a surface","placeholders":["brush"]}, +{"id":"197890","label":"holding a pen over a speaker","template":"Holding [something] over [something]","placeholders":["a pen","a speaker"]}, +{"id":"102863","label":"attaching tape to paper","template":"Attaching [something] to [something]","placeholders":["tape","paper"]}, +{"id":"81053","label":"moving mouse closer to keyboard","template":"Moving [something] closer to [something]","placeholders":["mouse","keyboard"]}, +{"id":"217458","label":"pushing a tape so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a tape"]}, +{"id":"182704","label":"stacking 2 boxes","template":"Stacking [number of] [something]","placeholders":["2","boxes"]}, +{"id":"115924","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"172015","label":"pouring gravy into container","template":"Pouring [something] into [something]","placeholders":["gravy","container"]}, +{"id":"204232","label":"pretending to turn bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["bowl"]}, +{"id":"38158","label":"pulling diper out of diper pack","template":"Pulling [something] out of [something]","placeholders":["diper","diper pack"]}, +{"id":"200020","label":"stuffing ropes into bag","template":"Stuffing [something] into [something]","placeholders":["ropes","bag"]}, +{"id":"183363","label":"bending tissue until it breaks","template":"Bending [something] until it breaks","placeholders":["tissue"]}, +{"id":"139316","label":"spinning tape that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["tape"]}, +{"id":"18623","label":"rolling clementine on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["clementine"]}, +{"id":"210220","label":"taking one coin","template":"Taking [one of many similar things on the table]","placeholders":["one coin"]}, +{"id":"83024","label":"showing a tissue box behind a mug","template":"Showing [something] behind [something]","placeholders":["a tissue box","a mug"]}, +{"id":"50664","label":"tipping popcorn bucket over","template":"Tipping [something] over","placeholders":["popcorn bucket"]}, +{"id":"58550","label":"moving pencil and snap off blade away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pencil","snap off blade"]}, +{"id":"78326","label":"pushing a balloon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a balloon"]}, +{"id":"208749","label":"moving lever of faucet","template":"Moving [part] of [something]","placeholders":["lever","faucet"]}, +{"id":"5871","label":"wiping water off of mobile","template":"Wiping [something] off of [something]","placeholders":["water","mobile"]}, +{"id":"43923","label":"putting a marker and scissors on the table","template":"Putting [something] and [something] on the table","placeholders":["a marker","scissors"]}, +{"id":"176323","label":"plugging an audio cable into headphones","template":"Plugging [something] into [something]","placeholders":["an audio cable","headphones"]}, +{"id":"32648","label":"pretending to put a block of paper on a surface","template":"Pretending to put [something] on a surface","placeholders":["a block of paper"]}, +{"id":"69489","label":"attaching brush to vacuum hose","template":"Attaching [something] to [something]","placeholders":["brush","vacuum hose"]}, +{"id":"55757","label":"touching (without moving) button of controller","template":"Touching (without moving) [part] of [something]","placeholders":["button","controller"]}, +{"id":"61763","label":"holding remote over table","template":"Holding [something] over [something]","placeholders":["remote","table"]}, +{"id":"212982","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"43313","label":"stacking 3 notebooks","template":"Stacking [number of] [something]","placeholders":["3","notebooks"]}, +{"id":"37495","label":"pouring water out of waterbottle","template":"Pouring [something] out of [something]","placeholders":["water","waterbottle"]}, +{"id":"19827","label":"pretending to pick ball up","template":"Pretending to pick [something] up","placeholders":["ball"]}, +{"id":"120100","label":"showing total station survey instrument to the camera","template":"Showing [something] to the camera","placeholders":["total station survey instrument"]}, +{"id":"109010","label":"trying to bend scissor so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissor"]}, +{"id":"116421","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"92362","label":"putting wood onto paper so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["wood","paper"]}, +{"id":"154650","label":"brush falling like a rock","template":"[Something] falling like a rock","placeholders":["brush"]}, +{"id":"147466","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"179064","label":"putting a marker into a pencil case","template":"Putting [something] into [something]","placeholders":["a marker","a pencil case"]}, +{"id":"41130","label":"covering a stuffed rabbit with a blanket","template":"Covering [something] with [something]","placeholders":["a stuffed rabbit","a blanket"]}, +{"id":"103242","label":"tearing paper ticket into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper ticket"]}, +{"id":"171245","label":"moving remote away from remote","template":"Moving [something] away from [something]","placeholders":["remote","remote"]}, +{"id":"204515","label":"putting putting a figure of monkey to other monkey figures on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["putting a figure of monkey to other monkey figures on the table"]}, +{"id":"215766","label":"tipping a tv table over","template":"Tipping [something] over","placeholders":["a tv table"]}, +{"id":"176005","label":"lifting plate up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plate"]}, +{"id":"150752","label":"pushing marker from right to left","template":"Pushing [something] from right to left","placeholders":["marker"]}, +{"id":"175664","label":"folding a currency note","template":"Folding [something]","placeholders":["a currency note"]}, +{"id":"216301","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"57122","label":"pushing coin purse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["coin purse"]}, +{"id":"155568","label":"sprinkling cheese onto bread","template":"Sprinkling [something] onto [something]","placeholders":["cheese","bread"]}, +{"id":"202101","label":"putting drinking bottle behind plastic cup","template":"Putting [something] behind [something]","placeholders":["drinking bottle","plastic cup"]}, +{"id":"117338","label":"pretending to put cup next to towel","template":"Pretending to put [something] next to [something]","placeholders":["cup","towel"]}, +{"id":"83189","label":"wiping soda off of a counter","template":"Wiping [something] off of [something]","placeholders":["soda","a counter"]}, +{"id":"215220","label":"folding folding","template":"Folding [something]","placeholders":["folding"]}, +{"id":"32897","label":"plugging juiccer into electric socket","template":"Plugging [something] into [something]","placeholders":["juiccer","electric socket"]}, +{"id":"134534","label":"folding pamphlet","template":"Folding [something]","placeholders":["pamphlet"]}, +{"id":"39217","label":"poking tape so that it spins around","template":"Poking [something] so that it spins around","placeholders":["tape"]}, +{"id":"54664","label":"dropping ball into box","template":"Dropping [something] into [something]","placeholders":["ball","box"]}, +{"id":"7568","label":"attaching magnet to bero","template":"Attaching [something] to [something]","placeholders":["magnet","bero"]}, +{"id":"130272","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"100157","label":"pouring water onto waterbottle","template":"Pouring [something] onto [something]","placeholders":["water","waterbottle"]}, +{"id":"79396","label":"showing pen on top of ipad","template":"Showing [something] on top of [something]","placeholders":["pen","ipad"]}, +{"id":"37069","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"186085","label":"pushing a pin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pin"]}, +{"id":"207801","label":"putting 2 staplers onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","staplers","red pouch"]}, +{"id":"153165","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"85380","label":"showing cup next to telephone","template":"Showing [something] next to [something]","placeholders":["cup","telephone"]}, +{"id":"218913","label":"holding bottle next to kendama","template":"Holding [something] next to [something]","placeholders":["bottle","kendama"]}, +{"id":"42974","label":"tearing paper-board just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper-board"]}, +{"id":"132843","label":"showing a pen on top of a bottle of pills","template":"Showing [something] on top of [something]","placeholders":["a pen","a bottle of pills"]}, +{"id":"126981","label":"attaching earphones to mobile","template":"Attaching [something] to [something]","placeholders":["earphones","mobile"]}, +{"id":"47711","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"175889","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"208501","label":"pretending to be tearing a plastic lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic lid"]}, +{"id":"46003","label":"moving away from plastic jar with your camera","template":"Moving away from [something] with your camera","placeholders":["plastic jar"]}, +{"id":"173725","label":"spilling water onto bottle","template":"Spilling [something] onto [something]","placeholders":["water","bottle"]}, +{"id":"106827","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"204224","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"136584","label":"pretending to be tearing cell phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cell phone"]}, +{"id":"192777","label":"stuffing clothes into red bag","template":"Stuffing [something] into [something]","placeholders":["clothes","red bag"]}, +{"id":"6741","label":"putting salad dressing upright on the table","template":"Putting [something] upright on the table","placeholders":["salad dressing"]}, +{"id":"110393","label":"showing pen to the camera","template":"Showing [something] to the camera","placeholders":["pen"]}, +{"id":"89893","label":"putting mouse next to laptop","template":"Putting [something] next to [something]","placeholders":["mouse","laptop"]}, +{"id":"33507","label":"poking phone so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["phone"]}, +{"id":"214451","label":"touching (without moving) corner of notebook","template":"Touching (without moving) [part] of [something]","placeholders":["corner","notebook"]}, +{"id":"57344","label":"spilling water behind gas stove","template":"Spilling [something] behind [something]","placeholders":["water","gas stove"]}, +{"id":"19021","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"216098","label":"pouring popcorn into cup","template":"Pouring [something] into [something]","placeholders":["popcorn","cup"]}, +{"id":"65315","label":"tomatoe falling like a rock","template":"[Something] falling like a rock","placeholders":["tomatoe"]}, +{"id":"75317","label":"poking mouse so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["mouse"]}, +{"id":"17651","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"206705","label":"closing spectical box","template":"Closing [something]","placeholders":["spectical box"]}, +{"id":"7211","label":"holding a glass over a cell phone","template":"Holding [something] over [something]","placeholders":["a glass","a cell phone"]}, +{"id":"118589","label":"moving remote down","template":"Moving [something] down","placeholders":["remote"]}, +{"id":"36787","label":"moving car key down","template":"Moving [something] down","placeholders":["car key"]}, +{"id":"48777","label":"trying to bend toothbrush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["toothbrush"]}, +{"id":"92656","label":"covering notepad with towel","template":"Covering [something] with [something]","placeholders":["notepad","towel"]}, +{"id":"26842","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"138613","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"201591","label":"covering bag with cloth","template":"Covering [something] with [something]","placeholders":["bag","cloth"]}, +{"id":"140291","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"44772","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"107594","label":"opening black plastic box","template":"Opening [something]","placeholders":["black plastic box"]}, +{"id":"177364","label":"sprinkling salt onto plate","template":"Sprinkling [something] onto [something]","placeholders":["salt","plate"]}, +{"id":"158990","label":"taking toys out of basket","template":"Taking [something] out of [something]","placeholders":["toys","basket"]}, +{"id":"29483","label":"moving key up","template":"Moving [something] up","placeholders":["key"]}, +{"id":"112474","label":"closing cabinet door","template":"Closing [something]","placeholders":["cabinet door"]}, +{"id":"50932","label":"pretending to put coin behind remote control","template":"Pretending to put [something] behind [something]","placeholders":["coin","remote control"]}, +{"id":"192250","label":"removing mug, revealing soap behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","soap"]}, +{"id":"202407","label":"dropping paper into a bowl","template":"Dropping [something] into [something]","placeholders":["paper","a bowl"]}, +{"id":"12618","label":"removing cd stack, revealing tennis ball behind","template":"Removing [something], revealing [something] behind","placeholders":["cd stack","tennis ball"]}, +{"id":"43190","label":"pushing wallet off of couch","template":"Pushing [something] off of [something]","placeholders":["wallet","couch"]}, +{"id":"69918","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"101034","label":"pushing white board clip with white chalk","template":"Pushing [something] with [something]","placeholders":["white board clip","white chalk"]}, +{"id":"36466","label":"dropping a pocket knife onto a box","template":"Dropping [something] onto [something]","placeholders":["a pocket knife","a box"]}, +{"id":"174884","label":"moving a can up","template":"Moving [something] up","placeholders":["a can"]}, +{"id":"94159","label":"moving a scotch roll and a scotch roll so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a scotch roll","a scotch roll"]}, +{"id":"56185","label":"stuffing pens into a plastic","template":"Stuffing [something] into [something]","placeholders":["pens","a plastic"]}, +{"id":"206230","label":"moving wallet up","template":"Moving [something] up","placeholders":["wallet"]}, +{"id":"134945","label":"spinning earring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["earring"]}, +{"id":"54607","label":"rolling yellow marker on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["yellow marker"]}, +{"id":"141860","label":"putting clothe into bucket","template":"Putting [something] into [something]","placeholders":["clothe","bucket"]}, +{"id":"189243","label":"attaching a sticky note to a cabinet","template":"Attaching [something] to [something]","placeholders":["a sticky note","a cabinet"]}, +{"id":"140281","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"14030","label":"dropping pen in front of watch","template":"Dropping [something] in front of [something]","placeholders":["pen","watch"]}, +{"id":"165254","label":"putting glue bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["glue bottle"]}, +{"id":"134716","label":"moving duct tape closer to vase","template":"Moving [something] closer to [something]","placeholders":["duct tape","vase"]}, +{"id":"159474","label":"paint bottle colliding with paint bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["paint bottle","paint bottle"]}, +{"id":"43291","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"195353","label":"dropping a toothpick onto a ruler","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a ruler"]}, +{"id":"24293","label":"hitting butterfly hairclip with fly swatter","template":"Hitting [something] with [something]","placeholders":["butterfly hairclip","fly swatter"]}, +{"id":"88723","label":"putting bag in front of box","template":"Putting [something] in front of [something]","placeholders":["bag","box"]}, +{"id":"164497","label":"turning the camera right while filming usb","template":"Turning the camera right while filming [something]","placeholders":["usb"]}, +{"id":"143761","label":"putting a mug on a surface","template":"Putting [something] on a surface","placeholders":["a mug"]}, +{"id":"61801","label":"squeezing leather-bag","template":"Squeezing [something]","placeholders":["leather-bag"]}, +{"id":"64481","label":"lifting scissors up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["scissors"]}, +{"id":"94667","label":"dropping paper into box","template":"Dropping [something] into [something]","placeholders":["paper","box"]}, +{"id":"186373","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"96574","label":"taking a car out of a parking lot","template":"Taking [something] out of [something]","placeholders":["a car","a parking lot"]}, +{"id":"6036","label":"plugging power cord into surge protector","template":"Plugging [something] into [something]","placeholders":["power cord","surge protector"]}, +{"id":"133163","label":"pulling jewellry out of a jewellry box","template":"Pulling [something] out of [something]","placeholders":["jewellry","a jewellry box"]}, +{"id":"165149","label":"showing glasses on top of hamburger","template":"Showing [something] on top of [something]","placeholders":["glasses","hamburger"]}, +{"id":"165153","label":"plugging a power adapter into a socket","template":"Plugging [something] into [something]","placeholders":["a power adapter","a socket"]}, +{"id":"44689","label":"turning the camera upwards while filming old mobile phone","template":"Turning the camera upwards while filming [something]","placeholders":["old mobile phone"]}, +{"id":"155316","label":"putting mug and marker on the table","template":"Putting [something] and [something] on the table","placeholders":["mug","marker"]}, +{"id":"113477","label":"spilling water behind control","template":"Spilling [something] behind [something]","placeholders":["water","control"]}, +{"id":"113070","label":"hitting a mask with jacket","template":"Hitting [something] with [something]","placeholders":["a mask","jacket"]}, +{"id":"168617","label":"pretending to put paper knot into glass","template":"Pretending to put [something] into [something]","placeholders":["paper knot","glass"]}, +{"id":"117110","label":"holding water bottle over bag","template":"Holding [something] over [something]","placeholders":["water bottle","bag"]}, +{"id":"16695","label":"pretending to turn red pot holder upside down","template":"Pretending to turn [something] upside down","placeholders":["red pot holder"]}, +{"id":"125957","label":"spilling coffe onto a glass cup","template":"Spilling [something] onto [something]","placeholders":["coffe","a glass cup"]}, +{"id":"68","label":"holding marker in front of toy","template":"Holding [something] in front of [something]","placeholders":["marker","toy"]}, +{"id":"66828","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"44503","label":"spinning deodorant so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["deodorant"]}, +{"id":"78802","label":"pouring creamer into mug","template":"Pouring [something] into [something]","placeholders":["creamer","mug"]}, +{"id":"88356","label":"putting a glass next to the book","template":"Putting [something] next to [something]","placeholders":["a glass","the book"]}, +{"id":"169789","label":"pushing phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["phone"]}, +{"id":"158130","label":"dropping wallet next to mouse","template":"Dropping [something] next to [something]","placeholders":["wallet","mouse"]}, +{"id":"215657","label":"pushing scissors from left to right","template":"Pushing [something] from left to right","placeholders":["scissors"]}, +{"id":"56496","label":"showing flag to the camera","template":"Showing [something] to the camera","placeholders":["flag"]}, +{"id":"38989","label":"picking pink hair clip up","template":"Picking [something] up","placeholders":["pink hair clip"]}, +{"id":"20535","label":"lifting book with pencil on it","template":"Lifting [something] with [something] on it","placeholders":["book","pencil"]}, +{"id":"66606","label":"pushing a tissue box from right to left","template":"Pushing [something] from right to left","placeholders":["a tissue box"]}, +{"id":"158901","label":"twisting lid","template":"Twisting [something]","placeholders":["lid"]}, +{"id":"93167","label":"pretending to close a wallet without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a wallet"]}, +{"id":"143283","label":"tilting a magazine with a pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a magazine","a pencil"]}, +{"id":"64434","label":"pulling two ends of mobile case but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["mobile case"]}, +{"id":"95719","label":"poking a hole into balm","template":"Poking a hole into [some substance]","placeholders":["balm"]}, +{"id":"77708","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"83527","label":"opening pencil crayon case","template":"Opening [something]","placeholders":["pencil crayon case"]}, +{"id":"127850","label":"putting a chappal on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a chappal","table"]}, +{"id":"801","label":"putting a phone on a surface","template":"Putting [something] on a surface","placeholders":["a phone"]}, +{"id":"57857","label":"covering usb cable with cloth","template":"Covering [something] with [something]","placeholders":["usb cable","cloth"]}, +{"id":"8957","label":"pretending to take shoe out of closet","template":"Pretending to take [something] out of [something]","placeholders":["shoe","closet"]}, +{"id":"151588","label":"tilting a book with a phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a phone"]}, +{"id":"184845","label":"putting doll in front of idol","template":"Putting [something] in front of [something]","placeholders":["doll","idol"]}, +{"id":"208757","label":"letting canister roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["canister"]}, +{"id":"57783","label":"pushing the bluetooth speaker so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["the bluetooth speaker"]}, +{"id":"24018","label":"dropping a highlighter into a bucket","template":"Dropping [something] into [something]","placeholders":["a highlighter","a bucket"]}, +{"id":"2098","label":"moving pincer down","template":"Moving [something] down","placeholders":["pincer"]}, +{"id":"54936","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"185106","label":"plugging charger into block","template":"Plugging [something] into [something]","placeholders":["charger","block"]}, +{"id":"219476","label":"putting bar soap on a surface","template":"Putting [something] on a surface","placeholders":["bar soap"]}, +{"id":"130786","label":"holding food container in front of car","template":"Holding [something] in front of [something]","placeholders":["food container","car"]}, +{"id":"207351","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"130703","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"136255","label":"putting shirt into hamper","template":"Putting [something] into [something]","placeholders":["shirt","hamper"]}, +{"id":"109563","label":"pretending to take blue colour pe from table","template":"Pretending to take [something] from [somewhere]","placeholders":["blue colour pe","table"]}, +{"id":"113882","label":"uncovering watch","template":"Uncovering [something]","placeholders":["watch"]}, +{"id":"75486","label":"pushing a tape so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a tape"]}, +{"id":"77092","label":"pulling book from right to left","template":"Pulling [something] from right to left","placeholders":["book"]}, +{"id":"33679","label":"a wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["a wallet"]}, +{"id":"137991","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"5265","label":"spinning a 3d gift card that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a 3d gift card"]}, +{"id":"187789","label":"plugging cord into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall"]}, +{"id":"52622","label":"moving can closer to can","template":"Moving [something] closer to [something]","placeholders":["can","can"]}, +{"id":"10471","label":"poking a flashlight so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a flashlight"]}, +{"id":"14490","label":"lifting book with pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","pen"]}, +{"id":"180618","label":"showing grapes to the camera","template":"Showing [something] to the camera","placeholders":["grapes"]}, +{"id":"163547","label":"putting yellowbook next to pink book","template":"Putting [something] next to [something]","placeholders":["yellowbook","pink book"]}, +{"id":"72152","label":"showing gear behind toy wheel","template":"Showing [something] behind [something]","placeholders":["gear","toy wheel"]}, +{"id":"156859","label":"pretending to open cabinet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cabinet"]}, +{"id":"123295","label":"covering coaster with box","template":"Covering [something] with [something]","placeholders":["coaster","box"]}, +{"id":"24427","label":"taking rocks","template":"Taking [one of many similar things on the table]","placeholders":["rocks"]}, +{"id":"37170","label":"holding a pen in front of a glass","template":"Holding [something] in front of [something]","placeholders":["a pen","a glass"]}, +{"id":"61404","label":"dropping a box onto a sock","template":"Dropping [something] onto [something]","placeholders":["a box","a sock"]}, +{"id":"104460","label":"holding a watch behind a mobile","template":"Holding [something] behind [something]","placeholders":["a watch","a mobile"]}, +{"id":"14330","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"155334","label":"moving pen towards the camera","template":"Moving [something] towards the camera","placeholders":["pen"]}, +{"id":"120438","label":"throwing throwing lighter in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["throwing lighter"]}, +{"id":"9116","label":"showing that a plastic cup is empty","template":"Showing that [something] is empty","placeholders":["a plastic cup"]}, +{"id":"46175","label":"tilting a cutting board with a potholder on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cutting board","a potholder"]}, +{"id":"183863","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"142849","label":"putting doll on a surface","template":"Putting [something] on a surface","placeholders":["doll"]}, +{"id":"37174","label":"lifting up one end of a towel without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a towel"]}, +{"id":"215257","label":"pretending or failing to wipe spot off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["spot","wall"]}, +{"id":"220334","label":"throwing a paper","template":"Throwing [something]","placeholders":["a paper"]}, +{"id":"125982","label":"pretending to close powder without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["powder"]}, +{"id":"103102","label":"touching (without moving) a knob of a drawer","template":"Touching (without moving) [part] of [something]","placeholders":["a knob","a drawer"]}, +{"id":"154057","label":"moving pebble closer to spanner","template":"Moving [something] closer to [something]","placeholders":["pebble","spanner"]}, +{"id":"58530","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"143651","label":"pretending to be tearing coaster","template":"Pretending to be tearing [something that is not tearable]","placeholders":["coaster"]}, +{"id":"109433","label":"holding pen in front of handbag","template":"Holding [something] in front of [something]","placeholders":["pen","handbag"]}, +{"id":"18663","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"35767","label":"moving nail clippers away from pen","template":"Moving [something] away from [something]","placeholders":["nail clippers","pen"]}, +{"id":"14206","label":"lifting paper up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["paper"]}, +{"id":"68459","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"181578","label":"pushing a phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a phone"]}, +{"id":"26579","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"78118","label":"turning the camera left while filming one tea light candle","template":"Turning the camera left while filming [something]","placeholders":["one tea light candle"]}, +{"id":"205422","label":"putting color paper clip","template":"Putting [something similar to other things that are already on the table]","placeholders":["color paper clip"]}, +{"id":"96494","label":"holding a pen next to scissors","template":"Holding [something] next to [something]","placeholders":["a pen","scissors"]}, +{"id":"91018","label":"sprinkling flour onto sausage","template":"Sprinkling [something] onto [something]","placeholders":["flour","sausage"]}, +{"id":"212599","label":"poking a stack of boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["boxes"]}, +{"id":"173361","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"157925","label":"taking battery","template":"Taking [one of many similar things on the table]","placeholders":["battery"]}, +{"id":"110962","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"127436","label":"spilling water onto the floor","template":"Spilling [something] onto [something]","placeholders":["water","the floor"]}, +{"id":"203910","label":"putting tea infuser into mug","template":"Putting [something] into [something]","placeholders":["tea infuser","mug"]}, +{"id":"147513","label":"tipping dental floss over","template":"Tipping [something] over","placeholders":["dental floss"]}, +{"id":"167166","label":"plugging nightlight into socket","template":"Plugging [something] into [something]","placeholders":["nightlight","socket"]}, +{"id":"116821","label":"uncovering a banana","template":"Uncovering [something]","placeholders":["a banana"]}, +{"id":"107752","label":"bending paper cilp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper cilp"]}, +{"id":"117867","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"128957","label":"showing a flower pot on top of a porch","template":"Showing [something] on top of [something]","placeholders":["a flower pot","a porch"]}, +{"id":"144230","label":"taking snacks packet","template":"Taking [one of many similar things on the table]","placeholders":["snacks packet"]}, +{"id":"81228","label":"pushing a $20 bill onto a cigarette pack","template":"Pushing [something] onto [something]","placeholders":["a $20 bill","a cigarette pack"]}, +{"id":"139497","label":"plastic rock falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic rock"]}, +{"id":"42428","label":"putting black scissor that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["black scissor"]}, +{"id":"161987","label":"taking book out of shelves","template":"Taking [something] out of [something]","placeholders":["book","shelves"]}, +{"id":"106740","label":"holding red spoon next to red punching machine","template":"Holding [something] next to [something]","placeholders":["red spoon","red punching machine"]}, +{"id":"93214","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"81620","label":"moving toy and cylinder so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toy","cylinder"]}, +{"id":"76638","label":"burying egg in salt","template":"Burying [something] in [something]","placeholders":["egg","salt"]}, +{"id":"86966","label":"putting candle into glas","template":"Putting [something] into [something]","placeholders":["candle","glas"]}, +{"id":"123821","label":"turning the camera left while filming traffic light","template":"Turning the camera left while filming [something]","placeholders":["traffic light"]}, +{"id":"67477","label":"dropping green bowl in front of red pouch","template":"Dropping [something] in front of [something]","placeholders":["green bowl","red pouch"]}, +{"id":"174556","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"143298","label":"lifting book with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","a pen"]}, +{"id":"74824","label":"dropping onion onto bucket","template":"Dropping [something] onto [something]","placeholders":["onion","bucket"]}, +{"id":"149791","label":"moving a ball and another ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","another ball"]}, +{"id":"113780","label":"showing hot sauce behind bottle","template":"Showing [something] behind [something]","placeholders":["hot sauce","bottle"]}, +{"id":"129318","label":"holding a piece of paper behind ballpen","template":"Holding [something] behind [something]","placeholders":["a piece of paper","ballpen"]}, +{"id":"61119","label":"plugging a plug into a plug extender but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a plug extender"]}, +{"id":"150905","label":"showing white envelope to the camera","template":"Showing [something] to the camera","placeholders":["white envelope"]}, +{"id":"27550","label":"lifting plate with cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","cup"]}, +{"id":"53387","label":"pretending to close tablet-box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["tablet-box"]}, +{"id":"60604","label":"piling dvds up","template":"Piling [something] up","placeholders":["dvds"]}, +{"id":"100780","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"19688","label":"showing that the wooden plate is empty","template":"Showing that [something] is empty","placeholders":["the wooden plate"]}, +{"id":"122748","label":"pushing dvd case from right to left","template":"Pushing [something] from right to left","placeholders":["dvd case"]}, +{"id":"20245","label":"poking a hole into butter","template":"Poking a hole into [something soft]","placeholders":["butter"]}, +{"id":"103066","label":"wiping crayon off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["crayon","whiteboard"]}, +{"id":"117558","label":"tipping cereal box over","template":"Tipping [something] over","placeholders":["cereal box"]}, +{"id":"213468","label":"taking bottle out of cup","template":"Taking [something] out of [something]","placeholders":["bottle","cup"]}, +{"id":"21906","label":"taking mineral water","template":"Taking [one of many similar things on the table]","placeholders":["mineral water"]}, +{"id":"145729","label":"moving watch down","template":"Moving [something] down","placeholders":["watch"]}, +{"id":"93165","label":"showing a lock next to the onion","template":"Showing [something] next to [something]","placeholders":["a lock","the onion"]}, +{"id":"185497","label":"putting shampoo bottler onto paperboard so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["shampoo bottler","paperboard"]}, +{"id":"142438","label":"moving backpack down","template":"Moving [something] down","placeholders":["backpack"]}, +{"id":"108718","label":"tearing brown paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["brown paper"]}, +{"id":"90272","label":"lifting cup up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["cup"]}, +{"id":"94933","label":"turning spray bottle upside down","template":"Turning [something] upside down","placeholders":["spray bottle"]}, +{"id":"211620","label":"taking strawberry out of bowl","template":"Taking [something] out of [something]","placeholders":["strawberry","bowl"]}, +{"id":"70593","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"86949","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"1056","label":"stacking 2 toy cars","template":"Stacking [number of] [something]","placeholders":["2","toy cars"]}, +{"id":"133612","label":"laying glue stick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glue stick"]}, +{"id":"24388","label":"moving a mug and another mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","another mug"]}, +{"id":"164578","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"96267","label":"taking toffee eclairs from jar","template":"Taking [something] from [somewhere]","placeholders":["toffee eclairs","jar"]}, +{"id":"94783","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"125131","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"155172","label":"holding a stick over the step","template":"Holding [something] over [something]","placeholders":["a stick","the step"]}, +{"id":"171329","label":"dropping pen onto bowl","template":"Dropping [something] onto [something]","placeholders":["pen","bowl"]}, +{"id":"25252","label":"turning the camera left while filming toothpaste tube","template":"Turning the camera left while filming [something]","placeholders":["toothpaste tube"]}, +{"id":"161695","label":"holding a bottle in front of a laptop","template":"Holding [something] in front of [something]","placeholders":["a bottle","a laptop"]}, +{"id":"38439","label":"holding pen behind iron","template":"Holding [something] behind [something]","placeholders":["pen","iron"]}, +{"id":"180602","label":"tearing index card into two pieces","template":"Tearing [something] into two pieces","placeholders":["index card"]}, +{"id":"18971","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"145061","label":"pulling blinds from right to left","template":"Pulling [something] from right to left","placeholders":["blinds"]}, +{"id":"131427","label":"putting book next to book","template":"Putting [something] next to [something]","placeholders":["book","book"]}, +{"id":"9462","label":"dropping an alarm clock onto a bed","template":"Dropping [something] onto [something]","placeholders":["an alarm clock","a bed"]}, +{"id":"16212","label":"putting sunglasses next to remote control","template":"Putting [something] next to [something]","placeholders":["sunglasses","remote control"]}, +{"id":"40301","label":"dropping keys into bag","template":"Dropping [something] into [something]","placeholders":["keys","bag"]}, +{"id":"33449","label":"showing phone behind plastic cup","template":"Showing [something] behind [something]","placeholders":["phone","plastic cup"]}, +{"id":"128199","label":"turning a marker upside down","template":"Turning [something] upside down","placeholders":["a marker"]}, +{"id":"93339","label":"moving cup away from stapler","template":"Moving [something] away from [something]","placeholders":["cup","stapler"]}, +{"id":"101158","label":"turning red pot holder upside down","template":"Turning [something] upside down","placeholders":["red pot holder"]}, +{"id":"69339","label":"hair brush falling like a rock","template":"[Something] falling like a rock","placeholders":["hair brush"]}, +{"id":"97002","label":"turning the camera right while filming snacks packets","template":"Turning the camera right while filming [something]","placeholders":["snacks packets"]}, +{"id":"89139","label":"showing black toy wheel next to orange pencil sharpner","template":"Showing [something] next to [something]","placeholders":["black toy wheel","orange pencil sharpner"]}, +{"id":"220062","label":"pretending or trying and failing to twist toy car","template":"Pretending or trying and failing to twist [something]","placeholders":["toy car"]}, +{"id":"65028","label":"showing a bottle on top of box","template":"Showing [something] on top of [something]","placeholders":["a bottle","box"]}, +{"id":"49914","label":"bending bulb syringe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bulb syringe"]}, +{"id":"136284","label":"throwing litle crown","template":"Throwing [something]","placeholders":["litle crown"]}, +{"id":"92487","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"207257","label":"pulling soft elmo from left to right","template":"Pulling [something] from left to right","placeholders":["soft elmo"]}, +{"id":"107816","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"106257","label":"dropping cucumber next to lemon","template":"Dropping [something] next to [something]","placeholders":["cucumber","lemon"]}, +{"id":"36396","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"1461","label":"twisting plastic scale","template":"Twisting [something]","placeholders":["plastic scale"]}, +{"id":"118596","label":"throwing santa hat in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["santa hat"]}, +{"id":"43492","label":"moving glue bottle closer to camera","template":"Moving [something] closer to [something]","placeholders":["glue bottle","camera"]}, +{"id":"98924","label":"pushing nail polish so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail polish"]}, +{"id":"84175","label":"pouring water onto a glass","template":"Pouring [something] onto [something]","placeholders":["water","a glass"]}, +{"id":"165145","label":"putting plastic jar onto stopper so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["plastic jar","stopper"]}, +{"id":"178022","label":"pushing something so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["something"]}, +{"id":"43117","label":"pulling cloth out of plastic container","template":"Pulling [something] out of [something]","placeholders":["cloth","plastic container"]}, +{"id":"59074","label":"pretending to be tearing a pen","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a pen"]}, +{"id":"209907","label":"holding paint brushes over paint","template":"Holding [something] over [something]","placeholders":["paint brushes","paint"]}, +{"id":"143297","label":"moving a dvd away from a mug","template":"Moving [something] away from [something]","placeholders":["a dvd","a mug"]}, +{"id":"22287","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"43849","label":"dropping a matchbox in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a toothbrush"]}, +{"id":"62853","label":"plugging kettle into socket","template":"Plugging [something] into [something]","placeholders":["kettle","socket"]}, +{"id":"4163","label":"tearing a polythene cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["a polythene cover"]}, +{"id":"175597","label":"opening a jar of vitamins","template":"Opening [something]","placeholders":["a jar of vitamins"]}, +{"id":"213842","label":"lifting up one end of laptop, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["laptop"]}, +{"id":"28130","label":"stacking 3 ping pong balls","template":"Stacking [number of] [something]","placeholders":["3","ping pong balls"]}, +{"id":"38038","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"130097","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"16660","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"33392","label":"folding news paper","template":"Folding [something]","placeholders":["news paper"]}, +{"id":"32263","label":"rolling pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pen"]}, +{"id":"57483","label":"lifting up one end of a laptop, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a laptop"]}, +{"id":"94406","label":"putting book, box, bam..etc into table","template":"Putting [something] into [something]","placeholders":["book, box, bam..etc","table"]}, +{"id":"83769","label":"pushing supplement bottle from right to left","template":"Pushing [something] from right to left","placeholders":["supplement bottle"]}, +{"id":"108787","label":"pulling yellow container from left to right","template":"Pulling [something] from left to right","placeholders":["yellow container"]}, +{"id":"70666","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"174198","label":"putting jar into box","template":"Putting [something] into [something]","placeholders":["jar","box"]}, +{"id":"220306","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"142549","label":"turning the camera upwards while filming colorful scarf","template":"Turning the camera upwards while filming [something]","placeholders":["colorful scarf"]}, +{"id":"200650","label":"squeezing washcloth","template":"Squeezing [something]","placeholders":["washcloth"]}, +{"id":"160187","label":"pretending to open big door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["big door"]}, +{"id":"173320","label":"approaching pink toothbrush case with your camera","template":"Approaching [something] with your camera","placeholders":["pink toothbrush case"]}, +{"id":"198240","label":"bending cracker until it breaks","template":"Bending [something] until it breaks","placeholders":["cracker"]}, +{"id":"78034","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"147919","label":"stuffing a sharpener into a pencil case","template":"Stuffing [something] into [something]","placeholders":["a sharpener","a pencil case"]}, +{"id":"40642","label":"covering matchbox with box cap","template":"Covering [something] with [something]","placeholders":["matchbox","box cap"]}, +{"id":"134574","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"117107","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"213036","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"148805","label":"putting a candle","template":"Putting [something similar to other things that are already on the table]","placeholders":["a candle"]}, +{"id":"113746","label":"holding peanut butter jar next to soda can","template":"Holding [something] next to [something]","placeholders":["peanut butter jar","soda can"]}, +{"id":"24316","label":"moving card up","template":"Moving [something] up","placeholders":["card"]}, +{"id":"152618","label":"taking water","template":"Taking [one of many similar things on the table]","placeholders":["water"]}, +{"id":"103796","label":"dropping book next to chair","template":"Dropping [something] next to [something]","placeholders":["book","chair"]}, +{"id":"193311","label":"moving cucumber up","template":"Moving [something] up","placeholders":["cucumber"]}, +{"id":"184267","label":"letting electrical tape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["electrical tape"]}, +{"id":"93270","label":"moving a small jar and a small jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a small jar","a small jar"]}, +{"id":"164342","label":"opening hand bag","template":"Opening [something]","placeholders":["hand bag"]}, +{"id":"216550","label":"pulling black umbrella from left to right","template":"Pulling [something] from left to right","placeholders":["black umbrella"]}, +{"id":"75233","label":"moving striker coin up","template":"Moving [something] up","placeholders":["striker coin"]}, +{"id":"161627","label":"pushing a toothbrush onto an envelope","template":"Pushing [something] onto [something]","placeholders":["a toothbrush","an envelope"]}, +{"id":"115503","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"102189","label":"putting striker coin next to white board clip","template":"Putting [something] next to [something]","placeholders":["striker coin","white board clip"]}, +{"id":"196598","label":"pretending to poke charger","template":"Pretending to poke [something]","placeholders":["charger"]}, +{"id":"87576","label":"tilting a pack of paper with a spray-paint can on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a pack of paper","a spray-paint can"]}, +{"id":"109858","label":"putting toy behind toy watch","template":"Putting [something] behind [something]","placeholders":["toy","toy watch"]}, +{"id":"209538","label":"pretending to poke toy","template":"Pretending to poke [something]","placeholders":["toy"]}, +{"id":"163929","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"67581","label":"pen being deflected from calculator cover","template":"[Something] being deflected from [something]","placeholders":["pen","calculator cover"]}, +{"id":"42753","label":"tipping a scooter over","template":"Tipping [something] over","placeholders":["a scooter"]}, +{"id":"243","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"60595","label":"showing a pen next to a spoon","template":"Showing [something] next to [something]","placeholders":["a pen","a spoon"]}, +{"id":"134896","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"135745","label":"pushing a spoon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a spoon"]}, +{"id":"99866","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"31944","label":"spinning marker pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker pen"]}, +{"id":"68449","label":"putting usb cable on a surface","template":"Putting [something] on a surface","placeholders":["usb cable"]}, +{"id":"77861","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"51251","label":"picking wallet up","template":"Picking [something] up","placeholders":["wallet"]}, +{"id":"65595","label":"squeezing plastic bottle","template":"Squeezing [something]","placeholders":["plastic bottle"]}, +{"id":"130443","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"174892","label":"holding foil ball next to lighter","template":"Holding [something] next to [something]","placeholders":["foil ball","lighter"]}, +{"id":"132122","label":"dropping a matchbox next to a plate","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a plate"]}, +{"id":"115741","label":"letting battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["battery"]}, +{"id":"156573","label":"tipping papertowel over","template":"Tipping [something] over","placeholders":["papertowel"]}, +{"id":"41003","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"133719","label":"spilling a cup of water onto the counter","template":"Spilling [something] onto [something]","placeholders":["a cup of water","the counter"]}, +{"id":"46610","label":"putting candy bar on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["candy bar","table"]}, +{"id":"70919","label":"pretending to take matchbox from table","template":"Pretending to take [something] from [somewhere]","placeholders":["matchbox","table"]}, +{"id":"80272","label":"putting a glass behind flowers","template":"Putting [something] behind [something]","placeholders":["a glass","flowers"]}, +{"id":"174923","label":"taking cups from a table","template":"Taking [one of many similar things on the table]","placeholders":["cups from a table"]}, +{"id":"135948","label":"covering a key with a note book","template":"Covering [something] with [something]","placeholders":["a key","a note book"]}, +{"id":"216965","label":"turning the camera upwards while filming rice cooker","template":"Turning the camera upwards while filming [something]","placeholders":["rice cooker"]}, +{"id":"138102","label":"putting squeezable strawberry jam on a surface","template":"Putting [something] on a surface","placeholders":["squeezable strawberry jam"]}, +{"id":"30162","label":"putting a bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle"]}, +{"id":"210799","label":"taking a sheet out of a box","template":"Taking [something] out of [something]","placeholders":["a sheet","a box"]}, +{"id":"132708","label":"showing briefs to the camera","template":"Showing [something] to the camera","placeholders":["briefs"]}, +{"id":"218522","label":"dropping a cup into the sink","template":"Dropping [something] into [something]","placeholders":["a cup","the sink"]}, +{"id":"79291","label":"moving a cup closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a cup","a mug"]}, +{"id":"97247","label":"taking tumbler","template":"Taking [one of many similar things on the table]","placeholders":["tumbler"]}, +{"id":"38152","label":"lifting a peanut can with a pringles can on it","template":"Lifting [something] with [something] on it","placeholders":["a peanut can","a pringles can"]}, +{"id":"12954","label":"tearing gift cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["gift cover"]}, +{"id":"203742","label":"pushing towel so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towel"]}, +{"id":"34974","label":"ball being deflected from vent","template":"[Something] being deflected from [something]","placeholders":["ball","vent"]}, +{"id":"142533","label":"putting a fridge magnet upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a fridge magnet"]}, +{"id":"39937","label":"putting a coin next to other coins on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin next to other coins on the table"]}, +{"id":"87650","label":"pushing a chair so it spins","template":"Pushing [something] so it spins","placeholders":["a chair"]}, +{"id":"170459","label":"dropping coin into pen stand","template":"Dropping [something] into [something]","placeholders":["coin","pen stand"]}, +{"id":"34120","label":"pushing phone with pen","template":"Pushing [something] with [something]","placeholders":["phone","pen"]}, +{"id":"195933","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"42455","label":"tearing yellow paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["yellow paper"]}, +{"id":"181183","label":"taking lipstick out of a box","template":"Taking [something] out of [something]","placeholders":["lipstick","a box"]}, +{"id":"172416","label":"plugging a usb cable into a desktop microphone","template":"Plugging [something] into [something]","placeholders":["a usb cable","a desktop microphone"]}, +{"id":"22359","label":"pushing plush from left to right","template":"Pushing [something] from left to right","placeholders":["plush"]}, +{"id":"146754","label":"plugging power cord into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power cord","a socket"]}, +{"id":"210519","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"160596","label":"moving a cup and hitting another cup so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a cup","hitting another cup"]}, +{"id":"85526","label":"trying to bend controller so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["controller"]}, +{"id":"129272","label":"lifting plastic package up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["plastic package"]}, +{"id":"200199","label":"stuffing pants into a drawer","template":"Stuffing [something] into [something]","placeholders":["pants","a drawer"]}, +{"id":"115828","label":"pretending to be tearing book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["book"]}, +{"id":"34833","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"177146","label":"showing plate behind cup","template":"Showing [something] behind [something]","placeholders":["plate","cup"]}, +{"id":"152539","label":"laying globe toy on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["globe toy"]}, +{"id":"137203","label":"hitting a roll of wiping paper with a stick","template":"Hitting [something] with [something]","placeholders":["a roll of wiping paper","a stick"]}, +{"id":"44181","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"18454","label":"trying to pour water into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a cup"]}, +{"id":"193554","label":"pulling marker from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["marker","laptop"]}, +{"id":"39486","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"171804","label":"pushing packaging handkerchiefs off of table","template":"Pushing [something] off of [something]","placeholders":["packaging handkerchiefs","table"]}, +{"id":"59078","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"174316","label":"showing rubix cube on top of duster","template":"Showing [something] on top of [something]","placeholders":["rubix cube","duster"]}, +{"id":"127072","label":"bending lid so that it deforms","template":"Bending [something] so that it deforms","placeholders":["lid"]}, +{"id":"220290","label":"closing refrigerator","template":"Closing [something]","placeholders":["refrigerator"]}, +{"id":"165011","label":"hitting coffee cup with spoon","template":"Hitting [something] with [something]","placeholders":["coffee cup","spoon"]}, +{"id":"45510","label":"taking eggs out of a bowl","template":"Taking [something] out of [something]","placeholders":["eggs","a bowl"]}, +{"id":"71980","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"176748","label":"holding a pen in front of a microwave","template":"Holding [something] in front of [something]","placeholders":["a pen","a microwave"]}, +{"id":"163353","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"95967","label":"holding a clarinet case behind a stuffed giraffe","template":"Holding [something] behind [something]","placeholders":["a clarinet case","a stuffed giraffe"]}, +{"id":"139447","label":"pushing belt from right to left","template":"Pushing [something] from right to left","placeholders":["belt"]}, +{"id":"200168","label":"pretending to open fridge without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["fridge"]}, +{"id":"100279","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"203531","label":"showing that trash can is empty","template":"Showing that [something] is empty","placeholders":["trash can"]}, +{"id":"199979","label":"stuffing glasses into case","template":"Stuffing [something] into [something]","placeholders":["glasses","case"]}, +{"id":"102402","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"37006","label":"rolling white colour battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["white colour battery"]}, +{"id":"79793","label":"something colliding with something and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["something","something"]}, +{"id":"57831","label":"turning aim toothpaste upside down","template":"Turning [something] upside down","placeholders":["aim toothpaste"]}, +{"id":"115405","label":"throwing a pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pen"]}, +{"id":"7903","label":"pretending to open a pencase without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a pencase"]}, +{"id":"202308","label":"moving pen drive down","template":"Moving [something] down","placeholders":["pen drive"]}, +{"id":"91037","label":"putting fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["fork"]}, +{"id":"132863","label":"spilling water onto a plant","template":"Spilling [something] onto [something]","placeholders":["water","a plant"]}, +{"id":"134426","label":"turning cellphone upside down","template":"Turning [something] upside down","placeholders":["cellphone"]}, +{"id":"154238","label":"pushing a bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bag"]}, +{"id":"157009","label":"putting pen next to watch","template":"Putting [something] next to [something]","placeholders":["pen","watch"]}, +{"id":"170188","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"117507","label":"lego falling like a rock","template":"[Something] falling like a rock","placeholders":["lego"]}, +{"id":"60951","label":"tearing cloth just a little bit","template":"Tearing [something] just a little bit","placeholders":["cloth"]}, +{"id":"197826","label":"spinning medicin bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["medicin bottle"]}, +{"id":"133456","label":"pushing scissors off of a box","template":"Pushing [something] off of [something]","placeholders":["scissors","a box"]}, +{"id":"43980","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"186794","label":"pushing crayon with crayon","template":"Pushing [something] with [something]","placeholders":["crayon","crayon"]}, +{"id":"212126","label":"dropping a water bottle onto the floor","template":"Dropping [something] onto [something]","placeholders":["a water bottle","the floor"]}, +{"id":"212147","label":"putting a book near other books","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book near other books"]}, +{"id":"136541","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"198481","label":"flower petal falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["flower petal"]}, +{"id":"46745","label":"showing that tablet box is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["tablet box","green bowl"]}, +{"id":"163786","label":"moving away from sardine fishes with your camera","template":"Moving away from [something] with your camera","placeholders":["sardine fishes"]}, +{"id":"184693","label":"dropping a wallet in front of a peg","template":"Dropping [something] in front of [something]","placeholders":["a wallet","a peg"]}, +{"id":"198752","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"123984","label":"spinning a toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy"]}, +{"id":"185685","label":"scooping animal feed up with container","template":"Scooping [something] up with [something]","placeholders":["animal feed","container"]}, +{"id":"182545","label":"tilting box with razor blade on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","razor blade"]}, +{"id":"190654","label":"folding a towel","template":"Folding [something]","placeholders":["a towel"]}, +{"id":"137367","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"8727","label":"ball colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","pen"]}, +{"id":"121345","label":"approaching water pipe with your camera","template":"Approaching [something] with your camera","placeholders":["water pipe"]}, +{"id":"2173","label":"lifting a wooden stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wooden stick"]}, +{"id":"217024","label":"pulling two ends of cotton so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cotton"]}, +{"id":"212913","label":"tilting plate with onion on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","onion"]}, +{"id":"42680","label":"twisting inhaler","template":"Twisting [something]","placeholders":["inhaler"]}, +{"id":"8521","label":"plugging lamp into outlet","template":"Plugging [something] into [something]","placeholders":["lamp","outlet"]}, +{"id":"209341","label":"putting an apple onto a plate","template":"Putting [something] onto [something]","placeholders":["an apple","a plate"]}, +{"id":"98052","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"165270","label":"holding a pen in front of a cup","template":"Holding [something] in front of [something]","placeholders":["a pen","a cup"]}, +{"id":"80258","label":"putting jar behind box","template":"Putting [something] behind [something]","placeholders":["jar","box"]}, +{"id":"51935","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"175806","label":"uncovering clock","template":"Uncovering [something]","placeholders":["clock"]}, +{"id":"152758","label":"tilting a keyboard with a battery on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a keyboard","a battery"]}, +{"id":"117307","label":"showing trimmer behind man","template":"Showing [something] behind [something]","placeholders":["trimmer","man"]}, +{"id":"15978","label":"holding a mug behind papper roll","template":"Holding [something] behind [something]","placeholders":["a mug","papper roll"]}, +{"id":"16119","label":"tilting a book with a block on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a block"]}, +{"id":"198351","label":"a pencil box colliding with anothe box and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pencil box","anothe box"]}, +{"id":"149009","label":"lifting a surface with box on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["box"]}, +{"id":"56887","label":"moving white board clip away from green toy car","template":"Moving [something] away from [something]","placeholders":["white board clip","green toy car"]}, +{"id":"159090","label":"throwing shoe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["shoe"]}, +{"id":"180388","label":"plugging a charger into an extension cord","template":"Plugging [something] into [something]","placeholders":["a charger","an extension cord"]}, +{"id":"149450","label":"dropping biscuit packet into plate","template":"Dropping [something] into [something]","placeholders":["biscuit packet","plate"]}, +{"id":"8067","label":"wallet colliding with wallet and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["wallet","wallet"]}, +{"id":"186727","label":"moving a book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a book"]}, +{"id":"183275","label":"beach pebble falling like a rock","template":"[Something] falling like a rock","placeholders":["beach pebble"]}, +{"id":"196804","label":"pretending to pick plate up","template":"Pretending to pick [something] up","placeholders":["plate"]}, +{"id":"199208","label":"pop bottle colliding with fidget spinner and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pop bottle","fidget spinner"]}, +{"id":"118461","label":"removing mug, revealing pendrive behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","pendrive"]}, +{"id":"61093","label":"dropping cloth onto apple","template":"Dropping [something] onto [something]","placeholders":["cloth","apple"]}, +{"id":"20540","label":"pushing chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["chair"]}, +{"id":"56770","label":"opening coffee thermo","template":"Opening [something]","placeholders":["coffee thermo"]}, +{"id":"102982","label":"hitting bowl with spoon","template":"Hitting [something] with [something]","placeholders":["bowl","spoon"]}, +{"id":"84145","label":"plugging power adapter into wall outlet","template":"Plugging [something] into [something]","placeholders":["power adapter","wall outlet"]}, +{"id":"180581","label":"trying to bend a metal bar so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a metal bar"]}, +{"id":"6540","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"67640","label":"pushing hat from right to left","template":"Pushing [something] from right to left","placeholders":["hat"]}, +{"id":"165082","label":"holding a pencil next to keys","template":"Holding [something] next to [something]","placeholders":["a pencil","keys"]}, +{"id":"66915","label":"pushing cupcake case from left to right","template":"Pushing [something] from left to right","placeholders":["cupcake case"]}, +{"id":"8806","label":"taking a play block from a group of play blocks","template":"Taking [one of many similar things on the table]","placeholders":["a play block from a group of play blocks"]}, +{"id":"119998","label":"uncovering a container","template":"Uncovering [something]","placeholders":["a container"]}, +{"id":"6216","label":"approaching wireless mouse with your camera","template":"Approaching [something] with your camera","placeholders":["wireless mouse"]}, +{"id":"148647","label":"showing that bolt is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["bolt","green bowl"]}, +{"id":"148628","label":"pretending or failing to wipe salt off of a table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a table"]}, +{"id":"126414","label":"holding bottle next to sunglasses","template":"Holding [something] next to [something]","placeholders":["bottle","sunglasses"]}, +{"id":"200105","label":"poking yogurt so that it falls over","template":"Poking [something] so that it falls over","placeholders":["yogurt"]}, +{"id":"67666","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"726","label":"poking a candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle"]}, +{"id":"213912","label":"pretending to put leaf behind bike","template":"Pretending to put [something] behind [something]","placeholders":["leaf","bike"]}, +{"id":"169768","label":"putting ink bottle and toy globe on the table","template":"Putting [something] and [something] on the table","placeholders":["ink bottle","toy globe"]}, +{"id":"35301","label":"moving cylinder and fruit closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cylinder","fruit"]}, +{"id":"108416","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"111483","label":"moving match box and a nail polish bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["match box","a nail polish bottle"]}, +{"id":"205828","label":"moving tipex-maus up","template":"Moving [something] up","placeholders":["tipex-maus"]}, +{"id":"141352","label":"pretending to sprinkle air onto cup","template":"Pretending to sprinkle air onto [something]","placeholders":["cup"]}, +{"id":"218695","label":"pushing one face mask from left to right","template":"Pushing [something] from left to right","placeholders":["one face mask"]}, +{"id":"115610","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"94592","label":"moving a fingernail file away from a book","template":"Moving [something] away from [something]","placeholders":["a fingernail file","a book"]}, +{"id":"141715","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"5693","label":"moving container and container so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["container","container"]}, +{"id":"187174","label":"attaching sticky note to box","template":"Attaching [something] to [something]","placeholders":["sticky note","box"]}, +{"id":"188939","label":"taking onion","template":"Taking [one of many similar things on the table]","placeholders":["onion"]}, +{"id":"208338","label":"pretending or failing to wipe salt off of a wallet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a wallet"]}, +{"id":"90365","label":"taking lemon out of the bowl","template":"Taking [something] out of [something]","placeholders":["lemon","the bowl"]}, +{"id":"131264","label":"taking books","template":"Taking [one of many similar things on the table]","placeholders":["books"]}, +{"id":"178613","label":"trying but failing to attach bottle cap to comb because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["bottle cap","comb"]}, +{"id":"173234","label":"putting notebook and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["notebook","pen"]}, +{"id":"220768","label":"tipping tumbler with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["tumbler","water","water"]}, +{"id":"118320","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"93258","label":"pushing a drawer with a hanger","template":"Pushing [something] with [something]","placeholders":["a drawer","a hanger"]}, +{"id":"162797","label":"moving a matchbox closer to a plate","template":"Moving [something] closer to [something]","placeholders":["a matchbox","a plate"]}, +{"id":"156105","label":"putting crayon onto lid","template":"Putting [something] onto [something]","placeholders":["crayon","lid"]}, +{"id":"159752","label":"showing a pen to the camera","template":"Showing [something] to the camera","placeholders":["a pen"]}, +{"id":"79235","label":"showing mouse behind box","template":"Showing [something] behind [something]","placeholders":["mouse","box"]}, +{"id":"174605","label":"picking spoon up","template":"Picking [something] up","placeholders":["spoon"]}, +{"id":"53519","label":"pretending to put a shot glass into a measuring cup","template":"Pretending to put [something] into [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"216705","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"60238","label":"pulling matches from left to right","template":"Pulling [something] from left to right","placeholders":["matches"]}, +{"id":"78492","label":"plugging power plug into electric socket","template":"Plugging [something] into [something]","placeholders":["power plug","electric socket"]}, +{"id":"74298","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"132348","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"191563","label":"showing eraser behind glue stick","template":"Showing [something] behind [something]","placeholders":["eraser","glue stick"]}, +{"id":"43582","label":"dropping keys behind a cup","template":"Dropping [something] behind [something]","placeholders":["keys","a cup"]}, +{"id":"30540","label":"lifting a candle with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["a candle","a lighter"]}, +{"id":"83805","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"155260","label":"pouring water out of a pitcher","template":"Pouring [something] out of [something]","placeholders":["water","a pitcher"]}, +{"id":"168107","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"47072","label":"pulling cup from behind of cup","template":"Pulling [something] from behind of [something]","placeholders":["cup","cup"]}, +{"id":"101132","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"62339","label":"squeezing wooden block","template":"Squeezing [something]","placeholders":["wooden block"]}, +{"id":"214921","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"107128","label":"picking pillow up","template":"Picking [something] up","placeholders":["pillow"]}, +{"id":"79933","label":"covering baloon with beanie","template":"Covering [something] with [something]","placeholders":["baloon","beanie"]}, +{"id":"101353","label":"pushing a can so it spins","template":"Pushing [something] so it spins","placeholders":["a can"]}, +{"id":"33128","label":"letting a bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a bottle"]}, +{"id":"69479","label":"lifting remote up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["remote"]}, +{"id":"109579","label":"dropping a matchstick behind a ball","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a ball"]}, +{"id":"53410","label":"dropping a pen onto carpet","template":"Dropping [something] onto [something]","placeholders":["a pen","carpet"]}, +{"id":"56020","label":"spinning a chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a chair"]}, +{"id":"30910","label":"trying but failing to attach santa hat to door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["santa hat","door"]}, +{"id":"19814","label":"pulling a tissue out of a box","template":"Pulling [something] out of [something]","placeholders":["a tissue","a box"]}, +{"id":"26435","label":"tilting folder cardboard with toy car on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder cardboard","toy car"]}, +{"id":"23843","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"41695","label":"pretending to be tearing a blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a blanket"]}, +{"id":"174542","label":"putting scissor, adapter and usb light on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["scissor","adapter","usb light"]}, +{"id":"62822","label":"removing mug, revealing ruler behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","ruler"]}, +{"id":"159088","label":"putting a steel container that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a steel container"]}, +{"id":"5570","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"11608","label":"holding a bible","template":"Holding [something]","placeholders":["a bible"]}, +{"id":"57586","label":"tilting book with coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","coin"]}, +{"id":"176790","label":"throwing a baby blanket","template":"Throwing [something]","placeholders":["a baby blanket"]}, +{"id":"19250","label":"poking charger so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["charger"]}, +{"id":"19690","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"3478","label":"moving keys up","template":"Moving [something] up","placeholders":["keys"]}, +{"id":"189646","label":"putting tangerine to group of tangerines","template":"Putting [something similar to other things that are already on the table]","placeholders":["tangerine to group of tangerines"]}, +{"id":"191791","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"44574","label":"attaching a lightning cable to a power adapter","template":"Attaching [something] to [something]","placeholders":["a lightning cable","a power adapter"]}, +{"id":"142547","label":"letting makeup bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["makeup bottle"]}, +{"id":"38109","label":"failing to put stapler into pin holder because stapler does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["stapler","pin holder","stapler"]}, +{"id":"146689","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"12104","label":"putting keys and spinner on the table","template":"Putting [something] and [something] on the table","placeholders":["keys","spinner"]}, +{"id":"68053","label":"dropping bottle onto kendama","template":"Dropping [something] onto [something]","placeholders":["bottle","kendama"]}, +{"id":"100418","label":"spilling water next to a pencil","template":"Spilling [something] next to [something]","placeholders":["water","a pencil"]}, +{"id":"139190","label":"turning the camera left while filming bottle","template":"Turning the camera left while filming [something]","placeholders":["bottle"]}, +{"id":"128319","label":"stuffing usb cable into bucket","template":"Stuffing [something] into [something]","placeholders":["usb cable","bucket"]}, +{"id":"169676","label":"hitting a bin with a paper toilet","template":"Hitting [something] with [something]","placeholders":["a bin","a paper toilet"]}, +{"id":"106347","label":"taking plastic glasses","template":"Taking [one of many similar things on the table]","placeholders":["plastic glasses"]}, +{"id":"38481","label":"covering a book with another book","template":"Covering [something] with [something]","placeholders":["a book","another book"]}, +{"id":"44366","label":"lifting up one end of clock without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["clock"]}, +{"id":"8414","label":"putting pebble into glass","template":"Putting [something] into [something]","placeholders":["pebble","glass"]}, +{"id":"130541","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"65740","label":"pushing stuffed toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stuffed toy"]}, +{"id":"189604","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"14333","label":"showing that a fork is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["a fork","a cup"]}, +{"id":"23135","label":"holding banana over paper","template":"Holding [something] over [something]","placeholders":["banana","paper"]}, +{"id":"81191","label":"pretending to put an envelope onto a bowl","template":"Pretending to put [something] onto [something]","placeholders":["an envelope","a bowl"]}, +{"id":"142638","label":"pushing can from right to left","template":"Pushing [something] from right to left","placeholders":["can"]}, +{"id":"112031","label":"covering ball with newspaper","template":"Covering [something] with [something]","placeholders":["ball","newspaper"]}, +{"id":"8518","label":"removing mug, revealing keys behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","keys"]}, +{"id":"106711","label":"putting pen onto diary","template":"Putting [something] onto [something]","placeholders":["pen","diary"]}, +{"id":"125726","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"77634","label":"plugging an electrical plug into an electrical outlet","template":"Plugging [something] into [something]","placeholders":["an electrical plug","an electrical outlet"]}, +{"id":"164800","label":"dropping spatula next to pan","template":"Dropping [something] next to [something]","placeholders":["spatula","pan"]}, +{"id":"75034","label":"pushing calculator from right to left","template":"Pushing [something] from right to left","placeholders":["calculator"]}, +{"id":"67651","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"37108","label":"twisting a pepper grinder","template":"Twisting [something]","placeholders":["a pepper grinder"]}, +{"id":"146281","label":"dropping pen next to bottle","template":"Dropping [something] next to [something]","placeholders":["pen","bottle"]}, +{"id":"133935","label":"pretending to put a cushion on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cushion"]}, +{"id":"23836","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"95340","label":"laying an egg on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["an egg"]}, +{"id":"91251","label":"trying but failing to attach cap to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cap","fridge"]}, +{"id":"132948","label":"showing puppies to the camera","template":"Showing [something] to the camera","placeholders":["puppies"]}, +{"id":"115557","label":"squeezing orange","template":"Squeezing [something]","placeholders":["orange"]}, +{"id":"77033","label":"throwing bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle"]}, +{"id":"44683","label":"moving away from battery with your camera","template":"Moving away from [something] with your camera","placeholders":["battery"]}, +{"id":"162135","label":"turning the camera downwards while filming highlighter","template":"Turning the camera downwards while filming [something]","placeholders":["highlighter"]}, +{"id":"37190","label":"putting candy on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["candy","table"]}, +{"id":"203782","label":"dropping phone next to pants","template":"Dropping [something] next to [something]","placeholders":["phone","pants"]}, +{"id":"85675","label":"lifting a surface with bowl on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["bowl"]}, +{"id":"175172","label":"lifting sketch pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["sketch pen"]}, +{"id":"194649","label":"moving a candle down","template":"Moving [something] down","placeholders":["a candle"]}, +{"id":"525","label":"dropping candle in front of box","template":"Dropping [something] in front of [something]","placeholders":["candle","box"]}, +{"id":"49031","label":"taking apple corer","template":"Taking [one of many similar things on the table]","placeholders":["apple corer"]}, +{"id":"43075","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"93371","label":"putting cassette into player","template":"Putting [something] into [something]","placeholders":["cassette","player"]}, +{"id":"76280","label":"showing that cardboard box is empty","template":"Showing that [something] is empty","placeholders":["cardboard box"]}, +{"id":"200190","label":"holding cup in front of dog","template":"Holding [something] in front of [something]","placeholders":["cup","dog"]}, +{"id":"28459","label":"spinning a ring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ring"]}, +{"id":"25948","label":"putting 4 books onto a plate","template":"Putting [number of] [something] onto [something]","placeholders":["4","books","a plate"]}, +{"id":"139468","label":"plugging chwrger into outlet","template":"Plugging [something] into [something]","placeholders":["chwrger","outlet"]}, +{"id":"27675","label":"moving watch towards the camera","template":"Moving [something] towards the camera","placeholders":["watch"]}, +{"id":"91942","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"66458","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"64664","label":"uncovering bag","template":"Uncovering [something]","placeholders":["bag"]}, +{"id":"62995","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"45641","label":"pretending or failing to wipe soap off of a wallet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["soap","a wallet"]}, +{"id":"110234","label":"lifting green colour bowl up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["green colour bowl"]}, +{"id":"84910","label":"pretending to put nail polish behind cup","template":"Pretending to put [something] behind [something]","placeholders":["nail polish","cup"]}, +{"id":"203336","label":"holding pen in front of roll of tape","template":"Holding [something] in front of [something]","placeholders":["pen","roll of tape"]}, +{"id":"208898","label":"pretending to pick plastic bag up","template":"Pretending to pick [something] up","placeholders":["plastic bag"]}, +{"id":"35249","label":"dropping torch next to shoe","template":"Dropping [something] next to [something]","placeholders":["torch","shoe"]}, +{"id":"114107","label":"pretending to be tearing ipad cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ipad cover"]}, +{"id":"71829","label":"laying 3d postit on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["3d postit"]}, +{"id":"89511","label":"showing a coin next to scissors","template":"Showing [something] next to [something]","placeholders":["a coin","scissors"]}, +{"id":"208993","label":"showing clock to the camera","template":"Showing [something] to the camera","placeholders":["clock"]}, +{"id":"136244","label":"taking paper knot out of glass","template":"Taking [something] out of [something]","placeholders":["paper knot","glass"]}, +{"id":"153487","label":"pretending to poke nail polish","template":"Pretending to poke [something]","placeholders":["nail polish"]}, +{"id":"207204","label":"moving microscope and coin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["microscope","coin"]}, +{"id":"7996","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"73625","label":"showing that water is inside a glass","template":"Showing that [something] is inside [something]","placeholders":["water","a glass"]}, +{"id":"16963","label":"pretending to take container from almirah","template":"Pretending to take [something] from [somewhere]","placeholders":["container","almirah"]}, +{"id":"67242","label":"covering box with cloth","template":"Covering [something] with [something]","placeholders":["box","cloth"]}, +{"id":"106378","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"134678","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"91948","label":"showing orange post-it to the camera","template":"Showing [something] to the camera","placeholders":["orange post-it"]}, +{"id":"192168","label":"closing waterbottle","template":"Closing [something]","placeholders":["waterbottle"]}, +{"id":"205826","label":"holding a pencil","template":"Holding [something]","placeholders":["a pencil"]}, +{"id":"171961","label":"throwing a wallet","template":"Throwing [something]","placeholders":["a wallet"]}, +{"id":"100919","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"219091","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"122743","label":"covering a cup with a book","template":"Covering [something] with [something]","placeholders":["a cup","a book"]}, +{"id":"97407","label":"moving away from water tape with your camera","template":"Moving away from [something] with your camera","placeholders":["water tape"]}, +{"id":"126852","label":"pulling a hairbrush from right to left","template":"Pulling [something] from right to left","placeholders":["a hairbrush"]}, +{"id":"72439","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"201780","label":"moving magnet away from magnet","template":"Moving [something] away from [something]","placeholders":["magnet","magnet"]}, +{"id":"70350","label":"showing cakes to the camera","template":"Showing [something] to the camera","placeholders":["cakes"]}, +{"id":"179514","label":"moving pen and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","phone"]}, +{"id":"79288","label":"putting new papers","template":"Putting [something similar to other things that are already on the table]","placeholders":["new papers"]}, +{"id":"151453","label":"putting 2 hairbands onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["2","hairbands","diary"]}, +{"id":"111686","label":"pretending to turn tissue box upside down","template":"Pretending to turn [something] upside down","placeholders":["tissue box"]}, +{"id":"35222","label":"pushing an envelope onto a lid","template":"Pushing [something] onto [something]","placeholders":["an envelope","a lid"]}, +{"id":"69744","label":"pretending to put a mug into a sink","template":"Pretending to put [something] into [something]","placeholders":["a mug","a sink"]}, +{"id":"3689","label":"wiping soap off of floor","template":"Wiping [something] off of [something]","placeholders":["soap","floor"]}, +{"id":"106321","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"26199","label":"piling candy mints up","template":"Piling [something] up","placeholders":["candy mints"]}, +{"id":"191525","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"118077","label":"plugging charger into the wall","template":"Plugging [something] into [something]","placeholders":["charger","the wall"]}, +{"id":"69096","label":"showing that bin is empty","template":"Showing that [something] is empty","placeholders":["bin"]}, +{"id":"68425","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"215010","label":"dropping lemon behind doll","template":"Dropping [something] behind [something]","placeholders":["lemon","doll"]}, +{"id":"158485","label":"moving eraser and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["eraser","pen"]}, +{"id":"210183","label":"pouring soda into cup","template":"Pouring [something] into [something]","placeholders":["soda","cup"]}, +{"id":"109456","label":"pouring tea into a glass","template":"Pouring [something] into [something]","placeholders":["tea","a glass"]}, +{"id":"61941","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"66776","label":"moving spoon up","template":"Moving [something] up","placeholders":["spoon"]}, +{"id":"170766","label":"holding a pen in front of the tablet","template":"Holding [something] in front of [something]","placeholders":["a pen","the tablet"]}, +{"id":"86490","label":"moving bag away from floor","template":"Moving [something] away from [something]","placeholders":["bag","floor"]}, +{"id":"116195","label":"pushing a glasses case so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a glasses case"]}, +{"id":"95974","label":"pretending to be tearing a tobacco packet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a tobacco packet"]}, +{"id":"159108","label":"throwing a soft toy in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a soft toy"]}, +{"id":"197923","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"43733","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"82859","label":"holding fork in front of plate","template":"Holding [something] in front of [something]","placeholders":["fork","plate"]}, +{"id":"50709","label":"plugging adaptor into plug","template":"Plugging [something] into [something]","placeholders":["adaptor","plug"]}, +{"id":"77440","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"4204","label":"pushing socks so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["socks"]}, +{"id":"127304","label":"lifting laptop with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["laptop","mobile phone"]}, +{"id":"51233","label":"spreading sugar onto paper","template":"Spreading [something] onto [something]","placeholders":["sugar","paper"]}, +{"id":"55263","label":"stuffing napkin into cup","template":"Stuffing [something] into [something]","placeholders":["napkin","cup"]}, +{"id":"108444","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"22285","label":"holding cup over tv","template":"Holding [something] over [something]","placeholders":["cup","tv"]}, +{"id":"74278","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"35962","label":"opening dishwasher","template":"Opening [something]","placeholders":["dishwasher"]}, +{"id":"848","label":"showing spoon behind pan","template":"Showing [something] behind [something]","placeholders":["spoon","pan"]}, +{"id":"188208","label":"spreading choclate ice cream onto the bread","template":"Spreading [something] onto [something]","placeholders":["choclate ice cream","the bread"]}, +{"id":"141123","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"7288","label":"taking stapler out of cookie box","template":"Taking [something] out of [something]","placeholders":["stapler","cookie box"]}, +{"id":"90334","label":"spinning blue lighter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["blue lighter"]}, +{"id":"206524","label":"plugging cable into laptop","template":"Plugging [something] into [something]","placeholders":["cable","laptop"]}, +{"id":"27141","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"17649","label":"moving glass and glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","glass"]}, +{"id":"124332","label":"moving pen and pencil closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","pencil"]}, +{"id":"103213","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"14575","label":"letting dog toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["dog toy"]}, +{"id":"76987","label":"dropping a coin behind a box","template":"Dropping [something] behind [something]","placeholders":["a coin","a box"]}, +{"id":"182605","label":"dropping ereaser into cup","template":"Dropping [something] into [something]","placeholders":["ereaser","cup"]}, +{"id":"26761","label":"pushing tissue box onto floor","template":"Pushing [something] onto [something]","placeholders":["tissue box","floor"]}, +{"id":"57326","label":"moving box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["box"]}, +{"id":"216172","label":"turning the camera upwards while filming one tea light candle","template":"Turning the camera upwards while filming [something]","placeholders":["one tea light candle"]}, +{"id":"47283","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"173729","label":"putting teacup on a surface","template":"Putting [something] on a surface","placeholders":["teacup"]}, +{"id":"30230","label":"moving incense stick up","template":"Moving [something] up","placeholders":["incense stick"]}, +{"id":"59376","label":"tipping card over","template":"Tipping [something] over","placeholders":["card"]}, +{"id":"115882","label":"moving camera away from dry erase board","template":"Moving [something] away from [something]","placeholders":["camera","dry erase board"]}, +{"id":"3907","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"41439","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"142572","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"118214","label":"pretending to put pen into cup","template":"Pretending to put [something] into [something]","placeholders":["pen","cup"]}, +{"id":"201755","label":"stuffing smarthphone into container","template":"Stuffing [something] into [something]","placeholders":["smarthphone","container"]}, +{"id":"76070","label":"tearing a leaf just a little bit","template":"Tearing [something] just a little bit","placeholders":["a leaf"]}, +{"id":"133389","label":"dropping a knife onto a plate","template":"Dropping [something] onto [something]","placeholders":["a knife","a plate"]}, +{"id":"33867","label":"showing cup next to ball","template":"Showing [something] next to [something]","placeholders":["cup","ball"]}, +{"id":"24815","label":"pulling glass from right to left","template":"Pulling [something] from right to left","placeholders":["glass"]}, +{"id":"202314","label":"tearing aluminium foil into two pieces","template":"Tearing [something] into two pieces","placeholders":["aluminium foil"]}, +{"id":"39687","label":"dropping candle into box","template":"Dropping [something] into [something]","placeholders":["candle","box"]}, +{"id":"37129","label":"moving usb stick up","template":"Moving [something] up","placeholders":["usb stick"]}, +{"id":"28170","label":"moving tv remote and baby spoon bottle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["tv remote","baby spoon bottle"]}, +{"id":"219073","label":"pushing foldable pocket knife so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["foldable pocket knife"]}, +{"id":"19982","label":"holding glue","template":"Holding [something]","placeholders":["glue"]}, +{"id":"181345","label":"pulling a short out of a sock","template":"Pulling [something] out of [something]","placeholders":["a short","a sock"]}, +{"id":"215687","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"24929","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"63853","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"62102","label":"pulling a box from behind of a wall","template":"Pulling [something] from behind of [something]","placeholders":["a box","a wall"]}, +{"id":"11178","label":"poking a hole into paper","template":"Poking a hole into [something soft]","placeholders":["paper"]}, +{"id":"146986","label":"uncovering a mouse","template":"Uncovering [something]","placeholders":["a mouse"]}, +{"id":"178422","label":"holding box in front of emergency light","template":"Holding [something] in front of [something]","placeholders":["box","emergency light"]}, +{"id":"134509","label":"letting car roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["car"]}, +{"id":"147122","label":"pushing bottle with pen","template":"Pushing [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"116934","label":"tilting book with board clip on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","board clip"]}, +{"id":"112391","label":"pouring milk into a cup","template":"Pouring [something] into [something]","placeholders":["milk","a cup"]}, +{"id":"68567","label":"pulling cup from behind of canister","template":"Pulling [something] from behind of [something]","placeholders":["cup","canister"]}, +{"id":"63756","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"110656","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"101813","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"14379","label":"covering paper with paper","template":"Covering [something] with [something]","placeholders":["paper","paper"]}, +{"id":"96438","label":"burying a plug in a blanket","template":"Burying [something] in [something]","placeholders":["a plug","a blanket"]}, +{"id":"175051","label":"tilting a video game case with a pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a video game case","a pencil"]}, +{"id":"47281","label":"moving pen closer to cup","template":"Moving [something] closer to [something]","placeholders":["pen","cup"]}, +{"id":"131466","label":"dryer sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["dryer sheet"]}, +{"id":"76735","label":"bending hanger until it breaks","template":"Bending [something] until it breaks","placeholders":["hanger"]}, +{"id":"86224","label":"twisting wash cloth","template":"Twisting [something]","placeholders":["wash cloth"]}, +{"id":"132792","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"29105","label":"taking card from cards","template":"Taking [one of many similar things on the table]","placeholders":["card from cards"]}, +{"id":"109474","label":"lifting a surface with wrist watch on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["wrist watch"]}, +{"id":"64157","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"87048","label":"folding dish cloth","template":"Folding [something]","placeholders":["dish cloth"]}, +{"id":"44374","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"18670","label":"throwing a toy dragon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a toy dragon"]}, +{"id":"37726","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"126083","label":"picking phone up","template":"Picking [something] up","placeholders":["phone"]}, +{"id":"68263","label":"holding a mouse","template":"Holding [something]","placeholders":["a mouse"]}, +{"id":"140426","label":"throwing a highlighter against a bottle","template":"Throwing [something] against [something]","placeholders":["a highlighter","a bottle"]}, +{"id":"168990","label":"moving teddy bear and stuffed toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["teddy bear","stuffed toy"]}, +{"id":"132944","label":"pretending to take box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["box","table"]}, +{"id":"167011","label":"stuffing tissue into shoe","template":"Stuffing [something] into [something]","placeholders":["tissue","shoe"]}, +{"id":"58448","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"64962","label":"moving tissue box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["tissue box"]}, +{"id":"157099","label":"turning the camera downwards while filming toy giraffe","template":"Turning the camera downwards while filming [something]","placeholders":["toy giraffe"]}, +{"id":"203238","label":"plugging cable into battery but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","battery"]}, +{"id":"165344","label":"poking blocks so that it falls over","template":"Poking [something] so that it falls over","placeholders":["blocks"]}, +{"id":"12301","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"150509","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"30826","label":"laying black spectacle box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["black spectacle box"]}, +{"id":"85113","label":"scooping suitcase up with hand","template":"Scooping [something] up with [something]","placeholders":["suitcase","hand"]}, +{"id":"203082","label":"holding remote","template":"Holding [something]","placeholders":["remote"]}, +{"id":"193316","label":"taking a binder clip out of a drawstring bag","template":"Taking [something] out of [something]","placeholders":["a binder clip","a drawstring bag"]}, +{"id":"22079","label":"putting a remote control on a surface","template":"Putting [something] on a surface","placeholders":["a remote control"]}, +{"id":"218666","label":"plugging usb into port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","port"]}, +{"id":"16629","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"210804","label":"putting pencils","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencils"]}, +{"id":"173393","label":"dropping a pin onto a box","template":"Dropping [something] onto [something]","placeholders":["a pin","a box"]}, +{"id":"134329","label":"poking a jewellry box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a jewellry box"]}, +{"id":"3043","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"192143","label":"moving ps4 controller up","template":"Moving [something] up","placeholders":["ps4 controller"]}, +{"id":"38583","label":"picking orange post-it up","template":"Picking [something] up","placeholders":["orange post-it"]}, +{"id":"198001","label":"moving sellotape down","template":"Moving [something] down","placeholders":["sellotape"]}, +{"id":"90311","label":"turning orange cup upside down","template":"Turning [something] upside down","placeholders":["orange cup"]}, +{"id":"211788","label":"covering a spoon with a cloth","template":"Covering [something] with [something]","placeholders":["a spoon","a cloth"]}, +{"id":"189476","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"54447","label":"pushing sticky notes cube so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["sticky notes cube"]}, +{"id":"147302","label":"covering screwdriver with paper","template":"Covering [something] with [something]","placeholders":["screwdriver","paper"]}, +{"id":"12303","label":"putting wood next to pillow","template":"Putting [something] next to [something]","placeholders":["wood","pillow"]}, +{"id":"196040","label":"holding a fork behind a glass","template":"Holding [something] behind [something]","placeholders":["a fork","a glass"]}, +{"id":"94351","label":"covering plastic tin with cloth","template":"Covering [something] with [something]","placeholders":["plastic tin","cloth"]}, +{"id":"37415","label":"putting cd cover that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cd cover"]}, +{"id":"22863","label":"moving a mobile down","template":"Moving [something] down","placeholders":["a mobile"]}, +{"id":"213383","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"193773","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"66676","label":"putting granola bar on a surface","template":"Putting [something] on a surface","placeholders":["granola bar"]}, +{"id":"11960","label":"putting a mushroom lamp on a surface","template":"Putting [something] on a surface","placeholders":["a mushroom lamp"]}, +{"id":"13824","label":"tearing sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet"]}, +{"id":"19813","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"113149","label":"pulling two ends of colour pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["colour pen"]}, +{"id":"24998","label":"lifting can with ball on it","template":"Lifting [something] with [something] on it","placeholders":["can","ball"]}, +{"id":"1985","label":"holding sock over small pillow","template":"Holding [something] over [something]","placeholders":["sock","small pillow"]}, +{"id":"70639","label":"putting a bottle on a surface","template":"Putting [something] on a surface","placeholders":["a bottle"]}, +{"id":"38104","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"18512","label":"putting 2 white board clips onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","white board clips","red pouch"]}, +{"id":"15688","label":"pouring water into flask","template":"Pouring [something] into [something]","placeholders":["water","flask"]}, +{"id":"58185","label":"pretending to poke battleship game","template":"Pretending to poke [something]","placeholders":["battleship game"]}, +{"id":"98583","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"90782","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"130223","label":"showing dates to the camera","template":"Showing [something] to the camera","placeholders":["dates"]}, +{"id":"89570","label":"tilting folder with scotch tape roll on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","scotch tape roll"]}, +{"id":"66960","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"111010","label":"dropping pen behind glass","template":"Dropping [something] behind [something]","placeholders":["pen","glass"]}, +{"id":"45257","label":"tipping a tissue box over","template":"Tipping [something] over","placeholders":["a tissue box"]}, +{"id":"93930","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"177788","label":"moving a ruler and masking tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ruler","masking tape"]}, +{"id":"214382","label":"lifting lotion tube up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["lotion tube"]}, +{"id":"27314","label":"putting pill bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["pill bottle"]}, +{"id":"32355","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"134760","label":"putting string into a jar","template":"Putting [something] into [something]","placeholders":["string","a jar"]}, +{"id":"28521","label":"moving black usb and silver usb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["black usb","silver usb"]}, +{"id":"101339","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"131038","label":"trying to pour water into glass cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass cup"]}, +{"id":"128519","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"106279","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"116932","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"197610","label":"holding wallet","template":"Holding [something]","placeholders":["wallet"]}, +{"id":"192259","label":"lifting bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["bottle"]}, +{"id":"18537","label":"tearing garlic into two pieces","template":"Tearing [something] into two pieces","placeholders":["garlic"]}, +{"id":"25146","label":"moving a bowl across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a bowl"]}, +{"id":"127415","label":"wiping liquid off of table","template":"Wiping [something] off of [something]","placeholders":["liquid","table"]}, +{"id":"146324","label":"moving key down","template":"Moving [something] down","placeholders":["key"]}, +{"id":"99400","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"116953","label":"turning the camera left while filming a fidget spinner","template":"Turning the camera left while filming [something]","placeholders":["a fidget spinner"]}, +{"id":"6841","label":"putting fork into mug","template":"Putting [something] into [something]","placeholders":["fork","mug"]}, +{"id":"178086","label":"holding highlighter pen behind fishbowl","template":"Holding [something] behind [something]","placeholders":["highlighter pen","fishbowl"]}, +{"id":"82588","label":"lifting water bottle with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["water bottle","mobile phone"]}, +{"id":"44093","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"218463","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"14041","label":"turning wicker basket upside down","template":"Turning [something] upside down","placeholders":["wicker basket"]}, +{"id":"217242","label":"pushing a battery from left to right","template":"Pushing [something] from left to right","placeholders":["a battery"]}, +{"id":"88893","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"106515","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"92375","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"54356","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"4943","label":"lifting mobile with mobile on it","template":"Lifting [something] with [something] on it","placeholders":["mobile","mobile"]}, +{"id":"14736","label":"piling coasters up","template":"Piling [something] up","placeholders":["coasters"]}, +{"id":"198597","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"211179","label":"uncovering smart watch","template":"Uncovering [something]","placeholders":["smart watch"]}, +{"id":"151141","label":"showing that a soupe plat is empty","template":"Showing that [something] is empty","placeholders":["a soupe plat"]}, +{"id":"145076","label":"pretending to take banana from fridge","template":"Pretending to take [something] from [somewhere]","placeholders":["banana","fridge"]}, +{"id":"166476","label":"pushing keys so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["keys"]}, +{"id":"103556","label":"stacking 4 blocks","template":"Stacking [number of] [something]","placeholders":["4","blocks"]}, +{"id":"74367","label":"moving a magnet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a magnet"]}, +{"id":"138733","label":"tilting a box with a toy on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a box","a toy"]}, +{"id":"107207","label":"pretending or failing to wipe crayon off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["crayon","whiteboard"]}, +{"id":"15225","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"105407","label":"dropping keys into bowl","template":"Dropping [something] into [something]","placeholders":["keys","bowl"]}, +{"id":"181923","label":"pushing a container off of a box","template":"Pushing [something] off of [something]","placeholders":["a container","a box"]}, +{"id":"150169","label":"wiping orange juice off of counter","template":"Wiping [something] off of [something]","placeholders":["orange juice","counter"]}, +{"id":"144541","label":"turning glas upside down","template":"Turning [something] upside down","placeholders":["glas"]}, +{"id":"89133","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"163952","label":"pretending to squeeze statue","template":"Pretending to squeeze [something]","placeholders":["statue"]}, +{"id":"145710","label":"lifting up one end of mobile phone, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["mobile phone"]}, +{"id":"148299","label":"putting notebook on a surface","template":"Putting [something] on a surface","placeholders":["notebook"]}, +{"id":"110875","label":"showing torch behind shoe","template":"Showing [something] behind [something]","placeholders":["torch","shoe"]}, +{"id":"107330","label":"tipping toothpick holder with toothpicks over, so toothpicks falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["toothpick holder","toothpicks","toothpicks"]}, +{"id":"41456","label":"moving away from doors with your camera","template":"Moving away from [something] with your camera","placeholders":["doors"]}, +{"id":"175282","label":"trying but failing to attach cover to box because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cover","box"]}, +{"id":"149999","label":"cup falling like a rock","template":"[Something] falling like a rock","placeholders":["cup"]}, +{"id":"170517","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"116390","label":"pushing plate from left to right","template":"Pushing [something] from left to right","placeholders":["plate"]}, +{"id":"72436","label":"putting a shot glass in front of a measuring cup","template":"Putting [something] in front of [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"180749","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"167476","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"206939","label":"pushing shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["shoe"]}, +{"id":"96769","label":"dropping a card behind a plate","template":"Dropping [something] behind [something]","placeholders":["a card","a plate"]}, +{"id":"1585","label":"throwing a top onto a surface","template":"Throwing [something] onto a surface","placeholders":["a top"]}, +{"id":"181022","label":"dropping a ball into a tube","template":"Dropping [something] into [something]","placeholders":["a ball","a tube"]}, +{"id":"92046","label":"holding toothbrush behind alarm clock","template":"Holding [something] behind [something]","placeholders":["toothbrush","alarm clock"]}, +{"id":"37559","label":"taking fork from holder","template":"Taking [something] from [somewhere]","placeholders":["fork","holder"]}, +{"id":"70282","label":"taking a cup out of a cooler.","template":"Taking [something] out of [something]","placeholders":["a cup","a cooler."]}, +{"id":"7434","label":"rolling a can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a can"]}, +{"id":"214528","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"143366","label":"pulling pasta out of jar","template":"Pulling [something] out of [something]","placeholders":["pasta","jar"]}, +{"id":"181146","label":"holding a spinner behind a box","template":"Holding [something] behind [something]","placeholders":["a spinner","a box"]}, +{"id":"83680","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"9739","label":"taking pen out of a bag","template":"Taking [something] out of [something]","placeholders":["pen","a bag"]}, +{"id":"83875","label":"dropping a card next to a plate","template":"Dropping [something] next to [something]","placeholders":["a card","a plate"]}, +{"id":"142727","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"143114","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"107951","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"6950","label":"pushing dental floss container so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["dental floss container"]}, +{"id":"21979","label":"turning paper upside down","template":"Turning [something] upside down","placeholders":["paper"]}, +{"id":"153968","label":"holding phone next to a bouguet","template":"Holding [something] next to [something]","placeholders":["phone","a bouguet"]}, +{"id":"213964","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"64096","label":"folding dollar bill","template":"Folding [something]","placeholders":["dollar bill"]}, +{"id":"211559","label":"tilting box with bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","bottle"]}, +{"id":"130052","label":"putting glue stick upright on the table","template":"Putting [something] upright on the table","placeholders":["glue stick"]}, +{"id":"111220","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"165863","label":"putting a peg upright on the table","template":"Putting [something] upright on the table","placeholders":["a peg"]}, +{"id":"80430","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"77222","label":"pulling granola bar from left to right","template":"Pulling [something] from left to right","placeholders":["granola bar"]}, +{"id":"181804","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"32705","label":"moving towel closer to towel","template":"Moving [something] closer to [something]","placeholders":["towel","towel"]}, +{"id":"162583","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"89594","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"34165","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"172183","label":"tearing a polythene cover into two pieces","template":"Tearing [something] into two pieces","placeholders":["a polythene cover"]}, +{"id":"111829","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"68538","label":"moving fork down","template":"Moving [something] down","placeholders":["fork"]}, +{"id":"214284","label":"pulling two ends of a rubberband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubberband"]}, +{"id":"173485","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"16329","label":"putting bottle similar to other bottles on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle similar to other bottles on the table"]}, +{"id":"192372","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"205405","label":"taking one of many pens","template":"Taking [one of many similar things on the table]","placeholders":["one of many pens"]}, +{"id":"28959","label":"dropping coin onto bowl","template":"Dropping [something] onto [something]","placeholders":["coin","bowl"]}, +{"id":"137079","label":"throwing a pillow against a table","template":"Throwing [something] against [something]","placeholders":["a pillow","a table"]}, +{"id":"124822","label":"a shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["a shoe"]}, +{"id":"215517","label":"attaching a charger to phone","template":"Attaching [something] to [something]","placeholders":["a charger","phone"]}, +{"id":"125352","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"463","label":"poking paint tube so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["paint tube"]}, +{"id":"75449","label":"pushing purple microfiber so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["purple microfiber"]}, +{"id":"59120","label":"sprinkling water onto paper","template":"Sprinkling [something] onto [something]","placeholders":["water","paper"]}, +{"id":"17328","label":"pushing charging adapter so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["charging adapter"]}, +{"id":"159519","label":"holding bag over ground","template":"Holding [something] over [something]","placeholders":["bag","ground"]}, +{"id":"130623","label":"pretending to sprinkle air onto cup of water","template":"Pretending to sprinkle air onto [something]","placeholders":["cup of water"]}, +{"id":"170760","label":"tilting a cup with a notebook on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cup","a notebook"]}, +{"id":"92401","label":"letting ball toy roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball toy"]}, +{"id":"189326","label":"putting blender onto base","template":"Putting [something] onto [something]","placeholders":["blender","base"]}, +{"id":"146297","label":"pushing mug from left to right","template":"Pushing [something] from left to right","placeholders":["mug"]}, +{"id":"181908","label":"tearing post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["post it note"]}, +{"id":"82817","label":"removing a bear can, revealing a cup behind","template":"Removing [something], revealing [something] behind","placeholders":["a bear can","a cup"]}, +{"id":"197725","label":"bending a chip until it breaks","template":"Bending [something] until it breaks","placeholders":["a chip"]}, +{"id":"162809","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"114357","label":"dropping bottle onto ground","template":"Dropping [something] onto [something]","placeholders":["bottle","ground"]}, +{"id":"151880","label":"putting book that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["book"]}, +{"id":"86635","label":"covering stepstool with blanket","template":"Covering [something] with [something]","placeholders":["stepstool","blanket"]}, +{"id":"1967","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"37883","label":"showing a key next to a cup","template":"Showing [something] next to [something]","placeholders":["a key","a cup"]}, +{"id":"12017","label":"poking a hole into silly putty","template":"Poking a hole into [something soft]","placeholders":["silly putty"]}, +{"id":"53081","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"132074","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"181220","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"166445","label":"throwing stuffed animal against wall","template":"Throwing [something] against [something]","placeholders":["stuffed animal","wall"]}, +{"id":"163078","label":"pushing bracelet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bracelet"]}, +{"id":"90517","label":"throwing wrist-watch against water-bottle","template":"Throwing [something] against [something]","placeholders":["wrist-watch","water-bottle"]}, +{"id":"86892","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"140872","label":"pretending to be tearing tablet case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tablet case"]}, +{"id":"80712","label":"moving scissors and remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["scissors","remote control"]}, +{"id":"134047","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"23994","label":"stacking 2 juice boxes","template":"Stacking [number of] [something]","placeholders":["2","juice boxes"]}, +{"id":"78574","label":"pouring coffee into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["coffee","a cup"]}, +{"id":"56105","label":"plugging a cord into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","an outlet"]}, +{"id":"102477","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"172812","label":"taking sandals from floor","template":"Taking [something] from [somewhere]","placeholders":["sandals","floor"]}, +{"id":"84955","label":"stuffing notebook into bookbag","template":"Stuffing [something] into [something]","placeholders":["notebook","bookbag"]}, +{"id":"86069","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"183503","label":"taking essential oil bottle","template":"Taking [one of many similar things on the table]","placeholders":["essential oil bottle"]}, +{"id":"120613","label":"pretending to be tearing my phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["my phone"]}, +{"id":"206654","label":"folding umbrella","template":"Folding [something]","placeholders":["umbrella"]}, +{"id":"135618","label":"moving lid of electric kettle","template":"Moving [part] of [something]","placeholders":["lid","electric kettle"]}, +{"id":"158143","label":"holding nail polish next to cup","template":"Holding [something] next to [something]","placeholders":["nail polish","cup"]}, +{"id":"173949","label":"putting pen into glass","template":"Putting [something] into [something]","placeholders":["pen","glass"]}, +{"id":"12671","label":"touching (without moving) knob of timer","template":"Touching (without moving) [part] of [something]","placeholders":["knob","timer"]}, +{"id":"191859","label":"squeezing iphone adapter","template":"Squeezing [something]","placeholders":["iphone adapter"]}, +{"id":"88931","label":"showing that popcorn tin is empty","template":"Showing that [something] is empty","placeholders":["popcorn tin"]}, +{"id":"157206","label":"ball being deflected from wardrobe door","template":"[Something] being deflected from [something]","placeholders":["ball","wardrobe door"]}, +{"id":"23868","label":"showing that pompoms is inside container","template":"Showing that [something] is inside [something]","placeholders":["pompoms","container"]}, +{"id":"99084","label":"moving newspaper up","template":"Moving [something] up","placeholders":["newspaper"]}, +{"id":"45447","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"140049","label":"covering box with napkin","template":"Covering [something] with [something]","placeholders":["box","napkin"]}, +{"id":"140464","label":"pushing steel pipe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["steel pipe"]}, +{"id":"5272","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"187821","label":"putting scissors into a box","template":"Putting [something] into [something]","placeholders":["scissors","a box"]}, +{"id":"134008","label":"closing perfume bottle","template":"Closing [something]","placeholders":["perfume bottle"]}, +{"id":"217460","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"155524","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"71437","label":"putting ball on a surface","template":"Putting [something] on a surface","placeholders":["ball"]}, +{"id":"76652","label":"wiping chocolate candy off of sink","template":"Wiping [something] off of [something]","placeholders":["chocolate candy","sink"]}, +{"id":"90644","label":"putting pink book next to yellowbook","template":"Putting [something] next to [something]","placeholders":["pink book","yellowbook"]}, +{"id":"197222","label":"holding glove over plate","template":"Holding [something] over [something]","placeholders":["glove","plate"]}, +{"id":"91726","label":"twisting (wringing) a dish cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a dish cloth"]}, +{"id":"1586","label":"pretending to pour water out of a plastic container, but the container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a plastic container","the container"]}, +{"id":"187060","label":"pushing roll of paper so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["roll of paper"]}, +{"id":"144118","label":"holding purple container over notecard","template":"Holding [something] over [something]","placeholders":["purple container","notecard"]}, +{"id":"76290","label":"holding toy car next to clip","template":"Holding [something] next to [something]","placeholders":["toy car","clip"]}, +{"id":"194012","label":"pushing a fork so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a fork"]}, +{"id":"87826","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"55138","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"26017","label":"dropping a keybound into a glas","template":"Dropping [something] into [something]","placeholders":["a keybound","a glas"]}, +{"id":"104134","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"179100","label":"holding book over laptop","template":"Holding [something] over [something]","placeholders":["book","laptop"]}, +{"id":"167092","label":"pushing tape roll so it spins","template":"Pushing [something] so it spins","placeholders":["tape roll"]}, +{"id":"106042","label":"uncovering electronic component","template":"Uncovering [something]","placeholders":["electronic component"]}, +{"id":"89774","label":"turning the camera left while filming violin","template":"Turning the camera left while filming [something]","placeholders":["violin"]}, +{"id":"55799","label":"pushing remote control from right to left","template":"Pushing [something] from right to left","placeholders":["remote control"]}, +{"id":"131321","label":"moving toffee box away from the camera","template":"Moving [something] away from the camera","placeholders":["toffee box"]}, +{"id":"213858","label":"plugging phone wire into phone","template":"Plugging [something] into [something]","placeholders":["phone wire","phone"]}, +{"id":"109320","label":"tipping cup with peppermints over, so peppermints falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","peppermints","peppermints"]}, +{"id":"130117","label":"pulling a plastic can from left to right","template":"Pulling [something] from left to right","placeholders":["a plastic can"]}, +{"id":"103182","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"45141","label":"hitting a pair of sunglasses with a large wooden spoon","template":"Hitting [something] with [something]","placeholders":["a pair of sunglasses","a large wooden spoon"]}, +{"id":"34542","label":"moving big marble and small marble so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["big marble","small marble"]}, +{"id":"88030","label":"showing green bowl to the camera","template":"Showing [something] to the camera","placeholders":["green bowl"]}, +{"id":"145731","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"68482","label":"putting clips into a container","template":"Putting [something] into [something]","placeholders":["clips","a container"]}, +{"id":"19268","label":"putting spoon","template":"Putting [something similar to other things that are already on the table]","placeholders":["spoon"]}, +{"id":"51687","label":"moving small pillow and iphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["small pillow","iphone"]}, +{"id":"127459","label":"holding coke zero in front of keurig","template":"Holding [something] in front of [something]","placeholders":["coke zero","keurig"]}, +{"id":"9995","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"85696","label":"picking something up","template":"Picking [something] up","placeholders":["something"]}, +{"id":"54662","label":"lifting bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["bottle"]}, +{"id":"110898","label":"putting fragrance on a surface","template":"Putting [something] on a surface","placeholders":["fragrance"]}, +{"id":"115553","label":"holding scissors","template":"Holding [something]","placeholders":["scissors"]}, +{"id":"68808","label":"putting the phone into the box","template":"Putting [something] into [something]","placeholders":["the phone","the box"]}, +{"id":"24930","label":"tilting diary with cutting plier on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["diary","cutting plier"]}, +{"id":"204029","label":"covering battery with cookie box lid","template":"Covering [something] with [something]","placeholders":["battery","cookie box lid"]}, +{"id":"107660","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"74375","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"210088","label":"dropping cell phone onto blanket","template":"Dropping [something] onto [something]","placeholders":["cell phone","blanket"]}, +{"id":"153319","label":"poking a stack of toys so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["toys"]}, +{"id":"96555","label":"attaching a cap to a bottle of perfume","template":"Attaching [something] to [something]","placeholders":["a cap","a bottle of perfume"]}, +{"id":"200667","label":"pushing white envelope from right to left","template":"Pushing [something] from right to left","placeholders":["white envelope"]}, +{"id":"11752","label":"tipping paint can over","template":"Tipping [something] over","placeholders":["paint can"]}, +{"id":"83572","label":"putting a shoe onto a math book","template":"Putting [something] onto [something]","placeholders":["a shoe","a math book"]}, +{"id":"18905","label":"turning the camera right while filming ladder","template":"Turning the camera right while filming [something]","placeholders":["ladder"]}, +{"id":"52036","label":"moving eraser closer to sharpener","template":"Moving [something] closer to [something]","placeholders":["eraser","sharpener"]}, +{"id":"36265","label":"taking one bottle","template":"Taking [one of many similar things on the table]","placeholders":["one bottle"]}, +{"id":"63280","label":"picking spoon up","template":"Picking [something] up","placeholders":["spoon"]}, +{"id":"185128","label":"hitting toy zelda with ruler","template":"Hitting [something] with [something]","placeholders":["toy zelda","ruler"]}, +{"id":"47249","label":"moving food container away from the camera","template":"Moving [something] away from the camera","placeholders":["food container"]}, +{"id":"149527","label":"showing clip next to the bangle","template":"Showing [something] next to [something]","placeholders":["clip","the bangle"]}, +{"id":"188682","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"128743","label":"putting notebook next to piggy bank","template":"Putting [something] next to [something]","placeholders":["notebook","piggy bank"]}, +{"id":"31228","label":"moving a match box towards the camera","template":"Moving [something] towards the camera","placeholders":["a match box"]}, +{"id":"166008","label":"pretending to scoop water up with cup","template":"Pretending to scoop [something] up with [something]","placeholders":["water","cup"]}, +{"id":"210570","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"147609","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"95660","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"81115","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"99336","label":"moving cup closer to mug","template":"Moving [something] closer to [something]","placeholders":["cup","mug"]}, +{"id":"107965","label":"pushing paper punch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["paper punch"]}, +{"id":"38120","label":"pouring something into something until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["something","something"]}, +{"id":"89512","label":"putting 2 wrist watch onto handkerchief","template":"Putting [number of] [something] onto [something]","placeholders":["2","wrist watch","handkerchief"]}, +{"id":"196133","label":"putting mug in front of rubber","template":"Putting [something] in front of [something]","placeholders":["mug","rubber"]}, +{"id":"138950","label":"letting water bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["water bottle"]}, +{"id":"220794","label":"pretending or trying and failing to twist cardboard","template":"Pretending or trying and failing to twist [something]","placeholders":["cardboard"]}, +{"id":"24020","label":"plugging a plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","an outlet"]}, +{"id":"111253","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"206082","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"71283","label":"bending an ointment tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an ointment tube"]}, +{"id":"126955","label":"pulling white candle from left to right","template":"Pulling [something] from left to right","placeholders":["white candle"]}, +{"id":"183252","label":"rolling a spray can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray can"]}, +{"id":"4955","label":"hair comb falling like a rock","template":"[Something] falling like a rock","placeholders":["hair comb"]}, +{"id":"194609","label":"turning the camera right while filming picture","template":"Turning the camera right while filming [something]","placeholders":["picture"]}, +{"id":"114003","label":"putting candle on a surface","template":"Putting [something] on a surface","placeholders":["candle"]}, +{"id":"144789","label":"putting phone in front of remote","template":"Putting [something] in front of [something]","placeholders":["phone","remote"]}, +{"id":"200621","label":"covering a teddy bear with a bandanna","template":"Covering [something] with [something]","placeholders":["a teddy bear","a bandanna"]}, +{"id":"128221","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"183531","label":"attaching sheep bottom to sheep head","template":"Attaching [something] to [something]","placeholders":["sheep bottom","sheep head"]}, +{"id":"220502","label":"taking packet from chair","template":"Taking [something] from [somewhere]","placeholders":["packet","chair"]}, +{"id":"166425","label":"soft ball falling like a rock","template":"[Something] falling like a rock","placeholders":["soft ball"]}, +{"id":"206639","label":"moving book and lotion closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","lotion"]}, +{"id":"56951","label":"moving bold marker pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bold marker pen"]}, +{"id":"103427","label":"pulling a charger from behind of a teddy bear","template":"Pulling [something] from behind of [something]","placeholders":["a charger","a teddy bear"]}, +{"id":"22564","label":"opening new tab in web browser","template":"Opening [something]","placeholders":["new tab in web browser"]}, +{"id":"190590","label":"putting bottle in front of glass","template":"Putting [something] in front of [something]","placeholders":["bottle","glass"]}, +{"id":"149310","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"140548","label":"lifting box with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["box","bottle"]}, +{"id":"94333","label":"taking crayons out of crayon box","template":"Taking [something] out of [something]","placeholders":["crayons","crayon box"]}, +{"id":"111670","label":"tilting a hand with a rubber on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a hand","a rubber"]}, +{"id":"66846","label":"trying to bend screwdriver so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["screwdriver"]}, +{"id":"115115","label":"moving yellow colour marker pen down","template":"Moving [something] down","placeholders":["yellow colour marker pen"]}, +{"id":"146095","label":"sprinkling nail varnish onto paper","template":"Sprinkling [something] onto [something]","placeholders":["nail varnish","paper"]}, +{"id":"44710","label":"burying coin in powder","template":"Burying [something] in [something]","placeholders":["coin","powder"]}, +{"id":"16188","label":"pulling two ends of waste plastic water pocket but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["waste plastic water pocket"]}, +{"id":"212010","label":"taking egg","template":"Taking [one of many similar things on the table]","placeholders":["egg"]}, +{"id":"102105","label":"pulling nail cutter from right to left","template":"Pulling [something] from right to left","placeholders":["nail cutter"]}, +{"id":"35185","label":"showing that yellow colour container is empty","template":"Showing that [something] is empty","placeholders":["yellow colour container"]}, +{"id":"34130","label":"plugging usb charger into plug converter","template":"Plugging [something] into [something]","placeholders":["usb charger","plug converter"]}, +{"id":"117470","label":"spinning ballpen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ballpen"]}, +{"id":"78968","label":"putting coin into mug","template":"Putting [something] into [something]","placeholders":["coin","mug"]}, +{"id":"116450","label":"showing dinosaur prototype to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur prototype"]}, +{"id":"205672","label":"pretending to pick tape dispenser up","template":"Pretending to pick [something] up","placeholders":["tape dispenser"]}, +{"id":"116695","label":"trying but failing to attach lego man to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["lego man","wall"]}, +{"id":"74931","label":"putting plastic box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["plastic box"]}, +{"id":"13251","label":"showing that khaki is inside bowl","template":"Showing that [something] is inside [something]","placeholders":["khaki","bowl"]}, +{"id":"159158","label":"taking a rubberband","template":"Taking [one of many similar things on the table]","placeholders":["a rubberband"]}, +{"id":"126929","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"124382","label":"turning the camera downwards while filming toy idol","template":"Turning the camera downwards while filming [something]","placeholders":["toy idol"]}, +{"id":"64431","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"134169","label":"putting shoe, pen bag and lipstick on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["shoe","pen bag","lipstick"]}, +{"id":"121060","label":"holding water bottle flip next to thermos bottle","template":"Holding [something] next to [something]","placeholders":["water bottle flip","thermos bottle"]}, +{"id":"2456","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"216202","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"144417","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"124406","label":"moving cellphone away from tablet","template":"Moving [something] away from [something]","placeholders":["cellphone","tablet"]}, +{"id":"18508","label":"dropping a peg behind a cup","template":"Dropping [something] behind [something]","placeholders":["a peg","a cup"]}, +{"id":"129090","label":"stuffing laundry into a basket","template":"Stuffing [something] into [something]","placeholders":["laundry","a basket"]}, +{"id":"20293","label":"pulling two ends of spoon but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["spoon"]}, +{"id":"123372","label":"pretending or failing to wipe sauce off of hummus container","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["sauce","hummus container"]}, +{"id":"98825","label":"dropping a matchbox next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a spoon"]}, +{"id":"141570","label":"uncovering scissors","template":"Uncovering [something]","placeholders":["scissors"]}, +{"id":"108403","label":"lifting up one end of bicycle, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bicycle"]}, +{"id":"106638","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"197487","label":"pushing green purse from left to right","template":"Pushing [something] from left to right","placeholders":["green purse"]}, +{"id":"163830","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"130587","label":"attaching pen to pen cap","template":"Attaching [something] to [something]","placeholders":["pen","pen cap"]}, +{"id":"116590","label":"pretending to take a vessel from vessel stock","template":"Pretending to take [something] from [somewhere]","placeholders":["a vessel","vessel stock"]}, +{"id":"94830","label":"pretending to pick earring up","template":"Pretending to pick [something] up","placeholders":["earring"]}, +{"id":"165685","label":"holding a peg over a box","template":"Holding [something] over [something]","placeholders":["a peg","a box"]}, +{"id":"177434","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"138944","label":"pretending or failing to wipe dirt off of a face","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","a face"]}, +{"id":"38879","label":"closing container","template":"Closing [something]","placeholders":["container"]}, +{"id":"14653","label":"pushing remote control so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["remote control"]}, +{"id":"132617","label":"moving basket and computer mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["basket","computer mouse"]}, +{"id":"99215","label":"trying to bend a spoon so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a spoon"]}, +{"id":"71182","label":"putting quarter into lid","template":"Putting [something] into [something]","placeholders":["quarter","lid"]}, +{"id":"150288","label":"putting a key into a lock","template":"Putting [something] into [something]","placeholders":["a key","a lock"]}, +{"id":"16981","label":"tilting a block with an apple on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a block","an apple"]}, +{"id":"44543","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"199515","label":"spilling juice onto surface","template":"Spilling [something] onto [something]","placeholders":["juice","surface"]}, +{"id":"159628","label":"moving paper closer to wallet","template":"Moving [something] closer to [something]","placeholders":["paper","wallet"]}, +{"id":"36630","label":"covering toy with bowl","template":"Covering [something] with [something]","placeholders":["toy","bowl"]}, +{"id":"136263","label":"throwing deodorant against pillow","template":"Throwing [something] against [something]","placeholders":["deodorant","pillow"]}, +{"id":"9705","label":"pulling rubix cube from right to left","template":"Pulling [something] from right to left","placeholders":["rubix cube"]}, +{"id":"111459","label":"putting flower, pen and watch on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["flower","pen","watch"]}, +{"id":"145045","label":"dropping lemon onto cutting board","template":"Dropping [something] onto [something]","placeholders":["lemon","cutting board"]}, +{"id":"220639","label":"approaching adaptor with your camera","template":"Approaching [something] with your camera","placeholders":["adaptor"]}, +{"id":"27224","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"113622","label":"showing that a plastic bag is inside a washer","template":"Showing that [something] is inside [something]","placeholders":["a plastic bag","a washer"]}, +{"id":"170461","label":"pushing green headlight from right to left","template":"Pushing [something] from right to left","placeholders":["green headlight"]}, +{"id":"184917","label":"moving pencil and ballpen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pencil","ballpen"]}, +{"id":"84107","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"69936","label":"putting a minion on the edge of a rubix cube so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a minion","a rubix cube"]}, +{"id":"131663","label":"letting a small container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a small container"]}, +{"id":"106175","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"61198","label":"pouring water onto bathing soap","template":"Pouring [something] onto [something]","placeholders":["water","bathing soap"]}, +{"id":"13825","label":"putting marker into cup","template":"Putting [something] into [something]","placeholders":["marker","cup"]}, +{"id":"184641","label":"trying but failing to attach a note to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a note","the wall"]}, +{"id":"142231","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"127219","label":"putting pen into mug","template":"Putting [something] into [something]","placeholders":["pen","mug"]}, +{"id":"119886","label":"throwing spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["spoon"]}, +{"id":"43830","label":"scooping chocolate powder up with spoon","template":"Scooping [something] up with [something]","placeholders":["chocolate powder","spoon"]}, +{"id":"161120","label":"pretending to turn subglasses upside down","template":"Pretending to turn [something] upside down","placeholders":["subglasses"]}, +{"id":"192169","label":"plugging plug into wall outlet","template":"Plugging [something] into [something]","placeholders":["plug","wall outlet"]}, +{"id":"14702","label":"plugging bulb into wall receptacle","template":"Plugging [something] into [something]","placeholders":["bulb","wall receptacle"]}, +{"id":"93959","label":"pretending to sprinkle air onto a bowl","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl"]}, +{"id":"143331","label":"holding cup in front of picture","template":"Holding [something] in front of [something]","placeholders":["cup","picture"]}, +{"id":"12024","label":"dropping a lime into a bowl","template":"Dropping [something] into [something]","placeholders":["a lime","a bowl"]}, +{"id":"13176","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"206736","label":"pretending to take mobile phone from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["mobile phone","floor"]}, +{"id":"161659","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"113311","label":"attaching a magnet to a fridge","template":"Attaching [something] to [something]","placeholders":["a magnet","a fridge"]}, +{"id":"109098","label":"taking tomato","template":"Taking [one of many similar things on the table]","placeholders":["tomato"]}, +{"id":"57457","label":"letting yellow marker pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["yellow marker pen"]}, +{"id":"101228","label":"lifting spoon with cap on it","template":"Lifting [something] with [something] on it","placeholders":["spoon","cap"]}, +{"id":"61207","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"30461","label":"pulling two ends of hair tie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair tie"]}, +{"id":"11795","label":"lifting a surface with scissors on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["scissors"]}, +{"id":"72925","label":"pulling a marker out of a pencil holder","template":"Pulling [something] out of [something]","placeholders":["a marker","a pencil holder"]}, +{"id":"40411","label":"taking bottle","template":"Taking [one of many similar things on the table]","placeholders":["bottle"]}, +{"id":"212650","label":"hitting stone with hammer","template":"Hitting [something] with [something]","placeholders":["stone","hammer"]}, +{"id":"185946","label":"putting thread on the edge of cardboard so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["thread","cardboard"]}, +{"id":"54087","label":"putting 2 white spoons onto duster","template":"Putting [number of] [something] onto [something]","placeholders":["2","white spoons","duster"]}, +{"id":"153558","label":"plugging usb into block but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","block"]}, +{"id":"183559","label":"putting whistle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["whistle"]}, +{"id":"21755","label":"lifting up one end of pillow without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pillow"]}, +{"id":"220346","label":"squeezing transparent, plastic toy ball","template":"Squeezing [something]","placeholders":["transparent, plastic toy ball"]}, +{"id":"189194","label":"showing that food is inside microwave oven","template":"Showing that [something] is inside [something]","placeholders":["food","microwave oven"]}, +{"id":"95118","label":"putting pen into tray","template":"Putting [something] into [something]","placeholders":["pen","tray"]}, +{"id":"182000","label":"lifting up one end of comb without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["comb"]}, +{"id":"5372","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"7266","label":"moving a jar and another jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a jar","another jar"]}, +{"id":"55629","label":"putting a bobby pin upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a bobby pin"]}, +{"id":"183182","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"174766","label":"covering toy idol with black pouch","template":"Covering [something] with [something]","placeholders":["toy idol","black pouch"]}, +{"id":"109267","label":"pushing a box with a pencil","template":"Pushing [something] with [something]","placeholders":["a box","a pencil"]}, +{"id":"47665","label":"uncovering spoon","template":"Uncovering [something]","placeholders":["spoon"]}, +{"id":"155363","label":"toy falling like a rock","template":"[Something] falling like a rock","placeholders":["toy"]}, +{"id":"147245","label":"letting a coconut roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a coconut"]}, +{"id":"48456","label":"pulling remote from right to left","template":"Pulling [something] from right to left","placeholders":["remote"]}, +{"id":"69916","label":"tilting a frying-pan with a fish filet on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a frying-pan","a fish filet"]}, +{"id":"208876","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"64518","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"182619","label":"tilting wallet with tac case on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["wallet","tac case"]}, +{"id":"134711","label":"putting apple, spoon and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["apple","spoon","cup"]}, +{"id":"84442","label":"tilting a box with an eraser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a box","an eraser"]}, +{"id":"25434","label":"poking a ukelele so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a ukelele"]}, +{"id":"118720","label":"plugging cable into wall socket","template":"Plugging [something] into [something]","placeholders":["cable","wall socket"]}, +{"id":"23720","label":"pushing phone from right to left","template":"Pushing [something] from right to left","placeholders":["phone"]}, +{"id":"25683","label":"putting keys onto bag","template":"Putting [something] onto [something]","placeholders":["keys","bag"]}, +{"id":"37453","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"99815","label":"moving nail polish bottle and post it notes closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["nail polish bottle","post it notes"]}, +{"id":"109499","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"73994","label":"holding envelope behind cup","template":"Holding [something] behind [something]","placeholders":["envelope","cup"]}, +{"id":"9668","label":"stuffing rice into a bowl","template":"Stuffing [something] into [something]","placeholders":["rice","a bowl"]}, +{"id":"56129","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"55227","label":"poking a clear plastic cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a clear plastic cup"]}, +{"id":"98080","label":"putting the cup behind bowl","template":"Putting [something] behind [something]","placeholders":["the cup","bowl"]}, +{"id":"149058","label":"tearing advertisement into two pieces","template":"Tearing [something] into two pieces","placeholders":["advertisement"]}, +{"id":"71351","label":"pouring soy sauce into a glass","template":"Pouring [something] into [something]","placeholders":["soy sauce","a glass"]}, +{"id":"165072","label":"hitting hand sanitizer with straw","template":"Hitting [something] with [something]","placeholders":["hand sanitizer","straw"]}, +{"id":"71321","label":"twisting a gait belt","template":"Twisting [something]","placeholders":["a gait belt"]}, +{"id":"111063","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"209791","label":"plugging a plug into an electrical power strip","template":"Plugging [something] into [something]","placeholders":["a plug","an electrical power strip"]}, +{"id":"109375","label":"holding chocolate over mobile","template":"Holding [something] over [something]","placeholders":["chocolate","mobile"]}, +{"id":"177715","label":"putting camera clamp onto white note","template":"Putting [something] onto [something]","placeholders":["camera clamp","white note"]}, +{"id":"163230","label":"pushing trash can from left to right","template":"Pushing [something] from left to right","placeholders":["trash can"]}, +{"id":"89019","label":"tearing card into two pieces","template":"Tearing [something] into two pieces","placeholders":["card"]}, +{"id":"189832","label":"lifting plate with glove on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glove"]}, +{"id":"76871","label":"pushing a bag so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bag"]}, +{"id":"135765","label":"putting glas on a surface","template":"Putting [something] on a surface","placeholders":["glas"]}, +{"id":"140944","label":"foil paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["foil paper"]}, +{"id":"149651","label":"pushing shoe box from left to right","template":"Pushing [something] from left to right","placeholders":["shoe box"]}, +{"id":"47752","label":"wiping liquid off of a table","template":"Wiping [something] off of [something]","placeholders":["liquid","a table"]}, +{"id":"138799","label":"throwing cup in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cup"]}, +{"id":"154635","label":"dropping ball in front of box","template":"Dropping [something] in front of [something]","placeholders":["ball","box"]}, +{"id":"121865","label":"moving clip up","template":"Moving [something] up","placeholders":["clip"]}, +{"id":"57161","label":"twisting a scarf","template":"Twisting [something]","placeholders":["a scarf"]}, +{"id":"41760","label":"pouring water onto a bowl","template":"Pouring [something] onto [something]","placeholders":["water","a bowl"]}, +{"id":"25126","label":"putting ring onto auto toy","template":"Putting [something] onto [something]","placeholders":["ring","auto toy"]}, +{"id":"202338","label":"pulling two ends of rubber-sheet so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber-sheet"]}, +{"id":"114606","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"215820","label":"uncovering mug","template":"Uncovering [something]","placeholders":["mug"]}, +{"id":"94234","label":"pretending to pick controller up","template":"Pretending to pick [something] up","placeholders":["controller"]}, +{"id":"83363","label":"unfolding shorts","template":"Unfolding [something]","placeholders":["shorts"]}, +{"id":"97909","label":"holding headphones over hand","template":"Holding [something] over [something]","placeholders":["headphones","hand"]}, +{"id":"130852","label":"pouring water out of bucket","template":"Pouring [something] out of [something]","placeholders":["water","bucket"]}, +{"id":"159965","label":"holding a glove over a bucket","template":"Holding [something] over [something]","placeholders":["a glove","a bucket"]}, +{"id":"125893","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"22721","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"114340","label":"twisting a bandanna","template":"Twisting [something]","placeholders":["a bandanna"]}, +{"id":"99616","label":"putting cds into basket","template":"Putting [something] into [something]","placeholders":["cds","basket"]}, +{"id":"84238","label":"holding a wallet over the bottle","template":"Holding [something] over [something]","placeholders":["a wallet","the bottle"]}, +{"id":"187253","label":"putting apple and khaki on the table","template":"Putting [something] and [something] on the table","placeholders":["apple","khaki"]}, +{"id":"202896","label":"dropping pen onto tea towel","template":"Dropping [something] onto [something]","placeholders":["pen","tea towel"]}, +{"id":"113466","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"191100","label":"putting pen onto notebook","template":"Putting [something] onto [something]","placeholders":["pen","notebook"]}, +{"id":"147281","label":"approaching generator set with your camera","template":"Approaching [something] with your camera","placeholders":["generator set"]}, +{"id":"136471","label":"putting candy","template":"Putting [something similar to other things that are already on the table]","placeholders":["candy"]}, +{"id":"164742","label":"dropping a card in front of a container","template":"Dropping [something] in front of [something]","placeholders":["a card","a container"]}, +{"id":"1919","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"190624","label":"uncovering glue stick","template":"Uncovering [something]","placeholders":["glue stick"]}, +{"id":"55537","label":"spreading perfume onto air","template":"Spreading [something] onto [something]","placeholders":["perfume","air"]}, +{"id":"191792","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"94881","label":"pretending or trying and failing to twist jar lid","template":"Pretending or trying and failing to twist [something]","placeholders":["jar lid"]}, +{"id":"163986","label":"spilling water onto large bowl","template":"Spilling [something] onto [something]","placeholders":["water","large bowl"]}, +{"id":"107787","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"169169","label":"holding water bottle next to iced coffee cup","template":"Holding [something] next to [something]","placeholders":["water bottle","iced coffee cup"]}, +{"id":"125679","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"158480","label":"moving toy away from box","template":"Moving [something] away from [something]","placeholders":["toy","box"]}, +{"id":"218067","label":"wiping dust off of phone","template":"Wiping [something] off of [something]","placeholders":["dust","phone"]}, +{"id":"128842","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"167009","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"15534","label":"rolling a polished stone on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a polished stone"]}, +{"id":"71831","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"67254","label":"moving a keyset away from the camera","template":"Moving [something] away from the camera","placeholders":["a keyset"]}, +{"id":"197960","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"188271","label":"holding phone over pants","template":"Holding [something] over [something]","placeholders":["phone","pants"]}, +{"id":"160075","label":"pretending to open the wallet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the wallet"]}, +{"id":"137210","label":"moving nailpolish up","template":"Moving [something] up","placeholders":["nailpolish"]}, +{"id":"209024","label":"moving sheild closer to drum","template":"Moving [something] closer to [something]","placeholders":["sheild","drum"]}, +{"id":"15038","label":"uncovering a book","template":"Uncovering [something]","placeholders":["a book"]}, +{"id":"186817","label":"spinning coaster so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coaster"]}, +{"id":"85816","label":"hitting a table with a shoe","template":"Hitting [something] with [something]","placeholders":["a table","a shoe"]}, +{"id":"62056","label":"pretending to put glue stick on a surface","template":"Pretending to put [something] on a surface","placeholders":["glue stick"]}, +{"id":"4701","label":"squeezing balls","template":"Squeezing [something]","placeholders":["balls"]}, +{"id":"77768","label":"moving a box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a box"]}, +{"id":"48172","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"87488","label":"picking shoe polish brush up","template":"Picking [something] up","placeholders":["shoe polish brush"]}, +{"id":"111424","label":"moving a lid across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a lid"]}, +{"id":"146707","label":"taking battery","template":"Taking [one of many similar things on the table]","placeholders":["battery"]}, +{"id":"80439","label":"moving bottle and water container away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","water container"]}, +{"id":"192204","label":"putting a wooden block on a surface","template":"Putting [something] on a surface","placeholders":["a wooden block"]}, +{"id":"13208","label":"bending pen until it breaks","template":"Bending [something] until it breaks","placeholders":["pen"]}, +{"id":"38204","label":"covering a glass with a tea towel","template":"Covering [something] with [something]","placeholders":["a glass","a tea towel"]}, +{"id":"205544","label":"holding pen in front of watch","template":"Holding [something] in front of [something]","placeholders":["pen","watch"]}, +{"id":"70974","label":"showing pen drive behind pincer","template":"Showing [something] behind [something]","placeholders":["pen drive","pincer"]}, +{"id":"191873","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"39759","label":"lifting up one end of cone shape object without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["cone shape object"]}, +{"id":"9894","label":"putting a spirometer upright on the table","template":"Putting [something] upright on the table","placeholders":["a spirometer"]}, +{"id":"106604","label":"putting a bottle on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bottle on the table"]}, +{"id":"207781","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"165780","label":"moving a coin closer to a box","template":"Moving [something] closer to [something]","placeholders":["a coin","a box"]}, +{"id":"171792","label":"twisting cap off pill bottle","template":"Twisting [something]","placeholders":["cap off pill bottle"]}, +{"id":"29514","label":"holding something next to something","template":"Holding [something] next to [something]","placeholders":["something","something"]}, +{"id":"197013","label":"pretending to put small hand gel on a surface","template":"Pretending to put [something] on a surface","placeholders":["small hand gel"]}, +{"id":"219659","label":"hitting bottle beer with bottle water","template":"Hitting [something] with [something]","placeholders":["bottle beer","bottle water"]}, +{"id":"88959","label":"throwing usb in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["usb"]}, +{"id":"212762","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"8161","label":"poking a bag so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bag"]}, +{"id":"184849","label":"putting battery on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["battery"]}, +{"id":"164310","label":"putting chair on a surface","template":"Putting [something] on a surface","placeholders":["chair"]}, +{"id":"137252","label":"taking pencil","template":"Taking [one of many similar things on the table]","placeholders":["pencil"]}, +{"id":"20493","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"71122","label":"stuffing paper into box","template":"Stuffing [something] into [something]","placeholders":["paper","box"]}, +{"id":"195341","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"45391","label":"moving note and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["note","pen"]}, +{"id":"156437","label":"pretending to open cd box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cd box"]}, +{"id":"138531","label":"tilting a thermos with a box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a thermos","a box"]}, +{"id":"44533","label":"uncovering aerrings","template":"Uncovering [something]","placeholders":["aerrings"]}, +{"id":"114859","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"181379","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"139759","label":"throwing santa hat onto a surface","template":"Throwing [something] onto a surface","placeholders":["santa hat"]}, +{"id":"107474","label":"opening white hand gel","template":"Opening [something]","placeholders":["white hand gel"]}, +{"id":"76930","label":"holding game over control","template":"Holding [something] over [something]","placeholders":["game","control"]}, +{"id":"217520","label":"moving magazine up","template":"Moving [something] up","placeholders":["magazine"]}, +{"id":"180604","label":"plugging usb connector into computer","template":"Plugging [something] into [something]","placeholders":["usb connector","computer"]}, +{"id":"202934","label":"pushing an envelope so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["an envelope"]}, +{"id":"167052","label":"putting comb onto cup","template":"Putting [something] onto [something]","placeholders":["comb","cup"]}, +{"id":"130873","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"113040","label":"notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["notebook"]}, +{"id":"88277","label":"taking calculator from slab","template":"Taking [something] from [somewhere]","placeholders":["calculator","slab"]}, +{"id":"111996","label":"taking journal books","template":"Taking [one of many similar things on the table]","placeholders":["journal books"]}, +{"id":"204961","label":"pushing small game card from left to right","template":"Pushing [something] from left to right","placeholders":["small game card"]}, +{"id":"189691","label":"stacking 4 coins","template":"Stacking [number of] [something]","placeholders":["4","coins"]}, +{"id":"10220","label":"pouring water into bowl of water","template":"Pouring [something] into [something]","placeholders":["water","bowl of water"]}, +{"id":"179683","label":"showing a photo of candles to the camera","template":"Showing a photo of [something] to the camera","placeholders":["candles"]}, +{"id":"122713","label":"moving a case up","template":"Moving [something] up","placeholders":["a case"]}, +{"id":"154214","label":"putting juicer, bowl and bottle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["juicer","bowl","bottle"]}, +{"id":"102115","label":"spinning a remote control that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a remote control"]}, +{"id":"128653","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"6155","label":"turning a jug upside down","template":"Turning [something] upside down","placeholders":["a jug"]}, +{"id":"153417","label":"dropping bottle into bed","template":"Dropping [something] into [something]","placeholders":["bottle","bed"]}, +{"id":"50571","label":"pretending to sprinkle air onto vitamin bottle","template":"Pretending to sprinkle air onto [something]","placeholders":["vitamin bottle"]}, +{"id":"174138","label":"unfolding envelope","template":"Unfolding [something]","placeholders":["envelope"]}, +{"id":"90690","label":"unfolding socks","template":"Unfolding [something]","placeholders":["socks"]}, +{"id":"161223","label":"marble colliding with stationary marble and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["marble","stationary marble"]}, +{"id":"155925","label":"showing a photo of myself to the camera","template":"Showing a photo of [something] to the camera","placeholders":["myself"]}, +{"id":"62711","label":"moving paper and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper","paper"]}, +{"id":"188902","label":"showing ball on top of cup","template":"Showing [something] on top of [something]","placeholders":["ball","cup"]}, +{"id":"133577","label":"tilting a plastic box with a screwdriver on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plastic box","a screwdriver"]}, +{"id":"23992","label":"touching (without moving) the edge of hat","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","hat"]}, +{"id":"202524","label":"bending net so that it deforms","template":"Bending [something] so that it deforms","placeholders":["net"]}, +{"id":"214739","label":"showing that orange cup is empty","template":"Showing that [something] is empty","placeholders":["orange cup"]}, +{"id":"213014","label":"poking towel so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["towel"]}, +{"id":"177542","label":"uncovering tin","template":"Uncovering [something]","placeholders":["tin"]}, +{"id":"52845","label":"dropping a charger onto a case","template":"Dropping [something] onto [something]","placeholders":["a charger","a case"]}, +{"id":"184413","label":"pushing a case so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a case"]}, +{"id":"63735","label":"putting mug in front of plastic comb","template":"Putting [something] in front of [something]","placeholders":["mug","plastic comb"]}, +{"id":"162309","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"96112","label":"putting 2 board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["2","board clips","cookie box lid"]}, +{"id":"27841","label":"showing that seeds is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["seeds","a jar"]}, +{"id":"215085","label":"laying mug on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["mug"]}, +{"id":"71793","label":"letting bottled water roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottled water"]}, +{"id":"116294","label":"showing a cone behind a fence","template":"Showing [something] behind [something]","placeholders":["a cone","a fence"]}, +{"id":"161969","label":"lifting up one end of remote, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote"]}, +{"id":"149904","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"52437","label":"moving smartphone and smartphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["smartphone","smartphone"]}, +{"id":"16784","label":"pretending to throw card","template":"Pretending to throw [something]","placeholders":["card"]}, +{"id":"85676","label":"pouring soda into cup","template":"Pouring [something] into [something]","placeholders":["soda","cup"]}, +{"id":"135887","label":"pretending to pick nail cutter up","template":"Pretending to pick [something] up","placeholders":["nail cutter"]}, +{"id":"106178","label":"taking wallet out of bag","template":"Taking [something] out of [something]","placeholders":["wallet","bag"]}, +{"id":"23253","label":"putting a glass upright on the table","template":"Putting [something] upright on the table","placeholders":["a glass"]}, +{"id":"92090","label":"pretending or failing to wipe stain off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","table"]}, +{"id":"185654","label":"lifting up one end of remote without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["remote"]}, +{"id":"56785","label":"turning the camera left while filming something","template":"Turning the camera left while filming [something]","placeholders":["something"]}, +{"id":"71461","label":"pushing bottle of water from left to right","template":"Pushing [something] from left to right","placeholders":["bottle of water"]}, +{"id":"87962","label":"pushing toy train from right to left","template":"Pushing [something] from right to left","placeholders":["toy train"]}, +{"id":"197100","label":"moving usb and soap away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb","soap"]}, +{"id":"65387","label":"hitting a book with a stapler","template":"Hitting [something] with [something]","placeholders":["a book","a stapler"]}, +{"id":"31358","label":"attaching pen to cape","template":"Attaching [something] to [something]","placeholders":["pen","cape"]}, +{"id":"64823","label":"showing foundation stone to the camera","template":"Showing [something] to the camera","placeholders":["foundation stone"]}, +{"id":"105409","label":"moving eraser away from sharpner","template":"Moving [something] away from [something]","placeholders":["eraser","sharpner"]}, +{"id":"80748","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"158595","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"196033","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"88320","label":"tilting a cutting board with a wooden spoon on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cutting board","a wooden spoon"]}, +{"id":"37611","label":"pulling red candle from right to left","template":"Pulling [something] from right to left","placeholders":["red candle"]}, +{"id":"74814","label":"putting more forks on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["more forks on the table"]}, +{"id":"121973","label":"moving watch and mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["watch","mouse"]}, +{"id":"18441","label":"plugging a plug into a plug socket","template":"Plugging [something] into [something]","placeholders":["a plug","a plug socket"]}, +{"id":"37124","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"144247","label":"taking cup out of cup","template":"Taking [something] out of [something]","placeholders":["cup","cup"]}, +{"id":"147102","label":"pulling a keychain out of a glass jar","template":"Pulling [something] out of [something]","placeholders":["a keychain","a glass jar"]}, +{"id":"191696","label":"pushing nail polish bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["nail polish bottle"]}, +{"id":"132628","label":"pushing rock so it spins","template":"Pushing [something] so it spins","placeholders":["rock"]}, +{"id":"30379","label":"pretending to put pink cologne on a surface","template":"Pretending to put [something] on a surface","placeholders":["pink cologne"]}, +{"id":"100646","label":"lifting book with glue on it","template":"Lifting [something] with [something] on it","placeholders":["book","glue"]}, +{"id":"8493","label":"ball being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["ball","wall"]}, +{"id":"83389","label":"pushing blue ballpen from left to right","template":"Pushing [something] from left to right","placeholders":["blue ballpen"]}, +{"id":"81941","label":"piling paper up","template":"Piling [something] up","placeholders":["paper"]}, +{"id":"117808","label":"dropping rubik cube behind card","template":"Dropping [something] behind [something]","placeholders":["rubik cube","card"]}, +{"id":"90414","label":"moving away from smart phone with your camera","template":"Moving away from [something] with your camera","placeholders":["smart phone"]}, +{"id":"153717","label":"poking keys so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["keys"]}, +{"id":"206970","label":"spinning ring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ring"]}, +{"id":"91105","label":"putting kindle on a surface","template":"Putting [something] on a surface","placeholders":["kindle"]}, +{"id":"3033","label":"turning the camera left while filming emergency lamp","template":"Turning the camera left while filming [something]","placeholders":["emergency lamp"]}, +{"id":"120093","label":"moving watch and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","mouse"]}, +{"id":"150888","label":"putting the car key into contact","template":"Putting [something] into [something]","placeholders":["the car key","contact"]}, +{"id":"114663","label":"moving red punching machine away from hairclip","template":"Moving [something] away from [something]","placeholders":["red punching machine","hairclip"]}, +{"id":"33756","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"79899","label":"tilting a bucket with a book on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a bucket","a book"]}, +{"id":"83218","label":"taking brush from many brushes","template":"Taking [one of many similar things on the table]","placeholders":["brush from many brushes"]}, +{"id":"106375","label":"plugging cord into laptop","template":"Plugging [something] into [something]","placeholders":["cord","laptop"]}, +{"id":"160421","label":"pouring water out of mug","template":"Pouring [something] out of [something]","placeholders":["water","mug"]}, +{"id":"164596","label":"poking a hole into powder","template":"Poking a hole into [some substance]","placeholders":["powder"]}, +{"id":"151607","label":"moving lady away from the camera","template":"Moving [something] away from the camera","placeholders":["lady"]}, +{"id":"93135","label":"taking cable from floor","template":"Taking [something] from [somewhere]","placeholders":["cable","floor"]}, +{"id":"171917","label":"putting mouse into mouse pad","template":"Putting [something] into [something]","placeholders":["mouse","mouse pad"]}, +{"id":"189265","label":"moving orange and orange so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["orange","orange"]}, +{"id":"128250","label":"hitting cup with scissors","template":"Hitting [something] with [something]","placeholders":["cup","scissors"]}, +{"id":"135927","label":"pouring water onto a plate","template":"Pouring [something] onto [something]","placeholders":["water","a plate"]}, +{"id":"169971","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181018","label":"showing a toy car behind a cellphone","template":"Showing [something] behind [something]","placeholders":["a toy car","a cellphone"]}, +{"id":"17115","label":"pretending to put cigarette onto tv remote","template":"Pretending to put [something] onto [something]","placeholders":["cigarette","tv remote"]}, +{"id":"9227","label":"mobile falling like a rock","template":"[Something] falling like a rock","placeholders":["mobile"]}, +{"id":"131352","label":"poking a glass so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a glass"]}, +{"id":"153314","label":"pretending to be tearing a stone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a stone"]}, +{"id":"217444","label":"turning lamp upside down","template":"Turning [something] upside down","placeholders":["lamp"]}, +{"id":"27612","label":"covering a spoon with a napkin","template":"Covering [something] with [something]","placeholders":["a spoon","a napkin"]}, +{"id":"201478","label":"uncovering a wrist band","template":"Uncovering [something]","placeholders":["a wrist band"]}, +{"id":"149533","label":"opening spectacle box","template":"Opening [something]","placeholders":["spectacle box"]}, +{"id":"202459","label":"throwing tomato in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tomato"]}, +{"id":"70611","label":"moving a cup and a jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cup","a jar"]}, +{"id":"49887","label":"badminton bat colliding with another badminton bat and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["badminton bat","another badminton bat"]}, +{"id":"171711","label":"moving cup and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","cup"]}, +{"id":"31856","label":"touching (without moving) pencil of pencil holder","template":"Touching (without moving) [part] of [something]","placeholders":["pencil","pencil holder"]}, +{"id":"102269","label":"trying but failing to attach pencil to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["pencil","wall"]}, +{"id":"18598","label":"moving battery closer to rubix cube","template":"Moving [something] closer to [something]","placeholders":["battery","rubix cube"]}, +{"id":"15461","label":"moving paper weight and stapler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper weight","stapler"]}, +{"id":"44330","label":"taking one penny","template":"Taking [one of many similar things on the table]","placeholders":["one penny"]}, +{"id":"145576","label":"attaching hammer to handle","template":"Attaching [something] to [something]","placeholders":["hammer","handle"]}, +{"id":"132936","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"133496","label":"tilting tumbler with can on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tumbler","can"]}, +{"id":"75760","label":"plugging flash drive into computer","template":"Plugging [something] into [something]","placeholders":["flash drive","computer"]}, +{"id":"151143","label":"tilting plate with banana on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","banana"]}, +{"id":"43854","label":"closing cream","template":"Closing [something]","placeholders":["cream"]}, +{"id":"91826","label":"pushing a piece of paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a piece of paper"]}, +{"id":"118706","label":"covering phone with rag","template":"Covering [something] with [something]","placeholders":["phone","rag"]}, +{"id":"180804","label":"throwing a watch","template":"Throwing [something]","placeholders":["a watch"]}, +{"id":"14316","label":"pretending to turn glass upside down","template":"Pretending to turn [something] upside down","placeholders":["glass"]}, +{"id":"181202","label":"pushing a glasses case so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a glasses case"]}, +{"id":"90333","label":"putting a pen into a desk organizer","template":"Putting [something] into [something]","placeholders":["a pen","a desk organizer"]}, +{"id":"126565","label":"laying something on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["something"]}, +{"id":"62951","label":"moving soft glove towards the camera","template":"Moving [something] towards the camera","placeholders":["soft glove"]}, +{"id":"207237","label":"throwing deck of cards onto a surface","template":"Throwing [something] onto a surface","placeholders":["deck of cards"]}, +{"id":"150153","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"100503","label":"dropping remote onto chair","template":"Dropping [something] onto [something]","placeholders":["remote","chair"]}, +{"id":"66525","label":"stuffing notebook into bag","template":"Stuffing [something] into [something]","placeholders":["notebook","bag"]}, +{"id":"4931","label":"folding envelope","template":"Folding [something]","placeholders":["envelope"]}, +{"id":"180887","label":"moving car key part of a keychain","template":"Moving [part] of [something]","placeholders":["car key part","a keychain"]}, +{"id":"218830","label":"removing shoe, revealing bowl behind","template":"Removing [something], revealing [something] behind","placeholders":["shoe","bowl"]}, +{"id":"85305","label":"twisting a piece of paper","template":"Twisting [something]","placeholders":["a piece of paper"]}, +{"id":"207122","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"205192","label":"plugging power cord into laptop computer","template":"Plugging [something] into [something]","placeholders":["power cord","laptop computer"]}, +{"id":"48323","label":"taking a card out of a box","template":"Taking [something] out of [something]","placeholders":["a card","a box"]}, +{"id":"154751","label":"pushing onion so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["onion"]}, +{"id":"209508","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"135513","label":"dropping a bottle behind a box","template":"Dropping [something] behind [something]","placeholders":["a bottle","a box"]}, +{"id":"33649","label":"moving a toothbrush closer to a box","template":"Moving [something] closer to [something]","placeholders":["a toothbrush","a box"]}, +{"id":"35162","label":"putting a wrist watch next to eyeglasses","template":"Putting [something] next to [something]","placeholders":["a wrist watch","eyeglasses"]}, +{"id":"74681","label":"putting candle on a surface","template":"Putting [something] on a surface","placeholders":["candle"]}, +{"id":"137981","label":"holding knife behind plate","template":"Holding [something] behind [something]","placeholders":["knife","plate"]}, +{"id":"192273","label":"wiping a coin off of a phone","template":"Wiping [something] off of [something]","placeholders":["a coin","a phone"]}, +{"id":"11638","label":"showing a photo of man to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man"]}, +{"id":"96568","label":"holding box behind bottle","template":"Holding [something] behind [something]","placeholders":["box","bottle"]}, +{"id":"160092","label":"putting 2 hairbands onto pink note","template":"Putting [number of] [something] onto [something]","placeholders":["2","hairbands","pink note"]}, +{"id":"145551","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"34475","label":"taking a phone out of hat","template":"Taking [something] out of [something]","placeholders":["a phone","hat"]}, +{"id":"167714","label":"covering a pencil with a ruler","template":"Covering [something] with [something]","placeholders":["a pencil","a ruler"]}, +{"id":"131096","label":"putting three books onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["three","books","chair"]}, +{"id":"66395","label":"turning the camera right while filming waist basket","template":"Turning the camera right while filming [something]","placeholders":["waist basket"]}, +{"id":"60738","label":"trying to pour water into mug, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","mug"]}, +{"id":"32918","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"6240","label":"turning mouse upside down","template":"Turning [something] upside down","placeholders":["mouse"]}, +{"id":"208346","label":"moving spoon and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["spoon","cup"]}, +{"id":"116055","label":"pushing a remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a remote control"]}, +{"id":"58396","label":"covering remote with tissue","template":"Covering [something] with [something]","placeholders":["remote","tissue"]}, +{"id":"24002","label":"tilting can with ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["can","ball"]}, +{"id":"44257","label":"putting plant upright on the table","template":"Putting [something] upright on the table","placeholders":["plant"]}, +{"id":"35525","label":"laying body cent bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["body cent bottle"]}, +{"id":"151544","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"2205","label":"lifting black spectacles up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["black spectacles"]}, +{"id":"181853","label":"holding toy car in front of clip","template":"Holding [something] in front of [something]","placeholders":["toy car","clip"]}, +{"id":"75025","label":"dropping keyboard in front of backpack","template":"Dropping [something] in front of [something]","placeholders":["keyboard","backpack"]}, +{"id":"25510","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"166698","label":"closing a closet","template":"Closing [something]","placeholders":["a closet"]}, +{"id":"123998","label":"covering magnifying gless with black cloth","template":"Covering [something] with [something]","placeholders":["magnifying gless","black cloth"]}, +{"id":"134697","label":"plugging earphones into a laptop","template":"Plugging [something] into [something]","placeholders":["earphones","a laptop"]}, +{"id":"105356","label":"moving a bangle towards the camera","template":"Moving [something] towards the camera","placeholders":["a bangle"]}, +{"id":"10342","label":"moving a pen down","template":"Moving [something] down","placeholders":["a pen"]}, +{"id":"74411","label":"removing mug, revealing knife behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","knife"]}, +{"id":"47720","label":"uncovering apple","template":"Uncovering [something]","placeholders":["apple"]}, +{"id":"167210","label":"rubik's cube colliding with jbl speaker and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["rubik's cube","jbl speaker"]}, +{"id":"175245","label":"holding pen in front of bottle","template":"Holding [something] in front of [something]","placeholders":["pen","bottle"]}, +{"id":"175776","label":"moving a toothpick container closer to a comb","template":"Moving [something] closer to [something]","placeholders":["a toothpick container","a comb"]}, +{"id":"201684","label":"pulling a deck out of basket","template":"Pulling [something] out of [something]","placeholders":["a deck","basket"]}, +{"id":"214941","label":"putting pillow next to pillow","template":"Putting [something] next to [something]","placeholders":["pillow","pillow"]}, +{"id":"103887","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"148897","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"158217","label":"a book falling like a rock","template":"[Something] falling like a rock","placeholders":["a book"]}, +{"id":"22021","label":"unfolding washcloth","template":"Unfolding [something]","placeholders":["washcloth"]}, +{"id":"4113","label":"dropping a box next to a coin","template":"Dropping [something] next to [something]","placeholders":["a box","a coin"]}, +{"id":"151883","label":"moving a lighter and a phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a lighter","a phone"]}, +{"id":"43438","label":"pulling two ends of hairband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hairband"]}, +{"id":"57933","label":"opening carton","template":"Opening [something]","placeholders":["carton"]}, +{"id":"175849","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"153553","label":"plugging mobile charger into socket","template":"Plugging [something] into [something]","placeholders":["mobile charger","socket"]}, +{"id":"89611","label":"putting tape next to pink book","template":"Putting [something] next to [something]","placeholders":["tape","pink book"]}, +{"id":"30284","label":"holding toy behind jar","template":"Holding [something] behind [something]","placeholders":["toy","jar"]}, +{"id":"195131","label":"moving an apple away from the camera","template":"Moving [something] away from the camera","placeholders":["an apple"]}, +{"id":"175113","label":"moving plant away from the camera","template":"Moving [something] away from the camera","placeholders":["plant"]}, +{"id":"102433","label":"showing glove next to window","template":"Showing [something] next to [something]","placeholders":["glove","window"]}, +{"id":"166502","label":"pretending or failing to wipe ink off of tape","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","tape"]}, +{"id":"69425","label":"spilling water next to a matchbox","template":"Spilling [something] next to [something]","placeholders":["water","a matchbox"]}, +{"id":"20656","label":"pretending to pour water out of a pitcher, but the pitcher is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a pitcher","the pitcher"]}, +{"id":"187274","label":"moving bottle and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","box"]}, +{"id":"113053","label":"leaflet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaflet"]}, +{"id":"155377","label":"lifting a bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a bottle"]}, +{"id":"42590","label":"holding a toothbrush","template":"Holding [something]","placeholders":["a toothbrush"]}, +{"id":"28620","label":"a deodorant falling like a rock","template":"[Something] falling like a rock","placeholders":["a deodorant"]}, +{"id":"52761","label":"dropping a wallet next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a wallet","a matchbox"]}, +{"id":"167435","label":"dropping toy car into spectacle box","template":"Dropping [something] into [something]","placeholders":["toy car","spectacle box"]}, +{"id":"15144","label":"trying but failing to attach paper to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","fridge"]}, +{"id":"58934","label":"moving nail cutter away from toothbrush","template":"Moving [something] away from [something]","placeholders":["nail cutter","toothbrush"]}, +{"id":"105007","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"94239","label":"showing that compact disk is inside cd writer","template":"Showing that [something] is inside [something]","placeholders":["compact disk","cd writer"]}, +{"id":"89321","label":"taking a cable out of a drawer","template":"Taking [something] out of [something]","placeholders":["a cable","a drawer"]}, +{"id":"186430","label":"showing monitor behind fan","template":"Showing [something] behind [something]","placeholders":["monitor","fan"]}, +{"id":"35563","label":"dropping hairband into orange coloured cup","template":"Dropping [something] into [something]","placeholders":["hairband","orange coloured cup"]}, +{"id":"151288","label":"pulling a paint brush out of a pen box","template":"Pulling [something] out of [something]","placeholders":["a paint brush","a pen box"]}, +{"id":"33399","label":"tipping a book over","template":"Tipping [something] over","placeholders":["a book"]}, +{"id":"115164","label":"moving handle of bucket","template":"Moving [part] of [something]","placeholders":["handle","bucket"]}, +{"id":"78091","label":"putting coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins"]}, +{"id":"37715","label":"moving flag down","template":"Moving [something] down","placeholders":["flag"]}, +{"id":"203562","label":"pushing an apple from right to left","template":"Pushing [something] from right to left","placeholders":["an apple"]}, +{"id":"140877","label":"pretending or failing to wipe paint off of oven","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","oven"]}, +{"id":"190581","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"10071","label":"opening opening a box","template":"Opening [something]","placeholders":["opening a box"]}, +{"id":"20861","label":"taking textbook from shelf","template":"Taking [something] from [somewhere]","placeholders":["textbook","shelf"]}, +{"id":"85942","label":"pushing a glass with a pen","template":"Pushing [something] with [something]","placeholders":["a glass","a pen"]}, +{"id":"85019","label":"pushing plant so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plant"]}, +{"id":"51445","label":"putting a pen next to sunglasses","template":"Putting [something] next to [something]","placeholders":["a pen","sunglasses"]}, +{"id":"43491","label":"tipping paper roll over","template":"Tipping [something] over","placeholders":["paper roll"]}, +{"id":"127045","label":"stuffing crumpled paper into a cup","template":"Stuffing [something] into [something]","placeholders":["crumpled paper","a cup"]}, +{"id":"109859","label":"spinning a spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinning top"]}, +{"id":"64510","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"11048","label":"holding bottle over food container","template":"Holding [something] over [something]","placeholders":["bottle","food container"]}, +{"id":"128394","label":"putting 2 red spoon onto calculator","template":"Putting [number of] [something] onto [something]","placeholders":["2","red spoon","calculator"]}, +{"id":"189274","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"113500","label":"turning cologne upside down","template":"Turning [something] upside down","placeholders":["cologne"]}, +{"id":"84755","label":"twisting oven mitt","template":"Twisting [something]","placeholders":["oven mitt"]}, +{"id":"126991","label":"throwing a tennis ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a tennis ball"]}, +{"id":"121069","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"95734","label":"moving crayons and pencilbox away from each other","template":"Moving [something] and [something] away from each other","placeholders":["crayons","pencilbox"]}, +{"id":"114319","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"75873","label":"pushing rubber so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["rubber"]}, +{"id":"77638","label":"pushing gear with metal rod","template":"Pushing [something] with [something]","placeholders":["gear","metal rod"]}, +{"id":"28102","label":"lifting up one end of purple colour pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["purple colour pen"]}, +{"id":"200159","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"58800","label":"pulling two ends of charger so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["charger"]}, +{"id":"185453","label":"moving candle closer to box","template":"Moving [something] closer to [something]","placeholders":["candle","box"]}, +{"id":"91680","label":"showing small box behind large box","template":"Showing [something] behind [something]","placeholders":["small box","large box"]}, +{"id":"67829","label":"twisting a lid","template":"Twisting [something]","placeholders":["a lid"]}, +{"id":"67902","label":"letting red ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["red ball"]}, +{"id":"35971","label":"letting a marker roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a marker"]}, +{"id":"213845","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"26534","label":"opening hot case","template":"Opening [something]","placeholders":["hot case"]}, +{"id":"6733","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"84309","label":"putting charger next to yellowbook","template":"Putting [something] next to [something]","placeholders":["charger","yellowbook"]}, +{"id":"106553","label":"moving away from tv with your camera","template":"Moving away from [something] with your camera","placeholders":["tv"]}, +{"id":"205017","label":"pretending to poke money","template":"Pretending to poke [something]","placeholders":["money"]}, +{"id":"178973","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"100109","label":"covering screw with aluminium foil","template":"Covering [something] with [something]","placeholders":["screw","aluminium foil"]}, +{"id":"16688","label":"bending candy so that it deforms","template":"Bending [something] so that it deforms","placeholders":["candy"]}, +{"id":"96026","label":"closing car bonnet","template":"Closing [something]","placeholders":["car bonnet"]}, +{"id":"126473","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"98312","label":"rolling big onion on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["big onion"]}, +{"id":"55966","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"137174","label":"folding dish towel","template":"Folding [something]","placeholders":["dish towel"]}, +{"id":"98350","label":"moving away from dogs with your camera","template":"Moving away from [something] with your camera","placeholders":["dogs"]}, +{"id":"86755","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"210019","label":"plugging power cable into socket","template":"Plugging [something] into [something]","placeholders":["power cable","socket"]}, +{"id":"48132","label":"throwing a silver ball","template":"Throwing [something]","placeholders":["a silver ball"]}, +{"id":"110490","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"63398","label":"holding pen next to bracelet","template":"Holding [something] next to [something]","placeholders":["pen","bracelet"]}, +{"id":"98552","label":"pouring ping pong balls onto table","template":"Pouring [something] onto [something]","placeholders":["ping pong balls","table"]}, +{"id":"176629","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"205018","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"170664","label":"pulling two ends of a remote control but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a remote control"]}, +{"id":"208732","label":"showing jacket on top of chair","template":"Showing [something] on top of [something]","placeholders":["jacket","chair"]}, +{"id":"153812","label":"holding a spinner next to a box","template":"Holding [something] next to [something]","placeholders":["a spinner","a box"]}, +{"id":"215988","label":"pretending to put a bottle into a carton","template":"Pretending to put [something] into [something]","placeholders":["a bottle","a carton"]}, +{"id":"153423","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"147743","label":"pouring water onto dirt","template":"Pouring [something] onto [something]","placeholders":["water","dirt"]}, +{"id":"169323","label":"folding paper sheet","template":"Folding [something]","placeholders":["paper sheet"]}, +{"id":"162794","label":"spilling water next to pepper","template":"Spilling [something] next to [something]","placeholders":["water","pepper"]}, +{"id":"131012","label":"moving moving something and close each other closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["moving something","close each other"]}, +{"id":"46325","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"17467","label":"putting 3 pill bottles onto box","template":"Putting [number of] [something] onto [something]","placeholders":["3","pill bottles","box"]}, +{"id":"124740","label":"opening green paint bottle","template":"Opening [something]","placeholders":["green paint bottle"]}, +{"id":"77805","label":"showing that soap oil is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["soap oil","a bottle"]}, +{"id":"66786","label":"putting a mug on a surface","template":"Putting [something] on a surface","placeholders":["a mug"]}, +{"id":"35293","label":"pretending to sprinkle air onto a donut","template":"Pretending to sprinkle air onto [something]","placeholders":["a donut"]}, +{"id":"203571","label":"poking cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cup"]}, +{"id":"67280","label":"uncovering key chain","template":"Uncovering [something]","placeholders":["key chain"]}, +{"id":"116146","label":"folding a washclothe","template":"Folding [something]","placeholders":["a washclothe"]}, +{"id":"197179","label":"moving ruler and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ruler","scissors"]}, +{"id":"183008","label":"moving sunglasses up","template":"Moving [something] up","placeholders":["sunglasses"]}, +{"id":"106909","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"208322","label":"tearing plastic just a little bit","template":"Tearing [something] just a little bit","placeholders":["plastic"]}, +{"id":"53280","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"216694","label":"tearing post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["post it note"]}, +{"id":"26641","label":"moving stapler closer to punching machine","template":"Moving [something] closer to [something]","placeholders":["stapler","punching machine"]}, +{"id":"218058","label":"shoe being deflected from tripod","template":"[Something] being deflected from [something]","placeholders":["shoe","tripod"]}, +{"id":"115373","label":"uncovering pillows","template":"Uncovering [something]","placeholders":["pillows"]}, +{"id":"43356","label":"poking headphones so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["headphones"]}, +{"id":"2387","label":"putting school bag","template":"Putting [something similar to other things that are already on the table]","placeholders":["school bag"]}, +{"id":"220576","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"216078","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"172009","label":"tearing movie ticket into two pieces","template":"Tearing [something] into two pieces","placeholders":["movie ticket"]}, +{"id":"152599","label":"moving wooden stick closer to battery","template":"Moving [something] closer to [something]","placeholders":["wooden stick","battery"]}, +{"id":"33301","label":"tipping a padlock over","template":"Tipping [something] over","placeholders":["a padlock"]}, +{"id":"66119","label":"throwing bracelet onto a surface","template":"Throwing [something] onto a surface","placeholders":["bracelet"]}, +{"id":"206677","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"138977","label":"closing the window","template":"Closing [something]","placeholders":["the window"]}, +{"id":"19238","label":"turning the camera left while filming green headlight","template":"Turning the camera left while filming [something]","placeholders":["green headlight"]}, +{"id":"215832","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"37264","label":"putting a plastic bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a plastic bottle"]}, +{"id":"158291","label":"pretending to open ointment-box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["ointment-box"]}, +{"id":"13923","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"94601","label":"scooping cereal up with spoon","template":"Scooping [something] up with [something]","placeholders":["cereal","spoon"]}, +{"id":"168837","label":"moving adaptor away from the camera","template":"Moving [something] away from the camera","placeholders":["adaptor"]}, +{"id":"105705","label":"turning the camera left while filming tank","template":"Turning the camera left while filming [something]","placeholders":["tank"]}, +{"id":"16323","label":"moving a fork closer to a spoon","template":"Moving [something] closer to [something]","placeholders":["a fork","a spoon"]}, +{"id":"25917","label":"moving black trash can closer to white trash can","template":"Moving [something] closer to [something]","placeholders":["black trash can","white trash can"]}, +{"id":"177878","label":"wiping markings off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["markings","whiteboard"]}, +{"id":"64594","label":"moving a car and a car so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a car","a car"]}, +{"id":"144391","label":"holding cup next to vape","template":"Holding [something] next to [something]","placeholders":["cup","vape"]}, +{"id":"175878","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"14377","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"156532","label":"putting sharpener next to sticky note","template":"Putting [something] next to [something]","placeholders":["sharpener","sticky note"]}, +{"id":"177721","label":"taking usb cable out of laptop","template":"Taking [something] out of [something]","placeholders":["usb cable","laptop"]}, +{"id":"42618","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"25759","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"185141","label":"tearing paper plate just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper plate"]}, +{"id":"19953","label":"uncovering pick","template":"Uncovering [something]","placeholders":["pick"]}, +{"id":"17984","label":"taking a pencil out of a mug","template":"Taking [something] out of [something]","placeholders":["a pencil","a mug"]}, +{"id":"211409","label":"throwing paper sheet in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper sheet"]}, +{"id":"119378","label":"pouring water into a mug","template":"Pouring [something] into [something]","placeholders":["water","a mug"]}, +{"id":"147878","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"60218","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"102277","label":"moving cat and cube away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cat","cube"]}, +{"id":"128426","label":"putting receipts","template":"Putting [something similar to other things that are already on the table]","placeholders":["receipts"]}, +{"id":"193243","label":"pretending or failing to wipe label off of laptop","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["label","laptop"]}, +{"id":"220555","label":"tearing flower just a little bit","template":"Tearing [something] just a little bit","placeholders":["flower"]}, +{"id":"179609","label":"toilet paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["toilet paper"]}, +{"id":"206961","label":"stuffing paper into cup","template":"Stuffing [something] into [something]","placeholders":["paper","cup"]}, +{"id":"165387","label":"sprinkling salt onto an eraser","template":"Sprinkling [something] onto [something]","placeholders":["salt","an eraser"]}, +{"id":"73832","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"59558","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"219477","label":"dropping a coin behind a container","template":"Dropping [something] behind [something]","placeholders":["a coin","a container"]}, +{"id":"206562","label":"dropping marker in front of remote","template":"Dropping [something] in front of [something]","placeholders":["marker","remote"]}, +{"id":"65381","label":"pushing jacket so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jacket"]}, +{"id":"220117","label":"turning the camera right while filming biscuit packets","template":"Turning the camera right while filming [something]","placeholders":["biscuit packets"]}, +{"id":"201202","label":"removing mug, revealing compact cassette behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","compact cassette"]}, +{"id":"81513","label":"moving an orange highlighter and a pink highlighter away from each other","template":"Moving [something] and [something] away from each other","placeholders":["an orange highlighter","a pink highlighter"]}, +{"id":"152254","label":"dropping a bag next to table","template":"Dropping [something] next to [something]","placeholders":["a bag","table"]}, +{"id":"63693","label":"letting toy ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy ball"]}, +{"id":"57686","label":"uncovering keys","template":"Uncovering [something]","placeholders":["keys"]}, +{"id":"172424","label":"post-il falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["post-il"]}, +{"id":"108066","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"162991","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"77754","label":"stuffing wipe into box","template":"Stuffing [something] into [something]","placeholders":["wipe","box"]}, +{"id":"42588","label":"twisting plastic wire","template":"Twisting [something]","placeholders":["plastic wire"]}, +{"id":"146197","label":"holding pc mouse","template":"Holding [something]","placeholders":["pc mouse"]}, +{"id":"79018","label":"spinning a can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a can"]}, +{"id":"101917","label":"trying but failing to attach clip to ring because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["clip","ring"]}, +{"id":"117866","label":"pushing a penguin off of a book","template":"Pushing [something] off of [something]","placeholders":["a penguin","a book"]}, +{"id":"88490","label":"uncovering sunglasses","template":"Uncovering [something]","placeholders":["sunglasses"]}, +{"id":"32140","label":"covering tray with cloth","template":"Covering [something] with [something]","placeholders":["tray","cloth"]}, +{"id":"50447","label":"stuffing clothes into a drawer","template":"Stuffing [something] into [something]","placeholders":["clothes","a drawer"]}, +{"id":"168974","label":"turning the camera upwards while filming banana bunch","template":"Turning the camera upwards while filming [something]","placeholders":["banana bunch"]}, +{"id":"21692","label":"pretending to pick coffee cup up","template":"Pretending to pick [something] up","placeholders":["coffee cup"]}, +{"id":"171144","label":"putting nail polish bottle on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["nail polish bottle","table"]}, +{"id":"37100","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"178583","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"104562","label":"letting car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["car"]}, +{"id":"84028","label":"suitcase being deflected from sofa","template":"[Something] being deflected from [something]","placeholders":["suitcase","sofa"]}, +{"id":"181859","label":"putting eraser and pencil on the table","template":"Putting [something] and [something] on the table","placeholders":["eraser","pencil"]}, +{"id":"173218","label":"putting a canister upright on the table","template":"Putting [something] upright on the table","placeholders":["a canister"]}, +{"id":"31359","label":"lifting chair up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["chair"]}, +{"id":"117036","label":"holding one apple over apple packet","template":"Holding [something] over [something]","placeholders":["one apple","apple packet"]}, +{"id":"4736","label":"hitting a bucket with a bat","template":"Hitting [something] with [something]","placeholders":["a bucket","a bat"]}, +{"id":"188270","label":"a napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a napkin"]}, +{"id":"65006","label":"lifting up one end of bottle, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bottle"]}, +{"id":"128016","label":"pouring paper clip into plastic box","template":"Pouring [something] into [something]","placeholders":["paper clip","plastic box"]}, +{"id":"112358","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"116605","label":"folding rexona deo lotion","template":"Folding [something]","placeholders":["rexona deo lotion"]}, +{"id":"89350","label":"trying but failing to attach playing card to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["playing card","wall"]}, +{"id":"114326","label":"moving battery up","template":"Moving [something] up","placeholders":["battery"]}, +{"id":"159775","label":"plugging usb into hospots","template":"Plugging [something] into [something]","placeholders":["usb","hospots"]}, +{"id":"218215","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"27662","label":"covering keys with cloth","template":"Covering [something] with [something]","placeholders":["keys","cloth"]}, +{"id":"9368","label":"taking apple airpod out of apple airpods case","template":"Taking [something] out of [something]","placeholders":["apple airpod","apple airpods case"]}, +{"id":"25859","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"215252","label":"pouring oil into a measuring vessel","template":"Pouring [something] into [something]","placeholders":["oil","a measuring vessel"]}, +{"id":"87227","label":"spilling graims next to a glass jar","template":"Spilling [something] next to [something]","placeholders":["graims","a glass jar"]}, +{"id":"185459","label":"pretending to pour juice out of juice pack, but juice pack is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["juice","juice pack","juice pack"]}, +{"id":"212793","label":"dropping a quarter onto the floor","template":"Dropping [something] onto [something]","placeholders":["a quarter","the floor"]}, +{"id":"129948","label":"pretending to scoop rice up with a measuring cup","template":"Pretending to scoop [something] up with [something]","placeholders":["rice","a measuring cup"]}, +{"id":"99661","label":"poking a clear plastic cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a clear plastic cup"]}, +{"id":"156377","label":"tipping a small cylinder over","template":"Tipping [something] over","placeholders":["a small cylinder"]}, +{"id":"157959","label":"turning the camera left while filming window","template":"Turning the camera left while filming [something]","placeholders":["window"]}, +{"id":"93939","label":"lifting hairbrush up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["hairbrush"]}, +{"id":"108694","label":"spinning lip balm that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lip balm"]}, +{"id":"92529","label":"spinning round tape that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["round tape"]}, +{"id":"13390","label":"putting stapler onto red pouch","template":"Putting [something] onto [something]","placeholders":["stapler","red pouch"]}, +{"id":"35775","label":"moving biscuit pack away from the camera","template":"Moving [something] away from the camera","placeholders":["biscuit pack"]}, +{"id":"51932","label":"covering a hamper with its lid","template":"Covering [something] with [something]","placeholders":["a hamper","its lid"]}, +{"id":"69210","label":"showing a photo of a leader to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a leader"]}, +{"id":"76491","label":"spilling water onto counter","template":"Spilling [something] onto [something]","placeholders":["water","counter"]}, +{"id":"18477","label":"pouring grains out of a container","template":"Pouring [something] out of [something]","placeholders":["grains","a container"]}, +{"id":"135226","label":"holding torch in front of shoe","template":"Holding [something] in front of [something]","placeholders":["torch","shoe"]}, +{"id":"219936","label":"moving cap and grape away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cap","grape"]}, +{"id":"124090","label":"digging red-chili out of shallots","template":"Digging [something] out of [something]","placeholders":["red-chili","shallots"]}, +{"id":"161748","label":"dropping plastic in front of bowl","template":"Dropping [something] in front of [something]","placeholders":["plastic","bowl"]}, +{"id":"173460","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"26067","label":"dropping a matchbox in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a toothbrush"]}, +{"id":"30290","label":"putting fish into bag","template":"Putting [something] into [something]","placeholders":["fish","bag"]}, +{"id":"64909","label":"taking glass out of cabinet","template":"Taking [something] out of [something]","placeholders":["glass","cabinet"]}, +{"id":"16604","label":"holding a book in front of a door","template":"Holding [something] in front of [something]","placeholders":["a book","a door"]}, +{"id":"93306","label":"dropping lime next to egg","template":"Dropping [something] next to [something]","placeholders":["lime","egg"]}, +{"id":"17840","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"99578","label":"pouring water into a jug","template":"Pouring [something] into [something]","placeholders":["water","a jug"]}, +{"id":"37631","label":"pushing stapler off of phone","template":"Pushing [something] off of [something]","placeholders":["stapler","phone"]}, +{"id":"148405","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"152135","label":"moving the tab part of a soda can","template":"Moving [part] of [something]","placeholders":["the tab part","a soda can"]}, +{"id":"212616","label":"putting a pen on the edge of a decorative \"k\" so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a pen","a decorative \"k\""]}, +{"id":"121823","label":"spinning a deodorant bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a deodorant bottle"]}, +{"id":"157854","label":"plugging a cable into a charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a charger"]}, +{"id":"199096","label":"trying but failing to attach tomato to cat because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["tomato","cat"]}, +{"id":"136901","label":"plugging headphone into laptop","template":"Plugging [something] into [something]","placeholders":["headphone","laptop"]}, +{"id":"84301","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"213308","label":"moving remote controller up","template":"Moving [something] up","placeholders":["remote controller"]}, +{"id":"27587","label":"covering cellphone with towel","template":"Covering [something] with [something]","placeholders":["cellphone","towel"]}, +{"id":"187013","label":"moving chalk piece up","template":"Moving [something] up","placeholders":["chalk piece"]}, +{"id":"205263","label":"putting battery, sharpner and pebble on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["battery","sharpner","pebble"]}, +{"id":"46338","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"33692","label":"moving spoon down","template":"Moving [something] down","placeholders":["spoon"]}, +{"id":"212972","label":"pushing spoon from left to right","template":"Pushing [something] from left to right","placeholders":["spoon"]}, +{"id":"92553","label":"putting sharpener on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["sharpener","slab"]}, +{"id":"163152","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"146045","label":"showing a photo of a bulb to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a bulb"]}, +{"id":"135030","label":"remote being deflected from chair","template":"[Something] being deflected from [something]","placeholders":["remote","chair"]}, +{"id":"171180","label":"putting a coconut shell onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a coconut shell"]}, +{"id":"64574","label":"picking a shoebox up","template":"Picking [something] up","placeholders":["a shoebox"]}, +{"id":"168289","label":"putting 15 news papers onto floor","template":"Putting [number of] [something] onto [something]","placeholders":["15","news papers","floor"]}, +{"id":"86157","label":"tearing cardboard just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardboard"]}, +{"id":"110823","label":"tearing card into two pieces","template":"Tearing [something] into two pieces","placeholders":["card"]}, +{"id":"100314","label":"putting a key upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a key"]}, +{"id":"39511","label":"tipping a plank of wood over","template":"Tipping [something] over","placeholders":["a plank of wood"]}, +{"id":"145951","label":"moving the botyle away from the pencil case","template":"Moving [something] away from [something]","placeholders":["the botyle","the pencil case"]}, +{"id":"218728","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"106450","label":"showing mouthwash behind alcohol","template":"Showing [something] behind [something]","placeholders":["mouthwash","alcohol"]}, +{"id":"26992","label":"lifting a bracelet up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a bracelet"]}, +{"id":"3179","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"34400","label":"tearing a paper napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper napkin"]}, +{"id":"49589","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"186011","label":"moving seat of rotating chair","template":"Moving [part] of [something]","placeholders":["seat","rotating chair"]}, +{"id":"63590","label":"dropping something onto something","template":"Dropping [something] onto [something]","placeholders":["something","something"]}, +{"id":"90847","label":"dropping pen next to cup","template":"Dropping [something] next to [something]","placeholders":["pen","cup"]}, +{"id":"5687","label":"plugging a plug into a power cord","template":"Plugging [something] into [something]","placeholders":["a plug","a power cord"]}, +{"id":"91923","label":"pretending to put something behind something","template":"Pretending to put [something] behind [something]","placeholders":["something","something"]}, +{"id":"152641","label":"holding glove behind plate","template":"Holding [something] behind [something]","placeholders":["glove","plate"]}, +{"id":"158321","label":"putting coin similar to other coins that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin similar to other coins that are already on the table"]}, +{"id":"45424","label":"pushing bottle with pen","template":"Pushing [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"67850","label":"pushing wallet with pen","template":"Pushing [something] with [something]","placeholders":["wallet","pen"]}, +{"id":"176021","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"131368","label":"moving pink water bottle down","template":"Moving [something] down","placeholders":["pink water bottle"]}, +{"id":"94531","label":"moving watch and car keys closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","car keys"]}, +{"id":"72753","label":"putting napkin and wooden bowl on the table","template":"Putting [something] and [something] on the table","placeholders":["napkin","wooden bowl"]}, +{"id":"213887","label":"moving box away from can","template":"Moving [something] away from [something]","placeholders":["box","can"]}, +{"id":"158223","label":"moving button down","template":"Moving [something] down","placeholders":["button"]}, +{"id":"27560","label":"dropping a coin into a bowl","template":"Dropping [something] into [something]","placeholders":["a coin","a bowl"]}, +{"id":"185208","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"8712","label":"lifting plate with pen on it","template":"Lifting [something] with [something] on it","placeholders":["plate","pen"]}, +{"id":"46943","label":"poking glass of water so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["glass of water"]}, +{"id":"133173","label":"poking small, clockwork wolverine toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["small, clockwork wolverine toy"]}, +{"id":"22007","label":"turning nail polish bottle upside down","template":"Turning [something] upside down","placeholders":["nail polish bottle"]}, +{"id":"201036","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"81534","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"206828","label":"touching (without moving) cover of book","template":"Touching (without moving) [part] of [something]","placeholders":["cover","book"]}, +{"id":"65958","label":"tipping tissue box over","template":"Tipping [something] over","placeholders":["tissue box"]}, +{"id":"167027","label":"holding torch over shoe","template":"Holding [something] over [something]","placeholders":["torch","shoe"]}, +{"id":"165992","label":"twisting women's underwear","template":"Twisting [something]","placeholders":["women's underwear"]}, +{"id":"131506","label":"attaching sticker note to notebook","template":"Attaching [something] to [something]","placeholders":["sticker note","notebook"]}, +{"id":"94676","label":"plugging heater into plug","template":"Plugging [something] into [something]","placeholders":["heater","plug"]}, +{"id":"190282","label":"lifting up one end of box without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["box"]}, +{"id":"163311","label":"pretending to close a box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a box"]}, +{"id":"42804","label":"pushing bracelet from left to right","template":"Pushing [something] from left to right","placeholders":["bracelet"]}, +{"id":"209327","label":"tearing playingcard just a little bit","template":"Tearing [something] just a little bit","placeholders":["playingcard"]}, +{"id":"117901","label":"pulling two ends of stick but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["stick"]}, +{"id":"34089","label":"holding toy behind remote","template":"Holding [something] behind [something]","placeholders":["toy","remote"]}, +{"id":"215286","label":"pushing a garbage bin from left to right","template":"Pushing [something] from left to right","placeholders":["a garbage bin"]}, +{"id":"52486","label":"turning the camera downwards while filming my hand","template":"Turning the camera downwards while filming [something]","placeholders":["my hand"]}, +{"id":"101591","label":"turning the camera left while filming black remote","template":"Turning the camera left while filming [something]","placeholders":["black remote"]}, +{"id":"109810","label":"pretending or failing to wipe paint off of picture","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","picture"]}, +{"id":"135799","label":"moving stapler down","template":"Moving [something] down","placeholders":["stapler"]}, +{"id":"34383","label":"taking lighter","template":"Taking [one of many similar things on the table]","placeholders":["lighter"]}, +{"id":"186984","label":"picking pink toothbrush case up","template":"Picking [something] up","placeholders":["pink toothbrush case"]}, +{"id":"28135","label":"moving nail clipper down","template":"Moving [something] down","placeholders":["nail clipper"]}, +{"id":"131180","label":"tilting box with flashdisk on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","flashdisk"]}, +{"id":"176664","label":"letting baseball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["baseball"]}, +{"id":"60622","label":"stacking 3 cds","template":"Stacking [number of] [something]","placeholders":["3","cds"]}, +{"id":"130186","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"193548","label":"tipping a cup with pens over, so the pens falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","pens","the pens"]}, +{"id":"13207","label":"letting car roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["car"]}, +{"id":"92927","label":"poking ramekin so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["ramekin"]}, +{"id":"92347","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"40935","label":"plugging a flash drive into a port","template":"Plugging [something] into [something]","placeholders":["a flash drive","a port"]}, +{"id":"14358","label":"turning the camera right while filming cup","template":"Turning the camera right while filming [something]","placeholders":["cup"]}, +{"id":"173877","label":"showing a matchbox on top of the jug","template":"Showing [something] on top of [something]","placeholders":["a matchbox","the jug"]}, +{"id":"174021","label":"putting a banana upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a banana"]}, +{"id":"49723","label":"pushing pillow so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pillow"]}, +{"id":"173494","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"6726","label":"closing peanut butter jar","template":"Closing [something]","placeholders":["peanut butter jar"]}, +{"id":"65726","label":"poking a stuffed toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a stuffed toy"]}, +{"id":"176369","label":"moving calculator towards the camera","template":"Moving [something] towards the camera","placeholders":["calculator"]}, +{"id":"1265","label":"showing a photo of glass to the camera","template":"Showing a photo of [something] to the camera","placeholders":["glass"]}, +{"id":"168611","label":"putting jar into box","template":"Putting [something] into [something]","placeholders":["jar","box"]}, +{"id":"220208","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"30926","label":"pouring medicine onto a table","template":"Pouring [something] onto [something]","placeholders":["medicine","a table"]}, +{"id":"209944","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"177176","label":"putting cell phone behind clock","template":"Putting [something] behind [something]","placeholders":["cell phone","clock"]}, +{"id":"110251","label":"dropping power bank into shoes","template":"Dropping [something] into [something]","placeholders":["power bank","shoes"]}, +{"id":"136736","label":"dropping hair brush onto towel","template":"Dropping [something] onto [something]","placeholders":["hair brush","towel"]}, +{"id":"168331","label":"putting chewing gums on the edge of a jbl so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["chewing gums","a jbl"]}, +{"id":"217219","label":"spreading cloth onto table","template":"Spreading [something] onto [something]","placeholders":["cloth","table"]}, +{"id":"29804","label":"dropping bottle into bagback","template":"Dropping [something] into [something]","placeholders":["bottle","bagback"]}, +{"id":"210658","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"138747","label":"showing note book behind glass pot with pens","template":"Showing [something] behind [something]","placeholders":["note book","glass pot with pens"]}, +{"id":"10902","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"51600","label":"uncovering toy idol","template":"Uncovering [something]","placeholders":["toy idol"]}, +{"id":"12817","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"145103","label":"holding black play cards","template":"Holding [something]","placeholders":["black play cards"]}, +{"id":"108924","label":"taking a straw out of a cup","template":"Taking [something] out of [something]","placeholders":["a straw","a cup"]}, +{"id":"132398","label":"holding remote behind couch","template":"Holding [something] behind [something]","placeholders":["remote","couch"]}, +{"id":"208297","label":"turning bottle of rubbing alcohol upside down","template":"Turning [something] upside down","placeholders":["bottle of rubbing alcohol"]}, +{"id":"138293","label":"tilting box with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","phone"]}, +{"id":"183468","label":"pushing sugarpot with toothpic","template":"Pushing [something] with [something]","placeholders":["sugarpot","toothpic"]}, +{"id":"32184","label":"approaching a vacuum cleaner with your camera","template":"Approaching [something] with your camera","placeholders":["a vacuum cleaner"]}, +{"id":"216847","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"172867","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"28708","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"157532","label":"piling ram up","template":"Piling [something] up","placeholders":["ram"]}, +{"id":"22616","label":"holding an apple in front of a pitcher","template":"Holding [something] in front of [something]","placeholders":["an apple","a pitcher"]}, +{"id":"114870","label":"putting something upright on the table","template":"Putting [something] upright on the table","placeholders":["something"]}, +{"id":"95419","label":"taking a teaspoon out of a drawer","template":"Taking [something] out of [something]","placeholders":["a teaspoon","a drawer"]}, +{"id":"73664","label":"small tube being deflected from jar","template":"[Something] being deflected from [something]","placeholders":["small tube","jar"]}, +{"id":"169771","label":"pulling calculator from left to right","template":"Pulling [something] from left to right","placeholders":["calculator"]}, +{"id":"183987","label":"pouring water into my mouth","template":"Pouring [something] into [something]","placeholders":["water","my mouth"]}, +{"id":"147830","label":"plugging charging cord into smartphone","template":"Plugging [something] into [something]","placeholders":["charging cord","smartphone"]}, +{"id":"73286","label":"stuffing a tube into a bag","template":"Stuffing [something] into [something]","placeholders":["a tube","a bag"]}, +{"id":"149552","label":"taking box from floor","template":"Taking [something] from [somewhere]","placeholders":["box","floor"]}, +{"id":"166527","label":"dropping a toothpick into a cup","template":"Dropping [something] into [something]","placeholders":["a toothpick","a cup"]}, +{"id":"108028","label":"moving plate and banana away from each other","template":"Moving [something] and [something] away from each other","placeholders":["plate","banana"]}, +{"id":"99546","label":"taking screwdriver","template":"Taking [one of many similar things on the table]","placeholders":["screwdriver"]}, +{"id":"122321","label":"unfolding hat","template":"Unfolding [something]","placeholders":["hat"]}, +{"id":"135547","label":"pretending to put green water bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["green water bottle"]}, +{"id":"191239","label":"trying to bend metal rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal rod"]}, +{"id":"183663","label":"pretending to put a tomato behind a mug","template":"Pretending to put [something] behind [something]","placeholders":["a tomato","a mug"]}, +{"id":"46889","label":"showing leaf to the camera","template":"Showing [something] to the camera","placeholders":["leaf"]}, +{"id":"10622","label":"approaching bicycle with your camera","template":"Approaching [something] with your camera","placeholders":["bicycle"]}, +{"id":"80770","label":"putting a highlighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["a highlighter"]}, +{"id":"170290","label":"holding food container","template":"Holding [something]","placeholders":["food container"]}, +{"id":"154489","label":"pretending to sprinkle air onto paper","template":"Pretending to sprinkle air onto [something]","placeholders":["paper"]}, +{"id":"126237","label":"pulling toy truck from left to right","template":"Pulling [something] from left to right","placeholders":["toy truck"]}, +{"id":"6591","label":"putting stapler next to glue stick","template":"Putting [something] next to [something]","placeholders":["stapler","glue stick"]}, +{"id":"209007","label":"pushing granola bar from left to right","template":"Pushing [something] from left to right","placeholders":["granola bar"]}, +{"id":"119640","label":"pretending to pour water out of a cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","cup"]}, +{"id":"59153","label":"pushing mascara so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["mascara"]}, +{"id":"24070","label":"opening pant zip","template":"Opening [something]","placeholders":["pant zip"]}, +{"id":"19426","label":"touching (without moving) lid of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["lid","bottle"]}, +{"id":"142109","label":"pretending or failing to wipe stain off of fridge","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","fridge"]}, +{"id":"106900","label":"tilting appointment book with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["appointment book","pen"]}, +{"id":"17011","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"184270","label":"taking paper","template":"Taking [one of many similar things on the table]","placeholders":["paper"]}, +{"id":"69091","label":"putting mug in front of matchbox","template":"Putting [something] in front of [something]","placeholders":["mug","matchbox"]}, +{"id":"33296","label":"putting shoe underneath bed","template":"Putting [something] underneath [something]","placeholders":["shoe","bed"]}, +{"id":"44219","label":"pushing cards so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cards"]}, +{"id":"19163","label":"putting boxes","template":"Putting [something similar to other things that are already on the table]","placeholders":["boxes"]}, +{"id":"110137","label":"ball being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["ball","wall"]}, +{"id":"134905","label":"lifting plate with muffin on it","template":"Lifting [something] with [something] on it","placeholders":["plate","muffin"]}, +{"id":"34102","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"768","label":"trying to bend a stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a stick"]}, +{"id":"238","label":"showing that dust bin is empty","template":"Showing that [something] is empty","placeholders":["dust bin"]}, +{"id":"171126","label":"putting essential oil bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["essential oil bottle"]}, +{"id":"1700","label":"hitting cup with card","template":"Hitting [something] with [something]","placeholders":["cup","card"]}, +{"id":"139349","label":"pretending to be tearing cardboard","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cardboard"]}, +{"id":"114926","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"210559","label":"picking purple balloon pump up","template":"Picking [something] up","placeholders":["purple balloon pump"]}, +{"id":"113300","label":"putting a beer can in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a beer can","a cup"]}, +{"id":"166831","label":"twisting (wringing) wash cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wash cloth"]}, +{"id":"149528","label":"pushing a jumpdrive so it spins","template":"Pushing [something] so it spins","placeholders":["a jumpdrive"]}, +{"id":"29429","label":"holding bottled water","template":"Holding [something]","placeholders":["bottled water"]}, +{"id":"116203","label":"pushing plush so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plush"]}, +{"id":"118587","label":"holding something next to something","template":"Holding [something] next to [something]","placeholders":["something","something"]}, +{"id":"198842","label":"pretending to take cutting tool from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["cutting tool","floor"]}, +{"id":"129391","label":"moving tape dispenser and mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["tape dispenser","mouse"]}, +{"id":"8529","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"124423","label":"lifting paper roll up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["paper roll"]}, +{"id":"179626","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"154417","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"81740","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"144787","label":"stuffing mobile into bag","template":"Stuffing [something] into [something]","placeholders":["mobile","bag"]}, +{"id":"47357","label":"moving a lighter up","template":"Moving [something] up","placeholders":["a lighter"]}, +{"id":"166452","label":"attaching cap to pen","template":"Attaching [something] to [something]","placeholders":["cap","pen"]}, +{"id":"35850","label":"pretending or failing to wipe text off of receipt","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["text","receipt"]}, +{"id":"218843","label":"folding mat","template":"Folding [something]","placeholders":["mat"]}, +{"id":"20462","label":"moving toy idol up","template":"Moving [something] up","placeholders":["toy idol"]}, +{"id":"65733","label":"holding cards over paper","template":"Holding [something] over [something]","placeholders":["cards","paper"]}, +{"id":"10935","label":"showing that a pepsi bottle is empty","template":"Showing that [something] is empty","placeholders":["a pepsi bottle"]}, +{"id":"103831","label":"throwing plastic eyeball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["plastic eyeball"]}, +{"id":"37158","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"54833","label":"tilting calculator with ruler on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["calculator","ruler"]}, +{"id":"67465","label":"poking hat so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["hat"]}, +{"id":"172870","label":"dropping coin next to handkerchief","template":"Dropping [something] next to [something]","placeholders":["coin","handkerchief"]}, +{"id":"38332","label":"putting cable into bag","template":"Putting [something] into [something]","placeholders":["cable","bag"]}, +{"id":"216496","label":"holding a remote","template":"Holding [something]","placeholders":["a remote"]}, +{"id":"110897","label":"failing to put book into cup because book does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["book","cup","book"]}, +{"id":"143246","label":"putting something similar on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar on the table"]}, +{"id":"105257","label":"turning a jug upside down","template":"Turning [something] upside down","placeholders":["a jug"]}, +{"id":"14341","label":"tipping a pencil holder over","template":"Tipping [something] over","placeholders":["a pencil holder"]}, +{"id":"193211","label":"showing bracelet on top of wallet","template":"Showing [something] on top of [something]","placeholders":["bracelet","wallet"]}, +{"id":"29244","label":"putting green water bottle on a surface","template":"Putting [something] on a surface","placeholders":["green water bottle"]}, +{"id":"141353","label":"plugging usb cable into tablet","template":"Plugging [something] into [something]","placeholders":["usb cable","tablet"]}, +{"id":"209666","label":"turning the camera left while filming ad board","template":"Turning the camera left while filming [something]","placeholders":["ad board"]}, +{"id":"171946","label":"putting flash drive and lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["flash drive","lighter"]}, +{"id":"204570","label":"rolling a round block on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a round block"]}, +{"id":"186022","label":"showing spoon behind mug","template":"Showing [something] behind [something]","placeholders":["spoon","mug"]}, +{"id":"39485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"216966","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"11416","label":"pouring water out of beaker","template":"Pouring [something] out of [something]","placeholders":["water","beaker"]}, +{"id":"61575","label":"plugging plug into jack","template":"Plugging [something] into [something]","placeholders":["plug","jack"]}, +{"id":"99989","label":"stacking two small containers into a bigger one","template":"Stacking [number of] [something]","placeholders":["two small containers","into a bigger one"]}, +{"id":"217550","label":"rolling yellow like tennis ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["yellow like tennis ball"]}, +{"id":"115014","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"148751","label":"pouring grains onto small bottle","template":"Pouring [something] onto [something]","placeholders":["grains","small bottle"]}, +{"id":"9853","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"83655","label":"pretending to put timepiece onto basket","template":"Pretending to put [something] onto [something]","placeholders":["timepiece","basket"]}, +{"id":"209705","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"46467","label":"moving tin and tin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["tin","tin"]}, +{"id":"896","label":"putting pen, candle and lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","candle","lighter"]}, +{"id":"97293","label":"tipping usb wall adapter over","template":"Tipping [something] over","placeholders":["usb wall adapter"]}, +{"id":"75836","label":"showing that a pill bottle is empty","template":"Showing that [something] is empty","placeholders":["a pill bottle"]}, +{"id":"160657","label":"usb cable falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["usb cable"]}, +{"id":"144730","label":"putting fork onto cup","template":"Putting [something] onto [something]","placeholders":["fork","cup"]}, +{"id":"116897","label":"moving pincer up","template":"Moving [something] up","placeholders":["pincer"]}, +{"id":"173624","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"124638","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191468","label":"stuffing cord into drawer","template":"Stuffing [something] into [something]","placeholders":["cord","drawer"]}, +{"id":"157786","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"183879","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"145627","label":"plugging usb cord into wall jack","template":"Plugging [something] into [something]","placeholders":["usb cord","wall jack"]}, +{"id":"197913","label":"taking one phone","template":"Taking [one of many similar things on the table]","placeholders":["one phone"]}, +{"id":"27545","label":"moving body spray bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["body spray bottle"]}, +{"id":"193397","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"153442","label":"holding tablet pc","template":"Holding [something]","placeholders":["tablet pc"]}, +{"id":"19018","label":"holding pen next to bottle","template":"Holding [something] next to [something]","placeholders":["pen","bottle"]}, +{"id":"95575","label":"moving a small jar closer to a big jar","template":"Moving [something] closer to [something]","placeholders":["a small jar","a big jar"]}, +{"id":"104890","label":"pretending to take lipstick out of tumbler","template":"Pretending to take [something] out of [something]","placeholders":["lipstick","tumbler"]}, +{"id":"60523","label":"moving a padlock away from a shoe","template":"Moving [something] away from [something]","placeholders":["a padlock","a shoe"]}, +{"id":"89559","label":"poking a book so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a book"]}, +{"id":"20773","label":"pretending to throw paper","template":"Pretending to throw [something]","placeholders":["paper"]}, +{"id":"50992","label":"picking green water bottle up","template":"Picking [something] up","placeholders":["green water bottle"]}, +{"id":"153507","label":"pushing hard covered book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hard covered book"]}, +{"id":"99441","label":"covering pencil with sheet","template":"Covering [something] with [something]","placeholders":["pencil","sheet"]}, +{"id":"4914","label":"tilting a bottle with a tv remote control on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a bottle","a tv remote control"]}, +{"id":"44912","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"70174","label":"stuffing a reusable grocery bag into its holder","template":"Stuffing [something] into [something]","placeholders":["a reusable grocery bag","its holder"]}, +{"id":"162511","label":"pulling jar from left to right","template":"Pulling [something] from left to right","placeholders":["jar"]}, +{"id":"73283","label":"spinning a pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pencil"]}, +{"id":"169972","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"204375","label":"pretending to take book out of bag","template":"Pretending to take [something] out of [something]","placeholders":["book","bag"]}, +{"id":"74448","label":"dropping bear next to chair","template":"Dropping [something] next to [something]","placeholders":["bear","chair"]}, +{"id":"58633","label":"turning the camera downwards while filming notebook","template":"Turning the camera downwards while filming [something]","placeholders":["notebook"]}, +{"id":"9172","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"28988","label":"plugging speaker into laptop","template":"Plugging [something] into [something]","placeholders":["speaker","laptop"]}, +{"id":"170643","label":"pretending to pick a car up","template":"Pretending to pick [something] up","placeholders":["a car"]}, +{"id":"199475","label":"hitting cup with roll","template":"Hitting [something] with [something]","placeholders":["cup","roll"]}, +{"id":"40467","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"99688","label":"approaching flowers with your camera","template":"Approaching [something] with your camera","placeholders":["flowers"]}, +{"id":"170835","label":"pouring beer into a mug","template":"Pouring [something] into [something]","placeholders":["beer","a mug"]}, +{"id":"165093","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"76037","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"214453","label":"putting spoon on a surface","template":"Putting [something] on a surface","placeholders":["spoon"]}, +{"id":"191340","label":"showing dates to the camera","template":"Showing [something] to the camera","placeholders":["dates"]}, +{"id":"13332","label":"plugging a plug into plug socket","template":"Plugging [something] into [something]","placeholders":["a plug","plug socket"]}, +{"id":"40563","label":"holding bottle next to trash can","template":"Holding [something] next to [something]","placeholders":["bottle","trash can"]}, +{"id":"20284","label":"piling poker chips up","template":"Piling [something] up","placeholders":["poker chips"]}, +{"id":"91638","label":"pretending to take medicine out of medicine bottle","template":"Pretending to take [something] out of [something]","placeholders":["medicine","medicine bottle"]}, +{"id":"189961","label":"putting flowers","template":"Putting [something similar to other things that are already on the table]","placeholders":["flowers"]}, +{"id":"167971","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"55425","label":"twisting (wringing) cleaning cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cleaning cloth"]}, +{"id":"28348","label":"holding scissors next to a lighter","template":"Holding [something] next to [something]","placeholders":["scissors","a lighter"]}, +{"id":"191","label":"removing bucket, revealing thread behind","template":"Removing [something], revealing [something] behind","placeholders":["bucket","thread"]}, +{"id":"40084","label":"piling towels up","template":"Piling [something] up","placeholders":["towels"]}, +{"id":"158456","label":"moving bowl down","template":"Moving [something] down","placeholders":["bowl"]}, +{"id":"59578","label":"picking a tv remote up","template":"Picking [something] up","placeholders":["a tv remote"]}, +{"id":"185684","label":"pushing chair from left to right","template":"Pushing [something] from left to right","placeholders":["chair"]}, +{"id":"167440","label":"covering remote with a magazine","template":"Covering [something] with [something]","placeholders":["remote","a magazine"]}, +{"id":"37272","label":"pushing a bottle from left to right","template":"Pushing [something] from left to right","placeholders":["a bottle"]}, +{"id":"199100","label":"holding cup in front of envelope","template":"Holding [something] in front of [something]","placeholders":["cup","envelope"]}, +{"id":"67293","label":"putting vegetable peeler","template":"Putting [something similar to other things that are already on the table]","placeholders":["vegetable peeler"]}, +{"id":"77730","label":"hitting a pencil case with a pen","template":"Hitting [something] with [something]","placeholders":["a pencil case","a pen"]}, +{"id":"173128","label":"holding smartphone in front of calculator","template":"Holding [something] in front of [something]","placeholders":["smartphone","calculator"]}, +{"id":"51253","label":"picking a can of soda up","template":"Picking [something] up","placeholders":["a can of soda"]}, +{"id":"119816","label":"throwing shoe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["shoe"]}, +{"id":"118118","label":"dropping a shoe brush onto a box","template":"Dropping [something] onto [something]","placeholders":["a shoe brush","a box"]}, +{"id":"159354","label":"pistachio being deflected from mug","template":"[Something] being deflected from [something]","placeholders":["pistachio","mug"]}, +{"id":"116499","label":"pulling two ends of band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["band"]}, +{"id":"151473","label":"moving a pen up","template":"Moving [something] up","placeholders":["a pen"]}, +{"id":"52704","label":"pulling something from left to right","template":"Pulling [something] from left to right","placeholders":["something"]}, +{"id":"25249","label":"pretending to put battery charger next to box","template":"Pretending to put [something] next to [something]","placeholders":["battery charger","box"]}, +{"id":"215808","label":"putting pen into cup","template":"Putting [something] into [something]","placeholders":["pen","cup"]}, +{"id":"36216","label":"plugging charger into plug socket","template":"Plugging [something] into [something]","placeholders":["charger","plug socket"]}, +{"id":"62943","label":"closed small umbrella falling like a rock","template":"[Something] falling like a rock","placeholders":["closed small umbrella"]}, +{"id":"112893","label":"pretending to open small fresh mint without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["small fresh mint"]}, +{"id":"150873","label":"showing dinosaur model to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur model"]}, +{"id":"214631","label":"spilling tea onto napkin","template":"Spilling [something] onto [something]","placeholders":["tea","napkin"]}, +{"id":"38907","label":"lifting a surface with hat on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["hat"]}, +{"id":"82000","label":"pushing battery with pencil","template":"Pushing [something] with [something]","placeholders":["battery","pencil"]}, +{"id":"103694","label":"turning the camera upwards while filming board","template":"Turning the camera upwards while filming [something]","placeholders":["board"]}, +{"id":"13224","label":"putting a paint brush on the edge of a table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a paint brush","a table"]}, +{"id":"82410","label":"scooping sugar up with plastic scope","template":"Scooping [something] up with [something]","placeholders":["sugar","plastic scope"]}, +{"id":"133996","label":"pretending to pour water out of a cup, but the cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","the cup"]}, +{"id":"60535","label":"tearing leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["leaf"]}, +{"id":"65278","label":"plugging guitar cable into amplifier","template":"Plugging [something] into [something]","placeholders":["guitar cable","amplifier"]}, +{"id":"141363","label":"moving phone and wristwatch away from each other","template":"Moving [something] and [something] away from each other","placeholders":["phone","wristwatch"]}, +{"id":"146434","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"117525","label":"spinning something that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["something"]}, +{"id":"127019","label":"trying to bend a lego pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a lego pen"]}, +{"id":"134313","label":"moving glass and can so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["glass","can"]}, +{"id":"87489","label":"turning the camera right while filming boay","template":"Turning the camera right while filming [something]","placeholders":["boay"]}, +{"id":"44726","label":"throwing wooden puppet in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["wooden puppet"]}, +{"id":"106988","label":"tipping a spray bottle over","template":"Tipping [something] over","placeholders":["a spray bottle"]}, +{"id":"151140","label":"pulling thermal cup from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["thermal cup","laptop"]}, +{"id":"72890","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"114754","label":"bending cardboard so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cardboard"]}, +{"id":"159461","label":"taking a pen out of box","template":"Taking [something] out of [something]","placeholders":["a pen","box"]}, +{"id":"108710","label":"pouring oil onto crust of bread","template":"Pouring [something] onto [something]","placeholders":["oil","crust of bread"]}, +{"id":"33285","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196239","label":"pulling keys out of a lock","template":"Pulling [something] out of [something]","placeholders":["keys","a lock"]}, +{"id":"104841","label":"pretending to take notebook from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["notebook","floor"]}, +{"id":"182342","label":"poking a case so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a case"]}, +{"id":"139047","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"151082","label":"tilting book with nail polish on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","nail polish"]}, +{"id":"110024","label":"turning the camera upwards while filming radiator","template":"Turning the camera upwards while filming [something]","placeholders":["radiator"]}, +{"id":"133827","label":"lifting plate with sandwich on it","template":"Lifting [something] with [something] on it","placeholders":["plate","sandwich"]}, +{"id":"156695","label":"letting something roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["something"]}, +{"id":"68610","label":"pulling a mouse from right to left","template":"Pulling [something] from right to left","placeholders":["a mouse"]}, +{"id":"138183","label":"putting a cd case on a surface","template":"Putting [something] on a surface","placeholders":["a cd case"]}, +{"id":"84890","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"43354","label":"poking coffee cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["coffee cup"]}, +{"id":"36196","label":"letting canister roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["canister"]}, +{"id":"16715","label":"uncovering garlic","template":"Uncovering [something]","placeholders":["garlic"]}, +{"id":"124861","label":"moving a pencil away from a salt shaker","template":"Moving [something] away from [something]","placeholders":["a pencil","a salt shaker"]}, +{"id":"105087","label":"pretending to pick mascara up","template":"Pretending to pick [something] up","placeholders":["mascara"]}, +{"id":"193369","label":"tissue box falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue box"]}, +{"id":"23384","label":"tearing reciept into two pieces","template":"Tearing [something] into two pieces","placeholders":["reciept"]}, +{"id":"59942","label":"putting phone underneath camera","template":"Putting [something] underneath [something]","placeholders":["phone","camera"]}, +{"id":"102008","label":"squeezing a ketchup packet","template":"Squeezing [something]","placeholders":["a ketchup packet"]}, +{"id":"204806","label":"covering something with something","template":"Covering [something] with [something]","placeholders":["something","something"]}, +{"id":"24244","label":"hitting white wall with hand","template":"Hitting [something] with [something]","placeholders":["white wall","hand"]}, +{"id":"120997","label":"taking mug from jeep bonnet","template":"Taking [something] from [somewhere]","placeholders":["mug","jeep bonnet"]}, +{"id":"36515","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"90675","label":"pulling two ends of eraser putty so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["eraser putty"]}, +{"id":"176452","label":"taking sharpener out of pencil case","template":"Taking [something] out of [something]","placeholders":["sharpener","pencil case"]}, +{"id":"50494","label":"pretending or failing to wipe marker off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"127651","label":"pushing a bucket so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bucket"]}, +{"id":"109488","label":"showing that a bottle is empty","template":"Showing that [something] is empty","placeholders":["a bottle"]}, +{"id":"70567","label":"putting bowl next to glass","template":"Putting [something] next to [something]","placeholders":["bowl","glass"]}, +{"id":"123505","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"92206","label":"poking a stack of cups so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cups"]}, +{"id":"111205","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"81169","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"16561","label":"lifting tray with a glass on it","template":"Lifting [something] with [something] on it","placeholders":["tray","a glass"]}, +{"id":"178029","label":"putting passport on a surface","template":"Putting [something] on a surface","placeholders":["passport"]}, +{"id":"40232","label":"pulling battery from behind of mug","template":"Pulling [something] from behind of [something]","placeholders":["battery","mug"]}, +{"id":"181729","label":"tipping a pencil holder with a yo-yo over, so the yo-yo falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a pencil holder","a yo-yo","the yo-yo"]}, +{"id":"150002","label":"turning the camera upwards while filming hair dryer","template":"Turning the camera upwards while filming [something]","placeholders":["hair dryer"]}, +{"id":"63218","label":"holding spectacle box behind cup","template":"Holding [something] behind [something]","placeholders":["spectacle box","cup"]}, +{"id":"45059","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"121116","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"165618","label":"touching (without moving) keyboard of laptop","template":"Touching (without moving) [part] of [something]","placeholders":["keyboard","laptop"]}, +{"id":"19007","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"198297","label":"approaching violin with your camera","template":"Approaching [something] with your camera","placeholders":["violin"]}, +{"id":"100380","label":"dollar bill falling falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["dollar bill falling"]}, +{"id":"176180","label":"holding wire next to a chair","template":"Holding [something] next to [something]","placeholders":["wire","a chair"]}, +{"id":"188257","label":"pushing punching machine from right to left","template":"Pushing [something] from right to left","placeholders":["punching machine"]}, +{"id":"5720","label":"turning the camera upwards while filming green headlight","template":"Turning the camera upwards while filming [something]","placeholders":["green headlight"]}, +{"id":"16224","label":"covering bowl with lid","template":"Covering [something] with [something]","placeholders":["bowl","lid"]}, +{"id":"46974","label":"unfolding a drawing on paper","template":"Unfolding [something]","placeholders":["a drawing on paper"]}, +{"id":"123773","label":"pulling two ends of hair band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair band"]}, +{"id":"167461","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"45220","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"57847","label":"spinning white pebble so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["white pebble"]}, +{"id":"107092","label":"pushing pushing wallet off table so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pushing wallet off table"]}, +{"id":"99693","label":"trying to bend iron rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["iron rod"]}, +{"id":"64759","label":"twisting (wringing) purple sock wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["purple sock"]}, +{"id":"143387","label":"pushing a box from right to left","template":"Pushing [something] from right to left","placeholders":["a box"]}, +{"id":"105081","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"103145","label":"pretending to put screwdriver on a surface","template":"Pretending to put [something] on a surface","placeholders":["screwdriver"]}, +{"id":"187165","label":"putting 4 envelopes onto tables","template":"Putting [number of] [something] onto [something]","placeholders":["4","envelopes","tables"]}, +{"id":"117770","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"13564","label":"pouring water onto an absorbent cloth","template":"Pouring [something] onto [something]","placeholders":["water","an absorbent cloth"]}, +{"id":"11771","label":"tilting paper with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","pen"]}, +{"id":"142592","label":"turning a bag of gum upside down","template":"Turning [something] upside down","placeholders":["a bag of gum"]}, +{"id":"35146","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"66803","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"131951","label":"putting watch, keys and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["watch","keys","pen"]}, +{"id":"207778","label":"pretending to poke tape measure","template":"Pretending to poke [something]","placeholders":["tape measure"]}, +{"id":"209534","label":"showing an apple next to a cup","template":"Showing [something] next to [something]","placeholders":["an apple","a cup"]}, +{"id":"44593","label":"rolling tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tape"]}, +{"id":"217791","label":"poking a stack of bricks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["bricks"]}, +{"id":"46398","label":"holding a cup next to a cup","template":"Holding [something] next to [something]","placeholders":["a cup","a cup"]}, +{"id":"144373","label":"spinning a water bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a water bottle"]}, +{"id":"141542","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"45123","label":"tearing white sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["white sheet of paper"]}, +{"id":"9221","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"20502","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"8775","label":"pretending to be tearing a dvd case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a dvd case"]}, +{"id":"52129","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"26164","label":"opening tablet box","template":"Opening [something]","placeholders":["tablet box"]}, +{"id":"216700","label":"hitting glasses with pencil","template":"Hitting [something] with [something]","placeholders":["glasses","pencil"]}, +{"id":"102120","label":"putting a drill on a surface","template":"Putting [something] on a surface","placeholders":["a drill"]}, +{"id":"157184","label":"putting helmet behind a flower","template":"Putting [something] behind [something]","placeholders":["helmet","a flower"]}, +{"id":"151775","label":"showing van to the camera","template":"Showing [something] to the camera","placeholders":["van"]}, +{"id":"204754","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"166575","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"194603","label":"taking a wire out of many wire looking like objects","template":"Taking [one of many similar things on the table]","placeholders":["a wire out of many wire looking like objects"]}, +{"id":"160578","label":"holding ring","template":"Holding [something]","placeholders":["ring"]}, +{"id":"191188","label":"putting plate that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["plate"]}, +{"id":"154335","label":"pretending to put water bottle next to bowl","template":"Pretending to put [something] next to [something]","placeholders":["water bottle","bowl"]}, +{"id":"108781","label":"lifting plate with glass tumbler on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glass tumbler"]}, +{"id":"18688","label":"pushing cart so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cart"]}, +{"id":"161635","label":"dropping a pen onto a table","template":"Dropping [something] onto [something]","placeholders":["a pen","a table"]}, +{"id":"106819","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"26652","label":"stuffing a book into a bookshelf","template":"Stuffing [something] into [something]","placeholders":["a book","a bookshelf"]}, +{"id":"169350","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"215715","label":"tipping a perfume bottle over","template":"Tipping [something] over","placeholders":["a perfume bottle"]}, +{"id":"95225","label":"holding pen over jar","template":"Holding [something] over [something]","placeholders":["pen","jar"]}, +{"id":"95566","label":"trying to bend bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["bottle"]}, +{"id":"143023","label":"taking a card","template":"Taking [one of many similar things on the table]","placeholders":["a card"]}, +{"id":"64203","label":"taking a bangle from a jar","template":"Taking [something] from [somewhere]","placeholders":["a bangle","a jar"]}, +{"id":"156528","label":"showing bike to the camera","template":"Showing [something] to the camera","placeholders":["bike"]}, +{"id":"12958","label":"throwing a peace bear against a pillow","template":"Throwing [something] against [something]","placeholders":["a peace bear","a pillow"]}, +{"id":"133886","label":"dropping keyboard onto backpack","template":"Dropping [something] onto [something]","placeholders":["keyboard","backpack"]}, +{"id":"207116","label":"trying to bend a pencil so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pencil"]}, +{"id":"83466","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"144827","label":"approaching scotch tape with your camera","template":"Approaching [something] with your camera","placeholders":["scotch tape"]}, +{"id":"209812","label":"showing that walnuts is inside glass jar","template":"Showing that [something] is inside [something]","placeholders":["walnuts","glass jar"]}, +{"id":"192942","label":"pretending to poke a pencil case","template":"Pretending to poke [something]","placeholders":["a pencil case"]}, +{"id":"109244","label":"removing sunglasses, revealing microscope behind","template":"Removing [something], revealing [something] behind","placeholders":["sunglasses","microscope"]}, +{"id":"147797","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"92107","label":"uncovering legs","template":"Uncovering [something]","placeholders":["legs"]}, +{"id":"53802","label":"tilting paper with cards on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","cards"]}, +{"id":"149504","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"174120","label":"pushing water bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["water bottle"]}, +{"id":"86593","label":"putting a pen on a surface","template":"Putting [something] on a surface","placeholders":["a pen"]}, +{"id":"173229","label":"pushing an apple so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an apple"]}, +{"id":"185773","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"134585","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"83119","label":"folding a pink sticky note","template":"Folding [something]","placeholders":["a pink sticky note"]}, +{"id":"19923","label":"putting 3 books onto couch","template":"Putting [number of] [something] onto [something]","placeholders":["3","books","couch"]}, +{"id":"48521","label":"moving bowl up","template":"Moving [something] up","placeholders":["bowl"]}, +{"id":"204109","label":"plugging usb into adaptor but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","adaptor"]}, +{"id":"210262","label":"twisting (wringing) paper wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["paper"]}, +{"id":"150840","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"38197","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"70903","label":"attaching receipt to card","template":"Attaching [something] to [something]","placeholders":["receipt","card"]}, +{"id":"45943","label":"tipping a glass over","template":"Tipping [something] over","placeholders":["a glass"]}, +{"id":"141189","label":"pulling a box from behind of a stack","template":"Pulling [something] from behind of [something]","placeholders":["a box","a stack"]}, +{"id":"172124","label":"moving a pencil and a pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pencil","a pen"]}, +{"id":"112199","label":"pretending to put black hat on a surface","template":"Pretending to put [something] on a surface","placeholders":["black hat"]}, +{"id":"197794","label":"putting sponze, purse and plate on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sponze","purse","plate"]}, +{"id":"93989","label":"putting clothes peg next to mug","template":"Putting [something] next to [something]","placeholders":["clothes peg","mug"]}, +{"id":"172139","label":"moving a container away from another one","template":"Moving [something] away from [something]","placeholders":["a container","another one"]}, +{"id":"158185","label":"spinning calculator that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["calculator"]}, +{"id":"127048","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"141557","label":"moving toy bullet pack and toy bullet pack closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy bullet pack","toy bullet pack"]}, +{"id":"183995","label":"pushing a tube from right to left","template":"Pushing [something] from right to left","placeholders":["a tube"]}, +{"id":"164903","label":"turning the camera left while filming jacket","template":"Turning the camera left while filming [something]","placeholders":["jacket"]}, +{"id":"137162","label":"folding a piece of clothe","template":"Folding [something]","placeholders":["a piece of clothe"]}, +{"id":"208864","label":"approaching iron with your camera","template":"Approaching [something] with your camera","placeholders":["iron"]}, +{"id":"75149","label":"trying to pour water from cup into a glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water from cup","a glass"]}, +{"id":"97970","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"19248","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213220","label":"showing a hat on top of a hanger","template":"Showing [something] on top of [something]","placeholders":["a hat","a hanger"]}, +{"id":"19117","label":"tilting black file with red coloured toy car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","red coloured toy car"]}, +{"id":"95029","label":"unfolding unfolding tissue","template":"Unfolding [something]","placeholders":["unfolding tissue"]}, +{"id":"26526","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"219923","label":"putting a painting brush","template":"Putting [something similar to other things that are already on the table]","placeholders":["a painting brush"]}, +{"id":"204122","label":"throwing a pillow in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a pillow"]}, +{"id":"137577","label":"pushing car so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["car"]}, +{"id":"49431","label":"pretending to scoop coffee up with scoop","template":"Pretending to scoop [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"89751","label":"wiping water off of a desk","template":"Wiping [something] off of [something]","placeholders":["water","a desk"]}, +{"id":"141632","label":"dropping a coin into a box","template":"Dropping [something] into [something]","placeholders":["a coin","a box"]}, +{"id":"186663","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"177999","label":"unfolding earphone","template":"Unfolding [something]","placeholders":["earphone"]}, +{"id":"209249","label":"spinning a paint brush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a paint brush"]}, +{"id":"185813","label":"bending hanger so that it deforms","template":"Bending [something] so that it deforms","placeholders":["hanger"]}, +{"id":"133986","label":"pretending to put coin on a surface","template":"Pretending to put [something] on a surface","placeholders":["coin"]}, +{"id":"102812","label":"moving helmet and helmet so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["helmet","helmet"]}, +{"id":"67800","label":"covering fan with blanket","template":"Covering [something] with [something]","placeholders":["fan","blanket"]}, +{"id":"52309","label":"touching (without moving) cover of book","template":"Touching (without moving) [part] of [something]","placeholders":["cover","book"]}, +{"id":"164849","label":"pretending to put tablet into bed","template":"Pretending to put [something] into [something]","placeholders":["tablet","bed"]}, +{"id":"146501","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"77841","label":"moving pen away from the camera","template":"Moving [something] away from the camera","placeholders":["pen"]}, +{"id":"179597","label":"poking stuffed panda bear so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["stuffed panda bear"]}, +{"id":"41043","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"68709","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"180633","label":"pretending to put bottled ponzu sauce on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottled ponzu sauce"]}, +{"id":"116686","label":"trying but failing to attach clip to cabinet door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["clip","cabinet door"]}, +{"id":"186136","label":"tipping cup with liquic over, so liquid falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","liquic","liquid"]}, +{"id":"156198","label":"touching (without moving) a side of a pitcher","template":"Touching (without moving) [part] of [something]","placeholders":["a side","a pitcher"]}, +{"id":"73112","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"127526","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"207720","label":"pushing pink toothbrush case from left to right","template":"Pushing [something] from left to right","placeholders":["pink toothbrush case"]}, +{"id":"108212","label":"moving a comb away from a box","template":"Moving [something] away from [something]","placeholders":["a comb","a box"]}, +{"id":"210620","label":"tearing receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["receipt"]}, +{"id":"41278","label":"tearing a note just a little bit","template":"Tearing [something] just a little bit","placeholders":["a note"]}, +{"id":"9586","label":"picking watch up","template":"Picking [something] up","placeholders":["watch"]}, +{"id":"212950","label":"plugging cord into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall plug"]}, +{"id":"111262","label":"pulling black umbrella from right to left","template":"Pulling [something] from right to left","placeholders":["black umbrella"]}, +{"id":"92734","label":"putting sharpener behind sticky note","template":"Putting [something] behind [something]","placeholders":["sharpener","sticky note"]}, +{"id":"168058","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"180443","label":"bending sheet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["sheet"]}, +{"id":"122055","label":"pulling a calculator out of a bag","template":"Pulling [something] out of [something]","placeholders":["a calculator","a bag"]}, +{"id":"171214","label":"showing that pills is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["pills","bottle"]}, +{"id":"143655","label":"taking spoon out of cup","template":"Taking [something] out of [something]","placeholders":["spoon","cup"]}, +{"id":"41637","label":"putting bunny doll in front of books","template":"Putting [something] in front of [something]","placeholders":["bunny doll","books"]}, +{"id":"141956","label":"moving pen closer to duster","template":"Moving [something] closer to [something]","placeholders":["pen","duster"]}, +{"id":"213817","label":"poking a hole into a tomato","template":"Poking a hole into [something soft]","placeholders":["a tomato"]}, +{"id":"102761","label":"pushing phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["phone"]}, +{"id":"183166","label":"bending a chopstick until it breaks","template":"Bending [something] until it breaks","placeholders":["a chopstick"]}, +{"id":"45579","label":"envelope falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["envelope"]}, +{"id":"27147","label":"moving potato and potato closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["potato","potato"]}, +{"id":"47782","label":"plugging a charger into a plugging but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a plugging"]}, +{"id":"112318","label":"picking toilet paper up","template":"Picking [something] up","placeholders":["toilet paper"]}, +{"id":"152540","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"1602","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"162322","label":"dropping fish into bowl of water","template":"Dropping [something] into [something]","placeholders":["fish","bowl of water"]}, +{"id":"15258","label":"pouring soda into glass","template":"Pouring [something] into [something]","placeholders":["soda","glass"]}, +{"id":"187397","label":"holding cup over box","template":"Holding [something] over [something]","placeholders":["cup","box"]}, +{"id":"140639","label":"taking the keys out of the glass","template":"Taking [something] out of [something]","placeholders":["the keys","the glass"]}, +{"id":"170734","label":"opening packet","template":"Opening [something]","placeholders":["packet"]}, +{"id":"138140","label":"wiping cleaner off of floor","template":"Wiping [something] off of [something]","placeholders":["cleaner","floor"]}, +{"id":"175186","label":"pulling one tealight candle from right to left","template":"Pulling [something] from right to left","placeholders":["one tealight candle"]}, +{"id":"124705","label":"hitting bear doll with toothbrush","template":"Hitting [something] with [something]","placeholders":["bear doll","toothbrush"]}, +{"id":"66338","label":"trying to bend a boxcutter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a boxcutter"]}, +{"id":"215518","label":"rolling car on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["car"]}, +{"id":"42","label":"putting a coin underneath a card","template":"Putting [something] underneath [something]","placeholders":["a coin","a card"]}, +{"id":"134668","label":"wiping liquid off of table","template":"Wiping [something] off of [something]","placeholders":["liquid","table"]}, +{"id":"154686","label":"putting 3 dice onto book","template":"Putting [number of] [something] onto [something]","placeholders":["3","dice","book"]}, +{"id":"122025","label":"showing cook books behind a toy","template":"Showing [something] behind [something]","placeholders":["cook books","a toy"]}, +{"id":"142506","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"24859","label":"putting comb in front of cup","template":"Putting [something] in front of [something]","placeholders":["comb","cup"]}, +{"id":"148983","label":"putting pen into mug","template":"Putting [something] into [something]","placeholders":["pen","mug"]}, +{"id":"51677","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"85848","label":"putting a pen to other pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen to other pens"]}, +{"id":"131591","label":"spinning globe that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["globe"]}, +{"id":"96872","label":"plugging phone into plug","template":"Plugging [something] into [something]","placeholders":["phone","plug"]}, +{"id":"49926","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"196916","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"146827","label":"showing a photo of children to the camera","template":"Showing a photo of [something] to the camera","placeholders":["children"]}, +{"id":"126312","label":"turning the camera upwards while filming bottle","template":"Turning the camera upwards while filming [something]","placeholders":["bottle"]}, +{"id":"175930","label":"uncovering mp4 player","template":"Uncovering [something]","placeholders":["mp4 player"]}, +{"id":"129387","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"139250","label":"opening mail box","template":"Opening [something]","placeholders":["mail box"]}, +{"id":"17480","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"7963","label":"putting a pen into a box","template":"Putting [something] into [something]","placeholders":["a pen","a box"]}, +{"id":"13421","label":"moving wallet and phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wallet","phone"]}, +{"id":"115954","label":"spilling water onto towel","template":"Spilling [something] onto [something]","placeholders":["water","towel"]}, +{"id":"108206","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"135330","label":"poking a pencil case so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pencil case"]}, +{"id":"140496","label":"dropping marker onto envelope","template":"Dropping [something] onto [something]","placeholders":["marker","envelope"]}, +{"id":"17537","label":"dropping cup behind cup","template":"Dropping [something] behind [something]","placeholders":["cup","cup"]}, +{"id":"91544","label":"pushing torch from left to right","template":"Pushing [something] from left to right","placeholders":["torch"]}, +{"id":"96366","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"70591","label":"plugging headphones into a cellphone","template":"Plugging [something] into [something]","placeholders":["headphones","a cellphone"]}, +{"id":"150592","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"171980","label":"picking remote up","template":"Picking [something] up","placeholders":["remote"]}, +{"id":"180603","label":"sprinkling powder onto floor","template":"Sprinkling [something] onto [something]","placeholders":["powder","floor"]}, +{"id":"90289","label":"keychain falling like a rock","template":"[Something] falling like a rock","placeholders":["keychain"]}, +{"id":"124791","label":"putting mug in front of pen","template":"Putting [something] in front of [something]","placeholders":["mug","pen"]}, +{"id":"9680","label":"plugging headphones into a computer","template":"Plugging [something] into [something]","placeholders":["headphones","a computer"]}, +{"id":"25891","label":"approaching sofa chair with your camera","template":"Approaching [something] with your camera","placeholders":["sofa chair"]}, +{"id":"186803","label":"covering a lid with a paper heart","template":"Covering [something] with [something]","placeholders":["a lid","a paper heart"]}, +{"id":"165562","label":"holding a trophy","template":"Holding [something]","placeholders":["a trophy"]}, +{"id":"190730","label":"newspaper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["newspaper"]}, +{"id":"3503","label":"showing a bottle on top of a table","template":"Showing [something] on top of [something]","placeholders":["a bottle","a table"]}, +{"id":"154322","label":"showing cube on top of box of sticks","template":"Showing [something] on top of [something]","placeholders":["cube","box of sticks"]}, +{"id":"183975","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"191939","label":"putting a card with other cards on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a card with other cards on the table"]}, +{"id":"9398","label":"covering rc with cushion","template":"Covering [something] with [something]","placeholders":["rc","cushion"]}, +{"id":"184837","label":"putting a pouch on a surface","template":"Putting [something] on a surface","placeholders":["a pouch"]}, +{"id":"159601","label":"pretending to throw wallet","template":"Pretending to throw [something]","placeholders":["wallet"]}, +{"id":"30564","label":"pretending to take post-it from table","template":"Pretending to take [something] from [somewhere]","placeholders":["post-it","table"]}, +{"id":"40204","label":"moving lighter closer to lighter","template":"Moving [something] closer to [something]","placeholders":["lighter","lighter"]}, +{"id":"212411","label":"moving a cell phone and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cell phone","paper"]}, +{"id":"40844","label":"putting charger next to pink book","template":"Putting [something] next to [something]","placeholders":["charger","pink book"]}, +{"id":"146539","label":"moving a cup and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","a box"]}, +{"id":"111489","label":"covering a stappler with a paper","template":"Covering [something] with [something]","placeholders":["a stappler","a paper"]}, +{"id":"10436","label":"pushing a pencil from right to left","template":"Pushing [something] from right to left","placeholders":["a pencil"]}, +{"id":"1736","label":"covering an ipad with a shirt","template":"Covering [something] with [something]","placeholders":["an ipad","a shirt"]}, +{"id":"43158","label":"putting glass onto letters","template":"Putting [something] onto [something]","placeholders":["glass","letters"]}, +{"id":"85527","label":"pushing box from left to right","template":"Pushing [something] from left to right","placeholders":["box"]}, +{"id":"149932","label":"lifting binder with calculator on it","template":"Lifting [something] with [something] on it","placeholders":["binder","calculator"]}, +{"id":"97311","label":"tilting folder cardboard with toy car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder cardboard","toy car"]}, +{"id":"24411","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"73583","label":"dropping a cup behind text books","template":"Dropping [something] behind [something]","placeholders":["a cup","text books"]}, +{"id":"138650","label":"dropping eye drops onto table","template":"Dropping [something] onto [something]","placeholders":["eye drops","table"]}, +{"id":"134106","label":"holding a measuring tape behind helmet","template":"Holding [something] behind [something]","placeholders":["a measuring tape","helmet"]}, +{"id":"2339","label":"pretending to take pillow from couch","template":"Pretending to take [something] from [somewhere]","placeholders":["pillow","couch"]}, +{"id":"60678","label":"moving something up","template":"Moving [something] up","placeholders":["something"]}, +{"id":"61167","label":"trying to bend glue stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["glue stick"]}, +{"id":"91685","label":"picking pencil up","template":"Picking [something] up","placeholders":["pencil"]}, +{"id":"9530","label":"tilting card with pebble on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["card","pebble"]}, +{"id":"126525","label":"papaer falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["papaer"]}, +{"id":"204731","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"18706","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"218259","label":"picking black play cards up","template":"Picking [something] up","placeholders":["black play cards"]}, +{"id":"31682","label":"pretending to pick orange up","template":"Pretending to pick [something] up","placeholders":["orange"]}, +{"id":"109343","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"169155","label":"putting something behind something","template":"Putting [something] behind [something]","placeholders":["something","something"]}, +{"id":"111239","label":"dropping chocolate onto desk","template":"Dropping [something] onto [something]","placeholders":["chocolate","desk"]}, +{"id":"54671","label":"turning empty cup upside down","template":"Turning [something] upside down","placeholders":["empty cup"]}, +{"id":"58270","label":"poking a hole into pillow","template":"Poking a hole into [something soft]","placeholders":["pillow"]}, +{"id":"128629","label":"spinning tape so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["tape"]}, +{"id":"136553","label":"plugging phone charger into power socket","template":"Plugging [something] into [something]","placeholders":["phone charger","power socket"]}, +{"id":"155305","label":"showing a pen next to a marker","template":"Showing [something] next to [something]","placeholders":["a pen","a marker"]}, +{"id":"26326","label":"putting book behind bag","template":"Putting [something] behind [something]","placeholders":["book","bag"]}, +{"id":"170618","label":"moving nail polish up","template":"Moving [something] up","placeholders":["nail polish"]}, +{"id":"52976","label":"uncovering sock","template":"Uncovering [something]","placeholders":["sock"]}, +{"id":"72604","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"36607","label":"folding washcloth","template":"Folding [something]","placeholders":["washcloth"]}, +{"id":"140413","label":"putting matchbox behind mirror","template":"Putting [something] behind [something]","placeholders":["matchbox","mirror"]}, +{"id":"75462","label":"putting shirt in front of basket","template":"Putting [something] in front of [something]","placeholders":["shirt","basket"]}, +{"id":"6339","label":"pushing green purse from right to left","template":"Pushing [something] from right to left","placeholders":["green purse"]}, +{"id":"26800","label":"pouring wine into glass","template":"Pouring [something] into [something]","placeholders":["wine","glass"]}, +{"id":"5184","label":"showing car behind column","template":"Showing [something] behind [something]","placeholders":["car","column"]}, +{"id":"12679","label":"moving belt down","template":"Moving [something] down","placeholders":["belt"]}, +{"id":"92034","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"194392","label":"putting mug, marker and stapler on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["mug","marker","stapler"]}, +{"id":"70931","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"166303","label":"putting a coffee cup next to a salt shaker","template":"Putting [something] next to [something]","placeholders":["a coffee cup","a salt shaker"]}, +{"id":"26649","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"30935","label":"tearing a post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["a post it note"]}, +{"id":"6750","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"203631","label":"turning a teddy panda bear upside down","template":"Turning [something] upside down","placeholders":["a teddy panda bear"]}, +{"id":"97527","label":"throwing shirt","template":"Throwing [something]","placeholders":["shirt"]}, +{"id":"191790","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"182452","label":"throwing usb cable","template":"Throwing [something]","placeholders":["usb cable"]}, +{"id":"77534","label":"tearing a tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a tissue paper"]}, +{"id":"68255","label":"spinning spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spinner"]}, +{"id":"170041","label":"pretending to poke plant","template":"Pretending to poke [something]","placeholders":["plant"]}, +{"id":"44432","label":"taking a soda can of many soda cans on a table","template":"Taking [one of many similar things on the table]","placeholders":["a soda can of many soda cans on a table"]}, +{"id":"200285","label":"bending torch so that it deforms","template":"Bending [something] so that it deforms","placeholders":["torch"]}, +{"id":"162979","label":"touching (without moving) a page of a dictionary","template":"Touching (without moving) [part] of [something]","placeholders":["a page","a dictionary"]}, +{"id":"127266","label":"holding book over cat","template":"Holding [something] over [something]","placeholders":["book","cat"]}, +{"id":"208496","label":"tipping something over","template":"Tipping [something] over","placeholders":["something"]}, +{"id":"154456","label":"moving magnet closer to magnet","template":"Moving [something] closer to [something]","placeholders":["magnet","magnet"]}, +{"id":"29507","label":"tilting box surface with tape on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box surface","tape"]}, +{"id":"165393","label":"covering tv remote with plastic bag","template":"Covering [something] with [something]","placeholders":["tv remote","plastic bag"]}, +{"id":"12868","label":"pushing marker from left to right","template":"Pushing [something] from left to right","placeholders":["marker"]}, +{"id":"172134","label":"plugging charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall socket"]}, +{"id":"105387","label":"pretending to open magazine without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["magazine"]}, +{"id":"106119","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"150548","label":"plugging charger into tablet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","tablet"]}, +{"id":"97445","label":"showing that pile of clothes is inside basket","template":"Showing that [something] is inside [something]","placeholders":["pile of clothes","basket"]}, +{"id":"17688","label":"pushing a book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a book"]}, +{"id":"178660","label":"trying to bend bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["bottle"]}, +{"id":"119917","label":"moving a scotch roll across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a scotch roll"]}, +{"id":"140238","label":"pushing key from left to right","template":"Pushing [something] from left to right","placeholders":["key"]}, +{"id":"179067","label":"picking flower up","template":"Picking [something] up","placeholders":["flower"]}, +{"id":"177104","label":"dropping coaster in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["coaster","pillow"]}, +{"id":"32457","label":"trying but failing to attach sock to envelope because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["sock","envelope"]}, +{"id":"158203","label":"showing a watch to the camera","template":"Showing [something] to the camera","placeholders":["a watch"]}, +{"id":"95795","label":"spinning stapler that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["stapler"]}, +{"id":"135350","label":"showing scissors to the camera","template":"Showing [something] to the camera","placeholders":["scissors"]}, +{"id":"22739","label":"moving towel away from towel","template":"Moving [something] away from [something]","placeholders":["towel","towel"]}, +{"id":"113983","label":"letting basketball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["basketball"]}, +{"id":"140044","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"74748","label":"twisting (wringing) washcloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["washcloth"]}, +{"id":"104278","label":"pushing calculator from left to right","template":"Pushing [something] from left to right","placeholders":["calculator"]}, +{"id":"113191","label":"tearing paperboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["paperboard"]}, +{"id":"98030","label":"a marker being deflected from a candle","template":"[Something] being deflected from [something]","placeholders":["a marker","a candle"]}, +{"id":"86065","label":"pretending to pick toy mario up","template":"Pretending to pick [something] up","placeholders":["toy mario"]}, +{"id":"57815","label":"dropping pen into cup","template":"Dropping [something] into [something]","placeholders":["pen","cup"]}, +{"id":"49298","label":"tilting cutting board with lid on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["cutting board","lid"]}, +{"id":"89640","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"76888","label":"moving away from chapstick with your camera","template":"Moving away from [something] with your camera","placeholders":["chapstick"]}, +{"id":"36207","label":"pretending to close cup board without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["cup board"]}, +{"id":"93317","label":"tearing a notecard into two pieces","template":"Tearing [something] into two pieces","placeholders":["a notecard"]}, +{"id":"63325","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"136583","label":"pushing ruler so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ruler"]}, +{"id":"143119","label":"putting tissue box on a surface","template":"Putting [something] on a surface","placeholders":["tissue box"]}, +{"id":"70751","label":"picking a notbook up","template":"Picking [something] up","placeholders":["a notbook"]}, +{"id":"145496","label":"holding tangerine over mug","template":"Holding [something] over [something]","placeholders":["tangerine","mug"]}, +{"id":"64503","label":"piling notebooks up","template":"Piling [something] up","placeholders":["notebooks"]}, +{"id":"26498","label":"pulling two ends of a bean bag so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a bean bag"]}, +{"id":"148626","label":"showing a pen on top of a notepad","template":"Showing [something] on top of [something]","placeholders":["a pen","a notepad"]}, +{"id":"17636","label":"dropping sellotape onto box","template":"Dropping [something] onto [something]","placeholders":["sellotape","box"]}, +{"id":"118132","label":"poking an apple so that it falls over","template":"Poking [something] so that it falls over","placeholders":["an apple"]}, +{"id":"61276","label":"poking towel so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["towel"]}, +{"id":"29304","label":"turning box upside down","template":"Turning [something] upside down","placeholders":["box"]}, +{"id":"99162","label":"pretending to put plate into sink","template":"Pretending to put [something] into [something]","placeholders":["plate","sink"]}, +{"id":"155006","label":"covering bottle with cloth","template":"Covering [something] with [something]","placeholders":["bottle","cloth"]}, +{"id":"136227","label":"putting carom coin onto powder tin","template":"Putting [something] onto [something]","placeholders":["carom coin","powder tin"]}, +{"id":"180950","label":"turning the camera left while filming bottle","template":"Turning the camera left while filming [something]","placeholders":["bottle"]}, +{"id":"5082","label":"bending paper clip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper clip"]}, +{"id":"65210","label":"poking something so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["something"]}, +{"id":"180227","label":"poking a hole into cardboard","template":"Poking a hole into [something soft]","placeholders":["cardboard"]}, +{"id":"161158","label":"rolling dumbell on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["dumbell"]}, +{"id":"191201","label":"putting tourch next to rubix cube","template":"Putting [something] next to [something]","placeholders":["tourch","rubix cube"]}, +{"id":"110022","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"93640","label":"stuffing towel into box","template":"Stuffing [something] into [something]","placeholders":["towel","box"]}, +{"id":"166061","label":"dropping phone behind pillow","template":"Dropping [something] behind [something]","placeholders":["phone","pillow"]}, +{"id":"116084","label":"bending something until it breaks","template":"Bending [something] until it breaks","placeholders":["something"]}, +{"id":"163174","label":"taking screw out of bottle","template":"Taking [something] out of [something]","placeholders":["screw","bottle"]}, +{"id":"57433","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"63108","label":"trying to pour water into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a cup"]}, +{"id":"148042","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"60149","label":"pushing trashcan so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["trashcan"]}, +{"id":"186252","label":"putting cup into cup holder","template":"Putting [something] into [something]","placeholders":["cup","cup holder"]}, +{"id":"161448","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"698","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"96047","label":"lifting up one end of pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pen"]}, +{"id":"76254","label":"pretending to be tearing carry bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["carry bag"]}, +{"id":"32312","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"25513","label":"taking book out of cupboard","template":"Taking [something] out of [something]","placeholders":["book","cupboard"]}, +{"id":"189910","label":"moving away from a chair with your camera","template":"Moving away from [something] with your camera","placeholders":["a chair"]}, +{"id":"50968","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"135130","label":"poking a charger so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a charger"]}, +{"id":"115399","label":"putting a calculator in front of the pen","template":"Putting [something] in front of [something]","placeholders":["a calculator","the pen"]}, +{"id":"135479","label":"wiping cream off of furniture","template":"Wiping [something] off of [something]","placeholders":["cream","furniture"]}, +{"id":"119565","label":"dropping bottle in front of dustbin","template":"Dropping [something] in front of [something]","placeholders":["bottle","dustbin"]}, +{"id":"116330","label":"putting book next to bag","template":"Putting [something] next to [something]","placeholders":["book","bag"]}, +{"id":"51527","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"123522","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"213766","label":"showing shell fish to the camera","template":"Showing [something] to the camera","placeholders":["shell fish"]}, +{"id":"10631","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"67125","label":"tilting lumber with pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["lumber","pencil"]}, +{"id":"67872","label":"squeezing toy","template":"Squeezing [something]","placeholders":["toy"]}, +{"id":"179843","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"193399","label":"throwing book against wall","template":"Throwing [something] against [something]","placeholders":["book","wall"]}, +{"id":"183079","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"67977","label":"putting a book in front of a candle","template":"Putting [something] in front of [something]","placeholders":["a book","a candle"]}, +{"id":"122018","label":"stuffing sharpener into rack","template":"Stuffing [something] into [something]","placeholders":["sharpener","rack"]}, +{"id":"155915","label":"tipping a covered bottle over","template":"Tipping [something] over","placeholders":["a covered bottle"]}, +{"id":"197391","label":"opening a closet","template":"Opening [something]","placeholders":["a closet"]}, +{"id":"201350","label":"dropping piece into glass","template":"Dropping [something] into [something]","placeholders":["piece","glass"]}, +{"id":"65000","label":"tilting tissue with remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tissue","remote"]}, +{"id":"113274","label":"showing that teapot is empty","template":"Showing that [something] is empty","placeholders":["teapot"]}, +{"id":"110104","label":"pushing pan from right to left","template":"Pushing [something] from right to left","placeholders":["pan"]}, +{"id":"131147","label":"poking can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["can"]}, +{"id":"198243","label":"opening a laptop","template":"Opening [something]","placeholders":["a laptop"]}, +{"id":"197535","label":"showing a wine cork on top of a book","template":"Showing [something] on top of [something]","placeholders":["a wine cork","a book"]}, +{"id":"7634","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"146645","label":"rolling a metal container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a metal container"]}, +{"id":"96049","label":"putting cup behind mug","template":"Putting [something] behind [something]","placeholders":["cup","mug"]}, +{"id":"208397","label":"pretending to turn book upside down","template":"Pretending to turn [something] upside down","placeholders":["book"]}, +{"id":"181428","label":"plugging electric cord into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["electric cord","power outlet"]}, +{"id":"162094","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"213934","label":"attaching plug to machine","template":"Attaching [something] to [something]","placeholders":["plug","machine"]}, +{"id":"74596","label":"moving a phone towards the camera","template":"Moving [something] towards the camera","placeholders":["a phone"]}, +{"id":"171227","label":"putting pen behind notebook","template":"Putting [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"85427","label":"throwing pipeapple in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pipeapple"]}, +{"id":"152197","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"175715","label":"covering a phone with a book","template":"Covering [something] with [something]","placeholders":["a phone","a book"]}, +{"id":"72969","label":"pushing cable so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cable"]}, +{"id":"211485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"23379","label":"crayon colliding with crayon and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["crayon","crayon"]}, +{"id":"53038","label":"stuffing cloth into cup","template":"Stuffing [something] into [something]","placeholders":["cloth","cup"]}, +{"id":"125681","label":"approaching toy idol with your camera","template":"Approaching [something] with your camera","placeholders":["toy idol"]}, +{"id":"94633","label":"turning the camera right while filming car","template":"Turning the camera right while filming [something]","placeholders":["car"]}, +{"id":"114056","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"92923","label":"stacking 5 books","template":"Stacking [number of] [something]","placeholders":["5","books"]}, +{"id":"153645","label":"pouring soda out of a bottle","template":"Pouring [something] out of [something]","placeholders":["soda","a bottle"]}, +{"id":"67430","label":"moving lid of plastic jar","template":"Moving [part] of [something]","placeholders":["lid","plastic jar"]}, +{"id":"70696","label":"dropping chocolate in front of glass","template":"Dropping [something] in front of [something]","placeholders":["chocolate","glass"]}, +{"id":"107291","label":"moving note book up","template":"Moving [something] up","placeholders":["note book"]}, +{"id":"33666","label":"touching (without moving) top of soap","template":"Touching (without moving) [part] of [something]","placeholders":["top","soap"]}, +{"id":"192925","label":"putting canned food on a surface","template":"Putting [something] on a surface","placeholders":["canned food"]}, +{"id":"85337","label":"trying but failing to attach a toy frog to a door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a toy frog","a door"]}, +{"id":"19618","label":"turning the camera left while filming hat","template":"Turning the camera left while filming [something]","placeholders":["hat"]}, +{"id":"152476","label":"spreading peanut butter onto rice cake","template":"Spreading [something] onto [something]","placeholders":["peanut butter","rice cake"]}, +{"id":"123620","label":"scooping salsa up with chip","template":"Scooping [something] up with [something]","placeholders":["salsa","chip"]}, +{"id":"27362","label":"letting a coconut roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a coconut"]}, +{"id":"133624","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"35071","label":"remote falling like a rock","template":"[Something] falling like a rock","placeholders":["remote"]}, +{"id":"41547","label":"stacking three pieces of paper towel","template":"Stacking [number of] [something]","placeholders":["three","pieces of paper towel"]}, +{"id":"162652","label":"covering a battery with a letter","template":"Covering [something] with [something]","placeholders":["a battery","a letter"]}, +{"id":"28203","label":"putting thread spool behind jar","template":"Putting [something] behind [something]","placeholders":["thread spool","jar"]}, +{"id":"55035","label":"putting deo behind book","template":"Putting [something] behind [something]","placeholders":["deo","book"]}, +{"id":"200694","label":"moving a cup and a jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","a jar"]}, +{"id":"100492","label":"dropping tape into candle","template":"Dropping [something] into [something]","placeholders":["tape","candle"]}, +{"id":"95811","label":"pulling chord out of vacuum cleaner","template":"Pulling [something] out of [something]","placeholders":["chord","vacuum cleaner"]}, +{"id":"87284","label":"tipping plastic cup with table tennis balls over, so table tennis balls falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["plastic cup","table tennis balls","table tennis balls"]}, +{"id":"200106","label":"plugging charger into switch but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","switch"]}, +{"id":"3752","label":"putting paper onto paper","template":"Putting [something] onto [something]","placeholders":["paper","paper"]}, +{"id":"74763","label":"hitting table with paperweight","template":"Hitting [something] with [something]","placeholders":["table","paperweight"]}, +{"id":"68127","label":"pushing metal box with highlighter","template":"Pushing [something] with [something]","placeholders":["metal box","highlighter"]}, +{"id":"86174","label":"dropping a coin next to a remote","template":"Dropping [something] next to [something]","placeholders":["a coin","a remote"]}, +{"id":"177367","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"82861","label":"pouring water onto a glass","template":"Pouring [something] onto [something]","placeholders":["water","a glass"]}, +{"id":"163187","label":"moving a box away from the spray bottle","template":"Moving [something] away from [something]","placeholders":["a box","the spray bottle"]}, +{"id":"147742","label":"holding a paint brush behind a doll","template":"Holding [something] behind [something]","placeholders":["a paint brush","a doll"]}, +{"id":"58794","label":"dropping a balloon into a bowl","template":"Dropping [something] into [something]","placeholders":["a balloon","a bowl"]}, +{"id":"143700","label":"plugging power plug into socket","template":"Plugging [something] into [something]","placeholders":["power plug","socket"]}, +{"id":"207659","label":"moving hair comb closer to hair brush","template":"Moving [something] closer to [something]","placeholders":["hair comb","hair brush"]}, +{"id":"202503","label":"putting shirt into basket","template":"Putting [something] into [something]","placeholders":["shirt","basket"]}, +{"id":"102746","label":"putting wallet, luggage tag and box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wallet","luggage tag","box"]}, +{"id":"54813","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"4205","label":"dropping a book onto a table","template":"Dropping [something] onto [something]","placeholders":["a book","a table"]}, +{"id":"123370","label":"spinning pack of cigarettes that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pack of cigarettes"]}, +{"id":"207296","label":"dropping pen next to box","template":"Dropping [something] next to [something]","placeholders":["pen","box"]}, +{"id":"214030","label":"plugging phone charger into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone charger","wall plug"]}, +{"id":"177027","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"65710","label":"wiping a smiley face off of a whiteboard","template":"Wiping [something] off of [something]","placeholders":["a smiley face","a whiteboard"]}, +{"id":"178049","label":"pretending to put lighter on a surface","template":"Pretending to put [something] on a surface","placeholders":["lighter"]}, +{"id":"203633","label":"dropping an ecig onto the floor","template":"Dropping [something] onto [something]","placeholders":["an ecig","the floor"]}, +{"id":"130699","label":"laying a thermos on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a thermos"]}, +{"id":"152272","label":"plugging cord into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","power socket"]}, +{"id":"39537","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"30426","label":"showing hair clip on top of black pouch","template":"Showing [something] on top of [something]","placeholders":["hair clip","black pouch"]}, +{"id":"152698","label":"picking an orange up","template":"Picking [something] up","placeholders":["an orange"]}, +{"id":"113865","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"100196","label":"tilting brown note with spectacles on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["brown note","spectacles"]}, +{"id":"218954","label":"taking a highlighter out of a pencil-case","template":"Taking [something] out of [something]","placeholders":["a highlighter","a pencil-case"]}, +{"id":"171053","label":"holding ball next to iphone","template":"Holding [something] next to [something]","placeholders":["ball","iphone"]}, +{"id":"75649","label":"putting slipper underneath chair","template":"Putting [something] underneath [something]","placeholders":["slipper","chair"]}, +{"id":"122403","label":"stuffing paper into bottle","template":"Stuffing [something] into [something]","placeholders":["paper","bottle"]}, +{"id":"126698","label":"pulling stapler from right to left","template":"Pulling [something] from right to left","placeholders":["stapler"]}, +{"id":"59470","label":"tipping container with coffee grounds over, so coffee falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["container","coffee grounds","coffee"]}, +{"id":"196117","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"186862","label":"putting a toy car","template":"Putting [something similar to other things that are already on the table]","placeholders":["a toy car"]}, +{"id":"125198","label":"pretending to put a sellotape into a plastic box","template":"Pretending to put [something] into [something]","placeholders":["a sellotape","a plastic box"]}, +{"id":"166344","label":"wiping flour off of bowl","template":"Wiping [something] off of [something]","placeholders":["flour","bowl"]}, +{"id":"52922","label":"dropping pen onto floor","template":"Dropping [something] onto [something]","placeholders":["pen","floor"]}, +{"id":"163835","label":"moving knife and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["knife","fork"]}, +{"id":"55325","label":"pretending or trying and failing to twist water bottle","template":"Pretending or trying and failing to twist [something]","placeholders":["water bottle"]}, +{"id":"53320","label":"moving wristwatch and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wristwatch","phone"]}, +{"id":"79758","label":"turning the camera upwards while filming bike","template":"Turning the camera upwards while filming [something]","placeholders":["bike"]}, +{"id":"113782","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"195650","label":"pretending to take tea light candle out of bag","template":"Pretending to take [something] out of [something]","placeholders":["tea light candle","bag"]}, +{"id":"81621","label":"opening container","template":"Opening [something]","placeholders":["container"]}, +{"id":"120367","label":"pushing red toy car onto battery","template":"Pushing [something] onto [something]","placeholders":["red toy car","battery"]}, +{"id":"122669","label":"putting marker onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["marker"]}, +{"id":"176851","label":"letting car roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["car"]}, +{"id":"202652","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"82961","label":"moving cards and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cards","paper"]}, +{"id":"88268","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"188953","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"16181","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"101934","label":"putting a coin into a jar","template":"Putting [something] into [something]","placeholders":["a coin","a jar"]}, +{"id":"102","label":"pretending to take a rubix cube from top of a book","template":"Pretending to take [something] from [somewhere]","placeholders":["a rubix cube","top of a book"]}, +{"id":"209071","label":"poking water bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["water bottle"]}, +{"id":"37797","label":"moving a banana and a pomengranate closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a banana","a pomengranate"]}, +{"id":"183666","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"206551","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"87956","label":"putting bottled water in front of nail cutter","template":"Putting [something] in front of [something]","placeholders":["bottled water","nail cutter"]}, +{"id":"39021","label":"moving magnet up","template":"Moving [something] up","placeholders":["magnet"]}, +{"id":"13646","label":"moving little jar and little jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["little jar","little jar"]}, +{"id":"27024","label":"throwing water bottle against wall","template":"Throwing [something] against [something]","placeholders":["water bottle","wall"]}, +{"id":"118778","label":"holding a bottle over a flashlight","template":"Holding [something] over [something]","placeholders":["a bottle","a flashlight"]}, +{"id":"71564","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"107748","label":"wrench falling like a rock","template":"[Something] falling like a rock","placeholders":["wrench"]}, +{"id":"193797","label":"pretending to sprinkle air onto table decor","template":"Pretending to sprinkle air onto [something]","placeholders":["table decor"]}, +{"id":"220816","label":"throwing bathrobe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bathrobe"]}, +{"id":"120358","label":"showing that paper clips is inside a plastic box","template":"Showing that [something] is inside [something]","placeholders":["paper clips","a plastic box"]}, +{"id":"76647","label":"putting candle, toy and perfume bottle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["candle","toy","perfume bottle"]}, +{"id":"97946","label":"holding a paint brush over a doll","template":"Holding [something] over [something]","placeholders":["a paint brush","a doll"]}, +{"id":"56829","label":"pretending to take a shot glass out of a measuring cup","template":"Pretending to take [something] out of [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"160006","label":"rolling a round rubber bush on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a round rubber bush"]}, +{"id":"148836","label":"showing box behind plush","template":"Showing [something] behind [something]","placeholders":["box","plush"]}, +{"id":"5853","label":"pushing a card so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a card"]}, +{"id":"36710","label":"showing a photo of a carrots to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a carrots"]}, +{"id":"1425","label":"covering light bulb with napkin","template":"Covering [something] with [something]","placeholders":["light bulb","napkin"]}, +{"id":"143589","label":"pouring something into something","template":"Pouring [something] into [something]","placeholders":["something","something"]}, +{"id":"217149","label":"wiping cereal off of bed","template":"Wiping [something] off of [something]","placeholders":["cereal","bed"]}, +{"id":"29132","label":"pretending to be tearing tearing a plastic cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tearing a plastic cover"]}, +{"id":"146248","label":"dropping an envelope in front of a remote","template":"Dropping [something] in front of [something]","placeholders":["an envelope","a remote"]}, +{"id":"169960","label":"showing coin on top of container","template":"Showing [something] on top of [something]","placeholders":["coin","container"]}, +{"id":"102218","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"153067","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"44152","label":"lifting a surface with a fork on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a fork"]}, +{"id":"63632","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"74297","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"17440","label":"pretending to take cube from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cube","table"]}, +{"id":"4427","label":"unfolding a napkin","template":"Unfolding [something]","placeholders":["a napkin"]}, +{"id":"87208","label":"dropping ear plug carrying case in front of a water bottle","template":"Dropping [something] in front of [something]","placeholders":["ear plug carrying case","a water bottle"]}, +{"id":"69702","label":"pulling brown bracelet from right to left","template":"Pulling [something] from right to left","placeholders":["brown bracelet"]}, +{"id":"93814","label":"moving remote away from coaster","template":"Moving [something] away from [something]","placeholders":["remote","coaster"]}, +{"id":"192596","label":"tilting box with waterbottle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","waterbottle"]}, +{"id":"94328","label":"throwing a computer duster in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a computer duster"]}, +{"id":"20649","label":"covering comb with plate","template":"Covering [something] with [something]","placeholders":["comb","plate"]}, +{"id":"24451","label":"removing glass, revealing highlighter behind","template":"Removing [something], revealing [something] behind","placeholders":["glass","highlighter"]}, +{"id":"89805","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"183051","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"29293","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"193487","label":"plugging adapter into socket","template":"Plugging [something] into [something]","placeholders":["adapter","socket"]}, +{"id":"166475","label":"approaching dogs with your camera","template":"Approaching [something] with your camera","placeholders":["dogs"]}, +{"id":"124976","label":"throwing remote onto a surface","template":"Throwing [something] onto a surface","placeholders":["remote"]}, +{"id":"76863","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"127108","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"43079","label":"putting lotion upright on the table","template":"Putting [something] upright on the table","placeholders":["lotion"]}, +{"id":"28283","label":"pretending to pick firm plastic up","template":"Pretending to pick [something] up","placeholders":["firm plastic"]}, +{"id":"10922","label":"showing a backpack on top of a chair","template":"Showing [something] on top of [something]","placeholders":["a backpack","a chair"]}, +{"id":"17878","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"205288","label":"pushing notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["notebook"]}, +{"id":"20824","label":"spilling water onto plate","template":"Spilling [something] onto [something]","placeholders":["water","plate"]}, +{"id":"133819","label":"pretending to open a container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a container"]}, +{"id":"107292","label":"dropping marker onto scale","template":"Dropping [something] onto [something]","placeholders":["marker","scale"]}, +{"id":"81792","label":"sprinkling water onto alovera shrub","template":"Sprinkling [something] onto [something]","placeholders":["water","alovera shrub"]}, +{"id":"11976","label":"letting a musical tabla roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a musical tabla"]}, +{"id":"187032","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"169730","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"77230","label":"tipping a container with soap in it over, so soap falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a container","soap in it","soap"]}, +{"id":"94882","label":"putting rubix cube into cookie box","template":"Putting [something] into [something]","placeholders":["rubix cube","cookie box"]}, +{"id":"111202","label":"touching (without moving) cover of plastic box","template":"Touching (without moving) [part] of [something]","placeholders":["cover","plastic box"]}, +{"id":"169328","label":"pushing empty treat bar wrap from right to left","template":"Pushing [something] from right to left","placeholders":["empty treat bar wrap"]}, +{"id":"41432","label":"putting nutrition bar that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["nutrition bar"]}, +{"id":"112554","label":"pushing cell from left to right","template":"Pushing [something] from left to right","placeholders":["cell"]}, +{"id":"80963","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"106417","label":"putting a coin into a plastic bag","template":"Putting [something] into [something]","placeholders":["a coin","a plastic bag"]}, +{"id":"101772","label":"showing plush dragon behind globe","template":"Showing [something] behind [something]","placeholders":["plush dragon","globe"]}, +{"id":"216066","label":"taking mobile phone from car dashboard","template":"Taking [something] from [somewhere]","placeholders":["mobile phone","car dashboard"]}, +{"id":"61773","label":"moving bowls down","template":"Moving [something] down","placeholders":["bowls"]}, +{"id":"120935","label":"pulling green headlight from right to left","template":"Pulling [something] from right to left","placeholders":["green headlight"]}, +{"id":"65579","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"211963","label":"scooping cat litter up with a scoop","template":"Scooping [something] up with [something]","placeholders":["cat litter","a scoop"]}, +{"id":"18322","label":"dropping wipe onto box","template":"Dropping [something] onto [something]","placeholders":["wipe","box"]}, +{"id":"27442","label":"throwing toothpaste","template":"Throwing [something]","placeholders":["toothpaste"]}, +{"id":"70814","label":"pretending or failing to wipe emblem off of cup","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["emblem","cup"]}, +{"id":"52138","label":"approaching toy with your camera","template":"Approaching [something] with your camera","placeholders":["toy"]}, +{"id":"142509","label":"covering phone with paper","template":"Covering [something] with [something]","placeholders":["phone","paper"]}, +{"id":"161170","label":"plugging cord into computer","template":"Plugging [something] into [something]","placeholders":["cord","computer"]}, +{"id":"139218","label":"spilling pens behind a case","template":"Spilling [something] behind [something]","placeholders":["pens","a case"]}, +{"id":"178579","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"106135","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"117714","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"55868","label":"pretending to take bottle from stone","template":"Pretending to take [something] from [somewhere]","placeholders":["bottle","stone"]}, +{"id":"100159","label":"pushing \\\"magnet\\\"spin\\\"push so it spins","template":"Pushing [something] so it spins","placeholders":["\\\"magnet\\\"spin\\\"push"]}, +{"id":"99519","label":"putting binder clips next to a cup","template":"Putting [something] next to [something]","placeholders":["binder clips","a cup"]}, +{"id":"120515","label":"holding purple container in front of notecard","template":"Holding [something] in front of [something]","placeholders":["purple container","notecard"]}, +{"id":"127727","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"113585","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"127897","label":"moving knife and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["knife","fork"]}, +{"id":"72452","label":"pulling toothpaste from right to left","template":"Pulling [something] from right to left","placeholders":["toothpaste"]}, +{"id":"69441","label":"unfolding drawstring bag","template":"Unfolding [something]","placeholders":["drawstring bag"]}, +{"id":"30229","label":"pretending to open red dairy without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["red dairy"]}, +{"id":"214477","label":"pretending to poke a can","template":"Pretending to poke [something]","placeholders":["a can"]}, +{"id":"5746","label":"stuffing cotton filling into pillow","template":"Stuffing [something] into [something]","placeholders":["cotton filling","pillow"]}, +{"id":"120180","label":"putting a smartphone on a surface","template":"Putting [something] on a surface","placeholders":["a smartphone"]}, +{"id":"187784","label":"showing toy car to the camera","template":"Showing [something] to the camera","placeholders":["toy car"]}, +{"id":"29744","label":"holding glasses in front of plate","template":"Holding [something] in front of [something]","placeholders":["glasses","plate"]}, +{"id":"155415","label":"putting bottle into paper bin","template":"Putting [something] into [something]","placeholders":["bottle","paper bin"]}, +{"id":"21664","label":"pushing book from right to left","template":"Pushing [something] from right to left","placeholders":["book"]}, +{"id":"20588","label":"putting dictionary on the edge of pencil box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["dictionary","pencil box"]}, +{"id":"6127","label":"dropping a coin behind a shoe brush","template":"Dropping [something] behind [something]","placeholders":["a coin","a shoe brush"]}, +{"id":"74828","label":"putting charger adapter on a surface","template":"Putting [something] on a surface","placeholders":["charger adapter"]}, +{"id":"202589","label":"holding calculator next to table lamp","template":"Holding [something] next to [something]","placeholders":["calculator","table lamp"]}, +{"id":"136210","label":"tearing tea bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["tea bag"]}, +{"id":"186474","label":"showing that spectacle is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["spectacle","spectacle box"]}, +{"id":"90361","label":"pushing small bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["small bottle"]}, +{"id":"29569","label":"turning the camera right while filming audio sistem","template":"Turning the camera right while filming [something]","placeholders":["audio sistem"]}, +{"id":"108232","label":"showing that fork is inside pan","template":"Showing that [something] is inside [something]","placeholders":["fork","pan"]}, +{"id":"67146","label":"bending a chopstick until it breaks","template":"Bending [something] until it breaks","placeholders":["a chopstick"]}, +{"id":"180462","label":"holding phone next to bottle","template":"Holding [something] next to [something]","placeholders":["phone","bottle"]}, +{"id":"79814","label":"pushing a matchstick onto a comb","template":"Pushing [something] onto [something]","placeholders":["a matchstick","a comb"]}, +{"id":"207874","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"59723","label":"turning the camera left while filming tv","template":"Turning the camera left while filming [something]","placeholders":["tv"]}, +{"id":"162736","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"215694","label":"showing that small box is empty","template":"Showing that [something] is empty","placeholders":["small box"]}, +{"id":"112291","label":"lifting glass up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["glass"]}, +{"id":"154527","label":"showing a shell on top of book","template":"Showing [something] on top of [something]","placeholders":["a shell","book"]}, +{"id":"78865","label":"throwing yellow chalk piece onto a surface","template":"Throwing [something] onto a surface","placeholders":["yellow chalk piece"]}, +{"id":"109773","label":"holding bottle of water","template":"Holding [something]","placeholders":["bottle of water"]}, +{"id":"110025","label":"attaching tape to paper","template":"Attaching [something] to [something]","placeholders":["tape","paper"]}, +{"id":"204475","label":"digging pocket bible out of blanket","template":"Digging [something] out of [something]","placeholders":["pocket bible","blanket"]}, +{"id":"212638","label":"pretending to scoop dhal up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["dhal","spoon"]}, +{"id":"20620","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"169138","label":"moving a cup away from a book","template":"Moving [something] away from [something]","placeholders":["a cup","a book"]}, +{"id":"36087","label":"turning the camera left while filming pill bottle","template":"Turning the camera left while filming [something]","placeholders":["pill bottle"]}, +{"id":"56259","label":"pushing blue colour spectacle box with red spoon","template":"Pushing [something] with [something]","placeholders":["blue colour spectacle box","red spoon"]}, +{"id":"167449","label":"bracelet falling like a rock","template":"[Something] falling like a rock","placeholders":["bracelet"]}, +{"id":"101391","label":"putting a sandal that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a sandal"]}, +{"id":"151271","label":"plugging pendrive into usb port","template":"Plugging [something] into [something]","placeholders":["pendrive","usb port"]}, +{"id":"172391","label":"a spinner falling like a rock","template":"[Something] falling like a rock","placeholders":["a spinner"]}, +{"id":"212579","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"162844","label":"putting fidget spinner behind jar","template":"Putting [something] behind [something]","placeholders":["fidget spinner","jar"]}, +{"id":"156133","label":"letting something roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["something"]}, +{"id":"25652","label":"showing pens behind a case","template":"Showing [something] behind [something]","placeholders":["pens","a case"]}, +{"id":"150758","label":"putting bowl into plate","template":"Putting [something] into [something]","placeholders":["bowl","plate"]}, +{"id":"115040","label":"putting rubix cube in front of battery","template":"Putting [something] in front of [something]","placeholders":["rubix cube","battery"]}, +{"id":"54423","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"99450","label":"putting 2 black toy wheels onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","black toy wheels","yellow note"]}, +{"id":"108469","label":"pushing white badge from right to left","template":"Pushing [something] from right to left","placeholders":["white badge"]}, +{"id":"174209","label":"plugging pendrive into laptop","template":"Plugging [something] into [something]","placeholders":["pendrive","laptop"]}, +{"id":"162798","label":"moving soda and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["soda","box"]}, +{"id":"148462","label":"moving lotion closer to flask","template":"Moving [something] closer to [something]","placeholders":["lotion","flask"]}, +{"id":"73284","label":"taking chalk out of box of chalk","template":"Taking [something] out of [something]","placeholders":["chalk","box of chalk"]}, +{"id":"204524","label":"pouring water into a plate","template":"Pouring [something] into [something]","placeholders":["water","a plate"]}, +{"id":"100896","label":"hitting box with note","template":"Hitting [something] with [something]","placeholders":["box","note"]}, +{"id":"167434","label":"showing that hot case is empty","template":"Showing that [something] is empty","placeholders":["hot case"]}, +{"id":"156235","label":"wooden pice colliding with other wooden piece and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["wooden pice","other wooden piece"]}, +{"id":"98918","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"152923","label":"holding tablet box next to punching machine","template":"Holding [something] next to [something]","placeholders":["tablet box","punching machine"]}, +{"id":"168639","label":"showing that a bag is empty","template":"Showing that [something] is empty","placeholders":["a bag"]}, +{"id":"197771","label":"pushing tv remote controller so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["tv remote controller"]}, +{"id":"187529","label":"poking toy car so that it spins around","template":"Poking [something] so that it spins around","placeholders":["toy car"]}, +{"id":"59778","label":"tipping tamper over","template":"Tipping [something] over","placeholders":["tamper"]}, +{"id":"4381","label":"pretending to take toothbrush from bin","template":"Pretending to take [something] from [somewhere]","placeholders":["toothbrush","bin"]}, +{"id":"187546","label":"throwing a plastic bottle against a door","template":"Throwing [something] against [something]","placeholders":["a plastic bottle","a door"]}, +{"id":"200287","label":"pretending to take marker out of mug","template":"Pretending to take [something] out of [something]","placeholders":["marker","mug"]}, +{"id":"55394","label":"moving small statue away from the camera","template":"Moving [something] away from the camera","placeholders":["small statue"]}, +{"id":"115265","label":"tilting game with flowers on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["game","flowers"]}, +{"id":"180028","label":"covering a phone with a blanket","template":"Covering [something] with [something]","placeholders":["a phone","a blanket"]}, +{"id":"177825","label":"pretending to take a pullover from a drawer","template":"Pretending to take [something] from [somewhere]","placeholders":["a pullover","a drawer"]}, +{"id":"123240","label":"stacking 2 bowls","template":"Stacking [number of] [something]","placeholders":["2","bowls"]}, +{"id":"192855","label":"spinning smiley ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["smiley ball"]}, +{"id":"209640","label":"stuffing tissue paper into plastic bag","template":"Stuffing [something] into [something]","placeholders":["tissue paper","plastic bag"]}, +{"id":"210932","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"115545","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"144689","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"83822","label":"moving purple container down","template":"Moving [something] down","placeholders":["purple container"]}, +{"id":"108536","label":"pretending to put cassete tape into mug","template":"Pretending to put [something] into [something]","placeholders":["cassete tape","mug"]}, +{"id":"155995","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"152813","label":"pushing pencil from left to right","template":"Pushing [something] from left to right","placeholders":["pencil"]}, +{"id":"103899","label":"throwing pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pillow"]}, +{"id":"90056","label":"moving book and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","bottle"]}, +{"id":"46853","label":"covering bangles with leaf","template":"Covering [something] with [something]","placeholders":["bangles","leaf"]}, +{"id":"77924","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"208971","label":"spinning adapter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["adapter"]}, +{"id":"19108","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"139527","label":"pushing orange post-it so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["orange post-it"]}, +{"id":"76627","label":"pulling shirt out of bag","template":"Pulling [something] out of [something]","placeholders":["shirt","bag"]}, +{"id":"213650","label":"pretending to be tearing stretch band","template":"Pretending to be tearing [something that is not tearable]","placeholders":["stretch band"]}, +{"id":"127844","label":"squeezing dvd case","template":"Squeezing [something]","placeholders":["dvd case"]}, +{"id":"171064","label":"stuffing pen into plastic cup","template":"Stuffing [something] into [something]","placeholders":["pen","plastic cup"]}, +{"id":"123377","label":"stuffing a dishcloth into a small cup","template":"Stuffing [something] into [something]","placeholders":["a dishcloth","a small cup"]}, +{"id":"7635","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"168143","label":"moving scissors closer to hair brush","template":"Moving [something] closer to [something]","placeholders":["scissors","hair brush"]}, +{"id":"211216","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"67421","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"60567","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"88503","label":"trying to pour something into something, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["something","something"]}, +{"id":"191932","label":"turning the camera upwards while filming black remote","template":"Turning the camera upwards while filming [something]","placeholders":["black remote"]}, +{"id":"99506","label":"lifting up one end of a towel, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a towel"]}, +{"id":"149435","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"15177","label":"putting white cup and red cup on the table","template":"Putting [something] and [something] on the table","placeholders":["white cup","red cup"]}, +{"id":"81202","label":"lifting glass with pinecone on it","template":"Lifting [something] with [something] on it","placeholders":["glass","pinecone"]}, +{"id":"134958","label":"piling containers up","template":"Piling [something] up","placeholders":["containers"]}, +{"id":"43343","label":"holding remote behind comb","template":"Holding [something] behind [something]","placeholders":["remote","comb"]}, +{"id":"128786","label":"letting a can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a can"]}, +{"id":"24975","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"67876","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"86392","label":"folding a dish towel","template":"Folding [something]","placeholders":["a dish towel"]}, +{"id":"180793","label":"moving candle up","template":"Moving [something] up","placeholders":["candle"]}, +{"id":"14401","label":"pushing a sticky notes pad so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a sticky notes pad"]}, +{"id":"131943","label":"pulling pen from behind of box","template":"Pulling [something] from behind of [something]","placeholders":["pen","box"]}, +{"id":"189978","label":"turning the camera right while filming bushes","template":"Turning the camera right while filming [something]","placeholders":["bushes"]}, +{"id":"133625","label":"lifting plate with onion on it","template":"Lifting [something] with [something] on it","placeholders":["plate","onion"]}, +{"id":"92838","label":"putting ruler next to calculator","template":"Putting [something] next to [something]","placeholders":["ruler","calculator"]}, +{"id":"91117","label":"lifting up one end of notebook, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["notebook"]}, +{"id":"197302","label":"covering apple tv remote with coaster","template":"Covering [something] with [something]","placeholders":["apple tv remote","coaster"]}, +{"id":"106892","label":"trying to pour water into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","cup"]}, +{"id":"125199","label":"turning the camera left while filming clock","template":"Turning the camera left while filming [something]","placeholders":["clock"]}, +{"id":"63988","label":"pushing plastic bag from right to left","template":"Pushing [something] from right to left","placeholders":["plastic bag"]}, +{"id":"78377","label":"pushing supplement bottle from left to right","template":"Pushing [something] from left to right","placeholders":["supplement bottle"]}, +{"id":"41754","label":"pretending to pick candle up","template":"Pretending to pick [something] up","placeholders":["candle"]}, +{"id":"29762","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"139489","label":"pushing stapler off of rubix cube","template":"Pushing [something] off of [something]","placeholders":["stapler","rubix cube"]}, +{"id":"195652","label":"taking one of many similar crayons","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar crayons"]}, +{"id":"155983","label":"dropping a remote into a box","template":"Dropping [something] into [something]","placeholders":["a remote","a box"]}, +{"id":"45945","label":"pretending to pick lighter up","template":"Pretending to pick [something] up","placeholders":["lighter"]}, +{"id":"157880","label":"putting water bottle into bowl","template":"Putting [something] into [something]","placeholders":["water bottle","bowl"]}, +{"id":"174516","label":"plugging a charging cable into a cell phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charging cable","a cell phone"]}, +{"id":"96422","label":"moving a wallet away from deodorant","template":"Moving [something] away from [something]","placeholders":["a wallet","deodorant"]}, +{"id":"185635","label":"plugging adaptor into socket","template":"Plugging [something] into [something]","placeholders":["adaptor","socket"]}, +{"id":"10925","label":"lifting note up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["note"]}, +{"id":"129382","label":"kleenex falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["kleenex"]}, +{"id":"105170","label":"spilling water onto a peg","template":"Spilling [something] onto [something]","placeholders":["water","a peg"]}, +{"id":"167472","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"171371","label":"compass falling like a rock","template":"[Something] falling like a rock","placeholders":["compass"]}, +{"id":"140339","label":"attaching keyring to a clip","template":"Attaching [something] to [something]","placeholders":["keyring","a clip"]}, +{"id":"27536","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"99509","label":"holding the wallet behind the book","template":"Holding [something] behind [something]","placeholders":["the wallet","the book"]}, +{"id":"155607","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"138958","label":"putting spoon on the edge of bowl so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["spoon","bowl"]}, +{"id":"147014","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"201428","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"17312","label":"trying to pour coffee into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["coffee","a cup"]}, +{"id":"13508","label":"moving away from rubber band packets with your camera","template":"Moving away from [something] with your camera","placeholders":["rubber band packets"]}, +{"id":"208773","label":"unfolding coat","template":"Unfolding [something]","placeholders":["coat"]}, +{"id":"65251","label":"taking a tomato","template":"Taking [one of many similar things on the table]","placeholders":["a tomato"]}, +{"id":"199300","label":"moving soda can away from glass","template":"Moving [something] away from [something]","placeholders":["soda can","glass"]}, +{"id":"37066","label":"pushing black remote from right to left","template":"Pushing [something] from right to left","placeholders":["black remote"]}, +{"id":"153343","label":"dropping pink ball onto floor","template":"Dropping [something] onto [something]","placeholders":["pink ball","floor"]}, +{"id":"189654","label":"lifting a surface with tape on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["tape"]}, +{"id":"149725","label":"showing a candle behind a pen","template":"Showing [something] behind [something]","placeholders":["a candle","a pen"]}, +{"id":"154181","label":"turning the camera left while filming rubiks cube","template":"Turning the camera left while filming [something]","placeholders":["rubiks cube"]}, +{"id":"59222","label":"stacking 3 pencil sharpners","template":"Stacking [number of] [something]","placeholders":["3","pencil sharpners"]}, +{"id":"95695","label":"poking a hole into powdered grain","template":"Poking a hole into [some substance]","placeholders":["powdered grain"]}, +{"id":"135245","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"202806","label":"dropping a spoon into a cup","template":"Dropping [something] into [something]","placeholders":["a spoon","a cup"]}, +{"id":"88450","label":"pretending to pick black pouch up","template":"Pretending to pick [something] up","placeholders":["black pouch"]}, +{"id":"64669","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"169719","label":"pretending to pick pendrive up","template":"Pretending to pick [something] up","placeholders":["pendrive"]}, +{"id":"199369","label":"tearing a little piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a little piece of paper"]}, +{"id":"207044","label":"pulling red booklet from left to right","template":"Pulling [something] from left to right","placeholders":["red booklet"]}, +{"id":"10996","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"53390","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"142454","label":"pushing moving a coing slightly so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["moving a coing slightly"]}, +{"id":"119713","label":"pushing a package so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a package"]}, +{"id":"75325","label":"taking a pencil","template":"Taking [one of many similar things on the table]","placeholders":["a pencil"]}, +{"id":"46447","label":"burying a pen in buttons","template":"Burying [something] in [something]","placeholders":["a pen","buttons"]}, +{"id":"179705","label":"pushing torch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["torch"]}, +{"id":"110345","label":"moving a thermocol away from the clip","template":"Moving [something] away from [something]","placeholders":["a thermocol","the clip"]}, +{"id":"217790","label":"spilling water next to a balloon","template":"Spilling [something] next to [something]","placeholders":["water","a balloon"]}, +{"id":"50279","label":"showing mobile phone next to the adapter","template":"Showing [something] next to [something]","placeholders":["mobile phone","the adapter"]}, +{"id":"194594","label":"showing bananas behind a tomato","template":"Showing [something] behind [something]","placeholders":["bananas","a tomato"]}, +{"id":"13331","label":"showing that pen is inside holder","template":"Showing that [something] is inside [something]","placeholders":["pen","holder"]}, +{"id":"31027","label":"trying to pour cold water into a water glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["cold water","a water glass"]}, +{"id":"88925","label":"approaching vacuum cleaner with your camera","template":"Approaching [something] with your camera","placeholders":["vacuum cleaner"]}, +{"id":"58352","label":"pulling two ends of a comb but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a comb"]}, +{"id":"26293","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"135265","label":"stacking 3 rings","template":"Stacking [number of] [something]","placeholders":["3","rings"]}, +{"id":"126385","label":"holding a pair of shoes","template":"Holding [something]","placeholders":["a pair of shoes"]}, +{"id":"4168","label":"holding purple container next to notecard","template":"Holding [something] next to [something]","placeholders":["purple container","notecard"]}, +{"id":"141245","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"12521","label":"putting a dvd onto a tissue box","template":"Putting [something] onto [something]","placeholders":["a dvd","a tissue box"]}, +{"id":"85087","label":"taking a water bottle out of a basket","template":"Taking [something] out of [something]","placeholders":["a water bottle","a basket"]}, +{"id":"54104","label":"pushing bolt with red spoon","template":"Pushing [something] with [something]","placeholders":["bolt","red spoon"]}, +{"id":"146309","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"15729","label":"bending pretzel until it breaks","template":"Bending [something] until it breaks","placeholders":["pretzel"]}, +{"id":"61876","label":"moving notebook and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["notebook","pen"]}, +{"id":"84403","label":"lifting wood with glass on it","template":"Lifting [something] with [something] on it","placeholders":["wood","glass"]}, +{"id":"34916","label":"holding remote control","template":"Holding [something]","placeholders":["remote control"]}, +{"id":"200795","label":"putting lighter into mug","template":"Putting [something] into [something]","placeholders":["lighter","mug"]}, +{"id":"92546","label":"hitting glass with marker","template":"Hitting [something] with [something]","placeholders":["glass","marker"]}, +{"id":"113492","label":"pulling two ends of cloth so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cloth"]}, +{"id":"27856","label":"holding vitamin in front of door knob","template":"Holding [something] in front of [something]","placeholders":["vitamin","door knob"]}, +{"id":"137219","label":"pushing tennis ball with cd stack","template":"Pushing [something] with [something]","placeholders":["tennis ball","cd stack"]}, +{"id":"6317","label":"pulling lock handle from behind of door","template":"Pulling [something] from behind of [something]","placeholders":["lock handle","door"]}, +{"id":"201135","label":"putting a brush onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a brush"]}, +{"id":"65177","label":"tearing something into two pieces","template":"Tearing [something] into two pieces","placeholders":["something"]}, +{"id":"106413","label":"poking ring so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ring"]}, +{"id":"144342","label":"pretending to open cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cup"]}, +{"id":"164069","label":"putting tooth brush on a surface","template":"Putting [something] on a surface","placeholders":["tooth brush"]}, +{"id":"144614","label":"putting fork into bowl","template":"Putting [something] into [something]","placeholders":["fork","bowl"]}, +{"id":"120252","label":"moving mp4 and mp4 case away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mp4","mp4 case"]}, +{"id":"93125","label":"closing meter box","template":"Closing [something]","placeholders":["meter box"]}, +{"id":"55783","label":"scooping coffee up with scoop","template":"Scooping [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"52170","label":"poking a pack of cigarettes so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pack of cigarettes"]}, +{"id":"196522","label":"pushing hair brush onto mouse pad","template":"Pushing [something] onto [something]","placeholders":["hair brush","mouse pad"]}, +{"id":"98800","label":"pushing black lipstick from right to left","template":"Pushing [something] from right to left","placeholders":["black lipstick"]}, +{"id":"182935","label":"putting something into something","template":"Putting [something] into [something]","placeholders":["something","something"]}, +{"id":"50850","label":"bending a cell phone case so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a cell phone case"]}, +{"id":"57528","label":"pretending to pick fork up","template":"Pretending to pick [something] up","placeholders":["fork"]}, +{"id":"3125","label":"spilling coke onto paper","template":"Spilling [something] onto [something]","placeholders":["coke","paper"]}, +{"id":"97643","label":"poking chair so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["chair"]}, +{"id":"21488","label":"a notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["a notebook"]}, +{"id":"61181","label":"showing a photo of a cat to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a cat"]}, +{"id":"84547","label":"trying to bend weight so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["weight"]}, +{"id":"128275","label":"pushing toy train from left to right","template":"Pushing [something] from left to right","placeholders":["toy train"]}, +{"id":"143136","label":"dropping bottle in front of car","template":"Dropping [something] in front of [something]","placeholders":["bottle","car"]}, +{"id":"23643","label":"pretending to put water bottle behind water-can","template":"Pretending to put [something] behind [something]","placeholders":["water bottle","water-can"]}, +{"id":"62941","label":"pushing jar so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jar"]}, +{"id":"201200","label":"holding mobile in front of pillow","template":"Holding [something] in front of [something]","placeholders":["mobile","pillow"]}, +{"id":"194965","label":"holding a playstation controller","template":"Holding [something]","placeholders":["a playstation controller"]}, +{"id":"120164","label":"moving accelarator of scooter","template":"Moving [part] of [something]","placeholders":["accelarator","scooter"]}, +{"id":"10928","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"85465","label":"pushing coin so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["coin"]}, +{"id":"200972","label":"moving candle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["candle"]}, +{"id":"201728","label":"pushing a soft toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a soft toy"]}, +{"id":"2199","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"30125","label":"pushing flavor juice so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["flavor juice"]}, +{"id":"150302","label":"tilting glass with blue pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["glass","blue pen"]}, +{"id":"61889","label":"covering a rubiks cube with a piece of paper","template":"Covering [something] with [something]","placeholders":["a rubiks cube","a piece of paper"]}, +{"id":"103292","label":"putting liner next to book","template":"Putting [something] next to [something]","placeholders":["liner","book"]}, +{"id":"176474","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"158793","label":"tipping perfume over","template":"Tipping [something] over","placeholders":["perfume"]}, +{"id":"134268","label":"spreading rice onto plate","template":"Spreading [something] onto [something]","placeholders":["rice","plate"]}, +{"id":"185976","label":"moving black play cards down","template":"Moving [something] down","placeholders":["black play cards"]}, +{"id":"11551","label":"showing chair to the camera","template":"Showing [something] to the camera","placeholders":["chair"]}, +{"id":"204130","label":"removing teddy bear, revealing a bottle behind","template":"Removing [something], revealing [something] behind","placeholders":["teddy bear","a bottle"]}, +{"id":"64475","label":"holding a picture behind christmas tree","template":"Holding [something] behind [something]","placeholders":["a picture","christmas tree"]}, +{"id":"5017","label":"pouring ground coffee into a jar","template":"Pouring [something] into [something]","placeholders":["ground coffee","a jar"]}, +{"id":"21311","label":"holding mobile charger","template":"Holding [something]","placeholders":["mobile charger"]}, +{"id":"153788","label":"pretending to put a luck cat on a surface","template":"Pretending to put [something] on a surface","placeholders":["a luck cat"]}, +{"id":"177818","label":"putting a pen onto a charger","template":"Putting [something] onto [something]","placeholders":["a pen","a charger"]}, +{"id":"213709","label":"pulling a napkin from behind of cans","template":"Pulling [something] from behind of [something]","placeholders":["a napkin","cans"]}, +{"id":"204395","label":"taking knife out of mug","template":"Taking [something] out of [something]","placeholders":["knife","mug"]}, +{"id":"94920","label":"throwing tape in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tape"]}, +{"id":"35777","label":"tilting mirror with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["mirror","pen"]}, +{"id":"116256","label":"putting a can upright on the table","template":"Putting [something] upright on the table","placeholders":["a can"]}, +{"id":"9605","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"647","label":"pushing toy car with pencil","template":"Pushing [something] with [something]","placeholders":["toy car","pencil"]}, +{"id":"218375","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"85571","label":"turning the camera upwards while filming pink water bottle","template":"Turning the camera upwards while filming [something]","placeholders":["pink water bottle"]}, +{"id":"173807","label":"tipping a ketchup bottle over","template":"Tipping [something] over","placeholders":["a ketchup bottle"]}, +{"id":"79560","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"9025","label":"stacking 2 sandal","template":"Stacking [number of] [something]","placeholders":["2","sandal"]}, +{"id":"179518","label":"pulling two ends of paper piece so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper piece"]}, +{"id":"106039","label":"spinning soft ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["soft ball"]}, +{"id":"67070","label":"tearing toiletpaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["toiletpaper"]}, +{"id":"51923","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"14565","label":"pretending to put cap onto jug","template":"Pretending to put [something] onto [something]","placeholders":["cap","jug"]}, +{"id":"87685","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"140210","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"96217","label":"spreading rice onto spoon","template":"Spreading [something] onto [something]","placeholders":["rice","spoon"]}, +{"id":"177113","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"39883","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"159264","label":"pushing mug from right to left","template":"Pushing [something] from right to left","placeholders":["mug"]}, +{"id":"195315","label":"dropping wallet onto candle","template":"Dropping [something] onto [something]","placeholders":["wallet","candle"]}, +{"id":"104832","label":"turning the camera left while filming mug","template":"Turning the camera left while filming [something]","placeholders":["mug"]}, +{"id":"143235","label":"letting sock roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["sock"]}, +{"id":"60212","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"171849","label":"spinning comb that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["comb"]}, +{"id":"72826","label":"taking spanner on the right among many spanners on the table","template":"Taking [one of many similar things on the table]","placeholders":["spanner on the right among many spanners on the table"]}, +{"id":"188732","label":"putting ketchup bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["ketchup bottle"]}, +{"id":"9789","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"160208","label":"lifting book up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["book"]}, +{"id":"196535","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"154077","label":"taking one coin","template":"Taking [one of many similar things on the table]","placeholders":["one coin"]}, +{"id":"193727","label":"pretending to be tearing tissue paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tissue paper"]}, +{"id":"154981","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"165629","label":"stacking 3 containers","template":"Stacking [number of] [something]","placeholders":["3","containers"]}, +{"id":"138697","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"13947","label":"digging coin out of flour","template":"Digging [something] out of [something]","placeholders":["coin","flour"]}, +{"id":"87675","label":"pushing stapler so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stapler"]}, +{"id":"31268","label":"taking one pen from the floor","template":"Taking [one of many similar things on the table]","placeholders":["one pen from the floor"]}, +{"id":"62472","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"182600","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"189850","label":"uncovering coin","template":"Uncovering [something]","placeholders":["coin"]}, +{"id":"206028","label":"putting a pear into the box","template":"Putting [something] into [something]","placeholders":["a pear","the box"]}, +{"id":"182462","label":"lifting paper with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["paper","a lighter"]}, +{"id":"16248","label":"dropping white spoon into glass bowl","template":"Dropping [something] into [something]","placeholders":["white spoon","glass bowl"]}, +{"id":"217840","label":"lipstick falling like a rock","template":"[Something] falling like a rock","placeholders":["lipstick"]}, +{"id":"101335","label":"plugging usb cable into a laptop usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","a laptop usb port"]}, +{"id":"108172","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"66982","label":"moving a flower away from the camera","template":"Moving [something] away from the camera","placeholders":["a flower"]}, +{"id":"29917","label":"holding a mason jar next to a laptop","template":"Holding [something] next to [something]","placeholders":["a mason jar","a laptop"]}, +{"id":"117779","label":"holding mobile phone over laptop","template":"Holding [something] over [something]","placeholders":["mobile phone","laptop"]}, +{"id":"155594","label":"moving screen of laptop","template":"Moving [part] of [something]","placeholders":["screen","laptop"]}, +{"id":"92013","label":"poking a remote so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a remote"]}, +{"id":"103579","label":"holding toy","template":"Holding [something]","placeholders":["toy"]}, +{"id":"85413","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"150072","label":"pretending to take frame from table","template":"Pretending to take [something] from [somewhere]","placeholders":["frame","table"]}, +{"id":"199601","label":"showing that a wine glass is empty","template":"Showing that [something] is empty","placeholders":["a wine glass"]}, +{"id":"91984","label":"taking a ring out of jewelry box","template":"Taking [something] out of [something]","placeholders":["a ring","jewelry box"]}, +{"id":"13269","label":"turning the camera left while filming small book","template":"Turning the camera left while filming [something]","placeholders":["small book"]}, +{"id":"176845","label":"covering rock with towel","template":"Covering [something] with [something]","placeholders":["rock","towel"]}, +{"id":"125532","label":"moving water bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["water bottle"]}, +{"id":"20974","label":"tipping a clock over","template":"Tipping [something] over","placeholders":["a clock"]}, +{"id":"23465","label":"turning birthday card upside down","template":"Turning [something] upside down","placeholders":["birthday card"]}, +{"id":"203451","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"31589","label":"dropping game behind paper","template":"Dropping [something] behind [something]","placeholders":["game","paper"]}, +{"id":"95537","label":"putting cube onto bowl","template":"Putting [something] onto [something]","placeholders":["cube","bowl"]}, +{"id":"199236","label":"lifting up one end of a pencil, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pencil"]}, +{"id":"37291","label":"tearing notepad paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["notepad paper"]}, +{"id":"144888","label":"burying remote in blanket","template":"Burying [something] in [something]","placeholders":["remote","blanket"]}, +{"id":"28082","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"79000","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"114333","label":"bending tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tube"]}, +{"id":"214567","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"6773","label":"pretending to pick orange post-it up","template":"Pretending to pick [something] up","placeholders":["orange post-it"]}, +{"id":"71198","label":"putting a toy excavator on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a toy excavator"]}, +{"id":"94575","label":"tearing napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["napkin"]}, +{"id":"156285","label":"touching (without moving) paper of table","template":"Touching (without moving) [part] of [something]","placeholders":["paper","table"]}, +{"id":"1422","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"27595","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"187726","label":"pretending to open bootle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bootle"]}, +{"id":"177507","label":"pulling two ends of leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaf"]}, +{"id":"34509","label":"moving body spray can up","template":"Moving [something] up","placeholders":["body spray can"]}, +{"id":"121323","label":"bending thick paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["thick paper"]}, +{"id":"84915","label":"moving clip closer to remote","template":"Moving [something] closer to [something]","placeholders":["clip","remote"]}, +{"id":"183374","label":"pulling toy plane from left to right","template":"Pulling [something] from left to right","placeholders":["toy plane"]}, +{"id":"33562","label":"pretending to scoop pennies up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["pennies","spoon"]}, +{"id":"148986","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"123364","label":"turning a tissue box upside down","template":"Turning [something] upside down","placeholders":["a tissue box"]}, +{"id":"208782","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"187215","label":"pushing red bottlecap from left to right","template":"Pushing [something] from left to right","placeholders":["red bottlecap"]}, +{"id":"159127","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"216111","label":"covering cup with shirt","template":"Covering [something] with [something]","placeholders":["cup","shirt"]}, +{"id":"152696","label":"pushing black file so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["black file"]}, +{"id":"120822","label":"poking power bank so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["power bank"]}, +{"id":"155531","label":"pushing the slipper with the foot","template":"Pushing [something] with [something]","placeholders":["the slipper","the foot"]}, +{"id":"63161","label":"dropping a paper clip behind a box","template":"Dropping [something] behind [something]","placeholders":["a paper clip","a box"]}, +{"id":"157400","label":"poking a hole into pillow","template":"Poking a hole into [something soft]","placeholders":["pillow"]}, +{"id":"13685","label":"board falling like a rock","template":"[Something] falling like a rock","placeholders":["board"]}, +{"id":"145113","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"150774","label":"covering a candle with a towel","template":"Covering [something] with [something]","placeholders":["a candle","a towel"]}, +{"id":"205873","label":"pushing bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bag"]}, +{"id":"30792","label":"squeezing a lemon","template":"Squeezing [something]","placeholders":["a lemon"]}, +{"id":"38377","label":"turning the camera left while filming bus","template":"Turning the camera left while filming [something]","placeholders":["bus"]}, +{"id":"211126","label":"a toy car colliding with a marble ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a toy car","a marble ball"]}, +{"id":"8465","label":"putting teddy bear that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["teddy bear"]}, +{"id":"73799","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"24164","label":"unfolding mat","template":"Unfolding [something]","placeholders":["mat"]}, +{"id":"70462","label":"pack of paper tissues falling like a rock","template":"[Something] falling like a rock","placeholders":["pack of paper tissues"]}, +{"id":"31326","label":"showing that the jar is empty","template":"Showing that [something] is empty","placeholders":["the jar"]}, +{"id":"7292","label":"dropping plastic bottle into bucket water","template":"Dropping [something] into [something]","placeholders":["plastic bottle","bucket water"]}, +{"id":"128801","label":"holding a bead behind a glass","template":"Holding [something] behind [something]","placeholders":["a bead","a glass"]}, +{"id":"41417","label":"letting something roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["something"]}, +{"id":"159371","label":"putting water into cup","template":"Putting [something] into [something]","placeholders":["water","cup"]}, +{"id":"166456","label":"moving away from bottle cap with your camera","template":"Moving away from [something] with your camera","placeholders":["bottle cap"]}, +{"id":"196775","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"215056","label":"plugging an airwick scent into a plug","template":"Plugging [something] into [something]","placeholders":["an airwick scent","a plug"]}, +{"id":"2689","label":"pretending to pick ruler up","template":"Pretending to pick [something] up","placeholders":["ruler"]}, +{"id":"201589","label":"closing black plastic box","template":"Closing [something]","placeholders":["black plastic box"]}, +{"id":"213462","label":"dropping a comb next to the laptop","template":"Dropping [something] next to [something]","placeholders":["a comb","the laptop"]}, +{"id":"203405","label":"laying pitcher on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["pitcher"]}, +{"id":"162121","label":"tipping a glass over","template":"Tipping [something] over","placeholders":["a glass"]}, +{"id":"67045","label":"salt spreader falling like a rock","template":"[Something] falling like a rock","placeholders":["salt spreader"]}, +{"id":"116624","label":"putting toy idol into blue colour spectacle box","template":"Putting [something] into [something]","placeholders":["toy idol","blue colour spectacle box"]}, +{"id":"117244","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"92374","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"209319","label":"moving rock and rock away from each other","template":"Moving [something] and [something] away from each other","placeholders":["rock","rock"]}, +{"id":"76414","label":"showing green toy car on top of blue spectacle box","template":"Showing [something] on top of [something]","placeholders":["green toy car","blue spectacle box"]}, +{"id":"52371","label":"attaching usb cable to adapter","template":"Attaching [something] to [something]","placeholders":["usb cable","adapter"]}, +{"id":"89533","label":"taking one bottle from similar bottles on the table","template":"Taking [one of many similar things on the table]","placeholders":["one bottle from similar bottles on the table"]}, +{"id":"120228","label":"spreading jelly onto bread","template":"Spreading [something] onto [something]","placeholders":["jelly","bread"]}, +{"id":"130457","label":"attaching sticker to whiteboard","template":"Attaching [something] to [something]","placeholders":["sticker","whiteboard"]}, +{"id":"93839","label":"pushing watch so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["watch"]}, +{"id":"67019","label":"approaching plant with your camera","template":"Approaching [something] with your camera","placeholders":["plant"]}, +{"id":"196321","label":"putting cube onto battery so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["cube","battery"]}, +{"id":"132082","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"190023","label":"attaching magnet to refrigerator","template":"Attaching [something] to [something]","placeholders":["magnet","refrigerator"]}, +{"id":"51877","label":"lifting a paper plate up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a paper plate"]}, +{"id":"193760","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"36121","label":"lifting a pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pen"]}, +{"id":"24175","label":"uncovering books","template":"Uncovering [something]","placeholders":["books"]}, +{"id":"33232","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"137833","label":"tearing tearing something into two pieces into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing something into two pieces"]}, +{"id":"166000","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"143762","label":"moving baby toy up","template":"Moving [something] up","placeholders":["baby toy"]}, +{"id":"24474","label":"holding umbrela behind door","template":"Holding [something] behind [something]","placeholders":["umbrela","door"]}, +{"id":"97541","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"115567","label":"touching (without moving) the edge of button","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","button"]}, +{"id":"174407","label":"putting pencil box behind globe","template":"Putting [something] behind [something]","placeholders":["pencil box","globe"]}, +{"id":"89126","label":"dropping pen onto counter","template":"Dropping [something] onto [something]","placeholders":["pen","counter"]}, +{"id":"84464","label":"spinning white badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["white badge"]}, +{"id":"7636","label":"moving stapler across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["stapler"]}, +{"id":"196399","label":"squeezing sunscreen","template":"Squeezing [something]","placeholders":["sunscreen"]}, +{"id":"55640","label":"pretending to be tearing tissues","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tissues"]}, +{"id":"166031","label":"bending a pen refill tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen refill tube"]}, +{"id":"105371","label":"moving toothbrush and toothpaste closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toothbrush","toothpaste"]}, +{"id":"11046","label":"dropping controller next to headset","template":"Dropping [something] next to [something]","placeholders":["controller","headset"]}, +{"id":"66000","label":"taking paper punch from slab","template":"Taking [something] from [somewhere]","placeholders":["paper punch","slab"]}, +{"id":"109353","label":"opening lip balm","template":"Opening [something]","placeholders":["lip balm"]}, +{"id":"49894","label":"moving usb cable closer to eraser","template":"Moving [something] closer to [something]","placeholders":["usb cable","eraser"]}, +{"id":"207429","label":"spinning a quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a quarter"]}, +{"id":"4074","label":"putting spray bottle, book and spoon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["spray bottle","book","spoon"]}, +{"id":"208124","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"118355","label":"plugging cord into charger","template":"Plugging [something] into [something]","placeholders":["cord","charger"]}, +{"id":"127511","label":"dropping a pencil onto a towel","template":"Dropping [something] onto [something]","placeholders":["a pencil","a towel"]}, +{"id":"116514","label":"dropping a groundnut next to keys","template":"Dropping [something] next to [something]","placeholders":["a groundnut","keys"]}, +{"id":"113441","label":"moving paper closer to the computer","template":"Moving [something] closer to [something]","placeholders":["paper","the computer"]}, +{"id":"41405","label":"showing bottle behind pen","template":"Showing [something] behind [something]","placeholders":["bottle","pen"]}, +{"id":"86130","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"53060","label":"pretending to turn perfume upside down","template":"Pretending to turn [something] upside down","placeholders":["perfume"]}, +{"id":"176570","label":"showing tv next to wall","template":"Showing [something] next to [something]","placeholders":["tv","wall"]}, +{"id":"106391","label":"stacking 4 containers of tape","template":"Stacking [number of] [something]","placeholders":["4","containers of tape"]}, +{"id":"153466","label":"moving rock closer to lighter","template":"Moving [something] closer to [something]","placeholders":["rock","lighter"]}, +{"id":"56220","label":"rolling bodybuilding weight on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bodybuilding weight"]}, +{"id":"170727","label":"putting scotch tape on a surface","template":"Putting [something] on a surface","placeholders":["scotch tape"]}, +{"id":"34562","label":"moving thermocol and comb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["thermocol","comb"]}, +{"id":"190356","label":"holding phone next to remote","template":"Holding [something] next to [something]","placeholders":["phone","remote"]}, +{"id":"13504","label":"dropping a glasses box onto a desk","template":"Dropping [something] onto [something]","placeholders":["a glasses box","a desk"]}, +{"id":"21063","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"18893","label":"pushing wine bottle from right to left","template":"Pushing [something] from right to left","placeholders":["wine bottle"]}, +{"id":"63185","label":"letting rolling pin roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["rolling pin"]}, +{"id":"34529","label":"pretending to pick ink pack up","template":"Pretending to pick [something] up","placeholders":["ink pack"]}, +{"id":"77021","label":"plugging charger into plug","template":"Plugging [something] into [something]","placeholders":["charger","plug"]}, +{"id":"157052","label":"dropping pencil in front of tape","template":"Dropping [something] in front of [something]","placeholders":["pencil","tape"]}, +{"id":"112478","label":"putting marker into pen case","template":"Putting [something] into [something]","placeholders":["marker","pen case"]}, +{"id":"47293","label":"throwing a pen against the door","template":"Throwing [something] against [something]","placeholders":["a pen","the door"]}, +{"id":"52333","label":"holding glass bottle","template":"Holding [something]","placeholders":["glass bottle"]}, +{"id":"168928","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"166578","label":"lifting a book with a mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a mobile phone"]}, +{"id":"92842","label":"moving small shot glass and big shot glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["small shot glass","big shot glass"]}, +{"id":"150466","label":"a receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a receipt"]}, +{"id":"133692","label":"moving pen and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","cup"]}, +{"id":"144528","label":"pushing pebble from right to left","template":"Pushing [something] from right to left","placeholders":["pebble"]}, +{"id":"136812","label":"toy plane falling like a rock","template":"[Something] falling like a rock","placeholders":["toy plane"]}, +{"id":"185531","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"217346","label":"taking jeans pant","template":"Taking [one of many similar things on the table]","placeholders":["jeans pant"]}, +{"id":"154539","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"117784","label":"poking a computer mouse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a computer mouse"]}, +{"id":"60625","label":"showing violin on top of pillow","template":"Showing [something] on top of [something]","placeholders":["violin","pillow"]}, +{"id":"54056","label":"covering toothbrushes with hand towel","template":"Covering [something] with [something]","placeholders":["toothbrushes","hand towel"]}, +{"id":"174741","label":"pushing a chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a chair"]}, +{"id":"108981","label":"pushing toy truck so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy truck"]}, +{"id":"1750","label":"lifting a book with nail varnish on it","template":"Lifting [something] with [something] on it","placeholders":["a book","nail varnish"]}, +{"id":"143934","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"113530","label":"pushing tie so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tie"]}, +{"id":"129582","label":"tearing paer into two pieces","template":"Tearing [something] into two pieces","placeholders":["paer"]}, +{"id":"206035","label":"uncovering hair clip","template":"Uncovering [something]","placeholders":["hair clip"]}, +{"id":"114625","label":"putting remote control on a surface","template":"Putting [something] on a surface","placeholders":["remote control"]}, +{"id":"220842","label":"pretending to poke a little statue","template":"Pretending to poke [something]","placeholders":["a little statue"]}, +{"id":"173110","label":"turning the camera left while filming chick","template":"Turning the camera left while filming [something]","placeholders":["chick"]}, +{"id":"150924","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"10359","label":"tilting book with bat on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","bat"]}, +{"id":"133009","label":"picking wrist watch up","template":"Picking [something] up","placeholders":["wrist watch"]}, +{"id":"52094","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"112313","label":"plugging power cable into socket","template":"Plugging [something] into [something]","placeholders":["power cable","socket"]}, +{"id":"219062","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"217069","label":"moving razor down","template":"Moving [something] down","placeholders":["razor"]}, +{"id":"108226","label":"turning the camera downwards while filming cup","template":"Turning the camera downwards while filming [something]","placeholders":["cup"]}, +{"id":"205678","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"129921","label":"lifting wooden block up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wooden block"]}, +{"id":"111935","label":"pretending to open closet door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["closet door"]}, +{"id":"216977","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"106730","label":"dropping a banana into a packet","template":"Dropping [something] into [something]","placeholders":["a banana","a packet"]}, +{"id":"116602","label":"putting a spoon into a mug","template":"Putting [something] into [something]","placeholders":["a spoon","a mug"]}, +{"id":"134941","label":"tilting spoon with coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["spoon","coin"]}, +{"id":"63307","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"205154","label":"pulling zipper from left to right","template":"Pulling [something] from left to right","placeholders":["zipper"]}, +{"id":"18580","label":"moving chalk piece up","template":"Moving [something] up","placeholders":["chalk piece"]}, +{"id":"103337","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"619","label":"pretending to pour water out of a glass of water, but the glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a glass of water","the glass"]}, +{"id":"76434","label":"covering an ipad with a cardboard","template":"Covering [something] with [something]","placeholders":["an ipad","a cardboard"]}, +{"id":"220729","label":"throwing mobile onto a surface","template":"Throwing [something] onto a surface","placeholders":["mobile"]}, +{"id":"153031","label":"small box falling like a rock","template":"[Something] falling like a rock","placeholders":["small box"]}, +{"id":"150896","label":"showing that sticky tape is inside teapot","template":"Showing that [something] is inside [something]","placeholders":["sticky tape","teapot"]}, +{"id":"108987","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"19198","label":"approaching tables and chairs with your camera","template":"Approaching [something] with your camera","placeholders":["tables and chairs"]}, +{"id":"138001","label":"putting a keybound on a surface","template":"Putting [something] on a surface","placeholders":["a keybound"]}, +{"id":"65666","label":"turning the camera left while filming notebook","template":"Turning the camera left while filming [something]","placeholders":["notebook"]}, +{"id":"36268","label":"putting water bottle next to water bottle","template":"Putting [something] next to [something]","placeholders":["water bottle","water bottle"]}, +{"id":"199668","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"40880","label":"lifting rectanglular box with keys on it","template":"Lifting [something] with [something] on it","placeholders":["rectanglular box","keys"]}, +{"id":"214093","label":"lifting a pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pen"]}, +{"id":"113042","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"187396","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"15646","label":"stuffing dirty clothes into bag","template":"Stuffing [something] into [something]","placeholders":["dirty clothes","bag"]}, +{"id":"76689","label":"putting water into a cup","template":"Putting [something] into [something]","placeholders":["water","a cup"]}, +{"id":"54224","label":"pushing remote from left to right","template":"Pushing [something] from left to right","placeholders":["remote"]}, +{"id":"202185","label":"pretending to pick an apple up","template":"Pretending to pick [something] up","placeholders":["an apple"]}, +{"id":"10122","label":"bending hair pin so that it deforms","template":"Bending [something] so that it deforms","placeholders":["hair pin"]}, +{"id":"38555","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"182027","label":"plugging earphones into a laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earphones","a laptop"]}, +{"id":"139449","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"20334","label":"pretending to turn a bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["a bottle"]}, +{"id":"68803","label":"stacking 4 dvds","template":"Stacking [number of] [something]","placeholders":["4","dvds"]}, +{"id":"33547","label":"removing remote, revealing a pen behind","template":"Removing [something], revealing [something] behind","placeholders":["remote","a pen"]}, +{"id":"158343","label":"pushing bottle cap from right to left","template":"Pushing [something] from right to left","placeholders":["bottle cap"]}, +{"id":"16913","label":"pretending to scoop cocoa up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["cocoa","spoon"]}, +{"id":"177451","label":"dropping a wallet into a box","template":"Dropping [something] into [something]","placeholders":["a wallet","a box"]}, +{"id":"93985","label":"dropping clear plastic pot onto windowsill","template":"Dropping [something] onto [something]","placeholders":["clear plastic pot","windowsill"]}, +{"id":"50886","label":"moving calculator down","template":"Moving [something] down","placeholders":["calculator"]}, +{"id":"30223","label":"dropping coins into coffee can","template":"Dropping [something] into [something]","placeholders":["coins","coffee can"]}, +{"id":"21526","label":"pushing firm plastic so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["firm plastic"]}, +{"id":"109252","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"39182","label":"stuffing plastic clothes hangar into couch cushion opening","template":"Stuffing [something] into [something]","placeholders":["plastic clothes hangar","couch cushion opening"]}, +{"id":"154030","label":"holding candle next to owl statue","template":"Holding [something] next to [something]","placeholders":["candle","owl statue"]}, +{"id":"94613","label":"covering pillows with a blanket","template":"Covering [something] with [something]","placeholders":["pillows","a blanket"]}, +{"id":"217890","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"23704","label":"dropping stuffed animal into basket","template":"Dropping [something] into [something]","placeholders":["stuffed animal","basket"]}, +{"id":"15422","label":"paper receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper receipt"]}, +{"id":"210058","label":"rolling a metal cylinder on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a metal cylinder"]}, +{"id":"58947","label":"moving candle closer to lamp","template":"Moving [something] closer to [something]","placeholders":["candle","lamp"]}, +{"id":"38208","label":"pulling paper out of dress","template":"Pulling [something] out of [something]","placeholders":["paper","dress"]}, +{"id":"117124","label":"throwing bottle against a wall","template":"Throwing [something] against [something]","placeholders":["bottle","a wall"]}, +{"id":"218903","label":"tilting box with bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","bottle"]}, +{"id":"19805","label":"putting a coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin"]}, +{"id":"110797","label":"dropping a box of juice onto plastic cover","template":"Dropping [something] onto [something]","placeholders":["a box of juice","plastic cover"]}, +{"id":"23180","label":"pretending to close glass door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["glass door"]}, +{"id":"80980","label":"covering sunglasses with a paper","template":"Covering [something] with [something]","placeholders":["sunglasses","a paper"]}, +{"id":"199978","label":"pretending to scoop water up with glass","template":"Pretending to scoop [something] up with [something]","placeholders":["water","glass"]}, +{"id":"92378","label":"squeezing lotion","template":"Squeezing [something]","placeholders":["lotion"]}, +{"id":"32833","label":"pushing duster with red spoon","template":"Pushing [something] with [something]","placeholders":["duster","red spoon"]}, +{"id":"220688","label":"taking jar out of pot","template":"Taking [something] out of [something]","placeholders":["jar","pot"]}, +{"id":"7902","label":"dropping toy into cup","template":"Dropping [something] into [something]","placeholders":["toy","cup"]}, +{"id":"123627","label":"dropping screw driver onto marker pen","template":"Dropping [something] onto [something]","placeholders":["screw driver","marker pen"]}, +{"id":"176988","label":"putting coin into duffel bag","template":"Putting [something] into [something]","placeholders":["coin","duffel bag"]}, +{"id":"176314","label":"showing that juice is inside jar","template":"Showing that [something] is inside [something]","placeholders":["juice","jar"]}, +{"id":"62149","label":"pouring water into glass cup","template":"Pouring [something] into [something]","placeholders":["water","glass cup"]}, +{"id":"18398","label":"dropping a handkerchief in front of a matchbox","template":"Dropping [something] in front of [something]","placeholders":["a handkerchief","a matchbox"]}, +{"id":"56273","label":"pretending to turn bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["bowl"]}, +{"id":"162960","label":"moving hair clip closer to white toy car","template":"Moving [something] closer to [something]","placeholders":["hair clip","white toy car"]}, +{"id":"125237","label":"letting a pen roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a pen"]}, +{"id":"90398","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"182059","label":"taking crystal","template":"Taking [one of many similar things on the table]","placeholders":["crystal"]}, +{"id":"183304","label":"pretending to put paper onto desk","template":"Pretending to put [something] onto [something]","placeholders":["paper","desk"]}, +{"id":"139875","label":"spoon falling like a rock","template":"[Something] falling like a rock","placeholders":["spoon"]}, +{"id":"53303","label":"pretending to pick keys up","template":"Pretending to pick [something] up","placeholders":["keys"]}, +{"id":"90487","label":"turning toy car upside down","template":"Turning [something] upside down","placeholders":["toy car"]}, +{"id":"58475","label":"pretending to pour something out of something, but something is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["something","something","something"]}, +{"id":"33375","label":"lifting a surface with candy on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["candy"]}, +{"id":"160050","label":"taking a glass","template":"Taking [one of many similar things on the table]","placeholders":["a glass"]}, +{"id":"216360","label":"tipping paper towels over","template":"Tipping [something] over","placeholders":["paper towels"]}, +{"id":"136037","label":"plugging usb cable into usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","usb port"]}, +{"id":"35790","label":"stuffing shirt into cup","template":"Stuffing [something] into [something]","placeholders":["shirt","cup"]}, +{"id":"43088","label":"dropping block next to candle","template":"Dropping [something] next to [something]","placeholders":["block","candle"]}, +{"id":"186734","label":"pulling orange post-it from right to left","template":"Pulling [something] from right to left","placeholders":["orange post-it"]}, +{"id":"153195","label":"pretending to be tearing a hat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a hat"]}, +{"id":"40969","label":"putting an apple into a fruit basket","template":"Putting [something] into [something]","placeholders":["an apple","a fruit basket"]}, +{"id":"50441","label":"poking a pillow so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a pillow"]}, +{"id":"97640","label":"lifting an index card with a quarter on it","template":"Lifting [something] with [something] on it","placeholders":["an index card","a quarter"]}, +{"id":"104851","label":"showing cup on top of water bottle","template":"Showing [something] on top of [something]","placeholders":["cup","water bottle"]}, +{"id":"171925","label":"throwing battery","template":"Throwing [something]","placeholders":["battery"]}, +{"id":"64552","label":"putting yellow colour marker on the top similar to other markers on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["yellow colour marker on the top similar to other markers on the table"]}, +{"id":"108641","label":"turning the camera downwards while filming violin","template":"Turning the camera downwards while filming [something]","placeholders":["violin"]}, +{"id":"214642","label":"putting something in front of something","template":"Putting [something] in front of [something]","placeholders":["something","something"]}, +{"id":"177318","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"61746","label":"closing perfume","template":"Closing [something]","placeholders":["perfume"]}, +{"id":"212841","label":"pulling two ends of elastic band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["elastic band"]}, +{"id":"74133","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"46326","label":"lifting folder with keys on it","template":"Lifting [something] with [something] on it","placeholders":["folder","keys"]}, +{"id":"150004","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"74767","label":"pretending to put a bottle into bowl","template":"Pretending to put [something] into [something]","placeholders":["a bottle","bowl"]}, +{"id":"117615","label":"moving pen and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","remote"]}, +{"id":"92805","label":"putting something into something","template":"Putting [something] into [something]","placeholders":["something","something"]}, +{"id":"13617","label":"uncovering toothbrush","template":"Uncovering [something]","placeholders":["toothbrush"]}, +{"id":"162949","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"99269","label":"holding bottle behind phone","template":"Holding [something] behind [something]","placeholders":["bottle","phone"]}, +{"id":"10446","label":"moving rubix cube closer to spectacle box","template":"Moving [something] closer to [something]","placeholders":["rubix cube","spectacle box"]}, +{"id":"122065","label":"pushing an ashtray so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an ashtray"]}, +{"id":"131932","label":"squeezing pouch","template":"Squeezing [something]","placeholders":["pouch"]}, +{"id":"218216","label":"squeezing a lemmon","template":"Squeezing [something]","placeholders":["a lemmon"]}, +{"id":"159181","label":"touching (without moving) the body of the mirror","template":"Touching (without moving) [part] of [something]","placeholders":["the body","the mirror"]}, +{"id":"136266","label":"plugging inlet into outlet","template":"Plugging [something] into [something]","placeholders":["inlet","outlet"]}, +{"id":"136601","label":"touching (without moving) top of mouse","template":"Touching (without moving) [part] of [something]","placeholders":["top","mouse"]}, +{"id":"216515","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"170626","label":"pushing a woodenbox with a plastic plate","template":"Pushing [something] with [something]","placeholders":["a woodenbox","a plastic plate"]}, +{"id":"124122","label":"moving a card towards the camera","template":"Moving [something] towards the camera","placeholders":["a card"]}, +{"id":"99146","label":"spinning lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lighter"]}, +{"id":"96665","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"185357","label":"tipping canister with lemon over, so lemon falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["canister","lemon","lemon"]}, +{"id":"130021","label":"showing jar next to cup","template":"Showing [something] next to [something]","placeholders":["jar","cup"]}, +{"id":"205944","label":"moving rack up","template":"Moving [something] up","placeholders":["rack"]}, +{"id":"82829","label":"twisting shirt","template":"Twisting [something]","placeholders":["shirt"]}, +{"id":"85075","label":"taking a marker out of a can","template":"Taking [something] out of [something]","placeholders":["a marker","a can"]}, +{"id":"106669","label":"putting envelope on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["envelope","chair"]}, +{"id":"176548","label":"pretending to be tearing a portable hard drive","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a portable hard drive"]}, +{"id":"178603","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"68084","label":"squeezing glue","template":"Squeezing [something]","placeholders":["glue"]}, +{"id":"121737","label":"putting a coin into a piggy bank","template":"Putting [something] into [something]","placeholders":["a coin","a piggy bank"]}, +{"id":"57055","label":"taking a spoon","template":"Taking [one of many similar things on the table]","placeholders":["a spoon"]}, +{"id":"51198","label":"laying glue stick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glue stick"]}, +{"id":"39780","label":"dropping controller in front of headset","template":"Dropping [something] in front of [something]","placeholders":["controller","headset"]}, +{"id":"84967","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"148565","label":"holding something behind something","template":"Holding [something] behind [something]","placeholders":["something","something"]}, +{"id":"34256","label":"showing textbook to the camera","template":"Showing [something] to the camera","placeholders":["textbook"]}, +{"id":"185860","label":"poking a stack of envelopes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["envelopes"]}, +{"id":"97057","label":"putting a glass onto a matt/coaster","template":"Putting [something] onto [something]","placeholders":["a glass","a matt/coaster"]}, +{"id":"101761","label":"turning the camera right while filming krishna idole","template":"Turning the camera right while filming [something]","placeholders":["krishna idole"]}, +{"id":"138230","label":"moving phone and wristwatch closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["phone","wristwatch"]}, +{"id":"133810","label":"taking a banana out of a glass","template":"Taking [something] out of [something]","placeholders":["a banana","a glass"]}, +{"id":"61346","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"168047","label":"lifting glove up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["glove"]}, +{"id":"81709","label":"uncovering eye of stove","template":"Uncovering [something]","placeholders":["eye of stove"]}, +{"id":"220691","label":"turning the camera left while filming the mouse","template":"Turning the camera left while filming [something]","placeholders":["the mouse"]}, +{"id":"93870","label":"trying but failing to attach lighter to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["lighter","fridge"]}, +{"id":"94509","label":"pulling food packet out of plastic container","template":"Pulling [something] out of [something]","placeholders":["food packet","plastic container"]}, +{"id":"117199","label":"pretending to turn pink toothbrush case upside down","template":"Pretending to turn [something] upside down","placeholders":["pink toothbrush case"]}, +{"id":"200656","label":"moving ball closer to sunglasses","template":"Moving [something] closer to [something]","placeholders":["ball","sunglasses"]}, +{"id":"205033","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"204186","label":"putting battery upright on the table","template":"Putting [something] upright on the table","placeholders":["battery"]}, +{"id":"100872","label":"stuffing laundry into basket","template":"Stuffing [something] into [something]","placeholders":["laundry","basket"]}, +{"id":"176564","label":"putting calculator, pen and wallet on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["calculator","pen","wallet"]}, +{"id":"173923","label":"attaching cup to cup","template":"Attaching [something] to [something]","placeholders":["cup","cup"]}, +{"id":"6199","label":"putting an immersion blender base upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["an immersion blender base"]}, +{"id":"208085","label":"putting blue spoon into orange bowl","template":"Putting [something] into [something]","placeholders":["blue spoon","orange bowl"]}, +{"id":"194691","label":"letting a marker roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a marker"]}, +{"id":"166604","label":"putting a pan onto a stove","template":"Putting [something] onto [something]","placeholders":["a pan","a stove"]}, +{"id":"174914","label":"moving pencil away from the camera","template":"Moving [something] away from the camera","placeholders":["pencil"]}, +{"id":"53422","label":"throwing mobile in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["mobile"]}, +{"id":"166259","label":"throwing a plastic chair in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a plastic chair"]}, +{"id":"38895","label":"unfolding kitchen towel","template":"Unfolding [something]","placeholders":["kitchen towel"]}, +{"id":"72820","label":"trying to pour water into a glass container, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a glass container"]}, +{"id":"147542","label":"throwing charger adapter in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["charger adapter"]}, +{"id":"131185","label":"plugging a tv into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a tv","a wall outlet"]}, +{"id":"26580","label":"pretending to sprinkle air onto cat","template":"Pretending to sprinkle air onto [something]","placeholders":["cat"]}, +{"id":"122382","label":"laying drinking bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["drinking bottle"]}, +{"id":"91378","label":"pretending to take box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["box","table"]}, +{"id":"56621","label":"moving pen closer to cup","template":"Moving [something] closer to [something]","placeholders":["pen","cup"]}, +{"id":"15581","label":"tipping pop can over","template":"Tipping [something] over","placeholders":["pop can"]}, +{"id":"44551","label":"moving glasses and perfum closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glasses","perfum"]}, +{"id":"54103","label":"pushing a toy car off of a table","template":"Pushing [something] off of [something]","placeholders":["a toy car","a table"]}, +{"id":"97299","label":"bending key chain so that it deforms","template":"Bending [something] so that it deforms","placeholders":["key chain"]}, +{"id":"86545","label":"taking water bottle from chair","template":"Taking [something] from [somewhere]","placeholders":["water bottle","chair"]}, +{"id":"18951","label":"stuffing book into books","template":"Stuffing [something] into [something]","placeholders":["book","books"]}, +{"id":"55027","label":"holding onion in front of mug","template":"Holding [something] in front of [something]","placeholders":["onion","mug"]}, +{"id":"176549","label":"rolling pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pen"]}, +{"id":"152026","label":"stuffing napkins into toilet paper roll","template":"Stuffing [something] into [something]","placeholders":["napkins","toilet paper roll"]}, +{"id":"45925","label":"squeezing kitchen sponge","template":"Squeezing [something]","placeholders":["kitchen sponge"]}, +{"id":"121954","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"42838","label":"spreading mayonase onto bread","template":"Spreading [something] onto [something]","placeholders":["mayonase","bread"]}, +{"id":"138809","label":"moving spoon down","template":"Moving [something] down","placeholders":["spoon"]}, +{"id":"98914","label":"turning the camera downwards while filming gate","template":"Turning the camera downwards while filming [something]","placeholders":["gate"]}, +{"id":"200548","label":"holding straw next to sink","template":"Holding [something] next to [something]","placeholders":["straw","sink"]}, +{"id":"106402","label":"putting a can opener, toy ambulance and a lemon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a can opener","toy ambulance","a lemon"]}, +{"id":"156256","label":"pulling cigaret out of marlboro pack","template":"Pulling [something] out of [something]","placeholders":["cigaret","marlboro pack"]}, +{"id":"81300","label":"approaching soda bottle with your camera","template":"Approaching [something] with your camera","placeholders":["soda bottle"]}, +{"id":"41877","label":"squeezing a stuff toy","template":"Squeezing [something]","placeholders":["a stuff toy"]}, +{"id":"119096","label":"putting khaki into bowl","template":"Putting [something] into [something]","placeholders":["khaki","bowl"]}, +{"id":"95465","label":"poking a stack of sugar cubes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["sugar cubes"]}, +{"id":"76867","label":"turning the camera right while filming gate","template":"Turning the camera right while filming [something]","placeholders":["gate"]}, +{"id":"152145","label":"plugging a charging cable into a cell phone","template":"Plugging [something] into [something]","placeholders":["a charging cable","a cell phone"]}, +{"id":"76988","label":"stuffing plastic bag into drinking glass","template":"Stuffing [something] into [something]","placeholders":["plastic bag","drinking glass"]}, +{"id":"115929","label":"lifting rock up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rock"]}, +{"id":"1533","label":"throwing vanity bag in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["vanity bag"]}, +{"id":"206586","label":"dropping an eraser onto a table","template":"Dropping [something] onto [something]","placeholders":["an eraser","a table"]}, +{"id":"195304","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"36293","label":"spinning medicine bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["medicine bottle"]}, +{"id":"10907","label":"pretending to put green headlight on a surface","template":"Pretending to put [something] on a surface","placeholders":["green headlight"]}, +{"id":"44347","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"76055","label":"lifting up one end of note, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["note"]}, +{"id":"28772","label":"touching (without moving) head of toys","template":"Touching (without moving) [part] of [something]","placeholders":["head","toys"]}, +{"id":"127384","label":"tearing teabag into two pieces","template":"Tearing [something] into two pieces","placeholders":["teabag"]}, +{"id":"188245","label":"opening a dvd","template":"Opening [something]","placeholders":["a dvd"]}, +{"id":"20628","label":"spilling coffee grounds behind cup","template":"Spilling [something] behind [something]","placeholders":["coffee grounds","cup"]}, +{"id":"568","label":"moving a trophy across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a trophy"]}, +{"id":"30173","label":"holding pillow next to chair","template":"Holding [something] next to [something]","placeholders":["pillow","chair"]}, +{"id":"44850","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"51559","label":"covering humidifier with towel","template":"Covering [something] with [something]","placeholders":["humidifier","towel"]}, +{"id":"108368","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"173875","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"218971","label":"putting deo into bagback","template":"Putting [something] into [something]","placeholders":["deo","bagback"]}, +{"id":"208801","label":"plugging headphones into a smartphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","a smartphone"]}, +{"id":"184986","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"33837","label":"showing pen behind notebook","template":"Showing [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"118150","label":"throwing basketball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["basketball"]}, +{"id":"82772","label":"opening a chinese food box","template":"Opening [something]","placeholders":["a chinese food box"]}, +{"id":"106349","label":"showing that pen is inside holder","template":"Showing that [something] is inside [something]","placeholders":["pen","holder"]}, +{"id":"215984","label":"pretending to close glass without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["glass"]}, +{"id":"211154","label":"pretending to put keys next to bag","template":"Pretending to put [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"161053","label":"moving a mug and another mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a mug","another mug"]}, +{"id":"180805","label":"moving a shoe and a purse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a shoe","a purse"]}, +{"id":"30829","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"156666","label":"spilling milk onto table mat","template":"Spilling [something] onto [something]","placeholders":["milk","table mat"]}, +{"id":"85985","label":"dropping pencil into floor","template":"Dropping [something] into [something]","placeholders":["pencil","floor"]}, +{"id":"63141","label":"putting silicone onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["silicone"]}, +{"id":"28050","label":"spinning a raw egg that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a raw egg"]}, +{"id":"110857","label":"showing snack to the camera","template":"Showing [something] to the camera","placeholders":["snack"]}, +{"id":"114784","label":"putting bottle behind cup","template":"Putting [something] behind [something]","placeholders":["bottle","cup"]}, +{"id":"171169","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"132553","label":"taking pen out of jar","template":"Taking [something] out of [something]","placeholders":["pen","jar"]}, +{"id":"14438","label":"wiping dish soap off of a laundry machine","template":"Wiping [something] off of [something]","placeholders":["dish soap","a laundry machine"]}, +{"id":"7750","label":"spinning a popsicle stick that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a popsicle stick"]}, +{"id":"6300","label":"moving a large ball and a small ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a large ball","a small ball"]}, +{"id":"24224","label":"pretending to close face powder without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["face powder"]}, +{"id":"4071","label":"turning the camera right while filming white toy car","template":"Turning the camera right while filming [something]","placeholders":["white toy car"]}, +{"id":"64032","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"127576","label":"dropping controller behind headset","template":"Dropping [something] behind [something]","placeholders":["controller","headset"]}, +{"id":"10201","label":"lifting up one end of bottle without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["bottle"]}, +{"id":"5767","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"199838","label":"hitting a beaker with a pen","template":"Hitting [something] with [something]","placeholders":["a beaker","a pen"]}, +{"id":"202663","label":"spinning a scotch roll so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a scotch roll"]}, +{"id":"111604","label":"poking a stack of boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["boxes"]}, +{"id":"139092","label":"pretending or failing to wipe stain off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","table"]}, +{"id":"191802","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"30178","label":"pulling two ends of a piece of plastic so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a piece of plastic"]}, +{"id":"77781","label":"pretending to pick jar up","template":"Pretending to pick [something] up","placeholders":["jar"]}, +{"id":"30860","label":"pretending to open a cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cup"]}, +{"id":"95469","label":"throwing bear onto a surface","template":"Throwing [something] onto a surface","placeholders":["bear"]}, +{"id":"31068","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"53740","label":"pushing hairspraiy bottle so it spins","template":"Pushing [something] so it spins","placeholders":["hairspraiy bottle"]}, +{"id":"117331","label":"putting a mug next to a bottle","template":"Putting [something] next to [something]","placeholders":["a mug","a bottle"]}, +{"id":"112544","label":"putting cable that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cable"]}, +{"id":"15812","label":"moving paper away from the camera","template":"Moving [something] away from the camera","placeholders":["paper"]}, +{"id":"97201","label":"uncovering a bangle","template":"Uncovering [something]","placeholders":["a bangle"]}, +{"id":"113132","label":"putting pot on a surface","template":"Putting [something] on a surface","placeholders":["pot"]}, +{"id":"177809","label":"dropping wallet onto rug","template":"Dropping [something] onto [something]","placeholders":["wallet","rug"]}, +{"id":"85067","label":"putting rubix cube in front of toy car","template":"Putting [something] in front of [something]","placeholders":["rubix cube","toy car"]}, +{"id":"182165","label":"twisting bottle top","template":"Twisting [something]","placeholders":["bottle top"]}, +{"id":"10786","label":"pretending to put small fresh mint on a surface","template":"Pretending to put [something] on a surface","placeholders":["small fresh mint"]}, +{"id":"55178","label":"tipping a bottle of glue over","template":"Tipping [something] over","placeholders":["a bottle of glue"]}, +{"id":"93638","label":"uncovering a cardboard","template":"Uncovering [something]","placeholders":["a cardboard"]}, +{"id":"99735","label":"plugging a charger into a cell phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a cell phone"]}, +{"id":"9675","label":"plugging usb into phone charger","template":"Plugging [something] into [something]","placeholders":["usb","phone charger"]}, +{"id":"171477","label":"closing kitchen cabinet","template":"Closing [something]","placeholders":["kitchen cabinet"]}, +{"id":"104808","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"144970","label":"plugging charger into ipad","template":"Plugging [something] into [something]","placeholders":["charger","ipad"]}, +{"id":"142383","label":"squeezing ball shaped spring","template":"Squeezing [something]","placeholders":["ball shaped spring"]}, +{"id":"211841","label":"small paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["small paper"]}, +{"id":"113244","label":"rolling marble on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marble"]}, +{"id":"6368","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"56841","label":"turning milk mug upside down","template":"Turning [something] upside down","placeholders":["milk mug"]}, +{"id":"174723","label":"putting sock, book and glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sock","book","glass"]}, +{"id":"22875","label":"a tissue box colliding with another tissue box and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a tissue box","another tissue box"]}, +{"id":"128681","label":"tipping cup with crackers over, so cracker falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","crackers","cracker"]}, +{"id":"18596","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"156353","label":"letting wallet roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["wallet"]}, +{"id":"15034","label":"plugging baby monitor cord into power outlet","template":"Plugging [something] into [something]","placeholders":["baby monitor cord","power outlet"]}, +{"id":"49969","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"27155","label":"turning stul upside down","template":"Turning [something] upside down","placeholders":["stul"]}, +{"id":"45621","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"137870","label":"holding a ball over a stool","template":"Holding [something] over [something]","placeholders":["a ball","a stool"]}, +{"id":"210229","label":"stuffing cloth into mug","template":"Stuffing [something] into [something]","placeholders":["cloth","mug"]}, +{"id":"11665","label":"squeezing ketchup","template":"Squeezing [something]","placeholders":["ketchup"]}, +{"id":"129620","label":"putting ball pump upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["ball pump"]}, +{"id":"21759","label":"putting pendrive","template":"Putting [something similar to other things that are already on the table]","placeholders":["pendrive"]}, +{"id":"28887","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"112885","label":"dropping a box onto a book","template":"Dropping [something] onto [something]","placeholders":["a box","a book"]}, +{"id":"4829","label":"stuffing cover into cup","template":"Stuffing [something] into [something]","placeholders":["cover","cup"]}, +{"id":"179592","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"20807","label":"pulling two ends of putty so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["putty"]}, +{"id":"136522","label":"uncovering a stappler","template":"Uncovering [something]","placeholders":["a stappler"]}, +{"id":"139972","label":"poking a pack of cards so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pack of cards"]}, +{"id":"89049","label":"removing bottle, revealing marker behind","template":"Removing [something], revealing [something] behind","placeholders":["bottle","marker"]}, +{"id":"21308","label":"pretending to open camera cover without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["camera cover"]}, +{"id":"163546","label":"holding pen in front of monitor","template":"Holding [something] in front of [something]","placeholders":["pen","monitor"]}, +{"id":"43181","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"206131","label":"putting a pen on a surface","template":"Putting [something] on a surface","placeholders":["a pen"]}, +{"id":"37250","label":"turning a marmalade jar upside down","template":"Turning [something] upside down","placeholders":["a marmalade jar"]}, +{"id":"67389","label":"dropping sellotape into box","template":"Dropping [something] into [something]","placeholders":["sellotape","box"]}, +{"id":"46848","label":"tilting a candelabra with a candle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a candelabra","a candle"]}, +{"id":"128225","label":"putting a tea light candle on the table with other candles","template":"Putting [something similar to other things that are already on the table]","placeholders":["a tea light candle on the table with other candles"]}, +{"id":"111103","label":"pulling a pencil case from right to left","template":"Pulling [something] from right to left","placeholders":["a pencil case"]}, +{"id":"61437","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"218641","label":"pulling curtain from left to right","template":"Pulling [something] from left to right","placeholders":["curtain"]}, +{"id":"119063","label":"holding stapler over comb","template":"Holding [something] over [something]","placeholders":["stapler","comb"]}, +{"id":"11044","label":"closing highlighter","template":"Closing [something]","placeholders":["highlighter"]}, +{"id":"50758","label":"turning the camera upwards while filming chandelier","template":"Turning the camera upwards while filming [something]","placeholders":["chandelier"]}, +{"id":"42367","label":"pushing water bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["water bottle"]}, +{"id":"130206","label":"pretending to take fragance from table","template":"Pretending to take [something] from [somewhere]","placeholders":["fragance","table"]}, +{"id":"43684","label":"turning the camera left while filming krishna idole","template":"Turning the camera left while filming [something]","placeholders":["krishna idole"]}, +{"id":"160195","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"171789","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"3873","label":"squeezing paper tube","template":"Squeezing [something]","placeholders":["paper tube"]}, +{"id":"8659","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"46173","label":"lifting usb stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["usb stick"]}, +{"id":"187004","label":"charger falling like a rock","template":"[Something] falling like a rock","placeholders":["charger"]}, +{"id":"83896","label":"laying sun protection cream bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["sun protection cream bottle"]}, +{"id":"106598","label":"covering a stuffed animal with a blanket","template":"Covering [something] with [something]","placeholders":["a stuffed animal","a blanket"]}, +{"id":"164488","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"209475","label":"putting body spray bottle on a surface","template":"Putting [something] on a surface","placeholders":["body spray bottle"]}, +{"id":"94778","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"101096","label":"pretending to poke glass","template":"Pretending to poke [something]","placeholders":["glass"]}, +{"id":"212458","label":"pretending to pour liquid out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["liquid","cup","cup"]}, +{"id":"40731","label":"pretending to open refrigerator without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["refrigerator"]}, +{"id":"112873","label":"putting notebook into box","template":"Putting [something] into [something]","placeholders":["notebook","box"]}, +{"id":"218562","label":"showing a photo of children to the camera","template":"Showing a photo of [something] to the camera","placeholders":["children"]}, +{"id":"212885","label":"opening marker pen cap","template":"Opening [something]","placeholders":["marker pen cap"]}, +{"id":"181204","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"191550","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"178176","label":"putting 4 pens onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["4","pens","diary"]}, +{"id":"65026","label":"moving pencil away from the camera","template":"Moving [something] away from the camera","placeholders":["pencil"]}, +{"id":"25372","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"125075","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"16599","label":"pretending to pick headphone up","template":"Pretending to pick [something] up","placeholders":["headphone"]}, +{"id":"77529","label":"showing bottle on top of table","template":"Showing [something] on top of [something]","placeholders":["bottle","table"]}, +{"id":"74077","label":"pretending or trying and failing to twist a penny","template":"Pretending or trying and failing to twist [something]","placeholders":["a penny"]}, +{"id":"127287","label":"showing a bottle behind a lighter","template":"Showing [something] behind [something]","placeholders":["a bottle","a lighter"]}, +{"id":"35153","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"103369","label":"turning the camera right while filming car","template":"Turning the camera right while filming [something]","placeholders":["car"]}, +{"id":"47061","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"183991","label":"taking one domino token","template":"Taking [one of many similar things on the table]","placeholders":["one domino token"]}, +{"id":"126013","label":"handkerchief falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["handkerchief"]}, +{"id":"37882","label":"pretending to put air on a surface","template":"Pretending to put [something] on a surface","placeholders":["air"]}, +{"id":"192140","label":"putting plastic comb behind mug","template":"Putting [something] behind [something]","placeholders":["plastic comb","mug"]}, +{"id":"191918","label":"dropping shoe behind bin","template":"Dropping [something] behind [something]","placeholders":["shoe","bin"]}, +{"id":"94273","label":"putting videogame underneath bed","template":"Putting [something] underneath [something]","placeholders":["videogame","bed"]}, +{"id":"202432","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"13123","label":"approaching a picture with your camera","template":"Approaching [something] with your camera","placeholders":["a picture"]}, +{"id":"202816","label":"spinning clothclip that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["clothclip"]}, +{"id":"183695","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"190235","label":"turning the camera left while filming motor bike","template":"Turning the camera left while filming [something]","placeholders":["motor bike"]}, +{"id":"154968","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"139204","label":"poking a hole into soft doh","template":"Poking a hole into [something soft]","placeholders":["soft doh"]}, +{"id":"134988","label":"holding sunglasses behind package","template":"Holding [something] behind [something]","placeholders":["sunglasses","package"]}, +{"id":"68350","label":"lifting firm plastic up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["firm plastic"]}, +{"id":"40879","label":"stuffing iphone into a sock","template":"Stuffing [something] into [something]","placeholders":["iphone","a sock"]}, +{"id":"179712","label":"holding purple container behind notecard","template":"Holding [something] behind [something]","placeholders":["purple container","notecard"]}, +{"id":"146657","label":"dropping plate in front of plate","template":"Dropping [something] in front of [something]","placeholders":["plate","plate"]}, +{"id":"51014","label":"tearing letter into two pieces","template":"Tearing [something] into two pieces","placeholders":["letter"]}, +{"id":"35831","label":"putting 1 laptop onto pillow","template":"Putting [number of] [something] onto [something]","placeholders":["1","laptop","pillow"]}, +{"id":"179280","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"159951","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"211878","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"149231","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"138344","label":"moving phone closer to box","template":"Moving [something] closer to [something]","placeholders":["phone","box"]}, +{"id":"626","label":"showing jeep to the camera","template":"Showing [something] to the camera","placeholders":["jeep"]}, +{"id":"144626","label":"moving earth of globe","template":"Moving [part] of [something]","placeholders":["earth","globe"]}, +{"id":"72913","label":"pushing small book from right to left","template":"Pushing [something] from right to left","placeholders":["small book"]}, +{"id":"164457","label":"moving spoon and box so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["spoon","box"]}, +{"id":"68118","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"218044","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"111033","label":"lifting up one end of straw, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["straw"]}, +{"id":"196821","label":"pulling a peg from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a peg","a box"]}, +{"id":"29049","label":"pouring soda out of a soda can","template":"Pouring [something] out of [something]","placeholders":["soda","a soda can"]}, +{"id":"115569","label":"pretending to close eyeglass cases without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["eyeglass cases"]}, +{"id":"171101","label":"stuffing sweatshirt into bag","template":"Stuffing [something] into [something]","placeholders":["sweatshirt","bag"]}, +{"id":"64943","label":"tilting a cutting board with a spoon on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cutting board","a spoon"]}, +{"id":"104485","label":"rubber duck falling like a rock","template":"[Something] falling like a rock","placeholders":["rubber duck"]}, +{"id":"15941","label":"squeezing thin box","template":"Squeezing [something]","placeholders":["thin box"]}, +{"id":"49103","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"153712","label":"wiping water off of desk","template":"Wiping [something] off of [something]","placeholders":["water","desk"]}, +{"id":"177899","label":"plugging adapter into outlet","template":"Plugging [something] into [something]","placeholders":["adapter","outlet"]}, +{"id":"123173","label":"putting bag next to cupboard","template":"Putting [something] next to [something]","placeholders":["bag","cupboard"]}, +{"id":"41735","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"123353","label":"pushing highlighter pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["highlighter pen"]}, +{"id":"116822","label":"hitting book with book","template":"Hitting [something] with [something]","placeholders":["book","book"]}, +{"id":"47343","label":"hitting cup with spoon","template":"Hitting [something] with [something]","placeholders":["cup","spoon"]}, +{"id":"2963","label":"attaching a magnet to refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","refrigerator"]}, +{"id":"194192","label":"moving a mug and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","scissors"]}, +{"id":"4784","label":"pushing pepper so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pepper"]}, +{"id":"220781","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"87111","label":"hitting stone with lemon","template":"Hitting [something] with [something]","placeholders":["stone","lemon"]}, +{"id":"664","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"6079","label":"ball being deflected from a wall","template":"[Something] being deflected from [something]","placeholders":["ball","a wall"]}, +{"id":"173943","label":"stuffing a bottle into a plastic bag","template":"Stuffing [something] into [something]","placeholders":["a bottle","a plastic bag"]}, +{"id":"105890","label":"pushing a hanger so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a hanger"]}, +{"id":"197315","label":"bending metal pipe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal pipe"]}, +{"id":"119313","label":"throwing control in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["control"]}, +{"id":"124981","label":"moving bearings and speaker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bearings","speaker"]}, +{"id":"203395","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"158544","label":"moving a sheet of paper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a sheet of paper"]}, +{"id":"173323","label":"hitting tumbler with glass","template":"Hitting [something] with [something]","placeholders":["tumbler","glass"]}, +{"id":"17248","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"111059","label":"pretending to squeeze glass","template":"Pretending to squeeze [something]","placeholders":["glass"]}, +{"id":"199252","label":"pushing small sunscreen lotion from left to right","template":"Pushing [something] from left to right","placeholders":["small sunscreen lotion"]}, +{"id":"135609","label":"hitting can with knife","template":"Hitting [something] with [something]","placeholders":["can","knife"]}, +{"id":"164623","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"106256","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"152453","label":"opening gate","template":"Opening [something]","placeholders":["gate"]}, +{"id":"84242","label":"pushing orange post-it from right to left","template":"Pushing [something] from right to left","placeholders":["orange post-it"]}, +{"id":"45228","label":"moving a bottle and another bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","another bottle"]}, +{"id":"115528","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"218718","label":"removing plastik bag, revealing vase behind","template":"Removing [something], revealing [something] behind","placeholders":["plastik bag","vase"]}, +{"id":"69235","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"73037","label":"touching (without moving) pull part of light","template":"Touching (without moving) [part] of [something]","placeholders":["pull part","light"]}, +{"id":"164973","label":"throwing remote in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["remote"]}, +{"id":"181841","label":"showing a book next to a stapler","template":"Showing [something] next to [something]","placeholders":["a book","a stapler"]}, +{"id":"171852","label":"covering earring with bottle","template":"Covering [something] with [something]","placeholders":["earring","bottle"]}, +{"id":"67735","label":"letting roll along flat surface roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["roll along flat surface"]}, +{"id":"179411","label":"pushing nail varnish from left to right","template":"Pushing [something] from left to right","placeholders":["nail varnish"]}, +{"id":"21558","label":"putting coin onto fidget spinner","template":"Putting [something] onto [something]","placeholders":["coin","fidget spinner"]}, +{"id":"22561","label":"pretending to be tearing shoe","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shoe"]}, +{"id":"86141","label":"plugging cellphone charge plug into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cellphone charge plug","wall socket"]}, +{"id":"187293","label":"holding a laptop","template":"Holding [something]","placeholders":["a laptop"]}, +{"id":"42148","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"184809","label":"moving towel away from towel","template":"Moving [something] away from [something]","placeholders":["towel","towel"]}, +{"id":"154749","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"138877","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"120158","label":"gum colliding with gum and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["gum","gum"]}, +{"id":"91071","label":"pushing spinner so it spins","template":"Pushing [something] so it spins","placeholders":["spinner"]}, +{"id":"30805","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"36715","label":"trying but failing to attach usb cable to a computer port because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["usb cable","a computer port"]}, +{"id":"168325","label":"putting pen behind diary","template":"Putting [something] behind [something]","placeholders":["pen","diary"]}, +{"id":"105256","label":"throwing napkin","template":"Throwing [something]","placeholders":["napkin"]}, +{"id":"207290","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"120960","label":"uncovering goggles","template":"Uncovering [something]","placeholders":["goggles"]}, +{"id":"151101","label":"pulling tape measure from right to left","template":"Pulling [something] from right to left","placeholders":["tape measure"]}, +{"id":"142132","label":"trying to bend plastic brush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plastic brush"]}, +{"id":"208689","label":"moving charger and pendrive closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["charger","pendrive"]}, +{"id":"80735","label":"putting plastic comb into mug","template":"Putting [something] into [something]","placeholders":["plastic comb","mug"]}, +{"id":"26512","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"145153","label":"opening cabinet","template":"Opening [something]","placeholders":["cabinet"]}, +{"id":"105925","label":"taking measuring tape from ground","template":"Taking [something] from [somewhere]","placeholders":["measuring tape","ground"]}, +{"id":"11922","label":"showing birds to the camera","template":"Showing [something] to the camera","placeholders":["birds"]}, +{"id":"61495","label":"twisting a hairspray can","template":"Twisting [something]","placeholders":["a hairspray can"]}, +{"id":"110847","label":"pretending to turn a glass upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass"]}, +{"id":"65680","label":"showing iphone adapter to the camera","template":"Showing [something] to the camera","placeholders":["iphone adapter"]}, +{"id":"141259","label":"showing lip protectant behind got2b gel","template":"Showing [something] behind [something]","placeholders":["lip protectant","got2b gel"]}, +{"id":"59264","label":"putting lighter onto sunglasses so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["lighter","sunglasses"]}, +{"id":"78843","label":"putting one more glass bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["one more glass bottle"]}, +{"id":"84412","label":"lifting brush up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["brush"]}, +{"id":"111090","label":"trying but failing to attach sticky note to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["sticky note","wall"]}, +{"id":"190334","label":"moving fork and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["fork","spoon"]}, +{"id":"120431","label":"soap falling like a rock","template":"[Something] falling like a rock","placeholders":["soap"]}, +{"id":"78716","label":"moving remote towards the camera","template":"Moving [something] towards the camera","placeholders":["remote"]}, +{"id":"112723","label":"covering remote control with paper","template":"Covering [something] with [something]","placeholders":["remote control","paper"]}, +{"id":"30118","label":"spilling water behind paper","template":"Spilling [something] behind [something]","placeholders":["water","paper"]}, +{"id":"154723","label":"pretending to be tearing magazine","template":"Pretending to be tearing [something that is not tearable]","placeholders":["magazine"]}, +{"id":"97604","label":"putting cream behind knife","template":"Putting [something] behind [something]","placeholders":["cream","knife"]}, +{"id":"36352","label":"pushing ketchup bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["ketchup bottle"]}, +{"id":"90103","label":"lifting up one end of wallet, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["wallet"]}, +{"id":"45086","label":"pretending to squeeze a can","template":"Pretending to squeeze [something]","placeholders":["a can"]}, +{"id":"218826","label":"plugging a plug adapter into a wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug adapter","a wall socket"]}, +{"id":"40863","label":"putting one poker chip into a group with many poker chips","template":"Putting [something similar to other things that are already on the table]","placeholders":["one poker chip into a group with many poker chips"]}, +{"id":"143931","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"41780","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"12931","label":"bending wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden stick"]}, +{"id":"7278","label":"pretending or failing to wipe name off of tablet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["name","tablet"]}, +{"id":"129732","label":"trying to bend scissors so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissors"]}, +{"id":"193536","label":"a card falling like a rock","template":"[Something] falling like a rock","placeholders":["a card"]}, +{"id":"138712","label":"showing sign board to the camera","template":"Showing [something] to the camera","placeholders":["sign board"]}, +{"id":"62879","label":"putting an envelop on a surface","template":"Putting [something] on a surface","placeholders":["an envelop"]}, +{"id":"124982","label":"opening a perfume bottle","template":"Opening [something]","placeholders":["a perfume bottle"]}, +{"id":"85446","label":"pushing purple balloon pump from left to right","template":"Pushing [something] from left to right","placeholders":["purple balloon pump"]}, +{"id":"33778","label":"holding pen behind bag","template":"Holding [something] behind [something]","placeholders":["pen","bag"]}, +{"id":"69359","label":"plugging a charger into a computer","template":"Plugging [something] into [something]","placeholders":["a charger","a computer"]}, +{"id":"31878","label":"stacking 5 books","template":"Stacking [number of] [something]","placeholders":["5","books"]}, +{"id":"149428","label":"dropping a matchstick onto an envelope","template":"Dropping [something] onto [something]","placeholders":["a matchstick","an envelope"]}, +{"id":"85017","label":"digging ball out of sand","template":"Digging [something] out of [something]","placeholders":["ball","sand"]}, +{"id":"147799","label":"covering notebook with hat","template":"Covering [something] with [something]","placeholders":["notebook","hat"]}, +{"id":"144581","label":"cellphone falling like a rock","template":"[Something] falling like a rock","placeholders":["cellphone"]}, +{"id":"128532","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"90642","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"45107","label":"putting mobile on to a table","template":"Putting [something similar to other things that are already on the table]","placeholders":["mobile on to a table"]}, +{"id":"26192","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"35644","label":"showing fork on top of plate","template":"Showing [something] on top of [something]","placeholders":["fork","plate"]}, +{"id":"95706","label":"plugging a cord into a phone","template":"Plugging [something] into [something]","placeholders":["a cord","a phone"]}, +{"id":"160763","label":"moving a pen across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a pen"]}, +{"id":"122822","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"73137","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"1730","label":"throwing santa hat in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["santa hat"]}, +{"id":"116149","label":"putting car and book on the table","template":"Putting [something] and [something] on the table","placeholders":["car","book"]}, +{"id":"193529","label":"pushing a tin from left to right","template":"Pushing [something] from left to right","placeholders":["a tin"]}, +{"id":"28145","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"83069","label":"uncovering soap holder","template":"Uncovering [something]","placeholders":["soap holder"]}, +{"id":"26734","label":"turning a box of tissues upside down","template":"Turning [something] upside down","placeholders":["a box of tissues"]}, +{"id":"17315","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"210549","label":"rolling toy on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["toy"]}, +{"id":"110918","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"140933","label":"covering bottle with pillow","template":"Covering [something] with [something]","placeholders":["bottle","pillow"]}, +{"id":"55125","label":"laying boot on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["boot"]}, +{"id":"172395","label":"taking white chalk from table","template":"Taking [something] from [somewhere]","placeholders":["white chalk","table"]}, +{"id":"105481","label":"putting the bowl in front of glass","template":"Putting [something] in front of [something]","placeholders":["the bowl","glass"]}, +{"id":"20374","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"63638","label":"showing that pens is inside mug","template":"Showing that [something] is inside [something]","placeholders":["pens","mug"]}, +{"id":"214314","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"153961","label":"putting carbon paper into the bill book","template":"Putting [something] into [something]","placeholders":["carbon paper","the bill book"]}, +{"id":"208683","label":"holding old mobile phone","template":"Holding [something]","placeholders":["old mobile phone"]}, +{"id":"124897","label":"showing pen behind calculator","template":"Showing [something] behind [something]","placeholders":["pen","calculator"]}, +{"id":"26327","label":"putting a small bottle and a fidget cube on the table","template":"Putting [something] and [something] on the table","placeholders":["a small bottle","a fidget cube"]}, +{"id":"115694","label":"covering round case with towel","template":"Covering [something] with [something]","placeholders":["round case","towel"]}, +{"id":"104227","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"109558","label":"pushing small box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["small box"]}, +{"id":"95285","label":"moving night light and fig closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["night light","fig"]}, +{"id":"97576","label":"showing a cup on top of a mixer grinder","template":"Showing [something] on top of [something]","placeholders":["a cup","a mixer grinder"]}, +{"id":"218361","label":"turning the camera right while filming fruits","template":"Turning the camera right while filming [something]","placeholders":["fruits"]}, +{"id":"86099","label":"putting fry pan that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["fry pan"]}, +{"id":"112088","label":"opening hand cream tube","template":"Opening [something]","placeholders":["hand cream tube"]}, +{"id":"3871","label":"putting coloured pen into pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["coloured pen into pens"]}, +{"id":"24498","label":"covering cat with towel","template":"Covering [something] with [something]","placeholders":["cat","towel"]}, +{"id":"100186","label":"a battery falling like a rock","template":"[Something] falling like a rock","placeholders":["a battery"]}, +{"id":"197549","label":"turning the camera downwards while filming small green ball","template":"Turning the camera downwards while filming [something]","placeholders":["small green ball"]}, +{"id":"45951","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"134653","label":"tearing a paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper towel"]}, +{"id":"150075","label":"plugging a usb connector into charging port","template":"Plugging [something] into [something]","placeholders":["a usb connector","charging port"]}, +{"id":"85616","label":"plugging plug into surge protector but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","surge protector"]}, +{"id":"130469","label":"pushing toy wheel with wooden stick","template":"Pushing [something] with [something]","placeholders":["toy wheel","wooden stick"]}, +{"id":"108152","label":"poking phone so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["phone"]}, +{"id":"9578","label":"dropping a ruler onto a notebook","template":"Dropping [something] onto [something]","placeholders":["a ruler","a notebook"]}, +{"id":"121804","label":"moving spoon up","template":"Moving [something] up","placeholders":["spoon"]}, +{"id":"196406","label":"lifting book with power bank on it","template":"Lifting [something] with [something] on it","placeholders":["book","power bank"]}, +{"id":"10191","label":"pretending to close the door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["the door"]}, +{"id":"120503","label":"throwing the bottle","template":"Throwing [something]","placeholders":["the bottle"]}, +{"id":"178551","label":"putting bolt screw, gear wheel and pencil sharpner on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bolt screw","gear wheel","pencil sharpner"]}, +{"id":"133337","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"139288","label":"poking toy globe so that it spins around","template":"Poking [something] so that it spins around","placeholders":["toy globe"]}, +{"id":"138067","label":"moving towel away from towel","template":"Moving [something] away from [something]","placeholders":["towel","towel"]}, +{"id":"83306","label":"moving sun glass towards the camera","template":"Moving [something] towards the camera","placeholders":["sun glass"]}, +{"id":"65009","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"107100","label":"putting mobile phone similar to other mobile phones that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["mobile phone similar to other mobile phones that are already on the table"]}, +{"id":"9186","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"218347","label":"turning the camera right while filming one tea light candle","template":"Turning the camera right while filming [something]","placeholders":["one tea light candle"]}, +{"id":"62906","label":"moving away from car with your camera","template":"Moving away from [something] with your camera","placeholders":["car"]}, +{"id":"208451","label":"showing marker behind pen","template":"Showing [something] behind [something]","placeholders":["marker","pen"]}, +{"id":"14541","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"36725","label":"uncovering tablet","template":"Uncovering [something]","placeholders":["tablet"]}, +{"id":"97520","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"200714","label":"spilling water behind doll","template":"Spilling [something] behind [something]","placeholders":["water","doll"]}, +{"id":"68421","label":"putting glass of water on a surface","template":"Putting [something] on a surface","placeholders":["glass of water"]}, +{"id":"19182","label":"\\'' paper\\''fall\\''down falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["\\'' paper\\''fall\\''down"]}, +{"id":"190860","label":"a mobile phone falling like a rock","template":"[Something] falling like a rock","placeholders":["a mobile phone"]}, +{"id":"135565","label":"picking board clip up","template":"Picking [something] up","placeholders":["board clip"]}, +{"id":"54579","label":"plugging adaptor into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["adaptor","socket"]}, +{"id":"121659","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"156130","label":"putting mug in front of fork","template":"Putting [something] in front of [something]","placeholders":["mug","fork"]}, +{"id":"49751","label":"throwing nickel onto a surface","template":"Throwing [something] onto a surface","placeholders":["nickel"]}, +{"id":"29141","label":"throwing remote control in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["remote control"]}, +{"id":"12856","label":"pretending to put pen onto book","template":"Pretending to put [something] onto [something]","placeholders":["pen","book"]}, +{"id":"25779","label":"showing a onion on top of a bottle","template":"Showing [something] on top of [something]","placeholders":["a onion","a bottle"]}, +{"id":"17182","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"195294","label":"pretending to close food container without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["food container"]}, +{"id":"127763","label":"throwing pipe","template":"Throwing [something]","placeholders":["pipe"]}, +{"id":"78306","label":"putting notebook upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["notebook"]}, +{"id":"64595","label":"twisting (wringing) kerchief wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["kerchief"]}, +{"id":"206949","label":"showing broken stones to the camera","template":"Showing [something] to the camera","placeholders":["broken stones"]}, +{"id":"153575","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"90266","label":"dropping bulb syringe into sink","template":"Dropping [something] into [something]","placeholders":["bulb syringe","sink"]}, +{"id":"88927","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"73975","label":"pushing bottle with box","template":"Pushing [something] with [something]","placeholders":["bottle","box"]}, +{"id":"8634","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"69875","label":"pretending to poke doll","template":"Pretending to poke [something]","placeholders":["doll"]}, +{"id":"42565","label":"spinning a lego that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lego"]}, +{"id":"175308","label":"pulling mouse from right to left","template":"Pulling [something] from right to left","placeholders":["mouse"]}, +{"id":"66669","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"109760","label":"moving toy puppy closer to toy","template":"Moving [something] closer to [something]","placeholders":["toy puppy","toy"]}, +{"id":"212833","label":"a toy car colliding with a toy car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a toy car","a toy car"]}, +{"id":"84939","label":"plugging charger into telephone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","telephone"]}, +{"id":"59719","label":"taking brush from purse","template":"Taking [something] from [somewhere]","placeholders":["brush","purse"]}, +{"id":"209710","label":"razor blade falling like a rock","template":"[Something] falling like a rock","placeholders":["razor blade"]}, +{"id":"44634","label":"pushing keys so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["keys"]}, +{"id":"68987","label":"showing a teaspoon on top of a mug","template":"Showing [something] on top of [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"168300","label":"pushing bottle with box","template":"Pushing [something] with [something]","placeholders":["bottle","box"]}, +{"id":"203829","label":"putting something underneath something","template":"Putting [something] underneath [something]","placeholders":["something","something"]}, +{"id":"125657","label":"trying to bend iron stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["iron stick"]}, +{"id":"69340","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"94264","label":"moving keyring of airpod case","template":"Moving [part] of [something]","placeholders":["keyring","airpod case"]}, +{"id":"42516","label":"showing card to the camera","template":"Showing [something] to the camera","placeholders":["card"]}, +{"id":"38431","label":"pushing phone so it spins","template":"Pushing [something] so it spins","placeholders":["phone"]}, +{"id":"141744","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"211564","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"1322","label":"pulling two ends of rubberband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubberband"]}, +{"id":"144633","label":"putting pink toothbrush case on a surface","template":"Putting [something] on a surface","placeholders":["pink toothbrush case"]}, +{"id":"79206","label":"moving my phone down","template":"Moving [something] down","placeholders":["my phone"]}, +{"id":"117431","label":"pushing a watch from right to left","template":"Pushing [something] from right to left","placeholders":["a watch"]}, +{"id":"24347","label":"throwing hook against wall","template":"Throwing [something] against [something]","placeholders":["hook","wall"]}, +{"id":"74629","label":"holding remote","template":"Holding [something]","placeholders":["remote"]}, +{"id":"159874","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"199008","label":"pretending to turn a bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["a bottle"]}, +{"id":"122533","label":"rolling an hourglass on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an hourglass"]}, +{"id":"88159","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"6891","label":"moving eraser across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["eraser"]}, +{"id":"137338","label":"tilting deo bottle with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["deo bottle","box"]}, +{"id":"161574","label":"picking a mini clothespin up","template":"Picking [something] up","placeholders":["a mini clothespin"]}, +{"id":"153594","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"30495","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"92388","label":"pushing ring so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ring"]}, +{"id":"87632","label":"turning the camera left while filming flowers","template":"Turning the camera left while filming [something]","placeholders":["flowers"]}, +{"id":"45900","label":"holding coconut over the cooker","template":"Holding [something] over [something]","placeholders":["coconut","the cooker"]}, +{"id":"213899","label":"turning the camera downwards while filming banana bunch","template":"Turning the camera downwards while filming [something]","placeholders":["banana bunch"]}, +{"id":"49683","label":"dropping rubix cube behind a pillow","template":"Dropping [something] behind [something]","placeholders":["rubix cube","a pillow"]}, +{"id":"4407","label":"throwing clementine in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["clementine"]}, +{"id":"172561","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"186144","label":"putting iron roll on a surface","template":"Putting [something] on a surface","placeholders":["iron roll"]}, +{"id":"62582","label":"twisting a piece of paper","template":"Twisting [something]","placeholders":["a piece of paper"]}, +{"id":"6426","label":"burying coin in flour","template":"Burying [something] in [something]","placeholders":["coin","flour"]}, +{"id":"208228","label":"pretending to take the nose from the dog's face","template":"Pretending to take [something] from [somewhere]","placeholders":["the nose","the dog's face"]}, +{"id":"207284","label":"backpack falling like a rock","template":"[Something] falling like a rock","placeholders":["backpack"]}, +{"id":"85360","label":"turning the camera right while filming flower","template":"Turning the camera right while filming [something]","placeholders":["flower"]}, +{"id":"106452","label":"tipping a tin with tea leaves over, so tea leaves falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a tin","tea leaves","tea leaves"]}, +{"id":"157675","label":"taking sticky note","template":"Taking [one of many similar things on the table]","placeholders":["sticky note"]}, +{"id":"196103","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"168324","label":"turning the camera left while filming toy giraffe","template":"Turning the camera left while filming [something]","placeholders":["toy giraffe"]}, +{"id":"156455","label":"pretending to open note book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["note book"]}, +{"id":"98847","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"61215","label":"putting spectacle box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["spectacle box"]}, +{"id":"203107","label":"covering controller with pillow","template":"Covering [something] with [something]","placeholders":["controller","pillow"]}, +{"id":"146418","label":"showing toaster next to microwave","template":"Showing [something] next to [something]","placeholders":["toaster","microwave"]}, +{"id":"161657","label":"covering a watch with a hand","template":"Covering [something] with [something]","placeholders":["a watch","a hand"]}, +{"id":"134584","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"137099","label":"pulling two ends of a cloth but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a cloth"]}, +{"id":"79910","label":"pulling two ends of hair elastic so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair elastic"]}, +{"id":"101859","label":"pushing container from left to right","template":"Pushing [something] from left to right","placeholders":["container"]}, +{"id":"47097","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"85702","label":"scooping cereal up with measuring cup","template":"Scooping [something] up with [something]","placeholders":["cereal","measuring cup"]}, +{"id":"120147","label":"throwing puzzle piece in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["puzzle piece"]}, +{"id":"98076","label":"stacking 4 cups","template":"Stacking [number of] [something]","placeholders":["4","cups"]}, +{"id":"77722","label":"plugging plugg into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plugg","charger"]}, +{"id":"147947","label":"pushing a glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a glass"]}, +{"id":"7632","label":"moving envelopes across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["envelopes"]}, +{"id":"180103","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"49241","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"175737","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"40982","label":"trying but failing to attach paper to ball because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","ball"]}, +{"id":"109978","label":"moving table up","template":"Moving [something] up","placeholders":["table"]}, +{"id":"204882","label":"attaching bottle to cap","template":"Attaching [something] to [something]","placeholders":["bottle","cap"]}, +{"id":"194332","label":"covering headphones with clothing","template":"Covering [something] with [something]","placeholders":["headphones","clothing"]}, +{"id":"196047","label":"turning the camera left while filming gate","template":"Turning the camera left while filming [something]","placeholders":["gate"]}, +{"id":"219940","label":"bending spaghetti until it breaks","template":"Bending [something] until it breaks","placeholders":["spaghetti"]}, +{"id":"157576","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"161706","label":"pulling a measuring tape from left to right","template":"Pulling [something] from left to right","placeholders":["a measuring tape"]}, +{"id":"112895","label":"pouring animal feed out of container","template":"Pouring [something] out of [something]","placeholders":["animal feed","container"]}, +{"id":"33681","label":"pretending to sprinkle air onto a bowl of tomatoes","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl of tomatoes"]}, +{"id":"42130","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"16007","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"108784","label":"pushing marker pen from left to right","template":"Pushing [something] from left to right","placeholders":["marker pen"]}, +{"id":"196269","label":"turning soup bowl upside down","template":"Turning [something] upside down","placeholders":["soup bowl"]}, +{"id":"21651","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"103077","label":"turning the camera right while filming ball","template":"Turning the camera right while filming [something]","placeholders":["ball"]}, +{"id":"172482","label":"poking a box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a box"]}, +{"id":"181261","label":"bending a book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a book"]}, +{"id":"115644","label":"showing ring to the camera","template":"Showing [something] to the camera","placeholders":["ring"]}, +{"id":"140527","label":"moving away from water tap with your camera","template":"Moving away from [something] with your camera","placeholders":["water tap"]}, +{"id":"186245","label":"pushing a beaker so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a beaker"]}, +{"id":"202275","label":"pushing a mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a mouse"]}, +{"id":"218202","label":"attaching stopper to vial","template":"Attaching [something] to [something]","placeholders":["stopper","vial"]}, +{"id":"49005","label":"opening fridge","template":"Opening [something]","placeholders":["fridge"]}, +{"id":"132551","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"150254","label":"moving book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["book"]}, +{"id":"189104","label":"stacking 6 books","template":"Stacking [number of] [something]","placeholders":["6","books"]}, +{"id":"180337","label":"holding an envelope in front of a playstation controller","template":"Holding [something] in front of [something]","placeholders":["an envelope","a playstation controller"]}, +{"id":"143105","label":"rolling a steel ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a steel ball"]}, +{"id":"85240","label":"folding banana leaf","template":"Folding [something]","placeholders":["banana leaf"]}, +{"id":"181583","label":"laying a green box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a green box"]}, +{"id":"48363","label":"putting charger adapter into orange bowl","template":"Putting [something] into [something]","placeholders":["charger adapter","orange bowl"]}, +{"id":"37282","label":"tearing notecard just a little bit","template":"Tearing [something] just a little bit","placeholders":["notecard"]}, +{"id":"19069","label":"opening empty clay container","template":"Opening [something]","placeholders":["empty clay container"]}, +{"id":"194100","label":"squeezing a furball","template":"Squeezing [something]","placeholders":["a furball"]}, +{"id":"37052","label":"moving toy down","template":"Moving [something] down","placeholders":["toy"]}, +{"id":"176432","label":"letting an apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["an apple"]}, +{"id":"4138","label":"stuffing paper into bowl","template":"Stuffing [something] into [something]","placeholders":["paper","bowl"]}, +{"id":"203569","label":"putting pad lock","template":"Putting [something similar to other things that are already on the table]","placeholders":["pad lock"]}, +{"id":"72108","label":"trying to pour water into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a cup"]}, +{"id":"96520","label":"lifting iphone with pen on it","template":"Lifting [something] with [something] on it","placeholders":["iphone","pen"]}, +{"id":"177786","label":"pretending or failing to wipe paint off of corner","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","corner"]}, +{"id":"201724","label":"attaching a little piece of paper to a sheet of paper","template":"Attaching [something] to [something]","placeholders":["a little piece of paper","a sheet of paper"]}, +{"id":"181944","label":"moving leaf up","template":"Moving [something] up","placeholders":["leaf"]}, +{"id":"70702","label":"pretending to close book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["book"]}, +{"id":"90653","label":"holding mobile phone next to laptop","template":"Holding [something] next to [something]","placeholders":["mobile phone","laptop"]}, +{"id":"142100","label":"throwing popcorn tin","template":"Throwing [something]","placeholders":["popcorn tin"]}, +{"id":"82816","label":"throwing nail clippers in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["nail clippers"]}, +{"id":"129223","label":"tearing paper tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper tissue"]}, +{"id":"51249","label":"letting a plastic flusk roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a plastic flusk"]}, +{"id":"137868","label":"showing that ladle is empty","template":"Showing that [something] is empty","placeholders":["ladle"]}, +{"id":"192296","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"53036","label":"putting a notebook on a surface","template":"Putting [something] on a surface","placeholders":["a notebook"]}, +{"id":"43527","label":"tipping lighter over","template":"Tipping [something] over","placeholders":["lighter"]}, +{"id":"92215","label":"putting the keys into the glass","template":"Putting [something] into [something]","placeholders":["the keys","the glass"]}, +{"id":"17582","label":"holding book in front of painting","template":"Holding [something] in front of [something]","placeholders":["book","painting"]}, +{"id":"58605","label":"a cube falling like a rock","template":"[Something] falling like a rock","placeholders":["a cube"]}, +{"id":"51870","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"32149","label":"plugging mains plug into socket","template":"Plugging [something] into [something]","placeholders":["mains plug","socket"]}, +{"id":"62627","label":"pretending to be tearing towel material","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel material"]}, +{"id":"186118","label":"tilting book with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","phone"]}, +{"id":"76243","label":"covering phone with book","template":"Covering [something] with [something]","placeholders":["phone","book"]}, +{"id":"116335","label":"throwing a book onto a surface","template":"Throwing [something] onto a surface","placeholders":["a book"]}, +{"id":"184572","label":"pulling bottle from left to right","template":"Pulling [something] from left to right","placeholders":["bottle"]}, +{"id":"197719","label":"poking a hole into notebook paper","template":"Poking a hole into [something soft]","placeholders":["notebook paper"]}, +{"id":"72712","label":"pouring water into container","template":"Pouring [something] into [something]","placeholders":["water","container"]}, +{"id":"55391","label":"piling something up","template":"Piling [something] up","placeholders":["something"]}, +{"id":"81358","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"17995","label":"moving a box closer to a cube","template":"Moving [something] closer to [something]","placeholders":["a box","a cube"]}, +{"id":"184121","label":"pulling two ends of thread so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["thread"]}, +{"id":"142440","label":"turning the camera upwards while filming lighter","template":"Turning the camera upwards while filming [something]","placeholders":["lighter"]}, +{"id":"152357","label":"piling binders up","template":"Piling [something] up","placeholders":["binders"]}, +{"id":"86421","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"42628","label":"putting ice cream scoop","template":"Putting [something similar to other things that are already on the table]","placeholders":["ice cream scoop"]}, +{"id":"96619","label":"moving bottle and ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["bottle","ball"]}, +{"id":"93549","label":"turning the camera left while filming water tap","template":"Turning the camera left while filming [something]","placeholders":["water tap"]}, +{"id":"181152","label":"pretending to put pen onto diary","template":"Pretending to put [something] onto [something]","placeholders":["pen","diary"]}, +{"id":"40930","label":"pretending to turn an apple upside down","template":"Pretending to turn [something] upside down","placeholders":["an apple"]}, +{"id":"6196","label":"showing a fidget spinner on top of a paper","template":"Showing [something] on top of [something]","placeholders":["a fidget spinner","a paper"]}, +{"id":"2251","label":"rolling lip balm on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lip balm"]}, +{"id":"212356","label":"covering cashew with cap","template":"Covering [something] with [something]","placeholders":["cashew","cap"]}, +{"id":"141934","label":"twisting twisting bottle cap","template":"Twisting [something]","placeholders":["twisting bottle cap"]}, +{"id":"33766","label":"moving headphones up","template":"Moving [something] up","placeholders":["headphones"]}, +{"id":"209994","label":"poking a pill bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a pill bottle"]}, +{"id":"185502","label":"stuffing paper into jar","template":"Stuffing [something] into [something]","placeholders":["paper","jar"]}, +{"id":"83693","label":"showing a photo of a paintbrush to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a paintbrush"]}, +{"id":"198062","label":"hitting coconut tree with hand","template":"Hitting [something] with [something]","placeholders":["coconut tree","hand"]}, +{"id":"24566","label":"touching (without moving) front of door","template":"Touching (without moving) [part] of [something]","placeholders":["front","door"]}, +{"id":"121142","label":"putting a ring on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a ring"]}, +{"id":"217615","label":"pretending to poke book","template":"Pretending to poke [something]","placeholders":["book"]}, +{"id":"86039","label":"plugging usb pin into laptop","template":"Plugging [something] into [something]","placeholders":["usb pin","laptop"]}, +{"id":"166132","label":"moving soda can closer to glass","template":"Moving [something] closer to [something]","placeholders":["soda can","glass"]}, +{"id":"28021","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"23550","label":"pushing something so it spins","template":"Pushing [something] so it spins","placeholders":["something"]}, +{"id":"102318","label":"showing pineapple to the camera","template":"Showing [something] to the camera","placeholders":["pineapple"]}, +{"id":"37110","label":"lifting plate with avocado on it","template":"Lifting [something] with [something] on it","placeholders":["plate","avocado"]}, +{"id":"90106","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"63041","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"132062","label":"pushing remote with comb","template":"Pushing [something] with [something]","placeholders":["remote","comb"]}, +{"id":"75383","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"176777","label":"moving rule up","template":"Moving [something] up","placeholders":["rule"]}, +{"id":"188301","label":"putting glasses, marker and gift card on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["glasses","marker","gift card"]}, +{"id":"179870","label":"pretending to put soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["soap"]}, +{"id":"215219","label":"putting brick next to brick","template":"Putting [something] next to [something]","placeholders":["brick","brick"]}, +{"id":"74529","label":"spinning toyfan so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toyfan"]}, +{"id":"30105","label":"poking alcohol bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["alcohol bottle"]}, +{"id":"37442","label":"dropping coin into box","template":"Dropping [something] into [something]","placeholders":["coin","box"]}, +{"id":"6342","label":"poking a lotion tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a lotion tube"]}, +{"id":"111853","label":"moving key up","template":"Moving [something] up","placeholders":["key"]}, +{"id":"193535","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"28519","label":"lipstick falling like a rock","template":"[Something] falling like a rock","placeholders":["lipstick"]}, +{"id":"137883","label":"pouring rubbing alcohol out of a bottle","template":"Pouring [something] out of [something]","placeholders":["rubbing alcohol","a bottle"]}, +{"id":"168537","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"66036","label":"stacking 3 white board clips","template":"Stacking [number of] [something]","placeholders":["3","white board clips"]}, +{"id":"45462","label":"moving lid of lavandin container","template":"Moving [part] of [something]","placeholders":["lid","lavandin container"]}, +{"id":"20106","label":"unfolding folded paper","template":"Unfolding [something]","placeholders":["folded paper"]}, +{"id":"111818","label":"lifting a towel up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a towel"]}, +{"id":"44700","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"198462","label":"adapter colliding with rock and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["adapter","rock"]}, +{"id":"176811","label":"squeezing foam block","template":"Squeezing [something]","placeholders":["foam block"]}, +{"id":"140161","label":"moving lighter up","template":"Moving [something] up","placeholders":["lighter"]}, +{"id":"1464","label":"closing kitchen cabinet","template":"Closing [something]","placeholders":["kitchen cabinet"]}, +{"id":"26984","label":"moving game down","template":"Moving [something] down","placeholders":["game"]}, +{"id":"162305","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"33327","label":"opening mobile phone cover","template":"Opening [something]","placeholders":["mobile phone cover"]}, +{"id":"198111","label":"dropping a card in front of a hard disk drive","template":"Dropping [something] in front of [something]","placeholders":["a card","a hard disk drive"]}, +{"id":"136876","label":"dropping orange colour sharpner in front of duster","template":"Dropping [something] in front of [something]","placeholders":["orange colour sharpner","duster"]}, +{"id":"22881","label":"moving tie across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["tie"]}, +{"id":"70548","label":"pouring dr.pepper into cup","template":"Pouring [something] into [something]","placeholders":["dr.pepper","cup"]}, +{"id":"45995","label":"hitting glass with tool","template":"Hitting [something] with [something]","placeholders":["glass","tool"]}, +{"id":"201692","label":"pushing blue lighter from left to right","template":"Pushing [something] from left to right","placeholders":["blue lighter"]}, +{"id":"68659","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"192369","label":"moving cub up","template":"Moving [something] up","placeholders":["cub"]}, +{"id":"128259","label":"turning the camera left while filming cat","template":"Turning the camera left while filming [something]","placeholders":["cat"]}, +{"id":"18100","label":"pulling stapler from left to right","template":"Pulling [something] from left to right","placeholders":["stapler"]}, +{"id":"161875","label":"spilling water onto a plant","template":"Spilling [something] onto [something]","placeholders":["water","a plant"]}, +{"id":"184687","label":"plugging a usb cord into a charger","template":"Plugging [something] into [something]","placeholders":["a usb cord","a charger"]}, +{"id":"128602","label":"plugging charger into mobile phone","template":"Plugging [something] into [something]","placeholders":["charger","mobile phone"]}, +{"id":"168365","label":"moving computer case down","template":"Moving [something] down","placeholders":["computer case"]}, +{"id":"178100","label":"a dice falling like a rock","template":"[Something] falling like a rock","placeholders":["a dice"]}, +{"id":"146732","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"105994","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"87458","label":"moving remote closer to coaster","template":"Moving [something] closer to [something]","placeholders":["remote","coaster"]}, +{"id":"140709","label":"spinning knife so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["knife"]}, +{"id":"75412","label":"pretending to open cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cup"]}, +{"id":"116983","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"89502","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"75639","label":"pulling notebook out of bookbag","template":"Pulling [something] out of [something]","placeholders":["notebook","bookbag"]}, +{"id":"98888","label":"uncovering water bottle","template":"Uncovering [something]","placeholders":["water bottle"]}, +{"id":"18437","label":"putting flashdisk next to yellowbook","template":"Putting [something] next to [something]","placeholders":["flashdisk","yellowbook"]}, +{"id":"997","label":"putting pencil, sharpener and eraser on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pencil","sharpener","eraser"]}, +{"id":"86352","label":"folding kitchen towel","template":"Folding [something]","placeholders":["kitchen towel"]}, +{"id":"215391","label":"pretending to put a jacket onto a bed","template":"Pretending to put [something] onto [something]","placeholders":["a jacket","a bed"]}, +{"id":"50606","label":"pretending to squeeze ball","template":"Pretending to squeeze [something]","placeholders":["ball"]}, +{"id":"33885","label":"pretending to put a hemet underneath scooter","template":"Pretending to put [something] underneath [something]","placeholders":["a hemet","scooter"]}, +{"id":"143225","label":"stuffing pot holder into vase","template":"Stuffing [something] into [something]","placeholders":["pot holder","vase"]}, +{"id":"88589","label":"moving fork away from spoon","template":"Moving [something] away from [something]","placeholders":["fork","spoon"]}, +{"id":"188708","label":"moving the remote away from the mouse","template":"Moving [something] away from [something]","placeholders":["the remote","the mouse"]}, +{"id":"214227","label":"trying to bend a marker so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a marker"]}, +{"id":"51931","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"55721","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"169828","label":"holding a marble over a frying pan","template":"Holding [something] over [something]","placeholders":["a marble","a frying pan"]}, +{"id":"152774","label":"uncovering watch","template":"Uncovering [something]","placeholders":["watch"]}, +{"id":"151912","label":"holding a cup over a book","template":"Holding [something] over [something]","placeholders":["a cup","a book"]}, +{"id":"79055","label":"putting scissors that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["scissors"]}, +{"id":"81211","label":"pretending or trying and failing to twist waterbottle","template":"Pretending or trying and failing to twist [something]","placeholders":["waterbottle"]}, +{"id":"175153","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"65798","label":"moving away from iron with your camera","template":"Moving away from [something] with your camera","placeholders":["iron"]}, +{"id":"96404","label":"dropping lemon behind shoe","template":"Dropping [something] behind [something]","placeholders":["lemon","shoe"]}, +{"id":"108891","label":"pretending to pick small plant up","template":"Pretending to pick [something] up","placeholders":["small plant"]}, +{"id":"169000","label":"holding mouse in front of wallet","template":"Holding [something] in front of [something]","placeholders":["mouse","wallet"]}, +{"id":"57220","label":"moving toy away from toy","template":"Moving [something] away from [something]","placeholders":["toy","toy"]}, +{"id":"182807","label":"putting a different label skateboard next to another skateboard","template":"Putting [something similar to other things that are already on the table]","placeholders":["a different label skateboard next to another skateboard"]}, +{"id":"147448","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"217201","label":"dropping small box into medium tupperware container","template":"Dropping [something] into [something]","placeholders":["small box","medium tupperware container"]}, +{"id":"85753","label":"pouring coke into a cup","template":"Pouring [something] into [something]","placeholders":["coke","a cup"]}, +{"id":"3160","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"69661","label":"moving plate up","template":"Moving [something] up","placeholders":["plate"]}, +{"id":"184007","label":"poking a folder so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a folder"]}, +{"id":"86955","label":"moving toilette paper and toilette paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toilette paper","toilette paper"]}, +{"id":"158425","label":"moving salt shaker and pepper mill closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["salt shaker","pepper mill"]}, +{"id":"45674","label":"letting toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy"]}, +{"id":"54444","label":"holding candy over waste basket","template":"Holding [something] over [something]","placeholders":["candy","waste basket"]}, +{"id":"175481","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"35267","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"213356","label":"holding hair clip in front of box","template":"Holding [something] in front of [something]","placeholders":["hair clip","box"]}, +{"id":"78872","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"161367","label":"throwing a heating pad","template":"Throwing [something]","placeholders":["a heating pad"]}, +{"id":"87770","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"71","label":"trying but failing to attach a hook to a wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a hook","a wall"]}, +{"id":"12597","label":"pretending to put a sock into drawer","template":"Pretending to put [something] into [something]","placeholders":["a sock","drawer"]}, +{"id":"37275","label":"pretending to take trimmer from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["trimmer","bed"]}, +{"id":"48034","label":"poking a stack of nail polish so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["nail polish"]}, +{"id":"181879","label":"putting coffee into a cup","template":"Putting [something] into [something]","placeholders":["coffee","a cup"]}, +{"id":"4540","label":"holding brush over wallet","template":"Holding [something] over [something]","placeholders":["brush","wallet"]}, +{"id":"217189","label":"pretending to be tearing pencil-pouch","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pencil-pouch"]}, +{"id":"215789","label":"check falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["check"]}, +{"id":"5576","label":"putting remote on a surface","template":"Putting [something] on a surface","placeholders":["remote"]}, +{"id":"36459","label":"taking shoe polish container from piller","template":"Taking [something] from [somewhere]","placeholders":["shoe polish container","piller"]}, +{"id":"141650","label":"plugging plug into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","outlet"]}, +{"id":"31159","label":"showing that screw is inside white soup bowl","template":"Showing that [something] is inside [something]","placeholders":["screw","white soup bowl"]}, +{"id":"20740","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"162418","label":"poking nail polish so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["nail polish"]}, +{"id":"180580","label":"closing compassbox","template":"Closing [something]","placeholders":["compassbox"]}, +{"id":"200381","label":"holding a rubber/eraser in front of a hairdryer","template":"Holding [something] in front of [something]","placeholders":["a rubber/eraser","a hairdryer"]}, +{"id":"31139","label":"lifting a book with a plug on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a plug"]}, +{"id":"95803","label":"pouring water onto plant","template":"Pouring [something] onto [something]","placeholders":["water","plant"]}, +{"id":"84344","label":"moving mobile and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mobile","remote"]}, +{"id":"38082","label":"holding a tv remote control over a can of air freshener","template":"Holding [something] over [something]","placeholders":["a tv remote control","a can of air freshener"]}, +{"id":"65011","label":"laying a book on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a book"]}, +{"id":"102101","label":"putting feeding bottle into pot","template":"Putting [something] into [something]","placeholders":["feeding bottle","pot"]}, +{"id":"190051","label":"showing a flower next to the photo","template":"Showing [something] next to [something]","placeholders":["a flower","the photo"]}, +{"id":"105837","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"29488","label":"piling potholders up","template":"Piling [something] up","placeholders":["potholders"]}, +{"id":"67624","label":"pretending to put a phone next to a key ring","template":"Pretending to put [something] next to [something]","placeholders":["a phone","a key ring"]}, +{"id":"177211","label":"sprinkling sesame seeds onto an oven tray","template":"Sprinkling [something] onto [something]","placeholders":["sesame seeds","an oven tray"]}, +{"id":"195673","label":"covering mobile phone with blanket","template":"Covering [something] with [something]","placeholders":["mobile phone","blanket"]}, +{"id":"40597","label":"moving blinds up","template":"Moving [something] up","placeholders":["blinds"]}, +{"id":"116200","label":"dropping eraser onto notebook","template":"Dropping [something] onto [something]","placeholders":["eraser","notebook"]}, +{"id":"152429","label":"throwing spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["spoon"]}, +{"id":"110093","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"71758","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"19598","label":"holding pink toothbrush case","template":"Holding [something]","placeholders":["pink toothbrush case"]}, +{"id":"29538","label":"moving candy towards the camera","template":"Moving [something] towards the camera","placeholders":["candy"]}, +{"id":"128173","label":"folding receipt","template":"Folding [something]","placeholders":["receipt"]}, +{"id":"176804","label":"pushing android cornet from left to right","template":"Pushing [something] from left to right","placeholders":["android cornet"]}, +{"id":"140514","label":"dropping cufflinks onto a handkerchief","template":"Dropping [something] onto [something]","placeholders":["cufflinks","a handkerchief"]}, +{"id":"97553","label":"pretending to pick purple container up","template":"Pretending to pick [something] up","placeholders":["purple container"]}, +{"id":"91427","label":"throwing comb in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["comb"]}, +{"id":"6452","label":"spilling water next to a container","template":"Spilling [something] next to [something]","placeholders":["water","a container"]}, +{"id":"89036","label":"dropping a comb in front of a knife","template":"Dropping [something] in front of [something]","placeholders":["a comb","a knife"]}, +{"id":"154955","label":"approaching bottle with your camera","template":"Approaching [something] with your camera","placeholders":["bottle"]}, +{"id":"128343","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"194338","label":"stuffing cd into case","template":"Stuffing [something] into [something]","placeholders":["cd","case"]}, +{"id":"17120","label":"poking sellotape so that it falls over","template":"Poking [something] so that it falls over","placeholders":["sellotape"]}, +{"id":"174589","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"125487","label":"dropping a water bottle onto the floor","template":"Dropping [something] onto [something]","placeholders":["a water bottle","the floor"]}, +{"id":"191021","label":"moving phone towards the camera","template":"Moving [something] towards the camera","placeholders":["phone"]}, +{"id":"148067","label":"dropping a comb onto an envelope","template":"Dropping [something] onto [something]","placeholders":["a comb","an envelope"]}, +{"id":"25653","label":"dropping a handkerchief in front of a peg","template":"Dropping [something] in front of [something]","placeholders":["a handkerchief","a peg"]}, +{"id":"37595","label":"moving cup and tuperware away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","tuperware"]}, +{"id":"204942","label":"moving a bottle and another bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a bottle","another bottle"]}, +{"id":"204713","label":"moving away from mirror with your camera","template":"Moving away from [something] with your camera","placeholders":["mirror"]}, +{"id":"17064","label":"moving handle of glass bottle","template":"Moving [part] of [something]","placeholders":["handle","glass bottle"]}, +{"id":"148407","label":"uncovering stuffed animal","template":"Uncovering [something]","placeholders":["stuffed animal"]}, +{"id":"108613","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"156815","label":"showing that trash is inside trash can","template":"Showing that [something] is inside [something]","placeholders":["trash","trash can"]}, +{"id":"168983","label":"putting phone that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["phone"]}, +{"id":"30654","label":"covering teacup with saucer","template":"Covering [something] with [something]","placeholders":["teacup","saucer"]}, +{"id":"26431","label":"throwing book against rock","template":"Throwing [something] against [something]","placeholders":["book","rock"]}, +{"id":"159068","label":"moving plastic flower away from toy duck","template":"Moving [something] away from [something]","placeholders":["plastic flower","toy duck"]}, +{"id":"157815","label":"stacking 2 cans","template":"Stacking [number of] [something]","placeholders":["2","cans"]}, +{"id":"82891","label":"taking candy out of box","template":"Taking [something] out of [something]","placeholders":["candy","box"]}, +{"id":"145613","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"10037","label":"pushing toilet paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toilet paper"]}, +{"id":"19283","label":"moving calculator closer to box","template":"Moving [something] closer to [something]","placeholders":["calculator","box"]}, +{"id":"133927","label":"taking yogurt out of freezer","template":"Taking [something] out of [something]","placeholders":["yogurt","freezer"]}, +{"id":"89079","label":"spreading butter onto bread","template":"Spreading [something] onto [something]","placeholders":["butter","bread"]}, +{"id":"119643","label":"lifting up one end of marker, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["marker"]}, +{"id":"31518","label":"showing that pocket watch is inside small box","template":"Showing that [something] is inside [something]","placeholders":["pocket watch","small box"]}, +{"id":"179641","label":"lifting up one end of marker, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["marker"]}, +{"id":"108992","label":"bending twist ties so that it deforms","template":"Bending [something] so that it deforms","placeholders":["twist ties"]}, +{"id":"146726","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"105734","label":"putting fork with other forks","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork with other forks"]}, +{"id":"12462","label":"turning the camera downwards while filming ring","template":"Turning the camera downwards while filming [something]","placeholders":["ring"]}, +{"id":"64810","label":"pushing a pen from right to left","template":"Pushing [something] from right to left","placeholders":["a pen"]}, +{"id":"207555","label":"opening carmex bottle","template":"Opening [something]","placeholders":["carmex bottle"]}, +{"id":"190983","label":"opening bottled water","template":"Opening [something]","placeholders":["bottled water"]}, +{"id":"5095","label":"pretending to put chain into bottle","template":"Pretending to put [something] into [something]","placeholders":["chain","bottle"]}, +{"id":"136860","label":"moving tool away from scissor","template":"Moving [something] away from [something]","placeholders":["tool","scissor"]}, +{"id":"21538","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"181248","label":"tearing aluminum foil into two pieces","template":"Tearing [something] into two pieces","placeholders":["aluminum foil"]}, +{"id":"176048","label":"pushing a screw from left to right","template":"Pushing [something] from left to right","placeholders":["a screw"]}, +{"id":"8164","label":"closing canister","template":"Closing [something]","placeholders":["canister"]}, +{"id":"179515","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"105386","label":"turning the camera upwards while filming green water bottle","template":"Turning the camera upwards while filming [something]","placeholders":["green water bottle"]}, +{"id":"53635","label":"pushing a fan so it spins","template":"Pushing [something] so it spins","placeholders":["a fan"]}, +{"id":"93850","label":"moving spoon across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["spoon"]}, +{"id":"121015","label":"moving screwdriver across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["screwdriver"]}, +{"id":"27072","label":"showing that chalk piece is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["chalk piece","spectacle box"]}, +{"id":"218476","label":"approaching flower with your camera","template":"Approaching [something] with your camera","placeholders":["flower"]}, +{"id":"208894","label":"taking container","template":"Taking [one of many similar things on the table]","placeholders":["container"]}, +{"id":"112295","label":"putting belt into bowl","template":"Putting [something] into [something]","placeholders":["belt","bowl"]}, +{"id":"96898","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"153682","label":"pushing white book marker from right to left","template":"Pushing [something] from right to left","placeholders":["white book marker"]}, +{"id":"107878","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"182483","label":"pretending to sprinkle air onto a belt","template":"Pretending to sprinkle air onto [something]","placeholders":["a belt"]}, +{"id":"139307","label":"pretending to scoop cereal up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["cereal","spoon"]}, +{"id":"15725","label":"pretending to take post it's out of a metal box","template":"Pretending to take [something] out of [something]","placeholders":["post it's","a metal box"]}, +{"id":"36858","label":"spilling water onto orange","template":"Spilling [something] onto [something]","placeholders":["water","orange"]}, +{"id":"30133","label":"burying net in dustbin","template":"Burying [something] in [something]","placeholders":["net","dustbin"]}, +{"id":"153407","label":"squeezing paper","template":"Squeezing [something]","placeholders":["paper"]}, +{"id":"46363","label":"putting id card on a surface","template":"Putting [something] on a surface","placeholders":["id card"]}, +{"id":"43124","label":"rolling aerosol bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["aerosol bottle"]}, +{"id":"68388","label":"holding toy","template":"Holding [something]","placeholders":["toy"]}, +{"id":"211992","label":"dropping block onto table","template":"Dropping [something] onto [something]","placeholders":["block","table"]}, +{"id":"148556","label":"moving analogue stick of controller","template":"Moving [part] of [something]","placeholders":["analogue stick","controller"]}, +{"id":"210656","label":"moving a pencil away from a book","template":"Moving [something] away from [something]","placeholders":["a pencil","a book"]}, +{"id":"123891","label":"covering eye of stove with towel","template":"Covering [something] with [something]","placeholders":["eye of stove","towel"]}, +{"id":"3571","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"71348","label":"showing cable behind book","template":"Showing [something] behind [something]","placeholders":["cable","book"]}, +{"id":"205653","label":"putting toy in front of goggles","template":"Putting [something] in front of [something]","placeholders":["toy","goggles"]}, +{"id":"133223","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"104573","label":"holding an iphone 7","template":"Holding [something]","placeholders":["an iphone 7"]}, +{"id":"51335","label":"holding keys over a phone","template":"Holding [something] over [something]","placeholders":["keys","a phone"]}, +{"id":"19680","label":"putting red colour pen similar to other colour pens on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["red colour pen similar to other colour pens on the table"]}, +{"id":"63680","label":"putting pink water bottle on a surface","template":"Putting [something] on a surface","placeholders":["pink water bottle"]}, +{"id":"116311","label":"putting a pair of spectacles onto a dashboard","template":"Putting [something] onto [something]","placeholders":["a pair of spectacles","a dashboard"]}, +{"id":"126356","label":"plugging wire into power bank","template":"Plugging [something] into [something]","placeholders":["wire","power bank"]}, +{"id":"162007","label":"holding pen next to marker","template":"Holding [something] next to [something]","placeholders":["pen","marker"]}, +{"id":"195261","label":"moving plastic bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["plastic bottle"]}, +{"id":"4595","label":"showing that scissors is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["scissors","a jar"]}, +{"id":"106798","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"146965","label":"pushing candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["candle"]}, +{"id":"165861","label":"uncovering baby doll","template":"Uncovering [something]","placeholders":["baby doll"]}, +{"id":"188500","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"113826","label":"tearing paper sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper sheet"]}, +{"id":"172022","label":"taking rubber glow out of bowl","template":"Taking [something] out of [something]","placeholders":["rubber glow","bowl"]}, +{"id":"171710","label":"holding a letter opener","template":"Holding [something]","placeholders":["a letter opener"]}, +{"id":"73442","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"1042","label":"pretending to put a cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cup"]}, +{"id":"164609","label":"pushing plushie with charger","template":"Pushing [something] with [something]","placeholders":["plushie","charger"]}, +{"id":"56888","label":"turning the camera right while filming generator set","template":"Turning the camera right while filming [something]","placeholders":["generator set"]}, +{"id":"44578","label":"trying but failing to attach a different pen cap to a pen because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a different pen cap","a pen"]}, +{"id":"124401","label":"poking jar so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["jar"]}, +{"id":"125282","label":"putting a pen onto a book","template":"Putting [something] onto [something]","placeholders":["a pen","a book"]}, +{"id":"13716","label":"stacking 3 notebooks","template":"Stacking [number of] [something]","placeholders":["3","notebooks"]}, +{"id":"178987","label":"hitting block with spoon","template":"Hitting [something] with [something]","placeholders":["block","spoon"]}, +{"id":"182684","label":"tilting paper roll with plastic knife on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper roll","plastic knife"]}, +{"id":"195519","label":"putting rocks on a surface","template":"Putting [something] on a surface","placeholders":["rocks"]}, +{"id":"109191","label":"pretending to open juice carton without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["juice carton"]}, +{"id":"121967","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"190611","label":"pushing remote off of coaster","template":"Pushing [something] off of [something]","placeholders":["remote","coaster"]}, +{"id":"114204","label":"moving bolt away from the camera","template":"Moving [something] away from the camera","placeholders":["bolt"]}, +{"id":"122024","label":"showing that coin is inside purse","template":"Showing that [something] is inside [something]","placeholders":["coin","purse"]}, +{"id":"185287","label":"turning water bottle upside down","template":"Turning [something] upside down","placeholders":["water bottle"]}, +{"id":"168244","label":"twisting a cable","template":"Twisting [something]","placeholders":["a cable"]}, +{"id":"499","label":"holding umbrella in front of telivision","template":"Holding [something] in front of [something]","placeholders":["umbrella","telivision"]}, +{"id":"42272","label":"tearing a receipt into two pieces","template":"Tearing [something] into two pieces","placeholders":["a receipt"]}, +{"id":"115323","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"178364","label":"pushing a tape with a box","template":"Pushing [something] with [something]","placeholders":["a tape","a box"]}, +{"id":"145945","label":"pretending to pick a backpack up","template":"Pretending to pick [something] up","placeholders":["a backpack"]}, +{"id":"28005","label":"a wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["a wallet"]}, +{"id":"198200","label":"putting spoon into bowl","template":"Putting [something] into [something]","placeholders":["spoon","bowl"]}, +{"id":"91387","label":"lifting hammer with sponge on it","template":"Lifting [something] with [something] on it","placeholders":["hammer","sponge"]}, +{"id":"133407","label":"moving lid of rectangular box","template":"Moving [part] of [something]","placeholders":["lid","rectangular box"]}, +{"id":"148038","label":"tearing a newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a newspaper"]}, +{"id":"94525","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"142863","label":"pulling game console from behind of carry case","template":"Pulling [something] from behind of [something]","placeholders":["game console","carry case"]}, +{"id":"193480","label":"showing scotch tape to the camera","template":"Showing [something] to the camera","placeholders":["scotch tape"]}, +{"id":"135287","label":"letting pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil"]}, +{"id":"160229","label":"folding tea towel","template":"Folding [something]","placeholders":["tea towel"]}, +{"id":"63821","label":"holding remote control","template":"Holding [something]","placeholders":["remote control"]}, +{"id":"78455","label":"pushing orange notebook from right to left","template":"Pushing [something] from right to left","placeholders":["orange notebook"]}, +{"id":"79242","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"95143","label":"bending a chop stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a chop stick"]}, +{"id":"78438","label":"opening a pickle jar","template":"Opening [something]","placeholders":["a pickle jar"]}, +{"id":"109864","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"62253","label":"pretending to take pen out of drawer","template":"Pretending to take [something] out of [something]","placeholders":["pen","drawer"]}, +{"id":"196308","label":"moving book and book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","book"]}, +{"id":"6968","label":"moving green chalk towards the camera","template":"Moving [something] towards the camera","placeholders":["green chalk"]}, +{"id":"103392","label":"dropping a pencil into a box","template":"Dropping [something] into [something]","placeholders":["a pencil","a box"]}, +{"id":"85212","label":"moving star away from square","template":"Moving [something] away from [something]","placeholders":["star","square"]}, +{"id":"192909","label":"throwing a pen against a pack of tissue","template":"Throwing [something] against [something]","placeholders":["a pen","a pack of tissue"]}, +{"id":"219102","label":"pretending or failing to wipe dry erase marker off of a white board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dry erase marker","a white board"]}, +{"id":"12054","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"134888","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"65817","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"4522","label":"picking glasses up","template":"Picking [something] up","placeholders":["glasses"]}, +{"id":"86705","label":"lifting mouse mat with card on it","template":"Lifting [something] with [something] on it","placeholders":["mouse mat","card"]}, +{"id":"71226","label":"a note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a note"]}, +{"id":"15658","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"210603","label":"moving a box up","template":"Moving [something] up","placeholders":["a box"]}, +{"id":"152767","label":"moving cup and wallet so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["cup","wallet"]}, +{"id":"123289","label":"spilling oil onto sink","template":"Spilling [something] onto [something]","placeholders":["oil","sink"]}, +{"id":"136072","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"137261","label":"pulling two ends of small piece of paper but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["small piece of paper"]}, +{"id":"63839","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"34555","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"37619","label":"pushing a toy so it spins","template":"Pushing [something] so it spins","placeholders":["a toy"]}, +{"id":"113825","label":"putting something that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["something"]}, +{"id":"18645","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"157798","label":"putting perfume bottle behind hairclip","template":"Putting [something] behind [something]","placeholders":["perfume bottle","hairclip"]}, +{"id":"108412","label":"wristwatch falling like a rock","template":"[Something] falling like a rock","placeholders":["wristwatch"]}, +{"id":"18125","label":"turning the camera right while filming slippers","template":"Turning the camera right while filming [something]","placeholders":["slippers"]}, +{"id":"163859","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"190823","label":"lifting knife with bowl on it","template":"Lifting [something] with [something] on it","placeholders":["knife","bowl"]}, +{"id":"62220","label":"pretending to put scissors on a surface","template":"Pretending to put [something] on a surface","placeholders":["scissors"]}, +{"id":"159779","label":"showing a cup behind a coffee cup","template":"Showing [something] behind [something]","placeholders":["a cup","a coffee cup"]}, +{"id":"217906","label":"letting pencil roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pencil"]}, +{"id":"36871","label":"pulling a mouse from left to right","template":"Pulling [something] from left to right","placeholders":["a mouse"]}, +{"id":"178515","label":"opening a tupperware container","template":"Opening [something]","placeholders":["a tupperware container"]}, +{"id":"7037","label":"spinning paint bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint bottle"]}, +{"id":"62842","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"166678","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"214286","label":"showing a rock next to a snow globe","template":"Showing [something] next to [something]","placeholders":["a rock","a snow globe"]}, +{"id":"2277","label":"showing rubber duck next to cactus","template":"Showing [something] next to [something]","placeholders":["rubber duck","cactus"]}, +{"id":"21814","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"115324","label":"tilting book with rectangular box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","rectangular box"]}, +{"id":"175006","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"23728","label":"putting pebble on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["pebble"]}, +{"id":"64604","label":"poking tape so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tape"]}, +{"id":"69772","label":"holding bottle over bag","template":"Holding [something] over [something]","placeholders":["bottle","bag"]}, +{"id":"60125","label":"pushing a wallet from left to right","template":"Pushing [something] from left to right","placeholders":["a wallet"]}, +{"id":"80952","label":"holding lighter in front of mt. dew","template":"Holding [something] in front of [something]","placeholders":["lighter","mt. dew"]}, +{"id":"51138","label":"unfolding pillow case","template":"Unfolding [something]","placeholders":["pillow case"]}, +{"id":"100801","label":"squeezing a beanies babies","template":"Squeezing [something]","placeholders":["a beanies babies"]}, +{"id":"207877","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"179557","label":"attaching a pen cap to a pen","template":"Attaching [something] to [something]","placeholders":["a pen cap","a pen"]}, +{"id":"162605","label":"moving striker coin up","template":"Moving [something] up","placeholders":["striker coin"]}, +{"id":"24441","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"34097","label":"rolling air spray on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["air spray"]}, +{"id":"84417","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"24300","label":"covering tablet box with red pouch","template":"Covering [something] with [something]","placeholders":["tablet box","red pouch"]}, +{"id":"167361","label":"pushing can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["can"]}, +{"id":"59277","label":"touching (without moving) case of a mouse","template":"Touching (without moving) [part] of [something]","placeholders":["case","a mouse"]}, +{"id":"132691","label":"lifting paperboard with a wallet on it","template":"Lifting [something] with [something] on it","placeholders":["paperboard","a wallet"]}, +{"id":"206287","label":"trying but failing to attach tape roll to a refrigerator because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["tape roll","a refrigerator"]}, +{"id":"106999","label":"stuffing a wooden block into a soft lunchbox","template":"Stuffing [something] into [something]","placeholders":["a wooden block","a soft lunchbox"]}, +{"id":"144082","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"86300","label":"putting medicine bottle upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["medicine bottle"]}, +{"id":"218413","label":"pushing a container so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a container"]}, +{"id":"40281","label":"pretending to be tearing cable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cable"]}, +{"id":"203322","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"171520","label":"holding wallet behind notepad","template":"Holding [something] behind [something]","placeholders":["wallet","notepad"]}, +{"id":"197103","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185083","label":"pushing bottle cap from right to left","template":"Pushing [something] from right to left","placeholders":["bottle cap"]}, +{"id":"47038","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"48352","label":"moving a glass and a hair brush so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a glass","a hair brush"]}, +{"id":"172490","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"159217","label":"opening container","template":"Opening [something]","placeholders":["container"]}, +{"id":"22417","label":"covering marker with paper","template":"Covering [something] with [something]","placeholders":["marker","paper"]}, +{"id":"116638","label":"putting a charger onto a box","template":"Putting [something] onto [something]","placeholders":["a charger","a box"]}, +{"id":"165710","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"50793","label":"cookie mold falling like a rock","template":"[Something] falling like a rock","placeholders":["cookie mold"]}, +{"id":"3385","label":"dropping a ball into a mug","template":"Dropping [something] into [something]","placeholders":["a ball","a mug"]}, +{"id":"174448","label":"pretending to pick spoon up","template":"Pretending to pick [something] up","placeholders":["spoon"]}, +{"id":"11373","label":"holding cup over hand bag","template":"Holding [something] over [something]","placeholders":["cup","hand bag"]}, +{"id":"17518","label":"throwing paper against wall","template":"Throwing [something] against [something]","placeholders":["paper","wall"]}, +{"id":"179613","label":"pushing green toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["green toy car"]}, +{"id":"57315","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"214520","label":"putting necklace next to keyboard","template":"Putting [something] next to [something]","placeholders":["necklace","keyboard"]}, +{"id":"6460","label":"taking one coin of many similar coins on the table","template":"Taking [one of many similar things on the table]","placeholders":["one coin of many similar coins on the table"]}, +{"id":"103001","label":"pushing coaster with coaster","template":"Pushing [something] with [something]","placeholders":["coaster","coaster"]}, +{"id":"116880","label":"showing a stuffed dog on top of a kids couch","template":"Showing [something] on top of [something]","placeholders":["a stuffed dog","a kids couch"]}, +{"id":"218050","label":"folding one dollar bill","template":"Folding [something]","placeholders":["one dollar bill"]}, +{"id":"5730","label":"pushing a box with a pen","template":"Pushing [something] with [something]","placeholders":["a box","a pen"]}, +{"id":"71222","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"205253","label":"dropping a tube of toothpaste in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a tube of toothpaste","a toothbrush"]}, +{"id":"48744","label":"stuffing a towel into a pitcher","template":"Stuffing [something] into [something]","placeholders":["a towel","a pitcher"]}, +{"id":"53402","label":"putting shoe on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["shoe"]}, +{"id":"187311","label":"tilting iphone with sock on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["iphone","sock"]}, +{"id":"105509","label":"moving a box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a box"]}, +{"id":"7158","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"142617","label":"wiping leaves off of a table","template":"Wiping [something] off of [something]","placeholders":["leaves","a table"]}, +{"id":"139147","label":"pulling two ends of straw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["straw"]}, +{"id":"48714","label":"spinning football that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["football"]}, +{"id":"200378","label":"putting flashdrive next to container","template":"Putting [something] next to [something]","placeholders":["flashdrive","container"]}, +{"id":"85011","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"211138","label":"spinning rubber duck so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["rubber duck"]}, +{"id":"84327","label":"twisting pen","template":"Twisting [something]","placeholders":["pen"]}, +{"id":"1657","label":"turning the camera right while filming black remote","template":"Turning the camera right while filming [something]","placeholders":["black remote"]}, +{"id":"162068","label":"putting sponge upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["sponge"]}, +{"id":"182579","label":"pushing a chair with my hands","template":"Pushing [something] with [something]","placeholders":["a chair","my hands"]}, +{"id":"138709","label":"putting chip clip, chip clip and chocolate on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["chip clip","chip clip","chocolate"]}, +{"id":"117309","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"24327","label":"dropping torch in front of shoe","template":"Dropping [something] in front of [something]","placeholders":["torch","shoe"]}, +{"id":"165514","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"105094","label":"holding pentel pen over glue bottle","template":"Holding [something] over [something]","placeholders":["pentel pen","glue bottle"]}, +{"id":"193738","label":"pretending to take card from table","template":"Pretending to take [something] from [somewhere]","placeholders":["card","table"]}, +{"id":"210319","label":"moving music player up","template":"Moving [something] up","placeholders":["music player"]}, +{"id":"113913","label":"putting plastic twist tie","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic twist tie"]}, +{"id":"123684","label":"approaching sandals with your camera","template":"Approaching [something] with your camera","placeholders":["sandals"]}, +{"id":"109636","label":"pouring water out of a kettle","template":"Pouring [something] out of [something]","placeholders":["water","a kettle"]}, +{"id":"87386","label":"poking lipstick so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lipstick"]}, +{"id":"160955","label":"moving razor up","template":"Moving [something] up","placeholders":["razor"]}, +{"id":"85924","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"128347","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"210649","label":"putting brush in front of pen","template":"Putting [something] in front of [something]","placeholders":["brush","pen"]}, +{"id":"76829","label":"throwing ball against cupboard","template":"Throwing [something] against [something]","placeholders":["ball","cupboard"]}, +{"id":"20968","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"173576","label":"stacking 2 books on 3","template":"Stacking [number of] [something]","placeholders":["2","books on 3"]}, +{"id":"192585","label":"stuffing a tennis ball into its plastic box","template":"Stuffing [something] into [something]","placeholders":["a tennis ball","its plastic box"]}, +{"id":"13037","label":"moving lens closer to camera","template":"Moving [something] closer to [something]","placeholders":["lens","camera"]}, +{"id":"38331","label":"poking a hole into paper","template":"Poking a hole into [something soft]","placeholders":["paper"]}, +{"id":"47227","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"77332","label":"bending notebook so that it deforms","template":"Bending [something] so that it deforms","placeholders":["notebook"]}, +{"id":"138941","label":"showing bottle behind jar","template":"Showing [something] behind [something]","placeholders":["bottle","jar"]}, +{"id":"28237","label":"pulling two ends of hair tie so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["hair tie"]}, +{"id":"45172","label":"hitting teddy with remote control","template":"Hitting [something] with [something]","placeholders":["teddy","remote control"]}, +{"id":"62735","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"75866","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"97399","label":"taking a dolar bill out of a wallet","template":"Taking [something] out of [something]","placeholders":["a dolar bill","a wallet"]}, +{"id":"161099","label":"dropping headphones onto the floor","template":"Dropping [something] onto [something]","placeholders":["headphones","the floor"]}, +{"id":"51397","label":"throwing highlighter pen against board clip","template":"Throwing [something] against [something]","placeholders":["highlighter pen","board clip"]}, +{"id":"103982","label":"squeezing napkin","template":"Squeezing [something]","placeholders":["napkin"]}, +{"id":"149515","label":"putting paper, pen and rubber band on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["paper","pen","rubber band"]}, +{"id":"30520","label":"moving pen closer to holder","template":"Moving [something] closer to [something]","placeholders":["pen","holder"]}, +{"id":"150672","label":"pouring juice into a cup","template":"Pouring [something] into [something]","placeholders":["juice","a cup"]}, +{"id":"130132","label":"putting knife on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["knife"]}, +{"id":"80339","label":"taking toothbrush from bin","template":"Taking [something] from [somewhere]","placeholders":["toothbrush","bin"]}, +{"id":"41873","label":"pouring something into something","template":"Pouring [something] into [something]","placeholders":["something","something"]}, +{"id":"217205","label":"picking tomato up","template":"Picking [something] up","placeholders":["tomato"]}, +{"id":"132652","label":"pouring water onto a rag","template":"Pouring [something] onto [something]","placeholders":["water","a rag"]}, +{"id":"55484","label":"closing tin","template":"Closing [something]","placeholders":["tin"]}, +{"id":"147929","label":"moving block and toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["block","toy"]}, +{"id":"18445","label":"closing plastic box","template":"Closing [something]","placeholders":["plastic box"]}, +{"id":"210621","label":"stuffing sandwich into bag","template":"Stuffing [something] into [something]","placeholders":["sandwich","bag"]}, +{"id":"211903","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"102540","label":"stacking 3 blocks","template":"Stacking [number of] [something]","placeholders":["3","blocks"]}, +{"id":"14077","label":"dropping pen onto box","template":"Dropping [something] onto [something]","placeholders":["pen","box"]}, +{"id":"106833","label":"dropping a book behind a screen","template":"Dropping [something] behind [something]","placeholders":["a book","a screen"]}, +{"id":"62486","label":"taking matchstick","template":"Taking [one of many similar things on the table]","placeholders":["matchstick"]}, +{"id":"43695","label":"hitting a pillow with a book","template":"Hitting [something] with [something]","placeholders":["a pillow","a book"]}, +{"id":"19764","label":"turning the camera right while filming jeep","template":"Turning the camera right while filming [something]","placeholders":["jeep"]}, +{"id":"216218","label":"pretending to put soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["soap"]}, +{"id":"166056","label":"squeezing bag","template":"Squeezing [something]","placeholders":["bag"]}, +{"id":"176362","label":"pushing cable so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cable"]}, +{"id":"180485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"36824","label":"scooping water up with mug","template":"Scooping [something] up with [something]","placeholders":["water","mug"]}, +{"id":"187399","label":"spilling water onto a sink","template":"Spilling [something] onto [something]","placeholders":["water","a sink"]}, +{"id":"74525","label":"moving ball and ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ball","ball"]}, +{"id":"187928","label":"pouring coffee into a mug","template":"Pouring [something] into [something]","placeholders":["coffee","a mug"]}, +{"id":"214597","label":"covering cup with towel","template":"Covering [something] with [something]","placeholders":["cup","towel"]}, +{"id":"207835","label":"opening stove oven","template":"Opening [something]","placeholders":["stove oven"]}, +{"id":"112803","label":"pretending to open case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["case"]}, +{"id":"25574","label":"pencil sharpener falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil sharpener"]}, +{"id":"136817","label":"turning the camera downwards while filming toy idol","template":"Turning the camera downwards while filming [something]","placeholders":["toy idol"]}, +{"id":"37252","label":"spilling turmeric behind hot case","template":"Spilling [something] behind [something]","placeholders":["turmeric","hot case"]}, +{"id":"94982","label":"moving pencil down","template":"Moving [something] down","placeholders":["pencil"]}, +{"id":"10353","label":"dropping tube behind bed","template":"Dropping [something] behind [something]","placeholders":["tube","bed"]}, +{"id":"38642","label":"pulling stuffed toy out of cup","template":"Pulling [something] out of [something]","placeholders":["stuffed toy","cup"]}, +{"id":"21387","label":"throwing lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["lighter"]}, +{"id":"90320","label":"pushing a flower pot from right to left","template":"Pushing [something] from right to left","placeholders":["a flower pot"]}, +{"id":"16788","label":"rolling tumbler on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tumbler"]}, +{"id":"58832","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"38837","label":"showing fidget spinner behind bottle","template":"Showing [something] behind [something]","placeholders":["fidget spinner","bottle"]}, +{"id":"175920","label":"putting toy onto cup","template":"Putting [something] onto [something]","placeholders":["toy","cup"]}, +{"id":"211046","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"186512","label":"picking green toy car up","template":"Picking [something] up","placeholders":["green toy car"]}, +{"id":"99100","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"74268","label":"pushing blue colour bottle cap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["blue colour bottle cap"]}, +{"id":"87101","label":"moving a cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cup"]}, +{"id":"17494","label":"moving away from shampoo bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["shampoo bottle"]}, +{"id":"204742","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"20636","label":"tipping cotton rounds over","template":"Tipping [something] over","placeholders":["cotton rounds"]}, +{"id":"177478","label":"holding a bottle over a keyboard","template":"Holding [something] over [something]","placeholders":["a bottle","a keyboard"]}, +{"id":"174387","label":"poking a cup of soda so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup of soda"]}, +{"id":"67808","label":"turning the camera upwards while filming toothpaste tube","template":"Turning the camera upwards while filming [something]","placeholders":["toothpaste tube"]}, +{"id":"179265","label":"twisting t-shirt","template":"Twisting [something]","placeholders":["t-shirt"]}, +{"id":"61373","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"171592","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"95608","label":"pushing walnut so it spins","template":"Pushing [something] so it spins","placeholders":["walnut"]}, +{"id":"207966","label":"tearing card just a little bit","template":"Tearing [something] just a little bit","placeholders":["card"]}, +{"id":"122850","label":"pushing key so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["key"]}, +{"id":"83530","label":"pretending to put a plate underneath a plant","template":"Pretending to put [something] underneath [something]","placeholders":["a plate","a plant"]}, +{"id":"52869","label":"pushing glass bottle so it spins","template":"Pushing [something] so it spins","placeholders":["glass bottle"]}, +{"id":"93756","label":"plugging a plug into outlet","template":"Plugging [something] into [something]","placeholders":["a plug","outlet"]}, +{"id":"140432","label":"tilting a phone with a keyboard on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a phone","a keyboard"]}, +{"id":"129077","label":"pushing a shoe with a shoe","template":"Pushing [something] with [something]","placeholders":["a shoe","a shoe"]}, +{"id":"96938","label":"pretending to put a mouse on a surface","template":"Pretending to put [something] on a surface","placeholders":["a mouse"]}, +{"id":"113792","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"13704","label":"twisting a comb","template":"Twisting [something]","placeholders":["a comb"]}, +{"id":"19455","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"178859","label":"showing a photo of girl to the camera","template":"Showing a photo of [something] to the camera","placeholders":["girl"]}, +{"id":"207156","label":"hitting a book with a pen","template":"Hitting [something] with [something]","placeholders":["a book","a pen"]}, +{"id":"139074","label":"dropping cup into cup","template":"Dropping [something] into [something]","placeholders":["cup","cup"]}, +{"id":"64098","label":"tilting box with tub on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","tub"]}, +{"id":"195860","label":"a badminton bat colliding with another bat and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a badminton bat","another bat"]}, +{"id":"55292","label":"pretending to take glasses from lap","template":"Pretending to take [something] from [somewhere]","placeholders":["glasses","lap"]}, +{"id":"207436","label":"tearing leaflet just a little bit","template":"Tearing [something] just a little bit","placeholders":["leaflet"]}, +{"id":"62750","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"195332","label":"bending an envolope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an envolope"]}, +{"id":"207079","label":"holding torch in front of bottle","template":"Holding [something] in front of [something]","placeholders":["torch","bottle"]}, +{"id":"116747","label":"a tube falling like a rock","template":"[Something] falling like a rock","placeholders":["a tube"]}, +{"id":"218551","label":"rolling a plastic bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a plastic bottle"]}, +{"id":"167384","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"219937","label":"pouring boiling water into glass","template":"Pouring [something] into [something]","placeholders":["boiling water","glass"]}, +{"id":"174735","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"2571","label":"putting stamps, perfume and a pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["stamps","perfume","a pen"]}, +{"id":"144120","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"201638","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"150146","label":"stuffing napkin into mug","template":"Stuffing [something] into [something]","placeholders":["napkin","mug"]}, +{"id":"202252","label":"holding a shoe over the cylinder","template":"Holding [something] over [something]","placeholders":["a shoe","the cylinder"]}, +{"id":"132470","label":"poking laundry pods so that it falls over","template":"Poking [something] so that it falls over","placeholders":["laundry pods"]}, +{"id":"59063","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"104531","label":"hitting pencil with cup","template":"Hitting [something] with [something]","placeholders":["pencil","cup"]}, +{"id":"3881","label":"pouring coffee into cup","template":"Pouring [something] into [something]","placeholders":["coffee","cup"]}, +{"id":"118897","label":"putting a card upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a card"]}, +{"id":"9235","label":"turning the camera upwards while filming water bottle","template":"Turning the camera upwards while filming [something]","placeholders":["water bottle"]}, +{"id":"218310","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"133353","label":"pushing a bangle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bangle"]}, +{"id":"216242","label":"pretending to put iron roll on a surface","template":"Pretending to put [something] on a surface","placeholders":["iron roll"]}, +{"id":"45193","label":"taking book of other books","template":"Taking [one of many similar things on the table]","placeholders":["book of other books"]}, +{"id":"61754","label":"putting ball","template":"Putting [something similar to other things that are already on the table]","placeholders":["ball"]}, +{"id":"149740","label":"putting a little box next to the bread packet","template":"Putting [something] next to [something]","placeholders":["a little box","the bread packet"]}, +{"id":"102268","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"83569","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"32690","label":"dropping cufflinks onto an envelope","template":"Dropping [something] onto [something]","placeholders":["cufflinks","an envelope"]}, +{"id":"30427","label":"lifting a book with a wrist watch on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a wrist watch"]}, +{"id":"78690","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"156002","label":"squeezing lemon","template":"Squeezing [something]","placeholders":["lemon"]}, +{"id":"171933","label":"pulling vasmol bottle from right to left","template":"Pulling [something] from right to left","placeholders":["vasmol bottle"]}, +{"id":"43946","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"100174","label":"holding a cellphone over a box","template":"Holding [something] over [something]","placeholders":["a cellphone","a box"]}, +{"id":"41228","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"58146","label":"pouring water into copper pot","template":"Pouring [something] into [something]","placeholders":["water","copper pot"]}, +{"id":"91990","label":"dropping pencil into stool","template":"Dropping [something] into [something]","placeholders":["pencil","stool"]}, +{"id":"124693","label":"bending (opening) closed book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["(opening) closed book"]}, +{"id":"127394","label":"picking remote control up","template":"Picking [something] up","placeholders":["remote control"]}, +{"id":"123437","label":"spinning toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toy"]}, +{"id":"21181","label":"moving wristband down","template":"Moving [something] down","placeholders":["wristband"]}, +{"id":"37890","label":"tearing tearing a piece of paper just a little bit just a little bit","template":"Tearing [something] just a little bit","placeholders":["tearing a piece of paper just a little bit"]}, +{"id":"177702","label":"holding slipper in front of thermos","template":"Holding [something] in front of [something]","placeholders":["slipper","thermos"]}, +{"id":"70789","label":"holding a pillow over a dog","template":"Holding [something] over [something]","placeholders":["a pillow","a dog"]}, +{"id":"167706","label":"moving thread and cell phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["thread","cell phone"]}, +{"id":"144160","label":"moving belt up","template":"Moving [something] up","placeholders":["belt"]}, +{"id":"49772","label":"turning the camera upwards while filming usb","template":"Turning the camera upwards while filming [something]","placeholders":["usb"]}, +{"id":"46713","label":"pushing marker pen so it spins","template":"Pushing [something] so it spins","placeholders":["marker pen"]}, +{"id":"118439","label":"tearing a envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["a envelope"]}, +{"id":"15589","label":"closing white hand gel","template":"Closing [something]","placeholders":["white hand gel"]}, +{"id":"114686","label":"moving mp3 across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["mp3"]}, +{"id":"25335","label":"pulling a mug from left to right","template":"Pulling [something] from left to right","placeholders":["a mug"]}, +{"id":"199953","label":"pushing black hair tie from left to right","template":"Pushing [something] from left to right","placeholders":["black hair tie"]}, +{"id":"137843","label":"opening cabinet","template":"Opening [something]","placeholders":["cabinet"]}, +{"id":"186986","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"15402","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"59587","label":"stacking 3 blocks","template":"Stacking [number of] [something]","placeholders":["3","blocks"]}, +{"id":"191702","label":"removing mug, revealing clothes peg behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","clothes peg"]}, +{"id":"55356","label":"uncovering a case","template":"Uncovering [something]","placeholders":["a case"]}, +{"id":"83743","label":"throwing a pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pencil"]}, +{"id":"76962","label":"showing pencil box to the camera","template":"Showing [something] to the camera","placeholders":["pencil box"]}, +{"id":"117030","label":"covering box with cap","template":"Covering [something] with [something]","placeholders":["box","cap"]}, +{"id":"68006","label":"putting a beer can next to beer mug","template":"Putting [something] next to [something]","placeholders":["a beer can","beer mug"]}, +{"id":"135458","label":"showing a teaspoon behind a mug","template":"Showing [something] behind [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"780","label":"bending a lamp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a lamp"]}, +{"id":"169740","label":"letting plastic jar roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["plastic jar"]}, +{"id":"164001","label":"taking box from drawer","template":"Taking [something] from [somewhere]","placeholders":["box","drawer"]}, +{"id":"168475","label":"tilting tv remote with ninja turtle toy on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tv remote","ninja turtle toy"]}, +{"id":"96723","label":"squeezing a toilet roll","template":"Squeezing [something]","placeholders":["a toilet roll"]}, +{"id":"215403","label":"twisting a washcloth","template":"Twisting [something]","placeholders":["a washcloth"]}, +{"id":"189474","label":"pretending to put a plant onto a book","template":"Pretending to put [something] onto [something]","placeholders":["a plant","a book"]}, +{"id":"157213","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"48290","label":"pouring water into a mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a mug"]}, +{"id":"64058","label":"pushing a clip so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a clip"]}, +{"id":"137363","label":"trying but failing to attach a sticky note to paper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticky note","paper"]}, +{"id":"203770","label":"covering striker coin with blue spectacle box","template":"Covering [something] with [something]","placeholders":["striker coin","blue spectacle box"]}, +{"id":"44815","label":"putting bottle onto table","template":"Putting [something] onto [something]","placeholders":["bottle","table"]}, +{"id":"43779","label":"rolling cylindrical box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cylindrical box"]}, +{"id":"127151","label":"moving bailer up","template":"Moving [something] up","placeholders":["bailer"]}, +{"id":"204628","label":"picking a ribbon up","template":"Picking [something] up","placeholders":["a ribbon"]}, +{"id":"174913","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"10711","label":"pretending to poke a chess piece","template":"Pretending to poke [something]","placeholders":["a chess piece"]}, +{"id":"94935","label":"moving paper and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper","paper"]}, +{"id":"219858","label":"stuffing nail clipper into rack","template":"Stuffing [something] into [something]","placeholders":["nail clipper","rack"]}, +{"id":"16445","label":"approaching stone with your camera","template":"Approaching [something] with your camera","placeholders":["stone"]}, +{"id":"106337","label":"putting sugar into a cup","template":"Putting [something] into [something]","placeholders":["sugar","a cup"]}, +{"id":"65607","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"157238","label":"removing a jbl, revealing a card behind","template":"Removing [something], revealing [something] behind","placeholders":["a jbl","a card"]}, +{"id":"48360","label":"moving the remote closer to the mouse","template":"Moving [something] closer to [something]","placeholders":["the remote","the mouse"]}, +{"id":"141975","label":"pushing controller so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["controller"]}, +{"id":"186054","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"50461","label":"squeezing can","template":"Squeezing [something]","placeholders":["can"]}, +{"id":"161008","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"193937","label":"putting battery into box","template":"Putting [something] into [something]","placeholders":["battery","box"]}, +{"id":"182296","label":"turning the camera right while filming small bottle","template":"Turning the camera right while filming [something]","placeholders":["small bottle"]}, +{"id":"218449","label":"pushing towel so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towel"]}, +{"id":"171983","label":"bending can so that it deforms","template":"Bending [something] so that it deforms","placeholders":["can"]}, +{"id":"47392","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"163401","label":"pouring pasta into trophy","template":"Pouring [something] into [something]","placeholders":["pasta","trophy"]}, +{"id":"201155","label":"holding toilet paper behind fragrant perfumes","template":"Holding [something] behind [something]","placeholders":["toilet paper","fragrant perfumes"]}, +{"id":"191064","label":"pretending to squeeze a remote","template":"Pretending to squeeze [something]","placeholders":["a remote"]}, +{"id":"39249","label":"covering a coaster with paper","template":"Covering [something] with [something]","placeholders":["a coaster","paper"]}, +{"id":"43631","label":"pushing eggs so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["eggs"]}, +{"id":"126650","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"58664","label":"tipping a coffee cup over","template":"Tipping [something] over","placeholders":["a coffee cup"]}, +{"id":"193791","label":"piling chocolate up","template":"Piling [something] up","placeholders":["chocolate"]}, +{"id":"104269","label":"pretending or failing to wipe nail paint off of furniture","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["nail paint","furniture"]}, +{"id":"19730","label":"putting sharpener underneath calculator","template":"Putting [something] underneath [something]","placeholders":["sharpener","calculator"]}, +{"id":"109335","label":"spinning a battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a battery"]}, +{"id":"179655","label":"pretending to put box onto drawer","template":"Pretending to put [something] onto [something]","placeholders":["box","drawer"]}, +{"id":"193177","label":"plugging usb stick into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb stick","laptop"]}, +{"id":"92505","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"205491","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"88560","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"36900","label":"putting book upright on the table","template":"Putting [something] upright on the table","placeholders":["book"]}, +{"id":"68841","label":"closing a folder","template":"Closing [something]","placeholders":["a folder"]}, +{"id":"166093","label":"poking something so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["something"]}, +{"id":"22518","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"31850","label":"paper sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper sheet"]}, +{"id":"30393","label":"dropping a matchbox next to a peg","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a peg"]}, +{"id":"77165","label":"throwing flipflop against the wall","template":"Throwing [something] against [something]","placeholders":["flipflop","the wall"]}, +{"id":"120731","label":"throwing cloth against floor","template":"Throwing [something] against [something]","placeholders":["cloth","floor"]}, +{"id":"86780","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"83167","label":"moving a toy mouse and block away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a toy mouse","block"]}, +{"id":"203468","label":"throwing a book","template":"Throwing [something]","placeholders":["a book"]}, +{"id":"48119","label":"showing bike to the camera","template":"Showing [something] to the camera","placeholders":["bike"]}, +{"id":"1286","label":"tearing napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["napkin"]}, +{"id":"94105","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"127033","label":"taking a spatula out of a drawer","template":"Taking [something] out of [something]","placeholders":["a spatula","a drawer"]}, +{"id":"100917","label":"pushing a staff toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a staff toy"]}, +{"id":"56901","label":"stuffing a sock into a show","template":"Stuffing [something] into [something]","placeholders":["a sock","a show"]}, +{"id":"26925","label":"turning the camera right while filming brown case","template":"Turning the camera right while filming [something]","placeholders":["brown case"]}, +{"id":"58205","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"211294","label":"dropping carton box onto plastic-container","template":"Dropping [something] onto [something]","placeholders":["carton box","plastic-container"]}, +{"id":"156718","label":"moving marker and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["marker","marker"]}, +{"id":"220337","label":"moving a comb away from the camera","template":"Moving [something] away from the camera","placeholders":["a comb"]}, +{"id":"41499","label":"turning wrist watch upside down","template":"Turning [something] upside down","placeholders":["wrist watch"]}, +{"id":"86175","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"135258","label":"poking a figurine so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a figurine"]}, +{"id":"125294","label":"pretending to take orange out of bag","template":"Pretending to take [something] out of [something]","placeholders":["orange","bag"]}, +{"id":"10916","label":"twisting purse","template":"Twisting [something]","placeholders":["purse"]}, +{"id":"158554","label":"turning the camera left while filming ball","template":"Turning the camera left while filming [something]","placeholders":["ball"]}, +{"id":"60753","label":"pretending to put weight next to cup","template":"Pretending to put [something] next to [something]","placeholders":["weight","cup"]}, +{"id":"168672","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"154377","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"100085","label":"dropping envelope next to hat","template":"Dropping [something] next to [something]","placeholders":["envelope","hat"]}, +{"id":"104313","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"8187","label":"holding spoon over tablet","template":"Holding [something] over [something]","placeholders":["spoon","tablet"]}, +{"id":"12027","label":"moving candlestick away from candlestick","template":"Moving [something] away from [something]","placeholders":["candlestick","candlestick"]}, +{"id":"21773","label":"putting egg on a surface","template":"Putting [something] on a surface","placeholders":["egg"]}, +{"id":"25352","label":"throwing basket","template":"Throwing [something]","placeholders":["basket"]}, +{"id":"44938","label":"uncovering cookies box","template":"Uncovering [something]","placeholders":["cookies box"]}, +{"id":"169189","label":"moving white colour marker pen up","template":"Moving [something] up","placeholders":["white colour marker pen"]}, +{"id":"38281","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"48944","label":"putting face wash upright on the table","template":"Putting [something] upright on the table","placeholders":["face wash"]}, +{"id":"140171","label":"picking wallet up","template":"Picking [something] up","placeholders":["wallet"]}, +{"id":"58714","label":"showing that soda bottle is empty","template":"Showing that [something] is empty","placeholders":["soda bottle"]}, +{"id":"150756","label":"unfolding a placemat","template":"Unfolding [something]","placeholders":["a placemat"]}, +{"id":"124985","label":"spinning banana that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["banana"]}, +{"id":"40726","label":"plugging charging cable into cell phone","template":"Plugging [something] into [something]","placeholders":["charging cable","cell phone"]}, +{"id":"195308","label":"plugging inlet into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["inlet","outlet"]}, +{"id":"89759","label":"pretending or failing to wipe strawberry off of highchair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["strawberry","highchair"]}, +{"id":"1234","label":"pulling two ends of a sock so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a sock"]}, +{"id":"93809","label":"turning the camera left while filming baby diaper","template":"Turning the camera left while filming [something]","placeholders":["baby diaper"]}, +{"id":"55232","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"128055","label":"putting limon into jar","template":"Putting [something] into [something]","placeholders":["limon","jar"]}, +{"id":"134413","label":"covering scissors with tissue","template":"Covering [something] with [something]","placeholders":["scissors","tissue"]}, +{"id":"5822","label":"putting sunglasses into a bag","template":"Putting [something] into [something]","placeholders":["sunglasses","a bag"]}, +{"id":"136480","label":"uncovering dice","template":"Uncovering [something]","placeholders":["dice"]}, +{"id":"211356","label":"picking keys up","template":"Picking [something] up","placeholders":["keys"]}, +{"id":"122022","label":"putting pen onto binder","template":"Putting [something] onto [something]","placeholders":["pen","binder"]}, +{"id":"123131","label":"taking remote","template":"Taking [one of many similar things on the table]","placeholders":["remote"]}, +{"id":"95946","label":"pushing a basket with a chair","template":"Pushing [something] with [something]","placeholders":["a basket","a chair"]}, +{"id":"109005","label":"pretending to close something without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["something"]}, +{"id":"194537","label":"attaching mobile charger to plug socket","template":"Attaching [something] to [something]","placeholders":["mobile charger","plug socket"]}, +{"id":"188056","label":"putting glass bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["glass bottle"]}, +{"id":"213838","label":"putting car, small tin and baloon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["car","small tin","baloon"]}, +{"id":"118981","label":"pushing wood so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wood"]}, +{"id":"163792","label":"pushing plastic bottle from right to left","template":"Pushing [something] from right to left","placeholders":["plastic bottle"]}, +{"id":"125394","label":"putting container","template":"Putting [something similar to other things that are already on the table]","placeholders":["container"]}, +{"id":"11080","label":"scooping rice up with a measuring cup","template":"Scooping [something] up with [something]","placeholders":["rice","a measuring cup"]}, +{"id":"218511","label":"putting a folder on a surface","template":"Putting [something] on a surface","placeholders":["a folder"]}, +{"id":"114334","label":"putting onion into bowl","template":"Putting [something] into [something]","placeholders":["onion","bowl"]}, +{"id":"107715","label":"turning the camera right while filming kitchen platform","template":"Turning the camera right while filming [something]","placeholders":["kitchen platform"]}, +{"id":"95217","label":"spinning ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ball"]}, +{"id":"80502","label":"moving comb away from basket","template":"Moving [something] away from [something]","placeholders":["comb","basket"]}, +{"id":"49434","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"178198","label":"pretending to be tearing phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["phone"]}, +{"id":"115452","label":"attaching a clip to a bag of sugar","template":"Attaching [something] to [something]","placeholders":["a clip","a bag of sugar"]}, +{"id":"199272","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"175848","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"135422","label":"pretending to be tearing nylon-bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["nylon-bag"]}, +{"id":"72134","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"206449","label":"tilting water bottle with plastic knife on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["water bottle","plastic knife"]}, +{"id":"97360","label":"tearing flower just a little bit","template":"Tearing [something] just a little bit","placeholders":["flower"]}, +{"id":"5423","label":"pushing a marker pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a marker pen"]}, +{"id":"96542","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"142794","label":"showing that holder is empty","template":"Showing that [something] is empty","placeholders":["holder"]}, +{"id":"161889","label":"holding paper towel behind ipad","template":"Holding [something] behind [something]","placeholders":["paper towel","ipad"]}, +{"id":"23132","label":"pushing smarthphone with book","template":"Pushing [something] with [something]","placeholders":["smarthphone","book"]}, +{"id":"73968","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"143969","label":"opening red dairy","template":"Opening [something]","placeholders":["red dairy"]}, +{"id":"169669","label":"spinning cd cover that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cd cover"]}, +{"id":"107759","label":"throwing a cube in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a cube"]}, +{"id":"190339","label":"bending a shoe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a shoe"]}, +{"id":"61114","label":"putting bag upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["bag"]}, +{"id":"131612","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"4937","label":"pretending to pick cofee jar up","template":"Pretending to pick [something] up","placeholders":["cofee jar"]}, +{"id":"94754","label":"closing dishwasher","template":"Closing [something]","placeholders":["dishwasher"]}, +{"id":"54431","label":"turning the camera upwards while filming elephant statue","template":"Turning the camera upwards while filming [something]","placeholders":["elephant statue"]}, +{"id":"32313","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"15281","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"115429","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"8233","label":"lifting white board with binoculars on it","template":"Lifting [something] with [something] on it","placeholders":["white board","binoculars"]}, +{"id":"48636","label":"letting football roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["football"]}, +{"id":"209940","label":"spilling water next to a pen","template":"Spilling [something] next to [something]","placeholders":["water","a pen"]}, +{"id":"190717","label":"throwing candy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["candy"]}, +{"id":"116685","label":"hitting paper punch with a scissor","template":"Hitting [something] with [something]","placeholders":["paper punch","a scissor"]}, +{"id":"162644","label":"twisting (wringing) something wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["something"]}, +{"id":"113316","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"209678","label":"turning the camera downwards while filming lighter","template":"Turning the camera downwards while filming [something]","placeholders":["lighter"]}, +{"id":"20800","label":"closing almara","template":"Closing [something]","placeholders":["almara"]}, +{"id":"216152","label":"pushing screwdriver so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["screwdriver"]}, +{"id":"134287","label":"pretending to take a folder from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["a folder","shelf"]}, +{"id":"11281","label":"spinning transparent plastic bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["transparent plastic bottle"]}, +{"id":"35824","label":"plugging a cable into a phone","template":"Plugging [something] into [something]","placeholders":["a cable","a phone"]}, +{"id":"91096","label":"closing hand cream tube","template":"Closing [something]","placeholders":["hand cream tube"]}, +{"id":"204176","label":"plastic casing colliding with plastic cover and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["plastic casing","plastic cover"]}, +{"id":"89034","label":"laying box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["box"]}, +{"id":"101669","label":"dropping grape into glass","template":"Dropping [something] into [something]","placeholders":["grape","glass"]}, +{"id":"156825","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"132699","label":"moving away from computer screen with your camera","template":"Moving away from [something] with your camera","placeholders":["computer screen"]}, +{"id":"200763","label":"moving eraser and usb cable away from each other","template":"Moving [something] and [something] away from each other","placeholders":["eraser","usb cable"]}, +{"id":"208509","label":"stuffing tissue paper into paper bag","template":"Stuffing [something] into [something]","placeholders":["tissue paper","paper bag"]}, +{"id":"153559","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"134085","label":"moving small stone and large stone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["small stone","large stone"]}, +{"id":"187359","label":"putting pennies on table","template":"Putting [something similar to other things that are already on the table]","placeholders":["pennies on table"]}, +{"id":"215072","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"39852","label":"dropping a box in front of a comb","template":"Dropping [something] in front of [something]","placeholders":["a box","a comb"]}, +{"id":"143821","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"105544","label":"lifting a surface with a banana on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a banana"]}, +{"id":"218487","label":"pushing candle with figurine","template":"Pushing [something] with [something]","placeholders":["candle","figurine"]}, +{"id":"14293","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"218162","label":"touching (without moving) wheat of plate wheat","template":"Touching (without moving) [part] of [something]","placeholders":["wheat","plate wheat"]}, +{"id":"49823","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"137318","label":"covering headphones with sheet","template":"Covering [something] with [something]","placeholders":["headphones","sheet"]}, +{"id":"30387","label":"throwing the hair clip","template":"Throwing [something]","placeholders":["the hair clip"]}, +{"id":"145254","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"166796","label":"pushing a felt tip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a felt tip"]}, +{"id":"188044","label":"spinning a carrom coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a carrom coin"]}, +{"id":"8845","label":"putting white badge that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["white badge"]}, +{"id":"51630","label":"lifting glass with spoon on it","template":"Lifting [something] with [something] on it","placeholders":["glass","spoon"]}, +{"id":"186413","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"56771","label":"putting pen, pen and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","pen","pen"]}, +{"id":"116401","label":"putting teabag into cup","template":"Putting [something] into [something]","placeholders":["teabag","cup"]}, +{"id":"182258","label":"taking comb from window sill","template":"Taking [something] from [somewhere]","placeholders":["comb","window sill"]}, +{"id":"175921","label":"showing that water is inside tank","template":"Showing that [something] is inside [something]","placeholders":["water","tank"]}, +{"id":"157721","label":"block being deflected from chair","template":"[Something] being deflected from [something]","placeholders":["block","chair"]}, +{"id":"206242","label":"poking an apple so that it falls over","template":"Poking [something] so that it falls over","placeholders":["an apple"]}, +{"id":"83120","label":"taking pod out of box","template":"Taking [something] out of [something]","placeholders":["pod","box"]}, +{"id":"140970","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"188339","label":"opening card folder","template":"Opening [something]","placeholders":["card folder"]}, +{"id":"76344","label":"plugging charger into power board but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","power board"]}, +{"id":"86313","label":"moving roll plaster up","template":"Moving [something] up","placeholders":["roll plaster"]}, +{"id":"28956","label":"battery falling like a rock","template":"[Something] falling like a rock","placeholders":["battery"]}, +{"id":"146294","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"195827","label":"holding brush over box","template":"Holding [something] over [something]","placeholders":["brush","box"]}, +{"id":"125012","label":"pushing cooking utensil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cooking utensil"]}, +{"id":"66647","label":"pushing a chair so it spins","template":"Pushing [something] so it spins","placeholders":["a chair"]}, +{"id":"4941","label":"putting tennis ball behind cd stack","template":"Putting [something] behind [something]","placeholders":["tennis ball","cd stack"]}, +{"id":"53227","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"129897","label":"putting package on a surface","template":"Putting [something] on a surface","placeholders":["package"]}, +{"id":"80533","label":"closing small box","template":"Closing [something]","placeholders":["small box"]}, +{"id":"202213","label":"poking toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["toy"]}, +{"id":"199173","label":"putting a bottle of water on a surface","template":"Putting [something] on a surface","placeholders":["a bottle of water"]}, +{"id":"65274","label":"putting 2 spanners onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["2","spanners","diary"]}, +{"id":"25340","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"170631","label":"taking a mug out of a sink","template":"Taking [something] out of [something]","placeholders":["a mug","a sink"]}, +{"id":"116292","label":"pretending to pour water out of a cup, but the cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","the cup"]}, +{"id":"58144","label":"putting a straw into a cup","template":"Putting [something] into [something]","placeholders":["a straw","a cup"]}, +{"id":"148408","label":"pulling two ends of comb but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["comb"]}, +{"id":"31317","label":"poking a glass so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a glass"]}, +{"id":"42383","label":"letting cylinder roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cylinder"]}, +{"id":"75344","label":"showing book behind towel","template":"Showing [something] behind [something]","placeholders":["book","towel"]}, +{"id":"175678","label":"dropping wallet in front of couch","template":"Dropping [something] in front of [something]","placeholders":["wallet","couch"]}, +{"id":"212276","label":"covering tablet with paper","template":"Covering [something] with [something]","placeholders":["tablet","paper"]}, +{"id":"159276","label":"charger falling like a rock","template":"[Something] falling like a rock","placeholders":["charger"]}, +{"id":"118689","label":"putting a camera lens upright on the table","template":"Putting [something] upright on the table","placeholders":["a camera lens"]}, +{"id":"17380","label":"holding bottle in front of kendama","template":"Holding [something] in front of [something]","placeholders":["bottle","kendama"]}, +{"id":"95424","label":"folding plastic","template":"Folding [something]","placeholders":["plastic"]}, +{"id":"165434","label":"approaching a puzzle cube with your camera","template":"Approaching [something] with your camera","placeholders":["a puzzle cube"]}, +{"id":"133644","label":"stuffing box into christmas stocking","template":"Stuffing [something] into [something]","placeholders":["box","christmas stocking"]}, +{"id":"89566","label":"pushing a cork light so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a cork light"]}, +{"id":"198536","label":"pouring water into can","template":"Pouring [something] into [something]","placeholders":["water","can"]}, +{"id":"156853","label":"taking eyeglasses out of eyeglass case","template":"Taking [something] out of [something]","placeholders":["eyeglasses","eyeglass case"]}, +{"id":"97810","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"85344","label":"paperroll colliding with paperroll and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["paperroll","paperroll"]}, +{"id":"205245","label":"throwing a coin","template":"Throwing [something]","placeholders":["a coin"]}, +{"id":"67822","label":"turning the camera downwards while filming swiffer sweeper","template":"Turning the camera downwards while filming [something]","placeholders":["swiffer sweeper"]}, +{"id":"204864","label":"turning the camera right while filming person","template":"Turning the camera right while filming [something]","placeholders":["person"]}, +{"id":"175277","label":"rolling an apple on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an apple"]}, +{"id":"198712","label":"putting glass and highlighter on the table","template":"Putting [something] and [something] on the table","placeholders":["glass","highlighter"]}, +{"id":"35432","label":"turning the camera upwards while filming earphone","template":"Turning the camera upwards while filming [something]","placeholders":["earphone"]}, +{"id":"170820","label":"bending lamp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["lamp"]}, +{"id":"129736","label":"putting shoulder straps","template":"Putting [something similar to other things that are already on the table]","placeholders":["shoulder straps"]}, +{"id":"10869","label":"moving scissor closer to pick","template":"Moving [something] closer to [something]","placeholders":["scissor","pick"]}, +{"id":"7519","label":"putting a remote upright on the table","template":"Putting [something] upright on the table","placeholders":["a remote"]}, +{"id":"106070","label":"pulling plug out of socket","template":"Pulling [something] out of [something]","placeholders":["plug","socket"]}, +{"id":"59598","label":"putting wallet in front of comb","template":"Putting [something] in front of [something]","placeholders":["wallet","comb"]}, +{"id":"12560","label":"folding scarf","template":"Folding [something]","placeholders":["scarf"]}, +{"id":"144885","label":"putting fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork"]}, +{"id":"129678","label":"moving towel closer to towel","template":"Moving [something] closer to [something]","placeholders":["towel","towel"]}, +{"id":"110353","label":"lifting a surface with highlighter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["highlighter"]}, +{"id":"50260","label":"putting lipstick upright on the table","template":"Putting [something] upright on the table","placeholders":["lipstick"]}, +{"id":"158988","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"190976","label":"pushing remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote control"]}, +{"id":"154609","label":"pushing a pencil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pencil"]}, +{"id":"210566","label":"green chalk falling like a rock","template":"[Something] falling like a rock","placeholders":["green chalk"]}, +{"id":"136214","label":"putting a candle next to plantpot","template":"Putting [something] next to [something]","placeholders":["a candle","plantpot"]}, +{"id":"62085","label":"moving a matchbox closer to a plate","template":"Moving [something] closer to [something]","placeholders":["a matchbox","a plate"]}, +{"id":"208588","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"205364","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"123799","label":"covering keys with cushion","template":"Covering [something] with [something]","placeholders":["keys","cushion"]}, +{"id":"81915","label":"pushing knife from right to left","template":"Pushing [something] from right to left","placeholders":["knife"]}, +{"id":"177468","label":"pretending to put a box underneath a hat","template":"Pretending to put [something] underneath [something]","placeholders":["a box","a hat"]}, +{"id":"14408","label":"turning small fresh mint upside down","template":"Turning [something] upside down","placeholders":["small fresh mint"]}, +{"id":"199081","label":"twisting polythene bag","template":"Twisting [something]","placeholders":["polythene bag"]}, +{"id":"20708","label":"moving wooden puppet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["wooden puppet"]}, +{"id":"137353","label":"moving hair down","template":"Moving [something] down","placeholders":["hair"]}, +{"id":"160234","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"29156","label":"throwing lime against wall","template":"Throwing [something] against [something]","placeholders":["lime","wall"]}, +{"id":"182036","label":"pretending to throw a toy","template":"Pretending to throw [something]","placeholders":["a toy"]}, +{"id":"9450","label":"moving a pillow and another pillow so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pillow","another pillow"]}, +{"id":"19546","label":"moving a coin and another coin closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a coin","another coin"]}, +{"id":"198667","label":"pulling book out of plastic bag","template":"Pulling [something] out of [something]","placeholders":["book","plastic bag"]}, +{"id":"44173","label":"holding sock behind small pillow","template":"Holding [something] behind [something]","placeholders":["sock","small pillow"]}, +{"id":"115382","label":"opening sunglasses case","template":"Opening [something]","placeholders":["sunglasses case"]}, +{"id":"143007","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"72653","label":"lifting wallet with tac case on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","tac case"]}, +{"id":"196760","label":"putting a cylinder on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a cylinder"]}, +{"id":"53504","label":"poking bracelet so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bracelet"]}, +{"id":"209912","label":"dropping a box next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a box","a spoon"]}, +{"id":"53182","label":"squeezing plastic bag with contents inside","template":"Squeezing [something]","placeholders":["plastic bag with contents inside"]}, +{"id":"153754","label":"stacking 3 remotes","template":"Stacking [number of] [something]","placeholders":["3","remotes"]}, +{"id":"15754","label":"covering pen with book","template":"Covering [something] with [something]","placeholders":["pen","book"]}, +{"id":"44380","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"58273","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"127768","label":"trying to bend straw so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["straw"]}, +{"id":"81065","label":"removing a glue, revealing a container behind","template":"Removing [something], revealing [something] behind","placeholders":["a glue","a container"]}, +{"id":"81154","label":"moving pincer up","template":"Moving [something] up","placeholders":["pincer"]}, +{"id":"112155","label":"pulling two ends of a tissu so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a tissu"]}, +{"id":"123010","label":"moving jar away from jar","template":"Moving [something] away from [something]","placeholders":["jar","jar"]}, +{"id":"180475","label":"closing diary","template":"Closing [something]","placeholders":["diary"]}, +{"id":"153451","label":"poking purse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["purse"]}, +{"id":"124133","label":"remote falling like a rock","template":"[Something] falling like a rock","placeholders":["remote"]}, +{"id":"55151","label":"pushing a box so it spins","template":"Pushing [something] so it spins","placeholders":["a box"]}, +{"id":"70642","label":"picking dvd case up","template":"Picking [something] up","placeholders":["dvd case"]}, +{"id":"211509","label":"pretending to pick pink toothbrush case up","template":"Pretending to pick [something] up","placeholders":["pink toothbrush case"]}, +{"id":"39346","label":"showing can behind box","template":"Showing [something] behind [something]","placeholders":["can","box"]}, +{"id":"215794","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"179427","label":"taking a pill","template":"Taking [one of many similar things on the table]","placeholders":["a pill"]}, +{"id":"127607","label":"throwing shoe polish container in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["shoe polish container"]}, +{"id":"157285","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"70533","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"470","label":"plugging a plug into a power converter but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a power converter"]}, +{"id":"114099","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"184515","label":"pretending to pick banana up","template":"Pretending to pick [something] up","placeholders":["banana"]}, +{"id":"181572","label":"moving a phone handset away from a ring with keys","template":"Moving [something] away from [something]","placeholders":["a phone handset","a ring with keys"]}, +{"id":"148866","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"32321","label":"approaching pebble with your camera","template":"Approaching [something] with your camera","placeholders":["pebble"]}, +{"id":"212626","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"199466","label":"failing to put a candle into a cutp because the candle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a candle","a cutp","the candle"]}, +{"id":"33924","label":"moving yellow colour pen up","template":"Moving [something] up","placeholders":["yellow colour pen"]}, +{"id":"190031","label":"throwing a pillow onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pillow"]}, +{"id":"15313","label":"taking a spice out of spices","template":"Taking [one of many similar things on the table]","placeholders":["a spice out of spices"]}, +{"id":"213863","label":"showing a pen behind a charger","template":"Showing [something] behind [something]","placeholders":["a pen","a charger"]}, +{"id":"103095","label":"pulling mouse from behind of book","template":"Pulling [something] from behind of [something]","placeholders":["mouse","book"]}, +{"id":"41598","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"218878","label":"holding bottle next to monitor screen","template":"Holding [something] next to [something]","placeholders":["bottle","monitor screen"]}, +{"id":"168003","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"58849","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"125318","label":"holding banana over vase","template":"Holding [something] over [something]","placeholders":["banana","vase"]}, +{"id":"112509","label":"putting cereal box on a surface","template":"Putting [something] on a surface","placeholders":["cereal box"]}, +{"id":"98136","label":"pretending to open a water botle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a water botle"]}, +{"id":"103345","label":"putting shampoo bottle into hole","template":"Putting [something] into [something]","placeholders":["shampoo bottle","hole"]}, +{"id":"167306","label":"putting clip, jar and toy on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["clip","jar","toy"]}, +{"id":"122780","label":"pretending to put sunglasses into box","template":"Pretending to put [something] into [something]","placeholders":["sunglasses","box"]}, +{"id":"25231","label":"tilting book with cable holder on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","cable holder"]}, +{"id":"32762","label":"pretending to open refridgerator without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["refridgerator"]}, +{"id":"188576","label":"turning peanut butter upside down","template":"Turning [something] upside down","placeholders":["peanut butter"]}, +{"id":"182869","label":"letting grape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["grape"]}, +{"id":"117272","label":"covering a clip with a lid","template":"Covering [something] with [something]","placeholders":["a clip","a lid"]}, +{"id":"30392","label":"lifting mouse with pen on it","template":"Lifting [something] with [something] on it","placeholders":["mouse","pen"]}, +{"id":"177095","label":"trying to bend a bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a bottle"]}, +{"id":"188525","label":"uncovering sunglasses","template":"Uncovering [something]","placeholders":["sunglasses"]}, +{"id":"34647","label":"pretending to take silver plate out of sugar bottle","template":"Pretending to take [something] out of [something]","placeholders":["silver plate","sugar bottle"]}, +{"id":"207188","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"8007","label":"putting stapler into mug","template":"Putting [something] into [something]","placeholders":["stapler","mug"]}, +{"id":"123034","label":"putting spoon onto box so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["spoon","box"]}, +{"id":"109310","label":"lifting envelope with pen on it","template":"Lifting [something] with [something] on it","placeholders":["envelope","pen"]}, +{"id":"53765","label":"turning the camera left while filming cigarette lighter","template":"Turning the camera left while filming [something]","placeholders":["cigarette lighter"]}, +{"id":"4970","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"110988","label":"turning a coffee carafe upside down","template":"Turning [something] upside down","placeholders":["a coffee carafe"]}, +{"id":"165287","label":"moving a battery closer to a lighter","template":"Moving [something] closer to [something]","placeholders":["a battery","a lighter"]}, +{"id":"85395","label":"tilting book with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","box"]}, +{"id":"89503","label":"putting a bobby pin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bobby pin"]}, +{"id":"156473","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"53049","label":"pushing container lid from left to right","template":"Pushing [something] from left to right","placeholders":["container lid"]}, +{"id":"216007","label":"holding a cup in front of pillows","template":"Holding [something] in front of [something]","placeholders":["a cup","pillows"]}, +{"id":"87512","label":"bending bottle so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bottle"]}, +{"id":"63998","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"146405","label":"pushing a container so it spins","template":"Pushing [something] so it spins","placeholders":["a container"]}, +{"id":"36460","label":"pulling the purse from right to left","template":"Pulling [something] from right to left","placeholders":["the purse"]}, +{"id":"205403","label":"putting milk into a glass","template":"Putting [something] into [something]","placeholders":["milk","a glass"]}, +{"id":"4820","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"198402","label":"putting box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["box"]}, +{"id":"148362","label":"envelope being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["envelope","couch"]}, +{"id":"43004","label":"closing gate","template":"Closing [something]","placeholders":["gate"]}, +{"id":"152249","label":"tipping cigarette pack over","template":"Tipping [something] over","placeholders":["cigarette pack"]}, +{"id":"165274","label":"tipping soap over","template":"Tipping [something] over","placeholders":["soap"]}, +{"id":"37437","label":"moving green chalk down","template":"Moving [something] down","placeholders":["green chalk"]}, +{"id":"173133","label":"twisting (wringing) a sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a sponge"]}, +{"id":"169373","label":"lifting up one end of cell phone, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["cell phone"]}, +{"id":"14136","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"213173","label":"taking headphones","template":"Taking [one of many similar things on the table]","placeholders":["headphones"]}, +{"id":"212080","label":"moving cup and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","scissors"]}, +{"id":"78559","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"139370","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"58029","label":"putting fruit into bowl","template":"Putting [something] into [something]","placeholders":["fruit","bowl"]}, +{"id":"167866","label":"throwing a ball against the floor so it bounces","template":"Throwing [something] against [something]","placeholders":["a ball","the floor so it bounces"]}, +{"id":"192432","label":"dropping a paper ball into the trash can","template":"Dropping [something] into [something]","placeholders":["a paper ball","the trash can"]}, +{"id":"61839","label":"stacking 3 containers","template":"Stacking [number of] [something]","placeholders":["3","containers"]}, +{"id":"169271","label":"moving the signal lever down","template":"Moving [something] down","placeholders":["the signal lever"]}, +{"id":"146232","label":"spilling water next to a cup","template":"Spilling [something] next to [something]","placeholders":["water","a cup"]}, +{"id":"191164","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"79981","label":"pushing tapeline from right to left","template":"Pushing [something] from right to left","placeholders":["tapeline"]}, +{"id":"48010","label":"taking currency from car seat","template":"Taking [something] from [somewhere]","placeholders":["currency","car seat"]}, +{"id":"29554","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"196623","label":"pushing black brush from left to right","template":"Pushing [something] from left to right","placeholders":["black brush"]}, +{"id":"80967","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"45094","label":"poking paint tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["paint tube"]}, +{"id":"13210","label":"putting 3 hair bands onto cookie box","template":"Putting [number of] [something] onto [something]","placeholders":["3","hair bands","cookie box"]}, +{"id":"55428","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"183730","label":"pushing granola bar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["granola bar"]}, +{"id":"59771","label":"tipping pencil box over","template":"Tipping [something] over","placeholders":["pencil box"]}, +{"id":"30152","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"109189","label":"turning the camera right while filming steam cake","template":"Turning the camera right while filming [something]","placeholders":["steam cake"]}, +{"id":"50997","label":"lifting up one end of note book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["note book"]}, +{"id":"130322","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"128520","label":"plugging a plug into the socket to the wall","template":"Plugging [something] into [something]","placeholders":["a plug","the socket to the wall"]}, +{"id":"119055","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"88127","label":"throwing brush against box","template":"Throwing [something] against [something]","placeholders":["brush","box"]}, +{"id":"130016","label":"trying to bend plastic card so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plastic card"]}, +{"id":"129725","label":"lifting plate with banana on it","template":"Lifting [something] with [something] on it","placeholders":["plate","banana"]}, +{"id":"54869","label":"lifting folder with marker on it","template":"Lifting [something] with [something] on it","placeholders":["folder","marker"]}, +{"id":"133121","label":"moving note book up","template":"Moving [something] up","placeholders":["note book"]}, +{"id":"15132","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"101107","label":"putting spray bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["spray bottle"]}, +{"id":"28557","label":"pretending or failing to wipe scratch off of desk","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["scratch","desk"]}, +{"id":"74141","label":"pushing controller so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["controller"]}, +{"id":"38220","label":"pushing pink box from left to right","template":"Pushing [something] from left to right","placeholders":["pink box"]}, +{"id":"157283","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"199410","label":"pushing compass from right to left","template":"Pushing [something] from right to left","placeholders":["compass"]}, +{"id":"15627","label":"pretending to put box on a surface","template":"Pretending to put [something] on a surface","placeholders":["box"]}, +{"id":"89949","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"31390","label":"pretending to open pot cover without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pot cover"]}, +{"id":"179576","label":"a ruler falling like a rock","template":"[Something] falling like a rock","placeholders":["a ruler"]}, +{"id":"54980","label":"dropping a phone in front of a pillow","template":"Dropping [something] in front of [something]","placeholders":["a phone","a pillow"]}, +{"id":"172718","label":"moving a phone handset closer to a ring with keys","template":"Moving [something] closer to [something]","placeholders":["a phone handset","a ring with keys"]}, +{"id":"131294","label":"pretending or failing to wipe dirt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","a plank of wood"]}, +{"id":"127755","label":"moving remote and water bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["remote","water bottle"]}, +{"id":"16566","label":"putting a glass behind a bottle","template":"Putting [something] behind [something]","placeholders":["a glass","a bottle"]}, +{"id":"45054","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"50577","label":"approaching sandal for men with your camera","template":"Approaching [something] with your camera","placeholders":["sandal for men"]}, +{"id":"112148","label":"poking a plastic bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a plastic bottle"]}, +{"id":"204838","label":"moving a pencil closer to scissors","template":"Moving [something] closer to [something]","placeholders":["a pencil","scissors"]}, +{"id":"122193","label":"throwing can of soda in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["can of soda"]}, +{"id":"206048","label":"spinning a chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a chair"]}, +{"id":"137612","label":"covering cup with paper towel","template":"Covering [something] with [something]","placeholders":["cup","paper towel"]}, +{"id":"6735","label":"pushing face wash so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["face wash"]}, +{"id":"208139","label":"moving toy tiger and toy elephant so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toy tiger","toy elephant"]}, +{"id":"89763","label":"uncovering earphones","template":"Uncovering [something]","placeholders":["earphones"]}, +{"id":"134532","label":"pouring water into lid","template":"Pouring [something] into [something]","placeholders":["water","lid"]}, +{"id":"24301","label":"pulling stick out of cup","template":"Pulling [something] out of [something]","placeholders":["stick","cup"]}, +{"id":"95725","label":"fork falling like a rock","template":"[Something] falling like a rock","placeholders":["fork"]}, +{"id":"173026","label":"lifting box with handphone on it","template":"Lifting [something] with [something] on it","placeholders":["box","handphone"]}, +{"id":"110907","label":"pretending to sprinkle air onto a box","template":"Pretending to sprinkle air onto [something]","placeholders":["a box"]}, +{"id":"117183","label":"sprinkling sugar onto table","template":"Sprinkling [something] onto [something]","placeholders":["sugar","table"]}, +{"id":"177010","label":"putting tissue into box","template":"Putting [something] into [something]","placeholders":["tissue","box"]}, +{"id":"67358","label":"turning a glass cup upside down","template":"Turning [something] upside down","placeholders":["a glass cup"]}, +{"id":"100491","label":"folding tote bag","template":"Folding [something]","placeholders":["tote bag"]}, +{"id":"189337","label":"pulling a pen from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a pen","a box"]}, +{"id":"4024","label":"putting phone behind mug","template":"Putting [something] behind [something]","placeholders":["phone","mug"]}, +{"id":"117556","label":"taking a cup of mineral water on the table","template":"Taking [one of many similar things on the table]","placeholders":["a cup of mineral water on the table"]}, +{"id":"74839","label":"moving perfume bottle and toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["perfume bottle","toy"]}, +{"id":"13944","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"31093","label":"holding bottle in front of bottle","template":"Holding [something] in front of [something]","placeholders":["bottle","bottle"]}, +{"id":"176232","label":"pretending or failing to wipe emblem off of coaster","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["emblem","coaster"]}, +{"id":"84992","label":"poking a kleenex box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a kleenex box"]}, +{"id":"180656","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"184100","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"184150","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"157974","label":"approaching nail cutter with your camera","template":"Approaching [something] with your camera","placeholders":["nail cutter"]}, +{"id":"208627","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"14747","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"50115","label":"showing that a glasses case is empty","template":"Showing that [something] is empty","placeholders":["a glasses case"]}, +{"id":"99143","label":"piling clementines up","template":"Piling [something] up","placeholders":["clementines"]}, +{"id":"58874","label":"burying candy mint in blanket","template":"Burying [something] in [something]","placeholders":["candy mint","blanket"]}, +{"id":"136441","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"147772","label":"pretending to put pen into box","template":"Pretending to put [something] into [something]","placeholders":["pen","box"]}, +{"id":"38771","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"207945","label":"taking marker out of cup","template":"Taking [something] out of [something]","placeholders":["marker","cup"]}, +{"id":"180211","label":"moving small end of phone cord","template":"Moving [part] of [something]","placeholders":["small end","phone cord"]}, +{"id":"104418","label":"moving glass and jug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","jug"]}, +{"id":"170749","label":"pushing pushing mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pushing mouse"]}, +{"id":"23746","label":"putting a pen behind a pencil case","template":"Putting [something] behind [something]","placeholders":["a pen","a pencil case"]}, +{"id":"13842","label":"moving a market across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a market"]}, +{"id":"85992","label":"rolling baby powder on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["baby powder"]}, +{"id":"4136","label":"pretending to put a mug next to another mug","template":"Pretending to put [something] next to [something]","placeholders":["a mug","another mug"]}, +{"id":"76616","label":"attaching mobile to flip cover","template":"Attaching [something] to [something]","placeholders":["mobile","flip cover"]}, +{"id":"156201","label":"putting book, candle and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","candle","pen"]}, +{"id":"200263","label":"pretending to pick squeezable strawberry jam up","template":"Pretending to pick [something] up","placeholders":["squeezable strawberry jam"]}, +{"id":"15990","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"113404","label":"putting glasses box on a surface","template":"Putting [something] on a surface","placeholders":["glasses box"]}, +{"id":"156245","label":"twisting usb-stick","template":"Twisting [something]","placeholders":["usb-stick"]}, +{"id":"8356","label":"pretending to put a notebook onto a cardboard box","template":"Pretending to put [something] onto [something]","placeholders":["a notebook","a cardboard box"]}, +{"id":"219326","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"84431","label":"stacking 2 nail polish","template":"Stacking [number of] [something]","placeholders":["2","nail polish"]}, +{"id":"105351","label":"dropping pillow onto bed","template":"Dropping [something] onto [something]","placeholders":["pillow","bed"]}, +{"id":"72270","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"59824","label":"showing a photo of a hindu deity to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a hindu deity"]}, +{"id":"116592","label":"pulling binoculars from right to left","template":"Pulling [something] from right to left","placeholders":["binoculars"]}, +{"id":"8542","label":"waterbottle falling like a rock","template":"[Something] falling like a rock","placeholders":["waterbottle"]}, +{"id":"165248","label":"lifting keys up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["keys"]}, +{"id":"185918","label":"putting notebook behind box","template":"Putting [something] behind [something]","placeholders":["notebook","box"]}, +{"id":"126892","label":"turning the camera right while filming bottle","template":"Turning the camera right while filming [something]","placeholders":["bottle"]}, +{"id":"166637","label":"opening sandwichera","template":"Opening [something]","placeholders":["sandwichera"]}, +{"id":"154598","label":"dropping a peg behind a book","template":"Dropping [something] behind [something]","placeholders":["a peg","a book"]}, +{"id":"16361","label":"pretending to be tearing handkerchief","template":"Pretending to be tearing [something that is not tearable]","placeholders":["handkerchief"]}, +{"id":"197760","label":"holding a smartphone","template":"Holding [something]","placeholders":["a smartphone"]}, +{"id":"200978","label":"turning the camera left while filming a bottle of water","template":"Turning the camera left while filming [something]","placeholders":["a bottle of water"]}, +{"id":"37704","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"58177","label":"pretending to pick a pencil case up","template":"Pretending to pick [something] up","placeholders":["a pencil case"]}, +{"id":"25592","label":"holding water bottle next to coke bottle","template":"Holding [something] next to [something]","placeholders":["water bottle","coke bottle"]}, +{"id":"16984","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"49263","label":"pretending to take something out of something","template":"Pretending to take [something] out of [something]","placeholders":["something","something"]}, +{"id":"146789","label":"pushing something off of something","template":"Pushing [something] off of [something]","placeholders":["something","something"]}, +{"id":"53222","label":"pushing a small bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a small bottle"]}, +{"id":"207528","label":"lifting envelope with coins on it","template":"Lifting [something] with [something] on it","placeholders":["envelope","coins"]}, +{"id":"8547","label":"showing shoe to the camera","template":"Showing [something] to the camera","placeholders":["shoe"]}, +{"id":"170966","label":"dropping red hairband next to tablet box","template":"Dropping [something] next to [something]","placeholders":["red hairband","tablet box"]}, +{"id":"43724","label":"spilling water onto a thermos","template":"Spilling [something] onto [something]","placeholders":["water","a thermos"]}, +{"id":"157613","label":"plugging charger into pluge but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","pluge"]}, +{"id":"166636","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"72169","label":"moving pen drive closer to wallet","template":"Moving [something] closer to [something]","placeholders":["pen drive","wallet"]}, +{"id":"37606","label":"putting fork next to cup","template":"Putting [something] next to [something]","placeholders":["fork","cup"]}, +{"id":"84613","label":"rolling rolling pin on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling pin"]}, +{"id":"19390","label":"moving away from notebook with your camera","template":"Moving away from [something] with your camera","placeholders":["notebook"]}, +{"id":"87931","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"145860","label":"putting wireless phone upright on the table","template":"Putting [something] upright on the table","placeholders":["wireless phone"]}, +{"id":"75092","label":"holding small stone next to rectangular box","template":"Holding [something] next to [something]","placeholders":["small stone","rectangular box"]}, +{"id":"200999","label":"picking a cup up","template":"Picking [something] up","placeholders":["a cup"]}, +{"id":"27476","label":"pouring something onto something","template":"Pouring [something] onto [something]","placeholders":["something","something"]}, +{"id":"25838","label":"putting mug in front of setsquare","template":"Putting [something] in front of [something]","placeholders":["mug","setsquare"]}, +{"id":"12265","label":"pretending to pick table cloth up","template":"Pretending to pick [something] up","placeholders":["table cloth"]}, +{"id":"23449","label":"pretending to put napkins into napkin holder","template":"Pretending to put [something] into [something]","placeholders":["napkins","napkin holder"]}, +{"id":"2519","label":"hitting candy with candy","template":"Hitting [something] with [something]","placeholders":["candy","candy"]}, +{"id":"69213","label":"poking a stack of boxs without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["boxs"]}, +{"id":"95516","label":"putting calculator onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["calculator"]}, +{"id":"85733","label":"pouring water into washbasin","template":"Pouring [something] into [something]","placeholders":["water","washbasin"]}, +{"id":"92139","label":"tipping cup with ball over, so ball falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","ball","ball"]}, +{"id":"9344","label":"covering duster with scarf","template":"Covering [something] with [something]","placeholders":["duster","scarf"]}, +{"id":"138988","label":"pushing glass from left to right","template":"Pushing [something] from left to right","placeholders":["glass"]}, +{"id":"150669","label":"pulling a glass from left to right","template":"Pulling [something] from left to right","placeholders":["a glass"]}, +{"id":"66584","label":"dropping paper in front of box","template":"Dropping [something] in front of [something]","placeholders":["paper","box"]}, +{"id":"60109","label":"putting a straw into a cup","template":"Putting [something] into [something]","placeholders":["a straw","a cup"]}, +{"id":"173288","label":"putting hand cream tube on a surface","template":"Putting [something] on a surface","placeholders":["hand cream tube"]}, +{"id":"42163","label":"holding mobile phone in front of laptop","template":"Holding [something] in front of [something]","placeholders":["mobile phone","laptop"]}, +{"id":"11382","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"20283","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"77175","label":"twisting wire","template":"Twisting [something]","placeholders":["wire"]}, +{"id":"91196","label":"dropping marker into cup","template":"Dropping [something] into [something]","placeholders":["marker","cup"]}, +{"id":"67965","label":"laying a glue stick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glue stick"]}, +{"id":"162086","label":"taking a case","template":"Taking [one of many similar things on the table]","placeholders":["a case"]}, +{"id":"132146","label":"poking a hole into dirt","template":"Poking a hole into [some substance]","placeholders":["dirt"]}, +{"id":"188147","label":"pretending to be tearing sheet of paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["sheet of paper"]}, +{"id":"94126","label":"squeezing a plushie","template":"Squeezing [something]","placeholders":["a plushie"]}, +{"id":"209739","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"122248","label":"putting a mug behind a pan","template":"Putting [something] behind [something]","placeholders":["a mug","a pan"]}, +{"id":"87361","label":"pulling two ends of headphones so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["headphones"]}, +{"id":"52945","label":"dropping cow onto pillow","template":"Dropping [something] onto [something]","placeholders":["cow","pillow"]}, +{"id":"39702","label":"moving away from chair with your camera","template":"Moving away from [something] with your camera","placeholders":["chair"]}, +{"id":"115030","label":"picking plate up","template":"Picking [something] up","placeholders":["plate"]}, +{"id":"215414","label":"putting calculator on a surface","template":"Putting [something] on a surface","placeholders":["calculator"]}, +{"id":"83458","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"55141","label":"dropping eraser into blue glass bowl","template":"Dropping [something] into [something]","placeholders":["eraser","blue glass bowl"]}, +{"id":"81992","label":"showing clothes behind a window","template":"Showing [something] behind [something]","placeholders":["clothes","a window"]}, +{"id":"203725","label":"lifting a surface with phone on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["phone"]}, +{"id":"215361","label":"showing one tealight candle to the camera","template":"Showing [something] to the camera","placeholders":["one tealight candle"]}, +{"id":"141799","label":"hitting a shower curtain with a hair iron","template":"Hitting [something] with [something]","placeholders":["a shower curtain","a hair iron"]}, +{"id":"89670","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"84335","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"194203","label":"hitting drum with lighter","template":"Hitting [something] with [something]","placeholders":["drum","lighter"]}, +{"id":"146631","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"204274","label":"tilting book with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","mouse"]}, +{"id":"95729","label":"uncovering a book","template":"Uncovering [something]","placeholders":["a book"]}, +{"id":"18697","label":"closing bottle cap","template":"Closing [something]","placeholders":["bottle cap"]}, +{"id":"100391","label":"showing pen behind holder","template":"Showing [something] behind [something]","placeholders":["pen","holder"]}, +{"id":"124099","label":"pushing container with screw","template":"Pushing [something] with [something]","placeholders":["container","screw"]}, +{"id":"190128","label":"holding pen next to watch","template":"Holding [something] next to [something]","placeholders":["pen","watch"]}, +{"id":"76952","label":"closing card folder","template":"Closing [something]","placeholders":["card folder"]}, +{"id":"164984","label":"bending dog biscuit until it breaks","template":"Bending [something] until it breaks","placeholders":["dog biscuit"]}, +{"id":"145229","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"50232","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"41463","label":"laying container on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["container"]}, +{"id":"164659","label":"pushing knife so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["knife"]}, +{"id":"99362","label":"pushing hair gel bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair gel bottle"]}, +{"id":"91330","label":"putting musical tabala that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["musical tabala"]}, +{"id":"5820","label":"spinning toothpaste tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothpaste tube"]}, +{"id":"68822","label":"spilling water next to a padlock","template":"Spilling [something] next to [something]","placeholders":["water","a padlock"]}, +{"id":"31678","label":"tipping a bowl over","template":"Tipping [something] over","placeholders":["a bowl"]}, +{"id":"35805","label":"holding the paper over the book","template":"Holding [something] over [something]","placeholders":["the paper","the book"]}, +{"id":"131487","label":"pushing cigarette box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cigarette box"]}, +{"id":"65041","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"201177","label":"stuffing cookies into a box","template":"Stuffing [something] into [something]","placeholders":["cookies","a box"]}, +{"id":"162464","label":"hitting speaker with gum bottle","template":"Hitting [something] with [something]","placeholders":["speaker","gum bottle"]}, +{"id":"84572","label":"turning the camera right while filming telephone junction box","template":"Turning the camera right while filming [something]","placeholders":["telephone junction box"]}, +{"id":"104873","label":"tearing index card into two pieces","template":"Tearing [something] into two pieces","placeholders":["index card"]}, +{"id":"157015","label":"holding a glass of water in front of computer monitor","template":"Holding [something] in front of [something]","placeholders":["a glass of water","computer monitor"]}, +{"id":"35817","label":"dropping plastic onto floor","template":"Dropping [something] onto [something]","placeholders":["plastic","floor"]}, +{"id":"149098","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"195085","label":"stuffing shorts into a bag","template":"Stuffing [something] into [something]","placeholders":["shorts","a bag"]}, +{"id":"170900","label":"plugging something into something but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["something","something"]}, +{"id":"124567","label":"holding pill bottle next to cheese grater","template":"Holding [something] next to [something]","placeholders":["pill bottle","cheese grater"]}, +{"id":"23388","label":"pretending to take a glass from my table","template":"Pretending to take [something] from [somewhere]","placeholders":["a glass","my table"]}, +{"id":"3899","label":"taking currency from table","template":"Taking [something] from [somewhere]","placeholders":["currency","table"]}, +{"id":"112588","label":"moving white pebble down","template":"Moving [something] down","placeholders":["white pebble"]}, +{"id":"150245","label":"dropping phone in front of pants","template":"Dropping [something] in front of [something]","placeholders":["phone","pants"]}, +{"id":"119819","label":"taking timepiece out of basket","template":"Taking [something] out of [something]","placeholders":["timepiece","basket"]}, +{"id":"146762","label":"removing a beer can, revealing a teaspoon behind","template":"Removing [something], revealing [something] behind","placeholders":["a beer can","a teaspoon"]}, +{"id":"46281","label":"opening cabinet","template":"Opening [something]","placeholders":["cabinet"]}, +{"id":"129298","label":"dropping paper in front of cup","template":"Dropping [something] in front of [something]","placeholders":["paper","cup"]}, +{"id":"44523","label":"tipping a tin can over","template":"Tipping [something] over","placeholders":["a tin can"]}, +{"id":"13998","label":"hitting a toy car with a book","template":"Hitting [something] with [something]","placeholders":["a toy car","a book"]}, +{"id":"31664","label":"moving hand up","template":"Moving [something] up","placeholders":["hand"]}, +{"id":"142521","label":"putting a remote control on a surface","template":"Putting [something] on a surface","placeholders":["a remote control"]}, +{"id":"31098","label":"taking hair band from table","template":"Taking [something] from [somewhere]","placeholders":["hair band","table"]}, +{"id":"93868","label":"pulling dvd case from right to left","template":"Pulling [something] from right to left","placeholders":["dvd case"]}, +{"id":"28942","label":"holding remote next to can","template":"Holding [something] next to [something]","placeholders":["remote","can"]}, +{"id":"83323","label":"removing calculator, revealing eraser behind","template":"Removing [something], revealing [something] behind","placeholders":["calculator","eraser"]}, +{"id":"79785","label":"moving pen away from remote","template":"Moving [something] away from [something]","placeholders":["pen","remote"]}, +{"id":"145090","label":"lifting stencil with wooden stick on it","template":"Lifting [something] with [something] on it","placeholders":["stencil","wooden stick"]}, +{"id":"95943","label":"covering stroller with towel","template":"Covering [something] with [something]","placeholders":["stroller","towel"]}, +{"id":"61318","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"69587","label":"moving a bottle and a bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a bottle"]}, +{"id":"76926","label":"pretending to put book underneath book","template":"Pretending to put [something] underneath [something]","placeholders":["book","book"]}, +{"id":"72928","label":"pretending to be tearing wallet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["wallet"]}, +{"id":"110273","label":"tipping cup with grape over, so grape falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","grape","grape"]}, +{"id":"17519","label":"pulling a pen from left to right","template":"Pulling [something] from left to right","placeholders":["a pen"]}, +{"id":"136269","label":"pushing red pot holder from left to right","template":"Pushing [something] from left to right","placeholders":["red pot holder"]}, +{"id":"171333","label":"putting a pencil case underneath a sweater","template":"Putting [something] underneath [something]","placeholders":["a pencil case","a sweater"]}, +{"id":"67859","label":"pouring something into something until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["something","something"]}, +{"id":"66909","label":"twisting a lip balm lid","template":"Twisting [something]","placeholders":["a lip balm lid"]}, +{"id":"6220","label":"moving tupperware across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["tupperware"]}, +{"id":"180303","label":"pushing pen stand from left to right","template":"Pushing [something] from left to right","placeholders":["pen stand"]}, +{"id":"162039","label":"tearing toilet paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["toilet paper"]}, +{"id":"779","label":"putting coin behind mug","template":"Putting [something] behind [something]","placeholders":["coin","mug"]}, +{"id":"25303","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"9821","label":"moving magnet closer to magnifying glass","template":"Moving [something] closer to [something]","placeholders":["magnet","magnifying glass"]}, +{"id":"143249","label":"bending plastic card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["plastic card"]}, +{"id":"217635","label":"showing that green liquid is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["green liquid","a bottle"]}, +{"id":"151722","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"153194","label":"car colliding with train and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["car","train"]}, +{"id":"70542","label":"taking a car out of parking lot","template":"Taking [something] out of [something]","placeholders":["a car","parking lot"]}, +{"id":"132740","label":"uncovering flashlight","template":"Uncovering [something]","placeholders":["flashlight"]}, +{"id":"57240","label":"pulling diaper wipes out of the bag","template":"Pulling [something] out of [something]","placeholders":["diaper wipes","the bag"]}, +{"id":"139833","label":"uncovering a cell phone","template":"Uncovering [something]","placeholders":["a cell phone"]}, +{"id":"76727","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"77019","label":"hitting pillow with clothes","template":"Hitting [something] with [something]","placeholders":["pillow","clothes"]}, +{"id":"55628","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"114961","label":"moving toothpaste tube and toothpaste tube so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toothpaste tube","toothpaste tube"]}, +{"id":"84300","label":"pulling a lighter from behind of a bottle","template":"Pulling [something] from behind of [something]","placeholders":["a lighter","a bottle"]}, +{"id":"28379","label":"showing that cookie box is empty","template":"Showing that [something] is empty","placeholders":["cookie box"]}, +{"id":"87969","label":"trying to pour water into watering can, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","watering can"]}, +{"id":"96063","label":"spinning lipstick so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lipstick"]}, +{"id":"66355","label":"holding onion next to mug","template":"Holding [something] next to [something]","placeholders":["onion","mug"]}, +{"id":"85402","label":"pretending to put a lighter on a surface","template":"Pretending to put [something] on a surface","placeholders":["a lighter"]}, +{"id":"105359","label":"putting a book in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a book","a cup"]}, +{"id":"6848","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"177178","label":"showing railway track to the camera","template":"Showing [something] to the camera","placeholders":["railway track"]}, +{"id":"175887","label":"turning the camera downwards while filming wastebin","template":"Turning the camera downwards while filming [something]","placeholders":["wastebin"]}, +{"id":"151807","label":"putting spects into box","template":"Putting [something] into [something]","placeholders":["spects","box"]}, +{"id":"34339","label":"hitting table with book","template":"Hitting [something] with [something]","placeholders":["table","book"]}, +{"id":"79890","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"200068","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"174784","label":"wiping toothpaste off of a desk","template":"Wiping [something] off of [something]","placeholders":["toothpaste","a desk"]}, +{"id":"220342","label":"pulling a pen out of a glass","template":"Pulling [something] out of [something]","placeholders":["a pen","a glass"]}, +{"id":"196818","label":"plugging black cord into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["black cord","outlet"]}, +{"id":"69483","label":"letting toilet paper roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toilet paper"]}, +{"id":"12317","label":"squeezing cotton","template":"Squeezing [something]","placeholders":["cotton"]}, +{"id":"118368","label":"putting clip that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["clip"]}, +{"id":"129545","label":"moving yellow hairband down","template":"Moving [something] down","placeholders":["yellow hairband"]}, +{"id":"220382","label":"poking calculator so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["calculator"]}, +{"id":"149823","label":"putting comb behind wallet","template":"Putting [something] behind [something]","placeholders":["comb","wallet"]}, +{"id":"143540","label":"plugging charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["charger","wall outlet"]}, +{"id":"214557","label":"putting a book in front of a mug","template":"Putting [something] in front of [something]","placeholders":["a book","a mug"]}, +{"id":"106779","label":"notes falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["notes"]}, +{"id":"73287","label":"moving top of keurig","template":"Moving [part] of [something]","placeholders":["top","keurig"]}, +{"id":"57287","label":"pushing candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["candle"]}, +{"id":"128019","label":"plugging a cable into a adapter but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a adapter"]}, +{"id":"101502","label":"showing that coffee mug is empty","template":"Showing that [something] is empty","placeholders":["coffee mug"]}, +{"id":"96844","label":"twisting a ceramic frog","template":"Twisting [something]","placeholders":["a ceramic frog"]}, +{"id":"106398","label":"tearing chapati just a little bit","template":"Tearing [something] just a little bit","placeholders":["chapati"]}, +{"id":"191246","label":"spinning a tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a tube"]}, +{"id":"25483","label":"pretending to pick toy up","template":"Pretending to pick [something] up","placeholders":["toy"]}, +{"id":"104108","label":"moving coin away from the camera","template":"Moving [something] away from the camera","placeholders":["coin"]}, +{"id":"187687","label":"pushing calculator so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["calculator"]}, +{"id":"46578","label":"taking scissors out of box","template":"Taking [something] out of [something]","placeholders":["scissors","box"]}, +{"id":"98201","label":"putting muffin and bulb syringe on the table","template":"Putting [something] and [something] on the table","placeholders":["muffin","bulb syringe"]}, +{"id":"2872","label":"plugging usb cable into smarthphone","template":"Plugging [something] into [something]","placeholders":["usb cable","smarthphone"]}, +{"id":"57770","label":"pouring water out of mason jar","template":"Pouring [something] out of [something]","placeholders":["water","mason jar"]}, +{"id":"158618","label":"closing a container","template":"Closing [something]","placeholders":["a container"]}, +{"id":"132932","label":"plugging power cable into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power cable","socket"]}, +{"id":"152753","label":"stickynote falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["stickynote"]}, +{"id":"128124","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196060","label":"spinning poker chip so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["poker chip"]}, +{"id":"108638","label":"squeezing soda can","template":"Squeezing [something]","placeholders":["soda can"]}, +{"id":"27010","label":"pushing spinner so it spins","template":"Pushing [something] so it spins","placeholders":["spinner"]}, +{"id":"188678","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"205218","label":"putting a trophy next to a speaker","template":"Putting [something] next to [something]","placeholders":["a trophy","a speaker"]}, +{"id":"103499","label":"pretending to be tearing t-shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["t-shirt"]}, +{"id":"113952","label":"trying to bend iron stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["iron stick"]}, +{"id":"83441","label":"putting stick upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["stick"]}, +{"id":"132209","label":"tilting plate with glasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","glasses"]}, +{"id":"65637","label":"showing lever on top of toy wheel","template":"Showing [something] on top of [something]","placeholders":["lever","toy wheel"]}, +{"id":"32984","label":"dropping a bottletop onto a wallet","template":"Dropping [something] onto [something]","placeholders":["a bottletop","a wallet"]}, +{"id":"153707","label":"lifting a can of mints with an aerosol can on it","template":"Lifting [something] with [something] on it","placeholders":["a can of mints","an aerosol can"]}, +{"id":"39175","label":"pulling tissue out of tissue box","template":"Pulling [something] out of [something]","placeholders":["tissue","tissue box"]}, +{"id":"28395","label":"closing vanity bag","template":"Closing [something]","placeholders":["vanity bag"]}, +{"id":"202780","label":"moving ashtray down","template":"Moving [something] down","placeholders":["ashtray"]}, +{"id":"193456","label":"spreading salt onto raw chicken meat","template":"Spreading [something] onto [something]","placeholders":["salt","raw chicken meat"]}, +{"id":"201229","label":"matchbox falling like a rock","template":"[Something] falling like a rock","placeholders":["matchbox"]}, +{"id":"19087","label":"putting gum","template":"Putting [something similar to other things that are already on the table]","placeholders":["gum"]}, +{"id":"89883","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"91355","label":"holding a bathing soap","template":"Holding [something]","placeholders":["a bathing soap"]}, +{"id":"86438","label":"putting coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins"]}, +{"id":"194319","label":"pouring water into bottle","template":"Pouring [something] into [something]","placeholders":["water","bottle"]}, +{"id":"87076","label":"poking poking drawer so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["poking drawer"]}, +{"id":"19474","label":"pulling a necklace out of a basket","template":"Pulling [something] out of [something]","placeholders":["a necklace","a basket"]}, +{"id":"201781","label":"putting pebble next to glass","template":"Putting [something] next to [something]","placeholders":["pebble","glass"]}, +{"id":"95371","label":"lifting box with remote on it","template":"Lifting [something] with [something] on it","placeholders":["box","remote"]}, +{"id":"30947","label":"dropping a box in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a box","a book"]}, +{"id":"65947","label":"attaching a toy brick to a toy brick","template":"Attaching [something] to [something]","placeholders":["a toy brick","a toy brick"]}, +{"id":"77557","label":"pretending to sprinkle air onto a bowl with apples","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl with apples"]}, +{"id":"29234","label":"covering doll with blanket","template":"Covering [something] with [something]","placeholders":["doll","blanket"]}, +{"id":"127410","label":"tearing receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["receipt"]}, +{"id":"56251","label":"moving a bottle closer to a cup","template":"Moving [something] closer to [something]","placeholders":["a bottle","a cup"]}, +{"id":"84827","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"171376","label":"tearing advertising brochure just a little bit","template":"Tearing [something] just a little bit","placeholders":["advertising brochure"]}, +{"id":"29585","label":"putting quarter that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["quarter"]}, +{"id":"79193","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"188377","label":"sprinkling sugar onto buttered toast","template":"Sprinkling [something] onto [something]","placeholders":["sugar","buttered toast"]}, +{"id":"55149","label":"putting rubber into mug","template":"Putting [something] into [something]","placeholders":["rubber","mug"]}, +{"id":"31509","label":"spreading butter onto bread","template":"Spreading [something] onto [something]","placeholders":["butter","bread"]}, +{"id":"38951","label":"uncovering doll","template":"Uncovering [something]","placeholders":["doll"]}, +{"id":"155301","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"206752","label":"pretending to put a votive behind a votive","template":"Pretending to put [something] behind [something]","placeholders":["a votive","a votive"]}, +{"id":"95328","label":"putting water bottle and pocket knife on the table","template":"Putting [something] and [something] on the table","placeholders":["water bottle","pocket knife"]}, +{"id":"89434","label":"pushing a phone so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a phone"]}, +{"id":"128502","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"118229","label":"putting 2 red spoons onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","red spoons","black pouch"]}, +{"id":"172090","label":"moving washcloth across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["washcloth"]}, +{"id":"59804","label":"holding soft tissue roll","template":"Holding [something]","placeholders":["soft tissue roll"]}, +{"id":"34190","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"208953","label":"pretending to put a lit onto a pan","template":"Pretending to put [something] onto [something]","placeholders":["a lit","a pan"]}, +{"id":"85939","label":"putting toy onto spectical box","template":"Putting [something] onto [something]","placeholders":["toy","spectical box"]}, +{"id":"33170","label":"opening a chest","template":"Opening [something]","placeholders":["a chest"]}, +{"id":"134849","label":"plugging charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall socket"]}, +{"id":"80555","label":"moving matchbox and cellphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["matchbox","cellphone"]}, +{"id":"7414","label":"scooping a pacifier up with my hand","template":"Scooping [something] up with [something]","placeholders":["a pacifier","my hand"]}, +{"id":"100117","label":"moving top of tea box","template":"Moving [part] of [something]","placeholders":["top","tea box"]}, +{"id":"41978","label":"approaching a fidget spinner with your camera","template":"Approaching [something] with your camera","placeholders":["a fidget spinner"]}, +{"id":"17320","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"83295","label":"moving glass away from bottle","template":"Moving [something] away from [something]","placeholders":["glass","bottle"]}, +{"id":"73249","label":"putting earphone next to yellowbook","template":"Putting [something] next to [something]","placeholders":["earphone","yellowbook"]}, +{"id":"207083","label":"pretending to put shoe underneath bed","template":"Pretending to put [something] underneath [something]","placeholders":["shoe","bed"]}, +{"id":"43503","label":"moving mug closer to mug","template":"Moving [something] closer to [something]","placeholders":["mug","mug"]}, +{"id":"192879","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"211134","label":"bending a label so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a label"]}, +{"id":"185728","label":"putting 3 spools of thread onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["3","spools of thread","a box"]}, +{"id":"125127","label":"letting a musical tabla roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a musical tabla"]}, +{"id":"35487","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"29715","label":"tipping a stuffed bird over","template":"Tipping [something] over","placeholders":["a stuffed bird"]}, +{"id":"220453","label":"squeezing pink water bottle","template":"Squeezing [something]","placeholders":["pink water bottle"]}, +{"id":"130183","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"179398","label":"rolling kitchen towel on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["kitchen towel"]}, +{"id":"147083","label":"holding battery in front of mouse","template":"Holding [something] in front of [something]","placeholders":["battery","mouse"]}, +{"id":"18271","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"91959","label":"showing that soda is empty","template":"Showing that [something] is empty","placeholders":["soda"]}, +{"id":"220583","label":"pushing watch from right to left","template":"Pushing [something] from right to left","placeholders":["watch"]}, +{"id":"57756","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"46789","label":"poking toilet roll so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["toilet roll"]}, +{"id":"35716","label":"bending an envelope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an envelope"]}, +{"id":"84570","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"216857","label":"moving bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["bottle"]}, +{"id":"205243","label":"putting card","template":"Putting [something similar to other things that are already on the table]","placeholders":["card"]}, +{"id":"14384","label":"tipping candle with bubblegum over, so bubblegum falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["candle","bubblegum","bubblegum"]}, +{"id":"196369","label":"showing fork to the camera","template":"Showing [something] to the camera","placeholders":["fork"]}, +{"id":"95037","label":"pushing a set of keys so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a set of keys"]}, +{"id":"127956","label":"putting cassette tape next to mug","template":"Putting [something] next to [something]","placeholders":["cassette tape","mug"]}, +{"id":"32471","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"41159","label":"throwing a wooden piece in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a wooden piece"]}, +{"id":"69023","label":"spinning can so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["can"]}, +{"id":"78401","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"35074","label":"turning the camera left while filming world globe","template":"Turning the camera left while filming [something]","placeholders":["world globe"]}, +{"id":"199935","label":"covering bottle with tea towel","template":"Covering [something] with [something]","placeholders":["bottle","tea towel"]}, +{"id":"186888","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"172333","label":"lifting bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["bottle"]}, +{"id":"22118","label":"tearing a cloth into two pieces","template":"Tearing [something] into two pieces","placeholders":["a cloth"]}, +{"id":"4048","label":"putting 2 toy cars onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["2","toy cars","diary"]}, +{"id":"183231","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"116903","label":"pretending to pick vape up","template":"Pretending to pick [something] up","placeholders":["vape"]}, +{"id":"78911","label":"plugging power plug into electric socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power plug","electric socket"]}, +{"id":"140578","label":"lifting up one end of remote, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote"]}, +{"id":"203254","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"217276","label":"marble colliding with marble and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["marble","marble"]}, +{"id":"169844","label":"pretending to poke a stuffed tiger","template":"Pretending to poke [something]","placeholders":["a stuffed tiger"]}, +{"id":"143703","label":"folding a note","template":"Folding [something]","placeholders":["a note"]}, +{"id":"208629","label":"uncovering orange","template":"Uncovering [something]","placeholders":["orange"]}, +{"id":"122032","label":"pulling box onto table","template":"Pulling [something] onto [something]","placeholders":["box","table"]}, +{"id":"12675","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"194840","label":"covering foldable knife with punching machine","template":"Covering [something] with [something]","placeholders":["foldable knife","punching machine"]}, +{"id":"567","label":"dropping a comb in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a comb","a toothbrush"]}, +{"id":"54471","label":"holding keyd","template":"Holding [something]","placeholders":["keyd"]}, +{"id":"21688","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"14830","label":"pushing wheel so it spins","template":"Pushing [something] so it spins","placeholders":["wheel"]}, +{"id":"217630","label":"pretending to take kays out of bag","template":"Pretending to take [something] out of [something]","placeholders":["kays","bag"]}, +{"id":"166776","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"119800","label":"covering ballpen with towel","template":"Covering [something] with [something]","placeholders":["ballpen","towel"]}, +{"id":"184446","label":"pretending or trying and failing to twist a phone","template":"Pretending or trying and failing to twist [something]","placeholders":["a phone"]}, +{"id":"207613","label":"pretending to poke a bottle","template":"Pretending to poke [something]","placeholders":["a bottle"]}, +{"id":"158568","label":"showing cell phone behind wireless phone","template":"Showing [something] behind [something]","placeholders":["cell phone","wireless phone"]}, +{"id":"186406","label":"covering a container with a blanket","template":"Covering [something] with [something]","placeholders":["a container","a blanket"]}, +{"id":"182911","label":"uncovering decoration box","template":"Uncovering [something]","placeholders":["decoration box"]}, +{"id":"36808","label":"lifting book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["book"]}, +{"id":"49824","label":"opening pot","template":"Opening [something]","placeholders":["pot"]}, +{"id":"4946","label":"putting tissues on a surface","template":"Putting [something] on a surface","placeholders":["tissues"]}, +{"id":"190525","label":"trying but failing to attach clip magnet to door handle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["clip magnet","door handle"]}, +{"id":"201373","label":"closing yellow clay container","template":"Closing [something]","placeholders":["yellow clay container"]}, +{"id":"121443","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"175473","label":"lifting a surface with a watch on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a watch"]}, +{"id":"58820","label":"dropping a bag into the drawer","template":"Dropping [something] into [something]","placeholders":["a bag","the drawer"]}, +{"id":"156977","label":"touching (without moving) title of book","template":"Touching (without moving) [part] of [something]","placeholders":["title","book"]}, +{"id":"93294","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"211984","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"136767","label":"moving aroma diffuser and trophie closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["aroma diffuser","trophie"]}, +{"id":"142225","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"126281","label":"holding a box in front of a glass","template":"Holding [something] in front of [something]","placeholders":["a box","a glass"]}, +{"id":"82359","label":"closing trash can","template":"Closing [something]","placeholders":["trash can"]}, +{"id":"196119","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"56653","label":"moving pen closer to red spoon","template":"Moving [something] closer to [something]","placeholders":["pen","red spoon"]}, +{"id":"169837","label":"folding wrag","template":"Folding [something]","placeholders":["wrag"]}, +{"id":"57822","label":"pink golf ball falling like a rock","template":"[Something] falling like a rock","placeholders":["pink golf ball"]}, +{"id":"124242","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"191109","label":"picking plate up","template":"Picking [something] up","placeholders":["plate"]}, +{"id":"142177","label":"showing food pot behind sauce","template":"Showing [something] behind [something]","placeholders":["food pot","sauce"]}, +{"id":"5950","label":"lifting paper up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["paper"]}, +{"id":"72272","label":"holding shaker in front of cup","template":"Holding [something] in front of [something]","placeholders":["shaker","cup"]}, +{"id":"22370","label":"dropping ruler onto mobile phone","template":"Dropping [something] onto [something]","placeholders":["ruler","mobile phone"]}, +{"id":"107256","label":"tilting a cell phone with a toy on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cell phone","a toy"]}, +{"id":"117370","label":"lifting a surface with glass bottle on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["glass bottle"]}, +{"id":"57930","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"182133","label":"unfolding reciept","template":"Unfolding [something]","placeholders":["reciept"]}, +{"id":"31974","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"178064","label":"pretending to open a soda can without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a soda can"]}, +{"id":"129977","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"80172","label":"pretending to open a brown covered note book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a brown covered note book"]}, +{"id":"164624","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"65413","label":"pushing plushie from right to left","template":"Pushing [something] from right to left","placeholders":["plushie"]}, +{"id":"159929","label":"pretending to put coin onto paper","template":"Pretending to put [something] onto [something]","placeholders":["coin","paper"]}, +{"id":"83847","label":"throwing battery","template":"Throwing [something]","placeholders":["battery"]}, +{"id":"11273","label":"pulling two ends of tray but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["tray"]}, +{"id":"114766","label":"rolling tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tape"]}, +{"id":"124947","label":"covering a computer mouse with a paper","template":"Covering [something] with [something]","placeholders":["a computer mouse","a paper"]}, +{"id":"80884","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"133449","label":"turning pillow upside down","template":"Turning [something] upside down","placeholders":["pillow"]}, +{"id":"39635","label":"tipping soda pop can over","template":"Tipping [something] over","placeholders":["soda pop can"]}, +{"id":"115541","label":"dropping rubix cube into orange bowl","template":"Dropping [something] into [something]","placeholders":["rubix cube","orange bowl"]}, +{"id":"92691","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"22562","label":"moving ceramic ball and mug so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ceramic ball","mug"]}, +{"id":"5219","label":"failing to put shoe into tissue box because shoe does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["shoe","tissue box","shoe"]}, +{"id":"200357","label":"dropping hair clip next to green bowl","template":"Dropping [something] next to [something]","placeholders":["hair clip","green bowl"]}, +{"id":"144198","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"35707","label":"putting chalk on a surface","template":"Putting [something] on a surface","placeholders":["chalk"]}, +{"id":"97493","label":"removing a can, revealing a pair of tweezers behind","template":"Removing [something], revealing [something] behind","placeholders":["a can","a pair of tweezers"]}, +{"id":"200484","label":"pushing magnet from right to left","template":"Pushing [something] from right to left","placeholders":["magnet"]}, +{"id":"119019","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64132","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"4257","label":"letting something roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["something"]}, +{"id":"91683","label":"moving a stapler up","template":"Moving [something] up","placeholders":["a stapler"]}, +{"id":"202680","label":"opening plastic container","template":"Opening [something]","placeholders":["plastic container"]}, +{"id":"78627","label":"rolling jbl speakers on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["jbl speakers"]}, +{"id":"46296","label":"moving wristwatch up","template":"Moving [something] up","placeholders":["wristwatch"]}, +{"id":"105744","label":"letting grape roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["grape"]}, +{"id":"26928","label":"pushing mobile with mobile","template":"Pushing [something] with [something]","placeholders":["mobile","mobile"]}, +{"id":"43192","label":"lifting paper with cards on it","template":"Lifting [something] with [something] on it","placeholders":["paper","cards"]}, +{"id":"209558","label":"moving a pen and a pencil so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a pencil"]}, +{"id":"216243","label":"spilling water onto surface","template":"Spilling [something] onto [something]","placeholders":["water","surface"]}, +{"id":"20760","label":"pretending to take hair clip from table","template":"Pretending to take [something] from [somewhere]","placeholders":["hair clip","table"]}, +{"id":"113265","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"38096","label":"picking indian almond up","template":"Picking [something] up","placeholders":["indian almond"]}, +{"id":"93249","label":"moving leaf up","template":"Moving [something] up","placeholders":["leaf"]}, +{"id":"160988","label":"moving bike closer to chair","template":"Moving [something] closer to [something]","placeholders":["bike","chair"]}, +{"id":"153090","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"102063","label":"holding dog toy behind fan","template":"Holding [something] behind [something]","placeholders":["dog toy","fan"]}, +{"id":"76998","label":"lifting up one end of folder, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["folder"]}, +{"id":"5685","label":"pretending to open a beer bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a beer bottle"]}, +{"id":"89697","label":"trying but failing to attach a paper to a paper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","a paper"]}, +{"id":"208350","label":"plugging usb cord into usb hub","template":"Plugging [something] into [something]","placeholders":["usb cord","usb hub"]}, +{"id":"83063","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"52198","label":"putting bottle onto cup","template":"Putting [something] onto [something]","placeholders":["bottle","cup"]}, +{"id":"107007","label":"putting hair clip that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["hair clip"]}, +{"id":"189788","label":"moving tape measure down","template":"Moving [something] down","placeholders":["tape measure"]}, +{"id":"214029","label":"holding a spec in front of the switch board","template":"Holding [something] in front of [something]","placeholders":["a spec","the switch board"]}, +{"id":"30671","label":"holding small stone over paper","template":"Holding [something] over [something]","placeholders":["small stone","paper"]}, +{"id":"200578","label":"pouring coffee into mug","template":"Pouring [something] into [something]","placeholders":["coffee","mug"]}, +{"id":"55121","label":"pushing a coin so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a coin"]}, +{"id":"170289","label":"throwing bottle in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bottle"]}, +{"id":"17838","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"139308","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"208063","label":"tipping a book over","template":"Tipping [something] over","placeholders":["a book"]}, +{"id":"137678","label":"throwing a keyring onto a surface","template":"Throwing [something] onto a surface","placeholders":["a keyring"]}, +{"id":"121617","label":"pushing a hair curler so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a hair curler"]}, +{"id":"48526","label":"showing a photo of a table to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a table"]}, +{"id":"5804","label":"moving a card away from a box","template":"Moving [something] away from [something]","placeholders":["a card","a box"]}, +{"id":"81430","label":"stacking 3 book/dvd case/booklet","template":"Stacking [number of] [something]","placeholders":["3","book/dvd case/booklet"]}, +{"id":"75240","label":"moving a water bottle closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a water bottle","a mug"]}, +{"id":"189373","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"53528","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"220045","label":"holding book in front of books","template":"Holding [something] in front of [something]","placeholders":["book","books"]}, +{"id":"54973","label":"putting 2 hair clips onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair clips","yellow note"]}, +{"id":"71770","label":"covering tape with shirt","template":"Covering [something] with [something]","placeholders":["tape","shirt"]}, +{"id":"65609","label":"taking pen from stool","template":"Taking [something] from [somewhere]","placeholders":["pen","stool"]}, +{"id":"108186","label":"putting bottle and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","pen"]}, +{"id":"203875","label":"squeezing squeezing power bank","template":"Squeezing [something]","placeholders":["squeezing power bank"]}, +{"id":"57691","label":"holding an eraser","template":"Holding [something]","placeholders":["an eraser"]}, +{"id":"211943","label":"trying to pour tea into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["tea","a cup"]}, +{"id":"198919","label":"tilting purse with keychain on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["purse","keychain"]}, +{"id":"140875","label":"bending wooden reeper until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden reeper"]}, +{"id":"211255","label":"holding auto toy","template":"Holding [something]","placeholders":["auto toy"]}, +{"id":"81113","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"67285","label":"moving sheild away from drum","template":"Moving [something] away from [something]","placeholders":["sheild","drum"]}, +{"id":"189110","label":"throwing towel in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["towel"]}, +{"id":"168685","label":"showing pen to the camera","template":"Showing [something] to the camera","placeholders":["pen"]}, +{"id":"152226","label":"throwing a junggling ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a junggling ball"]}, +{"id":"187888","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43517","label":"pretending to pick microsd card up","template":"Pretending to pick [something] up","placeholders":["microsd card"]}, +{"id":"47014","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"39894","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"142895","label":"moving wood down","template":"Moving [something] down","placeholders":["wood"]}, +{"id":"182882","label":"moving an eraser and a bottlecap closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["an eraser","a bottlecap"]}, +{"id":"111961","label":"closing the door","template":"Closing [something]","placeholders":["the door"]}, +{"id":"147000","label":"letting empty bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["empty bottle"]}, +{"id":"50040","label":"lifting orange bowl up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["orange bowl"]}, +{"id":"143551","label":"pretending or failing to wipe chip off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["chip","chair"]}, +{"id":"200050","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"83237","label":"pretending to squeeze socks","template":"Pretending to squeeze [something]","placeholders":["socks"]}, +{"id":"23522","label":"putting a q-tip upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a q-tip"]}, +{"id":"101614","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"103948","label":"poking red bottlecap so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["red bottlecap"]}, +{"id":"187563","label":"package colliding with package and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["package","package"]}, +{"id":"94045","label":"throwing box against book","template":"Throwing [something] against [something]","placeholders":["box","book"]}, +{"id":"88138","label":"showing that case is empty","template":"Showing that [something] is empty","placeholders":["case"]}, +{"id":"193659","label":"taking a card out of the bag","template":"Taking [something] out of [something]","placeholders":["a card","the bag"]}, +{"id":"181581","label":"showing a photo of a car to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a car"]}, +{"id":"69608","label":"taking currency from table","template":"Taking [something] from [somewhere]","placeholders":["currency","table"]}, +{"id":"164943","label":"trying to bend an ink pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["an ink pen"]}, +{"id":"49773","label":"squeezing a cottonball","template":"Squeezing [something]","placeholders":["a cottonball"]}, +{"id":"75340","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"128828","label":"folding documents","template":"Folding [something]","placeholders":["documents"]}, +{"id":"92550","label":"pretending to turn the bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["the bottle"]}, +{"id":"54941","label":"moving potato and potato away from each other","template":"Moving [something] and [something] away from each other","placeholders":["potato","potato"]}, +{"id":"84721","label":"pretending to close vitamins without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["vitamins"]}, +{"id":"91684","label":"turning the camera upwards while filming pipes","template":"Turning the camera upwards while filming [something]","placeholders":["pipes"]}, +{"id":"185482","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"90490","label":"plugging cabel into switch but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cabel","switch"]}, +{"id":"96671","label":"picking tea tumbler up","template":"Picking [something] up","placeholders":["tea tumbler"]}, +{"id":"17181","label":"showing roundabout children's play equipment to the camera","template":"Showing [something] to the camera","placeholders":["roundabout children's play equipment"]}, +{"id":"91637","label":"stuffing a rag into canister","template":"Stuffing [something] into [something]","placeholders":["a rag","canister"]}, +{"id":"35234","label":"tipping a pill bottle over","template":"Tipping [something] over","placeholders":["a pill bottle"]}, +{"id":"27892","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"54739","label":"pulling two ends of pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["pen"]}, +{"id":"102171","label":"spreading books onto chair","template":"Spreading [something] onto [something]","placeholders":["books","chair"]}, +{"id":"120079","label":"scooping sugar up with a spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","a spoon"]}, +{"id":"137576","label":"pretending to sprinkle air onto keyboard","template":"Pretending to sprinkle air onto [something]","placeholders":["keyboard"]}, +{"id":"146224","label":"pretending to turn a jar upside down","template":"Pretending to turn [something] upside down","placeholders":["a jar"]}, +{"id":"112090","label":"putting paper underneath books","template":"Putting [something] underneath [something]","placeholders":["paper","books"]}, +{"id":"108337","label":"showing a shoe behind a shoe","template":"Showing [something] behind [something]","placeholders":["a shoe","a shoe"]}, +{"id":"64531","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"59546","label":"pushing small freshmints from right to left","template":"Pushing [something] from right to left","placeholders":["small freshmints"]}, +{"id":"129519","label":"putting a cylindrical box in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a cylindrical box","a cup"]}, +{"id":"156515","label":"piling cushions up","template":"Piling [something] up","placeholders":["cushions"]}, +{"id":"172967","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"90357","label":"pulling mobile phone from right to left","template":"Pulling [something] from right to left","placeholders":["mobile phone"]}, +{"id":"3866","label":"taking marker out of mug","template":"Taking [something] out of [something]","placeholders":["marker","mug"]}, +{"id":"179739","label":"dropping magazine onto floor","template":"Dropping [something] onto [something]","placeholders":["magazine","floor"]}, +{"id":"117781","label":"putting a phone next to a key ring","template":"Putting [something] next to [something]","placeholders":["a phone","a key ring"]}, +{"id":"196568","label":"bending matchstick until it breaks","template":"Bending [something] until it breaks","placeholders":["matchstick"]}, +{"id":"114772","label":"putting phone on a surface","template":"Putting [something] on a surface","placeholders":["phone"]}, +{"id":"90916","label":"moving pen away from glass","template":"Moving [something] away from [something]","placeholders":["pen","glass"]}, +{"id":"87616","label":"moving wooden puppet down","template":"Moving [something] down","placeholders":["wooden puppet"]}, +{"id":"98227","label":"putting leather bag underneath table","template":"Putting [something] underneath [something]","placeholders":["leather bag","table"]}, +{"id":"79154","label":"moving something and something closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["something","something"]}, +{"id":"69499","label":"lifting spanner up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spanner"]}, +{"id":"186044","label":"putting a bulb underneath scooter","template":"Putting [something] underneath [something]","placeholders":["a bulb","scooter"]}, +{"id":"177523","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"41553","label":"pouring tea from glass onto a cup","template":"Pouring [something] onto [something]","placeholders":["tea from glass","a cup"]}, +{"id":"73306","label":"pulling packet out of jar","template":"Pulling [something] out of [something]","placeholders":["packet","jar"]}, +{"id":"89190","label":"covering a stuffed animal with a pillow","template":"Covering [something] with [something]","placeholders":["a stuffed animal","a pillow"]}, +{"id":"203848","label":"covering a book with a blanket","template":"Covering [something] with [something]","placeholders":["a book","a blanket"]}, +{"id":"93475","label":"covering eraser with cloth","template":"Covering [something] with [something]","placeholders":["eraser","cloth"]}, +{"id":"62508","label":"dropping watch onto carpet","template":"Dropping [something] onto [something]","placeholders":["watch","carpet"]}, +{"id":"80026","label":"sprinkling baby powder onto desk","template":"Sprinkling [something] onto [something]","placeholders":["baby powder","desk"]}, +{"id":"128538","label":"taking straightner from table","template":"Taking [something] from [somewhere]","placeholders":["straightner","table"]}, +{"id":"188948","label":"pretending to turn scotch tape upside down","template":"Pretending to turn [something] upside down","placeholders":["scotch tape"]}, +{"id":"98593","label":"putting notebook next to flower","template":"Putting [something] next to [something]","placeholders":["notebook","flower"]}, +{"id":"143946","label":"pretending to close container without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["container"]}, +{"id":"84894","label":"failing to put grains packet into plastic container because plastic container does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["grains packet","plastic container","plastic container"]}, +{"id":"129654","label":"pulling a box from left to right","template":"Pulling [something] from left to right","placeholders":["a box"]}, +{"id":"58289","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"43323","label":"turning the camera left while filming boat","template":"Turning the camera left while filming [something]","placeholders":["boat"]}, +{"id":"31877","label":"pushing pencil box from left to right","template":"Pushing [something] from left to right","placeholders":["pencil box"]}, +{"id":"19983","label":"stuffing a thermometer into a drawer","template":"Stuffing [something] into [something]","placeholders":["a thermometer","a drawer"]}, +{"id":"219481","label":"putting a trimmer on a surface","template":"Putting [something] on a surface","placeholders":["a trimmer"]}, +{"id":"38898","label":"holding coffee mug in front of plant","template":"Holding [something] in front of [something]","placeholders":["coffee mug","plant"]}, +{"id":"137747","label":"putting box, flower and key on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","flower","key"]}, +{"id":"128243","label":"wiping milk off of wood table","template":"Wiping [something] off of [something]","placeholders":["milk","wood table"]}, +{"id":"76129","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"34028","label":"moving spoon and stapler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","stapler"]}, +{"id":"177181","label":"showing figure behind wallet","template":"Showing [something] behind [something]","placeholders":["figure","wallet"]}, +{"id":"174854","label":"opening the cover of a paperback book","template":"Opening [something]","placeholders":["the cover of a paperback book"]}, +{"id":"73297","label":"poking a nailpolish bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a nailpolish bottle"]}, +{"id":"109980","label":"pretending to poke spoon","template":"Pretending to poke [something]","placeholders":["spoon"]}, +{"id":"123926","label":"moving a glass jar up","template":"Moving [something] up","placeholders":["a glass jar"]}, +{"id":"130986","label":"putting hollow pipe on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["hollow pipe"]}, +{"id":"19852","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"125531","label":"pretending to take a ball from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a ball","the table"]}, +{"id":"52630","label":"dropping a ball into a bucket","template":"Dropping [something] into [something]","placeholders":["a ball","a bucket"]}, +{"id":"207782","label":"putting toy on a surface","template":"Putting [something] on a surface","placeholders":["toy"]}, +{"id":"199509","label":"opening candle","template":"Opening [something]","placeholders":["candle"]}, +{"id":"167392","label":"stuffing a sweatshirt into a bag","template":"Stuffing [something] into [something]","placeholders":["a sweatshirt","a bag"]}, +{"id":"51768","label":"moving a coaster and remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a coaster","remote control"]}, +{"id":"8956","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"184905","label":"moving something towards the camera","template":"Moving [something] towards the camera","placeholders":["something"]}, +{"id":"13409","label":"showing that milk is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["milk","a cup"]}, +{"id":"157090","label":"putting keys behind bag","template":"Putting [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"200835","label":"pretending to put cloth on a surface","template":"Pretending to put [something] on a surface","placeholders":["cloth"]}, +{"id":"74973","label":"tipping cigarette pack with cigarette over, so cigarette falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cigarette pack","cigarette","cigarette"]}, +{"id":"19175","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"79595","label":"pulling two ends of a scarf so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a scarf"]}, +{"id":"11418","label":"lifting sand bag up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["sand bag"]}, +{"id":"135641","label":"plugging cellphone cord into outlet strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cellphone cord","outlet strip"]}, +{"id":"119177","label":"dropping coins into a jar","template":"Dropping [something] into [something]","placeholders":["coins","a jar"]}, +{"id":"204293","label":"flashlight falling like a rock","template":"[Something] falling like a rock","placeholders":["flashlight"]}, +{"id":"215591","label":"putting crayon into mug","template":"Putting [something] into [something]","placeholders":["crayon","mug"]}, +{"id":"65550","label":"turning glasses upside down","template":"Turning [something] upside down","placeholders":["glasses"]}, +{"id":"87257","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"128892","label":"closing mobile phone cover","template":"Closing [something]","placeholders":["mobile phone cover"]}, +{"id":"15179","label":"putting books into bag","template":"Putting [something] into [something]","placeholders":["books","bag"]}, +{"id":"25922","label":"putting a bottle behind bowl","template":"Putting [something] behind [something]","placeholders":["a bottle","bowl"]}, +{"id":"13441","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"18067","label":"holding candlestick in front of globe","template":"Holding [something] in front of [something]","placeholders":["candlestick","globe"]}, +{"id":"61424","label":"touching (without moving) the container of a candle","template":"Touching (without moving) [part] of [something]","placeholders":["the container","a candle"]}, +{"id":"88617","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"196340","label":"putting coin next to pencil","template":"Putting [something] next to [something]","placeholders":["coin","pencil"]}, +{"id":"209619","label":"turning the camera upwards while filming picture","template":"Turning the camera upwards while filming [something]","placeholders":["picture"]}, +{"id":"76217","label":"spreading peanut butter onto toast","template":"Spreading [something] onto [something]","placeholders":["peanut butter","toast"]}, +{"id":"37136","label":"pushing toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy"]}, +{"id":"23480","label":"covering a candle with a plastic lid","template":"Covering [something] with [something]","placeholders":["a candle","a plastic lid"]}, +{"id":"209363","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"19620","label":"tearing a post-it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a post-it note"]}, +{"id":"50612","label":"showing that the thermos is empty","template":"Showing that [something] is empty","placeholders":["the thermos"]}, +{"id":"209686","label":"moving teddy bear and stuffed toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["teddy bear","stuffed toy"]}, +{"id":"156465","label":"pretending to pick eraser up","template":"Pretending to pick [something] up","placeholders":["eraser"]}, +{"id":"211470","label":"holding flower next to glasses","template":"Holding [something] next to [something]","placeholders":["flower","glasses"]}, +{"id":"218248","label":"pulling water bottle from behind of television","template":"Pulling [something] from behind of [something]","placeholders":["water bottle","television"]}, +{"id":"158681","label":"pushing empty soda bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["empty soda bottle"]}, +{"id":"62503","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"106326","label":"spilling coffee onto table","template":"Spilling [something] onto [something]","placeholders":["coffee","table"]}, +{"id":"220052","label":"moving a cup and a fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","a fork"]}, +{"id":"65086","label":"taking discount cards","template":"Taking [one of many similar things on the table]","placeholders":["discount cards"]}, +{"id":"65220","label":"opening kitchen cabinet","template":"Opening [something]","placeholders":["kitchen cabinet"]}, +{"id":"99106","label":"tearing pomegranate peel just a little bit","template":"Tearing [something] just a little bit","placeholders":["pomegranate peel"]}, +{"id":"121709","label":"pushing a bottle with a bottle","template":"Pushing [something] with [something]","placeholders":["a bottle","a bottle"]}, +{"id":"38160","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"15210","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"122604","label":"putting toy idol next to hair band","template":"Putting [something] next to [something]","placeholders":["toy idol","hair band"]}, +{"id":"62151","label":"throwing wallet in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["wallet"]}, +{"id":"163933","label":"letting a scotch roll roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a scotch roll"]}, +{"id":"15724","label":"uncovering slippers","template":"Uncovering [something]","placeholders":["slippers"]}, +{"id":"209553","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"67525","label":"pushing orange notebook from left to right","template":"Pushing [something] from left to right","placeholders":["orange notebook"]}, +{"id":"214485","label":"moving shampoo bottle and tumbler closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["shampoo bottle","tumbler"]}, +{"id":"55951","label":"lifting cutting board with lid on it","template":"Lifting [something] with [something] on it","placeholders":["cutting board","lid"]}, +{"id":"114957","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"55452","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"212195","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"183420","label":"showing gear wheel next to green toy car","template":"Showing [something] next to [something]","placeholders":["gear wheel","green toy car"]}, +{"id":"46965","label":"dropping a card next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a card","a shoe brush"]}, +{"id":"154894","label":"holding pill over bottle","template":"Holding [something] over [something]","placeholders":["pill","bottle"]}, +{"id":"69508","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"18567","label":"pretending to close trunk box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["trunk box"]}, +{"id":"123383","label":"pretending to be tearing bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bag"]}, +{"id":"73388","label":"dropping a hairclip next to a keybound","template":"Dropping [something] next to [something]","placeholders":["a hairclip","a keybound"]}, +{"id":"150709","label":"putting marker upright on the table","template":"Putting [something] upright on the table","placeholders":["marker"]}, +{"id":"35063","label":"piling blankets up","template":"Piling [something] up","placeholders":["blankets"]}, +{"id":"173258","label":"moving cloth and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cloth","cup"]}, +{"id":"216982","label":"holding a bottle behind a laptop","template":"Holding [something] behind [something]","placeholders":["a bottle","a laptop"]}, +{"id":"172225","label":"plugging usb cable into powerbank","template":"Plugging [something] into [something]","placeholders":["usb cable","powerbank"]}, +{"id":"65822","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"6422","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"121085","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43262","label":"rolling an apple on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an apple"]}, +{"id":"188196","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"179063","label":"uncovering cans","template":"Uncovering [something]","placeholders":["cans"]}, +{"id":"202040","label":"spilling water onto a chair","template":"Spilling [something] onto [something]","placeholders":["water","a chair"]}, +{"id":"191667","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"22216","label":"lifting something up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["something"]}, +{"id":"136018","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"16667","label":"lifting glue stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["glue stick"]}, +{"id":"55635","label":"pouring water onto plate","template":"Pouring [something] onto [something]","placeholders":["water","plate"]}, +{"id":"18160","label":"stacking 3 sticky notes","template":"Stacking [number of] [something]","placeholders":["3","sticky notes"]}, +{"id":"159330","label":"wiping salt off of a table","template":"Wiping [something] off of [something]","placeholders":["salt","a table"]}, +{"id":"25499","label":"lifting a glasses case up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a glasses case"]}, +{"id":"205981","label":"covering red spoon with cookie box lid","template":"Covering [something] with [something]","placeholders":["red spoon","cookie box lid"]}, +{"id":"141930","label":"moving mic and speaker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mic","speaker"]}, +{"id":"117960","label":"taking iron box from table","template":"Taking [something] from [somewhere]","placeholders":["iron box","table"]}, +{"id":"74628","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"128034","label":"moving notebook towards the camera","template":"Moving [something] towards the camera","placeholders":["notebook"]}, +{"id":"207810","label":"touching (without moving) handle of door","template":"Touching (without moving) [part] of [something]","placeholders":["handle","door"]}, +{"id":"191435","label":"uncovering lighter","template":"Uncovering [something]","placeholders":["lighter"]}, +{"id":"131120","label":"putting a glass next to other already on table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a glass next to other already on table"]}, +{"id":"55552","label":"putting a bottle into a vase","template":"Putting [something] into [something]","placeholders":["a bottle","a vase"]}, +{"id":"210371","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"134767","label":"moving pen and ruler closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","ruler"]}, +{"id":"101181","label":"lifting a bottle up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a bottle"]}, +{"id":"84729","label":"moving a body pillow and a smaller pillow away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a body pillow","a smaller pillow"]}, +{"id":"108841","label":"lifting a wooden stick up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a wooden stick"]}, +{"id":"177590","label":"opening a can","template":"Opening [something]","placeholders":["a can"]}, +{"id":"98251","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"163654","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"169292","label":"taking leaf","template":"Taking [one of many similar things on the table]","placeholders":["leaf"]}, +{"id":"128494","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"74815","label":"putting camera underneath table","template":"Putting [something] underneath [something]","placeholders":["camera","table"]}, +{"id":"91484","label":"dropping cigarette lighter in front of battery","template":"Dropping [something] in front of [something]","placeholders":["cigarette lighter","battery"]}, +{"id":"67171","label":"lifting a surface with bowl on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["bowl"]}, +{"id":"200433","label":"moving badge down","template":"Moving [something] down","placeholders":["badge"]}, +{"id":"43021","label":"rolling glass on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["glass"]}, +{"id":"186285","label":"putting cutting board upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["cutting board"]}, +{"id":"71966","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"68920","label":"letting toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy"]}, +{"id":"44816","label":"putting a can behind a can","template":"Putting [something] behind [something]","placeholders":["a can","a can"]}, +{"id":"125234","label":"plugging phone changer into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone changer","outlet"]}, +{"id":"72541","label":"turning the camera left while filming mobile phone","template":"Turning the camera left while filming [something]","placeholders":["mobile phone"]}, +{"id":"195830","label":"moving phone and notebook closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["phone","notebook"]}, +{"id":"113707","label":"covering goggles with cloth","template":"Covering [something] with [something]","placeholders":["goggles","cloth"]}, +{"id":"218616","label":"lifting coin with coin on it","template":"Lifting [something] with [something] on it","placeholders":["coin","coin"]}, +{"id":"141133","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"10101","label":"plugging a charging cord into a bluetooth","template":"Plugging [something] into [something]","placeholders":["a charging cord","a bluetooth"]}, +{"id":"217049","label":"lime colliding with lime and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["lime","lime"]}, +{"id":"26650","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"169945","label":"putting button","template":"Putting [something similar to other things that are already on the table]","placeholders":["button"]}, +{"id":"47164","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"130407","label":"picking comb up","template":"Picking [something] up","placeholders":["comb"]}, +{"id":"212401","label":"holding a magazine next to a dog water bowl","template":"Holding [something] next to [something]","placeholders":["a magazine","a dog water bowl"]}, +{"id":"47739","label":"attaching usb to laptop","template":"Attaching [something] to [something]","placeholders":["usb","laptop"]}, +{"id":"65433","label":"squeezing a can","template":"Squeezing [something]","placeholders":["a can"]}, +{"id":"134701","label":"putting ink bottle and clip box on the table","template":"Putting [something] and [something] on the table","placeholders":["ink bottle","clip box"]}, +{"id":"201473","label":"stuffing paper into block","template":"Stuffing [something] into [something]","placeholders":["paper","block"]}, +{"id":"46193","label":"moving bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["bottle"]}, +{"id":"104061","label":"plugging mouse into laptop","template":"Plugging [something] into [something]","placeholders":["mouse","laptop"]}, +{"id":"13680","label":"putting notebook and pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["notebook and pen"]}, +{"id":"203065","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"210917","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"209684","label":"holding white toy car next to green toy car","template":"Holding [something] next to [something]","placeholders":["white toy car","green toy car"]}, +{"id":"136695","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"196329","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"157167","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"27048","label":"pouring water into a bowl","template":"Pouring [something] into [something]","placeholders":["water","a bowl"]}, +{"id":"202463","label":"pushing lipbalm off of table","template":"Pushing [something] off of [something]","placeholders":["lipbalm","table"]}, +{"id":"208453","label":"pushing case so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["case"]}, +{"id":"188913","label":"putting toy wheel in front of rubix cube","template":"Putting [something] in front of [something]","placeholders":["toy wheel","rubix cube"]}, +{"id":"161711","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"126217","label":"moving mug and glass so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["mug","glass"]}, +{"id":"184814","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"89781","label":"holding a mug over a hat","template":"Holding [something] over [something]","placeholders":["a mug","a hat"]}, +{"id":"208684","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"82785","label":"pushing a tissue box off of a table","template":"Pushing [something] off of [something]","placeholders":["a tissue box","a table"]}, +{"id":"68032","label":"opening soda can","template":"Opening [something]","placeholders":["soda can"]}, +{"id":"123269","label":"pretending to sprinkle air onto cat","template":"Pretending to sprinkle air onto [something]","placeholders":["cat"]}, +{"id":"188627","label":"pretending to pour sauce out of frying-pan, but frying-pan is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["sauce","frying-pan","frying-pan"]}, +{"id":"52171","label":"holding usb flash drive","template":"Holding [something]","placeholders":["usb flash drive"]}, +{"id":"139515","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"144694","label":"plugging a cable into a phone","template":"Plugging [something] into [something]","placeholders":["a cable","a phone"]}, +{"id":"156446","label":"attaching mega block to mega block","template":"Attaching [something] to [something]","placeholders":["mega block","mega block"]}, +{"id":"134172","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"134501","label":"poking a stack of shoes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["shoes"]}, +{"id":"192841","label":"tipping trash can with trash over, so trash falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["trash can","trash","trash"]}, +{"id":"26207","label":"pushing palstic glass so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["palstic glass"]}, +{"id":"61328","label":"showing that pink cup is empty","template":"Showing that [something] is empty","placeholders":["pink cup"]}, +{"id":"205853","label":"pushing mouse with mug","template":"Pushing [something] with [something]","placeholders":["mouse","mug"]}, +{"id":"144792","label":"holding ipad next to plastic cup","template":"Holding [something] next to [something]","placeholders":["ipad","plastic cup"]}, +{"id":"12793","label":"moving torch and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["torch","bottle"]}, +{"id":"169931","label":"poking a stack of blocks without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["blocks"]}, +{"id":"36593","label":"moving ramekin closer to ramekin","template":"Moving [something] closer to [something]","placeholders":["ramekin","ramekin"]}, +{"id":"189126","label":"tipping candle over","template":"Tipping [something] over","placeholders":["candle"]}, +{"id":"211203","label":"tilting wallet with comb on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["wallet","comb"]}, +{"id":"123552","label":"poking a hole into modelling clay","template":"Poking a hole into [something soft]","placeholders":["modelling clay"]}, +{"id":"134661","label":"pretending to put orange next to glasses","template":"Pretending to put [something] next to [something]","placeholders":["orange","glasses"]}, +{"id":"42532","label":"trying but failing to attach rubber band to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["rubber band","fridge"]}, +{"id":"211871","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"31012","label":"pushing pillow off of bed","template":"Pushing [something] off of [something]","placeholders":["pillow","bed"]}, +{"id":"22782","label":"putting a card upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a card"]}, +{"id":"30489","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"146394","label":"showing bag behind scissors","template":"Showing [something] behind [something]","placeholders":["bag","scissors"]}, +{"id":"168783","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"193202","label":"letting a scotch roll roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a scotch roll"]}, +{"id":"117637","label":"moving a glass across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a glass"]}, +{"id":"28285","label":"uncovering teacup","template":"Uncovering [something]","placeholders":["teacup"]}, +{"id":"158531","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"47613","label":"showing that a soda can is empty","template":"Showing that [something] is empty","placeholders":["a soda can"]}, +{"id":"80475","label":"wiping marker off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"81950","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"120157","label":"poking salt shaker so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["salt shaker"]}, +{"id":"82226","label":"pretending to be tearing drumstick","template":"Pretending to be tearing [something that is not tearable]","placeholders":["drumstick"]}, +{"id":"28041","label":"turning the camera left while filming lamp","template":"Turning the camera left while filming [something]","placeholders":["lamp"]}, +{"id":"217373","label":"closing red dairy","template":"Closing [something]","placeholders":["red dairy"]}, +{"id":"69584","label":"dropping stapler next to rubix cube","template":"Dropping [something] next to [something]","placeholders":["stapler","rubix cube"]}, +{"id":"26489","label":"covering smartphone with recipe book","template":"Covering [something] with [something]","placeholders":["smartphone","recipe book"]}, +{"id":"31679","label":"showing orange cup behind red colour clip box","template":"Showing [something] behind [something]","placeholders":["orange cup","red colour clip box"]}, +{"id":"72400","label":"trying to pour water into a bowl, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a bowl"]}, +{"id":"152222","label":"lifting radio up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["radio"]}, +{"id":"137772","label":"pushing nail polish from left to right","template":"Pushing [something] from left to right","placeholders":["nail polish"]}, +{"id":"131054","label":"twisting pencil case","template":"Twisting [something]","placeholders":["pencil case"]}, +{"id":"130173","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"119812","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"168638","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"140274","label":"closing a tap","template":"Closing [something]","placeholders":["a tap"]}, +{"id":"41816","label":"showing car next to bike","template":"Showing [something] next to [something]","placeholders":["car","bike"]}, +{"id":"73957","label":"putting toothbrush on a surface","template":"Putting [something] on a surface","placeholders":["toothbrush"]}, +{"id":"66739","label":"plugging a plug into socket","template":"Plugging [something] into [something]","placeholders":["a plug","socket"]}, +{"id":"5630","label":"pretending to pick apple up","template":"Pretending to pick [something] up","placeholders":["apple"]}, +{"id":"99234","label":"pulling diaper from left to right","template":"Pulling [something] from left to right","placeholders":["diaper"]}, +{"id":"142212","label":"pushing black pencil sharpner with screw driver","template":"Pushing [something] with [something]","placeholders":["black pencil sharpner","screw driver"]}, +{"id":"133665","label":"pulling can from behind of sofa","template":"Pulling [something] from behind of [something]","placeholders":["can","sofa"]}, +{"id":"27009","label":"putting matchbox into mug","template":"Putting [something] into [something]","placeholders":["matchbox","mug"]}, +{"id":"114276","label":"showing jar behind deodorant","template":"Showing [something] behind [something]","placeholders":["jar","deodorant"]}, +{"id":"1481","label":"holding pen behind roll of tape","template":"Holding [something] behind [something]","placeholders":["pen","roll of tape"]}, +{"id":"105273","label":"moving keyboard up","template":"Moving [something] up","placeholders":["keyboard"]}, +{"id":"122910","label":"closing wooden box","template":"Closing [something]","placeholders":["wooden box"]}, +{"id":"100849","label":"trying to bend a hammer so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a hammer"]}, +{"id":"201889","label":"putting box in front of purse","template":"Putting [something] in front of [something]","placeholders":["box","purse"]}, +{"id":"132413","label":"putting paper underneath book","template":"Putting [something] underneath [something]","placeholders":["paper","book"]}, +{"id":"83984","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"69393","label":"taking a onion from a cover","template":"Taking [something] from [somewhere]","placeholders":["a onion","a cover"]}, +{"id":"308","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"93524","label":"pulling two ends of a toy but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a toy"]}, +{"id":"103563","label":"moving key down","template":"Moving [something] down","placeholders":["key"]}, +{"id":"888","label":"spreading honey onto plate","template":"Spreading [something] onto [something]","placeholders":["honey","plate"]}, +{"id":"104088","label":"spinning hair brush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["hair brush"]}, +{"id":"158964","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"103136","label":"turning body spray upside down","template":"Turning [something] upside down","placeholders":["body spray"]}, +{"id":"43350","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"60466","label":"showing spoon on top of mug","template":"Showing [something] on top of [something]","placeholders":["spoon","mug"]}, +{"id":"186632","label":"closing a cupboard","template":"Closing [something]","placeholders":["a cupboard"]}, +{"id":"131351","label":"squeezing foot cream","template":"Squeezing [something]","placeholders":["foot cream"]}, +{"id":"153174","label":"dropping a feeding bottle in front of camera","template":"Dropping [something] in front of [something]","placeholders":["a feeding bottle","camera"]}, +{"id":"83648","label":"showing acrobatic show to the camera","template":"Showing [something] to the camera","placeholders":["acrobatic show"]}, +{"id":"148014","label":"putting spring and stapler on the table","template":"Putting [something] and [something] on the table","placeholders":["spring","stapler"]}, +{"id":"135112","label":"poking sneaker so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["sneaker"]}, +{"id":"178554","label":"taking hairbrush","template":"Taking [one of many similar things on the table]","placeholders":["hairbrush"]}, +{"id":"180728","label":"putting scissors into drawer","template":"Putting [something] into [something]","placeholders":["scissors","drawer"]}, +{"id":"97039","label":"turning the camera downwards while filming pictures","template":"Turning the camera downwards while filming [something]","placeholders":["pictures"]}, +{"id":"215189","label":"rolling rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling ball"]}, +{"id":"154372","label":"putting divide into box","template":"Putting [something] into [something]","placeholders":["divide","box"]}, +{"id":"196092","label":"closing wallet","template":"Closing [something]","placeholders":["wallet"]}, +{"id":"119858","label":"holding paper in front of cabinet","template":"Holding [something] in front of [something]","placeholders":["paper","cabinet"]}, +{"id":"179523","label":"poking tube so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tube"]}, +{"id":"195662","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"31045","label":"covering a red pencil with a piece of paper","template":"Covering [something] with [something]","placeholders":["a red pencil","a piece of paper"]}, +{"id":"119257","label":"taking the lipstick out of the purse","template":"Taking [something] out of [something]","placeholders":["the lipstick","the purse"]}, +{"id":"98917","label":"moving ball of mouse","template":"Moving [part] of [something]","placeholders":["ball","mouse"]}, +{"id":"158789","label":"trying to pour water into mug, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","mug"]}, +{"id":"105173","label":"spilling water next to a pencil","template":"Spilling [something] next to [something]","placeholders":["water","a pencil"]}, +{"id":"171019","label":"a bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["a bottle"]}, +{"id":"91241","label":"pushing bottle cap from left to right","template":"Pushing [something] from left to right","placeholders":["bottle cap"]}, +{"id":"200417","label":"pushing a fan from right to left","template":"Pushing [something] from right to left","placeholders":["a fan"]}, +{"id":"133738","label":"moving black play cards up","template":"Moving [something] up","placeholders":["black play cards"]}, +{"id":"182118","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"129824","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"46186","label":"holding bottle over sunglasses","template":"Holding [something] over [something]","placeholders":["bottle","sunglasses"]}, +{"id":"83617","label":"pretending to scoop protein powder up with a spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["protein powder","a spoon"]}, +{"id":"105880","label":"throwing television remote in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["television remote"]}, +{"id":"25013","label":"putting three blocks onto pillow","template":"Putting [number of] [something] onto [something]","placeholders":["three","blocks","pillow"]}, +{"id":"154714","label":"putting egg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["egg"]}, +{"id":"200099","label":"dropping lid behind box","template":"Dropping [something] behind [something]","placeholders":["lid","box"]}, +{"id":"82959","label":"unfolding a dish towel","template":"Unfolding [something]","placeholders":["a dish towel"]}, +{"id":"9574","label":"pushing a water bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a water bottle"]}, +{"id":"126933","label":"turning pen upside down","template":"Turning [something] upside down","placeholders":["pen"]}, +{"id":"124679","label":"holding mug over plastic canister","template":"Holding [something] over [something]","placeholders":["mug","plastic canister"]}, +{"id":"210563","label":"putting paper underneath tablet","template":"Putting [something] underneath [something]","placeholders":["paper","tablet"]}, +{"id":"110223","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"62498","label":"throwing usb cable in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["usb cable"]}, +{"id":"196448","label":"pushing nail paint remover from left to right","template":"Pushing [something] from left to right","placeholders":["nail paint remover"]}, +{"id":"187914","label":"holding bb-8 cup","template":"Holding [something]","placeholders":["bb-8 cup"]}, +{"id":"18814","label":"covering coin with paper","template":"Covering [something] with [something]","placeholders":["coin","paper"]}, +{"id":"193889","label":"showing that bin is empty","template":"Showing that [something] is empty","placeholders":["bin"]}, +{"id":"47838","label":"dropping a peg next to an envelope","template":"Dropping [something] next to [something]","placeholders":["a peg","an envelope"]}, +{"id":"80909","label":"dropping hammer behind couch","template":"Dropping [something] behind [something]","placeholders":["hammer","couch"]}, +{"id":"174093","label":"moving cup and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","spoon"]}, +{"id":"145648","label":"turning the camera downwards while filming books","template":"Turning the camera downwards while filming [something]","placeholders":["books"]}, +{"id":"80800","label":"pretending or failing to wipe fingerprints off of cell phone","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["fingerprints","cell phone"]}, +{"id":"165663","label":"pulling two ends of box but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["box"]}, +{"id":"67036","label":"hitting mug with cable","template":"Hitting [something] with [something]","placeholders":["mug","cable"]}, +{"id":"60895","label":"pushing a stuffed animal off of a couch","template":"Pushing [something] off of [something]","placeholders":["a stuffed animal","a couch"]}, +{"id":"170139","label":"holding a matchbox over a padlock","template":"Holding [something] over [something]","placeholders":["a matchbox","a padlock"]}, +{"id":"47614","label":"moving lid of glass jar","template":"Moving [part] of [something]","placeholders":["lid","glass jar"]}, +{"id":"140416","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"30354","label":"throwing powder bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["powder bottle"]}, +{"id":"198834","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"88675","label":"showing coin on top of box","template":"Showing [something] on top of [something]","placeholders":["coin","box"]}, +{"id":"138128","label":"pretending to put cellphone on a surface","template":"Pretending to put [something] on a surface","placeholders":["cellphone"]}, +{"id":"219934","label":"scooping rice up with spoon","template":"Scooping [something] up with [something]","placeholders":["rice","spoon"]}, +{"id":"110931","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"83595","label":"taking muffin out of bin","template":"Taking [something] out of [something]","placeholders":["muffin","bin"]}, +{"id":"99298","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"87436","label":"pushing spoon from right to left","template":"Pushing [something] from right to left","placeholders":["spoon"]}, +{"id":"42282","label":"putting keys into drawer","template":"Putting [something] into [something]","placeholders":["keys","drawer"]}, +{"id":"169352","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"143733","label":"pretending or trying and failing to twist a pen","template":"Pretending or trying and failing to twist [something]","placeholders":["a pen"]}, +{"id":"194764","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"34597","label":"turning the camera left while filming black hat","template":"Turning the camera left while filming [something]","placeholders":["black hat"]}, +{"id":"195603","label":"moving lid of ceramic jar","template":"Moving [part] of [something]","placeholders":["lid","ceramic jar"]}, +{"id":"13187","label":"covering cup with cloth","template":"Covering [something] with [something]","placeholders":["cup","cloth"]}, +{"id":"196741","label":"spilling wine onto a plate","template":"Spilling [something] onto [something]","placeholders":["wine","a plate"]}, +{"id":"65035","label":"putting peeler, keychain and mobile on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["peeler","keychain","mobile"]}, +{"id":"121728","label":"holding mobile next to chair's arm rest","template":"Holding [something] next to [something]","placeholders":["mobile","chair's arm rest"]}, +{"id":"103776","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"195531","label":"pushing toy car onto ramp","template":"Pushing [something] onto [something]","placeholders":["toy car","ramp"]}, +{"id":"19011","label":"lifting up one end of tablet without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["tablet"]}, +{"id":"156833","label":"letting orange roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["orange"]}, +{"id":"54567","label":"attaching a paper to a wall","template":"Attaching [something] to [something]","placeholders":["a paper","a wall"]}, +{"id":"75242","label":"holding toy in front of jar","template":"Holding [something] in front of [something]","placeholders":["toy","jar"]}, +{"id":"59030","label":"pouring milk out of cup","template":"Pouring [something] out of [something]","placeholders":["milk","cup"]}, +{"id":"151432","label":"moving a chestnut across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a chestnut"]}, +{"id":"103475","label":"moving stapler up","template":"Moving [something] up","placeholders":["stapler"]}, +{"id":"195913","label":"pulling a small container from left to right","template":"Pulling [something] from left to right","placeholders":["a small container"]}, +{"id":"128896","label":"sprinkling dessert sprinkles onto a piece of pie.","template":"Sprinkling [something] onto [something]","placeholders":["dessert sprinkles","a piece of pie."]}, +{"id":"209121","label":"throwing plastic bag in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["plastic bag"]}, +{"id":"7698","label":"tilting a book with sunglasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","sunglasses"]}, +{"id":"91013","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"56033","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"131339","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"113236","label":"moving a cup away from the camera","template":"Moving [something] away from the camera","placeholders":["a cup"]}, +{"id":"204394","label":"turning a mobile phone upside down","template":"Turning [something] upside down","placeholders":["a mobile phone"]}, +{"id":"107392","label":"throwing pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pillow"]}, +{"id":"39972","label":"letting tape roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tape"]}, +{"id":"126265","label":"tilting a bottle with water on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a bottle","water"]}, +{"id":"110208","label":"laying lamp on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lamp"]}, +{"id":"33688","label":"putting remote control, wallet and mechanical pencil on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote control","wallet","mechanical pencil"]}, +{"id":"51970","label":"opening water tank","template":"Opening [something]","placeholders":["water tank"]}, +{"id":"5226","label":"uncovering wood spoon","template":"Uncovering [something]","placeholders":["wood spoon"]}, +{"id":"98324","label":"pretending to squeeze a rubber-band ball","template":"Pretending to squeeze [something]","placeholders":["a rubber-band ball"]}, +{"id":"59701","label":"moving smarthphone and book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["smarthphone","book"]}, +{"id":"53508","label":"pretending to take snacks from box","template":"Pretending to take [something] from [somewhere]","placeholders":["snacks","box"]}, +{"id":"26349","label":"tissue paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue paper"]}, +{"id":"55716","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"125137","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"67068","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"124515","label":"throwing an avocado peel onto a surface","template":"Throwing [something] onto a surface","placeholders":["an avocado peel"]}, +{"id":"143265","label":"pushing green water bottle from right to left","template":"Pushing [something] from right to left","placeholders":["green water bottle"]}, +{"id":"204770","label":"tearing tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing tissue"]}, +{"id":"4761","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"215639","label":"holding a cup in front of a clock","template":"Holding [something] in front of [something]","placeholders":["a cup","a clock"]}, +{"id":"152138","label":"dropping rubber onto table","template":"Dropping [something] onto [something]","placeholders":["rubber","table"]}, +{"id":"201098","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"32384","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"90942","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"207247","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"214128","label":"moving top of box","template":"Moving [part] of [something]","placeholders":["top","box"]}, +{"id":"37541","label":"poking box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["box"]}, +{"id":"212575","label":"showing a photo of a wallclock to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a wallclock"]}, +{"id":"173011","label":"pushing a jewellry box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a jewellry box"]}, +{"id":"134649","label":"covering lotion tube with paper","template":"Covering [something] with [something]","placeholders":["lotion tube","paper"]}, +{"id":"145549","label":"throwing key onto a surface","template":"Throwing [something] onto a surface","placeholders":["key"]}, +{"id":"72451","label":"plugging auxiliary cord into speaker","template":"Plugging [something] into [something]","placeholders":["auxiliary cord","speaker"]}, +{"id":"122071","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"55781","label":"pulling white book marker from left to right","template":"Pulling [something] from left to right","placeholders":["white book marker"]}, +{"id":"94975","label":"turning the purse upside down","template":"Turning [something] upside down","placeholders":["the purse"]}, +{"id":"156545","label":"putting punching machine that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["punching machine"]}, +{"id":"218589","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"114783","label":"putting book in front of bag","template":"Putting [something] in front of [something]","placeholders":["book","bag"]}, +{"id":"188350","label":"showing that cinnamon roll is inside container","template":"Showing that [something] is inside [something]","placeholders":["cinnamon roll","container"]}, +{"id":"6039","label":"pushing a toy car from right to left","template":"Pushing [something] from right to left","placeholders":["a toy car"]}, +{"id":"15065","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"174755","label":"bending tie so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tie"]}, +{"id":"180180","label":"pen colliding with cutter and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pen","cutter"]}, +{"id":"206965","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"143971","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"65016","label":"closing cream tube","template":"Closing [something]","placeholders":["cream tube"]}, +{"id":"90817","label":"approaching tyre with your camera","template":"Approaching [something] with your camera","placeholders":["tyre"]}, +{"id":"55167","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"123961","label":"putting pencil onto stapler","template":"Putting [something] onto [something]","placeholders":["pencil","stapler"]}, +{"id":"74258","label":"unfolding blanket","template":"Unfolding [something]","placeholders":["blanket"]}, +{"id":"9741","label":"spinning chopstick that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["chopstick"]}, +{"id":"88816","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"202337","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"92833","label":"pushing telephone from left to right","template":"Pushing [something] from left to right","placeholders":["telephone"]}, +{"id":"52051","label":"spinning a container that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a container"]}, +{"id":"48739","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"132704","label":"showing packet behind flower vase","template":"Showing [something] behind [something]","placeholders":["packet","flower vase"]}, +{"id":"8959","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"174114","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"17584","label":"pushing a coin so it spins","template":"Pushing [something] so it spins","placeholders":["a coin"]}, +{"id":"73972","label":"holding a tape over a coil of wires","template":"Holding [something] over [something]","placeholders":["a tape","a coil of wires"]}, +{"id":"63719","label":"picking sunglasses up","template":"Picking [something] up","placeholders":["sunglasses"]}, +{"id":"158781","label":"dropping a wrapper into the garbage","template":"Dropping [something] into [something]","placeholders":["a wrapper","the garbage"]}, +{"id":"220773","label":"plugging cable into charger","template":"Plugging [something] into [something]","placeholders":["cable","charger"]}, +{"id":"164036","label":"pulling a lipstick from right to left","template":"Pulling [something] from right to left","placeholders":["a lipstick"]}, +{"id":"213589","label":"pretending to close a jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a jar"]}, +{"id":"161282","label":"opening pot","template":"Opening [something]","placeholders":["pot"]}, +{"id":"41243","label":"pretending to sprinkle air onto a rain boot","template":"Pretending to sprinkle air onto [something]","placeholders":["a rain boot"]}, +{"id":"209112","label":"tilting stool with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stool","pen"]}, +{"id":"34149","label":"pretending to take pencils out of a box","template":"Pretending to take [something] out of [something]","placeholders":["pencils","a box"]}, +{"id":"122630","label":"holding mouse over mousepad","template":"Holding [something] over [something]","placeholders":["mouse","mousepad"]}, +{"id":"117327","label":"a bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["a bottle"]}, +{"id":"117935","label":"pretending to put orange underneath notebook","template":"Pretending to put [something] underneath [something]","placeholders":["orange","notebook"]}, +{"id":"67333","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"40187","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"153746","label":"tipping lotion tube over","template":"Tipping [something] over","placeholders":["lotion tube"]}, +{"id":"16654","label":"pushing a scrunchie off of a pen","template":"Pushing [something] off of [something]","placeholders":["a scrunchie","a pen"]}, +{"id":"69817","label":"putting notebook onto notebook","template":"Putting [something] onto [something]","placeholders":["notebook","notebook"]}, +{"id":"207574","label":"putting down another clementine","template":"Putting [something similar to other things that are already on the table]","placeholders":["down another clementine"]}, +{"id":"24027","label":"pushing plate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plate"]}, +{"id":"207000","label":"touching (without moving) the body of a bottle","template":"Touching (without moving) [part] of [something]","placeholders":["the body","a bottle"]}, +{"id":"13717","label":"scooping formula up with measuring scoop","template":"Scooping [something] up with [something]","placeholders":["formula","measuring scoop"]}, +{"id":"137591","label":"holding vape next to drawer","template":"Holding [something] next to [something]","placeholders":["vape","drawer"]}, +{"id":"180741","label":"holding earphone","template":"Holding [something]","placeholders":["earphone"]}, +{"id":"200251","label":"tilting mouse pad with mouse on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["mouse pad","mouse"]}, +{"id":"104561","label":"coin falling like a rock","template":"[Something] falling like a rock","placeholders":["coin"]}, +{"id":"62126","label":"hitting a closed disposable water bottle with a can of beans","template":"Hitting [something] with [something]","placeholders":["a closed disposable water bottle","a can of beans"]}, +{"id":"94398","label":"moving screw down","template":"Moving [something] down","placeholders":["screw"]}, +{"id":"86407","label":"moving ball and ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ball","ball"]}, +{"id":"123478","label":"putting hair clip, toy idol and battery on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hair clip","toy idol","battery"]}, +{"id":"14195","label":"pushing pushing plastic spray so that it falls off of table so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pushing plastic spray so that it falls off of table"]}, +{"id":"211586","label":"moving spoon closer to stapler","template":"Moving [something] closer to [something]","placeholders":["spoon","stapler"]}, +{"id":"55874","label":"moving the back cover of a remote control","template":"Moving [part] of [something]","placeholders":["the back cover","a remote control"]}, +{"id":"1629","label":"tilting a box with earphones on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","earphones"]}, +{"id":"77668","label":"turning the camera upwards while filming scotch tape","template":"Turning the camera upwards while filming [something]","placeholders":["scotch tape"]}, +{"id":"160772","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"79321","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"16665","label":"covering a penny with a tissue","template":"Covering [something] with [something]","placeholders":["a penny","a tissue"]}, +{"id":"130751","label":"showing a photo of a bee to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a bee"]}, +{"id":"126462","label":"pretending to poke a jar","template":"Pretending to poke [something]","placeholders":["a jar"]}, +{"id":"70008","label":"pushing joystick with a scissor","template":"Pushing [something] with [something]","placeholders":["joystick","a scissor"]}, +{"id":"184633","label":"picking laser pointer up","template":"Picking [something] up","placeholders":["laser pointer"]}, +{"id":"182537","label":"lifting paper with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["paper","bottle"]}, +{"id":"128968","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"203832","label":"throwing wallet against wall","template":"Throwing [something] against [something]","placeholders":["wallet","wall"]}, +{"id":"90592","label":"spilling water next to a bowl","template":"Spilling [something] next to [something]","placeholders":["water","a bowl"]}, +{"id":"54649","label":"dropping a book onto a bed","template":"Dropping [something] onto [something]","placeholders":["a book","a bed"]}, +{"id":"69453","label":"scooping die up with spoon","template":"Scooping [something] up with [something]","placeholders":["die","spoon"]}, +{"id":"99183","label":"moving stapler and puncher closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["stapler","puncher"]}, +{"id":"84026","label":"squeezing lemon","template":"Squeezing [something]","placeholders":["lemon"]}, +{"id":"92536","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"161588","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"7474","label":"taking cup from coaster","template":"Taking [something] from [somewhere]","placeholders":["cup","coaster"]}, +{"id":"152046","label":"throwing water bottle","template":"Throwing [something]","placeholders":["water bottle"]}, +{"id":"165846","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"163839","label":"pushing tape so it spins","template":"Pushing [something] so it spins","placeholders":["tape"]}, +{"id":"172428","label":"moving tape down","template":"Moving [something] down","placeholders":["tape"]}, +{"id":"148606","label":"stuffing pen into notebook","template":"Stuffing [something] into [something]","placeholders":["pen","notebook"]}, +{"id":"193958","label":"red marker colliding with blue marker and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["red marker","blue marker"]}, +{"id":"27512","label":"pulling two ends of rubber so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber"]}, +{"id":"188276","label":"covering cigarette lighter with cookie box lid","template":"Covering [something] with [something]","placeholders":["cigarette lighter","cookie box lid"]}, +{"id":"204623","label":"putting bottle in front of tennis ball","template":"Putting [something] in front of [something]","placeholders":["bottle","tennis ball"]}, +{"id":"68903","label":"bending candle until it breaks","template":"Bending [something] until it breaks","placeholders":["candle"]}, +{"id":"74672","label":"tiger falling like a rock","template":"[Something] falling like a rock","placeholders":["tiger"]}, +{"id":"180629","label":"pretending to put a candle underneath a plate","template":"Pretending to put [something] underneath [something]","placeholders":["a candle","a plate"]}, +{"id":"75628","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"81852","label":"stuffing receipt into jar","template":"Stuffing [something] into [something]","placeholders":["receipt","jar"]}, +{"id":"157454","label":"burying a pillow in a blanket","template":"Burying [something] in [something]","placeholders":["a pillow","a blanket"]}, +{"id":"22937","label":"putting 4 books onto table","template":"Putting [number of] [something] onto [something]","placeholders":["4","books","table"]}, +{"id":"23947","label":"putting clementine on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["clementine"]}, +{"id":"44113","label":"pulling two ends of usb light but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["usb light"]}, +{"id":"198806","label":"moving a cellphone up","template":"Moving [something] up","placeholders":["a cellphone"]}, +{"id":"135586","label":"putting a glass and keys on the table","template":"Putting [something] and [something] on the table","placeholders":["a glass","keys"]}, +{"id":"21156","label":"pretending to pour tea out of mug, but mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["tea","mug","mug"]}, +{"id":"69392","label":"putting bottle onto stool","template":"Putting [something] onto [something]","placeholders":["bottle","stool"]}, +{"id":"149338","label":"moving bottle and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","cup"]}, +{"id":"201811","label":"taking bottle","template":"Taking [one of many similar things on the table]","placeholders":["bottle"]}, +{"id":"212580","label":"holding a cup behind a vase of flowers","template":"Holding [something] behind [something]","placeholders":["a cup","a vase of flowers"]}, +{"id":"199206","label":"pushing black disc case from left to right","template":"Pushing [something] from left to right","placeholders":["black disc case"]}, +{"id":"110594","label":"pushing shaver from left to right","template":"Pushing [something] from left to right","placeholders":["shaver"]}, +{"id":"24623","label":"pushing cufflinks with a bowl","template":"Pushing [something] with [something]","placeholders":["cufflinks","a bowl"]}, +{"id":"64267","label":"putting book onto can","template":"Putting [something] onto [something]","placeholders":["book","can"]}, +{"id":"32654","label":"moving figurine across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["figurine"]}, +{"id":"79615","label":"throwing a pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pillow"]}, +{"id":"217678","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"71008","label":"poking nail polish so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["nail polish"]}, +{"id":"94380","label":"twisting waterbottle","template":"Twisting [something]","placeholders":["waterbottle"]}, +{"id":"60836","label":"showing marker pen behind wallet","template":"Showing [something] behind [something]","placeholders":["marker pen","wallet"]}, +{"id":"77208","label":"pulling box from left to right","template":"Pulling [something] from left to right","placeholders":["box"]}, +{"id":"136909","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"11136","label":"spinning swiss army knife that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["swiss army knife"]}, +{"id":"174077","label":"covering remote with cloth","template":"Covering [something] with [something]","placeholders":["remote","cloth"]}, +{"id":"28931","label":"poking fan pole so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["fan pole"]}, +{"id":"161387","label":"uncovering tv remote","template":"Uncovering [something]","placeholders":["tv remote"]}, +{"id":"131213","label":"plugging wire into microcontroller","template":"Plugging [something] into [something]","placeholders":["wire","microcontroller"]}, +{"id":"46164","label":"putting sun glasses into case","template":"Putting [something] into [something]","placeholders":["sun glasses","case"]}, +{"id":"204706","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"42068","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"22179","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"150303","label":"throwing shoe against wooden puppet","template":"Throwing [something] against [something]","placeholders":["shoe","wooden puppet"]}, +{"id":"5709","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"153520","label":"pushing glasses case from left to right","template":"Pushing [something] from left to right","placeholders":["glasses case"]}, +{"id":"175280","label":"putting jar on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["jar","box"]}, +{"id":"1489","label":"pushing a candle with a key","template":"Pushing [something] with [something]","placeholders":["a candle","a key"]}, +{"id":"38016","label":"showing router next to monitor","template":"Showing [something] next to [something]","placeholders":["router","monitor"]}, +{"id":"208897","label":"lifting notebook with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","mobile phone"]}, +{"id":"173377","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"12565","label":"dropping pen behind watch","template":"Dropping [something] behind [something]","placeholders":["pen","watch"]}, +{"id":"201860","label":"tipping a speaker over","template":"Tipping [something] over","placeholders":["a speaker"]}, +{"id":"69324","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"147227","label":"pulling drawer out of washing machine","template":"Pulling [something] out of [something]","placeholders":["drawer","washing machine"]}, +{"id":"128777","label":"turning the camera right while filming small book","template":"Turning the camera right while filming [something]","placeholders":["small book"]}, +{"id":"64398","label":"pushing hair paste so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair paste"]}, +{"id":"180703","label":"approaching car with your camera","template":"Approaching [something] with your camera","placeholders":["car"]}, +{"id":"199977","label":"turning the camera upwards while filming pill bottle","template":"Turning the camera upwards while filming [something]","placeholders":["pill bottle"]}, +{"id":"53088","label":"showing mobile behind a table","template":"Showing [something] behind [something]","placeholders":["mobile","a table"]}, +{"id":"133702","label":"picking nailpolish up","template":"Picking [something] up","placeholders":["nailpolish"]}, +{"id":"46397","label":"pushing stapler with a scissor","template":"Pushing [something] with [something]","placeholders":["stapler","a scissor"]}, +{"id":"159589","label":"turning the camera upwards while filming small book","template":"Turning the camera upwards while filming [something]","placeholders":["small book"]}, +{"id":"23170","label":"moving lever of hole punch","template":"Moving [part] of [something]","placeholders":["lever","hole punch"]}, +{"id":"190404","label":"lifting calculator with pink coloured hair clip on it","template":"Lifting [something] with [something] on it","placeholders":["calculator","pink coloured hair clip"]}, +{"id":"155078","label":"moving a candle and a candle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a candle","a candle"]}, +{"id":"51959","label":"piling toothbrushes up","template":"Piling [something] up","placeholders":["toothbrushes"]}, +{"id":"17226","label":"stacking 2 napkins","template":"Stacking [number of] [something]","placeholders":["2","napkins"]}, +{"id":"185805","label":"pretending to pick pencil sharpner up","template":"Pretending to pick [something] up","placeholders":["pencil sharpner"]}, +{"id":"6770","label":"holding paper next to discount card","template":"Holding [something] next to [something]","placeholders":["paper","discount card"]}, +{"id":"175036","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"46013","label":"tilting stone with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["stone","finger"]}, +{"id":"18886","label":"letting vapor rub roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["vapor rub"]}, +{"id":"38741","label":"holding glasses over plate","template":"Holding [something] over [something]","placeholders":["glasses","plate"]}, +{"id":"149150","label":"showing that stapler is inside orange bowl","template":"Showing that [something] is inside [something]","placeholders":["stapler","orange bowl"]}, +{"id":"72216","label":"pushing a bag so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bag"]}, +{"id":"74960","label":"pulling gymnastic bands from left to right","template":"Pulling [something] from left to right","placeholders":["gymnastic bands"]}, +{"id":"117452","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"203338","label":"moving note up","template":"Moving [something] up","placeholders":["note"]}, +{"id":"171224","label":"pretending to put hairclip on a surface","template":"Pretending to put [something] on a surface","placeholders":["hairclip"]}, +{"id":"131553","label":"moving bowl down","template":"Moving [something] down","placeholders":["bowl"]}, +{"id":"61122","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"42053","label":"trying but failing to attach notebook to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["notebook","wall"]}, +{"id":"76690","label":"pretending to poke a cup","template":"Pretending to poke [something]","placeholders":["a cup"]}, +{"id":"145277","label":"tilting stand with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stand","phone"]}, +{"id":"145082","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"193180","label":"throwing ball against deodorant","template":"Throwing [something] against [something]","placeholders":["ball","deodorant"]}, +{"id":"102724","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"62808","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"110861","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"60333","label":"pulling two ends of cotton webbing but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["cotton webbing"]}, +{"id":"156897","label":"twisting shoe","template":"Twisting [something]","placeholders":["shoe"]}, +{"id":"70876","label":"orange being deflected from wascher","template":"[Something] being deflected from [something]","placeholders":["orange","wascher"]}, +{"id":"125341","label":"tipping a pencil case over","template":"Tipping [something] over","placeholders":["a pencil case"]}, +{"id":"63431","label":"holding a measuring cup next to a bowl","template":"Holding [something] next to [something]","placeholders":["a measuring cup","a bowl"]}, +{"id":"213123","label":"throwing pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pencil"]}, +{"id":"218495","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"215465","label":"holding a teaspoon over a jar","template":"Holding [something] over [something]","placeholders":["a teaspoon","a jar"]}, +{"id":"174928","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"162917","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"51349","label":"putting water bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["water bottle"]}, +{"id":"142554","label":"lifting up one end of paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["paper"]}, +{"id":"3307","label":"letting clementine roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["clementine"]}, +{"id":"209204","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"179941","label":"putting four screws onto magnetic tray","template":"Putting [number of] [something] onto [something]","placeholders":["four","screws","magnetic tray"]}, +{"id":"114937","label":"moving can away from funnel","template":"Moving [something] away from [something]","placeholders":["can","funnel"]}, +{"id":"151323","label":"showing main switch to the camera","template":"Showing [something] to the camera","placeholders":["main switch"]}, +{"id":"127517","label":"covering a bowl with a cloth","template":"Covering [something] with [something]","placeholders":["a bowl","a cloth"]}, +{"id":"65801","label":"showing that chip bag is empty","template":"Showing that [something] is empty","placeholders":["chip bag"]}, +{"id":"207800","label":"moving cup and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","bottle"]}, +{"id":"47301","label":"poking jar so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["jar"]}, +{"id":"30972","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"101032","label":"putting a glass underneath a hat","template":"Putting [something] underneath [something]","placeholders":["a glass","a hat"]}, +{"id":"45776","label":"covering a chair with a blanket","template":"Covering [something] with [something]","placeholders":["a chair","a blanket"]}, +{"id":"196334","label":"dropping hair band next to tablet box","template":"Dropping [something] next to [something]","placeholders":["hair band","tablet box"]}, +{"id":"99863","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"13168","label":"pushing colorful scarf from right to left","template":"Pushing [something] from right to left","placeholders":["colorful scarf"]}, +{"id":"78718","label":"pulling wipe out of box","template":"Pulling [something] out of [something]","placeholders":["wipe","box"]}, +{"id":"80006","label":"wiping bottle cap off of table","template":"Wiping [something] off of [something]","placeholders":["bottle cap","table"]}, +{"id":"89840","label":"laying glass bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass bottle"]}, +{"id":"40154","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"134316","label":"touching (without moving) body of stethescope","template":"Touching (without moving) [part] of [something]","placeholders":["body","stethescope"]}, +{"id":"36941","label":"candle falling like a rock","template":"[Something] falling like a rock","placeholders":["candle"]}, +{"id":"182267","label":"tearing plastic into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic"]}, +{"id":"132986","label":"moving away from person with your camera","template":"Moving away from [something] with your camera","placeholders":["person"]}, +{"id":"158027","label":"unfolding calendar","template":"Unfolding [something]","placeholders":["calendar"]}, +{"id":"216706","label":"putting hat, box and glasses on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hat","box","glasses"]}, +{"id":"108143","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"70103","label":"showing a window behind a sink","template":"Showing [something] behind [something]","placeholders":["a window","a sink"]}, +{"id":"1852","label":"letting a pencil roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pencil"]}, +{"id":"20009","label":"showing a dog next to a small chair","template":"Showing [something] next to [something]","placeholders":["a dog","a small chair"]}, +{"id":"154658","label":"taking pens","template":"Taking [one of many similar things on the table]","placeholders":["pens"]}, +{"id":"145892","label":"moving the arm of a doll","template":"Moving [part] of [something]","placeholders":["the arm","a doll"]}, +{"id":"83542","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"180510","label":"moving a pen away from a spoon","template":"Moving [something] away from [something]","placeholders":["a pen","a spoon"]}, +{"id":"47351","label":"unfolding t-shirt","template":"Unfolding [something]","placeholders":["t-shirt"]}, +{"id":"60991","label":"moving coaster across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["coaster"]}, +{"id":"125602","label":"putting hairclip on a surface","template":"Putting [something] on a surface","placeholders":["hairclip"]}, +{"id":"108265","label":"rolling highlighter on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["highlighter"]}, +{"id":"192997","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"79647","label":"putting mouse on a surface","template":"Putting [something] on a surface","placeholders":["mouse"]}, +{"id":"199158","label":"opening clothes dryer","template":"Opening [something]","placeholders":["clothes dryer"]}, +{"id":"97888","label":"pretending to spread air onto paper","template":"Pretending to spread air onto [something]","placeholders":["paper"]}, +{"id":"97815","label":"pretending to pick controller up","template":"Pretending to pick [something] up","placeholders":["controller"]}, +{"id":"77164","label":"pushing a mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a mug"]}, +{"id":"40654","label":"lifting up one end of pillow, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pillow"]}, +{"id":"180759","label":"pretending to be tearing carry bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["carry bag"]}, +{"id":"10647","label":"putting plastic tin, watch and clip on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["plastic tin","watch","clip"]}, +{"id":"115444","label":"lifting a wallet with a medicine bottle on it","template":"Lifting [something] with [something] on it","placeholders":["a wallet","a medicine bottle"]}, +{"id":"200114","label":"moving away from painting with your camera","template":"Moving away from [something] with your camera","placeholders":["painting"]}, +{"id":"109434","label":"moving stapler away from duster","template":"Moving [something] away from [something]","placeholders":["stapler","duster"]}, +{"id":"143711","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"42322","label":"pushing tissue box off of table","template":"Pushing [something] off of [something]","placeholders":["tissue box","table"]}, +{"id":"141962","label":"moving magnet closer to magnet","template":"Moving [something] closer to [something]","placeholders":["magnet","magnet"]}, +{"id":"165808","label":"lifting plastic case up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plastic case"]}, +{"id":"19406","label":"picking a glove up","template":"Picking [something] up","placeholders":["a glove"]}, +{"id":"175215","label":"covering tailoring tap with cloth","template":"Covering [something] with [something]","placeholders":["tailoring tap","cloth"]}, +{"id":"142885","label":"holding toothbrush behind watch","template":"Holding [something] behind [something]","placeholders":["toothbrush","watch"]}, +{"id":"105727","label":"putting pen cap onto pen","template":"Putting [something] onto [something]","placeholders":["pen cap","pen"]}, +{"id":"153038","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"201035","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"26612","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"32836","label":"poking a hole into a pillow","template":"Poking a hole into [something soft]","placeholders":["a pillow"]}, +{"id":"63388","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"62881","label":"throwing apple in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["apple"]}, +{"id":"215516","label":"putting lotion into a cup","template":"Putting [something] into [something]","placeholders":["lotion","a cup"]}, +{"id":"1268","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"48774","label":"turning the camera right while filming colorful scarf","template":"Turning the camera right while filming [something]","placeholders":["colorful scarf"]}, +{"id":"86665","label":"a pencil colliding with a pack of tissu and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pencil","a pack of tissu"]}, +{"id":"3055","label":"trying to bend pencil so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pencil"]}, +{"id":"40673","label":"poking a hole into bedsheet","template":"Poking a hole into [something soft]","placeholders":["bedsheet"]}, +{"id":"190378","label":"moving leaf down","template":"Moving [something] down","placeholders":["leaf"]}, +{"id":"124289","label":"pretending to put setofcompasses into mug","template":"Pretending to put [something] into [something]","placeholders":["setofcompasses","mug"]}, +{"id":"9701","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"187933","label":"moving wristband up","template":"Moving [something] up","placeholders":["wristband"]}, +{"id":"94945","label":"pushing towel so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["towel"]}, +{"id":"52494","label":"taking battery","template":"Taking [one of many similar things on the table]","placeholders":["battery"]}, +{"id":"28921","label":"pushing a notebook so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a notebook"]}, +{"id":"123812","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"24965","label":"pulling a doll out of a bag","template":"Pulling [something] out of [something]","placeholders":["a doll","a bag"]}, +{"id":"181088","label":"showing leaf to the camera","template":"Showing [something] to the camera","placeholders":["leaf"]}, +{"id":"15579","label":"poking a snowman so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a snowman"]}, +{"id":"67970","label":"moving container and container so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["container","container"]}, +{"id":"132151","label":"closing advent calendar","template":"Closing [something]","placeholders":["advent calendar"]}, +{"id":"74431","label":"plugging usb cable into phone charger","template":"Plugging [something] into [something]","placeholders":["usb cable","phone charger"]}, +{"id":"139908","label":"spinning a fidget so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget"]}, +{"id":"101676","label":"moving cable of charger","template":"Moving [part] of [something]","placeholders":["cable","charger"]}, +{"id":"133130","label":"putting a banana onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a banana"]}, +{"id":"81505","label":"laying dental floss on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["dental floss"]}, +{"id":"156153","label":"picking glasses up","template":"Picking [something] up","placeholders":["glasses"]}, +{"id":"11134","label":"moving key closer to box","template":"Moving [something] closer to [something]","placeholders":["key","box"]}, +{"id":"185387","label":"poking candle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["candle"]}, +{"id":"149200","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"52832","label":"twisting lamp knob","template":"Twisting [something]","placeholders":["lamp knob"]}, +{"id":"166692","label":"putting scissors next to yellowbook","template":"Putting [something] next to [something]","placeholders":["scissors","yellowbook"]}, +{"id":"87924","label":"holding plate next to helmet","template":"Holding [something] next to [something]","placeholders":["plate","helmet"]}, +{"id":"27728","label":"plugging charger into extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","extension cord"]}, +{"id":"195869","label":"throwing a roll of tape against a tent","template":"Throwing [something] against [something]","placeholders":["a roll of tape","a tent"]}, +{"id":"193562","label":"pretending to poke an owl","template":"Pretending to poke [something]","placeholders":["an owl"]}, +{"id":"215000","label":"moving candle up","template":"Moving [something] up","placeholders":["candle"]}, +{"id":"17337","label":"a skateboard colliding with a toy car and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a skateboard","a toy car"]}, +{"id":"150712","label":"uncovering glass","template":"Uncovering [something]","placeholders":["glass"]}, +{"id":"172411","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"154959","label":"approaching coconuts with your camera","template":"Approaching [something] with your camera","placeholders":["coconuts"]}, +{"id":"144629","label":"moving wallet and mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wallet","mouse"]}, +{"id":"210725","label":"putting cup onto the television","template":"Putting [something] onto [something]","placeholders":["cup","the television"]}, +{"id":"135432","label":"trying to bend remote so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["remote"]}, +{"id":"3797","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"52720","label":"putting a glass onto a tray","template":"Putting [something] onto [something]","placeholders":["a glass","a tray"]}, +{"id":"82622","label":"rolling pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pen"]}, +{"id":"48888","label":"picking mobile up","template":"Picking [something] up","placeholders":["mobile"]}, +{"id":"13189","label":"holding box in front of tv","template":"Holding [something] in front of [something]","placeholders":["box","tv"]}, +{"id":"36635","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"180149","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"146836","label":"tearing cardboard just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardboard"]}, +{"id":"169617","label":"plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic bag"]}, +{"id":"161271","label":"wiping cleaning fluid off of goggles","template":"Wiping [something] off of [something]","placeholders":["cleaning fluid","goggles"]}, +{"id":"157404","label":"holding pen in front of notebook","template":"Holding [something] in front of [something]","placeholders":["pen","notebook"]}, +{"id":"200689","label":"showing road tarring machine to the camera","template":"Showing [something] to the camera","placeholders":["road tarring machine"]}, +{"id":"158283","label":"moving lighter and scissors away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lighter","scissors"]}, +{"id":"39597","label":"showing duster behind battery","template":"Showing [something] behind [something]","placeholders":["duster","battery"]}, +{"id":"53727","label":"putting lid, saucepan and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["lid","saucepan","cup"]}, +{"id":"147471","label":"tilting mouse pad with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["mouse pad","mouse"]}, +{"id":"73175","label":"plugging the usb cable into the laptop","template":"Plugging [something] into [something]","placeholders":["the usb cable","the laptop"]}, +{"id":"106928","label":"ice tray colliding with thermocol and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["ice tray","thermocol"]}, +{"id":"140153","label":"holding bottle behind trash can","template":"Holding [something] behind [something]","placeholders":["bottle","trash can"]}, +{"id":"139391","label":"moving a matchbox away from a comb","template":"Moving [something] away from [something]","placeholders":["a matchbox","a comb"]}, +{"id":"164792","label":"taking yellow colour pen among the many colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["yellow colour pen among the many colour pens on the table"]}, +{"id":"144262","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"83682","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"207471","label":"sprinkling colony onto paper","template":"Sprinkling [something] onto [something]","placeholders":["colony","paper"]}, +{"id":"158786","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"216472","label":"picking red pot holder up","template":"Picking [something] up","placeholders":["red pot holder"]}, +{"id":"100180","label":"stacking 3 toy wheels","template":"Stacking [number of] [something]","placeholders":["3","toy wheels"]}, +{"id":"186622","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"152741","label":"pretending to scoop milk powder up with the scooper","template":"Pretending to scoop [something] up with [something]","placeholders":["milk powder","the scooper"]}, +{"id":"97547","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"190956","label":"moving controller up","template":"Moving [something] up","placeholders":["controller"]}, +{"id":"33185","label":"spreading matches onto the freezer","template":"Spreading [something] onto [something]","placeholders":["matches","the freezer"]}, +{"id":"18622","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"96165","label":"pretending to take a cracker from container","template":"Pretending to take [something] from [somewhere]","placeholders":["a cracker","container"]}, +{"id":"130939","label":"tearing 4 layers of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["4 layers of paper"]}, +{"id":"38014","label":"burying guitar pick in rice","template":"Burying [something] in [something]","placeholders":["guitar pick","rice"]}, +{"id":"151203","label":"twisting (wringing) wipe wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wipe"]}, +{"id":"114335","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"81006","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"69177","label":"hitting a bottle with a clip","template":"Hitting [something] with [something]","placeholders":["a bottle","a clip"]}, +{"id":"108191","label":"turning the camera left while filming flowers","template":"Turning the camera left while filming [something]","placeholders":["flowers"]}, +{"id":"122550","label":"putting dental floss and nail clippers on the table","template":"Putting [something] and [something] on the table","placeholders":["dental floss","nail clippers"]}, +{"id":"99048","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"38477","label":"moving candle away from box","template":"Moving [something] away from [something]","placeholders":["candle","box"]}, +{"id":"112316","label":"hitting digger with car","template":"Hitting [something] with [something]","placeholders":["digger","car"]}, +{"id":"57746","label":"squeezing oven mit","template":"Squeezing [something]","placeholders":["oven mit"]}, +{"id":"188672","label":"dropping pen behind cup","template":"Dropping [something] behind [something]","placeholders":["pen","cup"]}, +{"id":"57530","label":"taking tissue out of box","template":"Taking [something] out of [something]","placeholders":["tissue","box"]}, +{"id":"60990","label":"dropping clay box into cup","template":"Dropping [something] into [something]","placeholders":["clay box","cup"]}, +{"id":"30233","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"186133","label":"stacking 4 smoothie, ashtray, paper, monster","template":"Stacking [number of] [something]","placeholders":["4","smoothie, ashtray, paper, monster"]}, +{"id":"211653","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"208741","label":"closing water tin","template":"Closing [something]","placeholders":["water tin"]}, +{"id":"124967","label":"pushing remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote control"]}, +{"id":"178202","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"116810","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"106519","label":"dropping a lid into a box","template":"Dropping [something] into [something]","placeholders":["a lid","a box"]}, +{"id":"63866","label":"lemon falling like a rock","template":"[Something] falling like a rock","placeholders":["lemon"]}, +{"id":"66165","label":"taking magnifying glass from table","template":"Taking [something] from [somewhere]","placeholders":["magnifying glass","table"]}, +{"id":"186481","label":"squeezing tissues","template":"Squeezing [something]","placeholders":["tissues"]}, +{"id":"66194","label":"holding sunglasses over package","template":"Holding [something] over [something]","placeholders":["sunglasses","package"]}, +{"id":"111628","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"91110","label":"pushing sharpie so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sharpie"]}, +{"id":"207558","label":"lifting a stick up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a stick"]}, +{"id":"41845","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"145994","label":"stacking 3 matchbox","template":"Stacking [number of] [something]","placeholders":["3","matchbox"]}, +{"id":"144449","label":"turning container upside down","template":"Turning [something] upside down","placeholders":["container"]}, +{"id":"83759","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"218125","label":"pouring water into chair","template":"Pouring [something] into [something]","placeholders":["water","chair"]}, +{"id":"58427","label":"putting pen into a group of pen like objects","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen into a group of pen like objects"]}, +{"id":"46085","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"72951","label":"moving away from flowers with your camera","template":"Moving away from [something] with your camera","placeholders":["flowers"]}, +{"id":"2583","label":"tennis ball being deflected from bottle","template":"[Something] being deflected from [something]","placeholders":["tennis ball","bottle"]}, +{"id":"37287","label":"rolling a jar on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a jar"]}, +{"id":"49346","label":"pouring water onto cup","template":"Pouring [something] onto [something]","placeholders":["water","cup"]}, +{"id":"29848","label":"putting a beer can next to a mug","template":"Putting [something] next to [something]","placeholders":["a beer can","a mug"]}, +{"id":"72618","label":"pulling spoon from left to right","template":"Pulling [something] from left to right","placeholders":["spoon"]}, +{"id":"64583","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"16026","label":"covering onion with cloth","template":"Covering [something] with [something]","placeholders":["onion","cloth"]}, +{"id":"13991","label":"spinning a mouse that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a mouse"]}, +{"id":"203442","label":"showing that a plate is inside the drawer","template":"Showing that [something] is inside [something]","placeholders":["a plate","the drawer"]}, +{"id":"179309","label":"putting a dish towel next to a mug","template":"Putting [something] next to [something]","placeholders":["a dish towel","a mug"]}, +{"id":"106441","label":"taking a water bottle out of a refrigerator","template":"Taking [something] out of [something]","placeholders":["a water bottle","a refrigerator"]}, +{"id":"75293","label":"lifting up one end of marker without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["marker"]}, +{"id":"86568","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"116568","label":"putting a remote onto a table","template":"Putting [something] onto [something]","placeholders":["a remote","a table"]}, +{"id":"81817","label":"opening jam-box","template":"Opening [something]","placeholders":["jam-box"]}, +{"id":"148506","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"163289","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"134957","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"161868","label":"poking glasses so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glasses"]}, +{"id":"2034","label":"dropping ball into laundry basket","template":"Dropping [something] into [something]","placeholders":["ball","laundry basket"]}, +{"id":"74302","label":"putting a book upright on the table","template":"Putting [something] upright on the table","placeholders":["a book"]}, +{"id":"10033","label":"turning perfume upside down","template":"Turning [something] upside down","placeholders":["perfume"]}, +{"id":"106444","label":"spinning white badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["white badge"]}, +{"id":"199365","label":"moving away from rice cooker with your camera","template":"Moving away from [something] with your camera","placeholders":["rice cooker"]}, +{"id":"176609","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"140635","label":"pulling a cup from left to right","template":"Pulling [something] from left to right","placeholders":["a cup"]}, +{"id":"197217","label":"showing watch next to camera","template":"Showing [something] next to [something]","placeholders":["watch","camera"]}, +{"id":"61708","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"19044","label":"putting a lighter next to other lighters","template":"Putting [something similar to other things that are already on the table]","placeholders":["a lighter next to other lighters"]}, +{"id":"135682","label":"holding ipad in front of television","template":"Holding [something] in front of [something]","placeholders":["ipad","television"]}, +{"id":"31255","label":"plugging charger into a socket","template":"Plugging [something] into [something]","placeholders":["charger","a socket"]}, +{"id":"203858","label":"closing mail box","template":"Closing [something]","placeholders":["mail box"]}, +{"id":"2774","label":"putting dishcloth upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["dishcloth"]}, +{"id":"128480","label":"closing zipper bag","template":"Closing [something]","placeholders":["zipper bag"]}, +{"id":"204116","label":"trying to bend cell phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["cell phone"]}, +{"id":"143448","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"182735","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"171504","label":"putting basketball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["basketball"]}, +{"id":"91157","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"107791","label":"covering tv remote with pillow","template":"Covering [something] with [something]","placeholders":["tv remote","pillow"]}, +{"id":"97856","label":"plugging plastic bag into glass bottle","template":"Plugging [something] into [something]","placeholders":["plastic bag","glass bottle"]}, +{"id":"18746","label":"lifting tablet with a canister on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","a canister"]}, +{"id":"187095","label":"showing apple on top of cutting board","template":"Showing [something] on top of [something]","placeholders":["apple","cutting board"]}, +{"id":"153947","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"203147","label":"taking scissors out of sewing box","template":"Taking [something] out of [something]","placeholders":["scissors","sewing box"]}, +{"id":"112864","label":"putting forks together on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["forks together on the table"]}, +{"id":"62225","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"87663","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"98666","label":"putting a can next to a bag","template":"Putting [something] next to [something]","placeholders":["a can","a bag"]}, +{"id":"9250","label":"putting soap on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["soap","the table"]}, +{"id":"163803","label":"pushing book with metal strip","template":"Pushing [something] with [something]","placeholders":["book","metal strip"]}, +{"id":"135630","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"22039","label":"pushing red hair band with pen","template":"Pushing [something] with [something]","placeholders":["red hair band","pen"]}, +{"id":"164957","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"88256","label":"lifting plate with apple on it","template":"Lifting [something] with [something] on it","placeholders":["plate","apple"]}, +{"id":"30020","label":"moving a rubbik cube and rubbik cube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a rubbik cube","rubbik cube"]}, +{"id":"12895","label":"taking one of many pen on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many pen on the table"]}, +{"id":"175162","label":"putting a shell into a box","template":"Putting [something] into [something]","placeholders":["a shell","a box"]}, +{"id":"98247","label":"tipping paper towel roll over","template":"Tipping [something] over","placeholders":["paper towel roll"]}, +{"id":"48438","label":"spilling water next to a ball","template":"Spilling [something] next to [something]","placeholders":["water","a ball"]}, +{"id":"59950","label":"plugging charger into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","power socket"]}, +{"id":"120144","label":"taking timepiece from well wall","template":"Taking [something] from [somewhere]","placeholders":["timepiece","well wall"]}, +{"id":"70779","label":"putting a fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a fork"]}, +{"id":"120745","label":"turning the camera upwards while filming plant","template":"Turning the camera upwards while filming [something]","placeholders":["plant"]}, +{"id":"215878","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"174279","label":"pulling pulling power bank from left to right from left to right","template":"Pulling [something] from left to right","placeholders":["pulling power bank from left to right"]}, +{"id":"39437","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"69501","label":"pushing remote from right to left","template":"Pushing [something] from right to left","placeholders":["remote"]}, +{"id":"55976","label":"holding a cup next to a water bottle","template":"Holding [something] next to [something]","placeholders":["a cup","a water bottle"]}, +{"id":"209979","label":"dropping a figutine into a mug","template":"Dropping [something] into [something]","placeholders":["a figutine","a mug"]}, +{"id":"81972","label":"pulling water bottle from right to left","template":"Pulling [something] from right to left","placeholders":["water bottle"]}, +{"id":"65444","label":"turning something upside down","template":"Turning [something] upside down","placeholders":["something"]}, +{"id":"113588","label":"putting glass next to box","template":"Putting [something] next to [something]","placeholders":["glass","box"]}, +{"id":"90256","label":"showing black pouch behind green bowl","template":"Showing [something] behind [something]","placeholders":["black pouch","green bowl"]}, +{"id":"102796","label":"spilling water onto a plate","template":"Spilling [something] onto [something]","placeholders":["water","a plate"]}, +{"id":"115530","label":"moving red pen and blue pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["red pen","blue pen"]}, +{"id":"200339","label":"tearing white paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["white paper"]}, +{"id":"56093","label":"uncovering the watch","template":"Uncovering [something]","placeholders":["the watch"]}, +{"id":"86998","label":"moving toy-car and toy-car so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy-car","toy-car"]}, +{"id":"147771","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"57640","label":"burying a lid in salad","template":"Burying [something] in [something]","placeholders":["a lid","salad"]}, +{"id":"141476","label":"pushing a box of juice so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box of juice"]}, +{"id":"65087","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"208285","label":"moving cup up","template":"Moving [something] up","placeholders":["cup"]}, +{"id":"166583","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"22037","label":"pushing lid off of iid","template":"Pushing [something] off of [something]","placeholders":["lid","iid"]}, +{"id":"44955","label":"wiping water off of a plank of wood","template":"Wiping [something] off of [something]","placeholders":["water","a plank of wood"]}, +{"id":"89116","label":"sprinkling water onto wall","template":"Sprinkling [something] onto [something]","placeholders":["water","wall"]}, +{"id":"46733","label":"turning empty coffee mug upside down","template":"Turning [something] upside down","placeholders":["empty coffee mug"]}, +{"id":"40193","label":"throwing ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["ball"]}, +{"id":"136527","label":"uncovering candles","template":"Uncovering [something]","placeholders":["candles"]}, +{"id":"125325","label":"turning the camera upwards while filming flower","template":"Turning the camera upwards while filming [something]","placeholders":["flower"]}, +{"id":"3921","label":"uncovering apple tv remote","template":"Uncovering [something]","placeholders":["apple tv remote"]}, +{"id":"113793","label":"attaching back to remote","template":"Attaching [something] to [something]","placeholders":["back","remote"]}, +{"id":"64064","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"94217","label":"throwing a shoe","template":"Throwing [something]","placeholders":["a shoe"]}, +{"id":"80326","label":"pushing case from right to left","template":"Pushing [something] from right to left","placeholders":["case"]}, +{"id":"161298","label":"moving glass closer to mug","template":"Moving [something] closer to [something]","placeholders":["glass","mug"]}, +{"id":"83911","label":"putting a roll of paper towels on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a roll of paper towels"]}, +{"id":"212299","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"170836","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"88869","label":"attaching magnet to magnet","template":"Attaching [something] to [something]","placeholders":["magnet","magnet"]}, +{"id":"90888","label":"moving microscope and coin closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["microscope","coin"]}, +{"id":"47113","label":"covering glass with cotton towel","template":"Covering [something] with [something]","placeholders":["glass","cotton towel"]}, +{"id":"124373","label":"holding can in front of remote","template":"Holding [something] in front of [something]","placeholders":["can","remote"]}, +{"id":"100990","label":"moving away from small green ball with your camera","template":"Moving away from [something] with your camera","placeholders":["small green ball"]}, +{"id":"76109","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"14108","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"98524","label":"holding vitamin water over stove top","template":"Holding [something] over [something]","placeholders":["vitamin water","stove top"]}, +{"id":"180944","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"106076","label":"putting 6 pen onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["6","pen","a box"]}, +{"id":"97551","label":"putting a vase upright on the table","template":"Putting [something] upright on the table","placeholders":["a vase"]}, +{"id":"188053","label":"dropping stick into small bottle","template":"Dropping [something] into [something]","placeholders":["stick","small bottle"]}, +{"id":"196434","label":"holding a green pen","template":"Holding [something]","placeholders":["a green pen"]}, +{"id":"9207","label":"spinning a box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a box"]}, +{"id":"198413","label":"attaching charger adapter to charging socket","template":"Attaching [something] to [something]","placeholders":["charger adapter","charging socket"]}, +{"id":"54495","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"200580","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"157374","label":"plugging a wire into an electrical outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a wire","an electrical outlet"]}, +{"id":"66594","label":"pretending to turn green bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["green bowl"]}, +{"id":"199306","label":"pretending or failing to wipe ink off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","whiteboard"]}, +{"id":"184974","label":"pushing pan so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pan"]}, +{"id":"215970","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"68279","label":"stuffing socks into cushion","template":"Stuffing [something] into [something]","placeholders":["socks","cushion"]}, +{"id":"189074","label":"putting pen next to mug","template":"Putting [something] next to [something]","placeholders":["pen","mug"]}, +{"id":"115728","label":"touching (without moving) pull part of blinds","template":"Touching (without moving) [part] of [something]","placeholders":["pull part","blinds"]}, +{"id":"61986","label":"pretending to scoop plastic bag up with paper","template":"Pretending to scoop [something] up with [something]","placeholders":["plastic bag","paper"]}, +{"id":"101103","label":"pretending to throw a plastic container","template":"Pretending to throw [something]","placeholders":["a plastic container"]}, +{"id":"69581","label":"laying peanut butter on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["peanut butter"]}, +{"id":"213919","label":"poking a stack of containers without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["containers"]}, +{"id":"117326","label":"plugging cord into wall","template":"Plugging [something] into [something]","placeholders":["cord","wall"]}, +{"id":"139795","label":"dropping cap onto pillow","template":"Dropping [something] onto [something]","placeholders":["cap","pillow"]}, +{"id":"34860","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"11015","label":"holding cup in front of mirror","template":"Holding [something] in front of [something]","placeholders":["cup","mirror"]}, +{"id":"201087","label":"taking a book of many books","template":"Taking [one of many similar things on the table]","placeholders":["a book of many books"]}, +{"id":"69208","label":"putting pebble underneath glass","template":"Putting [something] underneath [something]","placeholders":["pebble","glass"]}, +{"id":"145448","label":"dropping container next to book","template":"Dropping [something] next to [something]","placeholders":["container","book"]}, +{"id":"167180","label":"moving sunglasses and keys closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["sunglasses","keys"]}, +{"id":"84834","label":"poking the hairbrush so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["the hairbrush"]}, +{"id":"187421","label":"banana falling like a rock","template":"[Something] falling like a rock","placeholders":["banana"]}, +{"id":"212736","label":"throwing paperball against wall","template":"Throwing [something] against [something]","placeholders":["paperball","wall"]}, +{"id":"141176","label":"dropping a lighter into a plant holder","template":"Dropping [something] into [something]","placeholders":["a lighter","a plant holder"]}, +{"id":"47117","label":"moving a dvd closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a dvd","a mug"]}, +{"id":"203306","label":"holding wallet behind couch","template":"Holding [something] behind [something]","placeholders":["wallet","couch"]}, +{"id":"122692","label":"twisting a cloth","template":"Twisting [something]","placeholders":["a cloth"]}, +{"id":"212311","label":"moving bottle and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","bottle"]}, +{"id":"124964","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"5633","label":"pretending or failing to wipe peanut butter off of wall tile","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["peanut butter","wall tile"]}, +{"id":"168904","label":"putting tape","template":"Putting [something similar to other things that are already on the table]","placeholders":["tape"]}, +{"id":"210447","label":"plugging an adapter into wall outlet","template":"Plugging [something] into [something]","placeholders":["an adapter","wall outlet"]}, +{"id":"90474","label":"pretending to close laptop screen without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["laptop screen"]}, +{"id":"91087","label":"poking pen so that it falls over","template":"Poking [something] so that it falls over","placeholders":["pen"]}, +{"id":"80836","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"31674","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"28027","label":"dropping glass bottle onto waste basket","template":"Dropping [something] onto [something]","placeholders":["glass bottle","waste basket"]}, +{"id":"2767","label":"taking cassette out of player","template":"Taking [something] out of [something]","placeholders":["cassette","player"]}, +{"id":"47816","label":"dropping a card onto a comb","template":"Dropping [something] onto [something]","placeholders":["a card","a comb"]}, +{"id":"192407","label":"pouring water into glass container until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass container"]}, +{"id":"97396","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"112970","label":"putting a battery and powerbank on the table","template":"Putting [something] and [something] on the table","placeholders":["a battery","powerbank"]}, +{"id":"152842","label":"moving pigtail closer to sock","template":"Moving [something] closer to [something]","placeholders":["pigtail","sock"]}, +{"id":"144676","label":"pushing phone cover so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["phone cover"]}, +{"id":"53686","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"182121","label":"putting keys behind mug","template":"Putting [something] behind [something]","placeholders":["keys","mug"]}, +{"id":"106494","label":"moving container and cigarettes away from each other","template":"Moving [something] and [something] away from each other","placeholders":["container","cigarettes"]}, +{"id":"33094","label":"putting glass onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["glass"]}, +{"id":"49891","label":"turning stapler upside down","template":"Turning [something] upside down","placeholders":["stapler"]}, +{"id":"212064","label":"tearing a sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a sheet of paper"]}, +{"id":"102661","label":"putting coin onto face wash","template":"Putting [something] onto [something]","placeholders":["coin","face wash"]}, +{"id":"17789","label":"putting apple onto floor","template":"Putting [something] onto [something]","placeholders":["apple","floor"]}, +{"id":"12033","label":"moving coin up","template":"Moving [something] up","placeholders":["coin"]}, +{"id":"204549","label":"putting waterbottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["waterbottle"]}, +{"id":"153193","label":"pouring soda into cup","template":"Pouring [something] into [something]","placeholders":["soda","cup"]}, +{"id":"88000","label":"hitting coconut leaf with stick","template":"Hitting [something] with [something]","placeholders":["coconut leaf","stick"]}, +{"id":"112422","label":"trying to bend perfume so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["perfume"]}, +{"id":"107874","label":"showing phone behind lime","template":"Showing [something] behind [something]","placeholders":["phone","lime"]}, +{"id":"75848","label":"lifting a notebook with a shoe polish on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a shoe polish"]}, +{"id":"154229","label":"squeezing stapler","template":"Squeezing [something]","placeholders":["stapler"]}, +{"id":"199714","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"18016","label":"putting christmas tree upright on the table","template":"Putting [something] upright on the table","placeholders":["christmas tree"]}, +{"id":"41422","label":"stuffing cooked vegetables into pepers","template":"Stuffing [something] into [something]","placeholders":["cooked vegetables","pepers"]}, +{"id":"219238","label":"putting tiger on a surface","template":"Putting [something] on a surface","placeholders":["tiger"]}, +{"id":"104708","label":"pretending to put harddrive case on a surface","template":"Pretending to put [something] on a surface","placeholders":["harddrive case"]}, +{"id":"54658","label":"putting scissors and marker on the table","template":"Putting [something] and [something] on the table","placeholders":["scissors","marker"]}, +{"id":"95924","label":"holding a sock in front of a book","template":"Holding [something] in front of [something]","placeholders":["a sock","a book"]}, +{"id":"84406","label":"pretending to close closet door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["closet door"]}, +{"id":"23378","label":"pushing glass so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["glass"]}, +{"id":"181663","label":"covering bed with blanket","template":"Covering [something] with [something]","placeholders":["bed","blanket"]}, +{"id":"105114","label":"taking bottle out of bowl","template":"Taking [something] out of [something]","placeholders":["bottle","bowl"]}, +{"id":"161906","label":"pulling drawer out of kitchen board","template":"Pulling [something] out of [something]","placeholders":["drawer","kitchen board"]}, +{"id":"112988","label":"holding remote in front of can","template":"Holding [something] in front of [something]","placeholders":["remote","can"]}, +{"id":"146475","label":"spinning a fidget that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a fidget"]}, +{"id":"69880","label":"bending microphone so that it deforms","template":"Bending [something] so that it deforms","placeholders":["microphone"]}, +{"id":"145175","label":"plugging headphones into a smartphone","template":"Plugging [something] into [something]","placeholders":["headphones","a smartphone"]}, +{"id":"20995","label":"moving door of microwave","template":"Moving [part] of [something]","placeholders":["door","microwave"]}, +{"id":"40871","label":"plugging cord into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","laptop"]}, +{"id":"27941","label":"stacking 3 board clips","template":"Stacking [number of] [something]","placeholders":["3","board clips"]}, +{"id":"75949","label":"covering a pen with a piece of paper","template":"Covering [something] with [something]","placeholders":["a pen","a piece of paper"]}, +{"id":"173272","label":"holding calendar in front of computer monitor","template":"Holding [something] in front of [something]","placeholders":["calendar","computer monitor"]}, +{"id":"69774","label":"putting remote that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["remote"]}, +{"id":"143961","label":"pouring water into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a cup"]}, +{"id":"143325","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"11799","label":"showing something behind something","template":"Showing [something] behind [something]","placeholders":["something","something"]}, +{"id":"204006","label":"showing swing to the camera","template":"Showing [something] to the camera","placeholders":["swing"]}, +{"id":"126930","label":"pushing car from right to left","template":"Pushing [something] from right to left","placeholders":["car"]}, +{"id":"18744","label":"dropping a box of juice behind a box of juice","template":"Dropping [something] behind [something]","placeholders":["a box of juice","a box of juice"]}, +{"id":"114567","label":"spinning plastic bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["plastic bottle"]}, +{"id":"36015","label":"stuffing bag into bag","template":"Stuffing [something] into [something]","placeholders":["bag","bag"]}, +{"id":"186572","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"71898","label":"twisting plastic bag","template":"Twisting [something]","placeholders":["plastic bag"]}, +{"id":"116326","label":"rolling a lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a lemon"]}, +{"id":"95317","label":"pushing jar so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jar"]}, +{"id":"111926","label":"pushing stapler from left to right","template":"Pushing [something] from left to right","placeholders":["stapler"]}, +{"id":"78533","label":"bending a toothpaste so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a toothpaste"]}, +{"id":"192192","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"29860","label":"attaching wire to adapter","template":"Attaching [something] to [something]","placeholders":["wire","adapter"]}, +{"id":"195930","label":"showing that bag is empty","template":"Showing that [something] is empty","placeholders":["bag"]}, +{"id":"154433","label":"turning a remote upside down","template":"Turning [something] upside down","placeholders":["a remote"]}, +{"id":"213734","label":"uncovering remote control","template":"Uncovering [something]","placeholders":["remote control"]}, +{"id":"123703","label":"showing a photo of ben 10 to the camera","template":"Showing a photo of [something] to the camera","placeholders":["ben 10"]}, +{"id":"195885","label":"showing a radiator behind a bike seat","template":"Showing [something] behind [something]","placeholders":["a radiator","a bike seat"]}, +{"id":"16723","label":"touching (without moving) roller of mouse","template":"Touching (without moving) [part] of [something]","placeholders":["roller","mouse"]}, +{"id":"27084","label":"turning the camera left while filming radiator","template":"Turning the camera left while filming [something]","placeholders":["radiator"]}, +{"id":"198072","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"154533","label":"attaching cap to cardreader","template":"Attaching [something] to [something]","placeholders":["cap","cardreader"]}, +{"id":"10430","label":"approaching green water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["green water bottle"]}, +{"id":"157723","label":"moving pin and tube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pin","tube"]}, +{"id":"185616","label":"turning the camera downwards while filming a panorama","template":"Turning the camera downwards while filming [something]","placeholders":["a panorama"]}, +{"id":"197574","label":"pulling bar soap from right to left","template":"Pulling [something] from right to left","placeholders":["bar soap"]}, +{"id":"88321","label":"holding keyboard over backpack","template":"Holding [something] over [something]","placeholders":["keyboard","backpack"]}, +{"id":"200602","label":"showing mobile phone to the camera","template":"Showing [something] to the camera","placeholders":["mobile phone"]}, +{"id":"120878","label":"holding glass of water over cellphone","template":"Holding [something] over [something]","placeholders":["glass of water","cellphone"]}, +{"id":"90331","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"66016","label":"pretending to open a cupboard door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cupboard door"]}, +{"id":"100339","label":"folding business card","template":"Folding [something]","placeholders":["business card"]}, +{"id":"177854","label":"pushing a notebook off of a bed","template":"Pushing [something] off of [something]","placeholders":["a notebook","a bed"]}, +{"id":"194035","label":"putting lamp on a surface","template":"Putting [something] on a surface","placeholders":["lamp"]}, +{"id":"48476","label":"stuffing keys into bag","template":"Stuffing [something] into [something]","placeholders":["keys","bag"]}, +{"id":"159574","label":"bending book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["book"]}, +{"id":"39211","label":"moving scissors and lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["scissors","lighter"]}, +{"id":"79730","label":"poking a plastic tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a plastic tube"]}, +{"id":"110930","label":"moving cover of notebook","template":"Moving [part] of [something]","placeholders":["cover","notebook"]}, +{"id":"112597","label":"throwing a pool float","template":"Throwing [something]","placeholders":["a pool float"]}, +{"id":"26608","label":"rolling water bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["water bottle"]}, +{"id":"165181","label":"plastic bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic bottle"]}, +{"id":"9075","label":"putting book on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["book","slab"]}, +{"id":"171297","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"41500","label":"plugging a kettle plug into wall socket","template":"Plugging [something] into [something]","placeholders":["a kettle plug","wall socket"]}, +{"id":"43721","label":"tilting tuperware with playdoh on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tuperware","playdoh"]}, +{"id":"151158","label":"taking game from shelf","template":"Taking [something] from [somewhere]","placeholders":["game","shelf"]}, +{"id":"9665","label":"putting 3 white colour board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["3","white colour board clips","cookie box lid"]}, +{"id":"145867","label":"tipping mousse over","template":"Tipping [something] over","placeholders":["mousse"]}, +{"id":"45321","label":"plugging male plug into female plug","template":"Plugging [something] into [something]","placeholders":["male plug","female plug"]}, +{"id":"117618","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"149274","label":"pretending to open dropper bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["dropper bottle"]}, +{"id":"108951","label":"uncovering flip flops","template":"Uncovering [something]","placeholders":["flip flops"]}, +{"id":"212164","label":"pushing white deodorant from right to left","template":"Pushing [something] from right to left","placeholders":["white deodorant"]}, +{"id":"153589","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"175464","label":"turning the camera right while filming switches","template":"Turning the camera right while filming [something]","placeholders":["switches"]}, +{"id":"169110","label":"lifting a pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pen"]}, +{"id":"185336","label":"pulling two ends of a rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber band"]}, +{"id":"168952","label":"hitting a toy with a pencil","template":"Hitting [something] with [something]","placeholders":["a toy","a pencil"]}, +{"id":"185955","label":"lifting scissors with sharpener on it","template":"Lifting [something] with [something] on it","placeholders":["scissors","sharpener"]}, +{"id":"217570","label":"pulling iphone out of notebook","template":"Pulling [something] out of [something]","placeholders":["iphone","notebook"]}, +{"id":"136034","label":"spilling water onto paper towel","template":"Spilling [something] onto [something]","placeholders":["water","paper towel"]}, +{"id":"32192","label":"taking bracelet out of jewelry box","template":"Taking [something] out of [something]","placeholders":["bracelet","jewelry box"]}, +{"id":"6366","label":"throwing a stapler onto a surface","template":"Throwing [something] onto a surface","placeholders":["a stapler"]}, +{"id":"28710","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"82630","label":"showing that sun glass is inside pouch","template":"Showing that [something] is inside [something]","placeholders":["sun glass","pouch"]}, +{"id":"161234","label":"holding mobile phone","template":"Holding [something]","placeholders":["mobile phone"]}, +{"id":"215824","label":"tearing a paper plate just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper plate"]}, +{"id":"18381","label":"moving away from earphone with your camera","template":"Moving away from [something] with your camera","placeholders":["earphone"]}, +{"id":"57972","label":"uncovering frog statue","template":"Uncovering [something]","placeholders":["frog statue"]}, +{"id":"23505","label":"lifting a toy car up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a toy car"]}, +{"id":"70342","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"144557","label":"pushing cloths onto carry bag","template":"Pushing [something] onto [something]","placeholders":["cloths","carry bag"]}, +{"id":"175609","label":"unfolding cover","template":"Unfolding [something]","placeholders":["cover"]}, +{"id":"169818","label":"throwing a ball against a wall","template":"Throwing [something] against [something]","placeholders":["a ball","a wall"]}, +{"id":"8111","label":"taking remote from stool","template":"Taking [something] from [somewhere]","placeholders":["remote","stool"]}, +{"id":"159361","label":"dropping a balloon onto a box","template":"Dropping [something] onto [something]","placeholders":["a balloon","a box"]}, +{"id":"157340","label":"wiping ketchup off of a counter","template":"Wiping [something] off of [something]","placeholders":["ketchup","a counter"]}, +{"id":"54143","label":"stacking 3 sticky notepads","template":"Stacking [number of] [something]","placeholders":["3","sticky notepads"]}, +{"id":"146086","label":"holding a pen","template":"Holding [something]","placeholders":["a pen"]}, +{"id":"23849","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"77619","label":"throwing a coin","template":"Throwing [something]","placeholders":["a coin"]}, +{"id":"197920","label":"taking red colour pen out of many colour pens on table","template":"Taking [one of many similar things on the table]","placeholders":["red colour pen out of many colour pens on table"]}, +{"id":"162669","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"59055","label":"holding two face powder","template":"Holding [something]","placeholders":["two face powder"]}, +{"id":"170379","label":"lifting up one end of bread loaf, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bread loaf"]}, +{"id":"50342","label":"tilting book with box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","box"]}, +{"id":"212376","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"142576","label":"pretending to put book on a surface","template":"Pretending to put [something] on a surface","placeholders":["book"]}, +{"id":"132397","label":"moving ice cream container towards the camera","template":"Moving [something] towards the camera","placeholders":["ice cream container"]}, +{"id":"213042","label":"plugging cord into laptop","template":"Plugging [something] into [something]","placeholders":["cord","laptop"]}, +{"id":"93895","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"1580","label":"throwing doll in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["doll"]}, +{"id":"119510","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"122993","label":"lifting up one end of a comb without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a comb"]}, +{"id":"191153","label":"pulling two ends of bottle but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["bottle"]}, +{"id":"174952","label":"stuffing a tin into a handbag","template":"Stuffing [something] into [something]","placeholders":["a tin","a handbag"]}, +{"id":"48716","label":"stacking 3 cards","template":"Stacking [number of] [something]","placeholders":["3","cards"]}, +{"id":"185586","label":"pulling two ends of a rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber band"]}, +{"id":"205616","label":"pulling two ends of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a paper"]}, +{"id":"127205","label":"moving yellow car and white car away from each other","template":"Moving [something] and [something] away from each other","placeholders":["yellow car","white car"]}, +{"id":"81136","label":"putting book in front of mouse","template":"Putting [something] in front of [something]","placeholders":["book","mouse"]}, +{"id":"2069","label":"stuffing cotton into tote bag","template":"Stuffing [something] into [something]","placeholders":["cotton","tote bag"]}, +{"id":"167159","label":"moving ball and ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ball","ball"]}, +{"id":"109167","label":"putting one die to group of dice","template":"Putting [something similar to other things that are already on the table]","placeholders":["one die to group of dice"]}, +{"id":"100676","label":"post-it falling like a rock","template":"[Something] falling like a rock","placeholders":["post-it"]}, +{"id":"166251","label":"showing that toothbrush is inside cup","template":"Showing that [something] is inside [something]","placeholders":["toothbrush","cup"]}, +{"id":"35038","label":"poking spoon so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["spoon"]}, +{"id":"91078","label":"approaching wardrobe key with your camera","template":"Approaching [something] with your camera","placeholders":["wardrobe key"]}, +{"id":"146664","label":"closing jeep door","template":"Closing [something]","placeholders":["jeep door"]}, +{"id":"194318","label":"throwing ball against match box","template":"Throwing [something] against [something]","placeholders":["ball","match box"]}, +{"id":"901","label":"turning the camera right while filming cup","template":"Turning the camera right while filming [something]","placeholders":["cup"]}, +{"id":"216381","label":"tipping something with something in it over, so something in it falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["something","something in it","something in it"]}, +{"id":"209343","label":"putting knife into sheath","template":"Putting [something] into [something]","placeholders":["knife","sheath"]}, +{"id":"52409","label":"approaching flowers with your camera","template":"Approaching [something] with your camera","placeholders":["flowers"]}, +{"id":"95730","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"193606","label":"putting a yellow marker next to other markers on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a yellow marker next to other markers on the table"]}, +{"id":"14208","label":"pretending to take coin from coin","template":"Pretending to take [something] from [somewhere]","placeholders":["coin","coin"]}, +{"id":"171439","label":"moving scrap paper away from scrap paper","template":"Moving [something] away from [something]","placeholders":["scrap paper","scrap paper"]}, +{"id":"160038","label":"dropping phone in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["phone","pillow"]}, +{"id":"62770","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"41675","label":"taking a cellphone","template":"Taking [one of many similar things on the table]","placeholders":["a cellphone"]}, +{"id":"147782","label":"showing cream tube behind the bowl","template":"Showing [something] behind [something]","placeholders":["cream tube","the bowl"]}, +{"id":"195337","label":"showing play doh container to the camera","template":"Showing [something] to the camera","placeholders":["play doh container"]}, +{"id":"50754","label":"trying to bend metal spoon so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal spoon"]}, +{"id":"9094","label":"dropping container in front of basket","template":"Dropping [something] in front of [something]","placeholders":["container","basket"]}, +{"id":"162986","label":"lifting plate with cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","cup"]}, +{"id":"206768","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"22865","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"122104","label":"pretending to close ketchup bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["ketchup bottle"]}, +{"id":"165580","label":"pushing stick of deodorant off of bed","template":"Pushing [something] off of [something]","placeholders":["stick of deodorant","bed"]}, +{"id":"8001","label":"pretending to poke candle","template":"Pretending to poke [something]","placeholders":["candle"]}, +{"id":"101120","label":"spinning umperla that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["umperla"]}, +{"id":"194336","label":"lifting up one end of wood log, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["wood log"]}, +{"id":"181683","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"48420","label":"l stick falling like a rock","template":"[Something] falling like a rock","placeholders":["l stick"]}, +{"id":"184961","label":"poking dinosaur figure so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["dinosaur figure"]}, +{"id":"37713","label":"trying but failing to attach a paper to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","the wall"]}, +{"id":"150311","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"171602","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"7741","label":"pushing candle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["candle"]}, +{"id":"5472","label":"putting a pen, an eraser and a glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pen","an eraser","a glass"]}, +{"id":"197841","label":"taking silver plate out of sugar bottle","template":"Taking [something] out of [something]","placeholders":["silver plate","sugar bottle"]}, +{"id":"99266","label":"pulling casio from behind of pillow","template":"Pulling [something] from behind of [something]","placeholders":["casio","pillow"]}, +{"id":"204032","label":"holding mobile over study table","template":"Holding [something] over [something]","placeholders":["mobile","study table"]}, +{"id":"87845","label":"putting tv control upright on the table","template":"Putting [something] upright on the table","placeholders":["tv control"]}, +{"id":"85463","label":"rubberband falling like a rock","template":"[Something] falling like a rock","placeholders":["rubberband"]}, +{"id":"217858","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"201329","label":"pretending to throw ketchup bottle","template":"Pretending to throw [something]","placeholders":["ketchup bottle"]}, +{"id":"151059","label":"trying but failing to attach paper to a refrigerator because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","a refrigerator"]}, +{"id":"80406","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"189783","label":"holding pencil over gift box","template":"Holding [something] over [something]","placeholders":["pencil","gift box"]}, +{"id":"129687","label":"touching (without moving) cap of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["cap","bottle"]}, +{"id":"150220","label":"putting hammer upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["hammer"]}, +{"id":"191641","label":"bending a large carrot until it breaks","template":"Bending [something] until it breaks","placeholders":["a large carrot"]}, +{"id":"168327","label":"pretending to sprinkle air onto glass","template":"Pretending to sprinkle air onto [something]","placeholders":["glass"]}, +{"id":"120426","label":"showing that a marker is inside a pencil holder","template":"Showing that [something] is inside [something]","placeholders":["a marker","a pencil holder"]}, +{"id":"146933","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"143352","label":"showing that milk is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["milk","a bottle"]}, +{"id":"60455","label":"dropping keys onto bag","template":"Dropping [something] onto [something]","placeholders":["keys","bag"]}, +{"id":"36074","label":"uncovering paper","template":"Uncovering [something]","placeholders":["paper"]}, +{"id":"19832","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"142512","label":"plugging cord into headset","template":"Plugging [something] into [something]","placeholders":["cord","headset"]}, +{"id":"98864","label":"turning the camera right while filming dinosaur model","template":"Turning the camera right while filming [something]","placeholders":["dinosaur model"]}, +{"id":"115386","label":"hand towel being deflected from cabinet","template":"[Something] being deflected from [something]","placeholders":["hand towel","cabinet"]}, +{"id":"216410","label":"dropping ball into measuring jug","template":"Dropping [something] into [something]","placeholders":["ball","measuring jug"]}, +{"id":"210811","label":"dropping wrist-watch onto plastic-container","template":"Dropping [something] onto [something]","placeholders":["wrist-watch","plastic-container"]}, +{"id":"160418","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"195925","label":"rolling shampoo bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["shampoo bottle"]}, +{"id":"130198","label":"moving wallet across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["wallet"]}, +{"id":"124932","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"163396","label":"stickers falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["stickers"]}, +{"id":"179295","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"72269","label":"putting a dvd next to a tissue box","template":"Putting [something] next to [something]","placeholders":["a dvd","a tissue box"]}, +{"id":"190407","label":"showing wine bottles to the camera","template":"Showing [something] to the camera","placeholders":["wine bottles"]}, +{"id":"122492","label":"twisting something","template":"Twisting [something]","placeholders":["something"]}, +{"id":"127713","label":"showing medicine bottle behind plastic cube","template":"Showing [something] behind [something]","placeholders":["medicine bottle","plastic cube"]}, +{"id":"70959","label":"turning stuffed animal upside down","template":"Turning [something] upside down","placeholders":["stuffed animal"]}, +{"id":"129834","label":"pushing coaster off of table","template":"Pushing [something] off of [something]","placeholders":["coaster","table"]}, +{"id":"67177","label":"showing cigarette lighter on top of duster","template":"Showing [something] on top of [something]","placeholders":["cigarette lighter","duster"]}, +{"id":"108361","label":"moving a paint brush down","template":"Moving [something] down","placeholders":["a paint brush"]}, +{"id":"197975","label":"pushing specs with book","template":"Pushing [something] with [something]","placeholders":["specs","book"]}, +{"id":"81258","label":"pulling one tealight candle from left to right","template":"Pulling [something] from left to right","placeholders":["one tealight candle"]}, +{"id":"190267","label":"putting a round glass paperweight with other paperweights on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a round glass paperweight with other paperweights on the table"]}, +{"id":"164059","label":"plugging extension plug into wall plug","template":"Plugging [something] into [something]","placeholders":["extension plug","wall plug"]}, +{"id":"189300","label":"pretending to be tearing a mousepad","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a mousepad"]}, +{"id":"201219","label":"holding book in front of shoe","template":"Holding [something] in front of [something]","placeholders":["book","shoe"]}, +{"id":"215894","label":"attaching a lightbulb to a candlewarmer","template":"Attaching [something] to [something]","placeholders":["a lightbulb","a candlewarmer"]}, +{"id":"110358","label":"moving sugar bowl up","template":"Moving [something] up","placeholders":["sugar bowl"]}, +{"id":"155599","label":"approaching black microwave with your camera","template":"Approaching [something] with your camera","placeholders":["black microwave"]}, +{"id":"217895","label":"dropping a matchstick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a remote"]}, +{"id":"52805","label":"taking a candle","template":"Taking [one of many similar things on the table]","placeholders":["a candle"]}, +{"id":"196030","label":"putting a tomato behind a mug","template":"Putting [something] behind [something]","placeholders":["a tomato","a mug"]}, +{"id":"145776","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"70956","label":"putting hairband on a surface","template":"Putting [something] on a surface","placeholders":["hairband"]}, +{"id":"62553","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"82165","label":"plugging charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall outlet"]}, +{"id":"123033","label":"holding keys over a box","template":"Holding [something] over [something]","placeholders":["keys","a box"]}, +{"id":"164199","label":"holding envelope next to cup","template":"Holding [something] next to [something]","placeholders":["envelope","cup"]}, +{"id":"99908","label":"closing a microwave oven door","template":"Closing [something]","placeholders":["a microwave oven door"]}, +{"id":"70283","label":"putting brush","template":"Putting [something similar to other things that are already on the table]","placeholders":["brush"]}, +{"id":"9991","label":"moving note book up","template":"Moving [something] up","placeholders":["note book"]}, +{"id":"149591","label":"turning a painting upside down","template":"Turning [something] upside down","placeholders":["a painting"]}, +{"id":"190163","label":"showing a coconut shell on top of the powder tin","template":"Showing [something] on top of [something]","placeholders":["a coconut shell","the powder tin"]}, +{"id":"43819","label":"putting a pencil into a glass","template":"Putting [something] into [something]","placeholders":["a pencil","a glass"]}, +{"id":"172565","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"193292","label":"pushing a candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a candle"]}, +{"id":"156458","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"68527","label":"taking jalebi sweet from packet","template":"Taking [something] from [somewhere]","placeholders":["jalebi sweet","packet"]}, +{"id":"204105","label":"covering a cat with a blanket","template":"Covering [something] with [something]","placeholders":["a cat","a blanket"]}, +{"id":"198082","label":"moving a small jar closer to a jug","template":"Moving [something] closer to [something]","placeholders":["a small jar","a jug"]}, +{"id":"198342","label":"putting wax jar on a surface","template":"Putting [something] on a surface","placeholders":["wax jar"]}, +{"id":"112707","label":"pretending to open jam-box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jam-box"]}, +{"id":"168278","label":"pouring water into water bottle","template":"Pouring [something] into [something]","placeholders":["water","water bottle"]}, +{"id":"116516","label":"poking paper towels so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["paper towels"]}, +{"id":"34779","label":"holding knife next to pillow","template":"Holding [something] next to [something]","placeholders":["knife","pillow"]}, +{"id":"40616","label":"unfolding a sheet of paper","template":"Unfolding [something]","placeholders":["a sheet of paper"]}, +{"id":"58412","label":"lifting a glasses case up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a glasses case"]}, +{"id":"210221","label":"throwing eraser","template":"Throwing [something]","placeholders":["eraser"]}, +{"id":"199151","label":"plugging a charger into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a socket"]}, +{"id":"211066","label":"tearing a box just a little bit","template":"Tearing [something] just a little bit","placeholders":["a box"]}, +{"id":"1729","label":"showing that sink is empty","template":"Showing that [something] is empty","placeholders":["sink"]}, +{"id":"186388","label":"putting lunchbox on a surface","template":"Putting [something] on a surface","placeholders":["lunchbox"]}, +{"id":"150994","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"81419","label":"pushing bittle with spoon","template":"Pushing [something] with [something]","placeholders":["bittle","spoon"]}, +{"id":"56041","label":"tearing card into two pieces","template":"Tearing [something] into two pieces","placeholders":["card"]}, +{"id":"92260","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"17296","label":"pretending to take comb from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["comb","bed"]}, +{"id":"112470","label":"dropping ball into cup","template":"Dropping [something] into [something]","placeholders":["ball","cup"]}, +{"id":"191867","label":"wiping a tissue off of a table","template":"Wiping [something] off of [something]","placeholders":["a tissue","a table"]}, +{"id":"36205","label":"holding a computer mouse next to a keyboard","template":"Holding [something] next to [something]","placeholders":["a computer mouse","a keyboard"]}, +{"id":"170438","label":"poking a hole into slime","template":"Poking a hole into [something soft]","placeholders":["slime"]}, +{"id":"97274","label":"moving a toy car and a fridge magnet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a toy car","a fridge magnet"]}, +{"id":"14662","label":"putting dice into plastic cup","template":"Putting [something] into [something]","placeholders":["dice","plastic cup"]}, +{"id":"39097","label":"putting wallet into drawer","template":"Putting [something] into [something]","placeholders":["wallet","drawer"]}, +{"id":"117461","label":"covering pendrive with simba plush","template":"Covering [something] with [something]","placeholders":["pendrive","simba plush"]}, +{"id":"41384","label":"twisting napkin","template":"Twisting [something]","placeholders":["napkin"]}, +{"id":"119534","label":"moving a strawberry candy and a lemon candy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a strawberry candy","a lemon candy"]}, +{"id":"122527","label":"failing to put phone into bottle because phone does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["phone","bottle","phone"]}, +{"id":"143401","label":"pushing marker pen from right to left","template":"Pushing [something] from right to left","placeholders":["marker pen"]}, +{"id":"45645","label":"pretending to take toothbrush from roof","template":"Pretending to take [something] from [somewhere]","placeholders":["toothbrush","roof"]}, +{"id":"88599","label":"putting pebble onto glass","template":"Putting [something] onto [something]","placeholders":["pebble","glass"]}, +{"id":"161146","label":"pushing screwdriver so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["screwdriver"]}, +{"id":"54280","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"173817","label":"turning tin upside down","template":"Turning [something] upside down","placeholders":["tin"]}, +{"id":"32343","label":"turning an ipad upside down","template":"Turning [something] upside down","placeholders":["an ipad"]}, +{"id":"196256","label":"holding a plate over a sink","template":"Holding [something] over [something]","placeholders":["a plate","a sink"]}, +{"id":"85892","label":"moving box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["box"]}, +{"id":"154186","label":"spinning a ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ball"]}, +{"id":"58840","label":"throwing lemon in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["lemon"]}, +{"id":"139756","label":"showing lipbalm behind coffee","template":"Showing [something] behind [something]","placeholders":["lipbalm","coffee"]}, +{"id":"108728","label":"holding a catcher next to the door","template":"Holding [something] next to [something]","placeholders":["a catcher","the door"]}, +{"id":"54331","label":"moving lid of metal can","template":"Moving [part] of [something]","placeholders":["lid","metal can"]}, +{"id":"141576","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"35901","label":"hitting a box with a pencil","template":"Hitting [something] with [something]","placeholders":["a box","a pencil"]}, +{"id":"135188","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"212341","label":"showing that magnifying glass is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["magnifying glass","spectacle box"]}, +{"id":"159829","label":"pushing geometric compass with marker pen","template":"Pushing [something] with [something]","placeholders":["geometric compass","marker pen"]}, +{"id":"117385","label":"holding cup in front of sheild","template":"Holding [something] in front of [something]","placeholders":["cup","sheild"]}, +{"id":"26051","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"104079","label":"a childs block falling like a rock","template":"[Something] falling like a rock","placeholders":["a childs block"]}, +{"id":"190482","label":"uncovering pebble","template":"Uncovering [something]","placeholders":["pebble"]}, +{"id":"211034","label":"squeezing polythene","template":"Squeezing [something]","placeholders":["polythene"]}, +{"id":"160375","label":"showing controller next to a coffee pot","template":"Showing [something] next to [something]","placeholders":["controller","a coffee pot"]}, +{"id":"70679","label":"showing that yellow container is empty","template":"Showing that [something] is empty","placeholders":["yellow container"]}, +{"id":"23814","label":"plugging mobile charger into socket","template":"Plugging [something] into [something]","placeholders":["mobile charger","socket"]}, +{"id":"63671","label":"putting wallet behind the cream tube","template":"Putting [something] behind [something]","placeholders":["wallet","the cream tube"]}, +{"id":"32896","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"59090","label":"throwing metal against bowl","template":"Throwing [something] against [something]","placeholders":["metal","bowl"]}, +{"id":"31938","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"29287","label":"covering lantern with jacket","template":"Covering [something] with [something]","placeholders":["lantern","jacket"]}, +{"id":"167126","label":"trying to bend key so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["key"]}, +{"id":"62954","label":"hitting a mop bucket with a mop stick","template":"Hitting [something] with [something]","placeholders":["a mop bucket","a mop stick"]}, +{"id":"178047","label":"spilling water onto a table","template":"Spilling [something] onto [something]","placeholders":["water","a table"]}, +{"id":"199457","label":"tearing a bun into two pieces","template":"Tearing [something] into two pieces","placeholders":["a bun"]}, +{"id":"144207","label":"moving away from lighter with your camera","template":"Moving away from [something] with your camera","placeholders":["lighter"]}, +{"id":"152743","label":"uncovering cd","template":"Uncovering [something]","placeholders":["cd"]}, +{"id":"191335","label":"holding a pillow","template":"Holding [something]","placeholders":["a pillow"]}, +{"id":"12315","label":"putting perfume bottle in front of clip","template":"Putting [something] in front of [something]","placeholders":["perfume bottle","clip"]}, +{"id":"179068","label":"throwing small box onto a surface","template":"Throwing [something] onto a surface","placeholders":["small box"]}, +{"id":"5216","label":"stuffing tissue into tissue box","template":"Stuffing [something] into [something]","placeholders":["tissue","tissue box"]}, +{"id":"34048","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"33274","label":"putting a hairclip upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a hairclip"]}, +{"id":"176842","label":"bending text book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["text book"]}, +{"id":"160447","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"184866","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"113961","label":"putting orange on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["orange"]}, +{"id":"98791","label":"showing hanger to the camera","template":"Showing [something] to the camera","placeholders":["hanger"]}, +{"id":"199354","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"45894","label":"twisting handkerchief","template":"Twisting [something]","placeholders":["handkerchief"]}, +{"id":"126691","label":"unfolding a washclothe","template":"Unfolding [something]","placeholders":["a washclothe"]}, +{"id":"145754","label":"tipping a plastic cup over","template":"Tipping [something] over","placeholders":["a plastic cup"]}, +{"id":"215765","label":"putting cell phone and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["cell phone","cup"]}, +{"id":"213619","label":"moving box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["box"]}, +{"id":"144826","label":"showing a candle next to the match box","template":"Showing [something] next to [something]","placeholders":["a candle","the match box"]}, +{"id":"25965","label":"putting a pen behind a measuring cup","template":"Putting [something] behind [something]","placeholders":["a pen","a measuring cup"]}, +{"id":"7449","label":"rolling a glue stick on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a glue stick"]}, +{"id":"5532","label":"putting a paper clip on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a paper clip on the table"]}, +{"id":"27494","label":"taking water bottle","template":"Taking [one of many similar things on the table]","placeholders":["water bottle"]}, +{"id":"181820","label":"plugging a phone charger into the wall outlet","template":"Plugging [something] into [something]","placeholders":["a phone charger","the wall outlet"]}, +{"id":"181444","label":"ad paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["ad paper"]}, +{"id":"56097","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"198202","label":"pretending to turn cards upside down","template":"Pretending to turn [something] upside down","placeholders":["cards"]}, +{"id":"16943","label":"dropping wallet behind couch","template":"Dropping [something] behind [something]","placeholders":["wallet","couch"]}, +{"id":"27861","label":"dropping skateboard in front of robot","template":"Dropping [something] in front of [something]","placeholders":["skateboard","robot"]}, +{"id":"131429","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"43241","label":"touching (without moving) cap of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["cap","bottle"]}, +{"id":"38904","label":"throwing comb","template":"Throwing [something]","placeholders":["comb"]}, +{"id":"138274","label":"throwing pomegranate against water-can","template":"Throwing [something] against [something]","placeholders":["pomegranate","water-can"]}, +{"id":"56826","label":"uncovering bed","template":"Uncovering [something]","placeholders":["bed"]}, +{"id":"211749","label":"toy car colliding with another toy car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["toy car","another toy car"]}, +{"id":"25768","label":"dropping paper behind wineglass","template":"Dropping [something] behind [something]","placeholders":["paper","wineglass"]}, +{"id":"38421","label":"hitting bed with pillow","template":"Hitting [something] with [something]","placeholders":["bed","pillow"]}, +{"id":"183980","label":"pulling glas from right to left","template":"Pulling [something] from right to left","placeholders":["glas"]}, +{"id":"201372","label":"putting a box next to a bucket","template":"Putting [something] next to [something]","placeholders":["a box","a bucket"]}, +{"id":"87844","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"187685","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"16776","label":"pretending to put red watch box on a surface","template":"Pretending to put [something] on a surface","placeholders":["red watch box"]}, +{"id":"13804","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"50485","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"204061","label":"throwing stapler onto a surface","template":"Throwing [something] onto a surface","placeholders":["stapler"]}, +{"id":"114460","label":"dropping pen onto box","template":"Dropping [something] onto [something]","placeholders":["pen","box"]}, +{"id":"116497","label":"throwing a book","template":"Throwing [something]","placeholders":["a book"]}, +{"id":"197831","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"126557","label":"holding a book over a pen","template":"Holding [something] over [something]","placeholders":["a book","a pen"]}, +{"id":"187315","label":"lifting powerbank with airpods case on it","template":"Lifting [something] with [something] on it","placeholders":["powerbank","airpods case"]}, +{"id":"155565","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"94733","label":"uncovering the bottle","template":"Uncovering [something]","placeholders":["the bottle"]}, +{"id":"110579","label":"bending notebook so that it deforms","template":"Bending [something] so that it deforms","placeholders":["notebook"]}, +{"id":"133315","label":"pretending to be tearing shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shirt"]}, +{"id":"55230","label":"turning the camera upwards while filming wastebin","template":"Turning the camera upwards while filming [something]","placeholders":["wastebin"]}, +{"id":"11214","label":"showing an air conditioner on top of the wall","template":"Showing [something] on top of [something]","placeholders":["an air conditioner","the wall"]}, +{"id":"172242","label":"spinning spoon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spoon"]}, +{"id":"116279","label":"pushing mouse from right to left","template":"Pushing [something] from right to left","placeholders":["mouse"]}, +{"id":"199373","label":"putting a hairclip onto a deodorant","template":"Putting [something] onto [something]","placeholders":["a hairclip","a deodorant"]}, +{"id":"93854","label":"plugging adaptor into plug","template":"Plugging [something] into [something]","placeholders":["adaptor","plug"]}, +{"id":"124044","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"167347","label":"putting napkins in front of shakers","template":"Putting [something] in front of [something]","placeholders":["napkins","shakers"]}, +{"id":"137733","label":"plugging usb cable into phone","template":"Plugging [something] into [something]","placeholders":["usb cable","phone"]}, +{"id":"72697","label":"poking battleship game so that it falls over","template":"Poking [something] so that it falls over","placeholders":["battleship game"]}, +{"id":"148605","label":"candle falling like a rock","template":"[Something] falling like a rock","placeholders":["candle"]}, +{"id":"152269","label":"plugging box into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["box","wall"]}, +{"id":"195270","label":"showing wine bottles to the camera","template":"Showing [something] to the camera","placeholders":["wine bottles"]}, +{"id":"125248","label":"pretending to be tearing calender","template":"Pretending to be tearing [something that is not tearable]","placeholders":["calender"]}, +{"id":"192654","label":"taking bowl out of microwave","template":"Taking [something] out of [something]","placeholders":["bowl","microwave"]}, +{"id":"60963","label":"pouring orange juice out of jug","template":"Pouring [something] out of [something]","placeholders":["orange juice","jug"]}, +{"id":"34674","label":"pulling green water bottle from right to left","template":"Pulling [something] from right to left","placeholders":["green water bottle"]}, +{"id":"178932","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"192843","label":"showing mirror behind pillow","template":"Showing [something] behind [something]","placeholders":["mirror","pillow"]}, +{"id":"176411","label":"putting pen into cup","template":"Putting [something] into [something]","placeholders":["pen","cup"]}, +{"id":"195783","label":"tipping block over","template":"Tipping [something] over","placeholders":["block"]}, +{"id":"41337","label":"spinning onion that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["onion"]}, +{"id":"108798","label":"showing picture to the camera","template":"Showing [something] to the camera","placeholders":["picture"]}, +{"id":"66462","label":"pulling pink water bottle from left to right","template":"Pulling [something] from left to right","placeholders":["pink water bottle"]}, +{"id":"102994","label":"showing a fork next to a knife","template":"Showing [something] next to [something]","placeholders":["a fork","a knife"]}, +{"id":"102693","label":"taking one of many chocolates","template":"Taking [one of many similar things on the table]","placeholders":["one of many chocolates"]}, +{"id":"199038","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"97173","label":"pretending or failing to wipe hard candy off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["hard candy","counter"]}, +{"id":"2329","label":"dropping fork onto table","template":"Dropping [something] onto [something]","placeholders":["fork","table"]}, +{"id":"105135","label":"stacking 2 spanners","template":"Stacking [number of] [something]","placeholders":["2","spanners"]}, +{"id":"69602","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"166902","label":"moving a pen and a pencil so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a pen","a pencil"]}, +{"id":"200511","label":"showing pen next to blue pen cap","template":"Showing [something] next to [something]","placeholders":["pen","blue pen cap"]}, +{"id":"43134","label":"putting a travel mug on a surface","template":"Putting [something] on a surface","placeholders":["a travel mug"]}, +{"id":"3053","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"34617","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"120443","label":"laying jar on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["jar"]}, +{"id":"85124","label":"showing children's slid to the camera","template":"Showing [something] to the camera","placeholders":["children's slid"]}, +{"id":"89608","label":"pretending to pick a book up","template":"Pretending to pick [something] up","placeholders":["a book"]}, +{"id":"70556","label":"covering key with tissue","template":"Covering [something] with [something]","placeholders":["key","tissue"]}, +{"id":"153296","label":"tilting table with bucket on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["table","bucket"]}, +{"id":"198617","label":"squeezing toilet paper","template":"Squeezing [something]","placeholders":["toilet paper"]}, +{"id":"73350","label":"throwing car keys in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["car keys"]}, +{"id":"220229","label":"touching (without moving) the tip of scissors","template":"Touching (without moving) [part] of [something]","placeholders":["the tip","scissors"]}, +{"id":"56806","label":"showing dinosaur prototype to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur prototype"]}, +{"id":"99274","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"192103","label":"antler falling like a rock","template":"[Something] falling like a rock","placeholders":["antler"]}, +{"id":"89830","label":"pushing compact disc from left to right","template":"Pushing [something] from left to right","placeholders":["compact disc"]}, +{"id":"73397","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"135381","label":"pretending to pick a bunch of keys up","template":"Pretending to pick [something] up","placeholders":["a bunch of keys"]}, +{"id":"51531","label":"holding purse in front of picture","template":"Holding [something] in front of [something]","placeholders":["purse","picture"]}, +{"id":"122635","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"1938","label":"holding a container","template":"Holding [something]","placeholders":["a container"]}, +{"id":"193442","label":"marker falling like a rock","template":"[Something] falling like a rock","placeholders":["marker"]}, +{"id":"19853","label":"putting book, lighter and charger on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","lighter","charger"]}, +{"id":"22364","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"62344","label":"letting a hollow pipe roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a hollow pipe"]}, +{"id":"88480","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"84867","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"84598","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"194686","label":"tipping glass bottle over","template":"Tipping [something] over","placeholders":["glass bottle"]}, +{"id":"211247","label":"pushing a spinner so it spins","template":"Pushing [something] so it spins","placeholders":["a spinner"]}, +{"id":"26475","label":"holding water bottle behind glass","template":"Holding [something] behind [something]","placeholders":["water bottle","glass"]}, +{"id":"27267","label":"moving thimble up","template":"Moving [something] up","placeholders":["thimble"]}, +{"id":"175022","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"14453","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"169849","label":"pretending to poke a battery","template":"Pretending to poke [something]","placeholders":["a battery"]}, +{"id":"165834","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"213060","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"67399","label":"moving key chain down","template":"Moving [something] down","placeholders":["key chain"]}, +{"id":"16328","label":"spilling water onto a sock","template":"Spilling [something] onto [something]","placeholders":["water","a sock"]}, +{"id":"75814","label":"throwing sport shoe in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["sport shoe"]}, +{"id":"46538","label":"picking basket up","template":"Picking [something] up","placeholders":["basket"]}, +{"id":"209154","label":"throwing board clip against stapler","template":"Throwing [something] against [something]","placeholders":["board clip","stapler"]}, +{"id":"156677","label":"plugging usb into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","computer"]}, +{"id":"55153","label":"moving top of potty","template":"Moving [part] of [something]","placeholders":["top","potty"]}, +{"id":"157156","label":"showing blue lighter to the camera","template":"Showing [something] to the camera","placeholders":["blue lighter"]}, +{"id":"7379","label":"putting pencil and brown colour sketch on the table","template":"Putting [something] and [something] on the table","placeholders":["pencil","brown colour sketch"]}, +{"id":"161366","label":"turning remote upside down","template":"Turning [something] upside down","placeholders":["remote"]}, +{"id":"99812","label":"moving a candle and a candle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a candle","a candle"]}, +{"id":"120556","label":"moving shoe and shoe away from each other","template":"Moving [something] and [something] away from each other","placeholders":["shoe","shoe"]}, +{"id":"68128","label":"taking spoon out of container","template":"Taking [something] out of [something]","placeholders":["spoon","container"]}, +{"id":"63160","label":"pretending to open small container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["small container"]}, +{"id":"83740","label":"a key chain falling like a rock","template":"[Something] falling like a rock","placeholders":["a key chain"]}, +{"id":"177407","label":"pretending to take glass from table","template":"Pretending to take [something] from [somewhere]","placeholders":["glass","table"]}, +{"id":"119994","label":"pushing face wash so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["face wash"]}, +{"id":"119322","label":"showing that cloth is inside case","template":"Showing that [something] is inside [something]","placeholders":["cloth","case"]}, +{"id":"151431","label":"dropping cleaning cloth onto floor","template":"Dropping [something] onto [something]","placeholders":["cleaning cloth","floor"]}, +{"id":"83581","label":"letting exercise cylinder roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["exercise cylinder"]}, +{"id":"147671","label":"throwing pillow onto a surface","template":"Throwing [something] onto a surface","placeholders":["pillow"]}, +{"id":"2104","label":"pushing book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["book"]}, +{"id":"5807","label":"throwing a comb against motorcycle","template":"Throwing [something] against [something]","placeholders":["a comb","motorcycle"]}, +{"id":"179990","label":"pushing small freshmints from left to right","template":"Pushing [something] from left to right","placeholders":["small freshmints"]}, +{"id":"100589","label":"candy falling like a rock","template":"[Something] falling like a rock","placeholders":["candy"]}, +{"id":"108088","label":"tipping an owl over","template":"Tipping [something] over","placeholders":["an owl"]}, +{"id":"132866","label":"pretending to squeeze a metal ash-try","template":"Pretending to squeeze [something]","placeholders":["a metal ash-try"]}, +{"id":"149246","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"186221","label":"tipping a box over","template":"Tipping [something] over","placeholders":["a box"]}, +{"id":"104455","label":"putting comb next to toy","template":"Putting [something] next to [something]","placeholders":["comb","toy"]}, +{"id":"199117","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"108280","label":"stuffing towel into cup","template":"Stuffing [something] into [something]","placeholders":["towel","cup"]}, +{"id":"183649","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"181094","label":"pushing a container so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a container"]}, +{"id":"140150","label":"pulling box out of christmas stocking","template":"Pulling [something] out of [something]","placeholders":["box","christmas stocking"]}, +{"id":"141696","label":"turning a tv remote upside down","template":"Turning [something] upside down","placeholders":["a tv remote"]}, +{"id":"98615","label":"putting a vape upright on the table","template":"Putting [something] upright on the table","placeholders":["a vape"]}, +{"id":"64687","label":"putting knife into container","template":"Putting [something] into [something]","placeholders":["knife","container"]}, +{"id":"192123","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"140575","label":"pushing soap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["soap"]}, +{"id":"124050","label":"lifting up one end of dvd, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["dvd"]}, +{"id":"43954","label":"pushing green face powder from left to right","template":"Pushing [something] from left to right","placeholders":["green face powder"]}, +{"id":"125909","label":"holding mosquito bat","template":"Holding [something]","placeholders":["mosquito bat"]}, +{"id":"8593","label":"tilting lid with sponge on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["lid","sponge"]}, +{"id":"118909","label":"holding pouch","template":"Holding [something]","placeholders":["pouch"]}, +{"id":"143508","label":"putting a peg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a peg"]}, +{"id":"5492","label":"putting a bottle on the edge of a counter so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a bottle","a counter"]}, +{"id":"212492","label":"falling receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling receipt"]}, +{"id":"55360","label":"unfolding a handkerchief","template":"Unfolding [something]","placeholders":["a handkerchief"]}, +{"id":"161722","label":"picking calculator up","template":"Picking [something] up","placeholders":["calculator"]}, +{"id":"67939","label":"picking the remote up","template":"Picking [something] up","placeholders":["the remote"]}, +{"id":"48955","label":"holding tablet box","template":"Holding [something]","placeholders":["tablet box"]}, +{"id":"203413","label":"bending hanger so that it deforms","template":"Bending [something] so that it deforms","placeholders":["hanger"]}, +{"id":"206083","label":"pretending to take cellphone from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","floor"]}, +{"id":"159326","label":"dropping pen behind glass","template":"Dropping [something] behind [something]","placeholders":["pen","glass"]}, +{"id":"202246","label":"pretending to put bracelet next to tree","template":"Pretending to put [something] next to [something]","placeholders":["bracelet","tree"]}, +{"id":"98127","label":"approaching jeep with your camera","template":"Approaching [something] with your camera","placeholders":["jeep"]}, +{"id":"25379","label":"holding phone over bottle","template":"Holding [something] over [something]","placeholders":["phone","bottle"]}, +{"id":"164183","label":"turning cards upside down","template":"Turning [something] upside down","placeholders":["cards"]}, +{"id":"199215","label":"lifting books with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["books","bottle"]}, +{"id":"166239","label":"pushing tissues from right to left","template":"Pushing [something] from right to left","placeholders":["tissues"]}, +{"id":"197669","label":"moving bottle and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","bottle"]}, +{"id":"150869","label":"twisting water bottle lid","template":"Twisting [something]","placeholders":["water bottle lid"]}, +{"id":"174709","label":"spilling water onto dishes","template":"Spilling [something] onto [something]","placeholders":["water","dishes"]}, +{"id":"19122","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"75793","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"220183","label":"tape being deflected from cushion","template":"[Something] being deflected from [something]","placeholders":["tape","cushion"]}, +{"id":"370","label":"holding pen next to a book","template":"Holding [something] next to [something]","placeholders":["pen","a book"]}, +{"id":"183432","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"24630","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"103091","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"6161","label":"stacking five notebooks","template":"Stacking [number of] [something]","placeholders":["five","notebooks"]}, +{"id":"130836","label":"putting a mug that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a mug"]}, +{"id":"10335","label":"moving top of soap","template":"Moving [part] of [something]","placeholders":["top","soap"]}, +{"id":"9614","label":"putting a pen in pile of pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen in pile of pens"]}, +{"id":"180022","label":"attaching magnet to dishwasher","template":"Attaching [something] to [something]","placeholders":["magnet","dishwasher"]}, +{"id":"72196","label":"taking a biro out of a plastic box","template":"Taking [something] out of [something]","placeholders":["a biro","a plastic box"]}, +{"id":"198950","label":"showing a screwdiver next to the lotion tin","template":"Showing [something] next to [something]","placeholders":["a screwdiver","the lotion tin"]}, +{"id":"177812","label":"squeezing socks","template":"Squeezing [something]","placeholders":["socks"]}, +{"id":"62430","label":"moving powerbank and airpods case closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["powerbank","airpods case"]}, +{"id":"161302","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"153637","label":"pretending to throw a ball","template":"Pretending to throw [something]","placeholders":["a ball"]}, +{"id":"80906","label":"closing the oven","template":"Closing [something]","placeholders":["the oven"]}, +{"id":"170918","label":"stuffing tissue into a jar","template":"Stuffing [something] into [something]","placeholders":["tissue","a jar"]}, +{"id":"126159","label":"pushing baby pram with plastic bottle","template":"Pushing [something] with [something]","placeholders":["baby pram","plastic bottle"]}, +{"id":"3082","label":"plugging plug into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","outlet"]}, +{"id":"147468","label":"trying but failing to attach cell to cell because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cell","cell"]}, +{"id":"36255","label":"dropping tomato into bowl","template":"Dropping [something] into [something]","placeholders":["tomato","bowl"]}, +{"id":"93414","label":"holding remote behind can","template":"Holding [something] behind [something]","placeholders":["remote","can"]}, +{"id":"208560","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"214731","label":"pretending to put pink toothbrush case on a surface","template":"Pretending to put [something] on a surface","placeholders":["pink toothbrush case"]}, +{"id":"96878","label":"putting teabag","template":"Putting [something similar to other things that are already on the table]","placeholders":["teabag"]}, +{"id":"43428","label":"moving away from measuring tape with your camera","template":"Moving away from [something] with your camera","placeholders":["measuring tape"]}, +{"id":"80818","label":"throwing earcup","template":"Throwing [something]","placeholders":["earcup"]}, +{"id":"160013","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"212","label":"putting paint tube next to cactus","template":"Putting [something] next to [something]","placeholders":["paint tube","cactus"]}, +{"id":"85066","label":"plugging a usb cable into a desktop microphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb cable","a desktop microphone"]}, +{"id":"110716","label":"pretending to put soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["soap"]}, +{"id":"73131","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"71103","label":"lifting up one end of a pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pencil"]}, +{"id":"159073","label":"pulling two ends of straw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["straw"]}, +{"id":"86616","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"66545","label":"plugging a plug into a wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a wall plug"]}, +{"id":"152151","label":"pretending to open a book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a book"]}, +{"id":"60960","label":"unfolding a tissue","template":"Unfolding [something]","placeholders":["a tissue"]}, +{"id":"59884","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"111579","label":"showing that matchbox is empty","template":"Showing that [something] is empty","placeholders":["matchbox"]}, +{"id":"90792","label":"throwing plastic bottle against rock","template":"Throwing [something] against [something]","placeholders":["plastic bottle","rock"]}, +{"id":"161687","label":"pouring coffee out of a glass","template":"Pouring [something] out of [something]","placeholders":["coffee","a glass"]}, +{"id":"203473","label":"turning the camera downwards while filming old mobile phone","template":"Turning the camera downwards while filming [something]","placeholders":["old mobile phone"]}, +{"id":"114096","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"10411","label":"tipping a bag over","template":"Tipping [something] over","placeholders":["a bag"]}, +{"id":"200490","label":"moving lid of cream container","template":"Moving [part] of [something]","placeholders":["lid","cream container"]}, +{"id":"67325","label":"moving a toothpick container closer to a plate","template":"Moving [something] closer to [something]","placeholders":["a toothpick container","a plate"]}, +{"id":"12499","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"197889","label":"pretending to put fruit behind jar","template":"Pretending to put [something] behind [something]","placeholders":["fruit","jar"]}, +{"id":"49534","label":"rolling box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["box"]}, +{"id":"115061","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"146601","label":"laying a glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glass"]}, +{"id":"72315","label":"putting a chair in front of the door","template":"Putting [something] in front of [something]","placeholders":["a chair","the door"]}, +{"id":"93845","label":"pouring water out of a jug","template":"Pouring [something] out of [something]","placeholders":["water","a jug"]}, +{"id":"164718","label":"holding bananas in front of clock","template":"Holding [something] in front of [something]","placeholders":["bananas","clock"]}, +{"id":"186786","label":"moving a shoe and another shoe so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a shoe","another shoe"]}, +{"id":"70528","label":"putting block that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["block"]}, +{"id":"48705","label":"plugging cord into electrical outlet","template":"Plugging [something] into [something]","placeholders":["cord","electrical outlet"]}, +{"id":"143243","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"120910","label":"squeezing a rubber ducky","template":"Squeezing [something]","placeholders":["a rubber ducky"]}, +{"id":"170105","label":"covering a calculator with a cloth","template":"Covering [something] with [something]","placeholders":["a calculator","a cloth"]}, +{"id":"188811","label":"putting spoon behind cup","template":"Putting [something] behind [something]","placeholders":["spoon","cup"]}, +{"id":"75635","label":"pushing toy gun off of laptop","template":"Pushing [something] off of [something]","placeholders":["toy gun","laptop"]}, +{"id":"61311","label":"pretending to turn remote upside down","template":"Pretending to turn [something] upside down","placeholders":["remote"]}, +{"id":"31592","label":"tilting yellow note book with black pocket knife on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["yellow note book","black pocket knife"]}, +{"id":"217074","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"29086","label":"folding handout","template":"Folding [something]","placeholders":["handout"]}, +{"id":"184198","label":"poking notebook so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["notebook"]}, +{"id":"28327","label":"putting a plastic container onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a plastic container"]}, +{"id":"59238","label":"putting marker on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker"]}, +{"id":"2677","label":"putting metal rod on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["metal rod"]}, +{"id":"192722","label":"tilting dvd case with glasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["dvd case","glasses"]}, +{"id":"179892","label":"lifting book with glasses on it","template":"Lifting [something] with [something] on it","placeholders":["book","glasses"]}, +{"id":"36298","label":"putting a pen on the table near pencils","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen on the table near pencils"]}, +{"id":"169814","label":"tilting a book with a mug on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a mug"]}, +{"id":"17014","label":"tearing take-out menu into two pieces","template":"Tearing [something] into two pieces","placeholders":["take-out menu"]}, +{"id":"16724","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"187807","label":"squeezing lemon","template":"Squeezing [something]","placeholders":["lemon"]}, +{"id":"50807","label":"moving basketball up","template":"Moving [something] up","placeholders":["basketball"]}, +{"id":"139524","label":"moving scissor away from pick","template":"Moving [something] away from [something]","placeholders":["scissor","pick"]}, +{"id":"158229","label":"showing violin behind vase","template":"Showing [something] behind [something]","placeholders":["violin","vase"]}, +{"id":"53121","label":"removing water bottle, revealing a container behind","template":"Removing [something], revealing [something] behind","placeholders":["water bottle","a container"]}, +{"id":"169842","label":"pretending to pick handkerchief up","template":"Pretending to pick [something] up","placeholders":["handkerchief"]}, +{"id":"186952","label":"moving lip bam and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lip bam","pen"]}, +{"id":"157010","label":"putting cup, stapler and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["cup","stapler","scissors"]}, +{"id":"57794","label":"pushing aim toothpaste so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["aim toothpaste"]}, +{"id":"177002","label":"putting comb onto toy","template":"Putting [something] onto [something]","placeholders":["comb","toy"]}, +{"id":"217026","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"49256","label":"lifting up one end of a ar of soap, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a ar of soap"]}, +{"id":"31627","label":"moving tab of soda can","template":"Moving [part] of [something]","placeholders":["tab","soda can"]}, +{"id":"191966","label":"plugging usb into phone charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","phone charger"]}, +{"id":"12454","label":"covering spoon with plate","template":"Covering [something] with [something]","placeholders":["spoon","plate"]}, +{"id":"89232","label":"moving soap and nail cutter so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["soap","nail cutter"]}, +{"id":"134682","label":"holding cup over the tap","template":"Holding [something] over [something]","placeholders":["cup","the tap"]}, +{"id":"92825","label":"lifting remote up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["remote"]}, +{"id":"634","label":"opening hot case","template":"Opening [something]","placeholders":["hot case"]}, +{"id":"29503","label":"moving away from hair dryer with your camera","template":"Moving away from [something] with your camera","placeholders":["hair dryer"]}, +{"id":"155826","label":"spilling water behind jar","template":"Spilling [something] behind [something]","placeholders":["water","jar"]}, +{"id":"13933","label":"attaching lid to bottle","template":"Attaching [something] to [something]","placeholders":["lid","bottle"]}, +{"id":"171834","label":"putting ashtray underneath table","template":"Putting [something] underneath [something]","placeholders":["ashtray","table"]}, +{"id":"125162","label":"spilling water next to a handkerchief","template":"Spilling [something] next to [something]","placeholders":["water","a handkerchief"]}, +{"id":"87024","label":"removing mug, revealing clip behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","clip"]}, +{"id":"153049","label":"bending tape measurer so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tape measurer"]}, +{"id":"66500","label":"pretending to sprinkle air onto someone's head","template":"Pretending to sprinkle air onto [something]","placeholders":["someone's head"]}, +{"id":"85694","label":"covering a cup with a rag","template":"Covering [something] with [something]","placeholders":["a cup","a rag"]}, +{"id":"18152","label":"showing split ac vent to the camera","template":"Showing [something] to the camera","placeholders":["split ac vent"]}, +{"id":"97259","label":"pouring water onto headlight of scooter","template":"Pouring [something] onto [something]","placeholders":["water","headlight of scooter"]}, +{"id":"89405","label":"opening banana","template":"Opening [something]","placeholders":["banana"]}, +{"id":"65007","label":"putting box in front of remote","template":"Putting [something] in front of [something]","placeholders":["box","remote"]}, +{"id":"163756","label":"lifting a mug with paper towel on it","template":"Lifting [something] with [something] on it","placeholders":["a mug","paper towel"]}, +{"id":"197580","label":"moving watch towards the camera","template":"Moving [something] towards the camera","placeholders":["watch"]}, +{"id":"26644","label":"tilting ketchup bottle with tv remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["ketchup bottle","tv remote"]}, +{"id":"64707","label":"holding scissors behind bottle","template":"Holding [something] behind [something]","placeholders":["scissors","bottle"]}, +{"id":"68400","label":"moving a phone and a lighter so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a phone","a lighter"]}, +{"id":"122173","label":"tilting plastic cup with scissors on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plastic cup","scissors"]}, +{"id":"53492","label":"putting candle on a surface","template":"Putting [something] on a surface","placeholders":["candle"]}, +{"id":"112662","label":"holding casual hat","template":"Holding [something]","placeholders":["casual hat"]}, +{"id":"141300","label":"stuffing clothes into basket","template":"Stuffing [something] into [something]","placeholders":["clothes","basket"]}, +{"id":"133777","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"84130","label":"wiping cooking plane off of dirt","template":"Wiping [something] off of [something]","placeholders":["cooking plane","dirt"]}, +{"id":"103123","label":"putting a bottle onto a cell phone so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a bottle","a cell phone"]}, +{"id":"79298","label":"pulling shoe from behind of wall","template":"Pulling [something] from behind of [something]","placeholders":["shoe","wall"]}, +{"id":"130879","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"99704","label":"moving away from traffic light with your camera","template":"Moving away from [something] with your camera","placeholders":["traffic light"]}, +{"id":"151510","label":"throwing a pillow","template":"Throwing [something]","placeholders":["a pillow"]}, +{"id":"75609","label":"bending stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["stick"]}, +{"id":"24984","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"56001","label":"folding a pair of mens boxers","template":"Folding [something]","placeholders":["a pair of mens boxers"]}, +{"id":"7729","label":"pushing container off of counter","template":"Pushing [something] off of [something]","placeholders":["container","counter"]}, +{"id":"161729","label":"putting earphone onto keyboard","template":"Putting [something] onto [something]","placeholders":["earphone","keyboard"]}, +{"id":"146640","label":"showing that mug is empty","template":"Showing that [something] is empty","placeholders":["mug"]}, +{"id":"75763","label":"putting tablet box into coffe cup","template":"Putting [something] into [something]","placeholders":["tablet box","coffe cup"]}, +{"id":"154344","label":"putting top in front of pan","template":"Putting [something] in front of [something]","placeholders":["top","pan"]}, +{"id":"179394","label":"lifting a lighter up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a lighter"]}, +{"id":"51065","label":"putting a coconut on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a coconut"]}, +{"id":"120493","label":"showing picture to the camera","template":"Showing [something] to the camera","placeholders":["picture"]}, +{"id":"190961","label":"dropping a peg behind a cup","template":"Dropping [something] behind [something]","placeholders":["a peg","a cup"]}, +{"id":"75375","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"62147","label":"holding remote over mug","template":"Holding [something] over [something]","placeholders":["remote","mug"]}, +{"id":"27243","label":"moving away from fence with your camera","template":"Moving away from [something] with your camera","placeholders":["fence"]}, +{"id":"76726","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"36913","label":"uncovering rock","template":"Uncovering [something]","placeholders":["rock"]}, +{"id":"51007","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"90218","label":"rolling toy car's wheels on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["toy car's wheels"]}, +{"id":"211829","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"4581","label":"pushing a toy off of the table","template":"Pushing [something] off of [something]","placeholders":["a toy","the table"]}, +{"id":"99072","label":"putting the cube onto the fan so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["the cube","the fan"]}, +{"id":"170429","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"91793","label":"pretending to be tearing rock","template":"Pretending to be tearing [something that is not tearable]","placeholders":["rock"]}, +{"id":"34441","label":"pulling two ends of a stick but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a stick"]}, +{"id":"44819","label":"pretending to take glass from desk","template":"Pretending to take [something] from [somewhere]","placeholders":["glass","desk"]}, +{"id":"200198","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"197052","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"215539","label":"pretending to poke a remote","template":"Pretending to poke [something]","placeholders":["a remote"]}, +{"id":"186266","label":"pouring water into a bowl","template":"Pouring [something] into [something]","placeholders":["water","a bowl"]}, +{"id":"15490","label":"plugging a power supply cord into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a power supply cord","laptop"]}, +{"id":"98925","label":"piling plastic fruit up","template":"Piling [something] up","placeholders":["plastic fruit"]}, +{"id":"86631","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"146728","label":"turning container upside down","template":"Turning [something] upside down","placeholders":["container"]}, +{"id":"91033","label":"showing portable gen set to the camera","template":"Showing [something] to the camera","placeholders":["portable gen set"]}, +{"id":"163959","label":"poking a pencil case so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a pencil case"]}, +{"id":"149458","label":"holding rubik cube in front of card","template":"Holding [something] in front of [something]","placeholders":["rubik cube","card"]}, +{"id":"111838","label":"picking dustpan up","template":"Picking [something] up","placeholders":["dustpan"]}, +{"id":"160927","label":"pouring water onto countertop","template":"Pouring [something] onto [something]","placeholders":["water","countertop"]}, +{"id":"127582","label":"showing a hairbrush on top of a 20 lb. weight","template":"Showing [something] on top of [something]","placeholders":["a hairbrush","a 20 lb. weight"]}, +{"id":"203624","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"131954","label":"tearing booklet into two pieces","template":"Tearing [something] into two pieces","placeholders":["booklet"]}, +{"id":"102754","label":"stuffing clothes into backpack","template":"Stuffing [something] into [something]","placeholders":["clothes","backpack"]}, +{"id":"65004","label":"throwing book in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["book"]}, +{"id":"202448","label":"putting candles","template":"Putting [something similar to other things that are already on the table]","placeholders":["candles"]}, +{"id":"130876","label":"putting book next to book","template":"Putting [something] next to [something]","placeholders":["book","book"]}, +{"id":"124486","label":"letting pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil"]}, +{"id":"14594","label":"moving a sneaker away from a backpack","template":"Moving [something] away from [something]","placeholders":["a sneaker","a backpack"]}, +{"id":"69683","label":"plugging cord into amp but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","amp"]}, +{"id":"96210","label":"moving away from safety helmet with your camera","template":"Moving away from [something] with your camera","placeholders":["safety helmet"]}, +{"id":"210152","label":"holding straw over sink","template":"Holding [something] over [something]","placeholders":["straw","sink"]}, +{"id":"63696","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"215289","label":"holding a football behind a basket ball","template":"Holding [something] behind [something]","placeholders":["a football","a basket ball"]}, +{"id":"94286","label":"covering mobile with tissue paper","template":"Covering [something] with [something]","placeholders":["mobile","tissue paper"]}, +{"id":"100877","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"207898","label":"pushing typewriter so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["typewriter"]}, +{"id":"23500","label":"holding a steel glass","template":"Holding [something]","placeholders":["a steel glass"]}, +{"id":"56404","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"155489","label":"pretending to be tearing a pillow","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a pillow"]}, +{"id":"146684","label":"turning the camera left while filming pictures","template":"Turning the camera left while filming [something]","placeholders":["pictures"]}, +{"id":"150496","label":"moving flat box closer to flat box","template":"Moving [something] closer to [something]","placeholders":["flat box","flat box"]}, +{"id":"197466","label":"pretending to put a watch next to a bowl","template":"Pretending to put [something] next to [something]","placeholders":["a watch","a bowl"]}, +{"id":"158303","label":"pushing plastic bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plastic bag"]}, +{"id":"50882","label":"lifting ruler with paper on it","template":"Lifting [something] with [something] on it","placeholders":["ruler","paper"]}, +{"id":"199445","label":"tape falling like a rock","template":"[Something] falling like a rock","placeholders":["tape"]}, +{"id":"10285","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64755","label":"dropping drop something onto something","template":"Dropping [something] onto [something]","placeholders":["drop something","something"]}, +{"id":"129543","label":"twisting a bottle top","template":"Twisting [something]","placeholders":["a bottle top"]}, +{"id":"145976","label":"holding bottle in front of laptop","template":"Holding [something] in front of [something]","placeholders":["bottle","laptop"]}, +{"id":"86025","label":"uncovering cashew","template":"Uncovering [something]","placeholders":["cashew"]}, +{"id":"77368","label":"lifting computer mouse with ios usb charger adaptor on it","template":"Lifting [something] with [something] on it","placeholders":["computer mouse","ios usb charger adaptor"]}, +{"id":"83716","label":"taking tea infuser out of mug","template":"Taking [something] out of [something]","placeholders":["tea infuser","mug"]}, +{"id":"196020","label":"showing a stapler on top of a fan","template":"Showing [something] on top of [something]","placeholders":["a stapler","a fan"]}, +{"id":"16284","label":"bending bag so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bag"]}, +{"id":"107921","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"135528","label":"purple container colliding with purple container and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["purple container","purple container"]}, +{"id":"94093","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"80613","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"203449","label":"attaching a sticky note to the wall","template":"Attaching [something] to [something]","placeholders":["a sticky note","the wall"]}, +{"id":"150483","label":"putting ipad upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["ipad"]}, +{"id":"120312","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"41116","label":"taking toothpick","template":"Taking [one of many similar things on the table]","placeholders":["toothpick"]}, +{"id":"160089","label":"picking microsd adapter up","template":"Picking [something] up","placeholders":["microsd adapter"]}, +{"id":"73342","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"123179","label":"putting rubber band similar to other rubber bands that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["rubber band similar to other rubber bands that are already on the table"]}, +{"id":"193901","label":"pulling wristwatch from left to right","template":"Pulling [something] from left to right","placeholders":["wristwatch"]}, +{"id":"1869","label":"tilting bottle with knife on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["bottle","knife"]}, +{"id":"13497","label":"putting a wristwatch next to a bottle","template":"Putting [something] next to [something]","placeholders":["a wristwatch","a bottle"]}, +{"id":"113048","label":"liner falling like a rock","template":"[Something] falling like a rock","placeholders":["liner"]}, +{"id":"182501","label":"opening window","template":"Opening [something]","placeholders":["window"]}, +{"id":"33102","label":"pushing a tv controller with a hair brush","template":"Pushing [something] with [something]","placeholders":["a tv controller","a hair brush"]}, +{"id":"30766","label":"poking padlock so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["padlock"]}, +{"id":"131389","label":"putting bobby pin next to pencil","template":"Putting [something] next to [something]","placeholders":["bobby pin","pencil"]}, +{"id":"106485","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"199741","label":"opening closet","template":"Opening [something]","placeholders":["closet"]}, +{"id":"74750","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"143420","label":"stuffing napkin into glass","template":"Stuffing [something] into [something]","placeholders":["napkin","glass"]}, +{"id":"10154","label":"turning the camera right while filming mosquito repellent","template":"Turning the camera right while filming [something]","placeholders":["mosquito repellent"]}, +{"id":"201342","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"52497","label":"closing glass jar","template":"Closing [something]","placeholders":["glass jar"]}, +{"id":"88701","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"168954","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"17545","label":"lifting a lighter up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a lighter"]}, +{"id":"11652","label":"pretending to pour milk out of a bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["milk","a bottle","bottle"]}, +{"id":"59511","label":"taking tissus from tissue box","template":"Taking [something] from [somewhere]","placeholders":["tissus","tissue box"]}, +{"id":"172216","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"211857","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"161435","label":"plugging a plug into an adaptor but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","an adaptor"]}, +{"id":"84719","label":"paper sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper sheet"]}, +{"id":"53153","label":"pretending to pour coffee out of carafe, but carafe is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["coffee","carafe","carafe"]}, +{"id":"146574","label":"closing a coffee mug","template":"Closing [something]","placeholders":["a coffee mug"]}, +{"id":"160612","label":"putting 2 hair bows onto phone","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bows","phone"]}, +{"id":"120872","label":"pushing pincer so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pincer"]}, +{"id":"76273","label":"throwing wallet","template":"Throwing [something]","placeholders":["wallet"]}, +{"id":"124448","label":"plugging hdmi cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["hdmi cable","laptop"]}, +{"id":"29178","label":"pushing jar with tripod","template":"Pushing [something] with [something]","placeholders":["jar","tripod"]}, +{"id":"76465","label":"taking battery from floor","template":"Taking [something] from [somewhere]","placeholders":["battery","floor"]}, +{"id":"141906","label":"throwing a stick","template":"Throwing [something]","placeholders":["a stick"]}, +{"id":"3667","label":"pretending to be tearing checkbook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["checkbook"]}, +{"id":"44716","label":"bending a wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a wooden stick"]}, +{"id":"190474","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"19645","label":"spinning contact lense case that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["contact lense case"]}, +{"id":"157934","label":"hitting a cooking pot with a chopstick","template":"Hitting [something] with [something]","placeholders":["a cooking pot","a chopstick"]}, +{"id":"142200","label":"spilling water next to a sharpener","template":"Spilling [something] next to [something]","placeholders":["water","a sharpener"]}, +{"id":"88397","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"186609","label":"moving post-it notes up","template":"Moving [something] up","placeholders":["post-it notes"]}, +{"id":"57197","label":"putting bottle in front of marker","template":"Putting [something] in front of [something]","placeholders":["bottle","marker"]}, +{"id":"153182","label":"taking coin from box","template":"Taking [something] from [somewhere]","placeholders":["coin","box"]}, +{"id":"4411","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"212727","label":"turning the camera downwards while filming me","template":"Turning the camera downwards while filming [something]","placeholders":["me"]}, +{"id":"146025","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"65644","label":"showing that the can is empty","template":"Showing that [something] is empty","placeholders":["the can"]}, +{"id":"78984","label":"tearing sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet"]}, +{"id":"36339","label":"turning the camera right while filming dining room","template":"Turning the camera right while filming [something]","placeholders":["dining room"]}, +{"id":"165413","label":"opening a yogurt container","template":"Opening [something]","placeholders":["a yogurt container"]}, +{"id":"20598","label":"putting a tablet computer upright on the table","template":"Putting [something] upright on the table","placeholders":["a tablet computer"]}, +{"id":"103126","label":"tilting a dustpan with balloon spindles on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a dustpan","balloon spindles"]}, +{"id":"46264","label":"throwing wallet onto a surface","template":"Throwing [something] onto a surface","placeholders":["wallet"]}, +{"id":"51528","label":"letting container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["container"]}, +{"id":"160896","label":"moving toy closer to toy","template":"Moving [something] closer to [something]","placeholders":["toy","toy"]}, +{"id":"214216","label":"showing vitamin water behind wrist band","template":"Showing [something] behind [something]","placeholders":["vitamin water","wrist band"]}, +{"id":"17149","label":"opening a cabinet","template":"Opening [something]","placeholders":["a cabinet"]}, +{"id":"65434","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"27659","label":"pushing hammer so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hammer"]}, +{"id":"119546","label":"plugging a cord into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","the wall"]}, +{"id":"197445","label":"pushing a bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a bottle","scissors"]}, +{"id":"171693","label":"putting mobile phone upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["mobile phone"]}, +{"id":"164346","label":"putting lighter and lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["lighter","lighter"]}, +{"id":"20243","label":"plugging two pin into socket","template":"Plugging [something] into [something]","placeholders":["two pin","socket"]}, +{"id":"10207","label":"picking a flashlight up","template":"Picking [something] up","placeholders":["a flashlight"]}, +{"id":"22418","label":"moving box and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","bottle"]}, +{"id":"83227","label":"tilting bike seat form with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bike seat form","finger"]}, +{"id":"185982","label":"moving something towards the camera","template":"Moving [something] towards the camera","placeholders":["something"]}, +{"id":"183706","label":"turning the camera left while filming pink toothbrush case","template":"Turning the camera left while filming [something]","placeholders":["pink toothbrush case"]}, +{"id":"122582","label":"picking a book up","template":"Picking [something] up","placeholders":["a book"]}, +{"id":"101197","label":"turning mix cup upside down","template":"Turning [something] upside down","placeholders":["mix cup"]}, +{"id":"20718","label":"plastic hair brush falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic hair brush"]}, +{"id":"91630","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"55310","label":"tipping cup with pennies over, so pennies falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","pennies","pennies"]}, +{"id":"49667","label":"attaching peg to usb cable","template":"Attaching [something] to [something]","placeholders":["peg","usb cable"]}, +{"id":"77990","label":"poking a stack of blocks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["blocks"]}, +{"id":"123585","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"61044","label":"dropping paper in front of face","template":"Dropping [something] in front of [something]","placeholders":["paper","face"]}, +{"id":"152112","label":"showing goat to the camera","template":"Showing [something] to the camera","placeholders":["goat"]}, +{"id":"25688","label":"pushing compressed air can so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["compressed air can"]}, +{"id":"182836","label":"pulling two ends of the wrench but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["the wrench"]}, +{"id":"123982","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"50906","label":"putting plastic container on a surface","template":"Putting [something] on a surface","placeholders":["plastic container"]}, +{"id":"178084","label":"plugging cord into extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","extension cord"]}, +{"id":"36297","label":"showing scissors on top of calculator","template":"Showing [something] on top of [something]","placeholders":["scissors","calculator"]}, +{"id":"2426","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"209649","label":"pushing pebble with wooden stick","template":"Pushing [something] with [something]","placeholders":["pebble","wooden stick"]}, +{"id":"49131","label":"letting a container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a container"]}, +{"id":"30467","label":"stuffing paper into an envelope","template":"Stuffing [something] into [something]","placeholders":["paper","an envelope"]}, +{"id":"92639","label":"putting cereal into mouth","template":"Putting [something] into [something]","placeholders":["cereal","mouth"]}, +{"id":"151044","label":"putting cell phone on a surface","template":"Putting [something] on a surface","placeholders":["cell phone"]}, +{"id":"2259","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"78618","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"171279","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"158208","label":"throwing scissors onto a surface","template":"Throwing [something] onto a surface","placeholders":["scissors"]}, +{"id":"113589","label":"throwing top against door","template":"Throwing [something] against [something]","placeholders":["top","door"]}, +{"id":"205149","label":"poking a cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a cup"]}, +{"id":"176086","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"52130","label":"taking silverware","template":"Taking [one of many similar things on the table]","placeholders":["silverware"]}, +{"id":"152091","label":"moving away from old mobile phone with your camera","template":"Moving away from [something] with your camera","placeholders":["old mobile phone"]}, +{"id":"42729","label":"letting a circular box roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a circular box"]}, +{"id":"115392","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"53788","label":"hitting red toy car with marker pen","template":"Hitting [something] with [something]","placeholders":["red toy car","marker pen"]}, +{"id":"171273","label":"pushing a bright green toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bright green toy car"]}, +{"id":"171374","label":"dropping battery behind cup","template":"Dropping [something] behind [something]","placeholders":["battery","cup"]}, +{"id":"12463","label":"throwing sock against door","template":"Throwing [something] against [something]","placeholders":["sock","door"]}, +{"id":"177687","label":"showing toothbrushes next to cup","template":"Showing [something] next to [something]","placeholders":["toothbrushes","cup"]}, +{"id":"67153","label":"turning the camera downwards while filming brown case","template":"Turning the camera downwards while filming [something]","placeholders":["brown case"]}, +{"id":"106438","label":"letting yellow marker pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["yellow marker pen"]}, +{"id":"131059","label":"rolling nail polish bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["nail polish bottle"]}, +{"id":"62193","label":"pushing shoe box from right to left","template":"Pushing [something] from right to left","placeholders":["shoe box"]}, +{"id":"83183","label":"pushing tire gauge so it spins","template":"Pushing [something] so it spins","placeholders":["tire gauge"]}, +{"id":"151753","label":"pretending to open cream tube without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cream tube"]}, +{"id":"203847","label":"pretending to be tearing slicer","template":"Pretending to be tearing [something that is not tearable]","placeholders":["slicer"]}, +{"id":"30509","label":"plugging headphones into laptop","template":"Plugging [something] into [something]","placeholders":["headphones","laptop"]}, +{"id":"119930","label":"lifting up one end of banana without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["banana"]}, +{"id":"124878","label":"stuffing paper into a box","template":"Stuffing [something] into [something]","placeholders":["paper","a box"]}, +{"id":"49099","label":"approaching granola bar with your camera","template":"Approaching [something] with your camera","placeholders":["granola bar"]}, +{"id":"131557","label":"moving lime and lime away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lime","lime"]}, +{"id":"144615","label":"opening purse","template":"Opening [something]","placeholders":["purse"]}, +{"id":"23907","label":"laying a container on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a container"]}, +{"id":"160768","label":"throwing metal bar","template":"Throwing [something]","placeholders":["metal bar"]}, +{"id":"211900","label":"showing duster behind hair clip","template":"Showing [something] behind [something]","placeholders":["duster","hair clip"]}, +{"id":"126582","label":"moving punching machine closer to wallet","template":"Moving [something] closer to [something]","placeholders":["punching machine","wallet"]}, +{"id":"185757","label":"pushing a coin with another coin","template":"Pushing [something] with [something]","placeholders":["a coin","another coin"]}, +{"id":"68618","label":"tilting pin box with book on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["pin box","book"]}, +{"id":"99750","label":"spinning rake that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["rake"]}, +{"id":"46507","label":"putting an eraser that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["an eraser"]}, +{"id":"3793","label":"dropping a yellow pen in front of a screen","template":"Dropping [something] in front of [something]","placeholders":["a yellow pen","a screen"]}, +{"id":"92489","label":"plugging a plug adapter into a wall socket","template":"Plugging [something] into [something]","placeholders":["a plug adapter","a wall socket"]}, +{"id":"133432","label":"spinning spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spinner"]}, +{"id":"75388","label":"throwing a pen against the couch","template":"Throwing [something] against [something]","placeholders":["a pen","the couch"]}, +{"id":"149612","label":"moving glass and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","bottle"]}, +{"id":"213059","label":"rolling powder bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["powder bottle"]}, +{"id":"135355","label":"putting wine key and chapstick on the table","template":"Putting [something] and [something] on the table","placeholders":["wine key","chapstick"]}, +{"id":"174956","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"28601","label":"moving rocks and rocks away from each other","template":"Moving [something] and [something] away from each other","placeholders":["rocks","rocks"]}, +{"id":"26971","label":"touching (without moving) keys of keyboard","template":"Touching (without moving) [part] of [something]","placeholders":["keys","keyboard"]}, +{"id":"199245","label":"moving hairclip and ice tray closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["hairclip","ice tray"]}, +{"id":"167436","label":"tearing printer paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["printer paper"]}, +{"id":"184772","label":"pouring soda out of cup","template":"Pouring [something] out of [something]","placeholders":["soda","cup"]}, +{"id":"142357","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"109948","label":"taking car out of basket","template":"Taking [something] out of [something]","placeholders":["car","basket"]}, +{"id":"212394","label":"bending a paper clip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper clip"]}, +{"id":"114682","label":"putting 3 pennies onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","pennies","table"]}, +{"id":"86565","label":"pushing white badge with wooden stick","template":"Pushing [something] with [something]","placeholders":["white badge","wooden stick"]}, +{"id":"24659","label":"touching (without moving) front of book","template":"Touching (without moving) [part] of [something]","placeholders":["front","book"]}, +{"id":"150690","label":"showing canister next to clock","template":"Showing [something] next to [something]","placeholders":["canister","clock"]}, +{"id":"99273","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"182096","label":"pulling pink blush on from right to left","template":"Pulling [something] from right to left","placeholders":["pink blush on"]}, +{"id":"74983","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"89896","label":"throwing tape in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tape"]}, +{"id":"185777","label":"removing mug, revealing play-doh behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","play-doh"]}, +{"id":"45452","label":"pushing lotion container so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lotion container"]}, +{"id":"150301","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"191701","label":"lifting marker pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["marker pen"]}, +{"id":"30315","label":"pushing plate from left to right","template":"Pushing [something] from left to right","placeholders":["plate"]}, +{"id":"93580","label":"poking cigarrete butt so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cigarrete butt"]}, +{"id":"175117","label":"letting an air freshener roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["an air freshener"]}, +{"id":"179278","label":"tilting dvd with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["dvd","phone"]}, +{"id":"62813","label":"putting cards on a surface","template":"Putting [something] on a surface","placeholders":["cards"]}, +{"id":"91906","label":"plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic bag"]}, +{"id":"128074","label":"pushing candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["candle"]}, +{"id":"189657","label":"throwing bat against bat","template":"Throwing [something] against [something]","placeholders":["bat","bat"]}, +{"id":"11687","label":"plugging a charger into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a phone"]}, +{"id":"77265","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"150381","label":"throwing a pack of tissue","template":"Throwing [something]","placeholders":["a pack of tissue"]}, +{"id":"15365","label":"pretending to put a watch behind a bowl","template":"Pretending to put [something] behind [something]","placeholders":["a watch","a bowl"]}, +{"id":"108595","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"174934","label":"holding teddy bear","template":"Holding [something]","placeholders":["teddy bear"]}, +{"id":"74524","label":"a laptop falling like a rock","template":"[Something] falling like a rock","placeholders":["a laptop"]}, +{"id":"198460","label":"a piece of kitchen towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of kitchen towel"]}, +{"id":"4093","label":"holding a plant over a box","template":"Holding [something] over [something]","placeholders":["a plant","a box"]}, +{"id":"476","label":"pushing green bowl with spoon","template":"Pushing [something] with [something]","placeholders":["green bowl","spoon"]}, +{"id":"142530","label":"covering smartphone with pillow","template":"Covering [something] with [something]","placeholders":["smartphone","pillow"]}, +{"id":"159882","label":"taking an adapter from an outlet","template":"Taking [something] from [somewhere]","placeholders":["an adapter","an outlet"]}, +{"id":"128457","label":"holding green cup","template":"Holding [something]","placeholders":["green cup"]}, +{"id":"84998","label":"throwing highlighter in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["highlighter"]}, +{"id":"31914","label":"turning the camera right while filming pictures","template":"Turning the camera right while filming [something]","placeholders":["pictures"]}, +{"id":"50639","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"184108","label":"dropping a shirt into a laundry basket","template":"Dropping [something] into [something]","placeholders":["a shirt","a laundry basket"]}, +{"id":"106813","label":"dropping knife next to fork","template":"Dropping [something] next to [something]","placeholders":["knife","fork"]}, +{"id":"173125","label":"showing that container is inside cooler","template":"Showing that [something] is inside [something]","placeholders":["container","cooler"]}, +{"id":"156401","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"204017","label":"taking one button from many buttons","template":"Taking [one of many similar things on the table]","placeholders":["one button from many buttons"]}, +{"id":"212051","label":"magnet falling like a rock","template":"[Something] falling like a rock","placeholders":["magnet"]}, +{"id":"5916","label":"taking game piece out of container","template":"Taking [something] out of [something]","placeholders":["game piece","container"]}, +{"id":"88381","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"4446","label":"moving pencil pouch across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pencil pouch"]}, +{"id":"141169","label":"holding rubber duck over faucet","template":"Holding [something] over [something]","placeholders":["rubber duck","faucet"]}, +{"id":"76039","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"112174","label":"putting plastic screwcap next to mug","template":"Putting [something] next to [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"60381","label":"pulling two ends of samsung s5 but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["samsung s5"]}, +{"id":"1568","label":"moving key away from comb","template":"Moving [something] away from [something]","placeholders":["key","comb"]}, +{"id":"218533","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"170484","label":"showing a photo of a lock to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a lock"]}, +{"id":"77354","label":"pretending to take screwdriver from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["screwdriver","countertop"]}, +{"id":"202156","label":"holding a stick","template":"Holding [something]","placeholders":["a stick"]}, +{"id":"50244","label":"showing paint tube on top of cactus","template":"Showing [something] on top of [something]","placeholders":["paint tube","cactus"]}, +{"id":"155642","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"14337","label":"squeezing fevicol can","template":"Squeezing [something]","placeholders":["fevicol can"]}, +{"id":"202332","label":"plugging headphone into phone","template":"Plugging [something] into [something]","placeholders":["headphone","phone"]}, +{"id":"115579","label":"moving ball across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["ball"]}, +{"id":"26673","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38930","label":"pushing toothpic pot so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toothpic pot"]}, +{"id":"167701","label":"stuffing clothes into a bag","template":"Stuffing [something] into [something]","placeholders":["clothes","a bag"]}, +{"id":"183125","label":"dropping a peg behind a box","template":"Dropping [something] behind [something]","placeholders":["a peg","a box"]}, +{"id":"188434","label":"trying but failing to attach pen to receipt book because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["pen","receipt book"]}, +{"id":"171595","label":"moving water bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["water bottle"]}, +{"id":"183767","label":"nail clipper colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["nail clipper","pen"]}, +{"id":"118374","label":"rolling a beauty sponge on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a beauty sponge"]}, +{"id":"106625","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"169574","label":"putting laptop similar to other laptops that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["laptop similar to other laptops that are already on the table"]}, +{"id":"69312","label":"putting tube underneath bed","template":"Putting [something] underneath [something]","placeholders":["tube","bed"]}, +{"id":"55417","label":"pretending or failing to wipe sticker off of light switch","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["sticker","light switch"]}, +{"id":"51695","label":"pushing a rock from right to left","template":"Pushing [something] from right to left","placeholders":["a rock"]}, +{"id":"66923","label":"moving a powder tin towards the camera","template":"Moving [something] towards the camera","placeholders":["a powder tin"]}, +{"id":"34517","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"202803","label":"moving spon down","template":"Moving [something] down","placeholders":["spon"]}, +{"id":"209440","label":"showing tablet next to laptop bag","template":"Showing [something] next to [something]","placeholders":["tablet","laptop bag"]}, +{"id":"214178","label":"throwing bottle cap in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle cap"]}, +{"id":"157524","label":"spinning spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spoon"]}, +{"id":"63313","label":"putting coaster underneath cup","template":"Putting [something] underneath [something]","placeholders":["coaster","cup"]}, +{"id":"183775","label":"taking mouse from pad","template":"Taking [something] from [somewhere]","placeholders":["mouse","pad"]}, +{"id":"53315","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"182168","label":"tilting a spoon with an apple on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a spoon","an apple"]}, +{"id":"43179","label":"squeezing bottle trigger","template":"Squeezing [something]","placeholders":["bottle trigger"]}, +{"id":"109557","label":"putting paint tube behind cactus","template":"Putting [something] behind [something]","placeholders":["paint tube","cactus"]}, +{"id":"77582","label":"tilting laptop with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["laptop","mouse"]}, +{"id":"140935","label":"lifting a bucket with a toy bulldozer on it","template":"Lifting [something] with [something] on it","placeholders":["a bucket","a toy bulldozer"]}, +{"id":"184864","label":"holding nail cutter","template":"Holding [something]","placeholders":["nail cutter"]}, +{"id":"81367","label":"piling toy cars up","template":"Piling [something] up","placeholders":["toy cars"]}, +{"id":"199182","label":"covering a baby doll with a blanket","template":"Covering [something] with [something]","placeholders":["a baby doll","a blanket"]}, +{"id":"109722","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"209976","label":"pushing mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mouse"]}, +{"id":"23979","label":"index card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["index card"]}, +{"id":"134500","label":"moving usb cable away from usb","template":"Moving [something] away from [something]","placeholders":["usb cable","usb"]}, +{"id":"159131","label":"covering coin with paper","template":"Covering [something] with [something]","placeholders":["coin","paper"]}, +{"id":"21158","label":"showing motor bike to the camera","template":"Showing [something] to the camera","placeholders":["motor bike"]}, +{"id":"182806","label":"twisting a plastic bag","template":"Twisting [something]","placeholders":["a plastic bag"]}, +{"id":"39048","label":"hitting a bag with a door hook","template":"Hitting [something] with [something]","placeholders":["a bag","a door hook"]}, +{"id":"69470","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"63365","label":"moving cup away from plant","template":"Moving [something] away from [something]","placeholders":["cup","plant"]}, +{"id":"108156","label":"a flower falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a flower"]}, +{"id":"156240","label":"moving flower down","template":"Moving [something] down","placeholders":["flower"]}, +{"id":"21438","label":"opening small freshmints","template":"Opening [something]","placeholders":["small freshmints"]}, +{"id":"84277","label":"uncovering screwdriver","template":"Uncovering [something]","placeholders":["screwdriver"]}, +{"id":"4808","label":"pretending to pick paper up","template":"Pretending to pick [something] up","placeholders":["paper"]}, +{"id":"147153","label":"spinning tiffen box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["tiffen box"]}, +{"id":"70659","label":"dropping bottle behind kendama","template":"Dropping [something] behind [something]","placeholders":["bottle","kendama"]}, +{"id":"190154","label":"turning the camera right while filming dinosaur model","template":"Turning the camera right while filming [something]","placeholders":["dinosaur model"]}, +{"id":"92150","label":"moving calculator down","template":"Moving [something] down","placeholders":["calculator"]}, +{"id":"151290","label":"rolling lotion container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lotion container"]}, +{"id":"92925","label":"plugging mouse into laptop","template":"Plugging [something] into [something]","placeholders":["mouse","laptop"]}, +{"id":"25736","label":"approaching toothbrush with your camera","template":"Approaching [something] with your camera","placeholders":["toothbrush"]}, +{"id":"6879","label":"lifting book with book on it","template":"Lifting [something] with [something] on it","placeholders":["book","book"]}, +{"id":"172284","label":"plugging charger into plug hole","template":"Plugging [something] into [something]","placeholders":["charger","plug hole"]}, +{"id":"34993","label":"pretending or failing to wipe paint off of painting","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","painting"]}, +{"id":"101856","label":"pouring water into plant","template":"Pouring [something] into [something]","placeholders":["water","plant"]}, +{"id":"107303","label":"turning the camera right while filming pumpkin","template":"Turning the camera right while filming [something]","placeholders":["pumpkin"]}, +{"id":"44827","label":"throwing black cloth","template":"Throwing [something]","placeholders":["black cloth"]}, +{"id":"10773","label":"picking a hair accessoire up","template":"Picking [something] up","placeholders":["a hair accessoire"]}, +{"id":"72569","label":"pushing rubix cube so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["rubix cube"]}, +{"id":"170634","label":"moving nailpolish down","template":"Moving [something] down","placeholders":["nailpolish"]}, +{"id":"136067","label":"uncovering toothbrush","template":"Uncovering [something]","placeholders":["toothbrush"]}, +{"id":"139202","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"25393","label":"pouring syrup into glass","template":"Pouring [something] into [something]","placeholders":["syrup","glass"]}, +{"id":"140620","label":"uncovering ball","template":"Uncovering [something]","placeholders":["ball"]}, +{"id":"144126","label":"taking a pencil of school materials","template":"Taking [one of many similar things on the table]","placeholders":["a pencil of school materials"]}, +{"id":"92056","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"104601","label":"taking tea out of box","template":"Taking [something] out of [something]","placeholders":["tea","box"]}, +{"id":"83133","label":"pushing a spoon onto a plate","template":"Pushing [something] onto [something]","placeholders":["a spoon","a plate"]}, +{"id":"78437","label":"wiping a lotion off of the table","template":"Wiping [something] off of [something]","placeholders":["a lotion","the table"]}, +{"id":"49897","label":"putting a toy tiger that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a toy tiger"]}, +{"id":"122884","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"124792","label":"folding ipad cover","template":"Folding [something]","placeholders":["ipad cover"]}, +{"id":"135026","label":"removing computer mouse, revealing key behind","template":"Removing [something], revealing [something] behind","placeholders":["computer mouse","key"]}, +{"id":"5058","label":"putting a piece of paper and a glass of cordial on the table","template":"Putting [something] and [something] on the table","placeholders":["a piece of paper","a glass of cordial"]}, +{"id":"32952","label":"pretending to put candle on a surface","template":"Pretending to put [something] on a surface","placeholders":["candle"]}, +{"id":"181410","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"140945","label":"lifting a box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a box"]}, +{"id":"41496","label":"hitting a wallet with a textsurfer","template":"Hitting [something] with [something]","placeholders":["a wallet","a textsurfer"]}, +{"id":"40865","label":"spinning a spectacle box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a spectacle box"]}, +{"id":"54764","label":"moving a book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a book"]}, +{"id":"168948","label":"pushing a deck of cards off of table","template":"Pushing [something] off of [something]","placeholders":["a deck of cards","table"]}, +{"id":"208698","label":"pushing bottle cap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle cap"]}, +{"id":"21565","label":"putting a musical tabala on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a musical tabala"]}, +{"id":"120142","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"26966","label":"putting cut tomatoes into a bowl","template":"Putting [something] into [something]","placeholders":["cut tomatoes","a bowl"]}, +{"id":"64506","label":"taking yellow highlighter","template":"Taking [one of many similar things on the table]","placeholders":["yellow highlighter"]}, +{"id":"88368","label":"water bottel falling like a rock","template":"[Something] falling like a rock","placeholders":["water bottel"]}, +{"id":"52769","label":"pulling scotch tape from right to left","template":"Pulling [something] from right to left","placeholders":["scotch tape"]}, +{"id":"169085","label":"turning the camera left while filming fan","template":"Turning the camera left while filming [something]","placeholders":["fan"]}, +{"id":"120364","label":"turning the camera right while filming readymade dresses","template":"Turning the camera right while filming [something]","placeholders":["readymade dresses"]}, +{"id":"147269","label":"pushing felt pen with pen","template":"Pushing [something] with [something]","placeholders":["felt pen","pen"]}, +{"id":"16203","label":"holding marker pen","template":"Holding [something]","placeholders":["marker pen"]}, +{"id":"98879","label":"putting bottle and bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","bottle"]}, +{"id":"9317","label":"dropping pen behind notebook","template":"Dropping [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"131967","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"152262","label":"putting a spoon upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a spoon"]}, +{"id":"36254","label":"poking a hole into glue","template":"Poking a hole into [some substance]","placeholders":["glue"]}, +{"id":"11334","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"83541","label":"moving glass and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","glass"]}, +{"id":"8590","label":"dropping pillow onto floor","template":"Dropping [something] onto [something]","placeholders":["pillow","floor"]}, +{"id":"135962","label":"folding hat","template":"Folding [something]","placeholders":["hat"]}, +{"id":"1168","label":"pushing book off of table","template":"Pushing [something] off of [something]","placeholders":["book","table"]}, +{"id":"36328","label":"lifting plastic screw cap up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["plastic screw cap"]}, +{"id":"56795","label":"turning remote control upside down","template":"Turning [something] upside down","placeholders":["remote control"]}, +{"id":"137973","label":"lifting book with tissue paper on it","template":"Lifting [something] with [something] on it","placeholders":["book","tissue paper"]}, +{"id":"193333","label":"putting spoon on a surface","template":"Putting [something] on a surface","placeholders":["spoon"]}, +{"id":"20396","label":"moving glass and fruit away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","fruit"]}, +{"id":"160164","label":"pretending to put earphone into bag","template":"Pretending to put [something] into [something]","placeholders":["earphone","bag"]}, +{"id":"84140","label":"holding coffee mug","template":"Holding [something]","placeholders":["coffee mug"]}, +{"id":"75384","label":"pouring water onto frying pan","template":"Pouring [something] onto [something]","placeholders":["water","frying pan"]}, +{"id":"105969","label":"spinning lotion that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lotion"]}, +{"id":"4995","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"214017","label":"digging sunglass out of clothes bag","template":"Digging [something] out of [something]","placeholders":["sunglass","clothes bag"]}, +{"id":"206094","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"75685","label":"putting egg","template":"Putting [something similar to other things that are already on the table]","placeholders":["egg"]}, +{"id":"75766","label":"stacking six books","template":"Stacking [number of] [something]","placeholders":["six","books"]}, +{"id":"105444","label":"putting cd that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cd"]}, +{"id":"108425","label":"lifting wallet up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["wallet"]}, +{"id":"6954","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"167356","label":"moving a monkey figure and a monkey figure away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a monkey figure","a monkey figure"]}, +{"id":"9497","label":"hitting bottle with nail cutter","template":"Hitting [something] with [something]","placeholders":["bottle","nail cutter"]}, +{"id":"50256","label":"pushing mouse with pen","template":"Pushing [something] with [something]","placeholders":["mouse","pen"]}, +{"id":"217306","label":"taking a marker","template":"Taking [one of many similar things on the table]","placeholders":["a marker"]}, +{"id":"68391","label":"lifting a book with a toy robot on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a toy robot"]}, +{"id":"191006","label":"uncovering a wok","template":"Uncovering [something]","placeholders":["a wok"]}, +{"id":"162881","label":"putting a coin next to pen","template":"Putting [something] next to [something]","placeholders":["a coin","pen"]}, +{"id":"171981","label":"throwing ball of paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball of paper"]}, +{"id":"207417","label":"moving toy away from clip","template":"Moving [something] away from [something]","placeholders":["toy","clip"]}, +{"id":"169459","label":"spinning a plastic bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a plastic bottle"]}, +{"id":"151614","label":"pouring milk out of a jug","template":"Pouring [something] out of [something]","placeholders":["milk","a jug"]}, +{"id":"202442","label":"lifting phone with (edge of cover) up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["phone with (edge of cover)"]}, +{"id":"96775","label":"showing that backpack is empty","template":"Showing that [something] is empty","placeholders":["backpack"]}, +{"id":"157474","label":"spinning a ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a ball"]}, +{"id":"25704","label":"putting flowers","template":"Putting [something similar to other things that are already on the table]","placeholders":["flowers"]}, +{"id":"47817","label":"dropping controller onto headset","template":"Dropping [something] onto [something]","placeholders":["controller","headset"]}, +{"id":"114986","label":"scooping flour up with measuring cup","template":"Scooping [something] up with [something]","placeholders":["flour","measuring cup"]}, +{"id":"128956","label":"unfolding a towel","template":"Unfolding [something]","placeholders":["a towel"]}, +{"id":"129615","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"104368","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"218377","label":"moving towel up","template":"Moving [something] up","placeholders":["towel"]}, +{"id":"102782","label":"pulling purple balloon pump from right to left","template":"Pulling [something] from right to left","placeholders":["purple balloon pump"]}, +{"id":"181615","label":"showing that buttons is inside lid","template":"Showing that [something] is inside [something]","placeholders":["buttons","lid"]}, +{"id":"46169","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"206987","label":"putting pen next to cloth","template":"Putting [something] next to [something]","placeholders":["pen","cloth"]}, +{"id":"145492","label":"dropping a glue stick behind a box","template":"Dropping [something] behind [something]","placeholders":["a glue stick","a box"]}, +{"id":"15498","label":"pulling a mouse from behind of a helmet","template":"Pulling [something] from behind of [something]","placeholders":["a mouse","a helmet"]}, +{"id":"31540","label":"putting hand sanitizer upright on the table","template":"Putting [something] upright on the table","placeholders":["hand sanitizer"]}, +{"id":"38070","label":"moving clock closer to wear","template":"Moving [something] closer to [something]","placeholders":["clock","wear"]}, +{"id":"24321","label":"turning the camera right while filming shampoo bottle","template":"Turning the camera right while filming [something]","placeholders":["shampoo bottle"]}, +{"id":"23230","label":"putting box, book and gum on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","book","gum"]}, +{"id":"200080","label":"stuffing a face towel into a small bag","template":"Stuffing [something] into [something]","placeholders":["a face towel","a small bag"]}, +{"id":"103201","label":"holding a cup next to a trophy","template":"Holding [something] next to [something]","placeholders":["a cup","a trophy"]}, +{"id":"107441","label":"putting a hairclip into a glas","template":"Putting [something] into [something]","placeholders":["a hairclip","a glas"]}, +{"id":"29019","label":"showing that a coin is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["a coin","a jar"]}, +{"id":"134541","label":"moving head charger and head charger away from each other","template":"Moving [something] and [something] away from each other","placeholders":["head charger","head charger"]}, +{"id":"91418","label":"moving spoon up","template":"Moving [something] up","placeholders":["spoon"]}, +{"id":"24958","label":"pretending to pick lipstick up","template":"Pretending to pick [something] up","placeholders":["lipstick"]}, +{"id":"194218","label":"lifting notebook with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","mouse"]}, +{"id":"4114","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"135837","label":"tipping tissues over","template":"Tipping [something] over","placeholders":["tissues"]}, +{"id":"105271","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"23147","label":"digging candy mint out of blanket","template":"Digging [something] out of [something]","placeholders":["candy mint","blanket"]}, +{"id":"155310","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"185280","label":"covering remote control with hand","template":"Covering [something] with [something]","placeholders":["remote control","hand"]}, +{"id":"193869","label":"tilting a plastic container with a thermometer on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plastic container","a thermometer"]}, +{"id":"44303","label":"putting plant on a surface","template":"Putting [something] on a surface","placeholders":["plant"]}, +{"id":"125901","label":"pushing package of gum so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["package of gum"]}, +{"id":"143793","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"76808","label":"putting punching machine that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["punching machine"]}, +{"id":"31560","label":"touching (without moving) switch of light","template":"Touching (without moving) [part] of [something]","placeholders":["switch","light"]}, +{"id":"146870","label":"putting 2 striker coins onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","striker coins","black pouch"]}, +{"id":"107160","label":"letting tape roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tape"]}, +{"id":"36641","label":"bending spaghetti until it breaks","template":"Bending [something] until it breaks","placeholders":["spaghetti"]}, +{"id":"26281","label":"putting mug","template":"Putting [something similar to other things that are already on the table]","placeholders":["mug"]}, +{"id":"8252","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"195007","label":"pushing a watch from right to left","template":"Pushing [something] from right to left","placeholders":["a watch"]}, +{"id":"50765","label":"stuffing notebooks into eco bag","template":"Stuffing [something] into [something]","placeholders":["notebooks","eco bag"]}, +{"id":"112971","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"92475","label":"opening mixer-jar","template":"Opening [something]","placeholders":["mixer-jar"]}, +{"id":"164584","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"87170","label":"bending wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["wire"]}, +{"id":"62930","label":"plugging an electric plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["an electric plug","an outlet"]}, +{"id":"218360","label":"taking one book of many similar books on the table","template":"Taking [one of many similar things on the table]","placeholders":["one book of many similar books on the table"]}, +{"id":"132472","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"95927","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"17965","label":"holding the remote contol next to the laptop","template":"Holding [something] next to [something]","placeholders":["the remote contol","the laptop"]}, +{"id":"64862","label":"putting fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork"]}, +{"id":"16767","label":"taking a toy out of a toy box","template":"Taking [something] out of [something]","placeholders":["a toy","a toy box"]}, +{"id":"8461","label":"twisting hair band","template":"Twisting [something]","placeholders":["hair band"]}, +{"id":"124081","label":"stacking 11 coins","template":"Stacking [number of] [something]","placeholders":["11","coins"]}, +{"id":"71827","label":"putting toothbrush next to smart phone","template":"Putting [something] next to [something]","placeholders":["toothbrush","smart phone"]}, +{"id":"22668","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"164031","label":"dropping mouse in front of keyboard","template":"Dropping [something] in front of [something]","placeholders":["mouse","keyboard"]}, +{"id":"7492","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"96158","label":"pushing toy so it spins","template":"Pushing [something] so it spins","placeholders":["toy"]}, +{"id":"47958","label":"moving mouse away from keyboard","template":"Moving [something] away from [something]","placeholders":["mouse","keyboard"]}, +{"id":"124125","label":"stuffing plastic bags into a plastic bag","template":"Stuffing [something] into [something]","placeholders":["plastic bags","a plastic bag"]}, +{"id":"167046","label":"throwing shoe onto a surface","template":"Throwing [something] onto a surface","placeholders":["shoe"]}, +{"id":"45017","label":"rubber being deflected from pencil sharpener","template":"[Something] being deflected from [something]","placeholders":["rubber","pencil sharpener"]}, +{"id":"55733","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"68900","label":"moving pencil closer to spoon","template":"Moving [something] closer to [something]","placeholders":["pencil","spoon"]}, +{"id":"110845","label":"plugging a usb drive into an adapter","template":"Plugging [something] into [something]","placeholders":["a usb drive","an adapter"]}, +{"id":"157672","label":"hitting cup with ball","template":"Hitting [something] with [something]","placeholders":["cup","ball"]}, +{"id":"83920","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"180173","label":"putting one screw","template":"Putting [something similar to other things that are already on the table]","placeholders":["one screw"]}, +{"id":"29894","label":"twisting a lid off","template":"Twisting [something]","placeholders":["a lid off"]}, +{"id":"137875","label":"rolling mic on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["mic"]}, +{"id":"145462","label":"moving a fork away from a pencil","template":"Moving [something] away from [something]","placeholders":["a fork","a pencil"]}, +{"id":"38164","label":"throwing green colour toy car in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["green colour toy car"]}, +{"id":"149239","label":"poking a toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a toy"]}, +{"id":"145653","label":"turning the camera left while filming car","template":"Turning the camera left while filming [something]","placeholders":["car"]}, +{"id":"8643","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"167147","label":"pretending to squeeze salt","template":"Pretending to squeeze [something]","placeholders":["salt"]}, +{"id":"188895","label":"putting ribbon reel that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["ribbon reel"]}, +{"id":"77223","label":"covering scissor with cloth","template":"Covering [something] with [something]","placeholders":["scissor","cloth"]}, +{"id":"135861","label":"coaster falling like a rock","template":"[Something] falling like a rock","placeholders":["coaster"]}, +{"id":"77592","label":"remote being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["remote","couch"]}, +{"id":"209593","label":"putting tumblers","template":"Putting [something similar to other things that are already on the table]","placeholders":["tumblers"]}, +{"id":"121640","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"57897","label":"poking a glass so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a glass"]}, +{"id":"93723","label":"uncovering coupon","template":"Uncovering [something]","placeholders":["coupon"]}, +{"id":"37911","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"63586","label":"clip colliding with bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["clip","bottle"]}, +{"id":"26698","label":"letting balloon pump roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["balloon pump"]}, +{"id":"117605","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"73270","label":"twisting envelope","template":"Twisting [something]","placeholders":["envelope"]}, +{"id":"80680","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"101156","label":"putting eraser on a surface","template":"Putting [something] on a surface","placeholders":["eraser"]}, +{"id":"23152","label":"uncovering gear wheel","template":"Uncovering [something]","placeholders":["gear wheel"]}, +{"id":"29127","label":"dropping ball into bucket","template":"Dropping [something] into [something]","placeholders":["ball","bucket"]}, +{"id":"152200","label":"poking an apple so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["an apple"]}, +{"id":"145347","label":"pulling soda pop can from behind of coffee can","template":"Pulling [something] from behind of [something]","placeholders":["soda pop can","coffee can"]}, +{"id":"118293","label":"putting remote and earphones on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","earphones"]}, +{"id":"109533","label":"turning the camera left while filming audio sistem","template":"Turning the camera left while filming [something]","placeholders":["audio sistem"]}, +{"id":"44500","label":"throwing socks in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["socks"]}, +{"id":"62771","label":"pretending to take pin from bown","template":"Pretending to take [something] from [somewhere]","placeholders":["pin","bown"]}, +{"id":"209224","label":"hitting bleacher with hat","template":"Hitting [something] with [something]","placeholders":["bleacher","hat"]}, +{"id":"133812","label":"piling folders up","template":"Piling [something] up","placeholders":["folders"]}, +{"id":"179656","label":"poking a stack of cards so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cards"]}, +{"id":"44055","label":"plugging usb into box but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","box"]}, +{"id":"95071","label":"twisting pouch","template":"Twisting [something]","placeholders":["pouch"]}, +{"id":"14001","label":"pulling tissue out of tissue box","template":"Pulling [something] out of [something]","placeholders":["tissue","tissue box"]}, +{"id":"181666","label":"hitting a pillow with a hockey stick","template":"Hitting [something] with [something]","placeholders":["a pillow","a hockey stick"]}, +{"id":"2684","label":"putting box wood underneath heart wood","template":"Putting [something] underneath [something]","placeholders":["box wood","heart wood"]}, +{"id":"58306","label":"dropping toy onto bed","template":"Dropping [something] onto [something]","placeholders":["toy","bed"]}, +{"id":"103720","label":"cotton falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cotton"]}, +{"id":"60831","label":"moving gear wheel closer to battery","template":"Moving [something] closer to [something]","placeholders":["gear wheel","battery"]}, +{"id":"41824","label":"moving lighter away from lighter","template":"Moving [something] away from [something]","placeholders":["lighter","lighter"]}, +{"id":"217388","label":"picking tablet up","template":"Picking [something] up","placeholders":["tablet"]}, +{"id":"162481","label":"trying to bend electronic cigarette so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["electronic cigarette"]}, +{"id":"135281","label":"letting a tube of lip balm roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a tube of lip balm"]}, +{"id":"19942","label":"pretending to take mouse from pad","template":"Pretending to take [something] from [somewhere]","placeholders":["mouse","pad"]}, +{"id":"37928","label":"pulling colorful scarf from right to left","template":"Pulling [something] from right to left","placeholders":["colorful scarf"]}, +{"id":"81442","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"2252","label":"pretending to pick pick up nothing up","template":"Pretending to pick [something] up","placeholders":["pick up nothing"]}, +{"id":"122169","label":"putting a bottle behind another bottle","template":"Putting [something] behind [something]","placeholders":["a bottle","another bottle"]}, +{"id":"107226","label":"plugging usb into adaptor","template":"Plugging [something] into [something]","placeholders":["usb","adaptor"]}, +{"id":"68667","label":"holding remote next to laptop screen","template":"Holding [something] next to [something]","placeholders":["remote","laptop screen"]}, +{"id":"183179","label":"opening drawyer","template":"Opening [something]","placeholders":["drawyer"]}, +{"id":"53103","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"217671","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"4659","label":"letting a pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pen"]}, +{"id":"66591","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"3427","label":"throwing cigarette lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["cigarette lighter"]}, +{"id":"114672","label":"putting a spinner into a box","template":"Putting [something] into [something]","placeholders":["a spinner","a box"]}, +{"id":"94366","label":"twisting bottlecap","template":"Twisting [something]","placeholders":["bottlecap"]}, +{"id":"198126","label":"removing a bottle, revealing key chain behind","template":"Removing [something], revealing [something] behind","placeholders":["a bottle","key chain"]}, +{"id":"50301","label":"holding a knife in front of a pitcher","template":"Holding [something] in front of [something]","placeholders":["a knife","a pitcher"]}, +{"id":"151270","label":"uncovering a vessel","template":"Uncovering [something]","placeholders":["a vessel"]}, +{"id":"44821","label":"moving away from toothpaste tube with your camera","template":"Moving away from [something] with your camera","placeholders":["toothpaste tube"]}, +{"id":"178023","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"65250","label":"contact case falling like a rock","template":"[Something] falling like a rock","placeholders":["contact case"]}, +{"id":"143820","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"48015","label":"touching (without moving) top of match box","template":"Touching (without moving) [part] of [something]","placeholders":["top","match box"]}, +{"id":"24604","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"61803","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"5455","label":"uncovering bangles","template":"Uncovering [something]","placeholders":["bangles"]}, +{"id":"62410","label":"touching (without moving) flower of plant","template":"Touching (without moving) [part] of [something]","placeholders":["flower","plant"]}, +{"id":"166806","label":"pretending to open car perfume tin without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["car perfume tin"]}, +{"id":"117031","label":"putting red pot holder on a surface","template":"Putting [something] on a surface","placeholders":["red pot holder"]}, +{"id":"83901","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"48432","label":"putting scissor on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["scissor","slab"]}, +{"id":"161595","label":"covering red chili with small box","template":"Covering [something] with [something]","placeholders":["red chili","small box"]}, +{"id":"24305","label":"moving mouse closer to keyboard","template":"Moving [something] closer to [something]","placeholders":["mouse","keyboard"]}, +{"id":"83961","label":"toy truck colliding with cup and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["toy truck","cup"]}, +{"id":"55458","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"641","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213166","label":"putting pitcher upright on the table","template":"Putting [something] upright on the table","placeholders":["pitcher"]}, +{"id":"117614","label":"pretending to open tiffin box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["tiffin box"]}, +{"id":"120754","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"103953","label":"uncovering a flask cover","template":"Uncovering [something]","placeholders":["a flask cover"]}, +{"id":"148093","label":"putting a fork on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a fork on the table"]}, +{"id":"201181","label":"bending a pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["a pencil"]}, +{"id":"62458","label":"taking a bell pepper","template":"Taking [one of many similar things on the table]","placeholders":["a bell pepper"]}, +{"id":"104517","label":"moving comb and calculator closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["comb","calculator"]}, +{"id":"47264","label":"dropping apple into garbage","template":"Dropping [something] into [something]","placeholders":["apple","garbage"]}, +{"id":"45078","label":"covering pen with folder","template":"Covering [something] with [something]","placeholders":["pen","folder"]}, +{"id":"50029","label":"pretending to pick purple microfiber up","template":"Pretending to pick [something] up","placeholders":["purple microfiber"]}, +{"id":"94410","label":"pretending to open shelf without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["shelf"]}, +{"id":"197634","label":"unfolding coversheet","template":"Unfolding [something]","placeholders":["coversheet"]}, +{"id":"82134","label":"moving a deodorant and a glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a deodorant","a glass"]}, +{"id":"1819","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"108341","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"90043","label":"covering blue colour pen with white sheet","template":"Covering [something] with [something]","placeholders":["blue colour pen","white sheet"]}, +{"id":"104162","label":"closing a laptop","template":"Closing [something]","placeholders":["a laptop"]}, +{"id":"117086","label":"adapter falling like a rock","template":"[Something] falling like a rock","placeholders":["adapter"]}, +{"id":"86694","label":"moving glass and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","glass"]}, +{"id":"84304","label":"touching (without moving) arm of action figure","template":"Touching (without moving) [part] of [something]","placeholders":["arm","action figure"]}, +{"id":"49586","label":"twisting wash cloth","template":"Twisting [something]","placeholders":["wash cloth"]}, +{"id":"192449","label":"letting thumbtack roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["thumbtack"]}, +{"id":"63593","label":"pretending to be tearing cellphone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cellphone"]}, +{"id":"61603","label":"pretending to be tearing water bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["water bottle"]}, +{"id":"186424","label":"taking glass","template":"Taking [one of many similar things on the table]","placeholders":["glass"]}, +{"id":"143524","label":"touching (without moving) hand rest of chair","template":"Touching (without moving) [part] of [something]","placeholders":["hand rest","chair"]}, +{"id":"126853","label":"dollar falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["dollar"]}, +{"id":"86489","label":"stuffing sugar into sugar container","template":"Stuffing [something] into [something]","placeholders":["sugar","sugar container"]}, +{"id":"88017","label":"showing nail polish to the camera","template":"Showing [something] to the camera","placeholders":["nail polish"]}, +{"id":"141375","label":"pulling a bottle from left to right","template":"Pulling [something] from left to right","placeholders":["a bottle"]}, +{"id":"206796","label":"pushing bottle with pen","template":"Pushing [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"104298","label":"putting matchbox behind mug","template":"Putting [something] behind [something]","placeholders":["matchbox","mug"]}, +{"id":"62796","label":"tearing letter just a little bit","template":"Tearing [something] just a little bit","placeholders":["letter"]}, +{"id":"28111","label":"pushing an envelope so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an envelope"]}, +{"id":"116520","label":"scooping rocks up with trowel","template":"Scooping [something] up with [something]","placeholders":["rocks","trowel"]}, +{"id":"166665","label":"turning the camera right while filming flower","template":"Turning the camera right while filming [something]","placeholders":["flower"]}, +{"id":"80699","label":"turning the camera right while filming red watch box","template":"Turning the camera right while filming [something]","placeholders":["red watch box"]}, +{"id":"156641","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"193371","label":"pouring water into a measuring cup","template":"Pouring [something] into [something]","placeholders":["water","a measuring cup"]}, +{"id":"183171","label":"holding iphone next to banana","template":"Holding [something] next to [something]","placeholders":["iphone","banana"]}, +{"id":"83781","label":"dropping a peg in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a peg","a cup"]}, +{"id":"37985","label":"putting ruler into mug","template":"Putting [something] into [something]","placeholders":["ruler","mug"]}, +{"id":"90030","label":"poking ball so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ball"]}, +{"id":"63127","label":"tilting tablet with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tablet","mouse"]}, +{"id":"61375","label":"holding cup next to scissors","template":"Holding [something] next to [something]","placeholders":["cup","scissors"]}, +{"id":"177883","label":"pushing keys from right to left","template":"Pushing [something] from right to left","placeholders":["keys"]}, +{"id":"113093","label":"sticker pack falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sticker pack"]}, +{"id":"58797","label":"pushing cable so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cable"]}, +{"id":"181164","label":"pretending to open frask without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["frask"]}, +{"id":"161130","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"132360","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"24706","label":"moving tree branch up","template":"Moving [something] up","placeholders":["tree branch"]}, +{"id":"65519","label":"wiping picture off of white board","template":"Wiping [something] off of [something]","placeholders":["picture","white board"]}, +{"id":"80072","label":"tilting book with scissors on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","scissors"]}, +{"id":"110043","label":"showing kissan jam to the camera","template":"Showing [something] to the camera","placeholders":["kissan jam"]}, +{"id":"133262","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"153985","label":"plugging a mobile phone into the socket","template":"Plugging [something] into [something]","placeholders":["a mobile phone","the socket"]}, +{"id":"33257","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"185578","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"29727","label":"putting mouse onto keyboard","template":"Putting [something] onto [something]","placeholders":["mouse","keyboard"]}, +{"id":"179922","label":"folding a hand towel","template":"Folding [something]","placeholders":["a hand towel"]}, +{"id":"53521","label":"throwing remote control onto a surface","template":"Throwing [something] onto a surface","placeholders":["remote control"]}, +{"id":"138850","label":"squeezing a plush toy","template":"Squeezing [something]","placeholders":["a plush toy"]}, +{"id":"141102","label":"moving canister away from paper towels","template":"Moving [something] away from [something]","placeholders":["canister","paper towels"]}, +{"id":"30791","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"115757","label":"holding phone in front of pants","template":"Holding [something] in front of [something]","placeholders":["phone","pants"]}, +{"id":"14731","label":"pulling speaker from right to left","template":"Pulling [something] from right to left","placeholders":["speaker"]}, +{"id":"31957","label":"unfolding notecard","template":"Unfolding [something]","placeholders":["notecard"]}, +{"id":"168796","label":"opening opening a manicure set","template":"Opening [something]","placeholders":["opening a manicure set"]}, +{"id":"74305","label":"spilling ketchup onto sink","template":"Spilling [something] onto [something]","placeholders":["ketchup","sink"]}, +{"id":"190447","label":"attaching mobile to charger","template":"Attaching [something] to [something]","placeholders":["mobile","charger"]}, +{"id":"36022","label":"opening printer","template":"Opening [something]","placeholders":["printer"]}, +{"id":"42449","label":"showing peppermint on top of water bottle","template":"Showing [something] on top of [something]","placeholders":["peppermint","water bottle"]}, +{"id":"160396","label":"uncovering remote","template":"Uncovering [something]","placeholders":["remote"]}, +{"id":"81061","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"72101","label":"moving toothbrush and toothpaste so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toothbrush","toothpaste"]}, +{"id":"147306","label":"pouring milk into bowl","template":"Pouring [something] into [something]","placeholders":["milk","bowl"]}, +{"id":"181523","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"153109","label":"opening the water container","template":"Opening [something]","placeholders":["the water container"]}, +{"id":"107888","label":"holding cup over pillow","template":"Holding [something] over [something]","placeholders":["cup","pillow"]}, +{"id":"53234","label":"pretending to put the mate next to bowl","template":"Pretending to put [something] next to [something]","placeholders":["the mate","bowl"]}, +{"id":"63237","label":"pretending to close supplement bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["supplement bottle"]}, +{"id":"107029","label":"pretending to take a beer can from the tabke","template":"Pretending to take [something] from [somewhere]","placeholders":["a beer can","the tabke"]}, +{"id":"172281","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"210125","label":"wiping jelly off of a book","template":"Wiping [something] off of [something]","placeholders":["jelly","a book"]}, +{"id":"15035","label":"turning the camera left while filming vanity bag","template":"Turning the camera left while filming [something]","placeholders":["vanity bag"]}, +{"id":"155358","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"173088","label":"holding a bottle","template":"Holding [something]","placeholders":["a bottle"]}, +{"id":"131001","label":"putting cloth clip on a surface","template":"Putting [something] on a surface","placeholders":["cloth clip"]}, +{"id":"73884","label":"hitting a helmet with a pencil","template":"Hitting [something] with [something]","placeholders":["a helmet","a pencil"]}, +{"id":"190342","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"56320","label":"showing a watch next to a desk lamp","template":"Showing [something] next to [something]","placeholders":["a watch","a desk lamp"]}, +{"id":"17045","label":"holding stapler next to hole puncher","template":"Holding [something] next to [something]","placeholders":["stapler","hole puncher"]}, +{"id":"216559","label":"putting a soda can on a surface","template":"Putting [something] on a surface","placeholders":["a soda can"]}, +{"id":"91344","label":"pushing knife so it spins","template":"Pushing [something] so it spins","placeholders":["knife"]}, +{"id":"113950","label":"turning wallet upside down","template":"Turning [something] upside down","placeholders":["wallet"]}, +{"id":"91798","label":"pulling toy truck from right to left","template":"Pulling [something] from right to left","placeholders":["toy truck"]}, +{"id":"173246","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"101552","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"148219","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"34894","label":"moving brush and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["brush","paper"]}, +{"id":"123711","label":"pushing brown bracelet from right to left","template":"Pushing [something] from right to left","placeholders":["brown bracelet"]}, +{"id":"111006","label":"touching (without moving) clasp of box","template":"Touching (without moving) [part] of [something]","placeholders":["clasp","box"]}, +{"id":"63640","label":"covering toothbrush with plate","template":"Covering [something] with [something]","placeholders":["toothbrush","plate"]}, +{"id":"180605","label":"holding purse behind plate","template":"Holding [something] behind [something]","placeholders":["purse","plate"]}, +{"id":"140122","label":"poking stapler so that it spins around","template":"Poking [something] so that it spins around","placeholders":["stapler"]}, +{"id":"182761","label":"spinning marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker"]}, +{"id":"218267","label":"holding a pen behind a cup","template":"Holding [something] behind [something]","placeholders":["a pen","a cup"]}, +{"id":"158765","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"81503","label":"bending tortilla until it breaks","template":"Bending [something] until it breaks","placeholders":["tortilla"]}, +{"id":"211835","label":"covering mug with towel","template":"Covering [something] with [something]","placeholders":["mug","towel"]}, +{"id":"92079","label":"stuffing spoon into cup","template":"Stuffing [something] into [something]","placeholders":["spoon","cup"]}, +{"id":"166754","label":"unfolding magazine","template":"Unfolding [something]","placeholders":["magazine"]}, +{"id":"85036","label":"adhesive can colliding with candle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["adhesive can","candle"]}, +{"id":"118902","label":"hitting a book with a bottle","template":"Hitting [something] with [something]","placeholders":["a book","a bottle"]}, +{"id":"73897","label":"holding green hair comb","template":"Holding [something]","placeholders":["green hair comb"]}, +{"id":"129492","label":"unfolding sheet of paper","template":"Unfolding [something]","placeholders":["sheet of paper"]}, +{"id":"164395","label":"twisting wire","template":"Twisting [something]","placeholders":["wire"]}, +{"id":"217931","label":"letting marker pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["marker pen"]}, +{"id":"16039","label":"showing green toy car on top of spectacle box","template":"Showing [something] on top of [something]","placeholders":["green toy car","spectacle box"]}, +{"id":"9858","label":"pushing a cup off of the counter","template":"Pushing [something] off of [something]","placeholders":["a cup","the counter"]}, +{"id":"73160","label":"squeezing phone case","template":"Squeezing [something]","placeholders":["phone case"]}, +{"id":"141498","label":"opening body lotion","template":"Opening [something]","placeholders":["body lotion"]}, +{"id":"132860","label":"trying to bend a dipper so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a dipper"]}, +{"id":"206775","label":"uncovering a watch","template":"Uncovering [something]","placeholders":["a watch"]}, +{"id":"149756","label":"putting toothbrush behind mug","template":"Putting [something] behind [something]","placeholders":["toothbrush","mug"]}, +{"id":"16537","label":"moving knife up","template":"Moving [something] up","placeholders":["knife"]}, +{"id":"213417","label":"dropping box onto pillow","template":"Dropping [something] onto [something]","placeholders":["box","pillow"]}, +{"id":"88834","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"164435","label":"putting package that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["package"]}, +{"id":"100536","label":"dropping case onto phone","template":"Dropping [something] onto [something]","placeholders":["case","phone"]}, +{"id":"4338","label":"showing a camera behind a videocamera","template":"Showing [something] behind [something]","placeholders":["a camera","a videocamera"]}, +{"id":"63823","label":"moving pincer down","template":"Moving [something] down","placeholders":["pincer"]}, +{"id":"171619","label":"turning the camera upwards while filming ball","template":"Turning the camera upwards while filming [something]","placeholders":["ball"]}, +{"id":"127296","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"1682","label":"putting 3 pens onto book","template":"Putting [number of] [something] onto [something]","placeholders":["3","pens","book"]}, +{"id":"46544","label":"opening toilet lid","template":"Opening [something]","placeholders":["toilet lid"]}, +{"id":"85418","label":"dropping keys in front of bag","template":"Dropping [something] in front of [something]","placeholders":["keys","bag"]}, +{"id":"68639","label":"approaching a small vacuum with your camera","template":"Approaching [something] with your camera","placeholders":["a small vacuum"]}, +{"id":"24263","label":"bubble wrap falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bubble wrap"]}, +{"id":"13167","label":"dropping badminton bat behind a pair of shoes","template":"Dropping [something] behind [something]","placeholders":["badminton bat","a pair of shoes"]}, +{"id":"169887","label":"poking teething ring so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["teething ring"]}, +{"id":"202033","label":"a notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["a notebook"]}, +{"id":"182155","label":"spilling milk onto a plate","template":"Spilling [something] onto [something]","placeholders":["milk","a plate"]}, +{"id":"65196","label":"holding a bag in front of a picture","template":"Holding [something] in front of [something]","placeholders":["a bag","a picture"]}, +{"id":"166768","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196350","label":"taking a coin from a jar","template":"Taking [something] from [somewhere]","placeholders":["a coin","a jar"]}, +{"id":"159740","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"29308","label":"putting green bowl that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["green bowl"]}, +{"id":"152533","label":"plugging microphone into laptop","template":"Plugging [something] into [something]","placeholders":["microphone","laptop"]}, +{"id":"1475","label":"turning the camera downwards while filming earphone","template":"Turning the camera downwards while filming [something]","placeholders":["earphone"]}, +{"id":"60517","label":"throwing tote bag onto a surface","template":"Throwing [something] onto a surface","placeholders":["tote bag"]}, +{"id":"204701","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"178838","label":"taking notebook out of box","template":"Taking [something] out of [something]","placeholders":["notebook","box"]}, +{"id":"179450","label":"folding bag","template":"Folding [something]","placeholders":["bag"]}, +{"id":"65676","label":"throwing tape","template":"Throwing [something]","placeholders":["tape"]}, +{"id":"77820","label":"putting 5 markers onto a table","template":"Putting [number of] [something] onto [something]","placeholders":["5","markers","a table"]}, +{"id":"114852","label":"spreading almond butter onto bread","template":"Spreading [something] onto [something]","placeholders":["almond butter","bread"]}, +{"id":"38462","label":"moving lip gloss and coffee mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lip gloss","coffee mug"]}, +{"id":"11769","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"114347","label":"taking belt out of duffel bag","template":"Taking [something] out of [something]","placeholders":["belt","duffel bag"]}, +{"id":"12870","label":"putting stamp pad that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stamp pad"]}, +{"id":"147633","label":"putting a jar on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a jar"]}, +{"id":"1915","label":"spilling water onto mug","template":"Spilling [something] onto [something]","placeholders":["water","mug"]}, +{"id":"190758","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"97523","label":"plugging usb cable into usb slot","template":"Plugging [something] into [something]","placeholders":["usb cable","usb slot"]}, +{"id":"106124","label":"throwing bottle in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bottle"]}, +{"id":"111179","label":"pulling two ends of ruler but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["ruler"]}, +{"id":"55222","label":"tilting a cup with a card on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cup","a card"]}, +{"id":"106237","label":"tilting a book with a box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a box"]}, +{"id":"87002","label":"pushing lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lighter"]}, +{"id":"191184","label":"putting pen in front of scissors","template":"Putting [something] in front of [something]","placeholders":["pen","scissors"]}, +{"id":"100087","label":"moving a pen and a marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pen","a marker"]}, +{"id":"77812","label":"moving a jar and another jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a jar","another jar"]}, +{"id":"149818","label":"poking flower so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["flower"]}, +{"id":"185519","label":"pretending to put a dvd case next to soda bottle","template":"Pretending to put [something] next to [something]","placeholders":["a dvd case","soda bottle"]}, +{"id":"58495","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"84094","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"82661","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"194380","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"73814","label":"pulling two ends of marker so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["marker"]}, +{"id":"198863","label":"turning the camera left while filming green water bottle","template":"Turning the camera left while filming [something]","placeholders":["green water bottle"]}, +{"id":"174376","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"175160","label":"pushing usb stick with ruler","template":"Pushing [something] with [something]","placeholders":["usb stick","ruler"]}, +{"id":"32811","label":"taking a wine glass","template":"Taking [one of many similar things on the table]","placeholders":["a wine glass"]}, +{"id":"68196","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"106955","label":"moving powerbank closer to radio","template":"Moving [something] closer to [something]","placeholders":["powerbank","radio"]}, +{"id":"142253","label":"holding candle in front of globe","template":"Holding [something] in front of [something]","placeholders":["candle","globe"]}, +{"id":"188988","label":"pushing candle with candle","template":"Pushing [something] with [something]","placeholders":["candle","candle"]}, +{"id":"92158","label":"pulling key from left to right","template":"Pulling [something] from left to right","placeholders":["key"]}, +{"id":"212818","label":"moving usb away from usb cable","template":"Moving [something] away from [something]","placeholders":["usb","usb cable"]}, +{"id":"146384","label":"pushing paint tube from left to right","template":"Pushing [something] from left to right","placeholders":["paint tube"]}, +{"id":"188983","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"207940","label":"dropping torch into shoe","template":"Dropping [something] into [something]","placeholders":["torch","shoe"]}, +{"id":"144130","label":"plugging extension plug into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["extension plug","wall plug"]}, +{"id":"217331","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"95586","label":"stuffing calculator into envelope","template":"Stuffing [something] into [something]","placeholders":["calculator","envelope"]}, +{"id":"194017","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"108842","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"193726","label":"spinning lemon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lemon"]}, +{"id":"125449","label":"poking a hole into a tissue paper","template":"Poking a hole into [something soft]","placeholders":["a tissue paper"]}, +{"id":"87390","label":"closing plastic box","template":"Closing [something]","placeholders":["plastic box"]}, +{"id":"196386","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"178125","label":"covering wallet with cloth","template":"Covering [something] with [something]","placeholders":["wallet","cloth"]}, +{"id":"38899","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"30348","label":"holding smiley ball over diary","template":"Holding [something] over [something]","placeholders":["smiley ball","diary"]}, +{"id":"100400","label":"scooping ground coffee up with spoon","template":"Scooping [something] up with [something]","placeholders":["ground coffee","spoon"]}, +{"id":"100764","label":"pushing a paper from right to left","template":"Pushing [something] from right to left","placeholders":["a paper"]}, +{"id":"219951","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"144710","label":"picking vape up","template":"Picking [something] up","placeholders":["vape"]}, +{"id":"153348","label":"poking small, clockwork wolverine toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["small, clockwork wolverine toy"]}, +{"id":"140978","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"7092","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"143998","label":"picking toothpick up","template":"Picking [something] up","placeholders":["toothpick"]}, +{"id":"214951","label":"dropping pepper in front of a belt","template":"Dropping [something] in front of [something]","placeholders":["pepper","a belt"]}, +{"id":"141707","label":"throwing a pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pen"]}, +{"id":"69353","label":"moving nail polish closer to cup","template":"Moving [something] closer to [something]","placeholders":["nail polish","cup"]}, +{"id":"137692","label":"throwing a hanger onto a surface","template":"Throwing [something] onto a surface","placeholders":["a hanger"]}, +{"id":"220677","label":"lifting folder with box on it","template":"Lifting [something] with [something] on it","placeholders":["folder","box"]}, +{"id":"114425","label":"rolling ping pong ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ping pong ball"]}, +{"id":"136192","label":"closing pressure cooker","template":"Closing [something]","placeholders":["pressure cooker"]}, +{"id":"658","label":"pretending to be tearing a raincoat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a raincoat"]}, +{"id":"135643","label":"moving toy car and toy wheel so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy car","toy wheel"]}, +{"id":"216532","label":"pushing apple from right to left","template":"Pushing [something] from right to left","placeholders":["apple"]}, +{"id":"185741","label":"moving roll of tape across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["roll of tape"]}, +{"id":"57621","label":"pretending to take perfume from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["perfume","shelf"]}, +{"id":"219868","label":"unfolding paper towel","template":"Unfolding [something]","placeholders":["paper towel"]}, +{"id":"219554","label":"moving a cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a cup"]}, +{"id":"23207","label":"showing orange notebook to the camera","template":"Showing [something] to the camera","placeholders":["orange notebook"]}, +{"id":"100136","label":"lemon falling like a rock","template":"[Something] falling like a rock","placeholders":["lemon"]}, +{"id":"121115","label":"plugging power plug into outlet","template":"Plugging [something] into [something]","placeholders":["power plug","outlet"]}, +{"id":"196487","label":"pulling red watch case from left to right","template":"Pulling [something] from left to right","placeholders":["red watch case"]}, +{"id":"66981","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"137171","label":"throwing a claw","template":"Throwing [something]","placeholders":["a claw"]}, +{"id":"120387","label":"squeezing inflatable coozie","template":"Squeezing [something]","placeholders":["inflatable coozie"]}, +{"id":"157894","label":"lifting paperclip holder with paperclips on it","template":"Lifting [something] with [something] on it","placeholders":["paperclip holder","paperclips"]}, +{"id":"99185","label":"showing that paper is inside bowl","template":"Showing that [something] is inside [something]","placeholders":["paper","bowl"]}, +{"id":"53015","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"21553","label":"dropping rubix cube into green bowl","template":"Dropping [something] into [something]","placeholders":["rubix cube","green bowl"]}, +{"id":"118075","label":"putting tape and keys on the table","template":"Putting [something] and [something] on the table","placeholders":["tape","keys"]}, +{"id":"149061","label":"putting something on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["something"]}, +{"id":"14278","label":"putting mug in front of pendrive","template":"Putting [something] in front of [something]","placeholders":["mug","pendrive"]}, +{"id":"35493","label":"dropping a matchbox next to a card","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a card"]}, +{"id":"42521","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"177760","label":"holding hair dryer","template":"Holding [something]","placeholders":["hair dryer"]}, +{"id":"137436","label":"lifting a surface with a banana on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a banana"]}, +{"id":"119481","label":"removing something, revealing something behind","template":"Removing [something], revealing [something] behind","placeholders":["something","something"]}, +{"id":"159180","label":"pushing phone from left to right","template":"Pushing [something] from left to right","placeholders":["phone"]}, +{"id":"187854","label":"putting a binder onto a box","template":"Putting [something] onto [something]","placeholders":["a binder","a box"]}, +{"id":"31492","label":"pulling two ends of cotton ball but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["cotton ball"]}, +{"id":"99597","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"51406","label":"holding a box next to a cellphone","template":"Holding [something] next to [something]","placeholders":["a box","a cellphone"]}, +{"id":"162918","label":"stuffing paper into plastic cup","template":"Stuffing [something] into [something]","placeholders":["paper","plastic cup"]}, +{"id":"23764","label":"pushing a box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box"]}, +{"id":"36097","label":"moving a glass of water up","template":"Moving [something] up","placeholders":["a glass of water"]}, +{"id":"125849","label":"spilling water onto paper","template":"Spilling [something] onto [something]","placeholders":["water","paper"]}, +{"id":"18710","label":"putting remote behind jug","template":"Putting [something] behind [something]","placeholders":["remote","jug"]}, +{"id":"72554","label":"taking candy","template":"Taking [one of many similar things on the table]","placeholders":["candy"]}, +{"id":"195728","label":"rolling spool of thread on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["spool of thread"]}, +{"id":"59656","label":"putting can on a surface","template":"Putting [something] on a surface","placeholders":["can"]}, +{"id":"220065","label":"stuffing flowers into box","template":"Stuffing [something] into [something]","placeholders":["flowers","box"]}, +{"id":"141072","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"100653","label":"moving cup and packet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","packet"]}, +{"id":"204990","label":"holding comb behind computer screen","template":"Holding [something] behind [something]","placeholders":["comb","computer screen"]}, +{"id":"116061","label":"letting mouse roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["mouse"]}, +{"id":"73674","label":"moving a box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a box"]}, +{"id":"9219","label":"pouring coffee into mug","template":"Pouring [something] into [something]","placeholders":["coffee","mug"]}, +{"id":"90688","label":"holding cup next to hand bag","template":"Holding [something] next to [something]","placeholders":["cup","hand bag"]}, +{"id":"214942","label":"ball colliding with another ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","another ball"]}, +{"id":"66183","label":"putting spoon onto cup","template":"Putting [something] onto [something]","placeholders":["spoon","cup"]}, +{"id":"13695","label":"pretending to pick mobile phone up","template":"Pretending to pick [something] up","placeholders":["mobile phone"]}, +{"id":"112098","label":"showing fridge to the camera","template":"Showing [something] to the camera","placeholders":["fridge"]}, +{"id":"92712","label":"lifting white colour board clip up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["white colour board clip"]}, +{"id":"170796","label":"letting ring roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ring"]}, +{"id":"81664","label":"throwing bag against wall","template":"Throwing [something] against [something]","placeholders":["bag","wall"]}, +{"id":"103529","label":"sprinkling seeds onto vegetables","template":"Sprinkling [something] onto [something]","placeholders":["seeds","vegetables"]}, +{"id":"86586","label":"pretending to poke ramekin","template":"Pretending to poke [something]","placeholders":["ramekin"]}, +{"id":"9653","label":"putting mirror behind box","template":"Putting [something] behind [something]","placeholders":["mirror","box"]}, +{"id":"16575","label":"dropping game next to paper","template":"Dropping [something] next to [something]","placeholders":["game","paper"]}, +{"id":"67650","label":"taking bottle from floor","template":"Taking [something] from [somewhere]","placeholders":["bottle","floor"]}, +{"id":"110595","label":"dropping remote control in front of table","template":"Dropping [something] in front of [something]","placeholders":["remote control","table"]}, +{"id":"122023","label":"taking cotton buds","template":"Taking [one of many similar things on the table]","placeholders":["cotton buds"]}, +{"id":"19489","label":"lifting marker up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["marker"]}, +{"id":"166038","label":"plugging box into wall","template":"Plugging [something] into [something]","placeholders":["box","wall"]}, +{"id":"67240","label":"bending cookie until it breaks","template":"Bending [something] until it breaks","placeholders":["cookie"]}, +{"id":"132160","label":"poking bag pin so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bag pin"]}, +{"id":"79214","label":"covering phone with folder","template":"Covering [something] with [something]","placeholders":["phone","folder"]}, +{"id":"177209","label":"uncovering a teddy","template":"Uncovering [something]","placeholders":["a teddy"]}, +{"id":"110683","label":"dropping toy in front of tv stand","template":"Dropping [something] in front of [something]","placeholders":["toy","tv stand"]}, +{"id":"207926","label":"opening small box","template":"Opening [something]","placeholders":["small box"]}, +{"id":"43082","label":"pretending or failing to wipe stickers off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stickers","table"]}, +{"id":"198804","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"20796","label":"unfolding scarf","template":"Unfolding [something]","placeholders":["scarf"]}, +{"id":"45189","label":"picking hat up","template":"Picking [something] up","placeholders":["hat"]}, +{"id":"122982","label":"spinning a marker so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a marker"]}, +{"id":"179769","label":"putting glasses case upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["glasses case"]}, +{"id":"7443","label":"showing a photo of family photo to the camera","template":"Showing a photo of [something] to the camera","placeholders":["family photo"]}, +{"id":"142139","label":"tipping remote over","template":"Tipping [something] over","placeholders":["remote"]}, +{"id":"191581","label":"showing pebble on top of striker coin","template":"Showing [something] on top of [something]","placeholders":["pebble","striker coin"]}, +{"id":"64357","label":"pretending to turn scissors upside down","template":"Pretending to turn [something] upside down","placeholders":["scissors"]}, +{"id":"60258","label":"pouring water into plastic case until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","plastic case"]}, +{"id":"3988","label":"throwing onion in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["onion"]}, +{"id":"184906","label":"showing that coffee cup is empty","template":"Showing that [something] is empty","placeholders":["coffee cup"]}, +{"id":"38673","label":"plugging cable into phone charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","phone charger"]}, +{"id":"175725","label":"poking stuffed toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["stuffed toy"]}, +{"id":"8251","label":"holding mug","template":"Holding [something]","placeholders":["mug"]}, +{"id":"163217","label":"pouring water onto plant","template":"Pouring [something] onto [something]","placeholders":["water","plant"]}, +{"id":"119101","label":"spinning bangle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bangle"]}, +{"id":"57119","label":"pretending to open envelope without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["envelope"]}, +{"id":"166562","label":"pushing orange bowl from right to left","template":"Pushing [something] from right to left","placeholders":["orange bowl"]}, +{"id":"152094","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"124217","label":"moving away from something with your camera","template":"Moving away from [something] with your camera","placeholders":["something"]}, +{"id":"220461","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"1452","label":"dropping a ball into a bowl","template":"Dropping [something] into [something]","placeholders":["a ball","a bowl"]}, +{"id":"88462","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"163893","label":"moving white mug closer to black mug","template":"Moving [something] closer to [something]","placeholders":["white mug","black mug"]}, +{"id":"12582","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"141992","label":"pushing tissue so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tissue"]}, +{"id":"217115","label":"putting 1 phone onto papers","template":"Putting [number of] [something] onto [something]","placeholders":["1","phone","papers"]}, +{"id":"201633","label":"plugging headphones into an ipod","template":"Plugging [something] into [something]","placeholders":["headphones","an ipod"]}, +{"id":"6585","label":"pretending to be tearing a cap","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cap"]}, +{"id":"186861","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"121071","label":"moving glass closer to glass","template":"Moving [something] closer to [something]","placeholders":["glass","glass"]}, +{"id":"80757","label":"pushing tissues from left to right","template":"Pushing [something] from left to right","placeholders":["tissues"]}, +{"id":"110937","label":"twisting sock","template":"Twisting [something]","placeholders":["sock"]}, +{"id":"5157","label":"putting chickpea","template":"Putting [something similar to other things that are already on the table]","placeholders":["chickpea"]}, +{"id":"199203","label":"taking blue colour pen among the many colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["blue colour pen among the many colour pens on the table"]}, +{"id":"163711","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"88048","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"197873","label":"putting money into wallet","template":"Putting [something] into [something]","placeholders":["money","wallet"]}, +{"id":"9737","label":"hitting a glass with a coaster","template":"Hitting [something] with [something]","placeholders":["a glass","a coaster"]}, +{"id":"64380","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"107550","label":"showing small box next to large box","template":"Showing [something] next to [something]","placeholders":["small box","large box"]}, +{"id":"84207","label":"holding a wrench","template":"Holding [something]","placeholders":["a wrench"]}, +{"id":"204739","label":"putting coin underneath bag","template":"Putting [something] underneath [something]","placeholders":["coin","bag"]}, +{"id":"125435","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"195366","label":"taking pink golf ball","template":"Taking [one of many similar things on the table]","placeholders":["pink golf ball"]}, +{"id":"207591","label":"dropping apple into bowl","template":"Dropping [something] into [something]","placeholders":["apple","bowl"]}, +{"id":"83767","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"18086","label":"lifting plate with coffee cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","coffee cup"]}, +{"id":"129683","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"163930","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"182229","label":"pulling remote from left to right","template":"Pulling [something] from left to right","placeholders":["remote"]}, +{"id":"191590","label":"moving ring and ring closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ring","ring"]}, +{"id":"72310","label":"holding pencil over tape","template":"Holding [something] over [something]","placeholders":["pencil","tape"]}, +{"id":"189745","label":"pushing action camera from right to left","template":"Pushing [something] from right to left","placeholders":["action camera"]}, +{"id":"93526","label":"dropping a pen onto an envelope","template":"Dropping [something] onto [something]","placeholders":["a pen","an envelope"]}, +{"id":"12340","label":"lifting up one end of birthday card, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["birthday card"]}, +{"id":"151843","label":"pushing stapler from right to left","template":"Pushing [something] from right to left","placeholders":["stapler"]}, +{"id":"50519","label":"hitting shoe with torch","template":"Hitting [something] with [something]","placeholders":["shoe","torch"]}, +{"id":"176333","label":"taking water bottle","template":"Taking [one of many similar things on the table]","placeholders":["water bottle"]}, +{"id":"13736","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"23231","label":"holding chocolate next to mobile","template":"Holding [something] next to [something]","placeholders":["chocolate","mobile"]}, +{"id":"78762","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"91142","label":"pushing candle with book","template":"Pushing [something] with [something]","placeholders":["candle","book"]}, +{"id":"176009","label":"rolling duct tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["duct tape"]}, +{"id":"168875","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"169707","label":"throwing plastic plate holder in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["plastic plate holder"]}, +{"id":"125865","label":"pushing nail polish bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["nail polish bottle"]}, +{"id":"111350","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"125356","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"191250","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"89189","label":"holding scissors in front of clock","template":"Holding [something] in front of [something]","placeholders":["scissors","clock"]}, +{"id":"176222","label":"taking plastic out of basket","template":"Taking [something] out of [something]","placeholders":["plastic","basket"]}, +{"id":"39041","label":"pulling two ends of spring so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["spring"]}, +{"id":"187076","label":"moving away from sapodilla with your camera","template":"Moving away from [something] with your camera","placeholders":["sapodilla"]}, +{"id":"155374","label":"holding bicycle bell next to rubix cube","template":"Holding [something] next to [something]","placeholders":["bicycle bell","rubix cube"]}, +{"id":"189780","label":"taking tea","template":"Taking [one of many similar things on the table]","placeholders":["tea"]}, +{"id":"45106","label":"orange colliding with orange and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["orange","orange"]}, +{"id":"111944","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"95506","label":"letting a pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pencil"]}, +{"id":"65448","label":"covering a mug with a dish towel","template":"Covering [something] with [something]","placeholders":["a mug","a dish towel"]}, +{"id":"165518","label":"pretending to pick a shoe up","template":"Pretending to pick [something] up","placeholders":["a shoe"]}, +{"id":"148145","label":"opening handbag","template":"Opening [something]","placeholders":["handbag"]}, +{"id":"74810","label":"throwing keys onto a surface","template":"Throwing [something] onto a surface","placeholders":["keys"]}, +{"id":"86009","label":"pushing a ball so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a ball"]}, +{"id":"78060","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"50656","label":"showing hammer on top of blender","template":"Showing [something] on top of [something]","placeholders":["hammer","blender"]}, +{"id":"95893","label":"tearing toilet paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["toilet paper"]}, +{"id":"176719","label":"dropping spoon into glass","template":"Dropping [something] into [something]","placeholders":["spoon","glass"]}, +{"id":"90150","label":"pretending to pick a tablet stand up","template":"Pretending to pick [something] up","placeholders":["a tablet stand"]}, +{"id":"125286","label":"moving a ice tray away from the cup","template":"Moving [something] away from [something]","placeholders":["a ice tray","the cup"]}, +{"id":"193439","label":"closing magazine","template":"Closing [something]","placeholders":["magazine"]}, +{"id":"43037","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"124061","label":"moving a stapler and a bracelet closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a stapler","a bracelet"]}, +{"id":"211344","label":"putting controller underneath couch","template":"Putting [something] underneath [something]","placeholders":["controller","couch"]}, +{"id":"99760","label":"pulling punch from right to left","template":"Pulling [something] from right to left","placeholders":["punch"]}, +{"id":"180102","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"41925","label":"poking a book so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a book"]}, +{"id":"183973","label":"a container falling like a rock","template":"[Something] falling like a rock","placeholders":["a container"]}, +{"id":"187079","label":"taking packet out of basket","template":"Taking [something] out of [something]","placeholders":["packet","basket"]}, +{"id":"218270","label":"putting coin into ashtray","template":"Putting [something] into [something]","placeholders":["coin","ashtray"]}, +{"id":"161608","label":"turning the camera downwards while filming white candle","template":"Turning the camera downwards while filming [something]","placeholders":["white candle"]}, +{"id":"204619","label":"moving away from cup with your camera","template":"Moving away from [something] with your camera","placeholders":["cup"]}, +{"id":"179423","label":"picking car key up","template":"Picking [something] up","placeholders":["car key"]}, +{"id":"200482","label":"lifting ecig up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["ecig"]}, +{"id":"80618","label":"covering comb with wipes","template":"Covering [something] with [something]","placeholders":["comb","wipes"]}, +{"id":"12799","label":"showing that paper is inside glass","template":"Showing that [something] is inside [something]","placeholders":["paper","glass"]}, +{"id":"68554","label":"showing that liquid is inside waterbottle","template":"Showing that [something] is inside [something]","placeholders":["liquid","waterbottle"]}, +{"id":"35565","label":"moving the pencil case up","template":"Moving [something] up","placeholders":["the pencil case"]}, +{"id":"49883","label":"putting a pocket knife, a container and a hand bag on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pocket knife","a container","a hand bag"]}, +{"id":"121079","label":"spreading perfume onto pillow","template":"Spreading [something] onto [something]","placeholders":["perfume","pillow"]}, +{"id":"62211","label":"spinning soap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["soap"]}, +{"id":"71277","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"111422","label":"pushing white candle from left to right","template":"Pushing [something] from left to right","placeholders":["white candle"]}, +{"id":"14732","label":"moving plate and glove away from each other","template":"Moving [something] and [something] away from each other","placeholders":["plate","glove"]}, +{"id":"35550","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"25776","label":"taking envelope out of drawer","template":"Taking [something] out of [something]","placeholders":["envelope","drawer"]}, +{"id":"31817","label":"rolling an orange on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an orange"]}, +{"id":"209616","label":"stuffing a cd into a case","template":"Stuffing [something] into [something]","placeholders":["a cd","a case"]}, +{"id":"39127","label":"folding book","template":"Folding [something]","placeholders":["book"]}, +{"id":"69776","label":"twisting bottle","template":"Twisting [something]","placeholders":["bottle"]}, +{"id":"148106","label":"holding bottle behind bottle","template":"Holding [something] behind [something]","placeholders":["bottle","bottle"]}, +{"id":"142184","label":"showing water tank to the camera","template":"Showing [something] to the camera","placeholders":["water tank"]}, +{"id":"82168","label":"putting hat on a surface","template":"Putting [something] on a surface","placeholders":["hat"]}, +{"id":"166057","label":"stacking books on sofa","template":"Stacking [number of] [something]","placeholders":["books on","sofa"]}, +{"id":"14422","label":"holding cup next to glass cleaner","template":"Holding [something] next to [something]","placeholders":["cup","glass cleaner"]}, +{"id":"19666","label":"showing that the cup noodle is empty","template":"Showing that [something] is empty","placeholders":["the cup noodle"]}, +{"id":"72766","label":"pulling magnifying glass from right to left","template":"Pulling [something] from right to left","placeholders":["magnifying glass"]}, +{"id":"16867","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"24038","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"29220","label":"rolling a battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a battery"]}, +{"id":"152114","label":"uncovering a wallet","template":"Uncovering [something]","placeholders":["a wallet"]}, +{"id":"59043","label":"spinning nail polish so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["nail polish"]}, +{"id":"62624","label":"pouring something onto something","template":"Pouring [something] onto [something]","placeholders":["something","something"]}, +{"id":"73757","label":"holding mp3 player next to hole puncher","template":"Holding [something] next to [something]","placeholders":["mp3 player","hole puncher"]}, +{"id":"41714","label":"poking an apple so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["an apple"]}, +{"id":"26407","label":"holding a card","template":"Holding [something]","placeholders":["a card"]}, +{"id":"494","label":"squeezing a toy football","template":"Squeezing [something]","placeholders":["a toy football"]}, +{"id":"135008","label":"turning can upside down","template":"Turning [something] upside down","placeholders":["can"]}, +{"id":"26206","label":"spinning round globe so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["round globe"]}, +{"id":"214489","label":"pretending to pick granola bar up","template":"Pretending to pick [something] up","placeholders":["granola bar"]}, +{"id":"196132","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"128477","label":"taking scissors out of drawer","template":"Taking [something] out of [something]","placeholders":["scissors","drawer"]}, +{"id":"27730","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"61246","label":"pushing tennis ball from right to left","template":"Pushing [something] from right to left","placeholders":["tennis ball"]}, +{"id":"158963","label":"pretending to take candy out of vase","template":"Pretending to take [something] out of [something]","placeholders":["candy","vase"]}, +{"id":"29634","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"83948","label":"moving notebook closer to plastic cup","template":"Moving [something] closer to [something]","placeholders":["notebook","plastic cup"]}, +{"id":"131653","label":"putting lip balm on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["lip balm"]}, +{"id":"43071","label":"twisting (wringing) a rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a rag"]}, +{"id":"107257","label":"plugging a cable into a computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a computer"]}, +{"id":"187237","label":"showing a photo of a singer to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a singer"]}, +{"id":"18001","label":"dropping ice cube into cup","template":"Dropping [something] into [something]","placeholders":["ice cube","cup"]}, +{"id":"2560","label":"pushing a bottletop so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bottletop"]}, +{"id":"60981","label":"putting stick on a surface","template":"Putting [something] on a surface","placeholders":["stick"]}, +{"id":"19162","label":"pushing a pen with a pencil","template":"Pushing [something] with [something]","placeholders":["a pen","a pencil"]}, +{"id":"38937","label":"showing badge to the camera","template":"Showing [something] to the camera","placeholders":["badge"]}, +{"id":"11628","label":"showing red spoon next to white spoon","template":"Showing [something] next to [something]","placeholders":["red spoon","white spoon"]}, +{"id":"160839","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"158046","label":"taking one of many books","template":"Taking [one of many similar things on the table]","placeholders":["one of many books"]}, +{"id":"47059","label":"digging nail polish out of pile of nail polish","template":"Digging [something] out of [something]","placeholders":["nail polish","pile of nail polish"]}, +{"id":"94544","label":"pouring water into a mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a mug"]}, +{"id":"195326","label":"turning plastic bowl upside down","template":"Turning [something] upside down","placeholders":["plastic bowl"]}, +{"id":"51798","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"184037","label":"hitting a bin with a marker","template":"Hitting [something] with [something]","placeholders":["a bin","a marker"]}, +{"id":"139238","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"64308","label":"pretending to be tearing yellow duster cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["yellow duster cloth"]}, +{"id":"51655","label":"putting modem onto table","template":"Putting [something] onto [something]","placeholders":["modem","table"]}, +{"id":"156041","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"25632","label":"poking water bottle so that it spins around","template":"Poking [something] so that it spins around","placeholders":["water bottle"]}, +{"id":"139048","label":"pretending to be tearing a phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a phone"]}, +{"id":"119449","label":"pretending to scoop snack up with paper","template":"Pretending to scoop [something] up with [something]","placeholders":["snack","paper"]}, +{"id":"132234","label":"twisting lid off nail polish","template":"Twisting [something]","placeholders":["lid off nail polish"]}, +{"id":"32538","label":"moving ball and bottle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["ball","bottle"]}, +{"id":"24034","label":"moving a pen and a smartphone so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a smartphone"]}, +{"id":"16016","label":"moving toy car and toy car so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy car","toy car"]}, +{"id":"200229","label":"poking a pepper shaker so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a pepper shaker"]}, +{"id":"178407","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"105773","label":"pretending to poke cord","template":"Pretending to poke [something]","placeholders":["cord"]}, +{"id":"204382","label":"moving tape dispenser and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["tape dispenser","mouse"]}, +{"id":"22140","label":"covering stone with cap","template":"Covering [something] with [something]","placeholders":["stone","cap"]}, +{"id":"201467","label":"moving plant towards the camera","template":"Moving [something] towards the camera","placeholders":["plant"]}, +{"id":"43917","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"12464","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"33557","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"192032","label":"pulling two ends of a hairbrush but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a hairbrush"]}, +{"id":"56299","label":"dropping battery in front of glass","template":"Dropping [something] in front of [something]","placeholders":["battery","glass"]}, +{"id":"118572","label":"putting glasses underneath desk","template":"Putting [something] underneath [something]","placeholders":["glasses","desk"]}, +{"id":"143643","label":"pushing brown case from left to right","template":"Pushing [something] from left to right","placeholders":["brown case"]}, +{"id":"151224","label":"poking candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["candle"]}, +{"id":"1630","label":"moving a marker across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a marker"]}, +{"id":"183535","label":"pulling torch from left to right","template":"Pulling [something] from left to right","placeholders":["torch"]}, +{"id":"180436","label":"tilting box with notebook on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","notebook"]}, +{"id":"209208","label":"throwing a rock in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a rock"]}, +{"id":"123379","label":"toilet paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["toilet paper"]}, +{"id":"161422","label":"pretending to take shoe from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["shoe","floor"]}, +{"id":"170842","label":"squeezing a face wash tube","template":"Squeezing [something]","placeholders":["a face wash tube"]}, +{"id":"21859","label":"squeezing a plastic bottle","template":"Squeezing [something]","placeholders":["a plastic bottle"]}, +{"id":"202165","label":"pretending to be tearing pad of paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pad of paper"]}, +{"id":"39980","label":"moving lid of pan","template":"Moving [part] of [something]","placeholders":["lid","pan"]}, +{"id":"123133","label":"tearing note paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["note paper"]}, +{"id":"163062","label":"putting orange","template":"Putting [something similar to other things that are already on the table]","placeholders":["orange"]}, +{"id":"193868","label":"twisting a brochure","template":"Twisting [something]","placeholders":["a brochure"]}, +{"id":"35883","label":"putting a remote control onto a book","template":"Putting [something] onto [something]","placeholders":["a remote control","a book"]}, +{"id":"82004","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"145242","label":"putting a bottle of mustard on a surface","template":"Putting [something] on a surface","placeholders":["a bottle of mustard"]}, +{"id":"138104","label":"taking screwdriver out of toolbox","template":"Taking [something] out of [something]","placeholders":["screwdriver","toolbox"]}, +{"id":"58085","label":"folding jacket","template":"Folding [something]","placeholders":["jacket"]}, +{"id":"29139","label":"stuffing napkin into cup holder","template":"Stuffing [something] into [something]","placeholders":["napkin","cup holder"]}, +{"id":"1886","label":"piling boxes up","template":"Piling [something] up","placeholders":["boxes"]}, +{"id":"116005","label":"holding comb over counter","template":"Holding [something] over [something]","placeholders":["comb","counter"]}, +{"id":"198465","label":"pushing something onto something","template":"Pushing [something] onto [something]","placeholders":["something","something"]}, +{"id":"135394","label":"dropping battery cell onto stool","template":"Dropping [something] onto [something]","placeholders":["battery cell","stool"]}, +{"id":"45861","label":"holding a pocket knife behind a piece of paper","template":"Holding [something] behind [something]","placeholders":["a pocket knife","a piece of paper"]}, +{"id":"94213","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"202300","label":"dropping pen onto pencil case","template":"Dropping [something] onto [something]","placeholders":["pen","pencil case"]}, +{"id":"157868","label":"pushing toy wheel with red colour pen","template":"Pushing [something] with [something]","placeholders":["toy wheel","red colour pen"]}, +{"id":"50964","label":"rolling metal rod on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["metal rod"]}, +{"id":"188853","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"140163","label":"putting a fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["a fork"]}, +{"id":"197146","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"31221","label":"pushing a wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a wallet"]}, +{"id":"191457","label":"holding toy next to jar","template":"Holding [something] next to [something]","placeholders":["toy","jar"]}, +{"id":"77770","label":"poking a stuffed animal so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a stuffed animal"]}, +{"id":"33325","label":"tilting phone with pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["phone","pencil"]}, +{"id":"41579","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"117500","label":"stuffing a pen into a pencase","template":"Stuffing [something] into [something]","placeholders":["a pen","a pencase"]}, +{"id":"59557","label":"moving control away from vase","template":"Moving [something] away from [something]","placeholders":["control","vase"]}, +{"id":"146676","label":"tilting notebook with eraser on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["notebook","eraser"]}, +{"id":"18485","label":"putting sharpener onto sticky note","template":"Putting [something] onto [something]","placeholders":["sharpener","sticky note"]}, +{"id":"193593","label":"smoking paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["smoking paper"]}, +{"id":"218305","label":"stuffing a sock into a shoe","template":"Stuffing [something] into [something]","placeholders":["a sock","a shoe"]}, +{"id":"99674","label":"showing grasses to the camera","template":"Showing [something] to the camera","placeholders":["grasses"]}, +{"id":"150162","label":"holding a candle over owl statue","template":"Holding [something] over [something]","placeholders":["a candle","owl statue"]}, +{"id":"138355","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"157981","label":"dropping a matchbox next to a pin","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a pin"]}, +{"id":"157784","label":"pretending to sprinkle air onto leg","template":"Pretending to sprinkle air onto [something]","placeholders":["leg"]}, +{"id":"199464","label":"taking pom poms out of a container","template":"Taking [something] out of [something]","placeholders":["pom poms","a container"]}, +{"id":"148753","label":"dropping slipper in front of handbag","template":"Dropping [something] in front of [something]","placeholders":["slipper","handbag"]}, +{"id":"50966","label":"dropping pet bottle in front of feet","template":"Dropping [something] in front of [something]","placeholders":["pet bottle","feet"]}, +{"id":"7716","label":"pushing ink bottle with spring","template":"Pushing [something] with [something]","placeholders":["ink bottle","spring"]}, +{"id":"121159","label":"pretending to sprinkle air onto hair","template":"Pretending to sprinkle air onto [something]","placeholders":["hair"]}, +{"id":"42682","label":"pretending to be tearing credit card","template":"Pretending to be tearing [something that is not tearable]","placeholders":["credit card"]}, +{"id":"24408","label":"wiping sauce off of hummus container","template":"Wiping [something] off of [something]","placeholders":["sauce","hummus container"]}, +{"id":"86525","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"149390","label":"twisting mp4 case","template":"Twisting [something]","placeholders":["mp4 case"]}, +{"id":"73513","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"155721","label":"turning a plastic tub upside down","template":"Turning [something] upside down","placeholders":["a plastic tub"]}, +{"id":"198635","label":"closing pouch","template":"Closing [something]","placeholders":["pouch"]}, +{"id":"161343","label":"pretending to pick a book up","template":"Pretending to pick [something] up","placeholders":["a book"]}, +{"id":"180596","label":"dropping a bag behind a table","template":"Dropping [something] behind [something]","placeholders":["a bag","a table"]}, +{"id":"1451","label":"pretending or failing to wipe paint off of painting","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","painting"]}, +{"id":"136835","label":"bending a book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a book"]}, +{"id":"165649","label":"throwing lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["lighter"]}, +{"id":"5270","label":"dropping pen onto paper","template":"Dropping [something] onto [something]","placeholders":["pen","paper"]}, +{"id":"10295","label":"taking spoon out of cup","template":"Taking [something] out of [something]","placeholders":["spoon","cup"]}, +{"id":"176249","label":"moving pencile up","template":"Moving [something] up","placeholders":["pencile"]}, +{"id":"92699","label":"moving a book up","template":"Moving [something] up","placeholders":["a book"]}, +{"id":"55519","label":"taking bottle from table","template":"Taking [something] from [somewhere]","placeholders":["bottle","table"]}, +{"id":"157253","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"55775","label":"rolling umbrella on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["umbrella"]}, +{"id":"215310","label":"dropping block in front of candle","template":"Dropping [something] in front of [something]","placeholders":["block","candle"]}, +{"id":"202489","label":"putting a can on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a can"]}, +{"id":"144305","label":"touching (without moving) top of toy","template":"Touching (without moving) [part] of [something]","placeholders":["top","toy"]}, +{"id":"195268","label":"holding paper over game","template":"Holding [something] over [something]","placeholders":["paper","game"]}, +{"id":"167135","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"219030","label":"squeezing paper towel","template":"Squeezing [something]","placeholders":["paper towel"]}, +{"id":"147034","label":"pushing belt so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["belt"]}, +{"id":"15987","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"215855","label":"poking a bottle of nail varnish so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bottle of nail varnish"]}, +{"id":"38684","label":"tipping salsa jar over","template":"Tipping [something] over","placeholders":["salsa jar"]}, +{"id":"215751","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"142966","label":"moving purple container up","template":"Moving [something] up","placeholders":["purple container"]}, +{"id":"81665","label":"dropping mouse next to keyboard","template":"Dropping [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"182144","label":"attaching cap to a ballpen","template":"Attaching [something] to [something]","placeholders":["cap","a ballpen"]}, +{"id":"177140","label":"moving moving stone up up","template":"Moving [something] up","placeholders":["moving stone up"]}, +{"id":"87220","label":"opening face cream pack","template":"Opening [something]","placeholders":["face cream pack"]}, +{"id":"187302","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"133017","label":"holding glass next to glass","template":"Holding [something] next to [something]","placeholders":["glass","glass"]}, +{"id":"125814","label":"throwing a lemon candy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a lemon candy"]}, +{"id":"87493","label":"putting laundry into a washing machine","template":"Putting [something] into [something]","placeholders":["laundry","a washing machine"]}, +{"id":"34571","label":"putting skipping rope, scale and stapler on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["skipping rope","scale","stapler"]}, +{"id":"91140","label":"pushing a water bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a water bottle"]}, +{"id":"20830","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"30163","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"204298","label":"taking pendrive from computer table","template":"Taking [something] from [somewhere]","placeholders":["pendrive","computer table"]}, +{"id":"155570","label":"pretending to be tearing cd","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cd"]}, +{"id":"84541","label":"pushing orange so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["orange"]}, +{"id":"71944","label":"moving toilet paper closer to inhaler","template":"Moving [something] closer to [something]","placeholders":["toilet paper","inhaler"]}, +{"id":"208553","label":"holding mobile phone over notebook","template":"Holding [something] over [something]","placeholders":["mobile phone","notebook"]}, +{"id":"113586","label":"pretending to put helmet next to scooter","template":"Pretending to put [something] next to [something]","placeholders":["helmet","scooter"]}, +{"id":"173478","label":"folding shorts","template":"Folding [something]","placeholders":["shorts"]}, +{"id":"108047","label":"holding a lighter next to a phone","template":"Holding [something] next to [something]","placeholders":["a lighter","a phone"]}, +{"id":"204343","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"137288","label":"pushing clip onto phone","template":"Pushing [something] onto [something]","placeholders":["clip","phone"]}, +{"id":"231","label":"holding pen","template":"Holding [something]","placeholders":["pen"]}, +{"id":"65916","label":"tipping pen with book over, so pen falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["pen","book","pen"]}, +{"id":"64948","label":"picking lever up","template":"Picking [something] up","placeholders":["lever"]}, +{"id":"20457","label":"pushing colony bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["colony bottle"]}, +{"id":"24109","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"60442","label":"bending toothbrush stick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothbrush stick"]}, +{"id":"34166","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"14116","label":"tipping pig over","template":"Tipping [something] over","placeholders":["pig"]}, +{"id":"7613","label":"dropping case in front of phone","template":"Dropping [something] in front of [something]","placeholders":["case","phone"]}, +{"id":"155745","label":"folding piece of paper","template":"Folding [something]","placeholders":["piece of paper"]}, +{"id":"64412","label":"hitting jar with glass","template":"Hitting [something] with [something]","placeholders":["jar","glass"]}, +{"id":"134024","label":"throwing wood in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["wood"]}, +{"id":"74892","label":"pretending to put mister on a surface","template":"Pretending to put [something] on a surface","placeholders":["mister"]}, +{"id":"183136","label":"bending paperclip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paperclip"]}, +{"id":"37333","label":"pretending or failing to wipe stain off of shirt","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","shirt"]}, +{"id":"74856","label":"throwing a electric bulb in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a electric bulb"]}, +{"id":"37062","label":"digging ring out of blanket","template":"Digging [something] out of [something]","placeholders":["ring","blanket"]}, +{"id":"64905","label":"putting book, watch and remote on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","watch","remote"]}, +{"id":"106879","label":"showing razor to the camera","template":"Showing [something] to the camera","placeholders":["razor"]}, +{"id":"12056","label":"moving wristwatch down","template":"Moving [something] down","placeholders":["wristwatch"]}, +{"id":"125638","label":"pretending to close a jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a jar"]}, +{"id":"187731","label":"showing bottle on top of stapler","template":"Showing [something] on top of [something]","placeholders":["bottle","stapler"]}, +{"id":"140364","label":"holding a pen behind a pencil case","template":"Holding [something] behind [something]","placeholders":["a pen","a pencil case"]}, +{"id":"144714","label":"showing that pen is inside orange bowl","template":"Showing that [something] is inside [something]","placeholders":["pen","orange bowl"]}, +{"id":"152358","label":"turning a remote upside down","template":"Turning [something] upside down","placeholders":["a remote"]}, +{"id":"179144","label":"pretending or trying and failing to twist calculator","template":"Pretending or trying and failing to twist [something]","placeholders":["calculator"]}, +{"id":"129927","label":"moving box and can away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","can"]}, +{"id":"47482","label":"scooping iced tea mix up with a spoon","template":"Scooping [something] up with [something]","placeholders":["iced tea mix","a spoon"]}, +{"id":"212279","label":"pushing a box from left to right","template":"Pushing [something] from left to right","placeholders":["a box"]}, +{"id":"157166","label":"pushing stapler with tooth brush","template":"Pushing [something] with [something]","placeholders":["stapler","tooth brush"]}, +{"id":"199495","label":"poking prescription so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["prescription"]}, +{"id":"102311","label":"plugging charger into multi-plug","template":"Plugging [something] into [something]","placeholders":["charger","multi-plug"]}, +{"id":"102537","label":"pulling two ends of roller but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["roller"]}, +{"id":"42411","label":"moving sugar closer to coffee","template":"Moving [something] closer to [something]","placeholders":["sugar","coffee"]}, +{"id":"88253","label":"moving remote across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["remote"]}, +{"id":"93859","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"42986","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"99838","label":"pulling cellphone from right to left","template":"Pulling [something] from right to left","placeholders":["cellphone"]}, +{"id":"157299","label":"pretending to put folder onto desk","template":"Pretending to put [something] onto [something]","placeholders":["folder","desk"]}, +{"id":"76629","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"197154","label":"putting a ruler behind a flowerpot","template":"Putting [something] behind [something]","placeholders":["a ruler","a flowerpot"]}, +{"id":"5646","label":"moving perfume bottle and wax jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["perfume bottle","wax jar"]}, +{"id":"165368","label":"tearing sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet of paper"]}, +{"id":"131606","label":"moving carom coin closer to rubber band","template":"Moving [something] closer to [something]","placeholders":["carom coin","rubber band"]}, +{"id":"62189","label":"pushing one tealight candle from left to right","template":"Pushing [something] from left to right","placeholders":["one tealight candle"]}, +{"id":"174873","label":"putting roll of tape next to towel","template":"Putting [something] next to [something]","placeholders":["roll of tape","towel"]}, +{"id":"87468","label":"plugging a plug into a wall socket","template":"Plugging [something] into [something]","placeholders":["a plug","a wall socket"]}, +{"id":"29243","label":"tilting coaster with banana on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["coaster","banana"]}, +{"id":"40842","label":"burying screw in flowerpot","template":"Burying [something] in [something]","placeholders":["screw","flowerpot"]}, +{"id":"188772","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"111019","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"98413","label":"picking keys up","template":"Picking [something] up","placeholders":["keys"]}, +{"id":"114022","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"194162","label":"lifting up one end of paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["paper"]}, +{"id":"25918","label":"pushing box from left to right","template":"Pushing [something] from left to right","placeholders":["box"]}, +{"id":"33342","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"191733","label":"pretending to squeeze tape","template":"Pretending to squeeze [something]","placeholders":["tape"]}, +{"id":"190483","label":"hitting a ball with another ball","template":"Hitting [something] with [something]","placeholders":["a ball","another ball"]}, +{"id":"17384","label":"taking a coin","template":"Taking [one of many similar things on the table]","placeholders":["a coin"]}, +{"id":"112997","label":"pouring grains into a glass jar until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["grains","a glass jar"]}, +{"id":"16498","label":"putting a container upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a container"]}, +{"id":"86156","label":"pretending to take plate from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["plate","shelf"]}, +{"id":"11775","label":"plugging plug into switch board","template":"Plugging [something] into [something]","placeholders":["plug","switch board"]}, +{"id":"172524","label":"stuffing bubble wrap into an envelope","template":"Stuffing [something] into [something]","placeholders":["bubble wrap","an envelope"]}, +{"id":"32443","label":"putting 2 toys onto can","template":"Putting [number of] [something] onto [something]","placeholders":["2","toys","can"]}, +{"id":"163540","label":"pretending to be tearing blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["blanket"]}, +{"id":"199115","label":"taking one screw","template":"Taking [one of many similar things on the table]","placeholders":["one screw"]}, +{"id":"136157","label":"tipping a cup with coffee beans over, so coffee beans falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","coffee beans","coffee beans"]}, +{"id":"131817","label":"pretending to pick dvd case up","template":"Pretending to pick [something] up","placeholders":["dvd case"]}, +{"id":"152384","label":"twisting a piece of cloth","template":"Twisting [something]","placeholders":["a piece of cloth"]}, +{"id":"218744","label":"wiping water off of counter","template":"Wiping [something] off of [something]","placeholders":["water","counter"]}, +{"id":"62471","label":"squeezing a stuffed toy","template":"Squeezing [something]","placeholders":["a stuffed toy"]}, +{"id":"209032","label":"attaching pin to pillow","template":"Attaching [something] to [something]","placeholders":["pin","pillow"]}, +{"id":"212856","label":"putting toy, block and comb on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy","block","comb"]}, +{"id":"196121","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"48416","label":"lifting book with pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","pen"]}, +{"id":"76809","label":"tearing a receipt into two pieces","template":"Tearing [something] into two pieces","placeholders":["a receipt"]}, +{"id":"32563","label":"showing papaya to the camera","template":"Showing [something] to the camera","placeholders":["papaya"]}, +{"id":"85020","label":"moving bottle and can closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","can"]}, +{"id":"213615","label":"putting white badge that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["white badge"]}, +{"id":"163810","label":"throwing marker against wall","template":"Throwing [something] against [something]","placeholders":["marker","wall"]}, +{"id":"191795","label":"throwing a soft toy onto a surface","template":"Throwing [something] onto a surface","placeholders":["a soft toy"]}, +{"id":"171814","label":"tearing rose paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["rose paper"]}, +{"id":"46345","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"171588","label":"throwing a stuffed toy against a wall","template":"Throwing [something] against [something]","placeholders":["a stuffed toy","a wall"]}, +{"id":"220782","label":"pretending to squeeze a slothespin","template":"Pretending to squeeze [something]","placeholders":["a slothespin"]}, +{"id":"47921","label":"pushing a wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a wallet"]}, +{"id":"7372","label":"pretending to put top into container","template":"Pretending to put [something] into [something]","placeholders":["top","container"]}, +{"id":"156230","label":"poking rubber duck so that it falls over","template":"Poking [something] so that it falls over","placeholders":["rubber duck"]}, +{"id":"74608","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"192818","label":"turning the camera left while filming family","template":"Turning the camera left while filming [something]","placeholders":["family"]}, +{"id":"113302","label":"potato colliding with potato and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["potato","potato"]}, +{"id":"130824","label":"bending toothpaste so that it deforms","template":"Bending [something] so that it deforms","placeholders":["toothpaste"]}, +{"id":"58049","label":"twisting (wringing) rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["rag"]}, +{"id":"100820","label":"taking a writing implement","template":"Taking [one of many similar things on the table]","placeholders":["a writing implement"]}, +{"id":"10877","label":"rolling coconut on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["coconut"]}, +{"id":"140340","label":"pushing colorful scarf from left to right","template":"Pushing [something] from left to right","placeholders":["colorful scarf"]}, +{"id":"151894","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"63757","label":"moving light lamp up","template":"Moving [something] up","placeholders":["light lamp"]}, +{"id":"166968","label":"throwing block in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["block"]}, +{"id":"44959","label":"bending pasta until it breaks","template":"Bending [something] until it breaks","placeholders":["pasta"]}, +{"id":"151467","label":"pushing pill bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pill bottle"]}, +{"id":"145865","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"66648","label":"spinning a cup that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a cup"]}, +{"id":"88799","label":"showing laptop next to mobile phone","template":"Showing [something] next to [something]","placeholders":["laptop","mobile phone"]}, +{"id":"70714","label":"moving mouse closer to watch","template":"Moving [something] closer to [something]","placeholders":["mouse","watch"]}, +{"id":"31749","label":"holding mouse over cup","template":"Holding [something] over [something]","placeholders":["mouse","cup"]}, +{"id":"109125","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181356","label":"pushing baking powder from left to right","template":"Pushing [something] from left to right","placeholders":["baking powder"]}, +{"id":"197104","label":"bending instruction booklet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["instruction booklet"]}, +{"id":"106143","label":"moving lid closer to straw","template":"Moving [something] closer to [something]","placeholders":["lid","straw"]}, +{"id":"104402","label":"covering box with blanket","template":"Covering [something] with [something]","placeholders":["box","blanket"]}, +{"id":"8221","label":"lifting up one end of a usb cable adaptor, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a usb cable adaptor"]}, +{"id":"137033","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"43560","label":"taking aa battery","template":"Taking [one of many similar things on the table]","placeholders":["aa battery"]}, +{"id":"210724","label":"pushing ball so it spins","template":"Pushing [something] so it spins","placeholders":["ball"]}, +{"id":"14152","label":"opening a wallet","template":"Opening [something]","placeholders":["a wallet"]}, +{"id":"170067","label":"cat falling like a rock","template":"[Something] falling like a rock","placeholders":["cat"]}, +{"id":"135778","label":"touching (without moving) front of door","template":"Touching (without moving) [part] of [something]","placeholders":["front","door"]}, +{"id":"77546","label":"covering pendrive with green coloured cup","template":"Covering [something] with [something]","placeholders":["pendrive","green coloured cup"]}, +{"id":"25186","label":"putting a biscuit","template":"Putting [something similar to other things that are already on the table]","placeholders":["a biscuit"]}, +{"id":"23358","label":"taking battery out of mug","template":"Taking [something] out of [something]","placeholders":["battery","mug"]}, +{"id":"212827","label":"showing cell phone next to water bottle","template":"Showing [something] next to [something]","placeholders":["cell phone","water bottle"]}, +{"id":"71022","label":"stacking 3 pencil sharpners","template":"Stacking [number of] [something]","placeholders":["3","pencil sharpners"]}, +{"id":"220247","label":"taking one plate","template":"Taking [one of many similar things on the table]","placeholders":["one plate"]}, +{"id":"157617","label":"dropping keyboard next to backpack","template":"Dropping [something] next to [something]","placeholders":["keyboard","backpack"]}, +{"id":"70851","label":"covering clothespin with a tissue","template":"Covering [something] with [something]","placeholders":["clothespin","a tissue"]}, +{"id":"82267","label":"pulling two ends of cleaning cloth but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["cleaning cloth"]}, +{"id":"150705","label":"putting a pill box on a surface","template":"Putting [something] on a surface","placeholders":["a pill box"]}, +{"id":"89877","label":"folding folding kerchief","template":"Folding [something]","placeholders":["folding kerchief"]}, +{"id":"150511","label":"pushing key so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["key"]}, +{"id":"10124","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"179875","label":"moving smart phone down","template":"Moving [something] down","placeholders":["smart phone"]}, +{"id":"160186","label":"plugging phone charger into outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","outlet"]}, +{"id":"82448","label":"moving bottle closer to cup","template":"Moving [something] closer to [something]","placeholders":["bottle","cup"]}, +{"id":"205489","label":"spinning pack of tissue that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pack of tissue"]}, +{"id":"213579","label":"dropping book onto chair","template":"Dropping [something] onto [something]","placeholders":["book","chair"]}, +{"id":"45416","label":"turning the camera right while filming green water bottle","template":"Turning the camera right while filming [something]","placeholders":["green water bottle"]}, +{"id":"109307","label":"pulling orange post-it from left to right","template":"Pulling [something] from left to right","placeholders":["orange post-it"]}, +{"id":"127994","label":"dropping pen onto book","template":"Dropping [something] onto [something]","placeholders":["pen","book"]}, +{"id":"179725","label":"lifting up one end of coaster without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["coaster"]}, +{"id":"48706","label":"putting a pencil, a pen and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pencil","a pen","scissors"]}, +{"id":"40962","label":"covering a pen with a book","template":"Covering [something] with [something]","placeholders":["a pen","a book"]}, +{"id":"216552","label":"showing paper bag on top of purple container","template":"Showing [something] on top of [something]","placeholders":["paper bag","purple container"]}, +{"id":"200180","label":"folding a towel","template":"Folding [something]","placeholders":["a towel"]}, +{"id":"90522","label":"uncovering table","template":"Uncovering [something]","placeholders":["table"]}, +{"id":"162390","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"129263","label":"putting bottle onto bowl","template":"Putting [something] onto [something]","placeholders":["bottle","bowl"]}, +{"id":"88901","label":"trying to bend screwdriver so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["screwdriver"]}, +{"id":"182237","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"166398","label":"attaching cap to pen","template":"Attaching [something] to [something]","placeholders":["cap","pen"]}, +{"id":"213062","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"26972","label":"turning the camera upwards while filming tv","template":"Turning the camera upwards while filming [something]","placeholders":["tv"]}, +{"id":"124781","label":"trying to pour milk into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["milk","cup"]}, +{"id":"72812","label":"pretending to open fridge without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["fridge"]}, +{"id":"196539","label":"poking box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["box"]}, +{"id":"156369","label":"moving banana towards the camera","template":"Moving [something] towards the camera","placeholders":["banana"]}, +{"id":"29717","label":"moving block and toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["block","toy"]}, +{"id":"70290","label":"putting a pen with other pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen with other pens"]}, +{"id":"76510","label":"moving glass and lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","lighter"]}, +{"id":"1317","label":"lifting up one end of duster without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["duster"]}, +{"id":"83377","label":"pretending or failing to wipe ink off of napkin","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","napkin"]}, +{"id":"84961","label":"dropping newspaper behind bag","template":"Dropping [something] behind [something]","placeholders":["newspaper","bag"]}, +{"id":"45719","label":"putting mobile phone next to remote","template":"Putting [something] next to [something]","placeholders":["mobile phone","remote"]}, +{"id":"52267","label":"plugging charger into power strip","template":"Plugging [something] into [something]","placeholders":["charger","power strip"]}, +{"id":"153371","label":"poking magnet clip so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["magnet clip"]}, +{"id":"180197","label":"taking remote control from bed","template":"Taking [something] from [somewhere]","placeholders":["remote control","bed"]}, +{"id":"121124","label":"pretending to squeeze mobile","template":"Pretending to squeeze [something]","placeholders":["mobile"]}, +{"id":"191570","label":"putting car keys on a surface","template":"Putting [something] on a surface","placeholders":["car keys"]}, +{"id":"65762","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"12610","label":"poking glass so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["glass"]}, +{"id":"150143","label":"wiping tea off of a table","template":"Wiping [something] off of [something]","placeholders":["tea","a table"]}, +{"id":"76157","label":"letting a small bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a small bottle"]}, +{"id":"55675","label":"unfolding papers","template":"Unfolding [something]","placeholders":["papers"]}, +{"id":"1488","label":"putting stapler in front of ointment","template":"Putting [something] in front of [something]","placeholders":["stapler","ointment"]}, +{"id":"160196","label":"pretending to pick remote up","template":"Pretending to pick [something] up","placeholders":["remote"]}, +{"id":"217361","label":"uncovering key","template":"Uncovering [something]","placeholders":["key"]}, +{"id":"220191","label":"moving big rock up","template":"Moving [something] up","placeholders":["big rock"]}, +{"id":"150085","label":"pushing a glue bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a glue bottle","scissors"]}, +{"id":"39589","label":"covering a mouse with a sheet of paper","template":"Covering [something] with [something]","placeholders":["a mouse","a sheet of paper"]}, +{"id":"158329","label":"moving a can down","template":"Moving [something] down","placeholders":["a can"]}, +{"id":"85705","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"12467","label":"throwing a slipper","template":"Throwing [something]","placeholders":["a slipper"]}, +{"id":"86201","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"29924","label":"holding glass over mug","template":"Holding [something] over [something]","placeholders":["glass","mug"]}, +{"id":"77020","label":"putting 2 remotes onto tissue","template":"Putting [number of] [something] onto [something]","placeholders":["2","remotes","tissue"]}, +{"id":"218740","label":"trying to bend a lighter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a lighter"]}, +{"id":"219653","label":"holding box over chair","template":"Holding [something] over [something]","placeholders":["box","chair"]}, +{"id":"64456","label":"holding a cup in front of a box","template":"Holding [something] in front of [something]","placeholders":["a cup","a box"]}, +{"id":"39134","label":"putting headphones underneath a bed","template":"Putting [something] underneath [something]","placeholders":["headphones","a bed"]}, +{"id":"86581","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"124215","label":"pretending to pick roll of toilet paper up","template":"Pretending to pick [something] up","placeholders":["roll of toilet paper"]}, +{"id":"55119","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"117763","label":"moving block away from box","template":"Moving [something] away from [something]","placeholders":["block","box"]}, +{"id":"99550","label":"tearing chapati into two pieces","template":"Tearing [something] into two pieces","placeholders":["chapati"]}, +{"id":"102275","label":"covering a box with a napkin","template":"Covering [something] with [something]","placeholders":["a box","a napkin"]}, +{"id":"154564","label":"wiping water off of floor","template":"Wiping [something] off of [something]","placeholders":["water","floor"]}, +{"id":"86353","label":"plugging a plug into the socket to the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","the socket to the wall"]}, +{"id":"135077","label":"putting toothbrush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["toothbrush"]}, +{"id":"84163","label":"cloth falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cloth"]}, +{"id":"192920","label":"holding a ball","template":"Holding [something]","placeholders":["a ball"]}, +{"id":"207303","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"211430","label":"plugging cable into charger","template":"Plugging [something] into [something]","placeholders":["cable","charger"]}, +{"id":"164427","label":"tipping bottle with vitamins over, so vitamins falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["bottle","vitamins","vitamins"]}, +{"id":"204387","label":"spinning bottle spray that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle spray"]}, +{"id":"108193","label":"showing that coffee is inside a mug","template":"Showing that [something] is inside [something]","placeholders":["coffee","a mug"]}, +{"id":"71368","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"8562","label":"moving a box away from a cube","template":"Moving [something] away from [something]","placeholders":["a box","a cube"]}, +{"id":"11244","label":"turning shoe brush upside down","template":"Turning [something] upside down","placeholders":["shoe brush"]}, +{"id":"74229","label":"moving pen and tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","tape"]}, +{"id":"78247","label":"pulling two ends of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a paper"]}, +{"id":"29580","label":"twisting pot holder","template":"Twisting [something]","placeholders":["pot holder"]}, +{"id":"3651","label":"putting shaving brush onto box so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["shaving brush","box"]}, +{"id":"1491","label":"holding comb next to jar","template":"Holding [something] next to [something]","placeholders":["comb","jar"]}, +{"id":"147346","label":"pretending to put nailpolish on a surface","template":"Pretending to put [something] on a surface","placeholders":["nailpolish"]}, +{"id":"162833","label":"putting keys next to bowl","template":"Putting [something] next to [something]","placeholders":["keys","bowl"]}, +{"id":"108670","label":"lifting a spoon with an apple on it","template":"Lifting [something] with [something] on it","placeholders":["a spoon","an apple"]}, +{"id":"111520","label":"squeezing towel","template":"Squeezing [something]","placeholders":["towel"]}, +{"id":"178287","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"52561","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"141032","label":"putting baking powder on a surface","template":"Putting [something] on a surface","placeholders":["baking powder"]}, +{"id":"220233","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"76849","label":"pretending to throw remote control","template":"Pretending to throw [something]","placeholders":["remote control"]}, +{"id":"179648","label":"dropping book next to book","template":"Dropping [something] next to [something]","placeholders":["book","book"]}, +{"id":"192817","label":"pushing a pen off of a table","template":"Pushing [something] off of [something]","placeholders":["a pen","a table"]}, +{"id":"217921","label":"moving hat and shoe so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["hat","shoe"]}, +{"id":"37113","label":"pop bottle colliding with fidget spinner and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pop bottle","fidget spinner"]}, +{"id":"155438","label":"putting a bottle next to an iron","template":"Putting [something] next to [something]","placeholders":["a bottle","an iron"]}, +{"id":"36879","label":"pretending or failing to wipe water off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["water","table"]}, +{"id":"99824","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"60638","label":"taking glass jar from box","template":"Taking [something] from [somewhere]","placeholders":["glass jar","box"]}, +{"id":"20096","label":"putting wooden stick, battery and striker on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wooden stick","battery","striker"]}, +{"id":"119652","label":"showing tyre to the camera","template":"Showing [something] to the camera","placeholders":["tyre"]}, +{"id":"93987","label":"moving cow up","template":"Moving [something] up","placeholders":["cow"]}, +{"id":"161930","label":"pushing stuffed animal from right to left","template":"Pushing [something] from right to left","placeholders":["stuffed animal"]}, +{"id":"77807","label":"pretending to put bar soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["bar soap"]}, +{"id":"46571","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"122043","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"1320","label":"pretending to turn vaporizer upside down","template":"Pretending to turn [something] upside down","placeholders":["vaporizer"]}, +{"id":"62533","label":"tearing bandaids into two pieces","template":"Tearing [something] into two pieces","placeholders":["bandaids"]}, +{"id":"122847","label":"batery colliding with batery and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["batery","batery"]}, +{"id":"212378","label":"moving glas and glas closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glas","glas"]}, +{"id":"150617","label":"poking string so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["string"]}, +{"id":"64089","label":"taking ball","template":"Taking [one of many similar things on the table]","placeholders":["ball"]}, +{"id":"204778","label":"moving scissors away from a box","template":"Moving [something] away from [something]","placeholders":["scissors","a box"]}, +{"id":"98577","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"130956","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"84056","label":"dropping a pack of gum onto a notebook","template":"Dropping [something] onto [something]","placeholders":["a pack of gum","a notebook"]}, +{"id":"47359","label":"pretending to put coin into mug","template":"Pretending to put [something] into [something]","placeholders":["coin","mug"]}, +{"id":"67015","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"59375","label":"poking a stack of envelopes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["envelopes"]}, +{"id":"140370","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"4651","label":"closing tumbler cap","template":"Closing [something]","placeholders":["tumbler cap"]}, +{"id":"213960","label":"pushing a mug so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a mug"]}, +{"id":"138200","label":"dropping keys onto the table","template":"Dropping [something] onto [something]","placeholders":["keys","the table"]}, +{"id":"134949","label":"pulling pink toothbrush case from right to left","template":"Pulling [something] from right to left","placeholders":["pink toothbrush case"]}, +{"id":"73891","label":"pushing mug from right to left","template":"Pushing [something] from right to left","placeholders":["mug"]}, +{"id":"64482","label":"holding remote over desk","template":"Holding [something] over [something]","placeholders":["remote","desk"]}, +{"id":"203672","label":"small paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["small paper"]}, +{"id":"81960","label":"putting tissues and block on the table","template":"Putting [something] and [something] on the table","placeholders":["tissues","block"]}, +{"id":"72154","label":"plugging key into lock but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["key","lock"]}, +{"id":"18389","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"131016","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"88324","label":"pretending to pour tea out of a teapot, but the teapot is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["tea","a teapot","the teapot"]}, +{"id":"132836","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"137811","label":"wiping ac outlet off of paper","template":"Wiping [something] off of [something]","placeholders":["ac outlet","paper"]}, +{"id":"157484","label":"showing cheese packet behind mug","template":"Showing [something] behind [something]","placeholders":["cheese packet","mug"]}, +{"id":"57873","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"182920","label":"uncovering an ipad","template":"Uncovering [something]","placeholders":["an ipad"]}, +{"id":"91634","label":"dropping a shoe brush into a box","template":"Dropping [something] into [something]","placeholders":["a shoe brush","a box"]}, +{"id":"154652","label":"tearing toilet paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["toilet paper"]}, +{"id":"171492","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"117190","label":"plugging cable into tablet","template":"Plugging [something] into [something]","placeholders":["cable","tablet"]}, +{"id":"106432","label":"pushing battery from left to right","template":"Pushing [something] from left to right","placeholders":["battery"]}, +{"id":"7609","label":"lifting dvd box with scotch tape on it","template":"Lifting [something] with [something] on it","placeholders":["dvd box","scotch tape"]}, +{"id":"214306","label":"poking a hole into rice","template":"Poking a hole into [some substance]","placeholders":["rice"]}, +{"id":"213207","label":"hitting a plate with a fork","template":"Hitting [something] with [something]","placeholders":["a plate","a fork"]}, +{"id":"118121","label":"uncovering cd","template":"Uncovering [something]","placeholders":["cd"]}, +{"id":"49808","label":"pushing lighter so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lighter"]}, +{"id":"65119","label":"showing violin next to pillow","template":"Showing [something] next to [something]","placeholders":["violin","pillow"]}, +{"id":"58136","label":"putting glasses next to a watch","template":"Putting [something] next to [something]","placeholders":["glasses","a watch"]}, +{"id":"102030","label":"moving bam box away from the bowl","template":"Moving [something] away from [something]","placeholders":["bam box","the bowl"]}, +{"id":"50015","label":"taking a jar out of a shelf","template":"Taking [something] out of [something]","placeholders":["a jar","a shelf"]}, +{"id":"187387","label":"dropping spectacle box next to orange cup","template":"Dropping [something] next to [something]","placeholders":["spectacle box","orange cup"]}, +{"id":"193365","label":"pulling two ends of a leather piece but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a leather piece"]}, +{"id":"71913","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"47709","label":"spilling water next to a box","template":"Spilling [something] next to [something]","placeholders":["water","a box"]}, +{"id":"217226","label":"putting sponge into bowl","template":"Putting [something] into [something]","placeholders":["sponge","bowl"]}, +{"id":"24902","label":"pulling a watch from left to right","template":"Pulling [something] from left to right","placeholders":["a watch"]}, +{"id":"72854","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"106474","label":"plugging phone charger into electrical outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","electrical outlet"]}, +{"id":"15150","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"94524","label":"holding granola bar","template":"Holding [something]","placeholders":["granola bar"]}, +{"id":"49120","label":"plugging plug into adapter but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","adapter"]}, +{"id":"49832","label":"throwing a tennis ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a tennis ball"]}, +{"id":"116012","label":"putting a shoes that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a shoes"]}, +{"id":"123776","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"140576","label":"plugging charger into wall socket","template":"Plugging [something] into [something]","placeholders":["charger","wall socket"]}, +{"id":"199060","label":"showing apple to the camera","template":"Showing [something] to the camera","placeholders":["apple"]}, +{"id":"140936","label":"lifting can with lemon on it","template":"Lifting [something] with [something] on it","placeholders":["can","lemon"]}, +{"id":"61766","label":"tearing cloth just a little bit","template":"Tearing [something] just a little bit","placeholders":["cloth"]}, +{"id":"78960","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"20655","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"205377","label":"plugging a charging cord into a charging base","template":"Plugging [something] into [something]","placeholders":["a charging cord","a charging base"]}, +{"id":"46469","label":"controller falling like a rock","template":"[Something] falling like a rock","placeholders":["controller"]}, +{"id":"4391","label":"pushing a charger from right to left","template":"Pushing [something] from right to left","placeholders":["a charger"]}, +{"id":"83045","label":"attaching top to kettle","template":"Attaching [something] to [something]","placeholders":["top","kettle"]}, +{"id":"43112","label":"holding comb in front of cup","template":"Holding [something] in front of [something]","placeholders":["comb","cup"]}, +{"id":"76654","label":"stuffing tool into bucket","template":"Stuffing [something] into [something]","placeholders":["tool","bucket"]}, +{"id":"117457","label":"pretending to pick sandal up","template":"Pretending to pick [something] up","placeholders":["sandal"]}, +{"id":"128734","label":"putting hairpin on a surface","template":"Putting [something] on a surface","placeholders":["hairpin"]}, +{"id":"84537","label":"trying but failing to attach a stamp to a shirt because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a stamp","a shirt"]}, +{"id":"143947","label":"pushing brown bracelet from left to right","template":"Pushing [something] from left to right","placeholders":["brown bracelet"]}, +{"id":"86087","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"31940","label":"pretending to put pear into plate","template":"Pretending to put [something] into [something]","placeholders":["pear","plate"]}, +{"id":"199944","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"15603","label":"covering a spoon with an envelope","template":"Covering [something] with [something]","placeholders":["a spoon","an envelope"]}, +{"id":"179661","label":"holding gum next to spray bottle","template":"Holding [something] next to [something]","placeholders":["gum","spray bottle"]}, +{"id":"11123","label":"pouring cream onto a plate","template":"Pouring [something] onto [something]","placeholders":["cream","a plate"]}, +{"id":"168243","label":"pretending to spread air onto a hand","template":"Pretending to spread air onto [something]","placeholders":["a hand"]}, +{"id":"206039","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"114408","label":"poking cigarettes so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cigarettes"]}, +{"id":"147280","label":"rolling a golf ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a golf ball"]}, +{"id":"94943","label":"bending magnet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["magnet"]}, +{"id":"12511","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"74338","label":"stuffing pen into purse","template":"Stuffing [something] into [something]","placeholders":["pen","purse"]}, +{"id":"61042","label":"tearing a cardboard bit just a little bit","template":"Tearing [something] just a little bit","placeholders":["a cardboard bit"]}, +{"id":"18041","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"57484","label":"throwing shirt","template":"Throwing [something]","placeholders":["shirt"]}, +{"id":"155147","label":"poking a hole into dirt","template":"Poking a hole into [something soft]","placeholders":["dirt"]}, +{"id":"192972","label":"turning the camera upwards while filming toy","template":"Turning the camera upwards while filming [something]","placeholders":["toy"]}, +{"id":"117871","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"174259","label":"wiping water off of glass","template":"Wiping [something] off of [something]","placeholders":["water","glass"]}, +{"id":"94238","label":"piling boxes up","template":"Piling [something] up","placeholders":["boxes"]}, +{"id":"7440","label":"taking a ball","template":"Taking [one of many similar things on the table]","placeholders":["a ball"]}, +{"id":"39528","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"215426","label":"moving eye drops across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["eye drops"]}, +{"id":"72727","label":"putting board clip, bolt and chalk on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["board clip","bolt","chalk"]}, +{"id":"211423","label":"showing atm machine to the camera","template":"Showing [something] to the camera","placeholders":["atm machine"]}, +{"id":"105262","label":"pretending to be tearing durable material","template":"Pretending to be tearing [something that is not tearable]","placeholders":["durable material"]}, +{"id":"75045","label":"putting a stone onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a stone"]}, +{"id":"12605","label":"plugging usb cable into laptop","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"113679","label":"pretending to put aim toothpaste on a surface","template":"Pretending to put [something] on a surface","placeholders":["aim toothpaste"]}, +{"id":"73923","label":"putting wallet and harmonica on the table","template":"Putting [something] and [something] on the table","placeholders":["wallet","harmonica"]}, +{"id":"125802","label":"covering hair band with black pouch","template":"Covering [something] with [something]","placeholders":["hair band","black pouch"]}, +{"id":"81501","label":"dropping stuffed animal next to stuffed animal","template":"Dropping [something] next to [something]","placeholders":["stuffed animal","stuffed animal"]}, +{"id":"12833","label":"pretending to put mouse on a surface","template":"Pretending to put [something] on a surface","placeholders":["mouse"]}, +{"id":"215647","label":"dropping a matchbox next to a pencil","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a pencil"]}, +{"id":"118455","label":"holding a stone","template":"Holding [something]","placeholders":["a stone"]}, +{"id":"79253","label":"moving keys and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["keys","phone"]}, +{"id":"154912","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"160354","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"134546","label":"squeezing toy","template":"Squeezing [something]","placeholders":["toy"]}, +{"id":"91162","label":"putting paper into a folder","template":"Putting [something] into [something]","placeholders":["paper","a folder"]}, +{"id":"23873","label":"turning the camera upwards while filming carton box","template":"Turning the camera upwards while filming [something]","placeholders":["carton box"]}, +{"id":"4387","label":"putting a remote into a box","template":"Putting [something] into [something]","placeholders":["a remote","a box"]}, +{"id":"208605","label":"spinning nivea creme so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["nivea creme"]}, +{"id":"62731","label":"putting a toy horse underneath a coffee table","template":"Putting [something] underneath [something]","placeholders":["a toy horse","a coffee table"]}, +{"id":"220085","label":"moving laptop up","template":"Moving [something] up","placeholders":["laptop"]}, +{"id":"162570","label":"pretending to close notepad without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notepad"]}, +{"id":"78814","label":"holding a calculator","template":"Holding [something]","placeholders":["a calculator"]}, +{"id":"138177","label":"moving eye kajal away from pendrive","template":"Moving [something] away from [something]","placeholders":["eye kajal","pendrive"]}, +{"id":"28464","label":"taking pizza cutter","template":"Taking [one of many similar things on the table]","placeholders":["pizza cutter"]}, +{"id":"178743","label":"pretending to pick keys up","template":"Pretending to pick [something] up","placeholders":["keys"]}, +{"id":"102622","label":"holding fork next to toy","template":"Holding [something] next to [something]","placeholders":["fork","toy"]}, +{"id":"86548","label":"piling something up","template":"Piling [something] up","placeholders":["something"]}, +{"id":"188726","label":"moving top of pen drive","template":"Moving [part] of [something]","placeholders":["top","pen drive"]}, +{"id":"108935","label":"holding purse in front of helmet","template":"Holding [something] in front of [something]","placeholders":["purse","helmet"]}, +{"id":"38073","label":"piling novels up","template":"Piling [something] up","placeholders":["novels"]}, +{"id":"190682","label":"showing lipstick behind lighter","template":"Showing [something] behind [something]","placeholders":["lipstick","lighter"]}, +{"id":"116615","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"11177","label":"showing waste basket to the camera","template":"Showing [something] to the camera","placeholders":["waste basket"]}, +{"id":"20864","label":"holding mug behind flower vase","template":"Holding [something] behind [something]","placeholders":["mug","flower vase"]}, +{"id":"150023","label":"pulling a toy from behind of the couch","template":"Pulling [something] from behind of [something]","placeholders":["a toy","the couch"]}, +{"id":"29279","label":"moving left foot and right foot so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["left foot","right foot"]}, +{"id":"2059","label":"red crayon colliding with blue crayon and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["red crayon","blue crayon"]}, +{"id":"40814","label":"throwing ear muffs in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ear muffs"]}, +{"id":"191277","label":"cloth falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cloth"]}, +{"id":"113373","label":"poking remote so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["remote"]}, +{"id":"143113","label":"lifting a surface with lighter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["lighter"]}, +{"id":"130068","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"41779","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"64480","label":"plugging chord into outlet","template":"Plugging [something] into [something]","placeholders":["chord","outlet"]}, +{"id":"103583","label":"turning a bowl upside down","template":"Turning [something] upside down","placeholders":["a bowl"]}, +{"id":"78659","label":"trying to bend trying to bend plastic spray and nothing happens so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["trying to bend plastic spray and nothing happens"]}, +{"id":"120106","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"97834","label":"tilting an index with a quarter on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["an index","a quarter"]}, +{"id":"206945","label":"pretending to put battery into mug","template":"Pretending to put [something] into [something]","placeholders":["battery","mug"]}, +{"id":"150329","label":"putting marble","template":"Putting [something similar to other things that are already on the table]","placeholders":["marble"]}, +{"id":"73312","label":"uncovering cellphone","template":"Uncovering [something]","placeholders":["cellphone"]}, +{"id":"55572","label":"laying toy on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["toy"]}, +{"id":"125324","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"77940","label":"throwing small silver ball","template":"Throwing [something]","placeholders":["small silver ball"]}, +{"id":"28328","label":"lifting dvd with phone on it","template":"Lifting [something] with [something] on it","placeholders":["dvd","phone"]}, +{"id":"159992","label":"a piece of napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of napkin"]}, +{"id":"66067","label":"dropping a peg onto a comb","template":"Dropping [something] onto [something]","placeholders":["a peg","a comb"]}, +{"id":"31109","label":"holding torch behind bottle","template":"Holding [something] behind [something]","placeholders":["torch","bottle"]}, +{"id":"112419","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"188022","label":"pushing granola bar from right to left","template":"Pushing [something] from right to left","placeholders":["granola bar"]}, +{"id":"140180","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"130831","label":"poking a cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a cup"]}, +{"id":"86510","label":"taking paper mat","template":"Taking [one of many similar things on the table]","placeholders":["paper mat"]}, +{"id":"205685","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"69019","label":"putting belt, calculator and lock on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["belt","calculator","lock"]}, +{"id":"90776","label":"throwing powder bottle against soap powder packet","template":"Throwing [something] against [something]","placeholders":["powder bottle","soap powder packet"]}, +{"id":"220385","label":"lifting the razor up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["the razor"]}, +{"id":"154554","label":"spinning lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lighter"]}, +{"id":"40101","label":"moving plate away from the camera","template":"Moving [something] away from the camera","placeholders":["plate"]}, +{"id":"26699","label":"spinning lemon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lemon"]}, +{"id":"48077","label":"putting mugs","template":"Putting [something similar to other things that are already on the table]","placeholders":["mugs"]}, +{"id":"16482","label":"unfolding an envelope","template":"Unfolding [something]","placeholders":["an envelope"]}, +{"id":"186289","label":"letting a pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pen"]}, +{"id":"95431","label":"putting pen into penstand","template":"Putting [something] into [something]","placeholders":["pen","penstand"]}, +{"id":"102620","label":"moving a remote away from a comb","template":"Moving [something] away from [something]","placeholders":["a remote","a comb"]}, +{"id":"72702","label":"throwing banana in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["banana"]}, +{"id":"187808","label":"bending tape measure so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tape measure"]}, +{"id":"175742","label":"pushing a battery from right to left","template":"Pushing [something] from right to left","placeholders":["a battery"]}, +{"id":"11175","label":"putting a spinner next to a box","template":"Putting [something] next to [something]","placeholders":["a spinner","a box"]}, +{"id":"187496","label":"pushing stapler from left to right","template":"Pushing [something] from left to right","placeholders":["stapler"]}, +{"id":"175142","label":"holding a bucket in front of car","template":"Holding [something] in front of [something]","placeholders":["a bucket","car"]}, +{"id":"98604","label":"showing speaker on top of container","template":"Showing [something] on top of [something]","placeholders":["speaker","container"]}, +{"id":"79237","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"75216","label":"taking one of many similar things on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar things on the table"]}, +{"id":"125290","label":"spreading lentiles onto plate","template":"Spreading [something] onto [something]","placeholders":["lentiles","plate"]}, +{"id":"86896","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"116099","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"210441","label":"pushing black pouch bag from right to left","template":"Pushing [something] from right to left","placeholders":["black pouch bag"]}, +{"id":"174303","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"67096","label":"moving hairspray down","template":"Moving [something] down","placeholders":["hairspray"]}, +{"id":"50811","label":"squeezing a beanie","template":"Squeezing [something]","placeholders":["a beanie"]}, +{"id":"183763","label":"poking a water bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a water bottle"]}, +{"id":"47451","label":"tilting a jar with an eraser on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a jar","an eraser"]}, +{"id":"82867","label":"laying a bottle of tool oil on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle of tool oil"]}, +{"id":"60095","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"57553","label":"pretending to put mobile phone on a surface","template":"Pretending to put [something] on a surface","placeholders":["mobile phone"]}, +{"id":"211224","label":"wiping milk off of table","template":"Wiping [something] off of [something]","placeholders":["milk","table"]}, +{"id":"12331","label":"taking measurement spoon out of cupboard","template":"Taking [something] out of [something]","placeholders":["measurement spoon","cupboard"]}, +{"id":"15266","label":"pouring water out of a jar","template":"Pouring [something] out of [something]","placeholders":["water","a jar"]}, +{"id":"182527","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"111236","label":"putting bay leaves upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["bay leaves"]}, +{"id":"79690","label":"lifting up one end of a stick, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a stick"]}, +{"id":"78583","label":"spreading pens onto flat surface","template":"Spreading [something] onto [something]","placeholders":["pens","flat surface"]}, +{"id":"67103","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"35719","label":"pulling two ends of plastic bag so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["plastic bag"]}, +{"id":"213741","label":"folding tea towel","template":"Folding [something]","placeholders":["tea towel"]}, +{"id":"27206","label":"pushing bottle with book","template":"Pushing [something] with [something]","placeholders":["bottle","book"]}, +{"id":"72889","label":"stuffing papper into a cup","template":"Stuffing [something] into [something]","placeholders":["papper","a cup"]}, +{"id":"3413","label":"plugging a charger into a power plug","template":"Plugging [something] into [something]","placeholders":["a charger","a power plug"]}, +{"id":"71778","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"190464","label":"holding bottle over fan","template":"Holding [something] over [something]","placeholders":["bottle","fan"]}, +{"id":"194830","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"55513","label":"dropping a lighter into a beach bucket","template":"Dropping [something] into [something]","placeholders":["a lighter","a beach bucket"]}, +{"id":"82026","label":"sprinkling baking soda onto ground","template":"Sprinkling [something] onto [something]","placeholders":["baking soda","ground"]}, +{"id":"69755","label":"spilling water onto banana","template":"Spilling [something] onto [something]","placeholders":["water","banana"]}, +{"id":"5173","label":"tiger toy colliding with elephant toy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["tiger toy","elephant toy"]}, +{"id":"79717","label":"showing snacks packet to the camera","template":"Showing [something] to the camera","placeholders":["snacks packet"]}, +{"id":"105144","label":"pulling white candle from right to left","template":"Pulling [something] from right to left","placeholders":["white candle"]}, +{"id":"156264","label":"holding bottle behind chair","template":"Holding [something] behind [something]","placeholders":["bottle","chair"]}, +{"id":"91388","label":"pulling two ends of paper towel so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper towel"]}, +{"id":"53175","label":"pushing notebook so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["notebook"]}, +{"id":"201366","label":"uncovering a card","template":"Uncovering [something]","placeholders":["a card"]}, +{"id":"86145","label":"picking a spectacle case up","template":"Picking [something] up","placeholders":["a spectacle case"]}, +{"id":"69735","label":"twisting (wringing) something wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["something"]}, +{"id":"88607","label":"lifting remote up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["remote"]}, +{"id":"65130","label":"moving a wallet up","template":"Moving [something] up","placeholders":["a wallet"]}, +{"id":"105110","label":"pulling knife from behind of monitor","template":"Pulling [something] from behind of [something]","placeholders":["knife","monitor"]}, +{"id":"77274","label":"pushing ball off of table","template":"Pushing [something] off of [something]","placeholders":["ball","table"]}, +{"id":"151324","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"129572","label":"showing a shoe behind a parsley plant","template":"Showing [something] behind [something]","placeholders":["a shoe","a parsley plant"]}, +{"id":"27177","label":"poking pumpkin so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pumpkin"]}, +{"id":"25430","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"108238","label":"holding a remote","template":"Holding [something]","placeholders":["a remote"]}, +{"id":"109237","label":"plugging extension cord into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["extension cord","wall outlet"]}, +{"id":"10977","label":"twisting stopper","template":"Twisting [something]","placeholders":["stopper"]}, +{"id":"158936","label":"pulling pulling power bank from right to left from right to left","template":"Pulling [something] from right to left","placeholders":["pulling power bank from right to left"]}, +{"id":"149424","label":"moving thread down","template":"Moving [something] down","placeholders":["thread"]}, +{"id":"101862","label":"uncovering scissor","template":"Uncovering [something]","placeholders":["scissor"]}, +{"id":"182755","label":"putting sports water bottle and green water bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["sports water bottle","green water bottle"]}, +{"id":"30209","label":"moving a chair across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a chair"]}, +{"id":"185144","label":"putting hair pin","template":"Putting [something similar to other things that are already on the table]","placeholders":["hair pin"]}, +{"id":"162328","label":"squeezing wooden hand grippers","template":"Squeezing [something]","placeholders":["wooden hand grippers"]}, +{"id":"38566","label":"dropping q-tips into a coffee can","template":"Dropping [something] into [something]","placeholders":["q-tips","a coffee can"]}, +{"id":"105268","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"5875","label":"covering mug with cloth","template":"Covering [something] with [something]","placeholders":["mug","cloth"]}, +{"id":"92349","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"188722","label":"moving battery closer to other battery","template":"Moving [something] closer to [something]","placeholders":["battery","other battery"]}, +{"id":"68762","label":"moving jeep away from the camera","template":"Moving [something] away from the camera","placeholders":["jeep"]}, +{"id":"112521","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"111614","label":"showing that eraser is inside plastic case","template":"Showing that [something] is inside [something]","placeholders":["eraser","plastic case"]}, +{"id":"74764","label":"a speaker colliding with a shirt and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a speaker","a shirt"]}, +{"id":"8642","label":"pushing a battery from left to right","template":"Pushing [something] from left to right","placeholders":["a battery"]}, +{"id":"102916","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"110111","label":"tearing post it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["post it note"]}, +{"id":"219234","label":"covering shoe with towel","template":"Covering [something] with [something]","placeholders":["shoe","towel"]}, +{"id":"153618","label":"rolling cloth clip on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cloth clip"]}, +{"id":"123900","label":"lifting towel up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["towel"]}, +{"id":"35399","label":"squeezing a wet sponge","template":"Squeezing [something]","placeholders":["a wet sponge"]}, +{"id":"125277","label":"moving scissors away from a bottle","template":"Moving [something] away from [something]","placeholders":["scissors","a bottle"]}, +{"id":"66247","label":"holding peppermill over painting","template":"Holding [something] over [something]","placeholders":["peppermill","painting"]}, +{"id":"128760","label":"putting 1 cd onto laptop","template":"Putting [number of] [something] onto [something]","placeholders":["1","cd","laptop"]}, +{"id":"22577","label":"dropping pen onto table","template":"Dropping [something] onto [something]","placeholders":["pen","table"]}, +{"id":"32759","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"90552","label":"holding a ball in front of cupboard","template":"Holding [something] in front of [something]","placeholders":["a ball","cupboard"]}, +{"id":"84160","label":"putting lemon into basket","template":"Putting [something] into [something]","placeholders":["lemon","basket"]}, +{"id":"78000","label":"dropping a bottletop onto a box","template":"Dropping [something] onto [something]","placeholders":["a bottletop","a box"]}, +{"id":"201459","label":"opening plastic box","template":"Opening [something]","placeholders":["plastic box"]}, +{"id":"67207","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"209497","label":"showing a teaspoon next to a mug","template":"Showing [something] next to [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"170193","label":"showing a glass behind an apple","template":"Showing [something] behind [something]","placeholders":["a glass","an apple"]}, +{"id":"159921","label":"dropping badminton bat in front of a pair of shoes","template":"Dropping [something] in front of [something]","placeholders":["badminton bat","a pair of shoes"]}, +{"id":"207791","label":"holding a carrot next to the gas cylinder","template":"Holding [something] next to [something]","placeholders":["a carrot","the gas cylinder"]}, +{"id":"145643","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"26291","label":"pushing hair gel bottle with nail paint remover","template":"Pushing [something] with [something]","placeholders":["hair gel bottle","nail paint remover"]}, +{"id":"13464","label":"a remote control falling like a rock","template":"[Something] falling like a rock","placeholders":["a remote control"]}, +{"id":"120363","label":"tearing notebook page into two pieces","template":"Tearing [something] into two pieces","placeholders":["notebook page"]}, +{"id":"219128","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"186913","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"121911","label":"throwing ball against basket","template":"Throwing [something] against [something]","placeholders":["ball","basket"]}, +{"id":"182928","label":"taking a pencil","template":"Taking [one of many similar things on the table]","placeholders":["a pencil"]}, +{"id":"218510","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"62500","label":"rolling a spray can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray can"]}, +{"id":"101473","label":"showing telephone behind glass","template":"Showing [something] behind [something]","placeholders":["telephone","glass"]}, +{"id":"116608","label":"poking a lemon so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a lemon"]}, +{"id":"4636","label":"pushing blanket so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["blanket"]}, +{"id":"169915","label":"lifting ipad with water bottle on it","template":"Lifting [something] with [something] on it","placeholders":["ipad","water bottle"]}, +{"id":"65950","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"73804","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"182831","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"171099","label":"poking butter knife so that it spins around","template":"Poking [something] so that it spins around","placeholders":["butter knife"]}, +{"id":"147533","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"51921","label":"lifting the handle of a lamp up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["the handle of a lamp"]}, +{"id":"129181","label":"putting cup behind canister","template":"Putting [something] behind [something]","placeholders":["cup","canister"]}, +{"id":"178550","label":"moving match box down","template":"Moving [something] down","placeholders":["match box"]}, +{"id":"157759","label":"folding reciept","template":"Folding [something]","placeholders":["reciept"]}, +{"id":"86401","label":"pushing brown case from right to left","template":"Pushing [something] from right to left","placeholders":["brown case"]}, +{"id":"144404","label":"pushing scotch tape so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["scotch tape"]}, +{"id":"30072","label":"lifting up one end of envelope, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["envelope"]}, +{"id":"152154","label":"pretending or failing to wipe something off of something","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["something","something"]}, +{"id":"22984","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"32294","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"148793","label":"holding helmet","template":"Holding [something]","placeholders":["helmet"]}, +{"id":"198150","label":"moving toy duck and plastic flower away from each other","template":"Moving [something] and [something] away from each other","placeholders":["toy duck","plastic flower"]}, +{"id":"89166","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"5248","label":"lifting a candle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a candle"]}, +{"id":"208314","label":"piling felt pen up","template":"Piling [something] up","placeholders":["felt pen"]}, +{"id":"81098","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"73896","label":"pretending to squeeze a block","template":"Pretending to squeeze [something]","placeholders":["a block"]}, +{"id":"171081","label":"putting clock in front of cup","template":"Putting [something] in front of [something]","placeholders":["clock","cup"]}, +{"id":"121504","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"75481","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"101681","label":"putting 6 dog treats onto chopping board","template":"Putting [number of] [something] onto [something]","placeholders":["6","dog treats","chopping board"]}, +{"id":"213334","label":"moving punching machine up","template":"Moving [something] up","placeholders":["punching machine"]}, +{"id":"184423","label":"dropping a comb next to a peg","template":"Dropping [something] next to [something]","placeholders":["a comb","a peg"]}, +{"id":"55398","label":"poking a stack of clementines without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["clementines"]}, +{"id":"196954","label":"taking toy out of box","template":"Taking [something] out of [something]","placeholders":["toy","box"]}, +{"id":"5880","label":"moving a playstation controller down","template":"Moving [something] down","placeholders":["a playstation controller"]}, +{"id":"42768","label":"holding black pen next to orange kindle","template":"Holding [something] next to [something]","placeholders":["black pen","orange kindle"]}, +{"id":"14270","label":"tearing sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet of paper"]}, +{"id":"18366","label":"bending envelope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["envelope"]}, +{"id":"167596","label":"tearing plastic bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["plastic bag"]}, +{"id":"41450","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"92391","label":"holding a shoe in front of an ipad","template":"Holding [something] in front of [something]","placeholders":["a shoe","an ipad"]}, +{"id":"134471","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"89099","label":"pulling chopsticks out of package","template":"Pulling [something] out of [something]","placeholders":["chopsticks","package"]}, +{"id":"88732","label":"putting phone underneath mug","template":"Putting [something] underneath [something]","placeholders":["phone","mug"]}, +{"id":"24394","label":"taking pencil out of cup","template":"Taking [something] out of [something]","placeholders":["pencil","cup"]}, +{"id":"81255","label":"pulling two ends of a charger so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a charger"]}, +{"id":"131403","label":"pushing medical box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["medical box"]}, +{"id":"197689","label":"pretending to sprinkle air onto something","template":"Pretending to sprinkle air onto [something]","placeholders":["something"]}, +{"id":"143509","label":"pouring koolaid into a bowl","template":"Pouring [something] into [something]","placeholders":["koolaid","a bowl"]}, +{"id":"81395","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"29472","label":"putting felt pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["felt pen"]}, +{"id":"25938","label":"moving notepad across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["notepad"]}, +{"id":"85169","label":"putting a woollen yarn into a box","template":"Putting [something] into [something]","placeholders":["a woollen yarn","a box"]}, +{"id":"161027","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"81730","label":"holding cards over timepiece","template":"Holding [something] over [something]","placeholders":["cards","timepiece"]}, +{"id":"100458","label":"taking plate from desk","template":"Taking [something] from [somewhere]","placeholders":["plate","desk"]}, +{"id":"129432","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"89825","label":"pretending to put lid onto cup","template":"Pretending to put [something] onto [something]","placeholders":["lid","cup"]}, +{"id":"195005","label":"picking a spoon up","template":"Picking [something] up","placeholders":["a spoon"]}, +{"id":"176329","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"217021","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"94382","label":"showing ruler next to notebook","template":"Showing [something] next to [something]","placeholders":["ruler","notebook"]}, +{"id":"118393","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"155569","label":"showing a photo of a mandala to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a mandala"]}, +{"id":"82162","label":"throwing flashdisk","template":"Throwing [something]","placeholders":["flashdisk"]}, +{"id":"176188","label":"spinning top toy that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["top toy"]}, +{"id":"79168","label":"moving a key away from a pen","template":"Moving [something] away from [something]","placeholders":["a key","a pen"]}, +{"id":"155824","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"83895","label":"dropping book onto books","template":"Dropping [something] onto [something]","placeholders":["book","books"]}, +{"id":"214793","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"112092","label":"showing an angel statue next to a candle","template":"Showing [something] next to [something]","placeholders":["an angel statue","a candle"]}, +{"id":"54367","label":"poking a steel container so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a steel container"]}, +{"id":"16243","label":"pushing glue stick so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["glue stick"]}, +{"id":"175714","label":"pretending to poke bracelet","template":"Pretending to poke [something]","placeholders":["bracelet"]}, +{"id":"124261","label":"throwing tissues","template":"Throwing [something]","placeholders":["tissues"]}, +{"id":"130837","label":"moving box closer to can","template":"Moving [something] closer to [something]","placeholders":["box","can"]}, +{"id":"35183","label":"covering tv remote with towel","template":"Covering [something] with [something]","placeholders":["tv remote","towel"]}, +{"id":"125402","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"207773","label":"showing a vase of flowers next to a lemon","template":"Showing [something] next to [something]","placeholders":["a vase of flowers","a lemon"]}, +{"id":"127248","label":"turning a card upside down","template":"Turning [something] upside down","placeholders":["a card"]}, +{"id":"64912","label":"pouring water out of glass","template":"Pouring [something] out of [something]","placeholders":["water","glass"]}, +{"id":"81179","label":"showing white toy car on top of red pouch","template":"Showing [something] on top of [something]","placeholders":["white toy car","red pouch"]}, +{"id":"165442","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"175805","label":"spinning paint tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint tube"]}, +{"id":"99945","label":"turning box upside down","template":"Turning [something] upside down","placeholders":["box"]}, +{"id":"4120","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"108867","label":"squeezing plastic eyeball","template":"Squeezing [something]","placeholders":["plastic eyeball"]}, +{"id":"208950","label":"plugging toaster into socket","template":"Plugging [something] into [something]","placeholders":["toaster","socket"]}, +{"id":"158909","label":"plugging a power cord into a laptop","template":"Plugging [something] into [something]","placeholders":["a power cord","a laptop"]}, +{"id":"124393","label":"taking documents out of bag","template":"Taking [something] out of [something]","placeholders":["documents","bag"]}, +{"id":"188937","label":"picking headphones up","template":"Picking [something] up","placeholders":["headphones"]}, +{"id":"10473","label":"turning the camera left while filming banana","template":"Turning the camera left while filming [something]","placeholders":["banana"]}, +{"id":"45522","label":"moving red spoon away from the camera","template":"Moving [something] away from the camera","placeholders":["red spoon"]}, +{"id":"60361","label":"lifting up one end of cloth without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["cloth"]}, +{"id":"74604","label":"plugging a charger into a plug","template":"Plugging [something] into [something]","placeholders":["a charger","a plug"]}, +{"id":"100021","label":"showing toy next to box","template":"Showing [something] next to [something]","placeholders":["toy","box"]}, +{"id":"107990","label":"laying red cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["red cup"]}, +{"id":"34047","label":"covering toothbrush with notebook","template":"Covering [something] with [something]","placeholders":["toothbrush","notebook"]}, +{"id":"121487","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"101117","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"214149","label":"putting tissue box on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["tissue box","table"]}, +{"id":"203721","label":"dropping bottle next to kendama","template":"Dropping [something] next to [something]","placeholders":["bottle","kendama"]}, +{"id":"69439","label":"wiping water off of a mirror","template":"Wiping [something] off of [something]","placeholders":["water","a mirror"]}, +{"id":"29191","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"32741","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"53592","label":"moving basketball down","template":"Moving [something] down","placeholders":["basketball"]}, +{"id":"89750","label":"putting adaptor that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["adaptor"]}, +{"id":"113329","label":"taking a book from a pile of books","template":"Taking [one of many similar things on the table]","placeholders":["a book from a pile of books"]}, +{"id":"69350","label":"small tin falling like a rock","template":"[Something] falling like a rock","placeholders":["small tin"]}, +{"id":"113626","label":"holding paper over scissors","template":"Holding [something] over [something]","placeholders":["paper","scissors"]}, +{"id":"109268","label":"lifting brush with paper on it","template":"Lifting [something] with [something] on it","placeholders":["brush","paper"]}, +{"id":"16749","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"193403","label":"putting a lunchbox behind a computer","template":"Putting [something] behind [something]","placeholders":["a lunchbox","a computer"]}, +{"id":"39205","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"179673","label":"poking candle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["candle"]}, +{"id":"162861","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"177991","label":"unfolding money","template":"Unfolding [something]","placeholders":["money"]}, +{"id":"93699","label":"holding tablet box over cookie box","template":"Holding [something] over [something]","placeholders":["tablet box","cookie box"]}, +{"id":"173426","label":"putting selfie stick behind wooden box","template":"Putting [something] behind [something]","placeholders":["selfie stick","wooden box"]}, +{"id":"42592","label":"showing that water is inside the brita pitcher","template":"Showing that [something] is inside [something]","placeholders":["water","the brita pitcher"]}, +{"id":"100579","label":"putting mug in front of play-doh","template":"Putting [something] in front of [something]","placeholders":["mug","play-doh"]}, +{"id":"213168","label":"covering remote control with hand","template":"Covering [something] with [something]","placeholders":["remote control","hand"]}, +{"id":"5863","label":"pretending to squeeze pillow","template":"Pretending to squeeze [something]","placeholders":["pillow"]}, +{"id":"36308","label":"stuffing pant into bag","template":"Stuffing [something] into [something]","placeholders":["pant","bag"]}, +{"id":"201813","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"84441","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"46997","label":"putting razor blade next to yellowbook","template":"Putting [something] next to [something]","placeholders":["razor blade","yellowbook"]}, +{"id":"195136","label":"approaching toy with your camera","template":"Approaching [something] with your camera","placeholders":["toy"]}, +{"id":"131851","label":"holding keys behind christmas tree","template":"Holding [something] behind [something]","placeholders":["keys","christmas tree"]}, +{"id":"145503","label":"pushing cup off of table","template":"Pushing [something] off of [something]","placeholders":["cup","table"]}, +{"id":"184810","label":"touching (without moving) lid of box","template":"Touching (without moving) [part] of [something]","placeholders":["lid","box"]}, +{"id":"122039","label":"holding a bottle in front of a hand weight","template":"Holding [something] in front of [something]","placeholders":["a bottle","a hand weight"]}, +{"id":"139652","label":"pushing a box with a book","template":"Pushing [something] with [something]","placeholders":["a box","a book"]}, +{"id":"99304","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"157086","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"64685","label":"putting a cup in front of a spoon","template":"Putting [something] in front of [something]","placeholders":["a cup","a spoon"]}, +{"id":"129940","label":"turning a pillow upside down","template":"Turning [something] upside down","placeholders":["a pillow"]}, +{"id":"43904","label":"putting a remote","template":"Putting [something similar to other things that are already on the table]","placeholders":["a remote"]}, +{"id":"49552","label":"piling envelopes up","template":"Piling [something] up","placeholders":["envelopes"]}, +{"id":"211632","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"22700","label":"pulling two ends of a thread so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a thread"]}, +{"id":"28815","label":"taking one spoon from many spoons on the table","template":"Taking [one of many similar things on the table]","placeholders":["one spoon from many spoons on the table"]}, +{"id":"46642","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"98886","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"45340","label":"telcom powder box falling like a rock","template":"[Something] falling like a rock","placeholders":["telcom powder box"]}, +{"id":"72298","label":"taking shoes from floor","template":"Taking [something] from [somewhere]","placeholders":["shoes","floor"]}, +{"id":"52971","label":"pushing aim toothpaste from right to left","template":"Pushing [something] from right to left","placeholders":["aim toothpaste"]}, +{"id":"155511","label":"covering an electric fan with a towel","template":"Covering [something] with [something]","placeholders":["an electric fan","a towel"]}, +{"id":"72734","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"75183","label":"pushing a wrist watch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a wrist watch"]}, +{"id":"193863","label":"covering a can with a basket","template":"Covering [something] with [something]","placeholders":["a can","a basket"]}, +{"id":"211354","label":"lipstick colliding with another lipstick and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["lipstick","another lipstick"]}, +{"id":"64794","label":"pushing bottle with bowl","template":"Pushing [something] with [something]","placeholders":["bottle","bowl"]}, +{"id":"56120","label":"stacking 3 book","template":"Stacking [number of] [something]","placeholders":["3","book"]}, +{"id":"107138","label":"closing tin","template":"Closing [something]","placeholders":["tin"]}, +{"id":"131342","label":"covering bottle with teatowel","template":"Covering [something] with [something]","placeholders":["bottle","teatowel"]}, +{"id":"144529","label":"showing that mug is empty","template":"Showing that [something] is empty","placeholders":["mug"]}, +{"id":"206183","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"192642","label":"taking jar out of box","template":"Taking [something] out of [something]","placeholders":["jar","box"]}, +{"id":"146799","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"152732","label":"pretending to take candle from mantle","template":"Pretending to take [something] from [somewhere]","placeholders":["candle","mantle"]}, +{"id":"90618","label":"moving calculator away from box","template":"Moving [something] away from [something]","placeholders":["calculator","box"]}, +{"id":"112522","label":"lifting remote control up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["remote control"]}, +{"id":"130003","label":"putting water bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["water bottle"]}, +{"id":"121225","label":"dropping pill bottle into sink","template":"Dropping [something] into [something]","placeholders":["pill bottle","sink"]}, +{"id":"24132","label":"piling cups up","template":"Piling [something] up","placeholders":["cups"]}, +{"id":"183163","label":"covering cork with hat","template":"Covering [something] with [something]","placeholders":["cork","hat"]}, +{"id":"117177","label":"holding plate over helmet","template":"Holding [something] over [something]","placeholders":["plate","helmet"]}, +{"id":"65191","label":"dropping a coin next to a belt","template":"Dropping [something] next to [something]","placeholders":["a coin","a belt"]}, +{"id":"42556","label":"pulling door from left to right","template":"Pulling [something] from left to right","placeholders":["door"]}, +{"id":"188962","label":"trying but failing to attach a comb to a book because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a comb","a book"]}, +{"id":"157256","label":"bending plastic card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["plastic card"]}, +{"id":"196501","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"126786","label":"lifting writing pad with papers on it","template":"Lifting [something] with [something] on it","placeholders":["writing pad","papers"]}, +{"id":"29281","label":"letting a spool of thread roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a spool of thread"]}, +{"id":"8703","label":"throwing nose plunger","template":"Throwing [something]","placeholders":["nose plunger"]}, +{"id":"44812","label":"moving candle and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["candle","pen"]}, +{"id":"52135","label":"trying but failing to attach a bag to chair because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a bag","chair"]}, +{"id":"209457","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"50157","label":"pretending to take remote out of box","template":"Pretending to take [something] out of [something]","placeholders":["remote","box"]}, +{"id":"98091","label":"holding letter over calculater","template":"Holding [something] over [something]","placeholders":["letter","calculater"]}, +{"id":"124435","label":"pushing glue from left to right","template":"Pushing [something] from left to right","placeholders":["glue"]}, +{"id":"88126","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"10695","label":"banknote falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["banknote"]}, +{"id":"190808","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"112714","label":"pretending to close the bathroom cabinet without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["the bathroom cabinet"]}, +{"id":"43464","label":"pretending to pick pincer up","template":"Pretending to pick [something] up","placeholders":["pincer"]}, +{"id":"75125","label":"lifting notebook with glass on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","glass"]}, +{"id":"126191","label":"showing wash basin to the camera","template":"Showing [something] to the camera","placeholders":["wash basin"]}, +{"id":"8210","label":"putting 1 envelope onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","envelope","chair"]}, +{"id":"6695","label":"holding water botle over purse","template":"Holding [something] over [something]","placeholders":["water botle","purse"]}, +{"id":"142911","label":"pretending to put a sandle underneath a bed","template":"Pretending to put [something] underneath [something]","placeholders":["a sandle","a bed"]}, +{"id":"79932","label":"putting a bottle in front of eraser","template":"Putting [something] in front of [something]","placeholders":["a bottle","eraser"]}, +{"id":"3568","label":"pretending to put pencils into a box","template":"Pretending to put [something] into [something]","placeholders":["pencils","a box"]}, +{"id":"124285","label":"lifting an apple up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["an apple"]}, +{"id":"166428","label":"stuffing a book into a purse","template":"Stuffing [something] into [something]","placeholders":["a book","a purse"]}, +{"id":"2123","label":"moving sandals towards the camera","template":"Moving [something] towards the camera","placeholders":["sandals"]}, +{"id":"199577","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"166634","label":"pushing canned food from left to right","template":"Pushing [something] from left to right","placeholders":["canned food"]}, +{"id":"72016","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"209928","label":"attaching charger to phone","template":"Attaching [something] to [something]","placeholders":["charger","phone"]}, +{"id":"94199","label":"piling cards up","template":"Piling [something] up","placeholders":["cards"]}, +{"id":"205741","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"133448","label":"pretending to put cup into cup holder","template":"Pretending to put [something] into [something]","placeholders":["cup","cup holder"]}, +{"id":"164064","label":"holding a measuring tape over a helmet","template":"Holding [something] over [something]","placeholders":["a measuring tape","a helmet"]}, +{"id":"188398","label":"pulling a pencil case from left to right","template":"Pulling [something] from left to right","placeholders":["a pencil case"]}, +{"id":"60296","label":"holding cell phone next to laptop","template":"Holding [something] next to [something]","placeholders":["cell phone","laptop"]}, +{"id":"131451","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"198927","label":"holding notebook in front of window","template":"Holding [something] in front of [something]","placeholders":["notebook","window"]}, +{"id":"82704","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"115564","label":"moving lid of cloves organizer","template":"Moving [part] of [something]","placeholders":["lid","cloves organizer"]}, +{"id":"61998","label":"tipping gallon jug over","template":"Tipping [something] over","placeholders":["gallon jug"]}, +{"id":"174255","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"162332","label":"turning a coin upside down","template":"Turning [something] upside down","placeholders":["a coin"]}, +{"id":"113012","label":"pretending or failing to wipe stain off of surface","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","surface"]}, +{"id":"106715","label":"pushing coaster so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["coaster"]}, +{"id":"220483","label":"touching (without moving) phone of the folder","template":"Touching (without moving) [part] of [something]","placeholders":["phone","the folder"]}, +{"id":"219740","label":"pretending to throw piggy bank","template":"Pretending to throw [something]","placeholders":["piggy bank"]}, +{"id":"5417","label":"picking bottle up","template":"Picking [something] up","placeholders":["bottle"]}, +{"id":"190898","label":"digging a mallet out of stack of gravel","template":"Digging [something] out of [something]","placeholders":["a mallet","stack of gravel"]}, +{"id":"58097","label":"plugging a cord into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","a phone"]}, +{"id":"193976","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"177885","label":"putting fluorescent light bulb behind mug","template":"Putting [something] behind [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"73758","label":"taking a screw away from many screws","template":"Taking [one of many similar things on the table]","placeholders":["a screw away from many screws"]}, +{"id":"87192","label":"moving remote controller down","template":"Moving [something] down","placeholders":["remote controller"]}, +{"id":"74408","label":"lifting up one end of envelope without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["envelope"]}, +{"id":"119129","label":"showing cup behind something","template":"Showing [something] behind [something]","placeholders":["cup","something"]}, +{"id":"216489","label":"lifting figurine up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["figurine"]}, +{"id":"35846","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"178399","label":"plugging headphone into mobilephone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphone","mobilephone"]}, +{"id":"129562","label":"lifting cell phone with marker on it","template":"Lifting [something] with [something] on it","placeholders":["cell phone","marker"]}, +{"id":"139366","label":"spinning candy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["candy"]}, +{"id":"115330","label":"holding shoe next to nail polish","template":"Holding [something] next to [something]","placeholders":["shoe","nail polish"]}, +{"id":"106483","label":"wiping ground tea off of table","template":"Wiping [something] off of [something]","placeholders":["ground tea","table"]}, +{"id":"85315","label":"pretending to turn a glass bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass bottle"]}, +{"id":"75967","label":"putting sticky note in front of sharpener","template":"Putting [something] in front of [something]","placeholders":["sticky note","sharpener"]}, +{"id":"187835","label":"plugging guitar cable into amplifier but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["guitar cable","amplifier"]}, +{"id":"83464","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"167391","label":"lifting up one end of paper without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["paper"]}, +{"id":"106134","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"110665","label":"holding pen in front of bottle","template":"Holding [something] in front of [something]","placeholders":["pen","bottle"]}, +{"id":"192714","label":"lifting knife with soap on it","template":"Lifting [something] with [something] on it","placeholders":["knife","soap"]}, +{"id":"37976","label":"moving vape closer to wallet","template":"Moving [something] closer to [something]","placeholders":["vape","wallet"]}, +{"id":"92239","label":"pretending to poke hat","template":"Pretending to poke [something]","placeholders":["hat"]}, +{"id":"191233","label":"poking tape measure so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tape measure"]}, +{"id":"171527","label":"pouring water into jar","template":"Pouring [something] into [something]","placeholders":["water","jar"]}, +{"id":"32578","label":"scooping puzzle piece up with hand","template":"Scooping [something] up with [something]","placeholders":["puzzle piece","hand"]}, +{"id":"84921","label":"putting a usb stick into a plastic box","template":"Putting [something] into [something]","placeholders":["a usb stick","a plastic box"]}, +{"id":"53348","label":"battery falling like a rock","template":"[Something] falling like a rock","placeholders":["battery"]}, +{"id":"65018","label":"pretending to put water bottle into bowl","template":"Pretending to put [something] into [something]","placeholders":["water bottle","bowl"]}, +{"id":"171369","label":"pretending to put chalk on a surface","template":"Pretending to put [something] on a surface","placeholders":["chalk"]}, +{"id":"200047","label":"showing that cooler is empty","template":"Showing that [something] is empty","placeholders":["cooler"]}, +{"id":"25072","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"61220","label":"dropping charger behind watch","template":"Dropping [something] behind [something]","placeholders":["charger","watch"]}, +{"id":"173043","label":"covering toy with bowl","template":"Covering [something] with [something]","placeholders":["toy","bowl"]}, +{"id":"33742","label":"picking a shoe up","template":"Picking [something] up","placeholders":["a shoe"]}, +{"id":"2355","label":"spilling water onto cup","template":"Spilling [something] onto [something]","placeholders":["water","cup"]}, +{"id":"2600","label":"rolling powerbank on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["powerbank"]}, +{"id":"74509","label":"sprinkling cleaning powder onto a bathtub","template":"Sprinkling [something] onto [something]","placeholders":["cleaning powder","a bathtub"]}, +{"id":"58958","label":"putting spice with spices","template":"Putting [something similar to other things that are already on the table]","placeholders":["spice with spices"]}, +{"id":"32629","label":"lifting a pineapple up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pineapple"]}, +{"id":"84116","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"157596","label":"tilting lid with chalk on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["lid","chalk"]}, +{"id":"80553","label":"throwing a picture onto a surface","template":"Throwing [something] onto a surface","placeholders":["a picture"]}, +{"id":"40159","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"45616","label":"pretending to close a shoebox without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a shoebox"]}, +{"id":"167750","label":"letting guava roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["guava"]}, +{"id":"127307","label":"pushing red booklet from right to left","template":"Pushing [something] from right to left","placeholders":["red booklet"]}, +{"id":"208090","label":"taking a grape out of a small bag","template":"Taking [something] out of [something]","placeholders":["a grape","a small bag"]}, +{"id":"36247","label":"throwing scissors against wall","template":"Throwing [something] against [something]","placeholders":["scissors","wall"]}, +{"id":"26814","label":"showing chair to the camera","template":"Showing [something] to the camera","placeholders":["chair"]}, +{"id":"44068","label":"putting a hanky that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a hanky"]}, +{"id":"170218","label":"pretending to be tearing thick envelope","template":"Pretending to be tearing [something that is not tearable]","placeholders":["thick envelope"]}, +{"id":"177716","label":"moving pick and scissor away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pick","scissor"]}, +{"id":"199243","label":"pretending or failing to wipe paint off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","chair"]}, +{"id":"84082","label":"pretending to close a refrigerator without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a refrigerator"]}, +{"id":"12128","label":"putting a pencil beetween others","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pencil beetween others"]}, +{"id":"33359","label":"putting plastic container that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["plastic container"]}, +{"id":"75489","label":"stuffing jacket into bag","template":"Stuffing [something] into [something]","placeholders":["jacket","bag"]}, +{"id":"30095","label":"lifting book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["book"]}, +{"id":"112843","label":"holding glass behind ashtray","template":"Holding [something] behind [something]","placeholders":["glass","ashtray"]}, +{"id":"6016","label":"pretending to be tearing hand towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["hand towel"]}, +{"id":"138952","label":"poking tape so that it falls over","template":"Poking [something] so that it falls over","placeholders":["tape"]}, +{"id":"108023","label":"twisting the lid on a bottle","template":"Twisting [something]","placeholders":["the lid on a bottle"]}, +{"id":"12475","label":"pretending to put a mallet next to a scotch roll","template":"Pretending to put [something] next to [something]","placeholders":["a mallet","a scotch roll"]}, +{"id":"115590","label":"glasses box colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["glasses box","bottle"]}, +{"id":"137925","label":"taking pen from stool","template":"Taking [something] from [somewhere]","placeholders":["pen","stool"]}, +{"id":"204696","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"3506","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"82786","label":"holding phone in front of face","template":"Holding [something] in front of [something]","placeholders":["phone","face"]}, +{"id":"148378","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"2533","label":"moving book closer to remotes","template":"Moving [something] closer to [something]","placeholders":["book","remotes"]}, +{"id":"5756","label":"stuffing an encyclopedia into a shelf","template":"Stuffing [something] into [something]","placeholders":["an encyclopedia","a shelf"]}, +{"id":"30622","label":"putting 4 colour chalks onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["4","colour chalks","diary"]}, +{"id":"104891","label":"putting soda can","template":"Putting [something similar to other things that are already on the table]","placeholders":["soda can"]}, +{"id":"131678","label":"putting pens together","template":"Putting [something similar to other things that are already on the table]","placeholders":["pens together"]}, +{"id":"123682","label":"spinning a multitool that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a multitool"]}, +{"id":"138321","label":"pulling black disc case from left to right","template":"Pulling [something] from left to right","placeholders":["black disc case"]}, +{"id":"41513","label":"removing tablecloth, revealing comb behind","template":"Removing [something], revealing [something] behind","placeholders":["tablecloth","comb"]}, +{"id":"196654","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"167326","label":"taking lipstick","template":"Taking [one of many similar things on the table]","placeholders":["lipstick"]}, +{"id":"187530","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"89223","label":"poking a coffee cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a coffee cup"]}, +{"id":"185229","label":"spinning deodorant spray so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["deodorant spray"]}, +{"id":"52438","label":"moving bowl closer to sunglasses","template":"Moving [something] closer to [something]","placeholders":["bowl","sunglasses"]}, +{"id":"152718","label":"putting tape onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["tape"]}, +{"id":"63350","label":"putting lid and wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["lid","wallet"]}, +{"id":"149129","label":"trying to bend phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["phone"]}, +{"id":"219489","label":"opening letter envelope","template":"Opening [something]","placeholders":["letter envelope"]}, +{"id":"75316","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"150304","label":"plugging electrical adaptor into electrical socket","template":"Plugging [something] into [something]","placeholders":["electrical adaptor","electrical socket"]}, +{"id":"128172","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"69583","label":"opening the container","template":"Opening [something]","placeholders":["the container"]}, +{"id":"15872","label":"squeezing a hand cream","template":"Squeezing [something]","placeholders":["a hand cream"]}, +{"id":"78191","label":"putting toys into a bag","template":"Putting [something] into [something]","placeholders":["toys","a bag"]}, +{"id":"43065","label":"putting black play cards on a surface","template":"Putting [something] on a surface","placeholders":["black play cards"]}, +{"id":"138974","label":"pushing a wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a wallet"]}, +{"id":"213679","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"75252","label":"plugging a cablle into a laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cablle","a laptop"]}, +{"id":"109198","label":"dropping tube in front of bed","template":"Dropping [something] in front of [something]","placeholders":["tube","bed"]}, +{"id":"24335","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"4077","label":"unfolding something","template":"Unfolding [something]","placeholders":["something"]}, +{"id":"165379","label":"pretending to turn a beer can upside down","template":"Pretending to turn [something] upside down","placeholders":["a beer can"]}, +{"id":"122388","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"15970","label":"turning wallet upside down","template":"Turning [something] upside down","placeholders":["wallet"]}, +{"id":"18531","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"126702","label":"moving pen and pen so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["pen","pen"]}, +{"id":"133085","label":"pretending to put small book on a surface","template":"Pretending to put [something] on a surface","placeholders":["small book"]}, +{"id":"213483","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"113120","label":"moving red teacup and white teacup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["red teacup","white teacup"]}, +{"id":"161450","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"26544","label":"tilting tape with watch on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["tape","watch"]}, +{"id":"78467","label":"spinning a full water bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a full water bottle"]}, +{"id":"32018","label":"hitting pen with marker","template":"Hitting [something] with [something]","placeholders":["pen","marker"]}, +{"id":"131183","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"108464","label":"pulling blanket from right to left","template":"Pulling [something] from right to left","placeholders":["blanket"]}, +{"id":"75326","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"34155","label":"pretending or failing to wipe smudge off of sunglasses","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["smudge","sunglasses"]}, +{"id":"71929","label":"pushing wrist watch from left to right","template":"Pushing [something] from left to right","placeholders":["wrist watch"]}, +{"id":"34343","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"100621","label":"letting pencil cell roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil cell"]}, +{"id":"143502","label":"pretending to squeeze a lemon","template":"Pretending to squeeze [something]","placeholders":["a lemon"]}, +{"id":"65876","label":"showing earphone to the camera","template":"Showing [something] to the camera","placeholders":["earphone"]}, +{"id":"170087","label":"stacking 3 small bowls","template":"Stacking [number of] [something]","placeholders":["3","small bowls"]}, +{"id":"56827","label":"pulling puzzle piece out of plastic bag","template":"Pulling [something] out of [something]","placeholders":["puzzle piece","plastic bag"]}, +{"id":"109524","label":"stuffing flowers into cup","template":"Stuffing [something] into [something]","placeholders":["flowers","cup"]}, +{"id":"78450","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"99082","label":"pretending to close a drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a drawer"]}, +{"id":"4372","label":"opening fridge","template":"Opening [something]","placeholders":["fridge"]}, +{"id":"192703","label":"holding usb","template":"Holding [something]","placeholders":["usb"]}, +{"id":"72953","label":"holding pen behind tiger","template":"Holding [something] behind [something]","placeholders":["pen","tiger"]}, +{"id":"197847","label":"moving a jumpdrive away from a stapler","template":"Moving [something] away from [something]","placeholders":["a jumpdrive","a stapler"]}, +{"id":"30705","label":"showing a pen on top of a glas","template":"Showing [something] on top of [something]","placeholders":["a pen","a glas"]}, +{"id":"62873","label":"pulling a pen from right to left","template":"Pulling [something] from right to left","placeholders":["a pen"]}, +{"id":"128044","label":"pushing cufflinks so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cufflinks"]}, +{"id":"111792","label":"dropping a pen next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a pen","a matchbox"]}, +{"id":"214480","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"72746","label":"showing ball behind box","template":"Showing [something] behind [something]","placeholders":["ball","box"]}, +{"id":"206137","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"21113","label":"dropping cleaning sponge into sink","template":"Dropping [something] into [something]","placeholders":["cleaning sponge","sink"]}, +{"id":"69694","label":"moving a doll and a doll so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a doll","a doll"]}, +{"id":"175315","label":"showing green water bottle to the camera","template":"Showing [something] to the camera","placeholders":["green water bottle"]}, +{"id":"24012","label":"pushing a pencil so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pencil"]}, +{"id":"73438","label":"removing cup, revealing lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["cup","lighter"]}, +{"id":"37037","label":"lifting chair up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["chair"]}, +{"id":"86435","label":"plugging a charger into an extension chord","template":"Plugging [something] into [something]","placeholders":["a charger","an extension chord"]}, +{"id":"48695","label":"moving tool closer to scissor","template":"Moving [something] closer to [something]","placeholders":["tool","scissor"]}, +{"id":"27918","label":"trying to bend a remote so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a remote"]}, +{"id":"28981","label":"moving mouse and notebook closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mouse","notebook"]}, +{"id":"112179","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"26064","label":"hitting a cup with a chopstick","template":"Hitting [something] with [something]","placeholders":["a cup","a chopstick"]}, +{"id":"128516","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"22795","label":"pushing comb so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["comb"]}, +{"id":"101596","label":"a lighter falling like a rock","template":"[Something] falling like a rock","placeholders":["a lighter"]}, +{"id":"190032","label":"stacking glasses with glasses","template":"Stacking [number of] [something]","placeholders":["glasses","with glasses"]}, +{"id":"162581","label":"moving ball and ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ball","ball"]}, +{"id":"32442","label":"moving big white color ball and small orange color ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["big white color ball","small orange color ball"]}, +{"id":"3216","label":"plugging cord into outlet","template":"Plugging [something] into [something]","placeholders":["cord","outlet"]}, +{"id":"106390","label":"moving sunglass and sunglass so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["sunglass","sunglass"]}, +{"id":"4386","label":"putting camera case in front of speedlite","template":"Putting [something] in front of [something]","placeholders":["camera case","speedlite"]}, +{"id":"147018","label":"throwing toy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["toy"]}, +{"id":"98438","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"133739","label":"moving string up","template":"Moving [something] up","placeholders":["string"]}, +{"id":"38004","label":"putting spray bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["spray bottle"]}, +{"id":"200529","label":"pushing a box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a box"]}, +{"id":"8361","label":"plugging mobile charger into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["mobile charger","power socket"]}, +{"id":"111337","label":"putting pen onto book","template":"Putting [something] onto [something]","placeholders":["pen","book"]}, +{"id":"27593","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"138953","label":"moving a wristwatch and charger away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a wristwatch","charger"]}, +{"id":"117117","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"213580","label":"pretending to pick chair case up","template":"Pretending to pick [something] up","placeholders":["chair case"]}, +{"id":"69636","label":"picking a hairbrush up","template":"Picking [something] up","placeholders":["a hairbrush"]}, +{"id":"115770","label":"throwing a packaging onto a surface","template":"Throwing [something] onto a surface","placeholders":["a packaging"]}, +{"id":"41013","label":"poking a hole into a styrofoam block","template":"Poking a hole into [some substance]","placeholders":["a styrofoam block"]}, +{"id":"211938","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"199277","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"89648","label":"stacking 4 coasters","template":"Stacking [number of] [something]","placeholders":["4","coasters"]}, +{"id":"120818","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"180850","label":"pushing bucket with bat","template":"Pushing [something] with [something]","placeholders":["bucket","bat"]}, +{"id":"214599","label":"stuffing pillow into pillowcase","template":"Stuffing [something] into [something]","placeholders":["pillow","pillowcase"]}, +{"id":"100901","label":"putting action figure that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["action figure"]}, +{"id":"171109","label":"pretending to turn small book upside down","template":"Pretending to turn [something] upside down","placeholders":["small book"]}, +{"id":"164177","label":"showing water bottle next to bowl","template":"Showing [something] next to [something]","placeholders":["water bottle","bowl"]}, +{"id":"156213","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"97391","label":"pouring water into a measuring cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a measuring cup"]}, +{"id":"209243","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"88787","label":"bending chopsticks until it breaks","template":"Bending [something] until it breaks","placeholders":["chopsticks"]}, +{"id":"99177","label":"hitting a spray can with a lighter","template":"Hitting [something] with [something]","placeholders":["a spray can","a lighter"]}, +{"id":"143913","label":"lifting up one end of wood log, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["wood log"]}, +{"id":"21329","label":"stuffing water into container","template":"Stuffing [something] into [something]","placeholders":["water","container"]}, +{"id":"216505","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"46201","label":"hitting toy car with pen","template":"Hitting [something] with [something]","placeholders":["toy car","pen"]}, +{"id":"183742","label":"moving a cellphone up","template":"Moving [something] up","placeholders":["a cellphone"]}, +{"id":"34675","label":"moving a wallet away from a pencil","template":"Moving [something] away from [something]","placeholders":["a wallet","a pencil"]}, +{"id":"33067","label":"sprinkling salt onto a table","template":"Sprinkling [something] onto [something]","placeholders":["salt","a table"]}, +{"id":"96143","label":"putting nail polish, bottle and tube on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["nail polish","bottle","tube"]}, +{"id":"87265","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"205141","label":"turning orange bowl upside down","template":"Turning [something] upside down","placeholders":["orange bowl"]}, +{"id":"192570","label":"showing that white container is empty","template":"Showing that [something] is empty","placeholders":["white container"]}, +{"id":"128572","label":"moving soap and nail cutter so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["soap","nail cutter"]}, +{"id":"52879","label":"moving notebook and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["notebook","pen"]}, +{"id":"218922","label":"pretending or failing to wipe drawings off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["drawings","wall"]}, +{"id":"150441","label":"piling small blocks up","template":"Piling [something] up","placeholders":["small blocks"]}, +{"id":"12763","label":"bending cardboard tube until it breaks","template":"Bending [something] until it breaks","placeholders":["cardboard tube"]}, +{"id":"40480","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"88815","label":"putting toy next to toy watch","template":"Putting [something] next to [something]","placeholders":["toy","toy watch"]}, +{"id":"181807","label":"moving spoon and box so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["spoon","box"]}, +{"id":"28230","label":"attaching carabinier hook to a keyring","template":"Attaching [something] to [something]","placeholders":["carabinier hook","a keyring"]}, +{"id":"115615","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"145132","label":"bending chenille stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["chenille stick"]}, +{"id":"16509","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"58953","label":"twisting sliper","template":"Twisting [something]","placeholders":["sliper"]}, +{"id":"210969","label":"holding clock next to mouse","template":"Holding [something] next to [something]","placeholders":["clock","mouse"]}, +{"id":"162242","label":"removing a cup, revealing a lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["a cup","a lighter"]}, +{"id":"203660","label":"showing that a watch is inside a box","template":"Showing that [something] is inside [something]","placeholders":["a watch","a box"]}, +{"id":"63960","label":"moving wristwatch and phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wristwatch","phone"]}, +{"id":"155928","label":"putting yellow container next to blue spectacle box","template":"Putting [something] next to [something]","placeholders":["yellow container","blue spectacle box"]}, +{"id":"36703","label":"turning dvd case upside down","template":"Turning [something] upside down","placeholders":["dvd case"]}, +{"id":"45066","label":"dropping a tissue box next to a mug","template":"Dropping [something] next to [something]","placeholders":["a tissue box","a mug"]}, +{"id":"124682","label":"moving pen and holder away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","holder"]}, +{"id":"36414","label":"showing spects on top of book","template":"Showing [something] on top of [something]","placeholders":["spects","book"]}, +{"id":"12129","label":"twisting (wringing) a face cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a face cloth"]}, +{"id":"161541","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"203566","label":"throwing a doll in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a doll"]}, +{"id":"37859","label":"pretending to turn dvd case upside down","template":"Pretending to turn [something] upside down","placeholders":["dvd case"]}, +{"id":"47160","label":"pushing grape off of table","template":"Pushing [something] off of [something]","placeholders":["grape","table"]}, +{"id":"141436","label":"letting tape roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tape roll"]}, +{"id":"210537","label":"pretending to poke cube","template":"Pretending to poke [something]","placeholders":["cube"]}, +{"id":"99174","label":"pushing watch from right to left","template":"Pushing [something] from right to left","placeholders":["watch"]}, +{"id":"71516","label":"showing that wax container is empty","template":"Showing that [something] is empty","placeholders":["wax container"]}, +{"id":"5435","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"10051","label":"showing that ciggaretes is inside pack","template":"Showing that [something] is inside [something]","placeholders":["ciggaretes","pack"]}, +{"id":"208455","label":"plugging plug cable into plug holder","template":"Plugging [something] into [something]","placeholders":["plug cable","plug holder"]}, +{"id":"138510","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"86882","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"197066","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"79026","label":"putting a plastic cup behind a bucket","template":"Putting [something] behind [something]","placeholders":["a plastic cup","a bucket"]}, +{"id":"140400","label":"poking book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["book"]}, +{"id":"218881","label":"dishcloth being deflected from cabinet","template":"[Something] being deflected from [something]","placeholders":["dishcloth","cabinet"]}, +{"id":"44133","label":"picking a box up","template":"Picking [something] up","placeholders":["a box"]}, +{"id":"152502","label":"dropping a matchbox behind a cup","template":"Dropping [something] behind [something]","placeholders":["a matchbox","a cup"]}, +{"id":"115418","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"45091","label":"plugging mobile charger into electical outlet","template":"Plugging [something] into [something]","placeholders":["mobile charger","electical outlet"]}, +{"id":"159442","label":"laying a bottle of mustard on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle of mustard"]}, +{"id":"105308","label":"plugging cord into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","socket"]}, +{"id":"13055","label":"putting soft tissue roll on a surface","template":"Putting [something] on a surface","placeholders":["soft tissue roll"]}, +{"id":"20519","label":"spilling soda onto towel","template":"Spilling [something] onto [something]","placeholders":["soda","towel"]}, +{"id":"176966","label":"putting a pot in front of a bracelet","template":"Putting [something] in front of [something]","placeholders":["a pot","a bracelet"]}, +{"id":"62850","label":"pretending to pick plush up","template":"Pretending to pick [something] up","placeholders":["plush"]}, +{"id":"27803","label":"poking a hole into thermocol","template":"Poking a hole into [something soft]","placeholders":["thermocol"]}, +{"id":"187093","label":"moving a roll of duct tape down","template":"Moving [something] down","placeholders":["a roll of duct tape"]}, +{"id":"188665","label":"pulling aim toothpaste from right to left","template":"Pulling [something] from right to left","placeholders":["aim toothpaste"]}, +{"id":"198766","label":"holding cup over box","template":"Holding [something] over [something]","placeholders":["cup","box"]}, +{"id":"60845","label":"folding a bandana","template":"Folding [something]","placeholders":["a bandana"]}, +{"id":"98297","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"173351","label":"showing grasshopper to the camera","template":"Showing [something] to the camera","placeholders":["grasshopper"]}, +{"id":"23998","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"199098","label":"throwing lid onto a surface","template":"Throwing [something] onto a surface","placeholders":["lid"]}, +{"id":"31706","label":"pulling a marker from left to right","template":"Pulling [something] from left to right","placeholders":["a marker"]}, +{"id":"90617","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"151706","label":"pushing notebook from right to left","template":"Pushing [something] from right to left","placeholders":["notebook"]}, +{"id":"102321","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"98828","label":"burying sketch pen in sand","template":"Burying [something] in [something]","placeholders":["sketch pen","sand"]}, +{"id":"114264","label":"putting perfume bottle on a surface","template":"Putting [something] on a surface","placeholders":["perfume bottle"]}, +{"id":"81162","label":"putting pebble behind glass","template":"Putting [something] behind [something]","placeholders":["pebble","glass"]}, +{"id":"9895","label":"wiping soap off of a table","template":"Wiping [something] off of [something]","placeholders":["soap","a table"]}, +{"id":"75835","label":"putting remote on the edge of mug so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["remote","mug"]}, +{"id":"19106","label":"covering a mug with a napkin","template":"Covering [something] with [something]","placeholders":["a mug","a napkin"]}, +{"id":"219046","label":"covering a book with a piece of paper","template":"Covering [something] with [something]","placeholders":["a book","a piece of paper"]}, +{"id":"186236","label":"holding red watch case","template":"Holding [something]","placeholders":["red watch case"]}, +{"id":"10186","label":"putting keychain onto basket","template":"Putting [something] onto [something]","placeholders":["keychain","basket"]}, +{"id":"130776","label":"pretending to take fork from table","template":"Pretending to take [something] from [somewhere]","placeholders":["fork","table"]}, +{"id":"127215","label":"showing that the box is empty","template":"Showing that [something] is empty","placeholders":["the box"]}, +{"id":"186240","label":"throwing purse in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["purse"]}, +{"id":"22283","label":"dropping towel onto toilet","template":"Dropping [something] onto [something]","placeholders":["towel","toilet"]}, +{"id":"114842","label":"moving wallet and hat closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wallet","hat"]}, +{"id":"61595","label":"rolling roll of paper on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["roll of paper"]}, +{"id":"127533","label":"showing peanut to the camera","template":"Showing [something] to the camera","placeholders":["peanut"]}, +{"id":"11386","label":"scooping ice cream up with an ice-cream scoop","template":"Scooping [something] up with [something]","placeholders":["ice cream","an ice-cream scoop"]}, +{"id":"14117","label":"stacking number of something","template":"Stacking [number of] [something]","placeholders":["number of","something"]}, +{"id":"44811","label":"pushing orange bowl from right to left","template":"Pushing [something] from right to left","placeholders":["orange bowl"]}, +{"id":"123597","label":"trying but failing to attach wooden reeper to wooden reeper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["wooden reeper","wooden reeper"]}, +{"id":"100240","label":"plugging usb cable into smarthphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","smarthphone"]}, +{"id":"125614","label":"tilting game with flowers on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["game","flowers"]}, +{"id":"106488","label":"pulling purple microfiber from right to left","template":"Pulling [something] from right to left","placeholders":["purple microfiber"]}, +{"id":"65201","label":"throwing phone","template":"Throwing [something]","placeholders":["phone"]}, +{"id":"196028","label":"lifting a block up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a block"]}, +{"id":"79991","label":"moving pen and flower away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","flower"]}, +{"id":"43612","label":"moving a tv remote across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a tv remote"]}, +{"id":"54766","label":"poking audio helmet so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["audio helmet"]}, +{"id":"17486","label":"moving keys away from pen","template":"Moving [something] away from [something]","placeholders":["keys","pen"]}, +{"id":"84373","label":"lifting paper with paper ball on it","template":"Lifting [something] with [something] on it","placeholders":["paper","paper ball"]}, +{"id":"48351","label":"opening glass jar","template":"Opening [something]","placeholders":["glass jar"]}, +{"id":"33617","label":"spreading crunchy peanut butter onto a cracker","template":"Spreading [something] onto [something]","placeholders":["crunchy peanut butter","a cracker"]}, +{"id":"16741","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"162607","label":"pulling notecard out of purple container","template":"Pulling [something] out of [something]","placeholders":["notecard","purple container"]}, +{"id":"218394","label":"turning flashlight upside down","template":"Turning [something] upside down","placeholders":["flashlight"]}, +{"id":"12124","label":"turning the camera left while filming eggplant","template":"Turning the camera left while filming [something]","placeholders":["eggplant"]}, +{"id":"106359","label":"moving lighter and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lighter","glass"]}, +{"id":"146083","label":"failing to put basket into adhesive tape because basket does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["basket","adhesive tape","basket"]}, +{"id":"217625","label":"poking a book so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a book"]}, +{"id":"138617","label":"spilling water onto paper towel","template":"Spilling [something] onto [something]","placeholders":["water","paper towel"]}, +{"id":"149864","label":"lifting spring up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spring"]}, +{"id":"201066","label":"turning marker pen upside down","template":"Turning [something] upside down","placeholders":["marker pen"]}, +{"id":"64104","label":"showing petrol station kiosk to the camera","template":"Showing [something] to the camera","placeholders":["petrol station kiosk"]}, +{"id":"85103","label":"moving one extreme of fan","template":"Moving [part] of [something]","placeholders":["one extreme","fan"]}, +{"id":"62591","label":"spinning cell phone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cell phone"]}, +{"id":"155980","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"218735","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"123665","label":"putting hand sanitizer, dental floss and nail polish on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hand sanitizer","dental floss","nail polish"]}, +{"id":"15922","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"113141","label":"moving usb cable and smarthphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["usb cable","smarthphone"]}, +{"id":"154049","label":"pretending to throw newspaper","template":"Pretending to throw [something]","placeholders":["newspaper"]}, +{"id":"56702","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"185794","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"93147","label":"dropping ball behind chair","template":"Dropping [something] behind [something]","placeholders":["ball","chair"]}, +{"id":"27034","label":"plugging charger into laptop","template":"Plugging [something] into [something]","placeholders":["charger","laptop"]}, +{"id":"110948","label":"lifting up one end of plastic case, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["plastic case"]}, +{"id":"104677","label":"pulling bottled pesto sauce from left to right","template":"Pulling [something] from left to right","placeholders":["bottled pesto sauce"]}, +{"id":"127161","label":"holding glass in front of a bottle","template":"Holding [something] in front of [something]","placeholders":["glass","a bottle"]}, +{"id":"102548","label":"throwing a stuffed animal in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a stuffed animal"]}, +{"id":"209410","label":"stuffing striker coin into black pouch","template":"Stuffing [something] into [something]","placeholders":["striker coin","black pouch"]}, +{"id":"37244","label":"pulling two ends of scrunchie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["scrunchie"]}, +{"id":"206488","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"182263","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"35323","label":"plugging power adapter into socket","template":"Plugging [something] into [something]","placeholders":["power adapter","socket"]}, +{"id":"191681","label":"moving battery down","template":"Moving [something] down","placeholders":["battery"]}, +{"id":"119331","label":"uncovering eraser","template":"Uncovering [something]","placeholders":["eraser"]}, +{"id":"131302","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"40464","label":"pretending to open handcrafted pocket diary without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["handcrafted pocket diary"]}, +{"id":"96407","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"174164","label":"taking camera from drawer","template":"Taking [something] from [somewhere]","placeholders":["camera","drawer"]}, +{"id":"39343","label":"pushing toy with bat","template":"Pushing [something] with [something]","placeholders":["toy","bat"]}, +{"id":"46569","label":"opening a container of rice","template":"Opening [something]","placeholders":["a container of rice"]}, +{"id":"45985","label":"football falling like a rock","template":"[Something] falling like a rock","placeholders":["football"]}, +{"id":"193729","label":"putting glass behind box","template":"Putting [something] behind [something]","placeholders":["glass","box"]}, +{"id":"32364","label":"putting a phone on the edge of a tissue box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a phone","a tissue box"]}, +{"id":"192360","label":"moving phone closer to tissue box","template":"Moving [something] closer to [something]","placeholders":["phone","tissue box"]}, +{"id":"179520","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"90565","label":"stacking 3 pots","template":"Stacking [number of] [something]","placeholders":["3","pots"]}, +{"id":"98360","label":"plugging phone into desk","template":"Plugging [something] into [something]","placeholders":["phone","desk"]}, +{"id":"150588","label":"uncovering toothbrush","template":"Uncovering [something]","placeholders":["toothbrush"]}, +{"id":"179463","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"59662","label":"pushing face wash so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["face wash"]}, +{"id":"89976","label":"turning the camera upwards while filming mug","template":"Turning the camera upwards while filming [something]","placeholders":["mug"]}, +{"id":"220118","label":"holding paper","template":"Holding [something]","placeholders":["paper"]}, +{"id":"127957","label":"pouring water into the bowl","template":"Pouring [something] into [something]","placeholders":["water","the bowl"]}, +{"id":"34605","label":"sock colliding with book and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["sock","book"]}, +{"id":"126945","label":"plugging charger into iphone 7 but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","iphone 7"]}, +{"id":"79993","label":"showing stroller to the camera","template":"Showing [something] to the camera","placeholders":["stroller"]}, +{"id":"178167","label":"pushing the glass so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["the glass"]}, +{"id":"45016","label":"putting marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["marker"]}, +{"id":"95252","label":"tipping jar with candy over, so candy falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["jar","candy","candy"]}, +{"id":"64635","label":"lifting toothbrush up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["toothbrush"]}, +{"id":"99389","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"77689","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"73338","label":"moving coin down","template":"Moving [something] down","placeholders":["coin"]}, +{"id":"77539","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"195895","label":"showing cup and saucer to the camera","template":"Showing [something] to the camera","placeholders":["cup and saucer"]}, +{"id":"107831","label":"turning the camera downwards while filming punching machine","template":"Turning the camera downwards while filming [something]","placeholders":["punching machine"]}, +{"id":"211573","label":"holding mobile","template":"Holding [something]","placeholders":["mobile"]}, +{"id":"27283","label":"moving lighter down","template":"Moving [something] down","placeholders":["lighter"]}, +{"id":"142880","label":"pulling a bottle from right to left","template":"Pulling [something] from right to left","placeholders":["a bottle"]}, +{"id":"168348","label":"uncovering a mason jar","template":"Uncovering [something]","placeholders":["a mason jar"]}, +{"id":"202045","label":"moving lid of hair dryer","template":"Moving [part] of [something]","placeholders":["lid","hair dryer"]}, +{"id":"12985","label":"moving clasp of charger","template":"Moving [part] of [something]","placeholders":["clasp","charger"]}, +{"id":"53836","label":"taking a sock out of drawer","template":"Taking [something] out of [something]","placeholders":["a sock","drawer"]}, +{"id":"211095","label":"picking a stuffed bob-omb up","template":"Picking [something] up","placeholders":["a stuffed bob-omb"]}, +{"id":"163638","label":"holding glass behind a bottle","template":"Holding [something] behind [something]","placeholders":["glass","a bottle"]}, +{"id":"17710","label":"putting plastic into basket","template":"Putting [something] into [something]","placeholders":["plastic","basket"]}, +{"id":"213638","label":"trying to bend a remote control so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a remote control"]}, +{"id":"14314","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"2346","label":"lifting up one end of remote, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote"]}, +{"id":"182063","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"34760","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"13850","label":"pretending to pick purple balloon pump up","template":"Pretending to pick [something] up","placeholders":["purple balloon pump"]}, +{"id":"10243","label":"removing hat, revealing remote behind","template":"Removing [something], revealing [something] behind","placeholders":["hat","remote"]}, +{"id":"147964","label":"pretending to scoop water up with scooper","template":"Pretending to scoop [something] up with [something]","placeholders":["water","scooper"]}, +{"id":"39742","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"145364","label":"pushing paper weight so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["paper weight"]}, +{"id":"161347","label":"lifting a notebook with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a lighter"]}, +{"id":"219147","label":"turning peanut butter upside down","template":"Turning [something] upside down","placeholders":["peanut butter"]}, +{"id":"90324","label":"moving a dial of a telephone","template":"Moving [part] of [something]","placeholders":["a dial","a telephone"]}, +{"id":"220446","label":"putting wallet into bag","template":"Putting [something] into [something]","placeholders":["wallet","bag"]}, +{"id":"122529","label":"pretending to turn bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["bowl"]}, +{"id":"28022","label":"moving a ring up","template":"Moving [something] up","placeholders":["a ring"]}, +{"id":"67940","label":"showing that water is inside the bottle","template":"Showing that [something] is inside [something]","placeholders":["water","the bottle"]}, +{"id":"122642","label":"throwing match box in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["match box"]}, +{"id":"107399","label":"spilling water onto plate","template":"Spilling [something] onto [something]","placeholders":["water","plate"]}, +{"id":"173063","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"212832","label":"putting stapler upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["stapler"]}, +{"id":"126184","label":"putting screw nail upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["screw nail"]}, +{"id":"196423","label":"holding a en in front of a pencil case","template":"Holding [something] in front of [something]","placeholders":["a en","a pencil case"]}, +{"id":"205184","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"23005","label":"putting remote in front of seal pad","template":"Putting [something] in front of [something]","placeholders":["remote","seal pad"]}, +{"id":"167629","label":"holding a toothpick over a cup","template":"Holding [something] over [something]","placeholders":["a toothpick","a cup"]}, +{"id":"179370","label":"putting board clip onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["board clip"]}, +{"id":"140309","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"120436","label":"plugging an adapter into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["an adapter","an outlet"]}, +{"id":"122041","label":"lifting a pencil up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a pencil"]}, +{"id":"23108","label":"poking metal beam so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["metal beam"]}, +{"id":"29725","label":"spinning spinning kada so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning kada"]}, +{"id":"170068","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"97562","label":"putting a pen on a table with more pens on it","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen on a table with more pens on it"]}, +{"id":"66519","label":"covering pen with a bag","template":"Covering [something] with [something]","placeholders":["pen","a bag"]}, +{"id":"153449","label":"hitting brick+table with fidget spinner","template":"Hitting [something] with [something]","placeholders":["brick+table","fidget spinner"]}, +{"id":"71457","label":"putting a tub upright on the table","template":"Putting [something] upright on the table","placeholders":["a tub"]}, +{"id":"84869","label":"dropping duster onto cookie box","template":"Dropping [something] onto [something]","placeholders":["duster","cookie box"]}, +{"id":"70226","label":"putting spoon into cup","template":"Putting [something] into [something]","placeholders":["spoon","cup"]}, +{"id":"76658","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"147043","label":"lifting tuperware with playdoh on it","template":"Lifting [something] with [something] on it","placeholders":["tuperware","playdoh"]}, +{"id":"57470","label":"pushing table lamp so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["table lamp"]}, +{"id":"103915","label":"putting scissors, glasses and phone on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["scissors","glasses","phone"]}, +{"id":"159492","label":"putting coins into a bowl","template":"Putting [something] into [something]","placeholders":["coins","a bowl"]}, +{"id":"108070","label":"lifting up one end of mouse, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["mouse"]}, +{"id":"51057","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"148642","label":"taking yarn out of box","template":"Taking [something] out of [something]","placeholders":["yarn","box"]}, +{"id":"88064","label":"lifting a wallet with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["a wallet","sunglasses"]}, +{"id":"32417","label":"laying lotion on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lotion"]}, +{"id":"41929","label":"moving cufflinks closer to a belt","template":"Moving [something] closer to [something]","placeholders":["cufflinks","a belt"]}, +{"id":"186552","label":"somethimg with colliding with something and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["somethimg with","something"]}, +{"id":"179178","label":"touching (without moving) the top of a block","template":"Touching (without moving) [part] of [something]","placeholders":["the top","a block"]}, +{"id":"38318","label":"covering a smartphone with a hoodie","template":"Covering [something] with [something]","placeholders":["a smartphone","a hoodie"]}, +{"id":"30636","label":"taking receipts from a table","template":"Taking [one of many similar things on the table]","placeholders":["receipts from a table"]}, +{"id":"55287","label":"closing container","template":"Closing [something]","placeholders":["container"]}, +{"id":"58186","label":"tilting a bottle with a box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a bottle","a box"]}, +{"id":"24744","label":"twisting (wringing) a cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a cloth"]}, +{"id":"47530","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"157057","label":"putting a doll upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a doll"]}, +{"id":"162969","label":"plugging glade plugin into electrical wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["glade plugin","electrical wall socket"]}, +{"id":"4516","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"151103","label":"moving a stopper of a pen","template":"Moving [part] of [something]","placeholders":["a stopper","a pen"]}, +{"id":"171656","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"37959","label":"pretending to squeeze note","template":"Pretending to squeeze [something]","placeholders":["note"]}, +{"id":"91945","label":"pulling a tissue out of a tissue box","template":"Pulling [something] out of [something]","placeholders":["a tissue","a tissue box"]}, +{"id":"82216","label":"poking a hole into ballone","template":"Poking a hole into [something soft]","placeholders":["ballone"]}, +{"id":"201132","label":"pushing a fork so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a fork"]}, +{"id":"192676","label":"letting a iron rod roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a iron rod"]}, +{"id":"129251","label":"tilting plate with glasses on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","glasses"]}, +{"id":"112682","label":"pretending to open book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["book"]}, +{"id":"57867","label":"showing that scissors is inside mug","template":"Showing that [something] is inside [something]","placeholders":["scissors","mug"]}, +{"id":"35803","label":"moving car closer to duster","template":"Moving [something] closer to [something]","placeholders":["car","duster"]}, +{"id":"58332","label":"letting ring roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ring"]}, +{"id":"193776","label":"showing plush behind cable","template":"Showing [something] behind [something]","placeholders":["plush","cable"]}, +{"id":"86373","label":"holding a cup","template":"Holding [something]","placeholders":["a cup"]}, +{"id":"214571","label":"hitting paper with paper","template":"Hitting [something] with [something]","placeholders":["paper","paper"]}, +{"id":"166004","label":"uncovering popcorn","template":"Uncovering [something]","placeholders":["popcorn"]}, +{"id":"166506","label":"twisting a ribbon","template":"Twisting [something]","placeholders":["a ribbon"]}, +{"id":"125224","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"165519","label":"pretending to take the hair tie from the bed","template":"Pretending to take [something] from [somewhere]","placeholders":["the hair tie","the bed"]}, +{"id":"70178","label":"putting jar underneath box","template":"Putting [something] underneath [something]","placeholders":["jar","box"]}, +{"id":"81605","label":"pouring water onto bucket","template":"Pouring [something] onto [something]","placeholders":["water","bucket"]}, +{"id":"123207","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"202844","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"21502","label":"attaching a phone to its cover","template":"Attaching [something] to [something]","placeholders":["a phone","its cover"]}, +{"id":"202634","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"71955","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"36498","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"149360","label":"holding a mouse over a wallet","template":"Holding [something] over [something]","placeholders":["a mouse","a wallet"]}, +{"id":"173753","label":"pushing paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper"]}, +{"id":"51518","label":"sprinkling candy onto butter","template":"Sprinkling [something] onto [something]","placeholders":["candy","butter"]}, +{"id":"95347","label":"moving orange colour pen up","template":"Moving [something] up","placeholders":["orange colour pen"]}, +{"id":"31270","label":"trying but failing to attach pencil to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["pencil","fridge"]}, +{"id":"125283","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"141921","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"157421","label":"moving glass and flashlight away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","flashlight"]}, +{"id":"136438","label":"stuffing letter into envelope","template":"Stuffing [something] into [something]","placeholders":["letter","envelope"]}, +{"id":"69106","label":"touching (without moving) handle of iron","template":"Touching (without moving) [part] of [something]","placeholders":["handle","iron"]}, +{"id":"89927","label":"moving bolt closer to white badge","template":"Moving [something] closer to [something]","placeholders":["bolt","white badge"]}, +{"id":"18055","label":"putting two seashells onto table","template":"Putting [number of] [something] onto [something]","placeholders":["two","seashells","table"]}, +{"id":"137095","label":"letting a sphere roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a sphere"]}, +{"id":"54459","label":"plugging phone into charger","template":"Plugging [something] into [something]","placeholders":["phone","charger"]}, +{"id":"156966","label":"covering a smartphone with a tissu","template":"Covering [something] with [something]","placeholders":["a smartphone","a tissu"]}, +{"id":"159713","label":"showing small cup to the camera","template":"Showing [something] to the camera","placeholders":["small cup"]}, +{"id":"78868","label":"throwing a pillow against a wall","template":"Throwing [something] against [something]","placeholders":["a pillow","a wall"]}, +{"id":"131045","label":"showing a banana behind a pear","template":"Showing [something] behind [something]","placeholders":["a banana","a pear"]}, +{"id":"51754","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"99896","label":"holding teapot over cup","template":"Holding [something] over [something]","placeholders":["teapot","cup"]}, +{"id":"169306","label":"stuffing wipes into container","template":"Stuffing [something] into [something]","placeholders":["wipes","container"]}, +{"id":"35963","label":"moving pen away from holder","template":"Moving [something] away from [something]","placeholders":["pen","holder"]}, +{"id":"123629","label":"spinning a phone so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a phone"]}, +{"id":"27926","label":"plugging microwave into socket","template":"Plugging [something] into [something]","placeholders":["microwave","socket"]}, +{"id":"88984","label":"dropping a peg next to a fork","template":"Dropping [something] next to [something]","placeholders":["a peg","a fork"]}, +{"id":"88251","label":"squeezing yarn","template":"Squeezing [something]","placeholders":["yarn"]}, +{"id":"2137","label":"showing that bag is empty","template":"Showing that [something] is empty","placeholders":["bag"]}, +{"id":"67762","label":"pulling piece of paper onto notebook","template":"Pulling [something] onto [something]","placeholders":["piece of paper","notebook"]}, +{"id":"14715","label":"pulling a notebook from left to right","template":"Pulling [something] from left to right","placeholders":["a notebook"]}, +{"id":"190769","label":"putting kolleg block on the edge of table edge so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["kolleg block","table edge"]}, +{"id":"180630","label":"covering box with napkin","template":"Covering [something] with [something]","placeholders":["box","napkin"]}, +{"id":"152656","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"50391","label":"tearing notebook page just a little bit","template":"Tearing [something] just a little bit","placeholders":["notebook page"]}, +{"id":"181556","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"82674","label":"moving knife down","template":"Moving [something] down","placeholders":["knife"]}, +{"id":"11888","label":"holding control next to game","template":"Holding [something] next to [something]","placeholders":["control","game"]}, +{"id":"61092","label":"lifting stapler up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["stapler"]}, +{"id":"158739","label":"letting a potato roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a potato"]}, +{"id":"205435","label":"holding spoon in front of bed","template":"Holding [something] in front of [something]","placeholders":["spoon","bed"]}, +{"id":"114865","label":"taking one of many coins","template":"Taking [one of many similar things on the table]","placeholders":["one of many coins"]}, +{"id":"142677","label":"pretending to pick cable up","template":"Pretending to pick [something] up","placeholders":["cable"]}, +{"id":"76138","label":"showing horse to the camera","template":"Showing [something] to the camera","placeholders":["horse"]}, +{"id":"74528","label":"pretending to turn a cup upside down","template":"Pretending to turn [something] upside down","placeholders":["a cup"]}, +{"id":"99808","label":"dropping yellow ball into orange bowl","template":"Dropping [something] into [something]","placeholders":["yellow ball","orange bowl"]}, +{"id":"15050","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"55871","label":"pushing chair with leg","template":"Pushing [something] with [something]","placeholders":["chair","leg"]}, +{"id":"181882","label":"putting coins into box","template":"Putting [something] into [something]","placeholders":["coins","box"]}, +{"id":"79534","label":"pushing world globe from left to right","template":"Pushing [something] from left to right","placeholders":["world globe"]}, +{"id":"10049","label":"a ring being deflected from a mug","template":"[Something] being deflected from [something]","placeholders":["a ring","a mug"]}, +{"id":"135934","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"73207","label":"covering vicks vapourb with bedsheet","template":"Covering [something] with [something]","placeholders":["vicks vapourb","bedsheet"]}, +{"id":"33422","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"184621","label":"currency falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["currency"]}, +{"id":"17914","label":"covering a cooking pot with its cover","template":"Covering [something] with [something]","placeholders":["a cooking pot","its cover"]}, +{"id":"33241","label":"pretending to put sunscreen on a surface","template":"Pretending to put [something] on a surface","placeholders":["sunscreen"]}, +{"id":"136354","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"39356","label":"showing a photo of a popcorn to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a popcorn"]}, +{"id":"146642","label":"poking a stack of dice without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["dice"]}, +{"id":"19431","label":"removing mug, revealing crayon behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","crayon"]}, +{"id":"23541","label":"plugging a plug into plug socket","template":"Plugging [something] into [something]","placeholders":["a plug","plug socket"]}, +{"id":"92682","label":"covering a container with a lid","template":"Covering [something] with [something]","placeholders":["a container","a lid"]}, +{"id":"182222","label":"spinning quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["quarter"]}, +{"id":"107148","label":"pretending to put a battery on a surface","template":"Pretending to put [something] on a surface","placeholders":["a battery"]}, +{"id":"149208","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"31880","label":"moving book closer to light switch","template":"Moving [something] closer to [something]","placeholders":["book","light switch"]}, +{"id":"67044","label":"dropping wallet onto book","template":"Dropping [something] onto [something]","placeholders":["wallet","book"]}, +{"id":"162803","label":"hitting a bottle with a comb","template":"Hitting [something] with [something]","placeholders":["a bottle","a comb"]}, +{"id":"81991","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"173301","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"40471","label":"approaching water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["water bottle"]}, +{"id":"157716","label":"pretending to scoop popcorn up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["popcorn","spoon"]}, +{"id":"148120","label":"tearing laminated paper mat just a little bit","template":"Tearing [something] just a little bit","placeholders":["laminated paper mat"]}, +{"id":"17198","label":"pushing remote with fork","template":"Pushing [something] with [something]","placeholders":["remote","fork"]}, +{"id":"91199","label":"moving duct tape and duct tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["duct tape","duct tape"]}, +{"id":"108163","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"167457","label":"putting spring onto wallet","template":"Putting [something] onto [something]","placeholders":["spring","wallet"]}, +{"id":"186569","label":"pretending or failing to wipe ink off of light switch","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","light switch"]}, +{"id":"125741","label":"pulling aim toothpaste from left to right","template":"Pulling [something] from left to right","placeholders":["aim toothpaste"]}, +{"id":"167918","label":"holding remote controller in front of laptop","template":"Holding [something] in front of [something]","placeholders":["remote controller","laptop"]}, +{"id":"47229","label":"stacking 4 children's books","template":"Stacking [number of] [something]","placeholders":["4","children's books"]}, +{"id":"215082","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"44824","label":"pushing a toy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toy"]}, +{"id":"2528","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"100049","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"154011","label":"putting a jbl onto chewing gums so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a jbl","chewing gums"]}, +{"id":"218064","label":"pouring water into steel glass","template":"Pouring [something] into [something]","placeholders":["water","steel glass"]}, +{"id":"94651","label":"pretending to poke jar","template":"Pretending to poke [something]","placeholders":["jar"]}, +{"id":"44822","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"147548","label":"moving medicine up","template":"Moving [something] up","placeholders":["medicine"]}, +{"id":"72770","label":"holding mouse next to keyboard","template":"Holding [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"185485","label":"tilting book with keys on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","keys"]}, +{"id":"126970","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"184282","label":"covering gear wheel with red pouch","template":"Covering [something] with [something]","placeholders":["gear wheel","red pouch"]}, +{"id":"21639","label":"moving spoon and fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["spoon","fork"]}, +{"id":"130777","label":"bending book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["book"]}, +{"id":"83348","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"84600","label":"holding cards in front of paper","template":"Holding [something] in front of [something]","placeholders":["cards","paper"]}, +{"id":"26309","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"173805","label":"pretending to take a piece of cloth from a pouch","template":"Pretending to take [something] from [somewhere]","placeholders":["a piece of cloth","a pouch"]}, +{"id":"184904","label":"pushing stacking blocks so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stacking blocks"]}, +{"id":"102659","label":"moving pink toothbrush case down","template":"Moving [something] down","placeholders":["pink toothbrush case"]}, +{"id":"146385","label":"holding a pen","template":"Holding [something]","placeholders":["a pen"]}, +{"id":"133969","label":"tilting dvd box with scotch tape on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["dvd box","scotch tape"]}, +{"id":"151821","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"18963","label":"picking coin up","template":"Picking [something] up","placeholders":["coin"]}, +{"id":"158112","label":"moving display of laptop","template":"Moving [part] of [something]","placeholders":["display","laptop"]}, +{"id":"124741","label":"showing that container is empty","template":"Showing that [something] is empty","placeholders":["container"]}, +{"id":"107539","label":"lifting a book up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a book"]}, +{"id":"61772","label":"tearing plastic-cover into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic-cover"]}, +{"id":"95949","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"168176","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"138772","label":"closing notebook","template":"Closing [something]","placeholders":["notebook"]}, +{"id":"188691","label":"wiping something off of something","template":"Wiping [something] off of [something]","placeholders":["something","something"]}, +{"id":"104364","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"48691","label":"taking buttons","template":"Taking [one of many similar things on the table]","placeholders":["buttons"]}, +{"id":"109151","label":"pushing a gallon of bleach so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a gallon of bleach"]}, +{"id":"115507","label":"tilting a teaspoon with a cutting board on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a teaspoon","a cutting board"]}, +{"id":"128053","label":"dropping a sandal behind a box","template":"Dropping [something] behind [something]","placeholders":["a sandal","a box"]}, +{"id":"180082","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"186864","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"203884","label":"poking deoderant so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["deoderant"]}, +{"id":"142226","label":"laying videotape on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["videotape"]}, +{"id":"202310","label":"pretending or trying and failing to twist a medicine bottle","template":"Pretending or trying and failing to twist [something]","placeholders":["a medicine bottle"]}, +{"id":"116507","label":"putting brush on a surface","template":"Putting [something] on a surface","placeholders":["brush"]}, +{"id":"48879","label":"attaching credit card to black box","template":"Attaching [something] to [something]","placeholders":["credit card","black box"]}, +{"id":"168268","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"99986","label":"pushing one tealight candle from right to left","template":"Pushing [something] from right to left","placeholders":["one tealight candle"]}, +{"id":"95507","label":"taking sponge out of mug","template":"Taking [something] out of [something]","placeholders":["sponge","mug"]}, +{"id":"127081","label":"moving stick up","template":"Moving [something] up","placeholders":["stick"]}, +{"id":"58717","label":"moving door of washing machine","template":"Moving [part] of [something]","placeholders":["door","washing machine"]}, +{"id":"169646","label":"dropping paper behind body","template":"Dropping [something] behind [something]","placeholders":["paper","body"]}, +{"id":"10070","label":"pushing an usb from right to left","template":"Pushing [something] from right to left","placeholders":["an usb"]}, +{"id":"132053","label":"removing a bag, revealing a hair brush behind","template":"Removing [something], revealing [something] behind","placeholders":["a bag","a hair brush"]}, +{"id":"209637","label":"turning metal box upside down","template":"Turning [something] upside down","placeholders":["metal box"]}, +{"id":"161288","label":"pulling a lead out of a plug","template":"Pulling [something] out of [something]","placeholders":["a lead","a plug"]}, +{"id":"17132","label":"pretending to throw a shoe","template":"Pretending to throw [something]","placeholders":["a shoe"]}, +{"id":"199341","label":"opening paint tube","template":"Opening [something]","placeholders":["paint tube"]}, +{"id":"70540","label":"throwing pick","template":"Throwing [something]","placeholders":["pick"]}, +{"id":"197866","label":"spilling water next to a salt shaker","template":"Spilling [something] next to [something]","placeholders":["water","a salt shaker"]}, +{"id":"7216","label":"putting three pin plug onto box","template":"Putting [something] onto [something]","placeholders":["three pin plug","box"]}, +{"id":"46385","label":"taking gum","template":"Taking [one of many similar things on the table]","placeholders":["gum"]}, +{"id":"20889","label":"putting cooler in front of glass","template":"Putting [something] in front of [something]","placeholders":["cooler","glass"]}, +{"id":"51590","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"46725","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"93983","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"132956","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"88829","label":"pretending to sprinkle air onto a figurine","template":"Pretending to sprinkle air onto [something]","placeholders":["a figurine"]}, +{"id":"74260","label":"lifting up one end of a paper without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a paper"]}, +{"id":"114145","label":"lifting bottle up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["bottle"]}, +{"id":"70608","label":"putting letter into envelope","template":"Putting [something] into [something]","placeholders":["letter","envelope"]}, +{"id":"129255","label":"laying plastic cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["plastic cup"]}, +{"id":"113920","label":"dropping bear behind chair","template":"Dropping [something] behind [something]","placeholders":["bear","chair"]}, +{"id":"140058","label":"dropping bottle behind dustbin","template":"Dropping [something] behind [something]","placeholders":["bottle","dustbin"]}, +{"id":"103410","label":"throwing lid in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["lid"]}, +{"id":"30588","label":"picking water bottle up","template":"Picking [something] up","placeholders":["water bottle"]}, +{"id":"72005","label":"tilting sheet of paper with salt on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["sheet of paper","salt"]}, +{"id":"9632","label":"turning snack cup upside down","template":"Turning [something] upside down","placeholders":["snack cup"]}, +{"id":"145219","label":"uncovering air conditioner and window from blinds","template":"Uncovering [something]","placeholders":["air conditioner and window from blinds"]}, +{"id":"127300","label":"wiping milk off of table","template":"Wiping [something] off of [something]","placeholders":["milk","table"]}, +{"id":"153493","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"117154","label":"attaching toothbrush to toothbrush handle","template":"Attaching [something] to [something]","placeholders":["toothbrush","toothbrush handle"]}, +{"id":"56419","label":"showing puppies to the camera","template":"Showing [something] to the camera","placeholders":["puppies"]}, +{"id":"40972","label":"a peace of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a peace of paper"]}, +{"id":"198125","label":"dropping black cloth into cookie box","template":"Dropping [something] into [something]","placeholders":["black cloth","cookie box"]}, +{"id":"148848","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"59360","label":"putting bottled ponzu sauce on a surface","template":"Putting [something] on a surface","placeholders":["bottled ponzu sauce"]}, +{"id":"154998","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"108360","label":"showing coconut shell behind the oil bottle","template":"Showing [something] behind [something]","placeholders":["coconut shell","the oil bottle"]}, +{"id":"98224","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"105459","label":"piling tomatoes up","template":"Piling [something] up","placeholders":["tomatoes"]}, +{"id":"129939","label":"putting notebook onto box","template":"Putting [something] onto [something]","placeholders":["notebook","box"]}, +{"id":"152678","label":"picking biscuit pack up","template":"Picking [something] up","placeholders":["biscuit pack"]}, +{"id":"171440","label":"taking paper from desk","template":"Taking [something] from [somewhere]","placeholders":["paper","desk"]}, +{"id":"170148","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"75832","label":"lifting up one end of book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["book"]}, +{"id":"216150","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"86783","label":"pretending to pick a remote control up","template":"Pretending to pick [something] up","placeholders":["a remote control"]}, +{"id":"173","label":"removing cup, revealing little cup behind","template":"Removing [something], revealing [something] behind","placeholders":["cup","little cup"]}, +{"id":"142710","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"177390","label":"taking sandal from floor","template":"Taking [something] from [somewhere]","placeholders":["sandal","floor"]}, +{"id":"180417","label":"pushing cap from right to left","template":"Pushing [something] from right to left","placeholders":["cap"]}, +{"id":"125525","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"146072","label":"digging ball out of ground","template":"Digging [something] out of [something]","placeholders":["ball","ground"]}, +{"id":"133190","label":"bending canela until it breaks","template":"Bending [something] until it breaks","placeholders":["canela"]}, +{"id":"115653","label":"letting dumbell roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["dumbell"]}, +{"id":"129845","label":"a car toy colliding with a car toy and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a car toy","a car toy"]}, +{"id":"4150","label":"moving cough drop closer to cough drop","template":"Moving [something] closer to [something]","placeholders":["cough drop","cough drop"]}, +{"id":"168946","label":"putting 4 pens onto a black file","template":"Putting [number of] [something] onto [something]","placeholders":["4","pens","a black file"]}, +{"id":"153198","label":"pushing remote control from left to right","template":"Pushing [something] from left to right","placeholders":["remote control"]}, +{"id":"15914","label":"picking a microphone up","template":"Picking [something] up","placeholders":["a microphone"]}, +{"id":"180895","label":"letting basketball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["basketball"]}, +{"id":"24959","label":"poking a hole into slime","template":"Poking a hole into [something soft]","placeholders":["slime"]}, +{"id":"22313","label":"tearing a leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["a leaf"]}, +{"id":"143787","label":"poking an apple so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["an apple"]}, +{"id":"85601","label":"putting a marker among other markers on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a marker among other markers on the table"]}, +{"id":"12584","label":"putting raw chicken meat into bowl","template":"Putting [something] into [something]","placeholders":["raw chicken meat","bowl"]}, +{"id":"39793","label":"pushing tumbler so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["tumbler"]}, +{"id":"118717","label":"holding cards behind paper","template":"Holding [something] behind [something]","placeholders":["cards","paper"]}, +{"id":"112614","label":"bending a fake flower so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fake flower"]}, +{"id":"53979","label":"digging egg out of salt","template":"Digging [something] out of [something]","placeholders":["egg","salt"]}, +{"id":"122190","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"72519","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"20048","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"35951","label":"trimmer falling like a rock","template":"[Something] falling like a rock","placeholders":["trimmer"]}, +{"id":"44385","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209009","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"183094","label":"pretending to squeeze perfume","template":"Pretending to squeeze [something]","placeholders":["perfume"]}, +{"id":"197171","label":"folding a paper note","template":"Folding [something]","placeholders":["a paper note"]}, +{"id":"16359","label":"pretending to poke a cup","template":"Pretending to poke [something]","placeholders":["a cup"]}, +{"id":"138590","label":"twisting washing machine nob","template":"Twisting [something]","placeholders":["washing machine nob"]}, +{"id":"160183","label":"dropping a matchbox in front of a handkerchief","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a handkerchief"]}, +{"id":"191516","label":"pretending to squeeze a bottle","template":"Pretending to squeeze [something]","placeholders":["a bottle"]}, +{"id":"208727","label":"scissors colliding with a book and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["scissors","a book"]}, +{"id":"167036","label":"burying coin in flour","template":"Burying [something] in [something]","placeholders":["coin","flour"]}, +{"id":"132274","label":"dropping purse onto floor","template":"Dropping [something] onto [something]","placeholders":["purse","floor"]}, +{"id":"186560","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"205127","label":"moving banana down","template":"Moving [something] down","placeholders":["banana"]}, +{"id":"41075","label":"pushing something from right to left","template":"Pushing [something] from right to left","placeholders":["something"]}, +{"id":"141065","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"122659","label":"dropping a sponge into a plastic bowl","template":"Dropping [something] into [something]","placeholders":["a sponge","a plastic bowl"]}, +{"id":"85932","label":"pencil falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil"]}, +{"id":"149624","label":"putting ball next to airplane","template":"Putting [something] next to [something]","placeholders":["ball","airplane"]}, +{"id":"139571","label":"spinning toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toy"]}, +{"id":"202675","label":"pretending to take brush out of drawer","template":"Pretending to take [something] out of [something]","placeholders":["brush","drawer"]}, +{"id":"52276","label":"putting 3 plastic bags onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["3","plastic bags","a box"]}, +{"id":"52698","label":"wiping marker off of a board","template":"Wiping [something] off of [something]","placeholders":["marker","a board"]}, +{"id":"50863","label":"pretending to take nail polish from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["nail polish","countertop"]}, +{"id":"197127","label":"putting fork onto napkin","template":"Putting [something] onto [something]","placeholders":["fork","napkin"]}, +{"id":"35637","label":"piling plates up","template":"Piling [something] up","placeholders":["plates"]}, +{"id":"74716","label":"holding box","template":"Holding [something]","placeholders":["box"]}, +{"id":"88623","label":"flannel falling like a rock","template":"[Something] falling like a rock","placeholders":["flannel"]}, +{"id":"106567","label":"turning kitchen roll upside down","template":"Turning [something] upside down","placeholders":["kitchen roll"]}, +{"id":"3362","label":"putting the bottle next to the bowl","template":"Putting [something] next to [something]","placeholders":["the bottle","the bowl"]}, +{"id":"136459","label":"tilting plate with cards on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","cards"]}, +{"id":"144502","label":"pretending or trying and failing to twist a mustard bottle cap","template":"Pretending or trying and failing to twist [something]","placeholders":["a mustard bottle cap"]}, +{"id":"43919","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"59046","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"72309","label":"turning the camera downwards while filming red watch box","template":"Turning the camera downwards while filming [something]","placeholders":["red watch box"]}, +{"id":"180295","label":"moving a ruler and masking tape away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a ruler","masking tape"]}, +{"id":"119434","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"218468","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"113071","label":"moving banana away from the camera","template":"Moving [something] away from the camera","placeholders":["banana"]}, +{"id":"112465","label":"pretending to squeeze a ceramic mug","template":"Pretending to squeeze [something]","placeholders":["a ceramic mug"]}, +{"id":"200108","label":"holding cushion over chair","template":"Holding [something] over [something]","placeholders":["cushion","chair"]}, +{"id":"3986","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"53557","label":"spinning hand fan that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["hand fan"]}, +{"id":"74976","label":"dropping cloth onto coaster","template":"Dropping [something] onto [something]","placeholders":["cloth","coaster"]}, +{"id":"70912","label":"tipping cup with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","water","water"]}, +{"id":"83971","label":"spinning deodorant that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["deodorant"]}, +{"id":"192731","label":"lifting plate with watermelon on it","template":"Lifting [something] with [something] on it","placeholders":["plate","watermelon"]}, +{"id":"120500","label":"spinning brush so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["brush"]}, +{"id":"185188","label":"uncovering a table tennis ball","template":"Uncovering [something]","placeholders":["a table tennis ball"]}, +{"id":"165202","label":"spilling water onto chair","template":"Spilling [something] onto [something]","placeholders":["water","chair"]}, +{"id":"119990","label":"putting roll of paper towels upright on the table","template":"Putting [something] upright on the table","placeholders":["roll of paper towels"]}, +{"id":"45688","label":"putting vessel onto mixer grinder","template":"Putting [something] onto [something]","placeholders":["vessel","mixer grinder"]}, +{"id":"131064","label":"covering books with bag","template":"Covering [something] with [something]","placeholders":["books","bag"]}, +{"id":"208718","label":"pulling headphones from right to left","template":"Pulling [something] from right to left","placeholders":["headphones"]}, +{"id":"89375","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"166394","label":"putting matchstick","template":"Putting [something similar to other things that are already on the table]","placeholders":["matchstick"]}, +{"id":"119685","label":"moving cup away from tv remote","template":"Moving [something] away from [something]","placeholders":["cup","tv remote"]}, +{"id":"30925","label":"poking cigarettes so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cigarettes"]}, +{"id":"120454","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"106705","label":"putting tubes into glass beaker","template":"Putting [something] into [something]","placeholders":["tubes","glass beaker"]}, +{"id":"135039","label":"pushing aim toothpaste from left to right","template":"Pushing [something] from left to right","placeholders":["aim toothpaste"]}, +{"id":"120787","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"67088","label":"pretending to pick eletronic calculator up","template":"Pretending to pick [something] up","placeholders":["eletronic calculator"]}, +{"id":"92076","label":"moving dry cells towards the camera","template":"Moving [something] towards the camera","placeholders":["dry cells"]}, +{"id":"124052","label":"throwing orange color ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["orange color ball"]}, +{"id":"204430","label":"pushing a roll of toilet paper onto a box","template":"Pushing [something] onto [something]","placeholders":["a roll of toilet paper","a box"]}, +{"id":"72066","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"5524","label":"marker pen falling like a rock","template":"[Something] falling like a rock","placeholders":["marker pen"]}, +{"id":"69496","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"91170","label":"pretending to take blinds from porch","template":"Pretending to take [something] from [somewhere]","placeholders":["blinds","porch"]}, +{"id":"77203","label":"plugging charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall outlet"]}, +{"id":"168603","label":"lifting wallet with eraser on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","eraser"]}, +{"id":"117094","label":"wiping dust off of table","template":"Wiping [something] off of [something]","placeholders":["dust","table"]}, +{"id":"196391","label":"lifting up one end of spoon without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["spoon"]}, +{"id":"48582","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"206735","label":"removing bottle, revealing sharpener behind","template":"Removing [something], revealing [something] behind","placeholders":["bottle","sharpener"]}, +{"id":"167028","label":"lifting box with razor blade on it","template":"Lifting [something] with [something] on it","placeholders":["box","razor blade"]}, +{"id":"58090","label":"plugging ethernet cable into laptop","template":"Plugging [something] into [something]","placeholders":["ethernet cable","laptop"]}, +{"id":"159174","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"63798","label":"tilting plate with tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","tape"]}, +{"id":"41886","label":"showing kettle behind backpack","template":"Showing [something] behind [something]","placeholders":["kettle","backpack"]}, +{"id":"206264","label":"rolling water ballon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["water ballon"]}, +{"id":"20592","label":"putting a sweet next to the other sweets","template":"Putting [something similar to other things that are already on the table]","placeholders":["a sweet next to the other sweets"]}, +{"id":"155191","label":"holding candle","template":"Holding [something]","placeholders":["candle"]}, +{"id":"105884","label":"stuffing cardigan into bag","template":"Stuffing [something] into [something]","placeholders":["cardigan","bag"]}, +{"id":"182569","label":"holding fishing gear behind stereo","template":"Holding [something] behind [something]","placeholders":["fishing gear","stereo"]}, +{"id":"52424","label":"dropping a comb in front of a shoe brush","template":"Dropping [something] in front of [something]","placeholders":["a comb","a shoe brush"]}, +{"id":"111807","label":"holding stick","template":"Holding [something]","placeholders":["stick"]}, +{"id":"119087","label":"hitting a pet food bowl with a flipflop","template":"Hitting [something] with [something]","placeholders":["a pet food bowl","a flipflop"]}, +{"id":"128515","label":"uncovering a small container","template":"Uncovering [something]","placeholders":["a small container"]}, +{"id":"134241","label":"pretending to pick leaf up","template":"Pretending to pick [something] up","placeholders":["leaf"]}, +{"id":"175722","label":"holding lighter over foil ball","template":"Holding [something] over [something]","placeholders":["lighter","foil ball"]}, +{"id":"90824","label":"lifting a book with a cup on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a cup"]}, +{"id":"98663","label":"tilting placemat with paper on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["placemat","paper"]}, +{"id":"197005","label":"holding orange notebook","template":"Holding [something]","placeholders":["orange notebook"]}, +{"id":"1369","label":"moving a water bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a water bottle"]}, +{"id":"176552","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"220724","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"212092","label":"turning the camera left while filming hair comb","template":"Turning the camera left while filming [something]","placeholders":["hair comb"]}, +{"id":"10812","label":"attaching head of pen to body of pen","template":"Attaching [something] to [something]","placeholders":["head of pen","body of pen"]}, +{"id":"35758","label":"folding blanket","template":"Folding [something]","placeholders":["blanket"]}, +{"id":"180205","label":"taking a pillow","template":"Taking [one of many similar things on the table]","placeholders":["a pillow"]}, +{"id":"16859","label":"throwing puzzle piece","template":"Throwing [something]","placeholders":["puzzle piece"]}, +{"id":"191949","label":"dropping keys behind bag","template":"Dropping [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"72263","label":"spilling water onto a polythene bag","template":"Spilling [something] onto [something]","placeholders":["water","a polythene bag"]}, +{"id":"213956","label":"dropping stapler next to pink hairclip","template":"Dropping [something] next to [something]","placeholders":["stapler","pink hairclip"]}, +{"id":"170676","label":"stacking 2 sets of coins","template":"Stacking [number of] [something]","placeholders":["2 sets of","coins"]}, +{"id":"44130","label":"showing duster behind battery","template":"Showing [something] behind [something]","placeholders":["duster","battery"]}, +{"id":"144928","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"188634","label":"moving coconut towards the camera","template":"Moving [something] towards the camera","placeholders":["coconut"]}, +{"id":"150744","label":"turning the camera downwards while filming black remote","template":"Turning the camera downwards while filming [something]","placeholders":["black remote"]}, +{"id":"139784","label":"hitting spoon with fork","template":"Hitting [something] with [something]","placeholders":["spoon","fork"]}, +{"id":"81322","label":"pushing a textsurfer from left to right","template":"Pushing [something] from left to right","placeholders":["a textsurfer"]}, +{"id":"1152","label":"turning the camera left while filming the wall","template":"Turning the camera left while filming [something]","placeholders":["the wall"]}, +{"id":"44378","label":"pretending to squeeze book","template":"Pretending to squeeze [something]","placeholders":["book"]}, +{"id":"156929","label":"taking one plastic cover of many similar plastic covers on the table","template":"Taking [one of many similar things on the table]","placeholders":["one plastic cover of many similar plastic covers on the table"]}, +{"id":"119223","label":"putting paper roll upright on the table","template":"Putting [something] upright on the table","placeholders":["paper roll"]}, +{"id":"208363","label":"spilling coffee onto coffee table","template":"Spilling [something] onto [something]","placeholders":["coffee","coffee table"]}, +{"id":"136579","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"55300","label":"pushing plate from right to left","template":"Pushing [something] from right to left","placeholders":["plate"]}, +{"id":"19116","label":"tilting plate with bread on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","bread"]}, +{"id":"213541","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"77709","label":"turning notebook upside down","template":"Turning [something] upside down","placeholders":["notebook"]}, +{"id":"213228","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"77606","label":"pushing dvd case from left to right","template":"Pushing [something] from left to right","placeholders":["dvd case"]}, +{"id":"111708","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"135254","label":"putting clothes peg into mug","template":"Putting [something] into [something]","placeholders":["clothes peg","mug"]}, +{"id":"118193","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"69206","label":"taking twine out of vase","template":"Taking [something] out of [something]","placeholders":["twine","vase"]}, +{"id":"138392","label":"turning paint bottle upside down","template":"Turning [something] upside down","placeholders":["paint bottle"]}, +{"id":"12911","label":"holding plastic cup","template":"Holding [something]","placeholders":["plastic cup"]}, +{"id":"164587","label":"moving ball and ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["ball","ball"]}, +{"id":"139077","label":"tilting dvd box with scotch tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["dvd box","scotch tape"]}, +{"id":"115139","label":"letting tube roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tube"]}, +{"id":"135917","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"112340","label":"putting pencil underneath table","template":"Putting [something] underneath [something]","placeholders":["pencil","table"]}, +{"id":"82514","label":"spreading butter onto toast","template":"Spreading [something] onto [something]","placeholders":["butter","toast"]}, +{"id":"112542","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"55963","label":"holding bottle in front of glass desk","template":"Holding [something] in front of [something]","placeholders":["bottle","glass desk"]}, +{"id":"58696","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"65790","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213545","label":"moving bus and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bus","box"]}, +{"id":"168262","label":"putting a small bear next to a large bear","template":"Putting [something] next to [something]","placeholders":["a small bear","a large bear"]}, +{"id":"209459","label":"pushing pushing plastic spay so that it almost falls off but doesn't so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pushing plastic spay so that it almost falls off but doesn't"]}, +{"id":"116945","label":"covering cow with pillow","template":"Covering [something] with [something]","placeholders":["cow","pillow"]}, +{"id":"149395","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"175228","label":"lifting a tape with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["a tape","scissors"]}, +{"id":"206947","label":"uncovering bed","template":"Uncovering [something]","placeholders":["bed"]}, +{"id":"73559","label":"pretending to take chager out of outlet","template":"Pretending to take [something] out of [something]","placeholders":["chager","outlet"]}, +{"id":"187799","label":"moving usb closer to usb cable","template":"Moving [something] closer to [something]","placeholders":["usb","usb cable"]}, +{"id":"60712","label":"pretending to take black cloth out of green cup","template":"Pretending to take [something] out of [something]","placeholders":["black cloth","green cup"]}, +{"id":"36529","label":"taking orange of many similar","template":"Taking [one of many similar things on the table]","placeholders":["orange of many similar"]}, +{"id":"217557","label":"pulling a pen from left to right","template":"Pulling [something] from left to right","placeholders":["a pen"]}, +{"id":"101365","label":"twisting a cap","template":"Twisting [something]","placeholders":["a cap"]}, +{"id":"117328","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78916","label":"pushing smartphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["smartphone"]}, +{"id":"19383","label":"pretending to spread air onto an arm","template":"Pretending to spread air onto [something]","placeholders":["an arm"]}, +{"id":"29999","label":"pushing glasses from left to right","template":"Pushing [something] from left to right","placeholders":["glasses"]}, +{"id":"197762","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"18435","label":"pretending to take coin from box","template":"Pretending to take [something] from [somewhere]","placeholders":["coin","box"]}, +{"id":"172583","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"168233","label":"holding a nail next to the glass","template":"Holding [something] next to [something]","placeholders":["a nail","the glass"]}, +{"id":"160457","label":"pushing a purple pen so it spins","template":"Pushing [something] so it spins","placeholders":["a purple pen"]}, +{"id":"121671","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"190494","label":"dropping a clothes hanger behind a basket","template":"Dropping [something] behind [something]","placeholders":["a clothes hanger","a basket"]}, +{"id":"210975","label":"touching (without moving) the hand of a doll","template":"Touching (without moving) [part] of [something]","placeholders":["the hand","a doll"]}, +{"id":"152209","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"29667","label":"a ticket falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a ticket"]}, +{"id":"186123","label":"pushing sunglasses with bottle","template":"Pushing [something] with [something]","placeholders":["sunglasses","bottle"]}, +{"id":"138821","label":"trying to bend tablet so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["tablet"]}, +{"id":"160477","label":"sprinkling water onto plant","template":"Sprinkling [something] onto [something]","placeholders":["water","plant"]}, +{"id":"54893","label":"pulling apple from left to right","template":"Pulling [something] from left to right","placeholders":["apple"]}, +{"id":"24879","label":"pushing small sunscreen lotion from right to left","template":"Pushing [something] from right to left","placeholders":["small sunscreen lotion"]}, +{"id":"110655","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"209566","label":"spilling water next to a fork","template":"Spilling [something] next to [something]","placeholders":["water","a fork"]}, +{"id":"68946","label":"stuffing playdoh into its container","template":"Stuffing [something] into [something]","placeholders":["playdoh","its container"]}, +{"id":"71563","label":"pushing orange bowl from left to right","template":"Pushing [something] from left to right","placeholders":["orange bowl"]}, +{"id":"17103","label":"bending cup so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cup"]}, +{"id":"130178","label":"pulling jar from right to left","template":"Pulling [something] from right to left","placeholders":["jar"]}, +{"id":"40302","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"22114","label":"putting plate","template":"Putting [something similar to other things that are already on the table]","placeholders":["plate"]}, +{"id":"182852","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"149937","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"152168","label":"spinning cantaloupe so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cantaloupe"]}, +{"id":"137056","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"134687","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"216143","label":"putting big bottle in front of small bottle","template":"Putting [something] in front of [something]","placeholders":["big bottle","small bottle"]}, +{"id":"179150","label":"pretending to take bottle out of bowl","template":"Pretending to take [something] out of [something]","placeholders":["bottle","bowl"]}, +{"id":"111536","label":"attaching lid to container","template":"Attaching [something] to [something]","placeholders":["lid","container"]}, +{"id":"139019","label":"pulling torch from right to left","template":"Pulling [something] from right to left","placeholders":["torch"]}, +{"id":"184666","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"161732","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"15877","label":"spinning a light bulb so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a light bulb"]}, +{"id":"135024","label":"approaching a window with your camera","template":"Approaching [something] with your camera","placeholders":["a window"]}, +{"id":"60687","label":"trying but failing to attach a wallet to a picture because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a wallet","a picture"]}, +{"id":"55380","label":"moving one leg of the doll","template":"Moving [part] of [something]","placeholders":["one leg","the doll"]}, +{"id":"29316","label":"pushing gift box with purse","template":"Pushing [something] with [something]","placeholders":["gift box","purse"]}, +{"id":"23536","label":"plugging air freshener into socket","template":"Plugging [something] into [something]","placeholders":["air freshener","socket"]}, +{"id":"169687","label":"putting knife into mug","template":"Putting [something] into [something]","placeholders":["knife","mug"]}, +{"id":"197143","label":"taking ball point pen","template":"Taking [one of many similar things on the table]","placeholders":["ball point pen"]}, +{"id":"33250","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"26708","label":"trying to bend spanner so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["spanner"]}, +{"id":"207205","label":"pretending to pick a child's toy up","template":"Pretending to pick [something] up","placeholders":["a child's toy"]}, +{"id":"60656","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"122253","label":"holding soldering wire reel over black plastic box","template":"Holding [something] over [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"60129","label":"tipping blocks over","template":"Tipping [something] over","placeholders":["blocks"]}, +{"id":"132850","label":"trying to pour water into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","cup"]}, +{"id":"104025","label":"turning the camera upwards while filming iron","template":"Turning the camera upwards while filming [something]","placeholders":["iron"]}, +{"id":"111120","label":"laying a battery on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a battery"]}, +{"id":"3020","label":"turning duster upside down","template":"Turning [something] upside down","placeholders":["duster"]}, +{"id":"174759","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"83526","label":"rolling toy on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["toy"]}, +{"id":"186714","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"93897","label":"pushing flower so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["flower"]}, +{"id":"214066","label":"turning the camera left while filming motorbike","template":"Turning the camera left while filming [something]","placeholders":["motorbike"]}, +{"id":"4804","label":"pushing red marker pen off of blue marker pen","template":"Pushing [something] off of [something]","placeholders":["red marker pen","blue marker pen"]}, +{"id":"159909","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"91009","label":"pushing knife from left to right","template":"Pushing [something] from left to right","placeholders":["knife"]}, +{"id":"63323","label":"holding bootle next to screen","template":"Holding [something] next to [something]","placeholders":["bootle","screen"]}, +{"id":"33831","label":"putting pen and spool of thread on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","spool of thread"]}, +{"id":"14097","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"104073","label":"dropping a wallet onto the floor","template":"Dropping [something] onto [something]","placeholders":["a wallet","the floor"]}, +{"id":"31366","label":"pretending to sprinkle air onto card","template":"Pretending to sprinkle air onto [something]","placeholders":["card"]}, +{"id":"78358","label":"holding candle in front of picture","template":"Holding [something] in front of [something]","placeholders":["candle","picture"]}, +{"id":"195051","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"50872","label":"sprinkling powdered sugar onto a jar","template":"Sprinkling [something] onto [something]","placeholders":["powdered sugar","a jar"]}, +{"id":"152479","label":"pulling beaker onto phone","template":"Pulling [something] onto [something]","placeholders":["beaker","phone"]}, +{"id":"73531","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"138814","label":"pretending to put something next to something","template":"Pretending to put [something] next to [something]","placeholders":["something","something"]}, +{"id":"77221","label":"putting glasses upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["glasses"]}, +{"id":"169351","label":"paper boat falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper boat"]}, +{"id":"162351","label":"showing watches to the camera","template":"Showing [something] to the camera","placeholders":["watches"]}, +{"id":"83168","label":"putting a tomato","template":"Putting [something similar to other things that are already on the table]","placeholders":["a tomato"]}, +{"id":"121681","label":"holding hole puncher over playstation controller","template":"Holding [something] over [something]","placeholders":["hole puncher","playstation controller"]}, +{"id":"5294","label":"moving opener of water tap","template":"Moving [part] of [something]","placeholders":["opener","water tap"]}, +{"id":"122810","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"201597","label":"pretending to take cup from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cup","table"]}, +{"id":"78056","label":"putting pizza cutter","template":"Putting [something similar to other things that are already on the table]","placeholders":["pizza cutter"]}, +{"id":"172666","label":"putting mug in front of knife","template":"Putting [something] in front of [something]","placeholders":["mug","knife"]}, +{"id":"77125","label":"moving a cushion across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cushion"]}, +{"id":"135034","label":"letting a plush ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a plush ball"]}, +{"id":"131374","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"109443","label":"taking peanut butter jar from cabinet","template":"Taking [something] from [somewhere]","placeholders":["peanut butter jar","cabinet"]}, +{"id":"172769","label":"holding chapstick over cup","template":"Holding [something] over [something]","placeholders":["chapstick","cup"]}, +{"id":"205120","label":"lifting blue colour glasses up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["blue colour glasses"]}, +{"id":"99271","label":"spilling water onto concrete","template":"Spilling [something] onto [something]","placeholders":["water","concrete"]}, +{"id":"9119","label":"pushing powerbank so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["powerbank"]}, +{"id":"160495","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"15657","label":"uncovering usb","template":"Uncovering [something]","placeholders":["usb"]}, +{"id":"186607","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"104478","label":"holding cap in front of water bottle","template":"Holding [something] in front of [something]","placeholders":["cap","water bottle"]}, +{"id":"177671","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"137138","label":"poking waterbottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["waterbottle"]}, +{"id":"149534","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"107036","label":"putting memory card reader and memory card on the table","template":"Putting [something] and [something] on the table","placeholders":["memory card reader","memory card"]}, +{"id":"94632","label":"pulling black hairclip from left to right","template":"Pulling [something] from left to right","placeholders":["black hairclip"]}, +{"id":"174453","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"214827","label":"failing to put a book into a shoe because the book does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a book","a shoe","the book"]}, +{"id":"51607","label":"spilling blocks onto floor","template":"Spilling [something] onto [something]","placeholders":["blocks","floor"]}, +{"id":"77531","label":"plugging headphone into cellphone","template":"Plugging [something] into [something]","placeholders":["headphone","cellphone"]}, +{"id":"37029","label":"taking lighter","template":"Taking [one of many similar things on the table]","placeholders":["lighter"]}, +{"id":"5705","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"69854","label":"putting plastic screwcap into mug","template":"Putting [something] into [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"98419","label":"unfolding handkerchief","template":"Unfolding [something]","placeholders":["handkerchief"]}, +{"id":"122060","label":"putting a shoulder bag onto a globe which cant support it so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a shoulder bag","a globe which cant support it"]}, +{"id":"142936","label":"lifting cell phone with water bottle on it","template":"Lifting [something] with [something] on it","placeholders":["cell phone","water bottle"]}, +{"id":"154128","label":"turning the camera left while filming phone case","template":"Turning the camera left while filming [something]","placeholders":["phone case"]}, +{"id":"203286","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"130446","label":"taking leaves out of tree","template":"Taking [something] out of [something]","placeholders":["leaves","tree"]}, +{"id":"8713","label":"plugging light into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["light","socket"]}, +{"id":"153630","label":"squeezing kerchief","template":"Squeezing [something]","placeholders":["kerchief"]}, +{"id":"29583","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"114907","label":"twisting (wringing) face cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["face cloth"]}, +{"id":"122534","label":"taking a screwdriver","template":"Taking [one of many similar things on the table]","placeholders":["a screwdriver"]}, +{"id":"178054","label":"pulling jacket from right to left","template":"Pulling [something] from right to left","placeholders":["jacket"]}, +{"id":"88039","label":"wiping orange juice off of counter","template":"Wiping [something] off of [something]","placeholders":["orange juice","counter"]}, +{"id":"122161","label":"a dollar bill falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a dollar bill"]}, +{"id":"93560","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"26289","label":"moving wallet and knife closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wallet","knife"]}, +{"id":"42581","label":"pushing torch with dvd case","template":"Pushing [something] with [something]","placeholders":["torch","dvd case"]}, +{"id":"189936","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"190899","label":"putting a pencil on a surface","template":"Putting [something] on a surface","placeholders":["a pencil"]}, +{"id":"198683","label":"pushing pink box from right to left","template":"Pushing [something] from right to left","placeholders":["pink box"]}, +{"id":"191438","label":"lifting up one end of charger, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["charger"]}, +{"id":"216777","label":"holding ink over hand","template":"Holding [something] over [something]","placeholders":["ink","hand"]}, +{"id":"209406","label":"poking glass so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["glass"]}, +{"id":"148002","label":"pretending to squeeze oven mitt","template":"Pretending to squeeze [something]","placeholders":["oven mitt"]}, +{"id":"165513","label":"showing a money box behind a bag","template":"Showing [something] behind [something]","placeholders":["a money box","a bag"]}, +{"id":"121290","label":"picking tape measure up","template":"Picking [something] up","placeholders":["tape measure"]}, +{"id":"70655","label":"holding controller over headset","template":"Holding [something] over [something]","placeholders":["controller","headset"]}, +{"id":"172087","label":"taking hairband from table","template":"Taking [something] from [somewhere]","placeholders":["hairband","table"]}, +{"id":"102830","label":"tipping hand soap over","template":"Tipping [something] over","placeholders":["hand soap"]}, +{"id":"192399","label":"putting pen on the edge of glass so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["pen","glass"]}, +{"id":"60988","label":"pushing calculator with a bottle","template":"Pushing [something] with [something]","placeholders":["calculator","a bottle"]}, +{"id":"202588","label":"putting ruler on a surface","template":"Putting [something] on a surface","placeholders":["ruler"]}, +{"id":"123956","label":"turning the camera downwards while filming toy idol","template":"Turning the camera downwards while filming [something]","placeholders":["toy idol"]}, +{"id":"21338","label":"plugging charger into the wall","template":"Plugging [something] into [something]","placeholders":["charger","the wall"]}, +{"id":"87627","label":"poking curtain so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["curtain"]}, +{"id":"177974","label":"moving mobile and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mobile","remote"]}, +{"id":"212414","label":"pouring water into bucket until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","bucket"]}, +{"id":"24406","label":"holding gourd","template":"Holding [something]","placeholders":["gourd"]}, +{"id":"114562","label":"moving a cup closer to a book","template":"Moving [something] closer to [something]","placeholders":["a cup","a book"]}, +{"id":"13902","label":"turning the camera upwards while filming soft drink","template":"Turning the camera upwards while filming [something]","placeholders":["soft drink"]}, +{"id":"7244","label":"pretending or failing to wipe ink dot off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink dot","whiteboard"]}, +{"id":"112743","label":"twisting toys","template":"Twisting [something]","placeholders":["toys"]}, +{"id":"204602","label":"dropping cellphone behind book","template":"Dropping [something] behind [something]","placeholders":["cellphone","book"]}, +{"id":"192223","label":"moving ball and glass sheaker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ball","glass sheaker"]}, +{"id":"6108","label":"squeezing purple balloon pump","template":"Squeezing [something]","placeholders":["purple balloon pump"]}, +{"id":"213324","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"45161","label":"moving book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["book"]}, +{"id":"215032","label":"covering the ball with a towel","template":"Covering [something] with [something]","placeholders":["the ball","a towel"]}, +{"id":"41299","label":"pretending to open glass jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["glass jar"]}, +{"id":"139586","label":"putting knife behind mug","template":"Putting [something] behind [something]","placeholders":["knife","mug"]}, +{"id":"34302","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"156112","label":"showing that measuring cup is empty","template":"Showing that [something] is empty","placeholders":["measuring cup"]}, +{"id":"48295","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"5465","label":"moving led of thermos","template":"Moving [part] of [something]","placeholders":["led","thermos"]}, +{"id":"26587","label":"pushing glasses from right to left","template":"Pushing [something] from right to left","placeholders":["glasses"]}, +{"id":"191023","label":"putting usb cable into laptop","template":"Putting [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"103575","label":"holding blue lighter","template":"Holding [something]","placeholders":["blue lighter"]}, +{"id":"213594","label":"covering headphones with a towel","template":"Covering [something] with [something]","placeholders":["headphones","a towel"]}, +{"id":"182632","label":"putting a toothpick upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a toothpick"]}, +{"id":"106342","label":"stacking 2 board clips","template":"Stacking [number of] [something]","placeholders":["2","board clips"]}, +{"id":"30918","label":"picking tote bag up","template":"Picking [something] up","placeholders":["tote bag"]}, +{"id":"122497","label":"twisting a top off a drink","template":"Twisting [something]","placeholders":["a top off a drink"]}, +{"id":"212046","label":"dropping a card next to a plate","template":"Dropping [something] next to [something]","placeholders":["a card","a plate"]}, +{"id":"217723","label":"holding water bottle","template":"Holding [something]","placeholders":["water bottle"]}, +{"id":"163305","label":"picking a shoe up","template":"Picking [something] up","placeholders":["a shoe"]}, +{"id":"145268","label":"putting bowl on a surface","template":"Putting [something] on a surface","placeholders":["bowl"]}, +{"id":"26072","label":"holding pouch behind lamp","template":"Holding [something] behind [something]","placeholders":["pouch","lamp"]}, +{"id":"62021","label":"pretending to poke a book","template":"Pretending to poke [something]","placeholders":["a book"]}, +{"id":"205521","label":"putting battery onto rubix cube","template":"Putting [something] onto [something]","placeholders":["battery","rubix cube"]}, +{"id":"4377","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"94528","label":"turning the camera left while filming red booklet","template":"Turning the camera left while filming [something]","placeholders":["red booklet"]}, +{"id":"27664","label":"plugging charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall outlet"]}, +{"id":"144486","label":"squeezing tennis ball","template":"Squeezing [something]","placeholders":["tennis ball"]}, +{"id":"178765","label":"tipping something over","template":"Tipping [something] over","placeholders":["something"]}, +{"id":"5186","label":"moving away from bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["bottle"]}, +{"id":"19335","label":"showing mouse next to laptop","template":"Showing [something] next to [something]","placeholders":["mouse","laptop"]}, +{"id":"92574","label":"pouring water out of a jar","template":"Pouring [something] out of [something]","placeholders":["water","a jar"]}, +{"id":"39009","label":"hitting lamp with finger","template":"Hitting [something] with [something]","placeholders":["lamp","finger"]}, +{"id":"163669","label":"spinning a toy that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a toy"]}, +{"id":"131779","label":"unfolding a wash cloth","template":"Unfolding [something]","placeholders":["a wash cloth"]}, +{"id":"12095","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"204548","label":"covering stapler with red pouch","template":"Covering [something] with [something]","placeholders":["stapler","red pouch"]}, +{"id":"191320","label":"pulling clementine from behind of gift bag","template":"Pulling [something] from behind of [something]","placeholders":["clementine","gift bag"]}, +{"id":"117720","label":"tilting book with bat on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","bat"]}, +{"id":"63816","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"149000","label":"moving pc mouse closer to scissors","template":"Moving [something] closer to [something]","placeholders":["pc mouse","scissors"]}, +{"id":"16293","label":"plugging charger into mobile but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","mobile"]}, +{"id":"13939","label":"putting globe and unicorn on the table","template":"Putting [something] and [something] on the table","placeholders":["globe","unicorn"]}, +{"id":"197275","label":"showing a photo of a dog to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a dog"]}, +{"id":"506","label":"pretending to spread air onto paper","template":"Pretending to spread air onto [something]","placeholders":["paper"]}, +{"id":"107267","label":"spinning a key chain so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a key chain"]}, +{"id":"58579","label":"moving pick and usb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pick","usb"]}, +{"id":"102432","label":"pretending to take paper from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["paper","bed"]}, +{"id":"173824","label":"moving scissors away from a sieve","template":"Moving [something] away from [something]","placeholders":["scissors","a sieve"]}, +{"id":"75821","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"167705","label":"moving envelope across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["envelope"]}, +{"id":"210365","label":"covering a shoe with a hand","template":"Covering [something] with [something]","placeholders":["a shoe","a hand"]}, +{"id":"134457","label":"uncovering pencil","template":"Uncovering [something]","placeholders":["pencil"]}, +{"id":"97930","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"121246","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"134626","label":"moving a cup away from a bottle","template":"Moving [something] away from [something]","placeholders":["a cup","a bottle"]}, +{"id":"60521","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"52047","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"34095","label":"picking teddy bear up","template":"Picking [something] up","placeholders":["teddy bear"]}, +{"id":"100115","label":"tilting comic book with paperclip dispenser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["comic book","paperclip dispenser"]}, +{"id":"194852","label":"pulling marker onto santa hat","template":"Pulling [something] onto [something]","placeholders":["marker","santa hat"]}, +{"id":"37956","label":"lifting glasses with paper on it","template":"Lifting [something] with [something] on it","placeholders":["glasses","paper"]}, +{"id":"188086","label":"taking one of many similar","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar"]}, +{"id":"142969","label":"moving nail polish away from the camera","template":"Moving [something] away from the camera","placeholders":["nail polish"]}, +{"id":"186642","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"155756","label":"moving lighter down","template":"Moving [something] down","placeholders":["lighter"]}, +{"id":"153893","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"115473","label":"throwing \\\"pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["\\\"pencil"]}, +{"id":"146395","label":"spilling water onto sink","template":"Spilling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"125998","label":"pretending to pick a tablet pen up","template":"Pretending to pick [something] up","placeholders":["a tablet pen"]}, +{"id":"133166","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"104764","label":"pouring water onto bottle","template":"Pouring [something] onto [something]","placeholders":["water","bottle"]}, +{"id":"163103","label":"pushing casual hat from left to right","template":"Pushing [something] from left to right","placeholders":["casual hat"]}, +{"id":"31361","label":"piling cd's up","template":"Piling [something] up","placeholders":["cd's"]}, +{"id":"36772","label":"dropping rubix cube in front of a pillow","template":"Dropping [something] in front of [something]","placeholders":["rubix cube","a pillow"]}, +{"id":"11863","label":"tilting pen with screwdriver on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["pen","screwdriver"]}, +{"id":"127490","label":"pretending to poke mug","template":"Pretending to poke [something]","placeholders":["mug"]}, +{"id":"94505","label":"twisting the towel","template":"Twisting [something]","placeholders":["the towel"]}, +{"id":"145907","label":"taking a bracelet out of a jewelry box","template":"Taking [something] out of [something]","placeholders":["a bracelet","a jewelry box"]}, +{"id":"23892","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"76833","label":"moving pan across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pan"]}, +{"id":"153783","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"101018","label":"taking candles","template":"Taking [one of many similar things on the table]","placeholders":["candles"]}, +{"id":"132411","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"111472","label":"moving a candle up","template":"Moving [something] up","placeholders":["a candle"]}, +{"id":"99350","label":"dropping cow into box","template":"Dropping [something] into [something]","placeholders":["cow","box"]}, +{"id":"216563","label":"squeezing an orange","template":"Squeezing [something]","placeholders":["an orange"]}, +{"id":"12152","label":"turning a nailpolish bottle upside down","template":"Turning [something] upside down","placeholders":["a nailpolish bottle"]}, +{"id":"156254","label":"pouring water out of bowl","template":"Pouring [something] out of [something]","placeholders":["water","bowl"]}, +{"id":"10914","label":"moving candle-bottle and candle-bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["candle-bottle","candle-bottle"]}, +{"id":"153664","label":"trying to bend a light bulb so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a light bulb"]}, +{"id":"155132","label":"moving battery and battery closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["battery","battery"]}, +{"id":"188158","label":"bending a strip of paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a strip of paper"]}, +{"id":"15636","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"156616","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"43591","label":"laying a book on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a book"]}, +{"id":"181564","label":"covering a teddy with a blanket","template":"Covering [something] with [something]","placeholders":["a teddy","a blanket"]}, +{"id":"69266","label":"showing seeds packets to the camera","template":"Showing [something] to the camera","placeholders":["seeds packets"]}, +{"id":"204892","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"29133","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"185615","label":"showing phone on top of pillow","template":"Showing [something] on top of [something]","placeholders":["phone","pillow"]}, +{"id":"121011","label":"pushing key with pencil","template":"Pushing [something] with [something]","placeholders":["key","pencil"]}, +{"id":"98735","label":"moving little spray of container box","template":"Moving [part] of [something]","placeholders":["little spray","container box"]}, +{"id":"193623","label":"pushing talcum powder so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["talcum powder"]}, +{"id":"87855","label":"covering key with paper","template":"Covering [something] with [something]","placeholders":["key","paper"]}, +{"id":"15047","label":"holding cup behind chair","template":"Holding [something] behind [something]","placeholders":["cup","chair"]}, +{"id":"96703","label":"pretending to poke package","template":"Pretending to poke [something]","placeholders":["package"]}, +{"id":"156905","label":"pushing thread from right to left","template":"Pushing [something] from right to left","placeholders":["thread"]}, +{"id":"74683","label":"approaching t shirts with your camera","template":"Approaching [something] with your camera","placeholders":["t shirts"]}, +{"id":"92799","label":"tearing printer paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["printer paper"]}, +{"id":"41869","label":"tearing receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["receipt"]}, +{"id":"136303","label":"pretending to squeeze a wooden toy","template":"Pretending to squeeze [something]","placeholders":["a wooden toy"]}, +{"id":"127983","label":"dropping wallet next to magnifying glass","template":"Dropping [something] next to [something]","placeholders":["wallet","magnifying glass"]}, +{"id":"181110","label":"tilting brown covered note with spectacle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["brown covered note","spectacle"]}, +{"id":"172962","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"26041","label":"holding a box cutter","template":"Holding [something]","placeholders":["a box cutter"]}, +{"id":"33400","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"44412","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"171824","label":"pushing a glue with a bottle","template":"Pushing [something] with [something]","placeholders":["a glue","a bottle"]}, +{"id":"189615","label":"pulling a matchbox from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a matchbox","a box"]}, +{"id":"115190","label":"stuffing bottle into box","template":"Stuffing [something] into [something]","placeholders":["bottle","box"]}, +{"id":"120423","label":"turning a water container upside down","template":"Turning [something] upside down","placeholders":["a water container"]}, +{"id":"132485","label":"pushing a chair with the arms","template":"Pushing [something] with [something]","placeholders":["a chair","the arms"]}, +{"id":"77814","label":"touching (without moving) sensor of lamp","template":"Touching (without moving) [part] of [something]","placeholders":["sensor","lamp"]}, +{"id":"173252","label":"showing that fish flakes is inside jar","template":"Showing that [something] is inside [something]","placeholders":["fish flakes","jar"]}, +{"id":"217964","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"63425","label":"dropping a container onto a box","template":"Dropping [something] onto [something]","placeholders":["a container","a box"]}, +{"id":"87011","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"13017","label":"tearing the paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["the paper"]}, +{"id":"30245","label":"pushing bag so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bag"]}, +{"id":"96964","label":"lifting envelope up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["envelope"]}, +{"id":"42173","label":"pretending to be tearing measuring tape","template":"Pretending to be tearing [something that is not tearable]","placeholders":["measuring tape"]}, +{"id":"200057","label":"taking cap","template":"Taking [one of many similar things on the table]","placeholders":["cap"]}, +{"id":"120796","label":"pretending to scoop fruit loops up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["fruit loops","spoon"]}, +{"id":"150347","label":"stuffing tissue into box","template":"Stuffing [something] into [something]","placeholders":["tissue","box"]}, +{"id":"115710","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"199138","label":"putting plastic comb next to mug","template":"Putting [something] next to [something]","placeholders":["plastic comb","mug"]}, +{"id":"114553","label":"putting sponge into mug","template":"Putting [something] into [something]","placeholders":["sponge","mug"]}, +{"id":"126821","label":"letting paper towel roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["paper towel roll"]}, +{"id":"67788","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"88218","label":"touching (without moving) back camera of smartphone","template":"Touching (without moving) [part] of [something]","placeholders":["back camera","smartphone"]}, +{"id":"115613","label":"closing window","template":"Closing [something]","placeholders":["window"]}, +{"id":"171838","label":"tilting paperboard with deodorant on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paperboard","deodorant"]}, +{"id":"96298","label":"moving key closer to comb","template":"Moving [something] closer to [something]","placeholders":["key","comb"]}, +{"id":"157432","label":"lifting a cup with a card on it","template":"Lifting [something] with [something] on it","placeholders":["a cup","a card"]}, +{"id":"14550","label":"pretending to pick toy idol up","template":"Pretending to pick [something] up","placeholders":["toy idol"]}, +{"id":"212349","label":"taking spoon from plate","template":"Taking [something] from [somewhere]","placeholders":["spoon","plate"]}, +{"id":"155286","label":"throwing shoes onto a surface","template":"Throwing [something] onto a surface","placeholders":["shoes"]}, +{"id":"83573","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"160945","label":"covering popcorn with lid","template":"Covering [something] with [something]","placeholders":["popcorn","lid"]}, +{"id":"97385","label":"holding control in front of game","template":"Holding [something] in front of [something]","placeholders":["control","game"]}, +{"id":"188433","label":"pulling bottled ponzu sauce from left to right","template":"Pulling [something] from left to right","placeholders":["bottled ponzu sauce"]}, +{"id":"210710","label":"turning the camera right while filming posters","template":"Turning the camera right while filming [something]","placeholders":["posters"]}, +{"id":"11410","label":"pushing paper towels so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper towels"]}, +{"id":"155526","label":"opening notebook","template":"Opening [something]","placeholders":["notebook"]}, +{"id":"121735","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"75129","label":"spreading jelly onto bread","template":"Spreading [something] onto [something]","placeholders":["jelly","bread"]}, +{"id":"78080","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"62758","label":"pretending to squeeze cushion","template":"Pretending to squeeze [something]","placeholders":["cushion"]}, +{"id":"16552","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"147427","label":"holding box over note book","template":"Holding [something] over [something]","placeholders":["box","note book"]}, +{"id":"128589","label":"putting 2 water bottles onto wooden board","template":"Putting [number of] [something] onto [something]","placeholders":["2","water bottles","wooden board"]}, +{"id":"164610","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"176219","label":"spilling water behind book","template":"Spilling [something] behind [something]","placeholders":["water","book"]}, +{"id":"122075","label":"lifting up one end of flashlight without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["flashlight"]}, +{"id":"145759","label":"pouring water into wine glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","wine glass"]}, +{"id":"174374","label":"plugging a memory stick into a usb port","template":"Plugging [something] into [something]","placeholders":["a memory stick","a usb port"]}, +{"id":"89153","label":"pretending to poke pig","template":"Pretending to poke [something]","placeholders":["pig"]}, +{"id":"62435","label":"squeezing silicone","template":"Squeezing [something]","placeholders":["silicone"]}, +{"id":"166365","label":"moving an orange basket ball and a black basket ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["an orange basket ball","a black basket ball"]}, +{"id":"18601","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"117195","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"39264","label":"moving a bottle and a glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a glass"]}, +{"id":"209856","label":"moving box away from container","template":"Moving [something] away from [something]","placeholders":["box","container"]}, +{"id":"163449","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"150689","label":"ball colliding with bowl and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","bowl"]}, +{"id":"121193","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"43987","label":"lifting a sponge with a straw on it","template":"Lifting [something] with [something] on it","placeholders":["a sponge","a straw"]}, +{"id":"152938","label":"twisting a bag strap","template":"Twisting [something]","placeholders":["a bag strap"]}, +{"id":"112404","label":"dropping pen onto table","template":"Dropping [something] onto [something]","placeholders":["pen","table"]}, +{"id":"5926","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"53331","label":"dropping a book onto the bed","template":"Dropping [something] onto [something]","placeholders":["a book","the bed"]}, +{"id":"94516","label":"tilting binder with calculator on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["binder","calculator"]}, +{"id":"199487","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"48393","label":"picking board clip up","template":"Picking [something] up","placeholders":["board clip"]}, +{"id":"22251","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"79650","label":"spinning phone case that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["phone case"]}, +{"id":"190938","label":"a sock falling like a rock","template":"[Something] falling like a rock","placeholders":["a sock"]}, +{"id":"8513","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"71544","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"44655","label":"taking candle out of glas","template":"Taking [something] out of [something]","placeholders":["candle","glas"]}, +{"id":"122400","label":"putting vitamin into bottle","template":"Putting [something] into [something]","placeholders":["vitamin","bottle"]}, +{"id":"53511","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"158724","label":"lifting a book with a plant on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a plant"]}, +{"id":"11859","label":"lifting a book with a mobile on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a mobile"]}, +{"id":"126770","label":"pretending to pick a pencil up","template":"Pretending to pick [something] up","placeholders":["a pencil"]}, +{"id":"155680","label":"hitting a fan with a shoe","template":"Hitting [something] with [something]","placeholders":["a fan","a shoe"]}, +{"id":"88889","label":"putting spoon, fork and knife on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["spoon","fork","knife"]}, +{"id":"177296","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"180780","label":"pretending to turn notepad upside down","template":"Pretending to turn [something] upside down","placeholders":["notepad"]}, +{"id":"167754","label":"tilting a file with reading glasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a file","reading glasses"]}, +{"id":"63195","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"214754","label":"squeezing squeeze toy","template":"Squeezing [something]","placeholders":["squeeze toy"]}, +{"id":"131090","label":"turning a nail polish upside down","template":"Turning [something] upside down","placeholders":["a nail polish"]}, +{"id":"158426","label":"taking pencil out of jar","template":"Taking [something] out of [something]","placeholders":["pencil","jar"]}, +{"id":"35281","label":"pushing a plastic bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a plastic bottle","scissors"]}, +{"id":"46263","label":"spinning water bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["water bottle"]}, +{"id":"44395","label":"putting something on the edge of something so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["something","something"]}, +{"id":"89601","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"142632","label":"holding book next to books","template":"Holding [something] next to [something]","placeholders":["book","books"]}, +{"id":"198861","label":"putting ligher into box","template":"Putting [something] into [something]","placeholders":["ligher","box"]}, +{"id":"115934","label":"stacking 3 cans","template":"Stacking [number of] [something]","placeholders":["3","cans"]}, +{"id":"135498","label":"pushing coin with scissor","template":"Pushing [something] with [something]","placeholders":["coin","scissor"]}, +{"id":"99170","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"122001","label":"pretending to poke ball","template":"Pretending to poke [something]","placeholders":["ball"]}, +{"id":"30763","label":"spilling water onto a box","template":"Spilling [something] onto [something]","placeholders":["water","a box"]}, +{"id":"146009","label":"hitting metal pencil case with wrist watch","template":"Hitting [something] with [something]","placeholders":["metal pencil case","wrist watch"]}, +{"id":"55860","label":"piling paper up","template":"Piling [something] up","placeholders":["paper"]}, +{"id":"9254","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"66079","label":"lifting book with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["book","sunglasses"]}, +{"id":"154626","label":"uncovering a box","template":"Uncovering [something]","placeholders":["a box"]}, +{"id":"139051","label":"trying but failing to attach a sticky note to a box because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticky note","a box"]}, +{"id":"13122","label":"putting a pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pencil"]}, +{"id":"67720","label":"turning the camera right while filming hair dryer","template":"Turning the camera right while filming [something]","placeholders":["hair dryer"]}, +{"id":"160604","label":"putting pens into pencil case","template":"Putting [something] into [something]","placeholders":["pens","pencil case"]}, +{"id":"65600","label":"trying to pour soda into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["soda","cup"]}, +{"id":"49599","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"144203","label":"wallet falling falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet falling"]}, +{"id":"15966","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"138967","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"76069","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"149268","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"24760","label":"moving phone and xbox game closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["phone","xbox game"]}, +{"id":"177238","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"18345","label":"holding a sock","template":"Holding [something]","placeholders":["a sock"]}, +{"id":"15451","label":"taking a tea light candle away from a group of candles","template":"Taking [one of many similar things on the table]","placeholders":["a tea light candle away from a group of candles"]}, +{"id":"62083","label":"pulling two ends of sock so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["sock"]}, +{"id":"118091","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"2970","label":"covering tablet with handkerchief","template":"Covering [something] with [something]","placeholders":["tablet","handkerchief"]}, +{"id":"147131","label":"moving away from pen with your camera","template":"Moving away from [something] with your camera","placeholders":["pen"]}, +{"id":"93652","label":"lifting black spectacles up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["black spectacles"]}, +{"id":"22839","label":"throwing soap powder packet","template":"Throwing [something]","placeholders":["soap powder packet"]}, +{"id":"11248","label":"lifting blue colour spectacle box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["blue colour spectacle box"]}, +{"id":"103661","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"130147","label":"putting play-doh into mug","template":"Putting [something] into [something]","placeholders":["play-doh","mug"]}, +{"id":"96136","label":"showing a photo of a key to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a key"]}, +{"id":"99977","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"179716","label":"holding remote in front of cup","template":"Holding [something] in front of [something]","placeholders":["remote","cup"]}, +{"id":"218479","label":"taking keys","template":"Taking [one of many similar things on the table]","placeholders":["keys"]}, +{"id":"104468","label":"pushing pink blush on from left to right","template":"Pushing [something] from left to right","placeholders":["pink blush on"]}, +{"id":"192531","label":"putting cylinderical bluetooth speaker on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["cylinderical bluetooth speaker"]}, +{"id":"26630","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"192719","label":"rolling a nail polish bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a nail polish bottle"]}, +{"id":"17535","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"2324","label":"hitting a rubix cube with a hammer","template":"Hitting [something] with [something]","placeholders":["a rubix cube","a hammer"]}, +{"id":"189371","label":"pulling two ends of a leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a leaf"]}, +{"id":"92373","label":"stuffing napkin into candle","template":"Stuffing [something] into [something]","placeholders":["napkin","candle"]}, +{"id":"196364","label":"putting toy wheel into green bowl","template":"Putting [something] into [something]","placeholders":["toy wheel","green bowl"]}, +{"id":"187409","label":"pretending to put battery into box","template":"Pretending to put [something] into [something]","placeholders":["battery","box"]}, +{"id":"162371","label":"pretending to put an eraser behind a glass","template":"Pretending to put [something] behind [something]","placeholders":["an eraser","a glass"]}, +{"id":"120000","label":"bending metal wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal wire"]}, +{"id":"200662","label":"dropping phone behind cup","template":"Dropping [something] behind [something]","placeholders":["phone","cup"]}, +{"id":"126386","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"133641","label":"pushing glass with brush","template":"Pushing [something] with [something]","placeholders":["glass","brush"]}, +{"id":"111723","label":"plugging pen into bowl","template":"Plugging [something] into [something]","placeholders":["pen","bowl"]}, +{"id":"130669","label":"wiping milk off of counter","template":"Wiping [something] off of [something]","placeholders":["milk","counter"]}, +{"id":"173220","label":"moving marker and jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["marker","jar"]}, +{"id":"219299","label":"showing that soda is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["soda","bottle"]}, +{"id":"30537","label":"twisting a water bottle","template":"Twisting [something]","placeholders":["a water bottle"]}, +{"id":"201987","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"105913","label":"holding medication next to gamepad","template":"Holding [something] next to [something]","placeholders":["medication","gamepad"]}, +{"id":"87038","label":"squeezing a pack of cigarettes","template":"Squeezing [something]","placeholders":["a pack of cigarettes"]}, +{"id":"55639","label":"laying roll of paper towels on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["roll of paper towels"]}, +{"id":"23835","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"3038","label":"identy card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["identy card"]}, +{"id":"126847","label":"showing that chips packet is empty","template":"Showing that [something] is empty","placeholders":["chips packet"]}, +{"id":"119903","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"25846","label":"putting crayons, pencilbox and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["crayons","pencilbox","scissors"]}, +{"id":"203953","label":"putting a mouse onto a mouse pad","template":"Putting [something] onto [something]","placeholders":["a mouse","a mouse pad"]}, +{"id":"133030","label":"a shoe colliding with another shoe and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a shoe","another shoe"]}, +{"id":"164547","label":"turning canned food upside down","template":"Turning [something] upside down","placeholders":["canned food"]}, +{"id":"66962","label":"pulling two ends of a pencil but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pencil"]}, +{"id":"107432","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"207893","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"170043","label":"pushing a usb so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a usb"]}, +{"id":"39583","label":"putting a [pen amongst other pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a [pen amongst other pens"]}, +{"id":"132966","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"187388","label":"spinning an empty coke bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["an empty coke bottle"]}, +{"id":"196314","label":"wiping liquid hand soap off of counter","template":"Wiping [something] off of [something]","placeholders":["liquid hand soap","counter"]}, +{"id":"122981","label":"twisting (wringing) tissue wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["tissue"]}, +{"id":"149697","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"89367","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"138229","label":"showing something behind something","template":"Showing [something] behind [something]","placeholders":["something","something"]}, +{"id":"4689","label":"moving yo-yo and marble so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["yo-yo","marble"]}, +{"id":"127592","label":"bending a pipe cleaner so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pipe cleaner"]}, +{"id":"197349","label":"putting remote, cell phone and paper on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote","cell phone","paper"]}, +{"id":"27792","label":"pouring vodka into cup","template":"Pouring [something] into [something]","placeholders":["vodka","cup"]}, +{"id":"71417","label":"putting tiger toy on a surface","template":"Putting [something] on a surface","placeholders":["tiger toy"]}, +{"id":"32992","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"76846","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"162614","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"95786","label":"pretending to put a can into a cup","template":"Pretending to put [something] into [something]","placeholders":["a can","a cup"]}, +{"id":"44047","label":"pretending to be tearing handkerchief","template":"Pretending to be tearing [something that is not tearable]","placeholders":["handkerchief"]}, +{"id":"67810","label":"pushing a shoe so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a shoe"]}, +{"id":"196076","label":"lifting a plate with mexican dip container on it","template":"Lifting [something] with [something] on it","placeholders":["a plate","mexican dip container"]}, +{"id":"219708","label":"moving something away from the camera","template":"Moving [something] away from the camera","placeholders":["something"]}, +{"id":"11360","label":"showing that cookie box is empty","template":"Showing that [something] is empty","placeholders":["cookie box"]}, +{"id":"33456","label":"turning the camera right while filming tea box","template":"Turning the camera right while filming [something]","placeholders":["tea box"]}, +{"id":"145001","label":"putting eraser on the edge of window so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["eraser","window"]}, +{"id":"184846","label":"taking table salt","template":"Taking [one of many similar things on the table]","placeholders":["table salt"]}, +{"id":"195091","label":"tearing cardstock just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardstock"]}, +{"id":"66930","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"155059","label":"pulling wire onto tablet","template":"Pulling [something] onto [something]","placeholders":["wire","tablet"]}, +{"id":"1705","label":"closing waste bin","template":"Closing [something]","placeholders":["waste bin"]}, +{"id":"152716","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"29729","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"1521","label":"moving cup and banana closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","banana"]}, +{"id":"129914","label":"putting toothpaste onto toothbrush","template":"Putting [something] onto [something]","placeholders":["toothpaste","toothbrush"]}, +{"id":"26495","label":"squeezing eye-drops bottle","template":"Squeezing [something]","placeholders":["eye-drops bottle"]}, +{"id":"191134","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150318","label":"holding purse next to bear doll","template":"Holding [something] next to [something]","placeholders":["purse","bear doll"]}, +{"id":"173712","label":"taking a thermometer out of a drawer","template":"Taking [something] out of [something]","placeholders":["a thermometer","a drawer"]}, +{"id":"80200","label":"pulling two ends of a straw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a straw"]}, +{"id":"149222","label":"dropping spatula onto stove","template":"Dropping [something] onto [something]","placeholders":["spatula","stove"]}, +{"id":"17246","label":"pretending or failing to wipe design off of bottle","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["design","bottle"]}, +{"id":"111809","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"193078","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"107850","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"123531","label":"poking bus ticket so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bus ticket"]}, +{"id":"32267","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"215656","label":"showing pebble next to striker coin","template":"Showing [something] next to [something]","placeholders":["pebble","striker coin"]}, +{"id":"9679","label":"putting calculator in front of eraser","template":"Putting [something] in front of [something]","placeholders":["calculator","eraser"]}, +{"id":"8739","label":"pushing purple balloon pump from right to left","template":"Pushing [something] from right to left","placeholders":["purple balloon pump"]}, +{"id":"218887","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"220641","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"145051","label":"pretending to squeeze a water bottle","template":"Pretending to squeeze [something]","placeholders":["a water bottle"]}, +{"id":"215783","label":"holding cup in front of chair","template":"Holding [something] in front of [something]","placeholders":["cup","chair"]}, +{"id":"78863","label":"holding a cup over a pillow","template":"Holding [something] over [something]","placeholders":["a cup","a pillow"]}, +{"id":"142853","label":"poking water bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["water bottle"]}, +{"id":"130937","label":"moving cup and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","cup"]}, +{"id":"171127","label":"putting a pencil next to a magazine","template":"Putting [something] next to [something]","placeholders":["a pencil","a magazine"]}, +{"id":"97298","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"16733","label":"plugging power supply cord into laptop","template":"Plugging [something] into [something]","placeholders":["power supply cord","laptop"]}, +{"id":"99996","label":"spilling seltzer onto grape juice","template":"Spilling [something] onto [something]","placeholders":["seltzer","grape juice"]}, +{"id":"14859","label":"taking box from table","template":"Taking [something] from [somewhere]","placeholders":["box","table"]}, +{"id":"132868","label":"uncovering green toy car","template":"Uncovering [something]","placeholders":["green toy car"]}, +{"id":"74719","label":"pulling towel from right to left","template":"Pulling [something] from right to left","placeholders":["towel"]}, +{"id":"117865","label":"dropping yellow ball into glass bowl","template":"Dropping [something] into [something]","placeholders":["yellow ball","glass bowl"]}, +{"id":"167671","label":"covering teething ring with bib","template":"Covering [something] with [something]","placeholders":["teething ring","bib"]}, +{"id":"37084","label":"pencil and pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil and pen"]}, +{"id":"8283","label":"taking a bobby pin","template":"Taking [one of many similar things on the table]","placeholders":["a bobby pin"]}, +{"id":"44585","label":"pouring water into jar until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","jar"]}, +{"id":"33311","label":"putting a tablet upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a tablet"]}, +{"id":"44014","label":"failing to put a razor blade into a flask because the flask does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a razor blade","a flask","the flask"]}, +{"id":"39872","label":"pushing a pencil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pencil"]}, +{"id":"32532","label":"putting a pen and a bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["a pen","a bottle"]}, +{"id":"73584","label":"holding a painting brush","template":"Holding [something]","placeholders":["a painting brush"]}, +{"id":"174635","label":"lifting a pencil up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pencil"]}, +{"id":"107069","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"135930","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"151592","label":"putting a pen similar to the other pens that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen similar to the other pens that are already on the table"]}, +{"id":"97094","label":"moving chair towards the camera","template":"Moving [something] towards the camera","placeholders":["chair"]}, +{"id":"141825","label":"putting vial on a surface","template":"Putting [something] on a surface","placeholders":["vial"]}, +{"id":"56265","label":"pretending to be tearing headphones","template":"Pretending to be tearing [something that is not tearable]","placeholders":["headphones"]}, +{"id":"50750","label":"plugging a cord into a computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","a computer"]}, +{"id":"35501","label":"showing that tea is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["tea","a cup"]}, +{"id":"201173","label":"putting a steel piece on the edge of steel stick so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a steel piece","steel stick"]}, +{"id":"4818","label":"putting fork among forks","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork among forks"]}, +{"id":"122709","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"163869","label":"moving a fork closer to a pencil","template":"Moving [something] closer to [something]","placeholders":["a fork","a pencil"]}, +{"id":"94725","label":"holding book behind books","template":"Holding [something] behind [something]","placeholders":["book","books"]}, +{"id":"52979","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"69679","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"81376","label":"moving action figure across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["action figure"]}, +{"id":"110521","label":"pushing the tea bag so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["the tea bag"]}, +{"id":"4752","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"38817","label":"spinning wallet that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["wallet"]}, +{"id":"73507","label":"taking paint tube","template":"Taking [one of many similar things on the table]","placeholders":["paint tube"]}, +{"id":"145414","label":"poking a mug so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a mug"]}, +{"id":"186056","label":"pretending to put cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["cup"]}, +{"id":"114030","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"33121","label":"packaging foam falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["packaging foam"]}, +{"id":"162914","label":"trying but failing to attach plastic hook to door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["plastic hook","door"]}, +{"id":"143570","label":"turning salt shaker upside down","template":"Turning [something] upside down","placeholders":["salt shaker"]}, +{"id":"189482","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"4143","label":"poking candle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["candle"]}, +{"id":"163521","label":"putting fork next to knife","template":"Putting [something] next to [something]","placeholders":["fork","knife"]}, +{"id":"142939","label":"holding bottle in front of sunglasses","template":"Holding [something] in front of [something]","placeholders":["bottle","sunglasses"]}, +{"id":"137894","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"28832","label":"pretending to put a candle onto a candelabra","template":"Pretending to put [something] onto [something]","placeholders":["a candle","a candelabra"]}, +{"id":"54969","label":"showing backpack behind box","template":"Showing [something] behind [something]","placeholders":["backpack","box"]}, +{"id":"14257","label":"hitting pan with spoon","template":"Hitting [something] with [something]","placeholders":["pan","spoon"]}, +{"id":"193707","label":"turning the camera right while filming traffic light","template":"Turning the camera right while filming [something]","placeholders":["traffic light"]}, +{"id":"204125","label":"putting plastic cup on a surface","template":"Putting [something] on a surface","placeholders":["plastic cup"]}, +{"id":"76281","label":"pretending or failing to wipe picture off of book spine","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["picture","book spine"]}, +{"id":"16809","label":"pushing sugarpot so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sugarpot"]}, +{"id":"48460","label":"lifting book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["book"]}, +{"id":"194353","label":"pretending to close fridge without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["fridge"]}, +{"id":"69064","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"46846","label":"closing a water tank","template":"Closing [something]","placeholders":["a water tank"]}, +{"id":"112347","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"7525","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"133411","label":"covering luggage tag with paper","template":"Covering [something] with [something]","placeholders":["luggage tag","paper"]}, +{"id":"36752","label":"pushing a key so it spins","template":"Pushing [something] so it spins","placeholders":["a key"]}, +{"id":"197952","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"192810","label":"putting bowl","template":"Putting [something similar to other things that are already on the table]","placeholders":["bowl"]}, +{"id":"94638","label":"pulling two ends of napkin so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["napkin"]}, +{"id":"138117","label":"putting a pen on a surface","template":"Putting [something] on a surface","placeholders":["a pen"]}, +{"id":"132229","label":"mesh cup falling like a rock","template":"[Something] falling like a rock","placeholders":["mesh cup"]}, +{"id":"10161","label":"holding business card over pen","template":"Holding [something] over [something]","placeholders":["business card","pen"]}, +{"id":"50773","label":"poking the water recipient so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["the water recipient"]}, +{"id":"49229","label":"letting tin can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tin can"]}, +{"id":"74732","label":"pushing compass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["compass"]}, +{"id":"193163","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"153593","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"217922","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"144926","label":"lifting bunch of keys with pencil on it","template":"Lifting [something] with [something] on it","placeholders":["bunch of keys","pencil"]}, +{"id":"117581","label":"pretending to sprinkle air onto bananas","template":"Pretending to sprinkle air onto [something]","placeholders":["bananas"]}, +{"id":"85931","label":"spreading coins onto mirror","template":"Spreading [something] onto [something]","placeholders":["coins","mirror"]}, +{"id":"40860","label":"dropping a pin into a box","template":"Dropping [something] into [something]","placeholders":["a pin","a box"]}, +{"id":"174990","label":"tilting book with mouse on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","mouse"]}, +{"id":"155109","label":"putting dice on table of similar items","template":"Putting [something similar to other things that are already on the table]","placeholders":["dice on table of similar items"]}, +{"id":"24994","label":"lifting up one end of toothbrush, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["toothbrush"]}, +{"id":"178899","label":"putting paper underneath stand","template":"Putting [something] underneath [something]","placeholders":["paper","stand"]}, +{"id":"132104","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"217301","label":"pushing green cup from right to left","template":"Pushing [something] from right to left","placeholders":["green cup"]}, +{"id":"51858","label":"taking keys out of mug","template":"Taking [something] out of [something]","placeholders":["keys","mug"]}, +{"id":"187867","label":"pushing a screwdriver off of a box","template":"Pushing [something] off of [something]","placeholders":["a screwdriver","a box"]}, +{"id":"145237","label":"pouring water into the sink","template":"Pouring [something] into [something]","placeholders":["water","the sink"]}, +{"id":"144798","label":"hitting bottle with scale","template":"Hitting [something] with [something]","placeholders":["bottle","scale"]}, +{"id":"156236","label":"throwing pack of gum onto a surface","template":"Throwing [something] onto a surface","placeholders":["pack of gum"]}, +{"id":"162226","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"129314","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"146809","label":"moving watch and wallet closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","wallet"]}, +{"id":"198024","label":"pretending to throw an ice cream wrapper","template":"Pretending to throw [something]","placeholders":["an ice cream wrapper"]}, +{"id":"115794","label":"pulling pen from behind of cup","template":"Pulling [something] from behind of [something]","placeholders":["pen","cup"]}, +{"id":"49990","label":"throwing headphones in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["headphones"]}, +{"id":"172112","label":"pretending to scoop air up with my hands","template":"Pretending to scoop [something] up with [something]","placeholders":["air","my hands"]}, +{"id":"212430","label":"pretending to turn ink bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["ink bottle"]}, +{"id":"205812","label":"holding mobile behind chair","template":"Holding [something] behind [something]","placeholders":["mobile","chair"]}, +{"id":"137384","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"54990","label":"poking a stack of onion so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["onion"]}, +{"id":"135935","label":"putting knife upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["knife"]}, +{"id":"44608","label":"pulling two ends of exercise band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["exercise band"]}, +{"id":"66100","label":"hitting a mouse with a stapler","template":"Hitting [something] with [something]","placeholders":["a mouse","a stapler"]}, +{"id":"180067","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"107835","label":"pushing metal pad so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["metal pad"]}, +{"id":"53968","label":"putting sandal on a surface","template":"Putting [something] on a surface","placeholders":["sandal"]}, +{"id":"57420","label":"pretending to take a post-it from a post-it stack","template":"Pretending to take [something] from [somewhere]","placeholders":["a post-it","a post-it stack"]}, +{"id":"47953","label":"opening oven","template":"Opening [something]","placeholders":["oven"]}, +{"id":"81261","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"77390","label":"pushing red bottlecap from right to left","template":"Pushing [something] from right to left","placeholders":["red bottlecap"]}, +{"id":"42720","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"43950","label":"lifting up one end of a tub without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a tub"]}, +{"id":"201319","label":"moving plastic bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["plastic bottle"]}, +{"id":"24302","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"59142","label":"moving scotch tape up","template":"Moving [something] up","placeholders":["scotch tape"]}, +{"id":"209847","label":"pushing socks so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["socks"]}, +{"id":"95613","label":"tilting spoon with cap on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["spoon","cap"]}, +{"id":"134311","label":"moving cufflinks closer to a box","template":"Moving [something] closer to [something]","placeholders":["cufflinks","a box"]}, +{"id":"75452","label":"piece of roll falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of roll"]}, +{"id":"42956","label":"approaching keys with your camera","template":"Approaching [something] with your camera","placeholders":["keys"]}, +{"id":"73045","label":"tearing a paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper towel"]}, +{"id":"175372","label":"pushing a cup from right to left","template":"Pushing [something] from right to left","placeholders":["a cup"]}, +{"id":"202114","label":"moving coin and watch away from each other","template":"Moving [something] and [something] away from each other","placeholders":["coin","watch"]}, +{"id":"202559","label":"showing that cigarette pack is empty","template":"Showing that [something] is empty","placeholders":["cigarette pack"]}, +{"id":"170639","label":"putting pencil next to wooden stick","template":"Putting [something] next to [something]","placeholders":["pencil","wooden stick"]}, +{"id":"191022","label":"holding remote in front of light switch","template":"Holding [something] in front of [something]","placeholders":["remote","light switch"]}, +{"id":"154512","label":"pushing ink bottle from right to left","template":"Pushing [something] from right to left","placeholders":["ink bottle"]}, +{"id":"160879","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"16559","label":"putting water bottle next to bowl","template":"Putting [something] next to [something]","placeholders":["water bottle","bowl"]}, +{"id":"214406","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"71643","label":"wiping butter off of plate","template":"Wiping [something] off of [something]","placeholders":["butter","plate"]}, +{"id":"165046","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"186949","label":"bending wooden reeper until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden reeper"]}, +{"id":"201445","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"52071","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"115277","label":"scooping popcorn up with spoon","template":"Scooping [something] up with [something]","placeholders":["popcorn","spoon"]}, +{"id":"19766","label":"tearing plastic just a little bit","template":"Tearing [something] just a little bit","placeholders":["plastic"]}, +{"id":"71978","label":"pot holder being deflected from chalkboard","template":"[Something] being deflected from [something]","placeholders":["pot holder","chalkboard"]}, +{"id":"76768","label":"putting candle into glass","template":"Putting [something] into [something]","placeholders":["candle","glass"]}, +{"id":"140369","label":"dropping a container next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a container","a shoe brush"]}, +{"id":"88961","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"104152","label":"dropping pen into glass","template":"Dropping [something] into [something]","placeholders":["pen","glass"]}, +{"id":"4288","label":"taking green colour pen among many colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["green colour pen among many colour pens on the table"]}, +{"id":"212306","label":"pretending to close dvd without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["dvd"]}, +{"id":"137064","label":"taking wafer","template":"Taking [one of many similar things on the table]","placeholders":["wafer"]}, +{"id":"124255","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"209151","label":"pushing canderelbox so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["canderelbox"]}, +{"id":"129580","label":"pushing calculator with pen","template":"Pushing [something] with [something]","placeholders":["calculator","pen"]}, +{"id":"16505","label":"moving the bottle and the pencil case closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the bottle","the pencil case"]}, +{"id":"61267","label":"showing a photo of people to the camera","template":"Showing a photo of [something] to the camera","placeholders":["people"]}, +{"id":"220825","label":"pushing a glass from right to left","template":"Pushing [something] from right to left","placeholders":["a glass"]}, +{"id":"52645","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"475","label":"moving bag up","template":"Moving [something] up","placeholders":["bag"]}, +{"id":"203783","label":"showing that food pot is empty","template":"Showing that [something] is empty","placeholders":["food pot"]}, +{"id":"143765","label":"putting folder underneath desk","template":"Putting [something] underneath [something]","placeholders":["folder","desk"]}, +{"id":"191232","label":"pushing drawing notebook from left to right","template":"Pushing [something] from left to right","placeholders":["drawing notebook"]}, +{"id":"33956","label":"trying to pour coconut water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["coconut water","glass"]}, +{"id":"125041","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"93454","label":"moving plastic ball and plastic ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["plastic ball","plastic ball"]}, +{"id":"55181","label":"pretending to poke cat","template":"Pretending to poke [something]","placeholders":["cat"]}, +{"id":"37182","label":"pretending to pick nail varnish up","template":"Pretending to pick [something] up","placeholders":["nail varnish"]}, +{"id":"168282","label":"moving lipstick up","template":"Moving [something] up","placeholders":["lipstick"]}, +{"id":"81223","label":"putting a bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bottle"]}, +{"id":"44930","label":"sprinkling water onto ground","template":"Sprinkling [something] onto [something]","placeholders":["water","ground"]}, +{"id":"194372","label":"holding cushion in front of chair","template":"Holding [something] in front of [something]","placeholders":["cushion","chair"]}, +{"id":"39318","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"125761","label":"throwing napkin onto a surface","template":"Throwing [something] onto a surface","placeholders":["napkin"]}, +{"id":"169724","label":"approaching toy with your camera","template":"Approaching [something] with your camera","placeholders":["toy"]}, +{"id":"211929","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"92488","label":"tilting tree twig with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["tree twig","finger"]}, +{"id":"103685","label":"unfolding blanket","template":"Unfolding [something]","placeholders":["blanket"]}, +{"id":"32616","label":"letting a musical tabl roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a musical tabl"]}, +{"id":"17657","label":"putting a pencil next to other similar objects on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pencil next to other similar objects on the table"]}, +{"id":"44451","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"17532","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"205724","label":"lifting blue colour pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["blue colour pen"]}, +{"id":"71742","label":"showing rice cooker to the camera","template":"Showing [something] to the camera","placeholders":["rice cooker"]}, +{"id":"75666","label":"pretending to close jewellry box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jewellry box"]}, +{"id":"28351","label":"showing iron to the camera","template":"Showing [something] to the camera","placeholders":["iron"]}, +{"id":"54391","label":"moving elf closer to buddha","template":"Moving [something] closer to [something]","placeholders":["elf","buddha"]}, +{"id":"203612","label":"tilting book with mobile on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","mobile"]}, +{"id":"94267","label":"holding stone","template":"Holding [something]","placeholders":["stone"]}, +{"id":"85293","label":"trying to bend tv remote so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["tv remote"]}, +{"id":"10652","label":"tipping canister over","template":"Tipping [something] over","placeholders":["canister"]}, +{"id":"127806","label":"moving cycle away from the camera","template":"Moving [something] away from the camera","placeholders":["cycle"]}, +{"id":"16589","label":"touching (without moving) part of towel","template":"Touching (without moving) [part] of [something]","placeholders":["part","towel"]}, +{"id":"80032","label":"throwing ball against wall and chair","template":"Throwing [something] against [something]","placeholders":["ball","wall and chair"]}, +{"id":"136595","label":"tilting spoon with cap on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["spoon","cap"]}, +{"id":"73888","label":"moving a water bottle away from a mug","template":"Moving [something] away from [something]","placeholders":["a water bottle","a mug"]}, +{"id":"147322","label":"pretending to pick glass up","template":"Pretending to pick [something] up","placeholders":["glass"]}, +{"id":"179039","label":"pulling a figurine from right to left","template":"Pulling [something] from right to left","placeholders":["a figurine"]}, +{"id":"155117","label":"letting exercise foam roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["exercise foam"]}, +{"id":"36639","label":"closing battery compartment of tv remote","template":"Closing [something]","placeholders":["battery compartment of tv remote"]}, +{"id":"46778","label":"pushing marker pen from left to right","template":"Pushing [something] from left to right","placeholders":["marker pen"]}, +{"id":"195729","label":"putting green cup onto duster","template":"Putting [something] onto [something]","placeholders":["green cup","duster"]}, +{"id":"217109","label":"plugging charger cable into cell phone","template":"Plugging [something] into [something]","placeholders":["charger cable","cell phone"]}, +{"id":"177650","label":"approaching the wall with your camera","template":"Approaching [something] with your camera","placeholders":["the wall"]}, +{"id":"11944","label":"folding bed sheet","template":"Folding [something]","placeholders":["bed sheet"]}, +{"id":"4903","label":"plugging vga 9 pin plug into laptop","template":"Plugging [something] into [something]","placeholders":["vga 9 pin plug","laptop"]}, +{"id":"16215","label":"pulling pulling plastic spray from right to left from right to left","template":"Pulling [something] from right to left","placeholders":["pulling plastic spray from right to left"]}, +{"id":"36238","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"46141","label":"removing glass, revealing scissor behind","template":"Removing [something], revealing [something] behind","placeholders":["glass","scissor"]}, +{"id":"137966","label":"plugging plug into plug socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","plug socket"]}, +{"id":"181899","label":"pulling bottle from right to left","template":"Pulling [something] from right to left","placeholders":["bottle"]}, +{"id":"142940","label":"putting mug and canister on the table","template":"Putting [something] and [something] on the table","placeholders":["mug","canister"]}, +{"id":"159005","label":"picking jacket up","template":"Picking [something] up","placeholders":["jacket"]}, +{"id":"41741","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"207991","label":"pretending to pick pink water bottle up","template":"Pretending to pick [something] up","placeholders":["pink water bottle"]}, +{"id":"149508","label":"moving watch and glasses closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","glasses"]}, +{"id":"15415","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"131887","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"220496","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"118392","label":"taking spoon out of drawer","template":"Taking [something] out of [something]","placeholders":["spoon","drawer"]}, +{"id":"80697","label":"throwing a clementine in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a clementine"]}, +{"id":"27776","label":"plugging electric plug into an electric outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["electric plug","an electric outlet"]}, +{"id":"154500","label":"taking chocolate bar","template":"Taking [one of many similar things on the table]","placeholders":["chocolate bar"]}, +{"id":"178117","label":"pouring water into a bowl","template":"Pouring [something] into [something]","placeholders":["water","a bowl"]}, +{"id":"151772","label":"plugging a charger into a laptop","template":"Plugging [something] into [something]","placeholders":["a charger","a laptop"]}, +{"id":"102544","label":"poking tape measure so that it spins around","template":"Poking [something] so that it spins around","placeholders":["tape measure"]}, +{"id":"122617","label":"taking medicine from box","template":"Taking [something] from [somewhere]","placeholders":["medicine","box"]}, +{"id":"127658","label":"holding lemon over cup","template":"Holding [something] over [something]","placeholders":["lemon","cup"]}, +{"id":"13057","label":"covering coaster with pillow","template":"Covering [something] with [something]","placeholders":["coaster","pillow"]}, +{"id":"58619","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"62004","label":"pretending to be tearing felt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["felt"]}, +{"id":"149363","label":"putting the mate onto helmet","template":"Putting [something] onto [something]","placeholders":["the mate","helmet"]}, +{"id":"21378","label":"pretending to pick socks up","template":"Pretending to pick [something] up","placeholders":["socks"]}, +{"id":"16609","label":"putting cellphone that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["cellphone"]}, +{"id":"101819","label":"plugging charger into extension cord","template":"Plugging [something] into [something]","placeholders":["charger","extension cord"]}, +{"id":"22355","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"89400","label":"taking padlock from glass jar","template":"Taking [something] from [somewhere]","placeholders":["padlock","glass jar"]}, +{"id":"138804","label":"moving cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["cup"]}, +{"id":"152916","label":"moving salt and pepper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["salt","pepper"]}, +{"id":"43061","label":"putting binder upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["binder"]}, +{"id":"40189","label":"pretending to pick batery up","template":"Pretending to pick [something] up","placeholders":["batery"]}, +{"id":"86277","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"63317","label":"pretending to take coaster from table","template":"Pretending to take [something] from [somewhere]","placeholders":["coaster","table"]}, +{"id":"210726","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"149425","label":"pretending to scoop puzzle piece up with hand","template":"Pretending to scoop [something] up with [something]","placeholders":["puzzle piece","hand"]}, +{"id":"183215","label":"pretending or failing to wipe crayon off of paper","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["crayon","paper"]}, +{"id":"117638","label":"pushing a toy car from left to right","template":"Pushing [something] from left to right","placeholders":["a toy car"]}, +{"id":"13893","label":"showing a toothbrush next to calculator","template":"Showing [something] next to [something]","placeholders":["a toothbrush","calculator"]}, +{"id":"55099","label":"moving usb and usb cable closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["usb","usb cable"]}, +{"id":"12333","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"12055","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"90243","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"157717","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"122816","label":"moving an eyeglass case towards the camera","template":"Moving [something] towards the camera","placeholders":["an eyeglass case"]}, +{"id":"93555","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"91902","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"121078","label":"approaching glasses with your camera","template":"Approaching [something] with your camera","placeholders":["glasses"]}, +{"id":"92119","label":"covering plastic knife with towel","template":"Covering [something] with [something]","placeholders":["plastic knife","towel"]}, +{"id":"66895","label":"throwing nail polish","template":"Throwing [something]","placeholders":["nail polish"]}, +{"id":"195074","label":"holding tea spoon in front of jar","template":"Holding [something] in front of [something]","placeholders":["tea spoon","jar"]}, +{"id":"171503","label":"pretending to poke pillow","template":"Pretending to poke [something]","placeholders":["pillow"]}, +{"id":"40907","label":"holding pencil holder over shoe brush","template":"Holding [something] over [something]","placeholders":["pencil holder","shoe brush"]}, +{"id":"184890","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"219665","label":"pouring water onto the little globe","template":"Pouring [something] onto [something]","placeholders":["water","the little globe"]}, +{"id":"94090","label":"putting battery on a surface","template":"Putting [something] on a surface","placeholders":["battery"]}, +{"id":"213998","label":"opening umbrella","template":"Opening [something]","placeholders":["umbrella"]}, +{"id":"192912","label":"pushing hair clip so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hair clip"]}, +{"id":"207295","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"175726","label":"spilling water next to laptop","template":"Spilling [something] next to [something]","placeholders":["water","laptop"]}, +{"id":"87607","label":"putting an egg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["an egg"]}, +{"id":"34848","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"220318","label":"putting soft ball into box","template":"Putting [something] into [something]","placeholders":["soft ball","box"]}, +{"id":"212353","label":"putting water bottle onto wooden ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["water bottle","wooden ball"]}, +{"id":"166714","label":"throwing spoon onto a surface","template":"Throwing [something] onto a surface","placeholders":["spoon"]}, +{"id":"69911","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"2399","label":"holding paper over a mug","template":"Holding [something] over [something]","placeholders":["paper","a mug"]}, +{"id":"104745","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"27809","label":"uncovering a bird cage","template":"Uncovering [something]","placeholders":["a bird cage"]}, +{"id":"1484","label":"putting mug in front of fluorescent light bulb","template":"Putting [something] in front of [something]","placeholders":["mug","fluorescent light bulb"]}, +{"id":"129210","label":"moving paper and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper","paper"]}, +{"id":"64254","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"173028","label":"pretending to pick a book up","template":"Pretending to pick [something] up","placeholders":["a book"]}, +{"id":"212253","label":"turning the camera right while filming black hair tie","template":"Turning the camera right while filming [something]","placeholders":["black hair tie"]}, +{"id":"152333","label":"putting banana leaf","template":"Putting [something similar to other things that are already on the table]","placeholders":["banana leaf"]}, +{"id":"120110","label":"touching (without moving) the frame of sunglasses","template":"Touching (without moving) [part] of [something]","placeholders":["the frame","sunglasses"]}, +{"id":"126004","label":"covering a coin with paper","template":"Covering [something] with [something]","placeholders":["a coin","paper"]}, +{"id":"107346","label":"holding rock over flashlight","template":"Holding [something] over [something]","placeholders":["rock","flashlight"]}, +{"id":"63145","label":"stuffing bags into box","template":"Stuffing [something] into [something]","placeholders":["bags","box"]}, +{"id":"114711","label":"unfolding handout","template":"Unfolding [something]","placeholders":["handout"]}, +{"id":"86740","label":"plugging cord into wall socket","template":"Plugging [something] into [something]","placeholders":["cord","wall socket"]}, +{"id":"160106","label":"pulling a pencil from left to right","template":"Pulling [something] from left to right","placeholders":["a pencil"]}, +{"id":"215793","label":"moving a doll across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a doll"]}, +{"id":"25815","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"175654","label":"moving something and something away from each other","template":"Moving [something] and [something] away from each other","placeholders":["something","something"]}, +{"id":"191030","label":"uncovering cup","template":"Uncovering [something]","placeholders":["cup"]}, +{"id":"83202","label":"spinning spoon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spoon"]}, +{"id":"67963","label":"tilting gluestick with notepad on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["gluestick","notepad"]}, +{"id":"68779","label":"spinning plastic cap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["plastic cap"]}, +{"id":"7818","label":"removing cleaner, revealing glass behind","template":"Removing [something], revealing [something] behind","placeholders":["cleaner","glass"]}, +{"id":"24715","label":"dropping balls into cup","template":"Dropping [something] into [something]","placeholders":["balls","cup"]}, +{"id":"192674","label":"pretending to take rc from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["rc","bed"]}, +{"id":"133555","label":"pretending to poke a wallet","template":"Pretending to poke [something]","placeholders":["a wallet"]}, +{"id":"159091","label":"letting ribbon roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ribbon"]}, +{"id":"72239","label":"putting fork similar to many forks on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork similar to many forks on the table"]}, +{"id":"42754","label":"moving usb and usb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb","usb"]}, +{"id":"213488","label":"candy colliding with candy and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["candy","candy"]}, +{"id":"188112","label":"pushing a toy truck from left to right","template":"Pushing [something] from left to right","placeholders":["a toy truck"]}, +{"id":"13022","label":"hitting the counter with a knife","template":"Hitting [something] with [something]","placeholders":["the counter","a knife"]}, +{"id":"49659","label":"sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet"]}, +{"id":"50618","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"34745","label":"plugging jack into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["jack","computer"]}, +{"id":"175746","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"67117","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"140874","label":"twisting washcloth","template":"Twisting [something]","placeholders":["washcloth"]}, +{"id":"211453","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"184891","label":"putting a phone underneath a water bottle","template":"Putting [something] underneath [something]","placeholders":["a phone","a water bottle"]}, +{"id":"167452","label":"trying but failing to attach a tv remote to an airconditioner remote because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a tv remote","an airconditioner remote"]}, +{"id":"93979","label":"holding cup next to shoe","template":"Holding [something] next to [something]","placeholders":["cup","shoe"]}, +{"id":"12107","label":"putting soda pop can behind coffee can","template":"Putting [something] behind [something]","placeholders":["soda pop can","coffee can"]}, +{"id":"36377","label":"failing to put a bouncing reindeer toy into a small box because the reindeer does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bouncing reindeer toy","a small box","the reindeer"]}, +{"id":"184538","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"8683","label":"pretending to pour water out of container, but container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","container","container"]}, +{"id":"145150","label":"covering case with towel","template":"Covering [something] with [something]","placeholders":["case","towel"]}, +{"id":"5085","label":"pushing box with pen","template":"Pushing [something] with [something]","placeholders":["box","pen"]}, +{"id":"160931","label":"pretending to pick black colour pen cap up","template":"Pretending to pick [something] up","placeholders":["black colour pen cap"]}, +{"id":"92343","label":"attaching mobile to flip cover case","template":"Attaching [something] to [something]","placeholders":["mobile","flip cover case"]}, +{"id":"72705","label":"spinning sky remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["sky remote"]}, +{"id":"85258","label":"pushing blue lighter from right to left","template":"Pushing [something] from right to left","placeholders":["blue lighter"]}, +{"id":"206857","label":"pos-it falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["pos-it"]}, +{"id":"117547","label":"holding a remote control","template":"Holding [something]","placeholders":["a remote control"]}, +{"id":"38117","label":"moving a pack of tissues closer to a wallet","template":"Moving [something] closer to [something]","placeholders":["a pack of tissues","a wallet"]}, +{"id":"178214","label":"moving remote closer to remote","template":"Moving [something] closer to [something]","placeholders":["remote","remote"]}, +{"id":"192867","label":"tearing plastic into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic"]}, +{"id":"42903","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"54227","label":"plugging a usb cord into a charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb cord","a charger"]}, +{"id":"94498","label":"stuffing pillow into pillowcase","template":"Stuffing [something] into [something]","placeholders":["pillow","pillowcase"]}, +{"id":"206954","label":"hitting sachet with chopstick","template":"Hitting [something] with [something]","placeholders":["sachet","chopstick"]}, +{"id":"42610","label":"plugging a charger into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a phone"]}, +{"id":"177964","label":"throwing stuffed animal","template":"Throwing [something]","placeholders":["stuffed animal"]}, +{"id":"73535","label":"showing a photo of watercan to the camera","template":"Showing a photo of [something] to the camera","placeholders":["watercan"]}, +{"id":"191903","label":"dropping red hair band in front of spectacle box","template":"Dropping [something] in front of [something]","placeholders":["red hair band","spectacle box"]}, +{"id":"33797","label":"plugging charger cable into ipod","template":"Plugging [something] into [something]","placeholders":["charger cable","ipod"]}, +{"id":"13583","label":"pushing dog toy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["dog toy"]}, +{"id":"102948","label":"putting spoon on a surface","template":"Putting [something] on a surface","placeholders":["spoon"]}, +{"id":"90011","label":"moving cards and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cards","paper"]}, +{"id":"56620","label":"dropping pencils onto the floor","template":"Dropping [something] onto [something]","placeholders":["pencils","the floor"]}, +{"id":"72564","label":"piling bags of cookies up","template":"Piling [something] up","placeholders":["bags of cookies"]}, +{"id":"205079","label":"tearing ripping napkin in half into two pieces","template":"Tearing [something] into two pieces","placeholders":["ripping napkin in half"]}, +{"id":"157431","label":"tilting black file with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","pen"]}, +{"id":"138504","label":"closing a diary","template":"Closing [something]","placeholders":["a diary"]}, +{"id":"191560","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"125398","label":"pretending to be tearing cup holder","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cup holder"]}, +{"id":"139585","label":"stuffing change into a bag","template":"Stuffing [something] into [something]","placeholders":["change","a bag"]}, +{"id":"33353","label":"moving a pink bunny closer to a carrot","template":"Moving [something] closer to [something]","placeholders":["a pink bunny","a carrot"]}, +{"id":"72063","label":"piling boxes up","template":"Piling [something] up","placeholders":["boxes"]}, +{"id":"185483","label":"moving bottle and statue closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","statue"]}, +{"id":"86560","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"42742","label":"putting tea light candle onto ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["tea light candle","ball"]}, +{"id":"218443","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"90380","label":"plugging earbuds into ps4 controller","template":"Plugging [something] into [something]","placeholders":["earbuds","ps4 controller"]}, +{"id":"114927","label":"falling rock on kitchen counter falling like a rock","template":"[Something] falling like a rock","placeholders":["falling rock on kitchen counter"]}, +{"id":"60164","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"113944","label":"moving toothpaste tube and toothpaste tube so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toothpaste tube","toothpaste tube"]}, +{"id":"15156","label":"lifting pigtail with corrector pen on it","template":"Lifting [something] with [something] on it","placeholders":["pigtail","corrector pen"]}, +{"id":"35022","label":"stuffing cotton into pot","template":"Stuffing [something] into [something]","placeholders":["cotton","pot"]}, +{"id":"35569","label":"bending a plastic pipe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a plastic pipe"]}, +{"id":"74614","label":"pushing id card so it spins","template":"Pushing [something] so it spins","placeholders":["id card"]}, +{"id":"62506","label":"pretending to pick spoon up","template":"Pretending to pick [something] up","placeholders":["spoon"]}, +{"id":"218482","label":"plugging cord into phone","template":"Plugging [something] into [something]","placeholders":["cord","phone"]}, +{"id":"49888","label":"pushing stapler with colour pen","template":"Pushing [something] with [something]","placeholders":["stapler","colour pen"]}, +{"id":"48861","label":"moving a mouse up","template":"Moving [something] up","placeholders":["a mouse"]}, +{"id":"78129","label":"dropping sharpner next to white colour board clip","template":"Dropping [something] next to [something]","placeholders":["sharpner","white colour board clip"]}, +{"id":"10018","label":"spilling water next to flower pot","template":"Spilling [something] next to [something]","placeholders":["water","flower pot"]}, +{"id":"70685","label":"tearing a paper heart into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper heart"]}, +{"id":"124924","label":"lifting a box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a box"]}, +{"id":"7612","label":"showing that black colour sharpner is inside yellow container","template":"Showing that [something] is inside [something]","placeholders":["black colour sharpner","yellow container"]}, +{"id":"191646","label":"putting a pear onto the book","template":"Putting [something] onto [something]","placeholders":["a pear","the book"]}, +{"id":"181561","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"52295","label":"moving a sphere and a stone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a sphere","a stone"]}, +{"id":"206638","label":"moving binoculars away from bracelet","template":"Moving [something] away from [something]","placeholders":["binoculars","bracelet"]}, +{"id":"174814","label":"turning the camera downwards while filming water bottle","template":"Turning the camera downwards while filming [something]","placeholders":["water bottle"]}, +{"id":"104635","label":"pushing phone so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["phone"]}, +{"id":"96942","label":"pretending to squeeze candle","template":"Pretending to squeeze [something]","placeholders":["candle"]}, +{"id":"127683","label":"taking a pen from a desk drawer","template":"Taking [something] from [somewhere]","placeholders":["a pen","a desk drawer"]}, +{"id":"106291","label":"pretending to pour juice out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["juice","bottle","bottle"]}, +{"id":"62117","label":"pushing battery charger from right to left","template":"Pushing [something] from right to left","placeholders":["battery charger"]}, +{"id":"178691","label":"trying to bend rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["rod"]}, +{"id":"54428","label":"showing pen on top of bottle","template":"Showing [something] on top of [something]","placeholders":["pen","bottle"]}, +{"id":"212644","label":"stacking four boxes","template":"Stacking [number of] [something]","placeholders":["four","boxes"]}, +{"id":"2322","label":"pushing a chess board from right to left","template":"Pushing [something] from right to left","placeholders":["a chess board"]}, +{"id":"179755","label":"dropping tablet into container","template":"Dropping [something] into [something]","placeholders":["tablet","container"]}, +{"id":"31231","label":"showing wall light to the camera","template":"Showing [something] to the camera","placeholders":["wall light"]}, +{"id":"206826","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"216913","label":"folding notebook","template":"Folding [something]","placeholders":["notebook"]}, +{"id":"137968","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"72089","label":"attaching clip to handle","template":"Attaching [something] to [something]","placeholders":["clip","handle"]}, +{"id":"150265","label":"pushing a matchbox so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a matchbox"]}, +{"id":"20456","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"188857","label":"moving lighter closer to tv remote","template":"Moving [something] closer to [something]","placeholders":["lighter","tv remote"]}, +{"id":"159804","label":"tipping wallet over","template":"Tipping [something] over","placeholders":["wallet"]}, +{"id":"111066","label":"moving a coin away from a spoon","template":"Moving [something] away from [something]","placeholders":["a coin","a spoon"]}, +{"id":"218135","label":"plugging power cable into socket","template":"Plugging [something] into [something]","placeholders":["power cable","socket"]}, +{"id":"194501","label":"throwing bear in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bear"]}, +{"id":"195877","label":"stuffing shirt into drawer","template":"Stuffing [something] into [something]","placeholders":["shirt","drawer"]}, +{"id":"31839","label":"throwing plastic bottle against sofa","template":"Throwing [something] against [something]","placeholders":["plastic bottle","sofa"]}, +{"id":"192672","label":"pretending to close closet door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["closet door"]}, +{"id":"12828","label":"poking a card reader so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a card reader"]}, +{"id":"54966","label":"throwing keys","template":"Throwing [something]","placeholders":["keys"]}, +{"id":"152224","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"114314","label":"taking pencil from educational kits","template":"Taking [one of many similar things on the table]","placeholders":["pencil from educational kits"]}, +{"id":"217802","label":"stuffing a shirt into a toilet paper roll","template":"Stuffing [something] into [something]","placeholders":["a shirt","a toilet paper roll"]}, +{"id":"171926","label":"pretending to put camphor packet next to sugar bottle","template":"Pretending to put [something] next to [something]","placeholders":["camphor packet","sugar bottle"]}, +{"id":"207421","label":"pushing nail varnish bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail varnish bottle"]}, +{"id":"72576","label":"closing hot case","template":"Closing [something]","placeholders":["hot case"]}, +{"id":"53650","label":"toy car being deflected from mug","template":"[Something] being deflected from [something]","placeholders":["toy car","mug"]}, +{"id":"94371","label":"putting bowl in front of pencil sharpener","template":"Putting [something] in front of [something]","placeholders":["bowl","pencil sharpener"]}, +{"id":"176356","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"76838","label":"showing tape behind water bottle","template":"Showing [something] behind [something]","placeholders":["tape","water bottle"]}, +{"id":"177656","label":"poking a stack of containers so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["containers"]}, +{"id":"30481","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"43477","label":"pushing table from left to right","template":"Pushing [something] from left to right","placeholders":["table"]}, +{"id":"80262","label":"showing suitcase on top of sofa","template":"Showing [something] on top of [something]","placeholders":["suitcase","sofa"]}, +{"id":"144859","label":"sprinkling water onto plants","template":"Sprinkling [something] onto [something]","placeholders":["water","plants"]}, +{"id":"177545","label":"money falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["money"]}, +{"id":"71054","label":"pushing pencil from right to left","template":"Pushing [something] from right to left","placeholders":["pencil"]}, +{"id":"12503","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"220610","label":"throwing bottleflip in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bottleflip"]}, +{"id":"154348","label":"stuffing cigarette into a pack of cigarettes","template":"Stuffing [something] into [something]","placeholders":["cigarette","a pack of cigarettes"]}, +{"id":"112848","label":"styrofoam piece falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["styrofoam piece"]}, +{"id":"11210","label":"lifting up one end of clock, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["clock"]}, +{"id":"96471","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"74125","label":"turning the camera upwards while filming traffic light","template":"Turning the camera upwards while filming [something]","placeholders":["traffic light"]}, +{"id":"63204","label":"turning a stapler upside down","template":"Turning [something] upside down","placeholders":["a stapler"]}, +{"id":"51535","label":"throwing stuffed animal in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["stuffed animal"]}, +{"id":"23126","label":"turning the camera upwards while filming love birds","template":"Turning the camera upwards while filming [something]","placeholders":["love birds"]}, +{"id":"111388","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"138537","label":"laying electronic cigarette on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["electronic cigarette"]}, +{"id":"171868","label":"twisting jarlid","template":"Twisting [something]","placeholders":["jarlid"]}, +{"id":"114543","label":"moving scissors and remote control away from each other","template":"Moving [something] and [something] away from each other","placeholders":["scissors","remote control"]}, +{"id":"55927","label":"covering remote with cloth","template":"Covering [something] with [something]","placeholders":["remote","cloth"]}, +{"id":"39750","label":"holding a ball over a glass jar","template":"Holding [something] over [something]","placeholders":["a ball","a glass jar"]}, +{"id":"151631","label":"covering box with fabric","template":"Covering [something] with [something]","placeholders":["box","fabric"]}, +{"id":"5154","label":"pretending or failing to wipe marker off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"205567","label":"putting ink bottle, spanner and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["ink bottle","spanner","pen"]}, +{"id":"83098","label":"spinning charger that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["charger"]}, +{"id":"83492","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"220089","label":"squeezing cloth book","template":"Squeezing [something]","placeholders":["cloth book"]}, +{"id":"47916","label":"pushing a sharpener with a box","template":"Pushing [something] with [something]","placeholders":["a sharpener","a box"]}, +{"id":"19508","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"100122","label":"picking wiimote up","template":"Picking [something] up","placeholders":["wiimote"]}, +{"id":"60486","label":"spreading soap onto cabinet","template":"Spreading [something] onto [something]","placeholders":["soap","cabinet"]}, +{"id":"100819","label":"pulling a lighter from right to left","template":"Pulling [something] from right to left","placeholders":["a lighter"]}, +{"id":"160246","label":"a steel glass colliding with another steel glass and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a steel glass","another steel glass"]}, +{"id":"48082","label":"throwing paper onto a surface","template":"Throwing [something] onto a surface","placeholders":["paper"]}, +{"id":"115764","label":"dropping a coin next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a coin","a matchbox"]}, +{"id":"124748","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"181866","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"166720","label":"throwing water bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["water bottle"]}, +{"id":"84385","label":"taking pen out of holder","template":"Taking [something] out of [something]","placeholders":["pen","holder"]}, +{"id":"10025","label":"dropping pen behind box","template":"Dropping [something] behind [something]","placeholders":["pen","box"]}, +{"id":"107887","label":"lifting up one end of wood log without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["wood log"]}, +{"id":"28043","label":"turning bag upside down","template":"Turning [something] upside down","placeholders":["bag"]}, +{"id":"28140","label":"taking mice from table","template":"Taking [something] from [somewhere]","placeholders":["mice","table"]}, +{"id":"220250","label":"throwing soft toy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["soft toy"]}, +{"id":"167745","label":"throwing earcup in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["earcup"]}, +{"id":"66877","label":"tilting block with box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["block","box"]}, +{"id":"169163","label":"dropping duster next to green bowl","template":"Dropping [something] next to [something]","placeholders":["duster","green bowl"]}, +{"id":"171217","label":"pushing duster so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["duster"]}, +{"id":"166717","label":"dropping scoop in front of canister","template":"Dropping [something] in front of [something]","placeholders":["scoop","canister"]}, +{"id":"101523","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"145958","label":"showing mobile to the camera","template":"Showing [something] to the camera","placeholders":["mobile"]}, +{"id":"78430","label":"pretending to sprinkle air onto floor","template":"Pretending to sprinkle air onto [something]","placeholders":["floor"]}, +{"id":"108720","label":"uncovering wifi pod","template":"Uncovering [something]","placeholders":["wifi pod"]}, +{"id":"56254","label":"closing basket","template":"Closing [something]","placeholders":["basket"]}, +{"id":"84500","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"190818","label":"poking mobile battery so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["mobile battery"]}, +{"id":"98897","label":"picking flowers up","template":"Picking [something] up","placeholders":["flowers"]}, +{"id":"212171","label":"dropping paint brush behind paper holder","template":"Dropping [something] behind [something]","placeholders":["paint brush","paper holder"]}, +{"id":"199147","label":"digging a piece of garlic out of rice","template":"Digging [something] out of [something]","placeholders":["a piece of garlic","rice"]}, +{"id":"170439","label":"squeezing pig","template":"Squeezing [something]","placeholders":["pig"]}, +{"id":"54508","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"21482","label":"hitting food container with sandal","template":"Hitting [something] with [something]","placeholders":["food container","sandal"]}, +{"id":"203","label":"putting a bowl on a surface","template":"Putting [something] on a surface","placeholders":["a bowl"]}, +{"id":"156106","label":"turning the camera downwards while filming rice cooker","template":"Turning the camera downwards while filming [something]","placeholders":["rice cooker"]}, +{"id":"126638","label":"pulling cloth from behind of pillow","template":"Pulling [something] from behind of [something]","placeholders":["cloth","pillow"]}, +{"id":"32235","label":"moving cup and wallet so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["cup","wallet"]}, +{"id":"174895","label":"lifting water jug up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["water jug"]}, +{"id":"156949","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"155958","label":"pushing white book marker from left to right","template":"Pushing [something] from left to right","placeholders":["white book marker"]}, +{"id":"65402","label":"pretending to turn orange bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["orange bowl"]}, +{"id":"164692","label":"pretending to squeeze box","template":"Pretending to squeeze [something]","placeholders":["box"]}, +{"id":"81282","label":"covering a green container with a yellow saucer","template":"Covering [something] with [something]","placeholders":["a green container","a yellow saucer"]}, +{"id":"189851","label":"covering book with cloth","template":"Covering [something] with [something]","placeholders":["book","cloth"]}, +{"id":"141659","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"56007","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"207869","label":"holding fishfood over the fish tank","template":"Holding [something] over [something]","placeholders":["fishfood","the fish tank"]}, +{"id":"7167","label":"holding banana next to paper","template":"Holding [something] next to [something]","placeholders":["banana","paper"]}, +{"id":"66668","label":"moving perfume bottle away from toy","template":"Moving [something] away from [something]","placeholders":["perfume bottle","toy"]}, +{"id":"51263","label":"dropping snus into snusdisk","template":"Dropping [something] into [something]","placeholders":["snus","snusdisk"]}, +{"id":"213148","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"164228","label":"holding bottle in front of bag pack","template":"Holding [something] in front of [something]","placeholders":["bottle","bag pack"]}, +{"id":"32764","label":"trying but failing to attach paper towel to spoon because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper towel","spoon"]}, +{"id":"220735","label":"pushing a chair with a foot","template":"Pushing [something] with [something]","placeholders":["a chair","a foot"]}, +{"id":"136879","label":"holding a shirt in front of a tv screen","template":"Holding [something] in front of [something]","placeholders":["a shirt","a tv screen"]}, +{"id":"38718","label":"holding paper over flame","template":"Holding [something] over [something]","placeholders":["paper","flame"]}, +{"id":"112775","label":"turning the camera right while filming rice cooker","template":"Turning the camera right while filming [something]","placeholders":["rice cooker"]}, +{"id":"167567","label":"moving remote down","template":"Moving [something] down","placeholders":["remote"]}, +{"id":"11238","label":"pushing a tenis ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a tenis ball"]}, +{"id":"141791","label":"pouring something out of something","template":"Pouring [something] out of [something]","placeholders":["something","something"]}, +{"id":"119133","label":"holding mobile in front of pillows","template":"Holding [something] in front of [something]","placeholders":["mobile","pillows"]}, +{"id":"152602","label":"pouring orange juice into cup","template":"Pouring [something] into [something]","placeholders":["orange juice","cup"]}, +{"id":"178922","label":"bending flexible microphone so that it deforms","template":"Bending [something] so that it deforms","placeholders":["flexible microphone"]}, +{"id":"108814","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"142102","label":"pushing cap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cap"]}, +{"id":"77633","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"147975","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"2445","label":"throwing a cushion against a wall","template":"Throwing [something] against [something]","placeholders":["a cushion","a wall"]}, +{"id":"82500","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"161652","label":"squeezing baloon","template":"Squeezing [something]","placeholders":["baloon"]}, +{"id":"128059","label":"pushing a bottle of pills so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle of pills"]}, +{"id":"179371","label":"throwing nutrition bar in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["nutrition bar"]}, +{"id":"78404","label":"lifting iphone with sock on it","template":"Lifting [something] with [something] on it","placeholders":["iphone","sock"]}, +{"id":"93635","label":"covering plush doll with paper","template":"Covering [something] with [something]","placeholders":["plush doll","paper"]}, +{"id":"11436","label":"covering an apple with a bowl","template":"Covering [something] with [something]","placeholders":["an apple","a bowl"]}, +{"id":"164404","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"158423","label":"moving cd and cd away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cd","cd"]}, +{"id":"166600","label":"pushing compressed fuel can so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["compressed fuel can"]}, +{"id":"172414","label":"holding toothbrush over toothpaste","template":"Holding [something] over [something]","placeholders":["toothbrush","toothpaste"]}, +{"id":"62634","label":"pulling small sharpener from left to right","template":"Pulling [something] from left to right","placeholders":["small sharpener"]}, +{"id":"144516","label":"plugging a light plug into a standard socket","template":"Plugging [something] into [something]","placeholders":["a light plug","a standard socket"]}, +{"id":"107143","label":"poking a stack of dice so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["dice"]}, +{"id":"186059","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"168735","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"136630","label":"putting a deodorant next to a glas","template":"Putting [something] next to [something]","placeholders":["a deodorant","a glas"]}, +{"id":"34499","label":"pretending to turn milk cup upside down","template":"Pretending to turn [something] upside down","placeholders":["milk cup"]}, +{"id":"202946","label":"putting a color into a container","template":"Putting [something] into [something]","placeholders":["a color","a container"]}, +{"id":"130936","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"182045","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"145467","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"70828","label":"moving compass up","template":"Moving [something] up","placeholders":["compass"]}, +{"id":"149101","label":"closing piller","template":"Closing [something]","placeholders":["piller"]}, +{"id":"6744","label":"pushing a stapler so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a stapler"]}, +{"id":"44324","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"94411","label":"touching (without moving) computermaus of computermaus","template":"Touching (without moving) [part] of [something]","placeholders":["computermaus","computermaus"]}, +{"id":"26824","label":"lifting bowl with book on it","template":"Lifting [something] with [something] on it","placeholders":["bowl","book"]}, +{"id":"188310","label":"failing to put something into something because something does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["something","something","something"]}, +{"id":"201048","label":"moving wallet closer to coaster","template":"Moving [something] closer to [something]","placeholders":["wallet","coaster"]}, +{"id":"179807","label":"holding lighter next to lamp","template":"Holding [something] next to [something]","placeholders":["lighter","lamp"]}, +{"id":"91016","label":"moving green toy car and white toy car so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["green toy car","white toy car"]}, +{"id":"136827","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"116414","label":"stuffing bags into another plastic bag","template":"Stuffing [something] into [something]","placeholders":["bags","another plastic bag"]}, +{"id":"153581","label":"taking brush from table","template":"Taking [something] from [somewhere]","placeholders":["brush","table"]}, +{"id":"57279","label":"throwing a soft toy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a soft toy"]}, +{"id":"185793","label":"wiping marker off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"61667","label":"pretending to put play-doh into mug","template":"Pretending to put [something] into [something]","placeholders":["play-doh","mug"]}, +{"id":"22957","label":"lifting paper with chalk on it","template":"Lifting [something] with [something] on it","placeholders":["paper","chalk"]}, +{"id":"149075","label":"picking a wallet up","template":"Picking [something] up","placeholders":["a wallet"]}, +{"id":"6597","label":"plugging a cable into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a phone"]}, +{"id":"220074","label":"plugging cable into laptop","template":"Plugging [something] into [something]","placeholders":["cable","laptop"]}, +{"id":"97455","label":"dropping a screwdriver behind a box","template":"Dropping [something] behind [something]","placeholders":["a screwdriver","a box"]}, +{"id":"181038","label":"twisting (wringing) a piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a piece of cloth"]}, +{"id":"145321","label":"twisting a water bottle","template":"Twisting [something]","placeholders":["a water bottle"]}, +{"id":"60451","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"65362","label":"hitting a book with a water bottle","template":"Hitting [something] with [something]","placeholders":["a book","a water bottle"]}, +{"id":"41431","label":"poking a marker so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a marker"]}, +{"id":"161318","label":"spinning bottel that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottel"]}, +{"id":"68894","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"175985","label":"squeezing a cloth cushion","template":"Squeezing [something]","placeholders":["a cloth cushion"]}, +{"id":"1793","label":"spinning quarter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["quarter"]}, +{"id":"13950","label":"putting bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle"]}, +{"id":"109339","label":"dropping a toothbrush in front of a box","template":"Dropping [something] in front of [something]","placeholders":["a toothbrush","a box"]}, +{"id":"30062","label":"holding plastic flower","template":"Holding [something]","placeholders":["plastic flower"]}, +{"id":"1942","label":"stuffing tobacco into packet","template":"Stuffing [something] into [something]","placeholders":["tobacco","packet"]}, +{"id":"179153","label":"putting a cup behind the mobile phone","template":"Putting [something] behind [something]","placeholders":["a cup","the mobile phone"]}, +{"id":"126515","label":"pretending to be tearing plastic-cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic-cover"]}, +{"id":"159183","label":"moving candle and candle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["candle","candle"]}, +{"id":"214331","label":"moving phone and stand away from each other","template":"Moving [something] and [something] away from each other","placeholders":["phone","stand"]}, +{"id":"2196","label":"turning the camera right while filming pink water bottle","template":"Turning the camera right while filming [something]","placeholders":["pink water bottle"]}, +{"id":"59886","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"194794","label":"moving a book and a book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a book","a book"]}, +{"id":"153874","label":"turning the camera downwards while filming bulb light","template":"Turning the camera downwards while filming [something]","placeholders":["bulb light"]}, +{"id":"210486","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"127756","label":"putting 2 violet colour pocket foldable knives onto white container","template":"Putting [number of] [something] onto [something]","placeholders":["2","violet colour pocket foldable knives","white container"]}, +{"id":"53743","label":"holding frock behind chair","template":"Holding [something] behind [something]","placeholders":["frock","chair"]}, +{"id":"164854","label":"moving jar closer to jar","template":"Moving [something] closer to [something]","placeholders":["jar","jar"]}, +{"id":"178974","label":"opening a board game","template":"Opening [something]","placeholders":["a board game"]}, +{"id":"21240","label":"rolling a spray-paint can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray-paint can"]}, +{"id":"228","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"65596","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"149858","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"66273","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"138651","label":"taking card out of box","template":"Taking [something] out of [something]","placeholders":["card","box"]}, +{"id":"129907","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"144433","label":"showing that fidget spinner is inside box","template":"Showing that [something] is inside [something]","placeholders":["fidget spinner","box"]}, +{"id":"115971","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"120937","label":"tearing orange paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["orange paper"]}, +{"id":"33763","label":"putting 2 pebbles onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["2","pebbles","cookie box lid"]}, +{"id":"183965","label":"turning a pillow upside down","template":"Turning [something] upside down","placeholders":["a pillow"]}, +{"id":"219711","label":"pushing soft tissue roll from right to left","template":"Pushing [something] from right to left","placeholders":["soft tissue roll"]}, +{"id":"126010","label":"closing a laptop","template":"Closing [something]","placeholders":["a laptop"]}, +{"id":"108632","label":"holding cup over table","template":"Holding [something] over [something]","placeholders":["cup","table"]}, +{"id":"12383","label":"dropping marker onto rug","template":"Dropping [something] onto [something]","placeholders":["marker","rug"]}, +{"id":"62421","label":"squeezing an open disposable water bottle","template":"Squeezing [something]","placeholders":["an open disposable water bottle"]}, +{"id":"123882","label":"showing scissor behind glass","template":"Showing [something] behind [something]","placeholders":["scissor","glass"]}, +{"id":"95303","label":"poking tree so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tree"]}, +{"id":"58143","label":"putting a smartphone next to a glue stick","template":"Putting [something] next to [something]","placeholders":["a smartphone","a glue stick"]}, +{"id":"90590","label":"putting ball point pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["ball point pen"]}, +{"id":"163180","label":"pushing a fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["a fidget spinner"]}, +{"id":"141045","label":"dropping a pen next to a pencil case","template":"Dropping [something] next to [something]","placeholders":["a pen","a pencil case"]}, +{"id":"26724","label":"putting dvds with dvds","template":"Putting [something similar to other things that are already on the table]","placeholders":["dvds with dvds"]}, +{"id":"139278","label":"closing the door","template":"Closing [something]","placeholders":["the door"]}, +{"id":"207594","label":"putting screwdriver into the case","template":"Putting [something] into [something]","placeholders":["screwdriver","the case"]}, +{"id":"144698","label":"holding keys behind bag","template":"Holding [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"218761","label":"putting a water canteen upright on the table","template":"Putting [something] upright on the table","placeholders":["a water canteen"]}, +{"id":"140002","label":"lifting up one end of pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pen"]}, +{"id":"44147","label":"throwing remote in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["remote"]}, +{"id":"7408","label":"a small bottle colliding with another bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a small bottle","another bottle"]}, +{"id":"213560","label":"putting wine key upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["wine key"]}, +{"id":"220522","label":"failing to put bottle into teacup because bottle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["bottle","teacup","bottle"]}, +{"id":"149555","label":"showing a water bottle next to a foot","template":"Showing [something] next to [something]","placeholders":["a water bottle","a foot"]}, +{"id":"193921","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"64435","label":"squeezing pink box","template":"Squeezing [something]","placeholders":["pink box"]}, +{"id":"86333","label":"pulling mug from left to right","template":"Pulling [something] from left to right","placeholders":["mug"]}, +{"id":"74428","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"65522","label":"stuffing money into wallet","template":"Stuffing [something] into [something]","placeholders":["money","wallet"]}, +{"id":"37869","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"148962","label":"dropping key onto floor","template":"Dropping [something] onto [something]","placeholders":["key","floor"]}, +{"id":"141286","label":"putting power bank, rubix cube and a musical tabala on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["power bank","rubix cube","a musical tabala"]}, +{"id":"127861","label":"hitting a glass with spoon","template":"Hitting [something] with [something]","placeholders":["a glass","spoon"]}, +{"id":"211740","label":"pretending to turn green water bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["green water bottle"]}, +{"id":"185672","label":"putting a pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pencil"]}, +{"id":"55129","label":"sprinkling lime juice onto a bowl of tomatoes","template":"Sprinkling [something] onto [something]","placeholders":["lime juice","a bowl of tomatoes"]}, +{"id":"104299","label":"dropping bottle next to folder","template":"Dropping [something] next to [something]","placeholders":["bottle","folder"]}, +{"id":"114782","label":"approaching tv dish antenna with your camera","template":"Approaching [something] with your camera","placeholders":["tv dish antenna"]}, +{"id":"132977","label":"wiping dry erase marker off of a marker board","template":"Wiping [something] off of [something]","placeholders":["dry erase marker","a marker board"]}, +{"id":"27457","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"208059","label":"scooping wallet up with hands","template":"Scooping [something] up with [something]","placeholders":["wallet","hands"]}, +{"id":"128849","label":"pushing a can of nuts so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a can of nuts"]}, +{"id":"105848","label":"pouring water into bucket","template":"Pouring [something] into [something]","placeholders":["water","bucket"]}, +{"id":"16831","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"146444","label":"moving a coaster down","template":"Moving [something] down","placeholders":["a coaster"]}, +{"id":"165483","label":"cigarette falling like a rock","template":"[Something] falling like a rock","placeholders":["cigarette"]}, +{"id":"164009","label":"throwing cotton ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["cotton ball"]}, +{"id":"93316","label":"moving stopper up","template":"Moving [something] up","placeholders":["stopper"]}, +{"id":"201441","label":"spilling coconut water onto placemat","template":"Spilling [something] onto [something]","placeholders":["coconut water","placemat"]}, +{"id":"64881","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"184721","label":"pulling black pouch bag from right to left","template":"Pulling [something] from right to left","placeholders":["black pouch bag"]}, +{"id":"52185","label":"uncovering briefcase","template":"Uncovering [something]","placeholders":["briefcase"]}, +{"id":"129049","label":"throwing umbrella in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["umbrella"]}, +{"id":"189592","label":"closing candle tin","template":"Closing [something]","placeholders":["candle tin"]}, +{"id":"191302","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"195493","label":"bending folder so that it deforms","template":"Bending [something] so that it deforms","placeholders":["folder"]}, +{"id":"138069","label":"pulling white deodorant from left to right","template":"Pulling [something] from left to right","placeholders":["white deodorant"]}, +{"id":"36982","label":"dropping bicycle-bell next to door-bell","template":"Dropping [something] next to [something]","placeholders":["bicycle-bell","door-bell"]}, +{"id":"47193","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"33186","label":"pulling towel from left to right","template":"Pulling [something] from left to right","placeholders":["towel"]}, +{"id":"143902","label":"putting a spoon next to a mug","template":"Putting [something] next to [something]","placeholders":["a spoon","a mug"]}, +{"id":"153769","label":"pushing earring from right to left","template":"Pushing [something] from right to left","placeholders":["earring"]}, +{"id":"12097","label":"pulling handphone from right to left","template":"Pulling [something] from right to left","placeholders":["handphone"]}, +{"id":"80552","label":"moving cycle towards the camera","template":"Moving [something] towards the camera","placeholders":["cycle"]}, +{"id":"14875","label":"attaching something to something","template":"Attaching [something] to [something]","placeholders":["something","something"]}, +{"id":"163064","label":"poking toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["toy"]}, +{"id":"61011","label":"throwing sandal onto a surface","template":"Throwing [something] onto a surface","placeholders":["sandal"]}, +{"id":"61770","label":"dropping a sharpener next to an envelope","template":"Dropping [something] next to [something]","placeholders":["a sharpener","an envelope"]}, +{"id":"89328","label":"opening piano","template":"Opening [something]","placeholders":["piano"]}, +{"id":"15441","label":"attaching a pendrive to a laptop","template":"Attaching [something] to [something]","placeholders":["a pendrive","a laptop"]}, +{"id":"82952","label":"dropping game onto paper","template":"Dropping [something] onto [something]","placeholders":["game","paper"]}, +{"id":"209613","label":"tilting iphone with sock on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["iphone","sock"]}, +{"id":"154002","label":"moving a bottle away from the camera","template":"Moving [something] away from the camera","placeholders":["a bottle"]}, +{"id":"125648","label":"pushing bottle glass so it spins","template":"Pushing [something] so it spins","placeholders":["bottle glass"]}, +{"id":"164387","label":"holding a box next to a box","template":"Holding [something] next to [something]","placeholders":["a box","a box"]}, +{"id":"92122","label":"showing pen behind ring","template":"Showing [something] behind [something]","placeholders":["pen","ring"]}, +{"id":"122108","label":"taking the key out of the glass","template":"Taking [something] out of [something]","placeholders":["the key","the glass"]}, +{"id":"203130","label":"attaching a toy frog to a white board","template":"Attaching [something] to [something]","placeholders":["a toy frog","a white board"]}, +{"id":"207937","label":"pulling a pen out of a shoe","template":"Pulling [something] out of [something]","placeholders":["a pen","a shoe"]}, +{"id":"119827","label":"tearing a coupon into two pieces","template":"Tearing [something] into two pieces","placeholders":["a coupon"]}, +{"id":"92486","label":"uncovering pillow","template":"Uncovering [something]","placeholders":["pillow"]}, +{"id":"16052","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"86284","label":"putting tube into box","template":"Putting [something] into [something]","placeholders":["tube","box"]}, +{"id":"15031","label":"putting glass into bowl","template":"Putting [something] into [something]","placeholders":["glass","bowl"]}, +{"id":"42625","label":"pretending to pick a bottle up","template":"Pretending to pick [something] up","placeholders":["a bottle"]}, +{"id":"147276","label":"moving a toy car and a fridge magnet closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a toy car","a fridge magnet"]}, +{"id":"189044","label":"uncovering shoelaces","template":"Uncovering [something]","placeholders":["shoelaces"]}, +{"id":"182162","label":"dropping bra onto bed","template":"Dropping [something] onto [something]","placeholders":["bra","bed"]}, +{"id":"18151","label":"poly-bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["poly-bag"]}, +{"id":"126188","label":"taking a pencil","template":"Taking [one of many similar things on the table]","placeholders":["a pencil"]}, +{"id":"44728","label":"showing spray behind vial","template":"Showing [something] behind [something]","placeholders":["spray","vial"]}, +{"id":"3274","label":"showing that the box is empty","template":"Showing that [something] is empty","placeholders":["the box"]}, +{"id":"19571","label":"pouring water into pan","template":"Pouring [something] into [something]","placeholders":["water","pan"]}, +{"id":"202641","label":"pushing green bowl from left to right","template":"Pushing [something] from left to right","placeholders":["green bowl"]}, +{"id":"53427","label":"turning the camera right while filming globe","template":"Turning the camera right while filming [something]","placeholders":["globe"]}, +{"id":"120525","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"182865","label":"pushing key so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["key"]}, +{"id":"34326","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"38665","label":"pretending to be tearing box cape","template":"Pretending to be tearing [something that is not tearable]","placeholders":["box cape"]}, +{"id":"124082","label":"turning the camera upwards while filming chair","template":"Turning the camera upwards while filming [something]","placeholders":["chair"]}, +{"id":"127120","label":"showing comb behind necklace","template":"Showing [something] behind [something]","placeholders":["comb","necklace"]}, +{"id":"181877","label":"pushing an owl so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["an owl"]}, +{"id":"155379","label":"piling plates up","template":"Piling [something] up","placeholders":["plates"]}, +{"id":"83394","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"138819","label":"turning the camera right while filming iron","template":"Turning the camera right while filming [something]","placeholders":["iron"]}, +{"id":"183440","label":"holding case next to speaker","template":"Holding [something] next to [something]","placeholders":["case","speaker"]}, +{"id":"201061","label":"pretending to open waterbottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["waterbottle"]}, +{"id":"156724","label":"stuffing bags into plastic bag","template":"Stuffing [something] into [something]","placeholders":["bags","plastic bag"]}, +{"id":"28235","label":"spilling water next to a pin","template":"Spilling [something] next to [something]","placeholders":["water","a pin"]}, +{"id":"219756","label":"holding knife in front of ball","template":"Holding [something] in front of [something]","placeholders":["knife","ball"]}, +{"id":"85171","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"209702","label":"moving cup and jug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","jug"]}, +{"id":"40175","label":"lifting a notebook with a screwdriver on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a screwdriver"]}, +{"id":"181958","label":"approaching rice cooker with your camera","template":"Approaching [something] with your camera","placeholders":["rice cooker"]}, +{"id":"66696","label":"throwing wallet","template":"Throwing [something]","placeholders":["wallet"]}, +{"id":"152807","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"43069","label":"dropping a box in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a box","a cup"]}, +{"id":"219576","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"142086","label":"putting keys into bag","template":"Putting [something] into [something]","placeholders":["keys","bag"]}, +{"id":"6813","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"108618","label":"pushing face wash so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["face wash"]}, +{"id":"97537","label":"unfolding business card","template":"Unfolding [something]","placeholders":["business card"]}, +{"id":"68409","label":"pouring orange juice into a cup","template":"Pouring [something] into [something]","placeholders":["orange juice","a cup"]}, +{"id":"35727","label":"opening refridgerator","template":"Opening [something]","placeholders":["refridgerator"]}, +{"id":"56453","label":"moving stapler up","template":"Moving [something] up","placeholders":["stapler"]}, +{"id":"214882","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"179758","label":"turning the camera downwards while filming flower","template":"Turning the camera downwards while filming [something]","placeholders":["flower"]}, +{"id":"87181","label":"holding onion in front of grater","template":"Holding [something] in front of [something]","placeholders":["onion","grater"]}, +{"id":"110654","label":"dropping stopper onto sink","template":"Dropping [something] onto [something]","placeholders":["stopper","sink"]}, +{"id":"96956","label":"holding a statue over a container","template":"Holding [something] over [something]","placeholders":["a statue","a container"]}, +{"id":"202701","label":"holding powder bottle in front of paint bottle","template":"Holding [something] in front of [something]","placeholders":["powder bottle","paint bottle"]}, +{"id":"88569","label":"lifting up one end of eye glasses, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["eye glasses"]}, +{"id":"128039","label":"hitting a table fan with a scissor","template":"Hitting [something] with [something]","placeholders":["a table fan","a scissor"]}, +{"id":"43078","label":"pretending to take pills out of box","template":"Pretending to take [something] out of [something]","placeholders":["pills","box"]}, +{"id":"52285","label":"stacking five xbox games","template":"Stacking [number of] [something]","placeholders":["five","xbox games"]}, +{"id":"7182","label":"pretending to put book onto bottle","template":"Pretending to put [something] onto [something]","placeholders":["book","bottle"]}, +{"id":"202783","label":"pretending to throw knife","template":"Pretending to throw [something]","placeholders":["knife"]}, +{"id":"23695","label":"turning the camera downwards while filming one tea light candle","template":"Turning the camera downwards while filming [something]","placeholders":["one tea light candle"]}, +{"id":"161352","label":"pretending to pick fruit up","template":"Pretending to pick [something] up","placeholders":["fruit"]}, +{"id":"15445","label":"twisting pepper grinder","template":"Twisting [something]","placeholders":["pepper grinder"]}, +{"id":"209176","label":"lifting punching machine up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["punching machine"]}, +{"id":"128802","label":"showing a photo of my friends to the camera","template":"Showing a photo of [something] to the camera","placeholders":["my friends"]}, +{"id":"205766","label":"showing renault logo to the camera","template":"Showing [something] to the camera","placeholders":["renault logo"]}, +{"id":"185326","label":"pretending to pick elephant statue up","template":"Pretending to pick [something] up","placeholders":["elephant statue"]}, +{"id":"167111","label":"showing fire box behind water bottle","template":"Showing [something] behind [something]","placeholders":["fire box","water bottle"]}, +{"id":"199029","label":"pouring water into floor","template":"Pouring [something] into [something]","placeholders":["water","floor"]}, +{"id":"81777","label":"a peg being deflected from a cup","template":"[Something] being deflected from [something]","placeholders":["a peg","a cup"]}, +{"id":"132621","label":"showing that plastic and paper bags is inside paper bag","template":"Showing that [something] is inside [something]","placeholders":["plastic and paper bags","paper bag"]}, +{"id":"179093","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"16914","label":"putting fork on a surface","template":"Putting [something] on a surface","placeholders":["fork"]}, +{"id":"117126","label":"poking a stack of containers without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["containers"]}, +{"id":"9634","label":"putting a peg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a peg"]}, +{"id":"99700","label":"putting punching machine and stapler on the table","template":"Putting [something] and [something] on the table","placeholders":["punching machine","stapler"]}, +{"id":"196678","label":"turning shot glass upside down","template":"Turning [something] upside down","placeholders":["shot glass"]}, +{"id":"107912","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"94289","label":"plugging plug into power outlet","template":"Plugging [something] into [something]","placeholders":["plug","power outlet"]}, +{"id":"125877","label":"lifting something up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["something"]}, +{"id":"169728","label":"moving mouse and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mouse","remote"]}, +{"id":"218384","label":"putting spoon into glass","template":"Putting [something] into [something]","placeholders":["spoon","glass"]}, +{"id":"193186","label":"rolling deodorant container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["deodorant container"]}, +{"id":"66505","label":"uncovering a notebook","template":"Uncovering [something]","placeholders":["a notebook"]}, +{"id":"171060","label":"package of gum falling like a rock","template":"[Something] falling like a rock","placeholders":["package of gum"]}, +{"id":"13689","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"44104","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"184521","label":"tilting a book with a mug on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a mug"]}, +{"id":"134823","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"68278","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"100107","label":"pushing towels so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towels"]}, +{"id":"87459","label":"moving box and comb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","comb"]}, +{"id":"68776","label":"tilting a box with a ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","a ball"]}, +{"id":"62501","label":"touching (without moving) the side of a cube","template":"Touching (without moving) [part] of [something]","placeholders":["the side","a cube"]}, +{"id":"210627","label":"pretending to be tearing file","template":"Pretending to be tearing [something that is not tearable]","placeholders":["file"]}, +{"id":"166231","label":"removing mug, revealing tennisball behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","tennisball"]}, +{"id":"33814","label":"pretending to put remote into box","template":"Pretending to put [something] into [something]","placeholders":["remote","box"]}, +{"id":"3552","label":"taking scissors from chair","template":"Taking [something] from [somewhere]","placeholders":["scissors","chair"]}, +{"id":"91176","label":"pouring water into a bottle cap until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a bottle cap"]}, +{"id":"185396","label":"pretending to scoop ice-cream up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["ice-cream","spoon"]}, +{"id":"18048","label":"scooping tea up with teacup","template":"Scooping [something] up with [something]","placeholders":["tea","teacup"]}, +{"id":"148294","label":"putting plastic cover similar to other plastic covers that are already on the table]","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic cover similar to other plastic covers that are already on the table]"]}, +{"id":"154172","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"109507","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"100516","label":"pushing red watch case from left to right","template":"Pushing [something] from left to right","placeholders":["red watch case"]}, +{"id":"57505","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"66509","label":"showing that spectacle box is empty","template":"Showing that [something] is empty","placeholders":["spectacle box"]}, +{"id":"84387","label":"taking broom from floor","template":"Taking [something] from [somewhere]","placeholders":["broom","floor"]}, +{"id":"20005","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"7055","label":"pretending to throw bottle","template":"Pretending to throw [something]","placeholders":["bottle"]}, +{"id":"136753","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"177365","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"153539","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"88175","label":"tearing sweet packet into two pieces","template":"Tearing [something] into two pieces","placeholders":["sweet packet"]}, +{"id":"210714","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"58556","label":"holding game","template":"Holding [something]","placeholders":["game"]}, +{"id":"33539","label":"pulling swab out of pot","template":"Pulling [something] out of [something]","placeholders":["swab","pot"]}, +{"id":"11755","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"73395","label":"turning the camera right while filming house","template":"Turning the camera right while filming [something]","placeholders":["house"]}, +{"id":"175297","label":"showing bottle behind shoe","template":"Showing [something] behind [something]","placeholders":["bottle","shoe"]}, +{"id":"194882","label":"hitting table with bat","template":"Hitting [something] with [something]","placeholders":["table","bat"]}, +{"id":"220495","label":"pretending to put phone underneath mug","template":"Pretending to put [something] underneath [something]","placeholders":["phone","mug"]}, +{"id":"92283","label":"putting sunglasses on a surface","template":"Putting [something] on a surface","placeholders":["sunglasses"]}, +{"id":"129145","label":"putting a spoon into a basket","template":"Putting [something] into [something]","placeholders":["a spoon","a basket"]}, +{"id":"161926","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"6565","label":"moving a plastic bottle down","template":"Moving [something] down","placeholders":["a plastic bottle"]}, +{"id":"2799","label":"dropping pen onto table","template":"Dropping [something] onto [something]","placeholders":["pen","table"]}, +{"id":"109215","label":"poking pencil case so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["pencil case"]}, +{"id":"37952","label":"stuffing sleeping bag into its storage pocket","template":"Stuffing [something] into [something]","placeholders":["sleeping bag","its storage pocket"]}, +{"id":"211690","label":"pretending to open microwave door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["microwave door"]}, +{"id":"166890","label":"dropping cup next to cup","template":"Dropping [something] next to [something]","placeholders":["cup","cup"]}, +{"id":"173179","label":"taking glass from table","template":"Taking [something] from [somewhere]","placeholders":["glass","table"]}, +{"id":"132594","label":"covering apple with towel","template":"Covering [something] with [something]","placeholders":["apple","towel"]}, +{"id":"15770","label":"pretending to put bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottle"]}, +{"id":"6921","label":"stacking three boxes","template":"Stacking [number of] [something]","placeholders":["three","boxes"]}, +{"id":"14163","label":"picking controller up","template":"Picking [something] up","placeholders":["controller"]}, +{"id":"155052","label":"spinning something that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["something"]}, +{"id":"119790","label":"putting paper next to headphones","template":"Putting [something] next to [something]","placeholders":["paper","headphones"]}, +{"id":"71761","label":"dropping a matchbox in front of a bowl","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a bowl"]}, +{"id":"154864","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"127334","label":"taking a spoon out of a saucepan","template":"Taking [something] out of [something]","placeholders":["a spoon","a saucepan"]}, +{"id":"31443","label":"showing that paper towel is inside cup","template":"Showing that [something] is inside [something]","placeholders":["paper towel","cup"]}, +{"id":"12693","label":"pulling chair from left to right","template":"Pulling [something] from left to right","placeholders":["chair"]}, +{"id":"188748","label":"pretending to put a screwdriver onto a toolbox","template":"Pretending to put [something] onto [something]","placeholders":["a screwdriver","a toolbox"]}, +{"id":"203203","label":"plugging charger into switchboard","template":"Plugging [something] into [something]","placeholders":["charger","switchboard"]}, +{"id":"158053","label":"putting plate and glass on the table","template":"Putting [something] and [something] on the table","placeholders":["plate","glass"]}, +{"id":"107233","label":"pulling two ends of shoe but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["shoe"]}, +{"id":"32060","label":"touching (without moving) a part of post it notes","template":"Touching (without moving) [part] of [something]","placeholders":["a part","post it notes"]}, +{"id":"86680","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"151454","label":"pushing pink water bottle from left to right","template":"Pushing [something] from left to right","placeholders":["pink water bottle"]}, +{"id":"127647","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"164180","label":"putting a ruler and a wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["a ruler","a wallet"]}, +{"id":"162925","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"65371","label":"stacking three coins","template":"Stacking [number of] [something]","placeholders":["three","coins"]}, +{"id":"15265","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"97459","label":"twisting a doll","template":"Twisting [something]","placeholders":["a doll"]}, +{"id":"106405","label":"tearing a paper bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper bag"]}, +{"id":"176052","label":"moving usb cable closer to usb","template":"Moving [something] closer to [something]","placeholders":["usb cable","usb"]}, +{"id":"473","label":"pouring water onto mug","template":"Pouring [something] onto [something]","placeholders":["water","mug"]}, +{"id":"150353","label":"scooping coffee grounds up with spoon","template":"Scooping [something] up with [something]","placeholders":["coffee grounds","spoon"]}, +{"id":"69578","label":"pushing a lid so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a lid"]}, +{"id":"13773","label":"a feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a feather"]}, +{"id":"6977","label":"dropping a phone onto a folder","template":"Dropping [something] onto [something]","placeholders":["a phone","a folder"]}, +{"id":"180881","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"159107","label":"empty crisp packet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["empty crisp packet"]}, +{"id":"62609","label":"turning a mouthwash bottle upside down","template":"Turning [something] upside down","placeholders":["a mouthwash bottle"]}, +{"id":"28955","label":"putting soap that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["soap"]}, +{"id":"32167","label":"pushing bottlecap from left to right","template":"Pushing [something] from left to right","placeholders":["bottlecap"]}, +{"id":"42331","label":"putting ring behind pot","template":"Putting [something] behind [something]","placeholders":["ring","pot"]}, +{"id":"144820","label":"moving spanner down","template":"Moving [something] down","placeholders":["spanner"]}, +{"id":"34699","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"79557","label":"plugging a computer charger into a wall outlet","template":"Plugging [something] into [something]","placeholders":["a computer charger","a wall outlet"]}, +{"id":"30684","label":"tilting charger with hand on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["charger","hand"]}, +{"id":"102635","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"121496","label":"showing a remote control next to calendar and headphones","template":"Showing [something] next to [something]","placeholders":["a remote control","calendar and headphones"]}, +{"id":"132080","label":"putting jam behind peanut butter","template":"Putting [something] behind [something]","placeholders":["jam","peanut butter"]}, +{"id":"220647","label":"pushing a bottle with a box","template":"Pushing [something] with [something]","placeholders":["a bottle","a box"]}, +{"id":"29625","label":"poking poking chapstick so it falls so that it falls over","template":"Poking [something] so that it falls over","placeholders":["poking chapstick so it falls"]}, +{"id":"164941","label":"pretending to pick phone up","template":"Pretending to pick [something] up","placeholders":["phone"]}, +{"id":"68587","label":"moving ball across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["ball"]}, +{"id":"26918","label":"pretending to be tearing a plastic bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic bag"]}, +{"id":"177779","label":"lifting up one end of a book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a book"]}, +{"id":"14227","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"171583","label":"pretending to squeeze toothpaste","template":"Pretending to squeeze [something]","placeholders":["toothpaste"]}, +{"id":"124554","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"123049","label":"rolling gluestick on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["gluestick"]}, +{"id":"5722","label":"pretending to pick clog up","template":"Pretending to pick [something] up","placeholders":["clog"]}, +{"id":"51220","label":"lifting up one end of shoe without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["shoe"]}, +{"id":"87423","label":"holding soldering wire reel in front of black plastic box","template":"Holding [something] in front of [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"105333","label":"tilting a book with sunglasses on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","sunglasses"]}, +{"id":"89639","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"203224","label":"covering phone cover with cloth","template":"Covering [something] with [something]","placeholders":["phone cover","cloth"]}, +{"id":"117071","label":"showing pond to the camera","template":"Showing [something] to the camera","placeholders":["pond"]}, +{"id":"74945","label":"picking tape up","template":"Picking [something] up","placeholders":["tape"]}, +{"id":"125413","label":"pushing soft elmo so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["soft elmo"]}, +{"id":"60764","label":"showing that red colour toy car is inside cookie container","template":"Showing that [something] is inside [something]","placeholders":["red colour toy car","cookie container"]}, +{"id":"71501","label":"covering board clip with cookie box lid","template":"Covering [something] with [something]","placeholders":["board clip","cookie box lid"]}, +{"id":"76555","label":"letting ball toy roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball toy"]}, +{"id":"119103","label":"putting mug in front of crayon","template":"Putting [something] in front of [something]","placeholders":["mug","crayon"]}, +{"id":"194513","label":"putting a bottle of lotion on a surface","template":"Putting [something] on a surface","placeholders":["a bottle of lotion"]}, +{"id":"4570","label":"putting a picture underneath a glass","template":"Putting [something] underneath [something]","placeholders":["a picture","a glass"]}, +{"id":"12724","label":"moving garlic presser away from the camera","template":"Moving [something] away from the camera","placeholders":["garlic presser"]}, +{"id":"28320","label":"showing punching machine next to rubix cube","template":"Showing [something] next to [something]","placeholders":["punching machine","rubix cube"]}, +{"id":"100007","label":"turning the camera right while filming park","template":"Turning the camera right while filming [something]","placeholders":["park"]}, +{"id":"184134","label":"holding mouse next to wallet","template":"Holding [something] next to [something]","placeholders":["mouse","wallet"]}, +{"id":"60290","label":"putting plastic mug on a surface","template":"Putting [something] on a surface","placeholders":["plastic mug"]}, +{"id":"70488","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"218804","label":"covering screwdriver with shirt","template":"Covering [something] with [something]","placeholders":["screwdriver","shirt"]}, +{"id":"16999","label":"picking glasses up","template":"Picking [something] up","placeholders":["glasses"]}, +{"id":"26996","label":"stuffing clothes into the dryer","template":"Stuffing [something] into [something]","placeholders":["clothes","the dryer"]}, +{"id":"57327","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"45505","label":"putting round tape on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["round tape"]}, +{"id":"191433","label":"putting a mug that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a mug"]}, +{"id":"182201","label":"holding heater over head","template":"Holding [something] over [something]","placeholders":["heater","head"]}, +{"id":"85782","label":"putting something similar to color tube","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar to color tube"]}, +{"id":"128292","label":"turning toy link upside down","template":"Turning [something] upside down","placeholders":["toy link"]}, +{"id":"4367","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"159419","label":"moving a hard drive of a server","template":"Moving [part] of [something]","placeholders":["a hard drive","a server"]}, +{"id":"17952","label":"pretending to be tearing a plastic tape","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic tape"]}, +{"id":"126580","label":"taking a coin from a bowl","template":"Taking [something] from [somewhere]","placeholders":["a coin","a bowl"]}, +{"id":"73787","label":"lifting firm plastic up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["firm plastic"]}, +{"id":"207565","label":"stacking 4 candles","template":"Stacking [number of] [something]","placeholders":["4","candles"]}, +{"id":"141215","label":"lifting up one end of nail file, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["nail file"]}, +{"id":"120453","label":"twisting a watering pipe","template":"Twisting [something]","placeholders":["a watering pipe"]}, +{"id":"91402","label":"moving bottle and bowl away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","bowl"]}, +{"id":"104802","label":"holding pen behind handbag","template":"Holding [something] behind [something]","placeholders":["pen","handbag"]}, +{"id":"187794","label":"putting cloth, battery and packing tape on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["cloth","battery","packing tape"]}, +{"id":"115479","label":"poking a hole into hair gel","template":"Poking a hole into [some substance]","placeholders":["hair gel"]}, +{"id":"133546","label":"pushing a box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a box"]}, +{"id":"109472","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"217753","label":"plugging charger into wall","template":"Plugging [something] into [something]","placeholders":["charger","wall"]}, +{"id":"209716","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"144619","label":"throwing dvd case onto a surface","template":"Throwing [something] onto a surface","placeholders":["dvd case"]}, +{"id":"156164","label":"opening a cardboard container","template":"Opening [something]","placeholders":["a cardboard container"]}, +{"id":"146236","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"64277","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"76966","label":"pretending to be tearing plastic bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic bottle"]}, +{"id":"143456","label":"pushing bag of chips so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bag of chips"]}, +{"id":"28699","label":"a ball colliding with a ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a ball","a ball"]}, +{"id":"45515","label":"dropping envelopes next to candle","template":"Dropping [something] next to [something]","placeholders":["envelopes","candle"]}, +{"id":"218831","label":"putting comb into cup","template":"Putting [something] into [something]","placeholders":["comb","cup"]}, +{"id":"218317","label":"tearing tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing paper"]}, +{"id":"89711","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"81964","label":"plugging a head phones cable into an ipad","template":"Plugging [something] into [something]","placeholders":["a head phones cable","an ipad"]}, +{"id":"104650","label":"moving caserole dish away from caserole dish","template":"Moving [something] away from [something]","placeholders":["caserole dish","caserole dish"]}, +{"id":"152011","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"175601","label":"letting hair cream roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["hair cream"]}, +{"id":"50154","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"115762","label":"opening diary","template":"Opening [something]","placeholders":["diary"]}, +{"id":"47975","label":"opening water bottle","template":"Opening [something]","placeholders":["water bottle"]}, +{"id":"27192","label":"stuffing cotton into toy duck","template":"Stuffing [something] into [something]","placeholders":["cotton","toy duck"]}, +{"id":"135690","label":"spinning bangle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bangle"]}, +{"id":"10433","label":"putting cow that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cow"]}, +{"id":"1077","label":"dropping a matchstick into a bowl","template":"Dropping [something] into [something]","placeholders":["a matchstick","a bowl"]}, +{"id":"57796","label":"dropping pen next to box","template":"Dropping [something] next to [something]","placeholders":["pen","box"]}, +{"id":"100933","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"145101","label":"squeezing cleaning cloth","template":"Squeezing [something]","placeholders":["cleaning cloth"]}, +{"id":"73235","label":"pretending to put stick on a surface","template":"Pretending to put [something] on a surface","placeholders":["stick"]}, +{"id":"22754","label":"pushing bottled water so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottled water"]}, +{"id":"132509","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"197582","label":"closing window","template":"Closing [something]","placeholders":["window"]}, +{"id":"20943","label":"turning small book upside down","template":"Turning [something] upside down","placeholders":["small book"]}, +{"id":"22848","label":"pretending to open the microwave without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the microwave"]}, +{"id":"58339","label":"pouring water out of a glass","template":"Pouring [something] out of [something]","placeholders":["water","a glass"]}, +{"id":"44059","label":"letting tube roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["tube"]}, +{"id":"133154","label":"turning water botle upside down","template":"Turning [something] upside down","placeholders":["water botle"]}, +{"id":"1800","label":"pushing sunglasses so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["sunglasses"]}, +{"id":"194291","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"79403","label":"showing waterbottle to the camera","template":"Showing [something] to the camera","placeholders":["waterbottle"]}, +{"id":"162728","label":"pulling two ends of a lighter but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a lighter"]}, +{"id":"214693","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"156292","label":"pulling emblem from left to right","template":"Pulling [something] from left to right","placeholders":["emblem"]}, +{"id":"23209","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"132011","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"105956","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"161610","label":"putting mug in front of clip","template":"Putting [something] in front of [something]","placeholders":["mug","clip"]}, +{"id":"103127","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"102047","label":"showing a photo of ladies to the camera","template":"Showing a photo of [something] to the camera","placeholders":["ladies"]}, +{"id":"127812","label":"plugging cord into wall plug","template":"Plugging [something] into [something]","placeholders":["cord","wall plug"]}, +{"id":"138173","label":"holding spray behind christmas tree","template":"Holding [something] behind [something]","placeholders":["spray","christmas tree"]}, +{"id":"123079","label":"picking bottle up","template":"Picking [something] up","placeholders":["bottle"]}, +{"id":"184347","label":"uncovering mobile","template":"Uncovering [something]","placeholders":["mobile"]}, +{"id":"42048","label":"uncovering matchbox","template":"Uncovering [something]","placeholders":["matchbox"]}, +{"id":"127270","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"217193","label":"spilling water next to bucket","template":"Spilling [something] next to [something]","placeholders":["water","bucket"]}, +{"id":"103846","label":"holding frisbee next to necklace","template":"Holding [something] next to [something]","placeholders":["frisbee","necklace"]}, +{"id":"145526","label":"spoon colliding with spoon and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["spoon","spoon"]}, +{"id":"202832","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"214510","label":"plugging toaster into wall outlet","template":"Plugging [something] into [something]","placeholders":["toaster","wall outlet"]}, +{"id":"76799","label":"folding 50 peso bill","template":"Folding [something]","placeholders":["50 peso bill"]}, +{"id":"212740","label":"putting remote, cream tube and candle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote","cream tube","candle"]}, +{"id":"51799","label":"showing lamp behind books","template":"Showing [something] behind [something]","placeholders":["lamp","books"]}, +{"id":"158105","label":"pretending to squeeze can","template":"Pretending to squeeze [something]","placeholders":["can"]}, +{"id":"135075","label":"ball being deflected from cup","template":"[Something] being deflected from [something]","placeholders":["ball","cup"]}, +{"id":"159132","label":"wiping water off of wall","template":"Wiping [something] off of [something]","placeholders":["water","wall"]}, +{"id":"77459","label":"rolling candle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["candle"]}, +{"id":"83706","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"28397","label":"moving game up","template":"Moving [something] up","placeholders":["game"]}, +{"id":"46424","label":"throwing rolled paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["rolled paper"]}, +{"id":"80494","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"46799","label":"poking a plastic bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a plastic bottle"]}, +{"id":"129306","label":"pushing a marker off of books","template":"Pushing [something] off of [something]","placeholders":["a marker","books"]}, +{"id":"130688","label":"covering phone with hand","template":"Covering [something] with [something]","placeholders":["phone","hand"]}, +{"id":"166547","label":"trying to pour water into bowl, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bowl"]}, +{"id":"91042","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"215601","label":"putting dishwashing liquid and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["dishwashing liquid","cup"]}, +{"id":"72176","label":"holding bottle over scissors","template":"Holding [something] over [something]","placeholders":["bottle","scissors"]}, +{"id":"67672","label":"turning the camera left while filming sugar container","template":"Turning the camera left while filming [something]","placeholders":["sugar container"]}, +{"id":"54899","label":"showing marker on top of remote","template":"Showing [something] on top of [something]","placeholders":["marker","remote"]}, +{"id":"148768","label":"twisting (wringing) wet towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wet towel"]}, +{"id":"50439","label":"pretending to put butter into hat","template":"Pretending to put [something] into [something]","placeholders":["butter","hat"]}, +{"id":"196781","label":"uncovering tape","template":"Uncovering [something]","placeholders":["tape"]}, +{"id":"99453","label":"holding a wall adapter next to a cellphone","template":"Holding [something] next to [something]","placeholders":["a wall adapter","a cellphone"]}, +{"id":"206019","label":"lifting a surface with a sweet on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a sweet"]}, +{"id":"130384","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"29278","label":"putting mousepad underneath mouse","template":"Putting [something] underneath [something]","placeholders":["mousepad","mouse"]}, +{"id":"145109","label":"taking a key chain","template":"Taking [one of many similar things on the table]","placeholders":["a key chain"]}, +{"id":"26322","label":"lifting up one end of remote without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["remote"]}, +{"id":"88795","label":"pretending to take a plastic pumpkin from stand","template":"Pretending to take [something] from [somewhere]","placeholders":["a plastic pumpkin","stand"]}, +{"id":"171717","label":"tearing a notecard just a little bit","template":"Tearing [something] just a little bit","placeholders":["a notecard"]}, +{"id":"67039","label":"closing water bottle","template":"Closing [something]","placeholders":["water bottle"]}, +{"id":"193838","label":"stuffing newspaper into a jar","template":"Stuffing [something] into [something]","placeholders":["newspaper","a jar"]}, +{"id":"108777","label":"tearing a notecard into two pieces","template":"Tearing [something] into two pieces","placeholders":["a notecard"]}, +{"id":"132270","label":"stuffing cable into plastic","template":"Stuffing [something] into [something]","placeholders":["cable","plastic"]}, +{"id":"109906","label":"throwing lemon in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["lemon"]}, +{"id":"135661","label":"silicone falling like a rock","template":"[Something] falling like a rock","placeholders":["silicone"]}, +{"id":"93233","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"45293","label":"covering a nickle with a coaster","template":"Covering [something] with [something]","placeholders":["a nickle","a coaster"]}, +{"id":"160093","label":"moving a bottle and a glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a glass"]}, +{"id":"148517","label":"piling containers up","template":"Piling [something] up","placeholders":["containers"]}, +{"id":"49748","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"136949","label":"removing plastic cap, revealing pebble behind","template":"Removing [something], revealing [something] behind","placeholders":["plastic cap","pebble"]}, +{"id":"188756","label":"moving rock and rock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["rock","rock"]}, +{"id":"144837","label":"poking a toothbrus so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a toothbrus"]}, +{"id":"72793","label":"taking jacket out of rack","template":"Taking [something] out of [something]","placeholders":["jacket","rack"]}, +{"id":"9726","label":"pushing controller so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["controller"]}, +{"id":"188919","label":"a calculator falling like a rock","template":"[Something] falling like a rock","placeholders":["a calculator"]}, +{"id":"204292","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"163019","label":"covering table with blanket","template":"Covering [something] with [something]","placeholders":["table","blanket"]}, +{"id":"163277","label":"showing banana bunch to the camera","template":"Showing [something] to the camera","placeholders":["banana bunch"]}, +{"id":"64582","label":"uncovering a glass","template":"Uncovering [something]","placeholders":["a glass"]}, +{"id":"24103","label":"putting deodorant next to cream","template":"Putting [something] next to [something]","placeholders":["deodorant","cream"]}, +{"id":"10994","label":"holding mobile in front of remote","template":"Holding [something] in front of [something]","placeholders":["mobile","remote"]}, +{"id":"105930","label":"twisting (wringing) rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["rag"]}, +{"id":"125617","label":"plugging cable into socket","template":"Plugging [something] into [something]","placeholders":["cable","socket"]}, +{"id":"113188","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"35636","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"29216","label":"wiping ketchup stains off of a surface","template":"Wiping [something] off of [something]","placeholders":["ketchup stains","a surface"]}, +{"id":"13213","label":"pretending to put a jbl on a surface","template":"Pretending to put [something] on a surface","placeholders":["a jbl"]}, +{"id":"20742","label":"lifting bottle with movie on it","template":"Lifting [something] with [something] on it","placeholders":["bottle","movie"]}, +{"id":"165008","label":"a cup colliding with an apple and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a cup","an apple"]}, +{"id":"74289","label":"putting a toothpick upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a toothpick"]}, +{"id":"179471","label":"pouring toothpaste onto toothbrush","template":"Pouring [something] onto [something]","placeholders":["toothpaste","toothbrush"]}, +{"id":"142250","label":"bending a plastic knife until it breaks","template":"Bending [something] until it breaks","placeholders":["a plastic knife"]}, +{"id":"113377","label":"pushing tissues so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tissues"]}, +{"id":"11493","label":"holding toy in front of remote","template":"Holding [something] in front of [something]","placeholders":["toy","remote"]}, +{"id":"77214","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"111958","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"46420","label":"moving lighter away from book","template":"Moving [something] away from [something]","placeholders":["lighter","book"]}, +{"id":"165179","label":"holding marker behind cup","template":"Holding [something] behind [something]","placeholders":["marker","cup"]}, +{"id":"37919","label":"bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bag"]}, +{"id":"159237","label":"attaching a magnet to a refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","a refrigerator"]}, +{"id":"107674","label":"stuffing flowers into woodbowl","template":"Stuffing [something] into [something]","placeholders":["flowers","woodbowl"]}, +{"id":"182338","label":"spilling water onto a pan","template":"Spilling [something] onto [something]","placeholders":["water","a pan"]}, +{"id":"168093","label":"poking box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["box"]}, +{"id":"51127","label":"pushing glass from left to right","template":"Pushing [something] from left to right","placeholders":["glass"]}, +{"id":"107744","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"157451","label":"dropping pencil sharpener in front of scotch tape","template":"Dropping [something] in front of [something]","placeholders":["pencil sharpener","scotch tape"]}, +{"id":"98202","label":"pulling two ends of pencil but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["pencil"]}, +{"id":"170266","label":"pretending or failing to wipe stain off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","wall"]}, +{"id":"170322","label":"showing that a cable is inside a glasses case","template":"Showing that [something] is inside [something]","placeholders":["a cable","a glasses case"]}, +{"id":"42363","label":"dropping groundnuts into a bowl","template":"Dropping [something] into [something]","placeholders":["groundnuts","a bowl"]}, +{"id":"177864","label":"putting white badge and black toy wheel on the table","template":"Putting [something] and [something] on the table","placeholders":["white badge","black toy wheel"]}, +{"id":"3396","label":"tipping chapstick over","template":"Tipping [something] over","placeholders":["chapstick"]}, +{"id":"213592","label":"spinning tv remote so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["tv remote"]}, +{"id":"27116","label":"digging rocks out of towel","template":"Digging [something] out of [something]","placeholders":["rocks","towel"]}, +{"id":"142647","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"100626","label":"squeezing slime","template":"Squeezing [something]","placeholders":["slime"]}, +{"id":"83751","label":"folding piece of paper","template":"Folding [something]","placeholders":["piece of paper"]}, +{"id":"48157","label":"throwing cup in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cup"]}, +{"id":"20368","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"114135","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"8778","label":"pushing a soap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a soap"]}, +{"id":"218205","label":"lifting box with phone on it","template":"Lifting [something] with [something] on it","placeholders":["box","phone"]}, +{"id":"60410","label":"taking one of many forks","template":"Taking [one of many similar things on the table]","placeholders":["one of many forks"]}, +{"id":"176520","label":"showing that straw is inside cup","template":"Showing that [something] is inside [something]","placeholders":["straw","cup"]}, +{"id":"76782","label":"moving wristwatch down","template":"Moving [something] down","placeholders":["wristwatch"]}, +{"id":"46754","label":"spinning apple so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["apple"]}, +{"id":"171095","label":"dropping cube behind dish","template":"Dropping [something] behind [something]","placeholders":["cube","dish"]}, +{"id":"26045","label":"trying but failing to attach duct tape to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["duct tape","wall"]}, +{"id":"20161","label":"a post card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a post card"]}, +{"id":"18582","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"138429","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"207643","label":"showing butterfly to the camera","template":"Showing [something] to the camera","placeholders":["butterfly"]}, +{"id":"111038","label":"covering the tulips with a magazine","template":"Covering [something] with [something]","placeholders":["the tulips","a magazine"]}, +{"id":"82480","label":"turning a candle upside down","template":"Turning [something] upside down","placeholders":["a candle"]}, +{"id":"179688","label":"a pen colliding with another pen and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pen","another pen"]}, +{"id":"215193","label":"lifting wood log up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wood log"]}, +{"id":"138176","label":"holding a glass in front of a book","template":"Holding [something] in front of [something]","placeholders":["a glass","a book"]}, +{"id":"187881","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"54234","label":"putting cloth into bowl","template":"Putting [something] into [something]","placeholders":["cloth","bowl"]}, +{"id":"86103","label":"taking pencile out of glas","template":"Taking [something] out of [something]","placeholders":["pencile","glas"]}, +{"id":"60554","label":"throwing a ball against a bear","template":"Throwing [something] against [something]","placeholders":["a ball","a bear"]}, +{"id":"12898","label":"moving white chalk away from the camera","template":"Moving [something] away from the camera","placeholders":["white chalk"]}, +{"id":"208486","label":"putting a candle into a bougeoir","template":"Putting [something] into [something]","placeholders":["a candle","a bougeoir"]}, +{"id":"71504","label":"showing that jug is empty","template":"Showing that [something] is empty","placeholders":["jug"]}, +{"id":"106214","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"140784","label":"scooping litter up with shovel","template":"Scooping [something] up with [something]","placeholders":["litter","shovel"]}, +{"id":"39747","label":"feather falling falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather falling"]}, +{"id":"31438","label":"dropping pen in front of pieces","template":"Dropping [something] in front of [something]","placeholders":["pen","pieces"]}, +{"id":"128636","label":"putting remote into box","template":"Putting [something] into [something]","placeholders":["remote","box"]}, +{"id":"1183","label":"stuffing a pillow into a backpack","template":"Stuffing [something] into [something]","placeholders":["a pillow","a backpack"]}, +{"id":"94296","label":"spilling water onto a bottle","template":"Spilling [something] onto [something]","placeholders":["water","a bottle"]}, +{"id":"132094","label":"attaching paper to wall","template":"Attaching [something] to [something]","placeholders":["paper","wall"]}, +{"id":"125470","label":"putting book that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["book"]}, +{"id":"23517","label":"removing orange, revealing coin behind","template":"Removing [something], revealing [something] behind","placeholders":["orange","coin"]}, +{"id":"17237","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"158334","label":"pushing a coin so it spins","template":"Pushing [something] so it spins","placeholders":["a coin"]}, +{"id":"81051","label":"moving cigarette lighter up","template":"Moving [something] up","placeholders":["cigarette lighter"]}, +{"id":"217225","label":"spilling water next to a box","template":"Spilling [something] next to [something]","placeholders":["water","a box"]}, +{"id":"128688","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"82454","label":"turning the camera left while filming advertisment board","template":"Turning the camera left while filming [something]","placeholders":["advertisment board"]}, +{"id":"212224","label":"putting crayon next to mug","template":"Putting [something] next to [something]","placeholders":["crayon","mug"]}, +{"id":"172789","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"31715","label":"stuffing pillow into pillow case","template":"Stuffing [something] into [something]","placeholders":["pillow","pillow case"]}, +{"id":"123758","label":"lifting sticky note with sharpener on it","template":"Lifting [something] with [something] on it","placeholders":["sticky note","sharpener"]}, +{"id":"105429","label":"moving a pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a pen"]}, +{"id":"146024","label":"pushing spoon from right to left","template":"Pushing [something] from right to left","placeholders":["spoon"]}, +{"id":"123028","label":"stuffing clothes into a bag","template":"Stuffing [something] into [something]","placeholders":["clothes","a bag"]}, +{"id":"183416","label":"turning plastic cup upside down","template":"Turning [something] upside down","placeholders":["plastic cup"]}, +{"id":"177633","label":"pretending to pick empty treat bar wrap up","template":"Pretending to pick [something] up","placeholders":["empty treat bar wrap"]}, +{"id":"71517","label":"moving cell phone up","template":"Moving [something] up","placeholders":["cell phone"]}, +{"id":"6710","label":"holding a starfish in front of a goblet","template":"Holding [something] in front of [something]","placeholders":["a starfish","a goblet"]}, +{"id":"69903","label":"plugging air freshener into wall outlet","template":"Plugging [something] into [something]","placeholders":["air freshener","wall outlet"]}, +{"id":"62678","label":"moving earring down","template":"Moving [something] down","placeholders":["earring"]}, +{"id":"29260","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"214712","label":"throwing a tennisball","template":"Throwing [something]","placeholders":["a tennisball"]}, +{"id":"208126","label":"lifting a mug up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a mug"]}, +{"id":"177640","label":"uncovering broom","template":"Uncovering [something]","placeholders":["broom"]}, +{"id":"177713","label":"putting setquare behind mug","template":"Putting [something] behind [something]","placeholders":["setquare","mug"]}, +{"id":"145491","label":"pushing scissors with a box","template":"Pushing [something] with [something]","placeholders":["scissors","a box"]}, +{"id":"16246","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"157681","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"91917","label":"putting soap on a surface","template":"Putting [something] on a surface","placeholders":["soap"]}, +{"id":"148184","label":"putting a white cup next to a black cup","template":"Putting [something] next to [something]","placeholders":["a white cup","a black cup"]}, +{"id":"9177","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"209254","label":"pulling green hair comb from left to right","template":"Pulling [something] from left to right","placeholders":["green hair comb"]}, +{"id":"7805","label":"moving staple down","template":"Moving [something] down","placeholders":["staple"]}, +{"id":"138714","label":"putting wallet behind pillow","template":"Putting [something] behind [something]","placeholders":["wallet","pillow"]}, +{"id":"188476","label":"pretending to throw a stuffed bird","template":"Pretending to throw [something]","placeholders":["a stuffed bird"]}, +{"id":"204752","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"205071","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"122718","label":"holding pen over socks","template":"Holding [something] over [something]","placeholders":["pen","socks"]}, +{"id":"121337","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"108716","label":"lifting laptop with charger on it","template":"Lifting [something] with [something] on it","placeholders":["laptop","charger"]}, +{"id":"71532","label":"tearing waste cloth just a little bit","template":"Tearing [something] just a little bit","placeholders":["waste cloth"]}, +{"id":"96389","label":"moving a remote closer to a box","template":"Moving [something] closer to [something]","placeholders":["a remote","a box"]}, +{"id":"55854","label":"putting mug onto coaster","template":"Putting [something] onto [something]","placeholders":["mug","coaster"]}, +{"id":"46256","label":"putting newspaper on a surface","template":"Putting [something] on a surface","placeholders":["newspaper"]}, +{"id":"157966","label":"tilting decorative element with bubblegum box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["decorative element","bubblegum box"]}, +{"id":"160727","label":"pretending to pick post-it up","template":"Pretending to pick [something] up","placeholders":["post-it"]}, +{"id":"101852","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"28806","label":"pulling brown case from right to left","template":"Pulling [something] from right to left","placeholders":["brown case"]}, +{"id":"170286","label":"holding bottle behind fan","template":"Holding [something] behind [something]","placeholders":["bottle","fan"]}, +{"id":"37516","label":"twisting (wringing) a wrap wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a wrap"]}, +{"id":"128150","label":"tennis ball being deflected from cd stack","template":"[Something] being deflected from [something]","placeholders":["tennis ball","cd stack"]}, +{"id":"21472","label":"burying rock in dirt","template":"Burying [something] in [something]","placeholders":["rock","dirt"]}, +{"id":"186098","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"71097","label":"holding spoon next to cup","template":"Holding [something] next to [something]","placeholders":["spoon","cup"]}, +{"id":"799","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"70598","label":"folding a napkin","template":"Folding [something]","placeholders":["a napkin"]}, +{"id":"126162","label":"trying but failing to attach banana to coaster because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["banana","coaster"]}, +{"id":"97487","label":"pushing pink water bottle from right to left","template":"Pushing [something] from right to left","placeholders":["pink water bottle"]}, +{"id":"170007","label":"pulling pink water bottle from right to left","template":"Pulling [something] from right to left","placeholders":["pink water bottle"]}, +{"id":"160816","label":"pretending to poke tissue box","template":"Pretending to poke [something]","placeholders":["tissue box"]}, +{"id":"184507","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"141806","label":"showing a photo of toothbrush to the camera","template":"Showing a photo of [something] to the camera","placeholders":["toothbrush"]}, +{"id":"84085","label":"stuffing tissues into container","template":"Stuffing [something] into [something]","placeholders":["tissues","container"]}, +{"id":"51984","label":"moving a notebook across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a notebook"]}, +{"id":"118653","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"15600","label":"trying to bend wood so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["wood"]}, +{"id":"108352","label":"tearing brochure into two pieces","template":"Tearing [something] into two pieces","placeholders":["brochure"]}, +{"id":"34706","label":"putting phone that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["phone"]}, +{"id":"212936","label":"pulling a mug from right to left","template":"Pulling [something] from right to left","placeholders":["a mug"]}, +{"id":"171027","label":"pushing pushing a child's water bottle top across kitchen counter from left to right","template":"Pushing [something] from left to right","placeholders":["pushing a child's water bottle top across kitchen counter"]}, +{"id":"88864","label":"spinning name badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["name badge"]}, +{"id":"28353","label":"pushing a remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a remote"]}, +{"id":"25446","label":"throwing a balloon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a balloon"]}, +{"id":"179246","label":"poking canister so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["canister"]}, +{"id":"163692","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"82117","label":"lifting a surface with a pack of gum on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a pack of gum"]}, +{"id":"112736","label":"holding deodarant next to man","template":"Holding [something] next to [something]","placeholders":["deodarant","man"]}, +{"id":"132832","label":"putting phone in front of bottle","template":"Putting [something] in front of [something]","placeholders":["phone","bottle"]}, +{"id":"18957","label":"fabric falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["fabric"]}, +{"id":"21376","label":"lifting block with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["block","sunglasses"]}, +{"id":"126968","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"214697","label":"moving a water bottle and a mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a water bottle","a mug"]}, +{"id":"210998","label":"showing pink water bottle to the camera","template":"Showing [something] to the camera","placeholders":["pink water bottle"]}, +{"id":"180013","label":"holding bottle next to laptop","template":"Holding [something] next to [something]","placeholders":["bottle","laptop"]}, +{"id":"195096","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"45963","label":"putting adapter in front of key","template":"Putting [something] in front of [something]","placeholders":["adapter","key"]}, +{"id":"63496","label":"turning the camera downwards while filming rubber","template":"Turning the camera downwards while filming [something]","placeholders":["rubber"]}, +{"id":"168997","label":"opening tea box","template":"Opening [something]","placeholders":["tea box"]}, +{"id":"206979","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"93879","label":"twisting carton lid","template":"Twisting [something]","placeholders":["carton lid"]}, +{"id":"50783","label":"dropping pen next to pencil case","template":"Dropping [something] next to [something]","placeholders":["pen","pencil case"]}, +{"id":"3011","label":"putting hand towel on the edge of counter so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["hand towel","counter"]}, +{"id":"123911","label":"hitting stapler with pen","template":"Hitting [something] with [something]","placeholders":["stapler","pen"]}, +{"id":"169247","label":"holding mug in front of flower vase","template":"Holding [something] in front of [something]","placeholders":["mug","flower vase"]}, +{"id":"50091","label":"twisting (wringing) wet cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wet cloth"]}, +{"id":"6064","label":"tilting a plate with a cup on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a plate","a cup"]}, +{"id":"186286","label":"tilting a book with a pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pencil"]}, +{"id":"195032","label":"pushing white envelope from left to right","template":"Pushing [something] from left to right","placeholders":["white envelope"]}, +{"id":"180159","label":"taking bag from table","template":"Taking [something] from [somewhere]","placeholders":["bag","table"]}, +{"id":"62119","label":"dropping towel onto floor","template":"Dropping [something] onto [something]","placeholders":["towel","floor"]}, +{"id":"129999","label":"attaching an electronic portier to its base","template":"Attaching [something] to [something]","placeholders":["an electronic portier","its base"]}, +{"id":"34079","label":"paper bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper bag"]}, +{"id":"111775","label":"pretending to close a pot without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a pot"]}, +{"id":"163097","label":"pretending to poke ball","template":"Pretending to poke [something]","placeholders":["ball"]}, +{"id":"105246","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"127152","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"79405","label":"plugging usb cable into laptop computer","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop computer"]}, +{"id":"209055","label":"spilling water next to a toothbrush","template":"Spilling [something] next to [something]","placeholders":["water","a toothbrush"]}, +{"id":"10142","label":"a necklace falling like a rock","template":"[Something] falling like a rock","placeholders":["a necklace"]}, +{"id":"8378","label":"dropping a card in front of a comb","template":"Dropping [something] in front of [something]","placeholders":["a card","a comb"]}, +{"id":"161787","label":"showing scissors on top of mug","template":"Showing [something] on top of [something]","placeholders":["scissors","mug"]}, +{"id":"54709","label":"putting coaster, remote and tissue box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["coaster","remote","tissue box"]}, +{"id":"28142","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"91618","label":"moving bottle and lid away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","lid"]}, +{"id":"192775","label":"putting green toy car and toy wheel on the table","template":"Putting [something] and [something] on the table","placeholders":["green toy car","toy wheel"]}, +{"id":"147118","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"155728","label":"letting a pencil roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a pencil"]}, +{"id":"18316","label":"pouring tea into glass","template":"Pouring [something] into [something]","placeholders":["tea","glass"]}, +{"id":"196757","label":"turning playdough upside down","template":"Turning [something] upside down","placeholders":["playdough"]}, +{"id":"146940","label":"tipping a water bottle with a pen over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a water bottle","a pen","water"]}, +{"id":"61314","label":"throwing a ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a ball"]}, +{"id":"175251","label":"moving top of egg carton","template":"Moving [part] of [something]","placeholders":["top","egg carton"]}, +{"id":"55106","label":"holding trimmer in front of deodarant","template":"Holding [something] in front of [something]","placeholders":["trimmer","deodarant"]}, +{"id":"18323","label":"pretending to be tearing a wood box","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a wood box"]}, +{"id":"117704","label":"picking a glass up","template":"Picking [something] up","placeholders":["a glass"]}, +{"id":"109889","label":"moving cup up","template":"Moving [something] up","placeholders":["cup"]}, +{"id":"210652","label":"putting yogurt and butter on the table","template":"Putting [something] and [something] on the table","placeholders":["yogurt","butter"]}, +{"id":"16997","label":"moving block closer to box","template":"Moving [something] closer to [something]","placeholders":["block","box"]}, +{"id":"148335","label":"holding box over paper","template":"Holding [something] over [something]","placeholders":["box","paper"]}, +{"id":"144017","label":"holding a toothbrush over a box","template":"Holding [something] over [something]","placeholders":["a toothbrush","a box"]}, +{"id":"48238","label":"squeezing a bottle of dish soap","template":"Squeezing [something]","placeholders":["a bottle of dish soap"]}, +{"id":"71474","label":"putting purse onto sponze","template":"Putting [something] onto [something]","placeholders":["purse","sponze"]}, +{"id":"69513","label":"receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["receipt"]}, +{"id":"44277","label":"dropping paper roll onto floor","template":"Dropping [something] onto [something]","placeholders":["paper roll","floor"]}, +{"id":"78475","label":"covering bed with blanket","template":"Covering [something] with [something]","placeholders":["bed","blanket"]}, +{"id":"29205","label":"pushing marker pen with marker pen","template":"Pushing [something] with [something]","placeholders":["marker pen","marker pen"]}, +{"id":"131856","label":"plugging usb cable into usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","usb port"]}, +{"id":"215250","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"215655","label":"pushing nail varnish so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["nail varnish"]}, +{"id":"11531","label":"moving eye kajal and pendrive closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eye kajal","pendrive"]}, +{"id":"119750","label":"tape being deflected from deodorant","template":"[Something] being deflected from [something]","placeholders":["tape","deodorant"]}, +{"id":"82066","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"23817","label":"pretending to sprinkle air onto sliced cucumbers","template":"Pretending to sprinkle air onto [something]","placeholders":["sliced cucumbers"]}, +{"id":"52532","label":"holding bottle in front of trash can","template":"Holding [something] in front of [something]","placeholders":["bottle","trash can"]}, +{"id":"181358","label":"moving away from usb with your camera","template":"Moving away from [something] with your camera","placeholders":["usb"]}, +{"id":"195387","label":"plugging box into extension cord","template":"Plugging [something] into [something]","placeholders":["box","extension cord"]}, +{"id":"173422","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"213158","label":"tipping paperclip holder with finger over, so paperclips falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["paperclip holder","finger","paperclips"]}, +{"id":"103428","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"40161","label":"stacking 2 cups","template":"Stacking [number of] [something]","placeholders":["2","cups"]}, +{"id":"175216","label":"pretending to put the shoe onto the bag","template":"Pretending to put [something] onto [something]","placeholders":["the shoe","the bag"]}, +{"id":"137038","label":"putting a speaker on a surface","template":"Putting [something] on a surface","placeholders":["a speaker"]}, +{"id":"25709","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"175508","label":"pushing a train from right to left","template":"Pushing [something] from right to left","placeholders":["a train"]}, +{"id":"22511","label":"letting cover roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cover"]}, +{"id":"132459","label":"a big white feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a big white feather"]}, +{"id":"15201","label":"uncovering branch","template":"Uncovering [something]","placeholders":["branch"]}, +{"id":"193501","label":"spinning \\\"magnet so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["\\\"magnet"]}, +{"id":"218139","label":"pulling two ends of spoon but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["spoon"]}, +{"id":"29128","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"146020","label":"stuffing pillow into bag","template":"Stuffing [something] into [something]","placeholders":["pillow","bag"]}, +{"id":"75502","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"40750","label":"holding two glass in front of camera","template":"Holding [something] in front of [something]","placeholders":["two glass","camera"]}, +{"id":"69297","label":"closing a candle jar","template":"Closing [something]","placeholders":["a candle jar"]}, +{"id":"103052","label":"moving lemon up","template":"Moving [something] up","placeholders":["lemon"]}, +{"id":"180921","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"171674","label":"putting a deck of cards behind a mug","template":"Putting [something] behind [something]","placeholders":["a deck of cards","a mug"]}, +{"id":"75455","label":"moving pincer up","template":"Moving [something] up","placeholders":["pincer"]}, +{"id":"126077","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"30200","label":"showing book behind cup","template":"Showing [something] behind [something]","placeholders":["book","cup"]}, +{"id":"99721","label":"holding sunglasses next to a painting","template":"Holding [something] next to [something]","placeholders":["sunglasses","a painting"]}, +{"id":"11635","label":"pretending to take a perfume from a window sill","template":"Pretending to take [something] from [somewhere]","placeholders":["a perfume","a window sill"]}, +{"id":"46638","label":"throwing a roll of paper against a tube of toothpaste","template":"Throwing [something] against [something]","placeholders":["a roll of paper","a tube of toothpaste"]}, +{"id":"56891","label":"pushing pillow so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pillow"]}, +{"id":"216261","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"107137","label":"wiping water off of sink","template":"Wiping [something] off of [something]","placeholders":["water","sink"]}, +{"id":"5231","label":"a bowl colliding with a bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a bowl","a bottle"]}, +{"id":"131498","label":"showing wallet behind spanner","template":"Showing [something] behind [something]","placeholders":["wallet","spanner"]}, +{"id":"583","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"64853","label":"moving smartphone across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["smartphone"]}, +{"id":"144552","label":"moving away from flower with your camera","template":"Moving away from [something] with your camera","placeholders":["flower"]}, +{"id":"131621","label":"pushing plate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plate"]}, +{"id":"211186","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"209947","label":"moving steel glass towards the camera","template":"Moving [something] towards the camera","placeholders":["steel glass"]}, +{"id":"159542","label":"removing cloth, revealing hairband behind","template":"Removing [something], revealing [something] behind","placeholders":["cloth","hairband"]}, +{"id":"220316","label":"moving ribbon down","template":"Moving [something] down","placeholders":["ribbon"]}, +{"id":"27436","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"167304","label":"rolling a spray can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray can"]}, +{"id":"53177","label":"showing a photo of kid to the camera","template":"Showing a photo of [something] to the camera","placeholders":["kid"]}, +{"id":"38881","label":"throwing orange color ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["orange color ball"]}, +{"id":"81406","label":"putting lotion on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["lotion"]}, +{"id":"180459","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"191325","label":"pretending or trying and failing to twist medicine bottle","template":"Pretending or trying and failing to twist [something]","placeholders":["medicine bottle"]}, +{"id":"90121","label":"moving away from bolt with your camera","template":"Moving away from [something] with your camera","placeholders":["bolt"]}, +{"id":"185472","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"197161","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"98983","label":"pretending to poke keyboard","template":"Pretending to poke [something]","placeholders":["keyboard"]}, +{"id":"142705","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"85110","label":"pretending to pick soap up","template":"Pretending to pick [something] up","placeholders":["soap"]}, +{"id":"208202","label":"showing that a cup is inside a box","template":"Showing that [something] is inside [something]","placeholders":["a cup","a box"]}, +{"id":"121328","label":"putting hairbrush into box","template":"Putting [something] into [something]","placeholders":["hairbrush","box"]}, +{"id":"57641","label":"metal box falling like a rock","template":"[Something] falling like a rock","placeholders":["metal box"]}, +{"id":"87312","label":"tearing bread into two pieces","template":"Tearing [something] into two pieces","placeholders":["bread"]}, +{"id":"153217","label":"holding a glas next to a socket","template":"Holding [something] next to [something]","placeholders":["a glas","a socket"]}, +{"id":"46891","label":"moving ball and clothespin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ball","clothespin"]}, +{"id":"123652","label":"hitting a pumpkin with a bottle","template":"Hitting [something] with [something]","placeholders":["a pumpkin","a bottle"]}, +{"id":"137771","label":"sprinkling chip crumbs onto paper towel","template":"Sprinkling [something] onto [something]","placeholders":["chip crumbs","paper towel"]}, +{"id":"185159","label":"throwing a plush in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a plush"]}, +{"id":"57841","label":"a leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a leaf"]}, +{"id":"165407","label":"spinning yellow ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["yellow ball"]}, +{"id":"115957","label":"uncovering remote control","template":"Uncovering [something]","placeholders":["remote control"]}, +{"id":"110233","label":"spinning the cube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["the cube"]}, +{"id":"169894","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"69895","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"6357","label":"pushing handkerchief so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["handkerchief"]}, +{"id":"33082","label":"taking soup can","template":"Taking [one of many similar things on the table]","placeholders":["soup can"]}, +{"id":"63494","label":"moving brush and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["brush","paper"]}, +{"id":"219954","label":"poking allergy medicine so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["allergy medicine"]}, +{"id":"99109","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"44140","label":"stuffing towel into bag","template":"Stuffing [something] into [something]","placeholders":["towel","bag"]}, +{"id":"102422","label":"spilling water onto paper","template":"Spilling [something] onto [something]","placeholders":["water","paper"]}, +{"id":"154488","label":"lifting straw up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["straw"]}, +{"id":"219382","label":"throwing a clicker","template":"Throwing [something]","placeholders":["a clicker"]}, +{"id":"78302","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"138364","label":"putting flashlight on a surface","template":"Putting [something] on a surface","placeholders":["flashlight"]}, +{"id":"76548","label":"pretending to poke towel","template":"Pretending to poke [something]","placeholders":["towel"]}, +{"id":"80256","label":"putting hairpins","template":"Putting [something similar to other things that are already on the table]","placeholders":["hairpins"]}, +{"id":"139261","label":"digging stone out of sand","template":"Digging [something] out of [something]","placeholders":["stone","sand"]}, +{"id":"1801","label":"pretending to pick pendrive up","template":"Pretending to pick [something] up","placeholders":["pendrive"]}, +{"id":"3696","label":"holding cup next to water bottle","template":"Holding [something] next to [something]","placeholders":["cup","water bottle"]}, +{"id":"29911","label":"pouring water into leaf","template":"Pouring [something] into [something]","placeholders":["water","leaf"]}, +{"id":"131172","label":"putting a mug that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a mug"]}, +{"id":"76050","label":"pushing phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["phone"]}, +{"id":"69008","label":"pushing a bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a bottle","scissors"]}, +{"id":"143248","label":"lifting a book with a bottle of perfume on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a bottle of perfume"]}, +{"id":"217737","label":"covering a cup with a towel","template":"Covering [something] with [something]","placeholders":["a cup","a towel"]}, +{"id":"154702","label":"laying a coffee cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a coffee cup"]}, +{"id":"76868","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"66523","label":"covering bottle cap with black cloth","template":"Covering [something] with [something]","placeholders":["bottle cap","black cloth"]}, +{"id":"183181","label":"poking a marker so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a marker"]}, +{"id":"143303","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"135947","label":"pushing a book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a book"]}, +{"id":"106200","label":"pushing a toothbrush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toothbrush"]}, +{"id":"131223","label":"pushing red pencil sharpner from left to right","template":"Pushing [something] from left to right","placeholders":["red pencil sharpner"]}, +{"id":"102606","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"74208","label":"pretending to pick deodorant up","template":"Pretending to pick [something] up","placeholders":["deodorant"]}, +{"id":"45726","label":"moving pendrive down","template":"Moving [something] down","placeholders":["pendrive"]}, +{"id":"37727","label":"holding soda can over deodorant","template":"Holding [something] over [something]","placeholders":["soda can","deodorant"]}, +{"id":"94488","label":"turning a mason jar upside down","template":"Turning [something] upside down","placeholders":["a mason jar"]}, +{"id":"152430","label":"putting glue stick on a surface","template":"Putting [something] on a surface","placeholders":["glue stick"]}, +{"id":"109011","label":"tilting a notebook with a marker on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","a marker"]}, +{"id":"177289","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"205961","label":"holding a cell phone in front of the door","template":"Holding [something] in front of [something]","placeholders":["a cell phone","the door"]}, +{"id":"56444","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"189496","label":"opening juicer cap","template":"Opening [something]","placeholders":["juicer cap"]}, +{"id":"173403","label":"showing that make up box is empty","template":"Showing that [something] is empty","placeholders":["make up box"]}, +{"id":"164586","label":"moving notebook up","template":"Moving [something] up","placeholders":["notebook"]}, +{"id":"135309","label":"holding waterbottle","template":"Holding [something]","placeholders":["waterbottle"]}, +{"id":"134880","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"194124","label":"showing that a plastic box is empty","template":"Showing that [something] is empty","placeholders":["a plastic box"]}, +{"id":"205803","label":"showing that book is inside bag","template":"Showing that [something] is inside [something]","placeholders":["book","bag"]}, +{"id":"194307","label":"pushing pincer so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pincer"]}, +{"id":"41786","label":"putting scissor behind glass","template":"Putting [something] behind [something]","placeholders":["scissor","glass"]}, +{"id":"214795","label":"tilting a plate with an orange on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plate","an orange"]}, +{"id":"117853","label":"taking hair band out of green cup","template":"Taking [something] out of [something]","placeholders":["hair band","green cup"]}, +{"id":"27864","label":"throwing marker in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["marker"]}, +{"id":"167586","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"4004","label":"putting scissor on a surface","template":"Putting [something] on a surface","placeholders":["scissor"]}, +{"id":"180648","label":"putting spectacles case upright on the table","template":"Putting [something] upright on the table","placeholders":["spectacles case"]}, +{"id":"58887","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"114296","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"20414","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"104143","label":"putting spoon, marble and sponge on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["spoon","marble","sponge"]}, +{"id":"74053","label":"dropping scissors behind tape dispenser","template":"Dropping [something] behind [something]","placeholders":["scissors","tape dispenser"]}, +{"id":"56667","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"190246","label":"moving dog plush towards the camera","template":"Moving [something] towards the camera","placeholders":["dog plush"]}, +{"id":"220592","label":"holding nail polish over notebook","template":"Holding [something] over [something]","placeholders":["nail polish","notebook"]}, +{"id":"3394","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"124015","label":"pushing heater component from left to right","template":"Pushing [something] from left to right","placeholders":["heater component"]}, +{"id":"185398","label":"moving pencil and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pencil","pen"]}, +{"id":"181765","label":"covering toy with cloth","template":"Covering [something] with [something]","placeholders":["toy","cloth"]}, +{"id":"219223","label":"throwing sheath against wardrobe","template":"Throwing [something] against [something]","placeholders":["sheath","wardrobe"]}, +{"id":"99861","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"13592","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"119635","label":"turning the camera upwards while filming person","template":"Turning the camera upwards while filming [something]","placeholders":["person"]}, +{"id":"102044","label":"bending tin foil so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tin foil"]}, +{"id":"91334","label":"pretending to take spoon from plate","template":"Pretending to take [something] from [somewhere]","placeholders":["spoon","plate"]}, +{"id":"106516","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"22465","label":"approaching flowers with your camera","template":"Approaching [something] with your camera","placeholders":["flowers"]}, +{"id":"150279","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"167677","label":"putting a box of special k cereals next to a box of krave cereals","template":"Putting [something] next to [something]","placeholders":["a box of special k cereals","a box of krave cereals"]}, +{"id":"9424","label":"pushing hairband with red spoon","template":"Pushing [something] with [something]","placeholders":["hairband","red spoon"]}, +{"id":"141241","label":"showing brush to the camera","template":"Showing [something] to the camera","placeholders":["brush"]}, +{"id":"23935","label":"pretending to pick pillow up","template":"Pretending to pick [something] up","placeholders":["pillow"]}, +{"id":"4634","label":"twisting clothe","template":"Twisting [something]","placeholders":["clothe"]}, +{"id":"172716","label":"pushing lid off of cup","template":"Pushing [something] off of [something]","placeholders":["lid","cup"]}, +{"id":"144680","label":"twisting (wringing) a piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a piece of cloth"]}, +{"id":"171605","label":"taking sweet out of sweetbox","template":"Taking [something] out of [something]","placeholders":["sweet","sweetbox"]}, +{"id":"126129","label":"taking bottles","template":"Taking [one of many similar things on the table]","placeholders":["bottles"]}, +{"id":"189028","label":"poking plastic recipient so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["plastic recipient"]}, +{"id":"97982","label":"pushing pincer from right to left","template":"Pushing [something] from right to left","placeholders":["pincer"]}, +{"id":"8793","label":"stacking three gift cards","template":"Stacking [number of] [something]","placeholders":["three","gift cards"]}, +{"id":"84125","label":"showing tv to the camera","template":"Showing [something] to the camera","placeholders":["tv"]}, +{"id":"112504","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"112536","label":"cow being deflected from door","template":"[Something] being deflected from [something]","placeholders":["cow","door"]}, +{"id":"166599","label":"putting the compact disc into the compact disc case","template":"Putting [something] into [something]","placeholders":["the compact disc","the compact disc case"]}, +{"id":"3897","label":"pretending to turn shoe brush upside down","template":"Pretending to turn [something] upside down","placeholders":["shoe brush"]}, +{"id":"30928","label":"pulling two ends of wooden reeper but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["wooden reeper"]}, +{"id":"212129","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"153859","label":"moving sugar container away from tomato","template":"Moving [something] away from [something]","placeholders":["sugar container","tomato"]}, +{"id":"172201","label":"pushing sunglasses with wallet","template":"Pushing [something] with [something]","placeholders":["sunglasses","wallet"]}, +{"id":"99099","label":"pretending to put keys behind bag","template":"Pretending to put [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"125766","label":"dropping a pin behind a remote","template":"Dropping [something] behind [something]","placeholders":["a pin","a remote"]}, +{"id":"159460","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"85701","label":"turning the camera left while filming sign post","template":"Turning the camera left while filming [something]","placeholders":["sign post"]}, +{"id":"215254","label":"covering soap with cloth","template":"Covering [something] with [something]","placeholders":["soap","cloth"]}, +{"id":"26337","label":"hitting mouse with a remote","template":"Hitting [something] with [something]","placeholders":["mouse","a remote"]}, +{"id":"62208","label":"attaching a gift card to a bandage box","template":"Attaching [something] to [something]","placeholders":["a gift card","a bandage box"]}, +{"id":"70330","label":"lifting plate with cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","cup"]}, +{"id":"19718","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"168741","label":"showing nail cutter to the camera","template":"Showing [something] to the camera","placeholders":["nail cutter"]}, +{"id":"103985","label":"turning the camera left while filming toy","template":"Turning the camera left while filming [something]","placeholders":["toy"]}, +{"id":"58565","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"94521","label":"showing label to the camera","template":"Showing [something] to the camera","placeholders":["label"]}, +{"id":"61418","label":"pulling two ends of an owl but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["an owl"]}, +{"id":"161676","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"177827","label":"pulling two ends of leaves so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaves"]}, +{"id":"212417","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"166671","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"81516","label":"hitting bottle with match box","template":"Hitting [something] with [something]","placeholders":["bottle","match box"]}, +{"id":"98287","label":"pushing a notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a notebook"]}, +{"id":"186012","label":"tearing hard paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["hard paper"]}, +{"id":"52737","label":"pretending to pick ball up","template":"Pretending to pick [something] up","placeholders":["ball"]}, +{"id":"163038","label":"moving part of dvd cover","template":"Moving [part] of [something]","placeholders":["part","dvd cover"]}, +{"id":"180231","label":"putting comb next to cup","template":"Putting [something] next to [something]","placeholders":["comb","cup"]}, +{"id":"119376","label":"dropping a coin in front of a matchbox","template":"Dropping [something] in front of [something]","placeholders":["a coin","a matchbox"]}, +{"id":"39728","label":"moving scissor down","template":"Moving [something] down","placeholders":["scissor"]}, +{"id":"197680","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"176479","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"51933","label":"throwing stick","template":"Throwing [something]","placeholders":["stick"]}, +{"id":"157531","label":"holding gum over spray bottle","template":"Holding [something] over [something]","placeholders":["gum","spray bottle"]}, +{"id":"198794","label":"rolling cup on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cup"]}, +{"id":"174356","label":"pretending to be tearing t shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["t shirt"]}, +{"id":"195516","label":"moving water colours and brush away from each other","template":"Moving [something] and [something] away from each other","placeholders":["water colours","brush"]}, +{"id":"112844","label":"letting lipstick roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["lipstick"]}, +{"id":"46375","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"136257","label":"pushing scissors so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["scissors"]}, +{"id":"46811","label":"spilling water behind orange","template":"Spilling [something] behind [something]","placeholders":["water","orange"]}, +{"id":"1006","label":"showing parking sign to the camera","template":"Showing [something] to the camera","placeholders":["parking sign"]}, +{"id":"17162","label":"turning the camera upwards while filming toothpaste box","template":"Turning the camera upwards while filming [something]","placeholders":["toothpaste box"]}, +{"id":"146415","label":"bending a twig until it breaks","template":"Bending [something] until it breaks","placeholders":["a twig"]}, +{"id":"160674","label":"holding finger over twisted bottle","template":"Holding [something] over [something]","placeholders":["finger","twisted bottle"]}, +{"id":"12942","label":"uncovering a box","template":"Uncovering [something]","placeholders":["a box"]}, +{"id":"28417","label":"throwing newspaper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["newspaper"]}, +{"id":"10643","label":"pretending to be tearing washcloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["washcloth"]}, +{"id":"103302","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"118525","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"180779","label":"putting candle onto table edge so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["candle","table edge"]}, +{"id":"151963","label":"moving rule down","template":"Moving [something] down","placeholders":["rule"]}, +{"id":"194101","label":"moving flower up","template":"Moving [something] up","placeholders":["flower"]}, +{"id":"7703","label":"scooping sand up with shovel","template":"Scooping [something] up with [something]","placeholders":["sand","shovel"]}, +{"id":"165080","label":"dropping rubik cube next to card","template":"Dropping [something] next to [something]","placeholders":["rubik cube","card"]}, +{"id":"377","label":"lifting cookie box lid with green toy car on it","template":"Lifting [something] with [something] on it","placeholders":["cookie box lid","green toy car"]}, +{"id":"142837","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"220027","label":"pretending to sprinkle air onto a drink","template":"Pretending to sprinkle air onto [something]","placeholders":["a drink"]}, +{"id":"7496","label":"tipping an empty ice cream cup over","template":"Tipping [something] over","placeholders":["an empty ice cream cup"]}, +{"id":"151509","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"140857","label":"putting a calculator next to a pencase","template":"Putting [something] next to [something]","placeholders":["a calculator","a pencase"]}, +{"id":"151761","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"161514","label":"turning the camera upwards while filming sunset","template":"Turning the camera upwards while filming [something]","placeholders":["sunset"]}, +{"id":"202253","label":"hitting lamp with pen","template":"Hitting [something] with [something]","placeholders":["lamp","pen"]}, +{"id":"167415","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"135939","label":"showing that a plastic bottle is empty","template":"Showing that [something] is empty","placeholders":["a plastic bottle"]}, +{"id":"84260","label":"lifting up one end of plate, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["plate"]}, +{"id":"30414","label":"putting a block of paper on a surface","template":"Putting [something] on a surface","placeholders":["a block of paper"]}, +{"id":"36094","label":"piling tissue boxes up","template":"Piling [something] up","placeholders":["tissue boxes"]}, +{"id":"62874","label":"pulling bottle from left to right","template":"Pulling [something] from left to right","placeholders":["bottle"]}, +{"id":"205016","label":"holding pen over hole puncher","template":"Holding [something] over [something]","placeholders":["pen","hole puncher"]}, +{"id":"213320","label":"showing a printer on top of a table","template":"Showing [something] on top of [something]","placeholders":["a printer","a table"]}, +{"id":"1694","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"168854","label":"lifting plate with rubber duck on it","template":"Lifting [something] with [something] on it","placeholders":["plate","rubber duck"]}, +{"id":"19081","label":"hitting a plate with a spoon","template":"Hitting [something] with [something]","placeholders":["a plate","a spoon"]}, +{"id":"75788","label":"putting something that cannot upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["something that cannot"]}, +{"id":"153026","label":"pushing gate with hand","template":"Pushing [something] with [something]","placeholders":["gate","hand"]}, +{"id":"152421","label":"small piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["small piece of paper"]}, +{"id":"179551","label":"pushing green chalk from left to right","template":"Pushing [something] from left to right","placeholders":["green chalk"]}, +{"id":"100751","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"196829","label":"stuffing towels into basket","template":"Stuffing [something] into [something]","placeholders":["towels","basket"]}, +{"id":"134002","label":"pretending to put a straw into a cup","template":"Pretending to put [something] into [something]","placeholders":["a straw","a cup"]}, +{"id":"32467","label":"throwing ball against wall","template":"Throwing [something] against [something]","placeholders":["ball","wall"]}, +{"id":"185313","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"146053","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"195700","label":"throwing bear in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bear"]}, +{"id":"36584","label":"moving a bottle and a bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a bottle"]}, +{"id":"133961","label":"picking something up","template":"Picking [something] up","placeholders":["something"]}, +{"id":"152215","label":"spreading red chillies onto a plate","template":"Spreading [something] onto [something]","placeholders":["red chillies","a plate"]}, +{"id":"33523","label":"putting watch next to toy","template":"Putting [something] next to [something]","placeholders":["watch","toy"]}, +{"id":"206585","label":"throwing a ball against the wall","template":"Throwing [something] against [something]","placeholders":["a ball","the wall"]}, +{"id":"71988","label":"pouring gems out of container","template":"Pouring [something] out of [something]","placeholders":["gems","container"]}, +{"id":"68888","label":"putting glass on a surface","template":"Putting [something] on a surface","placeholders":["glass"]}, +{"id":"183751","label":"putting paper plate","template":"Putting [something similar to other things that are already on the table]","placeholders":["paper plate"]}, +{"id":"116234","label":"tipping ketchup over","template":"Tipping [something] over","placeholders":["ketchup"]}, +{"id":"152261","label":"dropping a coin behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a coin","a padlock"]}, +{"id":"81390","label":"putting pen next to more pens, pencils.","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen next to more pens, pencils."]}, +{"id":"205883","label":"putting a key next to a phone","template":"Putting [something] next to [something]","placeholders":["a key","a phone"]}, +{"id":"3226","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"206345","label":"attaching usb stick to magnet","template":"Attaching [something] to [something]","placeholders":["usb stick","magnet"]}, +{"id":"209899","label":"throwing a shoe","template":"Throwing [something]","placeholders":["a shoe"]}, +{"id":"128081","label":"taking one of many candles on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many candles on the table"]}, +{"id":"40435","label":"laying lotion on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lotion"]}, +{"id":"198176","label":"holding hair clip next to red hair band","template":"Holding [something] next to [something]","placeholders":["hair clip","red hair band"]}, +{"id":"42075","label":"pushing a brush from left to right","template":"Pushing [something] from left to right","placeholders":["a brush"]}, +{"id":"14663","label":"pushing a watch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a watch"]}, +{"id":"29604","label":"pretending to turn bar soap upside down","template":"Pretending to turn [something] upside down","placeholders":["bar soap"]}, +{"id":"106607","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"9381","label":"pulling glass onto table","template":"Pulling [something] onto [something]","placeholders":["glass","table"]}, +{"id":"60934","label":"tilting black file with silver coloured pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","silver coloured pen"]}, +{"id":"82049","label":"dropping books onto table","template":"Dropping [something] onto [something]","placeholders":["books","table"]}, +{"id":"94548","label":"letting a pencil roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pencil"]}, +{"id":"49110","label":"pretending or trying and failing to twist a cap","template":"Pretending or trying and failing to twist [something]","placeholders":["a cap"]}, +{"id":"141411","label":"turning the camera upwards while filming cup","template":"Turning the camera upwards while filming [something]","placeholders":["cup"]}, +{"id":"206850","label":"squeezing paper","template":"Squeezing [something]","placeholders":["paper"]}, +{"id":"165031","label":"plugging an electrical plug into a plug socket","template":"Plugging [something] into [something]","placeholders":["an electrical plug","a plug socket"]}, +{"id":"59324","label":"spinning a tube of toothpaste that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a tube of toothpaste"]}, +{"id":"163769","label":"turning the camera left while filming white book marker","template":"Turning the camera left while filming [something]","placeholders":["white book marker"]}, +{"id":"139906","label":"plugging usb into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","computer"]}, +{"id":"51538","label":"attaching refill to pen","template":"Attaching [something] to [something]","placeholders":["refill","pen"]}, +{"id":"218671","label":"pretending to put pebble into glass","template":"Pretending to put [something] into [something]","placeholders":["pebble","glass"]}, +{"id":"176492","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"182093","label":"lifting up one end of straw without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["straw"]}, +{"id":"159555","label":"turning the camera right while filming notebook","template":"Turning the camera right while filming [something]","placeholders":["notebook"]}, +{"id":"100029","label":"putting a bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle"]}, +{"id":"179801","label":"pushing a notebook so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a notebook"]}, +{"id":"180080","label":"trying to bend something unbendable so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["something unbendable"]}, +{"id":"42602","label":"approaching old mobile phone with your camera","template":"Approaching [something] with your camera","placeholders":["old mobile phone"]}, +{"id":"136093","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"94070","label":"plugging a nightlight into a socket","template":"Plugging [something] into [something]","placeholders":["a nightlight","a socket"]}, +{"id":"193966","label":"taking a spoon from a container","template":"Taking [something] from [somewhere]","placeholders":["a spoon","a container"]}, +{"id":"28841","label":"putting book onto pen stand","template":"Putting [something] onto [something]","placeholders":["book","pen stand"]}, +{"id":"60717","label":"putting seasor, tailoring tap and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["seasor","tailoring tap","pen"]}, +{"id":"4971","label":"plugging charger into mobile but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","mobile"]}, +{"id":"130330","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"680","label":"tilting big box with little box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["big box","little box"]}, +{"id":"70841","label":"bending a pen so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen"]}, +{"id":"3002","label":"turning the camera upwards while filming audio sistem","template":"Turning the camera upwards while filming [something]","placeholders":["audio sistem"]}, +{"id":"176414","label":"pretending to pick an umbrella up","template":"Pretending to pick [something] up","placeholders":["an umbrella"]}, +{"id":"101206","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"171783","label":"dropping matchbox into jar","template":"Dropping [something] into [something]","placeholders":["matchbox","jar"]}, +{"id":"213305","label":"opening purse","template":"Opening [something]","placeholders":["purse"]}, +{"id":"216736","label":"dropping bracelet behind hand bag","template":"Dropping [something] behind [something]","placeholders":["bracelet","hand bag"]}, +{"id":"217783","label":"putting fork onto plate","template":"Putting [something] onto [something]","placeholders":["fork","plate"]}, +{"id":"204721","label":"dropping a bag of bread onto the counter","template":"Dropping [something] onto [something]","placeholders":["a bag of bread","the counter"]}, +{"id":"217909","label":"pushing pushing plastic spray from left to right from left to right","template":"Pushing [something] from left to right","placeholders":["pushing plastic spray from left to right"]}, +{"id":"153183","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"118265","label":"putting ball on a surface","template":"Putting [something] on a surface","placeholders":["ball"]}, +{"id":"8545","label":"trying to bend a notebook so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a notebook"]}, +{"id":"18632","label":"covering sunglasses with cushion","template":"Covering [something] with [something]","placeholders":["sunglasses","cushion"]}, +{"id":"16813","label":"poking package so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["package"]}, +{"id":"87455","label":"pretending to pick emblem up","template":"Pretending to pick [something] up","placeholders":["emblem"]}, +{"id":"34137","label":"pulling red candle from left to right","template":"Pulling [something] from left to right","placeholders":["red candle"]}, +{"id":"110058","label":"moving seal pad down","template":"Moving [something] down","placeholders":["seal pad"]}, +{"id":"173175","label":"dropping a ball onto soil ground","template":"Dropping [something] onto [something]","placeholders":["a ball","soil ground"]}, +{"id":"1634","label":"showing wooden furniture behind a fan","template":"Showing [something] behind [something]","placeholders":["wooden furniture","a fan"]}, +{"id":"72302","label":"pretending to put bottle cap next to glass juice","template":"Pretending to put [something] next to [something]","placeholders":["bottle cap","glass juice"]}, +{"id":"213040","label":"covering coin with sock","template":"Covering [something] with [something]","placeholders":["coin","sock"]}, +{"id":"11548","label":"spilling water onto plate","template":"Spilling [something] onto [something]","placeholders":["water","plate"]}, +{"id":"197912","label":"letting lipbalm roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipbalm"]}, +{"id":"70471","label":"taking one mobile phone of many similar mobile phones on the table","template":"Taking [one of many similar things on the table]","placeholders":["one mobile phone of many similar mobile phones on the table"]}, +{"id":"161455","label":"moving toothpaste across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["toothpaste"]}, +{"id":"214369","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"170919","label":"putting sponge behind mug","template":"Putting [something] behind [something]","placeholders":["sponge","mug"]}, +{"id":"54925","label":"hitting a spider with my fist","template":"Hitting [something] with [something]","placeholders":["a spider","my fist"]}, +{"id":"31379","label":"pushing black hair tie from right to left","template":"Pushing [something] from right to left","placeholders":["black hair tie"]}, +{"id":"159346","label":"moving door of cupboard","template":"Moving [part] of [something]","placeholders":["door","cupboard"]}, +{"id":"190413","label":"pretending to squeeze charger","template":"Pretending to squeeze [something]","placeholders":["charger"]}, +{"id":"213476","label":"sprinkling beans onto hand","template":"Sprinkling [something] onto [something]","placeholders":["beans","hand"]}, +{"id":"171921","label":"holding a bottle next to a laptop","template":"Holding [something] next to [something]","placeholders":["a bottle","a laptop"]}, +{"id":"132955","label":"putting a screw on a surface","template":"Putting [something] on a surface","placeholders":["a screw"]}, +{"id":"125775","label":"putting jar next to saltshaker","template":"Putting [something] next to [something]","placeholders":["jar","saltshaker"]}, +{"id":"126925","label":"bending a pen cap so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen cap"]}, +{"id":"120146","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"58204","label":"pretending to pick a reactine bottle up","template":"Pretending to pick [something] up","placeholders":["a reactine bottle"]}, +{"id":"182941","label":"pretending to poke arizona tea can","template":"Pretending to poke [something]","placeholders":["arizona tea can"]}, +{"id":"57191","label":"pushing hair comb so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair comb"]}, +{"id":"70337","label":"attaching lid to bottle","template":"Attaching [something] to [something]","placeholders":["lid","bottle"]}, +{"id":"39443","label":"pushing pills so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pills"]}, +{"id":"110661","label":"touching (without moving) nose of my face","template":"Touching (without moving) [part] of [something]","placeholders":["nose","my face"]}, +{"id":"172563","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"174764","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"51547","label":"plugging charging cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charging cable","laptop"]}, +{"id":"145057","label":"putting a smartphone into a box","template":"Putting [something] into [something]","placeholders":["a smartphone","a box"]}, +{"id":"20237","label":"taking pencil from cupboard","template":"Taking [something] from [somewhere]","placeholders":["pencil","cupboard"]}, +{"id":"25669","label":"orange falling like a rock","template":"[Something] falling like a rock","placeholders":["orange"]}, +{"id":"124637","label":"moving away from window with your camera","template":"Moving away from [something] with your camera","placeholders":["window"]}, +{"id":"78995","label":"hitting copo with mug","template":"Hitting [something] with [something]","placeholders":["copo","mug"]}, +{"id":"55969","label":"twisting bottle cover","template":"Twisting [something]","placeholders":["bottle cover"]}, +{"id":"213735","label":"holding a calculator","template":"Holding [something]","placeholders":["a calculator"]}, +{"id":"169808","label":"plugging charger into iphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","iphone"]}, +{"id":"200682","label":"lifting whisk up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["whisk"]}, +{"id":"189399","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"152811","label":"showing a boot on top of a book","template":"Showing [something] on top of [something]","placeholders":["a boot","a book"]}, +{"id":"137851","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"107372","label":"pretending to be tearing keyboard","template":"Pretending to be tearing [something that is not tearable]","placeholders":["keyboard"]}, +{"id":"36545","label":"showing that soda is inside cup","template":"Showing that [something] is inside [something]","placeholders":["soda","cup"]}, +{"id":"84343","label":"pulling duster from left to right","template":"Pulling [something] from left to right","placeholders":["duster"]}, +{"id":"219973","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"136669","label":"plugging baby monitor cord into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["baby monitor cord","power outlet"]}, +{"id":"13968","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"143361","label":"falling leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling leaf"]}, +{"id":"52001","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"22704","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"196736","label":"pushing black brush from right to left","template":"Pushing [something] from right to left","placeholders":["black brush"]}, +{"id":"56558","label":"taking a watch","template":"Taking [one of many similar things on the table]","placeholders":["a watch"]}, +{"id":"171874","label":"moving wine glas and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wine glas","cup"]}, +{"id":"43299","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"5999","label":"poking battery so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["battery"]}, +{"id":"161832","label":"dropping napkin behind dustbin","template":"Dropping [something] behind [something]","placeholders":["napkin","dustbin"]}, +{"id":"73196","label":"dropping a pen in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a pen","a book"]}, +{"id":"124708","label":"squeezing dog toy","template":"Squeezing [something]","placeholders":["dog toy"]}, +{"id":"192310","label":"pulling brake pedal onto hand","template":"Pulling [something] onto [something]","placeholders":["brake pedal","hand"]}, +{"id":"165723","label":"putting lotion in front of small bottle","template":"Putting [something] in front of [something]","placeholders":["lotion","small bottle"]}, +{"id":"112899","label":"putting pencil sharpener onto cat","template":"Putting [something] onto [something]","placeholders":["pencil sharpener","cat"]}, +{"id":"203036","label":"turning the camera right while filming pill bottle","template":"Turning the camera right while filming [something]","placeholders":["pill bottle"]}, +{"id":"28972","label":"throwing ear muffs onto a surface","template":"Throwing [something] onto a surface","placeholders":["ear muffs"]}, +{"id":"79626","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"10356","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"98494","label":"turning the camera right while filming baby play mat","template":"Turning the camera right while filming [something]","placeholders":["baby play mat"]}, +{"id":"174293","label":"a basketball falling like a rock","template":"[Something] falling like a rock","placeholders":["a basketball"]}, +{"id":"133384","label":"covering small bottle with box","template":"Covering [something] with [something]","placeholders":["small bottle","box"]}, +{"id":"43828","label":"pretending to be tearing calander","template":"Pretending to be tearing [something that is not tearable]","placeholders":["calander"]}, +{"id":"26702","label":"moving spanner away from magnifying glass","template":"Moving [something] away from [something]","placeholders":["spanner","magnifying glass"]}, +{"id":"97329","label":"moving sock down","template":"Moving [something] down","placeholders":["sock"]}, +{"id":"167251","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"192724","label":"throwing a spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a spoon"]}, +{"id":"129831","label":"throwing pencile","template":"Throwing [something]","placeholders":["pencile"]}, +{"id":"39075","label":"pushing soap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["soap"]}, +{"id":"196824","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"109685","label":"putting can into can holder","template":"Putting [something] into [something]","placeholders":["can","can holder"]}, +{"id":"133477","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"218426","label":"moving scissor closer to tool","template":"Moving [something] closer to [something]","placeholders":["scissor","tool"]}, +{"id":"102272","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"152101","label":"rolling soap on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["soap"]}, +{"id":"190613","label":"dropping a card in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a card","a book"]}, +{"id":"34319","label":"putting a tissue box in front of a dvd","template":"Putting [something] in front of [something]","placeholders":["a tissue box","a dvd"]}, +{"id":"57569","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"67480","label":"dropping a book next to a bottle","template":"Dropping [something] next to [something]","placeholders":["a book","a bottle"]}, +{"id":"30303","label":"taking a bottle","template":"Taking [one of many similar things on the table]","placeholders":["a bottle"]}, +{"id":"59108","label":"lifting a pillow with a book on it","template":"Lifting [something] with [something] on it","placeholders":["a pillow","a book"]}, +{"id":"43816","label":"pushing pen off of bench","template":"Pushing [something] off of [something]","placeholders":["pen","bench"]}, +{"id":"19932","label":"attaching a magnet keyholder to the door","template":"Attaching [something] to [something]","placeholders":["a magnet keyholder","the door"]}, +{"id":"7168","label":"pushing black pocket knife so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["black pocket knife"]}, +{"id":"166437","label":"holding nail clipper behind cd holders","template":"Holding [something] behind [something]","placeholders":["nail clipper","cd holders"]}, +{"id":"202587","label":"pretending to open small hand gel without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["small hand gel"]}, +{"id":"43675","label":"closing paint tube","template":"Closing [something]","placeholders":["paint tube"]}, +{"id":"22215","label":"approaching measuring tape with your camera","template":"Approaching [something] with your camera","placeholders":["measuring tape"]}, +{"id":"63465","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"106495","label":"envelope falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["envelope"]}, +{"id":"147707","label":"moving away from newspaper with your camera","template":"Moving away from [something] with your camera","placeholders":["newspaper"]}, +{"id":"128188","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"34313","label":"marshmallow falling like a rock","template":"[Something] falling like a rock","placeholders":["marshmallow"]}, +{"id":"209302","label":"poking a hole into box","template":"Poking a hole into [some substance]","placeholders":["box"]}, +{"id":"208012","label":"dropping bottle behind laptop","template":"Dropping [something] behind [something]","placeholders":["bottle","laptop"]}, +{"id":"68767","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"21304","label":"putting a hair brush next to a book","template":"Putting [something] next to [something]","placeholders":["a hair brush","a book"]}, +{"id":"88220","label":"pulling stools from left to right","template":"Pulling [something] from left to right","placeholders":["stools"]}, +{"id":"124579","label":"pretending to put remote next to remote","template":"Pretending to put [something] next to [something]","placeholders":["remote","remote"]}, +{"id":"67659","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"90235","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"195230","label":"moving glass across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["glass"]}, +{"id":"199760","label":"holding business card next to pen","template":"Holding [something] next to [something]","placeholders":["business card","pen"]}, +{"id":"156392","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"20107","label":"pushing box with bin","template":"Pushing [something] with [something]","placeholders":["box","bin"]}, +{"id":"22094","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"104158","label":"plugging cable into phone charger","template":"Plugging [something] into [something]","placeholders":["cable","phone charger"]}, +{"id":"86248","label":"pretending or failing to wipe sticker off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["sticker","wall"]}, +{"id":"94134","label":"pushing a smart phone from right to left","template":"Pushing [something] from right to left","placeholders":["a smart phone"]}, +{"id":"209521","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"131208","label":"tilting box with picture on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","picture"]}, +{"id":"29792","label":"poking feet deodorant so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["feet deodorant"]}, +{"id":"156299","label":"twisting clothing","template":"Twisting [something]","placeholders":["clothing"]}, +{"id":"83002","label":"moving pack of pencils across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pack of pencils"]}, +{"id":"197962","label":"holding comb in front of remote","template":"Holding [something] in front of [something]","placeholders":["comb","remote"]}, +{"id":"62862","label":"bending tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tube"]}, +{"id":"50831","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"18453","label":"stuffed animal falling like a rock","template":"[Something] falling like a rock","placeholders":["stuffed animal"]}, +{"id":"33457","label":"letting ring roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ring"]}, +{"id":"171067","label":"piling blocks up","template":"Piling [something] up","placeholders":["blocks"]}, +{"id":"84619","label":"lifting up one end of pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pen"]}, +{"id":"57406","label":"folding pants","template":"Folding [something]","placeholders":["pants"]}, +{"id":"47457","label":"putting keys next to bag","template":"Putting [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"77643","label":"poking joystick so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["joystick"]}, +{"id":"40640","label":"dropping gloves into a carton","template":"Dropping [something] into [something]","placeholders":["gloves","a carton"]}, +{"id":"123823","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"214020","label":"laying a plastic pineapple on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a plastic pineapple"]}, +{"id":"180487","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"105033","label":"putting metal into bowl","template":"Putting [something] into [something]","placeholders":["metal","bowl"]}, +{"id":"208685","label":"moving package up","template":"Moving [something] up","placeholders":["package"]}, +{"id":"156188","label":"unfolding paper towel","template":"Unfolding [something]","placeholders":["paper towel"]}, +{"id":"205729","label":"dropping a card next to scissors","template":"Dropping [something] next to [something]","placeholders":["a card","scissors"]}, +{"id":"24798","label":"scooping ice-cream up with spoon","template":"Scooping [something] up with [something]","placeholders":["ice-cream","spoon"]}, +{"id":"68428","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"206020","label":"bending can so that it deforms","template":"Bending [something] so that it deforms","placeholders":["can"]}, +{"id":"12399","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"191036","label":"pretending to take a watch out of a bowl","template":"Pretending to take [something] out of [something]","placeholders":["a watch","a bowl"]}, +{"id":"120354","label":"pretending to put can on a surface","template":"Pretending to put [something] on a surface","placeholders":["can"]}, +{"id":"51480","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"218703","label":"approaching umbrella with your camera","template":"Approaching [something] with your camera","placeholders":["umbrella"]}, +{"id":"151382","label":"pushing pack of chewing gum so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pack of chewing gum"]}, +{"id":"153397","label":"tilting folder with orange on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder","orange"]}, +{"id":"212269","label":"pretending to squeeze a sponge","template":"Pretending to squeeze [something]","placeholders":["a sponge"]}, +{"id":"167844","label":"showing a photo of teddybear to the camera","template":"Showing a photo of [something] to the camera","placeholders":["teddybear"]}, +{"id":"213412","label":"tipping a box over","template":"Tipping [something] over","placeholders":["a box"]}, +{"id":"115789","label":"showing that teapot is empty","template":"Showing that [something] is empty","placeholders":["teapot"]}, +{"id":"149393","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"82808","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"204894","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"133652","label":"tearing paper sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper sheet"]}, +{"id":"21190","label":"dropping mouse onto bed","template":"Dropping [something] onto [something]","placeholders":["mouse","bed"]}, +{"id":"207661","label":"tilting book with knife on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","knife"]}, +{"id":"16977","label":"putting a phone on a surface","template":"Putting [something] on a surface","placeholders":["a phone"]}, +{"id":"144403","label":"covering canister with towel","template":"Covering [something] with [something]","placeholders":["canister","towel"]}, +{"id":"64054","label":"pushing hairclip with box","template":"Pushing [something] with [something]","placeholders":["hairclip","box"]}, +{"id":"18816","label":"showing that something is inside inside","template":"Showing that [something] is inside [something]","placeholders":["something","inside"]}, +{"id":"43893","label":"putting 2 nail polish bottles onto a book","template":"Putting [number of] [something] onto [something]","placeholders":["2","nail polish bottles","a book"]}, +{"id":"1181","label":"moving post-it down","template":"Moving [something] down","placeholders":["post-it"]}, +{"id":"170175","label":"dropping a book next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a book","a spoon"]}, +{"id":"153854","label":"holding spec in front of the switch board","template":"Holding [something] in front of [something]","placeholders":["spec","the switch board"]}, +{"id":"69025","label":"moving a domino and a toy figurine closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a domino","a toy figurine"]}, +{"id":"157315","label":"twisting soft, braun slipper","template":"Twisting [something]","placeholders":["soft, braun slipper"]}, +{"id":"137119","label":"trying to bend metal so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal"]}, +{"id":"205806","label":"basket falling like a rock","template":"[Something] falling like a rock","placeholders":["basket"]}, +{"id":"96620","label":"covering paper clip with paper","template":"Covering [something] with [something]","placeholders":["paper clip","paper"]}, +{"id":"20485","label":"pushing a vase from left to right","template":"Pushing [something] from left to right","placeholders":["a vase"]}, +{"id":"193479","label":"turning orange post-it upside down","template":"Turning [something] upside down","placeholders":["orange post-it"]}, +{"id":"59817","label":"attaching a sticker to the fridge","template":"Attaching [something] to [something]","placeholders":["a sticker","the fridge"]}, +{"id":"177638","label":"tearing flower into two pieces","template":"Tearing [something] into two pieces","placeholders":["flower"]}, +{"id":"30596","label":"pushing banana onto bag","template":"Pushing [something] onto [something]","placeholders":["banana","bag"]}, +{"id":"182733","label":"bending skewer stick until it breaks","template":"Bending [something] until it breaks","placeholders":["skewer stick"]}, +{"id":"118286","label":"holding onion over mug","template":"Holding [something] over [something]","placeholders":["onion","mug"]}, +{"id":"29401","label":"showing that a pen is inside a toilet roll","template":"Showing that [something] is inside [something]","placeholders":["a pen","a toilet roll"]}, +{"id":"68326","label":"closing window","template":"Closing [something]","placeholders":["window"]}, +{"id":"219561","label":"putting 3 containers onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","containers","table"]}, +{"id":"88206","label":"putting pen and keys on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","keys"]}, +{"id":"115964","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"172776","label":"squeezing a water bottle","template":"Squeezing [something]","placeholders":["a water bottle"]}, +{"id":"45733","label":"squeezing stuffed rabbit","template":"Squeezing [something]","placeholders":["stuffed rabbit"]}, +{"id":"56948","label":"pen colliding with pencil and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pen","pencil"]}, +{"id":"114426","label":"turning small tv set upside down","template":"Turning [something] upside down","placeholders":["small tv set"]}, +{"id":"1209","label":"rolling a baseball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a baseball"]}, +{"id":"139521","label":"lifting up one end of remote control without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["remote control"]}, +{"id":"157995","label":"pushing graphics pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["graphics pen"]}, +{"id":"200398","label":"tilting a book with a pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a pen"]}, +{"id":"59748","label":"plugging usb cable into smartphone","template":"Plugging [something] into [something]","placeholders":["usb cable","smartphone"]}, +{"id":"79084","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"136469","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"10427","label":"pretending to put cell phone onto box","template":"Pretending to put [something] onto [something]","placeholders":["cell phone","box"]}, +{"id":"56875","label":"pretending to close pretend to close plastic spray without actually closing it without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["pretend to close plastic spray without actually closing it"]}, +{"id":"211799","label":"pouring water into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a cup"]}, +{"id":"130158","label":"pushing teddy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["teddy"]}, +{"id":"148849","label":"tilting a book with a doll on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a doll"]}, +{"id":"202604","label":"poking plastic bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["plastic bottle"]}, +{"id":"112993","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"54844","label":"pushing a potatoe with a fork","template":"Pushing [something] with [something]","placeholders":["a potatoe","a fork"]}, +{"id":"107735","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"95498","label":"letting mobile roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["mobile"]}, +{"id":"40326","label":"throwing handkerchief pack against wall","template":"Throwing [something] against [something]","placeholders":["handkerchief pack","wall"]}, +{"id":"194476","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"144987","label":"folding blanket","template":"Folding [something]","placeholders":["blanket"]}, +{"id":"204076","label":"poking a plush toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a plush toy"]}, +{"id":"103320","label":"rolling tomato on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tomato"]}, +{"id":"191621","label":"twisting charger cord","template":"Twisting [something]","placeholders":["charger cord"]}, +{"id":"123953","label":"pushing a groundnut so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a groundnut"]}, +{"id":"31662","label":"moving away from sign post with your camera","template":"Moving away from [something] with your camera","placeholders":["sign post"]}, +{"id":"218548","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"35073","label":"pulling two ends of a handkerchief so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a handkerchief"]}, +{"id":"149203","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"134887","label":"spinning pizza cutter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pizza cutter"]}, +{"id":"187010","label":"holding ball in front of iphone","template":"Holding [something] in front of [something]","placeholders":["ball","iphone"]}, +{"id":"124413","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"86575","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"97925","label":"showing calculator on top of book","template":"Showing [something] on top of [something]","placeholders":["calculator","book"]}, +{"id":"132285","label":"holding mouse over keypad","template":"Holding [something] over [something]","placeholders":["mouse","keypad"]}, +{"id":"140947","label":"lifting up one end of a big spoon, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a big spoon"]}, +{"id":"14421","label":"rolling yellow marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["yellow marker pen"]}, +{"id":"56905","label":"pretending to pick hair gel bottle up","template":"Pretending to pick [something] up","placeholders":["hair gel bottle"]}, +{"id":"18227","label":"scooping drink up with spoon","template":"Scooping [something] up with [something]","placeholders":["drink","spoon"]}, +{"id":"134448","label":"pretending to turn aim toothpaste upside down","template":"Pretending to turn [something] upside down","placeholders":["aim toothpaste"]}, +{"id":"51801","label":"spreading cloth onto table","template":"Spreading [something] onto [something]","placeholders":["cloth","table"]}, +{"id":"166779","label":"pushing hair clip from left to right","template":"Pushing [something] from left to right","placeholders":["hair clip"]}, +{"id":"17063","label":"lifting coin up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["coin"]}, +{"id":"154707","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"93264","label":"hitting a stuffed animal dog with a yard stick","template":"Hitting [something] with [something]","placeholders":["a stuffed animal dog","a yard stick"]}, +{"id":"78164","label":"folding a pair of pants","template":"Folding [something]","placeholders":["a pair of pants"]}, +{"id":"60020","label":"lifting up one end of book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["book"]}, +{"id":"73537","label":"bending metal wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal wire"]}, +{"id":"47243","label":"lifting a planner with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["a planner","scissors"]}, +{"id":"115005","label":"failing to put a bottle into a cup because the bottle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bottle","a cup","the bottle"]}, +{"id":"141484","label":"opening the oven","template":"Opening [something]","placeholders":["the oven"]}, +{"id":"212471","label":"pretending to throw sandal","template":"Pretending to throw [something]","placeholders":["sandal"]}, +{"id":"40838","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"90563","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"10957","label":"squeezing a leather seat","template":"Squeezing [something]","placeholders":["a leather seat"]}, +{"id":"23780","label":"hitting a glass with a pen","template":"Hitting [something] with [something]","placeholders":["a glass","a pen"]}, +{"id":"12535","label":"pretending to put jar on a surface","template":"Pretending to put [something] on a surface","placeholders":["jar"]}, +{"id":"177572","label":"putting a key into a lock","template":"Putting [something] into [something]","placeholders":["a key","a lock"]}, +{"id":"135517","label":"covering pot with paper","template":"Covering [something] with [something]","placeholders":["pot","paper"]}, +{"id":"21637","label":"nail clipper being deflected from pen","template":"[Something] being deflected from [something]","placeholders":["nail clipper","pen"]}, +{"id":"179459","label":"removing a bottle, revealing a charger behind","template":"Removing [something], revealing [something] behind","placeholders":["a bottle","a charger"]}, +{"id":"30950","label":"pretending to poke a dog","template":"Pretending to poke [something]","placeholders":["a dog"]}, +{"id":"122159","label":"plugging loader into jack","template":"Plugging [something] into [something]","placeholders":["loader","jack"]}, +{"id":"73565","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"181455","label":"turning the camera left while filming dinosaur model","template":"Turning the camera left while filming [something]","placeholders":["dinosaur model"]}, +{"id":"168976","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"164946","label":"showing that pasta is inside container","template":"Showing that [something] is inside [something]","placeholders":["pasta","container"]}, +{"id":"44025","label":"holding a cup","template":"Holding [something]","placeholders":["a cup"]}, +{"id":"161910","label":"pushing phone with camera","template":"Pushing [something] with [something]","placeholders":["phone","camera"]}, +{"id":"207873","label":"touching (without moving) top of eraser","template":"Touching (without moving) [part] of [something]","placeholders":["top","eraser"]}, +{"id":"82995","label":"pretending to turn mug upside down","template":"Pretending to turn [something] upside down","placeholders":["mug"]}, +{"id":"18846","label":"moving magnet up","template":"Moving [something] up","placeholders":["magnet"]}, +{"id":"78061","label":"lifting something up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["something"]}, +{"id":"50281","label":"moving a tele-commander and a plastic pot so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a tele-commander","a plastic pot"]}, +{"id":"7588","label":"spinning highlighter pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["highlighter pen"]}, +{"id":"206948","label":"pretending to close book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["book"]}, +{"id":"175179","label":"throwing an apple in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["an apple"]}, +{"id":"155859","label":"putting a plastic bottle, a water bottle and a glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a plastic bottle","a water bottle","a glass"]}, +{"id":"84519","label":"poking a stack of cds so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cds"]}, +{"id":"180920","label":"hitting notebook with pen","template":"Hitting [something] with [something]","placeholders":["notebook","pen"]}, +{"id":"117118","label":"tipping a glass over","template":"Tipping [something] over","placeholders":["a glass"]}, +{"id":"146084","label":"pulling two ends of scotch tape but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["scotch tape"]}, +{"id":"144159","label":"tearing a card into two pieces","template":"Tearing [something] into two pieces","placeholders":["a card"]}, +{"id":"68721","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"120807","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"38845","label":"moving pen and marker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","marker"]}, +{"id":"139432","label":"pouring water onto foot","template":"Pouring [something] onto [something]","placeholders":["water","foot"]}, +{"id":"67128","label":"putting bottle in front of glass","template":"Putting [something] in front of [something]","placeholders":["bottle","glass"]}, +{"id":"82217","label":"putting ipad in front of bananas","template":"Putting [something] in front of [something]","placeholders":["ipad","bananas"]}, +{"id":"125620","label":"pretending to put a glass onto a box","template":"Pretending to put [something] onto [something]","placeholders":["a glass","a box"]}, +{"id":"140433","label":"spilling water onto zink","template":"Spilling [something] onto [something]","placeholders":["water","zink"]}, +{"id":"160594","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"214845","label":"pretending to poke container","template":"Pretending to poke [something]","placeholders":["container"]}, +{"id":"198964","label":"dropping a matchbox in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a book"]}, +{"id":"210174","label":"pretending to poke cover","template":"Pretending to poke [something]","placeholders":["cover"]}, +{"id":"3469","label":"putting toy, toy watch and box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy","toy watch","box"]}, +{"id":"34942","label":"putting glasses, a beer bottle and a wallet on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["glasses","a beer bottle","a wallet"]}, +{"id":"55605","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"19639","label":"throwing soap","template":"Throwing [something]","placeholders":["soap"]}, +{"id":"56029","label":"tearing notepad paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["notepad paper"]}, +{"id":"14370","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"218865","label":"pushing remote with scale","template":"Pushing [something] with [something]","placeholders":["remote","scale"]}, +{"id":"175060","label":"pulling wire out of box","template":"Pulling [something] out of [something]","placeholders":["wire","box"]}, +{"id":"181926","label":"pushing stapler onto red toy car","template":"Pushing [something] onto [something]","placeholders":["stapler","red toy car"]}, +{"id":"187001","label":"wiping tea off of a counter","template":"Wiping [something] off of [something]","placeholders":["tea","a counter"]}, +{"id":"114149","label":"moving a mobile and another mobile so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a mobile","another mobile"]}, +{"id":"35369","label":"showing television behind laptop","template":"Showing [something] behind [something]","placeholders":["television","laptop"]}, +{"id":"106445","label":"squeezing can","template":"Squeezing [something]","placeholders":["can"]}, +{"id":"108259","label":"putting something upright on the table","template":"Putting [something] upright on the table","placeholders":["something"]}, +{"id":"139566","label":"taking marble","template":"Taking [one of many similar things on the table]","placeholders":["marble"]}, +{"id":"200260","label":"plugging cord into computer","template":"Plugging [something] into [something]","placeholders":["cord","computer"]}, +{"id":"46206","label":"dropping a pen behind sunglasses","template":"Dropping [something] behind [something]","placeholders":["a pen","sunglasses"]}, +{"id":"168612","label":"dropping scoop into canister","template":"Dropping [something] into [something]","placeholders":["scoop","canister"]}, +{"id":"117574","label":"putting candy into a bin","template":"Putting [something] into [something]","placeholders":["candy","a bin"]}, +{"id":"116894","label":"lifting rubik's cube up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["rubik's cube"]}, +{"id":"108947","label":"poking calculator so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["calculator"]}, +{"id":"90007","label":"pushing tamper so it spins","template":"Pushing [something] so it spins","placeholders":["tamper"]}, +{"id":"60118","label":"putting a floss container that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a floss container"]}, +{"id":"17119","label":"pretending to put coaster onto remote","template":"Pretending to put [something] onto [something]","placeholders":["coaster","remote"]}, +{"id":"142594","label":"approaching waste bin with your camera","template":"Approaching [something] with your camera","placeholders":["waste bin"]}, +{"id":"175728","label":"pushing an e-reader so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["an e-reader"]}, +{"id":"49057","label":"wiping ketchup off of counter top","template":"Wiping [something] off of [something]","placeholders":["ketchup","counter top"]}, +{"id":"51109","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"132994","label":"squeezing doll","template":"Squeezing [something]","placeholders":["doll"]}, +{"id":"113154","label":"pretending to open spectacle box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["spectacle box"]}, +{"id":"187418","label":"holding box next to flowers","template":"Holding [something] next to [something]","placeholders":["box","flowers"]}, +{"id":"159168","label":"dropping a card in front of a shoe brush","template":"Dropping [something] in front of [something]","placeholders":["a card","a shoe brush"]}, +{"id":"147379","label":"plugging a charging cable into socket","template":"Plugging [something] into [something]","placeholders":["a charging cable","socket"]}, +{"id":"208136","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"25872","label":"putting knife next to fork","template":"Putting [something] next to [something]","placeholders":["knife","fork"]}, +{"id":"63681","label":"moving glove and cell phone so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["glove","cell phone"]}, +{"id":"189969","label":"moving leaf down","template":"Moving [something] down","placeholders":["leaf"]}, +{"id":"128468","label":"stuffing jar into fridge","template":"Stuffing [something] into [something]","placeholders":["jar","fridge"]}, +{"id":"64076","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"166326","label":"showing that a mug is empty","template":"Showing that [something] is empty","placeholders":["a mug"]}, +{"id":"180577","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"217102","label":"plugging battery charger into laptop","template":"Plugging [something] into [something]","placeholders":["battery charger","laptop"]}, +{"id":"54347","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"178310","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"213041","label":"putting a dvd behind a container","template":"Putting [something] behind [something]","placeholders":["a dvd","a container"]}, +{"id":"97076","label":"closing microwave","template":"Closing [something]","placeholders":["microwave"]}, +{"id":"131354","label":"lifting up one end of book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["book"]}, +{"id":"55934","label":"dropping pen into glass","template":"Dropping [something] into [something]","placeholders":["pen","glass"]}, +{"id":"47603","label":"pretending to open coffee jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["coffee jar"]}, +{"id":"219161","label":"putting paint tube","template":"Putting [something similar to other things that are already on the table]","placeholders":["paint tube"]}, +{"id":"154599","label":"pushing phone so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["phone"]}, +{"id":"138291","label":"burying battery in sand","template":"Burying [something] in [something]","placeholders":["battery","sand"]}, +{"id":"1271","label":"showing candy to the camera","template":"Showing [something] to the camera","placeholders":["candy"]}, +{"id":"2099","label":"picking toy wheel up","template":"Picking [something] up","placeholders":["toy wheel"]}, +{"id":"155973","label":"taking pen from table","template":"Taking [something] from [somewhere]","placeholders":["pen","table"]}, +{"id":"7247","label":"pushing cube so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cube"]}, +{"id":"74734","label":"showing bag on top of car","template":"Showing [something] on top of [something]","placeholders":["bag","car"]}, +{"id":"57020","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"55276","label":"putting a pencil into a pencil case","template":"Putting [something] into [something]","placeholders":["a pencil","a pencil case"]}, +{"id":"71314","label":"tilting laptop desk with remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["laptop desk","remote"]}, +{"id":"135322","label":"putting red toy car on a surface","template":"Putting [something] on a surface","placeholders":["red toy car"]}, +{"id":"47589","label":"pulling water canteen from right to left","template":"Pulling [something] from right to left","placeholders":["water canteen"]}, +{"id":"134434","label":"digging spoon out of hand towel","template":"Digging [something] out of [something]","placeholders":["spoon","hand towel"]}, +{"id":"176308","label":"moving paper and cellphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper","cellphone"]}, +{"id":"146264","label":"showing mouse behind cup","template":"Showing [something] behind [something]","placeholders":["mouse","cup"]}, +{"id":"138449","label":"rolling egg on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["egg"]}, +{"id":"204080","label":"throwing tissue box onto a surface","template":"Throwing [something] onto a surface","placeholders":["tissue box"]}, +{"id":"152428","label":"pen being deflected from binder","template":"[Something] being deflected from [something]","placeholders":["pen","binder"]}, +{"id":"132130","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"205885","label":"tilting paper with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","marker"]}, +{"id":"132149","label":"pretending to take calculator from desk","template":"Pretending to take [something] from [somewhere]","placeholders":["calculator","desk"]}, +{"id":"77691","label":"poking flower petal so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["flower petal"]}, +{"id":"77144","label":"rolling can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["can"]}, +{"id":"99563","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"197717","label":"attaching pen to wall","template":"Attaching [something] to [something]","placeholders":["pen","wall"]}, +{"id":"25420","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"187757","label":"tilting a magazine with a pencil on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a magazine","a pencil"]}, +{"id":"74759","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"176489","label":"holding eraser","template":"Holding [something]","placeholders":["eraser"]}, +{"id":"200792","label":"spinning lime so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lime"]}, +{"id":"122389","label":"pink golf ball colliding with pink golf ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pink golf ball","pink golf ball"]}, +{"id":"170580","label":"piling mobiles up","template":"Piling [something] up","placeholders":["mobiles"]}, +{"id":"139696","label":"pretending to put coaster underneath cup","template":"Pretending to put [something] underneath [something]","placeholders":["coaster","cup"]}, +{"id":"194011","label":"pretending to take cellphone from the floor","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","the floor"]}, +{"id":"47404","label":"spinning eraser that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["eraser"]}, +{"id":"115238","label":"something falling like a rock","template":"[Something] falling like a rock","placeholders":["something"]}, +{"id":"37580","label":"uncovering laptop","template":"Uncovering [something]","placeholders":["laptop"]}, +{"id":"138317","label":"turning the camera upwards while filming highlighter","template":"Turning the camera upwards while filming [something]","placeholders":["highlighter"]}, +{"id":"107243","label":"throwing a ball of paper","template":"Throwing [something]","placeholders":["a ball of paper"]}, +{"id":"209864","label":"showing that tumbler is empty","template":"Showing that [something] is empty","placeholders":["tumbler"]}, +{"id":"215316","label":"plugging charger into swicth but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","swicth"]}, +{"id":"107214","label":"turning the camera upwards while filming black hat","template":"Turning the camera upwards while filming [something]","placeholders":["black hat"]}, +{"id":"132998","label":"showing mobile behind remote","template":"Showing [something] behind [something]","placeholders":["mobile","remote"]}, +{"id":"36364","label":"hitting a remote with a pen","template":"Hitting [something] with [something]","placeholders":["a remote","a pen"]}, +{"id":"124286","label":"holding a pencil in front of pillar","template":"Holding [something] in front of [something]","placeholders":["a pencil","pillar"]}, +{"id":"186404","label":"moving a phone and a wallet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a phone","a wallet"]}, +{"id":"56629","label":"lifting up one end of plate without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["plate"]}, +{"id":"75187","label":"dropping a spun onto the floor","template":"Dropping [something] onto [something]","placeholders":["a spun","the floor"]}, +{"id":"106583","label":"pulling napkin onto laptop screen top","template":"Pulling [something] onto [something]","placeholders":["napkin","laptop screen top"]}, +{"id":"199644","label":"pretending to poke candle","template":"Pretending to poke [something]","placeholders":["candle"]}, +{"id":"92189","label":"trying to bend metal bar so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal bar"]}, +{"id":"66116","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"1940","label":"holding toilet paper","template":"Holding [something]","placeholders":["toilet paper"]}, +{"id":"28586","label":"digging sketch pen out of sand","template":"Digging [something] out of [something]","placeholders":["sketch pen","sand"]}, +{"id":"175684","label":"pushing a container with a book","template":"Pushing [something] with [something]","placeholders":["a container","a book"]}, +{"id":"106771","label":"putting teddy bear onto stool","template":"Putting [something] onto [something]","placeholders":["teddy bear","stool"]}, +{"id":"42931","label":"turning lighter upside down","template":"Turning [something] upside down","placeholders":["lighter"]}, +{"id":"192371","label":"pretending to poke a lamp","template":"Pretending to poke [something]","placeholders":["a lamp"]}, +{"id":"110027","label":"unfolding a blanket","template":"Unfolding [something]","placeholders":["a blanket"]}, +{"id":"164301","label":"bending plastic plate so that it deforms","template":"Bending [something] so that it deforms","placeholders":["plastic plate"]}, +{"id":"83881","label":"pretending to sprinkle air onto a napkin","template":"Pretending to sprinkle air onto [something]","placeholders":["a napkin"]}, +{"id":"105901","label":"putting box on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["box","table"]}, +{"id":"58535","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"56270","label":"turning the camera right while filming black disc case","template":"Turning the camera right while filming [something]","placeholders":["black disc case"]}, +{"id":"178347","label":"putting 2 board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["2","board clips","cookie box lid"]}, +{"id":"44844","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"38828","label":"lifting eye glasses up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["eye glasses"]}, +{"id":"69765","label":"throwing coin","template":"Throwing [something]","placeholders":["coin"]}, +{"id":"89577","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"50727","label":"moving away from pen with your camera","template":"Moving away from [something] with your camera","placeholders":["pen"]}, +{"id":"169783","label":"spinning stylus pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["stylus pen"]}, +{"id":"138978","label":"lifting towel up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["towel"]}, +{"id":"55332","label":"bending incense stick until it breaks","template":"Bending [something] until it breaks","placeholders":["incense stick"]}, +{"id":"78288","label":"tilting sticky note with sharpener on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["sticky note","sharpener"]}, +{"id":"220813","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"30027","label":"holding a tape next to a coil of wires","template":"Holding [something] next to [something]","placeholders":["a tape","a coil of wires"]}, +{"id":"70231","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"126215","label":"stacking four underpants","template":"Stacking [number of] [something]","placeholders":["four","underpants"]}, +{"id":"57816","label":"putting pencil sharpener behind bowl","template":"Putting [something] behind [something]","placeholders":["pencil sharpener","bowl"]}, +{"id":"159172","label":"moving keys closer to a camera","template":"Moving [something] closer to [something]","placeholders":["keys","a camera"]}, +{"id":"199193","label":"wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet"]}, +{"id":"15390","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"190253","label":"moving shaker towards the camera","template":"Moving [something] towards the camera","placeholders":["shaker"]}, +{"id":"157168","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"211478","label":"putting hangar into box","template":"Putting [something] into [something]","placeholders":["hangar","box"]}, +{"id":"1557","label":"trying but failing to attach a piece of paper to a bottle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a piece of paper","a bottle"]}, +{"id":"125349","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"93619","label":"pulling paint tube from right to left","template":"Pulling [something] from right to left","placeholders":["paint tube"]}, +{"id":"141890","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"198645","label":"dropping candy onto notepad","template":"Dropping [something] onto [something]","placeholders":["candy","notepad"]}, +{"id":"35241","label":"unfolding childs shirt","template":"Unfolding [something]","placeholders":["childs shirt"]}, +{"id":"146617","label":"touching (without moving) stopper of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["stopper","bottle"]}, +{"id":"106926","label":"moving a trophy across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a trophy"]}, +{"id":"98059","label":"pretending to take tissue from tissue box","template":"Pretending to take [something] from [somewhere]","placeholders":["tissue","tissue box"]}, +{"id":"133589","label":"holding white hand gel","template":"Holding [something]","placeholders":["white hand gel"]}, +{"id":"183412","label":"plugging cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","laptop"]}, +{"id":"209128","label":"moving plushie across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["plushie"]}, +{"id":"23715","label":"putting a battery on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a battery"]}, +{"id":"7011","label":"attaching tape to couch","template":"Attaching [something] to [something]","placeholders":["tape","couch"]}, +{"id":"118107","label":"taking a paper clip off the table","template":"Taking [one of many similar things on the table]","placeholders":["a paper clip off the table"]}, +{"id":"198878","label":"pulling white sheet out of magazine","template":"Pulling [something] out of [something]","placeholders":["white sheet","magazine"]}, +{"id":"63422","label":"putting notebook next to box","template":"Putting [something] next to [something]","placeholders":["notebook","box"]}, +{"id":"153214","label":"lifting stapler up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["stapler"]}, +{"id":"154791","label":"stuffing pen into bucket","template":"Stuffing [something] into [something]","placeholders":["pen","bucket"]}, +{"id":"178368","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"155053","label":"pretending to be tearing floor mat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["floor mat"]}, +{"id":"100590","label":"uncovering my face","template":"Uncovering [something]","placeholders":["my face"]}, +{"id":"68381","label":"putting tea mug in front of candy","template":"Putting [something] in front of [something]","placeholders":["tea mug","candy"]}, +{"id":"170884","label":"sprinkling curry leaves onto cloth","template":"Sprinkling [something] onto [something]","placeholders":["curry leaves","cloth"]}, +{"id":"12061","label":"lifting up one end of duster without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["duster"]}, +{"id":"80449","label":"opening spectical box","template":"Opening [something]","placeholders":["spectical box"]}, +{"id":"135946","label":"tilting white board with binoculars on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["white board","binoculars"]}, +{"id":"134089","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"80706","label":"bending cotton swabs so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cotton swabs"]}, +{"id":"83021","label":"tilting book with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","box"]}, +{"id":"113748","label":"dropping pepper behind a box","template":"Dropping [something] behind [something]","placeholders":["pepper","a box"]}, +{"id":"134893","label":"dropping poker chip into cup","template":"Dropping [something] into [something]","placeholders":["poker chip","cup"]}, +{"id":"139163","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"90319","label":"holding cup next to lamp","template":"Holding [something] next to [something]","placeholders":["cup","lamp"]}, +{"id":"201590","label":"rolling lipsticks on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lipsticks"]}, +{"id":"148321","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"68792","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"62","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"20726","label":"covering a phone with paper","template":"Covering [something] with [something]","placeholders":["a phone","paper"]}, +{"id":"12581","label":"moving a ball and a block closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","a block"]}, +{"id":"73864","label":"stacking 2 bottles","template":"Stacking [number of] [something]","placeholders":["2","bottles"]}, +{"id":"58539","label":"putting a light bulb onto a cushion","template":"Putting [something] onto [something]","placeholders":["a light bulb","a cushion"]}, +{"id":"6993","label":"spinning spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning a pen"]}, +{"id":"156497","label":"paper strip falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper strip"]}, +{"id":"85607","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"53688","label":"plugging power cord into power outlet","template":"Plugging [something] into [something]","placeholders":["power cord","power outlet"]}, +{"id":"7429","label":"putting marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker pen"]}, +{"id":"177925","label":"throwing sport shoe onto a surface","template":"Throwing [something] onto a surface","placeholders":["sport shoe"]}, +{"id":"193755","label":"taking make-up out of toiletry bag","template":"Taking [something] out of [something]","placeholders":["make-up","toiletry bag"]}, +{"id":"171937","label":"stuffing a pen into a pillowcase","template":"Stuffing [something] into [something]","placeholders":["a pen","a pillowcase"]}, +{"id":"217387","label":"opening pen top","template":"Opening [something]","placeholders":["pen top"]}, +{"id":"151728","label":"spinning comb that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["comb"]}, +{"id":"5899","label":"pretending to pick cigarette up","template":"Pretending to pick [something] up","placeholders":["cigarette"]}, +{"id":"65252","label":"spilling coke onto post it","template":"Spilling [something] onto [something]","placeholders":["coke","post it"]}, +{"id":"206608","label":"pushing a mug so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a mug"]}, +{"id":"187344","label":"showing calendar next to toaster","template":"Showing [something] next to [something]","placeholders":["calendar","toaster"]}, +{"id":"215637","label":"putting earphone next to pink book","template":"Putting [something] next to [something]","placeholders":["earphone","pink book"]}, +{"id":"112374","label":"putting three coins onto lid","template":"Putting [number of] [something] onto [something]","placeholders":["three","coins","lid"]}, +{"id":"24115","label":"holding broom behind car","template":"Holding [something] behind [something]","placeholders":["broom","car"]}, +{"id":"50492","label":"approaching usb with your camera","template":"Approaching [something] with your camera","placeholders":["usb"]}, +{"id":"201002","label":"moving plush up","template":"Moving [something] up","placeholders":["plush"]}, +{"id":"148587","label":"rolling a marker on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a marker"]}, +{"id":"55259","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"27853","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"53329","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"67938","label":"holding a bottle of water","template":"Holding [something]","placeholders":["a bottle of water"]}, +{"id":"6551","label":"pulling ipod from right to left","template":"Pulling [something] from right to left","placeholders":["ipod"]}, +{"id":"56075","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"151908","label":"twisting camera lens","template":"Twisting [something]","placeholders":["camera lens"]}, +{"id":"147259","label":"showing barrage to the camera","template":"Showing [something] to the camera","placeholders":["barrage"]}, +{"id":"23884","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"111777","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"139284","label":"moving screwdriver across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["screwdriver"]}, +{"id":"98348","label":"holding paper","template":"Holding [something]","placeholders":["paper"]}, +{"id":"101398","label":"trying to bend a paintbrush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a paintbrush"]}, +{"id":"76144","label":"turning the camera right while filming a bottle of lotion","template":"Turning the camera right while filming [something]","placeholders":["a bottle of lotion"]}, +{"id":"189275","label":"pushing a toy car from left to right","template":"Pushing [something] from left to right","placeholders":["a toy car"]}, +{"id":"189425","label":"lifting a shoe up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a shoe"]}, +{"id":"95374","label":"lifting up one end of remote control, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote control"]}, +{"id":"183053","label":"opening an oven door","template":"Opening [something]","placeholders":["an oven door"]}, +{"id":"52578","label":"pushing a comb so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a comb"]}, +{"id":"163473","label":"dropping book onto bed","template":"Dropping [something] onto [something]","placeholders":["book","bed"]}, +{"id":"149570","label":"pretending to put coin underneath paper","template":"Pretending to put [something] underneath [something]","placeholders":["coin","paper"]}, +{"id":"8726","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"139118","label":"plugging a socket plug into a socket","template":"Plugging [something] into [something]","placeholders":["a socket plug","a socket"]}, +{"id":"121046","label":"moving a match box and a lighter so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a match box","a lighter"]}, +{"id":"115108","label":"turning the camera right while filming advertisement board","template":"Turning the camera right while filming [something]","placeholders":["advertisement board"]}, +{"id":"122979","label":"moving coconut shell towards the camera","template":"Moving [something] towards the camera","placeholders":["coconut shell"]}, +{"id":"145014","label":"showing a sun glass next to smart phone","template":"Showing [something] next to [something]","placeholders":["a sun glass","smart phone"]}, +{"id":"33807","label":"turning the camera downwards while filming mobile phone","template":"Turning the camera downwards while filming [something]","placeholders":["mobile phone"]}, +{"id":"136747","label":"showing bottle next to the cream tube","template":"Showing [something] next to [something]","placeholders":["bottle","the cream tube"]}, +{"id":"37196","label":"taking food container from table","template":"Taking [something] from [somewhere]","placeholders":["food container","table"]}, +{"id":"118373","label":"dropping a ball onto grass yard","template":"Dropping [something] onto [something]","placeholders":["a ball","grass yard"]}, +{"id":"198004","label":"wiping something off of something","template":"Wiping [something] off of [something]","placeholders":["something","something"]}, +{"id":"168792","label":"letting a water bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a water bottle"]}, +{"id":"143382","label":"stuffing pills into box","template":"Stuffing [something] into [something]","placeholders":["pills","box"]}, +{"id":"173289","label":"spilling water next to a card","template":"Spilling [something] next to [something]","placeholders":["water","a card"]}, +{"id":"11131","label":"moving ashtray up","template":"Moving [something] up","placeholders":["ashtray"]}, +{"id":"70193","label":"twisting (wringing) a washcloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a washcloth"]}, +{"id":"176890","label":"pretending to pick chess piece up","template":"Pretending to pick [something] up","placeholders":["chess piece"]}, +{"id":"31481","label":"scooping sugar up with a scoop","template":"Scooping [something] up with [something]","placeholders":["sugar","a scoop"]}, +{"id":"50331","label":"putting puzzle dice on a surface","template":"Putting [something] on a surface","placeholders":["puzzle dice"]}, +{"id":"122249","label":"piling toy figures up","template":"Piling [something] up","placeholders":["toy figures"]}, +{"id":"180461","label":"closing hot case","template":"Closing [something]","placeholders":["hot case"]}, +{"id":"8789","label":"hitting flash drive with ballpen","template":"Hitting [something] with [something]","placeholders":["flash drive","ballpen"]}, +{"id":"192334","label":"tearing cardstock into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardstock"]}, +{"id":"43140","label":"taking sugar pack","template":"Taking [one of many similar things on the table]","placeholders":["sugar pack"]}, +{"id":"155797","label":"pushing the paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["the paper"]}, +{"id":"25903","label":"piling mobile phones up","template":"Piling [something] up","placeholders":["mobile phones"]}, +{"id":"1858","label":"moving toy-car and toy-car so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toy-car","toy-car"]}, +{"id":"42468","label":"pretending to pick a lipstick up","template":"Pretending to pick [something] up","placeholders":["a lipstick"]}, +{"id":"7538","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"187713","label":"letting gum roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["gum"]}, +{"id":"50660","label":"putting a glass upright on the table","template":"Putting [something] upright on the table","placeholders":["a glass"]}, +{"id":"185715","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"149631","label":"picking scotch tape up","template":"Picking [something] up","placeholders":["scotch tape"]}, +{"id":"60672","label":"turning shampoo bottle upside down","template":"Turning [something] upside down","placeholders":["shampoo bottle"]}, +{"id":"101553","label":"wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet"]}, +{"id":"198092","label":"approaching hair dryer with your camera","template":"Approaching [something] with your camera","placeholders":["hair dryer"]}, +{"id":"18121","label":"trying to bend a brush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a brush"]}, +{"id":"5688","label":"pushing bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bag"]}, +{"id":"192115","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"36471","label":"trying to pour water into bottle, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bottle"]}, +{"id":"118911","label":"moving container closer to another one","template":"Moving [something] closer to [something]","placeholders":["container","another one"]}, +{"id":"132110","label":"poking a deoderant aerosol so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a deoderant aerosol"]}, +{"id":"144068","label":"turning the camera upwards while filming plants","template":"Turning the camera upwards while filming [something]","placeholders":["plants"]}, +{"id":"217300","label":"pretending to sprinkle air onto book","template":"Pretending to sprinkle air onto [something]","placeholders":["book"]}, +{"id":"104609","label":"moving door stopper down","template":"Moving [something] down","placeholders":["door stopper"]}, +{"id":"187312","label":"pushing green headlight from left to right","template":"Pushing [something] from left to right","placeholders":["green headlight"]}, +{"id":"57635","label":"moving mug across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["mug"]}, +{"id":"87660","label":"lifting paper with lighter on it","template":"Lifting [something] with [something] on it","placeholders":["paper","lighter"]}, +{"id":"105758","label":"dropping a matchbox next to a remote","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a remote"]}, +{"id":"194669","label":"putting a notebook upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a notebook"]}, +{"id":"200687","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"62820","label":"poking pillow so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pillow"]}, +{"id":"154557","label":"putting scissors underneath dishwasher door","template":"Putting [something] underneath [something]","placeholders":["scissors","dishwasher door"]}, +{"id":"3635","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"48674","label":"tipping a matchbox over","template":"Tipping [something] over","placeholders":["a matchbox"]}, +{"id":"50424","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"39791","label":"dropping pen into drawer","template":"Dropping [something] into [something]","placeholders":["pen","drawer"]}, +{"id":"2635","label":"putting an apple on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["an apple","chair"]}, +{"id":"26754","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"87133","label":"turning drink upside down","template":"Turning [something] upside down","placeholders":["drink"]}, +{"id":"84982","label":"approaching banana bunch with your camera","template":"Approaching [something] with your camera","placeholders":["banana bunch"]}, +{"id":"140355","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"74717","label":"putting candy into basket","template":"Putting [something] into [something]","placeholders":["candy","basket"]}, +{"id":"213467","label":"turning the camera left while filming white candle","template":"Turning the camera left while filming [something]","placeholders":["white candle"]}, +{"id":"133807","label":"squeezing oven mitt","template":"Squeezing [something]","placeholders":["oven mitt"]}, +{"id":"189193","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"185953","label":"uncovering lighter","template":"Uncovering [something]","placeholders":["lighter"]}, +{"id":"47297","label":"pushing shoe so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe"]}, +{"id":"21284","label":"turning the camera right while filming jackfruit","template":"Turning the camera right while filming [something]","placeholders":["jackfruit"]}, +{"id":"158153","label":"plugging a portable charger into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a portable charger","a wall outlet"]}, +{"id":"78318","label":"plugging plug into surge protector","template":"Plugging [something] into [something]","placeholders":["plug","surge protector"]}, +{"id":"109272","label":"moving my phone up","template":"Moving [something] up","placeholders":["my phone"]}, +{"id":"87848","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"66832","label":"dropping board clip into glass bowl","template":"Dropping [something] into [something]","placeholders":["board clip","glass bowl"]}, +{"id":"199765","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"50781","label":"putting scissors on a surface","template":"Putting [something] on a surface","placeholders":["scissors"]}, +{"id":"55006","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"80128","label":"lifting up one end of duster, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["duster"]}, +{"id":"175876","label":"covering a pen with sheets of paper","template":"Covering [something] with [something]","placeholders":["a pen","sheets of paper"]}, +{"id":"147906","label":"a pencil colliding with a pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a pencil","a pen"]}, +{"id":"46649","label":"pretending to take nothing out of bowl","template":"Pretending to take [something] out of [something]","placeholders":["nothing","bowl"]}, +{"id":"95906","label":"pretending or failing to wipe chalk off of chalkboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["chalk","chalkboard"]}, +{"id":"47960","label":"folding sheet","template":"Folding [something]","placeholders":["sheet"]}, +{"id":"177267","label":"plugging a charger into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","power outlet"]}, +{"id":"86235","label":"moving cd player and usb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cd player","usb"]}, +{"id":"41509","label":"showing white colour marker pen behind ink bottle","template":"Showing [something] behind [something]","placeholders":["white colour marker pen","ink bottle"]}, +{"id":"53565","label":"taking marble","template":"Taking [one of many similar things on the table]","placeholders":["marble"]}, +{"id":"4473","label":"picking a facial wash up","template":"Picking [something] up","placeholders":["a facial wash"]}, +{"id":"76320","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"104554","label":"piling magazines up","template":"Piling [something] up","placeholders":["magazines"]}, +{"id":"77100","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"5279","label":"moving lip balm and lip gloss so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["lip balm","lip gloss"]}, +{"id":"24802","label":"tipping a shot glass with nails in it over, so nails in it falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a shot glass","nails in it","nails in it"]}, +{"id":"62007","label":"putting a mirror into a pouch","template":"Putting [something] into [something]","placeholders":["a mirror","a pouch"]}, +{"id":"66113","label":"squeezing purple microfiber","template":"Squeezing [something]","placeholders":["purple microfiber"]}, +{"id":"120802","label":"hitting a can with a phone","template":"Hitting [something] with [something]","placeholders":["a can","a phone"]}, +{"id":"123999","label":"showing that stapler is inside glass","template":"Showing that [something] is inside [something]","placeholders":["stapler","glass"]}, +{"id":"143571","label":"showing nail polish behind glue","template":"Showing [something] behind [something]","placeholders":["nail polish","glue"]}, +{"id":"33950","label":"holding bottle next to bowl","template":"Holding [something] next to [something]","placeholders":["bottle","bowl"]}, +{"id":"14378","label":"wiping crumbs off of a table","template":"Wiping [something] off of [something]","placeholders":["crumbs","a table"]}, +{"id":"179024","label":"pushing wadded up papertowel off of table","template":"Pushing [something] off of [something]","placeholders":["wadded up papertowel","table"]}, +{"id":"133029","label":"pretending to take the key from the keyholder","template":"Pretending to take [something] from [somewhere]","placeholders":["the key","the keyholder"]}, +{"id":"70543","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"140987","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"143769","label":"holding folded shirt next to cell phone","template":"Holding [something] next to [something]","placeholders":["folded shirt","cell phone"]}, +{"id":"144761","label":"moving white toy car away from hair clip","template":"Moving [something] away from [something]","placeholders":["white toy car","hair clip"]}, +{"id":"3306","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"95557","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"106838","label":"salt shaker colliding with pepper shaker and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["salt shaker","pepper shaker"]}, +{"id":"202583","label":"oil falling like a rock","template":"[Something] falling like a rock","placeholders":["oil"]}, +{"id":"104884","label":"putting a comb upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a comb"]}, +{"id":"166837","label":"rolling an empty water bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an empty water bottle"]}, +{"id":"104415","label":"turning waterbottle upside down","template":"Turning [something] upside down","placeholders":["waterbottle"]}, +{"id":"96992","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"95077","label":"pretending or trying and failing to twist lid","template":"Pretending or trying and failing to twist [something]","placeholders":["lid"]}, +{"id":"174306","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"176652","label":"poking a box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a box"]}, +{"id":"175814","label":"moving something away from something","template":"Moving [something] away from [something]","placeholders":["something","something"]}, +{"id":"79863","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"119614","label":"hitting big filter with pen","template":"Hitting [something] with [something]","placeholders":["big filter","pen"]}, +{"id":"116708","label":"plugging a plug head into an extension lead","template":"Plugging [something] into [something]","placeholders":["a plug head","an extension lead"]}, +{"id":"127312","label":"turning a phone upside down","template":"Turning [something] upside down","placeholders":["a phone"]}, +{"id":"9659","label":"showing a photo of a baby to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a baby"]}, +{"id":"157768","label":"turning the camera left while filming something","template":"Turning the camera left while filming [something]","placeholders":["something"]}, +{"id":"37578","label":"pretending to be tearing sock","template":"Pretending to be tearing [something that is not tearable]","placeholders":["sock"]}, +{"id":"116923","label":"stone falling like a rock","template":"[Something] falling like a rock","placeholders":["stone"]}, +{"id":"23174","label":"pouring water out of shot glass","template":"Pouring [something] out of [something]","placeholders":["water","shot glass"]}, +{"id":"98142","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"6200","label":"tipping drinking glass over","template":"Tipping [something] over","placeholders":["drinking glass"]}, +{"id":"163292","label":"pushing nail varnish from left to right","template":"Pushing [something] from left to right","placeholders":["nail varnish"]}, +{"id":"187730","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"137764","label":"pushing an apple so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an apple"]}, +{"id":"101359","label":"squeezing lotion","template":"Squeezing [something]","placeholders":["lotion"]}, +{"id":"177838","label":"putting an electric juicer in front of a glass","template":"Putting [something] in front of [something]","placeholders":["an electric juicer","a glass"]}, +{"id":"116079","label":"poking discs so that it falls over","template":"Poking [something] so that it falls over","placeholders":["discs"]}, +{"id":"86532","label":"putting a lip gloss in a pile of other lip glosses","template":"Putting [something similar to other things that are already on the table]","placeholders":["a lip gloss in a pile of other lip glosses"]}, +{"id":"104018","label":"letting cylinder roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cylinder"]}, +{"id":"126784","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"62463","label":"pouring beer into a wash basin","template":"Pouring [something] into [something]","placeholders":["beer","a wash basin"]}, +{"id":"115216","label":"putting highlighter in front of glass","template":"Putting [something] in front of [something]","placeholders":["highlighter","glass"]}, +{"id":"29322","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"6262","label":"squeezing sponge ball","template":"Squeezing [something]","placeholders":["sponge ball"]}, +{"id":"216249","label":"showing cookies next to cup","template":"Showing [something] next to [something]","placeholders":["cookies","cup"]}, +{"id":"138025","label":"showing perfume bottle behind wax jar","template":"Showing [something] behind [something]","placeholders":["perfume bottle","wax jar"]}, +{"id":"206263","label":"throwing usb","template":"Throwing [something]","placeholders":["usb"]}, +{"id":"156563","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"76862","label":"digging ipad out of blanket","template":"Digging [something] out of [something]","placeholders":["ipad","blanket"]}, +{"id":"216062","label":"holding scissors in front of shorts","template":"Holding [something] in front of [something]","placeholders":["scissors","shorts"]}, +{"id":"169663","label":"twisting blinds","template":"Twisting [something]","placeholders":["blinds"]}, +{"id":"26296","label":"pretending to take powder box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["powder box","table"]}, +{"id":"108564","label":"pulling two ends of scotch tape so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["scotch tape"]}, +{"id":"132760","label":"putting a razor on the edge of a desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a razor","a desk"]}, +{"id":"91136","label":"showing that a match box is empty","template":"Showing that [something] is empty","placeholders":["a match box"]}, +{"id":"146524","label":"spinning a chair that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a chair"]}, +{"id":"159824","label":"tipping a tub with plastic bricks over, so some of the plastic bricks falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a tub","plastic bricks","some of the plastic bricks"]}, +{"id":"111463","label":"putting tablet on a surface","template":"Putting [something] on a surface","placeholders":["tablet"]}, +{"id":"204775","label":"pretending or failing to wipe gummy off of stool","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["gummy","stool"]}, +{"id":"86017","label":"spinning fidget spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["fidget spinner"]}, +{"id":"214592","label":"pretending to pick towel up","template":"Pretending to pick [something] up","placeholders":["towel"]}, +{"id":"11781","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"184524","label":"stacking 2 toy cars","template":"Stacking [number of] [something]","placeholders":["2","toy cars"]}, +{"id":"50659","label":"plugging a plug extender into the wall outlet","template":"Plugging [something] into [something]","placeholders":["a plug extender","the wall outlet"]}, +{"id":"167525","label":"poking a stack of containers so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["containers"]}, +{"id":"88721","label":"pulling carriage clip from behind of a bicycle","template":"Pulling [something] from behind of [something]","placeholders":["carriage clip","a bicycle"]}, +{"id":"49754","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"151296","label":"pushing iron roll so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["iron roll"]}, +{"id":"89630","label":"failing to put a pair of scissors into a pencil case because the pair of scissors does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a pair of scissors","a pencil case","the pair of scissors"]}, +{"id":"14467","label":"taking a beer can from the table","template":"Taking [something] from [somewhere]","placeholders":["a beer can","the table"]}, +{"id":"85070","label":"taking balpoint","template":"Taking [one of many similar things on the table]","placeholders":["balpoint"]}, +{"id":"57146","label":"putting setsquare into mug","template":"Putting [something] into [something]","placeholders":["setsquare","mug"]}, +{"id":"164119","label":"lifting up one end of clippers, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["clippers"]}, +{"id":"149633","label":"putting red spoon on a surface","template":"Putting [something] on a surface","placeholders":["red spoon"]}, +{"id":"206013","label":"moving bottle away from the camera","template":"Moving [something] away from the camera","placeholders":["bottle"]}, +{"id":"105752","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"170547","label":"taking crayon out of box","template":"Taking [something] out of [something]","placeholders":["crayon","box"]}, +{"id":"106510","label":"tool falling like a rock","template":"[Something] falling like a rock","placeholders":["tool"]}, +{"id":"136873","label":"moving the remote across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["the remote"]}, +{"id":"219599","label":"pouring water out of a mug","template":"Pouring [something] out of [something]","placeholders":["water","a mug"]}, +{"id":"197721","label":"moving watch towards the camera","template":"Moving [something] towards the camera","placeholders":["watch"]}, +{"id":"105668","label":"poking a kid so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a kid"]}, +{"id":"195639","label":"stuffing scarves into a bag","template":"Stuffing [something] into [something]","placeholders":["scarves","a bag"]}, +{"id":"220204","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"94139","label":"moving cup away from the camera","template":"Moving [something] away from the camera","placeholders":["cup"]}, +{"id":"182580","label":"tipping toothpaste over","template":"Tipping [something] over","placeholders":["toothpaste"]}, +{"id":"123968","label":"the remote control falling like a rock","template":"[Something] falling like a rock","placeholders":["the remote control"]}, +{"id":"211127","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"113843","label":"poking stapler so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["stapler"]}, +{"id":"110316","label":"moving staple box away from brush","template":"Moving [something] away from [something]","placeholders":["staple box","brush"]}, +{"id":"176346","label":"bending fork so that it deforms","template":"Bending [something] so that it deforms","placeholders":["fork"]}, +{"id":"48989","label":"dropping a box in front of a comb","template":"Dropping [something] in front of [something]","placeholders":["a box","a comb"]}, +{"id":"121481","label":"moving stone and ring closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["stone","ring"]}, +{"id":"37627","label":"removing a container, revealing adapter behind","template":"Removing [something], revealing [something] behind","placeholders":["a container","adapter"]}, +{"id":"17036","label":"dropping pencil onto desk","template":"Dropping [something] onto [something]","placeholders":["pencil","desk"]}, +{"id":"63512","label":"rolling blistex on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["blistex"]}, +{"id":"46743","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"72855","label":"putting a hammer on the edge of a desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a hammer","a desk"]}, +{"id":"121844","label":"pulling box from right to left","template":"Pulling [something] from right to left","placeholders":["box"]}, +{"id":"31757","label":"moving stick down","template":"Moving [something] down","placeholders":["stick"]}, +{"id":"14366","label":"pretending to poke a book","template":"Pretending to poke [something]","placeholders":["a book"]}, +{"id":"156182","label":"showing a jar behind a paper roll","template":"Showing [something] behind [something]","placeholders":["a jar","a paper roll"]}, +{"id":"172322","label":"pushing hot case so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hot case"]}, +{"id":"209003","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"155471","label":"tipping cup with cereal over, so cereal falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","cereal","cereal"]}, +{"id":"219213","label":"taking one shoe off a table of shoes","template":"Taking [one of many similar things on the table]","placeholders":["one shoe off a table of shoes"]}, +{"id":"3172","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"1788","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"39595","label":"moving cub down","template":"Moving [something] down","placeholders":["cub"]}, +{"id":"116416","label":"moving a container away from a comb","template":"Moving [something] away from [something]","placeholders":["a container","a comb"]}, +{"id":"56044","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"149040","label":"putting 4 of laundry buckle onto a plastic bag","template":"Putting [number of] [something] onto [something]","placeholders":["4 of","laundry buckle","a plastic bag"]}, +{"id":"50679","label":"covering pencil with shirt","template":"Covering [something] with [something]","placeholders":["pencil","shirt"]}, +{"id":"21333","label":"pretending to poke purse","template":"Pretending to poke [something]","placeholders":["purse"]}, +{"id":"188407","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"162102","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"211849","label":"closing green face powder","template":"Closing [something]","placeholders":["green face powder"]}, +{"id":"205695","label":"putting cookies and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["cookies","spoon"]}, +{"id":"128105","label":"holding diffuser next to comb","template":"Holding [something] next to [something]","placeholders":["diffuser","comb"]}, +{"id":"29474","label":"opening a coffee can","template":"Opening [something]","placeholders":["a coffee can"]}, +{"id":"105939","label":"holding pen over watch","template":"Holding [something] over [something]","placeholders":["pen","watch"]}, +{"id":"165549","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"7490","label":"lifting up one end of notebook without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["notebook"]}, +{"id":"185094","label":"twisting tuner","template":"Twisting [something]","placeholders":["tuner"]}, +{"id":"97295","label":"moving pick closer to eraser","template":"Moving [something] closer to [something]","placeholders":["pick","eraser"]}, +{"id":"111079","label":"plugging cord into wall","template":"Plugging [something] into [something]","placeholders":["cord","wall"]}, +{"id":"387","label":"pouring milk into mug","template":"Pouring [something] into [something]","placeholders":["milk","mug"]}, +{"id":"200991","label":"putting glasses","template":"Putting [something similar to other things that are already on the table]","placeholders":["glasses"]}, +{"id":"160372","label":"bending a paper clip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper clip"]}, +{"id":"164528","label":"pretending to be tearing rose paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["rose paper"]}, +{"id":"76235","label":"showing hair band to the camera","template":"Showing [something] to the camera","placeholders":["hair band"]}, +{"id":"203523","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"146957","label":"pushing a hat from left to right","template":"Pushing [something] from left to right","placeholders":["a hat"]}, +{"id":"96846","label":"pretending to take keychain from table","template":"Pretending to take [something] from [somewhere]","placeholders":["keychain","table"]}, +{"id":"56578","label":"uncovering tablet","template":"Uncovering [something]","placeholders":["tablet"]}, +{"id":"62479","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"216877","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"148966","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"32293","label":"lifting book with rock on it","template":"Lifting [something] with [something] on it","placeholders":["book","rock"]}, +{"id":"186057","label":"pretending to take a shoe from a shoerack","template":"Pretending to take [something] from [somewhere]","placeholders":["a shoe","a shoerack"]}, +{"id":"74938","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"220278","label":"letting small bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["small bottle"]}, +{"id":"139861","label":"spinning a can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a can"]}, +{"id":"103900","label":"moving a plastic bottle closer to a box","template":"Moving [something] closer to [something]","placeholders":["a plastic bottle","a box"]}, +{"id":"43902","label":"letting aa battery roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["aa battery"]}, +{"id":"197985","label":"poking a stack of toys so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["toys"]}, +{"id":"44616","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"17765","label":"pushing a flashlight from left to right","template":"Pushing [something] from left to right","placeholders":["a flashlight"]}, +{"id":"163383","label":"moving key and comb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["key","comb"]}, +{"id":"176283","label":"pretending to open vaseline without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["vaseline"]}, +{"id":"93698","label":"pushing paper punch from left to right","template":"Pushing [something] from left to right","placeholders":["paper punch"]}, +{"id":"5736","label":"spilling liquid onto kitchen counter","template":"Spilling [something] onto [something]","placeholders":["liquid","kitchen counter"]}, +{"id":"140301","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"211297","label":"rolling an adhesive tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an adhesive tape"]}, +{"id":"52613","label":"lifting a cardboard with a helmet on it","template":"Lifting [something] with [something] on it","placeholders":["a cardboard","a helmet"]}, +{"id":"214236","label":"dropping a knife into a box","template":"Dropping [something] into [something]","placeholders":["a knife","a box"]}, +{"id":"9641","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"8445","label":"pouring green liquid into a glass","template":"Pouring [something] into [something]","placeholders":["green liquid","a glass"]}, +{"id":"139431","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"118550","label":"stuffing tissue into mug","template":"Stuffing [something] into [something]","placeholders":["tissue","mug"]}, +{"id":"22510","label":"pretending to pick powerbank up","template":"Pretending to pick [something] up","placeholders":["powerbank"]}, +{"id":"73713","label":"putting phone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["phone"]}, +{"id":"180540","label":"dropping wallet onto coaster","template":"Dropping [something] onto [something]","placeholders":["wallet","coaster"]}, +{"id":"17886","label":"moving a brush closer to a pencil case","template":"Moving [something] closer to [something]","placeholders":["a brush","a pencil case"]}, +{"id":"100225","label":"turning the camera upwards while filming orange sharpner","template":"Turning the camera upwards while filming [something]","placeholders":["orange sharpner"]}, +{"id":"195448","label":"pulling coffee mug from behind of box","template":"Pulling [something] from behind of [something]","placeholders":["coffee mug","box"]}, +{"id":"133759","label":"holding a spoon next to bucket","template":"Holding [something] next to [something]","placeholders":["a spoon","bucket"]}, +{"id":"197908","label":"moving wallet away from remote","template":"Moving [something] away from [something]","placeholders":["wallet","remote"]}, +{"id":"203775","label":"dropping a stuffed bird onto the ground","template":"Dropping [something] onto [something]","placeholders":["a stuffed bird","the ground"]}, +{"id":"6253","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"174280","label":"moving a tablet away from a tissue box","template":"Moving [something] away from [something]","placeholders":["a tablet","a tissue box"]}, +{"id":"210474","label":"letting glass roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glass"]}, +{"id":"135738","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"50484","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"141406","label":"burying a purse in a blanket","template":"Burying [something] in [something]","placeholders":["a purse","a blanket"]}, +{"id":"74309","label":"spreading peanut butter onto bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","bread"]}, +{"id":"12195","label":"taking pen out of box","template":"Taking [something] out of [something]","placeholders":["pen","box"]}, +{"id":"108061","label":"taking brick","template":"Taking [one of many similar things on the table]","placeholders":["brick"]}, +{"id":"27794","label":"pushing tomato so it spins","template":"Pushing [something] so it spins","placeholders":["tomato"]}, +{"id":"28974","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"18492","label":"covering paper with phone case","template":"Covering [something] with [something]","placeholders":["paper","phone case"]}, +{"id":"97237","label":"putting microscope behind mouse","template":"Putting [something] behind [something]","placeholders":["microscope","mouse"]}, +{"id":"44635","label":"pushing white board clip with metal rod","template":"Pushing [something] with [something]","placeholders":["white board clip","metal rod"]}, +{"id":"220026","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"58567","label":"putting chess piece on a surface","template":"Putting [something] on a surface","placeholders":["chess piece"]}, +{"id":"214650","label":"pushing plush so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["plush"]}, +{"id":"87146","label":"squeezing a water bottle","template":"Squeezing [something]","placeholders":["a water bottle"]}, +{"id":"42860","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"105228","label":"putting marker pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["marker pen"]}, +{"id":"49698","label":"holding wooden spoon next to blender","template":"Holding [something] next to [something]","placeholders":["wooden spoon","blender"]}, +{"id":"75201","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"135411","label":"pretending to sprinkle air onto muffin","template":"Pretending to sprinkle air onto [something]","placeholders":["muffin"]}, +{"id":"80767","label":"pulling a chess board from left to right","template":"Pulling [something] from left to right","placeholders":["a chess board"]}, +{"id":"50632","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"119332","label":"putting sock that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["sock"]}, +{"id":"30454","label":"trying to bend a metal knife so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a metal knife"]}, +{"id":"53666","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"14048","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"39568","label":"taking crayon","template":"Taking [one of many similar things on the table]","placeholders":["crayon"]}, +{"id":"3989","label":"pretending to throw remote control","template":"Pretending to throw [something]","placeholders":["remote control"]}, +{"id":"186675","label":"pretending to squeeze pack","template":"Pretending to squeeze [something]","placeholders":["pack"]}, +{"id":"53799","label":"pushing a chess board with a hand","template":"Pushing [something] with [something]","placeholders":["a chess board","a hand"]}, +{"id":"164806","label":"letting a pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pencil"]}, +{"id":"141977","label":"showing that a lunchbox is empty","template":"Showing that [something] is empty","placeholders":["a lunchbox"]}, +{"id":"23151","label":"picking firm plastic up","template":"Picking [something] up","placeholders":["firm plastic"]}, +{"id":"40327","label":"water bottle colliding with water bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["water bottle","water bottle"]}, +{"id":"104248","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"96935","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"25211","label":"moving mug away from glass","template":"Moving [something] away from [something]","placeholders":["mug","glass"]}, +{"id":"6570","label":"covering wallet with bag","template":"Covering [something] with [something]","placeholders":["wallet","bag"]}, +{"id":"188132","label":"putting remote control on a surface","template":"Putting [something] on a surface","placeholders":["remote control"]}, +{"id":"6268","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"138276","label":"poking eye glasses so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["eye glasses"]}, +{"id":"5877","label":"putting a spray bottle on the edge of sofa so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a spray bottle","sofa"]}, +{"id":"87109","label":"taking clothes peg out of mug","template":"Taking [something] out of [something]","placeholders":["clothes peg","mug"]}, +{"id":"127420","label":"taking a bag out of a jar","template":"Taking [something] out of [something]","placeholders":["a bag","a jar"]}, +{"id":"87528","label":"pretending to squeeze a bottle of water","template":"Pretending to squeeze [something]","placeholders":["a bottle of water"]}, +{"id":"96021","label":"poking paper so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["paper"]}, +{"id":"6303","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"122203","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"135559","label":"showing a pen on top of optical mouse","template":"Showing [something] on top of [something]","placeholders":["a pen","optical mouse"]}, +{"id":"39505","label":"showing cloth clip to the camera","template":"Showing [something] to the camera","placeholders":["cloth clip"]}, +{"id":"9924","label":"tilting clipnoard with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["clipnoard","pen"]}, +{"id":"117395","label":"stuffing tissue into giftbag","template":"Stuffing [something] into [something]","placeholders":["tissue","giftbag"]}, +{"id":"127776","label":"pretending to pick plate up","template":"Pretending to pick [something] up","placeholders":["plate"]}, +{"id":"70671","label":"hitting stamp pad with remote","template":"Hitting [something] with [something]","placeholders":["stamp pad","remote"]}, +{"id":"149638","label":"pretending to turn chapstick upside down","template":"Pretending to turn [something] upside down","placeholders":["chapstick"]}, +{"id":"29972","label":"attaching earphone to laptop","template":"Attaching [something] to [something]","placeholders":["earphone","laptop"]}, +{"id":"56039","label":"lifting paper with rule on it","template":"Lifting [something] with [something] on it","placeholders":["paper","rule"]}, +{"id":"94364","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"33598","label":"putting trash bags upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["trash bags"]}, +{"id":"163471","label":"opening cd box","template":"Opening [something]","placeholders":["cd box"]}, +{"id":"129361","label":"letting can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["can"]}, +{"id":"100623","label":"moving a ring down","template":"Moving [something] down","placeholders":["a ring"]}, +{"id":"173764","label":"pushing nail varnish so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["nail varnish"]}, +{"id":"50133","label":"spinning candel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["candel"]}, +{"id":"142297","label":"pretending to close phone without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["phone"]}, +{"id":"63058","label":"pulling a reusable grocery bag out of its holder","template":"Pulling [something] out of [something]","placeholders":["a reusable grocery bag","its holder"]}, +{"id":"15547","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"155956","label":"holding duster next to orange cup","template":"Holding [something] next to [something]","placeholders":["duster","orange cup"]}, +{"id":"157680","label":"uncovering pillow","template":"Uncovering [something]","placeholders":["pillow"]}, +{"id":"134377","label":"pulling the phone from right to left","template":"Pulling [something] from right to left","placeholders":["the phone"]}, +{"id":"155848","label":"poking a doll so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a doll"]}, +{"id":"82439","label":"pushing a glass so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a glass"]}, +{"id":"132952","label":"moving calendar away from the camera","template":"Moving [something] away from the camera","placeholders":["calendar"]}, +{"id":"69488","label":"throwing a shoe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a shoe"]}, +{"id":"124605","label":"showing wallet behind candle","template":"Showing [something] behind [something]","placeholders":["wallet","candle"]}, +{"id":"143497","label":"pretending to pour gems out of container, but container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["gems","container","container"]}, +{"id":"141049","label":"stuffing tissue into a bottle","template":"Stuffing [something] into [something]","placeholders":["tissue","a bottle"]}, +{"id":"212483","label":"putting matchbox next to mug","template":"Putting [something] next to [something]","placeholders":["matchbox","mug"]}, +{"id":"145828","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"82991","label":"plugging a plug into wall outlet","template":"Plugging [something] into [something]","placeholders":["a plug","wall outlet"]}, +{"id":"154239","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"613","label":"putting paint into bucket","template":"Putting [something] into [something]","placeholders":["paint","bucket"]}, +{"id":"32475","label":"covering lighter with cover","template":"Covering [something] with [something]","placeholders":["lighter","cover"]}, +{"id":"181975","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"14965","label":"lifting book with glass on it","template":"Lifting [something] with [something] on it","placeholders":["book","glass"]}, +{"id":"40049","label":"stuffing paper into a mug","template":"Stuffing [something] into [something]","placeholders":["paper","a mug"]}, +{"id":"43906","label":"showing water bottle behind page markers","template":"Showing [something] behind [something]","placeholders":["water bottle","page markers"]}, +{"id":"45673","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"22367","label":"putting stapler on a surface","template":"Putting [something] on a surface","placeholders":["stapler"]}, +{"id":"104870","label":"trying but failing to attach a iron piece to another iron piece because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a iron piece","another iron piece"]}, +{"id":"88167","label":"wiping food off of stove top","template":"Wiping [something] off of [something]","placeholders":["food","stove top"]}, +{"id":"21258","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"56433","label":"touching (without moving) the cover of a book","template":"Touching (without moving) [part] of [something]","placeholders":["the cover","a book"]}, +{"id":"81130","label":"turning bottle cap upside down","template":"Turning [something] upside down","placeholders":["bottle cap"]}, +{"id":"36283","label":"showing key on top of spoon","template":"Showing [something] on top of [something]","placeholders":["key","spoon"]}, +{"id":"36163","label":"closing carmex bottle","template":"Closing [something]","placeholders":["carmex bottle"]}, +{"id":"6948","label":"poking a stack of coasters without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["coasters"]}, +{"id":"203294","label":"touching (without moving) flusher of toilet","template":"Touching (without moving) [part] of [something]","placeholders":["flusher","toilet"]}, +{"id":"61887","label":"letting an orange roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["an orange"]}, +{"id":"20338","label":"taking toy out of plastic egg","template":"Taking [something] out of [something]","placeholders":["toy","plastic egg"]}, +{"id":"146868","label":"putting a water bottle upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a water bottle"]}, +{"id":"51370","label":"putting coin next to belt","template":"Putting [something] next to [something]","placeholders":["coin","belt"]}, +{"id":"125426","label":"holding toddler rain boot","template":"Holding [something]","placeholders":["toddler rain boot"]}, +{"id":"192785","label":"stuffing sunglasses into bucket","template":"Stuffing [something] into [something]","placeholders":["sunglasses","bucket"]}, +{"id":"30605","label":"spreading water onto stove","template":"Spreading [something] onto [something]","placeholders":["water","stove"]}, +{"id":"10443","label":"turning the camera left while filming picture","template":"Turning the camera left while filming [something]","placeholders":["picture"]}, +{"id":"72320","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"136523","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"21596","label":"trying to pour water into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","cup"]}, +{"id":"162234","label":"holding sharpie","template":"Holding [something]","placeholders":["sharpie"]}, +{"id":"57786","label":"letting bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["bottle"]}, +{"id":"126243","label":"a banana peel falling like a rock","template":"[Something] falling like a rock","placeholders":["a banana peel"]}, +{"id":"185991","label":"dropping a matchbox onto a container","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a container"]}, +{"id":"122737","label":"putting pen into jar","template":"Putting [something] into [something]","placeholders":["pen","jar"]}, +{"id":"117448","label":"putting stapler into basket","template":"Putting [something] into [something]","placeholders":["stapler","basket"]}, +{"id":"196274","label":"showing that a paper bag is empty","template":"Showing that [something] is empty","placeholders":["a paper bag"]}, +{"id":"190268","label":"folding a tanktop","template":"Folding [something]","placeholders":["a tanktop"]}, +{"id":"56980","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"152592","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"38891","label":"moving mug closer to glass","template":"Moving [something] closer to [something]","placeholders":["mug","glass"]}, +{"id":"125555","label":"putting napkin on the edge of wooden bowl so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["napkin","wooden bowl"]}, +{"id":"72851","label":"poking pig so that it falls over","template":"Poking [something] so that it falls over","placeholders":["pig"]}, +{"id":"16038","label":"closing cd case","template":"Closing [something]","placeholders":["cd case"]}, +{"id":"123399","label":"hitting a rubber pig with lint brush","template":"Hitting [something] with [something]","placeholders":["a rubber pig","lint brush"]}, +{"id":"164514","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"103003","label":"poking glass of water so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glass of water"]}, +{"id":"40719","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"116562","label":"pulling yarn out of canister","template":"Pulling [something] out of [something]","placeholders":["yarn","canister"]}, +{"id":"97193","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"148490","label":"tearing something into two pieces","template":"Tearing [something] into two pieces","placeholders":["something"]}, +{"id":"19786","label":"pushing duster with metal rod","template":"Pushing [something] with [something]","placeholders":["duster","metal rod"]}, +{"id":"24107","label":"pushing remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote"]}, +{"id":"110402","label":"pushing a mug from left to right","template":"Pushing [something] from left to right","placeholders":["a mug"]}, +{"id":"71506","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"43875","label":"covering calculator with a piece or paper","template":"Covering [something] with [something]","placeholders":["calculator","a piece or paper"]}, +{"id":"122955","label":"turning the camera upwards while filming split air conditioner outdoor unit","template":"Turning the camera upwards while filming [something]","placeholders":["split air conditioner outdoor unit"]}, +{"id":"110138","label":"pushing book with smarthphone","template":"Pushing [something] with [something]","placeholders":["book","smarthphone"]}, +{"id":"83978","label":"poking a wallet so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a wallet"]}, +{"id":"132395","label":"pushing faucet from right to left","template":"Pushing [something] from right to left","placeholders":["faucet"]}, +{"id":"185895","label":"folding sun glasses","template":"Folding [something]","placeholders":["sun glasses"]}, +{"id":"3137","label":"putting scissors onto tape dispenser so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["scissors","tape dispenser"]}, +{"id":"61892","label":"putting bottle into backpack","template":"Putting [something] into [something]","placeholders":["bottle","backpack"]}, +{"id":"182007","label":"plugging power adapter into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power adapter","a wall outlet"]}, +{"id":"150565","label":"rolling garbage covers on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["garbage covers"]}, +{"id":"18723","label":"squeezing stuffed animal","template":"Squeezing [something]","placeholders":["stuffed animal"]}, +{"id":"51172","label":"showing a photo of spoon to the camera","template":"Showing a photo of [something] to the camera","placeholders":["spoon"]}, +{"id":"50661","label":"turning the camera left while filming soft drink bottles","template":"Turning the camera left while filming [something]","placeholders":["soft drink bottles"]}, +{"id":"173777","label":"moving soda away from box","template":"Moving [something] away from [something]","placeholders":["soda","box"]}, +{"id":"25192","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"124864","label":"tipping dish soap over","template":"Tipping [something] over","placeholders":["dish soap"]}, +{"id":"104774","label":"throwing something","template":"Throwing [something]","placeholders":["something"]}, +{"id":"11200","label":"pouring water onto toothbrush","template":"Pouring [something] onto [something]","placeholders":["water","toothbrush"]}, +{"id":"9028","label":"taking clothespin","template":"Taking [one of many similar things on the table]","placeholders":["clothespin"]}, +{"id":"84098","label":"pushing bottle off of table","template":"Pushing [something] off of [something]","placeholders":["bottle","table"]}, +{"id":"127879","label":"pretending to pour water out of water bottle, but water bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","water bottle","water bottle"]}, +{"id":"53994","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"120231","label":"opening petrol tank","template":"Opening [something]","placeholders":["petrol tank"]}, +{"id":"79688","label":"pushing phone from right to left","template":"Pushing [something] from right to left","placeholders":["phone"]}, +{"id":"92635","label":"pouring water out of a water pipe","template":"Pouring [something] out of [something]","placeholders":["water","a water pipe"]}, +{"id":"61840","label":"touching (without moving) part of a bottle","template":"Touching (without moving) [part] of [something]","placeholders":["part","a bottle"]}, +{"id":"13844","label":"letting powerbank roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["powerbank"]}, +{"id":"90144","label":"rolling metal rod on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["metal rod"]}, +{"id":"133172","label":"holding a pen over a pencil case","template":"Holding [something] over [something]","placeholders":["a pen","a pencil case"]}, +{"id":"6803","label":"dropping a ball into a cup","template":"Dropping [something] into [something]","placeholders":["a ball","a cup"]}, +{"id":"169492","label":"showing that stick is inside cup","template":"Showing that [something] is inside [something]","placeholders":["stick","cup"]}, +{"id":"45089","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"62389","label":"poking toaster so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toaster"]}, +{"id":"104454","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"74493","label":"moving a cd drive across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cd drive"]}, +{"id":"29389","label":"turning red spoon upside down","template":"Turning [something] upside down","placeholders":["red spoon"]}, +{"id":"24391","label":"pretending to pick nail polish up","template":"Pretending to pick [something] up","placeholders":["nail polish"]}, +{"id":"183939","label":"holding a bottle in front of the vessel rack","template":"Holding [something] in front of [something]","placeholders":["a bottle","the vessel rack"]}, +{"id":"219390","label":"pretending to be tearing a booklet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a booklet"]}, +{"id":"27301","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"5408","label":"holding pencil next to tape","template":"Holding [something] next to [something]","placeholders":["pencil","tape"]}, +{"id":"173496","label":"spreading peanut butter onto bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","bread"]}, +{"id":"40018","label":"putting pen onto glass so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pen","glass"]}, +{"id":"39683","label":"closing closing a manicure set","template":"Closing [something]","placeholders":["closing a manicure set"]}, +{"id":"193206","label":"falling like feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling like feather"]}, +{"id":"33098","label":"tipping something over","template":"Tipping [something] over","placeholders":["something"]}, +{"id":"213392","label":"plugging cable into phone","template":"Plugging [something] into [something]","placeholders":["cable","phone"]}, +{"id":"162616","label":"moving book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["book"]}, +{"id":"2877","label":"showing bottle opener next to purse","template":"Showing [something] next to [something]","placeholders":["bottle opener","purse"]}, +{"id":"7940","label":"opening ink bottle","template":"Opening [something]","placeholders":["ink bottle"]}, +{"id":"115573","label":"plugging phone charger into plug","template":"Plugging [something] into [something]","placeholders":["phone charger","plug"]}, +{"id":"145382","label":"bending matchstick until it breaks","template":"Bending [something] until it breaks","placeholders":["matchstick"]}, +{"id":"146913","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"24130","label":"taking a highlighter","template":"Taking [one of many similar things on the table]","placeholders":["a highlighter"]}, +{"id":"127063","label":"putting screw driver","template":"Putting [something similar to other things that are already on the table]","placeholders":["screw driver"]}, +{"id":"8110","label":"twisting (wringing) a piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a piece of cloth"]}, +{"id":"75757","label":"lifting a surface with glue stick on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["glue stick"]}, +{"id":"102177","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"40280","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"89404","label":"dropping a matchstick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a remote"]}, +{"id":"160027","label":"showing quarter next to dollar","template":"Showing [something] next to [something]","placeholders":["quarter","dollar"]}, +{"id":"82892","label":"moving hanger and screwdriver closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["hanger","screwdriver"]}, +{"id":"38609","label":"pretending or trying and failing to twist garfield plush","template":"Pretending or trying and failing to twist [something]","placeholders":["garfield plush"]}, +{"id":"33211","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"130671","label":"hitting mug with pen","template":"Hitting [something] with [something]","placeholders":["mug","pen"]}, +{"id":"60599","label":"pushing toothbrush from right to left","template":"Pushing [something] from right to left","placeholders":["toothbrush"]}, +{"id":"88131","label":"stuffing paper towels into cup","template":"Stuffing [something] into [something]","placeholders":["paper towels","cup"]}, +{"id":"7177","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"21719","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"167661","label":"picking a remote up","template":"Picking [something] up","placeholders":["a remote"]}, +{"id":"83628","label":"pulling broom from left to right","template":"Pulling [something] from left to right","placeholders":["broom"]}, +{"id":"91358","label":"putting sunglasses and toothbrush on the table","template":"Putting [something] and [something] on the table","placeholders":["sunglasses","toothbrush"]}, +{"id":"98332","label":"plugging lead into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["lead","laptop"]}, +{"id":"123583","label":"turning the camera right while filming poster","template":"Turning the camera right while filming [something]","placeholders":["poster"]}, +{"id":"53324","label":"picking a packaging up","template":"Picking [something] up","placeholders":["a packaging"]}, +{"id":"168601","label":"taking fork","template":"Taking [one of many similar things on the table]","placeholders":["fork"]}, +{"id":"118498","label":"putting bottle in front of eraser","template":"Putting [something] in front of [something]","placeholders":["bottle","eraser"]}, +{"id":"163847","label":"folding a wash cloth","template":"Folding [something]","placeholders":["a wash cloth"]}, +{"id":"111731","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"205330","label":"putting water bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["water bottle"]}, +{"id":"21923","label":"dropping a matchbox onto a box","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a box"]}, +{"id":"8092","label":"turning the camera left while filming black hair tie","template":"Turning the camera left while filming [something]","placeholders":["black hair tie"]}, +{"id":"175640","label":"showing that olive is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["olive","bottle"]}, +{"id":"164331","label":"moving away from mouse with your camera","template":"Moving away from [something] with your camera","placeholders":["mouse"]}, +{"id":"122279","label":"opening a pot","template":"Opening [something]","placeholders":["a pot"]}, +{"id":"142888","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"32796","label":"showing glasses behind hamburger","template":"Showing [something] behind [something]","placeholders":["glasses","hamburger"]}, +{"id":"7870","label":"pouring liquid into a glass","template":"Pouring [something] into [something]","placeholders":["liquid","a glass"]}, +{"id":"22279","label":"holding wallet over diary","template":"Holding [something] over [something]","placeholders":["wallet","diary"]}, +{"id":"120824","label":"showing that orange bowl is empty","template":"Showing that [something] is empty","placeholders":["orange bowl"]}, +{"id":"86925","label":"letting a pill bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pill bottle"]}, +{"id":"209352","label":"pretending to pick peach up","template":"Pretending to pick [something] up","placeholders":["peach"]}, +{"id":"151214","label":"pushing a tissue box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a tissue box"]}, +{"id":"19981","label":"covering a watch with a hat","template":"Covering [something] with [something]","placeholders":["a watch","a hat"]}, +{"id":"185471","label":"stuffing cloth into bucket","template":"Stuffing [something] into [something]","placeholders":["cloth","bucket"]}, +{"id":"45410","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"33247","label":"putting a wooden fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a wooden fork"]}, +{"id":"160387","label":"holding jar over box","template":"Holding [something] over [something]","placeholders":["jar","box"]}, +{"id":"64660","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"91910","label":"moving the arm of plush","template":"Moving [part] of [something]","placeholders":["the arm","plush"]}, +{"id":"150963","label":"dropping container behind bowl","template":"Dropping [something] behind [something]","placeholders":["container","bowl"]}, +{"id":"13843","label":"uncovering striker coin","template":"Uncovering [something]","placeholders":["striker coin"]}, +{"id":"92587","label":"tilting box with razor blade on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","razor blade"]}, +{"id":"156821","label":"tilting box with hand on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","hand"]}, +{"id":"172786","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"190535","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"20356","label":"showing that container is empty","template":"Showing that [something] is empty","placeholders":["container"]}, +{"id":"136685","label":"touching (without moving) the edge of plate","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","plate"]}, +{"id":"126995","label":"tilting a table with the edge on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a table","the edge"]}, +{"id":"168872","label":"holding book","template":"Holding [something]","placeholders":["book"]}, +{"id":"201763","label":"putting marker into mug","template":"Putting [something] into [something]","placeholders":["marker","mug"]}, +{"id":"150970","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"62078","label":"pretending to put spoon into mug","template":"Pretending to put [something] into [something]","placeholders":["spoon","mug"]}, +{"id":"68298","label":"holding rubber duck over books","template":"Holding [something] over [something]","placeholders":["rubber duck","books"]}, +{"id":"196602","label":"pulling remote from left to right","template":"Pulling [something] from left to right","placeholders":["remote"]}, +{"id":"44263","label":"pushing casual hat from right to left","template":"Pushing [something] from right to left","placeholders":["casual hat"]}, +{"id":"165984","label":"taking a paper","template":"Taking [one of many similar things on the table]","placeholders":["a paper"]}, +{"id":"60156","label":"showing a photo of a girl to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a girl"]}, +{"id":"162628","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"170243","label":"pulling plushie from right to left","template":"Pulling [something] from right to left","placeholders":["plushie"]}, +{"id":"108988","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"138471","label":"stuffing a ball into a basket","template":"Stuffing [something] into [something]","placeholders":["a ball","a basket"]}, +{"id":"62751","label":"holding cup of coffee next to cup of coffee","template":"Holding [something] next to [something]","placeholders":["cup of coffee","cup of coffee"]}, +{"id":"64640","label":"approaching smart phone with your camera","template":"Approaching [something] with your camera","placeholders":["smart phone"]}, +{"id":"1105","label":"covering mug with big pouch","template":"Covering [something] with [something]","placeholders":["mug","big pouch"]}, +{"id":"106243","label":"tipping cross over","template":"Tipping [something] over","placeholders":["cross"]}, +{"id":"92329","label":"showing that dog bowl is empty","template":"Showing that [something] is empty","placeholders":["dog bowl"]}, +{"id":"26012","label":"moving key towards the camera","template":"Moving [something] towards the camera","placeholders":["key"]}, +{"id":"25674","label":"taking belt from bed","template":"Taking [something] from [somewhere]","placeholders":["belt","bed"]}, +{"id":"198898","label":"removing a plastic bag, revealing a coin behind","template":"Removing [something], revealing [something] behind","placeholders":["a plastic bag","a coin"]}, +{"id":"144168","label":"pushing a teddy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a teddy"]}, +{"id":"81215","label":"dropping coin onto blanket","template":"Dropping [something] onto [something]","placeholders":["coin","blanket"]}, +{"id":"31745","label":"holding mug in front of water bottle","template":"Holding [something] in front of [something]","placeholders":["mug","water bottle"]}, +{"id":"85447","label":"tilting whiteboard with binoculars on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["whiteboard","binoculars"]}, +{"id":"78203","label":"pretending to take a mug from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a mug","the table"]}, +{"id":"219401","label":"uncovering cigarette","template":"Uncovering [something]","placeholders":["cigarette"]}, +{"id":"136277","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"206292","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"171155","label":"throwing a sponge","template":"Throwing [something]","placeholders":["a sponge"]}, +{"id":"205379","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"178127","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"65987","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"101721","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"14551","label":"plugging usb cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","charger"]}, +{"id":"80828","label":"taking medicine bottle out of a prescription bag","template":"Taking [something] out of [something]","placeholders":["medicine bottle","a prescription bag"]}, +{"id":"142894","label":"plastic ognions colliding with plastic choux and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["plastic ognions","plastic choux"]}, +{"id":"137582","label":"putting spoon next to sponze","template":"Putting [something] next to [something]","placeholders":["spoon","sponze"]}, +{"id":"219248","label":"moving a plastic box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a plastic box"]}, +{"id":"83801","label":"covering key with cup","template":"Covering [something] with [something]","placeholders":["key","cup"]}, +{"id":"140387","label":"hitting stool with newspaper","template":"Hitting [something] with [something]","placeholders":["stool","newspaper"]}, +{"id":"19698","label":"throwing a phone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a phone"]}, +{"id":"52914","label":"opening something","template":"Opening [something]","placeholders":["something"]}, +{"id":"194953","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"94288","label":"uncovering a headphones","template":"Uncovering [something]","placeholders":["a headphones"]}, +{"id":"43568","label":"moving teacup closer to teacup","template":"Moving [something] closer to [something]","placeholders":["teacup","teacup"]}, +{"id":"35677","label":"moving lotion bottle down","template":"Moving [something] down","placeholders":["lotion bottle"]}, +{"id":"178165","label":"moving punching machine down","template":"Moving [something] down","placeholders":["punching machine"]}, +{"id":"93514","label":"pretending to pour liquid out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["liquid","bottle","bottle"]}, +{"id":"126421","label":"approaching girl statue with your camera","template":"Approaching [something] with your camera","placeholders":["girl statue"]}, +{"id":"56512","label":"moving perfume and cream away from each other","template":"Moving [something] and [something] away from each other","placeholders":["perfume","cream"]}, +{"id":"73441","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"158875","label":"putting a spoon behind a mug","template":"Putting [something] behind [something]","placeholders":["a spoon","a mug"]}, +{"id":"81838","label":"rolling white stone on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["white stone"]}, +{"id":"54244","label":"pretending to open glass door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["glass door"]}, +{"id":"99214","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"23681","label":"putting bottle onto ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["bottle","ball"]}, +{"id":"70412","label":"pretending to open notebook without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notebook"]}, +{"id":"135692","label":"trying to bend scissors so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissors"]}, +{"id":"93576","label":"pushing cigarette lighter with wooden stick","template":"Pushing [something] with [something]","placeholders":["cigarette lighter","wooden stick"]}, +{"id":"152243","label":"turning the camera left while filming hair dryer","template":"Turning the camera left while filming [something]","placeholders":["hair dryer"]}, +{"id":"110663","label":"turning bar soap upside down","template":"Turning [something] upside down","placeholders":["bar soap"]}, +{"id":"208019","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"69401","label":"putting spoon and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["spoon","pen"]}, +{"id":"158923","label":"trying to bend a key so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a key"]}, +{"id":"143268","label":"holding small sunscreen lotion","template":"Holding [something]","placeholders":["small sunscreen lotion"]}, +{"id":"48371","label":"uncovering lantern","template":"Uncovering [something]","placeholders":["lantern"]}, +{"id":"14784","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"53296","label":"pretending to put a funnel into a glass cup","template":"Pretending to put [something] into [something]","placeholders":["a funnel","a glass cup"]}, +{"id":"190079","label":"moving a hammer and a nail away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a hammer","a nail"]}, +{"id":"2819","label":"covering goggles with towel","template":"Covering [something] with [something]","placeholders":["goggles","towel"]}, +{"id":"87683","label":"wiping souce off of floor","template":"Wiping [something] off of [something]","placeholders":["souce","floor"]}, +{"id":"93704","label":"pulling plushie from left to right","template":"Pulling [something] from left to right","placeholders":["plushie"]}, +{"id":"186916","label":"turning candle upside down","template":"Turning [something] upside down","placeholders":["candle"]}, +{"id":"166257","label":"putting a spoon and a cup on the table","template":"Putting [something] and [something] on the table","placeholders":["a spoon","a cup"]}, +{"id":"46884","label":"stuffing blankets into a fabric bin","template":"Stuffing [something] into [something]","placeholders":["blankets","a fabric bin"]}, +{"id":"114795","label":"showing black lipstick to the camera","template":"Showing [something] to the camera","placeholders":["black lipstick"]}, +{"id":"92843","label":"pretending to put a pen next to a pen","template":"Pretending to put [something] next to [something]","placeholders":["a pen","a pen"]}, +{"id":"37228","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"45040","label":"pulling dish onto table","template":"Pulling [something] onto [something]","placeholders":["dish","table"]}, +{"id":"195577","label":"turning a teddy bear upside down","template":"Turning [something] upside down","placeholders":["a teddy bear"]}, +{"id":"64406","label":"throwing wooden puppet in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["wooden puppet"]}, +{"id":"15504","label":"twisting a towel","template":"Twisting [something]","placeholders":["a towel"]}, +{"id":"27690","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"175466","label":"showing red toy car next to green toy car","template":"Showing [something] next to [something]","placeholders":["red toy car","green toy car"]}, +{"id":"117774","label":"covering a pear with newspaper","template":"Covering [something] with [something]","placeholders":["a pear","newspaper"]}, +{"id":"48917","label":"holding a pencil over a computer mouse","template":"Holding [something] over [something]","placeholders":["a pencil","a computer mouse"]}, +{"id":"220817","label":"spinning cup so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cup"]}, +{"id":"93275","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"89853","label":"turning the camera downwards while filming hair dryer","template":"Turning the camera downwards while filming [something]","placeholders":["hair dryer"]}, +{"id":"18357","label":"spinning candle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["candle"]}, +{"id":"193769","label":"spinning a spinning toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinning toy"]}, +{"id":"46001","label":"putting chalk, magnet and marker pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["chalk","magnet","marker pen"]}, +{"id":"6074","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"33775","label":"pushing a tissue box from left to right","template":"Pushing [something] from left to right","placeholders":["a tissue box"]}, +{"id":"14215","label":"tearing a leaf just a little bit","template":"Tearing [something] just a little bit","placeholders":["a leaf"]}, +{"id":"75613","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"136128","label":"plugging plug into a wall","template":"Plugging [something] into [something]","placeholders":["plug","a wall"]}, +{"id":"88053","label":"uncovering packing tape","template":"Uncovering [something]","placeholders":["packing tape"]}, +{"id":"171805","label":"pretending to put red spoon on a surface","template":"Pretending to put [something] on a surface","placeholders":["red spoon"]}, +{"id":"71799","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"72232","label":"taking marker pen","template":"Taking [one of many similar things on the table]","placeholders":["marker pen"]}, +{"id":"72462","label":"moving mug and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mug","remote"]}, +{"id":"99157","label":"letting waterbottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["waterbottle"]}, +{"id":"26864","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"195073","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"164937","label":"trying to bend moprod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["moprod"]}, +{"id":"39893","label":"pushing shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["shoe"]}, +{"id":"82895","label":"moving a book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a book"]}, +{"id":"115800","label":"stuffing a cloth into a cardboard box","template":"Stuffing [something] into [something]","placeholders":["a cloth","a cardboard box"]}, +{"id":"203165","label":"turning the camera right while filming hat","template":"Turning the camera right while filming [something]","placeholders":["hat"]}, +{"id":"87870","label":"poking a penny so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a penny"]}, +{"id":"98681","label":"moving ring down","template":"Moving [something] down","placeholders":["ring"]}, +{"id":"111888","label":"putting pen into box","template":"Putting [something] into [something]","placeholders":["pen","box"]}, +{"id":"187748","label":"pouring drink into glass","template":"Pouring [something] into [something]","placeholders":["drink","glass"]}, +{"id":"207682","label":"poking can so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["can"]}, +{"id":"150504","label":"moving domino and domino closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["domino","domino"]}, +{"id":"97257","label":"showing that coffee is inside mug","template":"Showing that [something] is inside [something]","placeholders":["coffee","mug"]}, +{"id":"154913","label":"pretending or failing to wipe thing off of lamp","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["thing","lamp"]}, +{"id":"35613","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78671","label":"plugging an usb into pc","template":"Plugging [something] into [something]","placeholders":["an usb","pc"]}, +{"id":"82024","label":"plugging a computer charger into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a computer charger","a wall outlet"]}, +{"id":"23718","label":"unfolding something","template":"Unfolding [something]","placeholders":["something"]}, +{"id":"38815","label":"pretending to put glove behind coffee can","template":"Pretending to put [something] behind [something]","placeholders":["glove","coffee can"]}, +{"id":"204703","label":"dropping cat in front of cube","template":"Dropping [something] in front of [something]","placeholders":["cat","cube"]}, +{"id":"109127","label":"holding bottle behind `screen","template":"Holding [something] behind [something]","placeholders":["bottle","`screen"]}, +{"id":"171502","label":"dropping a badminton bat next to a pair of shoes","template":"Dropping [something] next to [something]","placeholders":["a badminton bat","a pair of shoes"]}, +{"id":"4548","label":"covering vitamin with hand towel","template":"Covering [something] with [something]","placeholders":["vitamin","hand towel"]}, +{"id":"205733","label":"pretending or trying and failing to twist a small wooden piece","template":"Pretending or trying and failing to twist [something]","placeholders":["a small wooden piece"]}, +{"id":"128498","label":"turning the camera right while filming cart","template":"Turning the camera right while filming [something]","placeholders":["cart"]}, +{"id":"37093","label":"covering rice jar with lid","template":"Covering [something] with [something]","placeholders":["rice jar","lid"]}, +{"id":"166244","label":"hitting bottle with thread","template":"Hitting [something] with [something]","placeholders":["bottle","thread"]}, +{"id":"190515","label":"throwing an empty box","template":"Throwing [something]","placeholders":["an empty box"]}, +{"id":"105814","label":"bending a ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a ruler"]}, +{"id":"32373","label":"moving a small jar and a small jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a small jar","a small jar"]}, +{"id":"1780","label":"supplement bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["supplement bottle"]}, +{"id":"113525","label":"covering a pen with a shoe","template":"Covering [something] with [something]","placeholders":["a pen","a shoe"]}, +{"id":"140748","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"151079","label":"pushing marker pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["marker pen"]}, +{"id":"118544","label":"unfolding pamphlet","template":"Unfolding [something]","placeholders":["pamphlet"]}, +{"id":"74146","label":"showing an apple on top of a jar","template":"Showing [something] on top of [something]","placeholders":["an apple","a jar"]}, +{"id":"51413","label":"picking dog toy up","template":"Picking [something] up","placeholders":["dog toy"]}, +{"id":"65224","label":"plugging power adapter into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power adapter","socket"]}, +{"id":"192537","label":"pretending to be tearing comb","template":"Pretending to be tearing [something that is not tearable]","placeholders":["comb"]}, +{"id":"21801","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"210275","label":"taking one of many travel magazines","template":"Taking [one of many similar things on the table]","placeholders":["one of many travel magazines"]}, +{"id":"174660","label":"taking knife out of knife holder","template":"Taking [something] out of [something]","placeholders":["knife","knife holder"]}, +{"id":"9719","label":"moving laptop up","template":"Moving [something] up","placeholders":["laptop"]}, +{"id":"199597","label":"taking plant","template":"Taking [one of many similar things on the table]","placeholders":["plant"]}, +{"id":"117848","label":"moving red crayon away from blue crayon","template":"Moving [something] away from [something]","placeholders":["red crayon","blue crayon"]}, +{"id":"29055","label":"sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet"]}, +{"id":"220410","label":"taking sfety helmet from beam","template":"Taking [something] from [somewhere]","placeholders":["sfety helmet","beam"]}, +{"id":"41078","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"6519","label":"pulling two ends of tin foil so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["tin foil"]}, +{"id":"57967","label":"poking toy gun so that it spins around","template":"Poking [something] so that it spins around","placeholders":["toy gun"]}, +{"id":"62763","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"11322","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"188741","label":"pouring water into the glass","template":"Pouring [something] into [something]","placeholders":["water","the glass"]}, +{"id":"57471","label":"spilling water onto sink counter","template":"Spilling [something] onto [something]","placeholders":["water","sink counter"]}, +{"id":"166383","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"89422","label":"attaching sticker to wall","template":"Attaching [something] to [something]","placeholders":["sticker","wall"]}, +{"id":"121622","label":"moving a wallet across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a wallet"]}, +{"id":"194264","label":"holding a bottle over a box","template":"Holding [something] over [something]","placeholders":["a bottle","a box"]}, +{"id":"4170","label":"putting a necklace next to chewing gums","template":"Putting [something] next to [something]","placeholders":["a necklace","chewing gums"]}, +{"id":"50195","label":"holding mobile over paper cover","template":"Holding [something] over [something]","placeholders":["mobile","paper cover"]}, +{"id":"25481","label":"lifting beer can with crayon on it","template":"Lifting [something] with [something] on it","placeholders":["beer can","crayon"]}, +{"id":"94055","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"166441","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"104450","label":"showing a pen behind a cup","template":"Showing [something] behind [something]","placeholders":["a pen","a cup"]}, +{"id":"87834","label":"putting tag, bangle and clip on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["tag","bangle","clip"]}, +{"id":"210701","label":"turning body spray upside down","template":"Turning [something] upside down","placeholders":["body spray"]}, +{"id":"45676","label":"moving lid away from straw","template":"Moving [something] away from [something]","placeholders":["lid","straw"]}, +{"id":"166916","label":"pretending to be tearing book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["book"]}, +{"id":"44089","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"197905","label":"throwing plastic container in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["plastic container"]}, +{"id":"12566","label":"pretending to put tea infuser into mug","template":"Pretending to put [something] into [something]","placeholders":["tea infuser","mug"]}, +{"id":"164740","label":"moving book and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","phone"]}, +{"id":"213290","label":"dropping a pencilcase onto a bag","template":"Dropping [something] onto [something]","placeholders":["a pencilcase","a bag"]}, +{"id":"155015","label":"opening gate","template":"Opening [something]","placeholders":["gate"]}, +{"id":"212610","label":"pushing packet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["packet"]}, +{"id":"147240","label":"holding rose","template":"Holding [something]","placeholders":["rose"]}, +{"id":"5032","label":"lifting jar with tube on it","template":"Lifting [something] with [something] on it","placeholders":["jar","tube"]}, +{"id":"119661","label":"plugging a usb into a wall adapter","template":"Plugging [something] into [something]","placeholders":["a usb","a wall adapter"]}, +{"id":"108927","label":"taking a pear","template":"Taking [one of many similar things on the table]","placeholders":["a pear"]}, +{"id":"122484","label":"putting plate on a surface","template":"Putting [something] on a surface","placeholders":["plate"]}, +{"id":"27911","label":"pulling two ends of headband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["headband"]}, +{"id":"97961","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"141628","label":"tearing patterned paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["patterned paper"]}, +{"id":"157303","label":"pretending to squeeze glass jar","template":"Pretending to squeeze [something]","placeholders":["glass jar"]}, +{"id":"191283","label":"turning the camera downwards while filming tree","template":"Turning the camera downwards while filming [something]","placeholders":["tree"]}, +{"id":"99415","label":"moving wallete and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wallete","mouse"]}, +{"id":"41671","label":"pretending to sprinkle air onto a wallet","template":"Pretending to sprinkle air onto [something]","placeholders":["a wallet"]}, +{"id":"30183","label":"uncovering marker","template":"Uncovering [something]","placeholders":["marker"]}, +{"id":"124163","label":"pulling two ends of stick so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["stick"]}, +{"id":"139629","label":"bending a measuring tape so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a measuring tape"]}, +{"id":"210900","label":"holding water bottle behind bowl","template":"Holding [something] behind [something]","placeholders":["water bottle","bowl"]}, +{"id":"24493","label":"putting a pen into storage","template":"Putting [something] into [something]","placeholders":["a pen","storage"]}, +{"id":"111625","label":"turning the camera right while filming hair brush","template":"Turning the camera right while filming [something]","placeholders":["hair brush"]}, +{"id":"264","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"172496","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"118742","label":"pretending to put book next to book","template":"Pretending to put [something] next to [something]","placeholders":["book","book"]}, +{"id":"22709","label":"turning stamp ink upside down","template":"Turning [something] upside down","placeholders":["stamp ink"]}, +{"id":"129665","label":"taking a bottle of shampoo","template":"Taking [one of many similar things on the table]","placeholders":["a bottle of shampoo"]}, +{"id":"30668","label":"moving toy closer to horse statue","template":"Moving [something] closer to [something]","placeholders":["toy","horse statue"]}, +{"id":"197004","label":"showing lighter behind nair varnish","template":"Showing [something] behind [something]","placeholders":["lighter","nair varnish"]}, +{"id":"182523","label":"rolling lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon"]}, +{"id":"74414","label":"pulling small sharpener from right to left","template":"Pulling [something] from right to left","placeholders":["small sharpener"]}, +{"id":"119678","label":"taking glass","template":"Taking [one of many similar things on the table]","placeholders":["glass"]}, +{"id":"211547","label":"putting cups","template":"Putting [something similar to other things that are already on the table]","placeholders":["cups"]}, +{"id":"60716","label":"wiping coffee off of the counter","template":"Wiping [something] off of [something]","placeholders":["coffee","the counter"]}, +{"id":"145004","label":"putting phone next to pink book","template":"Putting [something] next to [something]","placeholders":["phone","pink book"]}, +{"id":"209564","label":"showing phone behind box","template":"Showing [something] behind [something]","placeholders":["phone","box"]}, +{"id":"5679","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"96088","label":"putting knife","template":"Putting [something similar to other things that are already on the table]","placeholders":["knife"]}, +{"id":"220131","label":"stuffing pens into pencil case","template":"Stuffing [something] into [something]","placeholders":["pens","pencil case"]}, +{"id":"113076","label":"taking a golf ball","template":"Taking [one of many similar things on the table]","placeholders":["a golf ball"]}, +{"id":"130900","label":"tearing cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["cover"]}, +{"id":"114944","label":"moving a ball closer to a pillow","template":"Moving [something] closer to [something]","placeholders":["a ball","a pillow"]}, +{"id":"193811","label":"putting timepiece and toy on the table","template":"Putting [something] and [something] on the table","placeholders":["timepiece","toy"]}, +{"id":"205565","label":"turning the camera left while filming a bottle","template":"Turning the camera left while filming [something]","placeholders":["a bottle"]}, +{"id":"66765","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"212065","label":"putting eraser behind calculator","template":"Putting [something] behind [something]","placeholders":["eraser","calculator"]}, +{"id":"85329","label":"moving cover up","template":"Moving [something] up","placeholders":["cover"]}, +{"id":"140125","label":"plugging a plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","an outlet"]}, +{"id":"117768","label":"lifting tablet computer with dust mask on it","template":"Lifting [something] with [something] on it","placeholders":["tablet computer","dust mask"]}, +{"id":"190864","label":"moving pump of bottle","template":"Moving [part] of [something]","placeholders":["pump","bottle"]}, +{"id":"35158","label":"dropping biscuit packet in front of water-bottle","template":"Dropping [something] in front of [something]","placeholders":["biscuit packet","water-bottle"]}, +{"id":"80758","label":"moving sun glass towards the camera","template":"Moving [something] towards the camera","placeholders":["sun glass"]}, +{"id":"20616","label":"pushing bottle cap from left to right","template":"Pushing [something] from left to right","placeholders":["bottle cap"]}, +{"id":"25885","label":"pretending to put purple microfiber on a surface","template":"Pretending to put [something] on a surface","placeholders":["purple microfiber"]}, +{"id":"147010","label":"putting a book in front of a bandana","template":"Putting [something] in front of [something]","placeholders":["a book","a bandana"]}, +{"id":"113773","label":"throwing a card","template":"Throwing [something]","placeholders":["a card"]}, +{"id":"65398","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"2422","label":"pretending to put usb cable into laptop","template":"Pretending to put [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"53854","label":"putting a tea bag upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a tea bag"]}, +{"id":"59860","label":"hitting iron plate with toy","template":"Hitting [something] with [something]","placeholders":["iron plate","toy"]}, +{"id":"152010","label":"covering screwdriver with napkin","template":"Covering [something] with [something]","placeholders":["screwdriver","napkin"]}, +{"id":"136681","label":"pretending to put jar into table","template":"Pretending to put [something] into [something]","placeholders":["jar","table"]}, +{"id":"78383","label":"match box colliding with match box and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["match box","match box"]}, +{"id":"111106","label":"pulling a padlock from behind of a wall","template":"Pulling [something] from behind of [something]","placeholders":["a padlock","a wall"]}, +{"id":"142675","label":"pretending to spread air onto bottle","template":"Pretending to spread air onto [something]","placeholders":["bottle"]}, +{"id":"83155","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"135149","label":"picking black pouch up","template":"Picking [something] up","placeholders":["black pouch"]}, +{"id":"149753","label":"attaching usb adaptor to a computer","template":"Attaching [something] to [something]","placeholders":["usb adaptor","a computer"]}, +{"id":"9160","label":"holding tangerine in front of mug","template":"Holding [something] in front of [something]","placeholders":["tangerine","mug"]}, +{"id":"84491","label":"showing matchbox next to jar","template":"Showing [something] next to [something]","placeholders":["matchbox","jar"]}, +{"id":"6281","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"143698","label":"removing white paper, revealing memory card behind","template":"Removing [something], revealing [something] behind","placeholders":["white paper","memory card"]}, +{"id":"23791","label":"covering quarter with paper","template":"Covering [something] with [something]","placeholders":["quarter","paper"]}, +{"id":"188038","label":"pouring wtaer into the cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["wtaer","the cup"]}, +{"id":"125313","label":"wiping water off of a chair","template":"Wiping [something] off of [something]","placeholders":["water","a chair"]}, +{"id":"89241","label":"putting glass similar to","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass similar to"]}, +{"id":"200491","label":"dropping a matchbox in front of a plate","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a plate"]}, +{"id":"58460","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"72143","label":"covering a remote control with a paper sheet","template":"Covering [something] with [something]","placeholders":["a remote control","a paper sheet"]}, +{"id":"40008","label":"throwing candle wax against a wall","template":"Throwing [something] against [something]","placeholders":["candle wax","a wall"]}, +{"id":"121526","label":"moving a jar up","template":"Moving [something] up","placeholders":["a jar"]}, +{"id":"68152","label":"tipping notebook with lipstick over, so lipstick falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["notebook","lipstick","lipstick"]}, +{"id":"157356","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"128158","label":"holding basket","template":"Holding [something]","placeholders":["basket"]}, +{"id":"22931","label":"pretending to take a credit card from a wallet","template":"Pretending to take [something] from [somewhere]","placeholders":["a credit card","a wallet"]}, +{"id":"72106","label":"turning the camera downwards while filming vacuum cleaner","template":"Turning the camera downwards while filming [something]","placeholders":["vacuum cleaner"]}, +{"id":"124410","label":"holding box behind gum","template":"Holding [something] behind [something]","placeholders":["box","gum"]}, +{"id":"208384","label":"pretending to take shaker from table","template":"Pretending to take [something] from [somewhere]","placeholders":["shaker","table"]}, +{"id":"186729","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"133355","label":"showing that mug is empty","template":"Showing that [something] is empty","placeholders":["mug"]}, +{"id":"112372","label":"plugging usb charger into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb charger","computer"]}, +{"id":"210163","label":"putting a banana onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a banana"]}, +{"id":"64265","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"182546","label":"moving bag up","template":"Moving [something] up","placeholders":["bag"]}, +{"id":"134331","label":"picking a glasses up","template":"Picking [something] up","placeholders":["a glasses"]}, +{"id":"122284","label":"showing shampoo behind a toy","template":"Showing [something] behind [something]","placeholders":["shampoo","a toy"]}, +{"id":"37166","label":"squeezing a pair of scissors","template":"Squeezing [something]","placeholders":["a pair of scissors"]}, +{"id":"11239","label":"scooping a rag up with a spatula","template":"Scooping [something] up with [something]","placeholders":["a rag","a spatula"]}, +{"id":"129610","label":"showing fork on top of napkin","template":"Showing [something] on top of [something]","placeholders":["fork","napkin"]}, +{"id":"51929","label":"moving a stone and a stone so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a stone","a stone"]}, +{"id":"118536","label":"putting textbook upright on the table","template":"Putting [something] upright on the table","placeholders":["textbook"]}, +{"id":"14873","label":"dropping a handkerchief behind a box","template":"Dropping [something] behind [something]","placeholders":["a handkerchief","a box"]}, +{"id":"201513","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"166288","label":"failing to put tv remote controller into coffee can because tv remote controller does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["tv remote controller","coffee can","tv remote controller"]}, +{"id":"94994","label":"covering earphones with cloth","template":"Covering [something] with [something]","placeholders":["earphones","cloth"]}, +{"id":"104087","label":"putting plush into bowl","template":"Putting [something] into [something]","placeholders":["plush","bowl"]}, +{"id":"19777","label":"opening a sunglasses case","template":"Opening [something]","placeholders":["a sunglasses case"]}, +{"id":"156867","label":"turning the camera right while filming green toy car","template":"Turning the camera right while filming [something]","placeholders":["green toy car"]}, +{"id":"76379","label":"taking glass","template":"Taking [one of many similar things on the table]","placeholders":["glass"]}, +{"id":"197621","label":"ipad being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["ipad","couch"]}, +{"id":"64099","label":"pushing a computer mouse so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a computer mouse"]}, +{"id":"138529","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"123486","label":"throwing pencil","template":"Throwing [something]","placeholders":["pencil"]}, +{"id":"56440","label":"putting red candle on a surface","template":"Putting [something] on a surface","placeholders":["red candle"]}, +{"id":"80371","label":"tipping a jewellry box with jewellry over, so jewellry falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a jewellry box","jewellry","jewellry"]}, +{"id":"149054","label":"picking black umbrella up","template":"Picking [something] up","placeholders":["black umbrella"]}, +{"id":"145663","label":"dropping a card in front of a matchbox","template":"Dropping [something] in front of [something]","placeholders":["a card","a matchbox"]}, +{"id":"209676","label":"pretending to open a cabinet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cabinet"]}, +{"id":"62631","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"220213","label":"taking coins out of a purse","template":"Taking [something] out of [something]","placeholders":["coins","a purse"]}, +{"id":"105779","label":"twisting tshirt","template":"Twisting [something]","placeholders":["tshirt"]}, +{"id":"217062","label":"holding selfie stick","template":"Holding [something]","placeholders":["selfie stick"]}, +{"id":"110791","label":"opening closet","template":"Opening [something]","placeholders":["closet"]}, +{"id":"158145","label":"folding a towel","template":"Folding [something]","placeholders":["a towel"]}, +{"id":"46597","label":"pushing blue hair clip with white spoon","template":"Pushing [something] with [something]","placeholders":["blue hair clip","white spoon"]}, +{"id":"168864","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"93334","label":"spinning a quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a quarter"]}, +{"id":"159733","label":"uncovering onion","template":"Uncovering [something]","placeholders":["onion"]}, +{"id":"219864","label":"moving a shoe across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a shoe"]}, +{"id":"168320","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"6154","label":"poking ball so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ball"]}, +{"id":"176872","label":"showing a pen to the camera","template":"Showing [something] to the camera","placeholders":["a pen"]}, +{"id":"144441","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"60178","label":"stuffing pants into drawer","template":"Stuffing [something] into [something]","placeholders":["pants","drawer"]}, +{"id":"16862","label":"moving fork and knife closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","knife"]}, +{"id":"22348","label":"stone falling like a rock","template":"[Something] falling like a rock","placeholders":["stone"]}, +{"id":"178801","label":"hitting toilet roll with comb","template":"Hitting [something] with [something]","placeholders":["toilet roll","comb"]}, +{"id":"171615","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"194709","label":"attaching adhesive tape to a cabinet","template":"Attaching [something] to [something]","placeholders":["adhesive tape","a cabinet"]}, +{"id":"111890","label":"pulling two ends of a marker so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a marker"]}, +{"id":"52031","label":"holding pen over box","template":"Holding [something] over [something]","placeholders":["pen","box"]}, +{"id":"194808","label":"pushing a closed umbrella so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a closed umbrella"]}, +{"id":"110362","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"44127","label":"pulling computer mouse from behind of thermos","template":"Pulling [something] from behind of [something]","placeholders":["computer mouse","thermos"]}, +{"id":"122223","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"160677","label":"pretending to put squeezable strawberry jam on a surface","template":"Pretending to put [something] on a surface","placeholders":["squeezable strawberry jam"]}, +{"id":"85081","label":"putting fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork"]}, +{"id":"54792","label":"covering a sock with a cloth","template":"Covering [something] with [something]","placeholders":["a sock","a cloth"]}, +{"id":"114635","label":"covering a pencil with a paper","template":"Covering [something] with [something]","placeholders":["a pencil","a paper"]}, +{"id":"211312","label":"attaching clip magnet to lamp stand joint","template":"Attaching [something] to [something]","placeholders":["clip magnet","lamp stand joint"]}, +{"id":"150668","label":"burying lid in butter","template":"Burying [something] in [something]","placeholders":["lid","butter"]}, +{"id":"52114","label":"pulling scissor from right to left","template":"Pulling [something] from right to left","placeholders":["scissor"]}, +{"id":"17126","label":"stacking three juice boxes","template":"Stacking [number of] [something]","placeholders":["three","juice boxes"]}, +{"id":"138792","label":"picking ball up","template":"Picking [something] up","placeholders":["ball"]}, +{"id":"27110","label":"dropping marker in front of tape dispenser","template":"Dropping [something] in front of [something]","placeholders":["marker","tape dispenser"]}, +{"id":"40045","label":"stuffing book into container","template":"Stuffing [something] into [something]","placeholders":["book","container"]}, +{"id":"215342","label":"poking ball so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["ball"]}, +{"id":"180236","label":"pretending to close candle jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["candle jar"]}, +{"id":"97449","label":"holding mp3 player over hole puncher","template":"Holding [something] over [something]","placeholders":["mp3 player","hole puncher"]}, +{"id":"57767","label":"attaching cap to highlighter","template":"Attaching [something] to [something]","placeholders":["cap","highlighter"]}, +{"id":"215718","label":"putting duster that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["duster"]}, +{"id":"36570","label":"approaching earphone with your camera","template":"Approaching [something] with your camera","placeholders":["earphone"]}, +{"id":"1776","label":"touching (without moving) face of doll masha","template":"Touching (without moving) [part] of [something]","placeholders":["face","doll masha"]}, +{"id":"154204","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"63238","label":"rolling a can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a can"]}, +{"id":"203267","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"97986","label":"attaching an aligator clip to wire","template":"Attaching [something] to [something]","placeholders":["an aligator clip","wire"]}, +{"id":"142395","label":"tearing papper into two pieces","template":"Tearing [something] into two pieces","placeholders":["papper"]}, +{"id":"29861","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"169190","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"183675","label":"pushing cream container off of table","template":"Pushing [something] off of [something]","placeholders":["cream container","table"]}, +{"id":"2452","label":"squeezing a football","template":"Squeezing [something]","placeholders":["a football"]}, +{"id":"82223","label":"moving a bottle closer to a sock","template":"Moving [something] closer to [something]","placeholders":["a bottle","a sock"]}, +{"id":"19579","label":"dropping a handkerchief next to a remote","template":"Dropping [something] next to [something]","placeholders":["a handkerchief","a remote"]}, +{"id":"203505","label":"pretending to be tearing wood","template":"Pretending to be tearing [something that is not tearable]","placeholders":["wood"]}, +{"id":"209230","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"217607","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"62818","label":"plugging nightlight into powerpoint","template":"Plugging [something] into [something]","placeholders":["nightlight","powerpoint"]}, +{"id":"110884","label":"pouring water out of bowl","template":"Pouring [something] out of [something]","placeholders":["water","bowl"]}, +{"id":"199768","label":"putting pot in front of mug","template":"Putting [something] in front of [something]","placeholders":["pot","mug"]}, +{"id":"169820","label":"pushing chocolate box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["chocolate box"]}, +{"id":"218994","label":"dropping a thumb drive next to a water bottle","template":"Dropping [something] next to [something]","placeholders":["a thumb drive","a water bottle"]}, +{"id":"77584","label":"attaching battery cover to tv remote","template":"Attaching [something] to [something]","placeholders":["battery cover","tv remote"]}, +{"id":"201576","label":"dropping a matchbox next to a ball","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a ball"]}, +{"id":"39351","label":"tilting pen with clipboard on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["pen","clipboard"]}, +{"id":"139429","label":"spinning a marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a marker"]}, +{"id":"67147","label":"pulling pink cologne from left to right","template":"Pulling [something] from left to right","placeholders":["pink cologne"]}, +{"id":"34782","label":"piling something up","template":"Piling [something] up","placeholders":["something"]}, +{"id":"173407","label":"covering stapler with cloth","template":"Covering [something] with [something]","placeholders":["stapler","cloth"]}, +{"id":"217714","label":"putting nail polish on the edge of card so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["nail polish","card"]}, +{"id":"196346","label":"showing towel behind belt","template":"Showing [something] behind [something]","placeholders":["towel","belt"]}, +{"id":"33635","label":"pulling an electric pencil sharpener out of a basket","template":"Pulling [something] out of [something]","placeholders":["an electric pencil sharpener","a basket"]}, +{"id":"173387","label":"showing a poster on top of the wall","template":"Showing [something] on top of [something]","placeholders":["a poster","the wall"]}, +{"id":"47667","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"192554","label":"pushing pot so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pot"]}, +{"id":"101885","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"31265","label":"moving a lipstick across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a lipstick"]}, +{"id":"187934","label":"plugging water into mouth","template":"Plugging [something] into [something]","placeholders":["water","mouth"]}, +{"id":"138398","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"106600","label":"bending a paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper"]}, +{"id":"108588","label":"pushing cover off of couch","template":"Pushing [something] off of [something]","placeholders":["cover","couch"]}, +{"id":"184312","label":"picking a ball up","template":"Picking [something] up","placeholders":["a ball"]}, +{"id":"61159","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"130515","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"130654","label":"tilting xbox game with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["xbox game","phone"]}, +{"id":"123884","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"171294","label":"rubber ball colliding with rubber ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["rubber ball","rubber ball"]}, +{"id":"192406","label":"pushing box off of table","template":"Pushing [something] off of [something]","placeholders":["box","table"]}, +{"id":"146953","label":"turning the camera left while filming wireless mouse","template":"Turning the camera left while filming [something]","placeholders":["wireless mouse"]}, +{"id":"123928","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"30666","label":"throwing keys in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["keys"]}, +{"id":"216134","label":"turning the camera upwards while filming step up transformer","template":"Turning the camera upwards while filming [something]","placeholders":["step up transformer"]}, +{"id":"52443","label":"putting a toy onto a cube","template":"Putting [something] onto [something]","placeholders":["a toy","a cube"]}, +{"id":"22439","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"86875","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"112653","label":"turning plastic cup upside down","template":"Turning [something] upside down","placeholders":["plastic cup"]}, +{"id":"55088","label":"putting canister on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["canister"]}, +{"id":"143743","label":"plugging bit into screwdriver but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["bit","screwdriver"]}, +{"id":"82040","label":"showing a glass on top of a calculator","template":"Showing [something] on top of [something]","placeholders":["a glass","a calculator"]}, +{"id":"86731","label":"spilling water behind a trash can","template":"Spilling [something] behind [something]","placeholders":["water","a trash can"]}, +{"id":"106735","label":"moving bottle closer to bottle","template":"Moving [something] closer to [something]","placeholders":["bottle","bottle"]}, +{"id":"121782","label":"tilting black file with green car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","green car"]}, +{"id":"81087","label":"taking tissue from box","template":"Taking [something] from [somewhere]","placeholders":["tissue","box"]}, +{"id":"125899","label":"lifting a surface with glass on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["glass"]}, +{"id":"198296","label":"dropping a pen into a small container","template":"Dropping [something] into [something]","placeholders":["a pen","a small container"]}, +{"id":"197047","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"186343","label":"putting a pyramid on a surface","template":"Putting [something] on a surface","placeholders":["a pyramid"]}, +{"id":"42454","label":"hitting laptop with cord","template":"Hitting [something] with [something]","placeholders":["laptop","cord"]}, +{"id":"121711","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"192045","label":"moving a leaflet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a leaflet"]}, +{"id":"137281","label":"picking phone up","template":"Picking [something] up","placeholders":["phone"]}, +{"id":"135383","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"33300","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"23889","label":"putting pencil next to mug","template":"Putting [something] next to [something]","placeholders":["pencil","mug"]}, +{"id":"131879","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"1810","label":"pulling toy out of box","template":"Pulling [something] out of [something]","placeholders":["toy","box"]}, +{"id":"193967","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"8665","label":"showing that vase is empty","template":"Showing that [something] is empty","placeholders":["vase"]}, +{"id":"2661","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"11432","label":"moving a dvd and a mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a dvd","a mug"]}, +{"id":"174633","label":"pushing plastic bag from left to right","template":"Pushing [something] from left to right","placeholders":["plastic bag"]}, +{"id":"85262","label":"plugging night light into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["night light","outlet"]}, +{"id":"164151","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"179478","label":"stacking 2 shirts","template":"Stacking [number of] [something]","placeholders":["2","shirts"]}, +{"id":"39685","label":"moving radio away from powerbank","template":"Moving [something] away from [something]","placeholders":["radio","powerbank"]}, +{"id":"148928","label":"tilting fidget spinner with coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["fidget spinner","coin"]}, +{"id":"168185","label":"dropping paper onto coaster","template":"Dropping [something] onto [something]","placeholders":["paper","coaster"]}, +{"id":"206597","label":"moving candle closer to candle","template":"Moving [something] closer to [something]","placeholders":["candle","candle"]}, +{"id":"43287","label":"turning the camera upwards while filming pictures","template":"Turning the camera upwards while filming [something]","placeholders":["pictures"]}, +{"id":"67890","label":"holding tweezers behind mouthwash","template":"Holding [something] behind [something]","placeholders":["tweezers","mouthwash"]}, +{"id":"216359","label":"approaching small book with your camera","template":"Approaching [something] with your camera","placeholders":["small book"]}, +{"id":"142135","label":"holding glasses next to flowers","template":"Holding [something] next to [something]","placeholders":["glasses","flowers"]}, +{"id":"124045","label":"pouring water into beaker until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","beaker"]}, +{"id":"52269","label":"tilting clipboard with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["clipboard","pen"]}, +{"id":"103019","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"74115","label":"pushing the fan from left to right","template":"Pushing [something] from left to right","placeholders":["the fan"]}, +{"id":"12660","label":"letting pin bottle roll slant roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pin bottle roll slant"]}, +{"id":"68019","label":"pushing a coaster from left to right","template":"Pushing [something] from left to right","placeholders":["a coaster"]}, +{"id":"63956","label":"pushing white candle from right to left","template":"Pushing [something] from right to left","placeholders":["white candle"]}, +{"id":"77562","label":"moving top of trash can","template":"Moving [part] of [something]","placeholders":["top","trash can"]}, +{"id":"207933","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"98797","label":"hitting stapler with highlighter","template":"Hitting [something] with [something]","placeholders":["stapler","highlighter"]}, +{"id":"42124","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"41029","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"27501","label":"turning the camera upwards while filming stapler","template":"Turning the camera upwards while filming [something]","placeholders":["stapler"]}, +{"id":"128037","label":"putting pens next to a desk organizer","template":"Putting [something] next to [something]","placeholders":["pens","a desk organizer"]}, +{"id":"54968","label":"taking one water bottle","template":"Taking [one of many similar things on the table]","placeholders":["one water bottle"]}, +{"id":"31984","label":"putting keys onto bag","template":"Putting [something] onto [something]","placeholders":["keys","bag"]}, +{"id":"140157","label":"lifting a surface with a mug on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a mug"]}, +{"id":"117056","label":"lifting a surface with paper on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["paper"]}, +{"id":"180859","label":"turning the camera right while filming something","template":"Turning the camera right while filming [something]","placeholders":["something"]}, +{"id":"55735","label":"showing that a plastic cup is empty","template":"Showing that [something] is empty","placeholders":["a plastic cup"]}, +{"id":"47092","label":"showing wallet to the camera","template":"Showing [something] to the camera","placeholders":["wallet"]}, +{"id":"210300","label":"approaching fireplace with your camera","template":"Approaching [something] with your camera","placeholders":["fireplace"]}, +{"id":"144836","label":"turning hair gel bottle upside down","template":"Turning [something] upside down","placeholders":["hair gel bottle"]}, +{"id":"89283","label":"turning the camera right while filming ring","template":"Turning the camera right while filming [something]","placeholders":["ring"]}, +{"id":"215308","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"120532","label":"hitting desk with highlighter","template":"Hitting [something] with [something]","placeholders":["desk","highlighter"]}, +{"id":"74812","label":"pretending to scoop powdered grains up with a spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["powdered grains","a spoon"]}, +{"id":"53011","label":"putting videotape upright on the table","template":"Putting [something] upright on the table","placeholders":["videotape"]}, +{"id":"196594","label":"sprinkling cereal onto paper","template":"Sprinkling [something] onto [something]","placeholders":["cereal","paper"]}, +{"id":"65842","label":"dropping a remote control onto a couch","template":"Dropping [something] onto [something]","placeholders":["a remote control","a couch"]}, +{"id":"45068","label":"moving box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["box"]}, +{"id":"118523","label":"turning snow globe upside down","template":"Turning [something] upside down","placeholders":["snow globe"]}, +{"id":"216605","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"110952","label":"showing bottle behind hole puncher","template":"Showing [something] behind [something]","placeholders":["bottle","hole puncher"]}, +{"id":"139161","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"127456","label":"laying waterbottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["waterbottle"]}, +{"id":"152367","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"139776","label":"putting ridsect on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ridsect"]}, +{"id":"212382","label":"showing that a bucket is empty","template":"Showing that [something] is empty","placeholders":["a bucket"]}, +{"id":"51893","label":"putting flavor juice in front of coffee pot","template":"Putting [something] in front of [something]","placeholders":["flavor juice","coffee pot"]}, +{"id":"192811","label":"pretending to put bread into toaster","template":"Pretending to put [something] into [something]","placeholders":["bread","toaster"]}, +{"id":"167538","label":"dropping a matchbox next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a shoe brush"]}, +{"id":"27059","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"185166","label":"putting mixer grinder behind the vessel","template":"Putting [something] behind [something]","placeholders":["mixer grinder","the vessel"]}, +{"id":"132975","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"149131","label":"moving a piece of paper up","template":"Moving [something] up","placeholders":["a piece of paper"]}, +{"id":"111300","label":"moving a pack of cards and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pack of cards","a box"]}, +{"id":"212418","label":"moving metal weight and metal weight closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["metal weight","metal weight"]}, +{"id":"41497","label":"throwing papers","template":"Throwing [something]","placeholders":["papers"]}, +{"id":"109618","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"11379","label":"putting yellow coloured hair band next to charger adapter","template":"Putting [something] next to [something]","placeholders":["yellow coloured hair band","charger adapter"]}, +{"id":"184526","label":"hitting hand with a ruler","template":"Hitting [something] with [something]","placeholders":["hand","a ruler"]}, +{"id":"53534","label":"showing trashcan behind glass jar","template":"Showing [something] behind [something]","placeholders":["trashcan","glass jar"]}, +{"id":"199913","label":"pretending to pick bottled ponzu sauce up","template":"Pretending to pick [something] up","placeholders":["bottled ponzu sauce"]}, +{"id":"151180","label":"piling pencil boxes up","template":"Piling [something] up","placeholders":["pencil boxes"]}, +{"id":"135875","label":"holding a watch behind christmas tree","template":"Holding [something] behind [something]","placeholders":["a watch","christmas tree"]}, +{"id":"13136","label":"putting headphones and a book on the table","template":"Putting [something] and [something] on the table","placeholders":["headphones","a book"]}, +{"id":"127210","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"7272","label":"lifting up one end of pouch, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pouch"]}, +{"id":"171539","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"29778","label":"trying to bend hardback book so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["hardback book"]}, +{"id":"18550","label":"pushing a deck-chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a deck-chair"]}, +{"id":"69455","label":"pretending to close cigarettes without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["cigarettes"]}, +{"id":"107899","label":"tipping a pill bottle with pills in it over, so pills falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a pill bottle","pills in it","pills"]}, +{"id":"111374","label":"letting decorative apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["decorative apple"]}, +{"id":"86673","label":"opening brown covered note book","template":"Opening [something]","placeholders":["brown covered note book"]}, +{"id":"78582","label":"stacking 3 notebooks","template":"Stacking [number of] [something]","placeholders":["3","notebooks"]}, +{"id":"199813","label":"moving cellphone up","template":"Moving [something] up","placeholders":["cellphone"]}, +{"id":"130887","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"140535","label":"tearing sticky note just a little bit","template":"Tearing [something] just a little bit","placeholders":["sticky note"]}, +{"id":"102389","label":"holding something over something","template":"Holding [something] over [something]","placeholders":["something","something"]}, +{"id":"145107","label":"tipping shampoo bottle over","template":"Tipping [something] over","placeholders":["shampoo bottle"]}, +{"id":"35502","label":"hitting book with ruler","template":"Hitting [something] with [something]","placeholders":["book","ruler"]}, +{"id":"138448","label":"putting purple colour foldable pocket knife into spectacle box","template":"Putting [something] into [something]","placeholders":["purple colour foldable pocket knife","spectacle box"]}, +{"id":"86118","label":"turning box of tissues upside down","template":"Turning [something] upside down","placeholders":["box of tissues"]}, +{"id":"148905","label":"holding card in front of clock","template":"Holding [something] in front of [something]","placeholders":["card","clock"]}, +{"id":"112712","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"75052","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"122706","label":"pretending to spread air onto desk","template":"Pretending to spread air onto [something]","placeholders":["desk"]}, +{"id":"205305","label":"small plates colliding with small plates and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["small plates","small plates"]}, +{"id":"84184","label":"paper ball being deflected from water bottle","template":"[Something] being deflected from [something]","placeholders":["paper ball","water bottle"]}, +{"id":"216434","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"47862","label":"tilting something with something on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["something","something"]}, +{"id":"41931","label":"pretending to squeeze iron weight","template":"Pretending to squeeze [something]","placeholders":["iron weight"]}, +{"id":"78428","label":"moving a mobile up","template":"Moving [something] up","placeholders":["a mobile"]}, +{"id":"2106","label":"showing something next to something","template":"Showing [something] next to [something]","placeholders":["something","something"]}, +{"id":"27222","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"157449","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"57131","label":"dropping earing into glass","template":"Dropping [something] into [something]","placeholders":["earing","glass"]}, +{"id":"207818","label":"digging guitar pick out of rice","template":"Digging [something] out of [something]","placeholders":["guitar pick","rice"]}, +{"id":"169385","label":"stacking seven gooseberry","template":"Stacking [number of] [something]","placeholders":["seven","gooseberry"]}, +{"id":"91758","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"173075","label":"stuffing clothes into a bag","template":"Stuffing [something] into [something]","placeholders":["clothes","a bag"]}, +{"id":"37836","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"27722","label":"lifting stool with laptop on it","template":"Lifting [something] with [something] on it","placeholders":["stool","laptop"]}, +{"id":"140054","label":"moving pebble down","template":"Moving [something] down","placeholders":["pebble"]}, +{"id":"189909","label":"taking one spice out of may","template":"Taking [one of many similar things on the table]","placeholders":["one spice out of may"]}, +{"id":"163313","label":"stacking five slices of bread","template":"Stacking [number of] [something]","placeholders":["five","slices of bread"]}, +{"id":"145466","label":"moving candle up","template":"Moving [something] up","placeholders":["candle"]}, +{"id":"119102","label":"pushing a padlock so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a padlock"]}, +{"id":"128418","label":"pretending to take ball out of bottle","template":"Pretending to take [something] out of [something]","placeholders":["ball","bottle"]}, +{"id":"27166","label":"pretending to put plastic cup behind flower pot","template":"Pretending to put [something] behind [something]","placeholders":["plastic cup","flower pot"]}, +{"id":"73540","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"119573","label":"pushing avocado off of table","template":"Pushing [something] off of [something]","placeholders":["avocado","table"]}, +{"id":"28864","label":"dropping remote onto bed","template":"Dropping [something] onto [something]","placeholders":["remote","bed"]}, +{"id":"28865","label":"stuffing tissue paper into a glass","template":"Stuffing [something] into [something]","placeholders":["tissue paper","a glass"]}, +{"id":"139503","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"55877","label":"taking toothpaste","template":"Taking [one of many similar things on the table]","placeholders":["toothpaste"]}, +{"id":"185235","label":"pretending or failing to wipe scratch off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["scratch","table"]}, +{"id":"125822","label":"lifting bananas up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["bananas"]}, +{"id":"157306","label":"pretending to open closet door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["closet door"]}, +{"id":"184070","label":"putting pen onto cup so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pen","cup"]}, +{"id":"161078","label":"tilting box with lighter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","lighter"]}, +{"id":"72326","label":"plugging a cord into wall plug","template":"Plugging [something] into [something]","placeholders":["a cord","wall plug"]}, +{"id":"168061","label":"putting salt shaker onto matchbox so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["salt shaker","matchbox"]}, +{"id":"169547","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"5741","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"7773","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"134076","label":"a pen colliding with another pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a pen","another pen"]}, +{"id":"2693","label":"hitting a bench with a shoe","template":"Hitting [something] with [something]","placeholders":["a bench","a shoe"]}, +{"id":"181760","label":"poking a stack of boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["boxes"]}, +{"id":"87289","label":"putting battery behind mug","template":"Putting [something] behind [something]","placeholders":["battery","mug"]}, +{"id":"33041","label":"moving lid of box","template":"Moving [part] of [something]","placeholders":["lid","box"]}, +{"id":"19837","label":"putting pills into pill bottle","template":"Putting [something] into [something]","placeholders":["pills","pill bottle"]}, +{"id":"192463","label":"putting ring, bangle and chain on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["ring","bangle","chain"]}, +{"id":"147266","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"71910","label":"pulling two ends of dog leash but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["dog leash"]}, +{"id":"179668","label":"sprinkling pennies onto floor","template":"Sprinkling [something] onto [something]","placeholders":["pennies","floor"]}, +{"id":"23920","label":"putting debit card, rular and marker on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["debit card","rular","marker"]}, +{"id":"219060","label":"taking marker from drawer","template":"Taking [something] from [somewhere]","placeholders":["marker","drawer"]}, +{"id":"76956","label":"showing pendrive behind water bottle","template":"Showing [something] behind [something]","placeholders":["pendrive","water bottle"]}, +{"id":"88992","label":"taking fork out of plate","template":"Taking [something] out of [something]","placeholders":["fork","plate"]}, +{"id":"197774","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"177327","label":"turning the camera upwards while filming rubber","template":"Turning the camera upwards while filming [something]","placeholders":["rubber"]}, +{"id":"16400","label":"pretending to pick the wristwatch up","template":"Pretending to pick [something] up","placeholders":["the wristwatch"]}, +{"id":"165923","label":"pretending to put a flower underneath a book","template":"Pretending to put [something] underneath [something]","placeholders":["a flower","a book"]}, +{"id":"185036","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"156118","label":"poking book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["book"]}, +{"id":"195660","label":"putting 1 plate onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","plate","chair"]}, +{"id":"86475","label":"moving a pencil case down","template":"Moving [something] down","placeholders":["a pencil case"]}, +{"id":"67222","label":"dropping paper next to person","template":"Dropping [something] next to [something]","placeholders":["paper","person"]}, +{"id":"5859","label":"pretending to put a cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cup"]}, +{"id":"98259","label":"wiping coffee spills off of a table","template":"Wiping [something] off of [something]","placeholders":["coffee spills","a table"]}, +{"id":"133158","label":"turning the camera downwards while filming pink toothbrush case","template":"Turning the camera downwards while filming [something]","placeholders":["pink toothbrush case"]}, +{"id":"39317","label":"lifting a surface with clip on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["clip"]}, +{"id":"49789","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"200298","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"65651","label":"holding spoon over stapler","template":"Holding [something] over [something]","placeholders":["spoon","stapler"]}, +{"id":"183843","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"220750","label":"taking pen from glass","template":"Taking [something] from [somewhere]","placeholders":["pen","glass"]}, +{"id":"164087","label":"putting a 9v battery that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a 9v battery"]}, +{"id":"201527","label":"pushing something onto something","template":"Pushing [something] onto [something]","placeholders":["something","something"]}, +{"id":"32942","label":"pulling two ends of hair band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair band"]}, +{"id":"192632","label":"putting a glas on a surface","template":"Putting [something] on a surface","placeholders":["a glas"]}, +{"id":"134848","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"135768","label":"stacking 3 plates","template":"Stacking [number of] [something]","placeholders":["3","plates"]}, +{"id":"123057","label":"wiping water off of the table","template":"Wiping [something] off of [something]","placeholders":["water","the table"]}, +{"id":"114017","label":"stacking 3 coins","template":"Stacking [number of] [something]","placeholders":["3","coins"]}, +{"id":"187074","label":"plugging air freshener into a plug","template":"Plugging [something] into [something]","placeholders":["air freshener","a plug"]}, +{"id":"146477","label":"moving spoon and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","pen"]}, +{"id":"4810","label":"turning a lighter upside down","template":"Turning [something] upside down","placeholders":["a lighter"]}, +{"id":"142577","label":"putting hairband, pendrive and hair clip on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hairband","pendrive","hair clip"]}, +{"id":"76222","label":"pretending to take a used paper out of a shoe","template":"Pretending to take [something] out of [something]","placeholders":["a used paper","a shoe"]}, +{"id":"140189","label":"pushing pillow off of couch","template":"Pushing [something] off of [something]","placeholders":["pillow","couch"]}, +{"id":"81100","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"63533","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"157673","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"48381","label":"moving book and smarthphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["book","smarthphone"]}, +{"id":"113381","label":"plugging cord into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","laptop"]}, +{"id":"107646","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"172580","label":"pretending to be tearing battleship game","template":"Pretending to be tearing [something that is not tearable]","placeholders":["battleship game"]}, +{"id":"134918","label":"pushing a telephone so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a telephone"]}, +{"id":"135373","label":"spinning vitamin box so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["vitamin box"]}, +{"id":"71488","label":"lifting up one end of lifting one end, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["lifting one end"]}, +{"id":"85424","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"138854","label":"moving green colour pen up","template":"Moving [something] up","placeholders":["green colour pen"]}, +{"id":"79564","label":"pretending to open toothpaste without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["toothpaste"]}, +{"id":"43407","label":"tilting box with hand on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","hand"]}, +{"id":"161289","label":"moving crayon closer to doorknob","template":"Moving [something] closer to [something]","placeholders":["crayon","doorknob"]}, +{"id":"90042","label":"a receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a receipt"]}, +{"id":"17223","label":"tipping card over","template":"Tipping [something] over","placeholders":["card"]}, +{"id":"27351","label":"putting pen next to cup","template":"Putting [something] next to [something]","placeholders":["pen","cup"]}, +{"id":"109734","label":"holding vape over ledge","template":"Holding [something] over [something]","placeholders":["vape","ledge"]}, +{"id":"106189","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"152847","label":"pretending to be tearing comb","template":"Pretending to be tearing [something that is not tearable]","placeholders":["comb"]}, +{"id":"98792","label":"dropping a pen into a mug","template":"Dropping [something] into [something]","placeholders":["a pen","a mug"]}, +{"id":"126789","label":"wallet being deflected from desk","template":"[Something] being deflected from [something]","placeholders":["wallet","desk"]}, +{"id":"80714","label":"covering a head with a hat","template":"Covering [something] with [something]","placeholders":["a head","a hat"]}, +{"id":"181273","label":"pretending to open letter without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["letter"]}, +{"id":"190272","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"79372","label":"turning the camera right while filming ball","template":"Turning the camera right while filming [something]","placeholders":["ball"]}, +{"id":"194908","label":"poking sponge so that it falls over","template":"Poking [something] so that it falls over","placeholders":["sponge"]}, +{"id":"175034","label":"putting glass onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["glass"]}, +{"id":"40431","label":"holding a tablet over laptop","template":"Holding [something] over [something]","placeholders":["a tablet","laptop"]}, +{"id":"31762","label":"taking something out of something","template":"Taking [something] out of [something]","placeholders":["something","something"]}, +{"id":"75978","label":"exacto blade falling like a rock","template":"[Something] falling like a rock","placeholders":["exacto blade"]}, +{"id":"176530","label":"pretending to close refridgerator without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["refridgerator"]}, +{"id":"10012","label":"pushing stamp pad from right to left","template":"Pushing [something] from right to left","placeholders":["stamp pad"]}, +{"id":"178800","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"143712","label":"spilling stuff onto a surface","template":"Spilling [something] onto [something]","placeholders":["stuff","a surface"]}, +{"id":"2699","label":"plugging a wire into a telephone","template":"Plugging [something] into [something]","placeholders":["a wire","a telephone"]}, +{"id":"12747","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209388","label":"attaching a coin to a wall","template":"Attaching [something] to [something]","placeholders":["a coin","a wall"]}, +{"id":"135379","label":"unfolding a scarf","template":"Unfolding [something]","placeholders":["a scarf"]}, +{"id":"87993","label":"putting a charger next to a bottle","template":"Putting [something] next to [something]","placeholders":["a charger","a bottle"]}, +{"id":"101927","label":"lifting up one end of a book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a book"]}, +{"id":"202902","label":"dropping a perfume bottle onto the floor","template":"Dropping [something] onto [something]","placeholders":["a perfume bottle","the floor"]}, +{"id":"61094","label":"measuring tape tool falling to the ground falling like a rock","template":"[Something] falling like a rock","placeholders":["measuring tape tool falling to the ground"]}, +{"id":"81108","label":"plugging cord into charger","template":"Plugging [something] into [something]","placeholders":["cord","charger"]}, +{"id":"108041","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"62681","label":"scooping rice up with spoon","template":"Scooping [something] up with [something]","placeholders":["rice","spoon"]}, +{"id":"65280","label":"dropping a box onto a chair","template":"Dropping [something] onto [something]","placeholders":["a box","a chair"]}, +{"id":"119907","label":"pretending to open notebook without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notebook"]}, +{"id":"64118","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"130172","label":"unfolding a paper folder","template":"Unfolding [something]","placeholders":["a paper folder"]}, +{"id":"115799","label":"taking book out of bag","template":"Taking [something] out of [something]","placeholders":["book","bag"]}, +{"id":"48561","label":"dropping a pen into a glass","template":"Dropping [something] into [something]","placeholders":["a pen","a glass"]}, +{"id":"30297","label":"unfolding bed sheet","template":"Unfolding [something]","placeholders":["bed sheet"]}, +{"id":"186219","label":"pulling a napkin from behind of a pillow","template":"Pulling [something] from behind of [something]","placeholders":["a napkin","a pillow"]}, +{"id":"206244","label":"stuffing a cloth into a purse","template":"Stuffing [something] into [something]","placeholders":["a cloth","a purse"]}, +{"id":"1722","label":"lifting up one end of pencil, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pencil"]}, +{"id":"98007","label":"pretending to squeeze soda can","template":"Pretending to squeeze [something]","placeholders":["soda can"]}, +{"id":"106801","label":"covering purse with towel","template":"Covering [something] with [something]","placeholders":["purse","towel"]}, +{"id":"60108","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"102935","label":"pretending to be tearing a remote","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a remote"]}, +{"id":"85679","label":"holding a scissor next to a remote control","template":"Holding [something] next to [something]","placeholders":["a scissor","a remote control"]}, +{"id":"96380","label":"tilting plate with rubber duck on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","rubber duck"]}, +{"id":"178569","label":"poking a computer mouse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a computer mouse"]}, +{"id":"53929","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"135300","label":"showing toilet paper roll to the camera","template":"Showing [something] to the camera","placeholders":["toilet paper roll"]}, +{"id":"108579","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"33760","label":"opening cream tube","template":"Opening [something]","placeholders":["cream tube"]}, +{"id":"57749","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"194422","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"21373","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"30749","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"112789","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"51343","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"4725","label":"dropping a ball onto a shelf","template":"Dropping [something] onto [something]","placeholders":["a ball","a shelf"]}, +{"id":"93493","label":"moving blocks across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["blocks"]}, +{"id":"197070","label":"pretending to close bottle cap without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle cap"]}, +{"id":"187864","label":"holding paper over couch","template":"Holding [something] over [something]","placeholders":["paper","couch"]}, +{"id":"132010","label":"dropping keys into a bowl","template":"Dropping [something] into [something]","placeholders":["keys","a bowl"]}, +{"id":"143904","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"173782","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"163631","label":"showing coin next to container","template":"Showing [something] next to [something]","placeholders":["coin","container"]}, +{"id":"166606","label":"throwing orange sharpner onto a surface","template":"Throwing [something] onto a surface","placeholders":["orange sharpner"]}, +{"id":"206696","label":"pushing mug from right to left","template":"Pushing [something] from right to left","placeholders":["mug"]}, +{"id":"40414","label":"poking lip balm so that it falls over","template":"Poking [something] so that it falls over","placeholders":["lip balm"]}, +{"id":"99901","label":"twisting bottle cap","template":"Twisting [something]","placeholders":["bottle cap"]}, +{"id":"134252","label":"putting buttons and coaster on the table","template":"Putting [something] and [something] on the table","placeholders":["buttons","coaster"]}, +{"id":"75558","label":"spinning crochet needle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["crochet needle"]}, +{"id":"154717","label":"dropping sellotape in front of box","template":"Dropping [something] in front of [something]","placeholders":["sellotape","box"]}, +{"id":"181467","label":"pretending to pick remote up","template":"Pretending to pick [something] up","placeholders":["remote"]}, +{"id":"103938","label":"putting battery onto small tin so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["battery","small tin"]}, +{"id":"49927","label":"pulling two ends of pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["pen"]}, +{"id":"160589","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"33576","label":"lifting duster up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["duster"]}, +{"id":"113764","label":"folding invitation letter","template":"Folding [something]","placeholders":["invitation letter"]}, +{"id":"73936","label":"putting toothbrush on a surface","template":"Putting [something] on a surface","placeholders":["toothbrush"]}, +{"id":"16441","label":"pouring water into sink","template":"Pouring [something] into [something]","placeholders":["water","sink"]}, +{"id":"171973","label":"turning the camera right while filming red booklet","template":"Turning the camera right while filming [something]","placeholders":["red booklet"]}, +{"id":"129489","label":"showing that battery is inside cup","template":"Showing that [something] is inside [something]","placeholders":["battery","cup"]}, +{"id":"92995","label":"hitting hand with rainboot","template":"Hitting [something] with [something]","placeholders":["hand","rainboot"]}, +{"id":"18745","label":"approaching glass with your camera","template":"Approaching [something] with your camera","placeholders":["glass"]}, +{"id":"205758","label":"pushing paper so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["paper"]}, +{"id":"50740","label":"attaching clip to ring","template":"Attaching [something] to [something]","placeholders":["clip","ring"]}, +{"id":"99021","label":"pushing cell phne with scissors","template":"Pushing [something] with [something]","placeholders":["cell phne","scissors"]}, +{"id":"28718","label":"showing jackfruit to the camera","template":"Showing [something] to the camera","placeholders":["jackfruit"]}, +{"id":"62372","label":"pulling two ends of a bandage so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a bandage"]}, +{"id":"118678","label":"wiping water off of a table","template":"Wiping [something] off of [something]","placeholders":["water","a table"]}, +{"id":"173941","label":"hitting a sofa with a cushion","template":"Hitting [something] with [something]","placeholders":["a sofa","a cushion"]}, +{"id":"120687","label":"moving away from vacuum cleaner with your camera","template":"Moving away from [something] with your camera","placeholders":["vacuum cleaner"]}, +{"id":"15449","label":"stacking 4 bibles","template":"Stacking [number of] [something]","placeholders":["4","bibles"]}, +{"id":"54110","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"150054","label":"pushing button so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["button"]}, +{"id":"190897","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"106204","label":"pushing alarm clock so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["alarm clock"]}, +{"id":"174890","label":"tilting diary with cigarette lighter on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["diary","cigarette lighter"]}, +{"id":"110340","label":"pulling two ends of sprayer so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["sprayer"]}, +{"id":"220588","label":"pretending to put remote on a surface","template":"Pretending to put [something] on a surface","placeholders":["remote"]}, +{"id":"92438","label":"pretending to open a bowl without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bowl"]}, +{"id":"188137","label":"putting watch on a surface","template":"Putting [something] on a surface","placeholders":["watch"]}, +{"id":"218823","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"34291","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"21709","label":"pretending to take cutting tool from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cutting tool","table"]}, +{"id":"81009","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"214380","label":"covering a vessel with a thermocol box","template":"Covering [something] with [something]","placeholders":["a vessel","a thermocol box"]}, +{"id":"44325","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"143775","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"202837","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"10509","label":"lifting plastic package up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plastic package"]}, +{"id":"41322","label":"putting glove that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["glove"]}, +{"id":"187679","label":"trying but failing to attach a mobile phone to a plastic bottle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a mobile phone","a plastic bottle"]}, +{"id":"216213","label":"touching (without moving) earth of globe","template":"Touching (without moving) [part] of [something]","placeholders":["earth","globe"]}, +{"id":"182111","label":"taking coins","template":"Taking [one of many similar things on the table]","placeholders":["coins"]}, +{"id":"9965","label":"moving iphone and small pillow away from each other","template":"Moving [something] and [something] away from each other","placeholders":["iphone","small pillow"]}, +{"id":"206214","label":"moving a paperweight away from coffee cup","template":"Moving [something] away from [something]","placeholders":["a paperweight","coffee cup"]}, +{"id":"189956","label":"lifting a notebook with a marker on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a marker"]}, +{"id":"18178","label":"spilling water next to cufflinks","template":"Spilling [something] next to [something]","placeholders":["water","cufflinks"]}, +{"id":"198357","label":"putting remote and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","spoon"]}, +{"id":"111303","label":"pretending to pick cup up","template":"Pretending to pick [something] up","placeholders":["cup"]}, +{"id":"99620","label":"holding remote in front of the calendar","template":"Holding [something] in front of [something]","placeholders":["remote","the calendar"]}, +{"id":"167055","label":"covering watch with tissue","template":"Covering [something] with [something]","placeholders":["watch","tissue"]}, +{"id":"49104","label":"pretending to pick screwdriver up","template":"Pretending to pick [something] up","placeholders":["screwdriver"]}, +{"id":"98603","label":"pulling black remote from right to left","template":"Pulling [something] from right to left","placeholders":["black remote"]}, +{"id":"210853","label":"putting an eraser that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["an eraser"]}, +{"id":"200865","label":"plugging cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","charger"]}, +{"id":"174465","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"156231","label":"moving hanger towards the camera","template":"Moving [something] towards the camera","placeholders":["hanger"]}, +{"id":"202907","label":"closing thermos","template":"Closing [something]","placeholders":["thermos"]}, +{"id":"215928","label":"putting sticky notes, a pen and a candle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sticky notes","a pen","a candle"]}, +{"id":"48378","label":"poking a stack of blocks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["blocks"]}, +{"id":"76873","label":"holding a knife behind a cup","template":"Holding [something] behind [something]","placeholders":["a knife","a cup"]}, +{"id":"6476","label":"hitting water bottle with comb","template":"Hitting [something] with [something]","placeholders":["water bottle","comb"]}, +{"id":"197809","label":"letting battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["battery"]}, +{"id":"108396","label":"holding blue ballpen","template":"Holding [something]","placeholders":["blue ballpen"]}, +{"id":"208141","label":"showing that an ice cream cup is empty","template":"Showing that [something] is empty","placeholders":["an ice cream cup"]}, +{"id":"186556","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"20860","label":"showing a marker on top of wallet","template":"Showing [something] on top of [something]","placeholders":["a marker","wallet"]}, +{"id":"29543","label":"receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["receipt"]}, +{"id":"93762","label":"throwing tooth paste","template":"Throwing [something]","placeholders":["tooth paste"]}, +{"id":"95870","label":"taking a pen out of a cup","template":"Taking [something] out of [something]","placeholders":["a pen","a cup"]}, +{"id":"133202","label":"opening green face powder","template":"Opening [something]","placeholders":["green face powder"]}, +{"id":"170488","label":"pushing alcohol from left to right","template":"Pushing [something] from left to right","placeholders":["alcohol"]}, +{"id":"80274","label":"pushing a weight so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a weight"]}, +{"id":"107377","label":"putting pebble, battery and key on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pebble","battery","key"]}, +{"id":"131764","label":"lifting a ball up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a ball"]}, +{"id":"104082","label":"lifting up one end of a big spoon without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a big spoon"]}, +{"id":"186777","label":"pulling tissue out of box","template":"Pulling [something] out of [something]","placeholders":["tissue","box"]}, +{"id":"149112","label":"moving pencil up","template":"Moving [something] up","placeholders":["pencil"]}, +{"id":"181842","label":"showing that a coffee pot is empty","template":"Showing that [something] is empty","placeholders":["a coffee pot"]}, +{"id":"170518","label":"pretending to turn can upside down","template":"Pretending to turn [something] upside down","placeholders":["can"]}, +{"id":"184391","label":"plugging a charger into power outlet","template":"Plugging [something] into [something]","placeholders":["a charger","power outlet"]}, +{"id":"140004","label":"pretending to put a remote control on a surface","template":"Pretending to put [something] on a surface","placeholders":["a remote control"]}, +{"id":"163597","label":"tipping soda bottle over","template":"Tipping [something] over","placeholders":["soda bottle"]}, +{"id":"208134","label":"moving a cell phone and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cell phone","paper"]}, +{"id":"199968","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191186","label":"tilting plate with onion on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","onion"]}, +{"id":"43510","label":"twisting cell phone charging cable","template":"Twisting [something]","placeholders":["cell phone charging cable"]}, +{"id":"142070","label":"stacking four articles of clothes","template":"Stacking [number of] [something]","placeholders":["four","articles of clothes"]}, +{"id":"142266","label":"moving stapler down","template":"Moving [something] down","placeholders":["stapler"]}, +{"id":"43853","label":"taking pieces of paper","template":"Taking [one of many similar things on the table]","placeholders":["pieces of paper"]}, +{"id":"194028","label":"touching (without moving) edge of plate","template":"Touching (without moving) [part] of [something]","placeholders":["edge","plate"]}, +{"id":"17331","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"164600","label":"turning the camera right while filming cow","template":"Turning the camera right while filming [something]","placeholders":["cow"]}, +{"id":"108453","label":"putting marker into mug","template":"Putting [something] into [something]","placeholders":["marker","mug"]}, +{"id":"70738","label":"card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["card"]}, +{"id":"131701","label":"lifting book with glue bottle on it","template":"Lifting [something] with [something] on it","placeholders":["book","glue bottle"]}, +{"id":"115400","label":"piling things up","template":"Piling [something] up","placeholders":["things"]}, +{"id":"29334","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"219321","label":"bending plastic fork until it breaks","template":"Bending [something] until it breaks","placeholders":["plastic fork"]}, +{"id":"63936","label":"picking a shell up","template":"Picking [something] up","placeholders":["a shell"]}, +{"id":"93029","label":"lifting a chess piece up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a chess piece"]}, +{"id":"213085","label":"lifting tablet with deodorant on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","deodorant"]}, +{"id":"165666","label":"moving wood and binder clip closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wood","binder clip"]}, +{"id":"82682","label":"moving cd player and usb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cd player","usb"]}, +{"id":"53264","label":"taking pen from front of","template":"Taking [something] from [somewhere]","placeholders":["pen","front of"]}, +{"id":"54803","label":"moving medicines across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["medicines"]}, +{"id":"178520","label":"wiping salt off of table","template":"Wiping [something] off of [something]","placeholders":["salt","table"]}, +{"id":"182184","label":"moving rock up","template":"Moving [something] up","placeholders":["rock"]}, +{"id":"5588","label":"twisting lotion","template":"Twisting [something]","placeholders":["lotion"]}, +{"id":"65162","label":"tipping toiletpaper over","template":"Tipping [something] over","placeholders":["toiletpaper"]}, +{"id":"160061","label":"unfolding napkin","template":"Unfolding [something]","placeholders":["napkin"]}, +{"id":"182876","label":"bottle being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["bottle","wall"]}, +{"id":"50140","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"19300","label":"plugging cable into computer","template":"Plugging [something] into [something]","placeholders":["cable","computer"]}, +{"id":"212035","label":"hanky falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["hanky"]}, +{"id":"124893","label":"dropping a coin in front of a lid","template":"Dropping [something] in front of [something]","placeholders":["a coin","a lid"]}, +{"id":"149011","label":"attaching recorder piece to recorder end piece","template":"Attaching [something] to [something]","placeholders":["recorder piece","recorder end piece"]}, +{"id":"145178","label":"squeezing a cotton ball","template":"Squeezing [something]","placeholders":["a cotton ball"]}, +{"id":"171659","label":"hitting a pear with a pen","template":"Hitting [something] with [something]","placeholders":["a pear","a pen"]}, +{"id":"148520","label":"putting a wooden figure upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a wooden figure"]}, +{"id":"124093","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"161519","label":"putting marker upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["marker"]}, +{"id":"142326","label":"pulling two ends of tissue paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["tissue paper"]}, +{"id":"149882","label":"plugging night light into outlet","template":"Plugging [something] into [something]","placeholders":["night light","outlet"]}, +{"id":"202546","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"140448","label":"bending branch until it breaks","template":"Bending [something] until it breaks","placeholders":["branch"]}, +{"id":"67511","label":"moving fan away from controller","template":"Moving [something] away from [something]","placeholders":["fan","controller"]}, +{"id":"95522","label":"putting soft drink pack on a surface","template":"Putting [something] on a surface","placeholders":["soft drink pack"]}, +{"id":"206000","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"134065","label":"uncovering coaster","template":"Uncovering [something]","placeholders":["coaster"]}, +{"id":"195142","label":"moving the bottle and the box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the bottle","the box"]}, +{"id":"41436","label":"moving canister and cup so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["canister","cup"]}, +{"id":"87127","label":"putting something onto something else that so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["something","something else that"]}, +{"id":"122971","label":"book colliding with book and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["book","book"]}, +{"id":"134790","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"179768","label":"hitting box with scale","template":"Hitting [something] with [something]","placeholders":["box","scale"]}, +{"id":"195322","label":"dropping fork onto floor","template":"Dropping [something] onto [something]","placeholders":["fork","floor"]}, +{"id":"201604","label":"uncovering cloth","template":"Uncovering [something]","placeholders":["cloth"]}, +{"id":"148911","label":"putting clip onto cream tin","template":"Putting [something] onto [something]","placeholders":["clip","cream tin"]}, +{"id":"185966","label":"pretending or trying and failing to twist fuel can","template":"Pretending or trying and failing to twist [something]","placeholders":["fuel can"]}, +{"id":"81209","label":"rolling box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["box"]}, +{"id":"185525","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"107958","label":"pushing a toy so it spins","template":"Pushing [something] so it spins","placeholders":["a toy"]}, +{"id":"107619","label":"putting hair clip similar to other hairclips that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["hair clip similar to other hairclips that are already on the table"]}, +{"id":"3102","label":"pretending to be tearing a tin lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a tin lid"]}, +{"id":"2800","label":"putting a charger next to a box","template":"Putting [something] next to [something]","placeholders":["a charger","a box"]}, +{"id":"191839","label":"poking starburst so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["starburst"]}, +{"id":"192618","label":"moving coin up","template":"Moving [something] up","placeholders":["coin"]}, +{"id":"206836","label":"pouring water into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a cup"]}, +{"id":"108013","label":"showing bike to the camera","template":"Showing [something] to the camera","placeholders":["bike"]}, +{"id":"86148","label":"poking a beaker so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a beaker"]}, +{"id":"150124","label":"twisting (wringing) paper towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["paper towel"]}, +{"id":"145271","label":"pretending to take keys out of bag","template":"Pretending to take [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"94730","label":"rolling battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["battery"]}, +{"id":"156862","label":"putting wallet into bag","template":"Putting [something] into [something]","placeholders":["wallet","bag"]}, +{"id":"79825","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"32165","label":"approaching crystal candle holder with your camera","template":"Approaching [something] with your camera","placeholders":["crystal candle holder"]}, +{"id":"148416","label":"pretending to pour water out of the bag, but the squeeze is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","the bag","the squeeze"]}, +{"id":"76786","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"195135","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"80797","label":"pretending to turn a water container upside down","template":"Pretending to turn [something] upside down","placeholders":["a water container"]}, +{"id":"195976","label":"putting ring behind matchbox","template":"Putting [something] behind [something]","placeholders":["ring","matchbox"]}, +{"id":"31800","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"162311","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"174074","label":"turning box upside down","template":"Turning [something] upside down","placeholders":["box"]}, +{"id":"59220","label":"plugging a cable into a adapter","template":"Plugging [something] into [something]","placeholders":["a cable","a adapter"]}, +{"id":"162491","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"116480","label":"pretending to open candle jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["candle jar"]}, +{"id":"85689","label":"moving plastic spoon closer to orange","template":"Moving [something] closer to [something]","placeholders":["plastic spoon","orange"]}, +{"id":"170637","label":"holding remote in front of monitor","template":"Holding [something] in front of [something]","placeholders":["remote","monitor"]}, +{"id":"13161","label":"pushing nail polish so it spins","template":"Pushing [something] so it spins","placeholders":["nail polish"]}, +{"id":"99643","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"25829","label":"picking purse up","template":"Picking [something] up","placeholders":["purse"]}, +{"id":"214590","label":"taking a marker","template":"Taking [one of many similar things on the table]","placeholders":["a marker"]}, +{"id":"148858","label":"lifting a brass casing up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a brass casing"]}, +{"id":"1598","label":"showing a dish towel behind a wooden box","template":"Showing [something] behind [something]","placeholders":["a dish towel","a wooden box"]}, +{"id":"178283","label":"spilling water onto sponge","template":"Spilling [something] onto [something]","placeholders":["water","sponge"]}, +{"id":"73456","label":"turning the camera upwards while filming battery","template":"Turning the camera upwards while filming [something]","placeholders":["battery"]}, +{"id":"187735","label":"moving punching machine closer to magnifying glass","template":"Moving [something] closer to [something]","placeholders":["punching machine","magnifying glass"]}, +{"id":"110509","label":"pushing small book from left to right","template":"Pushing [something] from left to right","placeholders":["small book"]}, +{"id":"86492","label":"taking wheel","template":"Taking [one of many similar things on the table]","placeholders":["wheel"]}, +{"id":"113932","label":"rolling a roll of masking tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a roll of masking tape"]}, +{"id":"177260","label":"putting fruit next to bowl","template":"Putting [something] next to [something]","placeholders":["fruit","bowl"]}, +{"id":"189756","label":"putting a coffee cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coffee cup"]}, +{"id":"71027","label":"pretending to put pen into holder","template":"Pretending to put [something] into [something]","placeholders":["pen","holder"]}, +{"id":"17924","label":"holding a pencil","template":"Holding [something]","placeholders":["a pencil"]}, +{"id":"134519","label":"twisting jar cap","template":"Twisting [something]","placeholders":["jar cap"]}, +{"id":"199520","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"6510","label":"dropping a pack of gum behind a glass jar","template":"Dropping [something] behind [something]","placeholders":["a pack of gum","a glass jar"]}, +{"id":"191146","label":"pretending to spread air onto a newspaper","template":"Pretending to spread air onto [something]","placeholders":["a newspaper"]}, +{"id":"141187","label":"uncovering keys","template":"Uncovering [something]","placeholders":["keys"]}, +{"id":"33492","label":"showing that pan is empty","template":"Showing that [something] is empty","placeholders":["pan"]}, +{"id":"54809","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"200151","label":"taking one vase from three.","template":"Taking [one of many similar things on the table]","placeholders":["one vase from three."]}, +{"id":"138755","label":"throwing blue colour mechanical pencil","template":"Throwing [something]","placeholders":["blue colour mechanical pencil"]}, +{"id":"194702","label":"sprinkling water onto a mirror","template":"Sprinkling [something] onto [something]","placeholders":["water","a mirror"]}, +{"id":"196688","label":"hitting bottle with hand","template":"Hitting [something] with [something]","placeholders":["bottle","hand"]}, +{"id":"6211","label":"pretending to open toothpaste cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["toothpaste cap"]}, +{"id":"62974","label":"showing that a water bottle is empty","template":"Showing that [something] is empty","placeholders":["a water bottle"]}, +{"id":"12545","label":"touching (without moving) knob of door","template":"Touching (without moving) [part] of [something]","placeholders":["knob","door"]}, +{"id":"7753","label":"trying but failing to attach eraser to bottle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["eraser","bottle"]}, +{"id":"217553","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"177229","label":"lifting hair gel with chapstick on it","template":"Lifting [something] with [something] on it","placeholders":["hair gel","chapstick"]}, +{"id":"62934","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"91290","label":"spreading jam onto bread","template":"Spreading [something] onto [something]","placeholders":["jam","bread"]}, +{"id":"197712","label":"showing phone to the camera","template":"Showing [something] to the camera","placeholders":["phone"]}, +{"id":"167506","label":"pretending to pour soda out of can, but can is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["soda","can","can"]}, +{"id":"66663","label":"pushing a tape with a box","template":"Pushing [something] with [something]","placeholders":["a tape","a box"]}, +{"id":"123431","label":"plugging earphone into cell phone","template":"Plugging [something] into [something]","placeholders":["earphone","cell phone"]}, +{"id":"71267","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"15768","label":"moving controller up","template":"Moving [something] up","placeholders":["controller"]}, +{"id":"138406","label":"pretending to be tearing a wallet that is untearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a wallet that is untearable"]}, +{"id":"98329","label":"tearing shirt just a little bit","template":"Tearing [something] just a little bit","placeholders":["shirt"]}, +{"id":"96190","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"95108","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"124583","label":"truck colliding with car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["truck","car"]}, +{"id":"68702","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"120653","label":"closing a zipper on a make up bag","template":"Closing [something]","placeholders":["a zipper on a make up bag"]}, +{"id":"20923","label":"pretending to be tearing plastic lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic lid"]}, +{"id":"51617","label":"pushing matchbox so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["matchbox"]}, +{"id":"2367","label":"showing ball on top of candle","template":"Showing [something] on top of [something]","placeholders":["ball","candle"]}, +{"id":"114501","label":"pushing chair from left to right","template":"Pushing [something] from left to right","placeholders":["chair"]}, +{"id":"124327","label":"turning the camera left while filming teacups","template":"Turning the camera left while filming [something]","placeholders":["teacups"]}, +{"id":"36695","label":"hitting a tin with a nail","template":"Hitting [something] with [something]","placeholders":["a tin","a nail"]}, +{"id":"42709","label":"moving a remote away from two other remotes","template":"Moving [something] away from [something]","placeholders":["a remote","two other remotes"]}, +{"id":"169063","label":"unfolding bill","template":"Unfolding [something]","placeholders":["bill"]}, +{"id":"2917","label":"moving comb and key closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["comb","key"]}, +{"id":"12276","label":"lifting a teddy bear up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a teddy bear"]}, +{"id":"32175","label":"lifting a surface with plate on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["plate"]}, +{"id":"148667","label":"tearing kitchen paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["kitchen paper"]}, +{"id":"36536","label":"moving glass and sock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","sock"]}, +{"id":"112147","label":"pushing orange post-it from left to right","template":"Pushing [something] from left to right","placeholders":["orange post-it"]}, +{"id":"47841","label":"pushing banana so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["banana"]}, +{"id":"93104","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"80240","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"41820","label":"putting knife onto cup","template":"Putting [something] onto [something]","placeholders":["knife","cup"]}, +{"id":"82259","label":"hitting lotion with lipgloss","template":"Hitting [something] with [something]","placeholders":["lotion","lipgloss"]}, +{"id":"23723","label":"trying to bend rolling pin so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["rolling pin"]}, +{"id":"190556","label":"moving key away from cup","template":"Moving [something] away from [something]","placeholders":["key","cup"]}, +{"id":"150956","label":"spinning neodymium magnet so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["neodymium magnet"]}, +{"id":"110225","label":"dropping hair tie next to wallet","template":"Dropping [something] next to [something]","placeholders":["hair tie","wallet"]}, +{"id":"180885","label":"putting two brushes onto book","template":"Putting [number of] [something] onto [something]","placeholders":["two","brushes","book"]}, +{"id":"20909","label":"putting a stapler onto a chair","template":"Putting [something] onto [something]","placeholders":["a stapler","a chair"]}, +{"id":"177531","label":"touching (without moving) handle of microwave","template":"Touching (without moving) [part] of [something]","placeholders":["handle","microwave"]}, +{"id":"123615","label":"pushing steel glass from right to left","template":"Pushing [something] from right to left","placeholders":["steel glass"]}, +{"id":"14811","label":"putting 2 compass onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","compass","blue note"]}, +{"id":"86801","label":"stacking 3 cookies","template":"Stacking [number of] [something]","placeholders":["3","cookies"]}, +{"id":"12718","label":"moving scissors closer to a toothbrush","template":"Moving [something] closer to [something]","placeholders":["scissors","a toothbrush"]}, +{"id":"79970","label":"showing teacup behind coffee cup","template":"Showing [something] behind [something]","placeholders":["teacup","coffee cup"]}, +{"id":"93574","label":"putting a roll of tape on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a roll of tape"]}, +{"id":"21763","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"204590","label":"spinning a fidget spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a fidget spinner"]}, +{"id":"77236","label":"poking a stack of plastic so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["plastic"]}, +{"id":"150056","label":"pushing lotion so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lotion"]}, +{"id":"176212","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"22852","label":"dropping golf ball into bowl","template":"Dropping [something] into [something]","placeholders":["golf ball","bowl"]}, +{"id":"135709","label":"poking dog chew toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["dog chew toy"]}, +{"id":"114673","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"687","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"47212","label":"putting a bottle next to a cup","template":"Putting [something] next to [something]","placeholders":["a bottle","a cup"]}, +{"id":"183590","label":"showing that paper towel is inside glass","template":"Showing that [something] is inside [something]","placeholders":["paper towel","glass"]}, +{"id":"66733","label":"pulling pen out of glass","template":"Pulling [something] out of [something]","placeholders":["pen","glass"]}, +{"id":"78600","label":"letting cup roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["cup"]}, +{"id":"205630","label":"putting fork behind mug","template":"Putting [something] behind [something]","placeholders":["fork","mug"]}, +{"id":"81277","label":"hitting a book with a lighter","template":"Hitting [something] with [something]","placeholders":["a book","a lighter"]}, +{"id":"13268","label":"digging plastic spoon out of salt","template":"Digging [something] out of [something]","placeholders":["plastic spoon","salt"]}, +{"id":"77626","label":"putting candle behind decorative pear","template":"Putting [something] behind [something]","placeholders":["candle","decorative pear"]}, +{"id":"70181","label":"stuffing sweater into purse","template":"Stuffing [something] into [something]","placeholders":["sweater","purse"]}, +{"id":"133167","label":"pushing marker so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["marker"]}, +{"id":"100603","label":"squeezing lotion bottle","template":"Squeezing [something]","placeholders":["lotion bottle"]}, +{"id":"7024","label":"opening magazine","template":"Opening [something]","placeholders":["magazine"]}, +{"id":"203752","label":"poking lighter so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lighter"]}, +{"id":"106643","label":"unfolding unfolding","template":"Unfolding [something]","placeholders":["unfolding"]}, +{"id":"73040","label":"moving door of bath cupboard","template":"Moving [part] of [something]","placeholders":["door","bath cupboard"]}, +{"id":"100836","label":"putting a book into a bookshelf","template":"Putting [something] into [something]","placeholders":["a book","a bookshelf"]}, +{"id":"179575","label":"taking a flashlight from drawer","template":"Taking [something] from [somewhere]","placeholders":["a flashlight","drawer"]}, +{"id":"27733","label":"pushing a telephone with a telephone","template":"Pushing [something] with [something]","placeholders":["a telephone","a telephone"]}, +{"id":"149339","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"113474","label":"pretending to open cup lid without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cup lid"]}, +{"id":"167958","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"177145","label":"lifting calculator with rule on it","template":"Lifting [something] with [something] on it","placeholders":["calculator","rule"]}, +{"id":"142943","label":"plugging usb cable into usb port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","usb port"]}, +{"id":"73813","label":"sprinkling chips onto a high tray tray","template":"Sprinkling [something] onto [something]","placeholders":["chips","a high tray tray"]}, +{"id":"112867","label":"tipping deodorant can over","template":"Tipping [something] over","placeholders":["deodorant can"]}, +{"id":"205777","label":"holding a comb in front of a book","template":"Holding [something] in front of [something]","placeholders":["a comb","a book"]}, +{"id":"66211","label":"putting a stapler and a pen on the table","template":"Putting [something] and [something] on the table","placeholders":["a stapler","a pen"]}, +{"id":"161029","label":"pushing pushing a child's water bottle top across kitchen counter from right to left","template":"Pushing [something] from right to left","placeholders":["pushing a child's water bottle top across kitchen counter"]}, +{"id":"207003","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"93898","label":"pulling purple microfiber from left to right","template":"Pulling [something] from left to right","placeholders":["purple microfiber"]}, +{"id":"139306","label":"squeezing makeup cleanser bottle","template":"Squeezing [something]","placeholders":["makeup cleanser bottle"]}, +{"id":"34875","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"151488","label":"dropping onion onto book","template":"Dropping [something] onto [something]","placeholders":["onion","book"]}, +{"id":"72472","label":"lifting gray blanket up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["gray blanket"]}, +{"id":"65707","label":"pushing basketball so it spins","template":"Pushing [something] so it spins","placeholders":["basketball"]}, +{"id":"118953","label":"holding pen next to ball","template":"Holding [something] next to [something]","placeholders":["pen","ball"]}, +{"id":"96014","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"148651","label":"touching (without moving) \\\"toaster of \\\"grab\\\"plate","template":"Touching (without moving) [part] of [something]","placeholders":["\\\"toaster","\\\"grab\\\"plate"]}, +{"id":"45691","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"186017","label":"trying to bend scissors so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissors"]}, +{"id":"156054","label":"uncovering deodorant","template":"Uncovering [something]","placeholders":["deodorant"]}, +{"id":"61528","label":"tilting iphone with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["iphone","pen"]}, +{"id":"45131","label":"dropping a toothpick into a box","template":"Dropping [something] into [something]","placeholders":["a toothpick","a box"]}, +{"id":"51110","label":"holding book in front of tv","template":"Holding [something] in front of [something]","placeholders":["book","tv"]}, +{"id":"11171","label":"holding phone","template":"Holding [something]","placeholders":["phone"]}, +{"id":"146235","label":"picking sunglasses up","template":"Picking [something] up","placeholders":["sunglasses"]}, +{"id":"118907","label":"bending a business card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a business card"]}, +{"id":"33419","label":"picking pencil up","template":"Picking [something] up","placeholders":["pencil"]}, +{"id":"126106","label":"taking fork","template":"Taking [one of many similar things on the table]","placeholders":["fork"]}, +{"id":"153882","label":"turning mouse upside down","template":"Turning [something] upside down","placeholders":["mouse"]}, +{"id":"125593","label":"poking a bracelet so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bracelet"]}, +{"id":"93788","label":"pretending to turn black play cards upside down","template":"Pretending to turn [something] upside down","placeholders":["black play cards"]}, +{"id":"113745","label":"tomato falling like a rock","template":"[Something] falling like a rock","placeholders":["tomato"]}, +{"id":"219230","label":"trying to bend a cookie sheet so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a cookie sheet"]}, +{"id":"14914","label":"pretending to turn a coffee mug upside down","template":"Pretending to turn [something] upside down","placeholders":["a coffee mug"]}, +{"id":"84626","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"161664","label":"taking pen out of pencil case","template":"Taking [something] out of [something]","placeholders":["pen","pencil case"]}, +{"id":"135971","label":"lifting shirt up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["shirt"]}, +{"id":"198726","label":"moving pen away from cup","template":"Moving [something] away from [something]","placeholders":["pen","cup"]}, +{"id":"128203","label":"tilting book with keys on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","keys"]}, +{"id":"219178","label":"pouring pop into glass","template":"Pouring [something] into [something]","placeholders":["pop","glass"]}, +{"id":"155650","label":"moving cup down","template":"Moving [something] down","placeholders":["cup"]}, +{"id":"62513","label":"moving a phone closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a phone","a mug"]}, +{"id":"200154","label":"crackers colliding with crackers and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["crackers","crackers"]}, +{"id":"204733","label":"putting keyd next to bag","template":"Putting [something] next to [something]","placeholders":["keyd","bag"]}, +{"id":"75060","label":"turning the camera upwards while filming plants","template":"Turning the camera upwards while filming [something]","placeholders":["plants"]}, +{"id":"83521","label":"poking a hole into an apple","template":"Poking a hole into [something soft]","placeholders":["an apple"]}, +{"id":"181338","label":"pad of paper falling like a rock","template":"[Something] falling like a rock","placeholders":["pad of paper"]}, +{"id":"48198","label":"attaching a post it to the door","template":"Attaching [something] to [something]","placeholders":["a post it","the door"]}, +{"id":"4103","label":"moving fluorescent colour pen down","template":"Moving [something] down","placeholders":["fluorescent colour pen"]}, +{"id":"220138","label":"dropping towel next to handbag","template":"Dropping [something] next to [something]","placeholders":["towel","handbag"]}, +{"id":"27026","label":"uncovering key","template":"Uncovering [something]","placeholders":["key"]}, +{"id":"66315","label":"moving envelopes across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["envelopes"]}, +{"id":"133808","label":"putting lid in front of bowl","template":"Putting [something] in front of [something]","placeholders":["lid","bowl"]}, +{"id":"136129","label":"attaching bag to hangar nail","template":"Attaching [something] to [something]","placeholders":["bag","hangar nail"]}, +{"id":"55727","label":"laying a doll on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a doll"]}, +{"id":"140144","label":"holding bracelet next to plastic bag","template":"Holding [something] next to [something]","placeholders":["bracelet","plastic bag"]}, +{"id":"75656","label":"tipping blocks over","template":"Tipping [something] over","placeholders":["blocks"]}, +{"id":"121746","label":"spreading jam onto a biscuit","template":"Spreading [something] onto [something]","placeholders":["jam","a biscuit"]}, +{"id":"45351","label":"showing that water is inside tank","template":"Showing that [something] is inside [something]","placeholders":["water","tank"]}, +{"id":"134175","label":"spinning a toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy"]}, +{"id":"80983","label":"moving nozzle of bottle","template":"Moving [part] of [something]","placeholders":["nozzle","bottle"]}, +{"id":"88024","label":"moving dvd case up","template":"Moving [something] up","placeholders":["dvd case"]}, +{"id":"48770","label":"pretending to pick adapter up","template":"Pretending to pick [something] up","placeholders":["adapter"]}, +{"id":"192481","label":"tape falling like a rock","template":"[Something] falling like a rock","placeholders":["tape"]}, +{"id":"166689","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"138813","label":"uncovering button","template":"Uncovering [something]","placeholders":["button"]}, +{"id":"185457","label":"pushing hat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hat"]}, +{"id":"16781","label":"bottle colliding with bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["bottle","bottle"]}, +{"id":"34363","label":"showing calculator to the camera","template":"Showing [something] to the camera","placeholders":["calculator"]}, +{"id":"133198","label":"poking hammer so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["hammer"]}, +{"id":"79210","label":"approaching lcd monitor with your camera","template":"Approaching [something] with your camera","placeholders":["lcd monitor"]}, +{"id":"72445","label":"tilting a tissue box with plastic cups on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a tissue box","plastic cups"]}, +{"id":"188660","label":"putting a lid onto a can","template":"Putting [something] onto [something]","placeholders":["a lid","a can"]}, +{"id":"5800","label":"unfolding magazine","template":"Unfolding [something]","placeholders":["magazine"]}, +{"id":"6934","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"191385","label":"putting a book onto a water jug so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a book","a water jug"]}, +{"id":"36194","label":"spinning calculator that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["calculator"]}, +{"id":"58147","label":"spinning fan so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fan"]}, +{"id":"219710","label":"throwing tissues in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tissues"]}, +{"id":"29943","label":"pretending or failing to wipe dirt off of crate","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","crate"]}, +{"id":"18516","label":"spinning baseball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["baseball"]}, +{"id":"122222","label":"holding vape in front of stuffed dragon","template":"Holding [something] in front of [something]","placeholders":["vape","stuffed dragon"]}, +{"id":"105450","label":"wiping water off of kitchen slab","template":"Wiping [something] off of [something]","placeholders":["water","kitchen slab"]}, +{"id":"106723","label":"taking pen cap out of pen","template":"Taking [something] out of [something]","placeholders":["pen cap","pen"]}, +{"id":"62401","label":"moving can and glass so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["can","glass"]}, +{"id":"106168","label":"throwing the book against the bed","template":"Throwing [something] against [something]","placeholders":["the book","the bed"]}, +{"id":"179509","label":"pretending to take tube out of box","template":"Pretending to take [something] out of [something]","placeholders":["tube","box"]}, +{"id":"106139","label":"flip flops colliding with flip flops and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["flip flops","flip flops"]}, +{"id":"82528","label":"covering briefcase with shall","template":"Covering [something] with [something]","placeholders":["briefcase","shall"]}, +{"id":"199853","label":"holding shampoo sachet in front of coffee sachet","template":"Holding [something] in front of [something]","placeholders":["shampoo sachet","coffee sachet"]}, +{"id":"98896","label":"moving battery closer to screw","template":"Moving [something] closer to [something]","placeholders":["battery","screw"]}, +{"id":"179671","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78066","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"24005","label":"pulling pen from behind of glass","template":"Pulling [something] from behind of [something]","placeholders":["pen","glass"]}, +{"id":"215515","label":"squeezing oven mitt","template":"Squeezing [something]","placeholders":["oven mitt"]}, +{"id":"63097","label":"pretending to pour nothing out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["nothing","bottle","bottle"]}, +{"id":"140798","label":"covering baby boy with blanket","template":"Covering [something] with [something]","placeholders":["baby boy","blanket"]}, +{"id":"40379","label":"squeezing gummy bear","template":"Squeezing [something]","placeholders":["gummy bear"]}, +{"id":"33183","label":"moving white colour board clip up","template":"Moving [something] up","placeholders":["white colour board clip"]}, +{"id":"141050","label":"pretending to pick can up","template":"Pretending to pick [something] up","placeholders":["can"]}, +{"id":"196955","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"65480","label":"moving box closer to container","template":"Moving [something] closer to [something]","placeholders":["box","container"]}, +{"id":"57711","label":"dropping a pen in front of sunglasses","template":"Dropping [something] in front of [something]","placeholders":["a pen","sunglasses"]}, +{"id":"146389","label":"showing that candy is inside cup","template":"Showing that [something] is inside [something]","placeholders":["candy","cup"]}, +{"id":"122116","label":"taking one marker out of many","template":"Taking [one of many similar things on the table]","placeholders":["one marker out of many"]}, +{"id":"54534","label":"moving a helmet and another helmet so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a helmet","another helmet"]}, +{"id":"150594","label":"pretending to pick sunglasses up","template":"Pretending to pick [something] up","placeholders":["sunglasses"]}, +{"id":"50128","label":"tilting box with hook on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","hook"]}, +{"id":"108114","label":"sprinkling cheese onto rice","template":"Sprinkling [something] onto [something]","placeholders":["cheese","rice"]}, +{"id":"194130","label":"picking bracelet up","template":"Picking [something] up","placeholders":["bracelet"]}, +{"id":"168116","label":"phone colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["phone","bottle"]}, +{"id":"173285","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"138481","label":"tearing a napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["a napkin"]}, +{"id":"30725","label":"squeezing a stuffed toy","template":"Squeezing [something]","placeholders":["a stuffed toy"]}, +{"id":"196748","label":"something colliding with something and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["something","something"]}, +{"id":"78021","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"72660","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"91824","label":"plugging usb into box","template":"Plugging [something] into [something]","placeholders":["usb","box"]}, +{"id":"25707","label":"plugging hands-free into mobile phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["hands-free","mobile phone"]}, +{"id":"156246","label":"removing glass, revealing match box behind","template":"Removing [something], revealing [something] behind","placeholders":["glass","match box"]}, +{"id":"69663","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"63986","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"128840","label":"putting box in front of remote","template":"Putting [something] in front of [something]","placeholders":["box","remote"]}, +{"id":"212021","label":"holding a hammer behind a glass","template":"Holding [something] behind [something]","placeholders":["a hammer","a glass"]}, +{"id":"197325","label":"moving flag up","template":"Moving [something] up","placeholders":["flag"]}, +{"id":"23689","label":"spinning apple so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["apple"]}, +{"id":"64910","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"151345","label":"covering phone with cloth","template":"Covering [something] with [something]","placeholders":["phone","cloth"]}, +{"id":"35356","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"98466","label":"holding cup next to couch","template":"Holding [something] next to [something]","placeholders":["cup","couch"]}, +{"id":"36568","label":"turning the camera left while filming cup","template":"Turning the camera left while filming [something]","placeholders":["cup"]}, +{"id":"200131","label":"spinning paper punching machine that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paper punching machine"]}, +{"id":"133144","label":"turning a mouse upside down","template":"Turning [something] upside down","placeholders":["a mouse"]}, +{"id":"92018","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"219349","label":"poking blocks so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["blocks"]}, +{"id":"218299","label":"twisting green fabric clip","template":"Twisting [something]","placeholders":["green fabric clip"]}, +{"id":"188676","label":"putting spinner in front of bag","template":"Putting [something] in front of [something]","placeholders":["spinner","bag"]}, +{"id":"104101","label":"covering pillow with bed cover","template":"Covering [something] with [something]","placeholders":["pillow","bed cover"]}, +{"id":"139205","label":"putting wallet that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["wallet"]}, +{"id":"125688","label":"holding a shoe","template":"Holding [something]","placeholders":["a shoe"]}, +{"id":"163691","label":"throwing doll onto a surface","template":"Throwing [something] onto a surface","placeholders":["doll"]}, +{"id":"1235","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"174616","label":"removing mug, revealing ruber behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","ruber"]}, +{"id":"144041","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"151836","label":"plugging box into extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["box","extension cord"]}, +{"id":"104255","label":"putting keyboard behind monitor","template":"Putting [something] behind [something]","placeholders":["keyboard","monitor"]}, +{"id":"29075","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"64499","label":"dropping a peg behind a shoe brush","template":"Dropping [something] behind [something]","placeholders":["a peg","a shoe brush"]}, +{"id":"197131","label":"putting bowl, comb and camera on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bowl","comb","camera"]}, +{"id":"151370","label":"pretending to poke a case","template":"Pretending to poke [something]","placeholders":["a case"]}, +{"id":"132454","label":"pretending to put granola bar on a surface","template":"Pretending to put [something] on a surface","placeholders":["granola bar"]}, +{"id":"5938","label":"putting pen behind urn","template":"Putting [something] behind [something]","placeholders":["pen","urn"]}, +{"id":"207607","label":"covering my face with a pillow","template":"Covering [something] with [something]","placeholders":["my face","a pillow"]}, +{"id":"57062","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"68624","label":"turning a tv remote upside down","template":"Turning [something] upside down","placeholders":["a tv remote"]}, +{"id":"218197","label":"dropping a bag in front of table","template":"Dropping [something] in front of [something]","placeholders":["a bag","table"]}, +{"id":"213033","label":"twisting cable","template":"Twisting [something]","placeholders":["cable"]}, +{"id":"108264","label":"attaching pen top to pen bottom","template":"Attaching [something] to [something]","placeholders":["pen top","pen bottom"]}, +{"id":"1439","label":"pulling a doll from behind of a bag","template":"Pulling [something] from behind of [something]","placeholders":["a doll","a bag"]}, +{"id":"12940","label":"tearing playingcard into two pieces","template":"Tearing [something] into two pieces","placeholders":["playingcard"]}, +{"id":"187845","label":"moving eraser away from usb cable","template":"Moving [something] away from [something]","placeholders":["eraser","usb cable"]}, +{"id":"183219","label":"holding shampoo in front of door","template":"Holding [something] in front of [something]","placeholders":["shampoo","door"]}, +{"id":"115374","label":"taking juice bottles","template":"Taking [one of many similar things on the table]","placeholders":["juice bottles"]}, +{"id":"213157","label":"spinning a chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a chair"]}, +{"id":"165346","label":"turning the camera left while filming caution board","template":"Turning the camera left while filming [something]","placeholders":["caution board"]}, +{"id":"28059","label":"bending a pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["a pencil"]}, +{"id":"202117","label":"lifting cd case with nail polish on it","template":"Lifting [something] with [something] on it","placeholders":["cd case","nail polish"]}, +{"id":"31650","label":"tearing papier just a little bit","template":"Tearing [something] just a little bit","placeholders":["papier"]}, +{"id":"214959","label":"moving a phone away from the camera","template":"Moving [something] away from the camera","placeholders":["a phone"]}, +{"id":"195718","label":"showing that pencil is inside cup","template":"Showing that [something] is inside [something]","placeholders":["pencil","cup"]}, +{"id":"61353","label":"laying can on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["can"]}, +{"id":"186060","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"23416","label":"tipping a pill bottle over","template":"Tipping [something] over","placeholders":["a pill bottle"]}, +{"id":"36892","label":"covering eraser with hand","template":"Covering [something] with [something]","placeholders":["eraser","hand"]}, +{"id":"24220","label":"putting sock into shoe","template":"Putting [something] into [something]","placeholders":["sock","shoe"]}, +{"id":"84618","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"43780","label":"putting pen on the edge of card board so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["pen","card board"]}, +{"id":"10412","label":"dropping bottle into buckets","template":"Dropping [something] into [something]","placeholders":["bottle","buckets"]}, +{"id":"75469","label":"stuffing trash into chip bag","template":"Stuffing [something] into [something]","placeholders":["trash","chip bag"]}, +{"id":"177565","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"34550","label":"lifting battery up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["battery"]}, +{"id":"100034","label":"pretending to take book from stack","template":"Pretending to take [something] from [somewhere]","placeholders":["book","stack"]}, +{"id":"37038","label":"attaching attaching paper to fridge","template":"Attaching [something] to [something]","placeholders":["attaching paper","fridge"]}, +{"id":"93510","label":"putting clip onto toy","template":"Putting [something] onto [something]","placeholders":["clip","toy"]}, +{"id":"81157","label":"showing adapter behind textbook","template":"Showing [something] behind [something]","placeholders":["adapter","textbook"]}, +{"id":"163752","label":"taking one of the pens","template":"Taking [one of many similar things on the table]","placeholders":["one of the pens"]}, +{"id":"175024","label":"turning the camera upwards while filming sugar container","template":"Turning the camera upwards while filming [something]","placeholders":["sugar container"]}, +{"id":"177952","label":"rolling crochet hook on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["crochet hook"]}, +{"id":"111230","label":"moving cigarette lighter towards the camera","template":"Moving [something] towards the camera","placeholders":["cigarette lighter"]}, +{"id":"103325","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"91986","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"123709","label":"stuffing notebook into briefcase","template":"Stuffing [something] into [something]","placeholders":["notebook","briefcase"]}, +{"id":"195222","label":"unfolding a plastic bag","template":"Unfolding [something]","placeholders":["a plastic bag"]}, +{"id":"33321","label":"pouring soda into a cup","template":"Pouring [something] into [something]","placeholders":["soda","a cup"]}, +{"id":"62247","label":"throwing metal","template":"Throwing [something]","placeholders":["metal"]}, +{"id":"128511","label":"spilling water next to a sieve","template":"Spilling [something] next to [something]","placeholders":["water","a sieve"]}, +{"id":"198046","label":"tilting medicine box with brush on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["medicine box","brush"]}, +{"id":"141390","label":"holding mini bowl over glass","template":"Holding [something] over [something]","placeholders":["mini bowl","glass"]}, +{"id":"156939","label":"lifting game case with wallet on it","template":"Lifting [something] with [something] on it","placeholders":["game case","wallet"]}, +{"id":"121693","label":"pushing green face powder from right to left","template":"Pushing [something] from right to left","placeholders":["green face powder"]}, +{"id":"90367","label":"covering calculator with newspaper","template":"Covering [something] with [something]","placeholders":["calculator","newspaper"]}, +{"id":"29283","label":"pretending to throw wooden puppet","template":"Pretending to throw [something]","placeholders":["wooden puppet"]}, +{"id":"73616","label":"taking plastic twist tie","template":"Taking [one of many similar things on the table]","placeholders":["plastic twist tie"]}, +{"id":"109608","label":"turning the camera upwards while filming white book marker","template":"Turning the camera upwards while filming [something]","placeholders":["white book marker"]}, +{"id":"119407","label":"pretending to turn a glass upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass"]}, +{"id":"94197","label":"covering something with something","template":"Covering [something] with [something]","placeholders":["something","something"]}, +{"id":"153785","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"195811","label":"uncovering wooden stick","template":"Uncovering [something]","placeholders":["wooden stick"]}, +{"id":"72743","label":"putting a knife next to a mug","template":"Putting [something] next to [something]","placeholders":["a knife","a mug"]}, +{"id":"166406","label":"pretending to put pen into cup","template":"Pretending to put [something] into [something]","placeholders":["pen","cup"]}, +{"id":"73494","label":"showing smart band to the camera","template":"Showing [something] to the camera","placeholders":["smart band"]}, +{"id":"103559","label":"pushing a coin off of laptop","template":"Pushing [something] off of [something]","placeholders":["a coin","laptop"]}, +{"id":"175400","label":"holding bottle next to playstation controller","template":"Holding [something] next to [something]","placeholders":["bottle","playstation controller"]}, +{"id":"142538","label":"holding green bowl","template":"Holding [something]","placeholders":["green bowl"]}, +{"id":"22030","label":"putting a lipstick next to a cat","template":"Putting [something] next to [something]","placeholders":["a lipstick","a cat"]}, +{"id":"166989","label":"turning the camera right while filming car","template":"Turning the camera right while filming [something]","placeholders":["car"]}, +{"id":"133186","label":"pushing black remote from left to right","template":"Pushing [something] from left to right","placeholders":["black remote"]}, +{"id":"142282","label":"spreading cue cards onto book","template":"Spreading [something] onto [something]","placeholders":["cue cards","book"]}, +{"id":"98035","label":"moving cell phone down","template":"Moving [something] down","placeholders":["cell phone"]}, +{"id":"152052","label":"putting a book underneath another book","template":"Putting [something] underneath [something]","placeholders":["a book","another book"]}, +{"id":"68246","label":"turning the camera left while filming usb","template":"Turning the camera left while filming [something]","placeholders":["usb"]}, +{"id":"35833","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"112826","label":"uncovering clip","template":"Uncovering [something]","placeholders":["clip"]}, +{"id":"83592","label":"hitting bottle with fork","template":"Hitting [something] with [something]","placeholders":["bottle","fork"]}, +{"id":"92891","label":"stuffing candy bag into waterbottle","template":"Stuffing [something] into [something]","placeholders":["candy bag","waterbottle"]}, +{"id":"78839","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"171848","label":"taking hook out of bowl","template":"Taking [something] out of [something]","placeholders":["hook","bowl"]}, +{"id":"35227","label":"plugging headphones into a cellphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","a cellphone"]}, +{"id":"11425","label":"squeezing a blanket","template":"Squeezing [something]","placeholders":["a blanket"]}, +{"id":"70911","label":"moving soft drink can towards the camera","template":"Moving [something] towards the camera","placeholders":["soft drink can"]}, +{"id":"147142","label":"turning the camera upwards while filming something","template":"Turning the camera upwards while filming [something]","placeholders":["something"]}, +{"id":"158269","label":"turning the camera upwards while filming tv","template":"Turning the camera upwards while filming [something]","placeholders":["tv"]}, +{"id":"19374","label":"covering scissors with paper","template":"Covering [something] with [something]","placeholders":["scissors","paper"]}, +{"id":"194240","label":"showing scrub pad to the camera","template":"Showing [something] to the camera","placeholders":["scrub pad"]}, +{"id":"110623","label":"piling small bottles up","template":"Piling [something] up","placeholders":["small bottles"]}, +{"id":"102857","label":"moving a block of paper up","template":"Moving [something] up","placeholders":["a block of paper"]}, +{"id":"188928","label":"moving tip of hat","template":"Moving [part] of [something]","placeholders":["tip","hat"]}, +{"id":"819","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"64825","label":"tilting envelope with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["envelope","pen"]}, +{"id":"102026","label":"turning the camera right while filming sign post","template":"Turning the camera right while filming [something]","placeholders":["sign post"]}, +{"id":"105503","label":"opening a beer botle","template":"Opening [something]","placeholders":["a beer botle"]}, +{"id":"53648","label":"lifting bottle with paper on it","template":"Lifting [something] with [something] on it","placeholders":["bottle","paper"]}, +{"id":"135139","label":"holding ball over head","template":"Holding [something] over [something]","placeholders":["ball","head"]}, +{"id":"168163","label":"taking sharpener out of tumbler","template":"Taking [something] out of [something]","placeholders":["sharpener","tumbler"]}, +{"id":"159040","label":"putting phone underneath camera","template":"Putting [something] underneath [something]","placeholders":["phone","camera"]}, +{"id":"135318","label":"pretending or trying and failing to twist a top on a bottle of water.","template":"Pretending or trying and failing to twist [something]","placeholders":["a top on a bottle of water."]}, +{"id":"14279","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"10559","label":"putting orange colour bottle cap onto black wallet","template":"Putting [something] onto [something]","placeholders":["orange colour bottle cap","black wallet"]}, +{"id":"5139","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"128531","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"100663","label":"pretending to put mug on a surface","template":"Pretending to put [something] on a surface","placeholders":["mug"]}, +{"id":"82203","label":"unfolding floormat","template":"Unfolding [something]","placeholders":["floormat"]}, +{"id":"211304","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"74057","label":"pushing glass onto astray","template":"Pushing [something] onto [something]","placeholders":["glass","astray"]}, +{"id":"21964","label":"pretending to put a coin behind a glue bottle","template":"Pretending to put [something] behind [something]","placeholders":["a coin","a glue bottle"]}, +{"id":"164646","label":"holding tape","template":"Holding [something]","placeholders":["tape"]}, +{"id":"91308","label":"turning the camera left while filming monitor","template":"Turning the camera left while filming [something]","placeholders":["monitor"]}, +{"id":"148122","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"138918","label":"putting comb upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["comb"]}, +{"id":"169802","label":"pushing a coin with a box","template":"Pushing [something] with [something]","placeholders":["a coin","a box"]}, +{"id":"70601","label":"covering spoon with paper towel","template":"Covering [something] with [something]","placeholders":["spoon","paper towel"]}, +{"id":"39294","label":"showing pen on top of box","template":"Showing [something] on top of [something]","placeholders":["pen","box"]}, +{"id":"172977","label":"pulling wristwatch from left to right","template":"Pulling [something] from left to right","placeholders":["wristwatch"]}, +{"id":"93164","label":"pulling jug from right to left","template":"Pulling [something] from right to left","placeholders":["jug"]}, +{"id":"113630","label":"attaching charger to socket","template":"Attaching [something] to [something]","placeholders":["charger","socket"]}, +{"id":"22830","label":"clip colliding with clip and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["clip","clip"]}, +{"id":"198107","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"95937","label":"dropping potato into bowl","template":"Dropping [something] into [something]","placeholders":["potato","bowl"]}, +{"id":"184073","label":"holding hair clip over box","template":"Holding [something] over [something]","placeholders":["hair clip","box"]}, +{"id":"134098","label":"moving pen and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","marker"]}, +{"id":"20539","label":"poking a hole into clay","template":"Poking a hole into [some substance]","placeholders":["clay"]}, +{"id":"99508","label":"opening refrigerator","template":"Opening [something]","placeholders":["refrigerator"]}, +{"id":"192846","label":"showing that coffee mug is empty","template":"Showing that [something] is empty","placeholders":["coffee mug"]}, +{"id":"219464","label":"taking diaper","template":"Taking [one of many similar things on the table]","placeholders":["diaper"]}, +{"id":"76090","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"164364","label":"ball falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["ball"]}, +{"id":"103279","label":"dropping rubix cube into a pillow","template":"Dropping [something] into [something]","placeholders":["rubix cube","a pillow"]}, +{"id":"89735","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"58444","label":"putting coin on a surface","template":"Putting [something] on a surface","placeholders":["coin"]}, +{"id":"203444","label":"holding a fidget spinner","template":"Holding [something]","placeholders":["a fidget spinner"]}, +{"id":"102969","label":"letting chopstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["chopstick"]}, +{"id":"167575","label":"moving spoon and stapler closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["spoon","stapler"]}, +{"id":"209628","label":"pushing remote so it spins","template":"Pushing [something] so it spins","placeholders":["remote"]}, +{"id":"196559","label":"putting phone onto charger","template":"Putting [something] onto [something]","placeholders":["phone","charger"]}, +{"id":"124156","label":"putting button on a surface","template":"Putting [something] on a surface","placeholders":["button"]}, +{"id":"195014","label":"holding book in front of calculator","template":"Holding [something] in front of [something]","placeholders":["book","calculator"]}, +{"id":"107013","label":"turning a plastic pot upside down","template":"Turning [something] upside down","placeholders":["a plastic pot"]}, +{"id":"119550","label":"tipping block tower over","template":"Tipping [something] over","placeholders":["block tower"]}, +{"id":"14157","label":"pretending to pick yellow chalk up","template":"Pretending to pick [something] up","placeholders":["yellow chalk"]}, +{"id":"128360","label":"pretending to put pebble underneath glass","template":"Pretending to put [something] underneath [something]","placeholders":["pebble","glass"]}, +{"id":"142117","label":"showing shoe behind flower","template":"Showing [something] behind [something]","placeholders":["shoe","flower"]}, +{"id":"77839","label":"dropping tape next to scissors","template":"Dropping [something] next to [something]","placeholders":["tape","scissors"]}, +{"id":"38565","label":"plugging an electrical cord into an electrical extension","template":"Plugging [something] into [something]","placeholders":["an electrical cord","an electrical extension"]}, +{"id":"23645","label":"throwing scissor","template":"Throwing [something]","placeholders":["scissor"]}, +{"id":"171368","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"183380","label":"putting chopping board on a surface","template":"Putting [something] on a surface","placeholders":["chopping board"]}, +{"id":"45604","label":"turning the camera left while filming car","template":"Turning the camera left while filming [something]","placeholders":["car"]}, +{"id":"131253","label":"showing ladies watches to the camera","template":"Showing [something] to the camera","placeholders":["ladies watches"]}, +{"id":"83151","label":"moving motorbike away from the camera","template":"Moving [something] away from the camera","placeholders":["motorbike"]}, +{"id":"200269","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"2060","label":"pushing punching machine so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["punching machine"]}, +{"id":"123974","label":"taking marker pen out of spectacle box","template":"Taking [something] out of [something]","placeholders":["marker pen","spectacle box"]}, +{"id":"42154","label":"plugging rca plug into laptop","template":"Plugging [something] into [something]","placeholders":["rca plug","laptop"]}, +{"id":"197136","label":"taking something out of something","template":"Taking [something] out of [something]","placeholders":["something","something"]}, +{"id":"112948","label":"turning the camera left while filming balloons","template":"Turning the camera left while filming [something]","placeholders":["balloons"]}, +{"id":"68038","label":"plugging dryer into plug","template":"Plugging [something] into [something]","placeholders":["dryer","plug"]}, +{"id":"191061","label":"poking a stack of jar without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["jar"]}, +{"id":"122623","label":"pushing coin from left to right","template":"Pushing [something] from left to right","placeholders":["coin"]}, +{"id":"9019","label":"unfolding duppatta","template":"Unfolding [something]","placeholders":["duppatta"]}, +{"id":"57803","label":"pouring juice into a cup","template":"Pouring [something] into [something]","placeholders":["juice","a cup"]}, +{"id":"187925","label":"pretending or failing to wipe eraser off of notebook","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["eraser","notebook"]}, +{"id":"163254","label":"game piece falling like a rock","template":"[Something] falling like a rock","placeholders":["game piece"]}, +{"id":"160769","label":"putting a comb into glass mug","template":"Putting [something] into [something]","placeholders":["a comb","glass mug"]}, +{"id":"116270","label":"pushing controller from left to right","template":"Pushing [something] from left to right","placeholders":["controller"]}, +{"id":"39499","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"1323","label":"putting coins into the bag","template":"Putting [something] into [something]","placeholders":["coins","the bag"]}, +{"id":"203154","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"181563","label":"letting glass roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glass"]}, +{"id":"56676","label":"covering garlic with cloth","template":"Covering [something] with [something]","placeholders":["garlic","cloth"]}, +{"id":"134550","label":"dropping handkerchief next to pillow","template":"Dropping [something] next to [something]","placeholders":["handkerchief","pillow"]}, +{"id":"206211","label":"a sticky note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sticky note"]}, +{"id":"64592","label":"taking matchbox","template":"Taking [one of many similar things on the table]","placeholders":["matchbox"]}, +{"id":"203000","label":"moving fork and fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","fork"]}, +{"id":"110413","label":"pushing paper off of a desk","template":"Pushing [something] off of [something]","placeholders":["paper","a desk"]}, +{"id":"218711","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"122017","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"56644","label":"showing that candy is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["candy","a cup"]}, +{"id":"151114","label":"putting doll upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["doll"]}, +{"id":"188499","label":"lifting pillow up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pillow"]}, +{"id":"179308","label":"holding tablet in front of laptop","template":"Holding [something] in front of [something]","placeholders":["tablet","laptop"]}, +{"id":"53236","label":"pretending to be tearing jacket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["jacket"]}, +{"id":"35212","label":"pretending to put dvd case on a surface","template":"Pretending to put [something] on a surface","placeholders":["dvd case"]}, +{"id":"3040","label":"moving salt and pepper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["salt","pepper"]}, +{"id":"16849","label":"moving apple and apple away from each other","template":"Moving [something] and [something] away from each other","placeholders":["apple","apple"]}, +{"id":"82227","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"68860","label":"pushing mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mouse"]}, +{"id":"192836","label":"tilting brown note with magnifying glass on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["brown note","magnifying glass"]}, +{"id":"28039","label":"lifting up one end of shoe, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["shoe"]}, +{"id":"167531","label":"pretending to poke a water bottle","template":"Pretending to poke [something]","placeholders":["a water bottle"]}, +{"id":"171255","label":"uncovering glass","template":"Uncovering [something]","placeholders":["glass"]}, +{"id":"104855","label":"opening plastic container","template":"Opening [something]","placeholders":["plastic container"]}, +{"id":"52542","label":"pushing water bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["water bottle"]}, +{"id":"62283","label":"moving usb flash drive away from cover","template":"Moving [something] away from [something]","placeholders":["usb flash drive","cover"]}, +{"id":"4274","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"8359","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"166007","label":"pretending to open jewellry box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jewellry box"]}, +{"id":"131162","label":"pushing a knife so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a knife"]}, +{"id":"100142","label":"putting a book upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a book"]}, +{"id":"7192","label":"removing a can, revealing an eraser behind","template":"Removing [something], revealing [something] behind","placeholders":["a can","an eraser"]}, +{"id":"218112","label":"turning salsa upside down","template":"Turning [something] upside down","placeholders":["salsa"]}, +{"id":"96603","label":"pushing striker coin with battery","template":"Pushing [something] with [something]","placeholders":["striker coin","battery"]}, +{"id":"121989","label":"turning the camera upwards while filming hair comb","template":"Turning the camera upwards while filming [something]","placeholders":["hair comb"]}, +{"id":"116035","label":"pulling duster from right to left","template":"Pulling [something] from right to left","placeholders":["duster"]}, +{"id":"202500","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"53667","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"209202","label":"spilling water next to a wallet","template":"Spilling [something] next to [something]","placeholders":["water","a wallet"]}, +{"id":"186295","label":"putting tape onto box surface","template":"Putting [something] onto [something]","placeholders":["tape","box surface"]}, +{"id":"104951","label":"pushing a tissue box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a tissue box"]}, +{"id":"187014","label":"spinning hair brush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["hair brush"]}, +{"id":"115156","label":"spinning spinning on the ground so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning on the ground"]}, +{"id":"201999","label":"pretending to put book behind bottle","template":"Pretending to put [something] behind [something]","placeholders":["book","bottle"]}, +{"id":"69527","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"43664","label":"dropping toothbrush into container","template":"Dropping [something] into [something]","placeholders":["toothbrush","container"]}, +{"id":"2350","label":"pushing lighter off of bottle","template":"Pushing [something] off of [something]","placeholders":["lighter","bottle"]}, +{"id":"129803","label":"holding a pen behind lcd of laptop","template":"Holding [something] behind [something]","placeholders":["a pen","lcd of laptop"]}, +{"id":"58966","label":"holding a hairbrush next to a cell phone","template":"Holding [something] next to [something]","placeholders":["a hairbrush","a cell phone"]}, +{"id":"160637","label":"pretending to turn mug upside down","template":"Pretending to turn [something] upside down","placeholders":["mug"]}, +{"id":"42850","label":"moving sandal away from the camera","template":"Moving [something] away from the camera","placeholders":["sandal"]}, +{"id":"42129","label":"dropping candy into box","template":"Dropping [something] into [something]","placeholders":["candy","box"]}, +{"id":"180465","label":"throwing tissues onto a surface","template":"Throwing [something] onto a surface","placeholders":["tissues"]}, +{"id":"69469","label":"moving duster away from punching machine","template":"Moving [something] away from [something]","placeholders":["duster","punching machine"]}, +{"id":"25945","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"210843","label":"pushing mouse so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["mouse"]}, +{"id":"32915","label":"moving pebble closer to magnifying glass","template":"Moving [something] closer to [something]","placeholders":["pebble","magnifying glass"]}, +{"id":"185283","label":"unfolding a rag","template":"Unfolding [something]","placeholders":["a rag"]}, +{"id":"90775","label":"pushing a remote so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a remote"]}, +{"id":"55758","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"22456","label":"holding mouse behind wallet","template":"Holding [something] behind [something]","placeholders":["mouse","wallet"]}, +{"id":"33231","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"173550","label":"turning a coffee mug upside down","template":"Turning [something] upside down","placeholders":["a coffee mug"]}, +{"id":"60417","label":"dropping box into trash can","template":"Dropping [something] into [something]","placeholders":["box","trash can"]}, +{"id":"5873","label":"uncovering dog","template":"Uncovering [something]","placeholders":["dog"]}, +{"id":"40878","label":"pretending to turn granola bar upside down","template":"Pretending to turn [something] upside down","placeholders":["granola bar"]}, +{"id":"3030","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"161085","label":"putting toy next to spectical box","template":"Putting [something] next to [something]","placeholders":["toy","spectical box"]}, +{"id":"92502","label":"moving bolt up","template":"Moving [something] up","placeholders":["bolt"]}, +{"id":"47144","label":"turning the camera right while filming sandal","template":"Turning the camera right while filming [something]","placeholders":["sandal"]}, +{"id":"124734","label":"moving paper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["paper"]}, +{"id":"198738","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"87449","label":"putting 2 pens onto a cup","template":"Putting [number of] [something] onto [something]","placeholders":["2","pens","a cup"]}, +{"id":"122853","label":"putting fan next to sandals","template":"Putting [something] next to [something]","placeholders":["fan","sandals"]}, +{"id":"162638","label":"covering a paperclip with a piece of paper","template":"Covering [something] with [something]","placeholders":["a paperclip","a piece of paper"]}, +{"id":"185520","label":"uncovering a box of pins","template":"Uncovering [something]","placeholders":["a box of pins"]}, +{"id":"195845","label":"pulling two ends of a spectacles but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a spectacles"]}, +{"id":"124894","label":"moving coin down","template":"Moving [something] down","placeholders":["coin"]}, +{"id":"23507","label":"dropping a tape onto a plank of wood","template":"Dropping [something] onto [something]","placeholders":["a tape","a plank of wood"]}, +{"id":"38381","label":"taking vitamin out of bottle","template":"Taking [something] out of [something]","placeholders":["vitamin","bottle"]}, +{"id":"171915","label":"showing a cigarette lighter behind a coffee can","template":"Showing [something] behind [something]","placeholders":["a cigarette lighter","a coffee can"]}, +{"id":"19416","label":"pushing bottle cap with remote","template":"Pushing [something] with [something]","placeholders":["bottle cap","remote"]}, +{"id":"199390","label":"moving away from chair with your camera","template":"Moving away from [something] with your camera","placeholders":["chair"]}, +{"id":"22922","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"149825","label":"pretending to sprinkle air onto photo-frame","template":"Pretending to sprinkle air onto [something]","placeholders":["photo-frame"]}, +{"id":"129649","label":"double-sided adhesive tape falling like a rock","template":"[Something] falling like a rock","placeholders":["double-sided adhesive tape"]}, +{"id":"172947","label":"lifting suitcase up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["suitcase"]}, +{"id":"57246","label":"moving bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bottle"]}, +{"id":"64851","label":"putting marking pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["marking pen"]}, +{"id":"99247","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"81466","label":"holding a book behind a cup","template":"Holding [something] behind [something]","placeholders":["a book","a cup"]}, +{"id":"120743","label":"lifting up one end of a rag, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a rag"]}, +{"id":"3215","label":"trying to pour water into bucket, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bucket"]}, +{"id":"88615","label":"putting 2 hair clips onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair clips","blue note"]}, +{"id":"80446","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"178983","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"65502","label":"throwing wooden puppet","template":"Throwing [something]","placeholders":["wooden puppet"]}, +{"id":"57027","label":"pretending to squeeze weight","template":"Pretending to squeeze [something]","placeholders":["weight"]}, +{"id":"82624","label":"orange falling like a rock","template":"[Something] falling like a rock","placeholders":["orange"]}, +{"id":"178224","label":"moving a cup and a cup so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a cup","a cup"]}, +{"id":"111919","label":"holding a cup next to pillows","template":"Holding [something] next to [something]","placeholders":["a cup","pillows"]}, +{"id":"151541","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"206958","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"118177","label":"poking cover so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cover"]}, +{"id":"128234","label":"air hockey puck colliding with air hockey puck and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["air hockey puck","air hockey puck"]}, +{"id":"169776","label":"pulling mobile from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["mobile","laptop"]}, +{"id":"34792","label":"pulling towel from left to right","template":"Pulling [something] from left to right","placeholders":["towel"]}, +{"id":"187898","label":"pretending to put black remote on a surface","template":"Pretending to put [something] on a surface","placeholders":["black remote"]}, +{"id":"60452","label":"holding bottle over chair","template":"Holding [something] over [something]","placeholders":["bottle","chair"]}, +{"id":"104869","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"22657","label":"poking padlock so that it falls over","template":"Poking [something] so that it falls over","placeholders":["padlock"]}, +{"id":"76721","label":"taking fruit out of bowl","template":"Taking [something] out of [something]","placeholders":["fruit","bowl"]}, +{"id":"72455","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"107145","label":"pretending to put glasses on a surface","template":"Pretending to put [something] on a surface","placeholders":["glasses"]}, +{"id":"171474","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"32433","label":"pretending or failing to wipe ink off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","whiteboard"]}, +{"id":"118879","label":"putting cream on a surface","template":"Putting [something] on a surface","placeholders":["cream"]}, +{"id":"133862","label":"turning the camera upwards while filming small green ball","template":"Turning the camera upwards while filming [something]","placeholders":["small green ball"]}, +{"id":"158651","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"71176","label":"pulling zipper from right to left","template":"Pulling [something] from right to left","placeholders":["zipper"]}, +{"id":"192597","label":"putting cups on a table","template":"Putting [something similar to other things that are already on the table]","placeholders":["cups on a table"]}, +{"id":"94355","label":"putting a deodorant","template":"Putting [something similar to other things that are already on the table]","placeholders":["a deodorant"]}, +{"id":"27474","label":"putting a pen drive, a lipstick and a lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pen drive","a lipstick","a lighter"]}, +{"id":"129458","label":"pulling a towel from behind of napkin holder","template":"Pulling [something] from behind of [something]","placeholders":["a towel","napkin holder"]}, +{"id":"199113","label":"putting plastic cap into glass","template":"Putting [something] into [something]","placeholders":["plastic cap","glass"]}, +{"id":"86299","label":"digging plastic round out of sand","template":"Digging [something] out of [something]","placeholders":["plastic round","sand"]}, +{"id":"143727","label":"moving phone and xbox game away from each other","template":"Moving [something] and [something] away from each other","placeholders":["phone","xbox game"]}, +{"id":"178201","label":"pushing a shoe onto corner","template":"Pushing [something] onto [something]","placeholders":["a shoe","corner"]}, +{"id":"72009","label":"taking fork","template":"Taking [one of many similar things on the table]","placeholders":["fork"]}, +{"id":"94463","label":"twisting newspaper","template":"Twisting [something]","placeholders":["newspaper"]}, +{"id":"195323","label":"poking a deodorant bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a deodorant bottle"]}, +{"id":"55493","label":"approaching prown fishes with your camera","template":"Approaching [something] with your camera","placeholders":["prown fishes"]}, +{"id":"137269","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"92000","label":"covering an apple with a handkerchief","template":"Covering [something] with [something]","placeholders":["an apple","a handkerchief"]}, +{"id":"206871","label":"trying but failing to attach charger to socket because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["charger","socket"]}, +{"id":"52540","label":"putting wallet on the edge of desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["wallet","desk"]}, +{"id":"44356","label":"holding a padlock over a box","template":"Holding [something] over [something]","placeholders":["a padlock","a box"]}, +{"id":"152971","label":"letting a kid filled tire roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a kid filled tire"]}, +{"id":"124199","label":"pulling drawer out of carousel box","template":"Pulling [something] out of [something]","placeholders":["drawer","carousel box"]}, +{"id":"110169","label":"putting a bottle on a surface","template":"Putting [something] on a surface","placeholders":["a bottle"]}, +{"id":"123936","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"151776","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"172486","label":"pretending to turn a bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["a bowl"]}, +{"id":"207618","label":"tearing sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet"]}, +{"id":"132859","label":"pretending to take a towel from hanger","template":"Pretending to take [something] from [somewhere]","placeholders":["a towel","hanger"]}, +{"id":"88272","label":"spreading white kerchief onto cutting plier","template":"Spreading [something] onto [something]","placeholders":["white kerchief","cutting plier"]}, +{"id":"60718","label":"moving perfume bottle and wax jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["perfume bottle","wax jar"]}, +{"id":"95562","label":"moving away from car with your camera","template":"Moving away from [something] with your camera","placeholders":["car"]}, +{"id":"152676","label":"turning pan upside down","template":"Turning [something] upside down","placeholders":["pan"]}, +{"id":"153468","label":"picking remote control up","template":"Picking [something] up","placeholders":["remote control"]}, +{"id":"173384","label":"moving away from tea box with your camera","template":"Moving away from [something] with your camera","placeholders":["tea box"]}, +{"id":"29995","label":"sprinkling sugar onto a book","template":"Sprinkling [something] onto [something]","placeholders":["sugar","a book"]}, +{"id":"66226","label":"lifting a box with an other box on it","template":"Lifting [something] with [something] on it","placeholders":["a box","an other box"]}, +{"id":"44131","label":"tilting deodorant can with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["deodorant can","pen"]}, +{"id":"159222","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"83954","label":"trying but failing to attach magnet to stove because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magnet","stove"]}, +{"id":"83243","label":"squeezing soft cotton cloth","template":"Squeezing [something]","placeholders":["soft cotton cloth"]}, +{"id":"18781","label":"covering dvd disk with dvd cover","template":"Covering [something] with [something]","placeholders":["dvd disk","dvd cover"]}, +{"id":"159317","label":"moving a keyset towards the camera","template":"Moving [something] towards the camera","placeholders":["a keyset"]}, +{"id":"39298","label":"trying to bend metal pin so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal pin"]}, +{"id":"9684","label":"opening the box","template":"Opening [something]","placeholders":["the box"]}, +{"id":"177183","label":"plugging moblie charger into socket","template":"Plugging [something] into [something]","placeholders":["moblie charger","socket"]}, +{"id":"190214","label":"covering cans with a napkin","template":"Covering [something] with [something]","placeholders":["cans","a napkin"]}, +{"id":"191977","label":"pretending to take piece of paper from inside a box","template":"Pretending to take [something] from [somewhere]","placeholders":["piece of paper","inside a box"]}, +{"id":"185013","label":"showing a half lemon on top of a tea box","template":"Showing [something] on top of [something]","placeholders":["a half lemon","a tea box"]}, +{"id":"50067","label":"plugging electrical plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["electrical plug","an outlet"]}, +{"id":"51288","label":"tearing pomegranate peel into two pieces","template":"Tearing [something] into two pieces","placeholders":["pomegranate peel"]}, +{"id":"195149","label":"putting plate that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["plate"]}, +{"id":"189302","label":"bending gift card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["gift card"]}, +{"id":"214386","label":"moving mobile and other mobile phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mobile","other mobile phone"]}, +{"id":"54238","label":"putting a purse on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a purse","the table"]}, +{"id":"137299","label":"sprinkling ground cinnamon onto peanut butter bread","template":"Sprinkling [something] onto [something]","placeholders":["ground cinnamon","peanut butter bread"]}, +{"id":"190123","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"98322","label":"putting a book, a candle and a lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a book","a candle","a lighter"]}, +{"id":"177935","label":"moving a pen and a pair of sunglasses closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pen","a pair of sunglasses"]}, +{"id":"92081","label":"pushing a chewingum box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a chewingum box"]}, +{"id":"15326","label":"scooping powder up with spoon","template":"Scooping [something] up with [something]","placeholders":["powder","spoon"]}, +{"id":"68743","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"11120","label":"throwing wooden puppet onto a surface","template":"Throwing [something] onto a surface","placeholders":["wooden puppet"]}, +{"id":"191793","label":"moving toy lion and toy pig closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy lion","toy pig"]}, +{"id":"149944","label":"holding vape in front of computer","template":"Holding [something] in front of [something]","placeholders":["vape","computer"]}, +{"id":"191139","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"193087","label":"putting a ring into a ceramic container","template":"Putting [something] into [something]","placeholders":["a ring","a ceramic container"]}, +{"id":"192351","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"65576","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"22311","label":"showing sea to the camera","template":"Showing [something] to the camera","placeholders":["sea"]}, +{"id":"195248","label":"pretending to spread air onto arm","template":"Pretending to spread air onto [something]","placeholders":["arm"]}, +{"id":"173008","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"200033","label":"squeezing mustard container","template":"Squeezing [something]","placeholders":["mustard container"]}, +{"id":"30728","label":"putting bottle and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","pen"]}, +{"id":"164262","label":"laying tablet box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["tablet box"]}, +{"id":"40234","label":"trying to bend an electric razor so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["an electric razor"]}, +{"id":"164961","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"206570","label":"turning postcard upside down","template":"Turning [something] upside down","placeholders":["postcard"]}, +{"id":"102909","label":"showing chair next to car","template":"Showing [something] next to [something]","placeholders":["chair","car"]}, +{"id":"206935","label":"covering bag with sheet","template":"Covering [something] with [something]","placeholders":["bag","sheet"]}, +{"id":"4133","label":"showing bird to the camera","template":"Showing [something] to the camera","placeholders":["bird"]}, +{"id":"91838","label":"showing waste basket to the camera","template":"Showing [something] to the camera","placeholders":["waste basket"]}, +{"id":"157042","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"122241","label":"pushing red colour clip box from left to right","template":"Pushing [something] from left to right","placeholders":["red colour clip box"]}, +{"id":"161990","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"118801","label":"putting computer mouse on a surface","template":"Putting [something] on a surface","placeholders":["computer mouse"]}, +{"id":"72939","label":"stamp falling like a rock","template":"[Something] falling like a rock","placeholders":["stamp"]}, +{"id":"149115","label":"bending a feather until it breaks","template":"Bending [something] until it breaks","placeholders":["a feather"]}, +{"id":"100134","label":"poking laptop so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["laptop"]}, +{"id":"200051","label":"showing bottle behind block","template":"Showing [something] behind [something]","placeholders":["bottle","block"]}, +{"id":"21992","label":"turning the camera downwards while filming light","template":"Turning the camera downwards while filming [something]","placeholders":["light"]}, +{"id":"215803","label":"putting pen, bottle and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","bottle","cup"]}, +{"id":"213685","label":"twisting bottle cap","template":"Twisting [something]","placeholders":["bottle cap"]}, +{"id":"118508","label":"uncovering a vase","template":"Uncovering [something]","placeholders":["a vase"]}, +{"id":"213902","label":"opening file","template":"Opening [something]","placeholders":["file"]}, +{"id":"34417","label":"moving a scotch roll and a scotch roll so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a scotch roll","a scotch roll"]}, +{"id":"188681","label":"lifting spoon with coin on it","template":"Lifting [something] with [something] on it","placeholders":["spoon","coin"]}, +{"id":"97704","label":"pretending to open hair gel bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["hair gel bottle"]}, +{"id":"218607","label":"pretending to pour horlicks out of its container, but container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["horlicks","its container","container"]}, +{"id":"100422","label":"holding sachet of coffee","template":"Holding [something]","placeholders":["sachet of coffee"]}, +{"id":"37638","label":"putting colorful scarf on a surface","template":"Putting [something] on a surface","placeholders":["colorful scarf"]}, +{"id":"113337","label":"covering phone with wallet","template":"Covering [something] with [something]","placeholders":["phone","wallet"]}, +{"id":"190006","label":"pushing something with something","template":"Pushing [something] with [something]","placeholders":["something","something"]}, +{"id":"45713","label":"scooping peanut butter up with spoon","template":"Scooping [something] up with [something]","placeholders":["peanut butter","spoon"]}, +{"id":"70210","label":"putting an envelope underneath a cup","template":"Putting [something] underneath [something]","placeholders":["an envelope","a cup"]}, +{"id":"204278","label":"pretending to open pill bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pill bottle"]}, +{"id":"198293","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"101834","label":"holding a wallet","template":"Holding [something]","placeholders":["a wallet"]}, +{"id":"194462","label":"turning granola bar upside down","template":"Turning [something] upside down","placeholders":["granola bar"]}, +{"id":"33762","label":"moving a salt grinder closer to a cup","template":"Moving [something] closer to [something]","placeholders":["a salt grinder","a cup"]}, +{"id":"67943","label":"moving a water bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a water bottle"]}, +{"id":"206713","label":"hand colliding with hand and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["hand","hand"]}, +{"id":"28259","label":"moving violin closer to pillow","template":"Moving [something] closer to [something]","placeholders":["violin","pillow"]}, +{"id":"87865","label":"taking the phone out of the box","template":"Taking [something] out of [something]","placeholders":["the phone","the box"]}, +{"id":"175061","label":"pretending to pick pencil up","template":"Pretending to pick [something] up","placeholders":["pencil"]}, +{"id":"95686","label":"tipping thermal cup over","template":"Tipping [something] over","placeholders":["thermal cup"]}, +{"id":"93522","label":"rolling lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon"]}, +{"id":"124688","label":"showing old mobile phone to the camera","template":"Showing [something] to the camera","placeholders":["old mobile phone"]}, +{"id":"186979","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"177118","label":"uncovering travel iron-box","template":"Uncovering [something]","placeholders":["travel iron-box"]}, +{"id":"74950","label":"showing pen holder to the camera","template":"Showing [something] to the camera","placeholders":["pen holder"]}, +{"id":"204955","label":"paper falling falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper falling"]}, +{"id":"29739","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"78602","label":"putting purple microfiber on a surface","template":"Putting [something] on a surface","placeholders":["purple microfiber"]}, +{"id":"134468","label":"sprinkling pepper onto pan","template":"Sprinkling [something] onto [something]","placeholders":["pepper","pan"]}, +{"id":"23512","label":"pushing a bottle from left to right","template":"Pushing [something] from left to right","placeholders":["a bottle"]}, +{"id":"23301","label":"a peanut falling like a rock","template":"[Something] falling like a rock","placeholders":["a peanut"]}, +{"id":"93351","label":"letting superball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["superball"]}, +{"id":"157520","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"82742","label":"moving perfume bottle and toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["perfume bottle","toy"]}, +{"id":"7604","label":"pretending to be tearing a paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a paper"]}, +{"id":"42929","label":"tipping spice over","template":"Tipping [something] over","placeholders":["spice"]}, +{"id":"162576","label":"showing spoon behind a mug","template":"Showing [something] behind [something]","placeholders":["spoon","a mug"]}, +{"id":"155021","label":"dropping game in front of paper","template":"Dropping [something] in front of [something]","placeholders":["game","paper"]}, +{"id":"99830","label":"pulling mouse from left to right","template":"Pulling [something] from left to right","placeholders":["mouse"]}, +{"id":"41303","label":"moving pliers closer to a key","template":"Moving [something] closer to [something]","placeholders":["pliers","a key"]}, +{"id":"46973","label":"moving a cutting board across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a cutting board"]}, +{"id":"41267","label":"putting paper in front of orange","template":"Putting [something] in front of [something]","placeholders":["paper","orange"]}, +{"id":"216661","label":"dropping a towel onto the table","template":"Dropping [something] onto [something]","placeholders":["a towel","the table"]}, +{"id":"54132","label":"dropping toothbrush behind container","template":"Dropping [something] behind [something]","placeholders":["toothbrush","container"]}, +{"id":"124256","label":"showing that tumbler is empty","template":"Showing that [something] is empty","placeholders":["tumbler"]}, +{"id":"101774","label":"taking keys from box","template":"Taking [something] from [somewhere]","placeholders":["keys","box"]}, +{"id":"190352","label":"removing plate, revealing trivet behind","template":"Removing [something], revealing [something] behind","placeholders":["plate","trivet"]}, +{"id":"155802","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"207741","label":"lifting a notebook with a stapler on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a stapler"]}, +{"id":"173280","label":"poking blanket so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["blanket"]}, +{"id":"93742","label":"holding box over purse","template":"Holding [something] over [something]","placeholders":["box","purse"]}, +{"id":"13240","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"208362","label":"pouring water into a champagne glass","template":"Pouring [something] into [something]","placeholders":["water","a champagne glass"]}, +{"id":"103665","label":"pushing envelope box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["envelope box"]}, +{"id":"183897","label":"putting a hollow pipe, that cannot stand upright upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a hollow pipe, that cannot stand upright"]}, +{"id":"96417","label":"pushing a coaster from right to left","template":"Pushing [something] from right to left","placeholders":["a coaster"]}, +{"id":"152632","label":"dropping water bottle onto desk","template":"Dropping [something] onto [something]","placeholders":["water bottle","desk"]}, +{"id":"43011","label":"letting toilet paper roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toilet paper"]}, +{"id":"149187","label":"moving book away from pillow","template":"Moving [something] away from [something]","placeholders":["book","pillow"]}, +{"id":"200265","label":"pushing marker so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["marker"]}, +{"id":"65892","label":"a roll of tape falling like a rock","template":"[Something] falling like a rock","placeholders":["a roll of tape"]}, +{"id":"206542","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"191338","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"96436","label":"moving pen and lego man closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","lego man"]}, +{"id":"44514","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"156116","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"205949","label":"folding pillowcase","template":"Folding [something]","placeholders":["pillowcase"]}, +{"id":"148210","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"2403","label":"squeezing plastic bottle","template":"Squeezing [something]","placeholders":["plastic bottle"]}, +{"id":"192667","label":"showing lipstick next to lighter","template":"Showing [something] next to [something]","placeholders":["lipstick","lighter"]}, +{"id":"191583","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"95194","label":"moving a book down","template":"Moving [something] down","placeholders":["a book"]}, +{"id":"110705","label":"putting a cotton pad that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a cotton pad"]}, +{"id":"48387","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"18186","label":"pretending to pour water out of bowl, but bowl is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bowl","bowl"]}, +{"id":"129187","label":"holding pen behind notebook","template":"Holding [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"126583","label":"turning the camera downwards while filming a laptop","template":"Turning the camera downwards while filming [something]","placeholders":["a laptop"]}, +{"id":"94947","label":"putting a napkin behind a pillow","template":"Putting [something] behind [something]","placeholders":["a napkin","a pillow"]}, +{"id":"47349","label":"putting a calendar in front of bottle","template":"Putting [something] in front of [something]","placeholders":["a calendar","bottle"]}, +{"id":"76336","label":"spinning an avocado that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["an avocado"]}, +{"id":"87568","label":"moving white chalk away from battery","template":"Moving [something] away from [something]","placeholders":["white chalk","battery"]}, +{"id":"214911","label":"trying to bend a phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a phone"]}, +{"id":"177664","label":"hole puncher falling like a rock","template":"[Something] falling like a rock","placeholders":["hole puncher"]}, +{"id":"82433","label":"covering toy with tin","template":"Covering [something] with [something]","placeholders":["toy","tin"]}, +{"id":"34349","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"88319","label":"putting toothbrush next to mug","template":"Putting [something] next to [something]","placeholders":["toothbrush","mug"]}, +{"id":"6920","label":"stacking 2 spectacle boxes","template":"Stacking [number of] [something]","placeholders":["2","spectacle boxes"]}, +{"id":"63061","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"174768","label":"pulling small book from right to left","template":"Pulling [something] from right to left","placeholders":["small book"]}, +{"id":"151940","label":"letting deodorant container roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["deodorant container"]}, +{"id":"200312","label":"lifting spoon up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spoon"]}, +{"id":"143979","label":"putting a phone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a phone"]}, +{"id":"65630","label":"closing mixer-jar","template":"Closing [something]","placeholders":["mixer-jar"]}, +{"id":"21313","label":"taking brushes","template":"Taking [one of many similar things on the table]","placeholders":["brushes"]}, +{"id":"148761","label":"pretending to open pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pretending to open something"]}, +{"id":"195151","label":"pretending to take cutting tool from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["cutting tool","countertop"]}, +{"id":"32943","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"188150","label":"holding scotch tape","template":"Holding [something]","placeholders":["scotch tape"]}, +{"id":"60896","label":"dropping remote onto pillow","template":"Dropping [something] onto [something]","placeholders":["remote","pillow"]}, +{"id":"193751","label":"showing that egg carton is empty","template":"Showing that [something] is empty","placeholders":["egg carton"]}, +{"id":"14397","label":"putting a coffee cup into a cupboard","template":"Putting [something] into [something]","placeholders":["a coffee cup","a cupboard"]}, +{"id":"182728","label":"putting box","template":"Putting [something similar to other things that are already on the table]","placeholders":["box"]}, +{"id":"195209","label":"holding a bottle over a mug","template":"Holding [something] over [something]","placeholders":["a bottle","a mug"]}, +{"id":"65027","label":"spinning a small paper box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a small paper box"]}, +{"id":"205084","label":"showing nail polish on top of the box","template":"Showing [something] on top of [something]","placeholders":["nail polish","the box"]}, +{"id":"60867","label":"attaching block to block","template":"Attaching [something] to [something]","placeholders":["block","block"]}, +{"id":"41597","label":"turning shoe upside down","template":"Turning [something] upside down","placeholders":["shoe"]}, +{"id":"13099","label":"closing notebook","template":"Closing [something]","placeholders":["notebook"]}, +{"id":"127774","label":"turning the camera left while filming a vase with a plant","template":"Turning the camera left while filming [something]","placeholders":["a vase with a plant"]}, +{"id":"87165","label":"pulling pen out of notebook","template":"Pulling [something] out of [something]","placeholders":["pen","notebook"]}, +{"id":"18088","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"195702","label":"tilting a mug with paper towel on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a mug","paper towel"]}, +{"id":"65416","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"138192","label":"spinning a ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ball"]}, +{"id":"196379","label":"pushing mouse from left to right","template":"Pushing [something] from left to right","placeholders":["mouse"]}, +{"id":"73738","label":"taking soap out of mug","template":"Taking [something] out of [something]","placeholders":["soap","mug"]}, +{"id":"189828","label":"putting a knife upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a knife"]}, +{"id":"139411","label":"poking stuffed animal so that it falls over","template":"Poking [something] so that it falls over","placeholders":["stuffed animal"]}, +{"id":"118259","label":"pretending to turn a santa statue upside down","template":"Pretending to turn [something] upside down","placeholders":["a santa statue"]}, +{"id":"15522","label":"putting a box and a charger on the table","template":"Putting [something] and [something] on the table","placeholders":["a box","a charger"]}, +{"id":"25377","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"23417","label":"pretending to turn cologne bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["cologne bottle"]}, +{"id":"196932","label":"letting paint spray can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["paint spray can"]}, +{"id":"108542","label":"pulling slipper onto carpet","template":"Pulling [something] onto [something]","placeholders":["slipper","carpet"]}, +{"id":"198417","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"198157","label":"stuffing white towel into wooden box","template":"Stuffing [something] into [something]","placeholders":["white towel","wooden box"]}, +{"id":"104885","label":"pushing a marker pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a marker pen"]}, +{"id":"158824","label":"dropping crayon into bowl","template":"Dropping [something] into [something]","placeholders":["crayon","bowl"]}, +{"id":"45500","label":"pouring water into a sink","template":"Pouring [something] into [something]","placeholders":["water","a sink"]}, +{"id":"61121","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"110241","label":"throwing a block in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a block"]}, +{"id":"93731","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"204531","label":"pushing bin with remote","template":"Pushing [something] with [something]","placeholders":["bin","remote"]}, +{"id":"12227","label":"dropping pen into pot","template":"Dropping [something] into [something]","placeholders":["pen","pot"]}, +{"id":"201861","label":"putting spoon","template":"Putting [something similar to other things that are already on the table]","placeholders":["spoon"]}, +{"id":"126759","label":"lifting up one end of a book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a book"]}, +{"id":"185952","label":"pushing a shoe brush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a shoe brush"]}, +{"id":"163872","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"58815","label":"tearing leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["leaf"]}, +{"id":"99163","label":"stacking 3 puzzle pieces","template":"Stacking [number of] [something]","placeholders":["3","puzzle pieces"]}, +{"id":"178424","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"119715","label":"sprinkling baking soda onto a bowl","template":"Sprinkling [something] onto [something]","placeholders":["baking soda","a bowl"]}, +{"id":"43129","label":"spinning chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["chair"]}, +{"id":"144302","label":"moving pen and leadbox closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","leadbox"]}, +{"id":"42620","label":"putting measuring tape on a surface","template":"Putting [something] on a surface","placeholders":["measuring tape"]}, +{"id":"146449","label":"rolling talcum powder container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["talcum powder container"]}, +{"id":"105458","label":"moving hat and wallet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["hat","wallet"]}, +{"id":"143141","label":"tearing notecard into two pieces","template":"Tearing [something] into two pieces","placeholders":["notecard"]}, +{"id":"152819","label":"spinning a propeller so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a propeller"]}, +{"id":"217265","label":"taking selfie stick from floor","template":"Taking [something] from [somewhere]","placeholders":["selfie stick","floor"]}, +{"id":"199982","label":"holding a mug","template":"Holding [something]","placeholders":["a mug"]}, +{"id":"17366","label":"putting lighter behind candle","template":"Putting [something] behind [something]","placeholders":["lighter","candle"]}, +{"id":"154244","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"23513","label":"twisting blu tack","template":"Twisting [something]","placeholders":["blu tack"]}, +{"id":"88835","label":"poking a stack of coins so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["coins"]}, +{"id":"34886","label":"pretending to pick wiimote up","template":"Pretending to pick [something] up","placeholders":["wiimote"]}, +{"id":"134721","label":"turning shampoo upside down","template":"Turning [something] upside down","placeholders":["shampoo"]}, +{"id":"201134","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"49845","label":"uncovering milk","template":"Uncovering [something]","placeholders":["milk"]}, +{"id":"146512","label":"holding a remote","template":"Holding [something]","placeholders":["a remote"]}, +{"id":"135427","label":"pretending to put a pencil next to a notebook","template":"Pretending to put [something] next to [something]","placeholders":["a pencil","a notebook"]}, +{"id":"208537","label":"showing that nothing is inside small container","template":"Showing that [something] is inside [something]","placeholders":["nothing","small container"]}, +{"id":"25657","label":"pushing duster from left to right","template":"Pushing [something] from left to right","placeholders":["duster"]}, +{"id":"160129","label":"wiping milk off of a table","template":"Wiping [something] off of [something]","placeholders":["milk","a table"]}, +{"id":"195681","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"211352","label":"taking gift packs from a bag","template":"Taking [something] from [somewhere]","placeholders":["gift packs","a bag"]}, +{"id":"189290","label":"dropping matchbox in front of jar","template":"Dropping [something] in front of [something]","placeholders":["matchbox","jar"]}, +{"id":"1194","label":"pretending to put cd box on a surface","template":"Pretending to put [something] on a surface","placeholders":["cd box"]}, +{"id":"182518","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"85349","label":"lifting candy packaging up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["candy packaging"]}, +{"id":"159318","label":"pouring cereals into a glass container until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["cereals","a glass container"]}, +{"id":"4590","label":"spinning phone charger that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["phone charger"]}, +{"id":"161594","label":"spinning a pumpkin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pumpkin"]}, +{"id":"100091","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"174047","label":"approaching glass tumbler with your camera","template":"Approaching [something] with your camera","placeholders":["glass tumbler"]}, +{"id":"100379","label":"rolling scotch tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["scotch tape"]}, +{"id":"45905","label":"folding clothes","template":"Folding [something]","placeholders":["clothes"]}, +{"id":"203544","label":"pretending to open plastic jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["plastic jar"]}, +{"id":"118329","label":"throwing package of pads in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["package of pads"]}, +{"id":"43365","label":"turning the camera downwards while filming window view","template":"Turning the camera downwards while filming [something]","placeholders":["window view"]}, +{"id":"97581","label":"showing pliers next to screwdriver","template":"Showing [something] next to [something]","placeholders":["pliers","screwdriver"]}, +{"id":"43765","label":"stacking seven cookies","template":"Stacking [number of] [something]","placeholders":["seven","cookies"]}, +{"id":"52242","label":"plugging usb into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","laptop"]}, +{"id":"235","label":"moving soda can and ketchup bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["soda can","ketchup bottle"]}, +{"id":"103484","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"66335","label":"holding a remote next to a red ball","template":"Holding [something] next to [something]","placeholders":["a remote","a red ball"]}, +{"id":"60628","label":"putting a book, a container and a milk carton on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a book","a container","a milk carton"]}, +{"id":"109787","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"174850","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"54037","label":"twisting a bag of bread","template":"Twisting [something]","placeholders":["a bag of bread"]}, +{"id":"18874","label":"attaching magnet to board","template":"Attaching [something] to [something]","placeholders":["magnet","board"]}, +{"id":"80762","label":"showing that stapler is inside cookie box","template":"Showing that [something] is inside [something]","placeholders":["stapler","cookie box"]}, +{"id":"65996","label":"moving wheel of train","template":"Moving [part] of [something]","placeholders":["wheel","train"]}, +{"id":"79491","label":"pushing a battery so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a battery"]}, +{"id":"108096","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"128624","label":"spilling water onto desk","template":"Spilling [something] onto [something]","placeholders":["water","desk"]}, +{"id":"142889","label":"plugging cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","charger"]}, +{"id":"41527","label":"rolling cup on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cup"]}, +{"id":"93763","label":"pouring water into jar","template":"Pouring [something] into [something]","placeholders":["water","jar"]}, +{"id":"182435","label":"pretending to pick white badge up","template":"Pretending to pick [something] up","placeholders":["white badge"]}, +{"id":"82303","label":"lifting hose head up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["hose head"]}, +{"id":"30630","label":"throwing pomegranate","template":"Throwing [something]","placeholders":["pomegranate"]}, +{"id":"7213","label":"pulling a sandal from behind of a wall","template":"Pulling [something] from behind of [something]","placeholders":["a sandal","a wall"]}, +{"id":"13046","label":"poking book so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["book"]}, +{"id":"56042","label":"putting a box onto a notebook so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a box","a notebook"]}, +{"id":"16783","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"4405","label":"spinning toy ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toy ball"]}, +{"id":"166977","label":"throwing pillow in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pillow"]}, +{"id":"31338","label":"stuffing socks into cup","template":"Stuffing [something] into [something]","placeholders":["socks","cup"]}, +{"id":"159022","label":"showing remote on top of box","template":"Showing [something] on top of [something]","placeholders":["remote","box"]}, +{"id":"214847","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"126363","label":"pulling two ends of cloth so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["cloth"]}, +{"id":"208173","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"30474","label":"holding a box over a glass","template":"Holding [something] over [something]","placeholders":["a box","a glass"]}, +{"id":"89228","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"40593","label":"throwing bat","template":"Throwing [something]","placeholders":["bat"]}, +{"id":"71240","label":"pushing black lead so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["black lead"]}, +{"id":"158449","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"173389","label":"pushing cover from right to left","template":"Pushing [something] from right to left","placeholders":["cover"]}, +{"id":"154784","label":"showing that tomato is inside box","template":"Showing that [something] is inside [something]","placeholders":["tomato","box"]}, +{"id":"67326","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"183310","label":"attaching a paper to a paper","template":"Attaching [something] to [something]","placeholders":["a paper","a paper"]}, +{"id":"19741","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"137277","label":"moving doll and lipstick away from each other","template":"Moving [something] and [something] away from each other","placeholders":["doll","lipstick"]}, +{"id":"99324","label":"holding goggles over car toy","template":"Holding [something] over [something]","placeholders":["goggles","car toy"]}, +{"id":"213552","label":"putting jar next to box","template":"Putting [something] next to [something]","placeholders":["jar","box"]}, +{"id":"217376","label":"pushing nail paint remover from right to left","template":"Pushing [something] from right to left","placeholders":["nail paint remover"]}, +{"id":"161039","label":"plugging earphones into mp4","template":"Plugging [something] into [something]","placeholders":["earphones","mp4"]}, +{"id":"68969","label":"covering a robot with cardboard","template":"Covering [something] with [something]","placeholders":["a robot","cardboard"]}, +{"id":"90542","label":"putting tape on a surface","template":"Putting [something] on a surface","placeholders":["tape"]}, +{"id":"15160","label":"putting mouse next to mouse pad","template":"Putting [something] next to [something]","placeholders":["mouse","mouse pad"]}, +{"id":"83910","label":"sprinkling flowers onto floor","template":"Sprinkling [something] onto [something]","placeholders":["flowers","floor"]}, +{"id":"126294","label":"moving controller up","template":"Moving [something] up","placeholders":["controller"]}, +{"id":"130668","label":"putting roll of tape onto toilet","template":"Putting [something] onto [something]","placeholders":["roll of tape","toilet"]}, +{"id":"143254","label":"comb falling like a rock","template":"[Something] falling like a rock","placeholders":["comb"]}, +{"id":"130962","label":"moving juice away from coffee","template":"Moving [something] away from [something]","placeholders":["juice","coffee"]}, +{"id":"59029","label":"poking a stack of plastic boxes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["plastic boxes"]}, +{"id":"201456","label":"moving bottle away from pink notebook","template":"Moving [something] away from [something]","placeholders":["bottle","pink notebook"]}, +{"id":"143355","label":"pretending to put plate on a surface","template":"Pretending to put [something] on a surface","placeholders":["plate"]}, +{"id":"152489","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"97198","label":"pretending to pick stick up","template":"Pretending to pick [something] up","placeholders":["stick"]}, +{"id":"94731","label":"dropping a tissue box in front of a mug","template":"Dropping [something] in front of [something]","placeholders":["a tissue box","a mug"]}, +{"id":"124449","label":"rolling gooseberry on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["gooseberry"]}, +{"id":"143649","label":"moving dvd away from keyboard","template":"Moving [something] away from [something]","placeholders":["dvd","keyboard"]}, +{"id":"66573","label":"lifting up one end of card, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["card"]}, +{"id":"148055","label":"moving car colliding with book and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["moving car","book"]}, +{"id":"8043","label":"putting candle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["candle"]}, +{"id":"121135","label":"spilling water next to a plate","template":"Spilling [something] next to [something]","placeholders":["water","a plate"]}, +{"id":"67183","label":"turning the camera right while filming bicycle","template":"Turning the camera right while filming [something]","placeholders":["bicycle"]}, +{"id":"4210","label":"taking teabags out of bowl","template":"Taking [something] out of [something]","placeholders":["teabags","bowl"]}, +{"id":"144839","label":"showing that a wallet is empty","template":"Showing that [something] is empty","placeholders":["a wallet"]}, +{"id":"189685","label":"measuring cup falling like a rock","template":"[Something] falling like a rock","placeholders":["measuring cup"]}, +{"id":"19662","label":"pretending to put cloth into bowl","template":"Pretending to put [something] into [something]","placeholders":["cloth","bowl"]}, +{"id":"133541","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"83014","label":"fidget spinner falling like a rock","template":"[Something] falling like a rock","placeholders":["fidget spinner"]}, +{"id":"206332","label":"turning the camera right while filming bike","template":"Turning the camera right while filming [something]","placeholders":["bike"]}, +{"id":"20087","label":"spreading vegetables onto a plate","template":"Spreading [something] onto [something]","placeholders":["vegetables","a plate"]}, +{"id":"170384","label":"tilting a book with a doll on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a doll"]}, +{"id":"88989","label":"plugging a cord into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","the wall"]}, +{"id":"62343","label":"moving a calculator away from a pencase","template":"Moving [something] away from [something]","placeholders":["a calculator","a pencase"]}, +{"id":"141533","label":"showing a cigarette pack to the camera","template":"Showing [something] to the camera","placeholders":["a cigarette pack"]}, +{"id":"107950","label":"moving xbox controller and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["xbox controller","remote"]}, +{"id":"157804","label":"lifting book with pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","pen"]}, +{"id":"194058","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"180121","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"152337","label":"putting a doll, a pen and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a doll","a pen","scissors"]}, +{"id":"18906","label":"dropping box onto table","template":"Dropping [something] onto [something]","placeholders":["box","table"]}, +{"id":"182508","label":"pretending or failing to wipe stain off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","table"]}, +{"id":"36738","label":"throwing tv control","template":"Throwing [something]","placeholders":["tv control"]}, +{"id":"159717","label":"spilling water onto the floor","template":"Spilling [something] onto [something]","placeholders":["water","the floor"]}, +{"id":"130860","label":"bending stapler pin so that it deforms","template":"Bending [something] so that it deforms","placeholders":["stapler pin"]}, +{"id":"50306","label":"tearing white paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["white paper"]}, +{"id":"144022","label":"string falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["string"]}, +{"id":"16200","label":"paper tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper tissue"]}, +{"id":"214188","label":"moving a videocamera up","template":"Moving [something] up","placeholders":["a videocamera"]}, +{"id":"71948","label":"holding a roll of tape over a coffee can","template":"Holding [something] over [something]","placeholders":["a roll of tape","a coffee can"]}, +{"id":"48562","label":"putting a candy cane upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a candy cane"]}, +{"id":"42170","label":"stuffing a cloth into a cup","template":"Stuffing [something] into [something]","placeholders":["a cloth","a cup"]}, +{"id":"201645","label":"dropping a spoon onto the counter","template":"Dropping [something] onto [something]","placeholders":["a spoon","the counter"]}, +{"id":"128047","label":"taking eraser out of box","template":"Taking [something] out of [something]","placeholders":["eraser","box"]}, +{"id":"112815","label":"taking spects from box","template":"Taking [something] from [somewhere]","placeholders":["spects","box"]}, +{"id":"204679","label":"plugging charger into wall socket","template":"Plugging [something] into [something]","placeholders":["charger","wall socket"]}, +{"id":"198912","label":"holding a lighter","template":"Holding [something]","placeholders":["a lighter"]}, +{"id":"105319","label":"holding a penny over a wine glass","template":"Holding [something] over [something]","placeholders":["a penny","a wine glass"]}, +{"id":"141984","label":"pushing a cup with ruler","template":"Pushing [something] with [something]","placeholders":["a cup","ruler"]}, +{"id":"17410","label":"taking an energy drink can","template":"Taking [one of many similar things on the table]","placeholders":["an energy drink can"]}, +{"id":"11434","label":"letting lipstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipstick"]}, +{"id":"62352","label":"squeezing a stuffed bird","template":"Squeezing [something]","placeholders":["a stuffed bird"]}, +{"id":"48218","label":"putting vitamins and medication on the table","template":"Putting [something] and [something] on the table","placeholders":["vitamins","medication"]}, +{"id":"45362","label":"moving ice tray and mobile phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ice tray","mobile phone"]}, +{"id":"61031","label":"pretending to pick a pair of scissors up","template":"Pretending to pick [something] up","placeholders":["a pair of scissors"]}, +{"id":"213371","label":"uncovering wound","template":"Uncovering [something]","placeholders":["wound"]}, +{"id":"204976","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"56403","label":"showing white rabbits to the camera","template":"Showing [something] to the camera","placeholders":["white rabbits"]}, +{"id":"49722","label":"closing a laptop","template":"Closing [something]","placeholders":["a laptop"]}, +{"id":"180382","label":"putting a cup onto a box","template":"Putting [something] onto [something]","placeholders":["a cup","a box"]}, +{"id":"183089","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"162448","label":"poking a stack of pennies so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["pennies"]}, +{"id":"51389","label":"holding something in front of something","template":"Holding [something] in front of [something]","placeholders":["something","something"]}, +{"id":"144555","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"208343","label":"holding mobile in front of tv","template":"Holding [something] in front of [something]","placeholders":["mobile","tv"]}, +{"id":"210207","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"76517","label":"holding plastic bag next to bracelet","template":"Holding [something] next to [something]","placeholders":["plastic bag","bracelet"]}, +{"id":"195056","label":"turning a textsurfer upside down","template":"Turning [something] upside down","placeholders":["a textsurfer"]}, +{"id":"120395","label":"folding papers","template":"Folding [something]","placeholders":["papers"]}, +{"id":"42849","label":"putting 2 spanners onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","spanners","yellow note"]}, +{"id":"145293","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"112425","label":"throwing soft drink pack in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["soft drink pack"]}, +{"id":"187640","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"151668","label":"moving leaf towards the camera","template":"Moving [something] towards the camera","placeholders":["leaf"]}, +{"id":"57299","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"214602","label":"pushing face wash with card","template":"Pushing [something] with [something]","placeholders":["face wash","card"]}, +{"id":"115717","label":"pulling spoon from right to left","template":"Pulling [something] from right to left","placeholders":["spoon"]}, +{"id":"197080","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"39709","label":"putting a tea cup to tea set","template":"Putting [something similar to other things that are already on the table]","placeholders":["a tea cup to tea set"]}, +{"id":"123750","label":"throwing a bottle","template":"Throwing [something]","placeholders":["a bottle"]}, +{"id":"190040","label":"showing bar soap to the camera","template":"Showing [something] to the camera","placeholders":["bar soap"]}, +{"id":"152990","label":"holding a cap next to a towel","template":"Holding [something] next to [something]","placeholders":["a cap","a towel"]}, +{"id":"129445","label":"tearing cover into two pieces","template":"Tearing [something] into two pieces","placeholders":["cover"]}, +{"id":"50650","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"216606","label":"turning the camera right while filming frame","template":"Turning the camera right while filming [something]","placeholders":["frame"]}, +{"id":"167013","label":"moving a book up","template":"Moving [something] up","placeholders":["a book"]}, +{"id":"198677","label":"pulling black brush from left to right","template":"Pulling [something] from left to right","placeholders":["black brush"]}, +{"id":"153097","label":"removing cloth, revealing phone behind","template":"Removing [something], revealing [something] behind","placeholders":["cloth","phone"]}, +{"id":"16429","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"3292","label":"moving phone case down","template":"Moving [something] down","placeholders":["phone case"]}, +{"id":"158304","label":"tilting cup with book on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["cup","book"]}, +{"id":"45055","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"23572","label":"poking a stack of bottle cap so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["bottle cap"]}, +{"id":"163549","label":"holding glass next to ashtray","template":"Holding [something] next to [something]","placeholders":["glass","ashtray"]}, +{"id":"57664","label":"pushing a fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["a fidget spinner"]}, +{"id":"131243","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"113418","label":"rolling car on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["car"]}, +{"id":"121738","label":"unfolding wallet","template":"Unfolding [something]","placeholders":["wallet"]}, +{"id":"131456","label":"putting cushion on a surface","template":"Putting [something] on a surface","placeholders":["cushion"]}, +{"id":"182404","label":"pretending to pick powerbank up","template":"Pretending to pick [something] up","placeholders":["powerbank"]}, +{"id":"73703","label":"dropping a key next to a knife","template":"Dropping [something] next to [something]","placeholders":["a key","a knife"]}, +{"id":"210326","label":"showing pen behind box","template":"Showing [something] behind [something]","placeholders":["pen","box"]}, +{"id":"161088","label":"approaching wastebin with your camera","template":"Approaching [something] with your camera","placeholders":["wastebin"]}, +{"id":"59938","label":"turning a smartphone upside down","template":"Turning [something] upside down","placeholders":["a smartphone"]}, +{"id":"46684","label":"showing holder behind cup","template":"Showing [something] behind [something]","placeholders":["holder","cup"]}, +{"id":"194996","label":"holding spectacle behind rubix cube","template":"Holding [something] behind [something]","placeholders":["spectacle","rubix cube"]}, +{"id":"36227","label":"showing spectacle box behind yellow clay box","template":"Showing [something] behind [something]","placeholders":["spectacle box","yellow clay box"]}, +{"id":"123409","label":"spinning vase that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["vase"]}, +{"id":"121561","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"77808","label":"metal ball colliding with metal ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["metal ball","metal ball"]}, +{"id":"67469","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"195318","label":"covering cap with hand towel","template":"Covering [something] with [something]","placeholders":["cap","hand towel"]}, +{"id":"148885","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"25058","label":"showing white candle to the camera","template":"Showing [something] to the camera","placeholders":["white candle"]}, +{"id":"79333","label":"holding remote","template":"Holding [something]","placeholders":["remote"]}, +{"id":"146598","label":"putting bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle"]}, +{"id":"115894","label":"dropping nail clippers into a cup","template":"Dropping [something] into [something]","placeholders":["nail clippers","a cup"]}, +{"id":"135503","label":"pretending to pour water out of a kettle, but the kettle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a kettle","the kettle"]}, +{"id":"16285","label":"throwing brush in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["brush"]}, +{"id":"168036","label":"wiping pepper off of the counter top","template":"Wiping [something] off of [something]","placeholders":["pepper","the counter top"]}, +{"id":"154294","label":"moving paper clip holder and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper clip holder","marker"]}, +{"id":"188869","label":"holding medicine bottle over calculator","template":"Holding [something] over [something]","placeholders":["medicine bottle","calculator"]}, +{"id":"98328","label":"pretending to poke a magazine","template":"Pretending to poke [something]","placeholders":["a magazine"]}, +{"id":"148142","label":"turning coffee cup upside down","template":"Turning [something] upside down","placeholders":["coffee cup"]}, +{"id":"3879","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"15989","label":"showing laptop behind bottle","template":"Showing [something] behind [something]","placeholders":["laptop","bottle"]}, +{"id":"47826","label":"holding a spoon in front of a cup","template":"Holding [something] in front of [something]","placeholders":["a spoon","a cup"]}, +{"id":"179545","label":"poking a stack of coins so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["coins"]}, +{"id":"143558","label":"dropping a remote control next to a headphones","template":"Dropping [something] next to [something]","placeholders":["a remote control","a headphones"]}, +{"id":"155670","label":"putting a mug, an eraser and a coin on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a mug","an eraser","a coin"]}, +{"id":"95275","label":"showing tv on top of desk","template":"Showing [something] on top of [something]","placeholders":["tv","desk"]}, +{"id":"170829","label":"throwing headphones onto a surface","template":"Throwing [something] onto a surface","placeholders":["headphones"]}, +{"id":"77945","label":"dropping a matchbox in front of a pen","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a pen"]}, +{"id":"70341","label":"moving keys up","template":"Moving [something] up","placeholders":["keys"]}, +{"id":"151715","label":"closing pad lock","template":"Closing [something]","placeholders":["pad lock"]}, +{"id":"177461","label":"turning the camera right while filming smart phone","template":"Turning the camera right while filming [something]","placeholders":["smart phone"]}, +{"id":"47486","label":"plugging charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall socket"]}, +{"id":"95742","label":"throwing keys in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["keys"]}, +{"id":"100640","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"55271","label":"throwing a pillow","template":"Throwing [something]","placeholders":["a pillow"]}, +{"id":"143630","label":"pretending to put marker into mug","template":"Pretending to put [something] into [something]","placeholders":["marker","mug"]}, +{"id":"206057","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"22617","label":"pushing hair clip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair clip"]}, +{"id":"135790","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"215596","label":"candy being deflected from clock","template":"[Something] being deflected from [something]","placeholders":["candy","clock"]}, +{"id":"34170","label":"turning the camera right while filming traffic signboard","template":"Turning the camera right while filming [something]","placeholders":["traffic signboard"]}, +{"id":"32510","label":"plugging power cable into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power cable","socket"]}, +{"id":"212969","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181651","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"63686","label":"pretending to poke plate","template":"Pretending to poke [something]","placeholders":["plate"]}, +{"id":"211973","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"128057","label":"squeezing blue lighter","template":"Squeezing [something]","placeholders":["blue lighter"]}, +{"id":"43544","label":"hitting a mouse with a wallet","template":"Hitting [something] with [something]","placeholders":["a mouse","a wallet"]}, +{"id":"12235","label":"pushing pen off of ipad","template":"Pushing [something] off of [something]","placeholders":["pen","ipad"]}, +{"id":"141750","label":"wiping soap off of a chair","template":"Wiping [something] off of [something]","placeholders":["soap","a chair"]}, +{"id":"51775","label":"putting paper in front of candle","template":"Putting [something] in front of [something]","placeholders":["paper","candle"]}, +{"id":"1751","label":"moving bottle and box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","box"]}, +{"id":"38738","label":"poking jar so that it falls over","template":"Poking [something] so that it falls over","placeholders":["jar"]}, +{"id":"114976","label":"showing baking powder to the camera","template":"Showing [something] to the camera","placeholders":["baking powder"]}, +{"id":"124452","label":"poking battery so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["battery"]}, +{"id":"139329","label":"putting a aluminium rod that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a aluminium rod"]}, +{"id":"179232","label":"dropping push in onto push in","template":"Dropping [something] onto [something]","placeholders":["push in","push in"]}, +{"id":"168616","label":"tilting an end table with a case of bobbins on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["an end table","a case of bobbins"]}, +{"id":"102701","label":"putting a crayon into a pot","template":"Putting [something] into [something]","placeholders":["a crayon","a pot"]}, +{"id":"119552","label":"poking a remote so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a remote"]}, +{"id":"184511","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"84674","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"114930","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"175789","label":"tearing a letter into two pieces","template":"Tearing [something] into two pieces","placeholders":["a letter"]}, +{"id":"63424","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"128894","label":"spilling water onto a box","template":"Spilling [something] onto [something]","placeholders":["water","a box"]}, +{"id":"136310","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"18534","label":"stuffing medicine into a box","template":"Stuffing [something] into [something]","placeholders":["medicine","a box"]}, +{"id":"21421","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"105836","label":"taking currency","template":"Taking [one of many similar things on the table]","placeholders":["currency"]}, +{"id":"106970","label":"pretending to be tearing plastic bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic bag"]}, +{"id":"63452","label":"pushing a plug from right to left","template":"Pushing [something] from right to left","placeholders":["a plug"]}, +{"id":"10722","label":"pretending to poke box","template":"Pretending to poke [something]","placeholders":["box"]}, +{"id":"53141","label":"pushing shoe box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe box"]}, +{"id":"67786","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"2683","label":"pulling a cigarette out of the pack","template":"Pulling [something] out of [something]","placeholders":["a cigarette","the pack"]}, +{"id":"173702","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"156258","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"104581","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"154509","label":"pretending to be tearing a shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a shirt"]}, +{"id":"68678","label":"taking a bowl","template":"Taking [one of many similar things on the table]","placeholders":["a bowl"]}, +{"id":"123792","label":"plugging charger into laptop","template":"Plugging [something] into [something]","placeholders":["charger","laptop"]}, +{"id":"130952","label":"lifting box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["box"]}, +{"id":"13888","label":"holding pen behind bottle","template":"Holding [something] behind [something]","placeholders":["pen","bottle"]}, +{"id":"153427","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"133414","label":"pretending to take cup from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cup","table"]}, +{"id":"45528","label":"showing white badge next to magnifying glass","template":"Showing [something] next to [something]","placeholders":["white badge","magnifying glass"]}, +{"id":"220119","label":"a pencil being deflected from a box","template":"[Something] being deflected from [something]","placeholders":["a pencil","a box"]}, +{"id":"74665","label":"plugging power chord into outlet","template":"Plugging [something] into [something]","placeholders":["power chord","outlet"]}, +{"id":"27016","label":"wiping paper off of table","template":"Wiping [something] off of [something]","placeholders":["paper","table"]}, +{"id":"116144","label":"pulling a lighter onto a metal box","template":"Pulling [something] onto [something]","placeholders":["a lighter","a metal box"]}, +{"id":"115017","label":"holding keys over plastic cup","template":"Holding [something] over [something]","placeholders":["keys","plastic cup"]}, +{"id":"211585","label":"putting orange post-it on a surface","template":"Putting [something] on a surface","placeholders":["orange post-it"]}, +{"id":"166927","label":"remote being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["remote","couch"]}, +{"id":"130392","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"187688","label":"tilting spoon with coin on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["spoon","coin"]}, +{"id":"198965","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"88011","label":"uncovering plastic knife","template":"Uncovering [something]","placeholders":["plastic knife"]}, +{"id":"6176","label":"squeezing a stress ball","template":"Squeezing [something]","placeholders":["a stress ball"]}, +{"id":"50874","label":"scooping cereal up with spoon","template":"Scooping [something] up with [something]","placeholders":["cereal","spoon"]}, +{"id":"144996","label":"pouring juice out of bottle","template":"Pouring [something] out of [something]","placeholders":["juice","bottle"]}, +{"id":"82524","label":"putting 2 pen onto book","template":"Putting [number of] [something] onto [something]","placeholders":["2","pen","book"]}, +{"id":"168137","label":"pretending to be tearing a shoe","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a shoe"]}, +{"id":"168508","label":"stuffing paper into glass","template":"Stuffing [something] into [something]","placeholders":["paper","glass"]}, +{"id":"220335","label":"attaching battery cover to remote","template":"Attaching [something] to [something]","placeholders":["battery cover","remote"]}, +{"id":"28598","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"178788","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"184520","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"186015","label":"tearing sticky note into two pieces","template":"Tearing [something] into two pieces","placeholders":["sticky note"]}, +{"id":"110396","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"56775","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"4940","label":"moving antenas of antena set","template":"Moving [part] of [something]","placeholders":["antenas","antena set"]}, +{"id":"74512","label":"pouring tea bags out of a box","template":"Pouring [something] out of [something]","placeholders":["tea bags","a box"]}, +{"id":"76349","label":"dropping pill bottle into coffee can","template":"Dropping [something] into [something]","placeholders":["pill bottle","coffee can"]}, +{"id":"129427","label":"poking cube so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cube"]}, +{"id":"131843","label":"putting bowel underneath gas stove","template":"Putting [something] underneath [something]","placeholders":["bowel","gas stove"]}, +{"id":"78898","label":"moving calculator up","template":"Moving [something] up","placeholders":["calculator"]}, +{"id":"98916","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"133853","label":"holding box next to glass","template":"Holding [something] next to [something]","placeholders":["box","glass"]}, +{"id":"168896","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"16055","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"10456","label":"holding a cup next to glass","template":"Holding [something] next to [something]","placeholders":["a cup","glass"]}, +{"id":"39000","label":"dropping a peg next to a belt","template":"Dropping [something] next to [something]","placeholders":["a peg","a belt"]}, +{"id":"38795","label":"pretending to pour water out of a cup, but a cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","a cup"]}, +{"id":"60596","label":"holding powder bottle next to paint bottle","template":"Holding [something] next to [something]","placeholders":["powder bottle","paint bottle"]}, +{"id":"39745","label":"uncovering soap","template":"Uncovering [something]","placeholders":["soap"]}, +{"id":"84546","label":"covering orange colour bottle cap with white sheet","template":"Covering [something] with [something]","placeholders":["orange colour bottle cap","white sheet"]}, +{"id":"168876","label":"stacking 3 cigarette boxes","template":"Stacking [number of] [something]","placeholders":["3","cigarette boxes"]}, +{"id":"57156","label":"tissue pack falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue pack"]}, +{"id":"101094","label":"holding a radio over his head","template":"Holding [something] over [something]","placeholders":["a radio","his head"]}, +{"id":"95309","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"217405","label":"pendrive falling like a rock","template":"[Something] falling like a rock","placeholders":["pendrive"]}, +{"id":"15514","label":"removing case, revealing pc behind","template":"Removing [something], revealing [something] behind","placeholders":["case","pc"]}, +{"id":"117674","label":"turning chair upside down","template":"Turning [something] upside down","placeholders":["chair"]}, +{"id":"78887","label":"pushing shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["shoe"]}, +{"id":"127213","label":"stacking 2 coins","template":"Stacking [number of] [something]","placeholders":["2","coins"]}, +{"id":"37134","label":"pretending to poke tube","template":"Pretending to poke [something]","placeholders":["tube"]}, +{"id":"167865","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"80518","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"112348","label":"pushing foldable knife from left to right","template":"Pushing [something] from left to right","placeholders":["foldable knife"]}, +{"id":"207875","label":"throwing scissors","template":"Throwing [something]","placeholders":["scissors"]}, +{"id":"127928","label":"hummus container falling like a rock","template":"[Something] falling like a rock","placeholders":["hummus container"]}, +{"id":"167431","label":"turning the camera left while filming banana bunch","template":"Turning the camera left while filming [something]","placeholders":["banana bunch"]}, +{"id":"163099","label":"dropping marker pen in front of spectacle box","template":"Dropping [something] in front of [something]","placeholders":["marker pen","spectacle box"]}, +{"id":"174688","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"41202","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"217471","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"53898","label":"pushing package from right to left","template":"Pushing [something] from right to left","placeholders":["package"]}, +{"id":"203070","label":"putting cup and orange on the table","template":"Putting [something] and [something] on the table","placeholders":["cup","orange"]}, +{"id":"194108","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"149751","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"75548","label":"turning the camera right while filming gate","template":"Turning the camera right while filming [something]","placeholders":["gate"]}, +{"id":"174382","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"173979","label":"showing bath soap next to box","template":"Showing [something] next to [something]","placeholders":["bath soap","box"]}, +{"id":"55373","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"122602","label":"putting a spone to other spones that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a spone to other spones that are already on the table"]}, +{"id":"12008","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"130674","label":"pushing black umbrella from right to left","template":"Pushing [something] from right to left","placeholders":["black umbrella"]}, +{"id":"140022","label":"pulling two ends of cover so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cover"]}, +{"id":"62755","label":"pretending to take candy out of box","template":"Pretending to take [something] out of [something]","placeholders":["candy","box"]}, +{"id":"97477","label":"turning breath mint container upside down","template":"Turning [something] upside down","placeholders":["breath mint container"]}, +{"id":"20838","label":"tilting sticky note with sharpener on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["sticky note","sharpener"]}, +{"id":"74711","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"180948","label":"putting cards with cards","template":"Putting [something similar to other things that are already on the table]","placeholders":["cards with cards"]}, +{"id":"35443","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"189078","label":"pretending or trying and failing to twist a jar","template":"Pretending or trying and failing to twist [something]","placeholders":["a jar"]}, +{"id":"209621","label":"moving a lamp and coasters away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a lamp","coasters"]}, +{"id":"20162","label":"showing jeep to the camera","template":"Showing [something] to the camera","placeholders":["jeep"]}, +{"id":"154829","label":"plugging microwave into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["microwave","outlet"]}, +{"id":"3021","label":"putting a packet on the edge of the chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a packet","the chair"]}, +{"id":"32539","label":"turning cement planter upside down","template":"Turning [something] upside down","placeholders":["cement planter"]}, +{"id":"53798","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"96771","label":"pushing a knife so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a knife"]}, +{"id":"5903","label":"plugging a fragrance diffuser into a wall socket","template":"Plugging [something] into [something]","placeholders":["a fragrance diffuser","a wall socket"]}, +{"id":"39506","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"129375","label":"spreading kerchief onto rubix cube","template":"Spreading [something] onto [something]","placeholders":["kerchief","rubix cube"]}, +{"id":"57672","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"32619","label":"pulling two ends of a rubber strip so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber strip"]}, +{"id":"33910","label":"tearing envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["envelope"]}, +{"id":"51717","label":"showing bridge to the camera","template":"Showing [something] to the camera","placeholders":["bridge"]}, +{"id":"64337","label":"throwing hairclip against carton","template":"Throwing [something] against [something]","placeholders":["hairclip","carton"]}, +{"id":"204133","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"142245","label":"taking small stone from pile of stones","template":"Taking [one of many similar things on the table]","placeholders":["small stone from pile of stones"]}, +{"id":"13922","label":"dropping a sandal in front of a shoe","template":"Dropping [something] in front of [something]","placeholders":["a sandal","a shoe"]}, +{"id":"53813","label":"moving feeding bottle and plastic bottel closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["feeding bottle","plastic bottel"]}, +{"id":"85091","label":"showing handkerchief behind coin","template":"Showing [something] behind [something]","placeholders":["handkerchief","coin"]}, +{"id":"138954","label":"pushing green hair comb from right to left","template":"Pushing [something] from right to left","placeholders":["green hair comb"]}, +{"id":"66068","label":"pretending or trying and failing to twist menas","template":"Pretending or trying and failing to twist [something]","placeholders":["menas"]}, +{"id":"58555","label":"turning a bottle of hand lotion upside down","template":"Turning [something] upside down","placeholders":["a bottle of hand lotion"]}, +{"id":"53225","label":"dropping phone onto book","template":"Dropping [something] onto [something]","placeholders":["phone","book"]}, +{"id":"37891","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"41260","label":"pushing a remote with a knife","template":"Pushing [something] with [something]","placeholders":["a remote","a knife"]}, +{"id":"154182","label":"pulling bags out of box","template":"Pulling [something] out of [something]","placeholders":["bags","box"]}, +{"id":"125029","label":"dropping shirt in front of shirt","template":"Dropping [something] in front of [something]","placeholders":["shirt","shirt"]}, +{"id":"115127","label":"turning the camera upwards while filming indian weight machine","template":"Turning the camera upwards while filming [something]","placeholders":["indian weight machine"]}, +{"id":"31811","label":"spinning cd that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cd"]}, +{"id":"44321","label":"putting shoe on a surface","template":"Putting [something] on a surface","placeholders":["shoe"]}, +{"id":"36852","label":"taking magnifying glass out of spectacle box","template":"Taking [something] out of [something]","placeholders":["magnifying glass","spectacle box"]}, +{"id":"101336","label":"showing remote next to mobile","template":"Showing [something] next to [something]","placeholders":["remote","mobile"]}, +{"id":"108574","label":"taking liner out of book","template":"Taking [something] out of [something]","placeholders":["liner","book"]}, +{"id":"118648","label":"showing dinosaur to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur"]}, +{"id":"40602","label":"putting a container upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a container"]}, +{"id":"206632","label":"dropping pill behind bottle","template":"Dropping [something] behind [something]","placeholders":["pill","bottle"]}, +{"id":"37955","label":"spinning paint jug that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint jug"]}, +{"id":"184038","label":"moving red pot holder down","template":"Moving [something] down","placeholders":["red pot holder"]}, +{"id":"204588","label":"covering cell phone with pillow","template":"Covering [something] with [something]","placeholders":["cell phone","pillow"]}, +{"id":"138084","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"39430","label":"uncovering a lipstick lid","template":"Uncovering [something]","placeholders":["a lipstick lid"]}, +{"id":"182381","label":"covering lollipop with card","template":"Covering [something] with [something]","placeholders":["lollipop","card"]}, +{"id":"21401","label":"pouring detergent out of bottle","template":"Pouring [something] out of [something]","placeholders":["detergent","bottle"]}, +{"id":"37950","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"54939","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"197012","label":"putting soda can next to glass","template":"Putting [something] next to [something]","placeholders":["soda can","glass"]}, +{"id":"170934","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"21720","label":"stuffing paper into a cup","template":"Stuffing [something] into [something]","placeholders":["paper","a cup"]}, +{"id":"123334","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"194897","label":"moving a container and another one away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a container","another one"]}, +{"id":"26464","label":"stuffing cloth into glass","template":"Stuffing [something] into [something]","placeholders":["cloth","glass"]}, +{"id":"206093","label":"dropping a matchbox in front of a card","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a card"]}, +{"id":"212941","label":"wrapper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["wrapper"]}, +{"id":"126255","label":"attaching block to block","template":"Attaching [something] to [something]","placeholders":["block","block"]}, +{"id":"60729","label":"turning the camera upwards while filming fishes","template":"Turning the camera upwards while filming [something]","placeholders":["fishes"]}, +{"id":"182132","label":"taking silver pen among other pens on table","template":"Taking [one of many similar things on the table]","placeholders":["silver pen among other pens on table"]}, +{"id":"177747","label":"moving scissor up","template":"Moving [something] up","placeholders":["scissor"]}, +{"id":"41420","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"14263","label":"attaching usb to charger","template":"Attaching [something] to [something]","placeholders":["usb","charger"]}, +{"id":"219524","label":"putting 2 hair bands onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bands","black pouch"]}, +{"id":"153239","label":"spilling water onto wood box","template":"Spilling [something] onto [something]","placeholders":["water","wood box"]}, +{"id":"127737","label":"showing pen behind cup","template":"Showing [something] behind [something]","placeholders":["pen","cup"]}, +{"id":"220375","label":"moving plant away from phone","template":"Moving [something] away from [something]","placeholders":["plant","phone"]}, +{"id":"89412","label":"holding aim toothpaste","template":"Holding [something]","placeholders":["aim toothpaste"]}, +{"id":"35213","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"108246","label":"putting a bottle in front of a rubbish bin","template":"Putting [something] in front of [something]","placeholders":["a bottle","a rubbish bin"]}, +{"id":"77875","label":"putting a scissor that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a scissor"]}, +{"id":"118752","label":"lifting notepad with remote on it","template":"Lifting [something] with [something] on it","placeholders":["notepad","remote"]}, +{"id":"112658","label":"putting sauce bottle on a surface","template":"Putting [something] on a surface","placeholders":["sauce bottle"]}, +{"id":"80536","label":"pretending to be tearing white paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["white paper"]}, +{"id":"96317","label":"putting something next to something","template":"Putting [something] next to [something]","placeholders":["something","something"]}, +{"id":"207866","label":"pretending to sprinkle air onto paper","template":"Pretending to sprinkle air onto [something]","placeholders":["paper"]}, +{"id":"84787","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"117165","label":"plugging cable into headphones","template":"Plugging [something] into [something]","placeholders":["cable","headphones"]}, +{"id":"207856","label":"holding lid over container","template":"Holding [something] over [something]","placeholders":["lid","container"]}, +{"id":"209914","label":"touching (without moving) ball of mouse","template":"Touching (without moving) [part] of [something]","placeholders":["ball","mouse"]}, +{"id":"128332","label":"putting pen onto box","template":"Putting [something] onto [something]","placeholders":["pen","box"]}, +{"id":"219850","label":"pulling a comb from left to right","template":"Pulling [something] from left to right","placeholders":["a comb"]}, +{"id":"172813","label":"pushing a bottle of glue so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle of glue"]}, +{"id":"98789","label":"pushing paint with phone","template":"Pushing [something] with [something]","placeholders":["paint","phone"]}, +{"id":"52025","label":"closing a children's book","template":"Closing [something]","placeholders":["a children's book"]}, +{"id":"156752","label":"laying battery on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["battery"]}, +{"id":"198026","label":"showing mug behind book","template":"Showing [something] behind [something]","placeholders":["mug","book"]}, +{"id":"68634","label":"showing that tin is empty","template":"Showing that [something] is empty","placeholders":["tin"]}, +{"id":"104547","label":"stuffing cover into lipstick","template":"Stuffing [something] into [something]","placeholders":["cover","lipstick"]}, +{"id":"131497","label":"hitting a box with a pillow","template":"Hitting [something] with [something]","placeholders":["a box","a pillow"]}, +{"id":"216157","label":"pretending to put a pen underneath a book","template":"Pretending to put [something] underneath [something]","placeholders":["a pen","a book"]}, +{"id":"145929","label":"pushing tape dispenser from left to right","template":"Pushing [something] from left to right","placeholders":["tape dispenser"]}, +{"id":"88041","label":"putting mouse in front of cutter","template":"Putting [something] in front of [something]","placeholders":["mouse","cutter"]}, +{"id":"207568","label":"putting flashdisk next to box","template":"Putting [something] next to [something]","placeholders":["flashdisk","box"]}, +{"id":"185292","label":"showing that a mug is empty","template":"Showing that [something] is empty","placeholders":["a mug"]}, +{"id":"219773","label":"putting egg","template":"Putting [something similar to other things that are already on the table]","placeholders":["egg"]}, +{"id":"37854","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"64031","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"70031","label":"pushing double-sided adhesive tape from left to right","template":"Pushing [something] from left to right","placeholders":["double-sided adhesive tape"]}, +{"id":"139884","label":"moving hair comb down","template":"Moving [something] down","placeholders":["hair comb"]}, +{"id":"42520","label":"trying but failing to attach stick to doorknob because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["stick","doorknob"]}, +{"id":"54905","label":"showing small water fall to the camera","template":"Showing [something] to the camera","placeholders":["small water fall"]}, +{"id":"110660","label":"throwing book","template":"Throwing [something]","placeholders":["book"]}, +{"id":"15588","label":"twisting packet","template":"Twisting [something]","placeholders":["packet"]}, +{"id":"1684","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"151923","label":"uncovering paper","template":"Uncovering [something]","placeholders":["paper"]}, +{"id":"149720","label":"dropping water botle into purse","template":"Dropping [something] into [something]","placeholders":["water botle","purse"]}, +{"id":"29376","label":"spinning a cup cover so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a cup cover"]}, +{"id":"112335","label":"moving inline skate wheel and inline skate wheel away from each other","template":"Moving [something] and [something] away from each other","placeholders":["inline skate wheel","inline skate wheel"]}, +{"id":"112154","label":"plugging cord into cord","template":"Plugging [something] into [something]","placeholders":["cord","cord"]}, +{"id":"111998","label":"putting knife into glass cup","template":"Putting [something] into [something]","placeholders":["knife","glass cup"]}, +{"id":"62715","label":"tearing a ticket just a little bit","template":"Tearing [something] just a little bit","placeholders":["a ticket"]}, +{"id":"16474","label":"showing gate to the camera","template":"Showing [something] to the camera","placeholders":["gate"]}, +{"id":"97620","label":"twisting dollar","template":"Twisting [something]","placeholders":["dollar"]}, +{"id":"67297","label":"folding dish cloth","template":"Folding [something]","placeholders":["dish cloth"]}, +{"id":"45121","label":"putting bagged gloves upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["bagged gloves"]}, +{"id":"172290","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"176020","label":"stuffing papers into trash can","template":"Stuffing [something] into [something]","placeholders":["papers","trash can"]}, +{"id":"118112","label":"moving fuel can towards the camera","template":"Moving [something] towards the camera","placeholders":["fuel can"]}, +{"id":"87609","label":"lifting book with tape on it","template":"Lifting [something] with [something] on it","placeholders":["book","tape"]}, +{"id":"6458","label":"lifting pencil up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["pencil"]}, +{"id":"128646","label":"moving coin up","template":"Moving [something] up","placeholders":["coin"]}, +{"id":"61244","label":"plugging earphones into a mobile","template":"Plugging [something] into [something]","placeholders":["earphones","a mobile"]}, +{"id":"187046","label":"poking mouse so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["mouse"]}, +{"id":"190516","label":"putting a bottle of tool oil upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle of tool oil"]}, +{"id":"168008","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"188239","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"16820","label":"taking deo out of bagback","template":"Taking [something] out of [something]","placeholders":["deo","bagback"]}, +{"id":"103125","label":"putting milk jug upright on the table","template":"Putting [something] upright on the table","placeholders":["milk jug"]}, +{"id":"94196","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"103701","label":"showing thermos bottle behind box","template":"Showing [something] behind [something]","placeholders":["thermos bottle","box"]}, +{"id":"64019","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"53642","label":"pulling a bracelet from left to right","template":"Pulling [something] from left to right","placeholders":["a bracelet"]}, +{"id":"177254","label":"trying but failing to attach a ruler to paper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a ruler","paper"]}, +{"id":"134068","label":"letting a steel wheel roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a steel wheel"]}, +{"id":"46575","label":"hitting a wine glass with a penny","template":"Hitting [something] with [something]","placeholders":["a wine glass","a penny"]}, +{"id":"135321","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"87604","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"181382","label":"bending spaghetti noodle until it breaks","template":"Bending [something] until it breaks","placeholders":["spaghetti noodle"]}, +{"id":"121286","label":"tilting a calendar with a ruler on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a calendar","a ruler"]}, +{"id":"100499","label":"pushing a makeup tube so it spins","template":"Pushing [something] so it spins","placeholders":["a makeup tube"]}, +{"id":"120582","label":"pretending to put keys into bag","template":"Pretending to put [something] into [something]","placeholders":["keys","bag"]}, +{"id":"201535","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"69849","label":"poking teddy bear so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["teddy bear"]}, +{"id":"72304","label":"putting a card into a box","template":"Putting [something] into [something]","placeholders":["a card","a box"]}, +{"id":"188518","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"113332","label":"moving horse and cow closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["horse","cow"]}, +{"id":"147059","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"38787","label":"pretending to sprinkle air onto book","template":"Pretending to sprinkle air onto [something]","placeholders":["book"]}, +{"id":"155024","label":"moving pebble away from metal rod","template":"Moving [something] away from [something]","placeholders":["pebble","metal rod"]}, +{"id":"125839","label":"trying to bend a screwdriver so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a screwdriver"]}, +{"id":"166273","label":"stuffing cap into backpack","template":"Stuffing [something] into [something]","placeholders":["cap","backpack"]}, +{"id":"170503","label":"squeezing baby toy","template":"Squeezing [something]","placeholders":["baby toy"]}, +{"id":"195086","label":"turning the camera left while filming sunset","template":"Turning the camera left while filming [something]","placeholders":["sunset"]}, +{"id":"176821","label":"pouring soda out of can","template":"Pouring [something] out of [something]","placeholders":["soda","can"]}, +{"id":"129367","label":"putting two coasters onto table","template":"Putting [number of] [something] onto [something]","placeholders":["two","coasters","table"]}, +{"id":"143253","label":"spilling water next to a padlock","template":"Spilling [something] next to [something]","placeholders":["water","a padlock"]}, +{"id":"165409","label":"holding a toy owl behind a frisby","template":"Holding [something] behind [something]","placeholders":["a toy owl","a frisby"]}, +{"id":"103761","label":"pushing a box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a box"]}, +{"id":"178787","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"212642","label":"putting a hammer next to a child toy","template":"Putting [something] next to [something]","placeholders":["a hammer","a child toy"]}, +{"id":"142963","label":"covering a candle with a cover","template":"Covering [something] with [something]","placeholders":["a candle","a cover"]}, +{"id":"18894","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"114255","label":"lifting plastic container with plastic container on it","template":"Lifting [something] with [something] on it","placeholders":["plastic container","plastic container"]}, +{"id":"193509","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"47218","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"45521","label":"showing a glas bottle behind a wire","template":"Showing [something] behind [something]","placeholders":["a glas bottle","a wire"]}, +{"id":"110453","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"32256","label":"pushing makeup storage so it spins","template":"Pushing [something] so it spins","placeholders":["makeup storage"]}, +{"id":"118971","label":"spreading old tree leaves onto small tree","template":"Spreading [something] onto [something]","placeholders":["old tree leaves","small tree"]}, +{"id":"98639","label":"pretending to poke a water bottle","template":"Pretending to poke [something]","placeholders":["a water bottle"]}, +{"id":"93458","label":"showing cup on top of guitar","template":"Showing [something] on top of [something]","placeholders":["cup","guitar"]}, +{"id":"132707","label":"toy car being deflected from another toy car","template":"[Something] being deflected from [something]","placeholders":["toy car","another toy car"]}, +{"id":"194295","label":"holding banana in front of plate","template":"Holding [something] in front of [something]","placeholders":["banana","plate"]}, +{"id":"41430","label":"pretending to be tearing shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shirt"]}, +{"id":"187275","label":"spinning vase that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["vase"]}, +{"id":"9304","label":"toy colliding with toy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["toy","toy"]}, +{"id":"10747","label":"closing packet","template":"Closing [something]","placeholders":["packet"]}, +{"id":"48836","label":"putting plush stitch onto mug","template":"Putting [something] onto [something]","placeholders":["plush stitch","mug"]}, +{"id":"21147","label":"dropping pen next to watch","template":"Dropping [something] next to [something]","placeholders":["pen","watch"]}, +{"id":"122676","label":"showing banana behind pot","template":"Showing [something] behind [something]","placeholders":["banana","pot"]}, +{"id":"17062","label":"covering a saucepan with a lid","template":"Covering [something] with [something]","placeholders":["a saucepan","a lid"]}, +{"id":"215523","label":"putting bodybuilding weight on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bodybuilding weight"]}, +{"id":"145084","label":"putting bottle of water upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle of water"]}, +{"id":"88445","label":"pushing glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glass"]}, +{"id":"65206","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185722","label":"turning the camera upwards while filming beach","template":"Turning the camera upwards while filming [something]","placeholders":["beach"]}, +{"id":"58520","label":"pushing spectacle box from left to right","template":"Pushing [something] from left to right","placeholders":["spectacle box"]}, +{"id":"65968","label":"approaching wardrobe with your camera","template":"Approaching [something] with your camera","placeholders":["wardrobe"]}, +{"id":"109699","label":"pushing a toilet paper roll so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a toilet paper roll"]}, +{"id":"42650","label":"scooping sugar up with a spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","a spoon"]}, +{"id":"135620","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"117888","label":"twisting hair","template":"Twisting [something]","placeholders":["hair"]}, +{"id":"24299","label":"covering a lighter with a piece of paper","template":"Covering [something] with [something]","placeholders":["a lighter","a piece of paper"]}, +{"id":"204259","label":"moving red spoon away from blue spoon","template":"Moving [something] away from [something]","placeholders":["red spoon","blue spoon"]}, +{"id":"180556","label":"putting blue colour bottle cap into spectacle box","template":"Putting [something] into [something]","placeholders":["blue colour bottle cap","spectacle box"]}, +{"id":"84296","label":"plugging iphone cord into electric socket","template":"Plugging [something] into [something]","placeholders":["iphone cord","electric socket"]}, +{"id":"42077","label":"moving mobile and diary away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mobile","diary"]}, +{"id":"36443","label":"lifting scissors with pen on it","template":"Lifting [something] with [something] on it","placeholders":["scissors","pen"]}, +{"id":"219134","label":"moving a deodorant up","template":"Moving [something] up","placeholders":["a deodorant"]}, +{"id":"40319","label":"putting phone underneath cloth","template":"Putting [something] underneath [something]","placeholders":["phone","cloth"]}, +{"id":"2320","label":"spinning comb that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["comb"]}, +{"id":"69566","label":"plugging cable into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","phone"]}, +{"id":"136722","label":"covering a plate with a towel","template":"Covering [something] with [something]","placeholders":["a plate","a towel"]}, +{"id":"135893","label":"hitting a nail with a hammer","template":"Hitting [something] with [something]","placeholders":["a nail","a hammer"]}, +{"id":"124037","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"68466","label":"tipping the squeeze over","template":"Tipping [something] over","placeholders":["the squeeze"]}, +{"id":"201017","label":"covering a cleansing pad with a paper","template":"Covering [something] with [something]","placeholders":["a cleansing pad","a paper"]}, +{"id":"196516","label":"removing muug, revealing coin behind","template":"Removing [something], revealing [something] behind","placeholders":["muug","coin"]}, +{"id":"53451","label":"pretending to take box from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["box","ground"]}, +{"id":"64651","label":"pushing water bottle onto another water bottle","template":"Pushing [something] onto [something]","placeholders":["water bottle","another water bottle"]}, +{"id":"35530","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"43944","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"47554","label":"tilting cup with comb on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["cup","comb"]}, +{"id":"200568","label":"throwing water-can in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["water-can"]}, +{"id":"62866","label":"approaching wardrobe with your camera","template":"Approaching [something] with your camera","placeholders":["wardrobe"]}, +{"id":"29155","label":"turning a deodorant upside down","template":"Turning [something] upside down","placeholders":["a deodorant"]}, +{"id":"14671","label":"rolling lemon fruit on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon fruit"]}, +{"id":"105526","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"56175","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"208112","label":"pushing a tape with scissors","template":"Pushing [something] with [something]","placeholders":["a tape","scissors"]}, +{"id":"12891","label":"moving scotch tape down","template":"Moving [something] down","placeholders":["scotch tape"]}, +{"id":"207737","label":"pretending or trying and failing to twist pikachu plastic doll","template":"Pretending or trying and failing to twist [something]","placeholders":["pikachu plastic doll"]}, +{"id":"13096","label":"pushing shot glass from left to right","template":"Pushing [something] from left to right","placeholders":["shot glass"]}, +{"id":"195109","label":"putting toy in front of spectical box","template":"Putting [something] in front of [something]","placeholders":["toy","spectical box"]}, +{"id":"68373","label":"putting a pin upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pin"]}, +{"id":"18320","label":"attaching clasp to bar","template":"Attaching [something] to [something]","placeholders":["clasp","bar"]}, +{"id":"104854","label":"dropping apple into basket","template":"Dropping [something] into [something]","placeholders":["apple","basket"]}, +{"id":"9646","label":"cube falling like a rock","template":"[Something] falling like a rock","placeholders":["cube"]}, +{"id":"57009","label":"taking taking adapter","template":"Taking [one of many similar things on the table]","placeholders":["taking adapter"]}, +{"id":"29458","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"171004","label":"putting ruler next to mug","template":"Putting [something] next to [something]","placeholders":["ruler","mug"]}, +{"id":"196951","label":"showing that coin is inside container","template":"Showing that [something] is inside [something]","placeholders":["coin","container"]}, +{"id":"114475","label":"dropping paint bottle into cup","template":"Dropping [something] into [something]","placeholders":["paint bottle","cup"]}, +{"id":"61000","label":"throwing a small toy","template":"Throwing [something]","placeholders":["a small toy"]}, +{"id":"203731","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"77785","label":"dropping pen in front of pencil case","template":"Dropping [something] in front of [something]","placeholders":["pen","pencil case"]}, +{"id":"152051","label":"turning green water bottle upside down","template":"Turning [something] upside down","placeholders":["green water bottle"]}, +{"id":"118298","label":"putting bottle next to bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle next to bottles"]}, +{"id":"65824","label":"dropping a matchbox in front of a plate","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a plate"]}, +{"id":"189640","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"28289","label":"taking a crayon out of a pot","template":"Taking [something] out of [something]","placeholders":["a crayon","a pot"]}, +{"id":"175432","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"95354","label":"putting tablet box upright on the table","template":"Putting [something] upright on the table","placeholders":["tablet box"]}, +{"id":"126781","label":"putting pen, keychain and pouch on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","keychain","pouch"]}, +{"id":"157197","label":"plugging extention into socket","template":"Plugging [something] into [something]","placeholders":["extention","socket"]}, +{"id":"29703","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"158134","label":"taking mineral water","template":"Taking [one of many similar things on the table]","placeholders":["mineral water"]}, +{"id":"210344","label":"plugging a cable into the wall","template":"Plugging [something] into [something]","placeholders":["a cable","the wall"]}, +{"id":"201729","label":"tilting a plate with a spatula on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a plate","a spatula"]}, +{"id":"219416","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"51601","label":"trying but failing to attach sheet of headache tablets to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["sheet of headache tablets","the wall"]}, +{"id":"187254","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"32909","label":"showing that a flask is empty","template":"Showing that [something] is empty","placeholders":["a flask"]}, +{"id":"99414","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"104492","label":"covering clock with cloth","template":"Covering [something] with [something]","placeholders":["clock","cloth"]}, +{"id":"37528","label":"pulling black hair tie from left to right","template":"Pulling [something] from left to right","placeholders":["black hair tie"]}, +{"id":"171614","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"9054","label":"holding bottle cap in front of box","template":"Holding [something] in front of [something]","placeholders":["bottle cap","box"]}, +{"id":"127761","label":"putting toast into toaster","template":"Putting [something] into [something]","placeholders":["toast","toaster"]}, +{"id":"29323","label":"pretending to pick supplement bottle up","template":"Pretending to pick [something] up","placeholders":["supplement bottle"]}, +{"id":"102637","label":"dropping a cofee cup onto a backpack","template":"Dropping [something] onto [something]","placeholders":["a cofee cup","a backpack"]}, +{"id":"169770","label":"covering flashlight with paper bowl","template":"Covering [something] with [something]","placeholders":["flashlight","paper bowl"]}, +{"id":"83315","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"150634","label":"taking vegetable ice cream scoop","template":"Taking [one of many similar things on the table]","placeholders":["vegetable ice cream scoop"]}, +{"id":"50421","label":"taking bottle out of bowl","template":"Taking [something] out of [something]","placeholders":["bottle","bowl"]}, +{"id":"74292","label":"pretending to turn the bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["the bottle"]}, +{"id":"210861","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"39257","label":"pushing sunglasses off of table","template":"Pushing [something] off of [something]","placeholders":["sunglasses","table"]}, +{"id":"50546","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"182103","label":"tissue paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue paper"]}, +{"id":"85142","label":"pretending to put brush on a surface","template":"Pretending to put [something] on a surface","placeholders":["brush"]}, +{"id":"51793","label":"pretending to pick mobile phone up","template":"Pretending to pick [something] up","placeholders":["mobile phone"]}, +{"id":"168423","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"130921","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"148827","label":"dropping a cup in front of text books","template":"Dropping [something] in front of [something]","placeholders":["a cup","text books"]}, +{"id":"22486","label":"stacking 4 pennies","template":"Stacking [number of] [something]","placeholders":["4","pennies"]}, +{"id":"166397","label":"lifting up one end of stick, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["stick"]}, +{"id":"187851","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"14393","label":"putting scissors on a surface","template":"Putting [something] on a surface","placeholders":["scissors"]}, +{"id":"193856","label":"taking cup and saucer from table","template":"Taking [something] from [somewhere]","placeholders":["cup and saucer","table"]}, +{"id":"83341","label":"uncovering bracelet","template":"Uncovering [something]","placeholders":["bracelet"]}, +{"id":"175543","label":"spinning whiteboard marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["whiteboard marker"]}, +{"id":"80344","label":"letting an apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["an apple"]}, +{"id":"160274","label":"showing a fork next to a glass","template":"Showing [something] next to [something]","placeholders":["a fork","a glass"]}, +{"id":"88019","label":"covering pancile with sheed of paper","template":"Covering [something] with [something]","placeholders":["pancile","sheed of paper"]}, +{"id":"96829","label":"stuffing phone into case","template":"Stuffing [something] into [something]","placeholders":["phone","case"]}, +{"id":"152709","label":"holding teeezers over mouthwash","template":"Holding [something] over [something]","placeholders":["teeezers","mouthwash"]}, +{"id":"76081","label":"taking ball out of bowl","template":"Taking [something] out of [something]","placeholders":["ball","bowl"]}, +{"id":"90769","label":"letting enamel roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["enamel"]}, +{"id":"124013","label":"moving glass closer to bottle","template":"Moving [something] closer to [something]","placeholders":["glass","bottle"]}, +{"id":"205598","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"65069","label":"stuffing paper into bag","template":"Stuffing [something] into [something]","placeholders":["paper","bag"]}, +{"id":"46785","label":"pretending to pick bracelet up","template":"Pretending to pick [something] up","placeholders":["bracelet"]}, +{"id":"159959","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"214741","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"191875","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"63808","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"108199","label":"putting phone on a surface","template":"Putting [something] on a surface","placeholders":["phone"]}, +{"id":"76453","label":"twisting usb cable","template":"Twisting [something]","placeholders":["usb cable"]}, +{"id":"194486","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"27217","label":"pushing a bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a bottle","scissors"]}, +{"id":"111193","label":"putting coaster underneath cloth","template":"Putting [something] underneath [something]","placeholders":["coaster","cloth"]}, +{"id":"88986","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"120989","label":"moving lime and lime closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lime","lime"]}, +{"id":"115880","label":"uncovering eraser","template":"Uncovering [something]","placeholders":["eraser"]}, +{"id":"113414","label":"pretending to open box from videocard without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box from videocard"]}, +{"id":"185664","label":"a kiwi being deflected from a litter bin","template":"[Something] being deflected from [something]","placeholders":["a kiwi","a litter bin"]}, +{"id":"190265","label":"pushing a card with a box","template":"Pushing [something] with [something]","placeholders":["a card","a box"]}, +{"id":"12682","label":"pushing pomegranate so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pomegranate"]}, +{"id":"35391","label":"putting a beer can in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a beer can","a cup"]}, +{"id":"165539","label":"lifting a surface with plastic container on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["plastic container"]}, +{"id":"40877","label":"uncovering saucepan","template":"Uncovering [something]","placeholders":["saucepan"]}, +{"id":"111954","label":"bending a spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a spoon"]}, +{"id":"168084","label":"taking headphones out of bag","template":"Taking [something] out of [something]","placeholders":["headphones","bag"]}, +{"id":"166205","label":"pulling red watch case from right to left","template":"Pulling [something] from right to left","placeholders":["red watch case"]}, +{"id":"29050","label":"taking a colored pencil","template":"Taking [one of many similar things on the table]","placeholders":["a colored pencil"]}, +{"id":"116709","label":"pretending to spread air onto phone cover","template":"Pretending to spread air onto [something]","placeholders":["phone cover"]}, +{"id":"17810","label":"pushing shoe with clothes peg","template":"Pushing [something] with [something]","placeholders":["shoe","clothes peg"]}, +{"id":"164677","label":"pushing water bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["water bottle"]}, +{"id":"167156","label":"putting a napkin that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a napkin"]}, +{"id":"18610","label":"putting pen onto holder so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pen","holder"]}, +{"id":"103589","label":"poking lipstick so that it falls over","template":"Poking [something] so that it falls over","placeholders":["lipstick"]}, +{"id":"183915","label":"pulling pen onto table","template":"Pulling [something] onto [something]","placeholders":["pen","table"]}, +{"id":"71894","label":"spinning red, hard, plastic toy ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["red, hard, plastic toy ball"]}, +{"id":"23486","label":"pouring water into a mug","template":"Pouring [something] into [something]","placeholders":["water","a mug"]}, +{"id":"71549","label":"letting a steel wheel roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a steel wheel"]}, +{"id":"204457","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"197377","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"220755","label":"moving a bottle and a box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a box"]}, +{"id":"42290","label":"dropping lighter behind box","template":"Dropping [something] behind [something]","placeholders":["lighter","box"]}, +{"id":"220023","label":"pretending to poke lighter","template":"Pretending to poke [something]","placeholders":["lighter"]}, +{"id":"96610","label":"spinning egg so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["egg"]}, +{"id":"146104","label":"putting coin next to mug","template":"Putting [something] next to [something]","placeholders":["coin","mug"]}, +{"id":"175393","label":"poking stuffed cat so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["stuffed cat"]}, +{"id":"21781","label":"picking chair case up","template":"Picking [something] up","placeholders":["chair case"]}, +{"id":"56489","label":"spilling water behind door","template":"Spilling [something] behind [something]","placeholders":["water","door"]}, +{"id":"55421","label":"closing a pot","template":"Closing [something]","placeholders":["a pot"]}, +{"id":"101471","label":"plugging computer cord into computer","template":"Plugging [something] into [something]","placeholders":["computer cord","computer"]}, +{"id":"168369","label":"pretending to throw cup","template":"Pretending to throw [something]","placeholders":["cup"]}, +{"id":"19302","label":"price tag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["price tag"]}, +{"id":"174522","label":"squeezing apple","template":"Squeezing [something]","placeholders":["apple"]}, +{"id":"162318","label":"covering jar with lid","template":"Covering [something] with [something]","placeholders":["jar","lid"]}, +{"id":"182698","label":"hitting knee with paintbrush","template":"Hitting [something] with [something]","placeholders":["knee","paintbrush"]}, +{"id":"74252","label":"stuffing wrapper into yogurt cup","template":"Stuffing [something] into [something]","placeholders":["wrapper","yogurt cup"]}, +{"id":"79857","label":"laying cereal on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cereal"]}, +{"id":"201866","label":"dropping a peg onto a container","template":"Dropping [something] onto [something]","placeholders":["a peg","a container"]}, +{"id":"15848","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"168690","label":"holding control behind game","template":"Holding [something] behind [something]","placeholders":["control","game"]}, +{"id":"107747","label":"attaching microphone to stand","template":"Attaching [something] to [something]","placeholders":["microphone","stand"]}, +{"id":"8318","label":"putting a marker on a surface","template":"Putting [something] on a surface","placeholders":["a marker"]}, +{"id":"54318","label":"bending swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["swab"]}, +{"id":"136539","label":"turning the camera right while filming fire extinguisher","template":"Turning the camera right while filming [something]","placeholders":["fire extinguisher"]}, +{"id":"4963","label":"lifting a hand with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a hand","a pen"]}, +{"id":"24550","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"201800","label":"turning tablet box upside down","template":"Turning [something] upside down","placeholders":["tablet box"]}, +{"id":"204053","label":"dropping ball in front of car","template":"Dropping [something] in front of [something]","placeholders":["ball","car"]}, +{"id":"212965","label":"showing aquarium to the camera","template":"Showing [something] to the camera","placeholders":["aquarium"]}, +{"id":"55788","label":"pouring gems into small bottle until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["gems","small bottle"]}, +{"id":"159537","label":"putting a spray bottle behind the packet","template":"Putting [something] behind [something]","placeholders":["a spray bottle","the packet"]}, +{"id":"171274","label":"pretending to take yellow ball from pile of yellow balls","template":"Pretending to take [something] from [somewhere]","placeholders":["yellow ball","pile of yellow balls"]}, +{"id":"101639","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"42966","label":"hanger being deflected from moving car","template":"[Something] being deflected from [something]","placeholders":["hanger","moving car"]}, +{"id":"128952","label":"covering a can with a napkin","template":"Covering [something] with [something]","placeholders":["a can","a napkin"]}, +{"id":"32201","label":"pulling glasses from left to right","template":"Pulling [something] from left to right","placeholders":["glasses"]}, +{"id":"180070","label":"pushing hotpot from right to left","template":"Pushing [something] from right to left","placeholders":["hotpot"]}, +{"id":"121858","label":"a lighter falling like a rock","template":"[Something] falling like a rock","placeholders":["a lighter"]}, +{"id":"103229","label":"moving pen and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","spoon"]}, +{"id":"68087","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"68376","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"180965","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"215114","label":"moving toffee container towards the camera","template":"Moving [something] towards the camera","placeholders":["toffee container"]}, +{"id":"220234","label":"rolling clothpin on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["clothpin"]}, +{"id":"94348","label":"throwing tennis ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tennis ball"]}, +{"id":"12980","label":"pretending to sprinkle air onto a mirror","template":"Pretending to sprinkle air onto [something]","placeholders":["a mirror"]}, +{"id":"176334","label":"throwing carton box","template":"Throwing [something]","placeholders":["carton box"]}, +{"id":"169002","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"136745","label":"covering cell phone with notebook","template":"Covering [something] with [something]","placeholders":["cell phone","notebook"]}, +{"id":"126058","label":"lifting a surface with a die on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a die"]}, +{"id":"110120","label":"putting a bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle"]}, +{"id":"33495","label":"plugging stopper into drain but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["stopper","drain"]}, +{"id":"127667","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"54316","label":"spinning gluestick that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["gluestick"]}, +{"id":"72811","label":"moving button up","template":"Moving [something] up","placeholders":["button"]}, +{"id":"127337","label":"showing a vessel on top of the grinder","template":"Showing [something] on top of [something]","placeholders":["a vessel","the grinder"]}, +{"id":"27358","label":"stuffing a towel into a hat","template":"Stuffing [something] into [something]","placeholders":["a towel","a hat"]}, +{"id":"196426","label":"poking a stack of wood blocks without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["wood blocks"]}, +{"id":"122218","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"101470","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"167419","label":"holding a ball in front of a door","template":"Holding [something] in front of [something]","placeholders":["a ball","a door"]}, +{"id":"32519","label":"spinning a penny so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a penny"]}, +{"id":"213105","label":"uncovering cellphone","template":"Uncovering [something]","placeholders":["cellphone"]}, +{"id":"66122","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"183108","label":"pretending to take battery from table","template":"Pretending to take [something] from [somewhere]","placeholders":["battery","table"]}, +{"id":"153776","label":"mp3 player falling like a rock","template":"[Something] falling like a rock","placeholders":["mp3 player"]}, +{"id":"167007","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"85935","label":"dropping cufflinks behind a padlock","template":"Dropping [something] behind [something]","placeholders":["cufflinks","a padlock"]}, +{"id":"146051","label":"dropping wallet behind mouse","template":"Dropping [something] behind [something]","placeholders":["wallet","mouse"]}, +{"id":"55257","label":"showing earrings to the camera","template":"Showing [something] to the camera","placeholders":["earrings"]}, +{"id":"92571","label":"failing to put pen drive into a pen cap because pen drive does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["pen drive","a pen cap","pen drive"]}, +{"id":"176313","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"107289","label":"putting pen into cup","template":"Putting [something] into [something]","placeholders":["pen","cup"]}, +{"id":"8444","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"213727","label":"taking smart phone out of handbag","template":"Taking [something] out of [something]","placeholders":["smart phone","handbag"]}, +{"id":"8800","label":"turning the camera right while filming poster","template":"Turning the camera right while filming [something]","placeholders":["poster"]}, +{"id":"101989","label":"taking coin out of mug","template":"Taking [something] out of [something]","placeholders":["coin","mug"]}, +{"id":"187743","label":"pulling two ends of something so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["something"]}, +{"id":"15112","label":"pushing a cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a cup"]}, +{"id":"20051","label":"turning the camera left while filming iron","template":"Turning the camera left while filming [something]","placeholders":["iron"]}, +{"id":"44211","label":"holding crayon over table","template":"Holding [something] over [something]","placeholders":["crayon","table"]}, +{"id":"139512","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"123467","label":"putting car key on a surface","template":"Putting [something] on a surface","placeholders":["car key"]}, +{"id":"117874","label":"moving a bottle and a water container closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a water container"]}, +{"id":"91295","label":"dropping wallet in front of mouse","template":"Dropping [something] in front of [something]","placeholders":["wallet","mouse"]}, +{"id":"129123","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"20609","label":"putting coaster and remote on the table","template":"Putting [something] and [something] on the table","placeholders":["coaster","remote"]}, +{"id":"139085","label":"pushing hair gum from left to right","template":"Pushing [something] from left to right","placeholders":["hair gum"]}, +{"id":"26381","label":"poking a hole into a piece of paper","template":"Poking a hole into [some substance]","placeholders":["a piece of paper"]}, +{"id":"166275","label":"a water can colliding with another water can and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a water can","another water can"]}, +{"id":"38302","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"10873","label":"taking glass out of drawer","template":"Taking [something] out of [something]","placeholders":["glass","drawer"]}, +{"id":"75268","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"104999","label":"pulling paper from behind of paper","template":"Pulling [something] from behind of [something]","placeholders":["paper","paper"]}, +{"id":"8235","label":"holding pencil in front of tape","template":"Holding [something] in front of [something]","placeholders":["pencil","tape"]}, +{"id":"209264","label":"holding a pot over a bowl","template":"Holding [something] over [something]","placeholders":["a pot","a bowl"]}, +{"id":"192155","label":"covering water bottle with cap","template":"Covering [something] with [something]","placeholders":["water bottle","cap"]}, +{"id":"157822","label":"holding a mobile next to a pen","template":"Holding [something] next to [something]","placeholders":["a mobile","a pen"]}, +{"id":"197702","label":"dropping cow next to box","template":"Dropping [something] next to [something]","placeholders":["cow","box"]}, +{"id":"94224","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"103119","label":"putting a calculator and paper weight on the table","template":"Putting [something] and [something] on the table","placeholders":["a calculator","paper weight"]}, +{"id":"66683","label":"putting paper punching machine that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["paper punching machine"]}, +{"id":"192546","label":"taking a pencil out of pencil holder","template":"Taking [something] out of [something]","placeholders":["a pencil","pencil holder"]}, +{"id":"32233","label":"turning the camera downwards while filming toothpaste tube","template":"Turning the camera downwards while filming [something]","placeholders":["toothpaste tube"]}, +{"id":"175533","label":"turning the camera upwards while filming laptop","template":"Turning the camera upwards while filming [something]","placeholders":["laptop"]}, +{"id":"55164","label":"lifting up one end of a pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pen"]}, +{"id":"123498","label":"dropping pink hat in front of bowl","template":"Dropping [something] in front of [something]","placeholders":["pink hat","bowl"]}, +{"id":"83132","label":"pushing ring so it spins","template":"Pushing [something] so it spins","placeholders":["ring"]}, +{"id":"191067","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"167192","label":"uncovering handy","template":"Uncovering [something]","placeholders":["handy"]}, +{"id":"40166","label":"putting apple into bowl","template":"Putting [something] into [something]","placeholders":["apple","bowl"]}, +{"id":"194342","label":"putting a lighter on a surface","template":"Putting [something] on a surface","placeholders":["a lighter"]}, +{"id":"9633","label":"dropping eraser in front of cup","template":"Dropping [something] in front of [something]","placeholders":["eraser","cup"]}, +{"id":"72135","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"77551","label":"pretending to open boottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["boottle cap"]}, +{"id":"208488","label":"throwing shirt against wall","template":"Throwing [something] against [something]","placeholders":["shirt","wall"]}, +{"id":"54075","label":"putting a glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["a glass"]}, +{"id":"141735","label":"pretending to put mouse next to keyboard","template":"Pretending to put [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"218168","label":"uncovering onion","template":"Uncovering [something]","placeholders":["onion"]}, +{"id":"12696","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209741","label":"letting packing tape roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["packing tape"]}, +{"id":"4521","label":"piling cards up","template":"Piling [something] up","placeholders":["cards"]}, +{"id":"165610","label":"turning a jar of peanutbutter upside down","template":"Turning [something] upside down","placeholders":["a jar of peanutbutter"]}, +{"id":"123768","label":"a pencil colliding with a bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pencil","a bottle"]}, +{"id":"187347","label":"turning the camera upwards while filming plant","template":"Turning the camera upwards while filming [something]","placeholders":["plant"]}, +{"id":"50341","label":"tipping air freshener over","template":"Tipping [something] over","placeholders":["air freshener"]}, +{"id":"194782","label":"showing that this plastic ontainer is empty","template":"Showing that [something] is empty","placeholders":["this plastic ontainer"]}, +{"id":"107108","label":"squeezing a clothespin","template":"Squeezing [something]","placeholders":["a clothespin"]}, +{"id":"19292","label":"poking a stack of boxes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["boxes"]}, +{"id":"58713","label":"laying nail polish bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["nail polish bottle"]}, +{"id":"61566","label":"moving something up","template":"Moving [something] up","placeholders":["something"]}, +{"id":"22712","label":"plugging cord into power strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","power strip"]}, +{"id":"213513","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"186162","label":"grocery bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["grocery bag"]}, +{"id":"130201","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"214367","label":"pretending to pick lighter up","template":"Pretending to pick [something] up","placeholders":["lighter"]}, +{"id":"42866","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"20646","label":"holding cup next to medicine bottle","template":"Holding [something] next to [something]","placeholders":["cup","medicine bottle"]}, +{"id":"77895","label":"showing soda bottle to the camera","template":"Showing [something] to the camera","placeholders":["soda bottle"]}, +{"id":"105986","label":"throwing battery in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["battery"]}, +{"id":"129902","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"38794","label":"dropping a coin onto a card","template":"Dropping [something] onto [something]","placeholders":["a coin","a card"]}, +{"id":"117231","label":"lifting up one end of a ruler, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a ruler"]}, +{"id":"166190","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"75781","label":"lifting a football up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a football"]}, +{"id":"45018","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"76810","label":"showing that teabag is inside box","template":"Showing that [something] is inside [something]","placeholders":["teabag","box"]}, +{"id":"111254","label":"moving screw down","template":"Moving [something] down","placeholders":["screw"]}, +{"id":"84984","label":"moving something away from something","template":"Moving [something] away from [something]","placeholders":["something","something"]}, +{"id":"174825","label":"spinning toothbrush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothbrush"]}, +{"id":"197926","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"31477","label":"turning the camera upwards while filming post box","template":"Turning the camera upwards while filming [something]","placeholders":["post box"]}, +{"id":"217536","label":"wiping soap off of counter","template":"Wiping [something] off of [something]","placeholders":["soap","counter"]}, +{"id":"61693","label":"dropping bottle in front of leptop","template":"Dropping [something] in front of [something]","placeholders":["bottle","leptop"]}, +{"id":"201468","label":"turning the camera downwards while filming radiator","template":"Turning the camera downwards while filming [something]","placeholders":["radiator"]}, +{"id":"114233","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"159987","label":"showing that pink hair clip is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["pink hair clip","spectacle box"]}, +{"id":"124829","label":"dropping a matchstick behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a padlock"]}, +{"id":"108665","label":"putting piggy bank onto notebook","template":"Putting [something] onto [something]","placeholders":["piggy bank","notebook"]}, +{"id":"219318","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"180167","label":"pushing a chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a chair"]}, +{"id":"45913","label":"paper plate falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper plate"]}, +{"id":"139331","label":"putting coin into cup","template":"Putting [something] into [something]","placeholders":["coin","cup"]}, +{"id":"5571","label":"dropping a key behind a remote","template":"Dropping [something] behind [something]","placeholders":["a key","a remote"]}, +{"id":"50413","label":"plugging cord into cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","cord"]}, +{"id":"193713","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"9519","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"188485","label":"moving remote up","template":"Moving [something] up","placeholders":["remote"]}, +{"id":"40007","label":"showing that food container is empty","template":"Showing that [something] is empty","placeholders":["food container"]}, +{"id":"130735","label":"putting tape into box","template":"Putting [something] into [something]","placeholders":["tape","box"]}, +{"id":"55368","label":"covering can with cloth","template":"Covering [something] with [something]","placeholders":["can","cloth"]}, +{"id":"127452","label":"lifting up one end of a book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a book"]}, +{"id":"7255","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"216846","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"82271","label":"turning the camera upwards while filming squeezable strawberry jam","template":"Turning the camera upwards while filming [something]","placeholders":["squeezable strawberry jam"]}, +{"id":"59605","label":"uncovering spring","template":"Uncovering [something]","placeholders":["spring"]}, +{"id":"145719","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"122885","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"54069","label":"turning the camera left while filming jackfruits","template":"Turning the camera left while filming [something]","placeholders":["jackfruits"]}, +{"id":"120800","label":"lifting a spoon up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a spoon"]}, +{"id":"29648","label":"pulling two ends of watch but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["watch"]}, +{"id":"11533","label":"holding lemon in front of cup","template":"Holding [something] in front of [something]","placeholders":["lemon","cup"]}, +{"id":"37388","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"148151","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"95793","label":"showing deo bottle behind jar","template":"Showing [something] behind [something]","placeholders":["deo bottle","jar"]}, +{"id":"132916","label":"throwing a hairband in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a hairband"]}, +{"id":"196788","label":"holding snack maker over the stove","template":"Holding [something] over [something]","placeholders":["snack maker","the stove"]}, +{"id":"32776","label":"putting book underneath notebook","template":"Putting [something] underneath [something]","placeholders":["book","notebook"]}, +{"id":"54506","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"163960","label":"lifting paper up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["paper"]}, +{"id":"162700","label":"scooping dirt up with dustpan","template":"Scooping [something] up with [something]","placeholders":["dirt","dustpan"]}, +{"id":"47435","label":"holding hand saw blade next to the helmet","template":"Holding [something] next to [something]","placeholders":["hand saw blade","the helmet"]}, +{"id":"76407","label":"holding selfie stick in front of chair","template":"Holding [something] in front of [something]","placeholders":["selfie stick","chair"]}, +{"id":"54445","label":"turning computer mouse upside down","template":"Turning [something] upside down","placeholders":["computer mouse"]}, +{"id":"174822","label":"holding globe in front of painting","template":"Holding [something] in front of [something]","placeholders":["globe","painting"]}, +{"id":"21603","label":"putting jar upright on the table","template":"Putting [something] upright on the table","placeholders":["jar"]}, +{"id":"11508","label":"covering bottle with plastic bag","template":"Covering [something] with [something]","placeholders":["bottle","plastic bag"]}, +{"id":"148325","label":"spinning plastic bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["plastic bottle"]}, +{"id":"193199","label":"lifting up one end of a floor mat, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a floor mat"]}, +{"id":"116734","label":"pushing fan so it spins","template":"Pushing [something] so it spins","placeholders":["fan"]}, +{"id":"148133","label":"pretending to put pencil into mug","template":"Pretending to put [something] into [something]","placeholders":["pencil","mug"]}, +{"id":"182217","label":"hitting a pillow with a spoon","template":"Hitting [something] with [something]","placeholders":["a pillow","a spoon"]}, +{"id":"13996","label":"putting keys next to mug","template":"Putting [something] next to [something]","placeholders":["keys","mug"]}, +{"id":"180326","label":"touching (without moving) top of tank","template":"Touching (without moving) [part] of [something]","placeholders":["top","tank"]}, +{"id":"99723","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"93042","label":"pretending to pick a/c remote up","template":"Pretending to pick [something] up","placeholders":["a/c remote"]}, +{"id":"83878","label":"moving away from water bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["water bottle"]}, +{"id":"78710","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"138149","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"193822","label":"pretending to take pineapple from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["pineapple","ground"]}, +{"id":"192829","label":"bending cotton swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cotton swab"]}, +{"id":"31701","label":"pulling a toy car from left to right","template":"Pulling [something] from left to right","placeholders":["a toy car"]}, +{"id":"136778","label":"pretending to turn pink water bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["pink water bottle"]}, +{"id":"33946","label":"pulling phone from behind of camera","template":"Pulling [something] from behind of [something]","placeholders":["phone","camera"]}, +{"id":"23867","label":"turning candle upside down","template":"Turning [something] upside down","placeholders":["candle"]}, +{"id":"108248","label":"putting 3 screw drivers onto brown note","template":"Putting [number of] [something] onto [something]","placeholders":["3","screw drivers","brown note"]}, +{"id":"154390","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"107551","label":"poking a book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a book"]}, +{"id":"34837","label":"dropping shampoo onto floor","template":"Dropping [something] onto [something]","placeholders":["shampoo","floor"]}, +{"id":"65116","label":"hitting laptop with notebook","template":"Hitting [something] with [something]","placeholders":["laptop","notebook"]}, +{"id":"209951","label":"box colliding with box and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["box","box"]}, +{"id":"29092","label":"tipping cup with spoon over, so spoon falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","spoon","spoon"]}, +{"id":"58500","label":"moving remote across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["remote"]}, +{"id":"34085","label":"squeezing glue","template":"Squeezing [something]","placeholders":["glue"]}, +{"id":"83762","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"49072","label":"lifting a plate with cutlery on it","template":"Lifting [something] with [something] on it","placeholders":["a plate","cutlery"]}, +{"id":"134048","label":"stuffing pens into pouch","template":"Stuffing [something] into [something]","placeholders":["pens","pouch"]}, +{"id":"181524","label":"moving pen and flower closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","flower"]}, +{"id":"188126","label":"closing hot case","template":"Closing [something]","placeholders":["hot case"]}, +{"id":"152050","label":"taking clips out of a container","template":"Taking [something] out of [something]","placeholders":["clips","a container"]}, +{"id":"47566","label":"dropping a matchbox behind a cup","template":"Dropping [something] behind [something]","placeholders":["a matchbox","a cup"]}, +{"id":"208855","label":"twisting tissue","template":"Twisting [something]","placeholders":["tissue"]}, +{"id":"3159","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"17817","label":"putting a fidget spinner on a surface","template":"Putting [something] on a surface","placeholders":["a fidget spinner"]}, +{"id":"1255","label":"plugging a plug head into an extension lead but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug head","an extension lead"]}, +{"id":"204904","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"141073","label":"bending coat hanger so that it deforms","template":"Bending [something] so that it deforms","placeholders":["coat hanger"]}, +{"id":"192236","label":"showing shot glass to the camera","template":"Showing [something] to the camera","placeholders":["shot glass"]}, +{"id":"7113","label":"moving a ball and a glass figure away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a ball","a glass figure"]}, +{"id":"213298","label":"pushing rubix cube so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["rubix cube"]}, +{"id":"187696","label":"putting a bottle with other bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bottle with other bottles"]}, +{"id":"101044","label":"turning the camera upwards while filming a dream catcher","template":"Turning the camera upwards while filming [something]","placeholders":["a dream catcher"]}, +{"id":"205240","label":"spilling coffee onto a dinner plate","template":"Spilling [something] onto [something]","placeholders":["coffee","a dinner plate"]}, +{"id":"27779","label":"stuffing jacket into handbag","template":"Stuffing [something] into [something]","placeholders":["jacket","handbag"]}, +{"id":"42787","label":"putting candy bar upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["candy bar"]}, +{"id":"186565","label":"letting cosmetic roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cosmetic"]}, +{"id":"24049","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"211128","label":"pushing a weight so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a weight"]}, +{"id":"86454","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"112659","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"98345","label":"holding book over books","template":"Holding [something] over [something]","placeholders":["book","books"]}, +{"id":"99268","label":"plugging allout into plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["allout","plug"]}, +{"id":"185040","label":"tearing piece of bread into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of bread"]}, +{"id":"25491","label":"covering torch lighter with towel","template":"Covering [something] with [something]","placeholders":["torch lighter","towel"]}, +{"id":"40681","label":"tipping something with something in it over, so something in it falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["something","something in it","something in it"]}, +{"id":"174361","label":"pretending to pick red pen up","template":"Pretending to pick [something] up","placeholders":["red pen"]}, +{"id":"30014","label":"touching (without moving) leaves of a plant","template":"Touching (without moving) [part] of [something]","placeholders":["leaves","a plant"]}, +{"id":"57631","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"22699","label":"putting vase on a surface","template":"Putting [something] on a surface","placeholders":["vase"]}, +{"id":"84851","label":"folding t-shirt","template":"Folding [something]","placeholders":["t-shirt"]}, +{"id":"95886","label":"holding cup next to chair","template":"Holding [something] next to [something]","placeholders":["cup","chair"]}, +{"id":"178684","label":"showing that lid is empty","template":"Showing that [something] is empty","placeholders":["lid"]}, +{"id":"84109","label":"lifting a bottle with a box on it","template":"Lifting [something] with [something] on it","placeholders":["a bottle","a box"]}, +{"id":"160082","label":"putting a plastic bottle on the edge of a stool so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a plastic bottle","a stool"]}, +{"id":"181873","label":"pushing a cup with a stapler","template":"Pushing [something] with [something]","placeholders":["a cup","a stapler"]}, +{"id":"59866","label":"pulling a disc out of a paper sleeve","template":"Pulling [something] out of [something]","placeholders":["a disc","a paper sleeve"]}, +{"id":"144407","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"214289","label":"putting purple balloon pump on a surface","template":"Putting [something] on a surface","placeholders":["purple balloon pump"]}, +{"id":"220041","label":"holding hand over head","template":"Holding [something] over [something]","placeholders":["hand","head"]}, +{"id":"76625","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"85534","label":"pouring peanuts into a glass","template":"Pouring [something] into [something]","placeholders":["peanuts","a glass"]}, +{"id":"105278","label":"hitting pikachu plush with pen","template":"Hitting [something] with [something]","placeholders":["pikachu plush","pen"]}, +{"id":"132931","label":"pretending to put a pen next to a bag","template":"Pretending to put [something] next to [something]","placeholders":["a pen","a bag"]}, +{"id":"42689","label":"showing that container is empty","template":"Showing that [something] is empty","placeholders":["container"]}, +{"id":"177502","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"205583","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"126834","label":"dropping a book next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a book","a spoon"]}, +{"id":"117298","label":"spinning a wooden ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a wooden ball"]}, +{"id":"78197","label":"uncovering stone","template":"Uncovering [something]","placeholders":["stone"]}, +{"id":"119483","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"217531","label":"stacking two plates","template":"Stacking [number of] [something]","placeholders":["two","plates"]}, +{"id":"177943","label":"pouring soda out of cup","template":"Pouring [something] out of [something]","placeholders":["soda","cup"]}, +{"id":"83008","label":"hitting a pillow with a stick","template":"Hitting [something] with [something]","placeholders":["a pillow","a stick"]}, +{"id":"116888","label":"turning the camera left while filming small fresh mint","template":"Turning the camera left while filming [something]","placeholders":["small fresh mint"]}, +{"id":"448","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"84278","label":"throwing ball against wall","template":"Throwing [something] against [something]","placeholders":["ball","wall"]}, +{"id":"149593","label":"showing green chalk next to spectacle","template":"Showing [something] next to [something]","placeholders":["green chalk","spectacle"]}, +{"id":"110423","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"166809","label":"showing matchbox on top of jar","template":"Showing [something] on top of [something]","placeholders":["matchbox","jar"]}, +{"id":"115435","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"159750","label":"holding cushion behind chair","template":"Holding [something] behind [something]","placeholders":["cushion","chair"]}, +{"id":"7068","label":"plugging usb device into usb port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb device","usb port"]}, +{"id":"27085","label":"trying to bend a textbook so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a textbook"]}, +{"id":"52685","label":"plugging plug into plug socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","plug socket"]}, +{"id":"153335","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"170390","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"145160","label":"dropping silver container into plastic-container","template":"Dropping [something] into [something]","placeholders":["silver container","plastic-container"]}, +{"id":"64581","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"125329","label":"pretending to take a ruler out of a little box","template":"Pretending to take [something] out of [something]","placeholders":["a ruler","a little box"]}, +{"id":"36279","label":"tipping a bottle of lotion over","template":"Tipping [something] over","placeholders":["a bottle of lotion"]}, +{"id":"6082","label":"showing a wallet next to remote","template":"Showing [something] next to [something]","placeholders":["a wallet","remote"]}, +{"id":"24255","label":"approaching cucumber with your camera","template":"Approaching [something] with your camera","placeholders":["cucumber"]}, +{"id":"10768","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"6251","label":"showing perfume bottle behind lantern","template":"Showing [something] behind [something]","placeholders":["perfume bottle","lantern"]}, +{"id":"177686","label":"pushing can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["can"]}, +{"id":"174868","label":"turning the camera downwards while filming red booklet","template":"Turning the camera downwards while filming [something]","placeholders":["red booklet"]}, +{"id":"78012","label":"dropping tissue onto bowl","template":"Dropping [something] onto [something]","placeholders":["tissue","bowl"]}, +{"id":"180866","label":"holding the envelope next to business card","template":"Holding [something] next to [something]","placeholders":["the envelope","business card"]}, +{"id":"19362","label":"pushing cigarette lighter off of note bok","template":"Pushing [something] off of [something]","placeholders":["cigarette lighter","note bok"]}, +{"id":"171038","label":"pretending to put hat behind shoe","template":"Pretending to put [something] behind [something]","placeholders":["hat","shoe"]}, +{"id":"147795","label":"pushing a key so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a key"]}, +{"id":"41518","label":"pushing a textmarker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a textmarker"]}, +{"id":"151684","label":"pretending to pick ballpen up","template":"Pretending to pick [something] up","placeholders":["ballpen"]}, +{"id":"115006","label":"lifting a mirror with a comb on it","template":"Lifting [something] with [something] on it","placeholders":["a mirror","a comb"]}, +{"id":"94027","label":"putting sticky note onto book","template":"Putting [something] onto [something]","placeholders":["sticky note","book"]}, +{"id":"84780","label":"holding bottle in front of box","template":"Holding [something] in front of [something]","placeholders":["bottle","box"]}, +{"id":"145501","label":"tipping mug with clementine over, so clementine falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["mug","clementine","clementine"]}, +{"id":"22807","label":"letting plastic hollow pipe roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["plastic hollow pipe"]}, +{"id":"18058","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"174612","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"219912","label":"showing a photo of myself to the camera","template":"Showing a photo of [something] to the camera","placeholders":["myself"]}, +{"id":"151021","label":"taking an earring","template":"Taking [one of many similar things on the table]","placeholders":["an earring"]}, +{"id":"100101","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"90595","label":"pretending to put a plant next to a book","template":"Pretending to put [something] next to [something]","placeholders":["a plant","a book"]}, +{"id":"132118","label":"pretending to pick heart up","template":"Pretending to pick [something] up","placeholders":["heart"]}, +{"id":"146345","label":"video game case colliding with a box and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["video game case","a box"]}, +{"id":"4208","label":"sprinkling spray onto glasses","template":"Sprinkling [something] onto [something]","placeholders":["spray","glasses"]}, +{"id":"141201","label":"pushing keys so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["keys"]}, +{"id":"137019","label":"holding a glass next to a plant","template":"Holding [something] next to [something]","placeholders":["a glass","a plant"]}, +{"id":"55921","label":"lifting marker pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["marker pen"]}, +{"id":"108473","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"23157","label":"letting pen roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["pen"]}, +{"id":"115742","label":"pretending to poke a cat","template":"Pretending to poke [something]","placeholders":["a cat"]}, +{"id":"7601","label":"bending a cotton swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a cotton swab"]}, +{"id":"125118","label":"uncovering a fork","template":"Uncovering [something]","placeholders":["a fork"]}, +{"id":"4477","label":"dropping cup in front of cup","template":"Dropping [something] in front of [something]","placeholders":["cup","cup"]}, +{"id":"195255","label":"spilling water next to coffee mug","template":"Spilling [something] next to [something]","placeholders":["water","coffee mug"]}, +{"id":"11344","label":"pushing blanket from right to left","template":"Pushing [something] from right to left","placeholders":["blanket"]}, +{"id":"140381","label":"pretending to throw a glass","template":"Pretending to throw [something]","placeholders":["a glass"]}, +{"id":"57849","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"66863","label":"holding a toothpick over a cup","template":"Holding [something] over [something]","placeholders":["a toothpick","a cup"]}, +{"id":"161405","label":"unfolding cookbook","template":"Unfolding [something]","placeholders":["cookbook"]}, +{"id":"140410","label":"moving a wristwatch and a ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a wristwatch","a ball"]}, +{"id":"208775","label":"pretending to be tearing t shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["t shirt"]}, +{"id":"98534","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"78928","label":"pouring water onto glass","template":"Pouring [something] onto [something]","placeholders":["water","glass"]}, +{"id":"126365","label":"opening tumbler cap","template":"Opening [something]","placeholders":["tumbler cap"]}, +{"id":"98258","label":"pretending to throw shoe","template":"Pretending to throw [something]","placeholders":["shoe"]}, +{"id":"127924","label":"pretending to open jewell box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jewell box"]}, +{"id":"36349","label":"holding tool over box","template":"Holding [something] over [something]","placeholders":["tool","box"]}, +{"id":"1282","label":"moving aim toothpaste down","template":"Moving [something] down","placeholders":["aim toothpaste"]}, +{"id":"175755","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"15968","label":"moving lipbalm and nailpolish closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lipbalm","nailpolish"]}, +{"id":"149914","label":"twisting a remote","template":"Twisting [something]","placeholders":["a remote"]}, +{"id":"130543","label":"opening medicine bottle","template":"Opening [something]","placeholders":["medicine bottle"]}, +{"id":"43964","label":"spilling water onto a plank of wood","template":"Spilling [something] onto [something]","placeholders":["water","a plank of wood"]}, +{"id":"31979","label":"pushing bottle of shampoo so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle of shampoo"]}, +{"id":"192096","label":"bending a ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a ruler"]}, +{"id":"170660","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"644","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"55208","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"18353","label":"putting apple on a surface","template":"Putting [something] on a surface","placeholders":["apple"]}, +{"id":"46275","label":"plugging a laptop into a plug extender","template":"Plugging [something] into [something]","placeholders":["a laptop","a plug extender"]}, +{"id":"21856","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"25101","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"104511","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"142046","label":"pulling a wallet from right to left","template":"Pulling [something] from right to left","placeholders":["a wallet"]}, +{"id":"92383","label":"turning a pencil sharpener upside down","template":"Turning [something] upside down","placeholders":["a pencil sharpener"]}, +{"id":"128381","label":"uncovering chalk","template":"Uncovering [something]","placeholders":["chalk"]}, +{"id":"22568","label":"pretending to take screwdriver from table","template":"Pretending to take [something] from [somewhere]","placeholders":["screwdriver","table"]}, +{"id":"110203","label":"unfolding news paper","template":"Unfolding [something]","placeholders":["news paper"]}, +{"id":"93097","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"218808","label":"squeezing red elmo stuffed animal","template":"Squeezing [something]","placeholders":["red elmo stuffed animal"]}, +{"id":"136045","label":"pushing white hand gel from right to left","template":"Pushing [something] from right to left","placeholders":["white hand gel"]}, +{"id":"145333","label":"picking controler up","template":"Picking [something] up","placeholders":["controler"]}, +{"id":"103924","label":"pretending or failing to wipe stain off of cabinet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","cabinet"]}, +{"id":"143695","label":"dropping raw egg into the floor","template":"Dropping [something] into [something]","placeholders":["raw egg","the floor"]}, +{"id":"128710","label":"plugging usb bluetooth into usb port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb bluetooth","usb port"]}, +{"id":"56993","label":"putting globe toy upright on the table","template":"Putting [something] upright on the table","placeholders":["globe toy"]}, +{"id":"151439","label":"pretending to be tearing a beer mat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a beer mat"]}, +{"id":"149113","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"81577","label":"pushing marker from right to left","template":"Pushing [something] from right to left","placeholders":["marker"]}, +{"id":"170406","label":"throwing the ball against the shoe","template":"Throwing [something] against [something]","placeholders":["the ball","the shoe"]}, +{"id":"6209","label":"moving umbrella up","template":"Moving [something] up","placeholders":["umbrella"]}, +{"id":"133156","label":"showing bicycle to the camera","template":"Showing [something] to the camera","placeholders":["bicycle"]}, +{"id":"204986","label":"dropping headphones onto pillow","template":"Dropping [something] onto [something]","placeholders":["headphones","pillow"]}, +{"id":"80033","label":"a potato falling like a rock","template":"[Something] falling like a rock","placeholders":["a potato"]}, +{"id":"55953","label":"putting a fork and a knife on the table","template":"Putting [something] and [something] on the table","placeholders":["a fork","a knife"]}, +{"id":"178690","label":"holding pepperoni slices","template":"Holding [something]","placeholders":["pepperoni slices"]}, +{"id":"36954","label":"bending tea filter so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tea filter"]}, +{"id":"189650","label":"holding book over box","template":"Holding [something] over [something]","placeholders":["book","box"]}, +{"id":"174355","label":"pulling marker pen from left to right","template":"Pulling [something] from left to right","placeholders":["marker pen"]}, +{"id":"212751","label":"moving the book and the magazine away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the book","the magazine"]}, +{"id":"131596","label":"pushing a spoon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a spoon"]}, +{"id":"148411","label":"twisting bracelet","template":"Twisting [something]","placeholders":["bracelet"]}, +{"id":"82479","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"141955","label":"spilling water onto flowers","template":"Spilling [something] onto [something]","placeholders":["water","flowers"]}, +{"id":"181279","label":"holding toothbrush over knife","template":"Holding [something] over [something]","placeholders":["toothbrush","knife"]}, +{"id":"4951","label":"dropping a watch into a hat","template":"Dropping [something] into [something]","placeholders":["a watch","a hat"]}, +{"id":"134493","label":"moving a sieve closer to a belt","template":"Moving [something] closer to [something]","placeholders":["a sieve","a belt"]}, +{"id":"198902","label":"dropping a card in front of a peg","template":"Dropping [something] in front of [something]","placeholders":["a card","a peg"]}, +{"id":"157542","label":"poking a candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle"]}, +{"id":"68727","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"77468","label":"putting coin into water bottle","template":"Putting [something] into [something]","placeholders":["coin","water bottle"]}, +{"id":"5041","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"220109","label":"trying to bend a lotion bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a lotion bottle"]}, +{"id":"27281","label":"spinning water bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["water bottle"]}, +{"id":"98935","label":"trying to pour cereals into a glass container, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["cereals","a glass container"]}, +{"id":"61752","label":"removing lotion, revealing deodorant behind","template":"Removing [something], revealing [something] behind","placeholders":["lotion","deodorant"]}, +{"id":"42429","label":"pretending to take a napkin from a plate","template":"Pretending to take [something] from [somewhere]","placeholders":["a napkin","a plate"]}, +{"id":"90624","label":"pretending to put pen on a surface","template":"Pretending to put [something] on a surface","placeholders":["pen"]}, +{"id":"62523","label":"putting a play block with a group of play blocks","template":"Putting [something similar to other things that are already on the table]","placeholders":["a play block with a group of play blocks"]}, +{"id":"53883","label":"opening calculator","template":"Opening [something]","placeholders":["calculator"]}, +{"id":"19099","label":"spinning yellow ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["yellow ball"]}, +{"id":"2167","label":"putting a pen on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a pen","chair"]}, +{"id":"192984","label":"taking sunglasses out of box","template":"Taking [something] out of [something]","placeholders":["sunglasses","box"]}, +{"id":"213465","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"28567","label":"spilling jam onto a biscuit","template":"Spilling [something] onto [something]","placeholders":["jam","a biscuit"]}, +{"id":"216953","label":"throwing ruler in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ruler"]}, +{"id":"43520","label":"plugging headphones into computer","template":"Plugging [something] into [something]","placeholders":["headphones","computer"]}, +{"id":"66140","label":"moving lip balm and nail polish away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lip balm","nail polish"]}, +{"id":"49021","label":"spilling oil next to bread","template":"Spilling [something] next to [something]","placeholders":["oil","bread"]}, +{"id":"177384","label":"spinning chair that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["chair"]}, +{"id":"5107","label":"taking wallet","template":"Taking [one of many similar things on the table]","placeholders":["wallet"]}, +{"id":"29115","label":"putting a meat thermometer upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a meat thermometer"]}, +{"id":"107347","label":"putting glove and cell phone on the table","template":"Putting [something] and [something] on the table","placeholders":["glove","cell phone"]}, +{"id":"37054","label":"pulling mouse onto mousepad","template":"Pulling [something] onto [something]","placeholders":["mouse","mousepad"]}, +{"id":"183323","label":"hitting a glass with a hairbrush","template":"Hitting [something] with [something]","placeholders":["a glass","a hairbrush"]}, +{"id":"1092","label":"moving laptop down","template":"Moving [something] down","placeholders":["laptop"]}, +{"id":"71985","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"124462","label":"hitting wall with flashlight","template":"Hitting [something] with [something]","placeholders":["wall","flashlight"]}, +{"id":"45752","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"95659","label":"unfolding receipt paper","template":"Unfolding [something]","placeholders":["receipt paper"]}, +{"id":"168781","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"125278","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"212728","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"181664","label":"turning chocolate upside down","template":"Turning [something] upside down","placeholders":["chocolate"]}, +{"id":"63822","label":"plugging a phone charger into a multi-socket","template":"Plugging [something] into [something]","placeholders":["a phone charger","a multi-socket"]}, +{"id":"193566","label":"unfolding quiz paper","template":"Unfolding [something]","placeholders":["quiz paper"]}, +{"id":"41892","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"58926","label":"pushing a pencil so it spins","template":"Pushing [something] so it spins","placeholders":["a pencil"]}, +{"id":"171781","label":"moving usb cable away from eraser","template":"Moving [something] away from [something]","placeholders":["usb cable","eraser"]}, +{"id":"198119","label":"holding hand bag","template":"Holding [something]","placeholders":["hand bag"]}, +{"id":"22635","label":"dropping a matchbox in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a cup"]}, +{"id":"199666","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"4814","label":"pushing a toothbrush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toothbrush"]}, +{"id":"129217","label":"tearing folded paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["folded paper"]}, +{"id":"96419","label":"spinning spatula that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spatula"]}, +{"id":"7905","label":"lifting up one end of cylinder without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["cylinder"]}, +{"id":"87638","label":"pushing a toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a toy"]}, +{"id":"5398","label":"plugging electric plug into socket","template":"Plugging [something] into [something]","placeholders":["electric plug","socket"]}, +{"id":"10832","label":"lifting a baking tray with pens on it","template":"Lifting [something] with [something] on it","placeholders":["a baking tray","pens"]}, +{"id":"161067","label":"pushing black disc case from right to left","template":"Pushing [something] from right to left","placeholders":["black disc case"]}, +{"id":"188267","label":"twisting a towel","template":"Twisting [something]","placeholders":["a towel"]}, +{"id":"174458","label":"pretending to poke pack of cigarettes","template":"Pretending to poke [something]","placeholders":["pack of cigarettes"]}, +{"id":"82586","label":"pulling a notebook from right to left","template":"Pulling [something] from right to left","placeholders":["a notebook"]}, +{"id":"133469","label":"poking a hole into pie","template":"Poking a hole into [something soft]","placeholders":["pie"]}, +{"id":"152500","label":"moving red colour pencil sharpener away from wooden stick","template":"Moving [something] away from [something]","placeholders":["red colour pencil sharpener","wooden stick"]}, +{"id":"194169","label":"pretending to close red dairy without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["red dairy"]}, +{"id":"33590","label":"stuffing a plastic bag into an envelope","template":"Stuffing [something] into [something]","placeholders":["a plastic bag","an envelope"]}, +{"id":"91046","label":"moving tiolet paper closer to tiolet paper","template":"Moving [something] closer to [something]","placeholders":["tiolet paper","tiolet paper"]}, +{"id":"178335","label":"holding package of tissues next to radio alarm","template":"Holding [something] next to [something]","placeholders":["package of tissues","radio alarm"]}, +{"id":"195196","label":"dropping a tissue into a trash can","template":"Dropping [something] into [something]","placeholders":["a tissue","a trash can"]}, +{"id":"30936","label":"moving keys down","template":"Moving [something] down","placeholders":["keys"]}, +{"id":"145768","label":"pretending to be tearing magazine","template":"Pretending to be tearing [something that is not tearable]","placeholders":["magazine"]}, +{"id":"70385","label":"lifting a surface with a pencil on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a pencil"]}, +{"id":"7855","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"12715","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"60039","label":"pretending to put a cardboard box underneath a table","template":"Pretending to put [something] underneath [something]","placeholders":["a cardboard box","a table"]}, +{"id":"69360","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"132862","label":"showing that orange cup is empty","template":"Showing that [something] is empty","placeholders":["orange cup"]}, +{"id":"186713","label":"dropping a lemon into a bowl","template":"Dropping [something] into [something]","placeholders":["a lemon","a bowl"]}, +{"id":"200717","label":"holding plate in front of painting","template":"Holding [something] in front of [something]","placeholders":["plate","painting"]}, +{"id":"188976","label":"putting teaspoon and lime on the table","template":"Putting [something] and [something] on the table","placeholders":["teaspoon","lime"]}, +{"id":"120187","label":"pretending to pour tea out of teapot, but teapot is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["tea","teapot","teapot"]}, +{"id":"75490","label":"covering cd with paper","template":"Covering [something] with [something]","placeholders":["cd","paper"]}, +{"id":"144328","label":"turning the camera right while filming cup","template":"Turning the camera right while filming [something]","placeholders":["cup"]}, +{"id":"44255","label":"tearing paper sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper sheet"]}, +{"id":"53775","label":"approaching bicycle with your camera","template":"Approaching [something] with your camera","placeholders":["bicycle"]}, +{"id":"214211","label":"pretending to put something on a surface","template":"Pretending to put [something] on a surface","placeholders":["something"]}, +{"id":"95402","label":"putting a remote control in front of a mug","template":"Putting [something] in front of [something]","placeholders":["a remote control","a mug"]}, +{"id":"201241","label":"poking a sofa so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a sofa"]}, +{"id":"168812","label":"putting sandwich into lunchbox","template":"Putting [something] into [something]","placeholders":["sandwich","lunchbox"]}, +{"id":"193859","label":"uncovering mobilephone","template":"Uncovering [something]","placeholders":["mobilephone"]}, +{"id":"8123","label":"pushing a cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a cup"]}, +{"id":"23186","label":"putting mouse next to mug","template":"Putting [something] next to [something]","placeholders":["mouse","mug"]}, +{"id":"14752","label":"showing a scent diffuser on top of an upside down candle","template":"Showing [something] on top of [something]","placeholders":["a scent diffuser","an upside down candle"]}, +{"id":"29263","label":"dropping pen in front of cup","template":"Dropping [something] in front of [something]","placeholders":["pen","cup"]}, +{"id":"22686","label":"throwing pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pencil"]}, +{"id":"103785","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"150249","label":"tilting a plate with a highlighter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plate","a highlighter"]}, +{"id":"22290","label":"approaching calculator with your camera","template":"Approaching [something] with your camera","placeholders":["calculator"]}, +{"id":"35156","label":"pushing red pot holder from right to left","template":"Pushing [something] from right to left","placeholders":["red pot holder"]}, +{"id":"15736","label":"throwing the pencil case","template":"Throwing [something]","placeholders":["the pencil case"]}, +{"id":"35541","label":"pushing a match box with a lighter","template":"Pushing [something] with [something]","placeholders":["a match box","a lighter"]}, +{"id":"15017","label":"holding mobile over scissors","template":"Holding [something] over [something]","placeholders":["mobile","scissors"]}, +{"id":"104910","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"28403","label":"pouring water into washing machine","template":"Pouring [something] into [something]","placeholders":["water","washing machine"]}, +{"id":"191480","label":"tilting toy with ring on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["toy","ring"]}, +{"id":"129359","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"123846","label":"pulling mint onto laptop","template":"Pulling [something] onto [something]","placeholders":["mint","laptop"]}, +{"id":"233","label":"pushing spoon so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["spoon"]}, +{"id":"75747","label":"putting a ice tray on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a ice tray","table"]}, +{"id":"101706","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"208561","label":"pushing key so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["key"]}, +{"id":"217273","label":"pouring water into a green cup","template":"Pouring [something] into [something]","placeholders":["water","a green cup"]}, +{"id":"15524","label":"covering a vase with a blanket","template":"Covering [something] with [something]","placeholders":["a vase","a blanket"]}, +{"id":"109781","label":"pushing small sharpener from right to left","template":"Pushing [something] from right to left","placeholders":["small sharpener"]}, +{"id":"22001","label":"uncovering television remote","template":"Uncovering [something]","placeholders":["television remote"]}, +{"id":"198505","label":"spinning a door lock that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a door lock"]}, +{"id":"83447","label":"hitting a pole with a fly swatter","template":"Hitting [something] with [something]","placeholders":["a pole","a fly swatter"]}, +{"id":"38270","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"110987","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"130944","label":"holding keys","template":"Holding [something]","placeholders":["keys"]}, +{"id":"186785","label":"pushing box with block","template":"Pushing [something] with [something]","placeholders":["box","block"]}, +{"id":"171560","label":"touching (without moving) handle of cup","template":"Touching (without moving) [part] of [something]","placeholders":["handle","cup"]}, +{"id":"97327","label":"showing that plastic bowl is empty","template":"Showing that [something] is empty","placeholders":["plastic bowl"]}, +{"id":"86420","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"111223","label":"moving towel up","template":"Moving [something] up","placeholders":["towel"]}, +{"id":"35458","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"179304","label":"putting a jar of sugar upright on the table","template":"Putting [something] upright on the table","placeholders":["a jar of sugar"]}, +{"id":"198728","label":"tipping a bottletop over","template":"Tipping [something] over","placeholders":["a bottletop"]}, +{"id":"95063","label":"lifting coaster with cup on it","template":"Lifting [something] with [something] on it","placeholders":["coaster","cup"]}, +{"id":"63242","label":"showing black umbrella to the camera","template":"Showing [something] to the camera","placeholders":["black umbrella"]}, +{"id":"143197","label":"pushing spanner from left to right","template":"Pushing [something] from left to right","placeholders":["spanner"]}, +{"id":"95036","label":"approaching board with your camera","template":"Approaching [something] with your camera","placeholders":["board"]}, +{"id":"27414","label":"lifting up one end of mirror without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["mirror"]}, +{"id":"64711","label":"lifting a notebook with a screw on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a screw"]}, +{"id":"106722","label":"pencil falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil"]}, +{"id":"51847","label":"moving a candle up","template":"Moving [something] up","placeholders":["a candle"]}, +{"id":"15387","label":"tearing bread into two pieces","template":"Tearing [something] into two pieces","placeholders":["bread"]}, +{"id":"30468","label":"dropping pill in front of bottle","template":"Dropping [something] in front of [something]","placeholders":["pill","bottle"]}, +{"id":"18865","label":"plugging plug into plug cage but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","plug cage"]}, +{"id":"149043","label":"tipping a medicine bottle over","template":"Tipping [something] over","placeholders":["a medicine bottle"]}, +{"id":"132250","label":"putting a flying disc underneath a child's chair","template":"Putting [something] underneath [something]","placeholders":["a flying disc","a child's chair"]}, +{"id":"79542","label":"throwing keys in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["keys"]}, +{"id":"207123","label":"showing adaptor behind plant","template":"Showing [something] behind [something]","placeholders":["adaptor","plant"]}, +{"id":"158769","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"26605","label":"moving a marker away from a pen","template":"Moving [something] away from [something]","placeholders":["a marker","a pen"]}, +{"id":"201553","label":"pretending to pick necklace up","template":"Pretending to pick [something] up","placeholders":["necklace"]}, +{"id":"76139","label":"putting ink bottle, clip box and charger adapter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["ink bottle","clip box","charger adapter"]}, +{"id":"97161","label":"lifting a wireless mouse up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wireless mouse"]}, +{"id":"154029","label":"letting a highlighter roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a highlighter"]}, +{"id":"211012","label":"holding cup behind door","template":"Holding [something] behind [something]","placeholders":["cup","door"]}, +{"id":"11951","label":"moving fork and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","spoon"]}, +{"id":"167185","label":"brick falling like a rock","template":"[Something] falling like a rock","placeholders":["brick"]}, +{"id":"63299","label":"putting remote and wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","wallet"]}, +{"id":"204859","label":"putting hat onto shoe","template":"Putting [something] onto [something]","placeholders":["hat","shoe"]}, +{"id":"66570","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"175503","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"145595","label":"putting hairbrush on a surface","template":"Putting [something] on a surface","placeholders":["hairbrush"]}, +{"id":"23819","label":"showing rabbits to the camera","template":"Showing [something] to the camera","placeholders":["rabbits"]}, +{"id":"140323","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"21852","label":"twisting stress","template":"Twisting [something]","placeholders":["stress"]}, +{"id":"19580","label":"dropping a comb in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a comb","a book"]}, +{"id":"130719","label":"pulling pen from behind of binder","template":"Pulling [something] from behind of [something]","placeholders":["pen","binder"]}, +{"id":"120946","label":"holding torch in front of a mirror","template":"Holding [something] in front of [something]","placeholders":["torch","a mirror"]}, +{"id":"132623","label":"putting diaper wipes into a purse","template":"Putting [something] into [something]","placeholders":["diaper wipes","a purse"]}, +{"id":"15863","label":"holding marker over toy","template":"Holding [something] over [something]","placeholders":["marker","toy"]}, +{"id":"87053","label":"stuffing tissue into slipper","template":"Stuffing [something] into [something]","placeholders":["tissue","slipper"]}, +{"id":"21549","label":"pushing hairband with white colour pen","template":"Pushing [something] with [something]","placeholders":["hairband","white colour pen"]}, +{"id":"106141","label":"moving remote and lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["remote","lighter"]}, +{"id":"105469","label":"moving water bottle and water bottle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["water bottle","water bottle"]}, +{"id":"14807","label":"moving tape measure up","template":"Moving [something] up","placeholders":["tape measure"]}, +{"id":"204199","label":"showing torch behind bottle","template":"Showing [something] behind [something]","placeholders":["torch","bottle"]}, +{"id":"220710","label":"pouring tea into cup","template":"Pouring [something] into [something]","placeholders":["tea","cup"]}, +{"id":"186148","label":"showing that candy is inside bowl","template":"Showing that [something] is inside [something]","placeholders":["candy","bowl"]}, +{"id":"188061","label":"putting mug next to keyboard","template":"Putting [something] next to [something]","placeholders":["mug","keyboard"]}, +{"id":"165623","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"217695","label":"putting a pot of paint","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pot of paint"]}, +{"id":"15143","label":"putting a pencil sharpener, a pot and a shoe on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pencil sharpener","a pot","a shoe"]}, +{"id":"175082","label":"moving cellphone and mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cellphone","mug"]}, +{"id":"109836","label":"taking one of four similar lighters","template":"Taking [one of many similar things on the table]","placeholders":["one of four similar lighters"]}, +{"id":"95601","label":"poking cable so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cable"]}, +{"id":"144645","label":"moving top of cell phone","template":"Moving [part] of [something]","placeholders":["top","cell phone"]}, +{"id":"139494","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"74474","label":"holding tangerine","template":"Holding [something]","placeholders":["tangerine"]}, +{"id":"137135","label":"putting a colored pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["a colored pencil"]}, +{"id":"182431","label":"showing that cookie box is empty","template":"Showing that [something] is empty","placeholders":["cookie box"]}, +{"id":"91255","label":"moving pen and duct tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","duct tape"]}, +{"id":"214859","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"1974","label":"squeezing black umbrella","template":"Squeezing [something]","placeholders":["black umbrella"]}, +{"id":"78122","label":"putting baseball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["baseball"]}, +{"id":"42217","label":"moving a pen and a pencil so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a pencil"]}, +{"id":"203916","label":"poking water bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["water bottle"]}, +{"id":"8159","label":"lifting up one end of a flashlight, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a flashlight"]}, +{"id":"15819","label":"putting bread, cup and cellphone on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bread","cup","cellphone"]}, +{"id":"195600","label":"touching (without moving) front of fridge","template":"Touching (without moving) [part] of [something]","placeholders":["front","fridge"]}, +{"id":"85989","label":"pushing belt so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["belt"]}, +{"id":"78566","label":"pushing a charger with a remote control","template":"Pushing [something] with [something]","placeholders":["a charger","a remote control"]}, +{"id":"180050","label":"putting hair clip","template":"Putting [something similar to other things that are already on the table]","placeholders":["hair clip"]}, +{"id":"53943","label":"pretending to put black play cards on a surface","template":"Pretending to put [something] on a surface","placeholders":["black play cards"]}, +{"id":"73431","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"62693","label":"moving diaper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["diaper"]}, +{"id":"50008","label":"holding pencil behind tape","template":"Holding [something] behind [something]","placeholders":["pencil","tape"]}, +{"id":"208954","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"25730","label":"lifting a phone with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["a phone","a lighter"]}, +{"id":"128861","label":"attaching clip magnet to stove","template":"Attaching [something] to [something]","placeholders":["clip magnet","stove"]}, +{"id":"140977","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"78015","label":"throwing shoe in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["shoe"]}, +{"id":"57628","label":"poking a stack of boxes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["boxes"]}, +{"id":"160725","label":"squeezing post it notes","template":"Squeezing [something]","placeholders":["post it notes"]}, +{"id":"144213","label":"pink golf ball being deflected from white plug adapter","template":"[Something] being deflected from [something]","placeholders":["pink golf ball","white plug adapter"]}, +{"id":"196443","label":"pushing bot of fish food so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bot of fish food"]}, +{"id":"135393","label":"putting pen into bottle","template":"Putting [something] into [something]","placeholders":["pen","bottle"]}, +{"id":"60049","label":"trying but failing to attach a post-it to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a post-it","the wall"]}, +{"id":"75948","label":"pushing the box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["the box"]}, +{"id":"181328","label":"putting box in front of jar","template":"Putting [something] in front of [something]","placeholders":["box","jar"]}, +{"id":"19207","label":"holding toy idol in front of spectacle box","template":"Holding [something] in front of [something]","placeholders":["toy idol","spectacle box"]}, +{"id":"211124","label":"bending an empty water bottle so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an empty water bottle"]}, +{"id":"139387","label":"tipping dispenser over","template":"Tipping [something] over","placeholders":["dispenser"]}, +{"id":"76915","label":"dropping a matchbox into a bowl","template":"Dropping [something] into [something]","placeholders":["a matchbox","a bowl"]}, +{"id":"163592","label":"dropping a pen onto box","template":"Dropping [something] onto [something]","placeholders":["a pen","box"]}, +{"id":"125145","label":"plugging a cord into the wall","template":"Plugging [something] into [something]","placeholders":["a cord","the wall"]}, +{"id":"187284","label":"pouring detergent into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["detergent","cup"]}, +{"id":"185081","label":"pretending or failing to wipe dirt off of surface","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","surface"]}, +{"id":"188040","label":"lifting book with mobile on it","template":"Lifting [something] with [something] on it","placeholders":["book","mobile"]}, +{"id":"65437","label":"twisting soft, light yellow cooking glove","template":"Twisting [something]","placeholders":["soft, light yellow cooking glove"]}, +{"id":"49387","label":"putting 2 wooden sticks onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","wooden sticks","red pouch"]}, +{"id":"43109","label":"opener colliding with paper roll and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["opener","paper roll"]}, +{"id":"34877","label":"showing that bucket is empty","template":"Showing that [something] is empty","placeholders":["bucket"]}, +{"id":"101323","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"183683","label":"pushing black pocket knife so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["black pocket knife"]}, +{"id":"71155","label":"digging a worm out of wheat bran","template":"Digging [something] out of [something]","placeholders":["a worm","wheat bran"]}, +{"id":"210387","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"190276","label":"throwing towel","template":"Throwing [something]","placeholders":["towel"]}, +{"id":"62617","label":"putting crayon behind mug","template":"Putting [something] behind [something]","placeholders":["crayon","mug"]}, +{"id":"108169","label":"poking pillow so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["pillow"]}, +{"id":"71693","label":"holding wallet next to cup","template":"Holding [something] next to [something]","placeholders":["wallet","cup"]}, +{"id":"208208","label":"showing water bottle on top of hockey puck","template":"Showing [something] on top of [something]","placeholders":["water bottle","hockey puck"]}, +{"id":"43790","label":"moving top of purse","template":"Moving [part] of [something]","placeholders":["top","purse"]}, +{"id":"197983","label":"turning starbucks cup upside down","template":"Turning [something] upside down","placeholders":["starbucks cup"]}, +{"id":"60459","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"102853","label":"moving shoe and shoe closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["shoe","shoe"]}, +{"id":"62962","label":"pretending to pick firealarm up","template":"Pretending to pick [something] up","placeholders":["firealarm"]}, +{"id":"144706","label":"turning a computer mouse upside down","template":"Turning [something] upside down","placeholders":["a computer mouse"]}, +{"id":"20458","label":"pushing hair clip so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hair clip"]}, +{"id":"4192","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"154648","label":"pretending to sprinkle air onto open hand","template":"Pretending to sprinkle air onto [something]","placeholders":["open hand"]}, +{"id":"110152","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"6658","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"73885","label":"pretending to be tearing fabric","template":"Pretending to be tearing [something that is not tearable]","placeholders":["fabric"]}, +{"id":"186837","label":"lifting something with something on it","template":"Lifting [something] with [something] on it","placeholders":["something","something"]}, +{"id":"9876","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"9794","label":"holding a container in front of a bowl","template":"Holding [something] in front of [something]","placeholders":["a container","a bowl"]}, +{"id":"82434","label":"pushing connector so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["connector"]}, +{"id":"109239","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"181557","label":"moving keys and pensil away from each other","template":"Moving [something] and [something] away from each other","placeholders":["keys","pensil"]}, +{"id":"166887","label":"taking card","template":"Taking [one of many similar things on the table]","placeholders":["card"]}, +{"id":"125293","label":"pretending to put a pen behind a measuring cup","template":"Pretending to put [something] behind [something]","placeholders":["a pen","a measuring cup"]}, +{"id":"135492","label":"holding a box over a box","template":"Holding [something] over [something]","placeholders":["a box","a box"]}, +{"id":"29783","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"182828","label":"trying to bend racket so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["racket"]}, +{"id":"51509","label":"tilting a coaster with a pen cap on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a coaster","a pen cap"]}, +{"id":"47742","label":"holding a plastic bottle over a keyboard","template":"Holding [something] over [something]","placeholders":["a plastic bottle","a keyboard"]}, +{"id":"215967","label":"pushing box with paint brush","template":"Pushing [something] with [something]","placeholders":["box","paint brush"]}, +{"id":"97105","label":"moving purse towards the camera","template":"Moving [something] towards the camera","placeholders":["purse"]}, +{"id":"152949","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"106035","label":"holding water bottle over plate","template":"Holding [something] over [something]","placeholders":["water bottle","plate"]}, +{"id":"217178","label":"showing lipstic behind bike light","template":"Showing [something] behind [something]","placeholders":["lipstic","bike light"]}, +{"id":"193434","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"72427","label":"spreading pate onto biscuit","template":"Spreading [something] onto [something]","placeholders":["pate","biscuit"]}, +{"id":"74860","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"142613","label":"pushing red coloured punching machine so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["red coloured punching machine"]}, +{"id":"126314","label":"dropping deoderant into a drawer","template":"Dropping [something] into [something]","placeholders":["deoderant","a drawer"]}, +{"id":"107242","label":"approaching tomato with your camera","template":"Approaching [something] with your camera","placeholders":["tomato"]}, +{"id":"149211","label":"holding umbrela","template":"Holding [something]","placeholders":["umbrela"]}, +{"id":"80543","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"201629","label":"putting scissors on a surface","template":"Putting [something] on a surface","placeholders":["scissors"]}, +{"id":"69919","label":"showing a photo of a couple to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a couple"]}, +{"id":"146002","label":"taking pen out of mug","template":"Taking [something] out of [something]","placeholders":["pen","mug"]}, +{"id":"153870","label":"pouring milk into a cup","template":"Pouring [something] into [something]","placeholders":["milk","a cup"]}, +{"id":"217459","label":"dropping a calculator onto a desk","template":"Dropping [something] onto [something]","placeholders":["a calculator","a desk"]}, +{"id":"213573","label":"putting ruler onto calculator","template":"Putting [something] onto [something]","placeholders":["ruler","calculator"]}, +{"id":"56271","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"89535","label":"spinning a mascara tube so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a mascara tube"]}, +{"id":"109857","label":"touching (without moving) top of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["top","bottle"]}, +{"id":"188449","label":"scooping marbles up with hand","template":"Scooping [something] up with [something]","placeholders":["marbles","hand"]}, +{"id":"102319","label":"pouring water into bottle","template":"Pouring [something] into [something]","placeholders":["water","bottle"]}, +{"id":"193105","label":"lifting dish with dummy on it","template":"Lifting [something] with [something] on it","placeholders":["dish","dummy"]}, +{"id":"75027","label":"pushing a makeup brush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a makeup brush"]}, +{"id":"181432","label":"moving cylinder and fruit away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cylinder","fruit"]}, +{"id":"18022","label":"lifting book with notebook on it","template":"Lifting [something] with [something] on it","placeholders":["book","notebook"]}, +{"id":"54518","label":"showing a pen on top of a notebook","template":"Showing [something] on top of [something]","placeholders":["a pen","a notebook"]}, +{"id":"162291","label":"hitting box with pen","template":"Hitting [something] with [something]","placeholders":["box","pen"]}, +{"id":"149465","label":"approaching pill bottle with your camera","template":"Approaching [something] with your camera","placeholders":["pill bottle"]}, +{"id":"26573","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"69033","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"177754","label":"pretending to put toohbrush into holder","template":"Pretending to put [something] into [something]","placeholders":["toohbrush","holder"]}, +{"id":"144274","label":"throwing a stuffed bird in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a stuffed bird"]}, +{"id":"140292","label":"uncovering nail cutter","template":"Uncovering [something]","placeholders":["nail cutter"]}, +{"id":"6105","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"30271","label":"folding a placemat","template":"Folding [something]","placeholders":["a placemat"]}, +{"id":"163541","label":"approaching painting with your camera","template":"Approaching [something] with your camera","placeholders":["painting"]}, +{"id":"13257","label":"holding letter next to calculater","template":"Holding [something] next to [something]","placeholders":["letter","calculater"]}, +{"id":"83212","label":"poking a telephone so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a telephone"]}, +{"id":"126361","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"135002","label":"squeezing half a lemon","template":"Squeezing [something]","placeholders":["half a lemon"]}, +{"id":"69142","label":"touching (without moving) plunger of dispenser","template":"Touching (without moving) [part] of [something]","placeholders":["plunger","dispenser"]}, +{"id":"107629","label":"moving stapler up","template":"Moving [something] up","placeholders":["stapler"]}, +{"id":"66181","label":"showing bubblegum behind tissues","template":"Showing [something] behind [something]","placeholders":["bubblegum","tissues"]}, +{"id":"10073","label":"moving tangerine and tangerine closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["tangerine","tangerine"]}, +{"id":"120785","label":"throwing pillow against ball","template":"Throwing [something] against [something]","placeholders":["pillow","ball"]}, +{"id":"70183","label":"pushing stone with pencil","template":"Pushing [something] with [something]","placeholders":["stone","pencil"]}, +{"id":"88549","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"199674","label":"throwing scissors","template":"Throwing [something]","placeholders":["scissors"]}, +{"id":"144971","label":"moving the remote and the mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the remote","the mouse"]}, +{"id":"127516","label":"dropping a peg into a bowl","template":"Dropping [something] into [something]","placeholders":["a peg","a bowl"]}, +{"id":"122012","label":"pushing ink bottle from left to right","template":"Pushing [something] from left to right","placeholders":["ink bottle"]}, +{"id":"151732","label":"dropping a coin into a box","template":"Dropping [something] into [something]","placeholders":["a coin","a box"]}, +{"id":"209656","label":"taking tin out of cup","template":"Taking [something] out of [something]","placeholders":["tin","cup"]}, +{"id":"219597","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"151673","label":"putting nail clipper behind wallet","template":"Putting [something] behind [something]","placeholders":["nail clipper","wallet"]}, +{"id":"198264","label":"moving sugar away from coffee","template":"Moving [something] away from [something]","placeholders":["sugar","coffee"]}, +{"id":"47180","label":"lifting something up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["something"]}, +{"id":"100719","label":"turning the camera right while filming brown bracelet","template":"Turning the camera right while filming [something]","placeholders":["brown bracelet"]}, +{"id":"132392","label":"lifting a book with a bottle of honey on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a bottle of honey"]}, +{"id":"40864","label":"spoon falling like a rock","template":"[Something] falling like a rock","placeholders":["spoon"]}, +{"id":"150362","label":"pushing purple microfiber from right to left","template":"Pushing [something] from right to left","placeholders":["purple microfiber"]}, +{"id":"48412","label":"hitting scissors with remote","template":"Hitting [something] with [something]","placeholders":["scissors","remote"]}, +{"id":"206994","label":"pretending to squeeze a plastic ball","template":"Pretending to squeeze [something]","placeholders":["a plastic ball"]}, +{"id":"43072","label":"closing paint bottle","template":"Closing [something]","placeholders":["paint bottle"]}, +{"id":"110204","label":"moving jar across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["jar"]}, +{"id":"133470","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"50203","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"100480","label":"dropping a pin into a bowl","template":"Dropping [something] into [something]","placeholders":["a pin","a bowl"]}, +{"id":"85414","label":"lifting up one end of pencil box without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil box"]}, +{"id":"217807","label":"putting a jbl in front of candy","template":"Putting [something] in front of [something]","placeholders":["a jbl","candy"]}, +{"id":"192457","label":"picking footwear up","template":"Picking [something] up","placeholders":["footwear"]}, +{"id":"71259","label":"pouring milk out of pot","template":"Pouring [something] out of [something]","placeholders":["milk","pot"]}, +{"id":"12993","label":"moving a cube and a box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cube","a box"]}, +{"id":"59710","label":"putting cup in front of fork","template":"Putting [something] in front of [something]","placeholders":["cup","fork"]}, +{"id":"115996","label":"moving toy closer to box","template":"Moving [something] closer to [something]","placeholders":["toy","box"]}, +{"id":"44538","label":"pretending to open pretend to open plastic spray without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pretend to open plastic spray"]}, +{"id":"104990","label":"putting fluorescent light bulb into mug","template":"Putting [something] into [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"26196","label":"bending diary so that it deforms","template":"Bending [something] so that it deforms","placeholders":["diary"]}, +{"id":"189723","label":"spilling water next to a bottletop","template":"Spilling [something] next to [something]","placeholders":["water","a bottletop"]}, +{"id":"95277","label":"putting a vase on a surface","template":"Putting [something] on a surface","placeholders":["a vase"]}, +{"id":"120938","label":"throwing bottle onto a surface","template":"Throwing [something] onto a surface","placeholders":["bottle"]}, +{"id":"95473","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"172617","label":"lifting eye glasses up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["eye glasses"]}, +{"id":"99948","label":"pushing spinner so it spins","template":"Pushing [something] so it spins","placeholders":["spinner"]}, +{"id":"134207","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"131408","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"55333","label":"laying a glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glass"]}, +{"id":"48386","label":"hitting charger with a remote control","template":"Hitting [something] with [something]","placeholders":["charger","a remote control"]}, +{"id":"213646","label":"moving the signal lever up","template":"Moving [something] up","placeholders":["the signal lever"]}, +{"id":"217091","label":"moving lid of deodorant","template":"Moving [part] of [something]","placeholders":["lid","deodorant"]}, +{"id":"137592","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"196082","label":"showing purple container next to paper bag","template":"Showing [something] next to [something]","placeholders":["purple container","paper bag"]}, +{"id":"14440","label":"spreading peanut butter onto wheat bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","wheat bread"]}, +{"id":"81521","label":"putting something that cannot actually stand upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["something that cannot actually stand"]}, +{"id":"205742","label":"a papel sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a papel sheet"]}, +{"id":"203266","label":"scooping sugar up with a measuring cup","template":"Scooping [something] up with [something]","placeholders":["sugar","a measuring cup"]}, +{"id":"174724","label":"spilling water onto peanut butter","template":"Spilling [something] onto [something]","placeholders":["water","peanut butter"]}, +{"id":"60550","label":"putting ring bell on the edge of stand of stone so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["ring bell","stand of stone"]}, +{"id":"65678","label":"putting pen into mug","template":"Putting [something] into [something]","placeholders":["pen","mug"]}, +{"id":"142355","label":"spreading matxhboxes onto newspaper","template":"Spreading [something] onto [something]","placeholders":["matxhboxes","newspaper"]}, +{"id":"103922","label":"moving dvd case down","template":"Moving [something] down","placeholders":["dvd case"]}, +{"id":"78730","label":"dropping a safety pin onto a slipper","template":"Dropping [something] onto [something]","placeholders":["a safety pin","a slipper"]}, +{"id":"98700","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"26923","label":"throwing case","template":"Throwing [something]","placeholders":["case"]}, +{"id":"76262","label":"hitting dog with bottle","template":"Hitting [something] with [something]","placeholders":["dog","bottle"]}, +{"id":"219930","label":"pushing highlighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["highlighter"]}, +{"id":"60317","label":"poking a case so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a case"]}, +{"id":"5947","label":"pretending to pick pillow up","template":"Pretending to pick [something] up","placeholders":["pillow"]}, +{"id":"76188","label":"dropping lid in front of box","template":"Dropping [something] in front of [something]","placeholders":["lid","box"]}, +{"id":"42061","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"156459","label":"pretending or failing to wipe stain off of refrigerator","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","refrigerator"]}, +{"id":"178680","label":"spinning lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lighter"]}, +{"id":"29459","label":"dropping a matchstick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a remote"]}, +{"id":"26482","label":"removing a tissue box, revealing a dvd behind","template":"Removing [something], revealing [something] behind","placeholders":["a tissue box","a dvd"]}, +{"id":"92852","label":"spreading chocolate onto waffel","template":"Spreading [something] onto [something]","placeholders":["chocolate","waffel"]}, +{"id":"88513","label":"taking red colour sharpner out of yellow container","template":"Taking [something] out of [something]","placeholders":["red colour sharpner","yellow container"]}, +{"id":"180544","label":"uncovering pool","template":"Uncovering [something]","placeholders":["pool"]}, +{"id":"185242","label":"holding cup behind water bottle","template":"Holding [something] behind [something]","placeholders":["cup","water bottle"]}, +{"id":"52924","label":"showing cell phone on top of water bottle","template":"Showing [something] on top of [something]","placeholders":["cell phone","water bottle"]}, +{"id":"43177","label":"putting block into hole","template":"Putting [something] into [something]","placeholders":["block","hole"]}, +{"id":"49025","label":"pushing note pad from left to right","template":"Pushing [something] from left to right","placeholders":["note pad"]}, +{"id":"191117","label":"putting keys into mug","template":"Putting [something] into [something]","placeholders":["keys","mug"]}, +{"id":"161576","label":"putting toys into basket","template":"Putting [something] into [something]","placeholders":["toys","basket"]}, +{"id":"144261","label":"pushing lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lighter"]}, +{"id":"126093","label":"turning the camera upwards while filming motorbike","template":"Turning the camera upwards while filming [something]","placeholders":["motorbike"]}, +{"id":"211041","label":"lifting a pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a pen"]}, +{"id":"1754","label":"dropping pen onto karpet","template":"Dropping [something] onto [something]","placeholders":["pen","karpet"]}, +{"id":"32166","label":"holding battery charger behind lens","template":"Holding [something] behind [something]","placeholders":["battery charger","lens"]}, +{"id":"180372","label":"removing mug, revealing tape behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","tape"]}, +{"id":"55067","label":"laying a soda can on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a soda can"]}, +{"id":"146903","label":"pushing jar so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jar"]}, +{"id":"65805","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"15242","label":"taking color paper clip","template":"Taking [one of many similar things on the table]","placeholders":["color paper clip"]}, +{"id":"143311","label":"pushing green chalk from right to left","template":"Pushing [something] from right to left","placeholders":["green chalk"]}, +{"id":"23934","label":"laying cardboard box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cardboard box"]}, +{"id":"213744","label":"poking tangerine so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tangerine"]}, +{"id":"87684","label":"taking highlighter out of glass","template":"Taking [something] out of [something]","placeholders":["highlighter","glass"]}, +{"id":"163119","label":"tipping container with pennies over, so pennies falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["container","pennies","pennies"]}, +{"id":"94876","label":"showing a photo of a couple to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a couple"]}, +{"id":"103329","label":"putting an apple on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["an apple"]}, +{"id":"15512","label":"plugging cord into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","socket"]}, +{"id":"124127","label":"putting roll of poster into tube","template":"Putting [something] into [something]","placeholders":["roll of poster","tube"]}, +{"id":"149908","label":"dropping a pin in front of a handkerchief","template":"Dropping [something] in front of [something]","placeholders":["a pin","a handkerchief"]}, +{"id":"183064","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"10888","label":"uncovering an apple","template":"Uncovering [something]","placeholders":["an apple"]}, +{"id":"26635","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"89783","label":"moving a paper heart up","template":"Moving [something] up","placeholders":["a paper heart"]}, +{"id":"132759","label":"holding soldering wire reel behind black plastic box","template":"Holding [something] behind [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"6731","label":"unfolding a towel","template":"Unfolding [something]","placeholders":["a towel"]}, +{"id":"149607","label":"sprinkling pepper onto bread","template":"Sprinkling [something] onto [something]","placeholders":["pepper","bread"]}, +{"id":"41645","label":"plugging an earphone into a mobile gadget","template":"Plugging [something] into [something]","placeholders":["an earphone","a mobile gadget"]}, +{"id":"70264","label":"moving bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bottle"]}, +{"id":"89568","label":"putting a jar onto another jar","template":"Putting [something] onto [something]","placeholders":["a jar","another jar"]}, +{"id":"87754","label":"squeezing a cushion","template":"Squeezing [something]","placeholders":["a cushion"]}, +{"id":"66638","label":"wiping something off of something","template":"Wiping [something] off of [something]","placeholders":["something","something"]}, +{"id":"5585","label":"laying paper roll on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["paper roll"]}, +{"id":"52091","label":"pulling iphone from behind of notebook","template":"Pulling [something] from behind of [something]","placeholders":["iphone","notebook"]}, +{"id":"110127","label":"sunglasses falling like a rock","template":"[Something] falling like a rock","placeholders":["sunglasses"]}, +{"id":"80787","label":"pushing a paint brush so it spins","template":"Pushing [something] so it spins","placeholders":["a paint brush"]}, +{"id":"188234","label":"controller falling like a rock","template":"[Something] falling like a rock","placeholders":["controller"]}, +{"id":"13597","label":"showing cellphone to the camera","template":"Showing [something] to the camera","placeholders":["cellphone"]}, +{"id":"216578","label":"putting phone next to yellowbook","template":"Putting [something] next to [something]","placeholders":["phone","yellowbook"]}, +{"id":"125701","label":"pulling remote from behind of blocks","template":"Pulling [something] from behind of [something]","placeholders":["remote","blocks"]}, +{"id":"204496","label":"turning the camera right while filming printer","template":"Turning the camera right while filming [something]","placeholders":["printer"]}, +{"id":"9166","label":"turning deodorant upside down","template":"Turning [something] upside down","placeholders":["deodorant"]}, +{"id":"54551","label":"opening gate","template":"Opening [something]","placeholders":["gate"]}, +{"id":"120876","label":"putting a baseball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a baseball"]}, +{"id":"109425","label":"spinning can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["can"]}, +{"id":"50514","label":"picking cellphone up","template":"Picking [something] up","placeholders":["cellphone"]}, +{"id":"174626","label":"plugging plug into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","outlet"]}, +{"id":"10082","label":"showing ice cream freezer to the camera","template":"Showing [something] to the camera","placeholders":["ice cream freezer"]}, +{"id":"56964","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"156566","label":"turning water bottle upside down","template":"Turning [something] upside down","placeholders":["water bottle"]}, +{"id":"181782","label":"dropping spoon into cup","template":"Dropping [something] into [something]","placeholders":["spoon","cup"]}, +{"id":"109233","label":"pretending to be tearing impossible paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["impossible paper"]}, +{"id":"220513","label":"taking phone out of mug","template":"Taking [something] out of [something]","placeholders":["phone","mug"]}, +{"id":"63163","label":"stuffing tube into box","template":"Stuffing [something] into [something]","placeholders":["tube","box"]}, +{"id":"32068","label":"hitting keys with remote","template":"Hitting [something] with [something]","placeholders":["keys","remote"]}, +{"id":"137808","label":"turning the camera left while filming picture","template":"Turning the camera left while filming [something]","placeholders":["picture"]}, +{"id":"3224","label":"throwing pen against pencil case","template":"Throwing [something] against [something]","placeholders":["pen","pencil case"]}, +{"id":"12388","label":"putting glass into bowl","template":"Putting [something] into [something]","placeholders":["glass","bowl"]}, +{"id":"191748","label":"holding a coke bottle next to a water bottle","template":"Holding [something] next to [something]","placeholders":["a coke bottle","a water bottle"]}, +{"id":"122398","label":"pretending to be tearing a fridge magnet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a fridge magnet"]}, +{"id":"142652","label":"bending spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["spoon"]}, +{"id":"209892","label":"moving cup and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","spoon"]}, +{"id":"150031","label":"putting usb cable upright on the table","template":"Putting [something] upright on the table","placeholders":["usb cable"]}, +{"id":"171877","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"6971","label":"pulling two ends of metal knife but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["metal knife"]}, +{"id":"127485","label":"putting a paper that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a paper"]}, +{"id":"180161","label":"showing a bowl on top of the cardboard","template":"Showing [something] on top of [something]","placeholders":["a bowl","the cardboard"]}, +{"id":"99513","label":"spilling water onto a knife","template":"Spilling [something] onto [something]","placeholders":["water","a knife"]}, +{"id":"158253","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"88838","label":"throwing block onto a surface","template":"Throwing [something] onto a surface","placeholders":["block"]}, +{"id":"158318","label":"bottle being deflected from carton","template":"[Something] being deflected from [something]","placeholders":["bottle","carton"]}, +{"id":"98211","label":"plugging plug into power bar","template":"Plugging [something] into [something]","placeholders":["plug","power bar"]}, +{"id":"169659","label":"bending plastic knife until it breaks","template":"Bending [something] until it breaks","placeholders":["plastic knife"]}, +{"id":"137213","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"168973","label":"putting a coin to other coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin to other coins"]}, +{"id":"110156","label":"putting cookie upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["cookie"]}, +{"id":"89429","label":"holding a paint brush next to a doll","template":"Holding [something] next to [something]","placeholders":["a paint brush","a doll"]}, +{"id":"34682","label":"holding notebook","template":"Holding [something]","placeholders":["notebook"]}, +{"id":"201910","label":"moving toothbrush towards the camera","template":"Moving [something] towards the camera","placeholders":["toothbrush"]}, +{"id":"104852","label":"throwing a cordless phone onto a surface","template":"Throwing [something] onto a surface","placeholders":["a cordless phone"]}, +{"id":"60555","label":"turning the camera upwards while filming krishna idole","template":"Turning the camera upwards while filming [something]","placeholders":["krishna idole"]}, +{"id":"217121","label":"turning the camera right while filming lorry","template":"Turning the camera right while filming [something]","placeholders":["lorry"]}, +{"id":"123565","label":"stuffing napkin into mug","template":"Stuffing [something] into [something]","placeholders":["napkin","mug"]}, +{"id":"143289","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"51701","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"145214","label":"putting ball on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["ball","table"]}, +{"id":"174245","label":"putting fluorescent light bulb next to mug","template":"Putting [something] next to [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"122370","label":"taking glass from desk","template":"Taking [something] from [somewhere]","placeholders":["glass","desk"]}, +{"id":"68062","label":"paper box colliding with another paper box and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["paper box","another paper box"]}, +{"id":"181326","label":"lifting placemat with glass on it","template":"Lifting [something] with [something] on it","placeholders":["placemat","glass"]}, +{"id":"199111","label":"moving lid of shampoo container","template":"Moving [part] of [something]","placeholders":["lid","shampoo container"]}, +{"id":"199222","label":"pushing a coffee cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a coffee cup"]}, +{"id":"96588","label":"bending steel spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["steel spoon"]}, +{"id":"180398","label":"moving handle of a door lock","template":"Moving [part] of [something]","placeholders":["handle","a door lock"]}, +{"id":"67732","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"104179","label":"moving mobile phone up","template":"Moving [something] up","placeholders":["mobile phone"]}, +{"id":"166450","label":"putting sponge on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["sponge","table"]}, +{"id":"198372","label":"moving tie across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["tie"]}, +{"id":"142399","label":"poking a pillow so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pillow"]}, +{"id":"101180","label":"showing that bucket is empty","template":"Showing that [something] is empty","placeholders":["bucket"]}, +{"id":"167779","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"119934","label":"putting orange underneath notebook","template":"Putting [something] underneath [something]","placeholders":["orange","notebook"]}, +{"id":"7331","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"71783","label":"pretending to put bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottle"]}, +{"id":"32587","label":"stuffing thread into a coffee can","template":"Stuffing [something] into [something]","placeholders":["thread","a coffee can"]}, +{"id":"156523","label":"pulling a pen from right to left","template":"Pulling [something] from right to left","placeholders":["a pen"]}, +{"id":"67306","label":"putting chocolate onto tie","template":"Putting [something] onto [something]","placeholders":["chocolate","tie"]}, +{"id":"146990","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"110607","label":"throwing a circular disc onto a surface","template":"Throwing [something] onto a surface","placeholders":["a circular disc"]}, +{"id":"16025","label":"holding a bottle in front of a laptop","template":"Holding [something] in front of [something]","placeholders":["a bottle","a laptop"]}, +{"id":"29937","label":"holding tiger in front of blackboard","template":"Holding [something] in front of [something]","placeholders":["tiger","blackboard"]}, +{"id":"133314","label":"lifting a surface with a plate on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a plate"]}, +{"id":"152550","label":"moving a flashlight away from a smartphone","template":"Moving [something] away from [something]","placeholders":["a flashlight","a smartphone"]}, +{"id":"153503","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"114037","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"10449","label":"laying clock on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["clock"]}, +{"id":"200684","label":"putting clip box onto stencil","template":"Putting [something] onto [something]","placeholders":["clip box","stencil"]}, +{"id":"30690","label":"lifting a surface with lotion container on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["lotion container"]}, +{"id":"73729","label":"rolling marker on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker"]}, +{"id":"207410","label":"spreading peanut butter onto a plate","template":"Spreading [something] onto [something]","placeholders":["peanut butter","a plate"]}, +{"id":"19045","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"185504","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"17367","label":"putting mouse next to keyboard","template":"Putting [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"172589","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"122940","label":"throwing a highlighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["a highlighter"]}, +{"id":"63938","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"182551","label":"moving smart phone down","template":"Moving [something] down","placeholders":["smart phone"]}, +{"id":"49208","label":"touching (without moving) handle of a mug","template":"Touching (without moving) [part] of [something]","placeholders":["handle","a mug"]}, +{"id":"43615","label":"wiping dust off of a jar","template":"Wiping [something] off of [something]","placeholders":["dust","a jar"]}, +{"id":"56562","label":"plugging a hairdryer into the wall","template":"Plugging [something] into [something]","placeholders":["a hairdryer","the wall"]}, +{"id":"90323","label":"tilting paper with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","pen"]}, +{"id":"37148","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"219444","label":"putting phone onto lotion container","template":"Putting [something] onto [something]","placeholders":["phone","lotion container"]}, +{"id":"21830","label":"taking straw","template":"Taking [one of many similar things on the table]","placeholders":["straw"]}, +{"id":"76136","label":"taking piece of garbage","template":"Taking [one of many similar things on the table]","placeholders":["piece of garbage"]}, +{"id":"63783","label":"dropping pillow behind basket","template":"Dropping [something] behind [something]","placeholders":["pillow","basket"]}, +{"id":"147485","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"39117","label":"pushing a chair so it spins","template":"Pushing [something] so it spins","placeholders":["a chair"]}, +{"id":"45444","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"76426","label":"putting eraser into box","template":"Putting [something] into [something]","placeholders":["eraser","box"]}, +{"id":"147370","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"67492","label":"taking red toy car from table","template":"Taking [something] from [somewhere]","placeholders":["red toy car","table"]}, +{"id":"188907","label":"dropping cow behind box","template":"Dropping [something] behind [something]","placeholders":["cow","box"]}, +{"id":"17284","label":"tearing toilet paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["toilet paper"]}, +{"id":"195590","label":"closing mircowave","template":"Closing [something]","placeholders":["mircowave"]}, +{"id":"206602","label":"putting remote, lipbalm and keychain on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote","lipbalm","keychain"]}, +{"id":"53473","label":"uncovering a ball","template":"Uncovering [something]","placeholders":["a ball"]}, +{"id":"146187","label":"putting a can onto a table","template":"Putting [something] onto [something]","placeholders":["a can","a table"]}, +{"id":"24531","label":"holding cream behind knife","template":"Holding [something] behind [something]","placeholders":["cream","knife"]}, +{"id":"37970","label":"showing a wire behind a glas bottle","template":"Showing [something] behind [something]","placeholders":["a wire","a glas bottle"]}, +{"id":"212416","label":"putting pen on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["pen","chair"]}, +{"id":"116582","label":"moving something up","template":"Moving [something] up","placeholders":["something"]}, +{"id":"155739","label":"throwing hand tissues against a sofa","template":"Throwing [something] against [something]","placeholders":["hand tissues","a sofa"]}, +{"id":"210507","label":"throwing a scotch roll against the wall","template":"Throwing [something] against [something]","placeholders":["a scotch roll","the wall"]}, +{"id":"164644","label":"lifting t-shirth up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["t-shirth"]}, +{"id":"144139","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"79740","label":"plugging a plug into socket","template":"Plugging [something] into [something]","placeholders":["a plug","socket"]}, +{"id":"91964","label":"pushing handle onto door","template":"Pushing [something] onto [something]","placeholders":["handle","door"]}, +{"id":"62317","label":"lifting note pad up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["note pad"]}, +{"id":"13540","label":"putting a pen into a pen case","template":"Putting [something] into [something]","placeholders":["a pen","a pen case"]}, +{"id":"70649","label":"throwing newspaper","template":"Throwing [something]","placeholders":["newspaper"]}, +{"id":"66604","label":"pushing case with rolling pin","template":"Pushing [something] with [something]","placeholders":["case","rolling pin"]}, +{"id":"78494","label":"pulling a toy car from right to left","template":"Pulling [something] from right to left","placeholders":["a toy car"]}, +{"id":"177586","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"60110","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150230","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"96030","label":"moving toy car away from toy man","template":"Moving [something] away from [something]","placeholders":["toy car","toy man"]}, +{"id":"188482","label":"plugging cord into outlet","template":"Plugging [something] into [something]","placeholders":["cord","outlet"]}, +{"id":"26152","label":"putting box next to pink book","template":"Putting [something] next to [something]","placeholders":["box","pink book"]}, +{"id":"35314","label":"moving wooden stick closer to red hair band","template":"Moving [something] closer to [something]","placeholders":["wooden stick","red hair band"]}, +{"id":"55511","label":"twisting a slipper","template":"Twisting [something]","placeholders":["a slipper"]}, +{"id":"58898","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"210836","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"122361","label":"pretending to poke doll","template":"Pretending to poke [something]","placeholders":["doll"]}, +{"id":"216458","label":"poking book so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["book"]}, +{"id":"114659","label":"pushing coin so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["coin"]}, +{"id":"180148","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"119936","label":"turning a notebook upside down","template":"Turning [something] upside down","placeholders":["a notebook"]}, +{"id":"126833","label":"pretending to take keys out of bag","template":"Pretending to take [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"166187","label":"hitting cup with pen","template":"Hitting [something] with [something]","placeholders":["cup","pen"]}, +{"id":"84316","label":"hitting a glue with screwdriver","template":"Hitting [something] with [something]","placeholders":["a glue","screwdriver"]}, +{"id":"65684","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"20379","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"123713","label":"covering keys with napkin","template":"Covering [something] with [something]","placeholders":["keys","napkin"]}, +{"id":"118950","label":"lifting a surface with a nail-brush on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a nail-brush"]}, +{"id":"178115","label":"turning a wallet upside down","template":"Turning [something] upside down","placeholders":["a wallet"]}, +{"id":"132440","label":"taking mobile phone from floor","template":"Taking [something] from [somewhere]","placeholders":["mobile phone","floor"]}, +{"id":"31658","label":"pushing coffee from right to left","template":"Pushing [something] from right to left","placeholders":["coffee"]}, +{"id":"121668","label":"turning the camera upwards while filming waist basket","template":"Turning the camera upwards while filming [something]","placeholders":["waist basket"]}, +{"id":"207651","label":"putting camera into hat","template":"Putting [something] into [something]","placeholders":["camera","hat"]}, +{"id":"17176","label":"covering something with something","template":"Covering [something] with [something]","placeholders":["something","something"]}, +{"id":"56889","label":"moving car across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["car"]}, +{"id":"116863","label":"pulling watch out of box","template":"Pulling [something] out of [something]","placeholders":["watch","box"]}, +{"id":"111677","label":"putting a lighter upright on the table","template":"Putting [something] upright on the table","placeholders":["a lighter"]}, +{"id":"97085","label":"lifting a book with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["a book","sunglasses"]}, +{"id":"51243","label":"spilling water onto coffee table","template":"Spilling [something] onto [something]","placeholders":["water","coffee table"]}, +{"id":"55773","label":"hitting orange cup with key","template":"Hitting [something] with [something]","placeholders":["orange cup","key"]}, +{"id":"198180","label":"showing that a coin purse is empty","template":"Showing that [something] is empty","placeholders":["a coin purse"]}, +{"id":"161379","label":"rolling a plastic chair on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a plastic chair"]}, +{"id":"27382","label":"pushing an accumulator so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["an accumulator"]}, +{"id":"190022","label":"hitting a big ball with cardboard","template":"Hitting [something] with [something]","placeholders":["a big ball","cardboard"]}, +{"id":"49454","label":"pulling two ends of remote but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["remote"]}, +{"id":"66547","label":"pretending to squeeze an apple","template":"Pretending to squeeze [something]","placeholders":["an apple"]}, +{"id":"63095","label":"spinning toothpaste that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothpaste"]}, +{"id":"150551","label":"pouring water into beaker","template":"Pouring [something] into [something]","placeholders":["water","beaker"]}, +{"id":"49923","label":"pushing coffee pot so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["coffee pot"]}, +{"id":"91315","label":"spinning the bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["the bottle"]}, +{"id":"210684","label":"bending something so that it deforms","template":"Bending [something] so that it deforms","placeholders":["something"]}, +{"id":"134399","label":"lifting a surface with clip on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["clip"]}, +{"id":"52343","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"81318","label":"moving a wallet down","template":"Moving [something] down","placeholders":["a wallet"]}, +{"id":"121756","label":"dropping a cigarette pack behind a lighter","template":"Dropping [something] behind [something]","placeholders":["a cigarette pack","a lighter"]}, +{"id":"84104","label":"pulling lipstick from right to left","template":"Pulling [something] from right to left","placeholders":["lipstick"]}, +{"id":"168294","label":"attaching paper to book","template":"Attaching [something] to [something]","placeholders":["paper","book"]}, +{"id":"129397","label":"pretending to be tearing plastic case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic case"]}, +{"id":"175476","label":"holding a plastic bottle in front of a cap","template":"Holding [something] in front of [something]","placeholders":["a plastic bottle","a cap"]}, +{"id":"181154","label":"scooping banana up with cup","template":"Scooping [something] up with [something]","placeholders":["banana","cup"]}, +{"id":"180119","label":"pulling tv controller from left to right","template":"Pulling [something] from left to right","placeholders":["tv controller"]}, +{"id":"83090","label":"pushing sunglasses so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sunglasses"]}, +{"id":"104742","label":"pushing a toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a toy"]}, +{"id":"123011","label":"letting spray can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["spray can"]}, +{"id":"120828","label":"lifting figurine up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["figurine"]}, +{"id":"174788","label":"moving cup closer to pen","template":"Moving [something] closer to [something]","placeholders":["cup","pen"]}, +{"id":"189753","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"52026","label":"plugging phone wire into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone wire","phone"]}, +{"id":"99552","label":"spinning dreidel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["dreidel"]}, +{"id":"182126","label":"showing that ramekin is empty","template":"Showing that [something] is empty","placeholders":["ramekin"]}, +{"id":"76639","label":"putting cookie jar and glass on the table","template":"Putting [something] and [something] on the table","placeholders":["cookie jar","glass"]}, +{"id":"82090","label":"turning the camera left while filming red watch box","template":"Turning the camera left while filming [something]","placeholders":["red watch box"]}, +{"id":"11477","label":"moving a cylindrical battery and a pocket watch so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a cylindrical battery","a pocket watch"]}, +{"id":"149237","label":"tearing tearing a sheet of paper into two pieces into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing a sheet of paper into two pieces"]}, +{"id":"193251","label":"putting tape and scissors on the table","template":"Putting [something] and [something] on the table","placeholders":["tape","scissors"]}, +{"id":"201420","label":"turning the camera right while filming eggplant","template":"Turning the camera right while filming [something]","placeholders":["eggplant"]}, +{"id":"177438","label":"tilting notebook with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["notebook","pen"]}, +{"id":"28318","label":"tilting plate with glove on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","glove"]}, +{"id":"136563","label":"putting a glue in front of a container","template":"Putting [something] in front of [something]","placeholders":["a glue","a container"]}, +{"id":"167239","label":"dropping a bead into an organizer box","template":"Dropping [something] into [something]","placeholders":["a bead","an organizer box"]}, +{"id":"46991","label":"pushing pens so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pens"]}, +{"id":"76215","label":"rolling soda can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["soda can"]}, +{"id":"218531","label":"trying to bend a scissor so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a scissor"]}, +{"id":"4319","label":"putting 2 coasters onto a glass","template":"Putting [number of] [something] onto [something]","placeholders":["2","coasters","a glass"]}, +{"id":"67155","label":"moving cigarette down","template":"Moving [something] down","placeholders":["cigarette"]}, +{"id":"106098","label":"plugging air conditioning unit into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["air conditioning unit","wall"]}, +{"id":"219037","label":"pushing a stuffed bear off of a dresser","template":"Pushing [something] off of [something]","placeholders":["a stuffed bear","a dresser"]}, +{"id":"129609","label":"pushing spoon so it spins","template":"Pushing [something] so it spins","placeholders":["spoon"]}, +{"id":"5475","label":"putting marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker pen"]}, +{"id":"204551","label":"lifting a can with a pencil on it","template":"Lifting [something] with [something] on it","placeholders":["a can","a pencil"]}, +{"id":"85483","label":"holding toilet paper over phone","template":"Holding [something] over [something]","placeholders":["toilet paper","phone"]}, +{"id":"127585","label":"tipping small canister over","template":"Tipping [something] over","placeholders":["small canister"]}, +{"id":"98819","label":"turning cellphone upside down","template":"Turning [something] upside down","placeholders":["cellphone"]}, +{"id":"206689","label":"putting nailpolish on a surface","template":"Putting [something] on a surface","placeholders":["nailpolish"]}, +{"id":"158643","label":"stuffing shirt into hand","template":"Stuffing [something] into [something]","placeholders":["shirt","hand"]}, +{"id":"41828","label":"putting pencil behind mug","template":"Putting [something] behind [something]","placeholders":["pencil","mug"]}, +{"id":"87145","label":"taking one spray bottle","template":"Taking [one of many similar things on the table]","placeholders":["one spray bottle"]}, +{"id":"26744","label":"pretending to put fork into mug","template":"Pretending to put [something] into [something]","placeholders":["fork","mug"]}, +{"id":"41462","label":"holding scissors over a keyboard","template":"Holding [something] over [something]","placeholders":["scissors","a keyboard"]}, +{"id":"207200","label":"pulling a tail from behind of a cat","template":"Pulling [something] from behind of [something]","placeholders":["a tail","a cat"]}, +{"id":"208045","label":"putting a hair brush on a surface","template":"Putting [something] on a surface","placeholders":["a hair brush"]}, +{"id":"110143","label":"stacking 3 pot","template":"Stacking [number of] [something]","placeholders":["3","pot"]}, +{"id":"110800","label":"holding a toy train","template":"Holding [something]","placeholders":["a toy train"]}, +{"id":"196670","label":"holding something in front of something","template":"Holding [something] in front of [something]","placeholders":["something","something"]}, +{"id":"116776","label":"holding phone in front of bottle","template":"Holding [something] in front of [something]","placeholders":["phone","bottle"]}, +{"id":"118044","label":"pretending to put syringe onto box","template":"Pretending to put [something] onto [something]","placeholders":["syringe","box"]}, +{"id":"42633","label":"trying but failing to attach wrong cable to laptop because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["wrong cable","laptop"]}, +{"id":"39831","label":"spreading butter onto bread","template":"Spreading [something] onto [something]","placeholders":["butter","bread"]}, +{"id":"171488","label":"poking plush doll so that it falls over","template":"Poking [something] so that it falls over","placeholders":["plush doll"]}, +{"id":"39068","label":"a leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a leaf"]}, +{"id":"55506","label":"pushing hand cream tube so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hand cream tube"]}, +{"id":"17888","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"219692","label":"pushing a yellow pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a yellow pencil"]}, +{"id":"130325","label":"sprinkling sugar onto a cup","template":"Sprinkling [something] onto [something]","placeholders":["sugar","a cup"]}, +{"id":"39672","label":"putting bottles with bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottles with bottles"]}, +{"id":"99951","label":"pushing lid so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lid"]}, +{"id":"211156","label":"pretending to pick hammer up","template":"Pretending to pick [something] up","placeholders":["hammer"]}, +{"id":"209828","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"433","label":"showing foal to the camera","template":"Showing [something] to the camera","placeholders":["foal"]}, +{"id":"70940","label":"stuffing chip bag into bigger bag","template":"Stuffing [something] into [something]","placeholders":["chip bag","bigger bag"]}, +{"id":"91488","label":"putting a box behind a stack","template":"Putting [something] behind [something]","placeholders":["a box","a stack"]}, +{"id":"114641","label":"moving clock and pill bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["clock","pill bottle"]}, +{"id":"81012","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"4545","label":"pretending or trying and failing to twist top","template":"Pretending or trying and failing to twist [something]","placeholders":["top"]}, +{"id":"110123","label":"holding brush in front of cup","template":"Holding [something] in front of [something]","placeholders":["brush","cup"]}, +{"id":"39756","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"117524","label":"moving plastic flower closer to toy duck","template":"Moving [something] closer to [something]","placeholders":["plastic flower","toy duck"]}, +{"id":"145532","label":"dropping toy onto tile","template":"Dropping [something] onto [something]","placeholders":["toy","tile"]}, +{"id":"33671","label":"stuffing sheet into can","template":"Stuffing [something] into [something]","placeholders":["sheet","can"]}, +{"id":"32750","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"3839","label":"putting brush, scissors and comb on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["brush","scissors","comb"]}, +{"id":"162877","label":"pushing nail polish so it spins","template":"Pushing [something] so it spins","placeholders":["nail polish"]}, +{"id":"22200","label":"bottle colliding with bottle opener and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle opener"]}, +{"id":"28911","label":"lifting up one end of vase, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["vase"]}, +{"id":"100026","label":"twisting airscrew","template":"Twisting [something]","placeholders":["airscrew"]}, +{"id":"68862","label":"covering a wrist band with a hand","template":"Covering [something] with [something]","placeholders":["a wrist band","a hand"]}, +{"id":"195082","label":"moving a beer can away from a mug","template":"Moving [something] away from [something]","placeholders":["a beer can","a mug"]}, +{"id":"57070","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"177266","label":"plugging phone charger into power socket","template":"Plugging [something] into [something]","placeholders":["phone charger","power socket"]}, +{"id":"118082","label":"folding a book page","template":"Folding [something]","placeholders":["a book page"]}, +{"id":"48709","label":"pretending to put black disc case on a surface","template":"Pretending to put [something] on a surface","placeholders":["black disc case"]}, +{"id":"220761","label":"dropping an apple next to a mug","template":"Dropping [something] next to [something]","placeholders":["an apple","a mug"]}, +{"id":"67092","label":"putting hat behind shoe","template":"Putting [something] behind [something]","placeholders":["hat","shoe"]}, +{"id":"45135","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"166328","label":"holding remote in front of fireplace","template":"Holding [something] in front of [something]","placeholders":["remote","fireplace"]}, +{"id":"139001","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"55424","label":"touching (without moving) lightningbulb of lamp","template":"Touching (without moving) [part] of [something]","placeholders":["lightningbulb","lamp"]}, +{"id":"138757","label":"throwing goggles","template":"Throwing [something]","placeholders":["goggles"]}, +{"id":"176239","label":"turning the camera right while filming old mobile phone","template":"Turning the camera right while filming [something]","placeholders":["old mobile phone"]}, +{"id":"169723","label":"plugging cable into connector","template":"Plugging [something] into [something]","placeholders":["cable","connector"]}, +{"id":"15622","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"9407","label":"covering a pen with a tissue","template":"Covering [something] with [something]","placeholders":["a pen","a tissue"]}, +{"id":"114693","label":"lifting a collar up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a collar"]}, +{"id":"34767","label":"turning the camera left while filming purple microfiber","template":"Turning the camera left while filming [something]","placeholders":["purple microfiber"]}, +{"id":"196675","label":"covering snail shell with paper","template":"Covering [something] with [something]","placeholders":["snail shell","paper"]}, +{"id":"41608","label":"holding computer mouse next to desktop computer","template":"Holding [something] next to [something]","placeholders":["computer mouse","desktop computer"]}, +{"id":"196305","label":"plugging phone charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone charger","wall outlet"]}, +{"id":"153840","label":"pretending to take nair varnish from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["nair varnish","surface"]}, +{"id":"85604","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"63688","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"160835","label":"moving chalk up","template":"Moving [something] up","placeholders":["chalk"]}, +{"id":"65088","label":"putting pen next to pen","template":"Putting [something] next to [something]","placeholders":["pen","pen"]}, +{"id":"10126","label":"lifting magnifying glass up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["magnifying glass"]}, +{"id":"171030","label":"pushing bottle off of counter","template":"Pushing [something] off of [something]","placeholders":["bottle","counter"]}, +{"id":"143445","label":"showing pen drive on top of the bowl","template":"Showing [something] on top of [something]","placeholders":["pen drive","the bowl"]}, +{"id":"216565","label":"dropping wallet onto chair","template":"Dropping [something] onto [something]","placeholders":["wallet","chair"]}, +{"id":"174835","label":"gummy ball being deflected from tennis ball","template":"[Something] being deflected from [something]","placeholders":["gummy ball","tennis ball"]}, +{"id":"30171","label":"holding a bottle of mustard behind a plastic bag","template":"Holding [something] behind [something]","placeholders":["a bottle of mustard","a plastic bag"]}, +{"id":"193046","label":"moving crayon closer to candle","template":"Moving [something] closer to [something]","placeholders":["crayon","candle"]}, +{"id":"83949","label":"putting a pepper shaker on a surface","template":"Putting [something] on a surface","placeholders":["a pepper shaker"]}, +{"id":"48193","label":"moving phone across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["phone"]}, +{"id":"131836","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"171174","label":"turning the camera right while filming the tv","template":"Turning the camera right while filming [something]","placeholders":["the tv"]}, +{"id":"210400","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"44142","label":"hitting chair with racket","template":"Hitting [something] with [something]","placeholders":["chair","racket"]}, +{"id":"91770","label":"throwing ear muffs in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ear muffs"]}, +{"id":"196784","label":"showing that a yellow cup is empty","template":"Showing that [something] is empty","placeholders":["a yellow cup"]}, +{"id":"150212","label":"something colliding with something and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["something","something"]}, +{"id":"5589","label":"taking a pompom","template":"Taking [one of many similar things on the table]","placeholders":["a pompom"]}, +{"id":"132038","label":"throwing tape","template":"Throwing [something]","placeholders":["tape"]}, +{"id":"82496","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"39662","label":"holding umbrela in front of cabinet","template":"Holding [something] in front of [something]","placeholders":["umbrela","cabinet"]}, +{"id":"203477","label":"showing cough drop next to tv remote","template":"Showing [something] next to [something]","placeholders":["cough drop","tv remote"]}, +{"id":"97560","label":"putting laptop onto table","template":"Putting [something] onto [something]","placeholders":["laptop","table"]}, +{"id":"34454","label":"tilting black file with white toy car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","white toy car"]}, +{"id":"49392","label":"putting keyd","template":"Putting [something similar to other things that are already on the table]","placeholders":["keyd"]}, +{"id":"171871","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"8244","label":"tilting a cylindrical box with a stone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cylindrical box","a stone"]}, +{"id":"179244","label":"letting a platic hollow pipe roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a platic hollow pipe"]}, +{"id":"80754","label":"squeezing cushion","template":"Squeezing [something]","placeholders":["cushion"]}, +{"id":"6949","label":"moving white colour board clip down","template":"Moving [something] down","placeholders":["white colour board clip"]}, +{"id":"34330","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"213968","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"104691","label":"holding plate in front of mirror","template":"Holding [something] in front of [something]","placeholders":["plate","mirror"]}, +{"id":"43497","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"125910","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"214327","label":"orange being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["orange","wall"]}, +{"id":"153678","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"62940","label":"pretending or failing to wipe ink off of board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","board"]}, +{"id":"154473","label":"opening tin","template":"Opening [something]","placeholders":["tin"]}, +{"id":"194086","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"24813","label":"attaching light bulb to socket","template":"Attaching [something] to [something]","placeholders":["light bulb","socket"]}, +{"id":"34431","label":"putting a pair of socks into drawer","template":"Putting [something] into [something]","placeholders":["a pair of socks","drawer"]}, +{"id":"171534","label":"moving leaves of plant","template":"Moving [part] of [something]","placeholders":["leaves","plant"]}, +{"id":"54338","label":"holding tangerine behind mug","template":"Holding [something] behind [something]","placeholders":["tangerine","mug"]}, +{"id":"1014","label":"covering fossil with pillow","template":"Covering [something] with [something]","placeholders":["fossil","pillow"]}, +{"id":"161613","label":"putting perfume bottle on a surface","template":"Putting [something] on a surface","placeholders":["perfume bottle"]}, +{"id":"139649","label":"taking soda bottle","template":"Taking [one of many similar things on the table]","placeholders":["soda bottle"]}, +{"id":"39518","label":"covering white colour board clip with duster","template":"Covering [something] with [something]","placeholders":["white colour board clip","duster"]}, +{"id":"112252","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"187802","label":"pushing feeding bottle from left to right","template":"Pushing [something] from left to right","placeholders":["feeding bottle"]}, +{"id":"163771","label":"putting a bell pepper with a group of bell peppers","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bell pepper with a group of bell peppers"]}, +{"id":"216413","label":"pretending to pick black play cards up","template":"Pretending to pick [something] up","placeholders":["black play cards"]}, +{"id":"24489","label":"pushing flowers from left to right","template":"Pushing [something] from left to right","placeholders":["flowers"]}, +{"id":"27375","label":"pretending to pick a mobile toy up","template":"Pretending to pick [something] up","placeholders":["a mobile toy"]}, +{"id":"211572","label":"holding smartphone next to liptint","template":"Holding [something] next to [something]","placeholders":["smartphone","liptint"]}, +{"id":"50186","label":"moving punching machine away from stapler","template":"Moving [something] away from [something]","placeholders":["punching machine","stapler"]}, +{"id":"14213","label":"holding keyboard in front of backpack","template":"Holding [something] in front of [something]","placeholders":["keyboard","backpack"]}, +{"id":"69252","label":"pretending to pour water out of measuring cup, but measuring cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","measuring cup","measuring cup"]}, +{"id":"146714","label":"plugging a cable into an outlet","template":"Plugging [something] into [something]","placeholders":["a cable","an outlet"]}, +{"id":"188755","label":"lifting plant with coffin on it","template":"Lifting [something] with [something] on it","placeholders":["plant","coffin"]}, +{"id":"209027","label":"covering box with blanket","template":"Covering [something] with [something]","placeholders":["box","blanket"]}, +{"id":"168035","label":"touching (without moving) roller of paper","template":"Touching (without moving) [part] of [something]","placeholders":["roller","paper"]}, +{"id":"216979","label":"poking ball so that it spins around","template":"Poking [something] so that it spins around","placeholders":["ball"]}, +{"id":"118434","label":"dropping necklace in front of door","template":"Dropping [something] in front of [something]","placeholders":["necklace","door"]}, +{"id":"141432","label":"spilling water next to faucet","template":"Spilling [something] next to [something]","placeholders":["water","faucet"]}, +{"id":"110590","label":"lifting xbox game with phone on it","template":"Lifting [something] with [something] on it","placeholders":["xbox game","phone"]}, +{"id":"92022","label":"holding umbrella in front of pillar","template":"Holding [something] in front of [something]","placeholders":["umbrella","pillar"]}, +{"id":"175720","label":"showing a cup next to a fan","template":"Showing [something] next to [something]","placeholders":["a cup","a fan"]}, +{"id":"13962","label":"sprinkling flour onto mat","template":"Sprinkling [something] onto [something]","placeholders":["flour","mat"]}, +{"id":"201315","label":"plugging headphones into a tablet","template":"Plugging [something] into [something]","placeholders":["headphones","a tablet"]}, +{"id":"152835","label":"taking orange","template":"Taking [one of many similar things on the table]","placeholders":["orange"]}, +{"id":"116511","label":"lifting up one end of bag, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bag"]}, +{"id":"12722","label":"squeezing a basketball","template":"Squeezing [something]","placeholders":["a basketball"]}, +{"id":"112050","label":"opening pouch","template":"Opening [something]","placeholders":["pouch"]}, +{"id":"86588","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"51920","label":"opening basket","template":"Opening [something]","placeholders":["basket"]}, +{"id":"163685","label":"taking one of the glass bottles","template":"Taking [one of many similar things on the table]","placeholders":["one of the glass bottles"]}, +{"id":"13339","label":"twisting mascara tube","template":"Twisting [something]","placeholders":["mascara tube"]}, +{"id":"91775","label":"turning a picture upside down","template":"Turning [something] upside down","placeholders":["a picture"]}, +{"id":"154735","label":"plugging usb into usb port","template":"Plugging [something] into [something]","placeholders":["usb","usb port"]}, +{"id":"72168","label":"showing tape behind jar","template":"Showing [something] behind [something]","placeholders":["tape","jar"]}, +{"id":"43685","label":"bending wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["wire"]}, +{"id":"165103","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"149405","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"80727","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"177680","label":"sticky note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sticky note"]}, +{"id":"191149","label":"pouring water into a mug","template":"Pouring [something] into [something]","placeholders":["water","a mug"]}, +{"id":"205805","label":"moving big ball and small ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["big ball","small ball"]}, +{"id":"109420","label":"lifting a lid up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a lid"]}, +{"id":"208158","label":"plugging usb into pc","template":"Plugging [something] into [something]","placeholders":["usb","pc"]}, +{"id":"110495","label":"tipping a cup with milk over, so milk falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","milk","milk"]}, +{"id":"84250","label":"holding bottle in front of helmet","template":"Holding [something] in front of [something]","placeholders":["bottle","helmet"]}, +{"id":"161643","label":"covering a pen with tissue paper","template":"Covering [something] with [something]","placeholders":["a pen","tissue paper"]}, +{"id":"82692","label":"pretending to be tearing plastic glass","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic glass"]}, +{"id":"66961","label":"putting book on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["book","chair"]}, +{"id":"1733","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"167687","label":"pulling paper out of bowl","template":"Pulling [something] out of [something]","placeholders":["paper","bowl"]}, +{"id":"159534","label":"moving eye drops across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["eye drops"]}, +{"id":"136015","label":"pushing an iron from right to left","template":"Pushing [something] from right to left","placeholders":["an iron"]}, +{"id":"103594","label":"putting box on a surface","template":"Putting [something] on a surface","placeholders":["box"]}, +{"id":"34012","label":"dropping a matchbox in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a book"]}, +{"id":"195629","label":"moving away from scotch tape with your camera","template":"Moving away from [something] with your camera","placeholders":["scotch tape"]}, +{"id":"110670","label":"moving pen away from candle","template":"Moving [something] away from [something]","placeholders":["pen","candle"]}, +{"id":"194148","label":"taking remote out of box","template":"Taking [something] out of [something]","placeholders":["remote","box"]}, +{"id":"88665","label":"throwing a toy microphone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a toy microphone"]}, +{"id":"113233","label":"covering a watch with a cloth","template":"Covering [something] with [something]","placeholders":["a watch","a cloth"]}, +{"id":"137805","label":"showing thermometer to the camera","template":"Showing [something] to the camera","placeholders":["thermometer"]}, +{"id":"196080","label":"throwing a pack of gum onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pack of gum"]}, +{"id":"196408","label":"putting banana upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["banana"]}, +{"id":"70324","label":"lifting a surface with a watch on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a watch"]}, +{"id":"87849","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"62096","label":"showing mug behind kettle","template":"Showing [something] behind [something]","placeholders":["mug","kettle"]}, +{"id":"171194","label":"dropping a loonie into a cup","template":"Dropping [something] into [something]","placeholders":["a loonie","a cup"]}, +{"id":"40391","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"132103","label":"a ply of toilet paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a ply of toilet paper"]}, +{"id":"110293","label":"pretending to take screwdriver from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["screwdriver","floor"]}, +{"id":"52422","label":"turning remote upside down","template":"Turning [something] upside down","placeholders":["remote"]}, +{"id":"201542","label":"uncovering a red pencil","template":"Uncovering [something]","placeholders":["a red pencil"]}, +{"id":"122099","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"83296","label":"pushing sun glasses so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["sun glasses"]}, +{"id":"174240","label":"holding cloth in front of deck of cards","template":"Holding [something] in front of [something]","placeholders":["cloth","deck of cards"]}, +{"id":"56797","label":"holding sunglasses in front of monitor","template":"Holding [something] in front of [something]","placeholders":["sunglasses","monitor"]}, +{"id":"43344","label":"tearing handout into two pieces","template":"Tearing [something] into two pieces","placeholders":["handout"]}, +{"id":"23324","label":"putting t-shirt packet on a surface","template":"Putting [something] on a surface","placeholders":["t-shirt packet"]}, +{"id":"12777","label":"moving away from waste basket with your camera","template":"Moving away from [something] with your camera","placeholders":["waste basket"]}, +{"id":"151948","label":"moving car key towards the camera","template":"Moving [something] towards the camera","placeholders":["car key"]}, +{"id":"117425","label":"closing small freshmints","template":"Closing [something]","placeholders":["small freshmints"]}, +{"id":"157360","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"117478","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"36585","label":"plastic falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic"]} +] diff --git a/data/something/sft-action-verbolise-train.jsonl b/data/something/sft-action-verbolise-train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c7088035f8de5ee6eac4c9bad955215d6fd583b3 --- /dev/null +++ b/data/something/sft-action-verbolise-train.jsonl @@ -0,0 +1,13765 @@ +{"id": "000000105143", "images": ["AURORA/data/something/frames/154202/first.jpg", "AURORA/data/something/frames/154202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming camel"}]} +{"id": "000000105144", "images": ["AURORA/data/something/frames/195805/first.jpg", "AURORA/data/something/frames/195805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging the plug into the socket"}]} +{"id": "000000105145", "images": ["AURORA/data/something/frames/190795/first.jpg", "AURORA/data/something/frames/190795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming bottle"}]} +{"id": "000000105146", "images": ["AURORA/data/something/frames/131125/first.jpg", "AURORA/data/something/frames/131125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending carrot until it breaks"}]} +{"id": "000000105147", "images": ["AURORA/data/something/frames/220123/first.jpg", "AURORA/data/something/frames/220123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering card with papper"}]} +{"id": "000000105148", "images": ["AURORA/data/something/frames/32/first.jpg", "AURORA/data/something/frames/32/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup"}]} +{"id": "000000105149", "images": ["AURORA/data/something/frames/1147/first.jpg", "AURORA/data/something/frames/1147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile phone and specs closer to each other"}]} +{"id": "000000105150", "images": ["AURORA/data/something/frames/141261/first.jpg", "AURORA/data/something/frames/141261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a plastic bag just a little bit"}]} +{"id": "000000105151", "images": ["AURORA/data/something/frames/35295/first.jpg", "AURORA/data/something/frames/35295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into plug socket"}]} +{"id": "000000105152", "images": ["AURORA/data/something/frames/184107/first.jpg", "AURORA/data/something/frames/184107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key chain up"}]} +{"id": "000000105153", "images": ["AURORA/data/something/frames/5140/first.jpg", "AURORA/data/something/frames/5140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottle"}]} +{"id": "000000105154", "images": ["AURORA/data/something/frames/71847/first.jpg", "AURORA/data/something/frames/71847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plate down"}]} +{"id": "000000105155", "images": ["AURORA/data/something/frames/133331/first.jpg", "AURORA/data/something/frames/133331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote control onto desk"}]} +{"id": "000000105156", "images": ["AURORA/data/something/frames/149139/first.jpg", "AURORA/data/something/frames/149139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 toy cars onto duster"}]} +{"id": "000000105157", "images": ["AURORA/data/something/frames/157845/first.jpg", "AURORA/data/something/frames/157845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring apple juice into a glass"}]} +{"id": "000000105158", "images": ["AURORA/data/something/frames/183482/first.jpg", "AURORA/data/something/frames/183482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming board"}]} +{"id": "000000105159", "images": ["AURORA/data/something/frames/198475/first.jpg", "AURORA/data/something/frames/198475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet"}]} +{"id": "000000105160", "images": ["AURORA/data/something/frames/102187/first.jpg", "AURORA/data/something/frames/102187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000105161", "images": ["AURORA/data/something/frames/126211/first.jpg", "AURORA/data/something/frames/126211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing fork from right to left"}]} +{"id": "000000105162", "images": ["AURORA/data/something/frames/14292/first.jpg", "AURORA/data/something/frames/14292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a teaspoon behind a mug"}]} +{"id": "000000105163", "images": ["AURORA/data/something/frames/208472/first.jpg", "AURORA/data/something/frames/208472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something so that it almost falls off but doesn't"}]} +{"id": "000000105164", "images": ["AURORA/data/something/frames/52696/first.jpg", "AURORA/data/something/frames/52696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting notebook with spoon on it"}]} +{"id": "000000105165", "images": ["AURORA/data/something/frames/64006/first.jpg", "AURORA/data/something/frames/64006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker"}]} +{"id": "000000105166", "images": ["AURORA/data/something/frames/37382/first.jpg", "AURORA/data/something/frames/37382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105167", "images": ["AURORA/data/something/frames/6853/first.jpg", "AURORA/data/something/frames/6853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming shampoo bottle"}]} +{"id": "000000105168", "images": ["AURORA/data/something/frames/60360/first.jpg", "AURORA/data/something/frames/60360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a marker away from each other"}]} +{"id": "000000105169", "images": ["AURORA/data/something/frames/45788/first.jpg", "AURORA/data/something/frames/45788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling rubbing alcohol from behind of a soup dispenser"}]} +{"id": "000000105170", "images": ["AURORA/data/something/frames/176844/first.jpg", "AURORA/data/something/frames/176844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a doll with a face towel"}]} +{"id": "000000105171", "images": ["AURORA/data/something/frames/207533/first.jpg", "AURORA/data/something/frames/207533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling wheat bran onto a counter"}]} +{"id": "000000105172", "images": ["AURORA/data/something/frames/53834/first.jpg", "AURORA/data/something/frames/53834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife next to glass cup"}]} +{"id": "000000105173", "images": ["AURORA/data/something/frames/98523/first.jpg", "AURORA/data/something/frames/98523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sugar onto plate"}]} +{"id": "000000105174", "images": ["AURORA/data/something/frames/89300/first.jpg", "AURORA/data/something/frames/89300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening oreo package"}]} +{"id": "000000105175", "images": ["AURORA/data/something/frames/174121/first.jpg", "AURORA/data/something/frames/174121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving foot of feet"}]} +{"id": "000000105176", "images": ["AURORA/data/something/frames/81048/first.jpg", "AURORA/data/something/frames/81048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving earring up"}]} +{"id": "000000105177", "images": ["AURORA/data/something/frames/129488/first.jpg", "AURORA/data/something/frames/129488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottle from left to right"}]} +{"id": "000000105178", "images": ["AURORA/data/something/frames/216225/first.jpg", "AURORA/data/something/frames/216225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pillow onto floor"}]} +{"id": "000000105179", "images": ["AURORA/data/something/frames/179339/first.jpg", "AURORA/data/something/frames/179339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking dominoes"}]} +{"id": "000000105180", "images": ["AURORA/data/something/frames/97447/first.jpg", "AURORA/data/something/frames/97447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping phone over"}]} +{"id": "000000105181", "images": ["AURORA/data/something/frames/112080/first.jpg", "AURORA/data/something/frames/112080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring canola oi into the hot pan"}]} +{"id": "000000105182", "images": ["AURORA/data/something/frames/98309/first.jpg", "AURORA/data/something/frames/98309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on a surface"}]} +{"id": "000000105183", "images": ["AURORA/data/something/frames/136247/first.jpg", "AURORA/data/something/frames/136247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105184", "images": ["AURORA/data/something/frames/129901/first.jpg", "AURORA/data/something/frames/129901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a spray bottle over"}]} +{"id": "000000105185", "images": ["AURORA/data/something/frames/141900/first.jpg", "AURORA/data/something/frames/141900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a textbook onto a box"}]} +{"id": "000000105186", "images": ["AURORA/data/something/frames/103377/first.jpg", "AURORA/data/something/frames/103377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking headphones up"}]} +{"id": "000000105187", "images": ["AURORA/data/something/frames/95874/first.jpg", "AURORA/data/something/frames/95874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into the wall but pulling it right out as you remove your hand"}]} +{"id": "000000105188", "images": ["AURORA/data/something/frames/88820/first.jpg", "AURORA/data/something/frames/88820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering chapstick with a pot lid"}]} +{"id": "000000105189", "images": ["AURORA/data/something/frames/95683/first.jpg", "AURORA/data/something/frames/95683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a toy with a towel"}]} +{"id": "000000105190", "images": ["AURORA/data/something/frames/104527/first.jpg", "AURORA/data/something/frames/104527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending small magazine so that it deforms"}]} +{"id": "000000105191", "images": ["AURORA/data/something/frames/215203/first.jpg", "AURORA/data/something/frames/215203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering computer with blanket"}]} +{"id": "000000105192", "images": ["AURORA/data/something/frames/44727/first.jpg", "AURORA/data/something/frames/44727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking pc so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000105193", "images": ["AURORA/data/something/frames/158759/first.jpg", "AURORA/data/something/frames/158759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a mouse from left to right"}]} +{"id": "000000105194", "images": ["AURORA/data/something/frames/218282/first.jpg", "AURORA/data/something/frames/218282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000105195", "images": ["AURORA/data/something/frames/72990/first.jpg", "AURORA/data/something/frames/72990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) towel wet until water comes out"}]} +{"id": "000000105196", "images": ["AURORA/data/something/frames/169237/first.jpg", "AURORA/data/something/frames/169237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a teddy with a spoon"}]} +{"id": "000000105197", "images": ["AURORA/data/something/frames/133764/first.jpg", "AURORA/data/something/frames/133764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering glasses with cloth"}]} +{"id": "000000105198", "images": ["AURORA/data/something/frames/16687/first.jpg", "AURORA/data/something/frames/16687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a rubber duck so that it almost falls off but doesn't"}]} +{"id": "000000105199", "images": ["AURORA/data/something/frames/106031/first.jpg", "AURORA/data/something/frames/106031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tapemeasure across a surface without it falling down"}]} +{"id": "000000105200", "images": ["AURORA/data/something/frames/74405/first.jpg", "AURORA/data/something/frames/74405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tablet with newspaper"}]} +{"id": "000000105201", "images": ["AURORA/data/something/frames/4887/first.jpg", "AURORA/data/something/frames/4887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen"}]} +{"id": "000000105202", "images": ["AURORA/data/something/frames/156885/first.jpg", "AURORA/data/something/frames/156885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping teacup with tea over, so tea falls out"}]} +{"id": "000000105203", "images": ["AURORA/data/something/frames/203074/first.jpg", "AURORA/data/something/frames/203074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from wastebin with your camera"}]} +{"id": "000000105204", "images": ["AURORA/data/something/frames/16512/first.jpg", "AURORA/data/something/frames/16512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper sheet"}]} +{"id": "000000105205", "images": ["AURORA/data/something/frames/175606/first.jpg", "AURORA/data/something/frames/175606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching small green ball with your camera"}]} +{"id": "000000105206", "images": ["AURORA/data/something/frames/104280/first.jpg", "AURORA/data/something/frames/104280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup in front of outlet"}]} +{"id": "000000105207", "images": ["AURORA/data/something/frames/111134/first.jpg", "AURORA/data/something/frames/111134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cream tube with a paper"}]} +{"id": "000000105208", "images": ["AURORA/data/something/frames/89658/first.jpg", "AURORA/data/something/frames/89658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending bed sheet so that it deforms"}]} +{"id": "000000105209", "images": ["AURORA/data/something/frames/767/first.jpg", "AURORA/data/something/frames/767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering glass jar"}]} +{"id": "000000105210", "images": ["AURORA/data/something/frames/96652/first.jpg", "AURORA/data/something/frames/96652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping train car with chapstick over, so chapstick falls out"}]} +{"id": "000000105211", "images": ["AURORA/data/something/frames/220035/first.jpg", "AURORA/data/something/frames/220035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cycle towards the camera"}]} +{"id": "000000105212", "images": ["AURORA/data/something/frames/149505/first.jpg", "AURORA/data/something/frames/149505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving compass with pencil down"}]} +{"id": "000000105213", "images": ["AURORA/data/something/frames/49419/first.jpg", "AURORA/data/something/frames/49419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bowl with bottle"}]} +{"id": "000000105214", "images": ["AURORA/data/something/frames/86126/first.jpg", "AURORA/data/something/frames/86126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: toy colliding with toy and both come to a halt"}]} +{"id": "000000105215", "images": ["AURORA/data/something/frames/73765/first.jpg", "AURORA/data/something/frames/73765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball in front of headphones"}]} +{"id": "000000105216", "images": ["AURORA/data/something/frames/154331/first.jpg", "AURORA/data/something/frames/154331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a small toy"}]} +{"id": "000000105217", "images": ["AURORA/data/something/frames/174861/first.jpg", "AURORA/data/something/frames/174861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting yellow clay container into orange bowl"}]} +{"id": "000000105218", "images": ["AURORA/data/something/frames/33834/first.jpg", "AURORA/data/something/frames/33834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking soda can up"}]} +{"id": "000000105219", "images": ["AURORA/data/something/frames/35202/first.jpg", "AURORA/data/something/frames/35202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 cup"}]} +{"id": "000000105220", "images": ["AURORA/data/something/frames/70281/first.jpg", "AURORA/data/something/frames/70281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming atm machine"}]} +{"id": "000000105221", "images": ["AURORA/data/something/frames/32562/first.jpg", "AURORA/data/something/frames/32562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pillow into pillowcase"}]} +{"id": "000000105222", "images": ["AURORA/data/something/frames/22383/first.jpg", "AURORA/data/something/frames/22383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the pen up"}]} +{"id": "000000105223", "images": ["AURORA/data/something/frames/95173/first.jpg", "AURORA/data/something/frames/95173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105224", "images": ["AURORA/data/something/frames/45504/first.jpg", "AURORA/data/something/frames/45504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming pick up van"}]} +{"id": "000000105225", "images": ["AURORA/data/something/frames/107032/first.jpg", "AURORA/data/something/frames/107032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto referigerator"}]} +{"id": "000000105226", "images": ["AURORA/data/something/frames/124218/first.jpg", "AURORA/data/something/frames/124218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming steps"}]} +{"id": "000000105227", "images": ["AURORA/data/something/frames/129920/first.jpg", "AURORA/data/something/frames/129920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glue stick upright on the table"}]} +{"id": "000000105228", "images": ["AURORA/data/something/frames/67825/first.jpg", "AURORA/data/something/frames/67825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000105229", "images": ["AURORA/data/something/frames/150802/first.jpg", "AURORA/data/something/frames/150802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000105230", "images": ["AURORA/data/something/frames/101585/first.jpg", "AURORA/data/something/frames/101585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and spoon closer to each other"}]} +{"id": "000000105231", "images": ["AURORA/data/something/frames/107628/first.jpg", "AURORA/data/something/frames/107628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 breads"}]} +{"id": "000000105232", "images": ["AURORA/data/something/frames/67266/first.jpg", "AURORA/data/something/frames/67266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork next to mug"}]} +{"id": "000000105233", "images": ["AURORA/data/something/frames/124412/first.jpg", "AURORA/data/something/frames/124412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking ten twigs"}]} +{"id": "000000105234", "images": ["AURORA/data/something/frames/154312/first.jpg", "AURORA/data/something/frames/154312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving garlic presser towards the camera"}]} +{"id": "000000105235", "images": ["AURORA/data/something/frames/148258/first.jpg", "AURORA/data/something/frames/148258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking orange"}]} +{"id": "000000105236", "images": ["AURORA/data/something/frames/220302/first.jpg", "AURORA/data/something/frames/220302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cup from right to left"}]} +{"id": "000000105237", "images": ["AURORA/data/something/frames/134700/first.jpg", "AURORA/data/something/frames/134700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting glass with magnifying glass"}]} +{"id": "000000105238", "images": ["AURORA/data/something/frames/195636/first.jpg", "AURORA/data/something/frames/195636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into laptop"}]} +{"id": "000000105239", "images": ["AURORA/data/something/frames/9576/first.jpg", "AURORA/data/something/frames/9576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000105240", "images": ["AURORA/data/something/frames/2185/first.jpg", "AURORA/data/something/frames/2185/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil on a surface"}]} +{"id": "000000105241", "images": ["AURORA/data/something/frames/48640/first.jpg", "AURORA/data/something/frames/48640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to fridge"}]} +{"id": "000000105242", "images": ["AURORA/data/something/frames/10979/first.jpg", "AURORA/data/something/frames/10979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving post-it notes down"}]} +{"id": "000000105243", "images": ["AURORA/data/something/frames/132896/first.jpg", "AURORA/data/something/frames/132896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping small empty bottle into a mug"}]} +{"id": "000000105244", "images": ["AURORA/data/something/frames/144945/first.jpg", "AURORA/data/something/frames/144945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle of mustrd upright on the table"}]} +{"id": "000000105245", "images": ["AURORA/data/something/frames/206937/first.jpg", "AURORA/data/something/frames/206937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging duracell charger into outlet"}]} +{"id": "000000105246", "images": ["AURORA/data/something/frames/59128/first.jpg", "AURORA/data/something/frames/59128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into the wall"}]} +{"id": "000000105247", "images": ["AURORA/data/something/frames/41668/first.jpg", "AURORA/data/something/frames/41668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring drink into a glass"}]} +{"id": "000000105248", "images": ["AURORA/data/something/frames/168937/first.jpg", "AURORA/data/something/frames/168937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lighter being deflected from control"}]} +{"id": "000000105249", "images": ["AURORA/data/something/frames/91516/first.jpg", "AURORA/data/something/frames/91516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cap into head"}]} +{"id": "000000105250", "images": ["AURORA/data/something/frames/36379/first.jpg", "AURORA/data/something/frames/36379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors up"}]} +{"id": "000000105251", "images": ["AURORA/data/something/frames/26004/first.jpg", "AURORA/data/something/frames/26004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing envelope into two pieces"}]} +{"id": "000000105252", "images": ["AURORA/data/something/frames/182859/first.jpg", "AURORA/data/something/frames/182859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle with a pencil"}]} +{"id": "000000105253", "images": ["AURORA/data/something/frames/96350/first.jpg", "AURORA/data/something/frames/96350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105254", "images": ["AURORA/data/something/frames/160798/first.jpg", "AURORA/data/something/frames/160798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming earphone"}]} +{"id": "000000105255", "images": ["AURORA/data/something/frames/151740/first.jpg", "AURORA/data/something/frames/151740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming wireless mouse"}]} +{"id": "000000105256", "images": ["AURORA/data/something/frames/144311/first.jpg", "AURORA/data/something/frames/144311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from right to left"}]} +{"id": "000000105257", "images": ["AURORA/data/something/frames/121340/first.jpg", "AURORA/data/something/frames/121340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy car into plastic bowl"}]} +{"id": "000000105258", "images": ["AURORA/data/something/frames/187094/first.jpg", "AURORA/data/something/frames/187094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with calculator on it"}]} +{"id": "000000105259", "images": ["AURORA/data/something/frames/60396/first.jpg", "AURORA/data/something/frames/60396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of marker"}]} +{"id": "000000105260", "images": ["AURORA/data/something/frames/87209/first.jpg", "AURORA/data/something/frames/87209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening mason jar"}]} +{"id": "000000105261", "images": ["AURORA/data/something/frames/95042/first.jpg", "AURORA/data/something/frames/95042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of a table"}]} +{"id": "000000105262", "images": ["AURORA/data/something/frames/154158/first.jpg", "AURORA/data/something/frames/154158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into blue cup"}]} +{"id": "000000105263", "images": ["AURORA/data/something/frames/88938/first.jpg", "AURORA/data/something/frames/88938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon next to cup"}]} +{"id": "000000105264", "images": ["AURORA/data/something/frames/4949/first.jpg", "AURORA/data/something/frames/4949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of paper"}]} +{"id": "000000105265", "images": ["AURORA/data/something/frames/154852/first.jpg", "AURORA/data/something/frames/154852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a tomato out of a box of tomatoes"}]} +{"id": "000000105266", "images": ["AURORA/data/something/frames/44577/first.jpg", "AURORA/data/something/frames/44577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of wallet without letting it drop down"}]} +{"id": "000000105267", "images": ["AURORA/data/something/frames/28624/first.jpg", "AURORA/data/something/frames/28624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pepper shaker over"}]} +{"id": "000000105268", "images": ["AURORA/data/something/frames/152912/first.jpg", "AURORA/data/something/frames/152912/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting orange in front of cup"}]} +{"id": "000000105269", "images": ["AURORA/data/something/frames/197287/first.jpg", "AURORA/data/something/frames/197287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with ring on it but not enough for it to slide down"}]} +{"id": "000000105270", "images": ["AURORA/data/something/frames/111338/first.jpg", "AURORA/data/something/frames/111338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a rubberband so that it gets stretched"}]} +{"id": "000000105271", "images": ["AURORA/data/something/frames/75999/first.jpg", "AURORA/data/something/frames/75999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wafer colliding with wafer and both come to a halt"}]} +{"id": "000000105272", "images": ["AURORA/data/something/frames/63526/first.jpg", "AURORA/data/something/frames/63526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000105273", "images": ["AURORA/data/something/frames/45227/first.jpg", "AURORA/data/something/frames/45227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming jackfruits"}]} +{"id": "000000105274", "images": ["AURORA/data/something/frames/66432/first.jpg", "AURORA/data/something/frames/66432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping marker off of a white board"}]} +{"id": "000000105275", "images": ["AURORA/data/something/frames/104293/first.jpg", "AURORA/data/something/frames/104293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a lip balm and a laser toy closer to each other"}]} +{"id": "000000105276", "images": ["AURORA/data/something/frames/217782/first.jpg", "AURORA/data/something/frames/217782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting clip box up completely without letting it drop down"}]} +{"id": "000000105277", "images": ["AURORA/data/something/frames/179385/first.jpg", "AURORA/data/something/frames/179385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000105278", "images": ["AURORA/data/something/frames/6774/first.jpg", "AURORA/data/something/frames/6774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mouse from table"}]} +{"id": "000000105279", "images": ["AURORA/data/something/frames/173425/first.jpg", "AURORA/data/something/frames/173425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a phone"}]} +{"id": "000000105280", "images": ["AURORA/data/something/frames/41732/first.jpg", "AURORA/data/something/frames/41732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pillow onto a bed"}]} +{"id": "000000105281", "images": ["AURORA/data/something/frames/173242/first.jpg", "AURORA/data/something/frames/173242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 coins"}]} +{"id": "000000105282", "images": ["AURORA/data/something/frames/43549/first.jpg", "AURORA/data/something/frames/43549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving button of light switch"}]} +{"id": "000000105283", "images": ["AURORA/data/something/frames/167907/first.jpg", "AURORA/data/something/frames/167907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen from a glass"}]} +{"id": "000000105284", "images": ["AURORA/data/something/frames/91216/first.jpg", "AURORA/data/something/frames/91216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothpick behind a belt"}]} +{"id": "000000105285", "images": ["AURORA/data/something/frames/211630/first.jpg", "AURORA/data/something/frames/211630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming box"}]} +{"id": "000000105286", "images": ["AURORA/data/something/frames/133798/first.jpg", "AURORA/data/something/frames/133798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box in front of a lip balm"}]} +{"id": "000000105287", "images": ["AURORA/data/something/frames/192470/first.jpg", "AURORA/data/something/frames/192470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glue stick and eraser away from each other"}]} +{"id": "000000105288", "images": ["AURORA/data/something/frames/203018/first.jpg", "AURORA/data/something/frames/203018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book underneath book"}]} +{"id": "000000105289", "images": ["AURORA/data/something/frames/18785/first.jpg", "AURORA/data/something/frames/18785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cell phones up"}]} +{"id": "000000105290", "images": ["AURORA/data/something/frames/207766/first.jpg", "AURORA/data/something/frames/207766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle closer to pencil holders"}]} +{"id": "000000105291", "images": ["AURORA/data/something/frames/209129/first.jpg", "AURORA/data/something/frames/209129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting statue with pen"}]} +{"id": "000000105292", "images": ["AURORA/data/something/frames/169125/first.jpg", "AURORA/data/something/frames/169125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a pen so that it falls over"}]} +{"id": "000000105293", "images": ["AURORA/data/something/frames/151527/first.jpg", "AURORA/data/something/frames/151527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a remote without letting it drop down"}]} +{"id": "000000105294", "images": ["AURORA/data/something/frames/180046/first.jpg", "AURORA/data/something/frames/180046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing hand bag"}]} +{"id": "000000105295", "images": ["AURORA/data/something/frames/152375/first.jpg", "AURORA/data/something/frames/152375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000105296", "images": ["AURORA/data/something/frames/191558/first.jpg", "AURORA/data/something/frames/191558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling vasmol bottle from left to right"}]} +{"id": "000000105297", "images": ["AURORA/data/something/frames/12621/first.jpg", "AURORA/data/something/frames/12621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000105298", "images": ["AURORA/data/something/frames/130007/first.jpg", "AURORA/data/something/frames/130007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering paperclip with notepad"}]} +{"id": "000000105299", "images": ["AURORA/data/something/frames/68922/first.jpg", "AURORA/data/something/frames/68922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fuel can away from the camera"}]} +{"id": "000000105300", "images": ["AURORA/data/something/frames/169513/first.jpg", "AURORA/data/something/frames/169513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box and soap away from each other"}]} +{"id": "000000105301", "images": ["AURORA/data/something/frames/163246/first.jpg", "AURORA/data/something/frames/163246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bottle cap"}]} +{"id": "000000105302", "images": ["AURORA/data/something/frames/76274/first.jpg", "AURORA/data/something/frames/76274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cup onto cup"}]} +{"id": "000000105303", "images": ["AURORA/data/something/frames/8551/first.jpg", "AURORA/data/something/frames/8551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottletop into a box"}]} +{"id": "000000105304", "images": ["AURORA/data/something/frames/153414/first.jpg", "AURORA/data/something/frames/153414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105305", "images": ["AURORA/data/something/frames/132100/first.jpg", "AURORA/data/something/frames/132100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting marker up completely without letting it drop down"}]} +{"id": "000000105306", "images": ["AURORA/data/something/frames/184818/first.jpg", "AURORA/data/something/frames/184818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a laptop power adapter"}]} +{"id": "000000105307", "images": ["AURORA/data/something/frames/165192/first.jpg", "AURORA/data/something/frames/165192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving head charger and head charger closer to each other"}]} +{"id": "000000105308", "images": ["AURORA/data/something/frames/98584/first.jpg", "AURORA/data/something/frames/98584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping sandals next to chair"}]} +{"id": "000000105309", "images": ["AURORA/data/something/frames/31892/first.jpg", "AURORA/data/something/frames/31892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of box without letting it drop down"}]} +{"id": "000000105310", "images": ["AURORA/data/something/frames/208470/first.jpg", "AURORA/data/something/frames/208470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105311", "images": ["AURORA/data/something/frames/159635/first.jpg", "AURORA/data/something/frames/159635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering mobile phone"}]} +{"id": "000000105312", "images": ["AURORA/data/something/frames/214517/first.jpg", "AURORA/data/something/frames/214517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000105313", "images": ["AURORA/data/something/frames/5335/first.jpg", "AURORA/data/something/frames/5335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105314", "images": ["AURORA/data/something/frames/35659/first.jpg", "AURORA/data/something/frames/35659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box of tissues on the edge of a table so it is not supported and falls down"}]} +{"id": "000000105315", "images": ["AURORA/data/something/frames/172748/first.jpg", "AURORA/data/something/frames/172748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a bracelet so that it gets stretched"}]} +{"id": "000000105316", "images": ["AURORA/data/something/frames/184196/first.jpg", "AURORA/data/something/frames/184196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of ruler"}]} +{"id": "000000105317", "images": ["AURORA/data/something/frames/74086/first.jpg", "AURORA/data/something/frames/74086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a coin with a pen"}]} +{"id": "000000105318", "images": ["AURORA/data/something/frames/8842/first.jpg", "AURORA/data/something/frames/8842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger up"}]} +{"id": "000000105319", "images": ["AURORA/data/something/frames/188369/first.jpg", "AURORA/data/something/frames/188369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking my dog so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000105320", "images": ["AURORA/data/something/frames/145850/first.jpg", "AURORA/data/something/frames/145850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing bottle"}]} +{"id": "000000105321", "images": ["AURORA/data/something/frames/2863/first.jpg", "AURORA/data/something/frames/2863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000105322", "images": ["AURORA/data/something/frames/100149/first.jpg", "AURORA/data/something/frames/100149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottle into a trash can"}]} +{"id": "000000105323", "images": ["AURORA/data/something/frames/63857/first.jpg", "AURORA/data/something/frames/63857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pellet to other pellets"}]} +{"id": "000000105324", "images": ["AURORA/data/something/frames/110553/first.jpg", "AURORA/data/something/frames/110553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dust off of table"}]} +{"id": "000000105325", "images": ["AURORA/data/something/frames/161834/first.jpg", "AURORA/data/something/frames/161834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking poking plastic spray once so that it falls so that it falls over"}]} +{"id": "000000105326", "images": ["AURORA/data/something/frames/18944/first.jpg", "AURORA/data/something/frames/18944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a piece of paper"}]} +{"id": "000000105327", "images": ["AURORA/data/something/frames/74394/first.jpg", "AURORA/data/something/frames/74394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching notebook with your camera"}]} +{"id": "000000105328", "images": ["AURORA/data/something/frames/42793/first.jpg", "AURORA/data/something/frames/42793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a piece of paper"}]} +{"id": "000000105329", "images": ["AURORA/data/something/frames/102660/first.jpg", "AURORA/data/something/frames/102660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105330", "images": ["AURORA/data/something/frames/107944/first.jpg", "AURORA/data/something/frames/107944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a water can colliding with another water can and both come to a halt"}]} +{"id": "000000105331", "images": ["AURORA/data/something/frames/127342/first.jpg", "AURORA/data/something/frames/127342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: coin of inr 2 colliding with coin of inr 1 and both are being deflected"}]} +{"id": "000000105332", "images": ["AURORA/data/something/frames/45070/first.jpg", "AURORA/data/something/frames/45070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the cup upside down"}]} +{"id": "000000105333", "images": ["AURORA/data/something/frames/218395/first.jpg", "AURORA/data/something/frames/218395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering shaker with napkin"}]} +{"id": "000000105334", "images": ["AURORA/data/something/frames/201710/first.jpg", "AURORA/data/something/frames/201710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mascara bottle upright on the table"}]} +{"id": "000000105335", "images": ["AURORA/data/something/frames/53020/first.jpg", "AURORA/data/something/frames/53020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a hat out of decorative shell"}]} +{"id": "000000105336", "images": ["AURORA/data/something/frames/168634/first.jpg", "AURORA/data/something/frames/168634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and bottle away from each other"}]} +{"id": "000000105337", "images": ["AURORA/data/something/frames/149646/first.jpg", "AURORA/data/something/frames/149646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a game into an envelope"}]} +{"id": "000000105338", "images": ["AURORA/data/something/frames/169117/first.jpg", "AURORA/data/something/frames/169117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming cup"}]} +{"id": "000000105339", "images": ["AURORA/data/something/frames/187318/first.jpg", "AURORA/data/something/frames/187318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 cans of compressed fuel onto a book"}]} +{"id": "000000105340", "images": ["AURORA/data/something/frames/35365/first.jpg", "AURORA/data/something/frames/35365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening trash can"}]} +{"id": "000000105341", "images": ["AURORA/data/something/frames/40312/first.jpg", "AURORA/data/something/frames/40312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting record book"}]} +{"id": "000000105342", "images": ["AURORA/data/something/frames/139818/first.jpg", "AURORA/data/something/frames/139818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet underneath a book"}]} +{"id": "000000105343", "images": ["AURORA/data/something/frames/152719/first.jpg", "AURORA/data/something/frames/152719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105344", "images": ["AURORA/data/something/frames/71873/first.jpg", "AURORA/data/something/frames/71873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sandwich out of lunchbox"}]} +{"id": "000000105345", "images": ["AURORA/data/something/frames/181318/first.jpg", "AURORA/data/something/frames/181318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming plant"}]} +{"id": "000000105346", "images": ["AURORA/data/something/frames/198362/first.jpg", "AURORA/data/something/frames/198362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000105347", "images": ["AURORA/data/something/frames/97601/first.jpg", "AURORA/data/something/frames/97601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser and usb cable closer to each other"}]} +{"id": "000000105348", "images": ["AURORA/data/something/frames/102700/first.jpg", "AURORA/data/something/frames/102700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sand up with a toy"}]} +{"id": "000000105349", "images": ["AURORA/data/something/frames/17650/first.jpg", "AURORA/data/something/frames/17650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000105350", "images": ["AURORA/data/something/frames/111964/first.jpg", "AURORA/data/something/frames/111964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to glasses"}]} +{"id": "000000105351", "images": ["AURORA/data/something/frames/4768/first.jpg", "AURORA/data/something/frames/4768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a computer"}]} +{"id": "000000105352", "images": ["AURORA/data/something/frames/163214/first.jpg", "AURORA/data/something/frames/163214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning jar upside down"}]} +{"id": "000000105353", "images": ["AURORA/data/something/frames/130060/first.jpg", "AURORA/data/something/frames/130060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming white book marker"}]} +{"id": "000000105354", "images": ["AURORA/data/something/frames/128518/first.jpg", "AURORA/data/something/frames/128518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug upright on the table"}]} +{"id": "000000105355", "images": ["AURORA/data/something/frames/47791/first.jpg", "AURORA/data/something/frames/47791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with measuring cup"}]} +{"id": "000000105356", "images": ["AURORA/data/something/frames/108836/first.jpg", "AURORA/data/something/frames/108836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping die into cup"}]} +{"id": "000000105357", "images": ["AURORA/data/something/frames/182282/first.jpg", "AURORA/data/something/frames/182282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving banana and plate closer to each other"}]} +{"id": "000000105358", "images": ["AURORA/data/something/frames/174675/first.jpg", "AURORA/data/something/frames/174675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000105359", "images": ["AURORA/data/something/frames/130207/first.jpg", "AURORA/data/something/frames/130207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving striker coin down"}]} +{"id": "000000105360", "images": ["AURORA/data/something/frames/23102/first.jpg", "AURORA/data/something/frames/23102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into plug hole but pulling it right out as you remove your hand"}]} +{"id": "000000105361", "images": ["AURORA/data/something/frames/188898/first.jpg", "AURORA/data/something/frames/188898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass behind a cup"}]} +{"id": "000000105362", "images": ["AURORA/data/something/frames/203547/first.jpg", "AURORA/data/something/frames/203547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a drawer"}]} +{"id": "000000105363", "images": ["AURORA/data/something/frames/125653/first.jpg", "AURORA/data/something/frames/125653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and bottle closer to each other"}]} +{"id": "000000105364", "images": ["AURORA/data/something/frames/64105/first.jpg", "AURORA/data/something/frames/64105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into computer"}]} +{"id": "000000105365", "images": ["AURORA/data/something/frames/153990/first.jpg", "AURORA/data/something/frames/153990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a child toy with a hammer"}]} +{"id": "000000105366", "images": ["AURORA/data/something/frames/208577/first.jpg", "AURORA/data/something/frames/208577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing umbrella"}]} +{"id": "000000105367", "images": ["AURORA/data/something/frames/218730/first.jpg", "AURORA/data/something/frames/218730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping shirt behind videotapes"}]} +{"id": "000000105368", "images": ["AURORA/data/something/frames/62321/first.jpg", "AURORA/data/something/frames/62321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) dish cloth wet until water comes out"}]} +{"id": "000000105369", "images": ["AURORA/data/something/frames/213167/first.jpg", "AURORA/data/something/frames/213167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming hat"}]} +{"id": "000000105370", "images": ["AURORA/data/something/frames/208891/first.jpg", "AURORA/data/something/frames/208891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hair pins on the table"}]} +{"id": "000000105371", "images": ["AURORA/data/something/frames/25435/first.jpg", "AURORA/data/something/frames/25435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tablet with paper on it"}]} +{"id": "000000105372", "images": ["AURORA/data/something/frames/10309/first.jpg", "AURORA/data/something/frames/10309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving clip box up"}]} +{"id": "000000105373", "images": ["AURORA/data/something/frames/18068/first.jpg", "AURORA/data/something/frames/18068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a can"}]} +{"id": "000000105374", "images": ["AURORA/data/something/frames/214419/first.jpg", "AURORA/data/something/frames/214419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bangle being deflected from a book"}]} +{"id": "000000105375", "images": ["AURORA/data/something/frames/127427/first.jpg", "AURORA/data/something/frames/127427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping yellow pen next to blue pen"}]} +{"id": "000000105376", "images": ["AURORA/data/something/frames/123212/first.jpg", "AURORA/data/something/frames/123212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening thermos"}]} +{"id": "000000105377", "images": ["AURORA/data/something/frames/76637/first.jpg", "AURORA/data/something/frames/76637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet so that it almost falls off but doesn't"}]} +{"id": "000000105378", "images": ["AURORA/data/something/frames/65067/first.jpg", "AURORA/data/something/frames/65067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing closing plastic spray"}]} +{"id": "000000105379", "images": ["AURORA/data/something/frames/73278/first.jpg", "AURORA/data/something/frames/73278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing button onto printer"}]} +{"id": "000000105380", "images": ["AURORA/data/something/frames/21655/first.jpg", "AURORA/data/something/frames/21655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing something into something"}]} +{"id": "000000105381", "images": ["AURORA/data/something/frames/164127/first.jpg", "AURORA/data/something/frames/164127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a bottletop"}]} +{"id": "000000105382", "images": ["AURORA/data/something/frames/205040/first.jpg", "AURORA/data/something/frames/205040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a matchbox from behind of a book"}]} +{"id": "000000105383", "images": ["AURORA/data/something/frames/84352/first.jpg", "AURORA/data/something/frames/84352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000105384", "images": ["AURORA/data/something/frames/210950/first.jpg", "AURORA/data/something/frames/210950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four cookies"}]} +{"id": "000000105385", "images": ["AURORA/data/something/frames/197965/first.jpg", "AURORA/data/something/frames/197965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soft drink can away from the camera"}]} +{"id": "000000105386", "images": ["AURORA/data/something/frames/72806/first.jpg", "AURORA/data/something/frames/72806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting duster and blue colour spectacle box on the table"}]} +{"id": "000000105387", "images": ["AURORA/data/something/frames/67692/first.jpg", "AURORA/data/something/frames/67692/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting magnet on a surface"}]} +{"id": "000000105388", "images": ["AURORA/data/something/frames/164131/first.jpg", "AURORA/data/something/frames/164131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spanner from right to left"}]} +{"id": "000000105389", "images": ["AURORA/data/something/frames/13867/first.jpg", "AURORA/data/something/frames/13867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a battery to headphones"}]} +{"id": "000000105390", "images": ["AURORA/data/something/frames/11086/first.jpg", "AURORA/data/something/frames/11086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping something behind something"}]} +{"id": "000000105391", "images": ["AURORA/data/something/frames/65849/first.jpg", "AURORA/data/something/frames/65849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with cloth"}]} +{"id": "000000105392", "images": ["AURORA/data/something/frames/4441/first.jpg", "AURORA/data/something/frames/4441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cookie into box"}]} +{"id": "000000105393", "images": ["AURORA/data/something/frames/106051/first.jpg", "AURORA/data/something/frames/106051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cup with tissue on it"}]} +{"id": "000000105394", "images": ["AURORA/data/something/frames/165799/first.jpg", "AURORA/data/something/frames/165799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coaster from right to left"}]} +{"id": "000000105395", "images": ["AURORA/data/something/frames/216679/first.jpg", "AURORA/data/something/frames/216679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bag"}]} +{"id": "000000105396", "images": ["AURORA/data/something/frames/47837/first.jpg", "AURORA/data/something/frames/47837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a safe"}]} +{"id": "000000105397", "images": ["AURORA/data/something/frames/3208/first.jpg", "AURORA/data/something/frames/3208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable down"}]} +{"id": "000000105398", "images": ["AURORA/data/something/frames/209765/first.jpg", "AURORA/data/something/frames/209765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting lamp"}]} +{"id": "000000105399", "images": ["AURORA/data/something/frames/140826/first.jpg", "AURORA/data/something/frames/140826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling book out of plastic bag"}]} +{"id": "000000105400", "images": ["AURORA/data/something/frames/201101/first.jpg", "AURORA/data/something/frames/201101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting card into box"}]} +{"id": "000000105401", "images": ["AURORA/data/something/frames/217325/first.jpg", "AURORA/data/something/frames/217325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tool with cloth"}]} +{"id": "000000105402", "images": ["AURORA/data/something/frames/110477/first.jpg", "AURORA/data/something/frames/110477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife into dish"}]} +{"id": "000000105403", "images": ["AURORA/data/something/frames/120311/first.jpg", "AURORA/data/something/frames/120311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping water in front of bottle"}]} +{"id": "000000105404", "images": ["AURORA/data/something/frames/105867/first.jpg", "AURORA/data/something/frames/105867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rock away from lighter"}]} +{"id": "000000105405", "images": ["AURORA/data/something/frames/9496/first.jpg", "AURORA/data/something/frames/9496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing wood box, revealing mobile behind"}]} +{"id": "000000105406", "images": ["AURORA/data/something/frames/81269/first.jpg", "AURORA/data/something/frames/81269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping tea off of counter"}]} +{"id": "000000105407", "images": ["AURORA/data/something/frames/27154/first.jpg", "AURORA/data/something/frames/27154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can upright on the table"}]} +{"id": "000000105408", "images": ["AURORA/data/something/frames/83649/first.jpg", "AURORA/data/something/frames/83649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming me"}]} +{"id": "000000105409", "images": ["AURORA/data/something/frames/114106/first.jpg", "AURORA/data/something/frames/114106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bag in front of a spec"}]} +{"id": "000000105410", "images": ["AURORA/data/something/frames/150472/first.jpg", "AURORA/data/something/frames/150472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching sticker to table"}]} +{"id": "000000105411", "images": ["AURORA/data/something/frames/72679/first.jpg", "AURORA/data/something/frames/72679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming board"}]} +{"id": "000000105412", "images": ["AURORA/data/something/frames/34882/first.jpg", "AURORA/data/something/frames/34882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a robot"}]} +{"id": "000000105413", "images": ["AURORA/data/something/frames/186671/first.jpg", "AURORA/data/something/frames/186671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of table"}]} +{"id": "000000105414", "images": ["AURORA/data/something/frames/157137/first.jpg", "AURORA/data/something/frames/157137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soft drink can towards the camera"}]} +{"id": "000000105415", "images": ["AURORA/data/something/frames/52843/first.jpg", "AURORA/data/something/frames/52843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone up"}]} +{"id": "000000105416", "images": ["AURORA/data/something/frames/135061/first.jpg", "AURORA/data/something/frames/135061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black sharpner with glue stick"}]} +{"id": "000000105417", "images": ["AURORA/data/something/frames/34162/first.jpg", "AURORA/data/something/frames/34162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting diary with punching machine on it"}]} +{"id": "000000105418", "images": ["AURORA/data/something/frames/123678/first.jpg", "AURORA/data/something/frames/123678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling tape onto box"}]} +{"id": "000000105419", "images": ["AURORA/data/something/frames/174027/first.jpg", "AURORA/data/something/frames/174027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching light with your camera"}]} +{"id": "000000105420", "images": ["AURORA/data/something/frames/125947/first.jpg", "AURORA/data/something/frames/125947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into chocolate"}]} +{"id": "000000105421", "images": ["AURORA/data/something/frames/111509/first.jpg", "AURORA/data/something/frames/111509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fork out of drawer"}]} +{"id": "000000105422", "images": ["AURORA/data/something/frames/135568/first.jpg", "AURORA/data/something/frames/135568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle on the table on its side, not upright"}]} +{"id": "000000105423", "images": ["AURORA/data/something/frames/220360/first.jpg", "AURORA/data/something/frames/220360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000105424", "images": ["AURORA/data/something/frames/219838/first.jpg", "AURORA/data/something/frames/219838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying stone in sand"}]} +{"id": "000000105425", "images": ["AURORA/data/something/frames/82723/first.jpg", "AURORA/data/something/frames/82723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 coins"}]} +{"id": "000000105426", "images": ["AURORA/data/something/frames/168986/first.jpg", "AURORA/data/something/frames/168986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000105427", "images": ["AURORA/data/something/frames/54222/first.jpg", "AURORA/data/something/frames/54222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000105428", "images": ["AURORA/data/something/frames/103402/first.jpg", "AURORA/data/something/frames/103402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing the air off of the air"}]} +{"id": "000000105429", "images": ["AURORA/data/something/frames/206745/first.jpg", "AURORA/data/something/frames/206745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon onto a container so it falls down"}]} +{"id": "000000105430", "images": ["AURORA/data/something/frames/205381/first.jpg", "AURORA/data/something/frames/205381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cloth up"}]} +{"id": "000000105431", "images": ["AURORA/data/something/frames/181241/first.jpg", "AURORA/data/something/frames/181241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ring next to bracelet"}]} +{"id": "000000105432", "images": ["AURORA/data/something/frames/156280/first.jpg", "AURORA/data/something/frames/156280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a wash cloth"}]} +{"id": "000000105433", "images": ["AURORA/data/something/frames/143988/first.jpg", "AURORA/data/something/frames/143988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mp3 player off of cookie box"}]} +{"id": "000000105434", "images": ["AURORA/data/something/frames/35522/first.jpg", "AURORA/data/something/frames/35522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shirt"}]} +{"id": "000000105435", "images": ["AURORA/data/something/frames/134490/first.jpg", "AURORA/data/something/frames/134490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing fridge door"}]} +{"id": "000000105436", "images": ["AURORA/data/something/frames/105525/first.jpg", "AURORA/data/something/frames/105525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass next to bowl"}]} +{"id": "000000105437", "images": ["AURORA/data/something/frames/46581/first.jpg", "AURORA/data/something/frames/46581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105438", "images": ["AURORA/data/something/frames/105972/first.jpg", "AURORA/data/something/frames/105972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing pamphlet into two pieces"}]} +{"id": "000000105439", "images": ["AURORA/data/something/frames/183491/first.jpg", "AURORA/data/something/frames/183491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bear behind a ball"}]} +{"id": "000000105440", "images": ["AURORA/data/something/frames/182789/first.jpg", "AURORA/data/something/frames/182789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105441", "images": ["AURORA/data/something/frames/25290/first.jpg", "AURORA/data/something/frames/25290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pusher, nail cutter and nipper on the table"}]} +{"id": "000000105442", "images": ["AURORA/data/something/frames/148441/first.jpg", "AURORA/data/something/frames/148441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle cap across a surface without it falling down"}]} +{"id": "000000105443", "images": ["AURORA/data/something/frames/166003/first.jpg", "AURORA/data/something/frames/166003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming ring"}]} +{"id": "000000105444", "images": ["AURORA/data/something/frames/87210/first.jpg", "AURORA/data/something/frames/87210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving inhaler up"}]} +{"id": "000000105445", "images": ["AURORA/data/something/frames/99090/first.jpg", "AURORA/data/something/frames/99090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin next to a shoe brush"}]} +{"id": "000000105446", "images": ["AURORA/data/something/frames/134372/first.jpg", "AURORA/data/something/frames/134372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a kitchen towel"}]} +{"id": "000000105447", "images": ["AURORA/data/something/frames/131278/first.jpg", "AURORA/data/something/frames/131278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper down"}]} +{"id": "000000105448", "images": ["AURORA/data/something/frames/185981/first.jpg", "AURORA/data/something/frames/185981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking candle up"}]} +{"id": "000000105449", "images": ["AURORA/data/something/frames/58789/first.jpg", "AURORA/data/something/frames/58789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a book down"}]} +{"id": "000000105450", "images": ["AURORA/data/something/frames/53611/first.jpg", "AURORA/data/something/frames/53611/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a lead into a wall plug"}]} +{"id": "000000105451", "images": ["AURORA/data/something/frames/142654/first.jpg", "AURORA/data/something/frames/142654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tomato and mandarin away from each other"}]} +{"id": "000000105452", "images": ["AURORA/data/something/frames/131838/first.jpg", "AURORA/data/something/frames/131838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet"}]} +{"id": "000000105453", "images": ["AURORA/data/something/frames/103954/first.jpg", "AURORA/data/something/frames/103954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming poster"}]} +{"id": "000000105454", "images": ["AURORA/data/something/frames/188950/first.jpg", "AURORA/data/something/frames/188950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling salt onto table"}]} +{"id": "000000105455", "images": ["AURORA/data/something/frames/6392/first.jpg", "AURORA/data/something/frames/6392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup on a surface"}]} +{"id": "000000105456", "images": ["AURORA/data/something/frames/85972/first.jpg", "AURORA/data/something/frames/85972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys out of bowl"}]} +{"id": "000000105457", "images": ["AURORA/data/something/frames/11780/first.jpg", "AURORA/data/something/frames/11780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a paper so that it separates into two pieces"}]} +{"id": "000000105458", "images": ["AURORA/data/something/frames/164847/first.jpg", "AURORA/data/something/frames/164847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toys next to toys"}]} +{"id": "000000105459", "images": ["AURORA/data/something/frames/152520/first.jpg", "AURORA/data/something/frames/152520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000105460", "images": ["AURORA/data/something/frames/173497/first.jpg", "AURORA/data/something/frames/173497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many knives"}]} +{"id": "000000105461", "images": ["AURORA/data/something/frames/167119/first.jpg", "AURORA/data/something/frames/167119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mouse from right to left"}]} +{"id": "000000105462", "images": ["AURORA/data/something/frames/194875/first.jpg", "AURORA/data/something/frames/194875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000105463", "images": ["AURORA/data/something/frames/9655/first.jpg", "AURORA/data/something/frames/9655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening container of slime"}]} +{"id": "000000105464", "images": ["AURORA/data/something/frames/17836/first.jpg", "AURORA/data/something/frames/17836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cat behind cube"}]} +{"id": "000000105465", "images": ["AURORA/data/something/frames/10569/first.jpg", "AURORA/data/something/frames/10569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000105466", "images": ["AURORA/data/something/frames/116322/first.jpg", "AURORA/data/something/frames/116322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker and debit card on the table"}]} +{"id": "000000105467", "images": ["AURORA/data/something/frames/204410/first.jpg", "AURORA/data/something/frames/204410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a salt shaker with a towel"}]} +{"id": "000000105468", "images": ["AURORA/data/something/frames/21256/first.jpg", "AURORA/data/something/frames/21256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing plastic bags into bag"}]} +{"id": "000000105469", "images": ["AURORA/data/something/frames/148979/first.jpg", "AURORA/data/something/frames/148979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching a cat with your camera"}]} +{"id": "000000105470", "images": ["AURORA/data/something/frames/181003/first.jpg", "AURORA/data/something/frames/181003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming posters"}]} +{"id": "000000105471", "images": ["AURORA/data/something/frames/50572/first.jpg", "AURORA/data/something/frames/50572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a ball next to a bottle"}]} +{"id": "000000105472", "images": ["AURORA/data/something/frames/206260/first.jpg", "AURORA/data/something/frames/206260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book"}]} +{"id": "000000105473", "images": ["AURORA/data/something/frames/188511/first.jpg", "AURORA/data/something/frames/188511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something down"}]} +{"id": "000000105474", "images": ["AURORA/data/something/frames/77527/first.jpg", "AURORA/data/something/frames/77527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping a command hook up with post it"}]} +{"id": "000000105475", "images": ["AURORA/data/something/frames/117728/first.jpg", "AURORA/data/something/frames/117728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shoe onto jar so it falls down"}]} +{"id": "000000105476", "images": ["AURORA/data/something/frames/120585/first.jpg", "AURORA/data/something/frames/120585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming traffic light"}]} +{"id": "000000105477", "images": ["AURORA/data/something/frames/116233/first.jpg", "AURORA/data/something/frames/116233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a wipe into a bottle"}]} +{"id": "000000105478", "images": ["AURORA/data/something/frames/46148/first.jpg", "AURORA/data/something/frames/46148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105479", "images": ["AURORA/data/something/frames/78698/first.jpg", "AURORA/data/something/frames/78698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plate into pile"}]} +{"id": "000000105480", "images": ["AURORA/data/something/frames/55349/first.jpg", "AURORA/data/something/frames/55349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting duster and spectacle box on the table"}]} +{"id": "000000105481", "images": ["AURORA/data/something/frames/41967/first.jpg", "AURORA/data/something/frames/41967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a laptop charger up"}]} +{"id": "000000105482", "images": ["AURORA/data/something/frames/58923/first.jpg", "AURORA/data/something/frames/58923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving black charger adapter up"}]} +{"id": "000000105483", "images": ["AURORA/data/something/frames/41321/first.jpg", "AURORA/data/something/frames/41321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a stappler with scissors"}]} +{"id": "000000105484", "images": ["AURORA/data/something/frames/176278/first.jpg", "AURORA/data/something/frames/176278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000105485", "images": ["AURORA/data/something/frames/47312/first.jpg", "AURORA/data/something/frames/47312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a book"}]} +{"id": "000000105486", "images": ["AURORA/data/something/frames/105366/first.jpg", "AURORA/data/something/frames/105366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet"}]} +{"id": "000000105487", "images": ["AURORA/data/something/frames/82488/first.jpg", "AURORA/data/something/frames/82488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissues into two pieces"}]} +{"id": "000000105488", "images": ["AURORA/data/something/frames/32372/first.jpg", "AURORA/data/something/frames/32372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone into charger but pulling it right out as you remove your hand"}]} +{"id": "000000105489", "images": ["AURORA/data/something/frames/154425/first.jpg", "AURORA/data/something/frames/154425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of breadboard without letting it drop down"}]} +{"id": "000000105490", "images": ["AURORA/data/something/frames/48022/first.jpg", "AURORA/data/something/frames/48022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from glass tumbler with your camera"}]} +{"id": "000000105491", "images": ["AURORA/data/something/frames/151796/first.jpg", "AURORA/data/something/frames/151796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flashdrive into container"}]} +{"id": "000000105492", "images": ["AURORA/data/something/frames/206480/first.jpg", "AURORA/data/something/frames/206480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing flower just a little bit"}]} +{"id": "000000105493", "images": ["AURORA/data/something/frames/120767/first.jpg", "AURORA/data/something/frames/120767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter up"}]} +{"id": "000000105494", "images": ["AURORA/data/something/frames/214705/first.jpg", "AURORA/data/something/frames/214705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking red diary so that it falls over"}]} +{"id": "000000105495", "images": ["AURORA/data/something/frames/194471/first.jpg", "AURORA/data/something/frames/194471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) towel wet until water comes out"}]} +{"id": "000000105496", "images": ["AURORA/data/something/frames/59756/first.jpg", "AURORA/data/something/frames/59756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: garage opener being deflected from cell phone"}]} +{"id": "000000105497", "images": ["AURORA/data/something/frames/149031/first.jpg", "AURORA/data/something/frames/149031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting five gooseberry onto a container"}]} +{"id": "000000105498", "images": ["AURORA/data/something/frames/50584/first.jpg", "AURORA/data/something/frames/50584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000105499", "images": ["AURORA/data/something/frames/125672/first.jpg", "AURORA/data/something/frames/125672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting binder clips behind a cup"}]} +{"id": "000000105500", "images": ["AURORA/data/something/frames/38932/first.jpg", "AURORA/data/something/frames/38932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toy from right to left"}]} +{"id": "000000105501", "images": ["AURORA/data/something/frames/143179/first.jpg", "AURORA/data/something/frames/143179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a spoon next to a bowl"}]} +{"id": "000000105502", "images": ["AURORA/data/something/frames/219206/first.jpg", "AURORA/data/something/frames/219206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing napkin into cup"}]} +{"id": "000000105503", "images": ["AURORA/data/something/frames/151322/first.jpg", "AURORA/data/something/frames/151322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen so that it almost falls off but doesn't"}]} +{"id": "000000105504", "images": ["AURORA/data/something/frames/133037/first.jpg", "AURORA/data/something/frames/133037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving an eraser and a bottlecap away from each other"}]} +{"id": "000000105505", "images": ["AURORA/data/something/frames/126202/first.jpg", "AURORA/data/something/frames/126202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000105506", "images": ["AURORA/data/something/frames/130349/first.jpg", "AURORA/data/something/frames/130349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of cassette tape"}]} +{"id": "000000105507", "images": ["AURORA/data/something/frames/109736/first.jpg", "AURORA/data/something/frames/109736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a marker"}]} +{"id": "000000105508", "images": ["AURORA/data/something/frames/117490/first.jpg", "AURORA/data/something/frames/117490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling dvd case from left to right"}]} +{"id": "000000105509", "images": ["AURORA/data/something/frames/216211/first.jpg", "AURORA/data/something/frames/216211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a backpack onto the floor"}]} +{"id": "000000105510", "images": ["AURORA/data/something/frames/146757/first.jpg", "AURORA/data/something/frames/146757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coat in front of a coat hanger"}]} +{"id": "000000105511", "images": ["AURORA/data/something/frames/141467/first.jpg", "AURORA/data/something/frames/141467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 staplers onto yellow note"}]} +{"id": "000000105512", "images": ["AURORA/data/something/frames/88101/first.jpg", "AURORA/data/something/frames/88101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cup with blanket"}]} +{"id": "000000105513", "images": ["AURORA/data/something/frames/68496/first.jpg", "AURORA/data/something/frames/68496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a stuffed bunny"}]} +{"id": "000000105514", "images": ["AURORA/data/something/frames/54071/first.jpg", "AURORA/data/something/frames/54071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spoon out of a cup"}]} +{"id": "000000105515", "images": ["AURORA/data/something/frames/176994/first.jpg", "AURORA/data/something/frames/176994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pebble from right to left"}]} +{"id": "000000105516", "images": ["AURORA/data/something/frames/1431/first.jpg", "AURORA/data/something/frames/1431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing transperent sugar jar"}]} +{"id": "000000105517", "images": ["AURORA/data/something/frames/87587/first.jpg", "AURORA/data/something/frames/87587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors away from a wallet"}]} +{"id": "000000105518", "images": ["AURORA/data/something/frames/20480/first.jpg", "AURORA/data/something/frames/20480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing plastic bag into small gift bag"}]} +{"id": "000000105519", "images": ["AURORA/data/something/frames/121922/first.jpg", "AURORA/data/something/frames/121922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red booklet from right to left"}]} +{"id": "000000105520", "images": ["AURORA/data/something/frames/42321/first.jpg", "AURORA/data/something/frames/42321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming plants"}]} +{"id": "000000105521", "images": ["AURORA/data/something/frames/40619/first.jpg", "AURORA/data/something/frames/40619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto envelope"}]} +{"id": "000000105522", "images": ["AURORA/data/something/frames/95483/first.jpg", "AURORA/data/something/frames/95483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something and something on the table"}]} +{"id": "000000105523", "images": ["AURORA/data/something/frames/94123/first.jpg", "AURORA/data/something/frames/94123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ball off of books"}]} +{"id": "000000105524", "images": ["AURORA/data/something/frames/1334/first.jpg", "AURORA/data/something/frames/1334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into flower pot"}]} +{"id": "000000105525", "images": ["AURORA/data/something/frames/119824/first.jpg", "AURORA/data/something/frames/119824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a stapler up"}]} +{"id": "000000105526", "images": ["AURORA/data/something/frames/54513/first.jpg", "AURORA/data/something/frames/54513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and bottle so they collide with each other"}]} +{"id": "000000105527", "images": ["AURORA/data/something/frames/119359/first.jpg", "AURORA/data/something/frames/119359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cord into computer"}]} +{"id": "000000105528", "images": ["AURORA/data/something/frames/176577/first.jpg", "AURORA/data/something/frames/176577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000105529", "images": ["AURORA/data/something/frames/87245/first.jpg", "AURORA/data/something/frames/87245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing card with card"}]} +{"id": "000000105530", "images": ["AURORA/data/something/frames/19501/first.jpg", "AURORA/data/something/frames/19501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a tissue into a tissue box"}]} +{"id": "000000105531", "images": ["AURORA/data/something/frames/49364/first.jpg", "AURORA/data/something/frames/49364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching shampoo bottle with your camera"}]} +{"id": "000000105532", "images": ["AURORA/data/something/frames/45213/first.jpg", "AURORA/data/something/frames/45213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105533", "images": ["AURORA/data/something/frames/64817/first.jpg", "AURORA/data/something/frames/64817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a toy"}]} +{"id": "000000105534", "images": ["AURORA/data/something/frames/28778/first.jpg", "AURORA/data/something/frames/28778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toothbrush in front of container"}]} +{"id": "000000105535", "images": ["AURORA/data/something/frames/155475/first.jpg", "AURORA/data/something/frames/155475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coin in front of paper"}]} +{"id": "000000105536", "images": ["AURORA/data/something/frames/91/first.jpg", "AURORA/data/something/frames/91/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a guitar pick to a ukelele"}]} +{"id": "000000105537", "images": ["AURORA/data/something/frames/90178/first.jpg", "AURORA/data/something/frames/90178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000105538", "images": ["AURORA/data/something/frames/68995/first.jpg", "AURORA/data/something/frames/68995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping white chalk in front of duster"}]} +{"id": "000000105539", "images": ["AURORA/data/something/frames/67471/first.jpg", "AURORA/data/something/frames/67471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box away from box"}]} +{"id": "000000105540", "images": ["AURORA/data/something/frames/106456/first.jpg", "AURORA/data/something/frames/106456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding sideview mirror"}]} +{"id": "000000105541", "images": ["AURORA/data/something/frames/165323/first.jpg", "AURORA/data/something/frames/165323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming perfume"}]} +{"id": "000000105542", "images": ["AURORA/data/something/frames/154842/first.jpg", "AURORA/data/something/frames/154842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen behind box"}]} +{"id": "000000105543", "images": ["AURORA/data/something/frames/134862/first.jpg", "AURORA/data/something/frames/134862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a phone"}]} +{"id": "000000105544", "images": ["AURORA/data/something/frames/80776/first.jpg", "AURORA/data/something/frames/80776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding towel"}]} +{"id": "000000105545", "images": ["AURORA/data/something/frames/90889/first.jpg", "AURORA/data/something/frames/90889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving teaspoon of a cup"}]} +{"id": "000000105546", "images": ["AURORA/data/something/frames/187218/first.jpg", "AURORA/data/something/frames/187218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a cup off of wooden ledge"}]} +{"id": "000000105547", "images": ["AURORA/data/something/frames/111511/first.jpg", "AURORA/data/something/frames/111511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into the glass, but missing so it spills next to it"}]} +{"id": "000000105548", "images": ["AURORA/data/something/frames/74663/first.jpg", "AURORA/data/something/frames/74663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a container into a box"}]} +{"id": "000000105549", "images": ["AURORA/data/something/frames/105292/first.jpg", "AURORA/data/something/frames/105292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of paper"}]} +{"id": "000000105550", "images": ["AURORA/data/something/frames/179191/first.jpg", "AURORA/data/something/frames/179191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching hat with your camera"}]} +{"id": "000000105551", "images": ["AURORA/data/something/frames/151275/first.jpg", "AURORA/data/something/frames/151275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing computer keyboard so that it almost falls off but doesn't"}]} +{"id": "000000105552", "images": ["AURORA/data/something/frames/180192/first.jpg", "AURORA/data/something/frames/180192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water into glass"}]} +{"id": "000000105553", "images": ["AURORA/data/something/frames/204438/first.jpg", "AURORA/data/something/frames/204438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a glass, revealing a banana behind"}]} +{"id": "000000105554", "images": ["AURORA/data/something/frames/106357/first.jpg", "AURORA/data/something/frames/106357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil towards the camera"}]} +{"id": "000000105555", "images": ["AURORA/data/something/frames/202294/first.jpg", "AURORA/data/something/frames/202294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a water bottle in front of a mallet"}]} +{"id": "000000105556", "images": ["AURORA/data/something/frames/143334/first.jpg", "AURORA/data/something/frames/143334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping clip into cup"}]} +{"id": "000000105557", "images": ["AURORA/data/something/frames/61506/first.jpg", "AURORA/data/something/frames/61506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling things on the table up"}]} +{"id": "000000105558", "images": ["AURORA/data/something/frames/82744/first.jpg", "AURORA/data/something/frames/82744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding handkerchief"}]} +{"id": "000000105559", "images": ["AURORA/data/something/frames/117856/first.jpg", "AURORA/data/something/frames/117856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bottle"}]} +{"id": "000000105560", "images": ["AURORA/data/something/frames/91361/first.jpg", "AURORA/data/something/frames/91361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105561", "images": ["AURORA/data/something/frames/160277/first.jpg", "AURORA/data/something/frames/160277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen and paper on the table"}]} +{"id": "000000105562", "images": ["AURORA/data/something/frames/18678/first.jpg", "AURORA/data/something/frames/18678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a post-it note into two pieces"}]} +{"id": "000000105563", "images": ["AURORA/data/something/frames/68661/first.jpg", "AURORA/data/something/frames/68661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting grape"}]} +{"id": "000000105564", "images": ["AURORA/data/something/frames/4247/first.jpg", "AURORA/data/something/frames/4247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking candy out of sugar case"}]} +{"id": "000000105565", "images": ["AURORA/data/something/frames/193996/first.jpg", "AURORA/data/something/frames/193996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring drink onto glass"}]} +{"id": "000000105566", "images": ["AURORA/data/something/frames/673/first.jpg", "AURORA/data/something/frames/673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting deodorant upright on the table"}]} +{"id": "000000105567", "images": ["AURORA/data/something/frames/203039/first.jpg", "AURORA/data/something/frames/203039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching traffic light with your camera"}]} +{"id": "000000105568", "images": ["AURORA/data/something/frames/164212/first.jpg", "AURORA/data/something/frames/164212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving birdcage towards the camera"}]} +{"id": "000000105569", "images": ["AURORA/data/something/frames/172312/first.jpg", "AURORA/data/something/frames/172312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding napkin"}]} +{"id": "000000105570", "images": ["AURORA/data/something/frames/114258/first.jpg", "AURORA/data/something/frames/114258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling broom from right to left"}]} +{"id": "000000105571", "images": ["AURORA/data/something/frames/107088/first.jpg", "AURORA/data/something/frames/107088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105572", "images": ["AURORA/data/something/frames/162387/first.jpg", "AURORA/data/something/frames/162387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a napkin"}]} +{"id": "000000105573", "images": ["AURORA/data/something/frames/125807/first.jpg", "AURORA/data/something/frames/125807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming staircase"}]} +{"id": "000000105574", "images": ["AURORA/data/something/frames/101146/first.jpg", "AURORA/data/something/frames/101146/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting kiwi, pencil and wine glass on the table"}]} +{"id": "000000105575", "images": ["AURORA/data/something/frames/102091/first.jpg", "AURORA/data/something/frames/102091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green toy car up"}]} +{"id": "000000105576", "images": ["AURORA/data/something/frames/130607/first.jpg", "AURORA/data/something/frames/130607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering uncovering microphone"}]} +{"id": "000000105577", "images": ["AURORA/data/something/frames/127461/first.jpg", "AURORA/data/something/frames/127461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto bowl"}]} +{"id": "000000105578", "images": ["AURORA/data/something/frames/10535/first.jpg", "AURORA/data/something/frames/10535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pencil until it breaks"}]} +{"id": "000000105579", "images": ["AURORA/data/something/frames/102157/first.jpg", "AURORA/data/something/frames/102157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing knife into its slot place"}]} +{"id": "000000105580", "images": ["AURORA/data/something/frames/121426/first.jpg", "AURORA/data/something/frames/121426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping toothpaste over"}]} +{"id": "000000105581", "images": ["AURORA/data/something/frames/13056/first.jpg", "AURORA/data/something/frames/13056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper towel into two pieces"}]} +{"id": "000000105582", "images": ["AURORA/data/something/frames/130416/first.jpg", "AURORA/data/something/frames/130416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a candle onto a candelabra"}]} +{"id": "000000105583", "images": ["AURORA/data/something/frames/198500/first.jpg", "AURORA/data/something/frames/198500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming shampoo bottle"}]} +{"id": "000000105584", "images": ["AURORA/data/something/frames/178034/first.jpg", "AURORA/data/something/frames/178034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring oil onto pan"}]} +{"id": "000000105585", "images": ["AURORA/data/something/frames/144108/first.jpg", "AURORA/data/something/frames/144108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glue stick and diskette closer to each other"}]} +{"id": "000000105586", "images": ["AURORA/data/something/frames/172019/first.jpg", "AURORA/data/something/frames/172019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass down"}]} +{"id": "000000105587", "images": ["AURORA/data/something/frames/60266/first.jpg", "AURORA/data/something/frames/60266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into bottle"}]} +{"id": "000000105588", "images": ["AURORA/data/something/frames/146709/first.jpg", "AURORA/data/something/frames/146709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book"}]} +{"id": "000000105589", "images": ["AURORA/data/something/frames/204213/first.jpg", "AURORA/data/something/frames/204213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with scoop"}]} +{"id": "000000105590", "images": ["AURORA/data/something/frames/89947/first.jpg", "AURORA/data/something/frames/89947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping green toy car into pouch"}]} +{"id": "000000105591", "images": ["AURORA/data/something/frames/175660/first.jpg", "AURORA/data/something/frames/175660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto bucket"}]} +{"id": "000000105592", "images": ["AURORA/data/something/frames/168863/first.jpg", "AURORA/data/something/frames/168863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a watch"}]} +{"id": "000000105593", "images": ["AURORA/data/something/frames/2977/first.jpg", "AURORA/data/something/frames/2977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping sugar jar over"}]} +{"id": "000000105594", "images": ["AURORA/data/something/frames/116114/first.jpg", "AURORA/data/something/frames/116114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tomato"}]} +{"id": "000000105595", "images": ["AURORA/data/something/frames/105483/first.jpg", "AURORA/data/something/frames/105483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pc mouse away from scissors"}]} +{"id": "000000105596", "images": ["AURORA/data/something/frames/132505/first.jpg", "AURORA/data/something/frames/132505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking vegetable peeler"}]} +{"id": "000000105597", "images": ["AURORA/data/something/frames/48472/first.jpg", "AURORA/data/something/frames/48472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming backyard"}]} +{"id": "000000105598", "images": ["AURORA/data/something/frames/172041/first.jpg", "AURORA/data/something/frames/172041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking candle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000105599", "images": ["AURORA/data/something/frames/64846/first.jpg", "AURORA/data/something/frames/64846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming scotch tape"}]} +{"id": "000000105600", "images": ["AURORA/data/something/frames/187712/first.jpg", "AURORA/data/something/frames/187712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering muffins"}]} +{"id": "000000105601", "images": ["AURORA/data/something/frames/83150/first.jpg", "AURORA/data/something/frames/83150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking granola bar up"}]} +{"id": "000000105602", "images": ["AURORA/data/something/frames/131318/first.jpg", "AURORA/data/something/frames/131318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming a dog in a frame"}]} +{"id": "000000105603", "images": ["AURORA/data/something/frames/192064/first.jpg", "AURORA/data/something/frames/192064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with stick"}]} +{"id": "000000105604", "images": ["AURORA/data/something/frames/176798/first.jpg", "AURORA/data/something/frames/176798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toffee box towards the camera"}]} +{"id": "000000105605", "images": ["AURORA/data/something/frames/21605/first.jpg", "AURORA/data/something/frames/21605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of npaperote so that it separates into two pieces"}]} +{"id": "000000105606", "images": ["AURORA/data/something/frames/55671/first.jpg", "AURORA/data/something/frames/55671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key and padlock away from each other"}]} +{"id": "000000105607", "images": ["AURORA/data/something/frames/164617/first.jpg", "AURORA/data/something/frames/164617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from knife with your camera"}]} +{"id": "000000105608", "images": ["AURORA/data/something/frames/107051/first.jpg", "AURORA/data/something/frames/107051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pillbox onto marlboro pack"}]} +{"id": "000000105609", "images": ["AURORA/data/something/frames/64184/first.jpg", "AURORA/data/something/frames/64184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105610", "images": ["AURORA/data/something/frames/39826/first.jpg", "AURORA/data/something/frames/39826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming flower"}]} +{"id": "000000105611", "images": ["AURORA/data/something/frames/220130/first.jpg", "AURORA/data/something/frames/220130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen next to sunglasses"}]} +{"id": "000000105612", "images": ["AURORA/data/something/frames/97799/first.jpg", "AURORA/data/something/frames/97799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a soft pillow"}]} +{"id": "000000105613", "images": ["AURORA/data/something/frames/26334/first.jpg", "AURORA/data/something/frames/26334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from right to left"}]} +{"id": "000000105614", "images": ["AURORA/data/something/frames/31441/first.jpg", "AURORA/data/something/frames/31441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105615", "images": ["AURORA/data/something/frames/150729/first.jpg", "AURORA/data/something/frames/150729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen out of drawer"}]} +{"id": "000000105616", "images": ["AURORA/data/something/frames/110812/first.jpg", "AURORA/data/something/frames/110812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a container closer to another one"}]} +{"id": "000000105617", "images": ["AURORA/data/something/frames/93204/first.jpg", "AURORA/data/something/frames/93204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with pen"}]} +{"id": "000000105618", "images": ["AURORA/data/something/frames/116741/first.jpg", "AURORA/data/something/frames/116741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scotch tape from left to right"}]} +{"id": "000000105619", "images": ["AURORA/data/something/frames/32937/first.jpg", "AURORA/data/something/frames/32937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pencil until it breaks"}]} +{"id": "000000105620", "images": ["AURORA/data/something/frames/167318/first.jpg", "AURORA/data/something/frames/167318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from red spoon with your camera"}]} +{"id": "000000105621", "images": ["AURORA/data/something/frames/73015/first.jpg", "AURORA/data/something/frames/73015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a lipstick from left to right"}]} +{"id": "000000105622", "images": ["AURORA/data/something/frames/124987/first.jpg", "AURORA/data/something/frames/124987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000105623", "images": ["AURORA/data/something/frames/205593/first.jpg", "AURORA/data/something/frames/205593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cup"}]} +{"id": "000000105624", "images": ["AURORA/data/something/frames/130041/first.jpg", "AURORA/data/something/frames/130041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soapy water into surface"}]} +{"id": "000000105625", "images": ["AURORA/data/something/frames/42299/first.jpg", "AURORA/data/something/frames/42299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing letter box"}]} +{"id": "000000105626", "images": ["AURORA/data/something/frames/99955/first.jpg", "AURORA/data/something/frames/99955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking blanket up"}]} +{"id": "000000105627", "images": ["AURORA/data/something/frames/187580/first.jpg", "AURORA/data/something/frames/187580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming closet"}]} +{"id": "000000105628", "images": ["AURORA/data/something/frames/142433/first.jpg", "AURORA/data/something/frames/142433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending metal so that it deforms"}]} +{"id": "000000105629", "images": ["AURORA/data/something/frames/99126/first.jpg", "AURORA/data/something/frames/99126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing purple microfiber from left to right"}]} +{"id": "000000105630", "images": ["AURORA/data/something/frames/187644/first.jpg", "AURORA/data/something/frames/187644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000105631", "images": ["AURORA/data/something/frames/175786/first.jpg", "AURORA/data/something/frames/175786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a rose"}]} +{"id": "000000105632", "images": ["AURORA/data/something/frames/211377/first.jpg", "AURORA/data/something/frames/211377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling disks up"}]} +{"id": "000000105633", "images": ["AURORA/data/something/frames/9601/first.jpg", "AURORA/data/something/frames/9601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a tape next to a matchbox"}]} +{"id": "000000105634", "images": ["AURORA/data/something/frames/176624/first.jpg", "AURORA/data/something/frames/176624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a chair"}]} +{"id": "000000105635", "images": ["AURORA/data/something/frames/3252/first.jpg", "AURORA/data/something/frames/3252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box away from box"}]} +{"id": "000000105636", "images": ["AURORA/data/something/frames/52153/first.jpg", "AURORA/data/something/frames/52153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing bottle"}]} +{"id": "000000105637", "images": ["AURORA/data/something/frames/40822/first.jpg", "AURORA/data/something/frames/40822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking highligher out of pencil cup"}]} +{"id": "000000105638", "images": ["AURORA/data/something/frames/68372/first.jpg", "AURORA/data/something/frames/68372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming picture"}]} +{"id": "000000105639", "images": ["AURORA/data/something/frames/142768/first.jpg", "AURORA/data/something/frames/142768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a jar in front of a glass"}]} +{"id": "000000105640", "images": ["AURORA/data/something/frames/175484/first.jpg", "AURORA/data/something/frames/175484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding t-shirt"}]} +{"id": "000000105641", "images": ["AURORA/data/something/frames/177969/first.jpg", "AURORA/data/something/frames/177969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a confetti start with other confetti stars that are already on the table"}]} +{"id": "000000105642", "images": ["AURORA/data/something/frames/153394/first.jpg", "AURORA/data/something/frames/153394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a container with a blanket"}]} +{"id": "000000105643", "images": ["AURORA/data/something/frames/17590/first.jpg", "AURORA/data/something/frames/17590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 cards"}]} +{"id": "000000105644", "images": ["AURORA/data/something/frames/131210/first.jpg", "AURORA/data/something/frames/131210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting doorknob"}]} +{"id": "000000105645", "images": ["AURORA/data/something/frames/106551/first.jpg", "AURORA/data/something/frames/106551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ball from ground"}]} +{"id": "000000105646", "images": ["AURORA/data/something/frames/99642/first.jpg", "AURORA/data/something/frames/99642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug and cellphone closer to each other"}]} +{"id": "000000105647", "images": ["AURORA/data/something/frames/176434/first.jpg", "AURORA/data/something/frames/176434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book so that it almost falls off but doesn't"}]} +{"id": "000000105648", "images": ["AURORA/data/something/frames/189748/first.jpg", "AURORA/data/something/frames/189748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105649", "images": ["AURORA/data/something/frames/135472/first.jpg", "AURORA/data/something/frames/135472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tupperware onto towel"}]} +{"id": "000000105650", "images": ["AURORA/data/something/frames/201362/first.jpg", "AURORA/data/something/frames/201362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone away from the camera"}]} +{"id": "000000105651", "images": ["AURORA/data/something/frames/176476/first.jpg", "AURORA/data/something/frames/176476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a sheet of paper just a little bit"}]} +{"id": "000000105652", "images": ["AURORA/data/something/frames/60030/first.jpg", "AURORA/data/something/frames/60030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottle"}]} +{"id": "000000105653", "images": ["AURORA/data/something/frames/62848/first.jpg", "AURORA/data/something/frames/62848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup and spoon on the table"}]} +{"id": "000000105654", "images": ["AURORA/data/something/frames/5553/first.jpg", "AURORA/data/something/frames/5553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000105655", "images": ["AURORA/data/something/frames/150400/first.jpg", "AURORA/data/something/frames/150400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with ruler on it until it starts sliding down"}]} +{"id": "000000105656", "images": ["AURORA/data/something/frames/38391/first.jpg", "AURORA/data/something/frames/38391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lipstisck on a surface"}]} +{"id": "000000105657", "images": ["AURORA/data/something/frames/35454/first.jpg", "AURORA/data/something/frames/35454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting mouse with remote"}]} +{"id": "000000105658", "images": ["AURORA/data/something/frames/168654/first.jpg", "AURORA/data/something/frames/168654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting powder tin, watch and nail polish on the table"}]} +{"id": "000000105659", "images": ["AURORA/data/something/frames/216492/first.jpg", "AURORA/data/something/frames/216492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing bowl, revealing egg behind"}]} +{"id": "000000105660", "images": ["AURORA/data/something/frames/23217/first.jpg", "AURORA/data/something/frames/23217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting banana next to apples"}]} +{"id": "000000105661", "images": ["AURORA/data/something/frames/167837/first.jpg", "AURORA/data/something/frames/167837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting the lamp handle up completely without letting it drop down"}]} +{"id": "000000105662", "images": ["AURORA/data/something/frames/101071/first.jpg", "AURORA/data/something/frames/101071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing can from left to right"}]} +{"id": "000000105663", "images": ["AURORA/data/something/frames/7412/first.jpg", "AURORA/data/something/frames/7412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle across a surface without it falling down"}]} +{"id": "000000105664", "images": ["AURORA/data/something/frames/104072/first.jpg", "AURORA/data/something/frames/104072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping sauce off of counter"}]} +{"id": "000000105665", "images": ["AURORA/data/something/frames/102036/first.jpg", "AURORA/data/something/frames/102036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power plug into socket but pulling it right out as you remove your hand"}]} +{"id": "000000105666", "images": ["AURORA/data/something/frames/81806/first.jpg", "AURORA/data/something/frames/81806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a bottle cap"}]} +{"id": "000000105667", "images": ["AURORA/data/something/frames/218089/first.jpg", "AURORA/data/something/frames/218089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000105668", "images": ["AURORA/data/something/frames/190657/first.jpg", "AURORA/data/something/frames/190657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000105669", "images": ["AURORA/data/something/frames/100473/first.jpg", "AURORA/data/something/frames/100473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting milk with knife on it"}]} +{"id": "000000105670", "images": ["AURORA/data/something/frames/3763/first.jpg", "AURORA/data/something/frames/3763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a mug with a towel"}]} +{"id": "000000105671", "images": ["AURORA/data/something/frames/91885/first.jpg", "AURORA/data/something/frames/91885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105672", "images": ["AURORA/data/something/frames/145973/first.jpg", "AURORA/data/something/frames/145973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000105673", "images": ["AURORA/data/something/frames/38091/first.jpg", "AURORA/data/something/frames/38091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting wall with stone"}]} +{"id": "000000105674", "images": ["AURORA/data/something/frames/185743/first.jpg", "AURORA/data/something/frames/185743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000105675", "images": ["AURORA/data/something/frames/124537/first.jpg", "AURORA/data/something/frames/124537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000105676", "images": ["AURORA/data/something/frames/51867/first.jpg", "AURORA/data/something/frames/51867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing wafer into laptop"}]} +{"id": "000000105677", "images": ["AURORA/data/something/frames/18181/first.jpg", "AURORA/data/something/frames/18181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling medicinal powder behind a toothbrush holder"}]} +{"id": "000000105678", "images": ["AURORA/data/something/frames/135900/first.jpg", "AURORA/data/something/frames/135900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can of instant coffee upright on the table"}]} +{"id": "000000105679", "images": ["AURORA/data/something/frames/219564/first.jpg", "AURORA/data/something/frames/219564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a cup"}]} +{"id": "000000105680", "images": ["AURORA/data/something/frames/190232/first.jpg", "AURORA/data/something/frames/190232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wooden small home so that it almost falls off but doesn't"}]} +{"id": "000000105681", "images": ["AURORA/data/something/frames/177735/first.jpg", "AURORA/data/something/frames/177735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glasses with bottle"}]} +{"id": "000000105682", "images": ["AURORA/data/something/frames/164263/first.jpg", "AURORA/data/something/frames/164263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming curtains"}]} +{"id": "000000105683", "images": ["AURORA/data/something/frames/191587/first.jpg", "AURORA/data/something/frames/191587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle next to candles"}]} +{"id": "000000105684", "images": ["AURORA/data/something/frames/187793/first.jpg", "AURORA/data/something/frames/187793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 candies"}]} +{"id": "000000105685", "images": ["AURORA/data/something/frames/33444/first.jpg", "AURORA/data/something/frames/33444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering keys with cloth"}]} +{"id": "000000105686", "images": ["AURORA/data/something/frames/38853/first.jpg", "AURORA/data/something/frames/38853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a pen"}]} +{"id": "000000105687", "images": ["AURORA/data/something/frames/205081/first.jpg", "AURORA/data/something/frames/205081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses onto the table next to other glasses"}]} +{"id": "000000105688", "images": ["AURORA/data/something/frames/145634/first.jpg", "AURORA/data/something/frames/145634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg behind a plate"}]} +{"id": "000000105689", "images": ["AURORA/data/something/frames/159969/first.jpg", "AURORA/data/something/frames/159969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000105690", "images": ["AURORA/data/something/frames/15818/first.jpg", "AURORA/data/something/frames/15818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing paper weight from right to left"}]} +{"id": "000000105691", "images": ["AURORA/data/something/frames/4328/first.jpg", "AURORA/data/something/frames/4328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from headphones with your camera"}]} +{"id": "000000105692", "images": ["AURORA/data/something/frames/205753/first.jpg", "AURORA/data/something/frames/205753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering glue stick"}]} +{"id": "000000105693", "images": ["AURORA/data/something/frames/27396/first.jpg", "AURORA/data/something/frames/27396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bottle"}]} +{"id": "000000105694", "images": ["AURORA/data/something/frames/741/first.jpg", "AURORA/data/something/frames/741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cd"}]} +{"id": "000000105695", "images": ["AURORA/data/something/frames/47770/first.jpg", "AURORA/data/something/frames/47770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: flashdisk colliding with pen and both are being deflected"}]} +{"id": "000000105696", "images": ["AURORA/data/something/frames/3670/first.jpg", "AURORA/data/something/frames/3670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen so that it almost falls off but doesn't"}]} +{"id": "000000105697", "images": ["AURORA/data/something/frames/74243/first.jpg", "AURORA/data/something/frames/74243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000105698", "images": ["AURORA/data/something/frames/85158/first.jpg", "AURORA/data/something/frames/85158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on the edge of speaker so it is not supported and falls down"}]} +{"id": "000000105699", "images": ["AURORA/data/something/frames/209987/first.jpg", "AURORA/data/something/frames/209987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking lead pencils out of pencil box"}]} +{"id": "000000105700", "images": ["AURORA/data/something/frames/120661/first.jpg", "AURORA/data/something/frames/120661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000105701", "images": ["AURORA/data/something/frames/201054/first.jpg", "AURORA/data/something/frames/201054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with fork"}]} +{"id": "000000105702", "images": ["AURORA/data/something/frames/119894/first.jpg", "AURORA/data/something/frames/119894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming bottle"}]} +{"id": "000000105703", "images": ["AURORA/data/something/frames/43376/first.jpg", "AURORA/data/something/frames/43376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving orange colour pencil sharpner up up"}]} +{"id": "000000105704", "images": ["AURORA/data/something/frames/214952/first.jpg", "AURORA/data/something/frames/214952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses into mug"}]} +{"id": "000000105705", "images": ["AURORA/data/something/frames/112684/first.jpg", "AURORA/data/something/frames/112684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto plant vase"}]} +{"id": "000000105706", "images": ["AURORA/data/something/frames/142040/first.jpg", "AURORA/data/something/frames/142040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105707", "images": ["AURORA/data/something/frames/26367/first.jpg", "AURORA/data/something/frames/26367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from laterite stone with your camera"}]} +{"id": "000000105708", "images": ["AURORA/data/something/frames/60477/first.jpg", "AURORA/data/something/frames/60477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling box from right to left"}]} +{"id": "000000105709", "images": ["AURORA/data/something/frames/36736/first.jpg", "AURORA/data/something/frames/36736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105710", "images": ["AURORA/data/something/frames/207317/first.jpg", "AURORA/data/something/frames/207317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy car so that it almost falls off but doesn't"}]} +{"id": "000000105711", "images": ["AURORA/data/something/frames/193297/first.jpg", "AURORA/data/something/frames/193297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking frame from table"}]} +{"id": "000000105712", "images": ["AURORA/data/something/frames/21173/first.jpg", "AURORA/data/something/frames/21173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 books"}]} +{"id": "000000105713", "images": ["AURORA/data/something/frames/77202/first.jpg", "AURORA/data/something/frames/77202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing silver coloured pen off of drawing board"}]} +{"id": "000000105714", "images": ["AURORA/data/something/frames/126686/first.jpg", "AURORA/data/something/frames/126686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mail"}]} +{"id": "000000105715", "images": ["AURORA/data/something/frames/165841/first.jpg", "AURORA/data/something/frames/165841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking stuffed animal so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000105716", "images": ["AURORA/data/something/frames/24184/first.jpg", "AURORA/data/something/frames/24184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 ink bottles"}]} +{"id": "000000105717", "images": ["AURORA/data/something/frames/18057/first.jpg", "AURORA/data/something/frames/18057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000105718", "images": ["AURORA/data/something/frames/61568/first.jpg", "AURORA/data/something/frames/61568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing speaker from right to left"}]} +{"id": "000000105719", "images": ["AURORA/data/something/frames/140169/first.jpg", "AURORA/data/something/frames/140169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair band in front of pen"}]} +{"id": "000000105720", "images": ["AURORA/data/something/frames/5946/first.jpg", "AURORA/data/something/frames/5946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of sink"}]} +{"id": "000000105721", "images": ["AURORA/data/something/frames/108436/first.jpg", "AURORA/data/something/frames/108436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking spectacle box up"}]} +{"id": "000000105722", "images": ["AURORA/data/something/frames/141381/first.jpg", "AURORA/data/something/frames/141381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening refrigerator door"}]} +{"id": "000000105723", "images": ["AURORA/data/something/frames/83646/first.jpg", "AURORA/data/something/frames/83646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a dvd over"}]} +{"id": "000000105724", "images": ["AURORA/data/something/frames/171405/first.jpg", "AURORA/data/something/frames/171405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into glass"}]} +{"id": "000000105725", "images": ["AURORA/data/something/frames/37455/first.jpg", "AURORA/data/something/frames/37455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding handkerchief"}]} +{"id": "000000105726", "images": ["AURORA/data/something/frames/153856/first.jpg", "AURORA/data/something/frames/153856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coconut away from the camera"}]} +{"id": "000000105727", "images": ["AURORA/data/something/frames/184753/first.jpg", "AURORA/data/something/frames/184753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bucket from left to right"}]} +{"id": "000000105728", "images": ["AURORA/data/something/frames/157447/first.jpg", "AURORA/data/something/frames/157447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the surface of memorabilia"}]} +{"id": "000000105729", "images": ["AURORA/data/something/frames/40820/first.jpg", "AURORA/data/something/frames/40820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box, spoon and pen on the table"}]} +{"id": "000000105730", "images": ["AURORA/data/something/frames/215140/first.jpg", "AURORA/data/something/frames/215140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000105731", "images": ["AURORA/data/something/frames/23093/first.jpg", "AURORA/data/something/frames/23093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing jar so that it almost falls off but doesn't"}]} +{"id": "000000105732", "images": ["AURORA/data/something/frames/121181/first.jpg", "AURORA/data/something/frames/121181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming small hand gel"}]} +{"id": "000000105733", "images": ["AURORA/data/something/frames/83066/first.jpg", "AURORA/data/something/frames/83066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking onion out of bowl"}]} +{"id": "000000105734", "images": ["AURORA/data/something/frames/63338/first.jpg", "AURORA/data/something/frames/63338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000105735", "images": ["AURORA/data/something/frames/1939/first.jpg", "AURORA/data/something/frames/1939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a laptop"}]} +{"id": "000000105736", "images": ["AURORA/data/something/frames/42000/first.jpg", "AURORA/data/something/frames/42000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) sponge wet until water comes out"}]} +{"id": "000000105737", "images": ["AURORA/data/something/frames/50207/first.jpg", "AURORA/data/something/frames/50207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lighter colliding with ruler and both come to a halt"}]} +{"id": "000000105738", "images": ["AURORA/data/something/frames/121549/first.jpg", "AURORA/data/something/frames/121549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping brush onto blanket"}]} +{"id": "000000105739", "images": ["AURORA/data/something/frames/188416/first.jpg", "AURORA/data/something/frames/188416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping banana in front of basket"}]} +{"id": "000000105740", "images": ["AURORA/data/something/frames/219516/first.jpg", "AURORA/data/something/frames/219516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto water the plants"}]} +{"id": "000000105741", "images": ["AURORA/data/something/frames/181792/first.jpg", "AURORA/data/something/frames/181792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening black spectacle box"}]} +{"id": "000000105742", "images": ["AURORA/data/something/frames/217963/first.jpg", "AURORA/data/something/frames/217963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lemon next to doll"}]} +{"id": "000000105743", "images": ["AURORA/data/something/frames/191935/first.jpg", "AURORA/data/something/frames/191935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting sweet with bottle"}]} +{"id": "000000105744", "images": ["AURORA/data/something/frames/6102/first.jpg", "AURORA/data/something/frames/6102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cord into power block but pulling it right out as you remove your hand"}]} +{"id": "000000105745", "images": ["AURORA/data/something/frames/130289/first.jpg", "AURORA/data/something/frames/130289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into headphones but pulling it right out as you remove your hand"}]} +{"id": "000000105746", "images": ["AURORA/data/something/frames/107136/first.jpg", "AURORA/data/something/frames/107136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a box"}]} +{"id": "000000105747", "images": ["AURORA/data/something/frames/28866/first.jpg", "AURORA/data/something/frames/28866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking toy so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000105748", "images": ["AURORA/data/something/frames/35538/first.jpg", "AURORA/data/something/frames/35538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring a fabric conditioner into a plastic container"}]} +{"id": "000000105749", "images": ["AURORA/data/something/frames/8249/first.jpg", "AURORA/data/something/frames/8249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books so the stack collapses"}]} +{"id": "000000105750", "images": ["AURORA/data/something/frames/116464/first.jpg", "AURORA/data/something/frames/116464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a knife and a spoon away from each other"}]} +{"id": "000000105751", "images": ["AURORA/data/something/frames/57093/first.jpg", "AURORA/data/something/frames/57093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a rag wet until water comes out"}]} +{"id": "000000105752", "images": ["AURORA/data/something/frames/154013/first.jpg", "AURORA/data/something/frames/154013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000105753", "images": ["AURORA/data/something/frames/217957/first.jpg", "AURORA/data/something/frames/217957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a power supply into a wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000105754", "images": ["AURORA/data/something/frames/147451/first.jpg", "AURORA/data/something/frames/147451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black lipstick from left to right"}]} +{"id": "000000105755", "images": ["AURORA/data/something/frames/155410/first.jpg", "AURORA/data/something/frames/155410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hand towards the camera"}]} +{"id": "000000105756", "images": ["AURORA/data/something/frames/67855/first.jpg", "AURORA/data/something/frames/67855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of cup"}]} +{"id": "000000105757", "images": ["AURORA/data/something/frames/157604/first.jpg", "AURORA/data/something/frames/157604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from left to right"}]} +{"id": "000000105758", "images": ["AURORA/data/something/frames/213815/first.jpg", "AURORA/data/something/frames/213815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting board clip and eraser on the table"}]} +{"id": "000000105759", "images": ["AURORA/data/something/frames/47364/first.jpg", "AURORA/data/something/frames/47364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting microscope on a surface"}]} +{"id": "000000105760", "images": ["AURORA/data/something/frames/90101/first.jpg", "AURORA/data/something/frames/90101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cable into laptop"}]} +{"id": "000000105761", "images": ["AURORA/data/something/frames/104878/first.jpg", "AURORA/data/something/frames/104878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a watch behind a clock"}]} +{"id": "000000105762", "images": ["AURORA/data/something/frames/44540/first.jpg", "AURORA/data/something/frames/44540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile and other mobile away from each other"}]} +{"id": "000000105763", "images": ["AURORA/data/something/frames/165210/first.jpg", "AURORA/data/something/frames/165210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling blankets up"}]} +{"id": "000000105764", "images": ["AURORA/data/something/frames/83053/first.jpg", "AURORA/data/something/frames/83053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pot into an oven"}]} +{"id": "000000105765", "images": ["AURORA/data/something/frames/69652/first.jpg", "AURORA/data/something/frames/69652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a coin"}]} +{"id": "000000105766", "images": ["AURORA/data/something/frames/110615/first.jpg", "AURORA/data/something/frames/110615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a cockroach out of a ear"}]} +{"id": "000000105767", "images": ["AURORA/data/something/frames/147079/first.jpg", "AURORA/data/something/frames/147079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking notepad"}]} +{"id": "000000105768", "images": ["AURORA/data/something/frames/75065/first.jpg", "AURORA/data/something/frames/75065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping marker off of whiteboard"}]} +{"id": "000000105769", "images": ["AURORA/data/something/frames/83907/first.jpg", "AURORA/data/something/frames/83907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothpick behind a remote"}]} +{"id": "000000105770", "images": ["AURORA/data/something/frames/219989/first.jpg", "AURORA/data/something/frames/219989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a toothpick until it breaks"}]} +{"id": "000000105771", "images": ["AURORA/data/something/frames/67854/first.jpg", "AURORA/data/something/frames/67854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a teddy bear in front of a teddy bear"}]} +{"id": "000000105772", "images": ["AURORA/data/something/frames/44070/first.jpg", "AURORA/data/something/frames/44070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bra in front of pillow"}]} +{"id": "000000105773", "images": ["AURORA/data/something/frames/71979/first.jpg", "AURORA/data/something/frames/71979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dia next to 3rd dia"}]} +{"id": "000000105774", "images": ["AURORA/data/something/frames/209939/first.jpg", "AURORA/data/something/frames/209939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with cloth"}]} +{"id": "000000105775", "images": ["AURORA/data/something/frames/8771/first.jpg", "AURORA/data/something/frames/8771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white kerchief out of orange purse"}]} +{"id": "000000105776", "images": ["AURORA/data/something/frames/118341/first.jpg", "AURORA/data/something/frames/118341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into socket"}]} +{"id": "000000105777", "images": ["AURORA/data/something/frames/57985/first.jpg", "AURORA/data/something/frames/57985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug and a cup on the table"}]} +{"id": "000000105778", "images": ["AURORA/data/something/frames/181337/first.jpg", "AURORA/data/something/frames/181337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into pen stand"}]} +{"id": "000000105779", "images": ["AURORA/data/something/frames/48406/first.jpg", "AURORA/data/something/frames/48406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a loop to a hook"}]} +{"id": "000000105780", "images": ["AURORA/data/something/frames/47806/first.jpg", "AURORA/data/something/frames/47806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen out of case"}]} +{"id": "000000105781", "images": ["AURORA/data/something/frames/43276/first.jpg", "AURORA/data/something/frames/43276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a fork"}]} +{"id": "000000105782", "images": ["AURORA/data/something/frames/186132/first.jpg", "AURORA/data/something/frames/186132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a pen up"}]} +{"id": "000000105783", "images": ["AURORA/data/something/frames/124527/first.jpg", "AURORA/data/something/frames/124527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bear next to pillow"}]} +{"id": "000000105784", "images": ["AURORA/data/something/frames/48874/first.jpg", "AURORA/data/something/frames/48874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a doll"}]} +{"id": "000000105785", "images": ["AURORA/data/something/frames/21563/first.jpg", "AURORA/data/something/frames/21563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of water pitcher"}]} +{"id": "000000105786", "images": ["AURORA/data/something/frames/136820/first.jpg", "AURORA/data/something/frames/136820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000105787", "images": ["AURORA/data/something/frames/134879/first.jpg", "AURORA/data/something/frames/134879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen behind book"}]} +{"id": "000000105788", "images": ["AURORA/data/something/frames/164688/first.jpg", "AURORA/data/something/frames/164688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming flowers"}]} +{"id": "000000105789", "images": ["AURORA/data/something/frames/39889/first.jpg", "AURORA/data/something/frames/39889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering gear wheel with black pouch"}]} +{"id": "000000105790", "images": ["AURORA/data/something/frames/46167/first.jpg", "AURORA/data/something/frames/46167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a phone charger into a wall socket"}]} +{"id": "000000105791", "images": ["AURORA/data/something/frames/147065/first.jpg", "AURORA/data/something/frames/147065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging earphones into the computer but pulling it right out as you remove your hand"}]} +{"id": "000000105792", "images": ["AURORA/data/something/frames/207999/first.jpg", "AURORA/data/something/frames/207999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coffee in front of canister"}]} +{"id": "000000105793", "images": ["AURORA/data/something/frames/41035/first.jpg", "AURORA/data/something/frames/41035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screw next to carabiner"}]} +{"id": "000000105794", "images": ["AURORA/data/something/frames/145863/first.jpg", "AURORA/data/something/frames/145863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: cup being deflected from counter"}]} +{"id": "000000105795", "images": ["AURORA/data/something/frames/60668/first.jpg", "AURORA/data/something/frames/60668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coin so that it almost falls off but doesn't"}]} +{"id": "000000105796", "images": ["AURORA/data/something/frames/87666/first.jpg", "AURORA/data/something/frames/87666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a towel into a bag"}]} +{"id": "000000105797", "images": ["AURORA/data/something/frames/120377/first.jpg", "AURORA/data/something/frames/120377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: candy colliding with candy and both come to a halt"}]} +{"id": "000000105798", "images": ["AURORA/data/something/frames/150621/first.jpg", "AURORA/data/something/frames/150621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105799", "images": ["AURORA/data/something/frames/29699/first.jpg", "AURORA/data/something/frames/29699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into computer but pulling it right out as you remove your hand"}]} +{"id": "000000105800", "images": ["AURORA/data/something/frames/12651/first.jpg", "AURORA/data/something/frames/12651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a screwdriver"}]} +{"id": "000000105801", "images": ["AURORA/data/something/frames/82560/first.jpg", "AURORA/data/something/frames/82560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking striped pen out of sturdy glass"}]} +{"id": "000000105802", "images": ["AURORA/data/something/frames/117511/first.jpg", "AURORA/data/something/frames/117511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving striker coin down"}]} +{"id": "000000105803", "images": ["AURORA/data/something/frames/92628/first.jpg", "AURORA/data/something/frames/92628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen from right to left"}]} +{"id": "000000105804", "images": ["AURORA/data/something/frames/170558/first.jpg", "AURORA/data/something/frames/170558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into pot of a plant"}]} +{"id": "000000105805", "images": ["AURORA/data/something/frames/211161/first.jpg", "AURORA/data/something/frames/211161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shorts"}]} +{"id": "000000105806", "images": ["AURORA/data/something/frames/95415/first.jpg", "AURORA/data/something/frames/95415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with ice over, so ice falls out"}]} +{"id": "000000105807", "images": ["AURORA/data/something/frames/27602/first.jpg", "AURORA/data/something/frames/27602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ball and a glass figure closer to each other"}]} +{"id": "000000105808", "images": ["AURORA/data/something/frames/142836/first.jpg", "AURORA/data/something/frames/142836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming sign board"}]} +{"id": "000000105809", "images": ["AURORA/data/something/frames/161497/first.jpg", "AURORA/data/something/frames/161497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a tissue"}]} +{"id": "000000105810", "images": ["AURORA/data/something/frames/21809/first.jpg", "AURORA/data/something/frames/21809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon away from the camera"}]} +{"id": "000000105811", "images": ["AURORA/data/something/frames/112028/first.jpg", "AURORA/data/something/frames/112028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000105812", "images": ["AURORA/data/something/frames/185796/first.jpg", "AURORA/data/something/frames/185796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105813", "images": ["AURORA/data/something/frames/143051/first.jpg", "AURORA/data/something/frames/143051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bar soap from left to right"}]} +{"id": "000000105814", "images": ["AURORA/data/something/frames/115697/first.jpg", "AURORA/data/something/frames/115697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the cube and the ball away from each other"}]} +{"id": "000000105815", "images": ["AURORA/data/something/frames/136968/first.jpg", "AURORA/data/something/frames/136968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of bottle without letting it drop down"}]} +{"id": "000000105816", "images": ["AURORA/data/something/frames/205726/first.jpg", "AURORA/data/something/frames/205726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000105817", "images": ["AURORA/data/something/frames/220678/first.jpg", "AURORA/data/something/frames/220678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping packet behind chair"}]} +{"id": "000000105818", "images": ["AURORA/data/something/frames/119246/first.jpg", "AURORA/data/something/frames/119246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plastic box up completely without letting it drop down"}]} +{"id": "000000105819", "images": ["AURORA/data/something/frames/40845/first.jpg", "AURORA/data/something/frames/40845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen off of box"}]} +{"id": "000000105820", "images": ["AURORA/data/something/frames/200201/first.jpg", "AURORA/data/something/frames/200201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding pants"}]} +{"id": "000000105821", "images": ["AURORA/data/something/frames/59762/first.jpg", "AURORA/data/something/frames/59762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour juice into bowl, but missing so it spills next to it"}]} +{"id": "000000105822", "images": ["AURORA/data/something/frames/5299/first.jpg", "AURORA/data/something/frames/5299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunscreen on the edge of the table so it is not supported and falls down"}]} +{"id": "000000105823", "images": ["AURORA/data/something/frames/165921/first.jpg", "AURORA/data/something/frames/165921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping battery over"}]} +{"id": "000000105824", "images": ["AURORA/data/something/frames/6175/first.jpg", "AURORA/data/something/frames/6175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling drawer out of desk"}]} +{"id": "000000105825", "images": ["AURORA/data/something/frames/152924/first.jpg", "AURORA/data/something/frames/152924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) cap of pen"}]} +{"id": "000000105826", "images": ["AURORA/data/something/frames/193788/first.jpg", "AURORA/data/something/frames/193788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a note into two pieces"}]} +{"id": "000000105827", "images": ["AURORA/data/something/frames/46550/first.jpg", "AURORA/data/something/frames/46550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105828", "images": ["AURORA/data/something/frames/167927/first.jpg", "AURORA/data/something/frames/167927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a water bottle on the edge of a book so it is not supported and falls down"}]} +{"id": "000000105829", "images": ["AURORA/data/something/frames/25680/first.jpg", "AURORA/data/something/frames/25680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a mouse from left to right"}]} +{"id": "000000105830", "images": ["AURORA/data/something/frames/844/first.jpg", "AURORA/data/something/frames/844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming scotch tape"}]} +{"id": "000000105831", "images": ["AURORA/data/something/frames/188825/first.jpg", "AURORA/data/something/frames/188825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting card into wallet"}]} +{"id": "000000105832", "images": ["AURORA/data/something/frames/113152/first.jpg", "AURORA/data/something/frames/113152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000105833", "images": ["AURORA/data/something/frames/184786/first.jpg", "AURORA/data/something/frames/184786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000105834", "images": ["AURORA/data/something/frames/119880/first.jpg", "AURORA/data/something/frames/119880/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning black play cards upside down"}]} +{"id": "000000105835", "images": ["AURORA/data/something/frames/181980/first.jpg", "AURORA/data/something/frames/181980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair tie onto floor"}]} +{"id": "000000105836", "images": ["AURORA/data/something/frames/90646/first.jpg", "AURORA/data/something/frames/90646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottle from right to left"}]} +{"id": "000000105837", "images": ["AURORA/data/something/frames/158672/first.jpg", "AURORA/data/something/frames/158672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering mug"}]} +{"id": "000000105838", "images": ["AURORA/data/something/frames/20153/first.jpg", "AURORA/data/something/frames/20153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball colliding with ball and both are being deflected"}]} +{"id": "000000105839", "images": ["AURORA/data/something/frames/149681/first.jpg", "AURORA/data/something/frames/149681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping little bottle over"}]} +{"id": "000000105840", "images": ["AURORA/data/something/frames/1091/first.jpg", "AURORA/data/something/frames/1091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling cookie crumbs onto banana pudding"}]} +{"id": "000000105841", "images": ["AURORA/data/something/frames/111318/first.jpg", "AURORA/data/something/frames/111318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000105842", "images": ["AURORA/data/something/frames/38384/first.jpg", "AURORA/data/something/frames/38384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an adapter into an aoutlet"}]} +{"id": "000000105843", "images": ["AURORA/data/something/frames/194468/first.jpg", "AURORA/data/something/frames/194468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker next to mug"}]} +{"id": "000000105844", "images": ["AURORA/data/something/frames/149648/first.jpg", "AURORA/data/something/frames/149648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing key into pouch"}]} +{"id": "000000105845", "images": ["AURORA/data/something/frames/57653/first.jpg", "AURORA/data/something/frames/57653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a jar"}]} +{"id": "000000105846", "images": ["AURORA/data/something/frames/177859/first.jpg", "AURORA/data/something/frames/177859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming blue pen"}]} +{"id": "000000105847", "images": ["AURORA/data/something/frames/98316/first.jpg", "AURORA/data/something/frames/98316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup so that it almost falls off but doesn't"}]} +{"id": "000000105848", "images": ["AURORA/data/something/frames/220367/first.jpg", "AURORA/data/something/frames/220367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lime being deflected from phone"}]} +{"id": "000000105849", "images": ["AURORA/data/something/frames/105780/first.jpg", "AURORA/data/something/frames/105780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair tie next to slipper"}]} +{"id": "000000105850", "images": ["AURORA/data/something/frames/142024/first.jpg", "AURORA/data/something/frames/142024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a clip on the edge of refrigerator so it is not supported and falls down"}]} +{"id": "000000105851", "images": ["AURORA/data/something/frames/116148/first.jpg", "AURORA/data/something/frames/116148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toy cart from left to right"}]} +{"id": "000000105852", "images": ["AURORA/data/something/frames/87064/first.jpg", "AURORA/data/something/frames/87064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a marker"}]} +{"id": "000000105853", "images": ["AURORA/data/something/frames/181779/first.jpg", "AURORA/data/something/frames/181779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet"}]} +{"id": "000000105854", "images": ["AURORA/data/something/frames/60908/first.jpg", "AURORA/data/something/frames/60908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing papper just a little bit"}]} +{"id": "000000105855", "images": ["AURORA/data/something/frames/9561/first.jpg", "AURORA/data/something/frames/9561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming photo scenery"}]} +{"id": "000000105856", "images": ["AURORA/data/something/frames/174527/first.jpg", "AURORA/data/something/frames/174527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the edge of smartphone"}]} +{"id": "000000105857", "images": ["AURORA/data/something/frames/200178/first.jpg", "AURORA/data/something/frames/200178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping trash into a trash can"}]} +{"id": "000000105858", "images": ["AURORA/data/something/frames/46963/first.jpg", "AURORA/data/something/frames/46963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many skateboard"}]} +{"id": "000000105859", "images": ["AURORA/data/something/frames/197927/first.jpg", "AURORA/data/something/frames/197927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering marker"}]} +{"id": "000000105860", "images": ["AURORA/data/something/frames/150544/first.jpg", "AURORA/data/something/frames/150544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing rice into cup"}]} +{"id": "000000105861", "images": ["AURORA/data/something/frames/50395/first.jpg", "AURORA/data/something/frames/50395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a screw from right to left"}]} +{"id": "000000105862", "images": ["AURORA/data/something/frames/11676/first.jpg", "AURORA/data/something/frames/11676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of tricycle without letting it drop down"}]} +{"id": "000000105863", "images": ["AURORA/data/something/frames/126614/first.jpg", "AURORA/data/something/frames/126614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming scotch tape"}]} +{"id": "000000105864", "images": ["AURORA/data/something/frames/187029/first.jpg", "AURORA/data/something/frames/187029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb drive into usb port"}]} +{"id": "000000105865", "images": ["AURORA/data/something/frames/28312/first.jpg", "AURORA/data/something/frames/28312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting books into cabinet"}]} +{"id": "000000105866", "images": ["AURORA/data/something/frames/158885/first.jpg", "AURORA/data/something/frames/158885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming transformer"}]} +{"id": "000000105867", "images": ["AURORA/data/something/frames/203354/first.jpg", "AURORA/data/something/frames/203354/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking plastic bag up"}]} +{"id": "000000105868", "images": ["AURORA/data/something/frames/210666/first.jpg", "AURORA/data/something/frames/210666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting something"}]} +{"id": "000000105869", "images": ["AURORA/data/something/frames/63587/first.jpg", "AURORA/data/something/frames/63587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling origami stars onto spiraled notebook"}]} +{"id": "000000105870", "images": ["AURORA/data/something/frames/202999/first.jpg", "AURORA/data/something/frames/202999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book and lock closer to each other"}]} +{"id": "000000105871", "images": ["AURORA/data/something/frames/177123/first.jpg", "AURORA/data/something/frames/177123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper onto box"}]} +{"id": "000000105872", "images": ["AURORA/data/something/frames/27827/first.jpg", "AURORA/data/something/frames/27827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic bottle and plastic bottle away from each other"}]} +{"id": "000000105873", "images": ["AURORA/data/something/frames/157289/first.jpg", "AURORA/data/something/frames/157289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing something"}]} +{"id": "000000105874", "images": ["AURORA/data/something/frames/54354/first.jpg", "AURORA/data/something/frames/54354/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a $20 bill"}]} +{"id": "000000105875", "images": ["AURORA/data/something/frames/67174/first.jpg", "AURORA/data/something/frames/67174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105876", "images": ["AURORA/data/something/frames/92580/first.jpg", "AURORA/data/something/frames/92580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ribbon out of mug"}]} +{"id": "000000105877", "images": ["AURORA/data/something/frames/183926/first.jpg", "AURORA/data/something/frames/183926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging memory into usb but pulling it right out as you remove your hand"}]} +{"id": "000000105878", "images": ["AURORA/data/something/frames/86654/first.jpg", "AURORA/data/something/frames/86654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: rock colliding with rock and both are being deflected"}]} +{"id": "000000105879", "images": ["AURORA/data/something/frames/105671/first.jpg", "AURORA/data/something/frames/105671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a marker from a group of markers on the table"}]} +{"id": "000000105880", "images": ["AURORA/data/something/frames/179956/first.jpg", "AURORA/data/something/frames/179956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105881", "images": ["AURORA/data/something/frames/72507/first.jpg", "AURORA/data/something/frames/72507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning an ashtray upside down"}]} +{"id": "000000105882", "images": ["AURORA/data/something/frames/170686/first.jpg", "AURORA/data/something/frames/170686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming small green ball"}]} +{"id": "000000105883", "images": ["AURORA/data/something/frames/101343/first.jpg", "AURORA/data/something/frames/101343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling brown case from left to right"}]} +{"id": "000000105884", "images": ["AURORA/data/something/frames/120176/first.jpg", "AURORA/data/something/frames/120176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering lighter with tissue"}]} +{"id": "000000105885", "images": ["AURORA/data/something/frames/134267/first.jpg", "AURORA/data/something/frames/134267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking umbrella"}]} +{"id": "000000105886", "images": ["AURORA/data/something/frames/142785/first.jpg", "AURORA/data/something/frames/142785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clothclips"}]} +{"id": "000000105887", "images": ["AURORA/data/something/frames/3548/first.jpg", "AURORA/data/something/frames/3548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking crayon out of box"}]} +{"id": "000000105888", "images": ["AURORA/data/something/frames/130213/first.jpg", "AURORA/data/something/frames/130213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking receipts"}]} +{"id": "000000105889", "images": ["AURORA/data/something/frames/176110/first.jpg", "AURORA/data/something/frames/176110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup towards the camera"}]} +{"id": "000000105890", "images": ["AURORA/data/something/frames/192254/first.jpg", "AURORA/data/something/frames/192254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red watch case from right to left"}]} +{"id": "000000105891", "images": ["AURORA/data/something/frames/110620/first.jpg", "AURORA/data/something/frames/110620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from right to left"}]} +{"id": "000000105892", "images": ["AURORA/data/something/frames/20405/first.jpg", "AURORA/data/something/frames/20405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble and spanner on the table"}]} +{"id": "000000105893", "images": ["AURORA/data/something/frames/8128/first.jpg", "AURORA/data/something/frames/8128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the edge of bag"}]} +{"id": "000000105894", "images": ["AURORA/data/something/frames/135241/first.jpg", "AURORA/data/something/frames/135241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white board clip from left to right"}]} +{"id": "000000105895", "images": ["AURORA/data/something/frames/50078/first.jpg", "AURORA/data/something/frames/50078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding bed sheet"}]} +{"id": "000000105896", "images": ["AURORA/data/something/frames/192208/first.jpg", "AURORA/data/something/frames/192208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking push pins out of container"}]} +{"id": "000000105897", "images": ["AURORA/data/something/frames/15645/first.jpg", "AURORA/data/something/frames/15645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chocolate bar"}]} +{"id": "000000105898", "images": ["AURORA/data/something/frames/167693/first.jpg", "AURORA/data/something/frames/167693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling pepper onto envelope"}]} +{"id": "000000105899", "images": ["AURORA/data/something/frames/105091/first.jpg", "AURORA/data/something/frames/105091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass of many similar glasses"}]} +{"id": "000000105900", "images": ["AURORA/data/something/frames/197319/first.jpg", "AURORA/data/something/frames/197319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering scissors"}]} +{"id": "000000105901", "images": ["AURORA/data/something/frames/119993/first.jpg", "AURORA/data/something/frames/119993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bird on a surface"}]} +{"id": "000000105902", "images": ["AURORA/data/something/frames/107016/first.jpg", "AURORA/data/something/frames/107016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote across a surface without it falling down"}]} +{"id": "000000105903", "images": ["AURORA/data/something/frames/78969/first.jpg", "AURORA/data/something/frames/78969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting grass"}]} +{"id": "000000105904", "images": ["AURORA/data/something/frames/217238/first.jpg", "AURORA/data/something/frames/217238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into cup"}]} +{"id": "000000105905", "images": ["AURORA/data/something/frames/147868/first.jpg", "AURORA/data/something/frames/147868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming brown case"}]} +{"id": "000000105906", "images": ["AURORA/data/something/frames/204296/first.jpg", "AURORA/data/something/frames/204296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 coin onto hair oil bottle"}]} +{"id": "000000105907", "images": ["AURORA/data/something/frames/97082/first.jpg", "AURORA/data/something/frames/97082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking comb"}]} +{"id": "000000105908", "images": ["AURORA/data/something/frames/135944/first.jpg", "AURORA/data/something/frames/135944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105909", "images": ["AURORA/data/something/frames/213296/first.jpg", "AURORA/data/something/frames/213296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper-clip upright on the table, so it falls on its side"}]} +{"id": "000000105910", "images": ["AURORA/data/something/frames/102224/first.jpg", "AURORA/data/something/frames/102224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000105911", "images": ["AURORA/data/something/frames/71060/first.jpg", "AURORA/data/something/frames/71060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling socks up"}]} +{"id": "000000105912", "images": ["AURORA/data/something/frames/14995/first.jpg", "AURORA/data/something/frames/14995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105913", "images": ["AURORA/data/something/frames/20672/first.jpg", "AURORA/data/something/frames/20672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105914", "images": ["AURORA/data/something/frames/57753/first.jpg", "AURORA/data/something/frames/57753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bean bag onto floor"}]} +{"id": "000000105915", "images": ["AURORA/data/something/frames/184562/first.jpg", "AURORA/data/something/frames/184562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper sheet into two pieces"}]} +{"id": "000000105916", "images": ["AURORA/data/something/frames/209315/first.jpg", "AURORA/data/something/frames/209315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105917", "images": ["AURORA/data/something/frames/66953/first.jpg", "AURORA/data/something/frames/66953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green toy car towards the camera"}]} +{"id": "000000105918", "images": ["AURORA/data/something/frames/43233/first.jpg", "AURORA/data/something/frames/43233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel just a little bit"}]} +{"id": "000000105919", "images": ["AURORA/data/something/frames/103869/first.jpg", "AURORA/data/something/frames/103869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning soupbowl upside down"}]} +{"id": "000000105920", "images": ["AURORA/data/something/frames/191488/first.jpg", "AURORA/data/something/frames/191488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse down"}]} +{"id": "000000105921", "images": ["AURORA/data/something/frames/178356/first.jpg", "AURORA/data/something/frames/178356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from flowers with your camera"}]} +{"id": "000000105922", "images": ["AURORA/data/something/frames/42228/first.jpg", "AURORA/data/something/frames/42228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering mobilephone with paper"}]} +{"id": "000000105923", "images": ["AURORA/data/something/frames/63548/first.jpg", "AURORA/data/something/frames/63548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into laptop"}]} +{"id": "000000105924", "images": ["AURORA/data/something/frames/66319/first.jpg", "AURORA/data/something/frames/66319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming dinosaur prototype"}]} +{"id": "000000105925", "images": ["AURORA/data/something/frames/85905/first.jpg", "AURORA/data/something/frames/85905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering keys with towel"}]} +{"id": "000000105926", "images": ["AURORA/data/something/frames/183031/first.jpg", "AURORA/data/something/frames/183031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming old mobile phone"}]} +{"id": "000000105927", "images": ["AURORA/data/something/frames/162748/first.jpg", "AURORA/data/something/frames/162748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving screw up"}]} +{"id": "000000105928", "images": ["AURORA/data/something/frames/82424/first.jpg", "AURORA/data/something/frames/82424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the arm of a teddy bear"}]} +{"id": "000000105929", "images": ["AURORA/data/something/frames/103429/first.jpg", "AURORA/data/something/frames/103429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone and a lighter closer to each other"}]} +{"id": "000000105930", "images": ["AURORA/data/something/frames/132614/first.jpg", "AURORA/data/something/frames/132614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying pig on the table on its side, not upright"}]} +{"id": "000000105931", "images": ["AURORA/data/something/frames/165322/first.jpg", "AURORA/data/something/frames/165322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pillow with a fist"}]} +{"id": "000000105932", "images": ["AURORA/data/something/frames/72552/first.jpg", "AURORA/data/something/frames/72552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a book"}]} +{"id": "000000105933", "images": ["AURORA/data/something/frames/21575/first.jpg", "AURORA/data/something/frames/21575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pliers upright on the table, so it falls on its side"}]} +{"id": "000000105934", "images": ["AURORA/data/something/frames/104775/first.jpg", "AURORA/data/something/frames/104775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000105935", "images": ["AURORA/data/something/frames/106533/first.jpg", "AURORA/data/something/frames/106533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 pens onto the table"}]} +{"id": "000000105936", "images": ["AURORA/data/something/frames/34352/first.jpg", "AURORA/data/something/frames/34352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting towel"}]} +{"id": "000000105937", "images": ["AURORA/data/something/frames/104458/first.jpg", "AURORA/data/something/frames/104458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000105938", "images": ["AURORA/data/something/frames/42782/first.jpg", "AURORA/data/something/frames/42782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening oil bottle"}]} +{"id": "000000105939", "images": ["AURORA/data/something/frames/138899/first.jpg", "AURORA/data/something/frames/138899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering compass"}]} +{"id": "000000105940", "images": ["AURORA/data/something/frames/130929/first.jpg", "AURORA/data/something/frames/130929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000105941", "images": ["AURORA/data/something/frames/129551/first.jpg", "AURORA/data/something/frames/129551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105942", "images": ["AURORA/data/something/frames/155287/first.jpg", "AURORA/data/something/frames/155287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling things up"}]} +{"id": "000000105943", "images": ["AURORA/data/something/frames/161270/first.jpg", "AURORA/data/something/frames/161270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cord so that it deforms"}]} +{"id": "000000105944", "images": ["AURORA/data/something/frames/206508/first.jpg", "AURORA/data/something/frames/206508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from banana bunch with your camera"}]} +{"id": "000000105945", "images": ["AURORA/data/something/frames/10098/first.jpg", "AURORA/data/something/frames/10098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a pink sticky note"}]} +{"id": "000000105946", "images": ["AURORA/data/something/frames/49280/first.jpg", "AURORA/data/something/frames/49280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging machine into wall but pulling it right out as you remove your hand"}]} +{"id": "000000105947", "images": ["AURORA/data/something/frames/64934/first.jpg", "AURORA/data/something/frames/64934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000105948", "images": ["AURORA/data/something/frames/145196/first.jpg", "AURORA/data/something/frames/145196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper into two pieces"}]} +{"id": "000000105949", "images": ["AURORA/data/something/frames/177244/first.jpg", "AURORA/data/something/frames/177244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a shirt"}]} +{"id": "000000105950", "images": ["AURORA/data/something/frames/138993/first.jpg", "AURORA/data/something/frames/138993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bottle cap"}]} +{"id": "000000105951", "images": ["AURORA/data/something/frames/85895/first.jpg", "AURORA/data/something/frames/85895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a jumpdrive closer to a stapler"}]} +{"id": "000000105952", "images": ["AURORA/data/something/frames/105054/first.jpg", "AURORA/data/something/frames/105054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water from bottle into glass"}]} +{"id": "000000105953", "images": ["AURORA/data/something/frames/11119/first.jpg", "AURORA/data/something/frames/11119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a paper tissue out of a tissue box"}]} +{"id": "000000105954", "images": ["AURORA/data/something/frames/11267/first.jpg", "AURORA/data/something/frames/11267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote behind pillow"}]} +{"id": "000000105955", "images": ["AURORA/data/something/frames/193127/first.jpg", "AURORA/data/something/frames/193127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) towel wet until water comes out"}]} +{"id": "000000105956", "images": ["AURORA/data/something/frames/203717/first.jpg", "AURORA/data/something/frames/203717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into marshmallow"}]} +{"id": "000000105957", "images": ["AURORA/data/something/frames/194955/first.jpg", "AURORA/data/something/frames/194955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy car from left to right"}]} +{"id": "000000105958", "images": ["AURORA/data/something/frames/18592/first.jpg", "AURORA/data/something/frames/18592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda into whiskey"}]} +{"id": "000000105959", "images": ["AURORA/data/something/frames/53531/first.jpg", "AURORA/data/something/frames/53531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105960", "images": ["AURORA/data/something/frames/77401/first.jpg", "AURORA/data/something/frames/77401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and fruit closer to each other"}]} +{"id": "000000105961", "images": ["AURORA/data/something/frames/12160/first.jpg", "AURORA/data/something/frames/12160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubix cube next to pillow"}]} +{"id": "000000105962", "images": ["AURORA/data/something/frames/194954/first.jpg", "AURORA/data/something/frames/194954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying bangle in rice"}]} +{"id": "000000105963", "images": ["AURORA/data/something/frames/30186/first.jpg", "AURORA/data/something/frames/30186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bicycle-bell with hammer"}]} +{"id": "000000105964", "images": ["AURORA/data/something/frames/203047/first.jpg", "AURORA/data/something/frames/203047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pad lock"}]} +{"id": "000000105965", "images": ["AURORA/data/something/frames/190281/first.jpg", "AURORA/data/something/frames/190281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming pictures"}]} +{"id": "000000105966", "images": ["AURORA/data/something/frames/127980/first.jpg", "AURORA/data/something/frames/127980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging ac charger into wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000105967", "images": ["AURORA/data/something/frames/83799/first.jpg", "AURORA/data/something/frames/83799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lidded cup next to container"}]} +{"id": "000000105968", "images": ["AURORA/data/something/frames/177874/first.jpg", "AURORA/data/something/frames/177874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping wallet over"}]} +{"id": "000000105969", "images": ["AURORA/data/something/frames/72077/first.jpg", "AURORA/data/something/frames/72077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping sellotape behind box"}]} +{"id": "000000105970", "images": ["AURORA/data/something/frames/19584/first.jpg", "AURORA/data/something/frames/19584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000105971", "images": ["AURORA/data/something/frames/111395/first.jpg", "AURORA/data/something/frames/111395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard just a little bit"}]} +{"id": "000000105972", "images": ["AURORA/data/something/frames/91376/first.jpg", "AURORA/data/something/frames/91376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wired headset on a surface"}]} +{"id": "000000105973", "images": ["AURORA/data/something/frames/60229/first.jpg", "AURORA/data/something/frames/60229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with glass"}]} +{"id": "000000105974", "images": ["AURORA/data/something/frames/193671/first.jpg", "AURORA/data/something/frames/193671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box in front of a cube"}]} +{"id": "000000105975", "images": ["AURORA/data/something/frames/23292/first.jpg", "AURORA/data/something/frames/23292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 different items"}]} +{"id": "000000105976", "images": ["AURORA/data/something/frames/41924/first.jpg", "AURORA/data/something/frames/41924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle upright on the table"}]} +{"id": "000000105977", "images": ["AURORA/data/something/frames/91755/first.jpg", "AURORA/data/something/frames/91755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000105978", "images": ["AURORA/data/something/frames/117454/first.jpg", "AURORA/data/something/frames/117454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with pen on it until it starts sliding down"}]} +{"id": "000000105979", "images": ["AURORA/data/something/frames/174211/first.jpg", "AURORA/data/something/frames/174211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pant into bag"}]} +{"id": "000000105980", "images": ["AURORA/data/something/frames/78261/first.jpg", "AURORA/data/something/frames/78261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bear over"}]} +{"id": "000000105981", "images": ["AURORA/data/something/frames/141684/first.jpg", "AURORA/data/something/frames/141684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and cup closer to each other"}]} +{"id": "000000105982", "images": ["AURORA/data/something/frames/122772/first.jpg", "AURORA/data/something/frames/122772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding coversheet"}]} +{"id": "000000105983", "images": ["AURORA/data/something/frames/104693/first.jpg", "AURORA/data/something/frames/104693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping water bottle into cd cover"}]} +{"id": "000000105984", "images": ["AURORA/data/something/frames/78579/first.jpg", "AURORA/data/something/frames/78579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing binder clip from left to right"}]} +{"id": "000000105985", "images": ["AURORA/data/something/frames/78678/first.jpg", "AURORA/data/something/frames/78678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping toothpaste off of a table"}]} +{"id": "000000105986", "images": ["AURORA/data/something/frames/16191/first.jpg", "AURORA/data/something/frames/16191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a gatorade bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000105987", "images": ["AURORA/data/something/frames/164685/first.jpg", "AURORA/data/something/frames/164685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding car's side mirror"}]} +{"id": "000000105988", "images": ["AURORA/data/something/frames/157582/first.jpg", "AURORA/data/something/frames/157582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000105989", "images": ["AURORA/data/something/frames/213350/first.jpg", "AURORA/data/something/frames/213350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000105990", "images": ["AURORA/data/something/frames/217620/first.jpg", "AURORA/data/something/frames/217620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing canned food from right to left"}]} +{"id": "000000105991", "images": ["AURORA/data/something/frames/111440/first.jpg", "AURORA/data/something/frames/111440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning spoon rest upside down"}]} +{"id": "000000105992", "images": ["AURORA/data/something/frames/68685/first.jpg", "AURORA/data/something/frames/68685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: gum colliding with gum and both are being deflected"}]} +{"id": "000000105993", "images": ["AURORA/data/something/frames/402/first.jpg", "AURORA/data/something/frames/402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker off of table"}]} +{"id": "000000105994", "images": ["AURORA/data/something/frames/144523/first.jpg", "AURORA/data/something/frames/144523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bucket from left to right"}]} +{"id": "000000105995", "images": ["AURORA/data/something/frames/172835/first.jpg", "AURORA/data/something/frames/172835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four books"}]} +{"id": "000000105996", "images": ["AURORA/data/something/frames/212475/first.jpg", "AURORA/data/something/frames/212475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a peg"}]} +{"id": "000000105997", "images": ["AURORA/data/something/frames/180301/first.jpg", "AURORA/data/something/frames/180301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a cell phone up"}]} +{"id": "000000105998", "images": ["AURORA/data/something/frames/42088/first.jpg", "AURORA/data/something/frames/42088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing masking tape just a little bit"}]} +{"id": "000000105999", "images": ["AURORA/data/something/frames/84449/first.jpg", "AURORA/data/something/frames/84449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting calculator and a coin on the table"}]} +{"id": "000000106000", "images": ["AURORA/data/something/frames/203223/first.jpg", "AURORA/data/something/frames/203223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking wallet from floor"}]} +{"id": "000000106001", "images": ["AURORA/data/something/frames/90746/first.jpg", "AURORA/data/something/frames/90746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toy into bowl"}]} +{"id": "000000106002", "images": ["AURORA/data/something/frames/25962/first.jpg", "AURORA/data/something/frames/25962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a lamp up"}]} +{"id": "000000106003", "images": ["AURORA/data/something/frames/50772/first.jpg", "AURORA/data/something/frames/50772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a ruler"}]} +{"id": "000000106004", "images": ["AURORA/data/something/frames/106048/first.jpg", "AURORA/data/something/frames/106048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a leaf into two pieces"}]} +{"id": "000000106005", "images": ["AURORA/data/something/frames/187138/first.jpg", "AURORA/data/something/frames/187138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming temple"}]} +{"id": "000000106006", "images": ["AURORA/data/something/frames/74575/first.jpg", "AURORA/data/something/frames/74575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottletop next to a remote"}]} +{"id": "000000106007", "images": ["AURORA/data/something/frames/57579/first.jpg", "AURORA/data/something/frames/57579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching bolt with your camera"}]} +{"id": "000000106008", "images": ["AURORA/data/something/frames/210051/first.jpg", "AURORA/data/something/frames/210051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen next to glass"}]} +{"id": "000000106009", "images": ["AURORA/data/something/frames/179043/first.jpg", "AURORA/data/something/frames/179043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass up"}]} +{"id": "000000106010", "images": ["AURORA/data/something/frames/179512/first.jpg", "AURORA/data/something/frames/179512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pencil from many others"}]} +{"id": "000000106011", "images": ["AURORA/data/something/frames/31859/first.jpg", "AURORA/data/something/frames/31859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power adapter into outlet"}]} +{"id": "000000106012", "images": ["AURORA/data/something/frames/108294/first.jpg", "AURORA/data/something/frames/108294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering can"}]} +{"id": "000000106013", "images": ["AURORA/data/something/frames/135954/first.jpg", "AURORA/data/something/frames/135954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a socket"}]} +{"id": "000000106014", "images": ["AURORA/data/something/frames/98361/first.jpg", "AURORA/data/something/frames/98361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling granola bar from right to left"}]} +{"id": "000000106015", "images": ["AURORA/data/something/frames/62240/first.jpg", "AURORA/data/something/frames/62240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind a bath-tube"}]} +{"id": "000000106016", "images": ["AURORA/data/something/frames/198860/first.jpg", "AURORA/data/something/frames/198860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bottle with a spoon"}]} +{"id": "000000106017", "images": ["AURORA/data/something/frames/53730/first.jpg", "AURORA/data/something/frames/53730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screw upright on the table, so it falls on its side"}]} +{"id": "000000106018", "images": ["AURORA/data/something/frames/106822/first.jpg", "AURORA/data/something/frames/106822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping vitamin bottle with vitamins over, so vitamins falls out"}]} +{"id": "000000106019", "images": ["AURORA/data/something/frames/59299/first.jpg", "AURORA/data/something/frames/59299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book onto book so it falls down"}]} +{"id": "000000106020", "images": ["AURORA/data/something/frames/41214/first.jpg", "AURORA/data/something/frames/41214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 5 train tracks"}]} +{"id": "000000106021", "images": ["AURORA/data/something/frames/61621/first.jpg", "AURORA/data/something/frames/61621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into the sink"}]} +{"id": "000000106022", "images": ["AURORA/data/something/frames/156790/first.jpg", "AURORA/data/something/frames/156790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pen"}]} +{"id": "000000106023", "images": ["AURORA/data/something/frames/180692/first.jpg", "AURORA/data/something/frames/180692/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging soil out of ground"}]} +{"id": "000000106024", "images": ["AURORA/data/something/frames/34709/first.jpg", "AURORA/data/something/frames/34709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pen colliding with flashdisk and both come to a halt"}]} +{"id": "000000106025", "images": ["AURORA/data/something/frames/139766/first.jpg", "AURORA/data/something/frames/139766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of pencil without letting it drop down"}]} +{"id": "000000106026", "images": ["AURORA/data/something/frames/141994/first.jpg", "AURORA/data/something/frames/141994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a piece of tangerine and a dish closer to each other"}]} +{"id": "000000106027", "images": ["AURORA/data/something/frames/102550/first.jpg", "AURORA/data/something/frames/102550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending medicine tablet strip so that it deforms"}]} +{"id": "000000106028", "images": ["AURORA/data/something/frames/219800/first.jpg", "AURORA/data/something/frames/219800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving salt closer to pepper"}]} +{"id": "000000106029", "images": ["AURORA/data/something/frames/78847/first.jpg", "AURORA/data/something/frames/78847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a pen"}]} +{"id": "000000106030", "images": ["AURORA/data/something/frames/191662/first.jpg", "AURORA/data/something/frames/191662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging wire into mobile"}]} +{"id": "000000106031", "images": ["AURORA/data/something/frames/74760/first.jpg", "AURORA/data/something/frames/74760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bowl behind a jbl"}]} +{"id": "000000106032", "images": ["AURORA/data/something/frames/148945/first.jpg", "AURORA/data/something/frames/148945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a screwdriver closer to a box"}]} +{"id": "000000106033", "images": ["AURORA/data/something/frames/184051/first.jpg", "AURORA/data/something/frames/184051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with knife on it until it starts sliding down"}]} +{"id": "000000106034", "images": ["AURORA/data/something/frames/216657/first.jpg", "AURORA/data/something/frames/216657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a spoon so that it almost falls off but doesn't"}]} +{"id": "000000106035", "images": ["AURORA/data/something/frames/98301/first.jpg", "AURORA/data/something/frames/98301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black remote from left to right"}]} +{"id": "000000106036", "images": ["AURORA/data/something/frames/161014/first.jpg", "AURORA/data/something/frames/161014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming bottled ponzu sauce"}]} +{"id": "000000106037", "images": ["AURORA/data/something/frames/95962/first.jpg", "AURORA/data/something/frames/95962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking book so that it falls over"}]} +{"id": "000000106038", "images": ["AURORA/data/something/frames/202556/first.jpg", "AURORA/data/something/frames/202556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000106039", "images": ["AURORA/data/something/frames/166833/first.jpg", "AURORA/data/something/frames/166833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a glass jar"}]} +{"id": "000000106040", "images": ["AURORA/data/something/frames/22966/first.jpg", "AURORA/data/something/frames/22966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote behind textbook"}]} +{"id": "000000106041", "images": ["AURORA/data/something/frames/44441/first.jpg", "AURORA/data/something/frames/44441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pillow up"}]} +{"id": "000000106042", "images": ["AURORA/data/something/frames/158205/first.jpg", "AURORA/data/something/frames/158205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass jar upside down"}]} +{"id": "000000106043", "images": ["AURORA/data/something/frames/45058/first.jpg", "AURORA/data/something/frames/45058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a power box into an outlet"}]} +{"id": "000000106044", "images": ["AURORA/data/something/frames/74966/first.jpg", "AURORA/data/something/frames/74966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting wooden block up completely without letting it drop down"}]} +{"id": "000000106045", "images": ["AURORA/data/something/frames/134415/first.jpg", "AURORA/data/something/frames/134415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plastic oignons being deflected from palstic choux"}]} +{"id": "000000106046", "images": ["AURORA/data/something/frames/60063/first.jpg", "AURORA/data/something/frames/60063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rubix cube closer to yellow ball"}]} +{"id": "000000106047", "images": ["AURORA/data/something/frames/77904/first.jpg", "AURORA/data/something/frames/77904/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper onto fridge"}]} +{"id": "000000106048", "images": ["AURORA/data/something/frames/24532/first.jpg", "AURORA/data/something/frames/24532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000106049", "images": ["AURORA/data/something/frames/207871/first.jpg", "AURORA/data/something/frames/207871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering shoe with shirt"}]} +{"id": "000000106050", "images": ["AURORA/data/something/frames/192999/first.jpg", "AURORA/data/something/frames/192999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening waste bin"}]} +{"id": "000000106051", "images": ["AURORA/data/something/frames/159145/first.jpg", "AURORA/data/something/frames/159145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail clippers closer to pen"}]} +{"id": "000000106052", "images": ["AURORA/data/something/frames/125214/first.jpg", "AURORA/data/something/frames/125214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coffee onto the counter"}]} +{"id": "000000106053", "images": ["AURORA/data/something/frames/104739/first.jpg", "AURORA/data/something/frames/104739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking mouse up"}]} +{"id": "000000106054", "images": ["AURORA/data/something/frames/147219/first.jpg", "AURORA/data/something/frames/147219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red pen and black pen away from each other"}]} +{"id": "000000106055", "images": ["AURORA/data/something/frames/212006/first.jpg", "AURORA/data/something/frames/212006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cassette tape behind mug"}]} +{"id": "000000106056", "images": ["AURORA/data/something/frames/164273/first.jpg", "AURORA/data/something/frames/164273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup over"}]} +{"id": "000000106057", "images": ["AURORA/data/something/frames/170235/first.jpg", "AURORA/data/something/frames/170235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass until it overflows"}]} +{"id": "000000106058", "images": ["AURORA/data/something/frames/70631/first.jpg", "AURORA/data/something/frames/70631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble onto paper structure so it falls down"}]} +{"id": "000000106059", "images": ["AURORA/data/something/frames/196910/first.jpg", "AURORA/data/something/frames/196910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting dinosaur with car"}]} +{"id": "000000106060", "images": ["AURORA/data/something/frames/148169/first.jpg", "AURORA/data/something/frames/148169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cross onto a container"}]} +{"id": "000000106061", "images": ["AURORA/data/something/frames/62725/first.jpg", "AURORA/data/something/frames/62725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting belt"}]} +{"id": "000000106062", "images": ["AURORA/data/something/frames/181858/first.jpg", "AURORA/data/something/frames/181858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one card of many cards on the table"}]} +{"id": "000000106063", "images": ["AURORA/data/something/frames/93923/first.jpg", "AURORA/data/something/frames/93923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a mouse with a spanner"}]} +{"id": "000000106064", "images": ["AURORA/data/something/frames/82611/first.jpg", "AURORA/data/something/frames/82611/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse up"}]} +{"id": "000000106065", "images": ["AURORA/data/something/frames/172902/first.jpg", "AURORA/data/something/frames/172902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup across a surface without it falling down"}]} +{"id": "000000106066", "images": ["AURORA/data/something/frames/108786/first.jpg", "AURORA/data/something/frames/108786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lemon into a jug"}]} +{"id": "000000106067", "images": ["AURORA/data/something/frames/130905/first.jpg", "AURORA/data/something/frames/130905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tv remote onto a slanted surface but it doesn't glide down"}]} +{"id": "000000106068", "images": ["AURORA/data/something/frames/52646/first.jpg", "AURORA/data/something/frames/52646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bubble bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106069", "images": ["AURORA/data/something/frames/118974/first.jpg", "AURORA/data/something/frames/118974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting body moisturiser bottle"}]} +{"id": "000000106070", "images": ["AURORA/data/something/frames/53974/first.jpg", "AURORA/data/something/frames/53974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000106071", "images": ["AURORA/data/something/frames/198782/first.jpg", "AURORA/data/something/frames/198782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse down"}]} +{"id": "000000106072", "images": ["AURORA/data/something/frames/34187/first.jpg", "AURORA/data/something/frames/34187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball onto glass"}]} +{"id": "000000106073", "images": ["AURORA/data/something/frames/89104/first.jpg", "AURORA/data/something/frames/89104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cough syrup off of counter"}]} +{"id": "000000106074", "images": ["AURORA/data/something/frames/171612/first.jpg", "AURORA/data/something/frames/171612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red pot holder from right to left"}]} +{"id": "000000106075", "images": ["AURORA/data/something/frames/219456/first.jpg", "AURORA/data/something/frames/219456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting lift pump up without dropdown up completely without letting it drop down"}]} +{"id": "000000106076", "images": ["AURORA/data/something/frames/38922/first.jpg", "AURORA/data/something/frames/38922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000106077", "images": ["AURORA/data/something/frames/128208/first.jpg", "AURORA/data/something/frames/128208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000106078", "images": ["AURORA/data/something/frames/3735/first.jpg", "AURORA/data/something/frames/3735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy car so that it almost falls off but doesn't"}]} +{"id": "000000106079", "images": ["AURORA/data/something/frames/132230/first.jpg", "AURORA/data/something/frames/132230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling candies onto a plate"}]} +{"id": "000000106080", "images": ["AURORA/data/something/frames/181910/first.jpg", "AURORA/data/something/frames/181910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a sphere and a stone closer to each other"}]} +{"id": "000000106081", "images": ["AURORA/data/something/frames/10659/first.jpg", "AURORA/data/something/frames/10659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking mouse up"}]} +{"id": "000000106082", "images": ["AURORA/data/something/frames/83778/first.jpg", "AURORA/data/something/frames/83778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tv remote"}]} +{"id": "000000106083", "images": ["AURORA/data/something/frames/200234/first.jpg", "AURORA/data/something/frames/200234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into cup"}]} +{"id": "000000106084", "images": ["AURORA/data/something/frames/34412/first.jpg", "AURORA/data/something/frames/34412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming plant"}]} +{"id": "000000106085", "images": ["AURORA/data/something/frames/171317/first.jpg", "AURORA/data/something/frames/171317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and ruler away from each other"}]} +{"id": "000000106086", "images": ["AURORA/data/something/frames/207671/first.jpg", "AURORA/data/something/frames/207671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting notebook with pen on it"}]} +{"id": "000000106087", "images": ["AURORA/data/something/frames/25172/first.jpg", "AURORA/data/something/frames/25172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen upright on the table, so it falls on its side"}]} +{"id": "000000106088", "images": ["AURORA/data/something/frames/89103/first.jpg", "AURORA/data/something/frames/89103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding piece of paper"}]} +{"id": "000000106089", "images": ["AURORA/data/something/frames/217749/first.jpg", "AURORA/data/something/frames/217749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cereal over"}]} +{"id": "000000106090", "images": ["AURORA/data/something/frames/39512/first.jpg", "AURORA/data/something/frames/39512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting s phone in front of key"}]} +{"id": "000000106091", "images": ["AURORA/data/something/frames/45983/first.jpg", "AURORA/data/something/frames/45983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a usb stick away from each other"}]} +{"id": "000000106092", "images": ["AURORA/data/something/frames/113384/first.jpg", "AURORA/data/something/frames/113384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping something next to something"}]} +{"id": "000000106093", "images": ["AURORA/data/something/frames/16214/first.jpg", "AURORA/data/something/frames/16214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a lighter over"}]} +{"id": "000000106094", "images": ["AURORA/data/something/frames/53680/first.jpg", "AURORA/data/something/frames/53680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plate onto coversheet"}]} +{"id": "000000106095", "images": ["AURORA/data/something/frames/198737/first.jpg", "AURORA/data/something/frames/198737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cassette pie from left to right"}]} +{"id": "000000106096", "images": ["AURORA/data/something/frames/187591/first.jpg", "AURORA/data/something/frames/187591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote next to phone"}]} +{"id": "000000106097", "images": ["AURORA/data/something/frames/179770/first.jpg", "AURORA/data/something/frames/179770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing something just a little bit"}]} +{"id": "000000106098", "images": ["AURORA/data/something/frames/33362/first.jpg", "AURORA/data/something/frames/33362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox behind a bucket lid"}]} +{"id": "000000106099", "images": ["AURORA/data/something/frames/36124/first.jpg", "AURORA/data/something/frames/36124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting something with something"}]} +{"id": "000000106100", "images": ["AURORA/data/something/frames/30316/first.jpg", "AURORA/data/something/frames/30316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pumpkin cookie from right to left"}]} +{"id": "000000106101", "images": ["AURORA/data/something/frames/19583/first.jpg", "AURORA/data/something/frames/19583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking snack from box"}]} +{"id": "000000106102", "images": ["AURORA/data/something/frames/173811/first.jpg", "AURORA/data/something/frames/173811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book"}]} +{"id": "000000106103", "images": ["AURORA/data/something/frames/138482/first.jpg", "AURORA/data/something/frames/138482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coin"}]} +{"id": "000000106104", "images": ["AURORA/data/something/frames/146988/first.jpg", "AURORA/data/something/frames/146988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping spanner behind paper clip"}]} +{"id": "000000106105", "images": ["AURORA/data/something/frames/205496/first.jpg", "AURORA/data/something/frames/205496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting lamp with double-sided adhesive tape on it"}]} +{"id": "000000106106", "images": ["AURORA/data/something/frames/100661/first.jpg", "AURORA/data/something/frames/100661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil upright on the table, so it falls on its side"}]} +{"id": "000000106107", "images": ["AURORA/data/something/frames/14842/first.jpg", "AURORA/data/something/frames/14842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle next to paper"}]} +{"id": "000000106108", "images": ["AURORA/data/something/frames/118049/first.jpg", "AURORA/data/something/frames/118049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: air hockey puck being deflected from air hockey mallet"}]} +{"id": "000000106109", "images": ["AURORA/data/something/frames/93308/first.jpg", "AURORA/data/something/frames/93308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000106110", "images": ["AURORA/data/something/frames/188413/first.jpg", "AURORA/data/something/frames/188413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into cake"}]} +{"id": "000000106111", "images": ["AURORA/data/something/frames/46057/first.jpg", "AURORA/data/something/frames/46057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting box up completely without letting it drop down"}]} +{"id": "000000106112", "images": ["AURORA/data/something/frames/65200/first.jpg", "AURORA/data/something/frames/65200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a flashlight on a surface"}]} +{"id": "000000106113", "images": ["AURORA/data/something/frames/76980/first.jpg", "AURORA/data/something/frames/76980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from toy with your camera"}]} +{"id": "000000106114", "images": ["AURORA/data/something/frames/186942/first.jpg", "AURORA/data/something/frames/186942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000106115", "images": ["AURORA/data/something/frames/157478/first.jpg", "AURORA/data/something/frames/157478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a key behind a book"}]} +{"id": "000000106116", "images": ["AURORA/data/something/frames/160765/first.jpg", "AURORA/data/something/frames/160765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking taking knife"}]} +{"id": "000000106117", "images": ["AURORA/data/something/frames/159540/first.jpg", "AURORA/data/something/frames/159540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000106118", "images": ["AURORA/data/something/frames/111995/first.jpg", "AURORA/data/something/frames/111995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a tube"}]} +{"id": "000000106119", "images": ["AURORA/data/something/frames/107701/first.jpg", "AURORA/data/something/frames/107701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into a laptop"}]} +{"id": "000000106120", "images": ["AURORA/data/something/frames/117648/first.jpg", "AURORA/data/something/frames/117648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting apple onto a glass"}]} +{"id": "000000106121", "images": ["AURORA/data/something/frames/11588/first.jpg", "AURORA/data/something/frames/11588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with spoon on it until it starts sliding down"}]} +{"id": "000000106122", "images": ["AURORA/data/something/frames/185958/first.jpg", "AURORA/data/something/frames/185958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb plug into laptop"}]} +{"id": "000000106123", "images": ["AURORA/data/something/frames/365/first.jpg", "AURORA/data/something/frames/365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000106124", "images": ["AURORA/data/something/frames/195612/first.jpg", "AURORA/data/something/frames/195612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening scissor"}]} +{"id": "000000106125", "images": ["AURORA/data/something/frames/103389/first.jpg", "AURORA/data/something/frames/103389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000106126", "images": ["AURORA/data/something/frames/10975/first.jpg", "AURORA/data/something/frames/10975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming banana bunch"}]} +{"id": "000000106127", "images": ["AURORA/data/something/frames/3540/first.jpg", "AURORA/data/something/frames/3540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) towel wet until water comes out"}]} +{"id": "000000106128", "images": ["AURORA/data/something/frames/204776/first.jpg", "AURORA/data/something/frames/204776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coins (pennies)"}]} +{"id": "000000106129", "images": ["AURORA/data/something/frames/213669/first.jpg", "AURORA/data/something/frames/213669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle into cup"}]} +{"id": "000000106130", "images": ["AURORA/data/something/frames/191031/first.jpg", "AURORA/data/something/frames/191031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a hammer and a nail closer to each other"}]} +{"id": "000000106131", "images": ["AURORA/data/something/frames/85558/first.jpg", "AURORA/data/something/frames/85558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spatula upright on the table, so it falls on its side"}]} +{"id": "000000106132", "images": ["AURORA/data/something/frames/200985/first.jpg", "AURORA/data/something/frames/200985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup away from plate"}]} +{"id": "000000106133", "images": ["AURORA/data/something/frames/154385/first.jpg", "AURORA/data/something/frames/154385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a watering can up"}]} +{"id": "000000106134", "images": ["AURORA/data/something/frames/20586/first.jpg", "AURORA/data/something/frames/20586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass flower vase until it overflows"}]} +{"id": "000000106135", "images": ["AURORA/data/something/frames/62926/first.jpg", "AURORA/data/something/frames/62926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a wooden stick until it breaks"}]} +{"id": "000000106136", "images": ["AURORA/data/something/frames/196297/first.jpg", "AURORA/data/something/frames/196297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of cup"}]} +{"id": "000000106137", "images": ["AURORA/data/something/frames/56670/first.jpg", "AURORA/data/something/frames/56670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000106138", "images": ["AURORA/data/something/frames/163607/first.jpg", "AURORA/data/something/frames/163607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting playing card with tweezers on it"}]} +{"id": "000000106139", "images": ["AURORA/data/something/frames/123124/first.jpg", "AURORA/data/something/frames/123124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a cube, revealing a toy behind"}]} +{"id": "000000106140", "images": ["AURORA/data/something/frames/71173/first.jpg", "AURORA/data/something/frames/71173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from book with your camera"}]} +{"id": "000000106141", "images": ["AURORA/data/something/frames/80513/first.jpg", "AURORA/data/something/frames/80513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving potato and potato so they pass each other"}]} +{"id": "000000106142", "images": ["AURORA/data/something/frames/52137/first.jpg", "AURORA/data/something/frames/52137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding newspaper"}]} +{"id": "000000106143", "images": ["AURORA/data/something/frames/211202/first.jpg", "AURORA/data/something/frames/211202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy away from the camera"}]} +{"id": "000000106144", "images": ["AURORA/data/something/frames/62001/first.jpg", "AURORA/data/something/frames/62001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen towards the camera"}]} +{"id": "000000106145", "images": ["AURORA/data/something/frames/135520/first.jpg", "AURORA/data/something/frames/135520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing blanket, revealing piggy bank on notebook behind"}]} +{"id": "000000106146", "images": ["AURORA/data/something/frames/180287/first.jpg", "AURORA/data/something/frames/180287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing blue ballpen from right to left"}]} +{"id": "000000106147", "images": ["AURORA/data/something/frames/55937/first.jpg", "AURORA/data/something/frames/55937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking key up"}]} +{"id": "000000106148", "images": ["AURORA/data/something/frames/124975/first.jpg", "AURORA/data/something/frames/124975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting board clip that cannot stand upright on the table, so it falls on its side"}]} +{"id": "000000106149", "images": ["AURORA/data/something/frames/185198/first.jpg", "AURORA/data/something/frames/185198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a stapler and a remote control closer to each other"}]} +{"id": "000000106150", "images": ["AURORA/data/something/frames/219139/first.jpg", "AURORA/data/something/frames/219139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fluorescent colour pen up"}]} +{"id": "000000106151", "images": ["AURORA/data/something/frames/132337/first.jpg", "AURORA/data/something/frames/132337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a wall with a stick"}]} +{"id": "000000106152", "images": ["AURORA/data/something/frames/147296/first.jpg", "AURORA/data/something/frames/147296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pencil so that it almost falls off but doesn't"}]} +{"id": "000000106153", "images": ["AURORA/data/something/frames/57826/first.jpg", "AURORA/data/something/frames/57826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a peg"}]} +{"id": "000000106154", "images": ["AURORA/data/something/frames/149698/first.jpg", "AURORA/data/something/frames/149698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping beach pebble next to plastic cup"}]} +{"id": "000000106155", "images": ["AURORA/data/something/frames/3445/first.jpg", "AURORA/data/something/frames/3445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000106156", "images": ["AURORA/data/something/frames/92579/first.jpg", "AURORA/data/something/frames/92579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tiger down"}]} +{"id": "000000106157", "images": ["AURORA/data/something/frames/168536/first.jpg", "AURORA/data/something/frames/168536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) sole of shoe"}]} +{"id": "000000106158", "images": ["AURORA/data/something/frames/173369/first.jpg", "AURORA/data/something/frames/173369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pot out of an oven"}]} +{"id": "000000106159", "images": ["AURORA/data/something/frames/106306/first.jpg", "AURORA/data/something/frames/106306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing water bottle with cell phone"}]} +{"id": "000000106160", "images": ["AURORA/data/something/frames/138238/first.jpg", "AURORA/data/something/frames/138238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) part of candle"}]} +{"id": "000000106161", "images": ["AURORA/data/something/frames/57112/first.jpg", "AURORA/data/something/frames/57112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with scissors on it"}]} +{"id": "000000106162", "images": ["AURORA/data/something/frames/35431/first.jpg", "AURORA/data/something/frames/35431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shoe on a surface"}]} +{"id": "000000106163", "images": ["AURORA/data/something/frames/180817/first.jpg", "AURORA/data/something/frames/180817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil sharpener next to a pen"}]} +{"id": "000000106164", "images": ["AURORA/data/something/frames/55848/first.jpg", "AURORA/data/something/frames/55848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a toy out of a box"}]} +{"id": "000000106165", "images": ["AURORA/data/something/frames/53018/first.jpg", "AURORA/data/something/frames/53018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000106166", "images": ["AURORA/data/something/frames/54073/first.jpg", "AURORA/data/something/frames/54073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000106167", "images": ["AURORA/data/something/frames/3619/first.jpg", "AURORA/data/something/frames/3619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black lipstick from left to right"}]} +{"id": "000000106168", "images": ["AURORA/data/something/frames/125048/first.jpg", "AURORA/data/something/frames/125048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a shampoo tube colliding with a comb and both come to a halt"}]} +{"id": "000000106169", "images": ["AURORA/data/something/frames/169342/first.jpg", "AURORA/data/something/frames/169342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cup on the table on its side, not upright"}]} +{"id": "000000106170", "images": ["AURORA/data/something/frames/54657/first.jpg", "AURORA/data/something/frames/54657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pushing plastic spray from right to left from right to left"}]} +{"id": "000000106171", "images": ["AURORA/data/something/frames/209016/first.jpg", "AURORA/data/something/frames/209016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering phone"}]} +{"id": "000000106172", "images": ["AURORA/data/something/frames/8042/first.jpg", "AURORA/data/something/frames/8042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding jeans"}]} +{"id": "000000106173", "images": ["AURORA/data/something/frames/108315/first.jpg", "AURORA/data/something/frames/108315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening laptop"}]} +{"id": "000000106174", "images": ["AURORA/data/something/frames/105737/first.jpg", "AURORA/data/something/frames/105737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pillbox off of marlboro pack"}]} +{"id": "000000106175", "images": ["AURORA/data/something/frames/118419/first.jpg", "AURORA/data/something/frames/118419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) sponge wet until water comes out"}]} +{"id": "000000106176", "images": ["AURORA/data/something/frames/37680/first.jpg", "AURORA/data/something/frames/37680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bucket until it overflows"}]} +{"id": "000000106177", "images": ["AURORA/data/something/frames/34931/first.jpg", "AURORA/data/something/frames/34931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000106178", "images": ["AURORA/data/something/frames/86032/first.jpg", "AURORA/data/something/frames/86032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass upright on the table"}]} +{"id": "000000106179", "images": ["AURORA/data/something/frames/118166/first.jpg", "AURORA/data/something/frames/118166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing heater component from right to left"}]} +{"id": "000000106180", "images": ["AURORA/data/something/frames/14056/first.jpg", "AURORA/data/something/frames/14056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing calculator from left to right"}]} +{"id": "000000106181", "images": ["AURORA/data/something/frames/155351/first.jpg", "AURORA/data/something/frames/155351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing candy wrapper into two pieces"}]} +{"id": "000000106182", "images": ["AURORA/data/something/frames/8740/first.jpg", "AURORA/data/something/frames/8740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a doll and a doll so they collide with each other"}]} +{"id": "000000106183", "images": ["AURORA/data/something/frames/140042/first.jpg", "AURORA/data/something/frames/140042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon onto a pillow"}]} +{"id": "000000106184", "images": ["AURORA/data/something/frames/62427/first.jpg", "AURORA/data/something/frames/62427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000106185", "images": ["AURORA/data/something/frames/68352/first.jpg", "AURORA/data/something/frames/68352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000106186", "images": ["AURORA/data/something/frames/11143/first.jpg", "AURORA/data/something/frames/11143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000106187", "images": ["AURORA/data/something/frames/83303/first.jpg", "AURORA/data/something/frames/83303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a monitor so that it falls over"}]} +{"id": "000000106188", "images": ["AURORA/data/something/frames/12738/first.jpg", "AURORA/data/something/frames/12738/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a wallet from right to left"}]} +{"id": "000000106189", "images": ["AURORA/data/something/frames/144470/first.jpg", "AURORA/data/something/frames/144470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle from right to left"}]} +{"id": "000000106190", "images": ["AURORA/data/something/frames/193842/first.jpg", "AURORA/data/something/frames/193842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bowl upside down"}]} +{"id": "000000106191", "images": ["AURORA/data/something/frames/218349/first.jpg", "AURORA/data/something/frames/218349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a peace of paper across a surface without it falling down"}]} +{"id": "000000106192", "images": ["AURORA/data/something/frames/123833/first.jpg", "AURORA/data/something/frames/123833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lidded cup into container"}]} +{"id": "000000106193", "images": ["AURORA/data/something/frames/169507/first.jpg", "AURORA/data/something/frames/169507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a sock"}]} +{"id": "000000106194", "images": ["AURORA/data/something/frames/111092/first.jpg", "AURORA/data/something/frames/111092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a bottle up"}]} +{"id": "000000106195", "images": ["AURORA/data/something/frames/97369/first.jpg", "AURORA/data/something/frames/97369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting postit into cup"}]} +{"id": "000000106196", "images": ["AURORA/data/something/frames/77068/first.jpg", "AURORA/data/something/frames/77068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle and mug so they collide with each other"}]} +{"id": "000000106197", "images": ["AURORA/data/something/frames/94183/first.jpg", "AURORA/data/something/frames/94183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a calculator towards the camera"}]} +{"id": "000000106198", "images": ["AURORA/data/something/frames/147600/first.jpg", "AURORA/data/something/frames/147600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a spoon into a bowl"}]} +{"id": "000000106199", "images": ["AURORA/data/something/frames/169688/first.jpg", "AURORA/data/something/frames/169688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into mattress"}]} +{"id": "000000106200", "images": ["AURORA/data/something/frames/119679/first.jpg", "AURORA/data/something/frames/119679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing salt onto plate"}]} +{"id": "000000106201", "images": ["AURORA/data/something/frames/24781/first.jpg", "AURORA/data/something/frames/24781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening side view mirror"}]} +{"id": "000000106202", "images": ["AURORA/data/something/frames/108505/first.jpg", "AURORA/data/something/frames/108505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many coins on the table"}]} +{"id": "000000106203", "images": ["AURORA/data/something/frames/190668/first.jpg", "AURORA/data/something/frames/190668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a mug with a piece of paper"}]} +{"id": "000000106204", "images": ["AURORA/data/something/frames/212697/first.jpg", "AURORA/data/something/frames/212697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with glass on it but not enough for it to slide down"}]} +{"id": "000000106205", "images": ["AURORA/data/something/frames/194731/first.jpg", "AURORA/data/something/frames/194731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming ball"}]} +{"id": "000000106206", "images": ["AURORA/data/something/frames/205710/first.jpg", "AURORA/data/something/frames/205710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plant on a surface"}]} +{"id": "000000106207", "images": ["AURORA/data/something/frames/74522/first.jpg", "AURORA/data/something/frames/74522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending green bean until it breaks"}]} +{"id": "000000106208", "images": ["AURORA/data/something/frames/102896/first.jpg", "AURORA/data/something/frames/102896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending twist tie so that it deforms"}]} +{"id": "000000106209", "images": ["AURORA/data/something/frames/64129/first.jpg", "AURORA/data/something/frames/64129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving arm of glasses"}]} +{"id": "000000106210", "images": ["AURORA/data/something/frames/187904/first.jpg", "AURORA/data/something/frames/187904/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of a bench"}]} +{"id": "000000106211", "images": ["AURORA/data/something/frames/195213/first.jpg", "AURORA/data/something/frames/195213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting mobile phone up completely without letting it drop down"}]} +{"id": "000000106212", "images": ["AURORA/data/something/frames/6107/first.jpg", "AURORA/data/something/frames/6107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming motor bike"}]} +{"id": "000000106213", "images": ["AURORA/data/something/frames/88128/first.jpg", "AURORA/data/something/frames/88128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a water bottle so that it falls over"}]} +{"id": "000000106214", "images": ["AURORA/data/something/frames/35037/first.jpg", "AURORA/data/something/frames/35037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing bag, revealing glasses behind"}]} +{"id": "000000106215", "images": ["AURORA/data/something/frames/57685/first.jpg", "AURORA/data/something/frames/57685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto sink"}]} +{"id": "000000106216", "images": ["AURORA/data/something/frames/80221/first.jpg", "AURORA/data/something/frames/80221/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000106217", "images": ["AURORA/data/something/frames/106786/first.jpg", "AURORA/data/something/frames/106786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb in front of a container"}]} +{"id": "000000106218", "images": ["AURORA/data/something/frames/11193/first.jpg", "AURORA/data/something/frames/11193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving knife down"}]} +{"id": "000000106219", "images": ["AURORA/data/something/frames/23455/first.jpg", "AURORA/data/something/frames/23455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a hose to a spirometer"}]} +{"id": "000000106220", "images": ["AURORA/data/something/frames/6010/first.jpg", "AURORA/data/something/frames/6010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cow"}]} +{"id": "000000106221", "images": ["AURORA/data/something/frames/212602/first.jpg", "AURORA/data/something/frames/212602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen in front of my leg"}]} +{"id": "000000106222", "images": ["AURORA/data/something/frames/56518/first.jpg", "AURORA/data/something/frames/56518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking helmet from ground"}]} +{"id": "000000106223", "images": ["AURORA/data/something/frames/131135/first.jpg", "AURORA/data/something/frames/131135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000106224", "images": ["AURORA/data/something/frames/2659/first.jpg", "AURORA/data/something/frames/2659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small bin off of large bin"}]} +{"id": "000000106225", "images": ["AURORA/data/something/frames/53781/first.jpg", "AURORA/data/something/frames/53781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a tiny scarf"}]} +{"id": "000000106226", "images": ["AURORA/data/something/frames/32250/first.jpg", "AURORA/data/something/frames/32250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lighter colliding with control and both come to a halt"}]} +{"id": "000000106227", "images": ["AURORA/data/something/frames/216856/first.jpg", "AURORA/data/something/frames/216856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hair clips onto black pouch"}]} +{"id": "000000106228", "images": ["AURORA/data/something/frames/160836/first.jpg", "AURORA/data/something/frames/160836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping folded napkin into cup"}]} +{"id": "000000106229", "images": ["AURORA/data/something/frames/138353/first.jpg", "AURORA/data/something/frames/138353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a small bottlr being deflected from a lock"}]} +{"id": "000000106230", "images": ["AURORA/data/something/frames/69512/first.jpg", "AURORA/data/something/frames/69512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker pen and tubelight relay on the table"}]} +{"id": "000000106231", "images": ["AURORA/data/something/frames/129246/first.jpg", "AURORA/data/something/frames/129246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tool"}]} +{"id": "000000106232", "images": ["AURORA/data/something/frames/174397/first.jpg", "AURORA/data/something/frames/174397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote and water bottle away from each other"}]} +{"id": "000000106233", "images": ["AURORA/data/something/frames/6976/first.jpg", "AURORA/data/something/frames/6976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106234", "images": ["AURORA/data/something/frames/176713/first.jpg", "AURORA/data/something/frames/176713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of glass"}]} +{"id": "000000106235", "images": ["AURORA/data/something/frames/9740/first.jpg", "AURORA/data/something/frames/9740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106236", "images": ["AURORA/data/something/frames/217353/first.jpg", "AURORA/data/something/frames/217353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening something"}]} +{"id": "000000106237", "images": ["AURORA/data/something/frames/70366/first.jpg", "AURORA/data/something/frames/70366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper weight up"}]} +{"id": "000000106238", "images": ["AURORA/data/something/frames/125970/first.jpg", "AURORA/data/something/frames/125970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box down"}]} +{"id": "000000106239", "images": ["AURORA/data/something/frames/111502/first.jpg", "AURORA/data/something/frames/111502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking diaper"}]} +{"id": "000000106240", "images": ["AURORA/data/something/frames/79041/first.jpg", "AURORA/data/something/frames/79041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding handkerchief"}]} +{"id": "000000106241", "images": ["AURORA/data/something/frames/2417/first.jpg", "AURORA/data/something/frames/2417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000106242", "images": ["AURORA/data/something/frames/145858/first.jpg", "AURORA/data/something/frames/145858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading toothpaste onto toothbrush"}]} +{"id": "000000106243", "images": ["AURORA/data/something/frames/95700/first.jpg", "AURORA/data/something/frames/95700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a shoe and a cat brush closer to each other"}]} +{"id": "000000106244", "images": ["AURORA/data/something/frames/1241/first.jpg", "AURORA/data/something/frames/1241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of candy packs"}]} +{"id": "000000106245", "images": ["AURORA/data/something/frames/183134/first.jpg", "AURORA/data/something/frames/183134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding towel"}]} +{"id": "000000106246", "images": ["AURORA/data/something/frames/115391/first.jpg", "AURORA/data/something/frames/115391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a jumper"}]} +{"id": "000000106247", "images": ["AURORA/data/something/frames/155620/first.jpg", "AURORA/data/something/frames/155620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper sheet just a little bit"}]} +{"id": "000000106248", "images": ["AURORA/data/something/frames/189493/first.jpg", "AURORA/data/something/frames/189493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of glass"}]} +{"id": "000000106249", "images": ["AURORA/data/something/frames/23123/first.jpg", "AURORA/data/something/frames/23123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a post-it to a monitor"}]} +{"id": "000000106250", "images": ["AURORA/data/something/frames/89442/first.jpg", "AURORA/data/something/frames/89442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen"}]} +{"id": "000000106251", "images": ["AURORA/data/something/frames/82690/first.jpg", "AURORA/data/something/frames/82690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flashlight and glass closer to each other"}]} +{"id": "000000106252", "images": ["AURORA/data/something/frames/212161/first.jpg", "AURORA/data/something/frames/212161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering sketch book"}]} +{"id": "000000106253", "images": ["AURORA/data/something/frames/161086/first.jpg", "AURORA/data/something/frames/161086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a monkey figure and a monkey figure closer to each other"}]} +{"id": "000000106254", "images": ["AURORA/data/something/frames/203659/first.jpg", "AURORA/data/something/frames/203659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping book over"}]} +{"id": "000000106255", "images": ["AURORA/data/something/frames/209430/first.jpg", "AURORA/data/something/frames/209430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a comb colliding with another comb and both are being deflected"}]} +{"id": "000000106256", "images": ["AURORA/data/something/frames/83567/first.jpg", "AURORA/data/something/frames/83567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour some grains into a glass, but missing so it spills next to it"}]} +{"id": "000000106257", "images": ["AURORA/data/something/frames/131849/first.jpg", "AURORA/data/something/frames/131849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and ball so they pass each other"}]} +{"id": "000000106258", "images": ["AURORA/data/something/frames/22324/first.jpg", "AURORA/data/something/frames/22324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking sponge so that it falls over"}]} +{"id": "000000106259", "images": ["AURORA/data/something/frames/75976/first.jpg", "AURORA/data/something/frames/75976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cord into power board"}]} +{"id": "000000106260", "images": ["AURORA/data/something/frames/92909/first.jpg", "AURORA/data/something/frames/92909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000106261", "images": ["AURORA/data/something/frames/216055/first.jpg", "AURORA/data/something/frames/216055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000106262", "images": ["AURORA/data/something/frames/217404/first.jpg", "AURORA/data/something/frames/217404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notebook down"}]} +{"id": "000000106263", "images": ["AURORA/data/something/frames/128813/first.jpg", "AURORA/data/something/frames/128813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing gate"}]} +{"id": "000000106264", "images": ["AURORA/data/something/frames/150380/first.jpg", "AURORA/data/something/frames/150380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000106265", "images": ["AURORA/data/something/frames/213378/first.jpg", "AURORA/data/something/frames/213378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a game out of an envelope"}]} +{"id": "000000106266", "images": ["AURORA/data/something/frames/206408/first.jpg", "AURORA/data/something/frames/206408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing bottle"}]} +{"id": "000000106267", "images": ["AURORA/data/something/frames/66269/first.jpg", "AURORA/data/something/frames/66269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cell phone with envelope"}]} +{"id": "000000106268", "images": ["AURORA/data/something/frames/138244/first.jpg", "AURORA/data/something/frames/138244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a figurine upright on the table"}]} +{"id": "000000106269", "images": ["AURORA/data/something/frames/184211/first.jpg", "AURORA/data/something/frames/184211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pencilbox"}]} +{"id": "000000106270", "images": ["AURORA/data/something/frames/32751/first.jpg", "AURORA/data/something/frames/32751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing brown bottle so that it almost falls off but doesn't"}]} +{"id": "000000106271", "images": ["AURORA/data/something/frames/175586/first.jpg", "AURORA/data/something/frames/175586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing iron onto board"}]} +{"id": "000000106272", "images": ["AURORA/data/something/frames/7627/first.jpg", "AURORA/data/something/frames/7627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ice into a cup"}]} +{"id": "000000106273", "images": ["AURORA/data/something/frames/209874/first.jpg", "AURORA/data/something/frames/209874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spanner with screw driver"}]} +{"id": "000000106274", "images": ["AURORA/data/something/frames/138894/first.jpg", "AURORA/data/something/frames/138894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000106275", "images": ["AURORA/data/something/frames/120887/first.jpg", "AURORA/data/something/frames/120887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an audio cable into headphones but pulling it right out as you remove your hand"}]} +{"id": "000000106276", "images": ["AURORA/data/something/frames/80814/first.jpg", "AURORA/data/something/frames/80814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tin into cup"}]} +{"id": "000000106277", "images": ["AURORA/data/something/frames/6973/first.jpg", "AURORA/data/something/frames/6973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coins (pennies)"}]} +{"id": "000000106278", "images": ["AURORA/data/something/frames/91802/first.jpg", "AURORA/data/something/frames/91802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a remote"}]} +{"id": "000000106279", "images": ["AURORA/data/something/frames/197389/first.jpg", "AURORA/data/something/frames/197389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a water bottle back"}]} +{"id": "000000106280", "images": ["AURORA/data/something/frames/139760/first.jpg", "AURORA/data/something/frames/139760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ring away from the earing"}]} +{"id": "000000106281", "images": ["AURORA/data/something/frames/61881/first.jpg", "AURORA/data/something/frames/61881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming bb-8 cup"}]} +{"id": "000000106282", "images": ["AURORA/data/something/frames/61982/first.jpg", "AURORA/data/something/frames/61982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass canister and glass canister closer to each other"}]} +{"id": "000000106283", "images": ["AURORA/data/something/frames/97009/first.jpg", "AURORA/data/something/frames/97009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000106284", "images": ["AURORA/data/something/frames/83304/first.jpg", "AURORA/data/something/frames/83304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into a plug"}]} +{"id": "000000106285", "images": ["AURORA/data/something/frames/46005/first.jpg", "AURORA/data/something/frames/46005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coloured pen"}]} +{"id": "000000106286", "images": ["AURORA/data/something/frames/201616/first.jpg", "AURORA/data/something/frames/201616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker"}]} +{"id": "000000106287", "images": ["AURORA/data/something/frames/181896/first.jpg", "AURORA/data/something/frames/181896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into a wall"}]} +{"id": "000000106288", "images": ["AURORA/data/something/frames/142062/first.jpg", "AURORA/data/something/frames/142062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb data cable into usb slot"}]} +{"id": "000000106289", "images": ["AURORA/data/something/frames/201509/first.jpg", "AURORA/data/something/frames/201509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book onto shoe box"}]} +{"id": "000000106290", "images": ["AURORA/data/something/frames/88103/first.jpg", "AURORA/data/something/frames/88103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a remote control and a pen away from each other"}]} +{"id": "000000106291", "images": ["AURORA/data/something/frames/169102/first.jpg", "AURORA/data/something/frames/169102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a lighter on the table on its side, not upright"}]} +{"id": "000000106292", "images": ["AURORA/data/something/frames/158390/first.jpg", "AURORA/data/something/frames/158390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting scissors up completely without letting it drop down"}]} +{"id": "000000106293", "images": ["AURORA/data/something/frames/199119/first.jpg", "AURORA/data/something/frames/199119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting beer bottle on a surface"}]} +{"id": "000000106294", "images": ["AURORA/data/something/frames/31874/first.jpg", "AURORA/data/something/frames/31874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting music player with coin on it"}]} +{"id": "000000106295", "images": ["AURORA/data/something/frames/42212/first.jpg", "AURORA/data/something/frames/42212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming picture"}]} +{"id": "000000106296", "images": ["AURORA/data/something/frames/72183/first.jpg", "AURORA/data/something/frames/72183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking file out of almirah"}]} +{"id": "000000106297", "images": ["AURORA/data/something/frames/79071/first.jpg", "AURORA/data/something/frames/79071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting off a bottle cap"}]} +{"id": "000000106298", "images": ["AURORA/data/something/frames/190027/first.jpg", "AURORA/data/something/frames/190027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb to micro-usb cord into a wall adapter"}]} +{"id": "000000106299", "images": ["AURORA/data/something/frames/79097/first.jpg", "AURORA/data/something/frames/79097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking flowers"}]} +{"id": "000000106300", "images": ["AURORA/data/something/frames/17933/first.jpg", "AURORA/data/something/frames/17933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white deodorant from left to right"}]} +{"id": "000000106301", "images": ["AURORA/data/something/frames/85715/first.jpg", "AURORA/data/something/frames/85715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin"}]} +{"id": "000000106302", "images": ["AURORA/data/something/frames/76825/first.jpg", "AURORA/data/something/frames/76825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000106303", "images": ["AURORA/data/something/frames/202581/first.jpg", "AURORA/data/something/frames/202581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000106304", "images": ["AURORA/data/something/frames/100253/first.jpg", "AURORA/data/something/frames/100253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering feuerzeug with papier"}]} +{"id": "000000106305", "images": ["AURORA/data/something/frames/67856/first.jpg", "AURORA/data/something/frames/67856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen next to a pen"}]} +{"id": "000000106306", "images": ["AURORA/data/something/frames/12139/first.jpg", "AURORA/data/something/frames/12139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering toothbrushes"}]} +{"id": "000000106307", "images": ["AURORA/data/something/frames/157935/first.jpg", "AURORA/data/something/frames/157935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fluorescent light bulb out of mug"}]} +{"id": "000000106308", "images": ["AURORA/data/something/frames/15661/first.jpg", "AURORA/data/something/frames/15661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading vegetables onto a vessel"}]} +{"id": "000000106309", "images": ["AURORA/data/something/frames/50974/first.jpg", "AURORA/data/something/frames/50974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing book into box"}]} +{"id": "000000106310", "images": ["AURORA/data/something/frames/83262/first.jpg", "AURORA/data/something/frames/83262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book and phone away from each other"}]} +{"id": "000000106311", "images": ["AURORA/data/something/frames/123836/first.jpg", "AURORA/data/something/frames/123836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a pillow into a pillow case"}]} +{"id": "000000106312", "images": ["AURORA/data/something/frames/151294/first.jpg", "AURORA/data/something/frames/151294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering keyboard with clothes"}]} +{"id": "000000106313", "images": ["AURORA/data/something/frames/78303/first.jpg", "AURORA/data/something/frames/78303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000106314", "images": ["AURORA/data/something/frames/109256/first.jpg", "AURORA/data/something/frames/109256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling colorful scarf from left to right"}]} +{"id": "000000106315", "images": ["AURORA/data/something/frames/214988/first.jpg", "AURORA/data/something/frames/214988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet from right to left"}]} +{"id": "000000106316", "images": ["AURORA/data/something/frames/182252/first.jpg", "AURORA/data/something/frames/182252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000106317", "images": ["AURORA/data/something/frames/105275/first.jpg", "AURORA/data/something/frames/105275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging stove cord into wall"}]} +{"id": "000000106318", "images": ["AURORA/data/something/frames/157211/first.jpg", "AURORA/data/something/frames/157211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from wardrobe with your camera"}]} +{"id": "000000106319", "images": ["AURORA/data/something/frames/3659/first.jpg", "AURORA/data/something/frames/3659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a toaster oven with an egg whisk"}]} +{"id": "000000106320", "images": ["AURORA/data/something/frames/196811/first.jpg", "AURORA/data/something/frames/196811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape, ball and helmet on the table"}]} +{"id": "000000106321", "images": ["AURORA/data/something/frames/139577/first.jpg", "AURORA/data/something/frames/139577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into holder"}]} +{"id": "000000106322", "images": ["AURORA/data/something/frames/141856/first.jpg", "AURORA/data/something/frames/141856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000106323", "images": ["AURORA/data/something/frames/122269/first.jpg", "AURORA/data/something/frames/122269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chocolate next to other chocolates"}]} +{"id": "000000106324", "images": ["AURORA/data/something/frames/120355/first.jpg", "AURORA/data/something/frames/120355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering battery"}]} +{"id": "000000106325", "images": ["AURORA/data/something/frames/180330/first.jpg", "AURORA/data/something/frames/180330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of laptop without letting it drop down"}]} +{"id": "000000106326", "images": ["AURORA/data/something/frames/66070/first.jpg", "AURORA/data/something/frames/66070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto envelope"}]} +{"id": "000000106327", "images": ["AURORA/data/something/frames/215876/first.jpg", "AURORA/data/something/frames/215876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping envelopes onto a chair"}]} +{"id": "000000106328", "images": ["AURORA/data/something/frames/201176/first.jpg", "AURORA/data/something/frames/201176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying pocket bible in blanket"}]} +{"id": "000000106329", "images": ["AURORA/data/something/frames/139070/first.jpg", "AURORA/data/something/frames/139070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scissors from left to right"}]} +{"id": "000000106330", "images": ["AURORA/data/something/frames/205013/first.jpg", "AURORA/data/something/frames/205013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a book from right to left"}]} +{"id": "000000106331", "images": ["AURORA/data/something/frames/141056/first.jpg", "AURORA/data/something/frames/141056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling backpack onto table"}]} +{"id": "000000106332", "images": ["AURORA/data/something/frames/192020/first.jpg", "AURORA/data/something/frames/192020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning container upside down"}]} +{"id": "000000106333", "images": ["AURORA/data/something/frames/174205/first.jpg", "AURORA/data/something/frames/174205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106334", "images": ["AURORA/data/something/frames/139317/first.jpg", "AURORA/data/something/frames/139317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and fork away from each other"}]} +{"id": "000000106335", "images": ["AURORA/data/something/frames/79473/first.jpg", "AURORA/data/something/frames/79473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing flower into two pieces"}]} +{"id": "000000106336", "images": ["AURORA/data/something/frames/2022/first.jpg", "AURORA/data/something/frames/2022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing lighter from right to left"}]} +{"id": "000000106337", "images": ["AURORA/data/something/frames/86088/first.jpg", "AURORA/data/something/frames/86088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank up"}]} +{"id": "000000106338", "images": ["AURORA/data/something/frames/157810/first.jpg", "AURORA/data/something/frames/157810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper into two pieces"}]} +{"id": "000000106339", "images": ["AURORA/data/something/frames/160076/first.jpg", "AURORA/data/something/frames/160076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening stein lid"}]} +{"id": "000000106340", "images": ["AURORA/data/something/frames/155138/first.jpg", "AURORA/data/something/frames/155138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cord into an outlet"}]} +{"id": "000000106341", "images": ["AURORA/data/something/frames/13124/first.jpg", "AURORA/data/something/frames/13124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb next to remote control"}]} +{"id": "000000106342", "images": ["AURORA/data/something/frames/121899/first.jpg", "AURORA/data/something/frames/121899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper on the edge of table so it is not supported and falls down"}]} +{"id": "000000106343", "images": ["AURORA/data/something/frames/67126/first.jpg", "AURORA/data/something/frames/67126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting nail polish cap"}]} +{"id": "000000106344", "images": ["AURORA/data/something/frames/63501/first.jpg", "AURORA/data/something/frames/63501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000106345", "images": ["AURORA/data/something/frames/87014/first.jpg", "AURORA/data/something/frames/87014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting highlighter on the edge of desk so it is not supported and falls down"}]} +{"id": "000000106346", "images": ["AURORA/data/something/frames/17220/first.jpg", "AURORA/data/something/frames/17220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: soda can being deflected from jug"}]} +{"id": "000000106347", "images": ["AURORA/data/something/frames/218819/first.jpg", "AURORA/data/something/frames/218819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink toothbrush case from right to left"}]} +{"id": "000000106348", "images": ["AURORA/data/something/frames/98671/first.jpg", "AURORA/data/something/frames/98671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of shoes so the stack collapses"}]} +{"id": "000000106349", "images": ["AURORA/data/something/frames/83415/first.jpg", "AURORA/data/something/frames/83415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone closer to glasses"}]} +{"id": "000000106350", "images": ["AURORA/data/something/frames/50434/first.jpg", "AURORA/data/something/frames/50434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into plastic case, but missing so it spills next to it"}]} +{"id": "000000106351", "images": ["AURORA/data/something/frames/217280/first.jpg", "AURORA/data/something/frames/217280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a plastic bottle upside down"}]} +{"id": "000000106352", "images": ["AURORA/data/something/frames/208665/first.jpg", "AURORA/data/something/frames/208665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stone onto stool"}]} +{"id": "000000106353", "images": ["AURORA/data/something/frames/125396/first.jpg", "AURORA/data/something/frames/125396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dirt off of a chair"}]} +{"id": "000000106354", "images": ["AURORA/data/something/frames/51189/first.jpg", "AURORA/data/something/frames/51189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glue stick from left to right"}]} +{"id": "000000106355", "images": ["AURORA/data/something/frames/126230/first.jpg", "AURORA/data/something/frames/126230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a pillow into a case"}]} +{"id": "000000106356", "images": ["AURORA/data/something/frames/118682/first.jpg", "AURORA/data/something/frames/118682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000106357", "images": ["AURORA/data/something/frames/89924/first.jpg", "AURORA/data/something/frames/89924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000106358", "images": ["AURORA/data/something/frames/47979/first.jpg", "AURORA/data/something/frames/47979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a card reader so that it falls over"}]} +{"id": "000000106359", "images": ["AURORA/data/something/frames/144763/first.jpg", "AURORA/data/something/frames/144763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting metal next to bowl"}]} +{"id": "000000106360", "images": ["AURORA/data/something/frames/175560/first.jpg", "AURORA/data/something/frames/175560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic cup across a surface without it falling down"}]} +{"id": "000000106361", "images": ["AURORA/data/something/frames/72810/first.jpg", "AURORA/data/something/frames/72810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a sheet of paper"}]} +{"id": "000000106362", "images": ["AURORA/data/something/frames/175924/first.jpg", "AURORA/data/something/frames/175924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting eyeglass case with clip on it"}]} +{"id": "000000106363", "images": ["AURORA/data/something/frames/185108/first.jpg", "AURORA/data/something/frames/185108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving marker pen away from the camera"}]} +{"id": "000000106364", "images": ["AURORA/data/something/frames/11881/first.jpg", "AURORA/data/something/frames/11881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hair bands onto red pouch"}]} +{"id": "000000106365", "images": ["AURORA/data/something/frames/60583/first.jpg", "AURORA/data/something/frames/60583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking oranges"}]} +{"id": "000000106366", "images": ["AURORA/data/something/frames/47335/first.jpg", "AURORA/data/something/frames/47335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000106367", "images": ["AURORA/data/something/frames/183131/first.jpg", "AURORA/data/something/frames/183131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green bowl from right to left"}]} +{"id": "000000106368", "images": ["AURORA/data/something/frames/167536/first.jpg", "AURORA/data/something/frames/167536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding napkin"}]} +{"id": "000000106369", "images": ["AURORA/data/something/frames/38232/first.jpg", "AURORA/data/something/frames/38232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying a clothes peg in sand"}]} +{"id": "000000106370", "images": ["AURORA/data/something/frames/139106/first.jpg", "AURORA/data/something/frames/139106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing paint bottle"}]} +{"id": "000000106371", "images": ["AURORA/data/something/frames/3629/first.jpg", "AURORA/data/something/frames/3629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming smart phone"}]} +{"id": "000000106372", "images": ["AURORA/data/something/frames/174333/first.jpg", "AURORA/data/something/frames/174333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000106373", "images": ["AURORA/data/something/frames/144303/first.jpg", "AURORA/data/something/frames/144303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) a wallet of a table"}]} +{"id": "000000106374", "images": ["AURORA/data/something/frames/62545/first.jpg", "AURORA/data/something/frames/62545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cube from plastic box"}]} +{"id": "000000106375", "images": ["AURORA/data/something/frames/44413/first.jpg", "AURORA/data/something/frames/44413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking can so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106376", "images": ["AURORA/data/something/frames/43796/first.jpg", "AURORA/data/something/frames/43796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cell phone and a pendrive closer to each other"}]} +{"id": "000000106377", "images": ["AURORA/data/something/frames/175736/first.jpg", "AURORA/data/something/frames/175736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fork and knife closer to each other"}]} +{"id": "000000106378", "images": ["AURORA/data/something/frames/44024/first.jpg", "AURORA/data/something/frames/44024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a nail cutter upright on the table, so it falls on its side"}]} +{"id": "000000106379", "images": ["AURORA/data/something/frames/157330/first.jpg", "AURORA/data/something/frames/157330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with big bottle"}]} +{"id": "000000106380", "images": ["AURORA/data/something/frames/33210/first.jpg", "AURORA/data/something/frames/33210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from plant with your camera"}]} +{"id": "000000106381", "images": ["AURORA/data/something/frames/175642/first.jpg", "AURORA/data/something/frames/175642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering spoon"}]} +{"id": "000000106382", "images": ["AURORA/data/something/frames/56241/first.jpg", "AURORA/data/something/frames/56241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into the wall"}]} +{"id": "000000106383", "images": ["AURORA/data/something/frames/201792/first.jpg", "AURORA/data/something/frames/201792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping butter off of plate"}]} +{"id": "000000106384", "images": ["AURORA/data/something/frames/105493/first.jpg", "AURORA/data/something/frames/105493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting lotion container with pen on it"}]} +{"id": "000000106385", "images": ["AURORA/data/something/frames/166294/first.jpg", "AURORA/data/something/frames/166294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery upright on the table"}]} +{"id": "000000106386", "images": ["AURORA/data/something/frames/34830/first.jpg", "AURORA/data/something/frames/34830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000106387", "images": ["AURORA/data/something/frames/181209/first.jpg", "AURORA/data/something/frames/181209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy closer to spectical box"}]} +{"id": "000000106388", "images": ["AURORA/data/something/frames/159438/first.jpg", "AURORA/data/something/frames/159438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many pens"}]} +{"id": "000000106389", "images": ["AURORA/data/something/frames/152497/first.jpg", "AURORA/data/something/frames/152497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000106390", "images": ["AURORA/data/something/frames/180089/first.jpg", "AURORA/data/something/frames/180089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone and a tablet away from each other"}]} +{"id": "000000106391", "images": ["AURORA/data/something/frames/215797/first.jpg", "AURORA/data/something/frames/215797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cat figure and a dog figure closer to each other"}]} +{"id": "000000106392", "images": ["AURORA/data/something/frames/190824/first.jpg", "AURORA/data/something/frames/190824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sugar onto table"}]} +{"id": "000000106393", "images": ["AURORA/data/something/frames/191418/first.jpg", "AURORA/data/something/frames/191418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening purse"}]} +{"id": "000000106394", "images": ["AURORA/data/something/frames/165397/first.jpg", "AURORA/data/something/frames/165397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving duster away from the camera"}]} +{"id": "000000106395", "images": ["AURORA/data/something/frames/109733/first.jpg", "AURORA/data/something/frames/109733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting oil container"}]} +{"id": "000000106396", "images": ["AURORA/data/something/frames/153700/first.jpg", "AURORA/data/something/frames/153700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bottle"}]} +{"id": "000000106397", "images": ["AURORA/data/something/frames/80885/first.jpg", "AURORA/data/something/frames/80885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a toy with a toy"}]} +{"id": "000000106398", "images": ["AURORA/data/something/frames/26852/first.jpg", "AURORA/data/something/frames/26852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving card down"}]} +{"id": "000000106399", "images": ["AURORA/data/something/frames/122418/first.jpg", "AURORA/data/something/frames/122418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottle"}]} +{"id": "000000106400", "images": ["AURORA/data/something/frames/10108/first.jpg", "AURORA/data/something/frames/10108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning turning bottles water upside down upside down"}]} +{"id": "000000106401", "images": ["AURORA/data/something/frames/176716/first.jpg", "AURORA/data/something/frames/176716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wooden stick down"}]} +{"id": "000000106402", "images": ["AURORA/data/something/frames/115011/first.jpg", "AURORA/data/something/frames/115011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from bismuth with your camera"}]} +{"id": "000000106403", "images": ["AURORA/data/something/frames/102791/first.jpg", "AURORA/data/something/frames/102791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing freezer"}]} +{"id": "000000106404", "images": ["AURORA/data/something/frames/94572/first.jpg", "AURORA/data/something/frames/94572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring sand into cup"}]} +{"id": "000000106405", "images": ["AURORA/data/something/frames/85114/first.jpg", "AURORA/data/something/frames/85114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box from right to left"}]} +{"id": "000000106406", "images": ["AURORA/data/something/frames/100452/first.jpg", "AURORA/data/something/frames/100452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 5 blocks"}]} +{"id": "000000106407", "images": ["AURORA/data/something/frames/89456/first.jpg", "AURORA/data/something/frames/89456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking plate so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106408", "images": ["AURORA/data/something/frames/91409/first.jpg", "AURORA/data/something/frames/91409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fruit"}]} +{"id": "000000106409", "images": ["AURORA/data/something/frames/73057/first.jpg", "AURORA/data/something/frames/73057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing towel into glass"}]} +{"id": "000000106410", "images": ["AURORA/data/something/frames/205113/first.jpg", "AURORA/data/something/frames/205113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from a sandbax with your camera"}]} +{"id": "000000106411", "images": ["AURORA/data/something/frames/123975/first.jpg", "AURORA/data/something/frames/123975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a sticky note to a sheet of paper"}]} +{"id": "000000106412", "images": ["AURORA/data/something/frames/50796/first.jpg", "AURORA/data/something/frames/50796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a tablet out of bottle"}]} +{"id": "000000106413", "images": ["AURORA/data/something/frames/138389/first.jpg", "AURORA/data/something/frames/138389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding towel"}]} +{"id": "000000106414", "images": ["AURORA/data/something/frames/7369/first.jpg", "AURORA/data/something/frames/7369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy so that it almost falls off but doesn't"}]} +{"id": "000000106415", "images": ["AURORA/data/something/frames/73233/first.jpg", "AURORA/data/something/frames/73233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening car door"}]} +{"id": "000000106416", "images": ["AURORA/data/something/frames/217426/first.jpg", "AURORA/data/something/frames/217426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into laptop"}]} +{"id": "000000106417", "images": ["AURORA/data/something/frames/199086/first.jpg", "AURORA/data/something/frames/199086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming hair comb"}]} +{"id": "000000106418", "images": ["AURORA/data/something/frames/103284/first.jpg", "AURORA/data/something/frames/103284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding blanket"}]} +{"id": "000000106419", "images": ["AURORA/data/something/frames/131324/first.jpg", "AURORA/data/something/frames/131324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a salt shaker so that it almost falls off but doesn't"}]} +{"id": "000000106420", "images": ["AURORA/data/something/frames/82695/first.jpg", "AURORA/data/something/frames/82695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pen up"}]} +{"id": "000000106421", "images": ["AURORA/data/something/frames/23393/first.jpg", "AURORA/data/something/frames/23393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of crocheted yarn so that it gets stretched"}]} +{"id": "000000106422", "images": ["AURORA/data/something/frames/87615/first.jpg", "AURORA/data/something/frames/87615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle down"}]} +{"id": "000000106423", "images": ["AURORA/data/something/frames/68182/first.jpg", "AURORA/data/something/frames/68182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000106424", "images": ["AURORA/data/something/frames/38808/first.jpg", "AURORA/data/something/frames/38808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a cloth"}]} +{"id": "000000106425", "images": ["AURORA/data/something/frames/140913/first.jpg", "AURORA/data/something/frames/140913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of cotton ball so that it gets stretched"}]} +{"id": "000000106426", "images": ["AURORA/data/something/frames/29698/first.jpg", "AURORA/data/something/frames/29698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a container so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106427", "images": ["AURORA/data/something/frames/43316/first.jpg", "AURORA/data/something/frames/43316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rubix cube away from the camera"}]} +{"id": "000000106428", "images": ["AURORA/data/something/frames/881/first.jpg", "AURORA/data/something/frames/881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse down"}]} +{"id": "000000106429", "images": ["AURORA/data/something/frames/127704/first.jpg", "AURORA/data/something/frames/127704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one rubber band of many similar rubber bands on the table"}]} +{"id": "000000106430", "images": ["AURORA/data/something/frames/18224/first.jpg", "AURORA/data/something/frames/18224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth rags into plastic cup"}]} +{"id": "000000106431", "images": ["AURORA/data/something/frames/64282/first.jpg", "AURORA/data/something/frames/64282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto cup"}]} +{"id": "000000106432", "images": ["AURORA/data/something/frames/114755/first.jpg", "AURORA/data/something/frames/114755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sheet up with pizza cutter"}]} +{"id": "000000106433", "images": ["AURORA/data/something/frames/76441/first.jpg", "AURORA/data/something/frames/76441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting pillow with bottle"}]} +{"id": "000000106434", "images": ["AURORA/data/something/frames/155249/first.jpg", "AURORA/data/something/frames/155249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000106435", "images": ["AURORA/data/something/frames/63281/first.jpg", "AURORA/data/something/frames/63281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000106436", "images": ["AURORA/data/something/frames/176755/first.jpg", "AURORA/data/something/frames/176755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen and a water bottle on the table"}]} +{"id": "000000106437", "images": ["AURORA/data/something/frames/102308/first.jpg", "AURORA/data/something/frames/102308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup closer to box"}]} +{"id": "000000106438", "images": ["AURORA/data/something/frames/134581/first.jpg", "AURORA/data/something/frames/134581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping glue bottle over"}]} +{"id": "000000106439", "images": ["AURORA/data/something/frames/113790/first.jpg", "AURORA/data/something/frames/113790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper and cellphone away from each other"}]} +{"id": "000000106440", "images": ["AURORA/data/something/frames/115622/first.jpg", "AURORA/data/something/frames/115622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a handkerchief so that it almost falls off but doesn't"}]} +{"id": "000000106441", "images": ["AURORA/data/something/frames/40152/first.jpg", "AURORA/data/something/frames/40152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending small envelope so that it deforms"}]} +{"id": "000000106442", "images": ["AURORA/data/something/frames/21912/first.jpg", "AURORA/data/something/frames/21912/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into box"}]} +{"id": "000000106443", "images": ["AURORA/data/something/frames/87965/first.jpg", "AURORA/data/something/frames/87965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a watch"}]} +{"id": "000000106444", "images": ["AURORA/data/something/frames/56944/first.jpg", "AURORA/data/something/frames/56944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling beads from left to right"}]} +{"id": "000000106445", "images": ["AURORA/data/something/frames/50321/first.jpg", "AURORA/data/something/frames/50321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving car key towards the camera"}]} +{"id": "000000106446", "images": ["AURORA/data/something/frames/29559/first.jpg", "AURORA/data/something/frames/29559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cube into dish"}]} +{"id": "000000106447", "images": ["AURORA/data/something/frames/189827/first.jpg", "AURORA/data/something/frames/189827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a computer mouse on the table on its side, not upright"}]} +{"id": "000000106448", "images": ["AURORA/data/something/frames/160870/first.jpg", "AURORA/data/something/frames/160870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book"}]} +{"id": "000000106449", "images": ["AURORA/data/something/frames/92356/first.jpg", "AURORA/data/something/frames/92356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting books with remote"}]} +{"id": "000000106450", "images": ["AURORA/data/something/frames/78978/first.jpg", "AURORA/data/something/frames/78978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting wall with tape"}]} +{"id": "000000106451", "images": ["AURORA/data/something/frames/183276/first.jpg", "AURORA/data/something/frames/183276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping shot glass over"}]} +{"id": "000000106452", "images": ["AURORA/data/something/frames/189156/first.jpg", "AURORA/data/something/frames/189156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing handkerchief into box"}]} +{"id": "000000106453", "images": ["AURORA/data/something/frames/28947/first.jpg", "AURORA/data/something/frames/28947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing gift into of plastic egg"}]} +{"id": "000000106454", "images": ["AURORA/data/something/frames/123/first.jpg", "AURORA/data/something/frames/123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking brush up"}]} +{"id": "000000106455", "images": ["AURORA/data/something/frames/186095/first.jpg", "AURORA/data/something/frames/186095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of marker pen so that it separates into two pieces"}]} +{"id": "000000106456", "images": ["AURORA/data/something/frames/31780/first.jpg", "AURORA/data/something/frames/31780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from left to right"}]} +{"id": "000000106457", "images": ["AURORA/data/something/frames/16516/first.jpg", "AURORA/data/something/frames/16516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup upright on the table"}]} +{"id": "000000106458", "images": ["AURORA/data/something/frames/132288/first.jpg", "AURORA/data/something/frames/132288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a screwdriver without letting it drop down"}]} +{"id": "000000106459", "images": ["AURORA/data/something/frames/92194/first.jpg", "AURORA/data/something/frames/92194/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a can upside down"}]} +{"id": "000000106460", "images": ["AURORA/data/something/frames/112017/first.jpg", "AURORA/data/something/frames/112017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into a drawer"}]} +{"id": "000000106461", "images": ["AURORA/data/something/frames/205255/first.jpg", "AURORA/data/something/frames/205255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting backpack with boot"}]} +{"id": "000000106462", "images": ["AURORA/data/something/frames/182072/first.jpg", "AURORA/data/something/frames/182072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000106463", "images": ["AURORA/data/something/frames/52020/first.jpg", "AURORA/data/something/frames/52020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking wallet out of trash can"}]} +{"id": "000000106464", "images": ["AURORA/data/something/frames/97774/first.jpg", "AURORA/data/something/frames/97774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying something on the table on its side, not upright"}]} +{"id": "000000106465", "images": ["AURORA/data/something/frames/53698/first.jpg", "AURORA/data/something/frames/53698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming battery"}]} +{"id": "000000106466", "images": ["AURORA/data/something/frames/150814/first.jpg", "AURORA/data/something/frames/150814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming wood carving"}]} +{"id": "000000106467", "images": ["AURORA/data/something/frames/151351/first.jpg", "AURORA/data/something/frames/151351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling four blocks up"}]} +{"id": "000000106468", "images": ["AURORA/data/something/frames/124129/first.jpg", "AURORA/data/something/frames/124129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mallet underneath a chair"}]} +{"id": "000000106469", "images": ["AURORA/data/something/frames/73868/first.jpg", "AURORA/data/something/frames/73868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a tissue into a cup"}]} +{"id": "000000106470", "images": ["AURORA/data/something/frames/187593/first.jpg", "AURORA/data/something/frames/187593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall but pulling it right out as you remove your hand"}]} +{"id": "000000106471", "images": ["AURORA/data/something/frames/207992/first.jpg", "AURORA/data/something/frames/207992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106472", "images": ["AURORA/data/something/frames/105620/first.jpg", "AURORA/data/something/frames/105620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a coin from behind of a padlock"}]} +{"id": "000000106473", "images": ["AURORA/data/something/frames/52271/first.jpg", "AURORA/data/something/frames/52271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering phone"}]} +{"id": "000000106474", "images": ["AURORA/data/something/frames/121692/first.jpg", "AURORA/data/something/frames/121692/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coffee into bowl"}]} +{"id": "000000106475", "images": ["AURORA/data/something/frames/24136/first.jpg", "AURORA/data/something/frames/24136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting box with marker on it"}]} +{"id": "000000106476", "images": ["AURORA/data/something/frames/112584/first.jpg", "AURORA/data/something/frames/112584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cucumber down"}]} +{"id": "000000106477", "images": ["AURORA/data/something/frames/220500/first.jpg", "AURORA/data/something/frames/220500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into power strip but pulling it right out as you remove your hand"}]} +{"id": "000000106478", "images": ["AURORA/data/something/frames/56863/first.jpg", "AURORA/data/something/frames/56863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pendrive next to mug"}]} +{"id": "000000106479", "images": ["AURORA/data/something/frames/176076/first.jpg", "AURORA/data/something/frames/176076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106480", "images": ["AURORA/data/something/frames/99295/first.jpg", "AURORA/data/something/frames/99295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a matchbox upright on the table"}]} +{"id": "000000106481", "images": ["AURORA/data/something/frames/139036/first.jpg", "AURORA/data/something/frames/139036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a rock with other rocks"}]} +{"id": "000000106482", "images": ["AURORA/data/something/frames/74211/first.jpg", "AURORA/data/something/frames/74211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 toy wheels"}]} +{"id": "000000106483", "images": ["AURORA/data/something/frames/115291/first.jpg", "AURORA/data/something/frames/115291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottle cap"}]} +{"id": "000000106484", "images": ["AURORA/data/something/frames/81572/first.jpg", "AURORA/data/something/frames/81572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a mug on it"}]} +{"id": "000000106485", "images": ["AURORA/data/something/frames/114381/first.jpg", "AURORA/data/something/frames/114381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000106486", "images": ["AURORA/data/something/frames/94617/first.jpg", "AURORA/data/something/frames/94617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing the drawer from left to right"}]} +{"id": "000000106487", "images": ["AURORA/data/something/frames/3115/first.jpg", "AURORA/data/something/frames/3115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000106488", "images": ["AURORA/data/something/frames/79373/first.jpg", "AURORA/data/something/frames/79373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something onto something"}]} +{"id": "000000106489", "images": ["AURORA/data/something/frames/146181/first.jpg", "AURORA/data/something/frames/146181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving oil bottle up"}]} +{"id": "000000106490", "images": ["AURORA/data/something/frames/52432/first.jpg", "AURORA/data/something/frames/52432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering glass with plate"}]} +{"id": "000000106491", "images": ["AURORA/data/something/frames/70882/first.jpg", "AURORA/data/something/frames/70882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting setquare next to mug"}]} +{"id": "000000106492", "images": ["AURORA/data/something/frames/10454/first.jpg", "AURORA/data/something/frames/10454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup until it overflows"}]} +{"id": "000000106493", "images": ["AURORA/data/something/frames/215234/first.jpg", "AURORA/data/something/frames/215234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a bottle from left to right"}]} +{"id": "000000106494", "images": ["AURORA/data/something/frames/171041/first.jpg", "AURORA/data/something/frames/171041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box behind bottle"}]} +{"id": "000000106495", "images": ["AURORA/data/something/frames/178993/first.jpg", "AURORA/data/something/frames/178993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying lighter in soil"}]} +{"id": "000000106496", "images": ["AURORA/data/something/frames/94423/first.jpg", "AURORA/data/something/frames/94423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coaster across a surface without it falling down"}]} +{"id": "000000106497", "images": ["AURORA/data/something/frames/16887/first.jpg", "AURORA/data/something/frames/16887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bar soap from left to right"}]} +{"id": "000000106498", "images": ["AURORA/data/something/frames/104053/first.jpg", "AURORA/data/something/frames/104053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting my phone with a spoon"}]} +{"id": "000000106499", "images": ["AURORA/data/something/frames/185533/first.jpg", "AURORA/data/something/frames/185533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding newspaper"}]} +{"id": "000000106500", "images": ["AURORA/data/something/frames/53062/first.jpg", "AURORA/data/something/frames/53062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000106501", "images": ["AURORA/data/something/frames/106101/first.jpg", "AURORA/data/something/frames/106101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a t-shirt to laundry thread"}]} +{"id": "000000106502", "images": ["AURORA/data/something/frames/120242/first.jpg", "AURORA/data/something/frames/120242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a ball out of cardboard box"}]} +{"id": "000000106503", "images": ["AURORA/data/something/frames/20994/first.jpg", "AURORA/data/something/frames/20994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lip gloss and coffee mug closer to each other"}]} +{"id": "000000106504", "images": ["AURORA/data/something/frames/73054/first.jpg", "AURORA/data/something/frames/73054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cell phone and a pendrive away from each other"}]} +{"id": "000000106505", "images": ["AURORA/data/something/frames/42151/first.jpg", "AURORA/data/something/frames/42151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass until it overflows"}]} +{"id": "000000106506", "images": ["AURORA/data/something/frames/92701/first.jpg", "AURORA/data/something/frames/92701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key with pen"}]} +{"id": "000000106507", "images": ["AURORA/data/something/frames/171173/first.jpg", "AURORA/data/something/frames/171173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a shoe next to a box"}]} +{"id": "000000106508", "images": ["AURORA/data/something/frames/14519/first.jpg", "AURORA/data/something/frames/14519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a toy car from right to left"}]} +{"id": "000000106509", "images": ["AURORA/data/something/frames/159433/first.jpg", "AURORA/data/something/frames/159433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling paper out of rift"}]} +{"id": "000000106510", "images": ["AURORA/data/something/frames/127954/first.jpg", "AURORA/data/something/frames/127954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000106511", "images": ["AURORA/data/something/frames/58108/first.jpg", "AURORA/data/something/frames/58108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching toothpaste tube with your camera"}]} +{"id": "000000106512", "images": ["AURORA/data/something/frames/138724/first.jpg", "AURORA/data/something/frames/138724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping dog food up with a cup"}]} +{"id": "000000106513", "images": ["AURORA/data/something/frames/97015/first.jpg", "AURORA/data/something/frames/97015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy tiger so that it almost falls off but doesn't"}]} +{"id": "000000106514", "images": ["AURORA/data/something/frames/168066/first.jpg", "AURORA/data/something/frames/168066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hairclip next to piggybank"}]} +{"id": "000000106515", "images": ["AURORA/data/something/frames/25092/first.jpg", "AURORA/data/something/frames/25092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil up"}]} +{"id": "000000106516", "images": ["AURORA/data/something/frames/181078/first.jpg", "AURORA/data/something/frames/181078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box with a pencil"}]} +{"id": "000000106517", "images": ["AURORA/data/something/frames/191177/first.jpg", "AURORA/data/something/frames/191177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking world globe up"}]} +{"id": "000000106518", "images": ["AURORA/data/something/frames/84959/first.jpg", "AURORA/data/something/frames/84959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ribbon up"}]} +{"id": "000000106519", "images": ["AURORA/data/something/frames/111324/first.jpg", "AURORA/data/something/frames/111324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000106520", "images": ["AURORA/data/something/frames/112667/first.jpg", "AURORA/data/something/frames/112667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a piece of cloth"}]} +{"id": "000000106521", "images": ["AURORA/data/something/frames/114731/first.jpg", "AURORA/data/something/frames/114731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the handle of the purse"}]} +{"id": "000000106522", "images": ["AURORA/data/something/frames/77481/first.jpg", "AURORA/data/something/frames/77481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning body cream upside down"}]} +{"id": "000000106523", "images": ["AURORA/data/something/frames/53960/first.jpg", "AURORA/data/something/frames/53960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen up"}]} +{"id": "000000106524", "images": ["AURORA/data/something/frames/181149/first.jpg", "AURORA/data/something/frames/181149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a headphone plug into a jack"}]} +{"id": "000000106525", "images": ["AURORA/data/something/frames/89731/first.jpg", "AURORA/data/something/frames/89731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking clip so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106526", "images": ["AURORA/data/something/frames/9644/first.jpg", "AURORA/data/something/frames/9644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving matchbox down"}]} +{"id": "000000106527", "images": ["AURORA/data/something/frames/143847/first.jpg", "AURORA/data/something/frames/143847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shirt"}]} +{"id": "000000106528", "images": ["AURORA/data/something/frames/16722/first.jpg", "AURORA/data/something/frames/16722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling starburst up"}]} +{"id": "000000106529", "images": ["AURORA/data/something/frames/41807/first.jpg", "AURORA/data/something/frames/41807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plate closer to toy car"}]} +{"id": "000000106530", "images": ["AURORA/data/something/frames/148261/first.jpg", "AURORA/data/something/frames/148261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cord to phone"}]} +{"id": "000000106531", "images": ["AURORA/data/something/frames/47439/first.jpg", "AURORA/data/something/frames/47439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a cover colliding with pen and both come to a halt"}]} +{"id": "000000106532", "images": ["AURORA/data/something/frames/176261/first.jpg", "AURORA/data/something/frames/176261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking comb out of mug"}]} +{"id": "000000106533", "images": ["AURORA/data/something/frames/25599/first.jpg", "AURORA/data/something/frames/25599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wheel of bike"}]} +{"id": "000000106534", "images": ["AURORA/data/something/frames/122584/first.jpg", "AURORA/data/something/frames/122584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a cooking pan"}]} +{"id": "000000106535", "images": ["AURORA/data/something/frames/100906/first.jpg", "AURORA/data/something/frames/100906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping medicine bottle onto a medicine bottle"}]} +{"id": "000000106536", "images": ["AURORA/data/something/frames/99226/first.jpg", "AURORA/data/something/frames/99226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil sharpner away from pen"}]} +{"id": "000000106537", "images": ["AURORA/data/something/frames/207527/first.jpg", "AURORA/data/something/frames/207527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a book"}]} +{"id": "000000106538", "images": ["AURORA/data/something/frames/121842/first.jpg", "AURORA/data/something/frames/121842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 laptop onto chair"}]} +{"id": "000000106539", "images": ["AURORA/data/something/frames/74886/first.jpg", "AURORA/data/something/frames/74886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall"}]} +{"id": "000000106540", "images": ["AURORA/data/something/frames/149622/first.jpg", "AURORA/data/something/frames/149622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of cup"}]} +{"id": "000000106541", "images": ["AURORA/data/something/frames/23178/first.jpg", "AURORA/data/something/frames/23178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling small book from left to right"}]} +{"id": "000000106542", "images": ["AURORA/data/something/frames/156427/first.jpg", "AURORA/data/something/frames/156427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000106543", "images": ["AURORA/data/something/frames/192598/first.jpg", "AURORA/data/something/frames/192598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with glasses on it"}]} +{"id": "000000106544", "images": ["AURORA/data/something/frames/50045/first.jpg", "AURORA/data/something/frames/50045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing the book, revealing the key behind"}]} +{"id": "000000106545", "images": ["AURORA/data/something/frames/131362/first.jpg", "AURORA/data/something/frames/131362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000106546", "images": ["AURORA/data/something/frames/40547/first.jpg", "AURORA/data/something/frames/40547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming blanket"}]} +{"id": "000000106547", "images": ["AURORA/data/something/frames/43039/first.jpg", "AURORA/data/something/frames/43039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking three books"}]} +{"id": "000000106548", "images": ["AURORA/data/something/frames/142742/first.jpg", "AURORA/data/something/frames/142742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding sheet of paper"}]} +{"id": "000000106549", "images": ["AURORA/data/something/frames/62212/first.jpg", "AURORA/data/something/frames/62212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger away from toy"}]} +{"id": "000000106550", "images": ["AURORA/data/something/frames/81447/first.jpg", "AURORA/data/something/frames/81447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning something upside down"}]} +{"id": "000000106551", "images": ["AURORA/data/something/frames/77720/first.jpg", "AURORA/data/something/frames/77720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery closer to pebble"}]} +{"id": "000000106552", "images": ["AURORA/data/something/frames/113084/first.jpg", "AURORA/data/something/frames/113084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tablet with mouse on it"}]} +{"id": "000000106553", "images": ["AURORA/data/something/frames/129871/first.jpg", "AURORA/data/something/frames/129871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106554", "images": ["AURORA/data/something/frames/4316/first.jpg", "AURORA/data/something/frames/4316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cassette pie from left to right"}]} +{"id": "000000106555", "images": ["AURORA/data/something/frames/148516/first.jpg", "AURORA/data/something/frames/148516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a slice of bread until it breaks"}]} +{"id": "000000106556", "images": ["AURORA/data/something/frames/61921/first.jpg", "AURORA/data/something/frames/61921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling coffee cup from left to right"}]} +{"id": "000000106557", "images": ["AURORA/data/something/frames/134199/first.jpg", "AURORA/data/something/frames/134199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hairclip up"}]} +{"id": "000000106558", "images": ["AURORA/data/something/frames/131644/first.jpg", "AURORA/data/something/frames/131644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing notepad into two pieces"}]} +{"id": "000000106559", "images": ["AURORA/data/something/frames/214887/first.jpg", "AURORA/data/something/frames/214887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spice from left to right"}]} +{"id": "000000106560", "images": ["AURORA/data/something/frames/148472/first.jpg", "AURORA/data/something/frames/148472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling tablet onto mirror"}]} +{"id": "000000106561", "images": ["AURORA/data/something/frames/34157/first.jpg", "AURORA/data/something/frames/34157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cup on the table on its side, not upright"}]} +{"id": "000000106562", "images": ["AURORA/data/something/frames/11274/first.jpg", "AURORA/data/something/frames/11274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) ear of coffeecup"}]} +{"id": "000000106563", "images": ["AURORA/data/something/frames/200926/first.jpg", "AURORA/data/something/frames/200926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from metal wall art with your camera"}]} +{"id": "000000106564", "images": ["AURORA/data/something/frames/120798/first.jpg", "AURORA/data/something/frames/120798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a battery upright on the table"}]} +{"id": "000000106565", "images": ["AURORA/data/something/frames/93464/first.jpg", "AURORA/data/something/frames/93464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into port but pulling it right out as you remove your hand"}]} +{"id": "000000106566", "images": ["AURORA/data/something/frames/36819/first.jpg", "AURORA/data/something/frames/36819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000106567", "images": ["AURORA/data/something/frames/55817/first.jpg", "AURORA/data/something/frames/55817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing envelope just a little bit"}]} +{"id": "000000106568", "images": ["AURORA/data/something/frames/23745/first.jpg", "AURORA/data/something/frames/23745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a wallet behind a bowl"}]} +{"id": "000000106569", "images": ["AURORA/data/something/frames/93346/first.jpg", "AURORA/data/something/frames/93346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cigarette lighter with pencil"}]} +{"id": "000000106570", "images": ["AURORA/data/something/frames/134497/first.jpg", "AURORA/data/something/frames/134497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into laptop"}]} +{"id": "000000106571", "images": ["AURORA/data/something/frames/173566/first.jpg", "AURORA/data/something/frames/173566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning perfume bottle upside down"}]} +{"id": "000000106572", "images": ["AURORA/data/something/frames/207901/first.jpg", "AURORA/data/something/frames/207901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting container with pen"}]} +{"id": "000000106573", "images": ["AURORA/data/something/frames/59905/first.jpg", "AURORA/data/something/frames/59905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting orange onto notebook so it falls down"}]} +{"id": "000000106574", "images": ["AURORA/data/something/frames/187446/first.jpg", "AURORA/data/something/frames/187446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing study table from left to right"}]} +{"id": "000000106575", "images": ["AURORA/data/something/frames/31006/first.jpg", "AURORA/data/something/frames/31006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a toy cradle upside down"}]} +{"id": "000000106576", "images": ["AURORA/data/something/frames/96478/first.jpg", "AURORA/data/something/frames/96478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding pillowcase"}]} +{"id": "000000106577", "images": ["AURORA/data/something/frames/130128/first.jpg", "AURORA/data/something/frames/130128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000106578", "images": ["AURORA/data/something/frames/16152/first.jpg", "AURORA/data/something/frames/16152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging coin out of flour"}]} +{"id": "000000106579", "images": ["AURORA/data/something/frames/97671/first.jpg", "AURORA/data/something/frames/97671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning book upside down"}]} +{"id": "000000106580", "images": ["AURORA/data/something/frames/86389/first.jpg", "AURORA/data/something/frames/86389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tube into bowl"}]} +{"id": "000000106581", "images": ["AURORA/data/something/frames/207707/first.jpg", "AURORA/data/something/frames/207707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto sink surface"}]} +{"id": "000000106582", "images": ["AURORA/data/something/frames/163709/first.jpg", "AURORA/data/something/frames/163709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging wall charger into home outlet"}]} +{"id": "000000106583", "images": ["AURORA/data/something/frames/203364/first.jpg", "AURORA/data/something/frames/203364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker onto table"}]} +{"id": "000000106584", "images": ["AURORA/data/something/frames/69101/first.jpg", "AURORA/data/something/frames/69101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling fingernail clippers from left to right"}]} +{"id": "000000106585", "images": ["AURORA/data/something/frames/131418/first.jpg", "AURORA/data/something/frames/131418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming christmas tree"}]} +{"id": "000000106586", "images": ["AURORA/data/something/frames/204370/first.jpg", "AURORA/data/something/frames/204370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring grains into a plate"}]} +{"id": "000000106587", "images": ["AURORA/data/something/frames/45558/first.jpg", "AURORA/data/something/frames/45558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching pink water bottle with your camera"}]} +{"id": "000000106588", "images": ["AURORA/data/something/frames/166929/first.jpg", "AURORA/data/something/frames/166929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming wheel chair"}]} +{"id": "000000106589", "images": ["AURORA/data/something/frames/140485/first.jpg", "AURORA/data/something/frames/140485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting suncreen, a stuffed animal and fake flowers on the table"}]} +{"id": "000000106590", "images": ["AURORA/data/something/frames/45463/first.jpg", "AURORA/data/something/frames/45463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote with pillow"}]} +{"id": "000000106591", "images": ["AURORA/data/something/frames/212684/first.jpg", "AURORA/data/something/frames/212684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 sheets of paper onto an envelope"}]} +{"id": "000000106592", "images": ["AURORA/data/something/frames/63801/first.jpg", "AURORA/data/something/frames/63801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking water bottle from table"}]} +{"id": "000000106593", "images": ["AURORA/data/something/frames/168963/first.jpg", "AURORA/data/something/frames/168963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a lid up completely without letting it drop down"}]} +{"id": "000000106594", "images": ["AURORA/data/something/frames/211057/first.jpg", "AURORA/data/something/frames/211057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering blue spoon"}]} +{"id": "000000106595", "images": ["AURORA/data/something/frames/187316/first.jpg", "AURORA/data/something/frames/187316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soap closer to soap"}]} +{"id": "000000106596", "images": ["AURORA/data/something/frames/59378/first.jpg", "AURORA/data/something/frames/59378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing action camera from left to right"}]} +{"id": "000000106597", "images": ["AURORA/data/something/frames/207085/first.jpg", "AURORA/data/something/frames/207085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a bottle up"}]} +{"id": "000000106598", "images": ["AURORA/data/something/frames/46863/first.jpg", "AURORA/data/something/frames/46863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with paper on it but not enough for it to slide down"}]} +{"id": "000000106599", "images": ["AURORA/data/something/frames/58248/first.jpg", "AURORA/data/something/frames/58248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box upright on the table"}]} +{"id": "000000106600", "images": ["AURORA/data/something/frames/34063/first.jpg", "AURORA/data/something/frames/34063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a chair from left to right"}]} +{"id": "000000106601", "images": ["AURORA/data/something/frames/107918/first.jpg", "AURORA/data/something/frames/107918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler behind comb"}]} +{"id": "000000106602", "images": ["AURORA/data/something/frames/142422/first.jpg", "AURORA/data/something/frames/142422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into tumbler until it overflows"}]} +{"id": "000000106603", "images": ["AURORA/data/something/frames/178608/first.jpg", "AURORA/data/something/frames/178608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000106604", "images": ["AURORA/data/something/frames/141418/first.jpg", "AURORA/data/something/frames/141418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pen with a sweater"}]} +{"id": "000000106605", "images": ["AURORA/data/something/frames/40960/first.jpg", "AURORA/data/something/frames/40960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of plastic boxes so the stack collapses"}]} +{"id": "000000106606", "images": ["AURORA/data/something/frames/206599/first.jpg", "AURORA/data/something/frames/206599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into glass, but missing so it spills next to it"}]} +{"id": "000000106607", "images": ["AURORA/data/something/frames/65977/first.jpg", "AURORA/data/something/frames/65977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking jar so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106608", "images": ["AURORA/data/something/frames/99091/first.jpg", "AURORA/data/something/frames/99091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors and scissors closer to each other"}]} +{"id": "000000106609", "images": ["AURORA/data/something/frames/70159/first.jpg", "AURORA/data/something/frames/70159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup"}]} +{"id": "000000106610", "images": ["AURORA/data/something/frames/109071/first.jpg", "AURORA/data/something/frames/109071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 breads onto plate"}]} +{"id": "000000106611", "images": ["AURORA/data/something/frames/178872/first.jpg", "AURORA/data/something/frames/178872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper of pile of papers"}]} +{"id": "000000106612", "images": ["AURORA/data/something/frames/137184/first.jpg", "AURORA/data/something/frames/137184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a glass"}]} +{"id": "000000106613", "images": ["AURORA/data/something/frames/8827/first.jpg", "AURORA/data/something/frames/8827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper"}]} +{"id": "000000106614", "images": ["AURORA/data/something/frames/11335/first.jpg", "AURORA/data/something/frames/11335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a potholder so that it almost falls off but doesn't"}]} +{"id": "000000106615", "images": ["AURORA/data/something/frames/23262/first.jpg", "AURORA/data/something/frames/23262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into bag"}]} +{"id": "000000106616", "images": ["AURORA/data/something/frames/139537/first.jpg", "AURORA/data/something/frames/139537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a box with a cottonball on it"}]} +{"id": "000000106617", "images": ["AURORA/data/something/frames/36775/first.jpg", "AURORA/data/something/frames/36775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing carton"}]} +{"id": "000000106618", "images": ["AURORA/data/something/frames/180081/first.jpg", "AURORA/data/something/frames/180081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon into a cup"}]} +{"id": "000000106619", "images": ["AURORA/data/something/frames/93609/first.jpg", "AURORA/data/something/frames/93609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox onto a plate"}]} +{"id": "000000106620", "images": ["AURORA/data/something/frames/144967/first.jpg", "AURORA/data/something/frames/144967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping juice off of table"}]} +{"id": "000000106621", "images": ["AURORA/data/something/frames/39036/first.jpg", "AURORA/data/something/frames/39036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of clementines so the stack collapses"}]} +{"id": "000000106622", "images": ["AURORA/data/something/frames/9338/first.jpg", "AURORA/data/something/frames/9338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000106623", "images": ["AURORA/data/something/frames/63057/first.jpg", "AURORA/data/something/frames/63057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottle from bench"}]} +{"id": "000000106624", "images": ["AURORA/data/something/frames/176392/first.jpg", "AURORA/data/something/frames/176392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle"}]} +{"id": "000000106625", "images": ["AURORA/data/something/frames/141612/first.jpg", "AURORA/data/something/frames/141612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a toy into a bag"}]} +{"id": "000000106626", "images": ["AURORA/data/something/frames/29307/first.jpg", "AURORA/data/something/frames/29307/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pen"}]} +{"id": "000000106627", "images": ["AURORA/data/something/frames/208462/first.jpg", "AURORA/data/something/frames/208462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of spoon"}]} +{"id": "000000106628", "images": ["AURORA/data/something/frames/75993/first.jpg", "AURORA/data/something/frames/75993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting green bowl on a surface"}]} +{"id": "000000106629", "images": ["AURORA/data/something/frames/130409/first.jpg", "AURORA/data/something/frames/130409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin into a bowl"}]} +{"id": "000000106630", "images": ["AURORA/data/something/frames/205323/first.jpg", "AURORA/data/something/frames/205323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping water bottle with water over, so water falls out"}]} +{"id": "000000106631", "images": ["AURORA/data/something/frames/133940/first.jpg", "AURORA/data/something/frames/133940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a power cord into a laptop but pulling it right out as you remove your hand"}]} +{"id": "000000106632", "images": ["AURORA/data/something/frames/208307/first.jpg", "AURORA/data/something/frames/208307/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red spoon and battery on the table"}]} +{"id": "000000106633", "images": ["AURORA/data/something/frames/38329/first.jpg", "AURORA/data/something/frames/38329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106634", "images": ["AURORA/data/something/frames/15503/first.jpg", "AURORA/data/something/frames/15503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting badminton bat upright on the table, so it falls on its side"}]} +{"id": "000000106635", "images": ["AURORA/data/something/frames/101726/first.jpg", "AURORA/data/something/frames/101726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 plates"}]} +{"id": "000000106636", "images": ["AURORA/data/something/frames/64623/first.jpg", "AURORA/data/something/frames/64623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball up"}]} +{"id": "000000106637", "images": ["AURORA/data/something/frames/85026/first.jpg", "AURORA/data/something/frames/85026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a peanut butter jar upside down"}]} +{"id": "000000106638", "images": ["AURORA/data/something/frames/91836/first.jpg", "AURORA/data/something/frames/91836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of pen without letting it drop down"}]} +{"id": "000000106639", "images": ["AURORA/data/something/frames/125220/first.jpg", "AURORA/data/something/frames/125220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto sink"}]} +{"id": "000000106640", "images": ["AURORA/data/something/frames/147016/first.jpg", "AURORA/data/something/frames/147016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pear from right to left"}]} +{"id": "000000106641", "images": ["AURORA/data/something/frames/101653/first.jpg", "AURORA/data/something/frames/101653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plastic cap out of glass"}]} +{"id": "000000106642", "images": ["AURORA/data/something/frames/11977/first.jpg", "AURORA/data/something/frames/11977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a drumstick without letting it drop down"}]} +{"id": "000000106643", "images": ["AURORA/data/something/frames/218573/first.jpg", "AURORA/data/something/frames/218573/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000106644", "images": ["AURORA/data/something/frames/135434/first.jpg", "AURORA/data/something/frames/135434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a circuit"}]} +{"id": "000000106645", "images": ["AURORA/data/something/frames/121727/first.jpg", "AURORA/data/something/frames/121727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a tissue"}]} +{"id": "000000106646", "images": ["AURORA/data/something/frames/55262/first.jpg", "AURORA/data/something/frames/55262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil and snap off blade closer to each other"}]} +{"id": "000000106647", "images": ["AURORA/data/something/frames/74538/first.jpg", "AURORA/data/something/frames/74538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000106648", "images": ["AURORA/data/something/frames/174830/first.jpg", "AURORA/data/something/frames/174830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle and box on the table"}]} +{"id": "000000106649", "images": ["AURORA/data/something/frames/149422/first.jpg", "AURORA/data/something/frames/149422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000106650", "images": ["AURORA/data/something/frames/142478/first.jpg", "AURORA/data/something/frames/142478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug and candle so they pass each other"}]} +{"id": "000000106651", "images": ["AURORA/data/something/frames/34199/first.jpg", "AURORA/data/something/frames/34199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a wine glass upside down"}]} +{"id": "000000106652", "images": ["AURORA/data/something/frames/79548/first.jpg", "AURORA/data/something/frames/79548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a flyer just a little bit"}]} +{"id": "000000106653", "images": ["AURORA/data/something/frames/5810/first.jpg", "AURORA/data/something/frames/5810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a napkin out of container"}]} +{"id": "000000106654", "images": ["AURORA/data/something/frames/157563/first.jpg", "AURORA/data/something/frames/157563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse and remote away from each other"}]} +{"id": "000000106655", "images": ["AURORA/data/something/frames/34926/first.jpg", "AURORA/data/something/frames/34926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pair of scissors"}]} +{"id": "000000106656", "images": ["AURORA/data/something/frames/200748/first.jpg", "AURORA/data/something/frames/200748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring suji into bowl"}]} +{"id": "000000106657", "images": ["AURORA/data/something/frames/20466/first.jpg", "AURORA/data/something/frames/20466/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106658", "images": ["AURORA/data/something/frames/131308/first.jpg", "AURORA/data/something/frames/131308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving make up closer to a soda"}]} +{"id": "000000106659", "images": ["AURORA/data/something/frames/61617/first.jpg", "AURORA/data/something/frames/61617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a card so that it almost falls off but doesn't"}]} +{"id": "000000106660", "images": ["AURORA/data/something/frames/213276/first.jpg", "AURORA/data/something/frames/213276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting empty treat bar wrap on a surface"}]} +{"id": "000000106661", "images": ["AURORA/data/something/frames/75931/first.jpg", "AURORA/data/something/frames/75931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000106662", "images": ["AURORA/data/something/frames/175595/first.jpg", "AURORA/data/something/frames/175595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pillow up"}]} +{"id": "000000106663", "images": ["AURORA/data/something/frames/116399/first.jpg", "AURORA/data/something/frames/116399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto a chair"}]} +{"id": "000000106664", "images": ["AURORA/data/something/frames/15896/first.jpg", "AURORA/data/something/frames/15896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour oil into glass, but missing so it spills next to it"}]} +{"id": "000000106665", "images": ["AURORA/data/something/frames/115808/first.jpg", "AURORA/data/something/frames/115808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring beer out of a can"}]} +{"id": "000000106666", "images": ["AURORA/data/something/frames/173157/first.jpg", "AURORA/data/something/frames/173157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching cup with your camera"}]} +{"id": "000000106667", "images": ["AURORA/data/something/frames/23234/first.jpg", "AURORA/data/something/frames/23234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering purse"}]} +{"id": "000000106668", "images": ["AURORA/data/something/frames/15783/first.jpg", "AURORA/data/something/frames/15783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing apple from left to right"}]} +{"id": "000000106669", "images": ["AURORA/data/something/frames/135596/first.jpg", "AURORA/data/something/frames/135596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a smartphone away from a calculator"}]} +{"id": "000000106670", "images": ["AURORA/data/something/frames/182519/first.jpg", "AURORA/data/something/frames/182519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling car out of bag"}]} +{"id": "000000106671", "images": ["AURORA/data/something/frames/14898/first.jpg", "AURORA/data/something/frames/14898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a jar on it"}]} +{"id": "000000106672", "images": ["AURORA/data/something/frames/128300/first.jpg", "AURORA/data/something/frames/128300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a wine glass"}]} +{"id": "000000106673", "images": ["AURORA/data/something/frames/217935/first.jpg", "AURORA/data/something/frames/217935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charging cable into a charging port"}]} +{"id": "000000106674", "images": ["AURORA/data/something/frames/139854/first.jpg", "AURORA/data/something/frames/139854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler into cup"}]} +{"id": "000000106675", "images": ["AURORA/data/something/frames/1686/first.jpg", "AURORA/data/something/frames/1686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling paper out of book"}]} +{"id": "000000106676", "images": ["AURORA/data/something/frames/215545/first.jpg", "AURORA/data/something/frames/215545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a remote control with a comb on it"}]} +{"id": "000000106677", "images": ["AURORA/data/something/frames/40456/first.jpg", "AURORA/data/something/frames/40456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming tooth paste"}]} +{"id": "000000106678", "images": ["AURORA/data/something/frames/181516/first.jpg", "AURORA/data/something/frames/181516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting elephant statue on a surface"}]} +{"id": "000000106679", "images": ["AURORA/data/something/frames/79254/first.jpg", "AURORA/data/something/frames/79254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pillow out of bed"}]} +{"id": "000000106680", "images": ["AURORA/data/something/frames/136173/first.jpg", "AURORA/data/something/frames/136173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a plate into the sink"}]} +{"id": "000000106681", "images": ["AURORA/data/something/frames/150165/first.jpg", "AURORA/data/something/frames/150165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of elastic cloth so that it gets stretched"}]} +{"id": "000000106682", "images": ["AURORA/data/something/frames/129033/first.jpg", "AURORA/data/something/frames/129033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106683", "images": ["AURORA/data/something/frames/114147/first.jpg", "AURORA/data/something/frames/114147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving geometric compass down"}]} +{"id": "000000106684", "images": ["AURORA/data/something/frames/195699/first.jpg", "AURORA/data/something/frames/195699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping comb into glass"}]} +{"id": "000000106685", "images": ["AURORA/data/something/frames/186819/first.jpg", "AURORA/data/something/frames/186819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clip on the edge of slab so it is not supported and falls down"}]} +{"id": "000000106686", "images": ["AURORA/data/something/frames/57642/first.jpg", "AURORA/data/something/frames/57642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into powerpoint"}]} +{"id": "000000106687", "images": ["AURORA/data/something/frames/59109/first.jpg", "AURORA/data/something/frames/59109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending chocolate bar until it breaks"}]} +{"id": "000000106688", "images": ["AURORA/data/something/frames/22091/first.jpg", "AURORA/data/something/frames/22091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tv remote from ground"}]} +{"id": "000000106689", "images": ["AURORA/data/something/frames/147834/first.jpg", "AURORA/data/something/frames/147834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping battery next to yellow container"}]} +{"id": "000000106690", "images": ["AURORA/data/something/frames/140733/first.jpg", "AURORA/data/something/frames/140733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a shovel of a toy excavator"}]} +{"id": "000000106691", "images": ["AURORA/data/something/frames/71752/first.jpg", "AURORA/data/something/frames/71752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening trash can"}]} +{"id": "000000106692", "images": ["AURORA/data/something/frames/39269/first.jpg", "AURORA/data/something/frames/39269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of dice so the stack collapses"}]} +{"id": "000000106693", "images": ["AURORA/data/something/frames/68317/first.jpg", "AURORA/data/something/frames/68317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting small box on the edge of bigger box so it is not supported and falls down"}]} +{"id": "000000106694", "images": ["AURORA/data/something/frames/145926/first.jpg", "AURORA/data/something/frames/145926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a pen on it"}]} +{"id": "000000106695", "images": ["AURORA/data/something/frames/132839/first.jpg", "AURORA/data/something/frames/132839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissues into a tissue box"}]} +{"id": "000000106696", "images": ["AURORA/data/something/frames/9855/first.jpg", "AURORA/data/something/frames/9855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading rice onto plastic-lid"}]} +{"id": "000000106697", "images": ["AURORA/data/something/frames/39056/first.jpg", "AURORA/data/something/frames/39056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking massage pillow so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106698", "images": ["AURORA/data/something/frames/207570/first.jpg", "AURORA/data/something/frames/207570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a note to a notice board"}]} +{"id": "000000106699", "images": ["AURORA/data/something/frames/156325/first.jpg", "AURORA/data/something/frames/156325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing card onto puzzle"}]} +{"id": "000000106700", "images": ["AURORA/data/something/frames/138624/first.jpg", "AURORA/data/something/frames/138624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning spoon upside down"}]} +{"id": "000000106701", "images": ["AURORA/data/something/frames/92118/first.jpg", "AURORA/data/something/frames/92118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000106702", "images": ["AURORA/data/something/frames/10501/first.jpg", "AURORA/data/something/frames/10501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a fork, a spoon and a knife on the table"}]} +{"id": "000000106703", "images": ["AURORA/data/something/frames/78336/first.jpg", "AURORA/data/something/frames/78336/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothbrush and toothpaste so they collide with each other"}]} +{"id": "000000106704", "images": ["AURORA/data/something/frames/16134/first.jpg", "AURORA/data/something/frames/16134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling metal keys from left to right"}]} +{"id": "000000106705", "images": ["AURORA/data/something/frames/148138/first.jpg", "AURORA/data/something/frames/148138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling book from left to right"}]} +{"id": "000000106706", "images": ["AURORA/data/something/frames/85095/first.jpg", "AURORA/data/something/frames/85095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cup with marker on it"}]} +{"id": "000000106707", "images": ["AURORA/data/something/frames/107442/first.jpg", "AURORA/data/something/frames/107442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching door with your camera"}]} +{"id": "000000106708", "images": ["AURORA/data/something/frames/63915/first.jpg", "AURORA/data/something/frames/63915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb in front of a pen"}]} +{"id": "000000106709", "images": ["AURORA/data/something/frames/162105/first.jpg", "AURORA/data/something/frames/162105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mug so that it almost falls off but doesn't"}]} +{"id": "000000106710", "images": ["AURORA/data/something/frames/35742/first.jpg", "AURORA/data/something/frames/35742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen and a pen on the table"}]} +{"id": "000000106711", "images": ["AURORA/data/something/frames/72327/first.jpg", "AURORA/data/something/frames/72327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a children's book"}]} +{"id": "000000106712", "images": ["AURORA/data/something/frames/207394/first.jpg", "AURORA/data/something/frames/207394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a sweet"}]} +{"id": "000000106713", "images": ["AURORA/data/something/frames/123869/first.jpg", "AURORA/data/something/frames/123869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail polish bottle and post it notes away from each other"}]} +{"id": "000000106714", "images": ["AURORA/data/something/frames/180889/first.jpg", "AURORA/data/something/frames/180889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a book"}]} +{"id": "000000106715", "images": ["AURORA/data/something/frames/94899/first.jpg", "AURORA/data/something/frames/94899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one binder clip of many similar binder clips on the table"}]} +{"id": "000000106716", "images": ["AURORA/data/something/frames/109650/first.jpg", "AURORA/data/something/frames/109650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing metal box from left to right"}]} +{"id": "000000106717", "images": ["AURORA/data/something/frames/74580/first.jpg", "AURORA/data/something/frames/74580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator up"}]} +{"id": "000000106718", "images": ["AURORA/data/something/frames/51260/first.jpg", "AURORA/data/something/frames/51260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a coffee mug"}]} +{"id": "000000106719", "images": ["AURORA/data/something/frames/38946/first.jpg", "AURORA/data/something/frames/38946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a pen so that it separates into two pieces"}]} +{"id": "000000106720", "images": ["AURORA/data/something/frames/11340/first.jpg", "AURORA/data/something/frames/11340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wolf and wolf closer to each other"}]} +{"id": "000000106721", "images": ["AURORA/data/something/frames/92976/first.jpg", "AURORA/data/something/frames/92976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing carbon paper into two pieces"}]} +{"id": "000000106722", "images": ["AURORA/data/something/frames/109278/first.jpg", "AURORA/data/something/frames/109278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a cupboard door"}]} +{"id": "000000106723", "images": ["AURORA/data/something/frames/49253/first.jpg", "AURORA/data/something/frames/49253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106724", "images": ["AURORA/data/something/frames/202121/first.jpg", "AURORA/data/something/frames/202121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cookie into jar"}]} +{"id": "000000106725", "images": ["AURORA/data/something/frames/1524/first.jpg", "AURORA/data/something/frames/1524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering mobile with towel"}]} +{"id": "000000106726", "images": ["AURORA/data/something/frames/189933/first.jpg", "AURORA/data/something/frames/189933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving caps and caps closer to each other"}]} +{"id": "000000106727", "images": ["AURORA/data/something/frames/43321/first.jpg", "AURORA/data/something/frames/43321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping neckalce behind door"}]} +{"id": "000000106728", "images": ["AURORA/data/something/frames/121203/first.jpg", "AURORA/data/something/frames/121203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book out of backpack"}]} +{"id": "000000106729", "images": ["AURORA/data/something/frames/9239/first.jpg", "AURORA/data/something/frames/9239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping can over"}]} +{"id": "000000106730", "images": ["AURORA/data/something/frames/154513/first.jpg", "AURORA/data/something/frames/154513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening lipstick"}]} +{"id": "000000106731", "images": ["AURORA/data/something/frames/191567/first.jpg", "AURORA/data/something/frames/191567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking knife"}]} +{"id": "000000106732", "images": ["AURORA/data/something/frames/54945/first.jpg", "AURORA/data/something/frames/54945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scissors from left to right"}]} +{"id": "000000106733", "images": ["AURORA/data/something/frames/28799/first.jpg", "AURORA/data/something/frames/28799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a piece of paper"}]} +{"id": "000000106734", "images": ["AURORA/data/something/frames/217399/first.jpg", "AURORA/data/something/frames/217399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000106735", "images": ["AURORA/data/something/frames/204638/first.jpg", "AURORA/data/something/frames/204638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: aqua colliding with aqua and both are being deflected"}]} +{"id": "000000106736", "images": ["AURORA/data/something/frames/132915/first.jpg", "AURORA/data/something/frames/132915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox onto a comb"}]} +{"id": "000000106737", "images": ["AURORA/data/something/frames/2342/first.jpg", "AURORA/data/something/frames/2342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cat onto cube"}]} +{"id": "000000106738", "images": ["AURORA/data/something/frames/141321/first.jpg", "AURORA/data/something/frames/141321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking garlic"}]} +{"id": "000000106739", "images": ["AURORA/data/something/frames/201906/first.jpg", "AURORA/data/something/frames/201906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000106740", "images": ["AURORA/data/something/frames/101578/first.jpg", "AURORA/data/something/frames/101578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106741", "images": ["AURORA/data/something/frames/101394/first.jpg", "AURORA/data/something/frames/101394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming scissors"}]} +{"id": "000000106742", "images": ["AURORA/data/something/frames/28687/first.jpg", "AURORA/data/something/frames/28687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small gear wheel from right to left"}]} +{"id": "000000106743", "images": ["AURORA/data/something/frames/6383/first.jpg", "AURORA/data/something/frames/6383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 envelopes"}]} +{"id": "000000106744", "images": ["AURORA/data/something/frames/32706/first.jpg", "AURORA/data/something/frames/32706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting an apple"}]} +{"id": "000000106745", "images": ["AURORA/data/something/frames/9900/first.jpg", "AURORA/data/something/frames/9900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing brochure into two pieces"}]} +{"id": "000000106746", "images": ["AURORA/data/something/frames/38085/first.jpg", "AURORA/data/something/frames/38085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling anchor from right to left"}]} +{"id": "000000106747", "images": ["AURORA/data/something/frames/176035/first.jpg", "AURORA/data/something/frames/176035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking glasses box so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106748", "images": ["AURORA/data/something/frames/39063/first.jpg", "AURORA/data/something/frames/39063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping an empty water bottle over"}]} +{"id": "000000106749", "images": ["AURORA/data/something/frames/18604/first.jpg", "AURORA/data/something/frames/18604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000106750", "images": ["AURORA/data/something/frames/116797/first.jpg", "AURORA/data/something/frames/116797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking plastic basket up"}]} +{"id": "000000106751", "images": ["AURORA/data/something/frames/57322/first.jpg", "AURORA/data/something/frames/57322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a mug so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106752", "images": ["AURORA/data/something/frames/67512/first.jpg", "AURORA/data/something/frames/67512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering waterbottle"}]} +{"id": "000000106753", "images": ["AURORA/data/something/frames/173148/first.jpg", "AURORA/data/something/frames/173148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something from left to right"}]} +{"id": "000000106754", "images": ["AURORA/data/something/frames/98174/first.jpg", "AURORA/data/something/frames/98174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tape upright on the table"}]} +{"id": "000000106755", "images": ["AURORA/data/something/frames/122967/first.jpg", "AURORA/data/something/frames/122967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning waterbottle upside down"}]} +{"id": "000000106756", "images": ["AURORA/data/something/frames/102714/first.jpg", "AURORA/data/something/frames/102714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening notebook"}]} +{"id": "000000106757", "images": ["AURORA/data/something/frames/4420/first.jpg", "AURORA/data/something/frames/4420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming sandals"}]} +{"id": "000000106758", "images": ["AURORA/data/something/frames/15567/first.jpg", "AURORA/data/something/frames/15567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lighter behind box"}]} +{"id": "000000106759", "images": ["AURORA/data/something/frames/92811/first.jpg", "AURORA/data/something/frames/92811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering box"}]} +{"id": "000000106760", "images": ["AURORA/data/something/frames/102777/first.jpg", "AURORA/data/something/frames/102777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper down"}]} +{"id": "000000106761", "images": ["AURORA/data/something/frames/54595/first.jpg", "AURORA/data/something/frames/54595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red object up"}]} +{"id": "000000106762", "images": ["AURORA/data/something/frames/9011/first.jpg", "AURORA/data/something/frames/9011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking baby toy so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106763", "images": ["AURORA/data/something/frames/94610/first.jpg", "AURORA/data/something/frames/94610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000106764", "images": ["AURORA/data/something/frames/213048/first.jpg", "AURORA/data/something/frames/213048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000106765", "images": ["AURORA/data/something/frames/104330/first.jpg", "AURORA/data/something/frames/104330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with ring on it until it starts sliding down"}]} +{"id": "000000106766", "images": ["AURORA/data/something/frames/17547/first.jpg", "AURORA/data/something/frames/17547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors away from a box"}]} +{"id": "000000106767", "images": ["AURORA/data/something/frames/4720/first.jpg", "AURORA/data/something/frames/4720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bowl until it overflows"}]} +{"id": "000000106768", "images": ["AURORA/data/something/frames/34858/first.jpg", "AURORA/data/something/frames/34858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing apple so that it almost falls off but doesn't"}]} +{"id": "000000106769", "images": ["AURORA/data/something/frames/192198/first.jpg", "AURORA/data/something/frames/192198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from hat with your camera"}]} +{"id": "000000106770", "images": ["AURORA/data/something/frames/206519/first.jpg", "AURORA/data/something/frames/206519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming wastebin"}]} +{"id": "000000106771", "images": ["AURORA/data/something/frames/68993/first.jpg", "AURORA/data/something/frames/68993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ball"}]} +{"id": "000000106772", "images": ["AURORA/data/something/frames/198750/first.jpg", "AURORA/data/something/frames/198750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving jar and bowl so they collide with each other"}]} +{"id": "000000106773", "images": ["AURORA/data/something/frames/153598/first.jpg", "AURORA/data/something/frames/153598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000106774", "images": ["AURORA/data/something/frames/38956/first.jpg", "AURORA/data/something/frames/38956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into jar"}]} +{"id": "000000106775", "images": ["AURORA/data/something/frames/175751/first.jpg", "AURORA/data/something/frames/175751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a can"}]} +{"id": "000000106776", "images": ["AURORA/data/something/frames/51038/first.jpg", "AURORA/data/something/frames/51038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote away from remote"}]} +{"id": "000000106777", "images": ["AURORA/data/something/frames/71540/first.jpg", "AURORA/data/something/frames/71540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000106778", "images": ["AURORA/data/something/frames/197098/first.jpg", "AURORA/data/something/frames/197098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000106779", "images": ["AURORA/data/something/frames/216535/first.jpg", "AURORA/data/something/frames/216535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000106780", "images": ["AURORA/data/something/frames/191690/first.jpg", "AURORA/data/something/frames/191690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming car"}]} +{"id": "000000106781", "images": ["AURORA/data/something/frames/119916/first.jpg", "AURORA/data/something/frames/119916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing wallet"}]} +{"id": "000000106782", "images": ["AURORA/data/something/frames/151204/first.jpg", "AURORA/data/something/frames/151204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pendrive and eye kajal away from each other"}]} +{"id": "000000106783", "images": ["AURORA/data/something/frames/1764/first.jpg", "AURORA/data/something/frames/1764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into jar"}]} +{"id": "000000106784", "images": ["AURORA/data/something/frames/14242/first.jpg", "AURORA/data/something/frames/14242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching carabiner to handle"}]} +{"id": "000000106785", "images": ["AURORA/data/something/frames/11925/first.jpg", "AURORA/data/something/frames/11925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen into a box"}]} +{"id": "000000106786", "images": ["AURORA/data/something/frames/133077/first.jpg", "AURORA/data/something/frames/133077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto the floor"}]} +{"id": "000000106787", "images": ["AURORA/data/something/frames/25820/first.jpg", "AURORA/data/something/frames/25820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding handkerchief"}]} +{"id": "000000106788", "images": ["AURORA/data/something/frames/90063/first.jpg", "AURORA/data/something/frames/90063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000106789", "images": ["AURORA/data/something/frames/76797/first.jpg", "AURORA/data/something/frames/76797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking telephone receiver from table"}]} +{"id": "000000106790", "images": ["AURORA/data/something/frames/94801/first.jpg", "AURORA/data/something/frames/94801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing napkin holder, revealing salt and pepper behind"}]} +{"id": "000000106791", "images": ["AURORA/data/something/frames/133517/first.jpg", "AURORA/data/something/frames/133517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping toothpaste off of notepad"}]} +{"id": "000000106792", "images": ["AURORA/data/something/frames/173775/first.jpg", "AURORA/data/something/frames/173775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a scarf into a helmet"}]} +{"id": "000000106793", "images": ["AURORA/data/something/frames/211062/first.jpg", "AURORA/data/something/frames/211062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plastic skull"}]} +{"id": "000000106794", "images": ["AURORA/data/something/frames/138308/first.jpg", "AURORA/data/something/frames/138308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle and candle away from each other"}]} +{"id": "000000106795", "images": ["AURORA/data/something/frames/214999/first.jpg", "AURORA/data/something/frames/214999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending straw so that it deforms"}]} +{"id": "000000106796", "images": ["AURORA/data/something/frames/139344/first.jpg", "AURORA/data/something/frames/139344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a calculator from left to right"}]} +{"id": "000000106797", "images": ["AURORA/data/something/frames/132487/first.jpg", "AURORA/data/something/frames/132487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a cloth clip from right to left"}]} +{"id": "000000106798", "images": ["AURORA/data/something/frames/119151/first.jpg", "AURORA/data/something/frames/119151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a portable lamp upright on the table, so it falls on its side"}]} +{"id": "000000106799", "images": ["AURORA/data/something/frames/205794/first.jpg", "AURORA/data/something/frames/205794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dvd case on a surface"}]} +{"id": "000000106800", "images": ["AURORA/data/something/frames/206077/first.jpg", "AURORA/data/something/frames/206077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper clip"}]} +{"id": "000000106801", "images": ["AURORA/data/something/frames/65777/first.jpg", "AURORA/data/something/frames/65777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with lid on it until it starts sliding down"}]} +{"id": "000000106802", "images": ["AURORA/data/something/frames/203989/first.jpg", "AURORA/data/something/frames/203989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser and glue stick closer to each other"}]} +{"id": "000000106803", "images": ["AURORA/data/something/frames/193728/first.jpg", "AURORA/data/something/frames/193728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a towel wet until water comes out"}]} +{"id": "000000106804", "images": ["AURORA/data/something/frames/149423/first.jpg", "AURORA/data/something/frames/149423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy closer to clip"}]} +{"id": "000000106805", "images": ["AURORA/data/something/frames/4331/first.jpg", "AURORA/data/something/frames/4331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning white out upside down"}]} +{"id": "000000106806", "images": ["AURORA/data/something/frames/53345/first.jpg", "AURORA/data/something/frames/53345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering waterbottle with blanket"}]} +{"id": "000000106807", "images": ["AURORA/data/something/frames/39875/first.jpg", "AURORA/data/something/frames/39875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming toy giraffe"}]} +{"id": "000000106808", "images": ["AURORA/data/something/frames/89443/first.jpg", "AURORA/data/something/frames/89443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup across a surface without it falling down"}]} +{"id": "000000106809", "images": ["AURORA/data/something/frames/214050/first.jpg", "AURORA/data/something/frames/214050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mouse from left to right"}]} +{"id": "000000106810", "images": ["AURORA/data/something/frames/82015/first.jpg", "AURORA/data/something/frames/82015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening table drawer"}]} +{"id": "000000106811", "images": ["AURORA/data/something/frames/24069/first.jpg", "AURORA/data/something/frames/24069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto wooden floor"}]} +{"id": "000000106812", "images": ["AURORA/data/something/frames/49858/first.jpg", "AURORA/data/something/frames/49858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red pot holder up"}]} +{"id": "000000106813", "images": ["AURORA/data/something/frames/62529/first.jpg", "AURORA/data/something/frames/62529/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping biscuit packet next to water-bottle"}]} +{"id": "000000106814", "images": ["AURORA/data/something/frames/65409/first.jpg", "AURORA/data/something/frames/65409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of coasters without the stack collapsing"}]} +{"id": "000000106815", "images": ["AURORA/data/something/frames/96827/first.jpg", "AURORA/data/something/frames/96827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a towel"}]} +{"id": "000000106816", "images": ["AURORA/data/something/frames/186931/first.jpg", "AURORA/data/something/frames/186931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding calendar"}]} +{"id": "000000106817", "images": ["AURORA/data/something/frames/53506/first.jpg", "AURORA/data/something/frames/53506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding sheet"}]} +{"id": "000000106818", "images": ["AURORA/data/something/frames/41755/first.jpg", "AURORA/data/something/frames/41755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a cantaloupe up completely without letting it drop down"}]} +{"id": "000000106819", "images": ["AURORA/data/something/frames/99788/first.jpg", "AURORA/data/something/frames/99788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book next to box"}]} +{"id": "000000106820", "images": ["AURORA/data/something/frames/171136/first.jpg", "AURORA/data/something/frames/171136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking eraser up"}]} +{"id": "000000106821", "images": ["AURORA/data/something/frames/84354/first.jpg", "AURORA/data/something/frames/84354/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pencil away from scissors"}]} +{"id": "000000106822", "images": ["AURORA/data/something/frames/119099/first.jpg", "AURORA/data/something/frames/119099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bed with belt"}]} +{"id": "000000106823", "images": ["AURORA/data/something/frames/158294/first.jpg", "AURORA/data/something/frames/158294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing clip box from right to left"}]} +{"id": "000000106824", "images": ["AURORA/data/something/frames/88347/first.jpg", "AURORA/data/something/frames/88347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing purse"}]} +{"id": "000000106825", "images": ["AURORA/data/something/frames/146130/first.jpg", "AURORA/data/something/frames/146130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a salt shaker on the table on its side, not upright"}]} +{"id": "000000106826", "images": ["AURORA/data/something/frames/28216/first.jpg", "AURORA/data/something/frames/28216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning coffee kuerig cup upside down"}]} +{"id": "000000106827", "images": ["AURORA/data/something/frames/135785/first.jpg", "AURORA/data/something/frames/135785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting box with pen on it"}]} +{"id": "000000106828", "images": ["AURORA/data/something/frames/53562/first.jpg", "AURORA/data/something/frames/53562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000106829", "images": ["AURORA/data/something/frames/123960/first.jpg", "AURORA/data/something/frames/123960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping scoop next to canister"}]} +{"id": "000000106830", "images": ["AURORA/data/something/frames/109720/first.jpg", "AURORA/data/something/frames/109720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a wooden stick without letting it drop down"}]} +{"id": "000000106831", "images": ["AURORA/data/something/frames/32452/first.jpg", "AURORA/data/something/frames/32452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a pill bottle upside down"}]} +{"id": "000000106832", "images": ["AURORA/data/something/frames/26899/first.jpg", "AURORA/data/something/frames/26899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a socket"}]} +{"id": "000000106833", "images": ["AURORA/data/something/frames/177191/first.jpg", "AURORA/data/something/frames/177191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing hotbox"}]} +{"id": "000000106834", "images": ["AURORA/data/something/frames/172001/first.jpg", "AURORA/data/something/frames/172001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000106835", "images": ["AURORA/data/something/frames/17833/first.jpg", "AURORA/data/something/frames/17833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling glas from left to right"}]} +{"id": "000000106836", "images": ["AURORA/data/something/frames/23202/first.jpg", "AURORA/data/something/frames/23202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling remote from right to left"}]} +{"id": "000000106837", "images": ["AURORA/data/something/frames/169396/first.jpg", "AURORA/data/something/frames/169396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000106838", "images": ["AURORA/data/something/frames/78795/first.jpg", "AURORA/data/something/frames/78795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a book out of a gym bag"}]} +{"id": "000000106839", "images": ["AURORA/data/something/frames/148464/first.jpg", "AURORA/data/something/frames/148464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking teabag out of tin"}]} +{"id": "000000106840", "images": ["AURORA/data/something/frames/91704/first.jpg", "AURORA/data/something/frames/91704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting perfume on a surface"}]} +{"id": "000000106841", "images": ["AURORA/data/something/frames/53957/first.jpg", "AURORA/data/something/frames/53957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving banana closer to shoe"}]} +{"id": "000000106842", "images": ["AURORA/data/something/frames/33816/first.jpg", "AURORA/data/something/frames/33816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting crystal"}]} +{"id": "000000106843", "images": ["AURORA/data/something/frames/23275/first.jpg", "AURORA/data/something/frames/23275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking prescription so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106844", "images": ["AURORA/data/something/frames/192617/first.jpg", "AURORA/data/something/frames/192617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup until it overflows"}]} +{"id": "000000106845", "images": ["AURORA/data/something/frames/63861/first.jpg", "AURORA/data/something/frames/63861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket but pulling it right out as you remove your hand"}]} +{"id": "000000106846", "images": ["AURORA/data/something/frames/20872/first.jpg", "AURORA/data/something/frames/20872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ipad upright on the table, so it falls on its side"}]} +{"id": "000000106847", "images": ["AURORA/data/something/frames/137455/first.jpg", "AURORA/data/something/frames/137455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with ball on it until it starts sliding down"}]} +{"id": "000000106848", "images": ["AURORA/data/something/frames/158625/first.jpg", "AURORA/data/something/frames/158625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a flyer just a little bit"}]} +{"id": "000000106849", "images": ["AURORA/data/something/frames/148722/first.jpg", "AURORA/data/something/frames/148722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book next to other books"}]} +{"id": "000000106850", "images": ["AURORA/data/something/frames/185049/first.jpg", "AURORA/data/something/frames/185049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 toy wheels onto yellow note"}]} +{"id": "000000106851", "images": ["AURORA/data/something/frames/203253/first.jpg", "AURORA/data/something/frames/203253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a doorknob"}]} +{"id": "000000106852", "images": ["AURORA/data/something/frames/16584/first.jpg", "AURORA/data/something/frames/16584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into paper"}]} +{"id": "000000106853", "images": ["AURORA/data/something/frames/55971/first.jpg", "AURORA/data/something/frames/55971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sponge and nail clipper away from each other"}]} +{"id": "000000106854", "images": ["AURORA/data/something/frames/164445/first.jpg", "AURORA/data/something/frames/164445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an apple next to a glass"}]} +{"id": "000000106855", "images": ["AURORA/data/something/frames/136803/first.jpg", "AURORA/data/something/frames/136803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: blue marble colliding with red marble and both are being deflected"}]} +{"id": "000000106856", "images": ["AURORA/data/something/frames/50909/first.jpg", "AURORA/data/something/frames/50909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000106857", "images": ["AURORA/data/something/frames/157212/first.jpg", "AURORA/data/something/frames/157212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a shuttle cock just a little bit"}]} +{"id": "000000106858", "images": ["AURORA/data/something/frames/69444/first.jpg", "AURORA/data/something/frames/69444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling something onto something"}]} +{"id": "000000106859", "images": ["AURORA/data/something/frames/219699/first.jpg", "AURORA/data/something/frames/219699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a tote bag up completely without letting it drop down"}]} +{"id": "000000106860", "images": ["AURORA/data/something/frames/108657/first.jpg", "AURORA/data/something/frames/108657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb bluetooth into usb port"}]} +{"id": "000000106861", "images": ["AURORA/data/something/frames/163271/first.jpg", "AURORA/data/something/frames/163271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle onto chair"}]} +{"id": "000000106862", "images": ["AURORA/data/something/frames/98509/first.jpg", "AURORA/data/something/frames/98509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book next to book"}]} +{"id": "000000106863", "images": ["AURORA/data/something/frames/163545/first.jpg", "AURORA/data/something/frames/163545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of the lip glosses from the table"}]} +{"id": "000000106864", "images": ["AURORA/data/something/frames/218338/first.jpg", "AURORA/data/something/frames/218338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying moisturizer on the table on its side, not upright"}]} +{"id": "000000106865", "images": ["AURORA/data/something/frames/216460/first.jpg", "AURORA/data/something/frames/216460/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering paste with box"}]} +{"id": "000000106866", "images": ["AURORA/data/something/frames/128976/first.jpg", "AURORA/data/something/frames/128976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a window"}]} +{"id": "000000106867", "images": ["AURORA/data/something/frames/90926/first.jpg", "AURORA/data/something/frames/90926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a note book"}]} +{"id": "000000106868", "images": ["AURORA/data/something/frames/124577/first.jpg", "AURORA/data/something/frames/124577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wrist-watch in front of plastic-container"}]} +{"id": "000000106869", "images": ["AURORA/data/something/frames/43317/first.jpg", "AURORA/data/something/frames/43317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a card"}]} +{"id": "000000106870", "images": ["AURORA/data/something/frames/178760/first.jpg", "AURORA/data/something/frames/178760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one spray bottle"}]} +{"id": "000000106871", "images": ["AURORA/data/something/frames/49583/first.jpg", "AURORA/data/something/frames/49583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting mobile phone with ipod on it"}]} +{"id": "000000106872", "images": ["AURORA/data/something/frames/83918/first.jpg", "AURORA/data/something/frames/83918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a fork so that it deforms"}]} +{"id": "000000106873", "images": ["AURORA/data/something/frames/46969/first.jpg", "AURORA/data/something/frames/46969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter closer to book"}]} +{"id": "000000106874", "images": ["AURORA/data/something/frames/38730/first.jpg", "AURORA/data/something/frames/38730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into power adapter"}]} +{"id": "000000106875", "images": ["AURORA/data/something/frames/1697/first.jpg", "AURORA/data/something/frames/1697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching waist basket with your camera"}]} +{"id": "000000106876", "images": ["AURORA/data/something/frames/141742/first.jpg", "AURORA/data/something/frames/141742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting camphor packet next to sugar bottle"}]} +{"id": "000000106877", "images": ["AURORA/data/something/frames/126457/first.jpg", "AURORA/data/something/frames/126457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil upright on the table, so it falls on its side"}]} +{"id": "000000106878", "images": ["AURORA/data/something/frames/199705/first.jpg", "AURORA/data/something/frames/199705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping ketchup off of surface"}]} +{"id": "000000106879", "images": ["AURORA/data/something/frames/136661/first.jpg", "AURORA/data/something/frames/136661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning mobile phone upside down"}]} +{"id": "000000106880", "images": ["AURORA/data/something/frames/21481/first.jpg", "AURORA/data/something/frames/21481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into jar"}]} +{"id": "000000106881", "images": ["AURORA/data/something/frames/35645/first.jpg", "AURORA/data/something/frames/35645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting pillow with fist"}]} +{"id": "000000106882", "images": ["AURORA/data/something/frames/141638/first.jpg", "AURORA/data/something/frames/141638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with sunglasses on it"}]} +{"id": "000000106883", "images": ["AURORA/data/something/frames/110256/first.jpg", "AURORA/data/something/frames/110256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping red hair band next to diary"}]} +{"id": "000000106884", "images": ["AURORA/data/something/frames/202211/first.jpg", "AURORA/data/something/frames/202211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming window view"}]} +{"id": "000000106885", "images": ["AURORA/data/something/frames/57771/first.jpg", "AURORA/data/something/frames/57771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toy and another toy away from each other"}]} +{"id": "000000106886", "images": ["AURORA/data/something/frames/142814/first.jpg", "AURORA/data/something/frames/142814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a calculator in front of stapler cover"}]} +{"id": "000000106887", "images": ["AURORA/data/something/frames/7664/first.jpg", "AURORA/data/something/frames/7664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming ceiling"}]} +{"id": "000000106888", "images": ["AURORA/data/something/frames/177182/first.jpg", "AURORA/data/something/frames/177182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rectangular box and ramekin closer to each other"}]} +{"id": "000000106889", "images": ["AURORA/data/something/frames/193578/first.jpg", "AURORA/data/something/frames/193578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pens into box"}]} +{"id": "000000106890", "images": ["AURORA/data/something/frames/113521/first.jpg", "AURORA/data/something/frames/113521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting color pencil"}]} +{"id": "000000106891", "images": ["AURORA/data/something/frames/152458/first.jpg", "AURORA/data/something/frames/152458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a paper heart so that it deforms"}]} +{"id": "000000106892", "images": ["AURORA/data/something/frames/135323/first.jpg", "AURORA/data/something/frames/135323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding an envelope"}]} +{"id": "000000106893", "images": ["AURORA/data/something/frames/39700/first.jpg", "AURORA/data/something/frames/39700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book behind book"}]} +{"id": "000000106894", "images": ["AURORA/data/something/frames/167988/first.jpg", "AURORA/data/something/frames/167988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding duppatta"}]} +{"id": "000000106895", "images": ["AURORA/data/something/frames/165698/first.jpg", "AURORA/data/something/frames/165698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: crackers colliding with crackers and both are being deflected"}]} +{"id": "000000106896", "images": ["AURORA/data/something/frames/101194/first.jpg", "AURORA/data/something/frames/101194/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping yellow ball into orange cup"}]} +{"id": "000000106897", "images": ["AURORA/data/something/frames/123037/first.jpg", "AURORA/data/something/frames/123037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 staplers"}]} +{"id": "000000106898", "images": ["AURORA/data/something/frames/189335/first.jpg", "AURORA/data/something/frames/189335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coin onto cloth"}]} +{"id": "000000106899", "images": ["AURORA/data/something/frames/194411/first.jpg", "AURORA/data/something/frames/194411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging electrical plug into wall socket"}]} +{"id": "000000106900", "images": ["AURORA/data/something/frames/219270/first.jpg", "AURORA/data/something/frames/219270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching sandal with your camera"}]} +{"id": "000000106901", "images": ["AURORA/data/something/frames/28528/first.jpg", "AURORA/data/something/frames/28528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling glasses from right to left"}]} +{"id": "000000106902", "images": ["AURORA/data/something/frames/94236/first.jpg", "AURORA/data/something/frames/94236/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a large measuring cup, revealing a small measuring cup behind"}]} +{"id": "000000106903", "images": ["AURORA/data/something/frames/136393/first.jpg", "AURORA/data/something/frames/136393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a deck of cards so that it almost falls off but doesn't"}]} +{"id": "000000106904", "images": ["AURORA/data/something/frames/77933/first.jpg", "AURORA/data/something/frames/77933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a toy plane with a sharpener on it"}]} +{"id": "000000106905", "images": ["AURORA/data/something/frames/196089/first.jpg", "AURORA/data/something/frames/196089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup across a surface without it falling down"}]} +{"id": "000000106906", "images": ["AURORA/data/something/frames/85244/first.jpg", "AURORA/data/something/frames/85244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: soda can colliding with deodarant and both are being deflected"}]} +{"id": "000000106907", "images": ["AURORA/data/something/frames/140034/first.jpg", "AURORA/data/something/frames/140034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a makeup brush into a cup"}]} +{"id": "000000106908", "images": ["AURORA/data/something/frames/95047/first.jpg", "AURORA/data/something/frames/95047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bolt down"}]} +{"id": "000000106909", "images": ["AURORA/data/something/frames/121054/first.jpg", "AURORA/data/something/frames/121054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a sticky paper to a wooden surface"}]} +{"id": "000000106910", "images": ["AURORA/data/something/frames/64153/first.jpg", "AURORA/data/something/frames/64153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting little cup next to cat doll"}]} +{"id": "000000106911", "images": ["AURORA/data/something/frames/175088/first.jpg", "AURORA/data/something/frames/175088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a vase from left to right"}]} +{"id": "000000106912", "images": ["AURORA/data/something/frames/182737/first.jpg", "AURORA/data/something/frames/182737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000106913", "images": ["AURORA/data/something/frames/145367/first.jpg", "AURORA/data/something/frames/145367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting greetings card upright on the table"}]} +{"id": "000000106914", "images": ["AURORA/data/something/frames/133571/first.jpg", "AURORA/data/something/frames/133571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting toy with box on it"}]} +{"id": "000000106915", "images": ["AURORA/data/something/frames/68793/first.jpg", "AURORA/data/something/frames/68793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000106916", "images": ["AURORA/data/something/frames/194076/first.jpg", "AURORA/data/something/frames/194076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming aquarium"}]} +{"id": "000000106917", "images": ["AURORA/data/something/frames/154882/first.jpg", "AURORA/data/something/frames/154882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a bottle of mineral water so that it deforms"}]} +{"id": "000000106918", "images": ["AURORA/data/something/frames/30402/first.jpg", "AURORA/data/something/frames/30402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a jar upright on the table"}]} +{"id": "000000106919", "images": ["AURORA/data/something/frames/158893/first.jpg", "AURORA/data/something/frames/158893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile down"}]} +{"id": "000000106920", "images": ["AURORA/data/something/frames/159257/first.jpg", "AURORA/data/something/frames/159257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a wine bottle over"}]} +{"id": "000000106921", "images": ["AURORA/data/something/frames/84401/first.jpg", "AURORA/data/something/frames/84401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning plastic cup upside down"}]} +{"id": "000000106922", "images": ["AURORA/data/something/frames/119528/first.jpg", "AURORA/data/something/frames/119528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving earpiece of sunglasses"}]} +{"id": "000000106923", "images": ["AURORA/data/something/frames/155968/first.jpg", "AURORA/data/something/frames/155968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a tissue"}]} +{"id": "000000106924", "images": ["AURORA/data/something/frames/38735/first.jpg", "AURORA/data/something/frames/38735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle up"}]} +{"id": "000000106925", "images": ["AURORA/data/something/frames/97075/first.jpg", "AURORA/data/something/frames/97075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery upright on the table"}]} +{"id": "000000106926", "images": ["AURORA/data/something/frames/7505/first.jpg", "AURORA/data/something/frames/7505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peanut into a bottle"}]} +{"id": "000000106927", "images": ["AURORA/data/something/frames/198935/first.jpg", "AURORA/data/something/frames/198935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) lid of lip gloss"}]} +{"id": "000000106928", "images": ["AURORA/data/something/frames/16459/first.jpg", "AURORA/data/something/frames/16459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shoe from right to left"}]} +{"id": "000000106929", "images": ["AURORA/data/something/frames/73021/first.jpg", "AURORA/data/something/frames/73021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000106930", "images": ["AURORA/data/something/frames/140718/first.jpg", "AURORA/data/something/frames/140718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into napkin"}]} +{"id": "000000106931", "images": ["AURORA/data/something/frames/217892/first.jpg", "AURORA/data/something/frames/217892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting calculator with scissor on it"}]} +{"id": "000000106932", "images": ["AURORA/data/something/frames/36400/first.jpg", "AURORA/data/something/frames/36400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an owl upright on the table"}]} +{"id": "000000106933", "images": ["AURORA/data/something/frames/108540/first.jpg", "AURORA/data/something/frames/108540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a tube of toothpaste in front of a mirror"}]} +{"id": "000000106934", "images": ["AURORA/data/something/frames/214998/first.jpg", "AURORA/data/something/frames/214998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box so that it almost falls off but doesn't"}]} +{"id": "000000106935", "images": ["AURORA/data/something/frames/166020/first.jpg", "AURORA/data/something/frames/166020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing plastic into two pieces"}]} +{"id": "000000106936", "images": ["AURORA/data/something/frames/108484/first.jpg", "AURORA/data/something/frames/108484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wood box in front of phone"}]} +{"id": "000000106937", "images": ["AURORA/data/something/frames/36803/first.jpg", "AURORA/data/something/frames/36803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green toy car and red toy car closer to each other"}]} +{"id": "000000106938", "images": ["AURORA/data/something/frames/31942/first.jpg", "AURORA/data/something/frames/31942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar behind monitor"}]} +{"id": "000000106939", "images": ["AURORA/data/something/frames/71016/first.jpg", "AURORA/data/something/frames/71016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking 1 jar away from other jars"}]} +{"id": "000000106940", "images": ["AURORA/data/something/frames/80147/first.jpg", "AURORA/data/something/frames/80147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into tissue"}]} +{"id": "000000106941", "images": ["AURORA/data/something/frames/111375/first.jpg", "AURORA/data/something/frames/111375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106942", "images": ["AURORA/data/something/frames/151752/first.jpg", "AURORA/data/something/frames/151752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying ball in towels"}]} +{"id": "000000106943", "images": ["AURORA/data/something/frames/442/first.jpg", "AURORA/data/something/frames/442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a towel into a drawer"}]} +{"id": "000000106944", "images": ["AURORA/data/something/frames/106936/first.jpg", "AURORA/data/something/frames/106936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling green hair comb from right to left"}]} +{"id": "000000106945", "images": ["AURORA/data/something/frames/22840/first.jpg", "AURORA/data/something/frames/22840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon rest away from stove eye"}]} +{"id": "000000106946", "images": ["AURORA/data/something/frames/196566/first.jpg", "AURORA/data/something/frames/196566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing papers into purse"}]} +{"id": "000000106947", "images": ["AURORA/data/something/frames/152059/first.jpg", "AURORA/data/something/frames/152059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000106948", "images": ["AURORA/data/something/frames/86804/first.jpg", "AURORA/data/something/frames/86804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting key on a surface"}]} +{"id": "000000106949", "images": ["AURORA/data/something/frames/208266/first.jpg", "AURORA/data/something/frames/208266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening letter box"}]} +{"id": "000000106950", "images": ["AURORA/data/something/frames/220711/first.jpg", "AURORA/data/something/frames/220711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling computer mouse onto pillow"}]} +{"id": "000000106951", "images": ["AURORA/data/something/frames/25983/first.jpg", "AURORA/data/something/frames/25983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000106952", "images": ["AURORA/data/something/frames/39273/first.jpg", "AURORA/data/something/frames/39273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one coin"}]} +{"id": "000000106953", "images": ["AURORA/data/something/frames/91549/first.jpg", "AURORA/data/something/frames/91549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet onto paper so it falls down"}]} +{"id": "000000106954", "images": ["AURORA/data/something/frames/116063/first.jpg", "AURORA/data/something/frames/116063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a textbook in front of a coin"}]} +{"id": "000000106955", "images": ["AURORA/data/something/frames/111194/first.jpg", "AURORA/data/something/frames/111194/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a piece of paper"}]} +{"id": "000000106956", "images": ["AURORA/data/something/frames/29810/first.jpg", "AURORA/data/something/frames/29810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bed"}]} +{"id": "000000106957", "images": ["AURORA/data/something/frames/19486/first.jpg", "AURORA/data/something/frames/19486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking glass up"}]} +{"id": "000000106958", "images": ["AURORA/data/something/frames/148396/first.jpg", "AURORA/data/something/frames/148396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red chilli"}]} +{"id": "000000106959", "images": ["AURORA/data/something/frames/46541/first.jpg", "AURORA/data/something/frames/46541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pen being deflected from a mug"}]} +{"id": "000000106960", "images": ["AURORA/data/something/frames/86207/first.jpg", "AURORA/data/something/frames/86207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 pencil sharpners onto black pouch"}]} +{"id": "000000106961", "images": ["AURORA/data/something/frames/8941/first.jpg", "AURORA/data/something/frames/8941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving powerbank down"}]} +{"id": "000000106962", "images": ["AURORA/data/something/frames/3928/first.jpg", "AURORA/data/something/frames/3928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming rice cooker"}]} +{"id": "000000106963", "images": ["AURORA/data/something/frames/125103/first.jpg", "AURORA/data/something/frames/125103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000106964", "images": ["AURORA/data/something/frames/53872/first.jpg", "AURORA/data/something/frames/53872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000106965", "images": ["AURORA/data/something/frames/106612/first.jpg", "AURORA/data/something/frames/106612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000106966", "images": ["AURORA/data/something/frames/194620/first.jpg", "AURORA/data/something/frames/194620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading kercief onto rubix cube"}]} +{"id": "000000106967", "images": ["AURORA/data/something/frames/4362/first.jpg", "AURORA/data/something/frames/4362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106968", "images": ["AURORA/data/something/frames/129592/first.jpg", "AURORA/data/something/frames/129592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing book into backpack"}]} +{"id": "000000106969", "images": ["AURORA/data/something/frames/4466/first.jpg", "AURORA/data/something/frames/4466/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a steel ball colliding with a steel ball and both are being deflected"}]} +{"id": "000000106970", "images": ["AURORA/data/something/frames/178174/first.jpg", "AURORA/data/something/frames/178174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading peanut butter onto bread"}]} +{"id": "000000106971", "images": ["AURORA/data/something/frames/211303/first.jpg", "AURORA/data/something/frames/211303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching purple microfiber with your camera"}]} +{"id": "000000106972", "images": ["AURORA/data/something/frames/179226/first.jpg", "AURORA/data/something/frames/179226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000106973", "images": ["AURORA/data/something/frames/105854/first.jpg", "AURORA/data/something/frames/105854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a cloth"}]} +{"id": "000000106974", "images": ["AURORA/data/something/frames/78820/first.jpg", "AURORA/data/something/frames/78820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box, handphone and pen on the table"}]} +{"id": "000000106975", "images": ["AURORA/data/something/frames/65518/first.jpg", "AURORA/data/something/frames/65518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000106976", "images": ["AURORA/data/something/frames/2784/first.jpg", "AURORA/data/something/frames/2784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a stone"}]} +{"id": "000000106977", "images": ["AURORA/data/something/frames/115868/first.jpg", "AURORA/data/something/frames/115868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming bullet bike"}]} +{"id": "000000106978", "images": ["AURORA/data/something/frames/189082/first.jpg", "AURORA/data/something/frames/189082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000106979", "images": ["AURORA/data/something/frames/158563/first.jpg", "AURORA/data/something/frames/158563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming animals"}]} +{"id": "000000106980", "images": ["AURORA/data/something/frames/64793/first.jpg", "AURORA/data/something/frames/64793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing book into bag"}]} +{"id": "000000106981", "images": ["AURORA/data/something/frames/196867/first.jpg", "AURORA/data/something/frames/196867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging alarm clock into wall outlet"}]} +{"id": "000000106982", "images": ["AURORA/data/something/frames/113160/first.jpg", "AURORA/data/something/frames/113160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothpick onto a matchbox"}]} +{"id": "000000106983", "images": ["AURORA/data/something/frames/105846/first.jpg", "AURORA/data/something/frames/105846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a water bottle and a book closer to each other"}]} +{"id": "000000106984", "images": ["AURORA/data/something/frames/84606/first.jpg", "AURORA/data/something/frames/84606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning purple balloon pump upside down"}]} +{"id": "000000106985", "images": ["AURORA/data/something/frames/16778/first.jpg", "AURORA/data/something/frames/16778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a ball up"}]} +{"id": "000000106986", "images": ["AURORA/data/something/frames/212301/first.jpg", "AURORA/data/something/frames/212301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green hair comb from left to right"}]} +{"id": "000000106987", "images": ["AURORA/data/something/frames/39039/first.jpg", "AURORA/data/something/frames/39039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pen over"}]} +{"id": "000000106988", "images": ["AURORA/data/something/frames/208446/first.jpg", "AURORA/data/something/frames/208446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup until it overflows"}]} +{"id": "000000106989", "images": ["AURORA/data/something/frames/193490/first.jpg", "AURORA/data/something/frames/193490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper towels into a drawer"}]} +{"id": "000000106990", "images": ["AURORA/data/something/frames/26118/first.jpg", "AURORA/data/something/frames/26118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle and a box closer to each other"}]} +{"id": "000000106991", "images": ["AURORA/data/something/frames/133709/first.jpg", "AURORA/data/something/frames/133709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000106992", "images": ["AURORA/data/something/frames/96919/first.jpg", "AURORA/data/something/frames/96919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a ruler away from each other"}]} +{"id": "000000106993", "images": ["AURORA/data/something/frames/10753/first.jpg", "AURORA/data/something/frames/10753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling glitter onto paper plate"}]} +{"id": "000000106994", "images": ["AURORA/data/something/frames/12384/first.jpg", "AURORA/data/something/frames/12384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering kettle with cap"}]} +{"id": "000000106995", "images": ["AURORA/data/something/frames/201252/first.jpg", "AURORA/data/something/frames/201252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000106996", "images": ["AURORA/data/something/frames/184924/first.jpg", "AURORA/data/something/frames/184924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pen colliding with pen and both are being deflected"}]} +{"id": "000000106997", "images": ["AURORA/data/something/frames/56607/first.jpg", "AURORA/data/something/frames/56607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone case next to crayon"}]} +{"id": "000000106998", "images": ["AURORA/data/something/frames/168893/first.jpg", "AURORA/data/something/frames/168893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a cup until it breaks"}]} +{"id": "000000106999", "images": ["AURORA/data/something/frames/165231/first.jpg", "AURORA/data/something/frames/165231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hair comb up"}]} +{"id": "000000107000", "images": ["AURORA/data/something/frames/79033/first.jpg", "AURORA/data/something/frames/79033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000107001", "images": ["AURORA/data/something/frames/161614/first.jpg", "AURORA/data/something/frames/161614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 book onto pillow"}]} +{"id": "000000107002", "images": ["AURORA/data/something/frames/191439/first.jpg", "AURORA/data/something/frames/191439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a tv remote upside down"}]} +{"id": "000000107003", "images": ["AURORA/data/something/frames/217590/first.jpg", "AURORA/data/something/frames/217590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering sunglasses"}]} +{"id": "000000107004", "images": ["AURORA/data/something/frames/49407/first.jpg", "AURORA/data/something/frames/49407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a figure into a box"}]} +{"id": "000000107005", "images": ["AURORA/data/something/frames/205391/first.jpg", "AURORA/data/something/frames/205391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a tissue into two pieces"}]} +{"id": "000000107006", "images": ["AURORA/data/something/frames/130343/first.jpg", "AURORA/data/something/frames/130343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a vape battery box"}]} +{"id": "000000107007", "images": ["AURORA/data/something/frames/124642/first.jpg", "AURORA/data/something/frames/124642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching white brick with your camera"}]} +{"id": "000000107008", "images": ["AURORA/data/something/frames/61237/first.jpg", "AURORA/data/something/frames/61237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000107009", "images": ["AURORA/data/something/frames/79001/first.jpg", "AURORA/data/something/frames/79001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending branch until it breaks"}]} +{"id": "000000107010", "images": ["AURORA/data/something/frames/60325/first.jpg", "AURORA/data/something/frames/60325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending fragrance stick until it breaks"}]} +{"id": "000000107011", "images": ["AURORA/data/something/frames/46492/first.jpg", "AURORA/data/something/frames/46492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of glass"}]} +{"id": "000000107012", "images": ["AURORA/data/something/frames/21642/first.jpg", "AURORA/data/something/frames/21642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with jacket"}]} +{"id": "000000107013", "images": ["AURORA/data/something/frames/84073/first.jpg", "AURORA/data/something/frames/84073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) cover of pan"}]} +{"id": "000000107014", "images": ["AURORA/data/something/frames/19555/first.jpg", "AURORA/data/something/frames/19555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting jar with folder on it"}]} +{"id": "000000107015", "images": ["AURORA/data/something/frames/113531/first.jpg", "AURORA/data/something/frames/113531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a dvd"}]} +{"id": "000000107016", "images": ["AURORA/data/something/frames/111069/first.jpg", "AURORA/data/something/frames/111069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle on the table on its side, not upright"}]} +{"id": "000000107017", "images": ["AURORA/data/something/frames/172598/first.jpg", "AURORA/data/something/frames/172598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cd box"}]} +{"id": "000000107018", "images": ["AURORA/data/something/frames/218702/first.jpg", "AURORA/data/something/frames/218702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cellphone"}]} +{"id": "000000107019", "images": ["AURORA/data/something/frames/116184/first.jpg", "AURORA/data/something/frames/116184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving milk away from knife"}]} +{"id": "000000107020", "images": ["AURORA/data/something/frames/153694/first.jpg", "AURORA/data/something/frames/153694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper"}]} +{"id": "000000107021", "images": ["AURORA/data/something/frames/148204/first.jpg", "AURORA/data/something/frames/148204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic chip"}]} +{"id": "000000107022", "images": ["AURORA/data/something/frames/123574/first.jpg", "AURORA/data/something/frames/123574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting another pen on the floor"}]} +{"id": "000000107023", "images": ["AURORA/data/something/frames/143160/first.jpg", "AURORA/data/something/frames/143160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hand cream and banana away from each other"}]} +{"id": "000000107024", "images": ["AURORA/data/something/frames/22257/first.jpg", "AURORA/data/something/frames/22257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107025", "images": ["AURORA/data/something/frames/214513/first.jpg", "AURORA/data/something/frames/214513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ironbox from table"}]} +{"id": "000000107026", "images": ["AURORA/data/something/frames/199886/first.jpg", "AURORA/data/something/frames/199886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving triangle and pen so they pass each other"}]} +{"id": "000000107027", "images": ["AURORA/data/something/frames/187937/first.jpg", "AURORA/data/something/frames/187937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many biscuits"}]} +{"id": "000000107028", "images": ["AURORA/data/something/frames/91527/first.jpg", "AURORA/data/something/frames/91527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a ukulele out of the case"}]} +{"id": "000000107029", "images": ["AURORA/data/something/frames/143962/first.jpg", "AURORA/data/something/frames/143962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering headphone with hand"}]} +{"id": "000000107030", "images": ["AURORA/data/something/frames/169616/first.jpg", "AURORA/data/something/frames/169616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone into usb"}]} +{"id": "000000107031", "images": ["AURORA/data/something/frames/29620/first.jpg", "AURORA/data/something/frames/29620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering rubix cube with white hand kerchief"}]} +{"id": "000000107032", "images": ["AURORA/data/something/frames/186090/first.jpg", "AURORA/data/something/frames/186090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming laterate stone"}]} +{"id": "000000107033", "images": ["AURORA/data/something/frames/49702/first.jpg", "AURORA/data/something/frames/49702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote closer to pen/marker"}]} +{"id": "000000107034", "images": ["AURORA/data/something/frames/173571/first.jpg", "AURORA/data/something/frames/173571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping nail polish over"}]} +{"id": "000000107035", "images": ["AURORA/data/something/frames/40186/first.jpg", "AURORA/data/something/frames/40186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering legs with blanket"}]} +{"id": "000000107036", "images": ["AURORA/data/something/frames/69189/first.jpg", "AURORA/data/something/frames/69189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key so that it almost falls off but doesn't"}]} +{"id": "000000107037", "images": ["AURORA/data/something/frames/120996/first.jpg", "AURORA/data/something/frames/120996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling car key from right to left"}]} +{"id": "000000107038", "images": ["AURORA/data/something/frames/214684/first.jpg", "AURORA/data/something/frames/214684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering glass jar with paper towel"}]} +{"id": "000000107039", "images": ["AURORA/data/something/frames/209141/first.jpg", "AURORA/data/something/frames/209141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a cloth wet until water comes out"}]} +{"id": "000000107040", "images": ["AURORA/data/something/frames/73667/first.jpg", "AURORA/data/something/frames/73667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 staplers"}]} +{"id": "000000107041", "images": ["AURORA/data/something/frames/166247/first.jpg", "AURORA/data/something/frames/166247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tape with cardboard"}]} +{"id": "000000107042", "images": ["AURORA/data/something/frames/42333/first.jpg", "AURORA/data/something/frames/42333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of glove so that it gets stretched"}]} +{"id": "000000107043", "images": ["AURORA/data/something/frames/28337/first.jpg", "AURORA/data/something/frames/28337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming switch board"}]} +{"id": "000000107044", "images": ["AURORA/data/something/frames/23963/first.jpg", "AURORA/data/something/frames/23963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notebook up"}]} +{"id": "000000107045", "images": ["AURORA/data/something/frames/163169/first.jpg", "AURORA/data/something/frames/163169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box from right to left"}]} +{"id": "000000107046", "images": ["AURORA/data/something/frames/209000/first.jpg", "AURORA/data/something/frames/209000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering drumstick"}]} +{"id": "000000107047", "images": ["AURORA/data/something/frames/161310/first.jpg", "AURORA/data/something/frames/161310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hanger and screwdriver away from each other"}]} +{"id": "000000107048", "images": ["AURORA/data/something/frames/149192/first.jpg", "AURORA/data/something/frames/149192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding handkerchief"}]} +{"id": "000000107049", "images": ["AURORA/data/something/frames/189122/first.jpg", "AURORA/data/something/frames/189122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper weight from bed"}]} +{"id": "000000107050", "images": ["AURORA/data/something/frames/126045/first.jpg", "AURORA/data/something/frames/126045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting wire"}]} +{"id": "000000107051", "images": ["AURORA/data/something/frames/49367/first.jpg", "AURORA/data/something/frames/49367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling milk next to cookie"}]} +{"id": "000000107052", "images": ["AURORA/data/something/frames/83203/first.jpg", "AURORA/data/something/frames/83203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling green purse from left to right"}]} +{"id": "000000107053", "images": ["AURORA/data/something/frames/22563/first.jpg", "AURORA/data/something/frames/22563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys next to bag"}]} +{"id": "000000107054", "images": ["AURORA/data/something/frames/150314/first.jpg", "AURORA/data/something/frames/150314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shirt into bag"}]} +{"id": "000000107055", "images": ["AURORA/data/something/frames/107548/first.jpg", "AURORA/data/something/frames/107548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping blistex chapstick over"}]} +{"id": "000000107056", "images": ["AURORA/data/something/frames/29610/first.jpg", "AURORA/data/something/frames/29610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering small gear wheel"}]} +{"id": "000000107057", "images": ["AURORA/data/something/frames/171965/first.jpg", "AURORA/data/something/frames/171965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper towels in front of board"}]} +{"id": "000000107058", "images": ["AURORA/data/something/frames/51744/first.jpg", "AURORA/data/something/frames/51744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper out of container"}]} +{"id": "000000107059", "images": ["AURORA/data/something/frames/53129/first.jpg", "AURORA/data/something/frames/53129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing pen"}]} +{"id": "000000107060", "images": ["AURORA/data/something/frames/176176/first.jpg", "AURORA/data/something/frames/176176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red crayon closer to blue crayon"}]} +{"id": "000000107061", "images": ["AURORA/data/something/frames/97509/first.jpg", "AURORA/data/something/frames/97509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening filing cabinet"}]} +{"id": "000000107062", "images": ["AURORA/data/something/frames/110581/first.jpg", "AURORA/data/something/frames/110581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting spectacle box up completely without letting it drop down"}]} +{"id": "000000107063", "images": ["AURORA/data/something/frames/14323/first.jpg", "AURORA/data/something/frames/14323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting hair ribbon"}]} +{"id": "000000107064", "images": ["AURORA/data/something/frames/39718/first.jpg", "AURORA/data/something/frames/39718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping crumbs off of table"}]} +{"id": "000000107065", "images": ["AURORA/data/something/frames/220068/first.jpg", "AURORA/data/something/frames/220068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking car so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107066", "images": ["AURORA/data/something/frames/205413/first.jpg", "AURORA/data/something/frames/205413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with pen on it"}]} +{"id": "000000107067", "images": ["AURORA/data/something/frames/25864/first.jpg", "AURORA/data/something/frames/25864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming notebook"}]} +{"id": "000000107068", "images": ["AURORA/data/something/frames/204280/first.jpg", "AURORA/data/something/frames/204280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a pen on it until it starts sliding down"}]} +{"id": "000000107069", "images": ["AURORA/data/something/frames/188297/first.jpg", "AURORA/data/something/frames/188297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on the edge of chair so it is not supported and falls down"}]} +{"id": "000000107070", "images": ["AURORA/data/something/frames/60121/first.jpg", "AURORA/data/something/frames/60121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a toy car colliding with a toy car and both are being deflected"}]} +{"id": "000000107071", "images": ["AURORA/data/something/frames/537/first.jpg", "AURORA/data/something/frames/537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ball and a ball so they pass each other"}]} +{"id": "000000107072", "images": ["AURORA/data/something/frames/146944/first.jpg", "AURORA/data/something/frames/146944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving handle of a lock"}]} +{"id": "000000107073", "images": ["AURORA/data/something/frames/114127/first.jpg", "AURORA/data/something/frames/114127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding newspaper"}]} +{"id": "000000107074", "images": ["AURORA/data/something/frames/181485/first.jpg", "AURORA/data/something/frames/181485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall"}]} +{"id": "000000107075", "images": ["AURORA/data/something/frames/173900/first.jpg", "AURORA/data/something/frames/173900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle off of box"}]} +{"id": "000000107076", "images": ["AURORA/data/something/frames/132965/first.jpg", "AURORA/data/something/frames/132965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a tshirt"}]} +{"id": "000000107077", "images": ["AURORA/data/something/frames/174184/first.jpg", "AURORA/data/something/frames/174184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet"}]} +{"id": "000000107078", "images": ["AURORA/data/something/frames/64907/first.jpg", "AURORA/data/something/frames/64907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking notebook and pen"}]} +{"id": "000000107079", "images": ["AURORA/data/something/frames/165916/first.jpg", "AURORA/data/something/frames/165916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin upright on the table"}]} +{"id": "000000107080", "images": ["AURORA/data/something/frames/218228/first.jpg", "AURORA/data/something/frames/218228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bowl"}]} +{"id": "000000107081", "images": ["AURORA/data/something/frames/48501/first.jpg", "AURORA/data/something/frames/48501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting nail clippers, remote and hole punch on the table"}]} +{"id": "000000107082", "images": ["AURORA/data/something/frames/90985/first.jpg", "AURORA/data/something/frames/90985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lighter upright on the table"}]} +{"id": "000000107083", "images": ["AURORA/data/something/frames/202336/first.jpg", "AURORA/data/something/frames/202336/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107084", "images": ["AURORA/data/something/frames/33053/first.jpg", "AURORA/data/something/frames/33053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a plant underneath a plate"}]} +{"id": "000000107085", "images": ["AURORA/data/something/frames/99492/first.jpg", "AURORA/data/something/frames/99492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cookies up"}]} +{"id": "000000107086", "images": ["AURORA/data/something/frames/72624/first.jpg", "AURORA/data/something/frames/72624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin onto a box"}]} +{"id": "000000107087", "images": ["AURORA/data/something/frames/219431/first.jpg", "AURORA/data/something/frames/219431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing packet with a bottle"}]} +{"id": "000000107088", "images": ["AURORA/data/something/frames/8867/first.jpg", "AURORA/data/something/frames/8867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a box upside down"}]} +{"id": "000000107089", "images": ["AURORA/data/something/frames/29040/first.jpg", "AURORA/data/something/frames/29040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a pill bottle cap"}]} +{"id": "000000107090", "images": ["AURORA/data/something/frames/18307/first.jpg", "AURORA/data/something/frames/18307/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming dog"}]} +{"id": "000000107091", "images": ["AURORA/data/something/frames/195395/first.jpg", "AURORA/data/something/frames/195395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from left to right"}]} +{"id": "000000107092", "images": ["AURORA/data/something/frames/68082/first.jpg", "AURORA/data/something/frames/68082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle of juice on the table on its side, not upright"}]} +{"id": "000000107093", "images": ["AURORA/data/something/frames/5009/first.jpg", "AURORA/data/something/frames/5009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling zipper from right to left"}]} +{"id": "000000107094", "images": ["AURORA/data/something/frames/90784/first.jpg", "AURORA/data/something/frames/90784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a water bottle into a sock"}]} +{"id": "000000107095", "images": ["AURORA/data/something/frames/48697/first.jpg", "AURORA/data/something/frames/48697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a power supply into a wall socket"}]} +{"id": "000000107096", "images": ["AURORA/data/something/frames/42843/first.jpg", "AURORA/data/something/frames/42843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a fluorescent stick so that it deforms"}]} +{"id": "000000107097", "images": ["AURORA/data/something/frames/45429/first.jpg", "AURORA/data/something/frames/45429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote and remote closer to each other"}]} +{"id": "000000107098", "images": ["AURORA/data/something/frames/159389/first.jpg", "AURORA/data/something/frames/159389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass next to jug"}]} +{"id": "000000107099", "images": ["AURORA/data/something/frames/52509/first.jpg", "AURORA/data/something/frames/52509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank down"}]} +{"id": "000000107100", "images": ["AURORA/data/something/frames/142650/first.jpg", "AURORA/data/something/frames/142650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the wallet and the remote control closer to each other"}]} +{"id": "000000107101", "images": ["AURORA/data/something/frames/209669/first.jpg", "AURORA/data/something/frames/209669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen"}]} +{"id": "000000107102", "images": ["AURORA/data/something/frames/18253/first.jpg", "AURORA/data/something/frames/18253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching ball with your camera"}]} +{"id": "000000107103", "images": ["AURORA/data/something/frames/21450/first.jpg", "AURORA/data/something/frames/21450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking tissue box so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107104", "images": ["AURORA/data/something/frames/181733/first.jpg", "AURORA/data/something/frames/181733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mouse onto binder"}]} +{"id": "000000107105", "images": ["AURORA/data/something/frames/105680/first.jpg", "AURORA/data/something/frames/105680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000107106", "images": ["AURORA/data/something/frames/18642/first.jpg", "AURORA/data/something/frames/18642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking flashdrive out of container"}]} +{"id": "000000107107", "images": ["AURORA/data/something/frames/201855/first.jpg", "AURORA/data/something/frames/201855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of chopsticks so that it separates into two pieces"}]} +{"id": "000000107108", "images": ["AURORA/data/something/frames/168646/first.jpg", "AURORA/data/something/frames/168646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote"}]} +{"id": "000000107109", "images": ["AURORA/data/something/frames/133879/first.jpg", "AURORA/data/something/frames/133879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cloth into cover phone"}]} +{"id": "000000107110", "images": ["AURORA/data/something/frames/95754/first.jpg", "AURORA/data/something/frames/95754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000107111", "images": ["AURORA/data/something/frames/32351/first.jpg", "AURORA/data/something/frames/32351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing spectacle box"}]} +{"id": "000000107112", "images": ["AURORA/data/something/frames/202209/first.jpg", "AURORA/data/something/frames/202209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coffee cup next to coffee creamer"}]} +{"id": "000000107113", "images": ["AURORA/data/something/frames/54497/first.jpg", "AURORA/data/something/frames/54497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling blocks up"}]} +{"id": "000000107114", "images": ["AURORA/data/something/frames/3668/first.jpg", "AURORA/data/something/frames/3668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bag up"}]} +{"id": "000000107115", "images": ["AURORA/data/something/frames/114025/first.jpg", "AURORA/data/something/frames/114025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb into wall plug"}]} +{"id": "000000107116", "images": ["AURORA/data/something/frames/10144/first.jpg", "AURORA/data/something/frames/10144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon into small bottle"}]} +{"id": "000000107117", "images": ["AURORA/data/something/frames/23763/first.jpg", "AURORA/data/something/frames/23763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking marker so that it falls over"}]} +{"id": "000000107118", "images": ["AURORA/data/something/frames/13276/first.jpg", "AURORA/data/something/frames/13276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a peg so that it almost falls off but doesn't"}]} +{"id": "000000107119", "images": ["AURORA/data/something/frames/43891/first.jpg", "AURORA/data/something/frames/43891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into usb port"}]} +{"id": "000000107120", "images": ["AURORA/data/something/frames/115824/first.jpg", "AURORA/data/something/frames/115824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box onto a ball so it falls down"}]} +{"id": "000000107121", "images": ["AURORA/data/something/frames/177316/first.jpg", "AURORA/data/something/frames/177316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving medicines up"}]} +{"id": "000000107122", "images": ["AURORA/data/something/frames/75505/first.jpg", "AURORA/data/something/frames/75505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking phone out of mug"}]} +{"id": "000000107123", "images": ["AURORA/data/something/frames/185053/first.jpg", "AURORA/data/something/frames/185053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote and ear phones on the table"}]} +{"id": "000000107124", "images": ["AURORA/data/something/frames/220730/first.jpg", "AURORA/data/something/frames/220730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a package with sunglasses on it"}]} +{"id": "000000107125", "images": ["AURORA/data/something/frames/145730/first.jpg", "AURORA/data/something/frames/145730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto the table"}]} +{"id": "000000107126", "images": ["AURORA/data/something/frames/34506/first.jpg", "AURORA/data/something/frames/34506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 marker pens onto brown note"}]} +{"id": "000000107127", "images": ["AURORA/data/something/frames/170403/first.jpg", "AURORA/data/something/frames/170403/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cup onto text books"}]} +{"id": "000000107128", "images": ["AURORA/data/something/frames/35818/first.jpg", "AURORA/data/something/frames/35818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding t shit"}]} +{"id": "000000107129", "images": ["AURORA/data/something/frames/59764/first.jpg", "AURORA/data/something/frames/59764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing mini tripod into camera bag"}]} +{"id": "000000107130", "images": ["AURORA/data/something/frames/70846/first.jpg", "AURORA/data/something/frames/70846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fabric"}]} +{"id": "000000107131", "images": ["AURORA/data/something/frames/150484/first.jpg", "AURORA/data/something/frames/150484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging batteries out of paper"}]} +{"id": "000000107132", "images": ["AURORA/data/something/frames/28803/first.jpg", "AURORA/data/something/frames/28803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sewing reel into plastic cup"}]} +{"id": "000000107133", "images": ["AURORA/data/something/frames/7655/first.jpg", "AURORA/data/something/frames/7655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting green toy car onto yellow clay container"}]} +{"id": "000000107134", "images": ["AURORA/data/something/frames/84237/first.jpg", "AURORA/data/something/frames/84237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107135", "images": ["AURORA/data/something/frames/104036/first.jpg", "AURORA/data/something/frames/104036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling green purse from right to left"}]} +{"id": "000000107136", "images": ["AURORA/data/something/frames/81183/first.jpg", "AURORA/data/something/frames/81183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup and candle on the table"}]} +{"id": "000000107137", "images": ["AURORA/data/something/frames/219735/first.jpg", "AURORA/data/something/frames/219735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candies on a surface"}]} +{"id": "000000107138", "images": ["AURORA/data/something/frames/173102/first.jpg", "AURORA/data/something/frames/173102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing key into pouch"}]} +{"id": "000000107139", "images": ["AURORA/data/something/frames/178220/first.jpg", "AURORA/data/something/frames/178220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000107140", "images": ["AURORA/data/something/frames/52775/first.jpg", "AURORA/data/something/frames/52775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cellphone and mouse closer to each other"}]} +{"id": "000000107141", "images": ["AURORA/data/something/frames/22017/first.jpg", "AURORA/data/something/frames/22017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle into bag"}]} +{"id": "000000107142", "images": ["AURORA/data/something/frames/45417/first.jpg", "AURORA/data/something/frames/45417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking crayon"}]} +{"id": "000000107143", "images": ["AURORA/data/something/frames/97377/first.jpg", "AURORA/data/something/frames/97377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping a plastic bag off of a bed"}]} +{"id": "000000107144", "images": ["AURORA/data/something/frames/33943/first.jpg", "AURORA/data/something/frames/33943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling green headlight from left to right"}]} +{"id": "000000107145", "images": ["AURORA/data/something/frames/113011/first.jpg", "AURORA/data/something/frames/113011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with book on it"}]} +{"id": "000000107146", "images": ["AURORA/data/something/frames/209746/first.jpg", "AURORA/data/something/frames/209746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a comb off of a box"}]} +{"id": "000000107147", "images": ["AURORA/data/something/frames/40813/first.jpg", "AURORA/data/something/frames/40813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lotion bottle up"}]} +{"id": "000000107148", "images": ["AURORA/data/something/frames/39206/first.jpg", "AURORA/data/something/frames/39206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from right to left"}]} +{"id": "000000107149", "images": ["AURORA/data/something/frames/199250/first.jpg", "AURORA/data/something/frames/199250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing closet"}]} +{"id": "000000107150", "images": ["AURORA/data/something/frames/118314/first.jpg", "AURORA/data/something/frames/118314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and stuffed toy away from each other"}]} +{"id": "000000107151", "images": ["AURORA/data/something/frames/217565/first.jpg", "AURORA/data/something/frames/217565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank down"}]} +{"id": "000000107152", "images": ["AURORA/data/something/frames/128187/first.jpg", "AURORA/data/something/frames/128187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking bowl up"}]} +{"id": "000000107153", "images": ["AURORA/data/something/frames/8828/first.jpg", "AURORA/data/something/frames/8828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses, a sticky note pad and dental floss on the table"}]} +{"id": "000000107154", "images": ["AURORA/data/something/frames/33634/first.jpg", "AURORA/data/something/frames/33634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting green toy car onto clay container"}]} +{"id": "000000107155", "images": ["AURORA/data/something/frames/130427/first.jpg", "AURORA/data/something/frames/130427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tape onto floor"}]} +{"id": "000000107156", "images": ["AURORA/data/something/frames/201096/first.jpg", "AURORA/data/something/frames/201096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107157", "images": ["AURORA/data/something/frames/166839/first.jpg", "AURORA/data/something/frames/166839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering jar with towel"}]} +{"id": "000000107158", "images": ["AURORA/data/something/frames/136838/first.jpg", "AURORA/data/something/frames/136838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening cover"}]} +{"id": "000000107159", "images": ["AURORA/data/something/frames/173321/first.jpg", "AURORA/data/something/frames/173321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000107160", "images": ["AURORA/data/something/frames/155444/first.jpg", "AURORA/data/something/frames/155444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from keys with your camera"}]} +{"id": "000000107161", "images": ["AURORA/data/something/frames/138665/first.jpg", "AURORA/data/something/frames/138665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a plastic bottle cap so that it almost falls off but doesn't"}]} +{"id": "000000107162", "images": ["AURORA/data/something/frames/52683/first.jpg", "AURORA/data/something/frames/52683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box and handphone on the table"}]} +{"id": "000000107163", "images": ["AURORA/data/something/frames/81944/first.jpg", "AURORA/data/something/frames/81944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a fridge"}]} +{"id": "000000107164", "images": ["AURORA/data/something/frames/98498/first.jpg", "AURORA/data/something/frames/98498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a notepad without letting it drop down"}]} +{"id": "000000107165", "images": ["AURORA/data/something/frames/216823/first.jpg", "AURORA/data/something/frames/216823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to orange"}]} +{"id": "000000107166", "images": ["AURORA/data/something/frames/102837/first.jpg", "AURORA/data/something/frames/102837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping candy next to magazine"}]} +{"id": "000000107167", "images": ["AURORA/data/something/frames/118865/first.jpg", "AURORA/data/something/frames/118865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting towel with wallet"}]} +{"id": "000000107168", "images": ["AURORA/data/something/frames/117360/first.jpg", "AURORA/data/something/frames/117360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000107169", "images": ["AURORA/data/something/frames/59104/first.jpg", "AURORA/data/something/frames/59104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy and toy closer to each other"}]} +{"id": "000000107170", "images": ["AURORA/data/something/frames/149632/first.jpg", "AURORA/data/something/frames/149632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling salt onto a sliced tomato"}]} +{"id": "000000107171", "images": ["AURORA/data/something/frames/123040/first.jpg", "AURORA/data/something/frames/123040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into computer"}]} +{"id": "000000107172", "images": ["AURORA/data/something/frames/163721/first.jpg", "AURORA/data/something/frames/163721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen behind wooden box"}]} +{"id": "000000107173", "images": ["AURORA/data/something/frames/173998/first.jpg", "AURORA/data/something/frames/173998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into outlet"}]} +{"id": "000000107174", "images": ["AURORA/data/something/frames/166646/first.jpg", "AURORA/data/something/frames/166646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bangle, thread and key on the table"}]} +{"id": "000000107175", "images": ["AURORA/data/something/frames/106562/first.jpg", "AURORA/data/something/frames/106562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into pc but pulling it right out as you remove your hand"}]} +{"id": "000000107176", "images": ["AURORA/data/something/frames/126014/first.jpg", "AURORA/data/something/frames/126014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking stone up"}]} +{"id": "000000107177", "images": ["AURORA/data/something/frames/202258/first.jpg", "AURORA/data/something/frames/202258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000107178", "images": ["AURORA/data/something/frames/187462/first.jpg", "AURORA/data/something/frames/187462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting clothes"}]} +{"id": "000000107179", "images": ["AURORA/data/something/frames/25654/first.jpg", "AURORA/data/something/frames/25654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green colour pen away from blue colour pen"}]} +{"id": "000000107180", "images": ["AURORA/data/something/frames/87997/first.jpg", "AURORA/data/something/frames/87997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy truck from right to left"}]} +{"id": "000000107181", "images": ["AURORA/data/something/frames/125918/first.jpg", "AURORA/data/something/frames/125918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000107182", "images": ["AURORA/data/something/frames/203297/first.jpg", "AURORA/data/something/frames/203297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tissues so that it deforms"}]} +{"id": "000000107183", "images": ["AURORA/data/something/frames/55396/first.jpg", "AURORA/data/something/frames/55396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote onto plate"}]} +{"id": "000000107184", "images": ["AURORA/data/something/frames/183205/first.jpg", "AURORA/data/something/frames/183205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting envelope in front of card"}]} +{"id": "000000107185", "images": ["AURORA/data/something/frames/166629/first.jpg", "AURORA/data/something/frames/166629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming water bottle"}]} +{"id": "000000107186", "images": ["AURORA/data/something/frames/122999/first.jpg", "AURORA/data/something/frames/122999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing post it note into two pieces"}]} +{"id": "000000107187", "images": ["AURORA/data/something/frames/115281/first.jpg", "AURORA/data/something/frames/115281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering an apple"}]} +{"id": "000000107188", "images": ["AURORA/data/something/frames/196295/first.jpg", "AURORA/data/something/frames/196295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a towel wet until water comes out"}]} +{"id": "000000107189", "images": ["AURORA/data/something/frames/35459/first.jpg", "AURORA/data/something/frames/35459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering chair with blanket"}]} +{"id": "000000107190", "images": ["AURORA/data/something/frames/129865/first.jpg", "AURORA/data/something/frames/129865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107191", "images": ["AURORA/data/something/frames/66066/first.jpg", "AURORA/data/something/frames/66066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to paper"}]} +{"id": "000000107192", "images": ["AURORA/data/something/frames/141983/first.jpg", "AURORA/data/something/frames/141983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tongue cleaner so that it deforms"}]} +{"id": "000000107193", "images": ["AURORA/data/something/frames/113628/first.jpg", "AURORA/data/something/frames/113628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107194", "images": ["AURORA/data/something/frames/131492/first.jpg", "AURORA/data/something/frames/131492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing scissor into bucket"}]} +{"id": "000000107195", "images": ["AURORA/data/something/frames/104274/first.jpg", "AURORA/data/something/frames/104274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting power bank and head charger on the table"}]} +{"id": "000000107196", "images": ["AURORA/data/something/frames/104350/first.jpg", "AURORA/data/something/frames/104350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning inhaler upside down"}]} +{"id": "000000107197", "images": ["AURORA/data/something/frames/99245/first.jpg", "AURORA/data/something/frames/99245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card behind a cup"}]} +{"id": "000000107198", "images": ["AURORA/data/something/frames/41000/first.jpg", "AURORA/data/something/frames/41000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pan with a lid"}]} +{"id": "000000107199", "images": ["AURORA/data/something/frames/179445/first.jpg", "AURORA/data/something/frames/179445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote next to pillow"}]} +{"id": "000000107200", "images": ["AURORA/data/something/frames/140250/first.jpg", "AURORA/data/something/frames/140250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic tin up"}]} +{"id": "000000107201", "images": ["AURORA/data/something/frames/163441/first.jpg", "AURORA/data/something/frames/163441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from left to right"}]} +{"id": "000000107202", "images": ["AURORA/data/something/frames/213980/first.jpg", "AURORA/data/something/frames/213980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting tv with pen"}]} +{"id": "000000107203", "images": ["AURORA/data/something/frames/84816/first.jpg", "AURORA/data/something/frames/84816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper"}]} +{"id": "000000107204", "images": ["AURORA/data/something/frames/183188/first.jpg", "AURORA/data/something/frames/183188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000107205", "images": ["AURORA/data/something/frames/144568/first.jpg", "AURORA/data/something/frames/144568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of wipe bottle"}]} +{"id": "000000107206", "images": ["AURORA/data/something/frames/92333/first.jpg", "AURORA/data/something/frames/92333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cap to marker"}]} +{"id": "000000107207", "images": ["AURORA/data/something/frames/76714/first.jpg", "AURORA/data/something/frames/76714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard into two pieces"}]} +{"id": "000000107208", "images": ["AURORA/data/something/frames/220300/first.jpg", "AURORA/data/something/frames/220300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto soap"}]} +{"id": "000000107209", "images": ["AURORA/data/something/frames/18481/first.jpg", "AURORA/data/something/frames/18481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling glasses from left to right"}]} +{"id": "000000107210", "images": ["AURORA/data/something/frames/11639/first.jpg", "AURORA/data/something/frames/11639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffed animal being deflected from door"}]} +{"id": "000000107211", "images": ["AURORA/data/something/frames/50697/first.jpg", "AURORA/data/something/frames/50697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking three coins"}]} +{"id": "000000107212", "images": ["AURORA/data/something/frames/100880/first.jpg", "AURORA/data/something/frames/100880/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking stone up"}]} +{"id": "000000107213", "images": ["AURORA/data/something/frames/109218/first.jpg", "AURORA/data/something/frames/109218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting specs next to wire"}]} +{"id": "000000107214", "images": ["AURORA/data/something/frames/70147/first.jpg", "AURORA/data/something/frames/70147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening scissors"}]} +{"id": "000000107215", "images": ["AURORA/data/something/frames/56969/first.jpg", "AURORA/data/something/frames/56969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting scarf"}]} +{"id": "000000107216", "images": ["AURORA/data/something/frames/109945/first.jpg", "AURORA/data/something/frames/109945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy tiger and toy elephant so they collide with each other"}]} +{"id": "000000107217", "images": ["AURORA/data/something/frames/199524/first.jpg", "AURORA/data/something/frames/199524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug into a sink"}]} +{"id": "000000107218", "images": ["AURORA/data/something/frames/79967/first.jpg", "AURORA/data/something/frames/79967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a phone with paper"}]} +{"id": "000000107219", "images": ["AURORA/data/something/frames/151522/first.jpg", "AURORA/data/something/frames/151522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing towel into plastic bag"}]} +{"id": "000000107220", "images": ["AURORA/data/something/frames/188886/first.jpg", "AURORA/data/something/frames/188886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning green cup upside down"}]} +{"id": "000000107221", "images": ["AURORA/data/something/frames/119020/first.jpg", "AURORA/data/something/frames/119020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker"}]} +{"id": "000000107222", "images": ["AURORA/data/something/frames/87773/first.jpg", "AURORA/data/something/frames/87773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting card"}]} +{"id": "000000107223", "images": ["AURORA/data/something/frames/33184/first.jpg", "AURORA/data/something/frames/33184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving knife up"}]} +{"id": "000000107224", "images": ["AURORA/data/something/frames/157192/first.jpg", "AURORA/data/something/frames/157192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting t shirt"}]} +{"id": "000000107225", "images": ["AURORA/data/something/frames/49107/first.jpg", "AURORA/data/something/frames/49107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping an object onto the floor"}]} +{"id": "000000107226", "images": ["AURORA/data/something/frames/165705/first.jpg", "AURORA/data/something/frames/165705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a napkin from right to left"}]} +{"id": "000000107227", "images": ["AURORA/data/something/frames/134861/first.jpg", "AURORA/data/something/frames/134861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing selfie stick so that it almost falls off but doesn't"}]} +{"id": "000000107228", "images": ["AURORA/data/something/frames/6911/first.jpg", "AURORA/data/something/frames/6911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a toy car being deflected from a jar"}]} +{"id": "000000107229", "images": ["AURORA/data/something/frames/7955/first.jpg", "AURORA/data/something/frames/7955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plastic tin out of plastic glass"}]} +{"id": "000000107230", "images": ["AURORA/data/something/frames/36285/first.jpg", "AURORA/data/something/frames/36285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling dish towels up"}]} +{"id": "000000107231", "images": ["AURORA/data/something/frames/71858/first.jpg", "AURORA/data/something/frames/71858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking bucket up"}]} +{"id": "000000107232", "images": ["AURORA/data/something/frames/140211/first.jpg", "AURORA/data/something/frames/140211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000107233", "images": ["AURORA/data/something/frames/115778/first.jpg", "AURORA/data/something/frames/115778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting block onto plate"}]} +{"id": "000000107234", "images": ["AURORA/data/something/frames/51796/first.jpg", "AURORA/data/something/frames/51796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving thimble down"}]} +{"id": "000000107235", "images": ["AURORA/data/something/frames/107239/first.jpg", "AURORA/data/something/frames/107239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling coins up"}]} +{"id": "000000107236", "images": ["AURORA/data/something/frames/26033/first.jpg", "AURORA/data/something/frames/26033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin into pocket"}]} +{"id": "000000107237", "images": ["AURORA/data/something/frames/184604/first.jpg", "AURORA/data/something/frames/184604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into swicth"}]} +{"id": "000000107238", "images": ["AURORA/data/something/frames/61572/first.jpg", "AURORA/data/something/frames/61572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting diaper"}]} +{"id": "000000107239", "images": ["AURORA/data/something/frames/106796/first.jpg", "AURORA/data/something/frames/106796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse on a surface"}]} +{"id": "000000107240", "images": ["AURORA/data/something/frames/57524/first.jpg", "AURORA/data/something/frames/57524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of car"}]} +{"id": "000000107241", "images": ["AURORA/data/something/frames/59338/first.jpg", "AURORA/data/something/frames/59338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a bottle closer to each other"}]} +{"id": "000000107242", "images": ["AURORA/data/something/frames/45734/first.jpg", "AURORA/data/something/frames/45734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scotch tape from right to left"}]} +{"id": "000000107243", "images": ["AURORA/data/something/frames/106844/first.jpg", "AURORA/data/something/frames/106844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning pink toothbrush case upside down"}]} +{"id": "000000107244", "images": ["AURORA/data/something/frames/201371/first.jpg", "AURORA/data/something/frames/201371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000107245", "images": ["AURORA/data/something/frames/188230/first.jpg", "AURORA/data/something/frames/188230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000107246", "images": ["AURORA/data/something/frames/48736/first.jpg", "AURORA/data/something/frames/48736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin onto a rubiks cube"}]} +{"id": "000000107247", "images": ["AURORA/data/something/frames/38513/first.jpg", "AURORA/data/something/frames/38513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white kercief from behind of diary"}]} +{"id": "000000107248", "images": ["AURORA/data/something/frames/56237/first.jpg", "AURORA/data/something/frames/56237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a small bag over"}]} +{"id": "000000107249", "images": ["AURORA/data/something/frames/29504/first.jpg", "AURORA/data/something/frames/29504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 shot glasses"}]} +{"id": "000000107250", "images": ["AURORA/data/something/frames/111682/first.jpg", "AURORA/data/something/frames/111682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote control behind wallet"}]} +{"id": "000000107251", "images": ["AURORA/data/something/frames/126279/first.jpg", "AURORA/data/something/frames/126279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding bag"}]} +{"id": "000000107252", "images": ["AURORA/data/something/frames/54107/first.jpg", "AURORA/data/something/frames/54107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping water bottle onto bed"}]} +{"id": "000000107253", "images": ["AURORA/data/something/frames/174342/first.jpg", "AURORA/data/something/frames/174342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of sponge"}]} +{"id": "000000107254", "images": ["AURORA/data/something/frames/178329/first.jpg", "AURORA/data/something/frames/178329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler upright on the table"}]} +{"id": "000000107255", "images": ["AURORA/data/something/frames/19756/first.jpg", "AURORA/data/something/frames/19756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending ruler so that it deforms"}]} +{"id": "000000107256", "images": ["AURORA/data/something/frames/116041/first.jpg", "AURORA/data/something/frames/116041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000107257", "images": ["AURORA/data/something/frames/99070/first.jpg", "AURORA/data/something/frames/99070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon upright on the table, so it falls on its side"}]} +{"id": "000000107258", "images": ["AURORA/data/something/frames/205466/first.jpg", "AURORA/data/something/frames/205466/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bangle closer to hard drive"}]} +{"id": "000000107259", "images": ["AURORA/data/something/frames/147217/first.jpg", "AURORA/data/something/frames/147217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box of juice onto a box of juice"}]} +{"id": "000000107260", "images": ["AURORA/data/something/frames/80743/first.jpg", "AURORA/data/something/frames/80743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bucket lid so that it almost falls off but doesn't"}]} +{"id": "000000107261", "images": ["AURORA/data/something/frames/15710/first.jpg", "AURORA/data/something/frames/15710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ring from right to left"}]} +{"id": "000000107262", "images": ["AURORA/data/something/frames/92452/first.jpg", "AURORA/data/something/frames/92452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting black umbrella on a surface"}]} +{"id": "000000107263", "images": ["AURORA/data/something/frames/2791/first.jpg", "AURORA/data/something/frames/2791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one mobile of many other"}]} +{"id": "000000107264", "images": ["AURORA/data/something/frames/158614/first.jpg", "AURORA/data/something/frames/158614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spray and bowl away from each other"}]} +{"id": "000000107265", "images": ["AURORA/data/something/frames/123898/first.jpg", "AURORA/data/something/frames/123898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling the purse onto the towel"}]} +{"id": "000000107266", "images": ["AURORA/data/something/frames/47325/first.jpg", "AURORA/data/something/frames/47325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cup from left to right"}]} +{"id": "000000107267", "images": ["AURORA/data/something/frames/161313/first.jpg", "AURORA/data/something/frames/161313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening table drawer"}]} +{"id": "000000107268", "images": ["AURORA/data/something/frames/99001/first.jpg", "AURORA/data/something/frames/99001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book"}]} +{"id": "000000107269", "images": ["AURORA/data/something/frames/56258/first.jpg", "AURORA/data/something/frames/56258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending crayon until it breaks"}]} +{"id": "000000107270", "images": ["AURORA/data/something/frames/210640/first.jpg", "AURORA/data/something/frames/210640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen in front of a book"}]} +{"id": "000000107271", "images": ["AURORA/data/something/frames/130772/first.jpg", "AURORA/data/something/frames/130772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling honey onto plate"}]} +{"id": "000000107272", "images": ["AURORA/data/something/frames/217772/first.jpg", "AURORA/data/something/frames/217772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a watch with a cap"}]} +{"id": "000000107273", "images": ["AURORA/data/something/frames/47421/first.jpg", "AURORA/data/something/frames/47421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball onto a beanbag"}]} +{"id": "000000107274", "images": ["AURORA/data/something/frames/52415/first.jpg", "AURORA/data/something/frames/52415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a container on the edge of a gle so it is not supported and falls down"}]} +{"id": "000000107275", "images": ["AURORA/data/something/frames/121949/first.jpg", "AURORA/data/something/frames/121949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothpaste closer to a tap"}]} +{"id": "000000107276", "images": ["AURORA/data/something/frames/172650/first.jpg", "AURORA/data/something/frames/172650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape onto box"}]} +{"id": "000000107277", "images": ["AURORA/data/something/frames/133673/first.jpg", "AURORA/data/something/frames/133673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying coin in hand towel"}]} +{"id": "000000107278", "images": ["AURORA/data/something/frames/189636/first.jpg", "AURORA/data/something/frames/189636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper out of printer"}]} +{"id": "000000107279", "images": ["AURORA/data/something/frames/54897/first.jpg", "AURORA/data/something/frames/54897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000107280", "images": ["AURORA/data/something/frames/190121/first.jpg", "AURORA/data/something/frames/190121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding napkin"}]} +{"id": "000000107281", "images": ["AURORA/data/something/frames/91326/first.jpg", "AURORA/data/something/frames/91326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping box onto floor"}]} +{"id": "000000107282", "images": ["AURORA/data/something/frames/128687/first.jpg", "AURORA/data/something/frames/128687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to wristwatch"}]} +{"id": "000000107283", "images": ["AURORA/data/something/frames/51645/first.jpg", "AURORA/data/something/frames/51645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bottle with half onnion on it"}]} +{"id": "000000107284", "images": ["AURORA/data/something/frames/77290/first.jpg", "AURORA/data/something/frames/77290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging iphone cord into electric socket but pulling it right out as you remove your hand"}]} +{"id": "000000107285", "images": ["AURORA/data/something/frames/204269/first.jpg", "AURORA/data/something/frames/204269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering orange color pencil sharpner with wallet"}]} +{"id": "000000107286", "images": ["AURORA/data/something/frames/190947/first.jpg", "AURORA/data/something/frames/190947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with bread on it"}]} +{"id": "000000107287", "images": ["AURORA/data/something/frames/33117/first.jpg", "AURORA/data/something/frames/33117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping ashtray with cigarette butt over, so cigarette butt falls out"}]} +{"id": "000000107288", "images": ["AURORA/data/something/frames/141757/first.jpg", "AURORA/data/something/frames/141757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup and plastic bottle closer to each other"}]} +{"id": "000000107289", "images": ["AURORA/data/something/frames/139164/first.jpg", "AURORA/data/something/frames/139164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: something colliding with something and both are being deflected"}]} +{"id": "000000107290", "images": ["AURORA/data/something/frames/72485/first.jpg", "AURORA/data/something/frames/72485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000107291", "images": ["AURORA/data/something/frames/169313/first.jpg", "AURORA/data/something/frames/169313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging wall charger into socket"}]} +{"id": "000000107292", "images": ["AURORA/data/something/frames/104987/first.jpg", "AURORA/data/something/frames/104987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pair of socks into shoe"}]} +{"id": "000000107293", "images": ["AURORA/data/something/frames/220644/first.jpg", "AURORA/data/something/frames/220644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a sweatshirt into a bag"}]} +{"id": "000000107294", "images": ["AURORA/data/something/frames/126549/first.jpg", "AURORA/data/something/frames/126549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000107295", "images": ["AURORA/data/something/frames/156357/first.jpg", "AURORA/data/something/frames/156357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping clip onto container"}]} +{"id": "000000107296", "images": ["AURORA/data/something/frames/156624/first.jpg", "AURORA/data/something/frames/156624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking photo from wardrobe"}]} +{"id": "000000107297", "images": ["AURORA/data/something/frames/124542/first.jpg", "AURORA/data/something/frames/124542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottel"}]} +{"id": "000000107298", "images": ["AURORA/data/something/frames/118632/first.jpg", "AURORA/data/something/frames/118632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping coffee up with scoop"}]} +{"id": "000000107299", "images": ["AURORA/data/something/frames/3103/first.jpg", "AURORA/data/something/frames/3103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pebble out of cookie box"}]} +{"id": "000000107300", "images": ["AURORA/data/something/frames/108021/first.jpg", "AURORA/data/something/frames/108021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sketch pen up"}]} +{"id": "000000107301", "images": ["AURORA/data/something/frames/209960/first.jpg", "AURORA/data/something/frames/209960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a container upright on the table"}]} +{"id": "000000107302", "images": ["AURORA/data/something/frames/91382/first.jpg", "AURORA/data/something/frames/91382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving chocolate towards the camera"}]} +{"id": "000000107303", "images": ["AURORA/data/something/frames/101440/first.jpg", "AURORA/data/something/frames/101440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something and something closer to each other"}]} +{"id": "000000107304", "images": ["AURORA/data/something/frames/95067/first.jpg", "AURORA/data/something/frames/95067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 punching machines onto blue note"}]} +{"id": "000000107305", "images": ["AURORA/data/something/frames/40810/first.jpg", "AURORA/data/something/frames/40810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon behind remote"}]} +{"id": "000000107306", "images": ["AURORA/data/something/frames/121183/first.jpg", "AURORA/data/something/frames/121183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000107307", "images": ["AURORA/data/something/frames/170725/first.jpg", "AURORA/data/something/frames/170725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper towel"}]} +{"id": "000000107308", "images": ["AURORA/data/something/frames/210991/first.jpg", "AURORA/data/something/frames/210991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cable cord"}]} +{"id": "000000107309", "images": ["AURORA/data/something/frames/174797/first.jpg", "AURORA/data/something/frames/174797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper next to box"}]} +{"id": "000000107310", "images": ["AURORA/data/something/frames/84919/first.jpg", "AURORA/data/something/frames/84919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing crayon into crayon box"}]} +{"id": "000000107311", "images": ["AURORA/data/something/frames/132599/first.jpg", "AURORA/data/something/frames/132599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tree branch down"}]} +{"id": "000000107312", "images": ["AURORA/data/something/frames/15944/first.jpg", "AURORA/data/something/frames/15944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pin"}]} +{"id": "000000107313", "images": ["AURORA/data/something/frames/140156/first.jpg", "AURORA/data/something/frames/140156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000107314", "images": ["AURORA/data/something/frames/52789/first.jpg", "AURORA/data/something/frames/52789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000107315", "images": ["AURORA/data/something/frames/125021/first.jpg", "AURORA/data/something/frames/125021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tape with a cup"}]} +{"id": "000000107316", "images": ["AURORA/data/something/frames/26111/first.jpg", "AURORA/data/something/frames/26111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 glasses"}]} +{"id": "000000107317", "images": ["AURORA/data/something/frames/197265/first.jpg", "AURORA/data/something/frames/197265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book similar to other books that are already on the table"}]} +{"id": "000000107318", "images": ["AURORA/data/something/frames/193353/first.jpg", "AURORA/data/something/frames/193353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pushpins"}]} +{"id": "000000107319", "images": ["AURORA/data/something/frames/68476/first.jpg", "AURORA/data/something/frames/68476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with book on it"}]} +{"id": "000000107320", "images": ["AURORA/data/something/frames/220420/first.jpg", "AURORA/data/something/frames/220420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon onto stove"}]} +{"id": "000000107321", "images": ["AURORA/data/something/frames/220554/first.jpg", "AURORA/data/something/frames/220554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting watch and pen on the table"}]} +{"id": "000000107322", "images": ["AURORA/data/something/frames/219646/first.jpg", "AURORA/data/something/frames/219646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with plate"}]} +{"id": "000000107323", "images": ["AURORA/data/something/frames/127344/first.jpg", "AURORA/data/something/frames/127344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a water bottle over"}]} +{"id": "000000107324", "images": ["AURORA/data/something/frames/45657/first.jpg", "AURORA/data/something/frames/45657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking plastic bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107325", "images": ["AURORA/data/something/frames/178448/first.jpg", "AURORA/data/something/frames/178448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting ecig up completely without letting it drop down"}]} +{"id": "000000107326", "images": ["AURORA/data/something/frames/122733/first.jpg", "AURORA/data/something/frames/122733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading cream cheese onto bread"}]} +{"id": "000000107327", "images": ["AURORA/data/something/frames/118117/first.jpg", "AURORA/data/something/frames/118117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon across a surface without it falling down"}]} +{"id": "000000107328", "images": ["AURORA/data/something/frames/209276/first.jpg", "AURORA/data/something/frames/209276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000107329", "images": ["AURORA/data/something/frames/189157/first.jpg", "AURORA/data/something/frames/189157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting mouse pad with mouse on it"}]} +{"id": "000000107330", "images": ["AURORA/data/something/frames/101664/first.jpg", "AURORA/data/something/frames/101664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing medicine bottle"}]} +{"id": "000000107331", "images": ["AURORA/data/something/frames/43682/first.jpg", "AURORA/data/something/frames/43682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping mouse into glass"}]} +{"id": "000000107332", "images": ["AURORA/data/something/frames/48401/first.jpg", "AURORA/data/something/frames/48401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into jar"}]} +{"id": "000000107333", "images": ["AURORA/data/something/frames/100011/first.jpg", "AURORA/data/something/frames/100011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothing up"}]} +{"id": "000000107334", "images": ["AURORA/data/something/frames/101982/first.jpg", "AURORA/data/something/frames/101982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting kaugummi-packung on a surface"}]} +{"id": "000000107335", "images": ["AURORA/data/something/frames/176593/first.jpg", "AURORA/data/something/frames/176593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a jar"}]} +{"id": "000000107336", "images": ["AURORA/data/something/frames/98601/first.jpg", "AURORA/data/something/frames/98601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a bowl with a book on it"}]} +{"id": "000000107337", "images": ["AURORA/data/something/frames/42769/first.jpg", "AURORA/data/something/frames/42769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a paint brush upright on the table, so it falls on its side"}]} +{"id": "000000107338", "images": ["AURORA/data/something/frames/61339/first.jpg", "AURORA/data/something/frames/61339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper towel just a little bit"}]} +{"id": "000000107339", "images": ["AURORA/data/something/frames/127289/first.jpg", "AURORA/data/something/frames/127289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing papier into two pieces"}]} +{"id": "000000107340", "images": ["AURORA/data/something/frames/159271/first.jpg", "AURORA/data/something/frames/159271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting doorknob"}]} +{"id": "000000107341", "images": ["AURORA/data/something/frames/187372/first.jpg", "AURORA/data/something/frames/187372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of something without letting it drop down"}]} +{"id": "000000107342", "images": ["AURORA/data/something/frames/152106/first.jpg", "AURORA/data/something/frames/152106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box onto prayer book"}]} +{"id": "000000107343", "images": ["AURORA/data/something/frames/3026/first.jpg", "AURORA/data/something/frames/3026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cord into laptop"}]} +{"id": "000000107344", "images": ["AURORA/data/something/frames/99784/first.jpg", "AURORA/data/something/frames/99784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen next to the other pen on the table"}]} +{"id": "000000107345", "images": ["AURORA/data/something/frames/131363/first.jpg", "AURORA/data/something/frames/131363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ball with broom"}]} +{"id": "000000107346", "images": ["AURORA/data/something/frames/115961/first.jpg", "AURORA/data/something/frames/115961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000107347", "images": ["AURORA/data/something/frames/37426/first.jpg", "AURORA/data/something/frames/37426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000107348", "images": ["AURORA/data/something/frames/54932/first.jpg", "AURORA/data/something/frames/54932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging something into something"}]} +{"id": "000000107349", "images": ["AURORA/data/something/frames/103631/first.jpg", "AURORA/data/something/frames/103631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming landscaping"}]} +{"id": "000000107350", "images": ["AURORA/data/something/frames/159644/first.jpg", "AURORA/data/something/frames/159644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a glass with pens over, so pens falls out"}]} +{"id": "000000107351", "images": ["AURORA/data/something/frames/40489/first.jpg", "AURORA/data/something/frames/40489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000107352", "images": ["AURORA/data/something/frames/71001/first.jpg", "AURORA/data/something/frames/71001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a wallet"}]} +{"id": "000000107353", "images": ["AURORA/data/something/frames/166311/first.jpg", "AURORA/data/something/frames/166311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing jar"}]} +{"id": "000000107354", "images": ["AURORA/data/something/frames/91655/first.jpg", "AURORA/data/something/frames/91655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107355", "images": ["AURORA/data/something/frames/24199/first.jpg", "AURORA/data/something/frames/24199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a pen"}]} +{"id": "000000107356", "images": ["AURORA/data/something/frames/25490/first.jpg", "AURORA/data/something/frames/25490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box of tea"}]} +{"id": "000000107357", "images": ["AURORA/data/something/frames/108982/first.jpg", "AURORA/data/something/frames/108982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a banana onto a packet"}]} +{"id": "000000107358", "images": ["AURORA/data/something/frames/26614/first.jpg", "AURORA/data/something/frames/26614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering lamp with blanket"}]} +{"id": "000000107359", "images": ["AURORA/data/something/frames/179122/first.jpg", "AURORA/data/something/frames/179122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle in front of juicer"}]} +{"id": "000000107360", "images": ["AURORA/data/something/frames/187901/first.jpg", "AURORA/data/something/frames/187901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing juicer cap"}]} +{"id": "000000107361", "images": ["AURORA/data/something/frames/46159/first.jpg", "AURORA/data/something/frames/46159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book upright on the table"}]} +{"id": "000000107362", "images": ["AURORA/data/something/frames/71529/first.jpg", "AURORA/data/something/frames/71529/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000107363", "images": ["AURORA/data/something/frames/129790/first.jpg", "AURORA/data/something/frames/129790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key up"}]} +{"id": "000000107364", "images": ["AURORA/data/something/frames/75918/first.jpg", "AURORA/data/something/frames/75918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking soda can"}]} +{"id": "000000107365", "images": ["AURORA/data/something/frames/89329/first.jpg", "AURORA/data/something/frames/89329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing pink paper just a little bit"}]} +{"id": "000000107366", "images": ["AURORA/data/something/frames/168785/first.jpg", "AURORA/data/something/frames/168785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling jar from right to left"}]} +{"id": "000000107367", "images": ["AURORA/data/something/frames/195901/first.jpg", "AURORA/data/something/frames/195901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a banana with baking tray"}]} +{"id": "000000107368", "images": ["AURORA/data/something/frames/177797/first.jpg", "AURORA/data/something/frames/177797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper"}]} +{"id": "000000107369", "images": ["AURORA/data/something/frames/127867/first.jpg", "AURORA/data/something/frames/127867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a tablet computer from behind of speakers"}]} +{"id": "000000107370", "images": ["AURORA/data/something/frames/50957/first.jpg", "AURORA/data/something/frames/50957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pencase closer to a calculator"}]} +{"id": "000000107371", "images": ["AURORA/data/something/frames/149099/first.jpg", "AURORA/data/something/frames/149099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker next to nail file"}]} +{"id": "000000107372", "images": ["AURORA/data/something/frames/136341/first.jpg", "AURORA/data/something/frames/136341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 pens onto a desk"}]} +{"id": "000000107373", "images": ["AURORA/data/something/frames/106434/first.jpg", "AURORA/data/something/frames/106434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a calculator, paper weight and pen on the table"}]} +{"id": "000000107374", "images": ["AURORA/data/something/frames/77129/first.jpg", "AURORA/data/something/frames/77129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding blanket"}]} +{"id": "000000107375", "images": ["AURORA/data/something/frames/135839/first.jpg", "AURORA/data/something/frames/135839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cup into bag"}]} +{"id": "000000107376", "images": ["AURORA/data/something/frames/187615/first.jpg", "AURORA/data/something/frames/187615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tube out of box"}]} +{"id": "000000107377", "images": ["AURORA/data/something/frames/132531/first.jpg", "AURORA/data/something/frames/132531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring mike's hard lemonade out of bottle"}]} +{"id": "000000107378", "images": ["AURORA/data/something/frames/27323/first.jpg", "AURORA/data/something/frames/27323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon underneath napkin"}]} +{"id": "000000107379", "images": ["AURORA/data/something/frames/33894/first.jpg", "AURORA/data/something/frames/33894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of tissue"}]} +{"id": "000000107380", "images": ["AURORA/data/something/frames/56852/first.jpg", "AURORA/data/something/frames/56852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a coin with an envelope"}]} +{"id": "000000107381", "images": ["AURORA/data/something/frames/129978/first.jpg", "AURORA/data/something/frames/129978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cat and cube closer to each other"}]} +{"id": "000000107382", "images": ["AURORA/data/something/frames/28913/first.jpg", "AURORA/data/something/frames/28913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ruler in front of socks"}]} +{"id": "000000107383", "images": ["AURORA/data/something/frames/95929/first.jpg", "AURORA/data/something/frames/95929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissor away from tool"}]} +{"id": "000000107384", "images": ["AURORA/data/something/frames/129039/first.jpg", "AURORA/data/something/frames/129039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sugar container closer to tomato"}]} +{"id": "000000107385", "images": ["AURORA/data/something/frames/213177/first.jpg", "AURORA/data/something/frames/213177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pendrive with other pendrives"}]} +{"id": "000000107386", "images": ["AURORA/data/something/frames/181013/first.jpg", "AURORA/data/something/frames/181013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning salt upside down"}]} +{"id": "000000107387", "images": ["AURORA/data/something/frames/140540/first.jpg", "AURORA/data/something/frames/140540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting balm onto mobile"}]} +{"id": "000000107388", "images": ["AURORA/data/something/frames/87369/first.jpg", "AURORA/data/something/frames/87369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shoe box with book"}]} +{"id": "000000107389", "images": ["AURORA/data/something/frames/142111/first.jpg", "AURORA/data/something/frames/142111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter onto candle"}]} +{"id": "000000107390", "images": ["AURORA/data/something/frames/129889/first.jpg", "AURORA/data/something/frames/129889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107391", "images": ["AURORA/data/something/frames/89291/first.jpg", "AURORA/data/something/frames/89291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening wallet"}]} +{"id": "000000107392", "images": ["AURORA/data/something/frames/135982/first.jpg", "AURORA/data/something/frames/135982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000107393", "images": ["AURORA/data/something/frames/83504/first.jpg", "AURORA/data/something/frames/83504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pin onto a container"}]} +{"id": "000000107394", "images": ["AURORA/data/something/frames/40718/first.jpg", "AURORA/data/something/frames/40718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking lidded cup out of container"}]} +{"id": "000000107395", "images": ["AURORA/data/something/frames/203120/first.jpg", "AURORA/data/something/frames/203120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mango, revealing dice behind"}]} +{"id": "000000107396", "images": ["AURORA/data/something/frames/174519/first.jpg", "AURORA/data/something/frames/174519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching soda can with your camera"}]} +{"id": "000000107397", "images": ["AURORA/data/something/frames/75587/first.jpg", "AURORA/data/something/frames/75587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a sheet of paper into two pieces"}]} +{"id": "000000107398", "images": ["AURORA/data/something/frames/183833/first.jpg", "AURORA/data/something/frames/183833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000107399", "images": ["AURORA/data/something/frames/173098/first.jpg", "AURORA/data/something/frames/173098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wristlet, luggage tag and hat on the table"}]} +{"id": "000000107400", "images": ["AURORA/data/something/frames/99514/first.jpg", "AURORA/data/something/frames/99514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto sink"}]} +{"id": "000000107401", "images": ["AURORA/data/something/frames/140929/first.jpg", "AURORA/data/something/frames/140929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000107402", "images": ["AURORA/data/something/frames/61837/first.jpg", "AURORA/data/something/frames/61837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000107403", "images": ["AURORA/data/something/frames/123134/first.jpg", "AURORA/data/something/frames/123134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger and pendrive away from each other"}]} +{"id": "000000107404", "images": ["AURORA/data/something/frames/149879/first.jpg", "AURORA/data/something/frames/149879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wheat of plate wheat"}]} +{"id": "000000107405", "images": ["AURORA/data/something/frames/18343/first.jpg", "AURORA/data/something/frames/18343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting binder clip similar to other binder clips that are already on the table"}]} +{"id": "000000107406", "images": ["AURORA/data/something/frames/217420/first.jpg", "AURORA/data/something/frames/217420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening door"}]} +{"id": "000000107407", "images": ["AURORA/data/something/frames/143924/first.jpg", "AURORA/data/something/frames/143924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a napkin, a box and a charger on the table"}]} +{"id": "000000107408", "images": ["AURORA/data/something/frames/174813/first.jpg", "AURORA/data/something/frames/174813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of something so that it gets stretched"}]} +{"id": "000000107409", "images": ["AURORA/data/something/frames/112463/first.jpg", "AURORA/data/something/frames/112463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball down"}]} +{"id": "000000107410", "images": ["AURORA/data/something/frames/126450/first.jpg", "AURORA/data/something/frames/126450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving vape away from wallet"}]} +{"id": "000000107411", "images": ["AURORA/data/something/frames/127505/first.jpg", "AURORA/data/something/frames/127505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107412", "images": ["AURORA/data/something/frames/112846/first.jpg", "AURORA/data/something/frames/112846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching calculator with your camera"}]} +{"id": "000000107413", "images": ["AURORA/data/something/frames/38394/first.jpg", "AURORA/data/something/frames/38394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lid onto a pot"}]} +{"id": "000000107414", "images": ["AURORA/data/something/frames/63033/first.jpg", "AURORA/data/something/frames/63033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into glass"}]} +{"id": "000000107415", "images": ["AURORA/data/something/frames/146621/first.jpg", "AURORA/data/something/frames/146621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing newspaper just a little bit"}]} +{"id": "000000107416", "images": ["AURORA/data/something/frames/132169/first.jpg", "AURORA/data/something/frames/132169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling hand kercief out of pouch"}]} +{"id": "000000107417", "images": ["AURORA/data/something/frames/195781/first.jpg", "AURORA/data/something/frames/195781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding wallet"}]} +{"id": "000000107418", "images": ["AURORA/data/something/frames/50173/first.jpg", "AURORA/data/something/frames/50173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming curtains"}]} +{"id": "000000107419", "images": ["AURORA/data/something/frames/127345/first.jpg", "AURORA/data/something/frames/127345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting headset with paper on it"}]} +{"id": "000000107420", "images": ["AURORA/data/something/frames/48029/first.jpg", "AURORA/data/something/frames/48029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000107421", "images": ["AURORA/data/something/frames/96691/first.jpg", "AURORA/data/something/frames/96691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of cards so the stack collapses"}]} +{"id": "000000107422", "images": ["AURORA/data/something/frames/165214/first.jpg", "AURORA/data/something/frames/165214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving comb down"}]} +{"id": "000000107423", "images": ["AURORA/data/something/frames/67898/first.jpg", "AURORA/data/something/frames/67898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box so that it almost falls off but doesn't"}]} +{"id": "000000107424", "images": ["AURORA/data/something/frames/176204/first.jpg", "AURORA/data/something/frames/176204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of the glasses on the table"}]} +{"id": "000000107425", "images": ["AURORA/data/something/frames/103655/first.jpg", "AURORA/data/something/frames/103655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000107426", "images": ["AURORA/data/something/frames/20053/first.jpg", "AURORA/data/something/frames/20053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping juice off of counter"}]} +{"id": "000000107427", "images": ["AURORA/data/something/frames/185612/first.jpg", "AURORA/data/something/frames/185612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hat from left to right"}]} +{"id": "000000107428", "images": ["AURORA/data/something/frames/104918/first.jpg", "AURORA/data/something/frames/104918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding wool mat"}]} +{"id": "000000107429", "images": ["AURORA/data/something/frames/81878/first.jpg", "AURORA/data/something/frames/81878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking knife from table"}]} +{"id": "000000107430", "images": ["AURORA/data/something/frames/149475/first.jpg", "AURORA/data/something/frames/149475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a hanger"}]} +{"id": "000000107431", "images": ["AURORA/data/something/frames/101214/first.jpg", "AURORA/data/something/frames/101214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming toy giraffe"}]} +{"id": "000000107432", "images": ["AURORA/data/something/frames/31145/first.jpg", "AURORA/data/something/frames/31145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screwdriver on a surface"}]} +{"id": "000000107433", "images": ["AURORA/data/something/frames/210816/first.jpg", "AURORA/data/something/frames/210816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a large plastic container over"}]} +{"id": "000000107434", "images": ["AURORA/data/something/frames/112165/first.jpg", "AURORA/data/something/frames/112165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a plush with a shirt"}]} +{"id": "000000107435", "images": ["AURORA/data/something/frames/135493/first.jpg", "AURORA/data/something/frames/135493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying unopened drink on the table on its side, not upright"}]} +{"id": "000000107436", "images": ["AURORA/data/something/frames/148845/first.jpg", "AURORA/data/something/frames/148845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote up"}]} +{"id": "000000107437", "images": ["AURORA/data/something/frames/9928/first.jpg", "AURORA/data/something/frames/9928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing salt shaker from right to left"}]} +{"id": "000000107438", "images": ["AURORA/data/something/frames/111451/first.jpg", "AURORA/data/something/frames/111451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning lipstick upside down"}]} +{"id": "000000107439", "images": ["AURORA/data/something/frames/39402/first.jpg", "AURORA/data/something/frames/39402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a razor"}]} +{"id": "000000107440", "images": ["AURORA/data/something/frames/27300/first.jpg", "AURORA/data/something/frames/27300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing hoodie into bag"}]} +{"id": "000000107441", "images": ["AURORA/data/something/frames/65281/first.jpg", "AURORA/data/something/frames/65281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto the table"}]} +{"id": "000000107442", "images": ["AURORA/data/something/frames/143328/first.jpg", "AURORA/data/something/frames/143328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing jam-box"}]} +{"id": "000000107443", "images": ["AURORA/data/something/frames/125400/first.jpg", "AURORA/data/something/frames/125400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107444", "images": ["AURORA/data/something/frames/149765/first.jpg", "AURORA/data/something/frames/149765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping red cup with paperwad over, so paperwad falls out"}]} +{"id": "000000107445", "images": ["AURORA/data/something/frames/491/first.jpg", "AURORA/data/something/frames/491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening fridge door"}]} +{"id": "000000107446", "images": ["AURORA/data/something/frames/95626/first.jpg", "AURORA/data/something/frames/95626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and highlighter away from each other"}]} +{"id": "000000107447", "images": ["AURORA/data/something/frames/102941/first.jpg", "AURORA/data/something/frames/102941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle away from candle"}]} +{"id": "000000107448", "images": ["AURORA/data/something/frames/13578/first.jpg", "AURORA/data/something/frames/13578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling grass out of soil ground"}]} +{"id": "000000107449", "images": ["AURORA/data/something/frames/103941/first.jpg", "AURORA/data/something/frames/103941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shoes into packet"}]} +{"id": "000000107450", "images": ["AURORA/data/something/frames/43636/first.jpg", "AURORA/data/something/frames/43636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the bottle upside down"}]} +{"id": "000000107451", "images": ["AURORA/data/something/frames/177622/first.jpg", "AURORA/data/something/frames/177622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screwdiver, clip and thread on the table"}]} +{"id": "000000107452", "images": ["AURORA/data/something/frames/67288/first.jpg", "AURORA/data/something/frames/67288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug and bottle away from each other"}]} +{"id": "000000107453", "images": ["AURORA/data/something/frames/6903/first.jpg", "AURORA/data/something/frames/6903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000107454", "images": ["AURORA/data/something/frames/125178/first.jpg", "AURORA/data/something/frames/125178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing magazine page into two pieces"}]} +{"id": "000000107455", "images": ["AURORA/data/something/frames/108609/first.jpg", "AURORA/data/something/frames/108609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coffee from left to right"}]} +{"id": "000000107456", "images": ["AURORA/data/something/frames/216818/first.jpg", "AURORA/data/something/frames/216818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107457", "images": ["AURORA/data/something/frames/111036/first.jpg", "AURORA/data/something/frames/111036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a towel into a box"}]} +{"id": "000000107458", "images": ["AURORA/data/something/frames/133003/first.jpg", "AURORA/data/something/frames/133003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys behind bag"}]} +{"id": "000000107459", "images": ["AURORA/data/something/frames/152234/first.jpg", "AURORA/data/something/frames/152234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving blue colour pen down"}]} +{"id": "000000107460", "images": ["AURORA/data/something/frames/47593/first.jpg", "AURORA/data/something/frames/47593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling tea onto sink"}]} +{"id": "000000107461", "images": ["AURORA/data/something/frames/51121/first.jpg", "AURORA/data/something/frames/51121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a can upside down"}]} +{"id": "000000107462", "images": ["AURORA/data/something/frames/124651/first.jpg", "AURORA/data/something/frames/124651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen next to container"}]} +{"id": "000000107463", "images": ["AURORA/data/something/frames/31723/first.jpg", "AURORA/data/something/frames/31723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lipstick tube onto floor"}]} +{"id": "000000107464", "images": ["AURORA/data/something/frames/182391/first.jpg", "AURORA/data/something/frames/182391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000107465", "images": ["AURORA/data/something/frames/91072/first.jpg", "AURORA/data/something/frames/91072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into power socket"}]} +{"id": "000000107466", "images": ["AURORA/data/something/frames/70684/first.jpg", "AURORA/data/something/frames/70684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 bananas onto box"}]} +{"id": "000000107467", "images": ["AURORA/data/something/frames/78979/first.jpg", "AURORA/data/something/frames/78979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into electrical plug"}]} +{"id": "000000107468", "images": ["AURORA/data/something/frames/66550/first.jpg", "AURORA/data/something/frames/66550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a bucket"}]} +{"id": "000000107469", "images": ["AURORA/data/something/frames/121410/first.jpg", "AURORA/data/something/frames/121410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of containers"}]} +{"id": "000000107470", "images": ["AURORA/data/something/frames/214725/first.jpg", "AURORA/data/something/frames/214725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book"}]} +{"id": "000000107471", "images": ["AURORA/data/something/frames/44842/first.jpg", "AURORA/data/something/frames/44842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107472", "images": ["AURORA/data/something/frames/40536/first.jpg", "AURORA/data/something/frames/40536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting ecobag"}]} +{"id": "000000107473", "images": ["AURORA/data/something/frames/184338/first.jpg", "AURORA/data/something/frames/184338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a post it note to a map"}]} +{"id": "000000107474", "images": ["AURORA/data/something/frames/81114/first.jpg", "AURORA/data/something/frames/81114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wooden piece onto the top of a plant so it falls down"}]} +{"id": "000000107475", "images": ["AURORA/data/something/frames/47599/first.jpg", "AURORA/data/something/frames/47599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a candle with a piece of paper"}]} +{"id": "000000107476", "images": ["AURORA/data/something/frames/118955/first.jpg", "AURORA/data/something/frames/118955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a measuring tape on it"}]} +{"id": "000000107477", "images": ["AURORA/data/something/frames/182514/first.jpg", "AURORA/data/something/frames/182514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking flipflop up"}]} +{"id": "000000107478", "images": ["AURORA/data/something/frames/188763/first.jpg", "AURORA/data/something/frames/188763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000107479", "images": ["AURORA/data/something/frames/72022/first.jpg", "AURORA/data/something/frames/72022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling scotch tape from left to right"}]} +{"id": "000000107480", "images": ["AURORA/data/something/frames/146427/first.jpg", "AURORA/data/something/frames/146427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering calculator with it's protective lid"}]} +{"id": "000000107481", "images": ["AURORA/data/something/frames/14012/first.jpg", "AURORA/data/something/frames/14012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting mouse with finger"}]} +{"id": "000000107482", "images": ["AURORA/data/something/frames/16624/first.jpg", "AURORA/data/something/frames/16624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a calculator up"}]} +{"id": "000000107483", "images": ["AURORA/data/something/frames/26785/first.jpg", "AURORA/data/something/frames/26785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a toy owl"}]} +{"id": "000000107484", "images": ["AURORA/data/something/frames/197850/first.jpg", "AURORA/data/something/frames/197850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning smarthphone upside down"}]} +{"id": "000000107485", "images": ["AURORA/data/something/frames/203861/first.jpg", "AURORA/data/something/frames/203861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a book without letting it drop down"}]} +{"id": "000000107486", "images": ["AURORA/data/something/frames/45310/first.jpg", "AURORA/data/something/frames/45310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting skateboard with a powerbank"}]} +{"id": "000000107487", "images": ["AURORA/data/something/frames/212504/first.jpg", "AURORA/data/something/frames/212504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind bucket"}]} +{"id": "000000107488", "images": ["AURORA/data/something/frames/30751/first.jpg", "AURORA/data/something/frames/30751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shirt into cover"}]} +{"id": "000000107489", "images": ["AURORA/data/something/frames/51426/first.jpg", "AURORA/data/something/frames/51426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup upright on the table"}]} +{"id": "000000107490", "images": ["AURORA/data/something/frames/135659/first.jpg", "AURORA/data/something/frames/135659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107491", "images": ["AURORA/data/something/frames/92832/first.jpg", "AURORA/data/something/frames/92832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with box on it but not enough for it to slide down"}]} +{"id": "000000107492", "images": ["AURORA/data/something/frames/132251/first.jpg", "AURORA/data/something/frames/132251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cell from right to left"}]} +{"id": "000000107493", "images": ["AURORA/data/something/frames/2733/first.jpg", "AURORA/data/something/frames/2733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tape dispenser upright on the table"}]} +{"id": "000000107494", "images": ["AURORA/data/something/frames/94214/first.jpg", "AURORA/data/something/frames/94214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tray with cup on it"}]} +{"id": "000000107495", "images": ["AURORA/data/something/frames/186411/first.jpg", "AURORA/data/something/frames/186411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a fork into a tea cup"}]} +{"id": "000000107496", "images": ["AURORA/data/something/frames/47303/first.jpg", "AURORA/data/something/frames/47303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening food container"}]} +{"id": "000000107497", "images": ["AURORA/data/something/frames/101560/first.jpg", "AURORA/data/something/frames/101560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with tweezers on it until it starts sliding down"}]} +{"id": "000000107498", "images": ["AURORA/data/something/frames/25515/first.jpg", "AURORA/data/something/frames/25515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb into a laptop"}]} +{"id": "000000107499", "images": ["AURORA/data/something/frames/115683/first.jpg", "AURORA/data/something/frames/115683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a water bottle on the table on its side, not upright"}]} +{"id": "000000107500", "images": ["AURORA/data/something/frames/158690/first.jpg", "AURORA/data/something/frames/158690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from right to left"}]} +{"id": "000000107501", "images": ["AURORA/data/something/frames/54443/first.jpg", "AURORA/data/something/frames/54443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone up"}]} +{"id": "000000107502", "images": ["AURORA/data/something/frames/100236/first.jpg", "AURORA/data/something/frames/100236/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cable from left to right"}]} +{"id": "000000107503", "images": ["AURORA/data/something/frames/183623/first.jpg", "AURORA/data/something/frames/183623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a peg"}]} +{"id": "000000107504", "images": ["AURORA/data/something/frames/167482/first.jpg", "AURORA/data/something/frames/167482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a water bottle on the table on its side, not upright"}]} +{"id": "000000107505", "images": ["AURORA/data/something/frames/24285/first.jpg", "AURORA/data/something/frames/24285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone case up"}]} +{"id": "000000107506", "images": ["AURORA/data/something/frames/81790/first.jpg", "AURORA/data/something/frames/81790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coin"}]} +{"id": "000000107507", "images": ["AURORA/data/something/frames/152597/first.jpg", "AURORA/data/something/frames/152597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a shor with a blanket"}]} +{"id": "000000107508", "images": ["AURORA/data/something/frames/49163/first.jpg", "AURORA/data/something/frames/49163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000107509", "images": ["AURORA/data/something/frames/211484/first.jpg", "AURORA/data/something/frames/211484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water bottle on a surface"}]} +{"id": "000000107510", "images": ["AURORA/data/something/frames/188567/first.jpg", "AURORA/data/something/frames/188567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil behind a dumbbell"}]} +{"id": "000000107511", "images": ["AURORA/data/something/frames/54563/first.jpg", "AURORA/data/something/frames/54563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping box next to trash can"}]} +{"id": "000000107512", "images": ["AURORA/data/something/frames/64597/first.jpg", "AURORA/data/something/frames/64597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping boot onto floor"}]} +{"id": "000000107513", "images": ["AURORA/data/something/frames/69778/first.jpg", "AURORA/data/something/frames/69778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming wall"}]} +{"id": "000000107514", "images": ["AURORA/data/something/frames/176907/first.jpg", "AURORA/data/something/frames/176907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming lighter"}]} +{"id": "000000107515", "images": ["AURORA/data/something/frames/101895/first.jpg", "AURORA/data/something/frames/101895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a qtip onto the counter"}]} +{"id": "000000107516", "images": ["AURORA/data/something/frames/52930/first.jpg", "AURORA/data/something/frames/52930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mug and a dvd closer to each other"}]} +{"id": "000000107517", "images": ["AURORA/data/something/frames/155605/first.jpg", "AURORA/data/something/frames/155605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling wristwatch from left to right"}]} +{"id": "000000107518", "images": ["AURORA/data/something/frames/70316/first.jpg", "AURORA/data/something/frames/70316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen onto box"}]} +{"id": "000000107519", "images": ["AURORA/data/something/frames/122272/first.jpg", "AURORA/data/something/frames/122272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing spectacle box into pouch"}]} +{"id": "000000107520", "images": ["AURORA/data/something/frames/74370/first.jpg", "AURORA/data/something/frames/74370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper down"}]} +{"id": "000000107521", "images": ["AURORA/data/something/frames/164385/first.jpg", "AURORA/data/something/frames/164385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pink cologne on a surface"}]} +{"id": "000000107522", "images": ["AURORA/data/something/frames/195175/first.jpg", "AURORA/data/something/frames/195175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107523", "images": ["AURORA/data/something/frames/85889/first.jpg", "AURORA/data/something/frames/85889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing towel from left to right"}]} +{"id": "000000107524", "images": ["AURORA/data/something/frames/71965/first.jpg", "AURORA/data/something/frames/71965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing keys so that it almost falls off but doesn't"}]} +{"id": "000000107525", "images": ["AURORA/data/something/frames/64951/first.jpg", "AURORA/data/something/frames/64951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling coins up"}]} +{"id": "000000107526", "images": ["AURORA/data/something/frames/8858/first.jpg", "AURORA/data/something/frames/8858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a lid onto a container"}]} +{"id": "000000107527", "images": ["AURORA/data/something/frames/112949/first.jpg", "AURORA/data/something/frames/112949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin"}]} +{"id": "000000107528", "images": ["AURORA/data/something/frames/24023/first.jpg", "AURORA/data/something/frames/24023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000107529", "images": ["AURORA/data/something/frames/44803/first.jpg", "AURORA/data/something/frames/44803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000107530", "images": ["AURORA/data/something/frames/198976/first.jpg", "AURORA/data/something/frames/198976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107531", "images": ["AURORA/data/something/frames/13820/first.jpg", "AURORA/data/something/frames/13820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a tape away from sun glasses"}]} +{"id": "000000107532", "images": ["AURORA/data/something/frames/211245/first.jpg", "AURORA/data/something/frames/211245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling phone from behind of camera"}]} +{"id": "000000107533", "images": ["AURORA/data/something/frames/201569/first.jpg", "AURORA/data/something/frames/201569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling paint tube from left to right"}]} +{"id": "000000107534", "images": ["AURORA/data/something/frames/215016/first.jpg", "AURORA/data/something/frames/215016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000107535", "images": ["AURORA/data/something/frames/128682/first.jpg", "AURORA/data/something/frames/128682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a chalk into a chalk box"}]} +{"id": "000000107536", "images": ["AURORA/data/something/frames/112777/first.jpg", "AURORA/data/something/frames/112777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plag into wall outlet"}]} +{"id": "000000107537", "images": ["AURORA/data/something/frames/100595/first.jpg", "AURORA/data/something/frames/100595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping hand soap over"}]} +{"id": "000000107538", "images": ["AURORA/data/something/frames/91913/first.jpg", "AURORA/data/something/frames/91913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubix cube into bowl"}]} +{"id": "000000107539", "images": ["AURORA/data/something/frames/130127/first.jpg", "AURORA/data/something/frames/130127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen next to a screwdriver"}]} +{"id": "000000107540", "images": ["AURORA/data/something/frames/218929/first.jpg", "AURORA/data/something/frames/218929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a snake ladder board so that it almost falls off but doesn't"}]} +{"id": "000000107541", "images": ["AURORA/data/something/frames/21691/first.jpg", "AURORA/data/something/frames/21691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving milk closer to knife"}]} +{"id": "000000107542", "images": ["AURORA/data/something/frames/60025/first.jpg", "AURORA/data/something/frames/60025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking newspaper from floor"}]} +{"id": "000000107543", "images": ["AURORA/data/something/frames/112745/first.jpg", "AURORA/data/something/frames/112745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy closer to plastic glass"}]} +{"id": "000000107544", "images": ["AURORA/data/something/frames/8503/first.jpg", "AURORA/data/something/frames/8503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 bag of rice onto a pot"}]} +{"id": "000000107545", "images": ["AURORA/data/something/frames/6863/first.jpg", "AURORA/data/something/frames/6863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping crumbs off of plate"}]} +{"id": "000000107546", "images": ["AURORA/data/something/frames/116785/first.jpg", "AURORA/data/something/frames/116785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing orange paper into two pieces"}]} +{"id": "000000107547", "images": ["AURORA/data/something/frames/33564/first.jpg", "AURORA/data/something/frames/33564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000107548", "images": ["AURORA/data/something/frames/172634/first.jpg", "AURORA/data/something/frames/172634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000107549", "images": ["AURORA/data/something/frames/199855/first.jpg", "AURORA/data/something/frames/199855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a piece of paper so that it deforms"}]} +{"id": "000000107550", "images": ["AURORA/data/something/frames/150892/first.jpg", "AURORA/data/something/frames/150892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a pen so that it separates into two pieces"}]} +{"id": "000000107551", "images": ["AURORA/data/something/frames/49463/first.jpg", "AURORA/data/something/frames/49463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass until it overflows"}]} +{"id": "000000107552", "images": ["AURORA/data/something/frames/123288/first.jpg", "AURORA/data/something/frames/123288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pot with stick"}]} +{"id": "000000107553", "images": ["AURORA/data/something/frames/202867/first.jpg", "AURORA/data/something/frames/202867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a cellphone"}]} +{"id": "000000107554", "images": ["AURORA/data/something/frames/186768/first.jpg", "AURORA/data/something/frames/186768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending wooden reeper until it breaks"}]} +{"id": "000000107555", "images": ["AURORA/data/something/frames/94925/first.jpg", "AURORA/data/something/frames/94925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107556", "images": ["AURORA/data/something/frames/147099/first.jpg", "AURORA/data/something/frames/147099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy car from left to right"}]} +{"id": "000000107557", "images": ["AURORA/data/something/frames/77707/first.jpg", "AURORA/data/something/frames/77707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black hair tie from right to left"}]} +{"id": "000000107558", "images": ["AURORA/data/something/frames/211101/first.jpg", "AURORA/data/something/frames/211101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mail"}]} +{"id": "000000107559", "images": ["AURORA/data/something/frames/169919/first.jpg", "AURORA/data/something/frames/169919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a mug until it overflows"}]} +{"id": "000000107560", "images": ["AURORA/data/something/frames/134050/first.jpg", "AURORA/data/something/frames/134050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking one cup onto a can"}]} +{"id": "000000107561", "images": ["AURORA/data/something/frames/75323/first.jpg", "AURORA/data/something/frames/75323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding underwear"}]} +{"id": "000000107562", "images": ["AURORA/data/something/frames/38411/first.jpg", "AURORA/data/something/frames/38411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a container"}]} +{"id": "000000107563", "images": ["AURORA/data/something/frames/121585/first.jpg", "AURORA/data/something/frames/121585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a musical tabala onto a slanted surface but it doesn't glide down"}]} +{"id": "000000107564", "images": ["AURORA/data/something/frames/129496/first.jpg", "AURORA/data/something/frames/129496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending carrot until it breaks"}]} +{"id": "000000107565", "images": ["AURORA/data/something/frames/207166/first.jpg", "AURORA/data/something/frames/207166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing water into glass"}]} +{"id": "000000107566", "images": ["AURORA/data/something/frames/192226/first.jpg", "AURORA/data/something/frames/192226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book underneath mobile"}]} +{"id": "000000107567", "images": ["AURORA/data/something/frames/82929/first.jpg", "AURORA/data/something/frames/82929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour soda into a cup, but missing so it spills next to it"}]} +{"id": "000000107568", "images": ["AURORA/data/something/frames/37072/first.jpg", "AURORA/data/something/frames/37072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000107569", "images": ["AURORA/data/something/frames/90253/first.jpg", "AURORA/data/something/frames/90253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending wire so that it deforms"}]} +{"id": "000000107570", "images": ["AURORA/data/something/frames/138521/first.jpg", "AURORA/data/something/frames/138521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard into two pieces"}]} +{"id": "000000107571", "images": ["AURORA/data/something/frames/162338/first.jpg", "AURORA/data/something/frames/162338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing torch from right to left"}]} +{"id": "000000107572", "images": ["AURORA/data/something/frames/67862/first.jpg", "AURORA/data/something/frames/67862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a shirt"}]} +{"id": "000000107573", "images": ["AURORA/data/something/frames/134947/first.jpg", "AURORA/data/something/frames/134947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming brown bracelet"}]} +{"id": "000000107574", "images": ["AURORA/data/something/frames/80228/first.jpg", "AURORA/data/something/frames/80228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pepper shaker over"}]} +{"id": "000000107575", "images": ["AURORA/data/something/frames/124674/first.jpg", "AURORA/data/something/frames/124674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a tap"}]} +{"id": "000000107576", "images": ["AURORA/data/something/frames/135976/first.jpg", "AURORA/data/something/frames/135976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting ipad with pen on it"}]} +{"id": "000000107577", "images": ["AURORA/data/something/frames/94872/first.jpg", "AURORA/data/something/frames/94872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tape in front of a coil of wires"}]} +{"id": "000000107578", "images": ["AURORA/data/something/frames/120936/first.jpg", "AURORA/data/something/frames/120936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and can away from each other"}]} +{"id": "000000107579", "images": ["AURORA/data/something/frames/121613/first.jpg", "AURORA/data/something/frames/121613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper towel"}]} +{"id": "000000107580", "images": ["AURORA/data/something/frames/157241/first.jpg", "AURORA/data/something/frames/157241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting something with something"}]} +{"id": "000000107581", "images": ["AURORA/data/something/frames/108274/first.jpg", "AURORA/data/something/frames/108274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting leaf"}]} +{"id": "000000107582", "images": ["AURORA/data/something/frames/215063/first.jpg", "AURORA/data/something/frames/215063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000107583", "images": ["AURORA/data/something/frames/217781/first.jpg", "AURORA/data/something/frames/217781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper clips box into a container"}]} +{"id": "000000107584", "images": ["AURORA/data/something/frames/191007/first.jpg", "AURORA/data/something/frames/191007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into a cup"}]} +{"id": "000000107585", "images": ["AURORA/data/something/frames/12888/first.jpg", "AURORA/data/something/frames/12888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing piece of paper just a little bit"}]} +{"id": "000000107586", "images": ["AURORA/data/something/frames/154401/first.jpg", "AURORA/data/something/frames/154401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into mug"}]} +{"id": "000000107587", "images": ["AURORA/data/something/frames/188573/first.jpg", "AURORA/data/something/frames/188573/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glue stick upright on the table"}]} +{"id": "000000107588", "images": ["AURORA/data/something/frames/4917/first.jpg", "AURORA/data/something/frames/4917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking water bottle out of refrigerator"}]} +{"id": "000000107589", "images": ["AURORA/data/something/frames/157382/first.jpg", "AURORA/data/something/frames/157382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering plush doll"}]} +{"id": "000000107590", "images": ["AURORA/data/something/frames/217900/first.jpg", "AURORA/data/something/frames/217900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000107591", "images": ["AURORA/data/something/frames/167177/first.jpg", "AURORA/data/something/frames/167177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming violin"}]} +{"id": "000000107592", "images": ["AURORA/data/something/frames/39397/first.jpg", "AURORA/data/something/frames/39397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cigarette lighter in front of black pouch"}]} +{"id": "000000107593", "images": ["AURORA/data/something/frames/18570/first.jpg", "AURORA/data/something/frames/18570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cleaner off of window"}]} +{"id": "000000107594", "images": ["AURORA/data/something/frames/112472/first.jpg", "AURORA/data/something/frames/112472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a compact disk up completely without letting it drop down"}]} +{"id": "000000107595", "images": ["AURORA/data/something/frames/32957/first.jpg", "AURORA/data/something/frames/32957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000107596", "images": ["AURORA/data/something/frames/137786/first.jpg", "AURORA/data/something/frames/137786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon into bucket"}]} +{"id": "000000107597", "images": ["AURORA/data/something/frames/8851/first.jpg", "AURORA/data/something/frames/8851/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 sponges"}]} +{"id": "000000107598", "images": ["AURORA/data/something/frames/83163/first.jpg", "AURORA/data/something/frames/83163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glasses across a surface without it falling down"}]} +{"id": "000000107599", "images": ["AURORA/data/something/frames/134233/first.jpg", "AURORA/data/something/frames/134233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107600", "images": ["AURORA/data/something/frames/32152/first.jpg", "AURORA/data/something/frames/32152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000107601", "images": ["AURORA/data/something/frames/220758/first.jpg", "AURORA/data/something/frames/220758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mayo jar upside down"}]} +{"id": "000000107602", "images": ["AURORA/data/something/frames/216825/first.jpg", "AURORA/data/something/frames/216825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing post it just a little bit"}]} +{"id": "000000107603", "images": ["AURORA/data/something/frames/203974/first.jpg", "AURORA/data/something/frames/203974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass bottle"}]} +{"id": "000000107604", "images": ["AURORA/data/something/frames/108285/first.jpg", "AURORA/data/something/frames/108285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107605", "images": ["AURORA/data/something/frames/31431/first.jpg", "AURORA/data/something/frames/31431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug in front of the stapler"}]} +{"id": "000000107606", "images": ["AURORA/data/something/frames/188843/first.jpg", "AURORA/data/something/frames/188843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a marker from left to right"}]} +{"id": "000000107607", "images": ["AURORA/data/something/frames/51076/first.jpg", "AURORA/data/something/frames/51076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with kitchen scissors on it but not enough for it to slide down"}]} +{"id": "000000107608", "images": ["AURORA/data/something/frames/189818/first.jpg", "AURORA/data/something/frames/189818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling coins up"}]} +{"id": "000000107609", "images": ["AURORA/data/something/frames/135111/first.jpg", "AURORA/data/something/frames/135111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading sauce onto a plate"}]} +{"id": "000000107610", "images": ["AURORA/data/something/frames/149224/first.jpg", "AURORA/data/something/frames/149224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle behind frame"}]} +{"id": "000000107611", "images": ["AURORA/data/something/frames/49283/first.jpg", "AURORA/data/something/frames/49283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk out of container"}]} +{"id": "000000107612", "images": ["AURORA/data/something/frames/160267/first.jpg", "AURORA/data/something/frames/160267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000107613", "images": ["AURORA/data/something/frames/156782/first.jpg", "AURORA/data/something/frames/156782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter"}]} +{"id": "000000107614", "images": ["AURORA/data/something/frames/55101/first.jpg", "AURORA/data/something/frames/55101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker so that it almost falls off but doesn't"}]} +{"id": "000000107615", "images": ["AURORA/data/something/frames/38820/first.jpg", "AURORA/data/something/frames/38820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing folder"}]} +{"id": "000000107616", "images": ["AURORA/data/something/frames/204491/first.jpg", "AURORA/data/something/frames/204491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall"}]} +{"id": "000000107617", "images": ["AURORA/data/something/frames/195002/first.jpg", "AURORA/data/something/frames/195002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping eraser over"}]} +{"id": "000000107618", "images": ["AURORA/data/something/frames/121547/first.jpg", "AURORA/data/something/frames/121547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking toy so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107619", "images": ["AURORA/data/something/frames/168721/first.jpg", "AURORA/data/something/frames/168721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cup into a paper bag"}]} +{"id": "000000107620", "images": ["AURORA/data/something/frames/40949/first.jpg", "AURORA/data/something/frames/40949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg behind a cup"}]} +{"id": "000000107621", "images": ["AURORA/data/something/frames/218509/first.jpg", "AURORA/data/something/frames/218509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a book"}]} +{"id": "000000107622", "images": ["AURORA/data/something/frames/85919/first.jpg", "AURORA/data/something/frames/85919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tyre of a bicycle"}]} +{"id": "000000107623", "images": ["AURORA/data/something/frames/74013/first.jpg", "AURORA/data/something/frames/74013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a knife"}]} +{"id": "000000107624", "images": ["AURORA/data/something/frames/170548/first.jpg", "AURORA/data/something/frames/170548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000107625", "images": ["AURORA/data/something/frames/169543/first.jpg", "AURORA/data/something/frames/169543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking cup up"}]} +{"id": "000000107626", "images": ["AURORA/data/something/frames/189993/first.jpg", "AURORA/data/something/frames/189993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lighter into a measuring cup"}]} +{"id": "000000107627", "images": ["AURORA/data/something/frames/58250/first.jpg", "AURORA/data/something/frames/58250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a mug on it but not enough for it to slide down"}]} +{"id": "000000107628", "images": ["AURORA/data/something/frames/145003/first.jpg", "AURORA/data/something/frames/145003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into sugar"}]} +{"id": "000000107629", "images": ["AURORA/data/something/frames/192749/first.jpg", "AURORA/data/something/frames/192749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding blowes"}]} +{"id": "000000107630", "images": ["AURORA/data/something/frames/10338/first.jpg", "AURORA/data/something/frames/10338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering twizzer"}]} +{"id": "000000107631", "images": ["AURORA/data/something/frames/77834/first.jpg", "AURORA/data/something/frames/77834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a lighter upside down"}]} +{"id": "000000107632", "images": ["AURORA/data/something/frames/28479/first.jpg", "AURORA/data/something/frames/28479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a mouse with a wallet"}]} +{"id": "000000107633", "images": ["AURORA/data/something/frames/176955/first.jpg", "AURORA/data/something/frames/176955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning tea light candle upside down"}]} +{"id": "000000107634", "images": ["AURORA/data/something/frames/215686/first.jpg", "AURORA/data/something/frames/215686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 ink bottles onto calculator"}]} +{"id": "000000107635", "images": ["AURORA/data/something/frames/189438/first.jpg", "AURORA/data/something/frames/189438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming scent bottle"}]} +{"id": "000000107636", "images": ["AURORA/data/something/frames/97139/first.jpg", "AURORA/data/something/frames/97139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a coin to a padlock"}]} +{"id": "000000107637", "images": ["AURORA/data/something/frames/188622/first.jpg", "AURORA/data/something/frames/188622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tissue box being deflected from couch"}]} +{"id": "000000107638", "images": ["AURORA/data/something/frames/97822/first.jpg", "AURORA/data/something/frames/97822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from a painting with your camera"}]} +{"id": "000000107639", "images": ["AURORA/data/something/frames/109085/first.jpg", "AURORA/data/something/frames/109085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a perfume next to lotion bottle"}]} +{"id": "000000107640", "images": ["AURORA/data/something/frames/138243/first.jpg", "AURORA/data/something/frames/138243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving arm of stuffed bear"}]} +{"id": "000000107641", "images": ["AURORA/data/something/frames/29941/first.jpg", "AURORA/data/something/frames/29941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling tv remote from right to left"}]} +{"id": "000000107642", "images": ["AURORA/data/something/frames/171121/first.jpg", "AURORA/data/something/frames/171121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000107643", "images": ["AURORA/data/something/frames/178377/first.jpg", "AURORA/data/something/frames/178377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000107644", "images": ["AURORA/data/something/frames/100336/first.jpg", "AURORA/data/something/frames/100336/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming orange notebook"}]} +{"id": "000000107645", "images": ["AURORA/data/something/frames/168150/first.jpg", "AURORA/data/something/frames/168150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing box into cube"}]} +{"id": "000000107646", "images": ["AURORA/data/something/frames/139013/first.jpg", "AURORA/data/something/frames/139013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chalk into jar"}]} +{"id": "000000107647", "images": ["AURORA/data/something/frames/131442/first.jpg", "AURORA/data/something/frames/131442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing ink bottle"}]} +{"id": "000000107648", "images": ["AURORA/data/something/frames/5249/first.jpg", "AURORA/data/something/frames/5249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a box"}]} +{"id": "000000107649", "images": ["AURORA/data/something/frames/146221/first.jpg", "AURORA/data/something/frames/146221/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair tie into cupholder"}]} +{"id": "000000107650", "images": ["AURORA/data/something/frames/1027/first.jpg", "AURORA/data/something/frames/1027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil into pencil case"}]} +{"id": "000000107651", "images": ["AURORA/data/something/frames/15130/first.jpg", "AURORA/data/something/frames/15130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a plate"}]} +{"id": "000000107652", "images": ["AURORA/data/something/frames/199966/first.jpg", "AURORA/data/something/frames/199966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting blouse"}]} +{"id": "000000107653", "images": ["AURORA/data/something/frames/125581/first.jpg", "AURORA/data/something/frames/125581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink blush on from right to left"}]} +{"id": "000000107654", "images": ["AURORA/data/something/frames/168726/first.jpg", "AURORA/data/something/frames/168726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a fork"}]} +{"id": "000000107655", "images": ["AURORA/data/something/frames/84000/first.jpg", "AURORA/data/something/frames/84000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting match box with ointment tube on it"}]} +{"id": "000000107656", "images": ["AURORA/data/something/frames/205352/first.jpg", "AURORA/data/something/frames/205352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book down"}]} +{"id": "000000107657", "images": ["AURORA/data/something/frames/99398/first.jpg", "AURORA/data/something/frames/99398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small sharpener from left to right"}]} +{"id": "000000107658", "images": ["AURORA/data/something/frames/90233/first.jpg", "AURORA/data/something/frames/90233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening book"}]} +{"id": "000000107659", "images": ["AURORA/data/something/frames/137165/first.jpg", "AURORA/data/something/frames/137165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall but pulling it right out as you remove your hand"}]} +{"id": "000000107660", "images": ["AURORA/data/something/frames/194379/first.jpg", "AURORA/data/something/frames/194379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pepper grinder over"}]} +{"id": "000000107661", "images": ["AURORA/data/something/frames/186192/first.jpg", "AURORA/data/something/frames/186192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting drum with sock"}]} +{"id": "000000107662", "images": ["AURORA/data/something/frames/118939/first.jpg", "AURORA/data/something/frames/118939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping starburst up with hand"}]} +{"id": "000000107663", "images": ["AURORA/data/something/frames/104653/first.jpg", "AURORA/data/something/frames/104653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a hammer without letting it drop down"}]} +{"id": "000000107664", "images": ["AURORA/data/something/frames/193607/first.jpg", "AURORA/data/something/frames/193607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving striker coin away from whiteboard marker pen"}]} +{"id": "000000107665", "images": ["AURORA/data/something/frames/143000/first.jpg", "AURORA/data/something/frames/143000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a pair of sunglasses away from each other"}]} +{"id": "000000107666", "images": ["AURORA/data/something/frames/125443/first.jpg", "AURORA/data/something/frames/125443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 pill bottles"}]} +{"id": "000000107667", "images": ["AURORA/data/something/frames/113955/first.jpg", "AURORA/data/something/frames/113955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000107668", "images": ["AURORA/data/something/frames/97768/first.jpg", "AURORA/data/something/frames/97768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can in front of keys"}]} +{"id": "000000107669", "images": ["AURORA/data/something/frames/12211/first.jpg", "AURORA/data/something/frames/12211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming ring"}]} +{"id": "000000107670", "images": ["AURORA/data/something/frames/180612/first.jpg", "AURORA/data/something/frames/180612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping a toy up with my hand"}]} +{"id": "000000107671", "images": ["AURORA/data/something/frames/95246/first.jpg", "AURORA/data/something/frames/95246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a paperclip back"}]} +{"id": "000000107672", "images": ["AURORA/data/something/frames/167367/first.jpg", "AURORA/data/something/frames/167367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 wooden sticks onto black pouch"}]} +{"id": "000000107673", "images": ["AURORA/data/something/frames/68544/first.jpg", "AURORA/data/something/frames/68544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting gear wheel next to tablet box"}]} +{"id": "000000107674", "images": ["AURORA/data/something/frames/171359/first.jpg", "AURORA/data/something/frames/171359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book down"}]} +{"id": "000000107675", "images": ["AURORA/data/something/frames/108440/first.jpg", "AURORA/data/something/frames/108440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping glue in front of paper holder"}]} +{"id": "000000107676", "images": ["AURORA/data/something/frames/189513/first.jpg", "AURORA/data/something/frames/189513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a toy skull out of a box"}]} +{"id": "000000107677", "images": ["AURORA/data/something/frames/192278/first.jpg", "AURORA/data/something/frames/192278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging jack into speaker"}]} +{"id": "000000107678", "images": ["AURORA/data/something/frames/120747/first.jpg", "AURORA/data/something/frames/120747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone and computer mouse on the table"}]} +{"id": "000000107679", "images": ["AURORA/data/something/frames/208064/first.jpg", "AURORA/data/something/frames/208064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pot holder upright on the table, so it falls on its side"}]} +{"id": "000000107680", "images": ["AURORA/data/something/frames/121848/first.jpg", "AURORA/data/something/frames/121848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000107681", "images": ["AURORA/data/something/frames/17700/first.jpg", "AURORA/data/something/frames/17700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass in front of the adapter"}]} +{"id": "000000107682", "images": ["AURORA/data/something/frames/36063/first.jpg", "AURORA/data/something/frames/36063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle upright on the table"}]} +{"id": "000000107683", "images": ["AURORA/data/something/frames/143952/first.jpg", "AURORA/data/something/frames/143952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coins"}]} +{"id": "000000107684", "images": ["AURORA/data/something/frames/82875/first.jpg", "AURORA/data/something/frames/82875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling sponge, converter, nail clipper up"}]} +{"id": "000000107685", "images": ["AURORA/data/something/frames/5469/first.jpg", "AURORA/data/something/frames/5469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping chocolate off of counter"}]} +{"id": "000000107686", "images": ["AURORA/data/something/frames/120977/first.jpg", "AURORA/data/something/frames/120977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and holder closer to each other"}]} +{"id": "000000107687", "images": ["AURORA/data/something/frames/73986/first.jpg", "AURORA/data/something/frames/73986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a salt shaker upright on the table"}]} +{"id": "000000107688", "images": ["AURORA/data/something/frames/83612/first.jpg", "AURORA/data/something/frames/83612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a small jar away from a big jar"}]} +{"id": "000000107689", "images": ["AURORA/data/something/frames/14538/first.jpg", "AURORA/data/something/frames/14538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into socket but pulling it right out as you remove your hand"}]} +{"id": "000000107690", "images": ["AURORA/data/something/frames/37067/first.jpg", "AURORA/data/something/frames/37067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup until it overflows"}]} +{"id": "000000107691", "images": ["AURORA/data/something/frames/197696/first.jpg", "AURORA/data/something/frames/197696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sneaker colliding with sneaker and both are being deflected"}]} +{"id": "000000107692", "images": ["AURORA/data/something/frames/33574/first.jpg", "AURORA/data/something/frames/33574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107693", "images": ["AURORA/data/something/frames/110649/first.jpg", "AURORA/data/something/frames/110649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying tablet box on the table on its side, not upright"}]} +{"id": "000000107694", "images": ["AURORA/data/something/frames/84770/first.jpg", "AURORA/data/something/frames/84770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying black colour marker pen cap on the table on its side, not upright"}]} +{"id": "000000107695", "images": ["AURORA/data/something/frames/53748/first.jpg", "AURORA/data/something/frames/53748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keyboard down"}]} +{"id": "000000107696", "images": ["AURORA/data/something/frames/50290/first.jpg", "AURORA/data/something/frames/50290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000107697", "images": ["AURORA/data/something/frames/47558/first.jpg", "AURORA/data/something/frames/47558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing receipt into two pieces"}]} +{"id": "000000107698", "images": ["AURORA/data/something/frames/72218/first.jpg", "AURORA/data/something/frames/72218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000107699", "images": ["AURORA/data/something/frames/28905/first.jpg", "AURORA/data/something/frames/28905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling paper towel from right to left"}]} +{"id": "000000107700", "images": ["AURORA/data/something/frames/120974/first.jpg", "AURORA/data/something/frames/120974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the remote and the mouse away from each other"}]} +{"id": "000000107701", "images": ["AURORA/data/something/frames/177582/first.jpg", "AURORA/data/something/frames/177582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon"}]} +{"id": "000000107702", "images": ["AURORA/data/something/frames/171192/first.jpg", "AURORA/data/something/frames/171192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a charger"}]} +{"id": "000000107703", "images": ["AURORA/data/something/frames/172144/first.jpg", "AURORA/data/something/frames/172144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting watch, glass and doll on the table"}]} +{"id": "000000107704", "images": ["AURORA/data/something/frames/193055/first.jpg", "AURORA/data/something/frames/193055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green colour toy car up"}]} +{"id": "000000107705", "images": ["AURORA/data/something/frames/141828/first.jpg", "AURORA/data/something/frames/141828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting medicine on a surface"}]} +{"id": "000000107706", "images": ["AURORA/data/something/frames/180327/first.jpg", "AURORA/data/something/frames/180327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a drawer"}]} +{"id": "000000107707", "images": ["AURORA/data/something/frames/263/first.jpg", "AURORA/data/something/frames/263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping mark off of counter"}]} +{"id": "000000107708", "images": ["AURORA/data/something/frames/73406/first.jpg", "AURORA/data/something/frames/73406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000107709", "images": ["AURORA/data/something/frames/189874/first.jpg", "AURORA/data/something/frames/189874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a can on the table on its side, not upright"}]} +{"id": "000000107710", "images": ["AURORA/data/something/frames/110162/first.jpg", "AURORA/data/something/frames/110162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning stacking block upside down"}]} +{"id": "000000107711", "images": ["AURORA/data/something/frames/12636/first.jpg", "AURORA/data/something/frames/12636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a building block into another building block but pulling it right out as you remove your hand"}]} +{"id": "000000107712", "images": ["AURORA/data/something/frames/181528/first.jpg", "AURORA/data/something/frames/181528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a booklet without letting it drop down"}]} +{"id": "000000107713", "images": ["AURORA/data/something/frames/3016/first.jpg", "AURORA/data/something/frames/3016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming pink water bottle"}]} +{"id": "000000107714", "images": ["AURORA/data/something/frames/185264/first.jpg", "AURORA/data/something/frames/185264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering an empty water bottle"}]} +{"id": "000000107715", "images": ["AURORA/data/something/frames/179073/first.jpg", "AURORA/data/something/frames/179073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book so that it almost falls off but doesn't"}]} +{"id": "000000107716", "images": ["AURORA/data/something/frames/203213/first.jpg", "AURORA/data/something/frames/203213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107717", "images": ["AURORA/data/something/frames/212014/first.jpg", "AURORA/data/something/frames/212014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping news paper into ground"}]} +{"id": "000000107718", "images": ["AURORA/data/something/frames/198138/first.jpg", "AURORA/data/something/frames/198138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning mug upside down"}]} +{"id": "000000107719", "images": ["AURORA/data/something/frames/162876/first.jpg", "AURORA/data/something/frames/162876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a paint brush up"}]} +{"id": "000000107720", "images": ["AURORA/data/something/frames/125729/first.jpg", "AURORA/data/something/frames/125729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving blue colour pen down"}]} +{"id": "000000107721", "images": ["AURORA/data/something/frames/120135/first.jpg", "AURORA/data/something/frames/120135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107722", "images": ["AURORA/data/something/frames/78670/first.jpg", "AURORA/data/something/frames/78670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000107723", "images": ["AURORA/data/something/frames/175517/first.jpg", "AURORA/data/something/frames/175517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000107724", "images": ["AURORA/data/something/frames/38824/first.jpg", "AURORA/data/something/frames/38824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coffee behind canister"}]} +{"id": "000000107725", "images": ["AURORA/data/something/frames/149517/first.jpg", "AURORA/data/something/frames/149517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting push pin"}]} +{"id": "000000107726", "images": ["AURORA/data/something/frames/172232/first.jpg", "AURORA/data/something/frames/172232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving water bottle across a surface without it falling down"}]} +{"id": "000000107727", "images": ["AURORA/data/something/frames/94104/first.jpg", "AURORA/data/something/frames/94104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming instruction board"}]} +{"id": "000000107728", "images": ["AURORA/data/something/frames/164079/first.jpg", "AURORA/data/something/frames/164079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a brush, an eraser and a glass of water on the table"}]} +{"id": "000000107729", "images": ["AURORA/data/something/frames/200318/first.jpg", "AURORA/data/something/frames/200318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pill bottle over"}]} +{"id": "000000107730", "images": ["AURORA/data/something/frames/77429/first.jpg", "AURORA/data/something/frames/77429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pillow in front of dog"}]} +{"id": "000000107731", "images": ["AURORA/data/something/frames/76993/first.jpg", "AURORA/data/something/frames/76993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting hose head up completely without letting it drop down"}]} +{"id": "000000107732", "images": ["AURORA/data/something/frames/141069/first.jpg", "AURORA/data/something/frames/141069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening car bonnet"}]} +{"id": "000000107733", "images": ["AURORA/data/something/frames/20424/first.jpg", "AURORA/data/something/frames/20424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toy tiger in front of toy elephant"}]} +{"id": "000000107734", "images": ["AURORA/data/something/frames/137695/first.jpg", "AURORA/data/something/frames/137695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto bucket"}]} +{"id": "000000107735", "images": ["AURORA/data/something/frames/47388/first.jpg", "AURORA/data/something/frames/47388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping toothbrush over"}]} +{"id": "000000107736", "images": ["AURORA/data/something/frames/103205/first.jpg", "AURORA/data/something/frames/103205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy idol from left to right"}]} +{"id": "000000107737", "images": ["AURORA/data/something/frames/8041/first.jpg", "AURORA/data/something/frames/8041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving branch across a surface without it falling down"}]} +{"id": "000000107738", "images": ["AURORA/data/something/frames/140864/first.jpg", "AURORA/data/something/frames/140864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler next to digital stamp"}]} +{"id": "000000107739", "images": ["AURORA/data/something/frames/18962/first.jpg", "AURORA/data/something/frames/18962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone behind pants"}]} +{"id": "000000107740", "images": ["AURORA/data/something/frames/29666/first.jpg", "AURORA/data/something/frames/29666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking button"}]} +{"id": "000000107741", "images": ["AURORA/data/something/frames/40294/first.jpg", "AURORA/data/something/frames/40294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen out of bunch of pens"}]} +{"id": "000000107742", "images": ["AURORA/data/something/frames/146736/first.jpg", "AURORA/data/something/frames/146736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil upright on the table, so it falls on its side"}]} +{"id": "000000107743", "images": ["AURORA/data/something/frames/14234/first.jpg", "AURORA/data/something/frames/14234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000107744", "images": ["AURORA/data/something/frames/631/first.jpg", "AURORA/data/something/frames/631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hair pin"}]} +{"id": "000000107745", "images": ["AURORA/data/something/frames/125034/first.jpg", "AURORA/data/something/frames/125034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting small freshmints on a surface"}]} +{"id": "000000107746", "images": ["AURORA/data/something/frames/67138/first.jpg", "AURORA/data/something/frames/67138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping t.v tray over"}]} +{"id": "000000107747", "images": ["AURORA/data/something/frames/28512/first.jpg", "AURORA/data/something/frames/28512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dental gel upright on the table, so it falls on its side"}]} +{"id": "000000107748", "images": ["AURORA/data/something/frames/187241/first.jpg", "AURORA/data/something/frames/187241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing book, revealing book behind"}]} +{"id": "000000107749", "images": ["AURORA/data/something/frames/27320/first.jpg", "AURORA/data/something/frames/27320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug onto a mouse pad"}]} +{"id": "000000107750", "images": ["AURORA/data/something/frames/155143/first.jpg", "AURORA/data/something/frames/155143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cap with sunglasses on it"}]} +{"id": "000000107751", "images": ["AURORA/data/something/frames/53769/first.jpg", "AURORA/data/something/frames/53769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from something with your camera"}]} +{"id": "000000107752", "images": ["AURORA/data/something/frames/215853/first.jpg", "AURORA/data/something/frames/215853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering soda cap"}]} +{"id": "000000107753", "images": ["AURORA/data/something/frames/171309/first.jpg", "AURORA/data/something/frames/171309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping wooden doll over"}]} +{"id": "000000107754", "images": ["AURORA/data/something/frames/169835/first.jpg", "AURORA/data/something/frames/169835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming ink bottle"}]} +{"id": "000000107755", "images": ["AURORA/data/something/frames/144500/first.jpg", "AURORA/data/something/frames/144500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 5 xbox games onto couch"}]} +{"id": "000000107756", "images": ["AURORA/data/something/frames/52401/first.jpg", "AURORA/data/something/frames/52401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding frock"}]} +{"id": "000000107757", "images": ["AURORA/data/something/frames/79738/first.jpg", "AURORA/data/something/frames/79738/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass behind teacup"}]} +{"id": "000000107758", "images": ["AURORA/data/something/frames/78699/first.jpg", "AURORA/data/something/frames/78699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pencil with ruler"}]} +{"id": "000000107759", "images": ["AURORA/data/something/frames/169231/first.jpg", "AURORA/data/something/frames/169231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning tinbox upside down"}]} +{"id": "000000107760", "images": ["AURORA/data/something/frames/193451/first.jpg", "AURORA/data/something/frames/193451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking bar soap up"}]} +{"id": "000000107761", "images": ["AURORA/data/something/frames/184964/first.jpg", "AURORA/data/something/frames/184964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a broom on it until it starts sliding down"}]} +{"id": "000000107762", "images": ["AURORA/data/something/frames/103533/first.jpg", "AURORA/data/something/frames/103533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy car from right to left"}]} +{"id": "000000107763", "images": ["AURORA/data/something/frames/175214/first.jpg", "AURORA/data/something/frames/175214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler with spanner"}]} +{"id": "000000107764", "images": ["AURORA/data/something/frames/54434/first.jpg", "AURORA/data/something/frames/54434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening ice cream freezer"}]} +{"id": "000000107765", "images": ["AURORA/data/something/frames/134838/first.jpg", "AURORA/data/something/frames/134838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding newspaper"}]} +{"id": "000000107766", "images": ["AURORA/data/something/frames/25910/first.jpg", "AURORA/data/something/frames/25910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000107767", "images": ["AURORA/data/something/frames/44458/first.jpg", "AURORA/data/something/frames/44458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000107768", "images": ["AURORA/data/something/frames/62270/first.jpg", "AURORA/data/something/frames/62270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb and soap closer to each other"}]} +{"id": "000000107769", "images": ["AURORA/data/something/frames/137207/first.jpg", "AURORA/data/something/frames/137207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pencil until it breaks"}]} +{"id": "000000107770", "images": ["AURORA/data/something/frames/194895/first.jpg", "AURORA/data/something/frames/194895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling book out of box"}]} +{"id": "000000107771", "images": ["AURORA/data/something/frames/22463/first.jpg", "AURORA/data/something/frames/22463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing something into two pieces"}]} +{"id": "000000107772", "images": ["AURORA/data/something/frames/3855/first.jpg", "AURORA/data/something/frames/3855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: something being deflected from something"}]} +{"id": "000000107773", "images": ["AURORA/data/something/frames/35306/first.jpg", "AURORA/data/something/frames/35306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key and padlock closer to each other"}]} +{"id": "000000107774", "images": ["AURORA/data/something/frames/208793/first.jpg", "AURORA/data/something/frames/208793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a stuffed animal out of a locker"}]} +{"id": "000000107775", "images": ["AURORA/data/something/frames/111294/first.jpg", "AURORA/data/something/frames/111294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000107776", "images": ["AURORA/data/something/frames/32444/first.jpg", "AURORA/data/something/frames/32444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper in half"}]} +{"id": "000000107777", "images": ["AURORA/data/something/frames/168467/first.jpg", "AURORA/data/something/frames/168467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto soil"}]} +{"id": "000000107778", "images": ["AURORA/data/something/frames/84702/first.jpg", "AURORA/data/something/frames/84702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming beer bottle"}]} +{"id": "000000107779", "images": ["AURORA/data/something/frames/182461/first.jpg", "AURORA/data/something/frames/182461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a shoe colliding with filp flop and both come to a halt"}]} +{"id": "000000107780", "images": ["AURORA/data/something/frames/45090/first.jpg", "AURORA/data/something/frames/45090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming bird"}]} +{"id": "000000107781", "images": ["AURORA/data/something/frames/75372/first.jpg", "AURORA/data/something/frames/75372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching bag with your camera"}]} +{"id": "000000107782", "images": ["AURORA/data/something/frames/47429/first.jpg", "AURORA/data/something/frames/47429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass next to glass"}]} +{"id": "000000107783", "images": ["AURORA/data/something/frames/217360/first.jpg", "AURORA/data/something/frames/217360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering candies"}]} +{"id": "000000107784", "images": ["AURORA/data/something/frames/145308/first.jpg", "AURORA/data/something/frames/145308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass"}]} +{"id": "000000107785", "images": ["AURORA/data/something/frames/205/first.jpg", "AURORA/data/something/frames/205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing bottle"}]} +{"id": "000000107786", "images": ["AURORA/data/something/frames/2882/first.jpg", "AURORA/data/something/frames/2882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shoes underneath scooter"}]} +{"id": "000000107787", "images": ["AURORA/data/something/frames/35693/first.jpg", "AURORA/data/something/frames/35693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000107788", "images": ["AURORA/data/something/frames/154510/first.jpg", "AURORA/data/something/frames/154510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of table"}]} +{"id": "000000107789", "images": ["AURORA/data/something/frames/95587/first.jpg", "AURORA/data/something/frames/95587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping heart next to bowl"}]} +{"id": "000000107790", "images": ["AURORA/data/something/frames/102446/first.jpg", "AURORA/data/something/frames/102446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a key into a door knob"}]} +{"id": "000000107791", "images": ["AURORA/data/something/frames/70336/first.jpg", "AURORA/data/something/frames/70336/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a pack of tissue upside down"}]} +{"id": "000000107792", "images": ["AURORA/data/something/frames/15647/first.jpg", "AURORA/data/something/frames/15647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into charger but pulling it right out as you remove your hand"}]} +{"id": "000000107793", "images": ["AURORA/data/something/frames/42534/first.jpg", "AURORA/data/something/frames/42534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into cup"}]} +{"id": "000000107794", "images": ["AURORA/data/something/frames/26729/first.jpg", "AURORA/data/something/frames/26729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 books"}]} +{"id": "000000107795", "images": ["AURORA/data/something/frames/144166/first.jpg", "AURORA/data/something/frames/144166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming shoe rack"}]} +{"id": "000000107796", "images": ["AURORA/data/something/frames/191965/first.jpg", "AURORA/data/something/frames/191965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a male plug into a socket"}]} +{"id": "000000107797", "images": ["AURORA/data/something/frames/7355/first.jpg", "AURORA/data/something/frames/7355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red dairy so that it almost falls off but doesn't"}]} +{"id": "000000107798", "images": ["AURORA/data/something/frames/218614/first.jpg", "AURORA/data/something/frames/218614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting canister with spoon"}]} +{"id": "000000107799", "images": ["AURORA/data/something/frames/99731/first.jpg", "AURORA/data/something/frames/99731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping box over"}]} +{"id": "000000107800", "images": ["AURORA/data/something/frames/54669/first.jpg", "AURORA/data/something/frames/54669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup so that it almost falls off but doesn't"}]} +{"id": "000000107801", "images": ["AURORA/data/something/frames/67059/first.jpg", "AURORA/data/something/frames/67059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling rock from left to right"}]} +{"id": "000000107802", "images": ["AURORA/data/something/frames/188393/first.jpg", "AURORA/data/something/frames/188393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screwdriver into jar"}]} +{"id": "000000107803", "images": ["AURORA/data/something/frames/68542/first.jpg", "AURORA/data/something/frames/68542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cell phone up"}]} +{"id": "000000107804", "images": ["AURORA/data/something/frames/159935/first.jpg", "AURORA/data/something/frames/159935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging something into something but pulling it right out as you remove your hand"}]} +{"id": "000000107805", "images": ["AURORA/data/something/frames/50512/first.jpg", "AURORA/data/something/frames/50512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping spilled water off of surface"}]} +{"id": "000000107806", "images": ["AURORA/data/something/frames/149170/first.jpg", "AURORA/data/something/frames/149170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a head"}]} +{"id": "000000107807", "images": ["AURORA/data/something/frames/59683/first.jpg", "AURORA/data/something/frames/59683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening cd cover"}]} +{"id": "000000107808", "images": ["AURORA/data/something/frames/17102/first.jpg", "AURORA/data/something/frames/17102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving markers closer to a box"}]} +{"id": "000000107809", "images": ["AURORA/data/something/frames/93187/first.jpg", "AURORA/data/something/frames/93187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping chalk off of a mini chalkboard"}]} +{"id": "000000107810", "images": ["AURORA/data/something/frames/157951/first.jpg", "AURORA/data/something/frames/157951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening car door"}]} +{"id": "000000107811", "images": ["AURORA/data/something/frames/170930/first.jpg", "AURORA/data/something/frames/170930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000107812", "images": ["AURORA/data/something/frames/73461/first.jpg", "AURORA/data/something/frames/73461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red spoon next to glue stick"}]} +{"id": "000000107813", "images": ["AURORA/data/something/frames/157592/first.jpg", "AURORA/data/something/frames/157592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wallet into a boot"}]} +{"id": "000000107814", "images": ["AURORA/data/something/frames/63784/first.jpg", "AURORA/data/something/frames/63784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying angel on the table on its side, not upright"}]} +{"id": "000000107815", "images": ["AURORA/data/something/frames/2831/first.jpg", "AURORA/data/something/frames/2831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tv remote next to pill bottle"}]} +{"id": "000000107816", "images": ["AURORA/data/something/frames/179780/first.jpg", "AURORA/data/something/frames/179780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling oregano onto pasta salad"}]} +{"id": "000000107817", "images": ["AURORA/data/something/frames/158733/first.jpg", "AURORA/data/something/frames/158733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mobile phone on a surface"}]} +{"id": "000000107818", "images": ["AURORA/data/something/frames/167310/first.jpg", "AURORA/data/something/frames/167310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle next to juicer"}]} +{"id": "000000107819", "images": ["AURORA/data/something/frames/124639/first.jpg", "AURORA/data/something/frames/124639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening clamp"}]} +{"id": "000000107820", "images": ["AURORA/data/something/frames/65174/first.jpg", "AURORA/data/something/frames/65174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a shuttle cock into a container"}]} +{"id": "000000107821", "images": ["AURORA/data/something/frames/207821/first.jpg", "AURORA/data/something/frames/207821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting belt onto bag"}]} +{"id": "000000107822", "images": ["AURORA/data/something/frames/63123/first.jpg", "AURORA/data/something/frames/63123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book from table"}]} +{"id": "000000107823", "images": ["AURORA/data/something/frames/128313/first.jpg", "AURORA/data/something/frames/128313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottle top behind a padlock"}]} +{"id": "000000107824", "images": ["AURORA/data/something/frames/200556/first.jpg", "AURORA/data/something/frames/200556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a paintbrush upright on the table, so it falls on its side"}]} +{"id": "000000107825", "images": ["AURORA/data/something/frames/44580/first.jpg", "AURORA/data/something/frames/44580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) a lid of tupper ware"}]} +{"id": "000000107826", "images": ["AURORA/data/something/frames/150213/first.jpg", "AURORA/data/something/frames/150213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening peanut butter jar"}]} +{"id": "000000107827", "images": ["AURORA/data/something/frames/153535/first.jpg", "AURORA/data/something/frames/153535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000107828", "images": ["AURORA/data/something/frames/164486/first.jpg", "AURORA/data/something/frames/164486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking adapter"}]} +{"id": "000000107829", "images": ["AURORA/data/something/frames/150457/first.jpg", "AURORA/data/something/frames/150457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing white paper into two pieces"}]} +{"id": "000000107830", "images": ["AURORA/data/something/frames/209309/first.jpg", "AURORA/data/something/frames/209309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote with blanket"}]} +{"id": "000000107831", "images": ["AURORA/data/something/frames/95255/first.jpg", "AURORA/data/something/frames/95255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting chair with hairbrush"}]} +{"id": "000000107832", "images": ["AURORA/data/something/frames/37133/first.jpg", "AURORA/data/something/frames/37133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving part of match box"}]} +{"id": "000000107833", "images": ["AURORA/data/something/frames/23995/first.jpg", "AURORA/data/something/frames/23995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000107834", "images": ["AURORA/data/something/frames/71876/first.jpg", "AURORA/data/something/frames/71876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking flowers so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107835", "images": ["AURORA/data/something/frames/178006/first.jpg", "AURORA/data/something/frames/178006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker pen"}]} +{"id": "000000107836", "images": ["AURORA/data/something/frames/135467/first.jpg", "AURORA/data/something/frames/135467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000107837", "images": ["AURORA/data/something/frames/64706/first.jpg", "AURORA/data/something/frames/64706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing bouncing reindeer toy, revealing a toy robot behind"}]} +{"id": "000000107838", "images": ["AURORA/data/something/frames/38349/first.jpg", "AURORA/data/something/frames/38349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawyer"}]} +{"id": "000000107839", "images": ["AURORA/data/something/frames/122866/first.jpg", "AURORA/data/something/frames/122866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a knife next to a matchbox"}]} +{"id": "000000107840", "images": ["AURORA/data/something/frames/138191/first.jpg", "AURORA/data/something/frames/138191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling liptint from left to right"}]} +{"id": "000000107841", "images": ["AURORA/data/something/frames/9153/first.jpg", "AURORA/data/something/frames/9153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bike light from left to right"}]} +{"id": "000000107842", "images": ["AURORA/data/something/frames/103071/first.jpg", "AURORA/data/something/frames/103071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering fish"}]} +{"id": "000000107843", "images": ["AURORA/data/something/frames/41263/first.jpg", "AURORA/data/something/frames/41263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something on a surface"}]} +{"id": "000000107844", "images": ["AURORA/data/something/frames/78020/first.jpg", "AURORA/data/something/frames/78020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery, pebble and toy idol on the table"}]} +{"id": "000000107845", "images": ["AURORA/data/something/frames/213470/first.jpg", "AURORA/data/something/frames/213470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 blocks"}]} +{"id": "000000107846", "images": ["AURORA/data/something/frames/210496/first.jpg", "AURORA/data/something/frames/210496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mop into dustbin"}]} +{"id": "000000107847", "images": ["AURORA/data/something/frames/94678/first.jpg", "AURORA/data/something/frames/94678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sunglasses so that it almost falls off but doesn't"}]} +{"id": "000000107848", "images": ["AURORA/data/something/frames/61230/first.jpg", "AURORA/data/something/frames/61230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something down"}]} +{"id": "000000107849", "images": ["AURORA/data/something/frames/119356/first.jpg", "AURORA/data/something/frames/119356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a broom next to a trash shovel"}]} +{"id": "000000107850", "images": ["AURORA/data/something/frames/121577/first.jpg", "AURORA/data/something/frames/121577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a tape closer to sun glasses"}]} +{"id": "000000107851", "images": ["AURORA/data/something/frames/25819/first.jpg", "AURORA/data/something/frames/25819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting chair with cushion on it"}]} +{"id": "000000107852", "images": ["AURORA/data/something/frames/1036/first.jpg", "AURORA/data/something/frames/1036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a donut out of a pot"}]} +{"id": "000000107853", "images": ["AURORA/data/something/frames/23801/first.jpg", "AURORA/data/something/frames/23801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a charger"}]} +{"id": "000000107854", "images": ["AURORA/data/something/frames/4121/first.jpg", "AURORA/data/something/frames/4121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000107855", "images": ["AURORA/data/something/frames/26332/first.jpg", "AURORA/data/something/frames/26332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping clip onto box"}]} +{"id": "000000107856", "images": ["AURORA/data/something/frames/88299/first.jpg", "AURORA/data/something/frames/88299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a notebook upside down"}]} +{"id": "000000107857", "images": ["AURORA/data/something/frames/119633/first.jpg", "AURORA/data/something/frames/119633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing makeup so that it almost falls off but doesn't"}]} +{"id": "000000107858", "images": ["AURORA/data/something/frames/180201/first.jpg", "AURORA/data/something/frames/180201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling salt onto paper"}]} +{"id": "000000107859", "images": ["AURORA/data/something/frames/56585/first.jpg", "AURORA/data/something/frames/56585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding unfolding kerchief"}]} +{"id": "000000107860", "images": ["AURORA/data/something/frames/150946/first.jpg", "AURORA/data/something/frames/150946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending meat stick so that it deforms"}]} +{"id": "000000107861", "images": ["AURORA/data/something/frames/23981/first.jpg", "AURORA/data/something/frames/23981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box and can closer to each other"}]} +{"id": "000000107862", "images": ["AURORA/data/something/frames/54046/first.jpg", "AURORA/data/something/frames/54046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a container"}]} +{"id": "000000107863", "images": ["AURORA/data/something/frames/159885/first.jpg", "AURORA/data/something/frames/159885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with lotion container on it but not enough for it to slide down"}]} +{"id": "000000107864", "images": ["AURORA/data/something/frames/37269/first.jpg", "AURORA/data/something/frames/37269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing purple microfiber so that it almost falls off but doesn't"}]} +{"id": "000000107865", "images": ["AURORA/data/something/frames/107976/first.jpg", "AURORA/data/something/frames/107976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable down"}]} +{"id": "000000107866", "images": ["AURORA/data/something/frames/125163/first.jpg", "AURORA/data/something/frames/125163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting straw upright on the table, so it falls on its side"}]} +{"id": "000000107867", "images": ["AURORA/data/something/frames/218165/first.jpg", "AURORA/data/something/frames/218165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lime behind nectarine"}]} +{"id": "000000107868", "images": ["AURORA/data/something/frames/188778/first.jpg", "AURORA/data/something/frames/188778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin into a box"}]} +{"id": "000000107869", "images": ["AURORA/data/something/frames/83282/first.jpg", "AURORA/data/something/frames/83282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000107870", "images": ["AURORA/data/something/frames/42536/first.jpg", "AURORA/data/something/frames/42536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching a shoe with your camera"}]} +{"id": "000000107871", "images": ["AURORA/data/something/frames/110820/first.jpg", "AURORA/data/something/frames/110820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup into a dishwasher"}]} +{"id": "000000107872", "images": ["AURORA/data/something/frames/128205/first.jpg", "AURORA/data/something/frames/128205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a smartphone on a surface"}]} +{"id": "000000107873", "images": ["AURORA/data/something/frames/142505/first.jpg", "AURORA/data/something/frames/142505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting door glass with bottle"}]} +{"id": "000000107874", "images": ["AURORA/data/something/frames/110329/first.jpg", "AURORA/data/something/frames/110329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a plastic bottle into a bag"}]} +{"id": "000000107875", "images": ["AURORA/data/something/frames/216835/first.jpg", "AURORA/data/something/frames/216835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning mug upside down"}]} +{"id": "000000107876", "images": ["AURORA/data/something/frames/160220/first.jpg", "AURORA/data/something/frames/160220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope into two pieces"}]} +{"id": "000000107877", "images": ["AURORA/data/something/frames/148838/first.jpg", "AURORA/data/something/frames/148838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball behind box"}]} +{"id": "000000107878", "images": ["AURORA/data/something/frames/192355/first.jpg", "AURORA/data/something/frames/192355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing bottled water, revealing nail cutter behind"}]} +{"id": "000000107879", "images": ["AURORA/data/something/frames/125710/first.jpg", "AURORA/data/something/frames/125710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail polish from right to left"}]} +{"id": "000000107880", "images": ["AURORA/data/something/frames/197559/first.jpg", "AURORA/data/something/frames/197559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering toy duck"}]} +{"id": "000000107881", "images": ["AURORA/data/something/frames/149682/first.jpg", "AURORA/data/something/frames/149682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking diary from table"}]} +{"id": "000000107882", "images": ["AURORA/data/something/frames/116350/first.jpg", "AURORA/data/something/frames/116350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coconut shell from right to left"}]} +{"id": "000000107883", "images": ["AURORA/data/something/frames/43337/first.jpg", "AURORA/data/something/frames/43337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting compact po and bottle of water on the table"}]} +{"id": "000000107884", "images": ["AURORA/data/something/frames/109704/first.jpg", "AURORA/data/something/frames/109704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen and box on the table"}]} +{"id": "000000107885", "images": ["AURORA/data/something/frames/214243/first.jpg", "AURORA/data/something/frames/214243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of scissor"}]} +{"id": "000000107886", "images": ["AURORA/data/something/frames/62250/first.jpg", "AURORA/data/something/frames/62250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tape onto a book"}]} +{"id": "000000107887", "images": ["AURORA/data/something/frames/42143/first.jpg", "AURORA/data/something/frames/42143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling marker from behind of automon"}]} +{"id": "000000107888", "images": ["AURORA/data/something/frames/169671/first.jpg", "AURORA/data/something/frames/169671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall outlet"}]} +{"id": "000000107889", "images": ["AURORA/data/something/frames/211313/first.jpg", "AURORA/data/something/frames/211313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching clip magnet to refrigerator"}]} +{"id": "000000107890", "images": ["AURORA/data/something/frames/41762/first.jpg", "AURORA/data/something/frames/41762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paint from similar items on table"}]} +{"id": "000000107891", "images": ["AURORA/data/something/frames/116306/first.jpg", "AURORA/data/something/frames/116306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling markets up"}]} +{"id": "000000107892", "images": ["AURORA/data/something/frames/18288/first.jpg", "AURORA/data/something/frames/18288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming tyre"}]} +{"id": "000000107893", "images": ["AURORA/data/something/frames/113411/first.jpg", "AURORA/data/something/frames/113411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000107894", "images": ["AURORA/data/something/frames/90874/first.jpg", "AURORA/data/something/frames/90874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into notebook but pulling it right out as you remove your hand"}]} +{"id": "000000107895", "images": ["AURORA/data/something/frames/210488/first.jpg", "AURORA/data/something/frames/210488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing colorful advertisement paper into two pieces"}]} +{"id": "000000107896", "images": ["AURORA/data/something/frames/153957/first.jpg", "AURORA/data/something/frames/153957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 plate onto stand"}]} +{"id": "000000107897", "images": ["AURORA/data/something/frames/44961/first.jpg", "AURORA/data/something/frames/44961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup over"}]} +{"id": "000000107898", "images": ["AURORA/data/something/frames/23626/first.jpg", "AURORA/data/something/frames/23626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a nonstick pan onto a portable stove"}]} +{"id": "000000107899", "images": ["AURORA/data/something/frames/24384/first.jpg", "AURORA/data/something/frames/24384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing car door"}]} +{"id": "000000107900", "images": ["AURORA/data/something/frames/72745/first.jpg", "AURORA/data/something/frames/72745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering blue spoon with white handkerchief"}]} +{"id": "000000107901", "images": ["AURORA/data/something/frames/181837/first.jpg", "AURORA/data/something/frames/181837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scrap paper closer to scrap paper"}]} +{"id": "000000107902", "images": ["AURORA/data/something/frames/207899/first.jpg", "AURORA/data/something/frames/207899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing fluorescent lightbulb behind"}]} +{"id": "000000107903", "images": ["AURORA/data/something/frames/32641/first.jpg", "AURORA/data/something/frames/32641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a headphones with a remote control"}]} +{"id": "000000107904", "images": ["AURORA/data/something/frames/175872/first.jpg", "AURORA/data/something/frames/175872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on the edge of box so it is not supported and falls down"}]} +{"id": "000000107905", "images": ["AURORA/data/something/frames/163210/first.jpg", "AURORA/data/something/frames/163210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing bag just a little bit"}]} +{"id": "000000107906", "images": ["AURORA/data/something/frames/11020/first.jpg", "AURORA/data/something/frames/11020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000107907", "images": ["AURORA/data/something/frames/57017/first.jpg", "AURORA/data/something/frames/57017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000107908", "images": ["AURORA/data/something/frames/14426/first.jpg", "AURORA/data/something/frames/14426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a beer can on a surface"}]} +{"id": "000000107909", "images": ["AURORA/data/something/frames/201793/first.jpg", "AURORA/data/something/frames/201793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a ball"}]} +{"id": "000000107910", "images": ["AURORA/data/something/frames/90818/first.jpg", "AURORA/data/something/frames/90818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000107911", "images": ["AURORA/data/something/frames/88774/first.jpg", "AURORA/data/something/frames/88774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying mug on the table on its side, not upright"}]} +{"id": "000000107912", "images": ["AURORA/data/something/frames/36523/first.jpg", "AURORA/data/something/frames/36523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses behind mug"}]} +{"id": "000000107913", "images": ["AURORA/data/something/frames/214556/first.jpg", "AURORA/data/something/frames/214556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking book up"}]} +{"id": "000000107914", "images": ["AURORA/data/something/frames/182148/first.jpg", "AURORA/data/something/frames/182148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking nail polish up"}]} +{"id": "000000107915", "images": ["AURORA/data/something/frames/94819/first.jpg", "AURORA/data/something/frames/94819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000107916", "images": ["AURORA/data/something/frames/123886/first.jpg", "AURORA/data/something/frames/123886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 ink bottles"}]} +{"id": "000000107917", "images": ["AURORA/data/something/frames/5315/first.jpg", "AURORA/data/something/frames/5315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen"}]} +{"id": "000000107918", "images": ["AURORA/data/something/frames/50649/first.jpg", "AURORA/data/something/frames/50649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000107919", "images": ["AURORA/data/something/frames/173269/first.jpg", "AURORA/data/something/frames/173269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin onto a table"}]} +{"id": "000000107920", "images": ["AURORA/data/something/frames/79120/first.jpg", "AURORA/data/something/frames/79120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a book"}]} +{"id": "000000107921", "images": ["AURORA/data/something/frames/99449/first.jpg", "AURORA/data/something/frames/99449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing green coloured toy car into black pouch"}]} +{"id": "000000107922", "images": ["AURORA/data/something/frames/20675/first.jpg", "AURORA/data/something/frames/20675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a basket handle"}]} +{"id": "000000107923", "images": ["AURORA/data/something/frames/145487/first.jpg", "AURORA/data/something/frames/145487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving purple balloon pump down"}]} +{"id": "000000107924", "images": ["AURORA/data/something/frames/213083/first.jpg", "AURORA/data/something/frames/213083/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting tube"}]} +{"id": "000000107925", "images": ["AURORA/data/something/frames/201968/first.jpg", "AURORA/data/something/frames/201968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching chair with your camera"}]} +{"id": "000000107926", "images": ["AURORA/data/something/frames/18455/first.jpg", "AURORA/data/something/frames/18455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 laptop charger onto chair"}]} +{"id": "000000107927", "images": ["AURORA/data/something/frames/80510/first.jpg", "AURORA/data/something/frames/80510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a toy on a surface"}]} +{"id": "000000107928", "images": ["AURORA/data/something/frames/1153/first.jpg", "AURORA/data/something/frames/1153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toy car from right to left"}]} +{"id": "000000107929", "images": ["AURORA/data/something/frames/12327/first.jpg", "AURORA/data/something/frames/12327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb similar to other combs that are already on the table"}]} +{"id": "000000107930", "images": ["AURORA/data/something/frames/28747/first.jpg", "AURORA/data/something/frames/28747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000107931", "images": ["AURORA/data/something/frames/29152/first.jpg", "AURORA/data/something/frames/29152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coin towards the camera"}]} +{"id": "000000107932", "images": ["AURORA/data/something/frames/35407/first.jpg", "AURORA/data/something/frames/35407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding piece of paper"}]} +{"id": "000000107933", "images": ["AURORA/data/something/frames/139004/first.jpg", "AURORA/data/something/frames/139004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking duster up"}]} +{"id": "000000107934", "images": ["AURORA/data/something/frames/208933/first.jpg", "AURORA/data/something/frames/208933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book"}]} +{"id": "000000107935", "images": ["AURORA/data/something/frames/96476/first.jpg", "AURORA/data/something/frames/96476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with highlighter on it but not enough for it to slide down"}]} +{"id": "000000107936", "images": ["AURORA/data/something/frames/218059/first.jpg", "AURORA/data/something/frames/218059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000107937", "images": ["AURORA/data/something/frames/209512/first.jpg", "AURORA/data/something/frames/209512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking coffee cup up"}]} +{"id": "000000107938", "images": ["AURORA/data/something/frames/16836/first.jpg", "AURORA/data/something/frames/16836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an ink bottle"}]} +{"id": "000000107939", "images": ["AURORA/data/something/frames/189231/first.jpg", "AURORA/data/something/frames/189231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting vase on a surface"}]} +{"id": "000000107940", "images": ["AURORA/data/something/frames/95551/first.jpg", "AURORA/data/something/frames/95551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into laptop computer"}]} +{"id": "000000107941", "images": ["AURORA/data/something/frames/220548/first.jpg", "AURORA/data/something/frames/220548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote onto box"}]} +{"id": "000000107942", "images": ["AURORA/data/something/frames/126554/first.jpg", "AURORA/data/something/frames/126554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving post-it up"}]} +{"id": "000000107943", "images": ["AURORA/data/something/frames/9501/first.jpg", "AURORA/data/something/frames/9501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book onto bed"}]} +{"id": "000000107944", "images": ["AURORA/data/something/frames/93470/first.jpg", "AURORA/data/something/frames/93470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing jar"}]} +{"id": "000000107945", "images": ["AURORA/data/something/frames/141483/first.jpg", "AURORA/data/something/frames/141483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hair tie into cup"}]} +{"id": "000000107946", "images": ["AURORA/data/something/frames/167275/first.jpg", "AURORA/data/something/frames/167275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug until it overflows"}]} +{"id": "000000107947", "images": ["AURORA/data/something/frames/32553/first.jpg", "AURORA/data/something/frames/32553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box with remote"}]} +{"id": "000000107948", "images": ["AURORA/data/something/frames/217282/first.jpg", "AURORA/data/something/frames/217282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening umbrella"}]} +{"id": "000000107949", "images": ["AURORA/data/something/frames/3246/first.jpg", "AURORA/data/something/frames/3246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107950", "images": ["AURORA/data/something/frames/78749/first.jpg", "AURORA/data/something/frames/78749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking lime so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107951", "images": ["AURORA/data/something/frames/13925/first.jpg", "AURORA/data/something/frames/13925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a refill so that it deforms"}]} +{"id": "000000107952", "images": ["AURORA/data/something/frames/25518/first.jpg", "AURORA/data/something/frames/25518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a tennis ball and a tennis ball so they collide with each other"}]} +{"id": "000000107953", "images": ["AURORA/data/something/frames/9602/first.jpg", "AURORA/data/something/frames/9602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel down"}]} +{"id": "000000107954", "images": ["AURORA/data/something/frames/125171/first.jpg", "AURORA/data/something/frames/125171/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket but pulling it right out as you remove your hand"}]} +{"id": "000000107955", "images": ["AURORA/data/something/frames/164029/first.jpg", "AURORA/data/something/frames/164029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping ice cream up with spoon"}]} +{"id": "000000107956", "images": ["AURORA/data/something/frames/87608/first.jpg", "AURORA/data/something/frames/87608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lid next to box"}]} +{"id": "000000107957", "images": ["AURORA/data/something/frames/69740/first.jpg", "AURORA/data/something/frames/69740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a bottle top"}]} +{"id": "000000107958", "images": ["AURORA/data/something/frames/146825/first.jpg", "AURORA/data/something/frames/146825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a lamp into the wall"}]} +{"id": "000000107959", "images": ["AURORA/data/something/frames/100955/first.jpg", "AURORA/data/something/frames/100955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothpaste up"}]} +{"id": "000000107960", "images": ["AURORA/data/something/frames/160887/first.jpg", "AURORA/data/something/frames/160887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving purse and pen away from each other"}]} +{"id": "000000107961", "images": ["AURORA/data/something/frames/69151/first.jpg", "AURORA/data/something/frames/69151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon and cup on the table"}]} +{"id": "000000107962", "images": ["AURORA/data/something/frames/171353/first.jpg", "AURORA/data/something/frames/171353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar of peanut butter in front of bottle aspirin"}]} +{"id": "000000107963", "images": ["AURORA/data/something/frames/205299/first.jpg", "AURORA/data/something/frames/205299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a hat upside down"}]} +{"id": "000000107964", "images": ["AURORA/data/something/frames/149892/first.jpg", "AURORA/data/something/frames/149892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling spoon from behind of pan"}]} +{"id": "000000107965", "images": ["AURORA/data/something/frames/152514/first.jpg", "AURORA/data/something/frames/152514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb upright on the table, so it falls on its side"}]} +{"id": "000000107966", "images": ["AURORA/data/something/frames/27828/first.jpg", "AURORA/data/something/frames/27828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding an envelope"}]} +{"id": "000000107967", "images": ["AURORA/data/something/frames/109950/first.jpg", "AURORA/data/something/frames/109950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping something in front of something"}]} +{"id": "000000107968", "images": ["AURORA/data/something/frames/165280/first.jpg", "AURORA/data/something/frames/165280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107969", "images": ["AURORA/data/something/frames/38896/first.jpg", "AURORA/data/something/frames/38896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering usb cable"}]} +{"id": "000000107970", "images": ["AURORA/data/something/frames/125973/first.jpg", "AURORA/data/something/frames/125973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cassette tape into mug"}]} +{"id": "000000107971", "images": ["AURORA/data/something/frames/15545/first.jpg", "AURORA/data/something/frames/15545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting sand bag up completely without letting it drop down"}]} +{"id": "000000107972", "images": ["AURORA/data/something/frames/79760/first.jpg", "AURORA/data/something/frames/79760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying puzzle piece in middle of couch seat cushions"}]} +{"id": "000000107973", "images": ["AURORA/data/something/frames/119182/first.jpg", "AURORA/data/something/frames/119182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cushion onto floor"}]} +{"id": "000000107974", "images": ["AURORA/data/something/frames/129064/first.jpg", "AURORA/data/something/frames/129064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hammer on a surface"}]} +{"id": "000000107975", "images": ["AURORA/data/something/frames/118240/first.jpg", "AURORA/data/something/frames/118240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sponge just a little bit"}]} +{"id": "000000107976", "images": ["AURORA/data/something/frames/16514/first.jpg", "AURORA/data/something/frames/16514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a toy with a ball"}]} +{"id": "000000107977", "images": ["AURORA/data/something/frames/52261/first.jpg", "AURORA/data/something/frames/52261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cushion with clock on it"}]} +{"id": "000000107978", "images": ["AURORA/data/something/frames/96092/first.jpg", "AURORA/data/something/frames/96092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling stapler from right to left"}]} +{"id": "000000107979", "images": ["AURORA/data/something/frames/122474/first.jpg", "AURORA/data/something/frames/122474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding frock"}]} +{"id": "000000107980", "images": ["AURORA/data/something/frames/195430/first.jpg", "AURORA/data/something/frames/195430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of paper without letting it drop down"}]} +{"id": "000000107981", "images": ["AURORA/data/something/frames/140866/first.jpg", "AURORA/data/something/frames/140866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling flashlight onto laptop"}]} +{"id": "000000107982", "images": ["AURORA/data/something/frames/101419/first.jpg", "AURORA/data/something/frames/101419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000107983", "images": ["AURORA/data/something/frames/80166/first.jpg", "AURORA/data/something/frames/80166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a mouse from the table"}]} +{"id": "000000107984", "images": ["AURORA/data/something/frames/34430/first.jpg", "AURORA/data/something/frames/34430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking pot so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000107985", "images": ["AURORA/data/something/frames/170397/first.jpg", "AURORA/data/something/frames/170397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottle lid"}]} +{"id": "000000107986", "images": ["AURORA/data/something/frames/21630/first.jpg", "AURORA/data/something/frames/21630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening window"}]} +{"id": "000000107987", "images": ["AURORA/data/something/frames/109892/first.jpg", "AURORA/data/something/frames/109892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving perfume bottle closer to toy"}]} +{"id": "000000107988", "images": ["AURORA/data/something/frames/203487/first.jpg", "AURORA/data/something/frames/203487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a pen without letting it drop down"}]} +{"id": "000000107989", "images": ["AURORA/data/something/frames/92780/first.jpg", "AURORA/data/something/frames/92780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000107990", "images": ["AURORA/data/something/frames/158296/first.jpg", "AURORA/data/something/frames/158296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000107991", "images": ["AURORA/data/something/frames/38752/first.jpg", "AURORA/data/something/frames/38752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting matchbox on the edge of laptop so it is not supported and falls down"}]} +{"id": "000000107992", "images": ["AURORA/data/something/frames/32780/first.jpg", "AURORA/data/something/frames/32780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a cloth wet until water comes out"}]} +{"id": "000000107993", "images": ["AURORA/data/something/frames/210732/first.jpg", "AURORA/data/something/frames/210732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing blue fabric into two pieces"}]} +{"id": "000000107994", "images": ["AURORA/data/something/frames/110608/first.jpg", "AURORA/data/something/frames/110608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming board"}]} +{"id": "000000107995", "images": ["AURORA/data/something/frames/194341/first.jpg", "AURORA/data/something/frames/194341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pencil from left to right"}]} +{"id": "000000107996", "images": ["AURORA/data/something/frames/154080/first.jpg", "AURORA/data/something/frames/154080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a fishing lure with a screwdriver"}]} +{"id": "000000107997", "images": ["AURORA/data/something/frames/127560/first.jpg", "AURORA/data/something/frames/127560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cellphone with handkerchief"}]} +{"id": "000000107998", "images": ["AURORA/data/something/frames/4049/first.jpg", "AURORA/data/something/frames/4049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jeep door"}]} +{"id": "000000107999", "images": ["AURORA/data/something/frames/209537/first.jpg", "AURORA/data/something/frames/209537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar on a surface"}]} +{"id": "000000108000", "images": ["AURORA/data/something/frames/66261/first.jpg", "AURORA/data/something/frames/66261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen and white pebble on the table"}]} +{"id": "000000108001", "images": ["AURORA/data/something/frames/80122/first.jpg", "AURORA/data/something/frames/80122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting red bottlecap up completely without letting it drop down"}]} +{"id": "000000108002", "images": ["AURORA/data/something/frames/195038/first.jpg", "AURORA/data/something/frames/195038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses, scissors and nail polish on the table"}]} +{"id": "000000108003", "images": ["AURORA/data/something/frames/29686/first.jpg", "AURORA/data/something/frames/29686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning scotch tape upside down"}]} +{"id": "000000108004", "images": ["AURORA/data/something/frames/109837/first.jpg", "AURORA/data/something/frames/109837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors"}]} +{"id": "000000108005", "images": ["AURORA/data/something/frames/211030/first.jpg", "AURORA/data/something/frames/211030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108006", "images": ["AURORA/data/something/frames/155499/first.jpg", "AURORA/data/something/frames/155499/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of lid"}]} +{"id": "000000108007", "images": ["AURORA/data/something/frames/34040/first.jpg", "AURORA/data/something/frames/34040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving canister closer to paper towels"}]} +{"id": "000000108008", "images": ["AURORA/data/something/frames/173845/first.jpg", "AURORA/data/something/frames/173845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse away from watch"}]} +{"id": "000000108009", "images": ["AURORA/data/something/frames/108135/first.jpg", "AURORA/data/something/frames/108135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of chair without letting it drop down"}]} +{"id": "000000108010", "images": ["AURORA/data/something/frames/181658/first.jpg", "AURORA/data/something/frames/181658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning air conditioner remote upside down"}]} +{"id": "000000108011", "images": ["AURORA/data/something/frames/57662/first.jpg", "AURORA/data/something/frames/57662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass until it overflows"}]} +{"id": "000000108012", "images": ["AURORA/data/something/frames/5690/first.jpg", "AURORA/data/something/frames/5690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000108013", "images": ["AURORA/data/something/frames/79426/first.jpg", "AURORA/data/something/frames/79426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking knife"}]} +{"id": "000000108014", "images": ["AURORA/data/something/frames/4283/first.jpg", "AURORA/data/something/frames/4283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a chord so that it deforms"}]} +{"id": "000000108015", "images": ["AURORA/data/something/frames/141599/first.jpg", "AURORA/data/something/frames/141599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a glass"}]} +{"id": "000000108016", "images": ["AURORA/data/something/frames/216386/first.jpg", "AURORA/data/something/frames/216386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a book up"}]} +{"id": "000000108017", "images": ["AURORA/data/something/frames/76041/first.jpg", "AURORA/data/something/frames/76041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108018", "images": ["AURORA/data/something/frames/191571/first.jpg", "AURORA/data/something/frames/191571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a bottle away from each other"}]} +{"id": "000000108019", "images": ["AURORA/data/something/frames/216370/first.jpg", "AURORA/data/something/frames/216370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a cup"}]} +{"id": "000000108020", "images": ["AURORA/data/something/frames/149035/first.jpg", "AURORA/data/something/frames/149035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: orange being deflected from vase"}]} +{"id": "000000108021", "images": ["AURORA/data/something/frames/204335/first.jpg", "AURORA/data/something/frames/204335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling purse from left to right"}]} +{"id": "000000108022", "images": ["AURORA/data/something/frames/164129/first.jpg", "AURORA/data/something/frames/164129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a leg of a toy"}]} +{"id": "000000108023", "images": ["AURORA/data/something/frames/91601/first.jpg", "AURORA/data/something/frames/91601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dust off of slab"}]} +{"id": "000000108024", "images": ["AURORA/data/something/frames/5347/first.jpg", "AURORA/data/something/frames/5347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming gate"}]} +{"id": "000000108025", "images": ["AURORA/data/something/frames/59796/first.jpg", "AURORA/data/something/frames/59796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a pen"}]} +{"id": "000000108026", "images": ["AURORA/data/something/frames/164683/first.jpg", "AURORA/data/something/frames/164683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling salt onto table"}]} +{"id": "000000108027", "images": ["AURORA/data/something/frames/29540/first.jpg", "AURORA/data/something/frames/29540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin behind a box"}]} +{"id": "000000108028", "images": ["AURORA/data/something/frames/125787/first.jpg", "AURORA/data/something/frames/125787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a smartphone behind a book"}]} +{"id": "000000108029", "images": ["AURORA/data/something/frames/214420/first.jpg", "AURORA/data/something/frames/214420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bag from floor"}]} +{"id": "000000108030", "images": ["AURORA/data/something/frames/111521/first.jpg", "AURORA/data/something/frames/111521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening piller"}]} +{"id": "000000108031", "images": ["AURORA/data/something/frames/166184/first.jpg", "AURORA/data/something/frames/166184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note down"}]} +{"id": "000000108032", "images": ["AURORA/data/something/frames/36558/first.jpg", "AURORA/data/something/frames/36558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling rock from right to left"}]} +{"id": "000000108033", "images": ["AURORA/data/something/frames/24375/first.jpg", "AURORA/data/something/frames/24375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a sponge into a glass"}]} +{"id": "000000108034", "images": ["AURORA/data/something/frames/66399/first.jpg", "AURORA/data/something/frames/66399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hairband into green bowl"}]} +{"id": "000000108035", "images": ["AURORA/data/something/frames/26104/first.jpg", "AURORA/data/something/frames/26104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lighter behind cup"}]} +{"id": "000000108036", "images": ["AURORA/data/something/frames/123641/first.jpg", "AURORA/data/something/frames/123641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle in front of kendama"}]} +{"id": "000000108037", "images": ["AURORA/data/something/frames/130288/first.jpg", "AURORA/data/something/frames/130288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning candle holder upside down"}]} +{"id": "000000108038", "images": ["AURORA/data/something/frames/191799/first.jpg", "AURORA/data/something/frames/191799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing briefcase"}]} +{"id": "000000108039", "images": ["AURORA/data/something/frames/73240/first.jpg", "AURORA/data/something/frames/73240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser closer to usb cable"}]} +{"id": "000000108040", "images": ["AURORA/data/something/frames/125027/first.jpg", "AURORA/data/something/frames/125027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming flowers"}]} +{"id": "000000108041", "images": ["AURORA/data/something/frames/214423/first.jpg", "AURORA/data/something/frames/214423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of bracelets holder"}]} +{"id": "000000108042", "images": ["AURORA/data/something/frames/115639/first.jpg", "AURORA/data/something/frames/115639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet in front of coaster"}]} +{"id": "000000108043", "images": ["AURORA/data/something/frames/130683/first.jpg", "AURORA/data/something/frames/130683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting salt and pepper on the table"}]} +{"id": "000000108044", "images": ["AURORA/data/something/frames/178102/first.jpg", "AURORA/data/something/frames/178102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000108045", "images": ["AURORA/data/something/frames/64611/first.jpg", "AURORA/data/something/frames/64611/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: glass colliding with tube and both come to a halt"}]} +{"id": "000000108046", "images": ["AURORA/data/something/frames/84008/first.jpg", "AURORA/data/something/frames/84008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet up"}]} +{"id": "000000108047", "images": ["AURORA/data/something/frames/90925/first.jpg", "AURORA/data/something/frames/90925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red pot holder from left to right"}]} +{"id": "000000108048", "images": ["AURORA/data/something/frames/50433/first.jpg", "AURORA/data/something/frames/50433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bangle colliding with another bangle and both are being deflected"}]} +{"id": "000000108049", "images": ["AURORA/data/something/frames/107327/first.jpg", "AURORA/data/something/frames/107327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000108050", "images": ["AURORA/data/something/frames/136195/first.jpg", "AURORA/data/something/frames/136195/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000108051", "images": ["AURORA/data/something/frames/174437/first.jpg", "AURORA/data/something/frames/174437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108052", "images": ["AURORA/data/something/frames/81368/first.jpg", "AURORA/data/something/frames/81368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking jar up"}]} +{"id": "000000108053", "images": ["AURORA/data/something/frames/151814/first.jpg", "AURORA/data/something/frames/151814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a towel wet until water comes out"}]} +{"id": "000000108054", "images": ["AURORA/data/something/frames/141781/first.jpg", "AURORA/data/something/frames/141781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candlestick closer to candlestick"}]} +{"id": "000000108055", "images": ["AURORA/data/something/frames/165532/first.jpg", "AURORA/data/something/frames/165532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball into water"}]} +{"id": "000000108056", "images": ["AURORA/data/something/frames/62593/first.jpg", "AURORA/data/something/frames/62593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red dairy from left to right"}]} +{"id": "000000108057", "images": ["AURORA/data/something/frames/54070/first.jpg", "AURORA/data/something/frames/54070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lipbam into cup"}]} +{"id": "000000108058", "images": ["AURORA/data/something/frames/76942/first.jpg", "AURORA/data/something/frames/76942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pick away from eraser"}]} +{"id": "000000108059", "images": ["AURORA/data/something/frames/101784/first.jpg", "AURORA/data/something/frames/101784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing polish remover, revealing moisturizer behind"}]} +{"id": "000000108060", "images": ["AURORA/data/something/frames/44725/first.jpg", "AURORA/data/something/frames/44725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of liitle red box"}]} +{"id": "000000108061", "images": ["AURORA/data/something/frames/21829/first.jpg", "AURORA/data/something/frames/21829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000108062", "images": ["AURORA/data/something/frames/203352/first.jpg", "AURORA/data/something/frames/203352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming board"}]} +{"id": "000000108063", "images": ["AURORA/data/something/frames/58916/first.jpg", "AURORA/data/something/frames/58916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering the tablet"}]} +{"id": "000000108064", "images": ["AURORA/data/something/frames/16369/first.jpg", "AURORA/data/something/frames/16369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108065", "images": ["AURORA/data/something/frames/156468/first.jpg", "AURORA/data/something/frames/156468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker pen next to tooth brush"}]} +{"id": "000000108066", "images": ["AURORA/data/something/frames/37731/first.jpg", "AURORA/data/something/frames/37731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a candle holder with a dishcloth"}]} +{"id": "000000108067", "images": ["AURORA/data/something/frames/135788/first.jpg", "AURORA/data/something/frames/135788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving well and fork closer to each other"}]} +{"id": "000000108068", "images": ["AURORA/data/something/frames/198852/first.jpg", "AURORA/data/something/frames/198852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing comb with bottle cap"}]} +{"id": "000000108069", "images": ["AURORA/data/something/frames/93864/first.jpg", "AURORA/data/something/frames/93864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming clouds"}]} +{"id": "000000108070", "images": ["AURORA/data/something/frames/142103/first.jpg", "AURORA/data/something/frames/142103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bolt with sky blue colour cloth"}]} +{"id": "000000108071", "images": ["AURORA/data/something/frames/16840/first.jpg", "AURORA/data/something/frames/16840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking brochure out of plastic box"}]} +{"id": "000000108072", "images": ["AURORA/data/something/frames/39556/first.jpg", "AURORA/data/something/frames/39556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to paper"}]} +{"id": "000000108073", "images": ["AURORA/data/something/frames/166766/first.jpg", "AURORA/data/something/frames/166766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking green frog doll so that it falls over"}]} +{"id": "000000108074", "images": ["AURORA/data/something/frames/208107/first.jpg", "AURORA/data/something/frames/208107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking yellow ball out of cookie box"}]} +{"id": "000000108075", "images": ["AURORA/data/something/frames/58361/first.jpg", "AURORA/data/something/frames/58361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108076", "images": ["AURORA/data/something/frames/62648/first.jpg", "AURORA/data/something/frames/62648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon away from stapler"}]} +{"id": "000000108077", "images": ["AURORA/data/something/frames/118021/first.jpg", "AURORA/data/something/frames/118021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator up"}]} +{"id": "000000108078", "images": ["AURORA/data/something/frames/96385/first.jpg", "AURORA/data/something/frames/96385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening tub of coconut oil"}]} +{"id": "000000108079", "images": ["AURORA/data/something/frames/14129/first.jpg", "AURORA/data/something/frames/14129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting powder bottle behind wood box"}]} +{"id": "000000108080", "images": ["AURORA/data/something/frames/133520/first.jpg", "AURORA/data/something/frames/133520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into electric plug but pulling it right out as you remove your hand"}]} +{"id": "000000108081", "images": ["AURORA/data/something/frames/184798/first.jpg", "AURORA/data/something/frames/184798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying an onion in rice"}]} +{"id": "000000108082", "images": ["AURORA/data/something/frames/193768/first.jpg", "AURORA/data/something/frames/193768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108083", "images": ["AURORA/data/something/frames/178486/first.jpg", "AURORA/data/something/frames/178486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000108084", "images": ["AURORA/data/something/frames/207802/first.jpg", "AURORA/data/something/frames/207802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green cup from left to right"}]} +{"id": "000000108085", "images": ["AURORA/data/something/frames/3227/first.jpg", "AURORA/data/something/frames/3227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into water bottle"}]} +{"id": "000000108086", "images": ["AURORA/data/something/frames/13607/first.jpg", "AURORA/data/something/frames/13607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting trash bin with dustpan"}]} +{"id": "000000108087", "images": ["AURORA/data/something/frames/92938/first.jpg", "AURORA/data/something/frames/92938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lamp up"}]} +{"id": "000000108088", "images": ["AURORA/data/something/frames/97587/first.jpg", "AURORA/data/something/frames/97587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wheel of baby carriage"}]} +{"id": "000000108089", "images": ["AURORA/data/something/frames/152256/first.jpg", "AURORA/data/something/frames/152256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bowl from left to right"}]} +{"id": "000000108090", "images": ["AURORA/data/something/frames/18272/first.jpg", "AURORA/data/something/frames/18272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dinosaur into plate"}]} +{"id": "000000108091", "images": ["AURORA/data/something/frames/23699/first.jpg", "AURORA/data/something/frames/23699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cupcake onto plate"}]} +{"id": "000000108092", "images": ["AURORA/data/something/frames/9443/first.jpg", "AURORA/data/something/frames/9443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pint glass on a surface"}]} +{"id": "000000108093", "images": ["AURORA/data/something/frames/200743/first.jpg", "AURORA/data/something/frames/200743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen in front of box"}]} +{"id": "000000108094", "images": ["AURORA/data/something/frames/80845/first.jpg", "AURORA/data/something/frames/80845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle colliding with bottle and both are being deflected"}]} +{"id": "000000108095", "images": ["AURORA/data/something/frames/169572/first.jpg", "AURORA/data/something/frames/169572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108096", "images": ["AURORA/data/something/frames/7909/first.jpg", "AURORA/data/something/frames/7909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching white chalk piece with your camera"}]} +{"id": "000000108097", "images": ["AURORA/data/something/frames/134419/first.jpg", "AURORA/data/something/frames/134419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a calculator on a surface"}]} +{"id": "000000108098", "images": ["AURORA/data/something/frames/83261/first.jpg", "AURORA/data/something/frames/83261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glasses from left to right"}]} +{"id": "000000108099", "images": ["AURORA/data/something/frames/17174/first.jpg", "AURORA/data/something/frames/17174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass behind bottle"}]} +{"id": "000000108100", "images": ["AURORA/data/something/frames/124896/first.jpg", "AURORA/data/something/frames/124896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting straw"}]} +{"id": "000000108101", "images": ["AURORA/data/something/frames/219647/first.jpg", "AURORA/data/something/frames/219647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000108102", "images": ["AURORA/data/something/frames/92437/first.jpg", "AURORA/data/something/frames/92437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a tooth-stick until it breaks"}]} +{"id": "000000108103", "images": ["AURORA/data/something/frames/87247/first.jpg", "AURORA/data/something/frames/87247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shoe from left to right"}]} +{"id": "000000108104", "images": ["AURORA/data/something/frames/56958/first.jpg", "AURORA/data/something/frames/56958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000108105", "images": ["AURORA/data/something/frames/125207/first.jpg", "AURORA/data/something/frames/125207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a phone charger to a plug point"}]} +{"id": "000000108106", "images": ["AURORA/data/something/frames/140766/first.jpg", "AURORA/data/something/frames/140766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108107", "images": ["AURORA/data/something/frames/185634/first.jpg", "AURORA/data/something/frames/185634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000108108", "images": ["AURORA/data/something/frames/148192/first.jpg", "AURORA/data/something/frames/148192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil box underneath a table"}]} +{"id": "000000108109", "images": ["AURORA/data/something/frames/65310/first.jpg", "AURORA/data/something/frames/65310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing knife into basket"}]} +{"id": "000000108110", "images": ["AURORA/data/something/frames/34688/first.jpg", "AURORA/data/something/frames/34688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cable into laptop"}]} +{"id": "000000108111", "images": ["AURORA/data/something/frames/71786/first.jpg", "AURORA/data/something/frames/71786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cd cover"}]} +{"id": "000000108112", "images": ["AURORA/data/something/frames/44513/first.jpg", "AURORA/data/something/frames/44513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cell phone with a piece of paper"}]} +{"id": "000000108113", "images": ["AURORA/data/something/frames/206900/first.jpg", "AURORA/data/something/frames/206900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a post-it to a chair"}]} +{"id": "000000108114", "images": ["AURORA/data/something/frames/3109/first.jpg", "AURORA/data/something/frames/3109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000108115", "images": ["AURORA/data/something/frames/21693/first.jpg", "AURORA/data/something/frames/21693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a phone with a pencil"}]} +{"id": "000000108116", "images": ["AURORA/data/something/frames/4270/first.jpg", "AURORA/data/something/frames/4270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering garlic with box"}]} +{"id": "000000108117", "images": ["AURORA/data/something/frames/167385/first.jpg", "AURORA/data/something/frames/167385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into salt"}]} +{"id": "000000108118", "images": ["AURORA/data/something/frames/15705/first.jpg", "AURORA/data/something/frames/15705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting coin up completely without letting it drop down"}]} +{"id": "000000108119", "images": ["AURORA/data/something/frames/87524/first.jpg", "AURORA/data/something/frames/87524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging flashcard into loptop"}]} +{"id": "000000108120", "images": ["AURORA/data/something/frames/15520/first.jpg", "AURORA/data/something/frames/15520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hair brush and a mirror on the table"}]} +{"id": "000000108121", "images": ["AURORA/data/something/frames/125592/first.jpg", "AURORA/data/something/frames/125592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel just a little bit"}]} +{"id": "000000108122", "images": ["AURORA/data/something/frames/120839/first.jpg", "AURORA/data/something/frames/120839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering an ipad"}]} +{"id": "000000108123", "images": ["AURORA/data/something/frames/9935/first.jpg", "AURORA/data/something/frames/9935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000108124", "images": ["AURORA/data/something/frames/184963/first.jpg", "AURORA/data/something/frames/184963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pen"}]} +{"id": "000000108125", "images": ["AURORA/data/something/frames/178990/first.jpg", "AURORA/data/something/frames/178990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box on a surface"}]} +{"id": "000000108126", "images": ["AURORA/data/something/frames/220421/first.jpg", "AURORA/data/something/frames/220421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a penguin so that it almost falls off but doesn't"}]} +{"id": "000000108127", "images": ["AURORA/data/something/frames/82703/first.jpg", "AURORA/data/something/frames/82703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a shoe with a stick"}]} +{"id": "000000108128", "images": ["AURORA/data/something/frames/131651/first.jpg", "AURORA/data/something/frames/131651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening highlighter"}]} +{"id": "000000108129", "images": ["AURORA/data/something/frames/180698/first.jpg", "AURORA/data/something/frames/180698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a key and a battery closer to each other"}]} +{"id": "000000108130", "images": ["AURORA/data/something/frames/133998/first.jpg", "AURORA/data/something/frames/133998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping nuts up with spoon"}]} +{"id": "000000108131", "images": ["AURORA/data/something/frames/80260/first.jpg", "AURORA/data/something/frames/80260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling purse from left to right"}]} +{"id": "000000108132", "images": ["AURORA/data/something/frames/107139/first.jpg", "AURORA/data/something/frames/107139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a receipt"}]} +{"id": "000000108133", "images": ["AURORA/data/something/frames/59648/first.jpg", "AURORA/data/something/frames/59648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading jam onto toast"}]} +{"id": "000000108134", "images": ["AURORA/data/something/frames/133821/first.jpg", "AURORA/data/something/frames/133821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet so that it almost falls off but doesn't"}]} +{"id": "000000108135", "images": ["AURORA/data/something/frames/106558/first.jpg", "AURORA/data/something/frames/106558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lip bam closer to pen"}]} +{"id": "000000108136", "images": ["AURORA/data/something/frames/60961/first.jpg", "AURORA/data/something/frames/60961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cork so that it falls over"}]} +{"id": "000000108137", "images": ["AURORA/data/something/frames/93748/first.jpg", "AURORA/data/something/frames/93748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pick with cloth"}]} +{"id": "000000108138", "images": ["AURORA/data/something/frames/206727/first.jpg", "AURORA/data/something/frames/206727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting can on a surface"}]} +{"id": "000000108139", "images": ["AURORA/data/something/frames/129737/first.jpg", "AURORA/data/something/frames/129737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling colour onto paper"}]} +{"id": "000000108140", "images": ["AURORA/data/something/frames/181400/first.jpg", "AURORA/data/something/frames/181400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone and scissors on the table"}]} +{"id": "000000108141", "images": ["AURORA/data/something/frames/108687/first.jpg", "AURORA/data/something/frames/108687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into power strip but pulling it right out as you remove your hand"}]} +{"id": "000000108142", "images": ["AURORA/data/something/frames/29807/first.jpg", "AURORA/data/something/frames/29807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking an apple out of a bowl"}]} +{"id": "000000108143", "images": ["AURORA/data/something/frames/80491/first.jpg", "AURORA/data/something/frames/80491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cat with a blanket"}]} +{"id": "000000108144", "images": ["AURORA/data/something/frames/63879/first.jpg", "AURORA/data/something/frames/63879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting board clip and cigarette lighter on the table"}]} +{"id": "000000108145", "images": ["AURORA/data/something/frames/116813/first.jpg", "AURORA/data/something/frames/116813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000108146", "images": ["AURORA/data/something/frames/160716/first.jpg", "AURORA/data/something/frames/160716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cell phone upright on the table, so it falls on its side"}]} +{"id": "000000108147", "images": ["AURORA/data/something/frames/34433/first.jpg", "AURORA/data/something/frames/34433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto table"}]} +{"id": "000000108148", "images": ["AURORA/data/something/frames/182311/first.jpg", "AURORA/data/something/frames/182311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting onion onto cloth"}]} +{"id": "000000108149", "images": ["AURORA/data/something/frames/172608/first.jpg", "AURORA/data/something/frames/172608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108150", "images": ["AURORA/data/something/frames/139178/first.jpg", "AURORA/data/something/frames/139178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting waste paper into dustbin"}]} +{"id": "000000108151", "images": ["AURORA/data/something/frames/213128/first.jpg", "AURORA/data/something/frames/213128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pink blush on from left to right"}]} +{"id": "000000108152", "images": ["AURORA/data/something/frames/25869/first.jpg", "AURORA/data/something/frames/25869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing laptop"}]} +{"id": "000000108153", "images": ["AURORA/data/something/frames/155105/first.jpg", "AURORA/data/something/frames/155105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000108154", "images": ["AURORA/data/something/frames/213321/first.jpg", "AURORA/data/something/frames/213321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a bracelet out of a plastic bag"}]} +{"id": "000000108155", "images": ["AURORA/data/something/frames/211726/first.jpg", "AURORA/data/something/frames/211726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a wipe wet until water comes out"}]} +{"id": "000000108156", "images": ["AURORA/data/something/frames/99754/first.jpg", "AURORA/data/something/frames/99754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy in front of toy watch"}]} +{"id": "000000108157", "images": ["AURORA/data/something/frames/99490/first.jpg", "AURORA/data/something/frames/99490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a ukulele case"}]} +{"id": "000000108158", "images": ["AURORA/data/something/frames/97159/first.jpg", "AURORA/data/something/frames/97159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper clip next to medicine bottle"}]} +{"id": "000000108159", "images": ["AURORA/data/something/frames/217863/first.jpg", "AURORA/data/something/frames/217863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting towel"}]} +{"id": "000000108160", "images": ["AURORA/data/something/frames/159543/first.jpg", "AURORA/data/something/frames/159543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a book so that it almost falls off but doesn't"}]} +{"id": "000000108161", "images": ["AURORA/data/something/frames/99669/first.jpg", "AURORA/data/something/frames/99669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting newspaper with hair brush on it"}]} +{"id": "000000108162", "images": ["AURORA/data/something/frames/37562/first.jpg", "AURORA/data/something/frames/37562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box in front of a pencil"}]} +{"id": "000000108163", "images": ["AURORA/data/something/frames/214675/first.jpg", "AURORA/data/something/frames/214675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a light switch down"}]} +{"id": "000000108164", "images": ["AURORA/data/something/frames/1591/first.jpg", "AURORA/data/something/frames/1591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto saucer"}]} +{"id": "000000108165", "images": ["AURORA/data/something/frames/207221/first.jpg", "AURORA/data/something/frames/207221/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a cup up"}]} +{"id": "000000108166", "images": ["AURORA/data/something/frames/17637/first.jpg", "AURORA/data/something/frames/17637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into paper bag"}]} +{"id": "000000108167", "images": ["AURORA/data/something/frames/12873/first.jpg", "AURORA/data/something/frames/12873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching washing machine with your camera"}]} +{"id": "000000108168", "images": ["AURORA/data/something/frames/76226/first.jpg", "AURORA/data/something/frames/76226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000108169", "images": ["AURORA/data/something/frames/28953/first.jpg", "AURORA/data/something/frames/28953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape on a surface"}]} +{"id": "000000108170", "images": ["AURORA/data/something/frames/73670/first.jpg", "AURORA/data/something/frames/73670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering baby"}]} +{"id": "000000108171", "images": ["AURORA/data/something/frames/64988/first.jpg", "AURORA/data/something/frames/64988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a box on it"}]} +{"id": "000000108172", "images": ["AURORA/data/something/frames/54977/first.jpg", "AURORA/data/something/frames/54977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bag down"}]} +{"id": "000000108173", "images": ["AURORA/data/something/frames/40897/first.jpg", "AURORA/data/something/frames/40897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking divider on the bottom that is similar to other divider on the table"}]} +{"id": "000000108174", "images": ["AURORA/data/something/frames/39559/first.jpg", "AURORA/data/something/frames/39559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a fork so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108175", "images": ["AURORA/data/something/frames/11606/first.jpg", "AURORA/data/something/frames/11606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toy car across a surface without it falling down"}]} +{"id": "000000108176", "images": ["AURORA/data/something/frames/148819/first.jpg", "AURORA/data/something/frames/148819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle from left to right"}]} +{"id": "000000108177", "images": ["AURORA/data/something/frames/88484/first.jpg", "AURORA/data/something/frames/88484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hacksaw blade from table"}]} +{"id": "000000108178", "images": ["AURORA/data/something/frames/47769/first.jpg", "AURORA/data/something/frames/47769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bucket from right to left"}]} +{"id": "000000108179", "images": ["AURORA/data/something/frames/140039/first.jpg", "AURORA/data/something/frames/140039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toilet paper away from inhaler"}]} +{"id": "000000108180", "images": ["AURORA/data/something/frames/114265/first.jpg", "AURORA/data/something/frames/114265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with toy on it"}]} +{"id": "000000108181", "images": ["AURORA/data/something/frames/142623/first.jpg", "AURORA/data/something/frames/142623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cranberry off of the wall"}]} +{"id": "000000108182", "images": ["AURORA/data/something/frames/189410/first.jpg", "AURORA/data/something/frames/189410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sandpaper just a little bit"}]} +{"id": "000000108183", "images": ["AURORA/data/something/frames/158967/first.jpg", "AURORA/data/something/frames/158967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing lighter so that it almost falls off but doesn't"}]} +{"id": "000000108184", "images": ["AURORA/data/something/frames/138147/first.jpg", "AURORA/data/something/frames/138147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting box with comb"}]} +{"id": "000000108185", "images": ["AURORA/data/something/frames/64795/first.jpg", "AURORA/data/something/frames/64795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning pen holder upside down"}]} +{"id": "000000108186", "images": ["AURORA/data/something/frames/125793/first.jpg", "AURORA/data/something/frames/125793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen next to pens"}]} +{"id": "000000108187", "images": ["AURORA/data/something/frames/62977/first.jpg", "AURORA/data/something/frames/62977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: milk jug being deflected from couch"}]} +{"id": "000000108188", "images": ["AURORA/data/something/frames/87043/first.jpg", "AURORA/data/something/frames/87043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming me"}]} +{"id": "000000108189", "images": ["AURORA/data/something/frames/13372/first.jpg", "AURORA/data/something/frames/13372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching doorknob with your camera"}]} +{"id": "000000108190", "images": ["AURORA/data/something/frames/61091/first.jpg", "AURORA/data/something/frames/61091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping dhal up with spoon"}]} +{"id": "000000108191", "images": ["AURORA/data/something/frames/107782/first.jpg", "AURORA/data/something/frames/107782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling car from left to right"}]} +{"id": "000000108192", "images": ["AURORA/data/something/frames/165840/first.jpg", "AURORA/data/something/frames/165840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rectangular box and ramekin away from each other"}]} +{"id": "000000108193", "images": ["AURORA/data/something/frames/99316/first.jpg", "AURORA/data/something/frames/99316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning toy badge upside down"}]} +{"id": "000000108194", "images": ["AURORA/data/something/frames/183969/first.jpg", "AURORA/data/something/frames/183969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting dish with apple on it"}]} +{"id": "000000108195", "images": ["AURORA/data/something/frames/213404/first.jpg", "AURORA/data/something/frames/213404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000108196", "images": ["AURORA/data/something/frames/131706/first.jpg", "AURORA/data/something/frames/131706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding childs shirt"}]} +{"id": "000000108197", "images": ["AURORA/data/something/frames/19204/first.jpg", "AURORA/data/something/frames/19204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring beer into mug"}]} +{"id": "000000108198", "images": ["AURORA/data/something/frames/50646/first.jpg", "AURORA/data/something/frames/50646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving medicines down"}]} +{"id": "000000108199", "images": ["AURORA/data/something/frames/11569/first.jpg", "AURORA/data/something/frames/11569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass down"}]} +{"id": "000000108200", "images": ["AURORA/data/something/frames/22129/first.jpg", "AURORA/data/something/frames/22129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching gate with your camera"}]} +{"id": "000000108201", "images": ["AURORA/data/something/frames/165593/first.jpg", "AURORA/data/something/frames/165593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging electric cord into power outlet"}]} +{"id": "000000108202", "images": ["AURORA/data/something/frames/216210/first.jpg", "AURORA/data/something/frames/216210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming a jar"}]} +{"id": "000000108203", "images": ["AURORA/data/something/frames/118579/first.jpg", "AURORA/data/something/frames/118579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading kerchief onto diary"}]} +{"id": "000000108204", "images": ["AURORA/data/something/frames/100908/first.jpg", "AURORA/data/something/frames/100908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108205", "images": ["AURORA/data/something/frames/208016/first.jpg", "AURORA/data/something/frames/208016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a magazine just a little bit"}]} +{"id": "000000108206", "images": ["AURORA/data/something/frames/94529/first.jpg", "AURORA/data/something/frames/94529/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spanner on the top similar to many spanners on the table"}]} +{"id": "000000108207", "images": ["AURORA/data/something/frames/35652/first.jpg", "AURORA/data/something/frames/35652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering laptop"}]} +{"id": "000000108208", "images": ["AURORA/data/something/frames/181119/first.jpg", "AURORA/data/something/frames/181119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cell phone in front of a shoe"}]} +{"id": "000000108209", "images": ["AURORA/data/something/frames/14805/first.jpg", "AURORA/data/something/frames/14805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000108210", "images": ["AURORA/data/something/frames/211145/first.jpg", "AURORA/data/something/frames/211145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the book on a surface"}]} +{"id": "000000108211", "images": ["AURORA/data/something/frames/147873/first.jpg", "AURORA/data/something/frames/147873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bracelete into jeweler"}]} +{"id": "000000108212", "images": ["AURORA/data/something/frames/97820/first.jpg", "AURORA/data/something/frames/97820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000108213", "images": ["AURORA/data/something/frames/154629/first.jpg", "AURORA/data/something/frames/154629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering something"}]} +{"id": "000000108214", "images": ["AURORA/data/something/frames/207023/first.jpg", "AURORA/data/something/frames/207023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening the window"}]} +{"id": "000000108215", "images": ["AURORA/data/something/frames/141132/first.jpg", "AURORA/data/something/frames/141132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting lotion cap"}]} +{"id": "000000108216", "images": ["AURORA/data/something/frames/29362/first.jpg", "AURORA/data/something/frames/29362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into silver glass"}]} +{"id": "000000108217", "images": ["AURORA/data/something/frames/107908/first.jpg", "AURORA/data/something/frames/107908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spoon out of a coffee cup"}]} +{"id": "000000108218", "images": ["AURORA/data/something/frames/40910/first.jpg", "AURORA/data/something/frames/40910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys on a surface"}]} +{"id": "000000108219", "images": ["AURORA/data/something/frames/55632/first.jpg", "AURORA/data/something/frames/55632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping box next to cup"}]} +{"id": "000000108220", "images": ["AURORA/data/something/frames/190506/first.jpg", "AURORA/data/something/frames/190506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys into bag"}]} +{"id": "000000108221", "images": ["AURORA/data/something/frames/64307/first.jpg", "AURORA/data/something/frames/64307/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000108222", "images": ["AURORA/data/something/frames/203882/first.jpg", "AURORA/data/something/frames/203882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle so that it almost falls off but doesn't"}]} +{"id": "000000108223", "images": ["AURORA/data/something/frames/149647/first.jpg", "AURORA/data/something/frames/149647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a washcloth wet until water comes out"}]} +{"id": "000000108224", "images": ["AURORA/data/something/frames/38345/first.jpg", "AURORA/data/something/frames/38345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping water over"}]} +{"id": "000000108225", "images": ["AURORA/data/something/frames/167308/first.jpg", "AURORA/data/something/frames/167308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a news paper"}]} +{"id": "000000108226", "images": ["AURORA/data/something/frames/122975/first.jpg", "AURORA/data/something/frames/122975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000108227", "images": ["AURORA/data/something/frames/131583/first.jpg", "AURORA/data/something/frames/131583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dvds onto dvds"}]} +{"id": "000000108228", "images": ["AURORA/data/something/frames/26279/first.jpg", "AURORA/data/something/frames/26279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into box"}]} +{"id": "000000108229", "images": ["AURORA/data/something/frames/155092/first.jpg", "AURORA/data/something/frames/155092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping scoop behind canister"}]} +{"id": "000000108230", "images": ["AURORA/data/something/frames/35052/first.jpg", "AURORA/data/something/frames/35052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into a glass"}]} +{"id": "000000108231", "images": ["AURORA/data/something/frames/19350/first.jpg", "AURORA/data/something/frames/19350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking plastic bag so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108232", "images": ["AURORA/data/something/frames/6482/first.jpg", "AURORA/data/something/frames/6482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone from right to left"}]} +{"id": "000000108233", "images": ["AURORA/data/something/frames/103204/first.jpg", "AURORA/data/something/frames/103204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling tea next to a coin"}]} +{"id": "000000108234", "images": ["AURORA/data/something/frames/215693/first.jpg", "AURORA/data/something/frames/215693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of leaf so that it separates into two pieces"}]} +{"id": "000000108235", "images": ["AURORA/data/something/frames/34235/first.jpg", "AURORA/data/something/frames/34235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a plant"}]} +{"id": "000000108236", "images": ["AURORA/data/something/frames/31539/first.jpg", "AURORA/data/something/frames/31539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a ball colliding with a ball and both come to a halt"}]} +{"id": "000000108237", "images": ["AURORA/data/something/frames/50282/first.jpg", "AURORA/data/something/frames/50282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into can"}]} +{"id": "000000108238", "images": ["AURORA/data/something/frames/26647/first.jpg", "AURORA/data/something/frames/26647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mirror and bottle closer to each other"}]} +{"id": "000000108239", "images": ["AURORA/data/something/frames/215561/first.jpg", "AURORA/data/something/frames/215561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a tag"}]} +{"id": "000000108240", "images": ["AURORA/data/something/frames/40013/first.jpg", "AURORA/data/something/frames/40013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving triangle and sun glasses away from each other"}]} +{"id": "000000108241", "images": ["AURORA/data/something/frames/167711/first.jpg", "AURORA/data/something/frames/167711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from right to left"}]} +{"id": "000000108242", "images": ["AURORA/data/something/frames/202558/first.jpg", "AURORA/data/something/frames/202558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall outlet"}]} +{"id": "000000108243", "images": ["AURORA/data/something/frames/156891/first.jpg", "AURORA/data/something/frames/156891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000108244", "images": ["AURORA/data/something/frames/134845/first.jpg", "AURORA/data/something/frames/134845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping an envelope behind a box"}]} +{"id": "000000108245", "images": ["AURORA/data/something/frames/90080/first.jpg", "AURORA/data/something/frames/90080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a knife so that it almost falls off but doesn't"}]} +{"id": "000000108246", "images": ["AURORA/data/something/frames/134378/first.jpg", "AURORA/data/something/frames/134378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pens into vase"}]} +{"id": "000000108247", "images": ["AURORA/data/something/frames/15840/first.jpg", "AURORA/data/something/frames/15840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pasta until it breaks"}]} +{"id": "000000108248", "images": ["AURORA/data/something/frames/43859/first.jpg", "AURORA/data/something/frames/43859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shot glass from right to left"}]} +{"id": "000000108249", "images": ["AURORA/data/something/frames/32356/first.jpg", "AURORA/data/something/frames/32356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of packaging handkerchiefs so the stack collapses"}]} +{"id": "000000108250", "images": ["AURORA/data/something/frames/49839/first.jpg", "AURORA/data/something/frames/49839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book up completely without letting it drop down"}]} +{"id": "000000108251", "images": ["AURORA/data/something/frames/189830/first.jpg", "AURORA/data/something/frames/189830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking betel nut up"}]} +{"id": "000000108252", "images": ["AURORA/data/something/frames/207518/first.jpg", "AURORA/data/something/frames/207518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb and usb cable away from each other"}]} +{"id": "000000108253", "images": ["AURORA/data/something/frames/125551/first.jpg", "AURORA/data/something/frames/125551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching paperclip to paper"}]} +{"id": "000000108254", "images": ["AURORA/data/something/frames/183917/first.jpg", "AURORA/data/something/frames/183917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning fabric softener upside down"}]} +{"id": "000000108255", "images": ["AURORA/data/something/frames/32345/first.jpg", "AURORA/data/something/frames/32345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing case from left to right"}]} +{"id": "000000108256", "images": ["AURORA/data/something/frames/171954/first.jpg", "AURORA/data/something/frames/171954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000108257", "images": ["AURORA/data/something/frames/140503/first.jpg", "AURORA/data/something/frames/140503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting straw up completely without letting it drop down"}]} +{"id": "000000108258", "images": ["AURORA/data/something/frames/144156/first.jpg", "AURORA/data/something/frames/144156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108259", "images": ["AURORA/data/something/frames/126597/first.jpg", "AURORA/data/something/frames/126597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking box so that it falls over"}]} +{"id": "000000108260", "images": ["AURORA/data/something/frames/175187/first.jpg", "AURORA/data/something/frames/175187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering fabric"}]} +{"id": "000000108261", "images": ["AURORA/data/something/frames/31907/first.jpg", "AURORA/data/something/frames/31907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing calculator into pen bag"}]} +{"id": "000000108262", "images": ["AURORA/data/something/frames/171538/first.jpg", "AURORA/data/something/frames/171538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting braclet onto table"}]} +{"id": "000000108263", "images": ["AURORA/data/something/frames/1073/first.jpg", "AURORA/data/something/frames/1073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000108264", "images": ["AURORA/data/something/frames/118066/first.jpg", "AURORA/data/something/frames/118066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toy onto the bed"}]} +{"id": "000000108265", "images": ["AURORA/data/something/frames/76450/first.jpg", "AURORA/data/something/frames/76450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tangerine from group of tangerines"}]} +{"id": "000000108266", "images": ["AURORA/data/something/frames/148143/first.jpg", "AURORA/data/something/frames/148143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding receipt paper"}]} +{"id": "000000108267", "images": ["AURORA/data/something/frames/62897/first.jpg", "AURORA/data/something/frames/62897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a computer mouse on a surface"}]} +{"id": "000000108268", "images": ["AURORA/data/something/frames/100338/first.jpg", "AURORA/data/something/frames/100338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping game piece onto book"}]} +{"id": "000000108269", "images": ["AURORA/data/something/frames/173735/first.jpg", "AURORA/data/something/frames/173735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white book marker from right to left"}]} +{"id": "000000108270", "images": ["AURORA/data/something/frames/160390/first.jpg", "AURORA/data/something/frames/160390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book onto chair"}]} +{"id": "000000108271", "images": ["AURORA/data/something/frames/210405/first.jpg", "AURORA/data/something/frames/210405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle onto jar"}]} +{"id": "000000108272", "images": ["AURORA/data/something/frames/130744/first.jpg", "AURORA/data/something/frames/130744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a pencil"}]} +{"id": "000000108273", "images": ["AURORA/data/something/frames/74720/first.jpg", "AURORA/data/something/frames/74720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall plug"}]} +{"id": "000000108274", "images": ["AURORA/data/something/frames/10230/first.jpg", "AURORA/data/something/frames/10230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting pill bottle"}]} +{"id": "000000108275", "images": ["AURORA/data/something/frames/185570/first.jpg", "AURORA/data/something/frames/185570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottle top onto a plate"}]} +{"id": "000000108276", "images": ["AURORA/data/something/frames/186661/first.jpg", "AURORA/data/something/frames/186661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of comb without letting it drop down"}]} +{"id": "000000108277", "images": ["AURORA/data/something/frames/56215/first.jpg", "AURORA/data/something/frames/56215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one tape dispenser onto table"}]} +{"id": "000000108278", "images": ["AURORA/data/something/frames/135525/first.jpg", "AURORA/data/something/frames/135525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sugar jar so that it almost falls off but doesn't"}]} +{"id": "000000108279", "images": ["AURORA/data/something/frames/164155/first.jpg", "AURORA/data/something/frames/164155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tailoring tap into plastic bowl"}]} +{"id": "000000108280", "images": ["AURORA/data/something/frames/153105/first.jpg", "AURORA/data/something/frames/153105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting telephone with box on it"}]} +{"id": "000000108281", "images": ["AURORA/data/something/frames/196227/first.jpg", "AURORA/data/something/frames/196227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000108282", "images": ["AURORA/data/something/frames/173897/first.jpg", "AURORA/data/something/frames/173897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto spoon"}]} +{"id": "000000108283", "images": ["AURORA/data/something/frames/30680/first.jpg", "AURORA/data/something/frames/30680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery down"}]} +{"id": "000000108284", "images": ["AURORA/data/something/frames/207331/first.jpg", "AURORA/data/something/frames/207331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind glass"}]} +{"id": "000000108285", "images": ["AURORA/data/something/frames/198269/first.jpg", "AURORA/data/something/frames/198269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping plate next to plate"}]} +{"id": "000000108286", "images": ["AURORA/data/something/frames/149320/first.jpg", "AURORA/data/something/frames/149320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting crochet needle into box"}]} +{"id": "000000108287", "images": ["AURORA/data/something/frames/90851/first.jpg", "AURORA/data/something/frames/90851/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler closer to scissors"}]} +{"id": "000000108288", "images": ["AURORA/data/something/frames/214007/first.jpg", "AURORA/data/something/frames/214007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of sock so that it gets stretched"}]} +{"id": "000000108289", "images": ["AURORA/data/something/frames/54805/first.jpg", "AURORA/data/something/frames/54805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a container"}]} +{"id": "000000108290", "images": ["AURORA/data/something/frames/13992/first.jpg", "AURORA/data/something/frames/13992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping calculator into bowl"}]} +{"id": "000000108291", "images": ["AURORA/data/something/frames/5143/first.jpg", "AURORA/data/something/frames/5143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a phone with a piece of cloth"}]} +{"id": "000000108292", "images": ["AURORA/data/something/frames/17629/first.jpg", "AURORA/data/something/frames/17629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing piece of paper into two pieces"}]} +{"id": "000000108293", "images": ["AURORA/data/something/frames/21300/first.jpg", "AURORA/data/something/frames/21300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning hole puncher upside down"}]} +{"id": "000000108294", "images": ["AURORA/data/something/frames/44586/first.jpg", "AURORA/data/something/frames/44586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding chair"}]} +{"id": "000000108295", "images": ["AURORA/data/something/frames/10288/first.jpg", "AURORA/data/something/frames/10288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a flexo lamp so that it deforms"}]} +{"id": "000000108296", "images": ["AURORA/data/something/frames/147119/first.jpg", "AURORA/data/something/frames/147119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket but pulling it right out as you remove your hand"}]} +{"id": "000000108297", "images": ["AURORA/data/something/frames/129113/first.jpg", "AURORA/data/something/frames/129113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000108298", "images": ["AURORA/data/something/frames/209706/first.jpg", "AURORA/data/something/frames/209706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning tumbler upside down"}]} +{"id": "000000108299", "images": ["AURORA/data/something/frames/70116/first.jpg", "AURORA/data/something/frames/70116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a glove behind a bowl"}]} +{"id": "000000108300", "images": ["AURORA/data/something/frames/120673/first.jpg", "AURORA/data/something/frames/120673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 things"}]} +{"id": "000000108301", "images": ["AURORA/data/something/frames/192054/first.jpg", "AURORA/data/something/frames/192054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling coins up"}]} +{"id": "000000108302", "images": ["AURORA/data/something/frames/173596/first.jpg", "AURORA/data/something/frames/173596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000108303", "images": ["AURORA/data/something/frames/109644/first.jpg", "AURORA/data/something/frames/109644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of plastic screwcap"}]} +{"id": "000000108304", "images": ["AURORA/data/something/frames/190134/first.jpg", "AURORA/data/something/frames/190134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pillow onto sofa"}]} +{"id": "000000108305", "images": ["AURORA/data/something/frames/1143/first.jpg", "AURORA/data/something/frames/1143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting box with fork"}]} +{"id": "000000108306", "images": ["AURORA/data/something/frames/143109/first.jpg", "AURORA/data/something/frames/143109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet across a surface without it falling down"}]} +{"id": "000000108307", "images": ["AURORA/data/something/frames/156613/first.jpg", "AURORA/data/something/frames/156613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many similar coins"}]} +{"id": "000000108308", "images": ["AURORA/data/something/frames/27419/first.jpg", "AURORA/data/something/frames/27419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting thing in front of drawers"}]} +{"id": "000000108309", "images": ["AURORA/data/something/frames/119171/first.jpg", "AURORA/data/something/frames/119171/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rack down"}]} +{"id": "000000108310", "images": ["AURORA/data/something/frames/98538/first.jpg", "AURORA/data/something/frames/98538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wallet upright on the table, so it falls on its side"}]} +{"id": "000000108311", "images": ["AURORA/data/something/frames/32914/first.jpg", "AURORA/data/something/frames/32914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering white chalk with paper"}]} +{"id": "000000108312", "images": ["AURORA/data/something/frames/218471/first.jpg", "AURORA/data/something/frames/218471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting black brush on a surface"}]} +{"id": "000000108313", "images": ["AURORA/data/something/frames/131108/first.jpg", "AURORA/data/something/frames/131108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting headphones"}]} +{"id": "000000108314", "images": ["AURORA/data/something/frames/22618/first.jpg", "AURORA/data/something/frames/22618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching sticky note to monitor"}]} +{"id": "000000108315", "images": ["AURORA/data/something/frames/146962/first.jpg", "AURORA/data/something/frames/146962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering football"}]} +{"id": "000000108316", "images": ["AURORA/data/something/frames/135995/first.jpg", "AURORA/data/something/frames/135995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup closer to plate"}]} +{"id": "000000108317", "images": ["AURORA/data/something/frames/115389/first.jpg", "AURORA/data/something/frames/115389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wireless mouse from left to right"}]} +{"id": "000000108318", "images": ["AURORA/data/something/frames/80659/first.jpg", "AURORA/data/something/frames/80659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading butter onto toast"}]} +{"id": "000000108319", "images": ["AURORA/data/something/frames/108589/first.jpg", "AURORA/data/something/frames/108589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning shampoo bottle upside down"}]} +{"id": "000000108320", "images": ["AURORA/data/something/frames/77398/first.jpg", "AURORA/data/something/frames/77398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bulb syringe being deflected from dishwasher"}]} +{"id": "000000108321", "images": ["AURORA/data/something/frames/4770/first.jpg", "AURORA/data/something/frames/4770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling milk onto table"}]} +{"id": "000000108322", "images": ["AURORA/data/something/frames/191579/first.jpg", "AURORA/data/something/frames/191579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a matchstick from behind of a book"}]} +{"id": "000000108323", "images": ["AURORA/data/something/frames/18648/first.jpg", "AURORA/data/something/frames/18648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling the dollar out of purse"}]} +{"id": "000000108324", "images": ["AURORA/data/something/frames/37659/first.jpg", "AURORA/data/something/frames/37659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bowl so that it almost falls off but doesn't"}]} +{"id": "000000108325", "images": ["AURORA/data/something/frames/39846/first.jpg", "AURORA/data/something/frames/39846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sketch pen down"}]} +{"id": "000000108326", "images": ["AURORA/data/something/frames/169464/first.jpg", "AURORA/data/something/frames/169464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 letters onto the table"}]} +{"id": "000000108327", "images": ["AURORA/data/something/frames/200932/first.jpg", "AURORA/data/something/frames/200932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something from left to right"}]} +{"id": "000000108328", "images": ["AURORA/data/something/frames/137392/first.jpg", "AURORA/data/something/frames/137392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a rack shelf so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108329", "images": ["AURORA/data/something/frames/52628/first.jpg", "AURORA/data/something/frames/52628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote control down"}]} +{"id": "000000108330", "images": ["AURORA/data/something/frames/118743/first.jpg", "AURORA/data/something/frames/118743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000108331", "images": ["AURORA/data/something/frames/138027/first.jpg", "AURORA/data/something/frames/138027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping ink off of table"}]} +{"id": "000000108332", "images": ["AURORA/data/something/frames/118245/first.jpg", "AURORA/data/something/frames/118245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cotton swab so that it deforms"}]} +{"id": "000000108333", "images": ["AURORA/data/something/frames/50123/first.jpg", "AURORA/data/something/frames/50123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen up"}]} +{"id": "000000108334", "images": ["AURORA/data/something/frames/48590/first.jpg", "AURORA/data/something/frames/48590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber string so that it gets stretched"}]} +{"id": "000000108335", "images": ["AURORA/data/something/frames/180886/first.jpg", "AURORA/data/something/frames/180886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking block out of container"}]} +{"id": "000000108336", "images": ["AURORA/data/something/frames/93301/first.jpg", "AURORA/data/something/frames/93301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving salt away from pepper"}]} +{"id": "000000108337", "images": ["AURORA/data/something/frames/116978/first.jpg", "AURORA/data/something/frames/116978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming atm machine"}]} +{"id": "000000108338", "images": ["AURORA/data/something/frames/93579/first.jpg", "AURORA/data/something/frames/93579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pages of note book"}]} +{"id": "000000108339", "images": ["AURORA/data/something/frames/5790/first.jpg", "AURORA/data/something/frames/5790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower towards the camera"}]} +{"id": "000000108340", "images": ["AURORA/data/something/frames/140727/first.jpg", "AURORA/data/something/frames/140727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothpick onto a box"}]} +{"id": "000000108341", "images": ["AURORA/data/something/frames/93247/first.jpg", "AURORA/data/something/frames/93247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting the bottle up completely without letting it drop down"}]} +{"id": "000000108342", "images": ["AURORA/data/something/frames/121095/first.jpg", "AURORA/data/something/frames/121095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting spiral pad notebook with pencil on it"}]} +{"id": "000000108343", "images": ["AURORA/data/something/frames/212095/first.jpg", "AURORA/data/something/frames/212095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding tote bags"}]} +{"id": "000000108344", "images": ["AURORA/data/something/frames/156918/first.jpg", "AURORA/data/something/frames/156918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling squeezable strawberry jam from left to right"}]} +{"id": "000000108345", "images": ["AURORA/data/something/frames/190435/first.jpg", "AURORA/data/something/frames/190435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pendrive into mug"}]} +{"id": "000000108346", "images": ["AURORA/data/something/frames/65470/first.jpg", "AURORA/data/something/frames/65470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb into a laptop"}]} +{"id": "000000108347", "images": ["AURORA/data/something/frames/80418/first.jpg", "AURORA/data/something/frames/80418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into a computer but pulling it right out as you remove your hand"}]} +{"id": "000000108348", "images": ["AURORA/data/something/frames/85952/first.jpg", "AURORA/data/something/frames/85952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing papers into bag"}]} +{"id": "000000108349", "images": ["AURORA/data/something/frames/128222/first.jpg", "AURORA/data/something/frames/128222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108350", "images": ["AURORA/data/something/frames/146559/first.jpg", "AURORA/data/something/frames/146559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading black pepper onto paper"}]} +{"id": "000000108351", "images": ["AURORA/data/something/frames/28957/first.jpg", "AURORA/data/something/frames/28957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bond paper out of mini cabinet"}]} +{"id": "000000108352", "images": ["AURORA/data/something/frames/69274/first.jpg", "AURORA/data/something/frames/69274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a hair brush out of a box"}]} +{"id": "000000108353", "images": ["AURORA/data/something/frames/132942/first.jpg", "AURORA/data/something/frames/132942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pens with a pillow"}]} +{"id": "000000108354", "images": ["AURORA/data/something/frames/49112/first.jpg", "AURORA/data/something/frames/49112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup so that it almost falls off but doesn't"}]} +{"id": "000000108355", "images": ["AURORA/data/something/frames/134120/first.jpg", "AURORA/data/something/frames/134120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker into pen holder"}]} +{"id": "000000108356", "images": ["AURORA/data/something/frames/105591/first.jpg", "AURORA/data/something/frames/105591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses next to mug"}]} +{"id": "000000108357", "images": ["AURORA/data/something/frames/39260/first.jpg", "AURORA/data/something/frames/39260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a fork"}]} +{"id": "000000108358", "images": ["AURORA/data/something/frames/119795/first.jpg", "AURORA/data/something/frames/119795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel up"}]} +{"id": "000000108359", "images": ["AURORA/data/something/frames/188868/first.jpg", "AURORA/data/something/frames/188868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy gun so that it almost falls off but doesn't"}]} +{"id": "000000108360", "images": ["AURORA/data/something/frames/209768/first.jpg", "AURORA/data/something/frames/209768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug connector into double plug socket"}]} +{"id": "000000108361", "images": ["AURORA/data/something/frames/60260/first.jpg", "AURORA/data/something/frames/60260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000108362", "images": ["AURORA/data/something/frames/214070/first.jpg", "AURORA/data/something/frames/214070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass ball and glass ball away from each other"}]} +{"id": "000000108363", "images": ["AURORA/data/something/frames/162613/first.jpg", "AURORA/data/something/frames/162613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening hotbox"}]} +{"id": "000000108364", "images": ["AURORA/data/something/frames/183206/first.jpg", "AURORA/data/something/frames/183206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spoon"}]} +{"id": "000000108365", "images": ["AURORA/data/something/frames/69128/first.jpg", "AURORA/data/something/frames/69128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling brown bracelet from left to right"}]} +{"id": "000000108366", "images": ["AURORA/data/something/frames/12121/first.jpg", "AURORA/data/something/frames/12121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000108367", "images": ["AURORA/data/something/frames/8609/first.jpg", "AURORA/data/something/frames/8609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a plastic bottle so that it deforms"}]} +{"id": "000000108368", "images": ["AURORA/data/something/frames/127611/first.jpg", "AURORA/data/something/frames/127611/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a stickey note into two pieces"}]} +{"id": "000000108369", "images": ["AURORA/data/something/frames/190978/first.jpg", "AURORA/data/something/frames/190978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing napkin into two pieces"}]} +{"id": "000000108370", "images": ["AURORA/data/something/frames/1108/first.jpg", "AURORA/data/something/frames/1108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting watch next to tablet"}]} +{"id": "000000108371", "images": ["AURORA/data/something/frames/195604/first.jpg", "AURORA/data/something/frames/195604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a bottle"}]} +{"id": "000000108372", "images": ["AURORA/data/something/frames/58221/first.jpg", "AURORA/data/something/frames/58221/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming ink bottle"}]} +{"id": "000000108373", "images": ["AURORA/data/something/frames/173554/first.jpg", "AURORA/data/something/frames/173554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking shoe up"}]} +{"id": "000000108374", "images": ["AURORA/data/something/frames/86574/first.jpg", "AURORA/data/something/frames/86574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing iphone adapter from right to left"}]} +{"id": "000000108375", "images": ["AURORA/data/something/frames/203418/first.jpg", "AURORA/data/something/frames/203418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a jbl"}]} +{"id": "000000108376", "images": ["AURORA/data/something/frames/8453/first.jpg", "AURORA/data/something/frames/8453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail varnish bottle from right to left"}]} +{"id": "000000108377", "images": ["AURORA/data/something/frames/86177/first.jpg", "AURORA/data/something/frames/86177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy and toy puppy away from each other"}]} +{"id": "000000108378", "images": ["AURORA/data/something/frames/185349/first.jpg", "AURORA/data/something/frames/185349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of mail into two pieces"}]} +{"id": "000000108379", "images": ["AURORA/data/something/frames/65325/first.jpg", "AURORA/data/something/frames/65325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen in front of glass"}]} +{"id": "000000108380", "images": ["AURORA/data/something/frames/158981/first.jpg", "AURORA/data/something/frames/158981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sugar pack"}]} +{"id": "000000108381", "images": ["AURORA/data/something/frames/23199/first.jpg", "AURORA/data/something/frames/23199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote closer to remote"}]} +{"id": "000000108382", "images": ["AURORA/data/something/frames/16210/first.jpg", "AURORA/data/something/frames/16210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pill bottle over"}]} +{"id": "000000108383", "images": ["AURORA/data/something/frames/96343/first.jpg", "AURORA/data/something/frames/96343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 red spoons onto black pouch"}]} +{"id": "000000108384", "images": ["AURORA/data/something/frames/109513/first.jpg", "AURORA/data/something/frames/109513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering dvd disk"}]} +{"id": "000000108385", "images": ["AURORA/data/something/frames/42623/first.jpg", "AURORA/data/something/frames/42623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108386", "images": ["AURORA/data/something/frames/218883/first.jpg", "AURORA/data/something/frames/218883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending raw turmeric until it breaks"}]} +{"id": "000000108387", "images": ["AURORA/data/something/frames/150037/first.jpg", "AURORA/data/something/frames/150037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming earphone"}]} +{"id": "000000108388", "images": ["AURORA/data/something/frames/47610/first.jpg", "AURORA/data/something/frames/47610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering sunglasses with a scarf"}]} +{"id": "000000108389", "images": ["AURORA/data/something/frames/62408/first.jpg", "AURORA/data/something/frames/62408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on a surface"}]} +{"id": "000000108390", "images": ["AURORA/data/something/frames/25345/first.jpg", "AURORA/data/something/frames/25345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coffee onto an overturned cup"}]} +{"id": "000000108391", "images": ["AURORA/data/something/frames/82095/first.jpg", "AURORA/data/something/frames/82095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a notebook in front of a cup"}]} +{"id": "000000108392", "images": ["AURORA/data/something/frames/16096/first.jpg", "AURORA/data/something/frames/16096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000108393", "images": ["AURORA/data/something/frames/210291/first.jpg", "AURORA/data/something/frames/210291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto plant"}]} +{"id": "000000108394", "images": ["AURORA/data/something/frames/143203/first.jpg", "AURORA/data/something/frames/143203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coconunt down"}]} +{"id": "000000108395", "images": ["AURORA/data/something/frames/85082/first.jpg", "AURORA/data/something/frames/85082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sewing reel onto plastic plate"}]} +{"id": "000000108396", "images": ["AURORA/data/something/frames/32948/first.jpg", "AURORA/data/something/frames/32948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pick and scissor closer to each other"}]} +{"id": "000000108397", "images": ["AURORA/data/something/frames/53502/first.jpg", "AURORA/data/something/frames/53502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a perfume so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108398", "images": ["AURORA/data/something/frames/47844/first.jpg", "AURORA/data/something/frames/47844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000108399", "images": ["AURORA/data/something/frames/93819/first.jpg", "AURORA/data/something/frames/93819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying worms in wheat bran"}]} +{"id": "000000108400", "images": ["AURORA/data/something/frames/192125/first.jpg", "AURORA/data/something/frames/192125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book, mug and ball on the table"}]} +{"id": "000000108401", "images": ["AURORA/data/something/frames/51946/first.jpg", "AURORA/data/something/frames/51946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pistachio off of clementine"}]} +{"id": "000000108402", "images": ["AURORA/data/something/frames/10213/first.jpg", "AURORA/data/something/frames/10213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to fridge"}]} +{"id": "000000108403", "images": ["AURORA/data/something/frames/218945/first.jpg", "AURORA/data/something/frames/218945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing make up from left to right"}]} +{"id": "000000108404", "images": ["AURORA/data/something/frames/121856/first.jpg", "AURORA/data/something/frames/121856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sugar onto toast"}]} +{"id": "000000108405", "images": ["AURORA/data/something/frames/160811/first.jpg", "AURORA/data/something/frames/160811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger up"}]} +{"id": "000000108406", "images": ["AURORA/data/something/frames/146213/first.jpg", "AURORA/data/something/frames/146213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lidded cup underneath container"}]} +{"id": "000000108407", "images": ["AURORA/data/something/frames/140304/first.jpg", "AURORA/data/something/frames/140304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile phone down"}]} +{"id": "000000108408", "images": ["AURORA/data/something/frames/6490/first.jpg", "AURORA/data/something/frames/6490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of plastic cover so that it gets stretched"}]} +{"id": "000000108409", "images": ["AURORA/data/something/frames/41093/first.jpg", "AURORA/data/something/frames/41093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving jar and jar closer to each other"}]} +{"id": "000000108410", "images": ["AURORA/data/something/frames/202709/first.jpg", "AURORA/data/something/frames/202709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wooden bowl in front of glass"}]} +{"id": "000000108411", "images": ["AURORA/data/something/frames/103278/first.jpg", "AURORA/data/something/frames/103278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil next to spiral pad notebook"}]} +{"id": "000000108412", "images": ["AURORA/data/something/frames/33722/first.jpg", "AURORA/data/something/frames/33722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hat and shoe so they collide with each other"}]} +{"id": "000000108413", "images": ["AURORA/data/something/frames/4088/first.jpg", "AURORA/data/something/frames/4088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching colorful, wooden toy chicken car with your camera"}]} +{"id": "000000108414", "images": ["AURORA/data/something/frames/198607/first.jpg", "AURORA/data/something/frames/198607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen so that it almost falls off but doesn't"}]} +{"id": "000000108415", "images": ["AURORA/data/something/frames/106253/first.jpg", "AURORA/data/something/frames/106253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar onto box"}]} +{"id": "000000108416", "images": ["AURORA/data/something/frames/142733/first.jpg", "AURORA/data/something/frames/142733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sponge next to mug"}]} +{"id": "000000108417", "images": ["AURORA/data/something/frames/3676/first.jpg", "AURORA/data/something/frames/3676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) box of left side"}]} +{"id": "000000108418", "images": ["AURORA/data/something/frames/195646/first.jpg", "AURORA/data/something/frames/195646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy car in front of plastic bowl"}]} +{"id": "000000108419", "images": ["AURORA/data/something/frames/116845/first.jpg", "AURORA/data/something/frames/116845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tube on the edge of table so it is not supported and falls down"}]} +{"id": "000000108420", "images": ["AURORA/data/something/frames/104829/first.jpg", "AURORA/data/something/frames/104829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming iron"}]} +{"id": "000000108421", "images": ["AURORA/data/something/frames/106896/first.jpg", "AURORA/data/something/frames/106896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming pedestal fan"}]} +{"id": "000000108422", "images": ["AURORA/data/something/frames/182388/first.jpg", "AURORA/data/something/frames/182388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book and lighter on the table"}]} +{"id": "000000108423", "images": ["AURORA/data/something/frames/136509/first.jpg", "AURORA/data/something/frames/136509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring pure water into into another cup"}]} +{"id": "000000108424", "images": ["AURORA/data/something/frames/32117/first.jpg", "AURORA/data/something/frames/32117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a lighter from left to right"}]} +{"id": "000000108425", "images": ["AURORA/data/something/frames/75825/first.jpg", "AURORA/data/something/frames/75825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping watch onto floor"}]} +{"id": "000000108426", "images": ["AURORA/data/something/frames/139346/first.jpg", "AURORA/data/something/frames/139346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of dice without the stack collapsing"}]} +{"id": "000000108427", "images": ["AURORA/data/something/frames/145073/first.jpg", "AURORA/data/something/frames/145073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a napkin onto a slanted surface but it doesn't glide down"}]} +{"id": "000000108428", "images": ["AURORA/data/something/frames/43387/first.jpg", "AURORA/data/something/frames/43387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic screwcap behind mug"}]} +{"id": "000000108429", "images": ["AURORA/data/something/frames/169346/first.jpg", "AURORA/data/something/frames/169346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with mouse on it"}]} +{"id": "000000108430", "images": ["AURORA/data/something/frames/217321/first.jpg", "AURORA/data/something/frames/217321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking the soap so that it falls over"}]} +{"id": "000000108431", "images": ["AURORA/data/something/frames/64181/first.jpg", "AURORA/data/something/frames/64181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting saucer underneath teacup"}]} +{"id": "000000108432", "images": ["AURORA/data/something/frames/63078/first.jpg", "AURORA/data/something/frames/63078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000108433", "images": ["AURORA/data/something/frames/16756/first.jpg", "AURORA/data/something/frames/16756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000108434", "images": ["AURORA/data/something/frames/98624/first.jpg", "AURORA/data/something/frames/98624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottle from behind of paint bottle"}]} +{"id": "000000108435", "images": ["AURORA/data/something/frames/26625/first.jpg", "AURORA/data/something/frames/26625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote control on a surface"}]} +{"id": "000000108436", "images": ["AURORA/data/something/frames/124696/first.jpg", "AURORA/data/something/frames/124696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box closer to bottle"}]} +{"id": "000000108437", "images": ["AURORA/data/something/frames/20799/first.jpg", "AURORA/data/something/frames/20799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing legos from left to right"}]} +{"id": "000000108438", "images": ["AURORA/data/something/frames/151870/first.jpg", "AURORA/data/something/frames/151870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000108439", "images": ["AURORA/data/something/frames/52755/first.jpg", "AURORA/data/something/frames/52755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming black hat"}]} +{"id": "000000108440", "images": ["AURORA/data/something/frames/170363/first.jpg", "AURORA/data/something/frames/170363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a hat up"}]} +{"id": "000000108441", "images": ["AURORA/data/something/frames/171435/first.jpg", "AURORA/data/something/frames/171435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking taking one of the monkeys from the table"}]} +{"id": "000000108442", "images": ["AURORA/data/something/frames/89177/first.jpg", "AURORA/data/something/frames/89177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000108443", "images": ["AURORA/data/something/frames/75123/first.jpg", "AURORA/data/something/frames/75123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding baby blanket"}]} +{"id": "000000108444", "images": ["AURORA/data/something/frames/201325/first.jpg", "AURORA/data/something/frames/201325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000108445", "images": ["AURORA/data/something/frames/68815/first.jpg", "AURORA/data/something/frames/68815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying candle in dirt"}]} +{"id": "000000108446", "images": ["AURORA/data/something/frames/120309/first.jpg", "AURORA/data/something/frames/120309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding towel"}]} +{"id": "000000108447", "images": ["AURORA/data/something/frames/209322/first.jpg", "AURORA/data/something/frames/209322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into cup"}]} +{"id": "000000108448", "images": ["AURORA/data/something/frames/49066/first.jpg", "AURORA/data/something/frames/49066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a stuffed toy upside down"}]} +{"id": "000000108449", "images": ["AURORA/data/something/frames/19173/first.jpg", "AURORA/data/something/frames/19173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering brush"}]} +{"id": "000000108450", "images": ["AURORA/data/something/frames/157988/first.jpg", "AURORA/data/something/frames/157988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pink toothbrush case from left to right"}]} +{"id": "000000108451", "images": ["AURORA/data/something/frames/184393/first.jpg", "AURORA/data/something/frames/184393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering keys with a towel"}]} +{"id": "000000108452", "images": ["AURORA/data/something/frames/166206/first.jpg", "AURORA/data/something/frames/166206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108453", "images": ["AURORA/data/something/frames/178255/first.jpg", "AURORA/data/something/frames/178255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy away from block"}]} +{"id": "000000108454", "images": ["AURORA/data/something/frames/83026/first.jpg", "AURORA/data/something/frames/83026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sheets into box"}]} +{"id": "000000108455", "images": ["AURORA/data/something/frames/59986/first.jpg", "AURORA/data/something/frames/59986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling remote control from right to left"}]} +{"id": "000000108456", "images": ["AURORA/data/something/frames/157769/first.jpg", "AURORA/data/something/frames/157769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard into two pieces"}]} +{"id": "000000108457", "images": ["AURORA/data/something/frames/106014/first.jpg", "AURORA/data/something/frames/106014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting pocket up completely without letting it drop down"}]} +{"id": "000000108458", "images": ["AURORA/data/something/frames/6912/first.jpg", "AURORA/data/something/frames/6912/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting mirror with pen on it"}]} +{"id": "000000108459", "images": ["AURORA/data/something/frames/86526/first.jpg", "AURORA/data/something/frames/86526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing board, revealing basket behind"}]} +{"id": "000000108460", "images": ["AURORA/data/something/frames/97759/first.jpg", "AURORA/data/something/frames/97759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 pencil sharpners onto blue spectacle box"}]} +{"id": "000000108461", "images": ["AURORA/data/something/frames/166814/first.jpg", "AURORA/data/something/frames/166814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white king and black king closer to each other"}]} +{"id": "000000108462", "images": ["AURORA/data/something/frames/45656/first.jpg", "AURORA/data/something/frames/45656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming tea box"}]} +{"id": "000000108463", "images": ["AURORA/data/something/frames/157430/first.jpg", "AURORA/data/something/frames/157430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ruler"}]} +{"id": "000000108464", "images": ["AURORA/data/something/frames/146834/first.jpg", "AURORA/data/something/frames/146834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses next to a bottle"}]} +{"id": "000000108465", "images": ["AURORA/data/something/frames/182226/first.jpg", "AURORA/data/something/frames/182226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting silverware"}]} +{"id": "000000108466", "images": ["AURORA/data/something/frames/9352/first.jpg", "AURORA/data/something/frames/9352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading lotion onto a hand"}]} +{"id": "000000108467", "images": ["AURORA/data/something/frames/120474/first.jpg", "AURORA/data/something/frames/120474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of glass cup"}]} +{"id": "000000108468", "images": ["AURORA/data/something/frames/139430/first.jpg", "AURORA/data/something/frames/139430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a pant"}]} +{"id": "000000108469", "images": ["AURORA/data/something/frames/110832/first.jpg", "AURORA/data/something/frames/110832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching dog collar to door handle"}]} +{"id": "000000108470", "images": ["AURORA/data/something/frames/139064/first.jpg", "AURORA/data/something/frames/139064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering wood piece with a basket"}]} +{"id": "000000108471", "images": ["AURORA/data/something/frames/23367/first.jpg", "AURORA/data/something/frames/23367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet so that it almost falls off but doesn't"}]} +{"id": "000000108472", "images": ["AURORA/data/something/frames/219287/first.jpg", "AURORA/data/something/frames/219287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a rubber band so that it gets stretched"}]} +{"id": "000000108473", "images": ["AURORA/data/something/frames/148960/first.jpg", "AURORA/data/something/frames/148960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pencil holder over"}]} +{"id": "000000108474", "images": ["AURORA/data/something/frames/65830/first.jpg", "AURORA/data/something/frames/65830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hair tie, ruler and cutlery on the table"}]} +{"id": "000000108475", "images": ["AURORA/data/something/frames/113592/first.jpg", "AURORA/data/something/frames/113592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108476", "images": ["AURORA/data/something/frames/66977/first.jpg", "AURORA/data/something/frames/66977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping can over"}]} +{"id": "000000108477", "images": ["AURORA/data/something/frames/107115/first.jpg", "AURORA/data/something/frames/107115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a lid onto a glass"}]} +{"id": "000000108478", "images": ["AURORA/data/something/frames/76152/first.jpg", "AURORA/data/something/frames/76152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stuffed animal from left to right"}]} +{"id": "000000108479", "images": ["AURORA/data/something/frames/126874/first.jpg", "AURORA/data/something/frames/126874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing basket, revealing cellphone behind"}]} +{"id": "000000108480", "images": ["AURORA/data/something/frames/101623/first.jpg", "AURORA/data/something/frames/101623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy tractor across a surface without it falling down"}]} +{"id": "000000108481", "images": ["AURORA/data/something/frames/121704/first.jpg", "AURORA/data/something/frames/121704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass onto glass"}]} +{"id": "000000108482", "images": ["AURORA/data/something/frames/116310/first.jpg", "AURORA/data/something/frames/116310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle down"}]} +{"id": "000000108483", "images": ["AURORA/data/something/frames/163368/first.jpg", "AURORA/data/something/frames/163368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing newspaper into two pieces"}]} +{"id": "000000108484", "images": ["AURORA/data/something/frames/129811/first.jpg", "AURORA/data/something/frames/129811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ring from right to left"}]} +{"id": "000000108485", "images": ["AURORA/data/something/frames/24505/first.jpg", "AURORA/data/something/frames/24505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bottle"}]} +{"id": "000000108486", "images": ["AURORA/data/something/frames/107521/first.jpg", "AURORA/data/something/frames/107521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000108487", "images": ["AURORA/data/something/frames/189987/first.jpg", "AURORA/data/something/frames/189987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting punching machine, spectacle and cigarette lighter on the table"}]} +{"id": "000000108488", "images": ["AURORA/data/something/frames/184324/first.jpg", "AURORA/data/something/frames/184324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bear into chair"}]} +{"id": "000000108489", "images": ["AURORA/data/something/frames/91995/first.jpg", "AURORA/data/something/frames/91995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into power outlet"}]} +{"id": "000000108490", "images": ["AURORA/data/something/frames/190833/first.jpg", "AURORA/data/something/frames/190833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plate out of pile"}]} +{"id": "000000108491", "images": ["AURORA/data/something/frames/52669/first.jpg", "AURORA/data/something/frames/52669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue paper into plastic lid"}]} +{"id": "000000108492", "images": ["AURORA/data/something/frames/199199/first.jpg", "AURORA/data/something/frames/199199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) an ear of a soft toy cat"}]} +{"id": "000000108493", "images": ["AURORA/data/something/frames/10368/first.jpg", "AURORA/data/something/frames/10368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving yellow ball up"}]} +{"id": "000000108494", "images": ["AURORA/data/something/frames/131257/first.jpg", "AURORA/data/something/frames/131257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking book up"}]} +{"id": "000000108495", "images": ["AURORA/data/something/frames/182488/first.jpg", "AURORA/data/something/frames/182488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup over"}]} +{"id": "000000108496", "images": ["AURORA/data/something/frames/77942/first.jpg", "AURORA/data/something/frames/77942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a pen"}]} +{"id": "000000108497", "images": ["AURORA/data/something/frames/186728/first.jpg", "AURORA/data/something/frames/186728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an apple on a surface"}]} +{"id": "000000108498", "images": ["AURORA/data/something/frames/52541/first.jpg", "AURORA/data/something/frames/52541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hair brush upright on the table, so it falls on its side"}]} +{"id": "000000108499", "images": ["AURORA/data/something/frames/182589/first.jpg", "AURORA/data/something/frames/182589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning pencil box upside down"}]} +{"id": "000000108500", "images": ["AURORA/data/something/frames/134989/first.jpg", "AURORA/data/something/frames/134989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a book from left to right"}]} +{"id": "000000108501", "images": ["AURORA/data/something/frames/171828/first.jpg", "AURORA/data/something/frames/171828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching bismuth with your camera"}]} +{"id": "000000108502", "images": ["AURORA/data/something/frames/63668/first.jpg", "AURORA/data/something/frames/63668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting handkerchief into front storage kneeroom"}]} +{"id": "000000108503", "images": ["AURORA/data/something/frames/151660/first.jpg", "AURORA/data/something/frames/151660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 rings"}]} +{"id": "000000108504", "images": ["AURORA/data/something/frames/153448/first.jpg", "AURORA/data/something/frames/153448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting fabric"}]} +{"id": "000000108505", "images": ["AURORA/data/something/frames/88459/first.jpg", "AURORA/data/something/frames/88459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble, badge and toy white car on the table"}]} +{"id": "000000108506", "images": ["AURORA/data/something/frames/68170/first.jpg", "AURORA/data/something/frames/68170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bucket with knife"}]} +{"id": "000000108507", "images": ["AURORA/data/something/frames/3275/first.jpg", "AURORA/data/something/frames/3275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a book with a remote"}]} +{"id": "000000108508", "images": ["AURORA/data/something/frames/25161/first.jpg", "AURORA/data/something/frames/25161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping fruits into a bowl"}]} +{"id": "000000108509", "images": ["AURORA/data/something/frames/15037/first.jpg", "AURORA/data/something/frames/15037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into jar"}]} +{"id": "000000108510", "images": ["AURORA/data/something/frames/150935/first.jpg", "AURORA/data/something/frames/150935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cards up"}]} +{"id": "000000108511", "images": ["AURORA/data/something/frames/92970/first.jpg", "AURORA/data/something/frames/92970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a wallet with a coin on it"}]} +{"id": "000000108512", "images": ["AURORA/data/something/frames/28673/first.jpg", "AURORA/data/something/frames/28673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of glass"}]} +{"id": "000000108513", "images": ["AURORA/data/something/frames/98959/first.jpg", "AURORA/data/something/frames/98959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen upright on the table, so it falls on its side"}]} +{"id": "000000108514", "images": ["AURORA/data/something/frames/208574/first.jpg", "AURORA/data/something/frames/208574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming lighter"}]} +{"id": "000000108515", "images": ["AURORA/data/something/frames/58865/first.jpg", "AURORA/data/something/frames/58865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling ipod from left to right"}]} +{"id": "000000108516", "images": ["AURORA/data/something/frames/37011/first.jpg", "AURORA/data/something/frames/37011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a smartphone upside down"}]} +{"id": "000000108517", "images": ["AURORA/data/something/frames/159097/first.jpg", "AURORA/data/something/frames/159097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a plastic packaging on the table on its side, not upright"}]} +{"id": "000000108518", "images": ["AURORA/data/something/frames/208829/first.jpg", "AURORA/data/something/frames/208829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling milk onto worktop"}]} +{"id": "000000108519", "images": ["AURORA/data/something/frames/20089/first.jpg", "AURORA/data/something/frames/20089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker into cap"}]} +{"id": "000000108520", "images": ["AURORA/data/something/frames/116066/first.jpg", "AURORA/data/something/frames/116066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a minion toy so that it falls over"}]} +{"id": "000000108521", "images": ["AURORA/data/something/frames/7629/first.jpg", "AURORA/data/something/frames/7629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cleaning wipes on the table on its side, not upright"}]} +{"id": "000000108522", "images": ["AURORA/data/something/frames/43206/first.jpg", "AURORA/data/something/frames/43206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a travel magazine"}]} +{"id": "000000108523", "images": ["AURORA/data/something/frames/150872/first.jpg", "AURORA/data/something/frames/150872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of pen so that it separates into two pieces"}]} +{"id": "000000108524", "images": ["AURORA/data/something/frames/179908/first.jpg", "AURORA/data/something/frames/179908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting juice bottles"}]} +{"id": "000000108525", "images": ["AURORA/data/something/frames/52921/first.jpg", "AURORA/data/something/frames/52921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into sink"}]} +{"id": "000000108526", "images": ["AURORA/data/something/frames/40317/first.jpg", "AURORA/data/something/frames/40317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bucket with towel"}]} +{"id": "000000108527", "images": ["AURORA/data/something/frames/135269/first.jpg", "AURORA/data/something/frames/135269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pasta out of plastic jar"}]} +{"id": "000000108528", "images": ["AURORA/data/something/frames/114565/first.jpg", "AURORA/data/something/frames/114565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping glass bottle with liquid over, so liquid falls out"}]} +{"id": "000000108529", "images": ["AURORA/data/something/frames/164250/first.jpg", "AURORA/data/something/frames/164250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming glass"}]} +{"id": "000000108530", "images": ["AURORA/data/something/frames/153325/first.jpg", "AURORA/data/something/frames/153325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wallet behind a bag"}]} +{"id": "000000108531", "images": ["AURORA/data/something/frames/73066/first.jpg", "AURORA/data/something/frames/73066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb cable into a power bank but pulling it right out as you remove your hand"}]} +{"id": "000000108532", "images": ["AURORA/data/something/frames/87379/first.jpg", "AURORA/data/something/frames/87379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a door"}]} +{"id": "000000108533", "images": ["AURORA/data/something/frames/40872/first.jpg", "AURORA/data/something/frames/40872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black pouch bag from left to right"}]} +{"id": "000000108534", "images": ["AURORA/data/something/frames/47805/first.jpg", "AURORA/data/something/frames/47805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one lighter"}]} +{"id": "000000108535", "images": ["AURORA/data/something/frames/36388/first.jpg", "AURORA/data/something/frames/36388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with letter on it until it starts sliding down"}]} +{"id": "000000108536", "images": ["AURORA/data/something/frames/196898/first.jpg", "AURORA/data/something/frames/196898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spectacles up"}]} +{"id": "000000108537", "images": ["AURORA/data/something/frames/152638/first.jpg", "AURORA/data/something/frames/152638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red hair band and white toy car away from each other"}]} +{"id": "000000108538", "images": ["AURORA/data/something/frames/123285/first.jpg", "AURORA/data/something/frames/123285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank up"}]} +{"id": "000000108539", "images": ["AURORA/data/something/frames/60601/first.jpg", "AURORA/data/something/frames/60601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a box"}]} +{"id": "000000108540", "images": ["AURORA/data/something/frames/203627/first.jpg", "AURORA/data/something/frames/203627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soda and box closer to each other"}]} +{"id": "000000108541", "images": ["AURORA/data/something/frames/78199/first.jpg", "AURORA/data/something/frames/78199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a battery"}]} +{"id": "000000108542", "images": ["AURORA/data/something/frames/195177/first.jpg", "AURORA/data/something/frames/195177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing battery from right to left"}]} +{"id": "000000108543", "images": ["AURORA/data/something/frames/87244/first.jpg", "AURORA/data/something/frames/87244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving marker and paper clip holder away from each other"}]} +{"id": "000000108544", "images": ["AURORA/data/something/frames/80557/first.jpg", "AURORA/data/something/frames/80557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108545", "images": ["AURORA/data/something/frames/207110/first.jpg", "AURORA/data/something/frames/207110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a bottle top"}]} +{"id": "000000108546", "images": ["AURORA/data/something/frames/85937/first.jpg", "AURORA/data/something/frames/85937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 blushes in their makeup boxes"}]} +{"id": "000000108547", "images": ["AURORA/data/something/frames/40806/first.jpg", "AURORA/data/something/frames/40806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming adaptor"}]} +{"id": "000000108548", "images": ["AURORA/data/something/frames/80824/first.jpg", "AURORA/data/something/frames/80824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a plate upside down"}]} +{"id": "000000108549", "images": ["AURORA/data/something/frames/118843/first.jpg", "AURORA/data/something/frames/118843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of crayon"}]} +{"id": "000000108550", "images": ["AURORA/data/something/frames/185213/first.jpg", "AURORA/data/something/frames/185213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading sauce onto roti"}]} +{"id": "000000108551", "images": ["AURORA/data/something/frames/57991/first.jpg", "AURORA/data/something/frames/57991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000108552", "images": ["AURORA/data/something/frames/176810/first.jpg", "AURORA/data/something/frames/176810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000108553", "images": ["AURORA/data/something/frames/157977/first.jpg", "AURORA/data/something/frames/157977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white board clip away from red spoon"}]} +{"id": "000000108554", "images": ["AURORA/data/something/frames/92003/first.jpg", "AURORA/data/something/frames/92003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glas and glas away from each other"}]} +{"id": "000000108555", "images": ["AURORA/data/something/frames/108541/first.jpg", "AURORA/data/something/frames/108541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cape to bottle"}]} +{"id": "000000108556", "images": ["AURORA/data/something/frames/166449/first.jpg", "AURORA/data/something/frames/166449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000108557", "images": ["AURORA/data/something/frames/61946/first.jpg", "AURORA/data/something/frames/61946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bottle with a comb"}]} +{"id": "000000108558", "images": ["AURORA/data/something/frames/51951/first.jpg", "AURORA/data/something/frames/51951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching grill with your camera"}]} +{"id": "000000108559", "images": ["AURORA/data/something/frames/185560/first.jpg", "AURORA/data/something/frames/185560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with pen"}]} +{"id": "000000108560", "images": ["AURORA/data/something/frames/170009/first.jpg", "AURORA/data/something/frames/170009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending spoon so that it deforms"}]} +{"id": "000000108561", "images": ["AURORA/data/something/frames/102140/first.jpg", "AURORA/data/something/frames/102140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball into bowl"}]} +{"id": "000000108562", "images": ["AURORA/data/something/frames/98147/first.jpg", "AURORA/data/something/frames/98147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen away from a battery"}]} +{"id": "000000108563", "images": ["AURORA/data/something/frames/157914/first.jpg", "AURORA/data/something/frames/157914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying plastic spoon in salt"}]} +{"id": "000000108564", "images": ["AURORA/data/something/frames/204297/first.jpg", "AURORA/data/something/frames/204297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a spoon to a book"}]} +{"id": "000000108565", "images": ["AURORA/data/something/frames/76590/first.jpg", "AURORA/data/something/frames/76590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning pink water bottle upside down"}]} +{"id": "000000108566", "images": ["AURORA/data/something/frames/15685/first.jpg", "AURORA/data/something/frames/15685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eye kajal closer to pendrive"}]} +{"id": "000000108567", "images": ["AURORA/data/something/frames/214573/first.jpg", "AURORA/data/something/frames/214573/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming a paint bottle"}]} +{"id": "000000108568", "images": ["AURORA/data/something/frames/173544/first.jpg", "AURORA/data/something/frames/173544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into socket"}]} +{"id": "000000108569", "images": ["AURORA/data/something/frames/208792/first.jpg", "AURORA/data/something/frames/208792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding purse"}]} +{"id": "000000108570", "images": ["AURORA/data/something/frames/218594/first.jpg", "AURORA/data/something/frames/218594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pumpkin cookie from left to right"}]} +{"id": "000000108571", "images": ["AURORA/data/something/frames/99929/first.jpg", "AURORA/data/something/frames/99929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking waterbottle so that it falls over"}]} +{"id": "000000108572", "images": ["AURORA/data/something/frames/172077/first.jpg", "AURORA/data/something/frames/172077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping box behind trash can"}]} +{"id": "000000108573", "images": ["AURORA/data/something/frames/160784/first.jpg", "AURORA/data/something/frames/160784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a toy car"}]} +{"id": "000000108574", "images": ["AURORA/data/something/frames/40758/first.jpg", "AURORA/data/something/frames/40758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper onto table"}]} +{"id": "000000108575", "images": ["AURORA/data/something/frames/211109/first.jpg", "AURORA/data/something/frames/211109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming chair"}]} +{"id": "000000108576", "images": ["AURORA/data/something/frames/140946/first.jpg", "AURORA/data/something/frames/140946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning an espadrille upside down"}]} +{"id": "000000108577", "images": ["AURORA/data/something/frames/29922/first.jpg", "AURORA/data/something/frames/29922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a scooter"}]} +{"id": "000000108578", "images": ["AURORA/data/something/frames/184373/first.jpg", "AURORA/data/something/frames/184373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming water tap"}]} +{"id": "000000108579", "images": ["AURORA/data/something/frames/131392/first.jpg", "AURORA/data/something/frames/131392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming brown bracelet"}]} +{"id": "000000108580", "images": ["AURORA/data/something/frames/208367/first.jpg", "AURORA/data/something/frames/208367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy up"}]} +{"id": "000000108581", "images": ["AURORA/data/something/frames/66213/first.jpg", "AURORA/data/something/frames/66213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending paperclip so that it deforms"}]} +{"id": "000000108582", "images": ["AURORA/data/something/frames/216525/first.jpg", "AURORA/data/something/frames/216525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing book into bag"}]} +{"id": "000000108583", "images": ["AURORA/data/something/frames/86136/first.jpg", "AURORA/data/something/frames/86136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting tie"}]} +{"id": "000000108584", "images": ["AURORA/data/something/frames/158341/first.jpg", "AURORA/data/something/frames/158341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle of water from right to left"}]} +{"id": "000000108585", "images": ["AURORA/data/something/frames/159873/first.jpg", "AURORA/data/something/frames/159873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking battery so that it falls over"}]} +{"id": "000000108586", "images": ["AURORA/data/something/frames/48978/first.jpg", "AURORA/data/something/frames/48978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming induction cooker"}]} +{"id": "000000108587", "images": ["AURORA/data/something/frames/159309/first.jpg", "AURORA/data/something/frames/159309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something and something closer to each other"}]} +{"id": "000000108588", "images": ["AURORA/data/something/frames/61007/first.jpg", "AURORA/data/something/frames/61007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning candle upside down"}]} +{"id": "000000108589", "images": ["AURORA/data/something/frames/8561/first.jpg", "AURORA/data/something/frames/8561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing helmet from left to right"}]} +{"id": "000000108590", "images": ["AURORA/data/something/frames/195644/first.jpg", "AURORA/data/something/frames/195644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000108591", "images": ["AURORA/data/something/frames/48045/first.jpg", "AURORA/data/something/frames/48045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting folder with phone on it"}]} +{"id": "000000108592", "images": ["AURORA/data/something/frames/191905/first.jpg", "AURORA/data/something/frames/191905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into dough"}]} +{"id": "000000108593", "images": ["AURORA/data/something/frames/15634/first.jpg", "AURORA/data/something/frames/15634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 glass"}]} +{"id": "000000108594", "images": ["AURORA/data/something/frames/108250/first.jpg", "AURORA/data/something/frames/108250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking picture so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108595", "images": ["AURORA/data/something/frames/135871/first.jpg", "AURORA/data/something/frames/135871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a tablet with cap"}]} +{"id": "000000108596", "images": ["AURORA/data/something/frames/10514/first.jpg", "AURORA/data/something/frames/10514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sun glass from car seat"}]} +{"id": "000000108597", "images": ["AURORA/data/something/frames/175148/first.jpg", "AURORA/data/something/frames/175148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) a doorknob of a door"}]} +{"id": "000000108598", "images": ["AURORA/data/something/frames/148274/first.jpg", "AURORA/data/something/frames/148274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of leaf so that it separates into two pieces"}]} +{"id": "000000108599", "images": ["AURORA/data/something/frames/188343/first.jpg", "AURORA/data/something/frames/188343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling dirty clothes up"}]} +{"id": "000000108600", "images": ["AURORA/data/something/frames/54216/first.jpg", "AURORA/data/something/frames/54216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching pen holder with your camera"}]} +{"id": "000000108601", "images": ["AURORA/data/something/frames/135409/first.jpg", "AURORA/data/something/frames/135409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding shirt"}]} +{"id": "000000108602", "images": ["AURORA/data/something/frames/133032/first.jpg", "AURORA/data/something/frames/133032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000108603", "images": ["AURORA/data/something/frames/37393/first.jpg", "AURORA/data/something/frames/37393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lever of wine key"}]} +{"id": "000000108604", "images": ["AURORA/data/something/frames/3775/first.jpg", "AURORA/data/something/frames/3775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball colliding with ball and both are being deflected"}]} +{"id": "000000108605", "images": ["AURORA/data/something/frames/152407/first.jpg", "AURORA/data/something/frames/152407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cap and box away from each other"}]} +{"id": "000000108606", "images": ["AURORA/data/something/frames/7232/first.jpg", "AURORA/data/something/frames/7232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108607", "images": ["AURORA/data/something/frames/188097/first.jpg", "AURORA/data/something/frames/188097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering dedorant with tablet"}]} +{"id": "000000108608", "images": ["AURORA/data/something/frames/101083/first.jpg", "AURORA/data/something/frames/101083/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box next to a coin"}]} +{"id": "000000108609", "images": ["AURORA/data/something/frames/64543/first.jpg", "AURORA/data/something/frames/64543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book closer to chair"}]} +{"id": "000000108610", "images": ["AURORA/data/something/frames/141287/first.jpg", "AURORA/data/something/frames/141287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000108611", "images": ["AURORA/data/something/frames/172379/first.jpg", "AURORA/data/something/frames/172379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lip bam away from pen"}]} +{"id": "000000108612", "images": ["AURORA/data/something/frames/140845/first.jpg", "AURORA/data/something/frames/140845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming indoor plant"}]} +{"id": "000000108613", "images": ["AURORA/data/something/frames/51125/first.jpg", "AURORA/data/something/frames/51125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto floor"}]} +{"id": "000000108614", "images": ["AURORA/data/something/frames/67849/first.jpg", "AURORA/data/something/frames/67849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108615", "images": ["AURORA/data/something/frames/153291/first.jpg", "AURORA/data/something/frames/153291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing container lid from right to left"}]} +{"id": "000000108616", "images": ["AURORA/data/something/frames/123168/first.jpg", "AURORA/data/something/frames/123168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from ring with your camera"}]} +{"id": "000000108617", "images": ["AURORA/data/something/frames/40445/first.jpg", "AURORA/data/something/frames/40445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a perfume bottle upright on the table"}]} +{"id": "000000108618", "images": ["AURORA/data/something/frames/71971/first.jpg", "AURORA/data/something/frames/71971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from a hairbrush with your camera"}]} +{"id": "000000108619", "images": ["AURORA/data/something/frames/144277/first.jpg", "AURORA/data/something/frames/144277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of pencil without letting it drop down"}]} +{"id": "000000108620", "images": ["AURORA/data/something/frames/58925/first.jpg", "AURORA/data/something/frames/58925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a kitchen towel"}]} +{"id": "000000108621", "images": ["AURORA/data/something/frames/26080/first.jpg", "AURORA/data/something/frames/26080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000108622", "images": ["AURORA/data/something/frames/184409/first.jpg", "AURORA/data/something/frames/184409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: car colliding with car and both are being deflected"}]} +{"id": "000000108623", "images": ["AURORA/data/something/frames/17491/first.jpg", "AURORA/data/something/frames/17491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cellphone cord into outlet strip"}]} +{"id": "000000108624", "images": ["AURORA/data/something/frames/214465/first.jpg", "AURORA/data/something/frames/214465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting slime into tuperware"}]} +{"id": "000000108625", "images": ["AURORA/data/something/frames/73785/first.jpg", "AURORA/data/something/frames/73785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box on the edge of counter so it is not supported and falls down"}]} +{"id": "000000108626", "images": ["AURORA/data/something/frames/151780/first.jpg", "AURORA/data/something/frames/151780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wooden piece onto leaf of a plant which cannot support it so it falls down"}]} +{"id": "000000108627", "images": ["AURORA/data/something/frames/123895/first.jpg", "AURORA/data/something/frames/123895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from wall light with your camera"}]} +{"id": "000000108628", "images": ["AURORA/data/something/frames/84718/first.jpg", "AURORA/data/something/frames/84718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning jar upside down"}]} +{"id": "000000108629", "images": ["AURORA/data/something/frames/97818/first.jpg", "AURORA/data/something/frames/97818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering plastic jar"}]} +{"id": "000000108630", "images": ["AURORA/data/something/frames/48465/first.jpg", "AURORA/data/something/frames/48465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a compact disk with a remote on it"}]} +{"id": "000000108631", "images": ["AURORA/data/something/frames/188693/first.jpg", "AURORA/data/something/frames/188693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cap from left to right"}]} +{"id": "000000108632", "images": ["AURORA/data/something/frames/138150/first.jpg", "AURORA/data/something/frames/138150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108633", "images": ["AURORA/data/something/frames/200654/first.jpg", "AURORA/data/something/frames/200654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a phone behind a toy car"}]} +{"id": "000000108634", "images": ["AURORA/data/something/frames/52682/first.jpg", "AURORA/data/something/frames/52682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging earphone into earphone jack"}]} +{"id": "000000108635", "images": ["AURORA/data/something/frames/119450/first.jpg", "AURORA/data/something/frames/119450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a toothpick until it breaks"}]} +{"id": "000000108636", "images": ["AURORA/data/something/frames/65937/first.jpg", "AURORA/data/something/frames/65937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking book up"}]} +{"id": "000000108637", "images": ["AURORA/data/something/frames/206241/first.jpg", "AURORA/data/something/frames/206241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charging cable into portable game device but pulling it right out as you remove your hand"}]} +{"id": "000000108638", "images": ["AURORA/data/something/frames/121646/first.jpg", "AURORA/data/something/frames/121646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping plastic container onto bucket"}]} +{"id": "000000108639", "images": ["AURORA/data/something/frames/49034/first.jpg", "AURORA/data/something/frames/49034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting brush on a surface"}]} +{"id": "000000108640", "images": ["AURORA/data/something/frames/102863/first.jpg", "AURORA/data/something/frames/102863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching tape to paper"}]} +{"id": "000000108641", "images": ["AURORA/data/something/frames/81053/first.jpg", "AURORA/data/something/frames/81053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse closer to keyboard"}]} +{"id": "000000108642", "images": ["AURORA/data/something/frames/217458/first.jpg", "AURORA/data/something/frames/217458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tape so that it almost falls off but doesn't"}]} +{"id": "000000108643", "images": ["AURORA/data/something/frames/182704/first.jpg", "AURORA/data/something/frames/182704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 boxes"}]} +{"id": "000000108644", "images": ["AURORA/data/something/frames/115924/first.jpg", "AURORA/data/something/frames/115924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000108645", "images": ["AURORA/data/something/frames/172015/first.jpg", "AURORA/data/something/frames/172015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring gravy into container"}]} +{"id": "000000108646", "images": ["AURORA/data/something/frames/38158/first.jpg", "AURORA/data/something/frames/38158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling diper out of diper pack"}]} +{"id": "000000108647", "images": ["AURORA/data/something/frames/200020/first.jpg", "AURORA/data/something/frames/200020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing ropes into bag"}]} +{"id": "000000108648", "images": ["AURORA/data/something/frames/183363/first.jpg", "AURORA/data/something/frames/183363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tissue until it breaks"}]} +{"id": "000000108649", "images": ["AURORA/data/something/frames/210220/first.jpg", "AURORA/data/something/frames/210220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one coin"}]} +{"id": "000000108650", "images": ["AURORA/data/something/frames/50664/first.jpg", "AURORA/data/something/frames/50664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping popcorn bucket over"}]} +{"id": "000000108651", "images": ["AURORA/data/something/frames/58550/first.jpg", "AURORA/data/something/frames/58550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil and snap off blade away from each other"}]} +{"id": "000000108652", "images": ["AURORA/data/something/frames/78326/first.jpg", "AURORA/data/something/frames/78326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a balloon so that it almost falls off but doesn't"}]} +{"id": "000000108653", "images": ["AURORA/data/something/frames/208749/first.jpg", "AURORA/data/something/frames/208749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lever of faucet"}]} +{"id": "000000108654", "images": ["AURORA/data/something/frames/5871/first.jpg", "AURORA/data/something/frames/5871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of mobile"}]} +{"id": "000000108655", "images": ["AURORA/data/something/frames/43923/first.jpg", "AURORA/data/something/frames/43923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a marker and scissors on the table"}]} +{"id": "000000108656", "images": ["AURORA/data/something/frames/176323/first.jpg", "AURORA/data/something/frames/176323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an audio cable into headphones"}]} +{"id": "000000108657", "images": ["AURORA/data/something/frames/69489/first.jpg", "AURORA/data/something/frames/69489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching brush to vacuum hose"}]} +{"id": "000000108658", "images": ["AURORA/data/something/frames/37495/first.jpg", "AURORA/data/something/frames/37495/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of waterbottle"}]} +{"id": "000000108659", "images": ["AURORA/data/something/frames/116421/first.jpg", "AURORA/data/something/frames/116421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000108660", "images": ["AURORA/data/something/frames/92362/first.jpg", "AURORA/data/something/frames/92362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wood onto paper so it falls down"}]} +{"id": "000000108661", "images": ["AURORA/data/something/frames/147466/first.jpg", "AURORA/data/something/frames/147466/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to fridge"}]} +{"id": "000000108662", "images": ["AURORA/data/something/frames/179064/first.jpg", "AURORA/data/something/frames/179064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a marker into a pencil case"}]} +{"id": "000000108663", "images": ["AURORA/data/something/frames/41130/first.jpg", "AURORA/data/something/frames/41130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a stuffed rabbit with a blanket"}]} +{"id": "000000108664", "images": ["AURORA/data/something/frames/103242/first.jpg", "AURORA/data/something/frames/103242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper ticket into two pieces"}]} +{"id": "000000108665", "images": ["AURORA/data/something/frames/171245/first.jpg", "AURORA/data/something/frames/171245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote away from remote"}]} +{"id": "000000108666", "images": ["AURORA/data/something/frames/204515/first.jpg", "AURORA/data/something/frames/204515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting putting a figure of monkey to other monkey figures on the table"}]} +{"id": "000000108667", "images": ["AURORA/data/something/frames/215766/first.jpg", "AURORA/data/something/frames/215766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a tv table over"}]} +{"id": "000000108668", "images": ["AURORA/data/something/frames/176005/first.jpg", "AURORA/data/something/frames/176005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate up completely without letting it drop down"}]} +{"id": "000000108669", "images": ["AURORA/data/something/frames/150752/first.jpg", "AURORA/data/something/frames/150752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker from right to left"}]} +{"id": "000000108670", "images": ["AURORA/data/something/frames/175664/first.jpg", "AURORA/data/something/frames/175664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a currency note"}]} +{"id": "000000108671", "images": ["AURORA/data/something/frames/216301/first.jpg", "AURORA/data/something/frames/216301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000108672", "images": ["AURORA/data/something/frames/155568/first.jpg", "AURORA/data/something/frames/155568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling cheese onto bread"}]} +{"id": "000000108673", "images": ["AURORA/data/something/frames/202101/first.jpg", "AURORA/data/something/frames/202101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting drinking bottle behind plastic cup"}]} +{"id": "000000108674", "images": ["AURORA/data/something/frames/83189/first.jpg", "AURORA/data/something/frames/83189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping soda off of a counter"}]} +{"id": "000000108675", "images": ["AURORA/data/something/frames/215220/first.jpg", "AURORA/data/something/frames/215220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding folding"}]} +{"id": "000000108676", "images": ["AURORA/data/something/frames/134534/first.jpg", "AURORA/data/something/frames/134534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding pamphlet"}]} +{"id": "000000108677", "images": ["AURORA/data/something/frames/54664/first.jpg", "AURORA/data/something/frames/54664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball into box"}]} +{"id": "000000108678", "images": ["AURORA/data/something/frames/7568/first.jpg", "AURORA/data/something/frames/7568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to bero"}]} +{"id": "000000108679", "images": ["AURORA/data/something/frames/130272/first.jpg", "AURORA/data/something/frames/130272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000108680", "images": ["AURORA/data/something/frames/100157/first.jpg", "AURORA/data/something/frames/100157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto waterbottle"}]} +{"id": "000000108681", "images": ["AURORA/data/something/frames/37069/first.jpg", "AURORA/data/something/frames/37069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening laptop"}]} +{"id": "000000108682", "images": ["AURORA/data/something/frames/186085/first.jpg", "AURORA/data/something/frames/186085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pin so that it almost falls off but doesn't"}]} +{"id": "000000108683", "images": ["AURORA/data/something/frames/207801/first.jpg", "AURORA/data/something/frames/207801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 staplers onto red pouch"}]} +{"id": "000000108684", "images": ["AURORA/data/something/frames/153165/first.jpg", "AURORA/data/something/frames/153165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108685", "images": ["AURORA/data/something/frames/42974/first.jpg", "AURORA/data/something/frames/42974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper-board just a little bit"}]} +{"id": "000000108686", "images": ["AURORA/data/something/frames/126981/first.jpg", "AURORA/data/something/frames/126981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching earphones to mobile"}]} +{"id": "000000108687", "images": ["AURORA/data/something/frames/47711/first.jpg", "AURORA/data/something/frames/47711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000108688", "images": ["AURORA/data/something/frames/46003/first.jpg", "AURORA/data/something/frames/46003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from plastic jar with your camera"}]} +{"id": "000000108689", "images": ["AURORA/data/something/frames/173725/first.jpg", "AURORA/data/something/frames/173725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto bottle"}]} +{"id": "000000108690", "images": ["AURORA/data/something/frames/106827/first.jpg", "AURORA/data/something/frames/106827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000108691", "images": ["AURORA/data/something/frames/204224/first.jpg", "AURORA/data/something/frames/204224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000108692", "images": ["AURORA/data/something/frames/192777/first.jpg", "AURORA/data/something/frames/192777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into red bag"}]} +{"id": "000000108693", "images": ["AURORA/data/something/frames/6741/first.jpg", "AURORA/data/something/frames/6741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting salad dressing upright on the table"}]} +{"id": "000000108694", "images": ["AURORA/data/something/frames/89893/first.jpg", "AURORA/data/something/frames/89893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse next to laptop"}]} +{"id": "000000108695", "images": ["AURORA/data/something/frames/33507/first.jpg", "AURORA/data/something/frames/33507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking phone so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108696", "images": ["AURORA/data/something/frames/214451/first.jpg", "AURORA/data/something/frames/214451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) corner of notebook"}]} +{"id": "000000108697", "images": ["AURORA/data/something/frames/57344/first.jpg", "AURORA/data/something/frames/57344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind gas stove"}]} +{"id": "000000108698", "images": ["AURORA/data/something/frames/19021/first.jpg", "AURORA/data/something/frames/19021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing something into something"}]} +{"id": "000000108699", "images": ["AURORA/data/something/frames/216098/first.jpg", "AURORA/data/something/frames/216098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring popcorn into cup"}]} +{"id": "000000108700", "images": ["AURORA/data/something/frames/206705/first.jpg", "AURORA/data/something/frames/206705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing spectical box"}]} +{"id": "000000108701", "images": ["AURORA/data/something/frames/118589/first.jpg", "AURORA/data/something/frames/118589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote down"}]} +{"id": "000000108702", "images": ["AURORA/data/something/frames/36787/first.jpg", "AURORA/data/something/frames/36787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving car key down"}]} +{"id": "000000108703", "images": ["AURORA/data/something/frames/92656/first.jpg", "AURORA/data/something/frames/92656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering notepad with towel"}]} +{"id": "000000108704", "images": ["AURORA/data/something/frames/26842/first.jpg", "AURORA/data/something/frames/26842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel just a little bit"}]} +{"id": "000000108705", "images": ["AURORA/data/something/frames/138613/first.jpg", "AURORA/data/something/frames/138613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000108706", "images": ["AURORA/data/something/frames/201591/first.jpg", "AURORA/data/something/frames/201591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bag with cloth"}]} +{"id": "000000108707", "images": ["AURORA/data/something/frames/44772/first.jpg", "AURORA/data/something/frames/44772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000108708", "images": ["AURORA/data/something/frames/107594/first.jpg", "AURORA/data/something/frames/107594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening black plastic box"}]} +{"id": "000000108709", "images": ["AURORA/data/something/frames/177364/first.jpg", "AURORA/data/something/frames/177364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling salt onto plate"}]} +{"id": "000000108710", "images": ["AURORA/data/something/frames/158990/first.jpg", "AURORA/data/something/frames/158990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking toys out of basket"}]} +{"id": "000000108711", "images": ["AURORA/data/something/frames/29483/first.jpg", "AURORA/data/something/frames/29483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key up"}]} +{"id": "000000108712", "images": ["AURORA/data/something/frames/192250/first.jpg", "AURORA/data/something/frames/192250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing soap behind"}]} +{"id": "000000108713", "images": ["AURORA/data/something/frames/202407/first.jpg", "AURORA/data/something/frames/202407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper into a bowl"}]} +{"id": "000000108714", "images": ["AURORA/data/something/frames/12618/first.jpg", "AURORA/data/something/frames/12618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing cd stack, revealing tennis ball behind"}]} +{"id": "000000108715", "images": ["AURORA/data/something/frames/43190/first.jpg", "AURORA/data/something/frames/43190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet off of couch"}]} +{"id": "000000108716", "images": ["AURORA/data/something/frames/69918/first.jpg", "AURORA/data/something/frames/69918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108717", "images": ["AURORA/data/something/frames/101034/first.jpg", "AURORA/data/something/frames/101034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white board clip with white chalk"}]} +{"id": "000000108718", "images": ["AURORA/data/something/frames/174884/first.jpg", "AURORA/data/something/frames/174884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a can up"}]} +{"id": "000000108719", "images": ["AURORA/data/something/frames/56185/first.jpg", "AURORA/data/something/frames/56185/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pens into a plastic"}]} +{"id": "000000108720", "images": ["AURORA/data/something/frames/206230/first.jpg", "AURORA/data/something/frames/206230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet up"}]} +{"id": "000000108721", "images": ["AURORA/data/something/frames/141860/first.jpg", "AURORA/data/something/frames/141860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clothe into bucket"}]} +{"id": "000000108722", "images": ["AURORA/data/something/frames/189243/first.jpg", "AURORA/data/something/frames/189243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a sticky note to a cabinet"}]} +{"id": "000000108723", "images": ["AURORA/data/something/frames/14030/first.jpg", "AURORA/data/something/frames/14030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen in front of watch"}]} +{"id": "000000108724", "images": ["AURORA/data/something/frames/165254/first.jpg", "AURORA/data/something/frames/165254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glue bottle upright on the table"}]} +{"id": "000000108725", "images": ["AURORA/data/something/frames/134716/first.jpg", "AURORA/data/something/frames/134716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving duct tape closer to vase"}]} +{"id": "000000108726", "images": ["AURORA/data/something/frames/159474/first.jpg", "AURORA/data/something/frames/159474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: paint bottle colliding with paint bottle and both are being deflected"}]} +{"id": "000000108727", "images": ["AURORA/data/something/frames/43291/first.jpg", "AURORA/data/something/frames/43291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000108728", "images": ["AURORA/data/something/frames/195353/first.jpg", "AURORA/data/something/frames/195353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothpick onto a ruler"}]} +{"id": "000000108729", "images": ["AURORA/data/something/frames/24293/first.jpg", "AURORA/data/something/frames/24293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting butterfly hairclip with fly swatter"}]} +{"id": "000000108730", "images": ["AURORA/data/something/frames/88723/first.jpg", "AURORA/data/something/frames/88723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bag in front of box"}]} +{"id": "000000108731", "images": ["AURORA/data/something/frames/164497/first.jpg", "AURORA/data/something/frames/164497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming usb"}]} +{"id": "000000108732", "images": ["AURORA/data/something/frames/143761/first.jpg", "AURORA/data/something/frames/143761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug on a surface"}]} +{"id": "000000108733", "images": ["AURORA/data/something/frames/94667/first.jpg", "AURORA/data/something/frames/94667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper into box"}]} +{"id": "000000108734", "images": ["AURORA/data/something/frames/96574/first.jpg", "AURORA/data/something/frames/96574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a car out of a parking lot"}]} +{"id": "000000108735", "images": ["AURORA/data/something/frames/6036/first.jpg", "AURORA/data/something/frames/6036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cord into surge protector"}]} +{"id": "000000108736", "images": ["AURORA/data/something/frames/133163/first.jpg", "AURORA/data/something/frames/133163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling jewellry out of a jewellry box"}]} +{"id": "000000108737", "images": ["AURORA/data/something/frames/165153/first.jpg", "AURORA/data/something/frames/165153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a power adapter into a socket"}]} +{"id": "000000108738", "images": ["AURORA/data/something/frames/44689/first.jpg", "AURORA/data/something/frames/44689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming old mobile phone"}]} +{"id": "000000108739", "images": ["AURORA/data/something/frames/155316/first.jpg", "AURORA/data/something/frames/155316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug and marker on the table"}]} +{"id": "000000108740", "images": ["AURORA/data/something/frames/113477/first.jpg", "AURORA/data/something/frames/113477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind control"}]} +{"id": "000000108741", "images": ["AURORA/data/something/frames/113070/first.jpg", "AURORA/data/something/frames/113070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a mask with jacket"}]} +{"id": "000000108742", "images": ["AURORA/data/something/frames/125957/first.jpg", "AURORA/data/something/frames/125957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coffe onto a glass cup"}]} +{"id": "000000108743", "images": ["AURORA/data/something/frames/78802/first.jpg", "AURORA/data/something/frames/78802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring creamer into mug"}]} +{"id": "000000108744", "images": ["AURORA/data/something/frames/88356/first.jpg", "AURORA/data/something/frames/88356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass next to the book"}]} +{"id": "000000108745", "images": ["AURORA/data/something/frames/158130/first.jpg", "AURORA/data/something/frames/158130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet next to mouse"}]} +{"id": "000000108746", "images": ["AURORA/data/something/frames/215657/first.jpg", "AURORA/data/something/frames/215657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scissors from left to right"}]} +{"id": "000000108747", "images": ["AURORA/data/something/frames/38989/first.jpg", "AURORA/data/something/frames/38989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pink hair clip up"}]} +{"id": "000000108748", "images": ["AURORA/data/something/frames/66606/first.jpg", "AURORA/data/something/frames/66606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tissue box from right to left"}]} +{"id": "000000108749", "images": ["AURORA/data/something/frames/158901/first.jpg", "AURORA/data/something/frames/158901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting lid"}]} +{"id": "000000108750", "images": ["AURORA/data/something/frames/95719/first.jpg", "AURORA/data/something/frames/95719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into balm"}]} +{"id": "000000108751", "images": ["AURORA/data/something/frames/83527/first.jpg", "AURORA/data/something/frames/83527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pencil crayon case"}]} +{"id": "000000108752", "images": ["AURORA/data/something/frames/127850/first.jpg", "AURORA/data/something/frames/127850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a chappal on the edge of table so it is not supported and falls down"}]} +{"id": "000000108753", "images": ["AURORA/data/something/frames/801/first.jpg", "AURORA/data/something/frames/801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a phone on a surface"}]} +{"id": "000000108754", "images": ["AURORA/data/something/frames/57857/first.jpg", "AURORA/data/something/frames/57857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering usb cable with cloth"}]} +{"id": "000000108755", "images": ["AURORA/data/something/frames/184845/first.jpg", "AURORA/data/something/frames/184845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting doll in front of idol"}]} +{"id": "000000108756", "images": ["AURORA/data/something/frames/24018/first.jpg", "AURORA/data/something/frames/24018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a highlighter into a bucket"}]} +{"id": "000000108757", "images": ["AURORA/data/something/frames/2098/first.jpg", "AURORA/data/something/frames/2098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pincer down"}]} +{"id": "000000108758", "images": ["AURORA/data/something/frames/54936/first.jpg", "AURORA/data/something/frames/54936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower towards the camera"}]} +{"id": "000000108759", "images": ["AURORA/data/something/frames/185106/first.jpg", "AURORA/data/something/frames/185106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into block"}]} +{"id": "000000108760", "images": ["AURORA/data/something/frames/219476/first.jpg", "AURORA/data/something/frames/219476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bar soap on a surface"}]} +{"id": "000000108761", "images": ["AURORA/data/something/frames/207351/first.jpg", "AURORA/data/something/frames/207351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors upright on the table, so it falls on its side"}]} +{"id": "000000108762", "images": ["AURORA/data/something/frames/130703/first.jpg", "AURORA/data/something/frames/130703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108763", "images": ["AURORA/data/something/frames/136255/first.jpg", "AURORA/data/something/frames/136255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shirt into hamper"}]} +{"id": "000000108764", "images": ["AURORA/data/something/frames/113882/first.jpg", "AURORA/data/something/frames/113882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering watch"}]} +{"id": "000000108765", "images": ["AURORA/data/something/frames/75486/first.jpg", "AURORA/data/something/frames/75486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tape so that it almost falls off but doesn't"}]} +{"id": "000000108766", "images": ["AURORA/data/something/frames/77092/first.jpg", "AURORA/data/something/frames/77092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling book from right to left"}]} +{"id": "000000108767", "images": ["AURORA/data/something/frames/137991/first.jpg", "AURORA/data/something/frames/137991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding towel"}]} +{"id": "000000108768", "images": ["AURORA/data/something/frames/187789/first.jpg", "AURORA/data/something/frames/187789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall but pulling it right out as you remove your hand"}]} +{"id": "000000108769", "images": ["AURORA/data/something/frames/52622/first.jpg", "AURORA/data/something/frames/52622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving can closer to can"}]} +{"id": "000000108770", "images": ["AURORA/data/something/frames/10471/first.jpg", "AURORA/data/something/frames/10471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a flashlight so that it falls over"}]} +{"id": "000000108771", "images": ["AURORA/data/something/frames/14490/first.jpg", "AURORA/data/something/frames/14490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with pen on it"}]} +{"id": "000000108772", "images": ["AURORA/data/something/frames/123295/first.jpg", "AURORA/data/something/frames/123295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering coaster with box"}]} +{"id": "000000108773", "images": ["AURORA/data/something/frames/24427/first.jpg", "AURORA/data/something/frames/24427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking rocks"}]} +{"id": "000000108774", "images": ["AURORA/data/something/frames/61404/first.jpg", "AURORA/data/something/frames/61404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box onto a sock"}]} +{"id": "000000108775", "images": ["AURORA/data/something/frames/14330/first.jpg", "AURORA/data/something/frames/14330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg onto a box"}]} +{"id": "000000108776", "images": ["AURORA/data/something/frames/183863/first.jpg", "AURORA/data/something/frames/183863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000108777", "images": ["AURORA/data/something/frames/142849/first.jpg", "AURORA/data/something/frames/142849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting doll on a surface"}]} +{"id": "000000108778", "images": ["AURORA/data/something/frames/37174/first.jpg", "AURORA/data/something/frames/37174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a towel without letting it drop down"}]} +{"id": "000000108779", "images": ["AURORA/data/something/frames/103102/first.jpg", "AURORA/data/something/frames/103102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) a knob of a drawer"}]} +{"id": "000000108780", "images": ["AURORA/data/something/frames/154057/first.jpg", "AURORA/data/something/frames/154057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pebble closer to spanner"}]} +{"id": "000000108781", "images": ["AURORA/data/something/frames/35767/first.jpg", "AURORA/data/something/frames/35767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail clippers away from pen"}]} +{"id": "000000108782", "images": ["AURORA/data/something/frames/14206/first.jpg", "AURORA/data/something/frames/14206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper up completely without letting it drop down"}]} +{"id": "000000108783", "images": ["AURORA/data/something/frames/26579/first.jpg", "AURORA/data/something/frames/26579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books without the stack collapsing"}]} +{"id": "000000108784", "images": ["AURORA/data/something/frames/78118/first.jpg", "AURORA/data/something/frames/78118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming one tea light candle"}]} +{"id": "000000108785", "images": ["AURORA/data/something/frames/205422/first.jpg", "AURORA/data/something/frames/205422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting color paper clip"}]} +{"id": "000000108786", "images": ["AURORA/data/something/frames/91018/first.jpg", "AURORA/data/something/frames/91018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling flour onto sausage"}]} +{"id": "000000108787", "images": ["AURORA/data/something/frames/212599/first.jpg", "AURORA/data/something/frames/212599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of boxes so the stack collapses"}]} +{"id": "000000108788", "images": ["AURORA/data/something/frames/173361/first.jpg", "AURORA/data/something/frames/173361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000108789", "images": ["AURORA/data/something/frames/157925/first.jpg", "AURORA/data/something/frames/157925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking battery"}]} +{"id": "000000108790", "images": ["AURORA/data/something/frames/127436/first.jpg", "AURORA/data/something/frames/127436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto the floor"}]} +{"id": "000000108791", "images": ["AURORA/data/something/frames/203910/first.jpg", "AURORA/data/something/frames/203910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tea infuser into mug"}]} +{"id": "000000108792", "images": ["AURORA/data/something/frames/147513/first.jpg", "AURORA/data/something/frames/147513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping dental floss over"}]} +{"id": "000000108793", "images": ["AURORA/data/something/frames/167166/first.jpg", "AURORA/data/something/frames/167166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging nightlight into socket"}]} +{"id": "000000108794", "images": ["AURORA/data/something/frames/116821/first.jpg", "AURORA/data/something/frames/116821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a banana"}]} +{"id": "000000108795", "images": ["AURORA/data/something/frames/107752/first.jpg", "AURORA/data/something/frames/107752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending paper cilp so that it deforms"}]} +{"id": "000000108796", "images": ["AURORA/data/something/frames/117867/first.jpg", "AURORA/data/something/frames/117867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book"}]} +{"id": "000000108797", "images": ["AURORA/data/something/frames/144230/first.jpg", "AURORA/data/something/frames/144230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking snacks packet"}]} +{"id": "000000108798", "images": ["AURORA/data/something/frames/81228/first.jpg", "AURORA/data/something/frames/81228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a $20 bill onto a cigarette pack"}]} +{"id": "000000108799", "images": ["AURORA/data/something/frames/161987/first.jpg", "AURORA/data/something/frames/161987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book out of shelves"}]} +{"id": "000000108800", "images": ["AURORA/data/something/frames/93214/first.jpg", "AURORA/data/something/frames/93214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000108801", "images": ["AURORA/data/something/frames/81620/first.jpg", "AURORA/data/something/frames/81620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy and cylinder so they pass each other"}]} +{"id": "000000108802", "images": ["AURORA/data/something/frames/76638/first.jpg", "AURORA/data/something/frames/76638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying egg in salt"}]} +{"id": "000000108803", "images": ["AURORA/data/something/frames/86966/first.jpg", "AURORA/data/something/frames/86966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle into glas"}]} +{"id": "000000108804", "images": ["AURORA/data/something/frames/123821/first.jpg", "AURORA/data/something/frames/123821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming traffic light"}]} +{"id": "000000108805", "images": ["AURORA/data/something/frames/67477/first.jpg", "AURORA/data/something/frames/67477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping green bowl in front of red pouch"}]} +{"id": "000000108806", "images": ["AURORA/data/something/frames/174556/first.jpg", "AURORA/data/something/frames/174556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000108807", "images": ["AURORA/data/something/frames/143298/first.jpg", "AURORA/data/something/frames/143298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with a pen on it"}]} +{"id": "000000108808", "images": ["AURORA/data/something/frames/74824/first.jpg", "AURORA/data/something/frames/74824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping onion onto bucket"}]} +{"id": "000000108809", "images": ["AURORA/data/something/frames/149791/first.jpg", "AURORA/data/something/frames/149791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ball and another ball closer to each other"}]} +{"id": "000000108810", "images": ["AURORA/data/something/frames/61119/first.jpg", "AURORA/data/something/frames/61119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a plug extender but pulling it right out as you remove your hand"}]} +{"id": "000000108811", "images": ["AURORA/data/something/frames/27550/first.jpg", "AURORA/data/something/frames/27550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with cup on it"}]} +{"id": "000000108812", "images": ["AURORA/data/something/frames/60604/first.jpg", "AURORA/data/something/frames/60604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling dvds up"}]} +{"id": "000000108813", "images": ["AURORA/data/something/frames/100780/first.jpg", "AURORA/data/something/frames/100780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000108814", "images": ["AURORA/data/something/frames/122748/first.jpg", "AURORA/data/something/frames/122748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing dvd case from right to left"}]} +{"id": "000000108815", "images": ["AURORA/data/something/frames/20245/first.jpg", "AURORA/data/something/frames/20245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into butter"}]} +{"id": "000000108816", "images": ["AURORA/data/something/frames/103066/first.jpg", "AURORA/data/something/frames/103066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping crayon off of whiteboard"}]} +{"id": "000000108817", "images": ["AURORA/data/something/frames/117558/first.jpg", "AURORA/data/something/frames/117558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cereal box over"}]} +{"id": "000000108818", "images": ["AURORA/data/something/frames/213468/first.jpg", "AURORA/data/something/frames/213468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottle out of cup"}]} +{"id": "000000108819", "images": ["AURORA/data/something/frames/21906/first.jpg", "AURORA/data/something/frames/21906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mineral water"}]} +{"id": "000000108820", "images": ["AURORA/data/something/frames/145729/first.jpg", "AURORA/data/something/frames/145729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch down"}]} +{"id": "000000108821", "images": ["AURORA/data/something/frames/185497/first.jpg", "AURORA/data/something/frames/185497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shampoo bottler onto paperboard so it falls down"}]} +{"id": "000000108822", "images": ["AURORA/data/something/frames/142438/first.jpg", "AURORA/data/something/frames/142438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving backpack down"}]} +{"id": "000000108823", "images": ["AURORA/data/something/frames/108718/first.jpg", "AURORA/data/something/frames/108718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing brown paper just a little bit"}]} +{"id": "000000108824", "images": ["AURORA/data/something/frames/90272/first.jpg", "AURORA/data/something/frames/90272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cup up completely without letting it drop down"}]} +{"id": "000000108825", "images": ["AURORA/data/something/frames/94933/first.jpg", "AURORA/data/something/frames/94933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning spray bottle upside down"}]} +{"id": "000000108826", "images": ["AURORA/data/something/frames/211620/first.jpg", "AURORA/data/something/frames/211620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking strawberry out of bowl"}]} +{"id": "000000108827", "images": ["AURORA/data/something/frames/70593/first.jpg", "AURORA/data/something/frames/70593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000108828", "images": ["AURORA/data/something/frames/86949/first.jpg", "AURORA/data/something/frames/86949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108829", "images": ["AURORA/data/something/frames/1056/first.jpg", "AURORA/data/something/frames/1056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 toy cars"}]} +{"id": "000000108830", "images": ["AURORA/data/something/frames/133612/first.jpg", "AURORA/data/something/frames/133612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying glue stick on the table on its side, not upright"}]} +{"id": "000000108831", "images": ["AURORA/data/something/frames/24388/first.jpg", "AURORA/data/something/frames/24388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mug and another mug closer to each other"}]} +{"id": "000000108832", "images": ["AURORA/data/something/frames/164578/first.jpg", "AURORA/data/something/frames/164578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108833", "images": ["AURORA/data/something/frames/96267/first.jpg", "AURORA/data/something/frames/96267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking toffee eclairs from jar"}]} +{"id": "000000108834", "images": ["AURORA/data/something/frames/94783/first.jpg", "AURORA/data/something/frames/94783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug"}]} +{"id": "000000108835", "images": ["AURORA/data/something/frames/171329/first.jpg", "AURORA/data/something/frames/171329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto bowl"}]} +{"id": "000000108836", "images": ["AURORA/data/something/frames/25252/first.jpg", "AURORA/data/something/frames/25252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming toothpaste tube"}]} +{"id": "000000108837", "images": ["AURORA/data/something/frames/18971/first.jpg", "AURORA/data/something/frames/18971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing car door"}]} +{"id": "000000108838", "images": ["AURORA/data/something/frames/145061/first.jpg", "AURORA/data/something/frames/145061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling blinds from right to left"}]} +{"id": "000000108839", "images": ["AURORA/data/something/frames/131427/first.jpg", "AURORA/data/something/frames/131427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book next to book"}]} +{"id": "000000108840", "images": ["AURORA/data/something/frames/9462/first.jpg", "AURORA/data/something/frames/9462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping an alarm clock onto a bed"}]} +{"id": "000000108841", "images": ["AURORA/data/something/frames/16212/first.jpg", "AURORA/data/something/frames/16212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses next to remote control"}]} +{"id": "000000108842", "images": ["AURORA/data/something/frames/40301/first.jpg", "AURORA/data/something/frames/40301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys into bag"}]} +{"id": "000000108843", "images": ["AURORA/data/something/frames/128199/first.jpg", "AURORA/data/something/frames/128199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a marker upside down"}]} +{"id": "000000108844", "images": ["AURORA/data/something/frames/93339/first.jpg", "AURORA/data/something/frames/93339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup away from stapler"}]} +{"id": "000000108845", "images": ["AURORA/data/something/frames/101158/first.jpg", "AURORA/data/something/frames/101158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning red pot holder upside down"}]} +{"id": "000000108846", "images": ["AURORA/data/something/frames/97002/first.jpg", "AURORA/data/something/frames/97002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming snacks packets"}]} +{"id": "000000108847", "images": ["AURORA/data/something/frames/49914/first.jpg", "AURORA/data/something/frames/49914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending bulb syringe so that it deforms"}]} +{"id": "000000108848", "images": ["AURORA/data/something/frames/207257/first.jpg", "AURORA/data/something/frames/207257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling soft elmo from left to right"}]} +{"id": "000000108849", "images": ["AURORA/data/something/frames/106257/first.jpg", "AURORA/data/something/frames/106257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cucumber next to lemon"}]} +{"id": "000000108850", "images": ["AURORA/data/something/frames/43492/first.jpg", "AURORA/data/something/frames/43492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glue bottle closer to camera"}]} +{"id": "000000108851", "images": ["AURORA/data/something/frames/84175/first.jpg", "AURORA/data/something/frames/84175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto a glass"}]} +{"id": "000000108852", "images": ["AURORA/data/something/frames/165145/first.jpg", "AURORA/data/something/frames/165145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic jar onto stopper so it falls down"}]} +{"id": "000000108853", "images": ["AURORA/data/something/frames/178022/first.jpg", "AURORA/data/something/frames/178022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something so that it almost falls off but doesn't"}]} +{"id": "000000108854", "images": ["AURORA/data/something/frames/43117/first.jpg", "AURORA/data/something/frames/43117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cloth out of plastic container"}]} +{"id": "000000108855", "images": ["AURORA/data/something/frames/143297/first.jpg", "AURORA/data/something/frames/143297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a dvd away from a mug"}]} +{"id": "000000108856", "images": ["AURORA/data/something/frames/43849/first.jpg", "AURORA/data/something/frames/43849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a toothbrush"}]} +{"id": "000000108857", "images": ["AURORA/data/something/frames/62853/first.jpg", "AURORA/data/something/frames/62853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging kettle into socket"}]} +{"id": "000000108858", "images": ["AURORA/data/something/frames/4163/first.jpg", "AURORA/data/something/frames/4163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a polythene cover just a little bit"}]} +{"id": "000000108859", "images": ["AURORA/data/something/frames/175597/first.jpg", "AURORA/data/something/frames/175597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar of vitamins"}]} +{"id": "000000108860", "images": ["AURORA/data/something/frames/28130/first.jpg", "AURORA/data/something/frames/28130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 ping pong balls"}]} +{"id": "000000108861", "images": ["AURORA/data/something/frames/38038/first.jpg", "AURORA/data/something/frames/38038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108862", "images": ["AURORA/data/something/frames/130097/first.jpg", "AURORA/data/something/frames/130097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box from right to left"}]} +{"id": "000000108863", "images": ["AURORA/data/something/frames/16660/first.jpg", "AURORA/data/something/frames/16660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying glass on the table on its side, not upright"}]} +{"id": "000000108864", "images": ["AURORA/data/something/frames/33392/first.jpg", "AURORA/data/something/frames/33392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding news paper"}]} +{"id": "000000108865", "images": ["AURORA/data/something/frames/94406/first.jpg", "AURORA/data/something/frames/94406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book, box, bam..etc into table"}]} +{"id": "000000108866", "images": ["AURORA/data/something/frames/83769/first.jpg", "AURORA/data/something/frames/83769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing supplement bottle from right to left"}]} +{"id": "000000108867", "images": ["AURORA/data/something/frames/108787/first.jpg", "AURORA/data/something/frames/108787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling yellow container from left to right"}]} +{"id": "000000108868", "images": ["AURORA/data/something/frames/174198/first.jpg", "AURORA/data/something/frames/174198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar into box"}]} +{"id": "000000108869", "images": ["AURORA/data/something/frames/142549/first.jpg", "AURORA/data/something/frames/142549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming colorful scarf"}]} +{"id": "000000108870", "images": ["AURORA/data/something/frames/173320/first.jpg", "AURORA/data/something/frames/173320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching pink toothbrush case with your camera"}]} +{"id": "000000108871", "images": ["AURORA/data/something/frames/198240/first.jpg", "AURORA/data/something/frames/198240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cracker until it breaks"}]} +{"id": "000000108872", "images": ["AURORA/data/something/frames/147919/first.jpg", "AURORA/data/something/frames/147919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a sharpener into a pencil case"}]} +{"id": "000000108873", "images": ["AURORA/data/something/frames/40642/first.jpg", "AURORA/data/something/frames/40642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering matchbox with box cap"}]} +{"id": "000000108874", "images": ["AURORA/data/something/frames/134574/first.jpg", "AURORA/data/something/frames/134574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet so that it almost falls off but doesn't"}]} +{"id": "000000108875", "images": ["AURORA/data/something/frames/213036/first.jpg", "AURORA/data/something/frames/213036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000108876", "images": ["AURORA/data/something/frames/148805/first.jpg", "AURORA/data/something/frames/148805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a candle"}]} +{"id": "000000108877", "images": ["AURORA/data/something/frames/24316/first.jpg", "AURORA/data/something/frames/24316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving card up"}]} +{"id": "000000108878", "images": ["AURORA/data/something/frames/152618/first.jpg", "AURORA/data/something/frames/152618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking water"}]} +{"id": "000000108879", "images": ["AURORA/data/something/frames/103796/first.jpg", "AURORA/data/something/frames/103796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book next to chair"}]} +{"id": "000000108880", "images": ["AURORA/data/something/frames/193311/first.jpg", "AURORA/data/something/frames/193311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cucumber up"}]} +{"id": "000000108881", "images": ["AURORA/data/something/frames/93270/first.jpg", "AURORA/data/something/frames/93270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a small jar and a small jar away from each other"}]} +{"id": "000000108882", "images": ["AURORA/data/something/frames/164342/first.jpg", "AURORA/data/something/frames/164342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening hand bag"}]} +{"id": "000000108883", "images": ["AURORA/data/something/frames/216550/first.jpg", "AURORA/data/something/frames/216550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black umbrella from left to right"}]} +{"id": "000000108884", "images": ["AURORA/data/something/frames/75233/first.jpg", "AURORA/data/something/frames/75233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving striker coin up"}]} +{"id": "000000108885", "images": ["AURORA/data/something/frames/161627/first.jpg", "AURORA/data/something/frames/161627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toothbrush onto an envelope"}]} +{"id": "000000108886", "images": ["AURORA/data/something/frames/115503/first.jpg", "AURORA/data/something/frames/115503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with pen on it"}]} +{"id": "000000108887", "images": ["AURORA/data/something/frames/102189/first.jpg", "AURORA/data/something/frames/102189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting striker coin next to white board clip"}]} +{"id": "000000108888", "images": ["AURORA/data/something/frames/109858/first.jpg", "AURORA/data/something/frames/109858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy behind toy watch"}]} +{"id": "000000108889", "images": ["AURORA/data/something/frames/67581/first.jpg", "AURORA/data/something/frames/67581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pen being deflected from calculator cover"}]} +{"id": "000000108890", "images": ["AURORA/data/something/frames/42753/first.jpg", "AURORA/data/something/frames/42753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a scooter over"}]} +{"id": "000000108891", "images": ["AURORA/data/something/frames/243/first.jpg", "AURORA/data/something/frames/243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000108892", "images": ["AURORA/data/something/frames/134896/first.jpg", "AURORA/data/something/frames/134896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box down"}]} +{"id": "000000108893", "images": ["AURORA/data/something/frames/135745/first.jpg", "AURORA/data/something/frames/135745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a spoon so that it almost falls off but doesn't"}]} +{"id": "000000108894", "images": ["AURORA/data/something/frames/99866/first.jpg", "AURORA/data/something/frames/99866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000108895", "images": ["AURORA/data/something/frames/68449/first.jpg", "AURORA/data/something/frames/68449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting usb cable on a surface"}]} +{"id": "000000108896", "images": ["AURORA/data/something/frames/77861/first.jpg", "AURORA/data/something/frames/77861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a water bottle over"}]} +{"id": "000000108897", "images": ["AURORA/data/something/frames/51251/first.jpg", "AURORA/data/something/frames/51251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking wallet up"}]} +{"id": "000000108898", "images": ["AURORA/data/something/frames/132122/first.jpg", "AURORA/data/something/frames/132122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a plate"}]} +{"id": "000000108899", "images": ["AURORA/data/something/frames/156573/first.jpg", "AURORA/data/something/frames/156573/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping papertowel over"}]} +{"id": "000000108900", "images": ["AURORA/data/something/frames/41003/first.jpg", "AURORA/data/something/frames/41003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable down"}]} +{"id": "000000108901", "images": ["AURORA/data/something/frames/133719/first.jpg", "AURORA/data/something/frames/133719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling a cup of water onto the counter"}]} +{"id": "000000108902", "images": ["AURORA/data/something/frames/46610/first.jpg", "AURORA/data/something/frames/46610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candy bar on the edge of table so it is not supported and falls down"}]} +{"id": "000000108903", "images": ["AURORA/data/something/frames/80272/first.jpg", "AURORA/data/something/frames/80272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass behind flowers"}]} +{"id": "000000108904", "images": ["AURORA/data/something/frames/174923/first.jpg", "AURORA/data/something/frames/174923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cups from a table"}]} +{"id": "000000108905", "images": ["AURORA/data/something/frames/135948/first.jpg", "AURORA/data/something/frames/135948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a key with a note book"}]} +{"id": "000000108906", "images": ["AURORA/data/something/frames/216965/first.jpg", "AURORA/data/something/frames/216965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming rice cooker"}]} +{"id": "000000108907", "images": ["AURORA/data/something/frames/138102/first.jpg", "AURORA/data/something/frames/138102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting squeezable strawberry jam on a surface"}]} +{"id": "000000108908", "images": ["AURORA/data/something/frames/30162/first.jpg", "AURORA/data/something/frames/30162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle upright on the table"}]} +{"id": "000000108909", "images": ["AURORA/data/something/frames/210799/first.jpg", "AURORA/data/something/frames/210799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a sheet out of a box"}]} +{"id": "000000108910", "images": ["AURORA/data/something/frames/218522/first.jpg", "AURORA/data/something/frames/218522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cup into the sink"}]} +{"id": "000000108911", "images": ["AURORA/data/something/frames/79291/first.jpg", "AURORA/data/something/frames/79291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup closer to a mug"}]} +{"id": "000000108912", "images": ["AURORA/data/something/frames/97247/first.jpg", "AURORA/data/something/frames/97247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tumbler"}]} +{"id": "000000108913", "images": ["AURORA/data/something/frames/38152/first.jpg", "AURORA/data/something/frames/38152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a peanut can with a pringles can on it"}]} +{"id": "000000108914", "images": ["AURORA/data/something/frames/12954/first.jpg", "AURORA/data/something/frames/12954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing gift cover just a little bit"}]} +{"id": "000000108915", "images": ["AURORA/data/something/frames/142533/first.jpg", "AURORA/data/something/frames/142533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a fridge magnet upright on the table, so it falls on its side"}]} +{"id": "000000108916", "images": ["AURORA/data/something/frames/39937/first.jpg", "AURORA/data/something/frames/39937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin next to other coins on the table"}]} +{"id": "000000108917", "images": ["AURORA/data/something/frames/170459/first.jpg", "AURORA/data/something/frames/170459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coin into pen stand"}]} +{"id": "000000108918", "images": ["AURORA/data/something/frames/34120/first.jpg", "AURORA/data/something/frames/34120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone with pen"}]} +{"id": "000000108919", "images": ["AURORA/data/something/frames/195933/first.jpg", "AURORA/data/something/frames/195933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bowl"}]} +{"id": "000000108920", "images": ["AURORA/data/something/frames/42455/first.jpg", "AURORA/data/something/frames/42455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing yellow paper just a little bit"}]} +{"id": "000000108921", "images": ["AURORA/data/something/frames/181183/first.jpg", "AURORA/data/something/frames/181183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking lipstick out of a box"}]} +{"id": "000000108922", "images": ["AURORA/data/something/frames/172416/first.jpg", "AURORA/data/something/frames/172416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb cable into a desktop microphone"}]} +{"id": "000000108923", "images": ["AURORA/data/something/frames/22359/first.jpg", "AURORA/data/something/frames/22359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plush from left to right"}]} +{"id": "000000108924", "images": ["AURORA/data/something/frames/146754/first.jpg", "AURORA/data/something/frames/146754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cord into a socket but pulling it right out as you remove your hand"}]} +{"id": "000000108925", "images": ["AURORA/data/something/frames/160596/first.jpg", "AURORA/data/something/frames/160596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup and hitting another cup so they collide with each other"}]} +{"id": "000000108926", "images": ["AURORA/data/something/frames/200199/first.jpg", "AURORA/data/something/frames/200199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pants into a drawer"}]} +{"id": "000000108927", "images": ["AURORA/data/something/frames/34833/first.jpg", "AURORA/data/something/frames/34833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper into two pieces"}]} +{"id": "000000108928", "images": ["AURORA/data/something/frames/152539/first.jpg", "AURORA/data/something/frames/152539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying globe toy on the table on its side, not upright"}]} +{"id": "000000108929", "images": ["AURORA/data/something/frames/44181/first.jpg", "AURORA/data/something/frames/44181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000108930", "images": ["AURORA/data/something/frames/18454/first.jpg", "AURORA/data/something/frames/18454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into a cup, but missing so it spills next to it"}]} +{"id": "000000108931", "images": ["AURORA/data/something/frames/193554/first.jpg", "AURORA/data/something/frames/193554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling marker from behind of laptop"}]} +{"id": "000000108932", "images": ["AURORA/data/something/frames/39486/first.jpg", "AURORA/data/something/frames/39486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) towel wet until water comes out"}]} +{"id": "000000108933", "images": ["AURORA/data/something/frames/171804/first.jpg", "AURORA/data/something/frames/171804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing packaging handkerchiefs off of table"}]} +{"id": "000000108934", "images": ["AURORA/data/something/frames/59078/first.jpg", "AURORA/data/something/frames/59078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000108935", "images": ["AURORA/data/something/frames/127072/first.jpg", "AURORA/data/something/frames/127072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending lid so that it deforms"}]} +{"id": "000000108936", "images": ["AURORA/data/something/frames/220290/first.jpg", "AURORA/data/something/frames/220290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing refrigerator"}]} +{"id": "000000108937", "images": ["AURORA/data/something/frames/165011/first.jpg", "AURORA/data/something/frames/165011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting coffee cup with spoon"}]} +{"id": "000000108938", "images": ["AURORA/data/something/frames/45510/first.jpg", "AURORA/data/something/frames/45510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking eggs out of a bowl"}]} +{"id": "000000108939", "images": ["AURORA/data/something/frames/71980/first.jpg", "AURORA/data/something/frames/71980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108940", "images": ["AURORA/data/something/frames/163353/first.jpg", "AURORA/data/something/frames/163353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000108941", "images": ["AURORA/data/something/frames/139447/first.jpg", "AURORA/data/something/frames/139447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing belt from right to left"}]} +{"id": "000000108942", "images": ["AURORA/data/something/frames/100279/first.jpg", "AURORA/data/something/frames/100279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000108943", "images": ["AURORA/data/something/frames/199979/first.jpg", "AURORA/data/something/frames/199979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing glasses into case"}]} +{"id": "000000108944", "images": ["AURORA/data/something/frames/79793/first.jpg", "AURORA/data/something/frames/79793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: something colliding with something and both come to a halt"}]} +{"id": "000000108945", "images": ["AURORA/data/something/frames/57831/first.jpg", "AURORA/data/something/frames/57831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning aim toothpaste upside down"}]} +{"id": "000000108946", "images": ["AURORA/data/something/frames/202308/first.jpg", "AURORA/data/something/frames/202308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen drive down"}]} +{"id": "000000108947", "images": ["AURORA/data/something/frames/91037/first.jpg", "AURORA/data/something/frames/91037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork upright on the table, so it falls on its side"}]} +{"id": "000000108948", "images": ["AURORA/data/something/frames/132863/first.jpg", "AURORA/data/something/frames/132863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a plant"}]} +{"id": "000000108949", "images": ["AURORA/data/something/frames/134426/first.jpg", "AURORA/data/something/frames/134426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cellphone upside down"}]} +{"id": "000000108950", "images": ["AURORA/data/something/frames/157009/first.jpg", "AURORA/data/something/frames/157009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to watch"}]} +{"id": "000000108951", "images": ["AURORA/data/something/frames/60951/first.jpg", "AURORA/data/something/frames/60951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cloth just a little bit"}]} +{"id": "000000108952", "images": ["AURORA/data/something/frames/133456/first.jpg", "AURORA/data/something/frames/133456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scissors off of a box"}]} +{"id": "000000108953", "images": ["AURORA/data/something/frames/43980/first.jpg", "AURORA/data/something/frames/43980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 books"}]} +{"id": "000000108954", "images": ["AURORA/data/something/frames/186794/first.jpg", "AURORA/data/something/frames/186794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing crayon with crayon"}]} +{"id": "000000108955", "images": ["AURORA/data/something/frames/212126/first.jpg", "AURORA/data/something/frames/212126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a water bottle onto the floor"}]} +{"id": "000000108956", "images": ["AURORA/data/something/frames/212147/first.jpg", "AURORA/data/something/frames/212147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book near other books"}]} +{"id": "000000108957", "images": ["AURORA/data/something/frames/136541/first.jpg", "AURORA/data/something/frames/136541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108958", "images": ["AURORA/data/something/frames/163786/first.jpg", "AURORA/data/something/frames/163786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from sardine fishes with your camera"}]} +{"id": "000000108959", "images": ["AURORA/data/something/frames/184693/first.jpg", "AURORA/data/something/frames/184693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a wallet in front of a peg"}]} +{"id": "000000108960", "images": ["AURORA/data/something/frames/198752/first.jpg", "AURORA/data/something/frames/198752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book"}]} +{"id": "000000108961", "images": ["AURORA/data/something/frames/185685/first.jpg", "AURORA/data/something/frames/185685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping animal feed up with container"}]} +{"id": "000000108962", "images": ["AURORA/data/something/frames/190654/first.jpg", "AURORA/data/something/frames/190654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a towel"}]} +{"id": "000000108963", "images": ["AURORA/data/something/frames/137367/first.jpg", "AURORA/data/something/frames/137367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000108964", "images": ["AURORA/data/something/frames/8727/first.jpg", "AURORA/data/something/frames/8727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball colliding with pen and both are being deflected"}]} +{"id": "000000108965", "images": ["AURORA/data/something/frames/121345/first.jpg", "AURORA/data/something/frames/121345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching water pipe with your camera"}]} +{"id": "000000108966", "images": ["AURORA/data/something/frames/217024/first.jpg", "AURORA/data/something/frames/217024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of cotton so that it gets stretched"}]} +{"id": "000000108967", "images": ["AURORA/data/something/frames/42680/first.jpg", "AURORA/data/something/frames/42680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting inhaler"}]} +{"id": "000000108968", "images": ["AURORA/data/something/frames/8521/first.jpg", "AURORA/data/something/frames/8521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging lamp into outlet"}]} +{"id": "000000108969", "images": ["AURORA/data/something/frames/209341/first.jpg", "AURORA/data/something/frames/209341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an apple onto a plate"}]} +{"id": "000000108970", "images": ["AURORA/data/something/frames/98052/first.jpg", "AURORA/data/something/frames/98052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000108971", "images": ["AURORA/data/something/frames/80258/first.jpg", "AURORA/data/something/frames/80258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar behind box"}]} +{"id": "000000108972", "images": ["AURORA/data/something/frames/51935/first.jpg", "AURORA/data/something/frames/51935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a cloth"}]} +{"id": "000000108973", "images": ["AURORA/data/something/frames/175806/first.jpg", "AURORA/data/something/frames/175806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering clock"}]} +{"id": "000000108974", "images": ["AURORA/data/something/frames/198351/first.jpg", "AURORA/data/something/frames/198351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pencil box colliding with anothe box and both come to a halt"}]} +{"id": "000000108975", "images": ["AURORA/data/something/frames/149009/first.jpg", "AURORA/data/something/frames/149009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with box on it but not enough for it to slide down"}]} +{"id": "000000108976", "images": ["AURORA/data/something/frames/56887/first.jpg", "AURORA/data/something/frames/56887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white board clip away from green toy car"}]} +{"id": "000000108977", "images": ["AURORA/data/something/frames/180388/first.jpg", "AURORA/data/something/frames/180388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an extension cord"}]} +{"id": "000000108978", "images": ["AURORA/data/something/frames/149450/first.jpg", "AURORA/data/something/frames/149450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping biscuit packet into plate"}]} +{"id": "000000108979", "images": ["AURORA/data/something/frames/8067/first.jpg", "AURORA/data/something/frames/8067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wallet colliding with wallet and both come to a halt"}]} +{"id": "000000108980", "images": ["AURORA/data/something/frames/118461/first.jpg", "AURORA/data/something/frames/118461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing pendrive behind"}]} +{"id": "000000108981", "images": ["AURORA/data/something/frames/61093/first.jpg", "AURORA/data/something/frames/61093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cloth onto apple"}]} +{"id": "000000108982", "images": ["AURORA/data/something/frames/102982/first.jpg", "AURORA/data/something/frames/102982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bowl with spoon"}]} +{"id": "000000108983", "images": ["AURORA/data/something/frames/84145/first.jpg", "AURORA/data/something/frames/84145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power adapter into wall outlet"}]} +{"id": "000000108984", "images": ["AURORA/data/something/frames/67640/first.jpg", "AURORA/data/something/frames/67640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hat from right to left"}]} +{"id": "000000108985", "images": ["AURORA/data/something/frames/66915/first.jpg", "AURORA/data/something/frames/66915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cupcake case from left to right"}]} +{"id": "000000108986", "images": ["AURORA/data/something/frames/8806/first.jpg", "AURORA/data/something/frames/8806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a play block from a group of play blocks"}]} +{"id": "000000108987", "images": ["AURORA/data/something/frames/119998/first.jpg", "AURORA/data/something/frames/119998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a container"}]} +{"id": "000000108988", "images": ["AURORA/data/something/frames/6216/first.jpg", "AURORA/data/something/frames/6216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching wireless mouse with your camera"}]} +{"id": "000000108989", "images": ["AURORA/data/something/frames/200105/first.jpg", "AURORA/data/something/frames/200105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking yogurt so that it falls over"}]} +{"id": "000000108990", "images": ["AURORA/data/something/frames/169768/first.jpg", "AURORA/data/something/frames/169768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ink bottle and toy globe on the table"}]} +{"id": "000000108991", "images": ["AURORA/data/something/frames/111483/first.jpg", "AURORA/data/something/frames/111483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving match box and a nail polish bottle away from each other"}]} +{"id": "000000108992", "images": ["AURORA/data/something/frames/205828/first.jpg", "AURORA/data/something/frames/205828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tipex-maus up"}]} +{"id": "000000108993", "images": ["AURORA/data/something/frames/218695/first.jpg", "AURORA/data/something/frames/218695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing one face mask from left to right"}]} +{"id": "000000108994", "images": ["AURORA/data/something/frames/5693/first.jpg", "AURORA/data/something/frames/5693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving container and container so they pass each other"}]} +{"id": "000000108995", "images": ["AURORA/data/something/frames/187174/first.jpg", "AURORA/data/something/frames/187174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching sticky note to box"}]} +{"id": "000000108996", "images": ["AURORA/data/something/frames/188939/first.jpg", "AURORA/data/something/frames/188939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking onion"}]} +{"id": "000000108997", "images": ["AURORA/data/something/frames/90365/first.jpg", "AURORA/data/something/frames/90365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking lemon out of the bowl"}]} +{"id": "000000108998", "images": ["AURORA/data/something/frames/131264/first.jpg", "AURORA/data/something/frames/131264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking books"}]} +{"id": "000000108999", "images": ["AURORA/data/something/frames/173234/first.jpg", "AURORA/data/something/frames/173234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook and pen on the table"}]} +{"id": "000000109000", "images": ["AURORA/data/something/frames/220768/first.jpg", "AURORA/data/something/frames/220768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping tumbler with water over, so water falls out"}]} +{"id": "000000109001", "images": ["AURORA/data/something/frames/118320/first.jpg", "AURORA/data/something/frames/118320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with box on it"}]} +{"id": "000000109002", "images": ["AURORA/data/something/frames/93258/first.jpg", "AURORA/data/something/frames/93258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a drawer with a hanger"}]} +{"id": "000000109003", "images": ["AURORA/data/something/frames/162797/first.jpg", "AURORA/data/something/frames/162797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a matchbox closer to a plate"}]} +{"id": "000000109004", "images": ["AURORA/data/something/frames/156105/first.jpg", "AURORA/data/something/frames/156105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting crayon onto lid"}]} +{"id": "000000109005", "images": ["AURORA/data/something/frames/174605/first.jpg", "AURORA/data/something/frames/174605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking spoon up"}]} +{"id": "000000109006", "images": ["AURORA/data/something/frames/60238/first.jpg", "AURORA/data/something/frames/60238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling matches from left to right"}]} +{"id": "000000109007", "images": ["AURORA/data/something/frames/78492/first.jpg", "AURORA/data/something/frames/78492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power plug into electric socket"}]} +{"id": "000000109008", "images": ["AURORA/data/something/frames/132348/first.jpg", "AURORA/data/something/frames/132348/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening wallet"}]} +{"id": "000000109009", "images": ["AURORA/data/something/frames/43582/first.jpg", "AURORA/data/something/frames/43582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys behind a cup"}]} +{"id": "000000109010", "images": ["AURORA/data/something/frames/30540/first.jpg", "AURORA/data/something/frames/30540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a candle with a lighter on it"}]} +{"id": "000000109011", "images": ["AURORA/data/something/frames/155260/first.jpg", "AURORA/data/something/frames/155260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a pitcher"}]} +{"id": "000000109012", "images": ["AURORA/data/something/frames/168107/first.jpg", "AURORA/data/something/frames/168107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000109013", "images": ["AURORA/data/something/frames/47072/first.jpg", "AURORA/data/something/frames/47072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cup from behind of cup"}]} +{"id": "000000109014", "images": ["AURORA/data/something/frames/101132/first.jpg", "AURORA/data/something/frames/101132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle on the table on its side, not upright"}]} +{"id": "000000109015", "images": ["AURORA/data/something/frames/107128/first.jpg", "AURORA/data/something/frames/107128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pillow up"}]} +{"id": "000000109016", "images": ["AURORA/data/something/frames/79933/first.jpg", "AURORA/data/something/frames/79933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering baloon with beanie"}]} +{"id": "000000109017", "images": ["AURORA/data/something/frames/69479/first.jpg", "AURORA/data/something/frames/69479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting remote up completely without letting it drop down"}]} +{"id": "000000109018", "images": ["AURORA/data/something/frames/109579/first.jpg", "AURORA/data/something/frames/109579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchstick behind a ball"}]} +{"id": "000000109019", "images": ["AURORA/data/something/frames/53410/first.jpg", "AURORA/data/something/frames/53410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto carpet"}]} +{"id": "000000109020", "images": ["AURORA/data/something/frames/19814/first.jpg", "AURORA/data/something/frames/19814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a tissue out of a box"}]} +{"id": "000000109021", "images": ["AURORA/data/something/frames/174542/first.jpg", "AURORA/data/something/frames/174542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissor, adapter and usb light on the table"}]} +{"id": "000000109022", "images": ["AURORA/data/something/frames/62822/first.jpg", "AURORA/data/something/frames/62822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing ruler behind"}]} +{"id": "000000109023", "images": ["AURORA/data/something/frames/19690/first.jpg", "AURORA/data/something/frames/19690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109024", "images": ["AURORA/data/something/frames/3478/first.jpg", "AURORA/data/something/frames/3478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keys up"}]} +{"id": "000000109025", "images": ["AURORA/data/something/frames/189646/first.jpg", "AURORA/data/something/frames/189646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tangerine to group of tangerines"}]} +{"id": "000000109026", "images": ["AURORA/data/something/frames/191791/first.jpg", "AURORA/data/something/frames/191791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000109027", "images": ["AURORA/data/something/frames/44574/first.jpg", "AURORA/data/something/frames/44574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a lightning cable to a power adapter"}]} +{"id": "000000109028", "images": ["AURORA/data/something/frames/146689/first.jpg", "AURORA/data/something/frames/146689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000109029", "images": ["AURORA/data/something/frames/68053/first.jpg", "AURORA/data/something/frames/68053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle onto kendama"}]} +{"id": "000000109030", "images": ["AURORA/data/something/frames/100418/first.jpg", "AURORA/data/something/frames/100418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a pencil"}]} +{"id": "000000109031", "images": ["AURORA/data/something/frames/139190/first.jpg", "AURORA/data/something/frames/139190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming bottle"}]} +{"id": "000000109032", "images": ["AURORA/data/something/frames/128319/first.jpg", "AURORA/data/something/frames/128319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing usb cable into bucket"}]} +{"id": "000000109033", "images": ["AURORA/data/something/frames/169676/first.jpg", "AURORA/data/something/frames/169676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bin with a paper toilet"}]} +{"id": "000000109034", "images": ["AURORA/data/something/frames/106347/first.jpg", "AURORA/data/something/frames/106347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plastic glasses"}]} +{"id": "000000109035", "images": ["AURORA/data/something/frames/38481/first.jpg", "AURORA/data/something/frames/38481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a book with another book"}]} +{"id": "000000109036", "images": ["AURORA/data/something/frames/44366/first.jpg", "AURORA/data/something/frames/44366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of clock without letting it drop down"}]} +{"id": "000000109037", "images": ["AURORA/data/something/frames/8414/first.jpg", "AURORA/data/something/frames/8414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble into glass"}]} +{"id": "000000109038", "images": ["AURORA/data/something/frames/142638/first.jpg", "AURORA/data/something/frames/142638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing can from right to left"}]} +{"id": "000000109039", "images": ["AURORA/data/something/frames/112031/first.jpg", "AURORA/data/something/frames/112031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering ball with newspaper"}]} +{"id": "000000109040", "images": ["AURORA/data/something/frames/8518/first.jpg", "AURORA/data/something/frames/8518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing keys behind"}]} +{"id": "000000109041", "images": ["AURORA/data/something/frames/106711/first.jpg", "AURORA/data/something/frames/106711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto diary"}]} +{"id": "000000109042", "images": ["AURORA/data/something/frames/125726/first.jpg", "AURORA/data/something/frames/125726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger up"}]} +{"id": "000000109043", "images": ["AURORA/data/something/frames/77634/first.jpg", "AURORA/data/something/frames/77634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an electrical plug into an electrical outlet"}]} +{"id": "000000109044", "images": ["AURORA/data/something/frames/164800/first.jpg", "AURORA/data/something/frames/164800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping spatula next to pan"}]} +{"id": "000000109045", "images": ["AURORA/data/something/frames/75034/first.jpg", "AURORA/data/something/frames/75034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing calculator from right to left"}]} +{"id": "000000109046", "images": ["AURORA/data/something/frames/37108/first.jpg", "AURORA/data/something/frames/37108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a pepper grinder"}]} +{"id": "000000109047", "images": ["AURORA/data/something/frames/146281/first.jpg", "AURORA/data/something/frames/146281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen next to bottle"}]} +{"id": "000000109048", "images": ["AURORA/data/something/frames/23836/first.jpg", "AURORA/data/something/frames/23836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000109049", "images": ["AURORA/data/something/frames/95340/first.jpg", "AURORA/data/something/frames/95340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying an egg on the table on its side, not upright"}]} +{"id": "000000109050", "images": ["AURORA/data/something/frames/44683/first.jpg", "AURORA/data/something/frames/44683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from battery with your camera"}]} +{"id": "000000109051", "images": ["AURORA/data/something/frames/162135/first.jpg", "AURORA/data/something/frames/162135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming highlighter"}]} +{"id": "000000109052", "images": ["AURORA/data/something/frames/37190/first.jpg", "AURORA/data/something/frames/37190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candy on the edge of table so it is not supported and falls down"}]} +{"id": "000000109053", "images": ["AURORA/data/something/frames/203782/first.jpg", "AURORA/data/something/frames/203782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone next to pants"}]} +{"id": "000000109054", "images": ["AURORA/data/something/frames/85675/first.jpg", "AURORA/data/something/frames/85675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with bowl on it until it starts sliding down"}]} +{"id": "000000109055", "images": ["AURORA/data/something/frames/194649/first.jpg", "AURORA/data/something/frames/194649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a candle down"}]} +{"id": "000000109056", "images": ["AURORA/data/something/frames/525/first.jpg", "AURORA/data/something/frames/525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping candle in front of box"}]} +{"id": "000000109057", "images": ["AURORA/data/something/frames/49031/first.jpg", "AURORA/data/something/frames/49031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking apple corer"}]} +{"id": "000000109058", "images": ["AURORA/data/something/frames/43075/first.jpg", "AURORA/data/something/frames/43075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000109059", "images": ["AURORA/data/something/frames/93371/first.jpg", "AURORA/data/something/frames/93371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cassette into player"}]} +{"id": "000000109060", "images": ["AURORA/data/something/frames/25948/first.jpg", "AURORA/data/something/frames/25948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 4 books onto a plate"}]} +{"id": "000000109061", "images": ["AURORA/data/something/frames/139468/first.jpg", "AURORA/data/something/frames/139468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging chwrger into outlet"}]} +{"id": "000000109062", "images": ["AURORA/data/something/frames/27675/first.jpg", "AURORA/data/something/frames/27675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch towards the camera"}]} +{"id": "000000109063", "images": ["AURORA/data/something/frames/91942/first.jpg", "AURORA/data/something/frames/91942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bottle so that it falls over"}]} +{"id": "000000109064", "images": ["AURORA/data/something/frames/66458/first.jpg", "AURORA/data/something/frames/66458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000109065", "images": ["AURORA/data/something/frames/64664/first.jpg", "AURORA/data/something/frames/64664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bag"}]} +{"id": "000000109066", "images": ["AURORA/data/something/frames/110234/first.jpg", "AURORA/data/something/frames/110234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting green colour bowl up completely without letting it drop down"}]} +{"id": "000000109067", "images": ["AURORA/data/something/frames/35249/first.jpg", "AURORA/data/something/frames/35249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping torch next to shoe"}]} +{"id": "000000109068", "images": ["AURORA/data/something/frames/71829/first.jpg", "AURORA/data/something/frames/71829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying 3d postit on the table on its side, not upright"}]} +{"id": "000000109069", "images": ["AURORA/data/something/frames/136244/first.jpg", "AURORA/data/something/frames/136244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper knot out of glass"}]} +{"id": "000000109070", "images": ["AURORA/data/something/frames/207204/first.jpg", "AURORA/data/something/frames/207204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving microscope and coin away from each other"}]} +{"id": "000000109071", "images": ["AURORA/data/something/frames/67242/first.jpg", "AURORA/data/something/frames/67242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering box with cloth"}]} +{"id": "000000109072", "images": ["AURORA/data/something/frames/106378/first.jpg", "AURORA/data/something/frames/106378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000109073", "images": ["AURORA/data/something/frames/134678/first.jpg", "AURORA/data/something/frames/134678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000109074", "images": ["AURORA/data/something/frames/192168/first.jpg", "AURORA/data/something/frames/192168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing waterbottle"}]} +{"id": "000000109075", "images": ["AURORA/data/something/frames/100919/first.jpg", "AURORA/data/something/frames/100919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000109076", "images": ["AURORA/data/something/frames/122743/first.jpg", "AURORA/data/something/frames/122743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cup with a book"}]} +{"id": "000000109077", "images": ["AURORA/data/something/frames/97407/first.jpg", "AURORA/data/something/frames/97407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from water tape with your camera"}]} +{"id": "000000109078", "images": ["AURORA/data/something/frames/126852/first.jpg", "AURORA/data/something/frames/126852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a hairbrush from right to left"}]} +{"id": "000000109079", "images": ["AURORA/data/something/frames/201780/first.jpg", "AURORA/data/something/frames/201780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving magnet away from magnet"}]} +{"id": "000000109080", "images": ["AURORA/data/something/frames/179514/first.jpg", "AURORA/data/something/frames/179514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and phone closer to each other"}]} +{"id": "000000109081", "images": ["AURORA/data/something/frames/79288/first.jpg", "AURORA/data/something/frames/79288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting new papers"}]} +{"id": "000000109082", "images": ["AURORA/data/something/frames/151453/first.jpg", "AURORA/data/something/frames/151453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hairbands onto diary"}]} +{"id": "000000109083", "images": ["AURORA/data/something/frames/35222/first.jpg", "AURORA/data/something/frames/35222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing an envelope onto a lid"}]} +{"id": "000000109084", "images": ["AURORA/data/something/frames/3689/first.jpg", "AURORA/data/something/frames/3689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping soap off of floor"}]} +{"id": "000000109085", "images": ["AURORA/data/something/frames/26199/first.jpg", "AURORA/data/something/frames/26199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling candy mints up"}]} +{"id": "000000109086", "images": ["AURORA/data/something/frames/191525/first.jpg", "AURORA/data/something/frames/191525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000109087", "images": ["AURORA/data/something/frames/118077/first.jpg", "AURORA/data/something/frames/118077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into the wall"}]} +{"id": "000000109088", "images": ["AURORA/data/something/frames/68425/first.jpg", "AURORA/data/something/frames/68425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109089", "images": ["AURORA/data/something/frames/215010/first.jpg", "AURORA/data/something/frames/215010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lemon behind doll"}]} +{"id": "000000109090", "images": ["AURORA/data/something/frames/158485/first.jpg", "AURORA/data/something/frames/158485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser and pen away from each other"}]} +{"id": "000000109091", "images": ["AURORA/data/something/frames/210183/first.jpg", "AURORA/data/something/frames/210183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda into cup"}]} +{"id": "000000109092", "images": ["AURORA/data/something/frames/109456/first.jpg", "AURORA/data/something/frames/109456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring tea into a glass"}]} +{"id": "000000109093", "images": ["AURORA/data/something/frames/61941/first.jpg", "AURORA/data/something/frames/61941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109094", "images": ["AURORA/data/something/frames/66776/first.jpg", "AURORA/data/something/frames/66776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon up"}]} +{"id": "000000109095", "images": ["AURORA/data/something/frames/86490/first.jpg", "AURORA/data/something/frames/86490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bag away from floor"}]} +{"id": "000000109096", "images": ["AURORA/data/something/frames/116195/first.jpg", "AURORA/data/something/frames/116195/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a glasses case so that it almost falls off but doesn't"}]} +{"id": "000000109097", "images": ["AURORA/data/something/frames/197923/first.jpg", "AURORA/data/something/frames/197923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger up"}]} +{"id": "000000109098", "images": ["AURORA/data/something/frames/50709/first.jpg", "AURORA/data/something/frames/50709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging adaptor into plug"}]} +{"id": "000000109099", "images": ["AURORA/data/something/frames/77440/first.jpg", "AURORA/data/something/frames/77440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from right to left"}]} +{"id": "000000109100", "images": ["AURORA/data/something/frames/127304/first.jpg", "AURORA/data/something/frames/127304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting laptop with mobile phone on it"}]} +{"id": "000000109101", "images": ["AURORA/data/something/frames/51233/first.jpg", "AURORA/data/something/frames/51233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading sugar onto paper"}]} +{"id": "000000109102", "images": ["AURORA/data/something/frames/55263/first.jpg", "AURORA/data/something/frames/55263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing napkin into cup"}]} +{"id": "000000109103", "images": ["AURORA/data/something/frames/108444/first.jpg", "AURORA/data/something/frames/108444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter"}]} +{"id": "000000109104", "images": ["AURORA/data/something/frames/35962/first.jpg", "AURORA/data/something/frames/35962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening dishwasher"}]} +{"id": "000000109105", "images": ["AURORA/data/something/frames/188208/first.jpg", "AURORA/data/something/frames/188208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading choclate ice cream onto the bread"}]} +{"id": "000000109106", "images": ["AURORA/data/something/frames/141123/first.jpg", "AURORA/data/something/frames/141123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109107", "images": ["AURORA/data/something/frames/7288/first.jpg", "AURORA/data/something/frames/7288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking stapler out of cookie box"}]} +{"id": "000000109108", "images": ["AURORA/data/something/frames/27141/first.jpg", "AURORA/data/something/frames/27141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with paper"}]} +{"id": "000000109109", "images": ["AURORA/data/something/frames/17649/first.jpg", "AURORA/data/something/frames/17649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and glass closer to each other"}]} +{"id": "000000109110", "images": ["AURORA/data/something/frames/124332/first.jpg", "AURORA/data/something/frames/124332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and pencil closer to each other"}]} +{"id": "000000109111", "images": ["AURORA/data/something/frames/103213/first.jpg", "AURORA/data/something/frames/103213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109112", "images": ["AURORA/data/something/frames/76987/first.jpg", "AURORA/data/something/frames/76987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin behind a box"}]} +{"id": "000000109113", "images": ["AURORA/data/something/frames/182605/first.jpg", "AURORA/data/something/frames/182605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ereaser into cup"}]} +{"id": "000000109114", "images": ["AURORA/data/something/frames/26761/first.jpg", "AURORA/data/something/frames/26761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tissue box onto floor"}]} +{"id": "000000109115", "images": ["AURORA/data/something/frames/216172/first.jpg", "AURORA/data/something/frames/216172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming one tea light candle"}]} +{"id": "000000109116", "images": ["AURORA/data/something/frames/173729/first.jpg", "AURORA/data/something/frames/173729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting teacup on a surface"}]} +{"id": "000000109117", "images": ["AURORA/data/something/frames/59376/first.jpg", "AURORA/data/something/frames/59376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping card over"}]} +{"id": "000000109118", "images": ["AURORA/data/something/frames/115882/first.jpg", "AURORA/data/something/frames/115882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving camera away from dry erase board"}]} +{"id": "000000109119", "images": ["AURORA/data/something/frames/41439/first.jpg", "AURORA/data/something/frames/41439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109120", "images": ["AURORA/data/something/frames/142572/first.jpg", "AURORA/data/something/frames/142572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mouse on a surface"}]} +{"id": "000000109121", "images": ["AURORA/data/something/frames/201755/first.jpg", "AURORA/data/something/frames/201755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing smarthphone into container"}]} +{"id": "000000109122", "images": ["AURORA/data/something/frames/76070/first.jpg", "AURORA/data/something/frames/76070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a leaf just a little bit"}]} +{"id": "000000109123", "images": ["AURORA/data/something/frames/133389/first.jpg", "AURORA/data/something/frames/133389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a knife onto a plate"}]} +{"id": "000000109124", "images": ["AURORA/data/something/frames/24815/first.jpg", "AURORA/data/something/frames/24815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling glass from right to left"}]} +{"id": "000000109125", "images": ["AURORA/data/something/frames/202314/first.jpg", "AURORA/data/something/frames/202314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing aluminium foil into two pieces"}]} +{"id": "000000109126", "images": ["AURORA/data/something/frames/39687/first.jpg", "AURORA/data/something/frames/39687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping candle into box"}]} +{"id": "000000109127", "images": ["AURORA/data/something/frames/37129/first.jpg", "AURORA/data/something/frames/37129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb stick up"}]} +{"id": "000000109128", "images": ["AURORA/data/something/frames/28170/first.jpg", "AURORA/data/something/frames/28170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tv remote and baby spoon bottle so they pass each other"}]} +{"id": "000000109129", "images": ["AURORA/data/something/frames/181345/first.jpg", "AURORA/data/something/frames/181345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a short out of a sock"}]} +{"id": "000000109130", "images": ["AURORA/data/something/frames/24929/first.jpg", "AURORA/data/something/frames/24929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket but pulling it right out as you remove your hand"}]} +{"id": "000000109131", "images": ["AURORA/data/something/frames/63853/first.jpg", "AURORA/data/something/frames/63853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper up"}]} +{"id": "000000109132", "images": ["AURORA/data/something/frames/62102/first.jpg", "AURORA/data/something/frames/62102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a box from behind of a wall"}]} +{"id": "000000109133", "images": ["AURORA/data/something/frames/11178/first.jpg", "AURORA/data/something/frames/11178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into paper"}]} +{"id": "000000109134", "images": ["AURORA/data/something/frames/146986/first.jpg", "AURORA/data/something/frames/146986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a mouse"}]} +{"id": "000000109135", "images": ["AURORA/data/something/frames/147122/first.jpg", "AURORA/data/something/frames/147122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle with pen"}]} +{"id": "000000109136", "images": ["AURORA/data/something/frames/112391/first.jpg", "AURORA/data/something/frames/112391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into a cup"}]} +{"id": "000000109137", "images": ["AURORA/data/something/frames/68567/first.jpg", "AURORA/data/something/frames/68567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cup from behind of canister"}]} +{"id": "000000109138", "images": ["AURORA/data/something/frames/63756/first.jpg", "AURORA/data/something/frames/63756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable down"}]} +{"id": "000000109139", "images": ["AURORA/data/something/frames/110656/first.jpg", "AURORA/data/something/frames/110656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping jar over"}]} +{"id": "000000109140", "images": ["AURORA/data/something/frames/14379/first.jpg", "AURORA/data/something/frames/14379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering paper with paper"}]} +{"id": "000000109141", "images": ["AURORA/data/something/frames/96438/first.jpg", "AURORA/data/something/frames/96438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying a plug in a blanket"}]} +{"id": "000000109142", "images": ["AURORA/data/something/frames/47281/first.jpg", "AURORA/data/something/frames/47281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen closer to cup"}]} +{"id": "000000109143", "images": ["AURORA/data/something/frames/76735/first.jpg", "AURORA/data/something/frames/76735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending hanger until it breaks"}]} +{"id": "000000109144", "images": ["AURORA/data/something/frames/86224/first.jpg", "AURORA/data/something/frames/86224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting wash cloth"}]} +{"id": "000000109145", "images": ["AURORA/data/something/frames/132792/first.jpg", "AURORA/data/something/frames/132792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into glass"}]} +{"id": "000000109146", "images": ["AURORA/data/something/frames/64157/first.jpg", "AURORA/data/something/frames/64157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000109147", "images": ["AURORA/data/something/frames/87048/first.jpg", "AURORA/data/something/frames/87048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding dish cloth"}]} +{"id": "000000109148", "images": ["AURORA/data/something/frames/44374/first.jpg", "AURORA/data/something/frames/44374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing book"}]} +{"id": "000000109149", "images": ["AURORA/data/something/frames/37726/first.jpg", "AURORA/data/something/frames/37726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming plant"}]} +{"id": "000000109150", "images": ["AURORA/data/something/frames/126083/first.jpg", "AURORA/data/something/frames/126083/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking phone up"}]} +{"id": "000000109151", "images": ["AURORA/data/something/frames/168990/first.jpg", "AURORA/data/something/frames/168990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving teddy bear and stuffed toy closer to each other"}]} +{"id": "000000109152", "images": ["AURORA/data/something/frames/167011/first.jpg", "AURORA/data/something/frames/167011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into shoe"}]} +{"id": "000000109153", "images": ["AURORA/data/something/frames/58448/first.jpg", "AURORA/data/something/frames/58448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000109154", "images": ["AURORA/data/something/frames/157099/first.jpg", "AURORA/data/something/frames/157099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming toy giraffe"}]} +{"id": "000000109155", "images": ["AURORA/data/something/frames/203238/first.jpg", "AURORA/data/something/frames/203238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into battery but pulling it right out as you remove your hand"}]} +{"id": "000000109156", "images": ["AURORA/data/something/frames/165344/first.jpg", "AURORA/data/something/frames/165344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking blocks so that it falls over"}]} +{"id": "000000109157", "images": ["AURORA/data/something/frames/12301/first.jpg", "AURORA/data/something/frames/12301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottle"}]} +{"id": "000000109158", "images": ["AURORA/data/something/frames/30826/first.jpg", "AURORA/data/something/frames/30826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying black spectacle box on the table on its side, not upright"}]} +{"id": "000000109159", "images": ["AURORA/data/something/frames/85113/first.jpg", "AURORA/data/something/frames/85113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping suitcase up with hand"}]} +{"id": "000000109160", "images": ["AURORA/data/something/frames/193316/first.jpg", "AURORA/data/something/frames/193316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a binder clip out of a drawstring bag"}]} +{"id": "000000109161", "images": ["AURORA/data/something/frames/22079/first.jpg", "AURORA/data/something/frames/22079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote control on a surface"}]} +{"id": "000000109162", "images": ["AURORA/data/something/frames/218666/first.jpg", "AURORA/data/something/frames/218666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into port but pulling it right out as you remove your hand"}]} +{"id": "000000109163", "images": ["AURORA/data/something/frames/16629/first.jpg", "AURORA/data/something/frames/16629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109164", "images": ["AURORA/data/something/frames/210804/first.jpg", "AURORA/data/something/frames/210804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencils"}]} +{"id": "000000109165", "images": ["AURORA/data/something/frames/173393/first.jpg", "AURORA/data/something/frames/173393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pin onto a box"}]} +{"id": "000000109166", "images": ["AURORA/data/something/frames/134329/first.jpg", "AURORA/data/something/frames/134329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a jewellry box so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000109167", "images": ["AURORA/data/something/frames/38583/first.jpg", "AURORA/data/something/frames/38583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking orange post-it up"}]} +{"id": "000000109168", "images": ["AURORA/data/something/frames/198001/first.jpg", "AURORA/data/something/frames/198001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sellotape down"}]} +{"id": "000000109169", "images": ["AURORA/data/something/frames/90311/first.jpg", "AURORA/data/something/frames/90311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning orange cup upside down"}]} +{"id": "000000109170", "images": ["AURORA/data/something/frames/211788/first.jpg", "AURORA/data/something/frames/211788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a spoon with a cloth"}]} +{"id": "000000109171", "images": ["AURORA/data/something/frames/147302/first.jpg", "AURORA/data/something/frames/147302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering screwdriver with paper"}]} +{"id": "000000109172", "images": ["AURORA/data/something/frames/12303/first.jpg", "AURORA/data/something/frames/12303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wood next to pillow"}]} +{"id": "000000109173", "images": ["AURORA/data/something/frames/94351/first.jpg", "AURORA/data/something/frames/94351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering plastic tin with cloth"}]} +{"id": "000000109174", "images": ["AURORA/data/something/frames/22863/first.jpg", "AURORA/data/something/frames/22863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mobile down"}]} +{"id": "000000109175", "images": ["AURORA/data/something/frames/193773/first.jpg", "AURORA/data/something/frames/193773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a book upside down"}]} +{"id": "000000109176", "images": ["AURORA/data/something/frames/66676/first.jpg", "AURORA/data/something/frames/66676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting granola bar on a surface"}]} +{"id": "000000109177", "images": ["AURORA/data/something/frames/11960/first.jpg", "AURORA/data/something/frames/11960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mushroom lamp on a surface"}]} +{"id": "000000109178", "images": ["AURORA/data/something/frames/13824/first.jpg", "AURORA/data/something/frames/13824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet just a little bit"}]} +{"id": "000000109179", "images": ["AURORA/data/something/frames/19813/first.jpg", "AURORA/data/something/frames/19813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper"}]} +{"id": "000000109180", "images": ["AURORA/data/something/frames/113149/first.jpg", "AURORA/data/something/frames/113149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of colour pen so that it separates into two pieces"}]} +{"id": "000000109181", "images": ["AURORA/data/something/frames/24998/first.jpg", "AURORA/data/something/frames/24998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting can with ball on it"}]} +{"id": "000000109182", "images": ["AURORA/data/something/frames/70639/first.jpg", "AURORA/data/something/frames/70639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle on a surface"}]} +{"id": "000000109183", "images": ["AURORA/data/something/frames/38104/first.jpg", "AURORA/data/something/frames/38104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a shirt"}]} +{"id": "000000109184", "images": ["AURORA/data/something/frames/18512/first.jpg", "AURORA/data/something/frames/18512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 white board clips onto red pouch"}]} +{"id": "000000109185", "images": ["AURORA/data/something/frames/15688/first.jpg", "AURORA/data/something/frames/15688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into flask"}]} +{"id": "000000109186", "images": ["AURORA/data/something/frames/98583/first.jpg", "AURORA/data/something/frames/98583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000109187", "images": ["AURORA/data/something/frames/90782/first.jpg", "AURORA/data/something/frames/90782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000109188", "images": ["AURORA/data/something/frames/66960/first.jpg", "AURORA/data/something/frames/66960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000109189", "images": ["AURORA/data/something/frames/111010/first.jpg", "AURORA/data/something/frames/111010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen behind glass"}]} +{"id": "000000109190", "images": ["AURORA/data/something/frames/45257/first.jpg", "AURORA/data/something/frames/45257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a tissue box over"}]} +{"id": "000000109191", "images": ["AURORA/data/something/frames/93930/first.jpg", "AURORA/data/something/frames/93930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000109192", "images": ["AURORA/data/something/frames/177788/first.jpg", "AURORA/data/something/frames/177788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ruler and masking tape closer to each other"}]} +{"id": "000000109193", "images": ["AURORA/data/something/frames/214382/first.jpg", "AURORA/data/something/frames/214382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting lotion tube up completely without letting it drop down"}]} +{"id": "000000109194", "images": ["AURORA/data/something/frames/134760/first.jpg", "AURORA/data/something/frames/134760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting string into a jar"}]} +{"id": "000000109195", "images": ["AURORA/data/something/frames/28521/first.jpg", "AURORA/data/something/frames/28521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving black usb and silver usb closer to each other"}]} +{"id": "000000109196", "images": ["AURORA/data/something/frames/101339/first.jpg", "AURORA/data/something/frames/101339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors upright on the table, so it falls on its side"}]} +{"id": "000000109197", "images": ["AURORA/data/something/frames/131038/first.jpg", "AURORA/data/something/frames/131038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into glass cup, but missing so it spills next to it"}]} +{"id": "000000109198", "images": ["AURORA/data/something/frames/128519/first.jpg", "AURORA/data/something/frames/128519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four books"}]} +{"id": "000000109199", "images": ["AURORA/data/something/frames/116932/first.jpg", "AURORA/data/something/frames/116932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000109200", "images": ["AURORA/data/something/frames/192259/first.jpg", "AURORA/data/something/frames/192259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bottle up completely without letting it drop down"}]} +{"id": "000000109201", "images": ["AURORA/data/something/frames/18537/first.jpg", "AURORA/data/something/frames/18537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing garlic into two pieces"}]} +{"id": "000000109202", "images": ["AURORA/data/something/frames/127415/first.jpg", "AURORA/data/something/frames/127415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping liquid off of table"}]} +{"id": "000000109203", "images": ["AURORA/data/something/frames/146324/first.jpg", "AURORA/data/something/frames/146324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key down"}]} +{"id": "000000109204", "images": ["AURORA/data/something/frames/6841/first.jpg", "AURORA/data/something/frames/6841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork into mug"}]} +{"id": "000000109205", "images": ["AURORA/data/something/frames/82588/first.jpg", "AURORA/data/something/frames/82588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting water bottle with mobile phone on it"}]} +{"id": "000000109206", "images": ["AURORA/data/something/frames/14041/first.jpg", "AURORA/data/something/frames/14041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning wicker basket upside down"}]} +{"id": "000000109207", "images": ["AURORA/data/something/frames/217242/first.jpg", "AURORA/data/something/frames/217242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a battery from left to right"}]} +{"id": "000000109208", "images": ["AURORA/data/something/frames/106515/first.jpg", "AURORA/data/something/frames/106515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000109209", "images": ["AURORA/data/something/frames/92375/first.jpg", "AURORA/data/something/frames/92375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil"}]} +{"id": "000000109210", "images": ["AURORA/data/something/frames/54356/first.jpg", "AURORA/data/something/frames/54356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bottle cap"}]} +{"id": "000000109211", "images": ["AURORA/data/something/frames/4943/first.jpg", "AURORA/data/something/frames/4943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting mobile with mobile on it"}]} +{"id": "000000109212", "images": ["AURORA/data/something/frames/14736/first.jpg", "AURORA/data/something/frames/14736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling coasters up"}]} +{"id": "000000109213", "images": ["AURORA/data/something/frames/198597/first.jpg", "AURORA/data/something/frames/198597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball colliding with ball and both are being deflected"}]} +{"id": "000000109214", "images": ["AURORA/data/something/frames/211179/first.jpg", "AURORA/data/something/frames/211179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering smart watch"}]} +{"id": "000000109215", "images": ["AURORA/data/something/frames/103556/first.jpg", "AURORA/data/something/frames/103556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 blocks"}]} +{"id": "000000109216", "images": ["AURORA/data/something/frames/74367/first.jpg", "AURORA/data/something/frames/74367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a magnet across a surface without it falling down"}]} +{"id": "000000109217", "images": ["AURORA/data/something/frames/15225/first.jpg", "AURORA/data/something/frames/15225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000109218", "images": ["AURORA/data/something/frames/105407/first.jpg", "AURORA/data/something/frames/105407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys into bowl"}]} +{"id": "000000109219", "images": ["AURORA/data/something/frames/181923/first.jpg", "AURORA/data/something/frames/181923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a container off of a box"}]} +{"id": "000000109220", "images": ["AURORA/data/something/frames/150169/first.jpg", "AURORA/data/something/frames/150169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping orange juice off of counter"}]} +{"id": "000000109221", "images": ["AURORA/data/something/frames/144541/first.jpg", "AURORA/data/something/frames/144541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glas upside down"}]} +{"id": "000000109222", "images": ["AURORA/data/something/frames/89133/first.jpg", "AURORA/data/something/frames/89133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000109223", "images": ["AURORA/data/something/frames/148299/first.jpg", "AURORA/data/something/frames/148299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook on a surface"}]} +{"id": "000000109224", "images": ["AURORA/data/something/frames/107330/first.jpg", "AURORA/data/something/frames/107330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping toothpick holder with toothpicks over, so toothpicks falls out"}]} +{"id": "000000109225", "images": ["AURORA/data/something/frames/41456/first.jpg", "AURORA/data/something/frames/41456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from doors with your camera"}]} +{"id": "000000109226", "images": ["AURORA/data/something/frames/170517/first.jpg", "AURORA/data/something/frames/170517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109227", "images": ["AURORA/data/something/frames/116390/first.jpg", "AURORA/data/something/frames/116390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plate from left to right"}]} +{"id": "000000109228", "images": ["AURORA/data/something/frames/72436/first.jpg", "AURORA/data/something/frames/72436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a shot glass in front of a measuring cup"}]} +{"id": "000000109229", "images": ["AURORA/data/something/frames/96769/first.jpg", "AURORA/data/something/frames/96769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card behind a plate"}]} +{"id": "000000109230", "images": ["AURORA/data/something/frames/181022/first.jpg", "AURORA/data/something/frames/181022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball into a tube"}]} +{"id": "000000109231", "images": ["AURORA/data/something/frames/37559/first.jpg", "AURORA/data/something/frames/37559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fork from holder"}]} +{"id": "000000109232", "images": ["AURORA/data/something/frames/70282/first.jpg", "AURORA/data/something/frames/70282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a cup out of a cooler."}]} +{"id": "000000109233", "images": ["AURORA/data/something/frames/214528/first.jpg", "AURORA/data/something/frames/214528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000109234", "images": ["AURORA/data/something/frames/143366/first.jpg", "AURORA/data/something/frames/143366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pasta out of jar"}]} +{"id": "000000109235", "images": ["AURORA/data/something/frames/83680/first.jpg", "AURORA/data/something/frames/83680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109236", "images": ["AURORA/data/something/frames/9739/first.jpg", "AURORA/data/something/frames/9739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of a bag"}]} +{"id": "000000109237", "images": ["AURORA/data/something/frames/83875/first.jpg", "AURORA/data/something/frames/83875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card next to a plate"}]} +{"id": "000000109238", "images": ["AURORA/data/something/frames/143114/first.jpg", "AURORA/data/something/frames/143114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000109239", "images": ["AURORA/data/something/frames/107951/first.jpg", "AURORA/data/something/frames/107951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket but pulling it right out as you remove your hand"}]} +{"id": "000000109240", "images": ["AURORA/data/something/frames/21979/first.jpg", "AURORA/data/something/frames/21979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning paper upside down"}]} +{"id": "000000109241", "images": ["AURORA/data/something/frames/213964/first.jpg", "AURORA/data/something/frames/213964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass up"}]} +{"id": "000000109242", "images": ["AURORA/data/something/frames/64096/first.jpg", "AURORA/data/something/frames/64096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding dollar bill"}]} +{"id": "000000109243", "images": ["AURORA/data/something/frames/130052/first.jpg", "AURORA/data/something/frames/130052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glue stick upright on the table"}]} +{"id": "000000109244", "images": ["AURORA/data/something/frames/111220/first.jpg", "AURORA/data/something/frames/111220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000109245", "images": ["AURORA/data/something/frames/165863/first.jpg", "AURORA/data/something/frames/165863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a peg upright on the table"}]} +{"id": "000000109246", "images": ["AURORA/data/something/frames/80430/first.jpg", "AURORA/data/something/frames/80430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000109247", "images": ["AURORA/data/something/frames/77222/first.jpg", "AURORA/data/something/frames/77222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling granola bar from left to right"}]} +{"id": "000000109248", "images": ["AURORA/data/something/frames/181804/first.jpg", "AURORA/data/something/frames/181804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000109249", "images": ["AURORA/data/something/frames/32705/first.jpg", "AURORA/data/something/frames/32705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel closer to towel"}]} +{"id": "000000109250", "images": ["AURORA/data/something/frames/162583/first.jpg", "AURORA/data/something/frames/162583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000109251", "images": ["AURORA/data/something/frames/34165/first.jpg", "AURORA/data/something/frames/34165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending comb so that it deforms"}]} +{"id": "000000109252", "images": ["AURORA/data/something/frames/172183/first.jpg", "AURORA/data/something/frames/172183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a polythene cover into two pieces"}]} +{"id": "000000109253", "images": ["AURORA/data/something/frames/111829/first.jpg", "AURORA/data/something/frames/111829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from left to right"}]} +{"id": "000000109254", "images": ["AURORA/data/something/frames/68538/first.jpg", "AURORA/data/something/frames/68538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fork down"}]} +{"id": "000000109255", "images": ["AURORA/data/something/frames/214284/first.jpg", "AURORA/data/something/frames/214284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a rubberband so that it gets stretched"}]} +{"id": "000000109256", "images": ["AURORA/data/something/frames/16329/first.jpg", "AURORA/data/something/frames/16329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle similar to other bottles on the table"}]} +{"id": "000000109257", "images": ["AURORA/data/something/frames/192372/first.jpg", "AURORA/data/something/frames/192372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen so that it almost falls off but doesn't"}]} +{"id": "000000109258", "images": ["AURORA/data/something/frames/205405/first.jpg", "AURORA/data/something/frames/205405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many pens"}]} +{"id": "000000109259", "images": ["AURORA/data/something/frames/28959/first.jpg", "AURORA/data/something/frames/28959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coin onto bowl"}]} +{"id": "000000109260", "images": ["AURORA/data/something/frames/215517/first.jpg", "AURORA/data/something/frames/215517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a charger to phone"}]} +{"id": "000000109261", "images": ["AURORA/data/something/frames/125352/first.jpg", "AURORA/data/something/frames/125352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a toothpick until it breaks"}]} +{"id": "000000109262", "images": ["AURORA/data/something/frames/59120/first.jpg", "AURORA/data/something/frames/59120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto paper"}]} +{"id": "000000109263", "images": ["AURORA/data/something/frames/189326/first.jpg", "AURORA/data/something/frames/189326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting blender onto base"}]} +{"id": "000000109264", "images": ["AURORA/data/something/frames/146297/first.jpg", "AURORA/data/something/frames/146297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mug from left to right"}]} +{"id": "000000109265", "images": ["AURORA/data/something/frames/181908/first.jpg", "AURORA/data/something/frames/181908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing post it note just a little bit"}]} +{"id": "000000109266", "images": ["AURORA/data/something/frames/82817/first.jpg", "AURORA/data/something/frames/82817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a bear can, revealing a cup behind"}]} +{"id": "000000109267", "images": ["AURORA/data/something/frames/197725/first.jpg", "AURORA/data/something/frames/197725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a chip until it breaks"}]} +{"id": "000000109268", "images": ["AURORA/data/something/frames/162809/first.jpg", "AURORA/data/something/frames/162809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000109269", "images": ["AURORA/data/something/frames/114357/first.jpg", "AURORA/data/something/frames/114357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle onto ground"}]} +{"id": "000000109270", "images": ["AURORA/data/something/frames/86635/first.jpg", "AURORA/data/something/frames/86635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering stepstool with blanket"}]} +{"id": "000000109271", "images": ["AURORA/data/something/frames/1967/first.jpg", "AURORA/data/something/frames/1967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000109272", "images": ["AURORA/data/something/frames/12017/first.jpg", "AURORA/data/something/frames/12017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into silly putty"}]} +{"id": "000000109273", "images": ["AURORA/data/something/frames/80712/first.jpg", "AURORA/data/something/frames/80712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors and remote control closer to each other"}]} +{"id": "000000109274", "images": ["AURORA/data/something/frames/134047/first.jpg", "AURORA/data/something/frames/134047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar on a surface"}]} +{"id": "000000109275", "images": ["AURORA/data/something/frames/23994/first.jpg", "AURORA/data/something/frames/23994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 juice boxes"}]} +{"id": "000000109276", "images": ["AURORA/data/something/frames/78574/first.jpg", "AURORA/data/something/frames/78574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coffee into a cup until it overflows"}]} +{"id": "000000109277", "images": ["AURORA/data/something/frames/56105/first.jpg", "AURORA/data/something/frames/56105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000109278", "images": ["AURORA/data/something/frames/102477/first.jpg", "AURORA/data/something/frames/102477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000109279", "images": ["AURORA/data/something/frames/172812/first.jpg", "AURORA/data/something/frames/172812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sandals from floor"}]} +{"id": "000000109280", "images": ["AURORA/data/something/frames/84955/first.jpg", "AURORA/data/something/frames/84955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing notebook into bookbag"}]} +{"id": "000000109281", "images": ["AURORA/data/something/frames/86069/first.jpg", "AURORA/data/something/frames/86069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000109282", "images": ["AURORA/data/something/frames/183503/first.jpg", "AURORA/data/something/frames/183503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking essential oil bottle"}]} +{"id": "000000109283", "images": ["AURORA/data/something/frames/206654/first.jpg", "AURORA/data/something/frames/206654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding umbrella"}]} +{"id": "000000109284", "images": ["AURORA/data/something/frames/135618/first.jpg", "AURORA/data/something/frames/135618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of electric kettle"}]} +{"id": "000000109285", "images": ["AURORA/data/something/frames/173949/first.jpg", "AURORA/data/something/frames/173949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into glass"}]} +{"id": "000000109286", "images": ["AURORA/data/something/frames/12671/first.jpg", "AURORA/data/something/frames/12671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) knob of timer"}]} +{"id": "000000109287", "images": ["AURORA/data/something/frames/157206/first.jpg", "AURORA/data/something/frames/157206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball being deflected from wardrobe door"}]} +{"id": "000000109288", "images": ["AURORA/data/something/frames/99084/first.jpg", "AURORA/data/something/frames/99084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving newspaper up"}]} +{"id": "000000109289", "images": ["AURORA/data/something/frames/45447/first.jpg", "AURORA/data/something/frames/45447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000109290", "images": ["AURORA/data/something/frames/140049/first.jpg", "AURORA/data/something/frames/140049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering box with napkin"}]} +{"id": "000000109291", "images": ["AURORA/data/something/frames/187821/first.jpg", "AURORA/data/something/frames/187821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors into a box"}]} +{"id": "000000109292", "images": ["AURORA/data/something/frames/134008/first.jpg", "AURORA/data/something/frames/134008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing perfume bottle"}]} +{"id": "000000109293", "images": ["AURORA/data/something/frames/217460/first.jpg", "AURORA/data/something/frames/217460/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000109294", "images": ["AURORA/data/something/frames/155524/first.jpg", "AURORA/data/something/frames/155524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking box up"}]} +{"id": "000000109295", "images": ["AURORA/data/something/frames/71437/first.jpg", "AURORA/data/something/frames/71437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball on a surface"}]} +{"id": "000000109296", "images": ["AURORA/data/something/frames/76652/first.jpg", "AURORA/data/something/frames/76652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping chocolate candy off of sink"}]} +{"id": "000000109297", "images": ["AURORA/data/something/frames/91726/first.jpg", "AURORA/data/something/frames/91726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a dish cloth wet until water comes out"}]} +{"id": "000000109298", "images": ["AURORA/data/something/frames/194012/first.jpg", "AURORA/data/something/frames/194012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a fork so that it almost falls off but doesn't"}]} +{"id": "000000109299", "images": ["AURORA/data/something/frames/55138/first.jpg", "AURORA/data/something/frames/55138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding shirt"}]} +{"id": "000000109300", "images": ["AURORA/data/something/frames/26017/first.jpg", "AURORA/data/something/frames/26017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a keybound into a glas"}]} +{"id": "000000109301", "images": ["AURORA/data/something/frames/104134/first.jpg", "AURORA/data/something/frames/104134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109302", "images": ["AURORA/data/something/frames/106042/first.jpg", "AURORA/data/something/frames/106042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering electronic component"}]} +{"id": "000000109303", "images": ["AURORA/data/something/frames/89774/first.jpg", "AURORA/data/something/frames/89774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming violin"}]} +{"id": "000000109304", "images": ["AURORA/data/something/frames/55799/first.jpg", "AURORA/data/something/frames/55799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote control from right to left"}]} +{"id": "000000109305", "images": ["AURORA/data/something/frames/131321/first.jpg", "AURORA/data/something/frames/131321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toffee box away from the camera"}]} +{"id": "000000109306", "images": ["AURORA/data/something/frames/213858/first.jpg", "AURORA/data/something/frames/213858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone wire into phone"}]} +{"id": "000000109307", "images": ["AURORA/data/something/frames/109320/first.jpg", "AURORA/data/something/frames/109320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with peppermints over, so peppermints falls out"}]} +{"id": "000000109308", "images": ["AURORA/data/something/frames/130117/first.jpg", "AURORA/data/something/frames/130117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a plastic can from left to right"}]} +{"id": "000000109309", "images": ["AURORA/data/something/frames/45141/first.jpg", "AURORA/data/something/frames/45141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pair of sunglasses with a large wooden spoon"}]} +{"id": "000000109310", "images": ["AURORA/data/something/frames/34542/first.jpg", "AURORA/data/something/frames/34542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving big marble and small marble so they collide with each other"}]} +{"id": "000000109311", "images": ["AURORA/data/something/frames/68482/first.jpg", "AURORA/data/something/frames/68482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clips into a container"}]} +{"id": "000000109312", "images": ["AURORA/data/something/frames/19268/first.jpg", "AURORA/data/something/frames/19268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon"}]} +{"id": "000000109313", "images": ["AURORA/data/something/frames/51687/first.jpg", "AURORA/data/something/frames/51687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving small pillow and iphone closer to each other"}]} +{"id": "000000109314", "images": ["AURORA/data/something/frames/9995/first.jpg", "AURORA/data/something/frames/9995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper up"}]} +{"id": "000000109315", "images": ["AURORA/data/something/frames/85696/first.jpg", "AURORA/data/something/frames/85696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking something up"}]} +{"id": "000000109316", "images": ["AURORA/data/something/frames/54662/first.jpg", "AURORA/data/something/frames/54662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bottle up completely without letting it drop down"}]} +{"id": "000000109317", "images": ["AURORA/data/something/frames/110898/first.jpg", "AURORA/data/something/frames/110898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fragrance on a surface"}]} +{"id": "000000109318", "images": ["AURORA/data/something/frames/68808/first.jpg", "AURORA/data/something/frames/68808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the phone into the box"}]} +{"id": "000000109319", "images": ["AURORA/data/something/frames/204029/first.jpg", "AURORA/data/something/frames/204029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering battery with cookie box lid"}]} +{"id": "000000109320", "images": ["AURORA/data/something/frames/74375/first.jpg", "AURORA/data/something/frames/74375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending ruler so that it deforms"}]} +{"id": "000000109321", "images": ["AURORA/data/something/frames/210088/first.jpg", "AURORA/data/something/frames/210088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cell phone onto blanket"}]} +{"id": "000000109322", "images": ["AURORA/data/something/frames/153319/first.jpg", "AURORA/data/something/frames/153319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of toys so the stack collapses"}]} +{"id": "000000109323", "images": ["AURORA/data/something/frames/96555/first.jpg", "AURORA/data/something/frames/96555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a cap to a bottle of perfume"}]} +{"id": "000000109324", "images": ["AURORA/data/something/frames/200667/first.jpg", "AURORA/data/something/frames/200667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white envelope from right to left"}]} +{"id": "000000109325", "images": ["AURORA/data/something/frames/11752/first.jpg", "AURORA/data/something/frames/11752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping paint can over"}]} +{"id": "000000109326", "images": ["AURORA/data/something/frames/83572/first.jpg", "AURORA/data/something/frames/83572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a shoe onto a math book"}]} +{"id": "000000109327", "images": ["AURORA/data/something/frames/18905/first.jpg", "AURORA/data/something/frames/18905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming ladder"}]} +{"id": "000000109328", "images": ["AURORA/data/something/frames/52036/first.jpg", "AURORA/data/something/frames/52036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser closer to sharpener"}]} +{"id": "000000109329", "images": ["AURORA/data/something/frames/36265/first.jpg", "AURORA/data/something/frames/36265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one bottle"}]} +{"id": "000000109330", "images": ["AURORA/data/something/frames/63280/first.jpg", "AURORA/data/something/frames/63280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking spoon up"}]} +{"id": "000000109331", "images": ["AURORA/data/something/frames/185128/first.jpg", "AURORA/data/something/frames/185128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting toy zelda with ruler"}]} +{"id": "000000109332", "images": ["AURORA/data/something/frames/47249/first.jpg", "AURORA/data/something/frames/47249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving food container away from the camera"}]} +{"id": "000000109333", "images": ["AURORA/data/something/frames/188682/first.jpg", "AURORA/data/something/frames/188682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe down"}]} +{"id": "000000109334", "images": ["AURORA/data/something/frames/128743/first.jpg", "AURORA/data/something/frames/128743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook next to piggy bank"}]} +{"id": "000000109335", "images": ["AURORA/data/something/frames/31228/first.jpg", "AURORA/data/something/frames/31228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a match box towards the camera"}]} +{"id": "000000109336", "images": ["AURORA/data/something/frames/147609/first.jpg", "AURORA/data/something/frames/147609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup upright on the table"}]} +{"id": "000000109337", "images": ["AURORA/data/something/frames/81115/first.jpg", "AURORA/data/something/frames/81115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000109338", "images": ["AURORA/data/something/frames/99336/first.jpg", "AURORA/data/something/frames/99336/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup closer to mug"}]} +{"id": "000000109339", "images": ["AURORA/data/something/frames/38120/first.jpg", "AURORA/data/something/frames/38120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring something into something until it overflows"}]} +{"id": "000000109340", "images": ["AURORA/data/something/frames/196133/first.jpg", "AURORA/data/something/frames/196133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of rubber"}]} +{"id": "000000109341", "images": ["AURORA/data/something/frames/24020/first.jpg", "AURORA/data/something/frames/24020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000109342", "images": ["AURORA/data/something/frames/111253/first.jpg", "AURORA/data/something/frames/111253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a box"}]} +{"id": "000000109343", "images": ["AURORA/data/something/frames/206082/first.jpg", "AURORA/data/something/frames/206082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000109344", "images": ["AURORA/data/something/frames/71283/first.jpg", "AURORA/data/something/frames/71283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending an ointment tube so that it deforms"}]} +{"id": "000000109345", "images": ["AURORA/data/something/frames/126955/first.jpg", "AURORA/data/something/frames/126955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white candle from left to right"}]} +{"id": "000000109346", "images": ["AURORA/data/something/frames/194609/first.jpg", "AURORA/data/something/frames/194609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming picture"}]} +{"id": "000000109347", "images": ["AURORA/data/something/frames/114003/first.jpg", "AURORA/data/something/frames/114003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle on a surface"}]} +{"id": "000000109348", "images": ["AURORA/data/something/frames/144789/first.jpg", "AURORA/data/something/frames/144789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone in front of remote"}]} +{"id": "000000109349", "images": ["AURORA/data/something/frames/200621/first.jpg", "AURORA/data/something/frames/200621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a teddy bear with a bandanna"}]} +{"id": "000000109350", "images": ["AURORA/data/something/frames/183531/first.jpg", "AURORA/data/something/frames/183531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching sheep bottom to sheep head"}]} +{"id": "000000109351", "images": ["AURORA/data/something/frames/220502/first.jpg", "AURORA/data/something/frames/220502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking packet from chair"}]} +{"id": "000000109352", "images": ["AURORA/data/something/frames/206639/first.jpg", "AURORA/data/something/frames/206639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book and lotion closer to each other"}]} +{"id": "000000109353", "images": ["AURORA/data/something/frames/103427/first.jpg", "AURORA/data/something/frames/103427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a charger from behind of a teddy bear"}]} +{"id": "000000109354", "images": ["AURORA/data/something/frames/22564/first.jpg", "AURORA/data/something/frames/22564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening new tab in web browser"}]} +{"id": "000000109355", "images": ["AURORA/data/something/frames/190590/first.jpg", "AURORA/data/something/frames/190590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle in front of glass"}]} +{"id": "000000109356", "images": ["AURORA/data/something/frames/149310/first.jpg", "AURORA/data/something/frames/149310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a piece of paper"}]} +{"id": "000000109357", "images": ["AURORA/data/something/frames/140548/first.jpg", "AURORA/data/something/frames/140548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting box with bottle on it"}]} +{"id": "000000109358", "images": ["AURORA/data/something/frames/94333/first.jpg", "AURORA/data/something/frames/94333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking crayons out of crayon box"}]} +{"id": "000000109359", "images": ["AURORA/data/something/frames/115115/first.jpg", "AURORA/data/something/frames/115115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving yellow colour marker pen down"}]} +{"id": "000000109360", "images": ["AURORA/data/something/frames/146095/first.jpg", "AURORA/data/something/frames/146095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling nail varnish onto paper"}]} +{"id": "000000109361", "images": ["AURORA/data/something/frames/44710/first.jpg", "AURORA/data/something/frames/44710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying coin in powder"}]} +{"id": "000000109362", "images": ["AURORA/data/something/frames/212010/first.jpg", "AURORA/data/something/frames/212010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking egg"}]} +{"id": "000000109363", "images": ["AURORA/data/something/frames/102105/first.jpg", "AURORA/data/something/frames/102105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling nail cutter from right to left"}]} +{"id": "000000109364", "images": ["AURORA/data/something/frames/34130/first.jpg", "AURORA/data/something/frames/34130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb charger into plug converter"}]} +{"id": "000000109365", "images": ["AURORA/data/something/frames/78968/first.jpg", "AURORA/data/something/frames/78968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin into mug"}]} +{"id": "000000109366", "images": ["AURORA/data/something/frames/159158/first.jpg", "AURORA/data/something/frames/159158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a rubberband"}]} +{"id": "000000109367", "images": ["AURORA/data/something/frames/126929/first.jpg", "AURORA/data/something/frames/126929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000109368", "images": ["AURORA/data/something/frames/124382/first.jpg", "AURORA/data/something/frames/124382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming toy idol"}]} +{"id": "000000109369", "images": ["AURORA/data/something/frames/64431/first.jpg", "AURORA/data/something/frames/64431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000109370", "images": ["AURORA/data/something/frames/134169/first.jpg", "AURORA/data/something/frames/134169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shoe, pen bag and lipstick on the table"}]} +{"id": "000000109371", "images": ["AURORA/data/something/frames/2456/first.jpg", "AURORA/data/something/frames/2456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower away from the camera"}]} +{"id": "000000109372", "images": ["AURORA/data/something/frames/216202/first.jpg", "AURORA/data/something/frames/216202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000109373", "images": ["AURORA/data/something/frames/144417/first.jpg", "AURORA/data/something/frames/144417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000109374", "images": ["AURORA/data/something/frames/124406/first.jpg", "AURORA/data/something/frames/124406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cellphone away from tablet"}]} +{"id": "000000109375", "images": ["AURORA/data/something/frames/18508/first.jpg", "AURORA/data/something/frames/18508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg behind a cup"}]} +{"id": "000000109376", "images": ["AURORA/data/something/frames/129090/first.jpg", "AURORA/data/something/frames/129090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing laundry into a basket"}]} +{"id": "000000109377", "images": ["AURORA/data/something/frames/98825/first.jpg", "AURORA/data/something/frames/98825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a spoon"}]} +{"id": "000000109378", "images": ["AURORA/data/something/frames/141570/first.jpg", "AURORA/data/something/frames/141570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering scissors"}]} +{"id": "000000109379", "images": ["AURORA/data/something/frames/106638/first.jpg", "AURORA/data/something/frames/106638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box"}]} +{"id": "000000109380", "images": ["AURORA/data/something/frames/197487/first.jpg", "AURORA/data/something/frames/197487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green purse from left to right"}]} +{"id": "000000109381", "images": ["AURORA/data/something/frames/130587/first.jpg", "AURORA/data/something/frames/130587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching pen to pen cap"}]} +{"id": "000000109382", "images": ["AURORA/data/something/frames/38879/first.jpg", "AURORA/data/something/frames/38879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing container"}]} +{"id": "000000109383", "images": ["AURORA/data/something/frames/14653/first.jpg", "AURORA/data/something/frames/14653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote control so that it almost falls off but doesn't"}]} +{"id": "000000109384", "images": ["AURORA/data/something/frames/132617/first.jpg", "AURORA/data/something/frames/132617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving basket and computer mouse away from each other"}]} +{"id": "000000109385", "images": ["AURORA/data/something/frames/71182/first.jpg", "AURORA/data/something/frames/71182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting quarter into lid"}]} +{"id": "000000109386", "images": ["AURORA/data/something/frames/150288/first.jpg", "AURORA/data/something/frames/150288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a key into a lock"}]} +{"id": "000000109387", "images": ["AURORA/data/something/frames/44543/first.jpg", "AURORA/data/something/frames/44543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109388", "images": ["AURORA/data/something/frames/199515/first.jpg", "AURORA/data/something/frames/199515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling juice onto surface"}]} +{"id": "000000109389", "images": ["AURORA/data/something/frames/159628/first.jpg", "AURORA/data/something/frames/159628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper closer to wallet"}]} +{"id": "000000109390", "images": ["AURORA/data/something/frames/36630/first.jpg", "AURORA/data/something/frames/36630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toy with bowl"}]} +{"id": "000000109391", "images": ["AURORA/data/something/frames/9705/first.jpg", "AURORA/data/something/frames/9705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling rubix cube from right to left"}]} +{"id": "000000109392", "images": ["AURORA/data/something/frames/111459/first.jpg", "AURORA/data/something/frames/111459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flower, pen and watch on the table"}]} +{"id": "000000109393", "images": ["AURORA/data/something/frames/145045/first.jpg", "AURORA/data/something/frames/145045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lemon onto cutting board"}]} +{"id": "000000109394", "images": ["AURORA/data/something/frames/220639/first.jpg", "AURORA/data/something/frames/220639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching adaptor with your camera"}]} +{"id": "000000109395", "images": ["AURORA/data/something/frames/170461/first.jpg", "AURORA/data/something/frames/170461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green headlight from right to left"}]} +{"id": "000000109396", "images": ["AURORA/data/something/frames/184917/first.jpg", "AURORA/data/something/frames/184917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil and ballpen closer to each other"}]} +{"id": "000000109397", "images": ["AURORA/data/something/frames/84107/first.jpg", "AURORA/data/something/frames/84107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000109398", "images": ["AURORA/data/something/frames/69936/first.jpg", "AURORA/data/something/frames/69936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a minion on the edge of a rubix cube so it is not supported and falls down"}]} +{"id": "000000109399", "images": ["AURORA/data/something/frames/106175/first.jpg", "AURORA/data/something/frames/106175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000109400", "images": ["AURORA/data/something/frames/61198/first.jpg", "AURORA/data/something/frames/61198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto bathing soap"}]} +{"id": "000000109401", "images": ["AURORA/data/something/frames/13825/first.jpg", "AURORA/data/something/frames/13825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker into cup"}]} +{"id": "000000109402", "images": ["AURORA/data/something/frames/127219/first.jpg", "AURORA/data/something/frames/127219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into mug"}]} +{"id": "000000109403", "images": ["AURORA/data/something/frames/43830/first.jpg", "AURORA/data/something/frames/43830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping chocolate powder up with spoon"}]} +{"id": "000000109404", "images": ["AURORA/data/something/frames/192169/first.jpg", "AURORA/data/something/frames/192169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into wall outlet"}]} +{"id": "000000109405", "images": ["AURORA/data/something/frames/14702/first.jpg", "AURORA/data/something/frames/14702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging bulb into wall receptacle"}]} +{"id": "000000109406", "images": ["AURORA/data/something/frames/12024/first.jpg", "AURORA/data/something/frames/12024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a lime into a bowl"}]} +{"id": "000000109407", "images": ["AURORA/data/something/frames/161659/first.jpg", "AURORA/data/something/frames/161659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from right to left"}]} +{"id": "000000109408", "images": ["AURORA/data/something/frames/113311/first.jpg", "AURORA/data/something/frames/113311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a magnet to a fridge"}]} +{"id": "000000109409", "images": ["AURORA/data/something/frames/109098/first.jpg", "AURORA/data/something/frames/109098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tomato"}]} +{"id": "000000109410", "images": ["AURORA/data/something/frames/101228/first.jpg", "AURORA/data/something/frames/101228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting spoon with cap on it"}]} +{"id": "000000109411", "images": ["AURORA/data/something/frames/30461/first.jpg", "AURORA/data/something/frames/30461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of hair tie so that it gets stretched"}]} +{"id": "000000109412", "images": ["AURORA/data/something/frames/11795/first.jpg", "AURORA/data/something/frames/11795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with scissors on it until it starts sliding down"}]} +{"id": "000000109413", "images": ["AURORA/data/something/frames/72925/first.jpg", "AURORA/data/something/frames/72925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a marker out of a pencil holder"}]} +{"id": "000000109414", "images": ["AURORA/data/something/frames/40411/first.jpg", "AURORA/data/something/frames/40411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottle"}]} +{"id": "000000109415", "images": ["AURORA/data/something/frames/212650/first.jpg", "AURORA/data/something/frames/212650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting stone with hammer"}]} +{"id": "000000109416", "images": ["AURORA/data/something/frames/185946/first.jpg", "AURORA/data/something/frames/185946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting thread on the edge of cardboard so it is not supported and falls down"}]} +{"id": "000000109417", "images": ["AURORA/data/something/frames/54087/first.jpg", "AURORA/data/something/frames/54087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 white spoons onto duster"}]} +{"id": "000000109418", "images": ["AURORA/data/something/frames/153558/first.jpg", "AURORA/data/something/frames/153558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into block but pulling it right out as you remove your hand"}]} +{"id": "000000109419", "images": ["AURORA/data/something/frames/21755/first.jpg", "AURORA/data/something/frames/21755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of pillow without letting it drop down"}]} +{"id": "000000109420", "images": ["AURORA/data/something/frames/95118/first.jpg", "AURORA/data/something/frames/95118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into tray"}]} +{"id": "000000109421", "images": ["AURORA/data/something/frames/182000/first.jpg", "AURORA/data/something/frames/182000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of comb without letting it drop down"}]} +{"id": "000000109422", "images": ["AURORA/data/something/frames/7266/first.jpg", "AURORA/data/something/frames/7266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a jar and another jar closer to each other"}]} +{"id": "000000109423", "images": ["AURORA/data/something/frames/55629/first.jpg", "AURORA/data/something/frames/55629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bobby pin upright on the table, so it falls on its side"}]} +{"id": "000000109424", "images": ["AURORA/data/something/frames/183182/first.jpg", "AURORA/data/something/frames/183182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109425", "images": ["AURORA/data/something/frames/174766/first.jpg", "AURORA/data/something/frames/174766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toy idol with black pouch"}]} +{"id": "000000109426", "images": ["AURORA/data/something/frames/109267/first.jpg", "AURORA/data/something/frames/109267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box with a pencil"}]} +{"id": "000000109427", "images": ["AURORA/data/something/frames/47665/first.jpg", "AURORA/data/something/frames/47665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering spoon"}]} +{"id": "000000109428", "images": ["AURORA/data/something/frames/208876/first.jpg", "AURORA/data/something/frames/208876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000109429", "images": ["AURORA/data/something/frames/64518/first.jpg", "AURORA/data/something/frames/64518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109430", "images": ["AURORA/data/something/frames/134711/first.jpg", "AURORA/data/something/frames/134711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting apple, spoon and cup on the table"}]} +{"id": "000000109431", "images": ["AURORA/data/something/frames/25434/first.jpg", "AURORA/data/something/frames/25434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a ukelele so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000109432", "images": ["AURORA/data/something/frames/118720/first.jpg", "AURORA/data/something/frames/118720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into wall socket"}]} +{"id": "000000109433", "images": ["AURORA/data/something/frames/23720/first.jpg", "AURORA/data/something/frames/23720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone from right to left"}]} +{"id": "000000109434", "images": ["AURORA/data/something/frames/25683/first.jpg", "AURORA/data/something/frames/25683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys onto bag"}]} +{"id": "000000109435", "images": ["AURORA/data/something/frames/99815/first.jpg", "AURORA/data/something/frames/99815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail polish bottle and post it notes closer to each other"}]} +{"id": "000000109436", "images": ["AURORA/data/something/frames/9668/first.jpg", "AURORA/data/something/frames/9668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing rice into a bowl"}]} +{"id": "000000109437", "images": ["AURORA/data/something/frames/55227/first.jpg", "AURORA/data/something/frames/55227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a clear plastic cup so that it falls over"}]} +{"id": "000000109438", "images": ["AURORA/data/something/frames/98080/first.jpg", "AURORA/data/something/frames/98080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the cup behind bowl"}]} +{"id": "000000109439", "images": ["AURORA/data/something/frames/149058/first.jpg", "AURORA/data/something/frames/149058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing advertisement into two pieces"}]} +{"id": "000000109440", "images": ["AURORA/data/something/frames/71351/first.jpg", "AURORA/data/something/frames/71351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soy sauce into a glass"}]} +{"id": "000000109441", "images": ["AURORA/data/something/frames/165072/first.jpg", "AURORA/data/something/frames/165072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting hand sanitizer with straw"}]} +{"id": "000000109442", "images": ["AURORA/data/something/frames/71321/first.jpg", "AURORA/data/something/frames/71321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a gait belt"}]} +{"id": "000000109443", "images": ["AURORA/data/something/frames/111063/first.jpg", "AURORA/data/something/frames/111063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening book"}]} +{"id": "000000109444", "images": ["AURORA/data/something/frames/209791/first.jpg", "AURORA/data/something/frames/209791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an electrical power strip"}]} +{"id": "000000109445", "images": ["AURORA/data/something/frames/177715/first.jpg", "AURORA/data/something/frames/177715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting camera clamp onto white note"}]} +{"id": "000000109446", "images": ["AURORA/data/something/frames/163230/first.jpg", "AURORA/data/something/frames/163230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing trash can from left to right"}]} +{"id": "000000109447", "images": ["AURORA/data/something/frames/89019/first.jpg", "AURORA/data/something/frames/89019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing card into two pieces"}]} +{"id": "000000109448", "images": ["AURORA/data/something/frames/189832/first.jpg", "AURORA/data/something/frames/189832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with glove on it"}]} +{"id": "000000109449", "images": ["AURORA/data/something/frames/135765/first.jpg", "AURORA/data/something/frames/135765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glas on a surface"}]} +{"id": "000000109450", "images": ["AURORA/data/something/frames/149651/first.jpg", "AURORA/data/something/frames/149651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shoe box from left to right"}]} +{"id": "000000109451", "images": ["AURORA/data/something/frames/47752/first.jpg", "AURORA/data/something/frames/47752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping liquid off of a table"}]} +{"id": "000000109452", "images": ["AURORA/data/something/frames/154635/first.jpg", "AURORA/data/something/frames/154635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball in front of box"}]} +{"id": "000000109453", "images": ["AURORA/data/something/frames/121865/first.jpg", "AURORA/data/something/frames/121865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving clip up"}]} +{"id": "000000109454", "images": ["AURORA/data/something/frames/57161/first.jpg", "AURORA/data/something/frames/57161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a scarf"}]} +{"id": "000000109455", "images": ["AURORA/data/something/frames/41760/first.jpg", "AURORA/data/something/frames/41760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto a bowl"}]} +{"id": "000000109456", "images": ["AURORA/data/something/frames/25126/first.jpg", "AURORA/data/something/frames/25126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ring onto auto toy"}]} +{"id": "000000109457", "images": ["AURORA/data/something/frames/202338/first.jpg", "AURORA/data/something/frames/202338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber-sheet so that it gets stretched"}]} +{"id": "000000109458", "images": ["AURORA/data/something/frames/215820/first.jpg", "AURORA/data/something/frames/215820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering mug"}]} +{"id": "000000109459", "images": ["AURORA/data/something/frames/83363/first.jpg", "AURORA/data/something/frames/83363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding shorts"}]} +{"id": "000000109460", "images": ["AURORA/data/something/frames/130852/first.jpg", "AURORA/data/something/frames/130852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bucket"}]} +{"id": "000000109461", "images": ["AURORA/data/something/frames/22721/first.jpg", "AURORA/data/something/frames/22721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000109462", "images": ["AURORA/data/something/frames/114340/first.jpg", "AURORA/data/something/frames/114340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bandanna"}]} +{"id": "000000109463", "images": ["AURORA/data/something/frames/99616/first.jpg", "AURORA/data/something/frames/99616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cds into basket"}]} +{"id": "000000109464", "images": ["AURORA/data/something/frames/187253/first.jpg", "AURORA/data/something/frames/187253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting apple and khaki on the table"}]} +{"id": "000000109465", "images": ["AURORA/data/something/frames/202896/first.jpg", "AURORA/data/something/frames/202896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto tea towel"}]} +{"id": "000000109466", "images": ["AURORA/data/something/frames/191100/first.jpg", "AURORA/data/something/frames/191100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto notebook"}]} +{"id": "000000109467", "images": ["AURORA/data/something/frames/147281/first.jpg", "AURORA/data/something/frames/147281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching generator set with your camera"}]} +{"id": "000000109468", "images": ["AURORA/data/something/frames/136471/first.jpg", "AURORA/data/something/frames/136471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candy"}]} +{"id": "000000109469", "images": ["AURORA/data/something/frames/164742/first.jpg", "AURORA/data/something/frames/164742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a container"}]} +{"id": "000000109470", "images": ["AURORA/data/something/frames/1919/first.jpg", "AURORA/data/something/frames/1919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000109471", "images": ["AURORA/data/something/frames/190624/first.jpg", "AURORA/data/something/frames/190624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering glue stick"}]} +{"id": "000000109472", "images": ["AURORA/data/something/frames/55537/first.jpg", "AURORA/data/something/frames/55537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading perfume onto air"}]} +{"id": "000000109473", "images": ["AURORA/data/something/frames/163986/first.jpg", "AURORA/data/something/frames/163986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto large bowl"}]} +{"id": "000000109474", "images": ["AURORA/data/something/frames/158480/first.jpg", "AURORA/data/something/frames/158480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy away from box"}]} +{"id": "000000109475", "images": ["AURORA/data/something/frames/218067/first.jpg", "AURORA/data/something/frames/218067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dust off of phone"}]} +{"id": "000000109476", "images": ["AURORA/data/something/frames/128842/first.jpg", "AURORA/data/something/frames/128842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109477", "images": ["AURORA/data/something/frames/71831/first.jpg", "AURORA/data/something/frames/71831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000109478", "images": ["AURORA/data/something/frames/67254/first.jpg", "AURORA/data/something/frames/67254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a keyset away from the camera"}]} +{"id": "000000109479", "images": ["AURORA/data/something/frames/197960/first.jpg", "AURORA/data/something/frames/197960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors down"}]} +{"id": "000000109480", "images": ["AURORA/data/something/frames/137210/first.jpg", "AURORA/data/something/frames/137210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nailpolish up"}]} +{"id": "000000109481", "images": ["AURORA/data/something/frames/209024/first.jpg", "AURORA/data/something/frames/209024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sheild closer to drum"}]} +{"id": "000000109482", "images": ["AURORA/data/something/frames/15038/first.jpg", "AURORA/data/something/frames/15038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a book"}]} +{"id": "000000109483", "images": ["AURORA/data/something/frames/85816/first.jpg", "AURORA/data/something/frames/85816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a table with a shoe"}]} +{"id": "000000109484", "images": ["AURORA/data/something/frames/77768/first.jpg", "AURORA/data/something/frames/77768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a box across a surface without it falling down"}]} +{"id": "000000109485", "images": ["AURORA/data/something/frames/48172/first.jpg", "AURORA/data/something/frames/48172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000109486", "images": ["AURORA/data/something/frames/87488/first.jpg", "AURORA/data/something/frames/87488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking shoe polish brush up"}]} +{"id": "000000109487", "images": ["AURORA/data/something/frames/111424/first.jpg", "AURORA/data/something/frames/111424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a lid across a surface without it falling down"}]} +{"id": "000000109488", "images": ["AURORA/data/something/frames/146707/first.jpg", "AURORA/data/something/frames/146707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking battery"}]} +{"id": "000000109489", "images": ["AURORA/data/something/frames/80439/first.jpg", "AURORA/data/something/frames/80439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and water container away from each other"}]} +{"id": "000000109490", "images": ["AURORA/data/something/frames/192204/first.jpg", "AURORA/data/something/frames/192204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wooden block on a surface"}]} +{"id": "000000109491", "images": ["AURORA/data/something/frames/13208/first.jpg", "AURORA/data/something/frames/13208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pen until it breaks"}]} +{"id": "000000109492", "images": ["AURORA/data/something/frames/38204/first.jpg", "AURORA/data/something/frames/38204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a glass with a tea towel"}]} +{"id": "000000109493", "images": ["AURORA/data/something/frames/191873/first.jpg", "AURORA/data/something/frames/191873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with paper"}]} +{"id": "000000109494", "images": ["AURORA/data/something/frames/39759/first.jpg", "AURORA/data/something/frames/39759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of cone shape object without letting it drop down"}]} +{"id": "000000109495", "images": ["AURORA/data/something/frames/9894/first.jpg", "AURORA/data/something/frames/9894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spirometer upright on the table"}]} +{"id": "000000109496", "images": ["AURORA/data/something/frames/106604/first.jpg", "AURORA/data/something/frames/106604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle on the table"}]} +{"id": "000000109497", "images": ["AURORA/data/something/frames/165780/first.jpg", "AURORA/data/something/frames/165780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a coin closer to a box"}]} +{"id": "000000109498", "images": ["AURORA/data/something/frames/171792/first.jpg", "AURORA/data/something/frames/171792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cap off pill bottle"}]} +{"id": "000000109499", "images": ["AURORA/data/something/frames/219659/first.jpg", "AURORA/data/something/frames/219659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle beer with bottle water"}]} +{"id": "000000109500", "images": ["AURORA/data/something/frames/8161/first.jpg", "AURORA/data/something/frames/8161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bag so that it falls over"}]} +{"id": "000000109501", "images": ["AURORA/data/something/frames/164310/first.jpg", "AURORA/data/something/frames/164310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chair on a surface"}]} +{"id": "000000109502", "images": ["AURORA/data/something/frames/137252/first.jpg", "AURORA/data/something/frames/137252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pencil"}]} +{"id": "000000109503", "images": ["AURORA/data/something/frames/71122/first.jpg", "AURORA/data/something/frames/71122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into box"}]} +{"id": "000000109504", "images": ["AURORA/data/something/frames/195341/first.jpg", "AURORA/data/something/frames/195341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000109505", "images": ["AURORA/data/something/frames/45391/first.jpg", "AURORA/data/something/frames/45391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note and pen closer to each other"}]} +{"id": "000000109506", "images": ["AURORA/data/something/frames/44533/first.jpg", "AURORA/data/something/frames/44533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering aerrings"}]} +{"id": "000000109507", "images": ["AURORA/data/something/frames/181379/first.jpg", "AURORA/data/something/frames/181379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper towel"}]} +{"id": "000000109508", "images": ["AURORA/data/something/frames/107474/first.jpg", "AURORA/data/something/frames/107474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening white hand gel"}]} +{"id": "000000109509", "images": ["AURORA/data/something/frames/217520/first.jpg", "AURORA/data/something/frames/217520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving magazine up"}]} +{"id": "000000109510", "images": ["AURORA/data/something/frames/180604/first.jpg", "AURORA/data/something/frames/180604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb connector into computer"}]} +{"id": "000000109511", "images": ["AURORA/data/something/frames/202934/first.jpg", "AURORA/data/something/frames/202934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing an envelope so that it almost falls off but doesn't"}]} +{"id": "000000109512", "images": ["AURORA/data/something/frames/167052/first.jpg", "AURORA/data/something/frames/167052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb onto cup"}]} +{"id": "000000109513", "images": ["AURORA/data/something/frames/130873/first.jpg", "AURORA/data/something/frames/130873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109514", "images": ["AURORA/data/something/frames/88277/first.jpg", "AURORA/data/something/frames/88277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking calculator from slab"}]} +{"id": "000000109515", "images": ["AURORA/data/something/frames/111996/first.jpg", "AURORA/data/something/frames/111996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking journal books"}]} +{"id": "000000109516", "images": ["AURORA/data/something/frames/204961/first.jpg", "AURORA/data/something/frames/204961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small game card from left to right"}]} +{"id": "000000109517", "images": ["AURORA/data/something/frames/189691/first.jpg", "AURORA/data/something/frames/189691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 coins"}]} +{"id": "000000109518", "images": ["AURORA/data/something/frames/10220/first.jpg", "AURORA/data/something/frames/10220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bowl of water"}]} +{"id": "000000109519", "images": ["AURORA/data/something/frames/122713/first.jpg", "AURORA/data/something/frames/122713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a case up"}]} +{"id": "000000109520", "images": ["AURORA/data/something/frames/154214/first.jpg", "AURORA/data/something/frames/154214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting juicer, bowl and bottle on the table"}]} +{"id": "000000109521", "images": ["AURORA/data/something/frames/6155/first.jpg", "AURORA/data/something/frames/6155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a jug upside down"}]} +{"id": "000000109522", "images": ["AURORA/data/something/frames/153417/first.jpg", "AURORA/data/something/frames/153417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle into bed"}]} +{"id": "000000109523", "images": ["AURORA/data/something/frames/90690/first.jpg", "AURORA/data/something/frames/90690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding socks"}]} +{"id": "000000109524", "images": ["AURORA/data/something/frames/161223/first.jpg", "AURORA/data/something/frames/161223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: marble colliding with stationary marble and both are being deflected"}]} +{"id": "000000109525", "images": ["AURORA/data/something/frames/62711/first.jpg", "AURORA/data/something/frames/62711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper and paper away from each other"}]} +{"id": "000000109526", "images": ["AURORA/data/something/frames/23992/first.jpg", "AURORA/data/something/frames/23992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the edge of hat"}]} +{"id": "000000109527", "images": ["AURORA/data/something/frames/202524/first.jpg", "AURORA/data/something/frames/202524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending net so that it deforms"}]} +{"id": "000000109528", "images": ["AURORA/data/something/frames/213014/first.jpg", "AURORA/data/something/frames/213014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking towel so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000109529", "images": ["AURORA/data/something/frames/177542/first.jpg", "AURORA/data/something/frames/177542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tin"}]} +{"id": "000000109530", "images": ["AURORA/data/something/frames/52845/first.jpg", "AURORA/data/something/frames/52845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a charger onto a case"}]} +{"id": "000000109531", "images": ["AURORA/data/something/frames/63735/first.jpg", "AURORA/data/something/frames/63735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of plastic comb"}]} +{"id": "000000109532", "images": ["AURORA/data/something/frames/162309/first.jpg", "AURORA/data/something/frames/162309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000109533", "images": ["AURORA/data/something/frames/96112/first.jpg", "AURORA/data/something/frames/96112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 board clips onto cookie box lid"}]} +{"id": "000000109534", "images": ["AURORA/data/something/frames/215085/first.jpg", "AURORA/data/something/frames/215085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying mug on the table on its side, not upright"}]} +{"id": "000000109535", "images": ["AURORA/data/something/frames/149904/first.jpg", "AURORA/data/something/frames/149904/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000109536", "images": ["AURORA/data/something/frames/52437/first.jpg", "AURORA/data/something/frames/52437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving smartphone and smartphone away from each other"}]} +{"id": "000000109537", "images": ["AURORA/data/something/frames/85676/first.jpg", "AURORA/data/something/frames/85676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda into cup"}]} +{"id": "000000109538", "images": ["AURORA/data/something/frames/106178/first.jpg", "AURORA/data/something/frames/106178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking wallet out of bag"}]} +{"id": "000000109539", "images": ["AURORA/data/something/frames/185654/first.jpg", "AURORA/data/something/frames/185654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of remote without letting it drop down"}]} +{"id": "000000109540", "images": ["AURORA/data/something/frames/56785/first.jpg", "AURORA/data/something/frames/56785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming something"}]} +{"id": "000000109541", "images": ["AURORA/data/something/frames/71461/first.jpg", "AURORA/data/something/frames/71461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle of water from left to right"}]} +{"id": "000000109542", "images": ["AURORA/data/something/frames/87962/first.jpg", "AURORA/data/something/frames/87962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy train from right to left"}]} +{"id": "000000109543", "images": ["AURORA/data/something/frames/197100/first.jpg", "AURORA/data/something/frames/197100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb and soap away from each other"}]} +{"id": "000000109544", "images": ["AURORA/data/something/frames/65387/first.jpg", "AURORA/data/something/frames/65387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a book with a stapler"}]} +{"id": "000000109545", "images": ["AURORA/data/something/frames/31358/first.jpg", "AURORA/data/something/frames/31358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching pen to cape"}]} +{"id": "000000109546", "images": ["AURORA/data/something/frames/105409/first.jpg", "AURORA/data/something/frames/105409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser away from sharpner"}]} +{"id": "000000109547", "images": ["AURORA/data/something/frames/80748/first.jpg", "AURORA/data/something/frames/80748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper"}]} +{"id": "000000109548", "images": ["AURORA/data/something/frames/37611/first.jpg", "AURORA/data/something/frames/37611/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red candle from right to left"}]} +{"id": "000000109549", "images": ["AURORA/data/something/frames/74814/first.jpg", "AURORA/data/something/frames/74814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting more forks on the table"}]} +{"id": "000000109550", "images": ["AURORA/data/something/frames/121973/first.jpg", "AURORA/data/something/frames/121973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch and mouse away from each other"}]} +{"id": "000000109551", "images": ["AURORA/data/something/frames/18441/first.jpg", "AURORA/data/something/frames/18441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a plug socket"}]} +{"id": "000000109552", "images": ["AURORA/data/something/frames/37124/first.jpg", "AURORA/data/something/frames/37124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109553", "images": ["AURORA/data/something/frames/144247/first.jpg", "AURORA/data/something/frames/144247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup out of cup"}]} +{"id": "000000109554", "images": ["AURORA/data/something/frames/147102/first.jpg", "AURORA/data/something/frames/147102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a keychain out of a glass jar"}]} +{"id": "000000109555", "images": ["AURORA/data/something/frames/191696/first.jpg", "AURORA/data/something/frames/191696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail polish bottle so that it almost falls off but doesn't"}]} +{"id": "000000109556", "images": ["AURORA/data/something/frames/100646/first.jpg", "AURORA/data/something/frames/100646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with glue on it"}]} +{"id": "000000109557", "images": ["AURORA/data/something/frames/8493/first.jpg", "AURORA/data/something/frames/8493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball being deflected from wall"}]} +{"id": "000000109558", "images": ["AURORA/data/something/frames/83389/first.jpg", "AURORA/data/something/frames/83389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing blue ballpen from left to right"}]} +{"id": "000000109559", "images": ["AURORA/data/something/frames/81941/first.jpg", "AURORA/data/something/frames/81941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling paper up"}]} +{"id": "000000109560", "images": ["AURORA/data/something/frames/117808/first.jpg", "AURORA/data/something/frames/117808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubik cube behind card"}]} +{"id": "000000109561", "images": ["AURORA/data/something/frames/90414/first.jpg", "AURORA/data/something/frames/90414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from smart phone with your camera"}]} +{"id": "000000109562", "images": ["AURORA/data/something/frames/91105/first.jpg", "AURORA/data/something/frames/91105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting kindle on a surface"}]} +{"id": "000000109563", "images": ["AURORA/data/something/frames/3033/first.jpg", "AURORA/data/something/frames/3033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming emergency lamp"}]} +{"id": "000000109564", "images": ["AURORA/data/something/frames/120093/first.jpg", "AURORA/data/something/frames/120093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch and mouse closer to each other"}]} +{"id": "000000109565", "images": ["AURORA/data/something/frames/150888/first.jpg", "AURORA/data/something/frames/150888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the car key into contact"}]} +{"id": "000000109566", "images": ["AURORA/data/something/frames/114663/first.jpg", "AURORA/data/something/frames/114663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red punching machine away from hairclip"}]} +{"id": "000000109567", "images": ["AURORA/data/something/frames/83218/first.jpg", "AURORA/data/something/frames/83218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking brush from many brushes"}]} +{"id": "000000109568", "images": ["AURORA/data/something/frames/106375/first.jpg", "AURORA/data/something/frames/106375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into laptop"}]} +{"id": "000000109569", "images": ["AURORA/data/something/frames/160421/first.jpg", "AURORA/data/something/frames/160421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of mug"}]} +{"id": "000000109570", "images": ["AURORA/data/something/frames/164596/first.jpg", "AURORA/data/something/frames/164596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into powder"}]} +{"id": "000000109571", "images": ["AURORA/data/something/frames/151607/first.jpg", "AURORA/data/something/frames/151607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lady away from the camera"}]} +{"id": "000000109572", "images": ["AURORA/data/something/frames/171917/first.jpg", "AURORA/data/something/frames/171917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse into mouse pad"}]} +{"id": "000000109573", "images": ["AURORA/data/something/frames/189265/first.jpg", "AURORA/data/something/frames/189265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving orange and orange so they collide with each other"}]} +{"id": "000000109574", "images": ["AURORA/data/something/frames/128250/first.jpg", "AURORA/data/something/frames/128250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with scissors"}]} +{"id": "000000109575", "images": ["AURORA/data/something/frames/135927/first.jpg", "AURORA/data/something/frames/135927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto a plate"}]} +{"id": "000000109576", "images": ["AURORA/data/something/frames/169971/first.jpg", "AURORA/data/something/frames/169971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109577", "images": ["AURORA/data/something/frames/217444/first.jpg", "AURORA/data/something/frames/217444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning lamp upside down"}]} +{"id": "000000109578", "images": ["AURORA/data/something/frames/27612/first.jpg", "AURORA/data/something/frames/27612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a spoon with a napkin"}]} +{"id": "000000109579", "images": ["AURORA/data/something/frames/201478/first.jpg", "AURORA/data/something/frames/201478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a wrist band"}]} +{"id": "000000109580", "images": ["AURORA/data/something/frames/149533/first.jpg", "AURORA/data/something/frames/149533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening spectacle box"}]} +{"id": "000000109581", "images": ["AURORA/data/something/frames/49887/first.jpg", "AURORA/data/something/frames/49887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: badminton bat colliding with another badminton bat and both are being deflected"}]} +{"id": "000000109582", "images": ["AURORA/data/something/frames/31856/first.jpg", "AURORA/data/something/frames/31856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) pencil of pencil holder"}]} +{"id": "000000109583", "images": ["AURORA/data/something/frames/18598/first.jpg", "AURORA/data/something/frames/18598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery closer to rubix cube"}]} +{"id": "000000109584", "images": ["AURORA/data/something/frames/15461/first.jpg", "AURORA/data/something/frames/15461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper weight and stapler away from each other"}]} +{"id": "000000109585", "images": ["AURORA/data/something/frames/44330/first.jpg", "AURORA/data/something/frames/44330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one penny"}]} +{"id": "000000109586", "images": ["AURORA/data/something/frames/145576/first.jpg", "AURORA/data/something/frames/145576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching hammer to handle"}]} +{"id": "000000109587", "images": ["AURORA/data/something/frames/132936/first.jpg", "AURORA/data/something/frames/132936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109588", "images": ["AURORA/data/something/frames/75760/first.jpg", "AURORA/data/something/frames/75760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging flash drive into computer"}]} +{"id": "000000109589", "images": ["AURORA/data/something/frames/43854/first.jpg", "AURORA/data/something/frames/43854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cream"}]} +{"id": "000000109590", "images": ["AURORA/data/something/frames/118706/first.jpg", "AURORA/data/something/frames/118706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone with rag"}]} +{"id": "000000109591", "images": ["AURORA/data/something/frames/90333/first.jpg", "AURORA/data/something/frames/90333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen into a desk organizer"}]} +{"id": "000000109592", "images": ["AURORA/data/something/frames/126565/first.jpg", "AURORA/data/something/frames/126565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying something on the table on its side, not upright"}]} +{"id": "000000109593", "images": ["AURORA/data/something/frames/62951/first.jpg", "AURORA/data/something/frames/62951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soft glove towards the camera"}]} +{"id": "000000109594", "images": ["AURORA/data/something/frames/150153/first.jpg", "AURORA/data/something/frames/150153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bottle"}]} +{"id": "000000109595", "images": ["AURORA/data/something/frames/100503/first.jpg", "AURORA/data/something/frames/100503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote onto chair"}]} +{"id": "000000109596", "images": ["AURORA/data/something/frames/66525/first.jpg", "AURORA/data/something/frames/66525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing notebook into bag"}]} +{"id": "000000109597", "images": ["AURORA/data/something/frames/180887/first.jpg", "AURORA/data/something/frames/180887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving car key part of a keychain"}]} +{"id": "000000109598", "images": ["AURORA/data/something/frames/85305/first.jpg", "AURORA/data/something/frames/85305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a piece of paper"}]} +{"id": "000000109599", "images": ["AURORA/data/something/frames/207122/first.jpg", "AURORA/data/something/frames/207122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000109600", "images": ["AURORA/data/something/frames/205192/first.jpg", "AURORA/data/something/frames/205192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cord into laptop computer"}]} +{"id": "000000109601", "images": ["AURORA/data/something/frames/48323/first.jpg", "AURORA/data/something/frames/48323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a card out of a box"}]} +{"id": "000000109602", "images": ["AURORA/data/something/frames/135513/first.jpg", "AURORA/data/something/frames/135513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottle behind a box"}]} +{"id": "000000109603", "images": ["AURORA/data/something/frames/33649/first.jpg", "AURORA/data/something/frames/33649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toothbrush closer to a box"}]} +{"id": "000000109604", "images": ["AURORA/data/something/frames/35162/first.jpg", "AURORA/data/something/frames/35162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wrist watch next to eyeglasses"}]} +{"id": "000000109605", "images": ["AURORA/data/something/frames/74681/first.jpg", "AURORA/data/something/frames/74681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle on a surface"}]} +{"id": "000000109606", "images": ["AURORA/data/something/frames/192273/first.jpg", "AURORA/data/something/frames/192273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping a coin off of a phone"}]} +{"id": "000000109607", "images": ["AURORA/data/something/frames/160092/first.jpg", "AURORA/data/something/frames/160092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hairbands onto pink note"}]} +{"id": "000000109608", "images": ["AURORA/data/something/frames/34475/first.jpg", "AURORA/data/something/frames/34475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a phone out of hat"}]} +{"id": "000000109609", "images": ["AURORA/data/something/frames/167714/first.jpg", "AURORA/data/something/frames/167714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pencil with a ruler"}]} +{"id": "000000109610", "images": ["AURORA/data/something/frames/131096/first.jpg", "AURORA/data/something/frames/131096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting three books onto chair"}]} +{"id": "000000109611", "images": ["AURORA/data/something/frames/66395/first.jpg", "AURORA/data/something/frames/66395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming waist basket"}]} +{"id": "000000109612", "images": ["AURORA/data/something/frames/60738/first.jpg", "AURORA/data/something/frames/60738/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into mug, but missing so it spills next to it"}]} +{"id": "000000109613", "images": ["AURORA/data/something/frames/6240/first.jpg", "AURORA/data/something/frames/6240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning mouse upside down"}]} +{"id": "000000109614", "images": ["AURORA/data/something/frames/208346/first.jpg", "AURORA/data/something/frames/208346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and cup closer to each other"}]} +{"id": "000000109615", "images": ["AURORA/data/something/frames/58396/first.jpg", "AURORA/data/something/frames/58396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote with tissue"}]} +{"id": "000000109616", "images": ["AURORA/data/something/frames/44257/first.jpg", "AURORA/data/something/frames/44257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plant upright on the table"}]} +{"id": "000000109617", "images": ["AURORA/data/something/frames/35525/first.jpg", "AURORA/data/something/frames/35525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying body cent bottle on the table on its side, not upright"}]} +{"id": "000000109618", "images": ["AURORA/data/something/frames/151544/first.jpg", "AURORA/data/something/frames/151544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000109619", "images": ["AURORA/data/something/frames/75025/first.jpg", "AURORA/data/something/frames/75025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keyboard in front of backpack"}]} +{"id": "000000109620", "images": ["AURORA/data/something/frames/166698/first.jpg", "AURORA/data/something/frames/166698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a closet"}]} +{"id": "000000109621", "images": ["AURORA/data/something/frames/123998/first.jpg", "AURORA/data/something/frames/123998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering magnifying gless with black cloth"}]} +{"id": "000000109622", "images": ["AURORA/data/something/frames/134697/first.jpg", "AURORA/data/something/frames/134697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging earphones into a laptop"}]} +{"id": "000000109623", "images": ["AURORA/data/something/frames/105356/first.jpg", "AURORA/data/something/frames/105356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bangle towards the camera"}]} +{"id": "000000109624", "images": ["AURORA/data/something/frames/10342/first.jpg", "AURORA/data/something/frames/10342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen down"}]} +{"id": "000000109625", "images": ["AURORA/data/something/frames/74411/first.jpg", "AURORA/data/something/frames/74411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing knife behind"}]} +{"id": "000000109626", "images": ["AURORA/data/something/frames/47720/first.jpg", "AURORA/data/something/frames/47720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering apple"}]} +{"id": "000000109627", "images": ["AURORA/data/something/frames/167210/first.jpg", "AURORA/data/something/frames/167210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: rubik's cube colliding with jbl speaker and both come to a halt"}]} +{"id": "000000109628", "images": ["AURORA/data/something/frames/175776/first.jpg", "AURORA/data/something/frames/175776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toothpick container closer to a comb"}]} +{"id": "000000109629", "images": ["AURORA/data/something/frames/201684/first.jpg", "AURORA/data/something/frames/201684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a deck out of basket"}]} +{"id": "000000109630", "images": ["AURORA/data/something/frames/214941/first.jpg", "AURORA/data/something/frames/214941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pillow next to pillow"}]} +{"id": "000000109631", "images": ["AURORA/data/something/frames/103887/first.jpg", "AURORA/data/something/frames/103887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding newspaper"}]} +{"id": "000000109632", "images": ["AURORA/data/something/frames/148897/first.jpg", "AURORA/data/something/frames/148897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle so that it almost falls off but doesn't"}]} +{"id": "000000109633", "images": ["AURORA/data/something/frames/22021/first.jpg", "AURORA/data/something/frames/22021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding washcloth"}]} +{"id": "000000109634", "images": ["AURORA/data/something/frames/4113/first.jpg", "AURORA/data/something/frames/4113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box next to a coin"}]} +{"id": "000000109635", "images": ["AURORA/data/something/frames/151883/first.jpg", "AURORA/data/something/frames/151883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a lighter and a phone away from each other"}]} +{"id": "000000109636", "images": ["AURORA/data/something/frames/43438/first.jpg", "AURORA/data/something/frames/43438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of hairband so that it gets stretched"}]} +{"id": "000000109637", "images": ["AURORA/data/something/frames/57933/first.jpg", "AURORA/data/something/frames/57933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening carton"}]} +{"id": "000000109638", "images": ["AURORA/data/something/frames/175849/first.jpg", "AURORA/data/something/frames/175849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a card so that it deforms"}]} +{"id": "000000109639", "images": ["AURORA/data/something/frames/153553/first.jpg", "AURORA/data/something/frames/153553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging mobile charger into socket"}]} +{"id": "000000109640", "images": ["AURORA/data/something/frames/195131/first.jpg", "AURORA/data/something/frames/195131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving an apple away from the camera"}]} +{"id": "000000109641", "images": ["AURORA/data/something/frames/175113/first.jpg", "AURORA/data/something/frames/175113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plant away from the camera"}]} +{"id": "000000109642", "images": ["AURORA/data/something/frames/69425/first.jpg", "AURORA/data/something/frames/69425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a matchbox"}]} +{"id": "000000109643", "images": ["AURORA/data/something/frames/155377/first.jpg", "AURORA/data/something/frames/155377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a bottle up completely without letting it drop down"}]} +{"id": "000000109644", "images": ["AURORA/data/something/frames/52761/first.jpg", "AURORA/data/something/frames/52761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a wallet next to a matchbox"}]} +{"id": "000000109645", "images": ["AURORA/data/something/frames/167435/first.jpg", "AURORA/data/something/frames/167435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toy car into spectacle box"}]} +{"id": "000000109646", "images": ["AURORA/data/something/frames/58934/first.jpg", "AURORA/data/something/frames/58934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail cutter away from toothbrush"}]} +{"id": "000000109647", "images": ["AURORA/data/something/frames/89321/first.jpg", "AURORA/data/something/frames/89321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a cable out of a drawer"}]} +{"id": "000000109648", "images": ["AURORA/data/something/frames/35563/first.jpg", "AURORA/data/something/frames/35563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hairband into orange coloured cup"}]} +{"id": "000000109649", "images": ["AURORA/data/something/frames/151288/first.jpg", "AURORA/data/something/frames/151288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a paint brush out of a pen box"}]} +{"id": "000000109650", "images": ["AURORA/data/something/frames/33399/first.jpg", "AURORA/data/something/frames/33399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a book over"}]} +{"id": "000000109651", "images": ["AURORA/data/something/frames/115164/first.jpg", "AURORA/data/something/frames/115164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving handle of bucket"}]} +{"id": "000000109652", "images": ["AURORA/data/something/frames/78091/first.jpg", "AURORA/data/something/frames/78091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coins"}]} +{"id": "000000109653", "images": ["AURORA/data/something/frames/37715/first.jpg", "AURORA/data/something/frames/37715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flag down"}]} +{"id": "000000109654", "images": ["AURORA/data/something/frames/203562/first.jpg", "AURORA/data/something/frames/203562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing an apple from right to left"}]} +{"id": "000000109655", "images": ["AURORA/data/something/frames/10071/first.jpg", "AURORA/data/something/frames/10071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening opening a box"}]} +{"id": "000000109656", "images": ["AURORA/data/something/frames/20861/first.jpg", "AURORA/data/something/frames/20861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking textbook from shelf"}]} +{"id": "000000109657", "images": ["AURORA/data/something/frames/85942/first.jpg", "AURORA/data/something/frames/85942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a glass with a pen"}]} +{"id": "000000109658", "images": ["AURORA/data/something/frames/51445/first.jpg", "AURORA/data/something/frames/51445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen next to sunglasses"}]} +{"id": "000000109659", "images": ["AURORA/data/something/frames/127045/first.jpg", "AURORA/data/something/frames/127045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing crumpled paper into a cup"}]} +{"id": "000000109660", "images": ["AURORA/data/something/frames/64510/first.jpg", "AURORA/data/something/frames/64510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending straw so that it deforms"}]} +{"id": "000000109661", "images": ["AURORA/data/something/frames/128394/first.jpg", "AURORA/data/something/frames/128394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 red spoon onto calculator"}]} +{"id": "000000109662", "images": ["AURORA/data/something/frames/113500/first.jpg", "AURORA/data/something/frames/113500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cologne upside down"}]} +{"id": "000000109663", "images": ["AURORA/data/something/frames/84755/first.jpg", "AURORA/data/something/frames/84755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting oven mitt"}]} +{"id": "000000109664", "images": ["AURORA/data/something/frames/121069/first.jpg", "AURORA/data/something/frames/121069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000109665", "images": ["AURORA/data/something/frames/95734/first.jpg", "AURORA/data/something/frames/95734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving crayons and pencilbox away from each other"}]} +{"id": "000000109666", "images": ["AURORA/data/something/frames/77638/first.jpg", "AURORA/data/something/frames/77638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing gear with metal rod"}]} +{"id": "000000109667", "images": ["AURORA/data/something/frames/200159/first.jpg", "AURORA/data/something/frames/200159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000109668", "images": ["AURORA/data/something/frames/58800/first.jpg", "AURORA/data/something/frames/58800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of charger so that it separates into two pieces"}]} +{"id": "000000109669", "images": ["AURORA/data/something/frames/185453/first.jpg", "AURORA/data/something/frames/185453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle closer to box"}]} +{"id": "000000109670", "images": ["AURORA/data/something/frames/67829/first.jpg", "AURORA/data/something/frames/67829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a lid"}]} +{"id": "000000109671", "images": ["AURORA/data/something/frames/213845/first.jpg", "AURORA/data/something/frames/213845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from left to right"}]} +{"id": "000000109672", "images": ["AURORA/data/something/frames/26534/first.jpg", "AURORA/data/something/frames/26534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening hot case"}]} +{"id": "000000109673", "images": ["AURORA/data/something/frames/84309/first.jpg", "AURORA/data/something/frames/84309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting charger next to yellowbook"}]} +{"id": "000000109674", "images": ["AURORA/data/something/frames/106553/first.jpg", "AURORA/data/something/frames/106553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from tv with your camera"}]} +{"id": "000000109675", "images": ["AURORA/data/something/frames/178973/first.jpg", "AURORA/data/something/frames/178973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109676", "images": ["AURORA/data/something/frames/100109/first.jpg", "AURORA/data/something/frames/100109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering screw with aluminium foil"}]} +{"id": "000000109677", "images": ["AURORA/data/something/frames/16688/first.jpg", "AURORA/data/something/frames/16688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending candy so that it deforms"}]} +{"id": "000000109678", "images": ["AURORA/data/something/frames/96026/first.jpg", "AURORA/data/something/frames/96026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing car bonnet"}]} +{"id": "000000109679", "images": ["AURORA/data/something/frames/137174/first.jpg", "AURORA/data/something/frames/137174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding dish towel"}]} +{"id": "000000109680", "images": ["AURORA/data/something/frames/98350/first.jpg", "AURORA/data/something/frames/98350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from dogs with your camera"}]} +{"id": "000000109681", "images": ["AURORA/data/something/frames/86755/first.jpg", "AURORA/data/something/frames/86755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming plant"}]} +{"id": "000000109682", "images": ["AURORA/data/something/frames/210019/first.jpg", "AURORA/data/something/frames/210019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cable into socket"}]} +{"id": "000000109683", "images": ["AURORA/data/something/frames/110490/first.jpg", "AURORA/data/something/frames/110490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109684", "images": ["AURORA/data/something/frames/98552/first.jpg", "AURORA/data/something/frames/98552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring ping pong balls onto table"}]} +{"id": "000000109685", "images": ["AURORA/data/something/frames/176629/first.jpg", "AURORA/data/something/frames/176629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109686", "images": ["AURORA/data/something/frames/153423/first.jpg", "AURORA/data/something/frames/153423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000109687", "images": ["AURORA/data/something/frames/147743/first.jpg", "AURORA/data/something/frames/147743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto dirt"}]} +{"id": "000000109688", "images": ["AURORA/data/something/frames/169323/first.jpg", "AURORA/data/something/frames/169323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper sheet"}]} +{"id": "000000109689", "images": ["AURORA/data/something/frames/162794/first.jpg", "AURORA/data/something/frames/162794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to pepper"}]} +{"id": "000000109690", "images": ["AURORA/data/something/frames/131012/first.jpg", "AURORA/data/something/frames/131012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving moving something and close each other closer to each other"}]} +{"id": "000000109691", "images": ["AURORA/data/something/frames/46325/first.jpg", "AURORA/data/something/frames/46325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000109692", "images": ["AURORA/data/something/frames/17467/first.jpg", "AURORA/data/something/frames/17467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 pill bottles onto box"}]} +{"id": "000000109693", "images": ["AURORA/data/something/frames/124740/first.jpg", "AURORA/data/something/frames/124740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening green paint bottle"}]} +{"id": "000000109694", "images": ["AURORA/data/something/frames/66786/first.jpg", "AURORA/data/something/frames/66786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug on a surface"}]} +{"id": "000000109695", "images": ["AURORA/data/something/frames/203571/first.jpg", "AURORA/data/something/frames/203571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so that it falls over"}]} +{"id": "000000109696", "images": ["AURORA/data/something/frames/197179/first.jpg", "AURORA/data/something/frames/197179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ruler and scissors closer to each other"}]} +{"id": "000000109697", "images": ["AURORA/data/something/frames/183008/first.jpg", "AURORA/data/something/frames/183008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sunglasses up"}]} +{"id": "000000109698", "images": ["AURORA/data/something/frames/106909/first.jpg", "AURORA/data/something/frames/106909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone but pulling it right out as you remove your hand"}]} +{"id": "000000109699", "images": ["AURORA/data/something/frames/208322/first.jpg", "AURORA/data/something/frames/208322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing plastic just a little bit"}]} +{"id": "000000109700", "images": ["AURORA/data/something/frames/53280/first.jpg", "AURORA/data/something/frames/53280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling laundry up"}]} +{"id": "000000109701", "images": ["AURORA/data/something/frames/216694/first.jpg", "AURORA/data/something/frames/216694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing post it note just a little bit"}]} +{"id": "000000109702", "images": ["AURORA/data/something/frames/26641/first.jpg", "AURORA/data/something/frames/26641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler closer to punching machine"}]} +{"id": "000000109703", "images": ["AURORA/data/something/frames/218058/first.jpg", "AURORA/data/something/frames/218058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: shoe being deflected from tripod"}]} +{"id": "000000109704", "images": ["AURORA/data/something/frames/115373/first.jpg", "AURORA/data/something/frames/115373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pillows"}]} +{"id": "000000109705", "images": ["AURORA/data/something/frames/2387/first.jpg", "AURORA/data/something/frames/2387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting school bag"}]} +{"id": "000000109706", "images": ["AURORA/data/something/frames/220576/first.jpg", "AURORA/data/something/frames/220576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109707", "images": ["AURORA/data/something/frames/216078/first.jpg", "AURORA/data/something/frames/216078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109708", "images": ["AURORA/data/something/frames/172009/first.jpg", "AURORA/data/something/frames/172009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing movie ticket into two pieces"}]} +{"id": "000000109709", "images": ["AURORA/data/something/frames/152599/first.jpg", "AURORA/data/something/frames/152599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wooden stick closer to battery"}]} +{"id": "000000109710", "images": ["AURORA/data/something/frames/33301/first.jpg", "AURORA/data/something/frames/33301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a padlock over"}]} +{"id": "000000109711", "images": ["AURORA/data/something/frames/206677/first.jpg", "AURORA/data/something/frames/206677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel just a little bit"}]} +{"id": "000000109712", "images": ["AURORA/data/something/frames/138977/first.jpg", "AURORA/data/something/frames/138977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing the window"}]} +{"id": "000000109713", "images": ["AURORA/data/something/frames/19238/first.jpg", "AURORA/data/something/frames/19238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming green headlight"}]} +{"id": "000000109714", "images": ["AURORA/data/something/frames/215832/first.jpg", "AURORA/data/something/frames/215832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109715", "images": ["AURORA/data/something/frames/13923/first.jpg", "AURORA/data/something/frames/13923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen upright on the table, so it falls on its side"}]} +{"id": "000000109716", "images": ["AURORA/data/something/frames/94601/first.jpg", "AURORA/data/something/frames/94601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping cereal up with spoon"}]} +{"id": "000000109717", "images": ["AURORA/data/something/frames/168837/first.jpg", "AURORA/data/something/frames/168837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving adaptor away from the camera"}]} +{"id": "000000109718", "images": ["AURORA/data/something/frames/105705/first.jpg", "AURORA/data/something/frames/105705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming tank"}]} +{"id": "000000109719", "images": ["AURORA/data/something/frames/16323/first.jpg", "AURORA/data/something/frames/16323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a fork closer to a spoon"}]} +{"id": "000000109720", "images": ["AURORA/data/something/frames/25917/first.jpg", "AURORA/data/something/frames/25917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving black trash can closer to white trash can"}]} +{"id": "000000109721", "images": ["AURORA/data/something/frames/177878/first.jpg", "AURORA/data/something/frames/177878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping markings off of whiteboard"}]} +{"id": "000000109722", "images": ["AURORA/data/something/frames/64594/first.jpg", "AURORA/data/something/frames/64594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a car and a car so they collide with each other"}]} +{"id": "000000109723", "images": ["AURORA/data/something/frames/175878/first.jpg", "AURORA/data/something/frames/175878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109724", "images": ["AURORA/data/something/frames/14377/first.jpg", "AURORA/data/something/frames/14377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming plant"}]} +{"id": "000000109725", "images": ["AURORA/data/something/frames/156532/first.jpg", "AURORA/data/something/frames/156532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sharpener next to sticky note"}]} +{"id": "000000109726", "images": ["AURORA/data/something/frames/177721/first.jpg", "AURORA/data/something/frames/177721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking usb cable out of laptop"}]} +{"id": "000000109727", "images": ["AURORA/data/something/frames/42618/first.jpg", "AURORA/data/something/frames/42618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000109728", "images": ["AURORA/data/something/frames/25759/first.jpg", "AURORA/data/something/frames/25759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling matchboxes up"}]} +{"id": "000000109729", "images": ["AURORA/data/something/frames/185141/first.jpg", "AURORA/data/something/frames/185141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper plate just a little bit"}]} +{"id": "000000109730", "images": ["AURORA/data/something/frames/19953/first.jpg", "AURORA/data/something/frames/19953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pick"}]} +{"id": "000000109731", "images": ["AURORA/data/something/frames/17984/first.jpg", "AURORA/data/something/frames/17984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pencil out of a mug"}]} +{"id": "000000109732", "images": ["AURORA/data/something/frames/119378/first.jpg", "AURORA/data/something/frames/119378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a mug"}]} +{"id": "000000109733", "images": ["AURORA/data/something/frames/102277/first.jpg", "AURORA/data/something/frames/102277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cat and cube away from each other"}]} +{"id": "000000109734", "images": ["AURORA/data/something/frames/128426/first.jpg", "AURORA/data/something/frames/128426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting receipts"}]} +{"id": "000000109735", "images": ["AURORA/data/something/frames/220555/first.jpg", "AURORA/data/something/frames/220555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing flower just a little bit"}]} +{"id": "000000109736", "images": ["AURORA/data/something/frames/206961/first.jpg", "AURORA/data/something/frames/206961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into cup"}]} +{"id": "000000109737", "images": ["AURORA/data/something/frames/165387/first.jpg", "AURORA/data/something/frames/165387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling salt onto an eraser"}]} +{"id": "000000109738", "images": ["AURORA/data/something/frames/59558/first.jpg", "AURORA/data/something/frames/59558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000109739", "images": ["AURORA/data/something/frames/219477/first.jpg", "AURORA/data/something/frames/219477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin behind a container"}]} +{"id": "000000109740", "images": ["AURORA/data/something/frames/206562/first.jpg", "AURORA/data/something/frames/206562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker in front of remote"}]} +{"id": "000000109741", "images": ["AURORA/data/something/frames/220117/first.jpg", "AURORA/data/something/frames/220117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming biscuit packets"}]} +{"id": "000000109742", "images": ["AURORA/data/something/frames/201202/first.jpg", "AURORA/data/something/frames/201202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing compact cassette behind"}]} +{"id": "000000109743", "images": ["AURORA/data/something/frames/81513/first.jpg", "AURORA/data/something/frames/81513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving an orange highlighter and a pink highlighter away from each other"}]} +{"id": "000000109744", "images": ["AURORA/data/something/frames/152254/first.jpg", "AURORA/data/something/frames/152254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bag next to table"}]} +{"id": "000000109745", "images": ["AURORA/data/something/frames/57686/first.jpg", "AURORA/data/something/frames/57686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering keys"}]} +{"id": "000000109746", "images": ["AURORA/data/something/frames/77754/first.jpg", "AURORA/data/something/frames/77754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing wipe into box"}]} +{"id": "000000109747", "images": ["AURORA/data/something/frames/42588/first.jpg", "AURORA/data/something/frames/42588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting plastic wire"}]} +{"id": "000000109748", "images": ["AURORA/data/something/frames/117866/first.jpg", "AURORA/data/something/frames/117866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a penguin off of a book"}]} +{"id": "000000109749", "images": ["AURORA/data/something/frames/88490/first.jpg", "AURORA/data/something/frames/88490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering sunglasses"}]} +{"id": "000000109750", "images": ["AURORA/data/something/frames/32140/first.jpg", "AURORA/data/something/frames/32140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tray with cloth"}]} +{"id": "000000109751", "images": ["AURORA/data/something/frames/50447/first.jpg", "AURORA/data/something/frames/50447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into a drawer"}]} +{"id": "000000109752", "images": ["AURORA/data/something/frames/168974/first.jpg", "AURORA/data/something/frames/168974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming banana bunch"}]} +{"id": "000000109753", "images": ["AURORA/data/something/frames/171144/first.jpg", "AURORA/data/something/frames/171144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting nail polish bottle on the edge of table so it is not supported and falls down"}]} +{"id": "000000109754", "images": ["AURORA/data/something/frames/37100/first.jpg", "AURORA/data/something/frames/37100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into glass, but missing so it spills next to it"}]} +{"id": "000000109755", "images": ["AURORA/data/something/frames/178583/first.jpg", "AURORA/data/something/frames/178583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000109756", "images": ["AURORA/data/something/frames/84028/first.jpg", "AURORA/data/something/frames/84028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: suitcase being deflected from sofa"}]} +{"id": "000000109757", "images": ["AURORA/data/something/frames/181859/first.jpg", "AURORA/data/something/frames/181859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting eraser and pencil on the table"}]} +{"id": "000000109758", "images": ["AURORA/data/something/frames/173218/first.jpg", "AURORA/data/something/frames/173218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a canister upright on the table"}]} +{"id": "000000109759", "images": ["AURORA/data/something/frames/4736/first.jpg", "AURORA/data/something/frames/4736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bucket with a bat"}]} +{"id": "000000109760", "images": ["AURORA/data/something/frames/128016/first.jpg", "AURORA/data/something/frames/128016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring paper clip into plastic box"}]} +{"id": "000000109761", "images": ["AURORA/data/something/frames/112358/first.jpg", "AURORA/data/something/frames/112358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse down"}]} +{"id": "000000109762", "images": ["AURORA/data/something/frames/116605/first.jpg", "AURORA/data/something/frames/116605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding rexona deo lotion"}]} +{"id": "000000109763", "images": ["AURORA/data/something/frames/114326/first.jpg", "AURORA/data/something/frames/114326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery up"}]} +{"id": "000000109764", "images": ["AURORA/data/something/frames/159775/first.jpg", "AURORA/data/something/frames/159775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into hospots"}]} +{"id": "000000109765", "images": ["AURORA/data/something/frames/218215/first.jpg", "AURORA/data/something/frames/218215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing water into glass"}]} +{"id": "000000109766", "images": ["AURORA/data/something/frames/27662/first.jpg", "AURORA/data/something/frames/27662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering keys with cloth"}]} +{"id": "000000109767", "images": ["AURORA/data/something/frames/9368/first.jpg", "AURORA/data/something/frames/9368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking apple airpod out of apple airpods case"}]} +{"id": "000000109768", "images": ["AURORA/data/something/frames/25859/first.jpg", "AURORA/data/something/frames/25859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109769", "images": ["AURORA/data/something/frames/215252/first.jpg", "AURORA/data/something/frames/215252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring oil into a measuring vessel"}]} +{"id": "000000109770", "images": ["AURORA/data/something/frames/87227/first.jpg", "AURORA/data/something/frames/87227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling graims next to a glass jar"}]} +{"id": "000000109771", "images": ["AURORA/data/something/frames/212793/first.jpg", "AURORA/data/something/frames/212793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a quarter onto the floor"}]} +{"id": "000000109772", "images": ["AURORA/data/something/frames/99661/first.jpg", "AURORA/data/something/frames/99661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a clear plastic cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000109773", "images": ["AURORA/data/something/frames/156377/first.jpg", "AURORA/data/something/frames/156377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a small cylinder over"}]} +{"id": "000000109774", "images": ["AURORA/data/something/frames/157959/first.jpg", "AURORA/data/something/frames/157959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming window"}]} +{"id": "000000109775", "images": ["AURORA/data/something/frames/93939/first.jpg", "AURORA/data/something/frames/93939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting hairbrush up completely without letting it drop down"}]} +{"id": "000000109776", "images": ["AURORA/data/something/frames/13390/first.jpg", "AURORA/data/something/frames/13390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler onto red pouch"}]} +{"id": "000000109777", "images": ["AURORA/data/something/frames/35775/first.jpg", "AURORA/data/something/frames/35775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving biscuit pack away from the camera"}]} +{"id": "000000109778", "images": ["AURORA/data/something/frames/51932/first.jpg", "AURORA/data/something/frames/51932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a hamper with its lid"}]} +{"id": "000000109779", "images": ["AURORA/data/something/frames/76491/first.jpg", "AURORA/data/something/frames/76491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto counter"}]} +{"id": "000000109780", "images": ["AURORA/data/something/frames/18477/first.jpg", "AURORA/data/something/frames/18477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring grains out of a container"}]} +{"id": "000000109781", "images": ["AURORA/data/something/frames/219936/first.jpg", "AURORA/data/something/frames/219936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cap and grape away from each other"}]} +{"id": "000000109782", "images": ["AURORA/data/something/frames/124090/first.jpg", "AURORA/data/something/frames/124090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging red-chili out of shallots"}]} +{"id": "000000109783", "images": ["AURORA/data/something/frames/161748/first.jpg", "AURORA/data/something/frames/161748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping plastic in front of bowl"}]} +{"id": "000000109784", "images": ["AURORA/data/something/frames/173460/first.jpg", "AURORA/data/something/frames/173460/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000109785", "images": ["AURORA/data/something/frames/26067/first.jpg", "AURORA/data/something/frames/26067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a toothbrush"}]} +{"id": "000000109786", "images": ["AURORA/data/something/frames/30290/first.jpg", "AURORA/data/something/frames/30290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fish into bag"}]} +{"id": "000000109787", "images": ["AURORA/data/something/frames/64909/first.jpg", "AURORA/data/something/frames/64909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass out of cabinet"}]} +{"id": "000000109788", "images": ["AURORA/data/something/frames/93306/first.jpg", "AURORA/data/something/frames/93306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lime next to egg"}]} +{"id": "000000109789", "images": ["AURORA/data/something/frames/17840/first.jpg", "AURORA/data/something/frames/17840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109790", "images": ["AURORA/data/something/frames/99578/first.jpg", "AURORA/data/something/frames/99578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a jug"}]} +{"id": "000000109791", "images": ["AURORA/data/something/frames/37631/first.jpg", "AURORA/data/something/frames/37631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler off of phone"}]} +{"id": "000000109792", "images": ["AURORA/data/something/frames/148405/first.jpg", "AURORA/data/something/frames/148405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109793", "images": ["AURORA/data/something/frames/152135/first.jpg", "AURORA/data/something/frames/152135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the tab part of a soda can"}]} +{"id": "000000109794", "images": ["AURORA/data/something/frames/212616/first.jpg", "AURORA/data/something/frames/212616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on the edge of a decorative \"k\" so it is not supported and falls down"}]} +{"id": "000000109795", "images": ["AURORA/data/something/frames/157854/first.jpg", "AURORA/data/something/frames/157854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a charger but pulling it right out as you remove your hand"}]} +{"id": "000000109796", "images": ["AURORA/data/something/frames/136901/first.jpg", "AURORA/data/something/frames/136901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphone into laptop"}]} +{"id": "000000109797", "images": ["AURORA/data/something/frames/27587/first.jpg", "AURORA/data/something/frames/27587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cellphone with towel"}]} +{"id": "000000109798", "images": ["AURORA/data/something/frames/187013/first.jpg", "AURORA/data/something/frames/187013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving chalk piece up"}]} +{"id": "000000109799", "images": ["AURORA/data/something/frames/205263/first.jpg", "AURORA/data/something/frames/205263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery, sharpner and pebble on the table"}]} +{"id": "000000109800", "images": ["AURORA/data/something/frames/33692/first.jpg", "AURORA/data/something/frames/33692/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon down"}]} +{"id": "000000109801", "images": ["AURORA/data/something/frames/212972/first.jpg", "AURORA/data/something/frames/212972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spoon from left to right"}]} +{"id": "000000109802", "images": ["AURORA/data/something/frames/92553/first.jpg", "AURORA/data/something/frames/92553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sharpener on the edge of slab so it is not supported and falls down"}]} +{"id": "000000109803", "images": ["AURORA/data/something/frames/163152/first.jpg", "AURORA/data/something/frames/163152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000109804", "images": ["AURORA/data/something/frames/135030/first.jpg", "AURORA/data/something/frames/135030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: remote being deflected from chair"}]} +{"id": "000000109805", "images": ["AURORA/data/something/frames/171180/first.jpg", "AURORA/data/something/frames/171180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coconut shell onto a slanted surface but it doesn't glide down"}]} +{"id": "000000109806", "images": ["AURORA/data/something/frames/64574/first.jpg", "AURORA/data/something/frames/64574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a shoebox up"}]} +{"id": "000000109807", "images": ["AURORA/data/something/frames/168289/first.jpg", "AURORA/data/something/frames/168289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 15 news papers onto floor"}]} +{"id": "000000109808", "images": ["AURORA/data/something/frames/86157/first.jpg", "AURORA/data/something/frames/86157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard just a little bit"}]} +{"id": "000000109809", "images": ["AURORA/data/something/frames/110823/first.jpg", "AURORA/data/something/frames/110823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing card into two pieces"}]} +{"id": "000000109810", "images": ["AURORA/data/something/frames/100314/first.jpg", "AURORA/data/something/frames/100314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a key upright on the table, so it falls on its side"}]} +{"id": "000000109811", "images": ["AURORA/data/something/frames/39511/first.jpg", "AURORA/data/something/frames/39511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a plank of wood over"}]} +{"id": "000000109812", "images": ["AURORA/data/something/frames/145951/first.jpg", "AURORA/data/something/frames/145951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the botyle away from the pencil case"}]} +{"id": "000000109813", "images": ["AURORA/data/something/frames/218728/first.jpg", "AURORA/data/something/frames/218728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000109814", "images": ["AURORA/data/something/frames/26992/first.jpg", "AURORA/data/something/frames/26992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a bracelet up completely without letting it drop down"}]} +{"id": "000000109815", "images": ["AURORA/data/something/frames/3179/first.jpg", "AURORA/data/something/frames/3179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109816", "images": ["AURORA/data/something/frames/34400/first.jpg", "AURORA/data/something/frames/34400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper napkin just a little bit"}]} +{"id": "000000109817", "images": ["AURORA/data/something/frames/49589/first.jpg", "AURORA/data/something/frames/49589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing newspaper into two pieces"}]} +{"id": "000000109818", "images": ["AURORA/data/something/frames/186011/first.jpg", "AURORA/data/something/frames/186011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving seat of rotating chair"}]} +{"id": "000000109819", "images": ["AURORA/data/something/frames/63590/first.jpg", "AURORA/data/something/frames/63590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping something onto something"}]} +{"id": "000000109820", "images": ["AURORA/data/something/frames/90847/first.jpg", "AURORA/data/something/frames/90847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen next to cup"}]} +{"id": "000000109821", "images": ["AURORA/data/something/frames/5687/first.jpg", "AURORA/data/something/frames/5687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a power cord"}]} +{"id": "000000109822", "images": ["AURORA/data/something/frames/158321/first.jpg", "AURORA/data/something/frames/158321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin similar to other coins that are already on the table"}]} +{"id": "000000109823", "images": ["AURORA/data/something/frames/45424/first.jpg", "AURORA/data/something/frames/45424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle with pen"}]} +{"id": "000000109824", "images": ["AURORA/data/something/frames/67850/first.jpg", "AURORA/data/something/frames/67850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet with pen"}]} +{"id": "000000109825", "images": ["AURORA/data/something/frames/131368/first.jpg", "AURORA/data/something/frames/131368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pink water bottle down"}]} +{"id": "000000109826", "images": ["AURORA/data/something/frames/94531/first.jpg", "AURORA/data/something/frames/94531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch and car keys closer to each other"}]} +{"id": "000000109827", "images": ["AURORA/data/something/frames/72753/first.jpg", "AURORA/data/something/frames/72753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting napkin and wooden bowl on the table"}]} +{"id": "000000109828", "images": ["AURORA/data/something/frames/213887/first.jpg", "AURORA/data/something/frames/213887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box away from can"}]} +{"id": "000000109829", "images": ["AURORA/data/something/frames/158223/first.jpg", "AURORA/data/something/frames/158223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving button down"}]} +{"id": "000000109830", "images": ["AURORA/data/something/frames/27560/first.jpg", "AURORA/data/something/frames/27560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin into a bowl"}]} +{"id": "000000109831", "images": ["AURORA/data/something/frames/185208/first.jpg", "AURORA/data/something/frames/185208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coin"}]} +{"id": "000000109832", "images": ["AURORA/data/something/frames/8712/first.jpg", "AURORA/data/something/frames/8712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with pen on it"}]} +{"id": "000000109833", "images": ["AURORA/data/something/frames/22007/first.jpg", "AURORA/data/something/frames/22007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning nail polish bottle upside down"}]} +{"id": "000000109834", "images": ["AURORA/data/something/frames/201036/first.jpg", "AURORA/data/something/frames/201036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000109835", "images": ["AURORA/data/something/frames/81534/first.jpg", "AURORA/data/something/frames/81534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with spoon"}]} +{"id": "000000109836", "images": ["AURORA/data/something/frames/206828/first.jpg", "AURORA/data/something/frames/206828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) cover of book"}]} +{"id": "000000109837", "images": ["AURORA/data/something/frames/65958/first.jpg", "AURORA/data/something/frames/65958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping tissue box over"}]} +{"id": "000000109838", "images": ["AURORA/data/something/frames/131506/first.jpg", "AURORA/data/something/frames/131506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching sticker note to notebook"}]} +{"id": "000000109839", "images": ["AURORA/data/something/frames/94676/first.jpg", "AURORA/data/something/frames/94676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging heater into plug"}]} +{"id": "000000109840", "images": ["AURORA/data/something/frames/190282/first.jpg", "AURORA/data/something/frames/190282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of box without letting it drop down"}]} +{"id": "000000109841", "images": ["AURORA/data/something/frames/42804/first.jpg", "AURORA/data/something/frames/42804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bracelet from left to right"}]} +{"id": "000000109842", "images": ["AURORA/data/something/frames/209327/first.jpg", "AURORA/data/something/frames/209327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing playingcard just a little bit"}]} +{"id": "000000109843", "images": ["AURORA/data/something/frames/215286/first.jpg", "AURORA/data/something/frames/215286/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a garbage bin from left to right"}]} +{"id": "000000109844", "images": ["AURORA/data/something/frames/52486/first.jpg", "AURORA/data/something/frames/52486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming my hand"}]} +{"id": "000000109845", "images": ["AURORA/data/something/frames/101591/first.jpg", "AURORA/data/something/frames/101591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming black remote"}]} +{"id": "000000109846", "images": ["AURORA/data/something/frames/135799/first.jpg", "AURORA/data/something/frames/135799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler down"}]} +{"id": "000000109847", "images": ["AURORA/data/something/frames/34383/first.jpg", "AURORA/data/something/frames/34383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking lighter"}]} +{"id": "000000109848", "images": ["AURORA/data/something/frames/186984/first.jpg", "AURORA/data/something/frames/186984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pink toothbrush case up"}]} +{"id": "000000109849", "images": ["AURORA/data/something/frames/60622/first.jpg", "AURORA/data/something/frames/60622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 cds"}]} +{"id": "000000109850", "images": ["AURORA/data/something/frames/130186/first.jpg", "AURORA/data/something/frames/130186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000109851", "images": ["AURORA/data/something/frames/193548/first.jpg", "AURORA/data/something/frames/193548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup with pens over, so the pens falls out"}]} +{"id": "000000109852", "images": ["AURORA/data/something/frames/92927/first.jpg", "AURORA/data/something/frames/92927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking ramekin so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000109853", "images": ["AURORA/data/something/frames/40935/first.jpg", "AURORA/data/something/frames/40935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a flash drive into a port"}]} +{"id": "000000109854", "images": ["AURORA/data/something/frames/14358/first.jpg", "AURORA/data/something/frames/14358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming cup"}]} +{"id": "000000109855", "images": ["AURORA/data/something/frames/174021/first.jpg", "AURORA/data/something/frames/174021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a banana upright on the table, so it falls on its side"}]} +{"id": "000000109856", "images": ["AURORA/data/something/frames/6726/first.jpg", "AURORA/data/something/frames/6726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing peanut butter jar"}]} +{"id": "000000109857", "images": ["AURORA/data/something/frames/65726/first.jpg", "AURORA/data/something/frames/65726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stuffed toy so that it falls over"}]} +{"id": "000000109858", "images": ["AURORA/data/something/frames/176369/first.jpg", "AURORA/data/something/frames/176369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator towards the camera"}]} +{"id": "000000109859", "images": ["AURORA/data/something/frames/168611/first.jpg", "AURORA/data/something/frames/168611/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar into box"}]} +{"id": "000000109860", "images": ["AURORA/data/something/frames/30926/first.jpg", "AURORA/data/something/frames/30926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring medicine onto a table"}]} +{"id": "000000109861", "images": ["AURORA/data/something/frames/177176/first.jpg", "AURORA/data/something/frames/177176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cell phone behind clock"}]} +{"id": "000000109862", "images": ["AURORA/data/something/frames/110251/first.jpg", "AURORA/data/something/frames/110251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping power bank into shoes"}]} +{"id": "000000109863", "images": ["AURORA/data/something/frames/136736/first.jpg", "AURORA/data/something/frames/136736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair brush onto towel"}]} +{"id": "000000109864", "images": ["AURORA/data/something/frames/168331/first.jpg", "AURORA/data/something/frames/168331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chewing gums on the edge of a jbl so it is not supported and falls down"}]} +{"id": "000000109865", "images": ["AURORA/data/something/frames/217219/first.jpg", "AURORA/data/something/frames/217219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading cloth onto table"}]} +{"id": "000000109866", "images": ["AURORA/data/something/frames/29804/first.jpg", "AURORA/data/something/frames/29804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle into bagback"}]} +{"id": "000000109867", "images": ["AURORA/data/something/frames/51600/first.jpg", "AURORA/data/something/frames/51600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering toy idol"}]} +{"id": "000000109868", "images": ["AURORA/data/something/frames/108924/first.jpg", "AURORA/data/something/frames/108924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a straw out of a cup"}]} +{"id": "000000109869", "images": ["AURORA/data/something/frames/208297/first.jpg", "AURORA/data/something/frames/208297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle of rubbing alcohol upside down"}]} +{"id": "000000109870", "images": ["AURORA/data/something/frames/183468/first.jpg", "AURORA/data/something/frames/183468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sugarpot with toothpic"}]} +{"id": "000000109871", "images": ["AURORA/data/something/frames/32184/first.jpg", "AURORA/data/something/frames/32184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching a vacuum cleaner with your camera"}]} +{"id": "000000109872", "images": ["AURORA/data/something/frames/216847/first.jpg", "AURORA/data/something/frames/216847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000109873", "images": ["AURORA/data/something/frames/157532/first.jpg", "AURORA/data/something/frames/157532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling ram up"}]} +{"id": "000000109874", "images": ["AURORA/data/something/frames/114870/first.jpg", "AURORA/data/something/frames/114870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something upright on the table"}]} +{"id": "000000109875", "images": ["AURORA/data/something/frames/95419/first.jpg", "AURORA/data/something/frames/95419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a teaspoon out of a drawer"}]} +{"id": "000000109876", "images": ["AURORA/data/something/frames/73664/first.jpg", "AURORA/data/something/frames/73664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: small tube being deflected from jar"}]} +{"id": "000000109877", "images": ["AURORA/data/something/frames/169771/first.jpg", "AURORA/data/something/frames/169771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling calculator from left to right"}]} +{"id": "000000109878", "images": ["AURORA/data/something/frames/183987/first.jpg", "AURORA/data/something/frames/183987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into my mouth"}]} +{"id": "000000109879", "images": ["AURORA/data/something/frames/147830/first.jpg", "AURORA/data/something/frames/147830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charging cord into smartphone"}]} +{"id": "000000109880", "images": ["AURORA/data/something/frames/73286/first.jpg", "AURORA/data/something/frames/73286/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a tube into a bag"}]} +{"id": "000000109881", "images": ["AURORA/data/something/frames/149552/first.jpg", "AURORA/data/something/frames/149552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking box from floor"}]} +{"id": "000000109882", "images": ["AURORA/data/something/frames/166527/first.jpg", "AURORA/data/something/frames/166527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothpick into a cup"}]} +{"id": "000000109883", "images": ["AURORA/data/something/frames/108028/first.jpg", "AURORA/data/something/frames/108028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plate and banana away from each other"}]} +{"id": "000000109884", "images": ["AURORA/data/something/frames/99546/first.jpg", "AURORA/data/something/frames/99546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking screwdriver"}]} +{"id": "000000109885", "images": ["AURORA/data/something/frames/122321/first.jpg", "AURORA/data/something/frames/122321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding hat"}]} +{"id": "000000109886", "images": ["AURORA/data/something/frames/10622/first.jpg", "AURORA/data/something/frames/10622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching bicycle with your camera"}]} +{"id": "000000109887", "images": ["AURORA/data/something/frames/80770/first.jpg", "AURORA/data/something/frames/80770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a highlighter"}]} +{"id": "000000109888", "images": ["AURORA/data/something/frames/126237/first.jpg", "AURORA/data/something/frames/126237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toy truck from left to right"}]} +{"id": "000000109889", "images": ["AURORA/data/something/frames/6591/first.jpg", "AURORA/data/something/frames/6591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler next to glue stick"}]} +{"id": "000000109890", "images": ["AURORA/data/something/frames/209007/first.jpg", "AURORA/data/something/frames/209007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing granola bar from left to right"}]} +{"id": "000000109891", "images": ["AURORA/data/something/frames/24070/first.jpg", "AURORA/data/something/frames/24070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pant zip"}]} +{"id": "000000109892", "images": ["AURORA/data/something/frames/19426/first.jpg", "AURORA/data/something/frames/19426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) lid of bottle"}]} +{"id": "000000109893", "images": ["AURORA/data/something/frames/17011/first.jpg", "AURORA/data/something/frames/17011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on a surface"}]} +{"id": "000000109894", "images": ["AURORA/data/something/frames/184270/first.jpg", "AURORA/data/something/frames/184270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper"}]} +{"id": "000000109895", "images": ["AURORA/data/something/frames/69091/first.jpg", "AURORA/data/something/frames/69091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of matchbox"}]} +{"id": "000000109896", "images": ["AURORA/data/something/frames/19163/first.jpg", "AURORA/data/something/frames/19163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting boxes"}]} +{"id": "000000109897", "images": ["AURORA/data/something/frames/110137/first.jpg", "AURORA/data/something/frames/110137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball being deflected from wall"}]} +{"id": "000000109898", "images": ["AURORA/data/something/frames/134905/first.jpg", "AURORA/data/something/frames/134905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with muffin on it"}]} +{"id": "000000109899", "images": ["AURORA/data/something/frames/34102/first.jpg", "AURORA/data/something/frames/34102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109900", "images": ["AURORA/data/something/frames/171126/first.jpg", "AURORA/data/something/frames/171126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting essential oil bottle"}]} +{"id": "000000109901", "images": ["AURORA/data/something/frames/1700/first.jpg", "AURORA/data/something/frames/1700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with card"}]} +{"id": "000000109902", "images": ["AURORA/data/something/frames/210559/first.jpg", "AURORA/data/something/frames/210559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking purple balloon pump up"}]} +{"id": "000000109903", "images": ["AURORA/data/something/frames/113300/first.jpg", "AURORA/data/something/frames/113300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a beer can in front of a cup"}]} +{"id": "000000109904", "images": ["AURORA/data/something/frames/166831/first.jpg", "AURORA/data/something/frames/166831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) wash cloth wet until water comes out"}]} +{"id": "000000109905", "images": ["AURORA/data/something/frames/129391/first.jpg", "AURORA/data/something/frames/129391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tape dispenser and mouse away from each other"}]} +{"id": "000000109906", "images": ["AURORA/data/something/frames/8529/first.jpg", "AURORA/data/something/frames/8529/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000109907", "images": ["AURORA/data/something/frames/179626/first.jpg", "AURORA/data/something/frames/179626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box so that it almost falls off but doesn't"}]} +{"id": "000000109908", "images": ["AURORA/data/something/frames/154417/first.jpg", "AURORA/data/something/frames/154417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109909", "images": ["AURORA/data/something/frames/144787/first.jpg", "AURORA/data/something/frames/144787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing mobile into bag"}]} +{"id": "000000109910", "images": ["AURORA/data/something/frames/47357/first.jpg", "AURORA/data/something/frames/47357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a lighter up"}]} +{"id": "000000109911", "images": ["AURORA/data/something/frames/166452/first.jpg", "AURORA/data/something/frames/166452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cap to pen"}]} +{"id": "000000109912", "images": ["AURORA/data/something/frames/218843/first.jpg", "AURORA/data/something/frames/218843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding mat"}]} +{"id": "000000109913", "images": ["AURORA/data/something/frames/20462/first.jpg", "AURORA/data/something/frames/20462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy idol up"}]} +{"id": "000000109914", "images": ["AURORA/data/something/frames/37158/first.jpg", "AURORA/data/something/frames/37158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone up"}]} +{"id": "000000109915", "images": ["AURORA/data/something/frames/67465/first.jpg", "AURORA/data/something/frames/67465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking hat so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000109916", "images": ["AURORA/data/something/frames/172870/first.jpg", "AURORA/data/something/frames/172870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coin next to handkerchief"}]} +{"id": "000000109917", "images": ["AURORA/data/something/frames/38332/first.jpg", "AURORA/data/something/frames/38332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cable into bag"}]} +{"id": "000000109918", "images": ["AURORA/data/something/frames/143246/first.jpg", "AURORA/data/something/frames/143246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something similar on the table"}]} +{"id": "000000109919", "images": ["AURORA/data/something/frames/105257/first.jpg", "AURORA/data/something/frames/105257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a jug upside down"}]} +{"id": "000000109920", "images": ["AURORA/data/something/frames/14341/first.jpg", "AURORA/data/something/frames/14341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pencil holder over"}]} +{"id": "000000109921", "images": ["AURORA/data/something/frames/29244/first.jpg", "AURORA/data/something/frames/29244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting green water bottle on a surface"}]} +{"id": "000000109922", "images": ["AURORA/data/something/frames/141353/first.jpg", "AURORA/data/something/frames/141353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into tablet"}]} +{"id": "000000109923", "images": ["AURORA/data/something/frames/209666/first.jpg", "AURORA/data/something/frames/209666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming ad board"}]} +{"id": "000000109924", "images": ["AURORA/data/something/frames/171946/first.jpg", "AURORA/data/something/frames/171946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flash drive and lighter on the table"}]} +{"id": "000000109925", "images": ["AURORA/data/something/frames/39485/first.jpg", "AURORA/data/something/frames/39485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109926", "images": ["AURORA/data/something/frames/216966/first.jpg", "AURORA/data/something/frames/216966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening wallet"}]} +{"id": "000000109927", "images": ["AURORA/data/something/frames/11416/first.jpg", "AURORA/data/something/frames/11416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of beaker"}]} +{"id": "000000109928", "images": ["AURORA/data/something/frames/61575/first.jpg", "AURORA/data/something/frames/61575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into jack"}]} +{"id": "000000109929", "images": ["AURORA/data/something/frames/99989/first.jpg", "AURORA/data/something/frames/99989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking two small containers into a bigger one"}]} +{"id": "000000109930", "images": ["AURORA/data/something/frames/115014/first.jpg", "AURORA/data/something/frames/115014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a shirt"}]} +{"id": "000000109931", "images": ["AURORA/data/something/frames/148751/first.jpg", "AURORA/data/something/frames/148751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring grains onto small bottle"}]} +{"id": "000000109932", "images": ["AURORA/data/something/frames/46467/first.jpg", "AURORA/data/something/frames/46467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tin and tin away from each other"}]} +{"id": "000000109933", "images": ["AURORA/data/something/frames/896/first.jpg", "AURORA/data/something/frames/896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen, candle and lighter on the table"}]} +{"id": "000000109934", "images": ["AURORA/data/something/frames/97293/first.jpg", "AURORA/data/something/frames/97293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping usb wall adapter over"}]} +{"id": "000000109935", "images": ["AURORA/data/something/frames/144730/first.jpg", "AURORA/data/something/frames/144730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork onto cup"}]} +{"id": "000000109936", "images": ["AURORA/data/something/frames/116897/first.jpg", "AURORA/data/something/frames/116897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pincer up"}]} +{"id": "000000109937", "images": ["AURORA/data/something/frames/124638/first.jpg", "AURORA/data/something/frames/124638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109938", "images": ["AURORA/data/something/frames/191468/first.jpg", "AURORA/data/something/frames/191468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cord into drawer"}]} +{"id": "000000109939", "images": ["AURORA/data/something/frames/157786/first.jpg", "AURORA/data/something/frames/157786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000109940", "images": ["AURORA/data/something/frames/183879/first.jpg", "AURORA/data/something/frames/183879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000109941", "images": ["AURORA/data/something/frames/145627/first.jpg", "AURORA/data/something/frames/145627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cord into wall jack"}]} +{"id": "000000109942", "images": ["AURORA/data/something/frames/197913/first.jpg", "AURORA/data/something/frames/197913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one phone"}]} +{"id": "000000109943", "images": ["AURORA/data/something/frames/27545/first.jpg", "AURORA/data/something/frames/27545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving body spray bottle towards the camera"}]} +{"id": "000000109944", "images": ["AURORA/data/something/frames/193397/first.jpg", "AURORA/data/something/frames/193397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box up"}]} +{"id": "000000109945", "images": ["AURORA/data/something/frames/95575/first.jpg", "AURORA/data/something/frames/95575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a small jar closer to a big jar"}]} +{"id": "000000109946", "images": ["AURORA/data/something/frames/60523/first.jpg", "AURORA/data/something/frames/60523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a padlock away from a shoe"}]} +{"id": "000000109947", "images": ["AURORA/data/something/frames/50992/first.jpg", "AURORA/data/something/frames/50992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking green water bottle up"}]} +{"id": "000000109948", "images": ["AURORA/data/something/frames/99441/first.jpg", "AURORA/data/something/frames/99441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pencil with sheet"}]} +{"id": "000000109949", "images": ["AURORA/data/something/frames/44912/first.jpg", "AURORA/data/something/frames/44912/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000109950", "images": ["AURORA/data/something/frames/70174/first.jpg", "AURORA/data/something/frames/70174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a reusable grocery bag into its holder"}]} +{"id": "000000109951", "images": ["AURORA/data/something/frames/162511/first.jpg", "AURORA/data/something/frames/162511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling jar from left to right"}]} +{"id": "000000109952", "images": ["AURORA/data/something/frames/74448/first.jpg", "AURORA/data/something/frames/74448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bear next to chair"}]} +{"id": "000000109953", "images": ["AURORA/data/something/frames/58633/first.jpg", "AURORA/data/something/frames/58633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming notebook"}]} +{"id": "000000109954", "images": ["AURORA/data/something/frames/9172/first.jpg", "AURORA/data/something/frames/9172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle so that it almost falls off but doesn't"}]} +{"id": "000000109955", "images": ["AURORA/data/something/frames/28988/first.jpg", "AURORA/data/something/frames/28988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging speaker into laptop"}]} +{"id": "000000109956", "images": ["AURORA/data/something/frames/40467/first.jpg", "AURORA/data/something/frames/40467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000109957", "images": ["AURORA/data/something/frames/99688/first.jpg", "AURORA/data/something/frames/99688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching flowers with your camera"}]} +{"id": "000000109958", "images": ["AURORA/data/something/frames/170835/first.jpg", "AURORA/data/something/frames/170835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring beer into a mug"}]} +{"id": "000000109959", "images": ["AURORA/data/something/frames/214453/first.jpg", "AURORA/data/something/frames/214453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon on a surface"}]} +{"id": "000000109960", "images": ["AURORA/data/something/frames/13332/first.jpg", "AURORA/data/something/frames/13332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into plug socket"}]} +{"id": "000000109961", "images": ["AURORA/data/something/frames/20284/first.jpg", "AURORA/data/something/frames/20284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling poker chips up"}]} +{"id": "000000109962", "images": ["AURORA/data/something/frames/189961/first.jpg", "AURORA/data/something/frames/189961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flowers"}]} +{"id": "000000109963", "images": ["AURORA/data/something/frames/55425/first.jpg", "AURORA/data/something/frames/55425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cleaning cloth wet until water comes out"}]} +{"id": "000000109964", "images": ["AURORA/data/something/frames/191/first.jpg", "AURORA/data/something/frames/191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing bucket, revealing thread behind"}]} +{"id": "000000109965", "images": ["AURORA/data/something/frames/40084/first.jpg", "AURORA/data/something/frames/40084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling towels up"}]} +{"id": "000000109966", "images": ["AURORA/data/something/frames/158456/first.jpg", "AURORA/data/something/frames/158456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bowl down"}]} +{"id": "000000109967", "images": ["AURORA/data/something/frames/59578/first.jpg", "AURORA/data/something/frames/59578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a tv remote up"}]} +{"id": "000000109968", "images": ["AURORA/data/something/frames/185684/first.jpg", "AURORA/data/something/frames/185684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing chair from left to right"}]} +{"id": "000000109969", "images": ["AURORA/data/something/frames/167440/first.jpg", "AURORA/data/something/frames/167440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote with a magazine"}]} +{"id": "000000109970", "images": ["AURORA/data/something/frames/37272/first.jpg", "AURORA/data/something/frames/37272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle from left to right"}]} +{"id": "000000109971", "images": ["AURORA/data/something/frames/67293/first.jpg", "AURORA/data/something/frames/67293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting vegetable peeler"}]} +{"id": "000000109972", "images": ["AURORA/data/something/frames/77730/first.jpg", "AURORA/data/something/frames/77730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pencil case with a pen"}]} +{"id": "000000109973", "images": ["AURORA/data/something/frames/51253/first.jpg", "AURORA/data/something/frames/51253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a can of soda up"}]} +{"id": "000000109974", "images": ["AURORA/data/something/frames/118118/first.jpg", "AURORA/data/something/frames/118118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a shoe brush onto a box"}]} +{"id": "000000109975", "images": ["AURORA/data/something/frames/159354/first.jpg", "AURORA/data/something/frames/159354/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pistachio being deflected from mug"}]} +{"id": "000000109976", "images": ["AURORA/data/something/frames/116499/first.jpg", "AURORA/data/something/frames/116499/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of band so that it gets stretched"}]} +{"id": "000000109977", "images": ["AURORA/data/something/frames/151473/first.jpg", "AURORA/data/something/frames/151473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen up"}]} +{"id": "000000109978", "images": ["AURORA/data/something/frames/52704/first.jpg", "AURORA/data/something/frames/52704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling something from left to right"}]} +{"id": "000000109979", "images": ["AURORA/data/something/frames/215808/first.jpg", "AURORA/data/something/frames/215808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into cup"}]} +{"id": "000000109980", "images": ["AURORA/data/something/frames/36216/first.jpg", "AURORA/data/something/frames/36216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into plug socket"}]} +{"id": "000000109981", "images": ["AURORA/data/something/frames/214631/first.jpg", "AURORA/data/something/frames/214631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling tea onto napkin"}]} +{"id": "000000109982", "images": ["AURORA/data/something/frames/38907/first.jpg", "AURORA/data/something/frames/38907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with hat on it but not enough for it to slide down"}]} +{"id": "000000109983", "images": ["AURORA/data/something/frames/82000/first.jpg", "AURORA/data/something/frames/82000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing battery with pencil"}]} +{"id": "000000109984", "images": ["AURORA/data/something/frames/103694/first.jpg", "AURORA/data/something/frames/103694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming board"}]} +{"id": "000000109985", "images": ["AURORA/data/something/frames/13224/first.jpg", "AURORA/data/something/frames/13224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a paint brush on the edge of a table so it is not supported and falls down"}]} +{"id": "000000109986", "images": ["AURORA/data/something/frames/82410/first.jpg", "AURORA/data/something/frames/82410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with plastic scope"}]} +{"id": "000000109987", "images": ["AURORA/data/something/frames/60535/first.jpg", "AURORA/data/something/frames/60535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing leaf into two pieces"}]} +{"id": "000000109988", "images": ["AURORA/data/something/frames/65278/first.jpg", "AURORA/data/something/frames/65278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging guitar cable into amplifier"}]} +{"id": "000000109989", "images": ["AURORA/data/something/frames/141363/first.jpg", "AURORA/data/something/frames/141363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone and wristwatch away from each other"}]} +{"id": "000000109990", "images": ["AURORA/data/something/frames/146434/first.jpg", "AURORA/data/something/frames/146434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000109991", "images": ["AURORA/data/something/frames/134313/first.jpg", "AURORA/data/something/frames/134313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and can so they pass each other"}]} +{"id": "000000109992", "images": ["AURORA/data/something/frames/87489/first.jpg", "AURORA/data/something/frames/87489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming boay"}]} +{"id": "000000109993", "images": ["AURORA/data/something/frames/106988/first.jpg", "AURORA/data/something/frames/106988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a spray bottle over"}]} +{"id": "000000109994", "images": ["AURORA/data/something/frames/151140/first.jpg", "AURORA/data/something/frames/151140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling thermal cup from behind of laptop"}]} +{"id": "000000109995", "images": ["AURORA/data/something/frames/72890/first.jpg", "AURORA/data/something/frames/72890/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank up"}]} +{"id": "000000109996", "images": ["AURORA/data/something/frames/114754/first.jpg", "AURORA/data/something/frames/114754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cardboard so that it deforms"}]} +{"id": "000000109997", "images": ["AURORA/data/something/frames/159461/first.jpg", "AURORA/data/something/frames/159461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen out of box"}]} +{"id": "000000109998", "images": ["AURORA/data/something/frames/108710/first.jpg", "AURORA/data/something/frames/108710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring oil onto crust of bread"}]} +{"id": "000000109999", "images": ["AURORA/data/something/frames/33285/first.jpg", "AURORA/data/something/frames/33285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110000", "images": ["AURORA/data/something/frames/196239/first.jpg", "AURORA/data/something/frames/196239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling keys out of a lock"}]} +{"id": "000000110001", "images": ["AURORA/data/something/frames/182342/first.jpg", "AURORA/data/something/frames/182342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a case so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000110002", "images": ["AURORA/data/something/frames/139047/first.jpg", "AURORA/data/something/frames/139047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000110003", "images": ["AURORA/data/something/frames/110024/first.jpg", "AURORA/data/something/frames/110024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming radiator"}]} +{"id": "000000110004", "images": ["AURORA/data/something/frames/133827/first.jpg", "AURORA/data/something/frames/133827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with sandwich on it"}]} +{"id": "000000110005", "images": ["AURORA/data/something/frames/68610/first.jpg", "AURORA/data/something/frames/68610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a mouse from right to left"}]} +{"id": "000000110006", "images": ["AURORA/data/something/frames/138183/first.jpg", "AURORA/data/something/frames/138183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cd case on a surface"}]} +{"id": "000000110007", "images": ["AURORA/data/something/frames/84890/first.jpg", "AURORA/data/something/frames/84890/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming car"}]} +{"id": "000000110008", "images": ["AURORA/data/something/frames/16715/first.jpg", "AURORA/data/something/frames/16715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering garlic"}]} +{"id": "000000110009", "images": ["AURORA/data/something/frames/124861/first.jpg", "AURORA/data/something/frames/124861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pencil away from a salt shaker"}]} +{"id": "000000110010", "images": ["AURORA/data/something/frames/23384/first.jpg", "AURORA/data/something/frames/23384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing reciept into two pieces"}]} +{"id": "000000110011", "images": ["AURORA/data/something/frames/59942/first.jpg", "AURORA/data/something/frames/59942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone underneath camera"}]} +{"id": "000000110012", "images": ["AURORA/data/something/frames/204806/first.jpg", "AURORA/data/something/frames/204806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering something with something"}]} +{"id": "000000110013", "images": ["AURORA/data/something/frames/24244/first.jpg", "AURORA/data/something/frames/24244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting white wall with hand"}]} +{"id": "000000110014", "images": ["AURORA/data/something/frames/120997/first.jpg", "AURORA/data/something/frames/120997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mug from jeep bonnet"}]} +{"id": "000000110015", "images": ["AURORA/data/something/frames/90675/first.jpg", "AURORA/data/something/frames/90675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of eraser putty so that it gets stretched"}]} +{"id": "000000110016", "images": ["AURORA/data/something/frames/176452/first.jpg", "AURORA/data/something/frames/176452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sharpener out of pencil case"}]} +{"id": "000000110017", "images": ["AURORA/data/something/frames/70567/first.jpg", "AURORA/data/something/frames/70567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bowl next to glass"}]} +{"id": "000000110018", "images": ["AURORA/data/something/frames/123505/first.jpg", "AURORA/data/something/frames/123505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110019", "images": ["AURORA/data/something/frames/92206/first.jpg", "AURORA/data/something/frames/92206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of cups so the stack collapses"}]} +{"id": "000000110020", "images": ["AURORA/data/something/frames/81169/first.jpg", "AURORA/data/something/frames/81169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard into two pieces"}]} +{"id": "000000110021", "images": ["AURORA/data/something/frames/16561/first.jpg", "AURORA/data/something/frames/16561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tray with a glass on it"}]} +{"id": "000000110022", "images": ["AURORA/data/something/frames/178029/first.jpg", "AURORA/data/something/frames/178029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting passport on a surface"}]} +{"id": "000000110023", "images": ["AURORA/data/something/frames/40232/first.jpg", "AURORA/data/something/frames/40232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling battery from behind of mug"}]} +{"id": "000000110024", "images": ["AURORA/data/something/frames/181729/first.jpg", "AURORA/data/something/frames/181729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pencil holder with a yo-yo over, so the yo-yo falls out"}]} +{"id": "000000110025", "images": ["AURORA/data/something/frames/150002/first.jpg", "AURORA/data/something/frames/150002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming hair dryer"}]} +{"id": "000000110026", "images": ["AURORA/data/something/frames/121116/first.jpg", "AURORA/data/something/frames/121116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110027", "images": ["AURORA/data/something/frames/165618/first.jpg", "AURORA/data/something/frames/165618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) keyboard of laptop"}]} +{"id": "000000110028", "images": ["AURORA/data/something/frames/198297/first.jpg", "AURORA/data/something/frames/198297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching violin with your camera"}]} +{"id": "000000110029", "images": ["AURORA/data/something/frames/188257/first.jpg", "AURORA/data/something/frames/188257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing punching machine from right to left"}]} +{"id": "000000110030", "images": ["AURORA/data/something/frames/5720/first.jpg", "AURORA/data/something/frames/5720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming green headlight"}]} +{"id": "000000110031", "images": ["AURORA/data/something/frames/46974/first.jpg", "AURORA/data/something/frames/46974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a drawing on paper"}]} +{"id": "000000110032", "images": ["AURORA/data/something/frames/123773/first.jpg", "AURORA/data/something/frames/123773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of hair band so that it gets stretched"}]} +{"id": "000000110033", "images": ["AURORA/data/something/frames/167461/first.jpg", "AURORA/data/something/frames/167461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000110034", "images": ["AURORA/data/something/frames/45220/first.jpg", "AURORA/data/something/frames/45220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shirt"}]} +{"id": "000000110035", "images": ["AURORA/data/something/frames/64759/first.jpg", "AURORA/data/something/frames/64759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) purple sock wet until water comes out"}]} +{"id": "000000110036", "images": ["AURORA/data/something/frames/143387/first.jpg", "AURORA/data/something/frames/143387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box from right to left"}]} +{"id": "000000110037", "images": ["AURORA/data/something/frames/105081/first.jpg", "AURORA/data/something/frames/105081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110038", "images": ["AURORA/data/something/frames/187165/first.jpg", "AURORA/data/something/frames/187165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 4 envelopes onto tables"}]} +{"id": "000000110039", "images": ["AURORA/data/something/frames/13564/first.jpg", "AURORA/data/something/frames/13564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto an absorbent cloth"}]} +{"id": "000000110040", "images": ["AURORA/data/something/frames/142592/first.jpg", "AURORA/data/something/frames/142592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bag of gum upside down"}]} +{"id": "000000110041", "images": ["AURORA/data/something/frames/35146/first.jpg", "AURORA/data/something/frames/35146/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000110042", "images": ["AURORA/data/something/frames/66803/first.jpg", "AURORA/data/something/frames/66803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000110043", "images": ["AURORA/data/something/frames/131951/first.jpg", "AURORA/data/something/frames/131951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting watch, keys and pen on the table"}]} +{"id": "000000110044", "images": ["AURORA/data/something/frames/217791/first.jpg", "AURORA/data/something/frames/217791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of bricks so the stack collapses"}]} +{"id": "000000110045", "images": ["AURORA/data/something/frames/45123/first.jpg", "AURORA/data/something/frames/45123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing white sheet of paper into two pieces"}]} +{"id": "000000110046", "images": ["AURORA/data/something/frames/52129/first.jpg", "AURORA/data/something/frames/52129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000110047", "images": ["AURORA/data/something/frames/26164/first.jpg", "AURORA/data/something/frames/26164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening tablet box"}]} +{"id": "000000110048", "images": ["AURORA/data/something/frames/216700/first.jpg", "AURORA/data/something/frames/216700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting glasses with pencil"}]} +{"id": "000000110049", "images": ["AURORA/data/something/frames/102120/first.jpg", "AURORA/data/something/frames/102120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a drill on a surface"}]} +{"id": "000000110050", "images": ["AURORA/data/something/frames/157184/first.jpg", "AURORA/data/something/frames/157184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting helmet behind a flower"}]} +{"id": "000000110051", "images": ["AURORA/data/something/frames/204754/first.jpg", "AURORA/data/something/frames/204754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000110052", "images": ["AURORA/data/something/frames/194603/first.jpg", "AURORA/data/something/frames/194603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a wire out of many wire looking like objects"}]} +{"id": "000000110053", "images": ["AURORA/data/something/frames/108781/first.jpg", "AURORA/data/something/frames/108781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with glass tumbler on it"}]} +{"id": "000000110054", "images": ["AURORA/data/something/frames/18688/first.jpg", "AURORA/data/something/frames/18688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cart so that it almost falls off but doesn't"}]} +{"id": "000000110055", "images": ["AURORA/data/something/frames/161635/first.jpg", "AURORA/data/something/frames/161635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto a table"}]} +{"id": "000000110056", "images": ["AURORA/data/something/frames/106819/first.jpg", "AURORA/data/something/frames/106819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup so that it almost falls off but doesn't"}]} +{"id": "000000110057", "images": ["AURORA/data/something/frames/26652/first.jpg", "AURORA/data/something/frames/26652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a book into a bookshelf"}]} +{"id": "000000110058", "images": ["AURORA/data/something/frames/215715/first.jpg", "AURORA/data/something/frames/215715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a perfume bottle over"}]} +{"id": "000000110059", "images": ["AURORA/data/something/frames/143023/first.jpg", "AURORA/data/something/frames/143023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a card"}]} +{"id": "000000110060", "images": ["AURORA/data/something/frames/64203/first.jpg", "AURORA/data/something/frames/64203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bangle from a jar"}]} +{"id": "000000110061", "images": ["AURORA/data/something/frames/133886/first.jpg", "AURORA/data/something/frames/133886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keyboard onto backpack"}]} +{"id": "000000110062", "images": ["AURORA/data/something/frames/144827/first.jpg", "AURORA/data/something/frames/144827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching scotch tape with your camera"}]} +{"id": "000000110063", "images": ["AURORA/data/something/frames/109244/first.jpg", "AURORA/data/something/frames/109244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing sunglasses, revealing microscope behind"}]} +{"id": "000000110064", "images": ["AURORA/data/something/frames/147797/first.jpg", "AURORA/data/something/frames/147797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000110065", "images": ["AURORA/data/something/frames/92107/first.jpg", "AURORA/data/something/frames/92107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering legs"}]} +{"id": "000000110066", "images": ["AURORA/data/something/frames/149504/first.jpg", "AURORA/data/something/frames/149504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon"}]} +{"id": "000000110067", "images": ["AURORA/data/something/frames/86593/first.jpg", "AURORA/data/something/frames/86593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on a surface"}]} +{"id": "000000110068", "images": ["AURORA/data/something/frames/134585/first.jpg", "AURORA/data/something/frames/134585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000110069", "images": ["AURORA/data/something/frames/83119/first.jpg", "AURORA/data/something/frames/83119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a pink sticky note"}]} +{"id": "000000110070", "images": ["AURORA/data/something/frames/19923/first.jpg", "AURORA/data/something/frames/19923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 books onto couch"}]} +{"id": "000000110071", "images": ["AURORA/data/something/frames/48521/first.jpg", "AURORA/data/something/frames/48521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bowl up"}]} +{"id": "000000110072", "images": ["AURORA/data/something/frames/204109/first.jpg", "AURORA/data/something/frames/204109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into adaptor but pulling it right out as you remove your hand"}]} +{"id": "000000110073", "images": ["AURORA/data/something/frames/210262/first.jpg", "AURORA/data/something/frames/210262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) paper wet until water comes out"}]} +{"id": "000000110074", "images": ["AURORA/data/something/frames/150840/first.jpg", "AURORA/data/something/frames/150840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110075", "images": ["AURORA/data/something/frames/38197/first.jpg", "AURORA/data/something/frames/38197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping water bottle over"}]} +{"id": "000000110076", "images": ["AURORA/data/something/frames/70903/first.jpg", "AURORA/data/something/frames/70903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching receipt to card"}]} +{"id": "000000110077", "images": ["AURORA/data/something/frames/45943/first.jpg", "AURORA/data/something/frames/45943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a glass over"}]} +{"id": "000000110078", "images": ["AURORA/data/something/frames/141189/first.jpg", "AURORA/data/something/frames/141189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a box from behind of a stack"}]} +{"id": "000000110079", "images": ["AURORA/data/something/frames/172124/first.jpg", "AURORA/data/something/frames/172124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pencil and a pen closer to each other"}]} +{"id": "000000110080", "images": ["AURORA/data/something/frames/197794/first.jpg", "AURORA/data/something/frames/197794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sponze, purse and plate on the table"}]} +{"id": "000000110081", "images": ["AURORA/data/something/frames/93989/first.jpg", "AURORA/data/something/frames/93989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clothes peg next to mug"}]} +{"id": "000000110082", "images": ["AURORA/data/something/frames/172139/first.jpg", "AURORA/data/something/frames/172139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a container away from another one"}]} +{"id": "000000110083", "images": ["AURORA/data/something/frames/127048/first.jpg", "AURORA/data/something/frames/127048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bottle cap"}]} +{"id": "000000110084", "images": ["AURORA/data/something/frames/141557/first.jpg", "AURORA/data/something/frames/141557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy bullet pack and toy bullet pack closer to each other"}]} +{"id": "000000110085", "images": ["AURORA/data/something/frames/183995/first.jpg", "AURORA/data/something/frames/183995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tube from right to left"}]} +{"id": "000000110086", "images": ["AURORA/data/something/frames/164903/first.jpg", "AURORA/data/something/frames/164903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming jacket"}]} +{"id": "000000110087", "images": ["AURORA/data/something/frames/137162/first.jpg", "AURORA/data/something/frames/137162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of clothe"}]} +{"id": "000000110088", "images": ["AURORA/data/something/frames/208864/first.jpg", "AURORA/data/something/frames/208864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching iron with your camera"}]} +{"id": "000000110089", "images": ["AURORA/data/something/frames/75149/first.jpg", "AURORA/data/something/frames/75149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water from cup into a glass, but missing so it spills next to it"}]} +{"id": "000000110090", "images": ["AURORA/data/something/frames/97970/first.jpg", "AURORA/data/something/frames/97970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000110091", "images": ["AURORA/data/something/frames/19248/first.jpg", "AURORA/data/something/frames/19248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110092", "images": ["AURORA/data/something/frames/95029/first.jpg", "AURORA/data/something/frames/95029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding unfolding tissue"}]} +{"id": "000000110093", "images": ["AURORA/data/something/frames/26526/first.jpg", "AURORA/data/something/frames/26526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket but pulling it right out as you remove your hand"}]} +{"id": "000000110094", "images": ["AURORA/data/something/frames/219923/first.jpg", "AURORA/data/something/frames/219923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a painting brush"}]} +{"id": "000000110095", "images": ["AURORA/data/something/frames/137577/first.jpg", "AURORA/data/something/frames/137577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing car so that it almost falls off but doesn't"}]} +{"id": "000000110096", "images": ["AURORA/data/something/frames/89751/first.jpg", "AURORA/data/something/frames/89751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of a desk"}]} +{"id": "000000110097", "images": ["AURORA/data/something/frames/141632/first.jpg", "AURORA/data/something/frames/141632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin into a box"}]} +{"id": "000000110098", "images": ["AURORA/data/something/frames/186663/first.jpg", "AURORA/data/something/frames/186663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110099", "images": ["AURORA/data/something/frames/177999/first.jpg", "AURORA/data/something/frames/177999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding earphone"}]} +{"id": "000000110100", "images": ["AURORA/data/something/frames/185813/first.jpg", "AURORA/data/something/frames/185813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending hanger so that it deforms"}]} +{"id": "000000110101", "images": ["AURORA/data/something/frames/102812/first.jpg", "AURORA/data/something/frames/102812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving helmet and helmet so they pass each other"}]} +{"id": "000000110102", "images": ["AURORA/data/something/frames/67800/first.jpg", "AURORA/data/something/frames/67800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering fan with blanket"}]} +{"id": "000000110103", "images": ["AURORA/data/something/frames/52309/first.jpg", "AURORA/data/something/frames/52309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) cover of book"}]} +{"id": "000000110104", "images": ["AURORA/data/something/frames/146501/first.jpg", "AURORA/data/something/frames/146501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottle"}]} +{"id": "000000110105", "images": ["AURORA/data/something/frames/41043/first.jpg", "AURORA/data/something/frames/41043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000110106", "images": ["AURORA/data/something/frames/68709/first.jpg", "AURORA/data/something/frames/68709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000110107", "images": ["AURORA/data/something/frames/156198/first.jpg", "AURORA/data/something/frames/156198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) a side of a pitcher"}]} +{"id": "000000110108", "images": ["AURORA/data/something/frames/207720/first.jpg", "AURORA/data/something/frames/207720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink toothbrush case from left to right"}]} +{"id": "000000110109", "images": ["AURORA/data/something/frames/108212/first.jpg", "AURORA/data/something/frames/108212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a comb away from a box"}]} +{"id": "000000110110", "images": ["AURORA/data/something/frames/210620/first.jpg", "AURORA/data/something/frames/210620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing receipt just a little bit"}]} +{"id": "000000110111", "images": ["AURORA/data/something/frames/41278/first.jpg", "AURORA/data/something/frames/41278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a note just a little bit"}]} +{"id": "000000110112", "images": ["AURORA/data/something/frames/9586/first.jpg", "AURORA/data/something/frames/9586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking watch up"}]} +{"id": "000000110113", "images": ["AURORA/data/something/frames/212950/first.jpg", "AURORA/data/something/frames/212950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall plug but pulling it right out as you remove your hand"}]} +{"id": "000000110114", "images": ["AURORA/data/something/frames/111262/first.jpg", "AURORA/data/something/frames/111262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black umbrella from right to left"}]} +{"id": "000000110115", "images": ["AURORA/data/something/frames/92734/first.jpg", "AURORA/data/something/frames/92734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sharpener behind sticky note"}]} +{"id": "000000110116", "images": ["AURORA/data/something/frames/168058/first.jpg", "AURORA/data/something/frames/168058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000110117", "images": ["AURORA/data/something/frames/180443/first.jpg", "AURORA/data/something/frames/180443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending sheet so that it deforms"}]} +{"id": "000000110118", "images": ["AURORA/data/something/frames/122055/first.jpg", "AURORA/data/something/frames/122055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a calculator out of a bag"}]} +{"id": "000000110119", "images": ["AURORA/data/something/frames/143655/first.jpg", "AURORA/data/something/frames/143655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon out of cup"}]} +{"id": "000000110120", "images": ["AURORA/data/something/frames/41637/first.jpg", "AURORA/data/something/frames/41637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bunny doll in front of books"}]} +{"id": "000000110121", "images": ["AURORA/data/something/frames/141956/first.jpg", "AURORA/data/something/frames/141956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen closer to duster"}]} +{"id": "000000110122", "images": ["AURORA/data/something/frames/213817/first.jpg", "AURORA/data/something/frames/213817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a tomato"}]} +{"id": "000000110123", "images": ["AURORA/data/something/frames/183166/first.jpg", "AURORA/data/something/frames/183166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a chopstick until it breaks"}]} +{"id": "000000110124", "images": ["AURORA/data/something/frames/27147/first.jpg", "AURORA/data/something/frames/27147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving potato and potato closer to each other"}]} +{"id": "000000110125", "images": ["AURORA/data/something/frames/47782/first.jpg", "AURORA/data/something/frames/47782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a plugging but pulling it right out as you remove your hand"}]} +{"id": "000000110126", "images": ["AURORA/data/something/frames/152540/first.jpg", "AURORA/data/something/frames/152540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000110127", "images": ["AURORA/data/something/frames/1602/first.jpg", "AURORA/data/something/frames/1602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000110128", "images": ["AURORA/data/something/frames/162322/first.jpg", "AURORA/data/something/frames/162322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping fish into bowl of water"}]} +{"id": "000000110129", "images": ["AURORA/data/something/frames/15258/first.jpg", "AURORA/data/something/frames/15258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda into glass"}]} +{"id": "000000110130", "images": ["AURORA/data/something/frames/140639/first.jpg", "AURORA/data/something/frames/140639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking the keys out of the glass"}]} +{"id": "000000110131", "images": ["AURORA/data/something/frames/170734/first.jpg", "AURORA/data/something/frames/170734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening packet"}]} +{"id": "000000110132", "images": ["AURORA/data/something/frames/138140/first.jpg", "AURORA/data/something/frames/138140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cleaner off of floor"}]} +{"id": "000000110133", "images": ["AURORA/data/something/frames/175186/first.jpg", "AURORA/data/something/frames/175186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling one tealight candle from right to left"}]} +{"id": "000000110134", "images": ["AURORA/data/something/frames/124705/first.jpg", "AURORA/data/something/frames/124705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bear doll with toothbrush"}]} +{"id": "000000110135", "images": ["AURORA/data/something/frames/42/first.jpg", "AURORA/data/something/frames/42/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin underneath a card"}]} +{"id": "000000110136", "images": ["AURORA/data/something/frames/134668/first.jpg", "AURORA/data/something/frames/134668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping liquid off of table"}]} +{"id": "000000110137", "images": ["AURORA/data/something/frames/154686/first.jpg", "AURORA/data/something/frames/154686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 dice onto book"}]} +{"id": "000000110138", "images": ["AURORA/data/something/frames/142506/first.jpg", "AURORA/data/something/frames/142506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000110139", "images": ["AURORA/data/something/frames/24859/first.jpg", "AURORA/data/something/frames/24859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb in front of cup"}]} +{"id": "000000110140", "images": ["AURORA/data/something/frames/148983/first.jpg", "AURORA/data/something/frames/148983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into mug"}]} +{"id": "000000110141", "images": ["AURORA/data/something/frames/51677/first.jpg", "AURORA/data/something/frames/51677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000110142", "images": ["AURORA/data/something/frames/85848/first.jpg", "AURORA/data/something/frames/85848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen to other pens"}]} +{"id": "000000110143", "images": ["AURORA/data/something/frames/96872/first.jpg", "AURORA/data/something/frames/96872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone into plug"}]} +{"id": "000000110144", "images": ["AURORA/data/something/frames/126312/first.jpg", "AURORA/data/something/frames/126312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming bottle"}]} +{"id": "000000110145", "images": ["AURORA/data/something/frames/139250/first.jpg", "AURORA/data/something/frames/139250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening mail box"}]} +{"id": "000000110146", "images": ["AURORA/data/something/frames/17480/first.jpg", "AURORA/data/something/frames/17480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110147", "images": ["AURORA/data/something/frames/7963/first.jpg", "AURORA/data/something/frames/7963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen into a box"}]} +{"id": "000000110148", "images": ["AURORA/data/something/frames/13421/first.jpg", "AURORA/data/something/frames/13421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet and phone away from each other"}]} +{"id": "000000110149", "images": ["AURORA/data/something/frames/115954/first.jpg", "AURORA/data/something/frames/115954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto towel"}]} +{"id": "000000110150", "images": ["AURORA/data/something/frames/140496/first.jpg", "AURORA/data/something/frames/140496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker onto envelope"}]} +{"id": "000000110151", "images": ["AURORA/data/something/frames/17537/first.jpg", "AURORA/data/something/frames/17537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cup behind cup"}]} +{"id": "000000110152", "images": ["AURORA/data/something/frames/91544/first.jpg", "AURORA/data/something/frames/91544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing torch from left to right"}]} +{"id": "000000110153", "images": ["AURORA/data/something/frames/96366/first.jpg", "AURORA/data/something/frames/96366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000110154", "images": ["AURORA/data/something/frames/150592/first.jpg", "AURORA/data/something/frames/150592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000110155", "images": ["AURORA/data/something/frames/171980/first.jpg", "AURORA/data/something/frames/171980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking remote up"}]} +{"id": "000000110156", "images": ["AURORA/data/something/frames/180603/first.jpg", "AURORA/data/something/frames/180603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling powder onto floor"}]} +{"id": "000000110157", "images": ["AURORA/data/something/frames/124791/first.jpg", "AURORA/data/something/frames/124791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of pen"}]} +{"id": "000000110158", "images": ["AURORA/data/something/frames/9680/first.jpg", "AURORA/data/something/frames/9680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into a computer"}]} +{"id": "000000110159", "images": ["AURORA/data/something/frames/25891/first.jpg", "AURORA/data/something/frames/25891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching sofa chair with your camera"}]} +{"id": "000000110160", "images": ["AURORA/data/something/frames/186803/first.jpg", "AURORA/data/something/frames/186803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a lid with a paper heart"}]} +{"id": "000000110161", "images": ["AURORA/data/something/frames/191939/first.jpg", "AURORA/data/something/frames/191939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a card with other cards on the table"}]} +{"id": "000000110162", "images": ["AURORA/data/something/frames/9398/first.jpg", "AURORA/data/something/frames/9398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering rc with cushion"}]} +{"id": "000000110163", "images": ["AURORA/data/something/frames/184837/first.jpg", "AURORA/data/something/frames/184837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pouch on a surface"}]} +{"id": "000000110164", "images": ["AURORA/data/something/frames/40204/first.jpg", "AURORA/data/something/frames/40204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter closer to lighter"}]} +{"id": "000000110165", "images": ["AURORA/data/something/frames/212411/first.jpg", "AURORA/data/something/frames/212411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cell phone and paper closer to each other"}]} +{"id": "000000110166", "images": ["AURORA/data/something/frames/146539/first.jpg", "AURORA/data/something/frames/146539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup and a box closer to each other"}]} +{"id": "000000110167", "images": ["AURORA/data/something/frames/111489/first.jpg", "AURORA/data/something/frames/111489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a stappler with a paper"}]} +{"id": "000000110168", "images": ["AURORA/data/something/frames/10436/first.jpg", "AURORA/data/something/frames/10436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pencil from right to left"}]} +{"id": "000000110169", "images": ["AURORA/data/something/frames/1736/first.jpg", "AURORA/data/something/frames/1736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering an ipad with a shirt"}]} +{"id": "000000110170", "images": ["AURORA/data/something/frames/43158/first.jpg", "AURORA/data/something/frames/43158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass onto letters"}]} +{"id": "000000110171", "images": ["AURORA/data/something/frames/85527/first.jpg", "AURORA/data/something/frames/85527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box from left to right"}]} +{"id": "000000110172", "images": ["AURORA/data/something/frames/149932/first.jpg", "AURORA/data/something/frames/149932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting binder with calculator on it"}]} +{"id": "000000110173", "images": ["AURORA/data/something/frames/24411/first.jpg", "AURORA/data/something/frames/24411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe up"}]} +{"id": "000000110174", "images": ["AURORA/data/something/frames/73583/first.jpg", "AURORA/data/something/frames/73583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cup behind text books"}]} +{"id": "000000110175", "images": ["AURORA/data/something/frames/138650/first.jpg", "AURORA/data/something/frames/138650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping eye drops onto table"}]} +{"id": "000000110176", "images": ["AURORA/data/something/frames/60678/first.jpg", "AURORA/data/something/frames/60678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something up"}]} +{"id": "000000110177", "images": ["AURORA/data/something/frames/91685/first.jpg", "AURORA/data/something/frames/91685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pencil up"}]} +{"id": "000000110178", "images": ["AURORA/data/something/frames/204731/first.jpg", "AURORA/data/something/frames/204731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass until it overflows"}]} +{"id": "000000110179", "images": ["AURORA/data/something/frames/218259/first.jpg", "AURORA/data/something/frames/218259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking black play cards up"}]} +{"id": "000000110180", "images": ["AURORA/data/something/frames/169155/first.jpg", "AURORA/data/something/frames/169155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something behind something"}]} +{"id": "000000110181", "images": ["AURORA/data/something/frames/111239/first.jpg", "AURORA/data/something/frames/111239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping chocolate onto desk"}]} +{"id": "000000110182", "images": ["AURORA/data/something/frames/54671/first.jpg", "AURORA/data/something/frames/54671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning empty cup upside down"}]} +{"id": "000000110183", "images": ["AURORA/data/something/frames/136553/first.jpg", "AURORA/data/something/frames/136553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into power socket"}]} +{"id": "000000110184", "images": ["AURORA/data/something/frames/26326/first.jpg", "AURORA/data/something/frames/26326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book behind bag"}]} +{"id": "000000110185", "images": ["AURORA/data/something/frames/170618/first.jpg", "AURORA/data/something/frames/170618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail polish up"}]} +{"id": "000000110186", "images": ["AURORA/data/something/frames/72604/first.jpg", "AURORA/data/something/frames/72604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000110187", "images": ["AURORA/data/something/frames/36607/first.jpg", "AURORA/data/something/frames/36607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding washcloth"}]} +{"id": "000000110188", "images": ["AURORA/data/something/frames/140413/first.jpg", "AURORA/data/something/frames/140413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting matchbox behind mirror"}]} +{"id": "000000110189", "images": ["AURORA/data/something/frames/75462/first.jpg", "AURORA/data/something/frames/75462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shirt in front of basket"}]} +{"id": "000000110190", "images": ["AURORA/data/something/frames/6339/first.jpg", "AURORA/data/something/frames/6339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green purse from right to left"}]} +{"id": "000000110191", "images": ["AURORA/data/something/frames/26800/first.jpg", "AURORA/data/something/frames/26800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring wine into glass"}]} +{"id": "000000110192", "images": ["AURORA/data/something/frames/12679/first.jpg", "AURORA/data/something/frames/12679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving belt down"}]} +{"id": "000000110193", "images": ["AURORA/data/something/frames/92034/first.jpg", "AURORA/data/something/frames/92034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000110194", "images": ["AURORA/data/something/frames/194392/first.jpg", "AURORA/data/something/frames/194392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug, marker and stapler on the table"}]} +{"id": "000000110195", "images": ["AURORA/data/something/frames/70931/first.jpg", "AURORA/data/something/frames/70931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000110196", "images": ["AURORA/data/something/frames/166303/first.jpg", "AURORA/data/something/frames/166303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coffee cup next to a salt shaker"}]} +{"id": "000000110197", "images": ["AURORA/data/something/frames/26649/first.jpg", "AURORA/data/something/frames/26649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book up"}]} +{"id": "000000110198", "images": ["AURORA/data/something/frames/30935/first.jpg", "AURORA/data/something/frames/30935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a post it note just a little bit"}]} +{"id": "000000110199", "images": ["AURORA/data/something/frames/6750/first.jpg", "AURORA/data/something/frames/6750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket but pulling it right out as you remove your hand"}]} +{"id": "000000110200", "images": ["AURORA/data/something/frames/203631/first.jpg", "AURORA/data/something/frames/203631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a teddy panda bear upside down"}]} +{"id": "000000110201", "images": ["AURORA/data/something/frames/191790/first.jpg", "AURORA/data/something/frames/191790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope into two pieces"}]} +{"id": "000000110202", "images": ["AURORA/data/something/frames/77534/first.jpg", "AURORA/data/something/frames/77534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a tissue paper into two pieces"}]} +{"id": "000000110203", "images": ["AURORA/data/something/frames/44432/first.jpg", "AURORA/data/something/frames/44432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a soda can of many soda cans on a table"}]} +{"id": "000000110204", "images": ["AURORA/data/something/frames/200285/first.jpg", "AURORA/data/something/frames/200285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending torch so that it deforms"}]} +{"id": "000000110205", "images": ["AURORA/data/something/frames/162979/first.jpg", "AURORA/data/something/frames/162979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) a page of a dictionary"}]} +{"id": "000000110206", "images": ["AURORA/data/something/frames/208496/first.jpg", "AURORA/data/something/frames/208496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping something over"}]} +{"id": "000000110207", "images": ["AURORA/data/something/frames/154456/first.jpg", "AURORA/data/something/frames/154456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving magnet closer to magnet"}]} +{"id": "000000110208", "images": ["AURORA/data/something/frames/165393/first.jpg", "AURORA/data/something/frames/165393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tv remote with plastic bag"}]} +{"id": "000000110209", "images": ["AURORA/data/something/frames/12868/first.jpg", "AURORA/data/something/frames/12868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker from left to right"}]} +{"id": "000000110210", "images": ["AURORA/data/something/frames/172134/first.jpg", "AURORA/data/something/frames/172134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000110211", "images": ["AURORA/data/something/frames/150548/first.jpg", "AURORA/data/something/frames/150548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into tablet but pulling it right out as you remove your hand"}]} +{"id": "000000110212", "images": ["AURORA/data/something/frames/140238/first.jpg", "AURORA/data/something/frames/140238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key from left to right"}]} +{"id": "000000110213", "images": ["AURORA/data/something/frames/179067/first.jpg", "AURORA/data/something/frames/179067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking flower up"}]} +{"id": "000000110214", "images": ["AURORA/data/something/frames/177104/first.jpg", "AURORA/data/something/frames/177104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coaster in front of pillow"}]} +{"id": "000000110215", "images": ["AURORA/data/something/frames/22739/first.jpg", "AURORA/data/something/frames/22739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel away from towel"}]} +{"id": "000000110216", "images": ["AURORA/data/something/frames/74748/first.jpg", "AURORA/data/something/frames/74748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) washcloth wet until water comes out"}]} +{"id": "000000110217", "images": ["AURORA/data/something/frames/104278/first.jpg", "AURORA/data/something/frames/104278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing calculator from left to right"}]} +{"id": "000000110218", "images": ["AURORA/data/something/frames/98030/first.jpg", "AURORA/data/something/frames/98030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a marker being deflected from a candle"}]} +{"id": "000000110219", "images": ["AURORA/data/something/frames/57815/first.jpg", "AURORA/data/something/frames/57815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen into cup"}]} +{"id": "000000110220", "images": ["AURORA/data/something/frames/89640/first.jpg", "AURORA/data/something/frames/89640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding newspaper"}]} +{"id": "000000110221", "images": ["AURORA/data/something/frames/76888/first.jpg", "AURORA/data/something/frames/76888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from chapstick with your camera"}]} +{"id": "000000110222", "images": ["AURORA/data/something/frames/93317/first.jpg", "AURORA/data/something/frames/93317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a notecard into two pieces"}]} +{"id": "000000110223", "images": ["AURORA/data/something/frames/143119/first.jpg", "AURORA/data/something/frames/143119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tissue box on a surface"}]} +{"id": "000000110224", "images": ["AURORA/data/something/frames/70751/first.jpg", "AURORA/data/something/frames/70751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a notbook up"}]} +{"id": "000000110225", "images": ["AURORA/data/something/frames/64503/first.jpg", "AURORA/data/something/frames/64503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling notebooks up"}]} +{"id": "000000110226", "images": ["AURORA/data/something/frames/26498/first.jpg", "AURORA/data/something/frames/26498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a bean bag so that it gets stretched"}]} +{"id": "000000110227", "images": ["AURORA/data/something/frames/17636/first.jpg", "AURORA/data/something/frames/17636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping sellotape onto box"}]} +{"id": "000000110228", "images": ["AURORA/data/something/frames/118132/first.jpg", "AURORA/data/something/frames/118132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking an apple so that it falls over"}]} +{"id": "000000110229", "images": ["AURORA/data/something/frames/61276/first.jpg", "AURORA/data/something/frames/61276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking towel so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000110230", "images": ["AURORA/data/something/frames/29304/first.jpg", "AURORA/data/something/frames/29304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning box upside down"}]} +{"id": "000000110231", "images": ["AURORA/data/something/frames/155006/first.jpg", "AURORA/data/something/frames/155006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with cloth"}]} +{"id": "000000110232", "images": ["AURORA/data/something/frames/136227/first.jpg", "AURORA/data/something/frames/136227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting carom coin onto powder tin"}]} +{"id": "000000110233", "images": ["AURORA/data/something/frames/180950/first.jpg", "AURORA/data/something/frames/180950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming bottle"}]} +{"id": "000000110234", "images": ["AURORA/data/something/frames/5082/first.jpg", "AURORA/data/something/frames/5082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending paper clip so that it deforms"}]} +{"id": "000000110235", "images": ["AURORA/data/something/frames/65210/first.jpg", "AURORA/data/something/frames/65210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking something so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000110236", "images": ["AURORA/data/something/frames/180227/first.jpg", "AURORA/data/something/frames/180227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into cardboard"}]} +{"id": "000000110237", "images": ["AURORA/data/something/frames/191201/first.jpg", "AURORA/data/something/frames/191201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tourch next to rubix cube"}]} +{"id": "000000110238", "images": ["AURORA/data/something/frames/93640/first.jpg", "AURORA/data/something/frames/93640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing towel into box"}]} +{"id": "000000110239", "images": ["AURORA/data/something/frames/166061/first.jpg", "AURORA/data/something/frames/166061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone behind pillow"}]} +{"id": "000000110240", "images": ["AURORA/data/something/frames/116084/first.jpg", "AURORA/data/something/frames/116084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending something until it breaks"}]} +{"id": "000000110241", "images": ["AURORA/data/something/frames/163174/first.jpg", "AURORA/data/something/frames/163174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking screw out of bottle"}]} +{"id": "000000110242", "images": ["AURORA/data/something/frames/57433/first.jpg", "AURORA/data/something/frames/57433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug"}]} +{"id": "000000110243", "images": ["AURORA/data/something/frames/63108/first.jpg", "AURORA/data/something/frames/63108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into a cup, but missing so it spills next to it"}]} +{"id": "000000110244", "images": ["AURORA/data/something/frames/186252/first.jpg", "AURORA/data/something/frames/186252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup into cup holder"}]} +{"id": "000000110245", "images": ["AURORA/data/something/frames/32312/first.jpg", "AURORA/data/something/frames/32312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000110246", "images": ["AURORA/data/something/frames/25513/first.jpg", "AURORA/data/something/frames/25513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book out of cupboard"}]} +{"id": "000000110247", "images": ["AURORA/data/something/frames/189910/first.jpg", "AURORA/data/something/frames/189910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from a chair with your camera"}]} +{"id": "000000110248", "images": ["AURORA/data/something/frames/50968/first.jpg", "AURORA/data/something/frames/50968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000110249", "images": ["AURORA/data/something/frames/115399/first.jpg", "AURORA/data/something/frames/115399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a calculator in front of the pen"}]} +{"id": "000000110250", "images": ["AURORA/data/something/frames/135479/first.jpg", "AURORA/data/something/frames/135479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cream off of furniture"}]} +{"id": "000000110251", "images": ["AURORA/data/something/frames/119565/first.jpg", "AURORA/data/something/frames/119565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle in front of dustbin"}]} +{"id": "000000110252", "images": ["AURORA/data/something/frames/116330/first.jpg", "AURORA/data/something/frames/116330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book next to bag"}]} +{"id": "000000110253", "images": ["AURORA/data/something/frames/51527/first.jpg", "AURORA/data/something/frames/51527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass until it overflows"}]} +{"id": "000000110254", "images": ["AURORA/data/something/frames/123522/first.jpg", "AURORA/data/something/frames/123522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000110255", "images": ["AURORA/data/something/frames/179843/first.jpg", "AURORA/data/something/frames/179843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000110256", "images": ["AURORA/data/something/frames/183079/first.jpg", "AURORA/data/something/frames/183079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000110257", "images": ["AURORA/data/something/frames/67977/first.jpg", "AURORA/data/something/frames/67977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book in front of a candle"}]} +{"id": "000000110258", "images": ["AURORA/data/something/frames/122018/first.jpg", "AURORA/data/something/frames/122018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sharpener into rack"}]} +{"id": "000000110259", "images": ["AURORA/data/something/frames/155915/first.jpg", "AURORA/data/something/frames/155915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a covered bottle over"}]} +{"id": "000000110260", "images": ["AURORA/data/something/frames/197391/first.jpg", "AURORA/data/something/frames/197391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a closet"}]} +{"id": "000000110261", "images": ["AURORA/data/something/frames/201350/first.jpg", "AURORA/data/something/frames/201350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping piece into glass"}]} +{"id": "000000110262", "images": ["AURORA/data/something/frames/110104/first.jpg", "AURORA/data/something/frames/110104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pan from right to left"}]} +{"id": "000000110263", "images": ["AURORA/data/something/frames/198243/first.jpg", "AURORA/data/something/frames/198243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a laptop"}]} +{"id": "000000110264", "images": ["AURORA/data/something/frames/96049/first.jpg", "AURORA/data/something/frames/96049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup behind mug"}]} +{"id": "000000110265", "images": ["AURORA/data/something/frames/181428/first.jpg", "AURORA/data/something/frames/181428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging electric cord into power outlet but pulling it right out as you remove your hand"}]} +{"id": "000000110266", "images": ["AURORA/data/something/frames/213934/first.jpg", "AURORA/data/something/frames/213934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching plug to machine"}]} +{"id": "000000110267", "images": ["AURORA/data/something/frames/74596/first.jpg", "AURORA/data/something/frames/74596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone towards the camera"}]} +{"id": "000000110268", "images": ["AURORA/data/something/frames/171227/first.jpg", "AURORA/data/something/frames/171227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen behind notebook"}]} +{"id": "000000110269", "images": ["AURORA/data/something/frames/152197/first.jpg", "AURORA/data/something/frames/152197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000110270", "images": ["AURORA/data/something/frames/175715/first.jpg", "AURORA/data/something/frames/175715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a phone with a book"}]} +{"id": "000000110271", "images": ["AURORA/data/something/frames/211485/first.jpg", "AURORA/data/something/frames/211485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110272", "images": ["AURORA/data/something/frames/23379/first.jpg", "AURORA/data/something/frames/23379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: crayon colliding with crayon and both are being deflected"}]} +{"id": "000000110273", "images": ["AURORA/data/something/frames/53038/first.jpg", "AURORA/data/something/frames/53038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into cup"}]} +{"id": "000000110274", "images": ["AURORA/data/something/frames/125681/first.jpg", "AURORA/data/something/frames/125681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching toy idol with your camera"}]} +{"id": "000000110275", "images": ["AURORA/data/something/frames/94633/first.jpg", "AURORA/data/something/frames/94633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming car"}]} +{"id": "000000110276", "images": ["AURORA/data/something/frames/114056/first.jpg", "AURORA/data/something/frames/114056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening door"}]} +{"id": "000000110277", "images": ["AURORA/data/something/frames/92923/first.jpg", "AURORA/data/something/frames/92923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 5 books"}]} +{"id": "000000110278", "images": ["AURORA/data/something/frames/153645/first.jpg", "AURORA/data/something/frames/153645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda out of a bottle"}]} +{"id": "000000110279", "images": ["AURORA/data/something/frames/67430/first.jpg", "AURORA/data/something/frames/67430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of plastic jar"}]} +{"id": "000000110280", "images": ["AURORA/data/something/frames/70696/first.jpg", "AURORA/data/something/frames/70696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping chocolate in front of glass"}]} +{"id": "000000110281", "images": ["AURORA/data/something/frames/107291/first.jpg", "AURORA/data/something/frames/107291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book up"}]} +{"id": "000000110282", "images": ["AURORA/data/something/frames/33666/first.jpg", "AURORA/data/something/frames/33666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of soap"}]} +{"id": "000000110283", "images": ["AURORA/data/something/frames/192925/first.jpg", "AURORA/data/something/frames/192925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting canned food on a surface"}]} +{"id": "000000110284", "images": ["AURORA/data/something/frames/19618/first.jpg", "AURORA/data/something/frames/19618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming hat"}]} +{"id": "000000110285", "images": ["AURORA/data/something/frames/152476/first.jpg", "AURORA/data/something/frames/152476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading peanut butter onto rice cake"}]} +{"id": "000000110286", "images": ["AURORA/data/something/frames/123620/first.jpg", "AURORA/data/something/frames/123620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping salsa up with chip"}]} +{"id": "000000110287", "images": ["AURORA/data/something/frames/133624/first.jpg", "AURORA/data/something/frames/133624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling scissor from left to right"}]} +{"id": "000000110288", "images": ["AURORA/data/something/frames/41547/first.jpg", "AURORA/data/something/frames/41547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking three pieces of paper towel"}]} +{"id": "000000110289", "images": ["AURORA/data/something/frames/162652/first.jpg", "AURORA/data/something/frames/162652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a battery with a letter"}]} +{"id": "000000110290", "images": ["AURORA/data/something/frames/28203/first.jpg", "AURORA/data/something/frames/28203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting thread spool behind jar"}]} +{"id": "000000110291", "images": ["AURORA/data/something/frames/55035/first.jpg", "AURORA/data/something/frames/55035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting deo behind book"}]} +{"id": "000000110292", "images": ["AURORA/data/something/frames/100492/first.jpg", "AURORA/data/something/frames/100492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tape into candle"}]} +{"id": "000000110293", "images": ["AURORA/data/something/frames/95811/first.jpg", "AURORA/data/something/frames/95811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling chord out of vacuum cleaner"}]} +{"id": "000000110294", "images": ["AURORA/data/something/frames/87284/first.jpg", "AURORA/data/something/frames/87284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping plastic cup with table tennis balls over, so table tennis balls falls out"}]} +{"id": "000000110295", "images": ["AURORA/data/something/frames/200106/first.jpg", "AURORA/data/something/frames/200106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into switch but pulling it right out as you remove your hand"}]} +{"id": "000000110296", "images": ["AURORA/data/something/frames/3752/first.jpg", "AURORA/data/something/frames/3752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper onto paper"}]} +{"id": "000000110297", "images": ["AURORA/data/something/frames/74763/first.jpg", "AURORA/data/something/frames/74763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting table with paperweight"}]} +{"id": "000000110298", "images": ["AURORA/data/something/frames/68127/first.jpg", "AURORA/data/something/frames/68127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing metal box with highlighter"}]} +{"id": "000000110299", "images": ["AURORA/data/something/frames/86174/first.jpg", "AURORA/data/something/frames/86174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin next to a remote"}]} +{"id": "000000110300", "images": ["AURORA/data/something/frames/177367/first.jpg", "AURORA/data/something/frames/177367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110301", "images": ["AURORA/data/something/frames/82861/first.jpg", "AURORA/data/something/frames/82861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto a glass"}]} +{"id": "000000110302", "images": ["AURORA/data/something/frames/163187/first.jpg", "AURORA/data/something/frames/163187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a box away from the spray bottle"}]} +{"id": "000000110303", "images": ["AURORA/data/something/frames/58794/first.jpg", "AURORA/data/something/frames/58794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a balloon into a bowl"}]} +{"id": "000000110304", "images": ["AURORA/data/something/frames/143700/first.jpg", "AURORA/data/something/frames/143700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power plug into socket"}]} +{"id": "000000110305", "images": ["AURORA/data/something/frames/202503/first.jpg", "AURORA/data/something/frames/202503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shirt into basket"}]} +{"id": "000000110306", "images": ["AURORA/data/something/frames/102746/first.jpg", "AURORA/data/something/frames/102746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet, luggage tag and box on the table"}]} +{"id": "000000110307", "images": ["AURORA/data/something/frames/54813/first.jpg", "AURORA/data/something/frames/54813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking box up"}]} +{"id": "000000110308", "images": ["AURORA/data/something/frames/4205/first.jpg", "AURORA/data/something/frames/4205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a book onto a table"}]} +{"id": "000000110309", "images": ["AURORA/data/something/frames/207296/first.jpg", "AURORA/data/something/frames/207296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen next to box"}]} +{"id": "000000110310", "images": ["AURORA/data/something/frames/214030/first.jpg", "AURORA/data/something/frames/214030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall plug but pulling it right out as you remove your hand"}]} +{"id": "000000110311", "images": ["AURORA/data/something/frames/177027/first.jpg", "AURORA/data/something/frames/177027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bottle"}]} +{"id": "000000110312", "images": ["AURORA/data/something/frames/65710/first.jpg", "AURORA/data/something/frames/65710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping a smiley face off of a whiteboard"}]} +{"id": "000000110313", "images": ["AURORA/data/something/frames/203633/first.jpg", "AURORA/data/something/frames/203633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping an ecig onto the floor"}]} +{"id": "000000110314", "images": ["AURORA/data/something/frames/130699/first.jpg", "AURORA/data/something/frames/130699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a thermos on the table on its side, not upright"}]} +{"id": "000000110315", "images": ["AURORA/data/something/frames/152272/first.jpg", "AURORA/data/something/frames/152272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into power socket but pulling it right out as you remove your hand"}]} +{"id": "000000110316", "images": ["AURORA/data/something/frames/152698/first.jpg", "AURORA/data/something/frames/152698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking an orange up"}]} +{"id": "000000110317", "images": ["AURORA/data/something/frames/113865/first.jpg", "AURORA/data/something/frames/113865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into socket"}]} +{"id": "000000110318", "images": ["AURORA/data/something/frames/218954/first.jpg", "AURORA/data/something/frames/218954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a highlighter out of a pencil-case"}]} +{"id": "000000110319", "images": ["AURORA/data/something/frames/75649/first.jpg", "AURORA/data/something/frames/75649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting slipper underneath chair"}]} +{"id": "000000110320", "images": ["AURORA/data/something/frames/126698/first.jpg", "AURORA/data/something/frames/126698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling stapler from right to left"}]} +{"id": "000000110321", "images": ["AURORA/data/something/frames/59470/first.jpg", "AURORA/data/something/frames/59470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping container with coffee grounds over, so coffee falls out"}]} +{"id": "000000110322", "images": ["AURORA/data/something/frames/196117/first.jpg", "AURORA/data/something/frames/196117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000110323", "images": ["AURORA/data/something/frames/186862/first.jpg", "AURORA/data/something/frames/186862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a toy car"}]} +{"id": "000000110324", "images": ["AURORA/data/something/frames/166344/first.jpg", "AURORA/data/something/frames/166344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping flour off of bowl"}]} +{"id": "000000110325", "images": ["AURORA/data/something/frames/52922/first.jpg", "AURORA/data/something/frames/52922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto floor"}]} +{"id": "000000110326", "images": ["AURORA/data/something/frames/163835/first.jpg", "AURORA/data/something/frames/163835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving knife and fork away from each other"}]} +{"id": "000000110327", "images": ["AURORA/data/something/frames/53320/first.jpg", "AURORA/data/something/frames/53320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wristwatch and phone closer to each other"}]} +{"id": "000000110328", "images": ["AURORA/data/something/frames/79758/first.jpg", "AURORA/data/something/frames/79758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming bike"}]} +{"id": "000000110329", "images": ["AURORA/data/something/frames/113782/first.jpg", "AURORA/data/something/frames/113782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000110330", "images": ["AURORA/data/something/frames/81621/first.jpg", "AURORA/data/something/frames/81621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening container"}]} +{"id": "000000110331", "images": ["AURORA/data/something/frames/120367/first.jpg", "AURORA/data/something/frames/120367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red toy car onto battery"}]} +{"id": "000000110332", "images": ["AURORA/data/something/frames/122669/first.jpg", "AURORA/data/something/frames/122669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker onto a slanted surface but it doesn't glide down"}]} +{"id": "000000110333", "images": ["AURORA/data/something/frames/202652/first.jpg", "AURORA/data/something/frames/202652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet"}]} +{"id": "000000110334", "images": ["AURORA/data/something/frames/82961/first.jpg", "AURORA/data/something/frames/82961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cards and paper closer to each other"}]} +{"id": "000000110335", "images": ["AURORA/data/something/frames/101934/first.jpg", "AURORA/data/something/frames/101934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin into a jar"}]} +{"id": "000000110336", "images": ["AURORA/data/something/frames/209071/first.jpg", "AURORA/data/something/frames/209071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking water bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000110337", "images": ["AURORA/data/something/frames/37797/first.jpg", "AURORA/data/something/frames/37797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a banana and a pomengranate closer to each other"}]} +{"id": "000000110338", "images": ["AURORA/data/something/frames/183666/first.jpg", "AURORA/data/something/frames/183666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning ink bottle upside down"}]} +{"id": "000000110339", "images": ["AURORA/data/something/frames/87956/first.jpg", "AURORA/data/something/frames/87956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottled water in front of nail cutter"}]} +{"id": "000000110340", "images": ["AURORA/data/something/frames/39021/first.jpg", "AURORA/data/something/frames/39021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving magnet up"}]} +{"id": "000000110341", "images": ["AURORA/data/something/frames/13646/first.jpg", "AURORA/data/something/frames/13646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving little jar and little jar away from each other"}]} +{"id": "000000110342", "images": ["AURORA/data/something/frames/76647/first.jpg", "AURORA/data/something/frames/76647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle, toy and perfume bottle on the table"}]} +{"id": "000000110343", "images": ["AURORA/data/something/frames/5853/first.jpg", "AURORA/data/something/frames/5853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a card so that it almost falls off but doesn't"}]} +{"id": "000000110344", "images": ["AURORA/data/something/frames/1425/first.jpg", "AURORA/data/something/frames/1425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering light bulb with napkin"}]} +{"id": "000000110345", "images": ["AURORA/data/something/frames/143589/first.jpg", "AURORA/data/something/frames/143589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring something into something"}]} +{"id": "000000110346", "images": ["AURORA/data/something/frames/217149/first.jpg", "AURORA/data/something/frames/217149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cereal off of bed"}]} +{"id": "000000110347", "images": ["AURORA/data/something/frames/146248/first.jpg", "AURORA/data/something/frames/146248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping an envelope in front of a remote"}]} +{"id": "000000110348", "images": ["AURORA/data/something/frames/102218/first.jpg", "AURORA/data/something/frames/102218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cabinet"}]} +{"id": "000000110349", "images": ["AURORA/data/something/frames/153067/first.jpg", "AURORA/data/something/frames/153067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110350", "images": ["AURORA/data/something/frames/44152/first.jpg", "AURORA/data/something/frames/44152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a fork on it until it starts sliding down"}]} +{"id": "000000110351", "images": ["AURORA/data/something/frames/4427/first.jpg", "AURORA/data/something/frames/4427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a napkin"}]} +{"id": "000000110352", "images": ["AURORA/data/something/frames/87208/first.jpg", "AURORA/data/something/frames/87208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ear plug carrying case in front of a water bottle"}]} +{"id": "000000110353", "images": ["AURORA/data/something/frames/69702/first.jpg", "AURORA/data/something/frames/69702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling brown bracelet from right to left"}]} +{"id": "000000110354", "images": ["AURORA/data/something/frames/93814/first.jpg", "AURORA/data/something/frames/93814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote away from coaster"}]} +{"id": "000000110355", "images": ["AURORA/data/something/frames/20649/first.jpg", "AURORA/data/something/frames/20649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering comb with plate"}]} +{"id": "000000110356", "images": ["AURORA/data/something/frames/24451/first.jpg", "AURORA/data/something/frames/24451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing glass, revealing highlighter behind"}]} +{"id": "000000110357", "images": ["AURORA/data/something/frames/89805/first.jpg", "AURORA/data/something/frames/89805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000110358", "images": ["AURORA/data/something/frames/183051/first.jpg", "AURORA/data/something/frames/183051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle upright on the table"}]} +{"id": "000000110359", "images": ["AURORA/data/something/frames/193487/first.jpg", "AURORA/data/something/frames/193487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging adapter into socket"}]} +{"id": "000000110360", "images": ["AURORA/data/something/frames/166475/first.jpg", "AURORA/data/something/frames/166475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching dogs with your camera"}]} +{"id": "000000110361", "images": ["AURORA/data/something/frames/127108/first.jpg", "AURORA/data/something/frames/127108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000110362", "images": ["AURORA/data/something/frames/43079/first.jpg", "AURORA/data/something/frames/43079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lotion upright on the table"}]} +{"id": "000000110363", "images": ["AURORA/data/something/frames/17878/first.jpg", "AURORA/data/something/frames/17878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing something into something"}]} +{"id": "000000110364", "images": ["AURORA/data/something/frames/20824/first.jpg", "AURORA/data/something/frames/20824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto plate"}]} +{"id": "000000110365", "images": ["AURORA/data/something/frames/107292/first.jpg", "AURORA/data/something/frames/107292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker onto scale"}]} +{"id": "000000110366", "images": ["AURORA/data/something/frames/81792/first.jpg", "AURORA/data/something/frames/81792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto alovera shrub"}]} +{"id": "000000110367", "images": ["AURORA/data/something/frames/187032/first.jpg", "AURORA/data/something/frames/187032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000110368", "images": ["AURORA/data/something/frames/169730/first.jpg", "AURORA/data/something/frames/169730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000110369", "images": ["AURORA/data/something/frames/77230/first.jpg", "AURORA/data/something/frames/77230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a container with soap in it over, so soap falls out"}]} +{"id": "000000110370", "images": ["AURORA/data/something/frames/94882/first.jpg", "AURORA/data/something/frames/94882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting rubix cube into cookie box"}]} +{"id": "000000110371", "images": ["AURORA/data/something/frames/111202/first.jpg", "AURORA/data/something/frames/111202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) cover of plastic box"}]} +{"id": "000000110372", "images": ["AURORA/data/something/frames/169328/first.jpg", "AURORA/data/something/frames/169328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing empty treat bar wrap from right to left"}]} +{"id": "000000110373", "images": ["AURORA/data/something/frames/112554/first.jpg", "AURORA/data/something/frames/112554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cell from left to right"}]} +{"id": "000000110374", "images": ["AURORA/data/something/frames/80963/first.jpg", "AURORA/data/something/frames/80963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a bottle"}]} +{"id": "000000110375", "images": ["AURORA/data/something/frames/106417/first.jpg", "AURORA/data/something/frames/106417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin into a plastic bag"}]} +{"id": "000000110376", "images": ["AURORA/data/something/frames/216066/first.jpg", "AURORA/data/something/frames/216066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mobile phone from car dashboard"}]} +{"id": "000000110377", "images": ["AURORA/data/something/frames/61773/first.jpg", "AURORA/data/something/frames/61773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bowls down"}]} +{"id": "000000110378", "images": ["AURORA/data/something/frames/120935/first.jpg", "AURORA/data/something/frames/120935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling green headlight from right to left"}]} +{"id": "000000110379", "images": ["AURORA/data/something/frames/211963/first.jpg", "AURORA/data/something/frames/211963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping cat litter up with a scoop"}]} +{"id": "000000110380", "images": ["AURORA/data/something/frames/18322/first.jpg", "AURORA/data/something/frames/18322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wipe onto box"}]} +{"id": "000000110381", "images": ["AURORA/data/something/frames/52138/first.jpg", "AURORA/data/something/frames/52138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching toy with your camera"}]} +{"id": "000000110382", "images": ["AURORA/data/something/frames/142509/first.jpg", "AURORA/data/something/frames/142509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone with paper"}]} +{"id": "000000110383", "images": ["AURORA/data/something/frames/161170/first.jpg", "AURORA/data/something/frames/161170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into computer"}]} +{"id": "000000110384", "images": ["AURORA/data/something/frames/139218/first.jpg", "AURORA/data/something/frames/139218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling pens behind a case"}]} +{"id": "000000110385", "images": ["AURORA/data/something/frames/178579/first.jpg", "AURORA/data/something/frames/178579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000110386", "images": ["AURORA/data/something/frames/106135/first.jpg", "AURORA/data/something/frames/106135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening door"}]} +{"id": "000000110387", "images": ["AURORA/data/something/frames/117714/first.jpg", "AURORA/data/something/frames/117714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000110388", "images": ["AURORA/data/something/frames/99519/first.jpg", "AURORA/data/something/frames/99519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting binder clips next to a cup"}]} +{"id": "000000110389", "images": ["AURORA/data/something/frames/113585/first.jpg", "AURORA/data/something/frames/113585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000110390", "images": ["AURORA/data/something/frames/127897/first.jpg", "AURORA/data/something/frames/127897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving knife and fork away from each other"}]} +{"id": "000000110391", "images": ["AURORA/data/something/frames/72452/first.jpg", "AURORA/data/something/frames/72452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toothpaste from right to left"}]} +{"id": "000000110392", "images": ["AURORA/data/something/frames/69441/first.jpg", "AURORA/data/something/frames/69441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding drawstring bag"}]} +{"id": "000000110393", "images": ["AURORA/data/something/frames/5746/first.jpg", "AURORA/data/something/frames/5746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cotton filling into pillow"}]} +{"id": "000000110394", "images": ["AURORA/data/something/frames/120180/first.jpg", "AURORA/data/something/frames/120180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a smartphone on a surface"}]} +{"id": "000000110395", "images": ["AURORA/data/something/frames/155415/first.jpg", "AURORA/data/something/frames/155415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle into paper bin"}]} +{"id": "000000110396", "images": ["AURORA/data/something/frames/21664/first.jpg", "AURORA/data/something/frames/21664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book from right to left"}]} +{"id": "000000110397", "images": ["AURORA/data/something/frames/20588/first.jpg", "AURORA/data/something/frames/20588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dictionary on the edge of pencil box so it is not supported and falls down"}]} +{"id": "000000110398", "images": ["AURORA/data/something/frames/6127/first.jpg", "AURORA/data/something/frames/6127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin behind a shoe brush"}]} +{"id": "000000110399", "images": ["AURORA/data/something/frames/74828/first.jpg", "AURORA/data/something/frames/74828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting charger adapter on a surface"}]} +{"id": "000000110400", "images": ["AURORA/data/something/frames/29569/first.jpg", "AURORA/data/something/frames/29569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming audio sistem"}]} +{"id": "000000110401", "images": ["AURORA/data/something/frames/67146/first.jpg", "AURORA/data/something/frames/67146/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a chopstick until it breaks"}]} +{"id": "000000110402", "images": ["AURORA/data/something/frames/79814/first.jpg", "AURORA/data/something/frames/79814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a matchstick onto a comb"}]} +{"id": "000000110403", "images": ["AURORA/data/something/frames/59723/first.jpg", "AURORA/data/something/frames/59723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming tv"}]} +{"id": "000000110404", "images": ["AURORA/data/something/frames/162736/first.jpg", "AURORA/data/something/frames/162736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from left to right"}]} +{"id": "000000110405", "images": ["AURORA/data/something/frames/112291/first.jpg", "AURORA/data/something/frames/112291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting glass up completely without letting it drop down"}]} +{"id": "000000110406", "images": ["AURORA/data/something/frames/110025/first.jpg", "AURORA/data/something/frames/110025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching tape to paper"}]} +{"id": "000000110407", "images": ["AURORA/data/something/frames/204475/first.jpg", "AURORA/data/something/frames/204475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging pocket bible out of blanket"}]} +{"id": "000000110408", "images": ["AURORA/data/something/frames/20620/first.jpg", "AURORA/data/something/frames/20620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110409", "images": ["AURORA/data/something/frames/169138/first.jpg", "AURORA/data/something/frames/169138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup away from a book"}]} +{"id": "000000110410", "images": ["AURORA/data/something/frames/36087/first.jpg", "AURORA/data/something/frames/36087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming pill bottle"}]} +{"id": "000000110411", "images": ["AURORA/data/something/frames/56259/first.jpg", "AURORA/data/something/frames/56259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing blue colour spectacle box with red spoon"}]} +{"id": "000000110412", "images": ["AURORA/data/something/frames/151271/first.jpg", "AURORA/data/something/frames/151271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging pendrive into usb port"}]} +{"id": "000000110413", "images": ["AURORA/data/something/frames/150758/first.jpg", "AURORA/data/something/frames/150758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bowl into plate"}]} +{"id": "000000110414", "images": ["AURORA/data/something/frames/115040/first.jpg", "AURORA/data/something/frames/115040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting rubix cube in front of battery"}]} +{"id": "000000110415", "images": ["AURORA/data/something/frames/54423/first.jpg", "AURORA/data/something/frames/54423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000110416", "images": ["AURORA/data/something/frames/99450/first.jpg", "AURORA/data/something/frames/99450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 black toy wheels onto yellow note"}]} +{"id": "000000110417", "images": ["AURORA/data/something/frames/108469/first.jpg", "AURORA/data/something/frames/108469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white badge from right to left"}]} +{"id": "000000110418", "images": ["AURORA/data/something/frames/174209/first.jpg", "AURORA/data/something/frames/174209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging pendrive into laptop"}]} +{"id": "000000110419", "images": ["AURORA/data/something/frames/162798/first.jpg", "AURORA/data/something/frames/162798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soda and box away from each other"}]} +{"id": "000000110420", "images": ["AURORA/data/something/frames/148462/first.jpg", "AURORA/data/something/frames/148462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lotion closer to flask"}]} +{"id": "000000110421", "images": ["AURORA/data/something/frames/73284/first.jpg", "AURORA/data/something/frames/73284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking chalk out of box of chalk"}]} +{"id": "000000110422", "images": ["AURORA/data/something/frames/204524/first.jpg", "AURORA/data/something/frames/204524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a plate"}]} +{"id": "000000110423", "images": ["AURORA/data/something/frames/100896/first.jpg", "AURORA/data/something/frames/100896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting box with note"}]} +{"id": "000000110424", "images": ["AURORA/data/something/frames/156235/first.jpg", "AURORA/data/something/frames/156235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wooden pice colliding with other wooden piece and both are being deflected"}]} +{"id": "000000110425", "images": ["AURORA/data/something/frames/59778/first.jpg", "AURORA/data/something/frames/59778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping tamper over"}]} +{"id": "000000110426", "images": ["AURORA/data/something/frames/55394/first.jpg", "AURORA/data/something/frames/55394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving small statue away from the camera"}]} +{"id": "000000110427", "images": ["AURORA/data/something/frames/180028/first.jpg", "AURORA/data/something/frames/180028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a phone with a blanket"}]} +{"id": "000000110428", "images": ["AURORA/data/something/frames/123240/first.jpg", "AURORA/data/something/frames/123240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 bowls"}]} +{"id": "000000110429", "images": ["AURORA/data/something/frames/209640/first.jpg", "AURORA/data/something/frames/209640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue paper into plastic bag"}]} +{"id": "000000110430", "images": ["AURORA/data/something/frames/210932/first.jpg", "AURORA/data/something/frames/210932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000110431", "images": ["AURORA/data/something/frames/115545/first.jpg", "AURORA/data/something/frames/115545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup"}]} +{"id": "000000110432", "images": ["AURORA/data/something/frames/144689/first.jpg", "AURORA/data/something/frames/144689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110433", "images": ["AURORA/data/something/frames/83822/first.jpg", "AURORA/data/something/frames/83822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving purple container down"}]} +{"id": "000000110434", "images": ["AURORA/data/something/frames/152813/first.jpg", "AURORA/data/something/frames/152813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pencil from left to right"}]} +{"id": "000000110435", "images": ["AURORA/data/something/frames/90056/first.jpg", "AURORA/data/something/frames/90056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book and bottle closer to each other"}]} +{"id": "000000110436", "images": ["AURORA/data/something/frames/46853/first.jpg", "AURORA/data/something/frames/46853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bangles with leaf"}]} +{"id": "000000110437", "images": ["AURORA/data/something/frames/77924/first.jpg", "AURORA/data/something/frames/77924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000110438", "images": ["AURORA/data/something/frames/76627/first.jpg", "AURORA/data/something/frames/76627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling shirt out of bag"}]} +{"id": "000000110439", "images": ["AURORA/data/something/frames/171064/first.jpg", "AURORA/data/something/frames/171064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pen into plastic cup"}]} +{"id": "000000110440", "images": ["AURORA/data/something/frames/123377/first.jpg", "AURORA/data/something/frames/123377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a dishcloth into a small cup"}]} +{"id": "000000110441", "images": ["AURORA/data/something/frames/7635/first.jpg", "AURORA/data/something/frames/7635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of table"}]} +{"id": "000000110442", "images": ["AURORA/data/something/frames/168143/first.jpg", "AURORA/data/something/frames/168143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors closer to hair brush"}]} +{"id": "000000110443", "images": ["AURORA/data/something/frames/211216/first.jpg", "AURORA/data/something/frames/211216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing book"}]} +{"id": "000000110444", "images": ["AURORA/data/something/frames/88503/first.jpg", "AURORA/data/something/frames/88503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour something into something, but missing so it spills next to it"}]} +{"id": "000000110445", "images": ["AURORA/data/something/frames/191932/first.jpg", "AURORA/data/something/frames/191932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming black remote"}]} +{"id": "000000110446", "images": ["AURORA/data/something/frames/149435/first.jpg", "AURORA/data/something/frames/149435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000110447", "images": ["AURORA/data/something/frames/15177/first.jpg", "AURORA/data/something/frames/15177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting white cup and red cup on the table"}]} +{"id": "000000110448", "images": ["AURORA/data/something/frames/81202/first.jpg", "AURORA/data/something/frames/81202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting glass with pinecone on it"}]} +{"id": "000000110449", "images": ["AURORA/data/something/frames/134958/first.jpg", "AURORA/data/something/frames/134958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling containers up"}]} +{"id": "000000110450", "images": ["AURORA/data/something/frames/67876/first.jpg", "AURORA/data/something/frames/67876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000110451", "images": ["AURORA/data/something/frames/86392/first.jpg", "AURORA/data/something/frames/86392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a dish towel"}]} +{"id": "000000110452", "images": ["AURORA/data/something/frames/180793/first.jpg", "AURORA/data/something/frames/180793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle up"}]} +{"id": "000000110453", "images": ["AURORA/data/something/frames/14401/first.jpg", "AURORA/data/something/frames/14401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a sticky notes pad so that it almost falls off but doesn't"}]} +{"id": "000000110454", "images": ["AURORA/data/something/frames/131943/first.jpg", "AURORA/data/something/frames/131943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from behind of box"}]} +{"id": "000000110455", "images": ["AURORA/data/something/frames/189978/first.jpg", "AURORA/data/something/frames/189978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming bushes"}]} +{"id": "000000110456", "images": ["AURORA/data/something/frames/133625/first.jpg", "AURORA/data/something/frames/133625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with onion on it"}]} +{"id": "000000110457", "images": ["AURORA/data/something/frames/92838/first.jpg", "AURORA/data/something/frames/92838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ruler next to calculator"}]} +{"id": "000000110458", "images": ["AURORA/data/something/frames/197302/first.jpg", "AURORA/data/something/frames/197302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering apple tv remote with coaster"}]} +{"id": "000000110459", "images": ["AURORA/data/something/frames/106892/first.jpg", "AURORA/data/something/frames/106892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into cup, but missing so it spills next to it"}]} +{"id": "000000110460", "images": ["AURORA/data/something/frames/125199/first.jpg", "AURORA/data/something/frames/125199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming clock"}]} +{"id": "000000110461", "images": ["AURORA/data/something/frames/63988/first.jpg", "AURORA/data/something/frames/63988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plastic bag from right to left"}]} +{"id": "000000110462", "images": ["AURORA/data/something/frames/78377/first.jpg", "AURORA/data/something/frames/78377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing supplement bottle from left to right"}]} +{"id": "000000110463", "images": ["AURORA/data/something/frames/139489/first.jpg", "AURORA/data/something/frames/139489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler off of rubix cube"}]} +{"id": "000000110464", "images": ["AURORA/data/something/frames/195652/first.jpg", "AURORA/data/something/frames/195652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many similar crayons"}]} +{"id": "000000110465", "images": ["AURORA/data/something/frames/155983/first.jpg", "AURORA/data/something/frames/155983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a remote into a box"}]} +{"id": "000000110466", "images": ["AURORA/data/something/frames/174516/first.jpg", "AURORA/data/something/frames/174516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charging cable into a cell phone but pulling it right out as you remove your hand"}]} +{"id": "000000110467", "images": ["AURORA/data/something/frames/96422/first.jpg", "AURORA/data/something/frames/96422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a wallet away from deodorant"}]} +{"id": "000000110468", "images": ["AURORA/data/something/frames/185635/first.jpg", "AURORA/data/something/frames/185635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging adaptor into socket"}]} +{"id": "000000110469", "images": ["AURORA/data/something/frames/105170/first.jpg", "AURORA/data/something/frames/105170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a peg"}]} +{"id": "000000110470", "images": ["AURORA/data/something/frames/140339/first.jpg", "AURORA/data/something/frames/140339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching keyring to a clip"}]} +{"id": "000000110471", "images": ["AURORA/data/something/frames/27536/first.jpg", "AURORA/data/something/frames/27536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000110472", "images": ["AURORA/data/something/frames/155607/first.jpg", "AURORA/data/something/frames/155607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000110473", "images": ["AURORA/data/something/frames/138958/first.jpg", "AURORA/data/something/frames/138958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon on the edge of bowl so it is not supported and falls down"}]} +{"id": "000000110474", "images": ["AURORA/data/something/frames/147014/first.jpg", "AURORA/data/something/frames/147014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from right to left"}]} +{"id": "000000110475", "images": ["AURORA/data/something/frames/201428/first.jpg", "AURORA/data/something/frames/201428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug"}]} +{"id": "000000110476", "images": ["AURORA/data/something/frames/17312/first.jpg", "AURORA/data/something/frames/17312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour coffee into a cup, but missing so it spills next to it"}]} +{"id": "000000110477", "images": ["AURORA/data/something/frames/13508/first.jpg", "AURORA/data/something/frames/13508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from rubber band packets with your camera"}]} +{"id": "000000110478", "images": ["AURORA/data/something/frames/208773/first.jpg", "AURORA/data/something/frames/208773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding coat"}]} +{"id": "000000110479", "images": ["AURORA/data/something/frames/65251/first.jpg", "AURORA/data/something/frames/65251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a tomato"}]} +{"id": "000000110480", "images": ["AURORA/data/something/frames/199300/first.jpg", "AURORA/data/something/frames/199300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soda can away from glass"}]} +{"id": "000000110481", "images": ["AURORA/data/something/frames/37066/first.jpg", "AURORA/data/something/frames/37066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black remote from right to left"}]} +{"id": "000000110482", "images": ["AURORA/data/something/frames/153343/first.jpg", "AURORA/data/something/frames/153343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pink ball onto floor"}]} +{"id": "000000110483", "images": ["AURORA/data/something/frames/189654/first.jpg", "AURORA/data/something/frames/189654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with tape on it until it starts sliding down"}]} +{"id": "000000110484", "images": ["AURORA/data/something/frames/154181/first.jpg", "AURORA/data/something/frames/154181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming rubiks cube"}]} +{"id": "000000110485", "images": ["AURORA/data/something/frames/59222/first.jpg", "AURORA/data/something/frames/59222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 pencil sharpners"}]} +{"id": "000000110486", "images": ["AURORA/data/something/frames/95695/first.jpg", "AURORA/data/something/frames/95695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into powdered grain"}]} +{"id": "000000110487", "images": ["AURORA/data/something/frames/135245/first.jpg", "AURORA/data/something/frames/135245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000110488", "images": ["AURORA/data/something/frames/202806/first.jpg", "AURORA/data/something/frames/202806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a spoon into a cup"}]} +{"id": "000000110489", "images": ["AURORA/data/something/frames/64669/first.jpg", "AURORA/data/something/frames/64669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing newspaper into two pieces"}]} +{"id": "000000110490", "images": ["AURORA/data/something/frames/199369/first.jpg", "AURORA/data/something/frames/199369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a little piece of paper just a little bit"}]} +{"id": "000000110491", "images": ["AURORA/data/something/frames/207044/first.jpg", "AURORA/data/something/frames/207044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red booklet from left to right"}]} +{"id": "000000110492", "images": ["AURORA/data/something/frames/10996/first.jpg", "AURORA/data/something/frames/10996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending toothpick until it breaks"}]} +{"id": "000000110493", "images": ["AURORA/data/something/frames/53390/first.jpg", "AURORA/data/something/frames/53390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen so that it almost falls off but doesn't"}]} +{"id": "000000110494", "images": ["AURORA/data/something/frames/75325/first.jpg", "AURORA/data/something/frames/75325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pencil"}]} +{"id": "000000110495", "images": ["AURORA/data/something/frames/46447/first.jpg", "AURORA/data/something/frames/46447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying a pen in buttons"}]} +{"id": "000000110496", "images": ["AURORA/data/something/frames/110345/first.jpg", "AURORA/data/something/frames/110345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a thermocol away from the clip"}]} +{"id": "000000110497", "images": ["AURORA/data/something/frames/217790/first.jpg", "AURORA/data/something/frames/217790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a balloon"}]} +{"id": "000000110498", "images": ["AURORA/data/something/frames/31027/first.jpg", "AURORA/data/something/frames/31027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour cold water into a water glass, but missing so it spills next to it"}]} +{"id": "000000110499", "images": ["AURORA/data/something/frames/88925/first.jpg", "AURORA/data/something/frames/88925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching vacuum cleaner with your camera"}]} +{"id": "000000110500", "images": ["AURORA/data/something/frames/26293/first.jpg", "AURORA/data/something/frames/26293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110501", "images": ["AURORA/data/something/frames/135265/first.jpg", "AURORA/data/something/frames/135265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 rings"}]} +{"id": "000000110502", "images": ["AURORA/data/something/frames/141245/first.jpg", "AURORA/data/something/frames/141245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000110503", "images": ["AURORA/data/something/frames/12521/first.jpg", "AURORA/data/something/frames/12521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a dvd onto a tissue box"}]} +{"id": "000000110504", "images": ["AURORA/data/something/frames/85087/first.jpg", "AURORA/data/something/frames/85087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a water bottle out of a basket"}]} +{"id": "000000110505", "images": ["AURORA/data/something/frames/54104/first.jpg", "AURORA/data/something/frames/54104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bolt with red spoon"}]} +{"id": "000000110506", "images": ["AURORA/data/something/frames/15729/first.jpg", "AURORA/data/something/frames/15729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pretzel until it breaks"}]} +{"id": "000000110507", "images": ["AURORA/data/something/frames/61876/first.jpg", "AURORA/data/something/frames/61876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notebook and pen closer to each other"}]} +{"id": "000000110508", "images": ["AURORA/data/something/frames/84403/first.jpg", "AURORA/data/something/frames/84403/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting wood with glass on it"}]} +{"id": "000000110509", "images": ["AURORA/data/something/frames/200795/first.jpg", "AURORA/data/something/frames/200795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter into mug"}]} +{"id": "000000110510", "images": ["AURORA/data/something/frames/92546/first.jpg", "AURORA/data/something/frames/92546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting glass with marker"}]} +{"id": "000000110511", "images": ["AURORA/data/something/frames/113492/first.jpg", "AURORA/data/something/frames/113492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of cloth so that it gets stretched"}]} +{"id": "000000110512", "images": ["AURORA/data/something/frames/137219/first.jpg", "AURORA/data/something/frames/137219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tennis ball with cd stack"}]} +{"id": "000000110513", "images": ["AURORA/data/something/frames/6317/first.jpg", "AURORA/data/something/frames/6317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling lock handle from behind of door"}]} +{"id": "000000110514", "images": ["AURORA/data/something/frames/201135/first.jpg", "AURORA/data/something/frames/201135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a brush onto a slanted surface but it doesn't glide down"}]} +{"id": "000000110515", "images": ["AURORA/data/something/frames/65177/first.jpg", "AURORA/data/something/frames/65177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing something into two pieces"}]} +{"id": "000000110516", "images": ["AURORA/data/something/frames/164069/first.jpg", "AURORA/data/something/frames/164069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tooth brush on a surface"}]} +{"id": "000000110517", "images": ["AURORA/data/something/frames/144614/first.jpg", "AURORA/data/something/frames/144614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork into bowl"}]} +{"id": "000000110518", "images": ["AURORA/data/something/frames/93125/first.jpg", "AURORA/data/something/frames/93125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing meter box"}]} +{"id": "000000110519", "images": ["AURORA/data/something/frames/55783/first.jpg", "AURORA/data/something/frames/55783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping coffee up with scoop"}]} +{"id": "000000110520", "images": ["AURORA/data/something/frames/98800/first.jpg", "AURORA/data/something/frames/98800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black lipstick from right to left"}]} +{"id": "000000110521", "images": ["AURORA/data/something/frames/182935/first.jpg", "AURORA/data/something/frames/182935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something into something"}]} +{"id": "000000110522", "images": ["AURORA/data/something/frames/50850/first.jpg", "AURORA/data/something/frames/50850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a cell phone case so that it deforms"}]} +{"id": "000000110523", "images": ["AURORA/data/something/frames/3125/first.jpg", "AURORA/data/something/frames/3125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coke onto paper"}]} +{"id": "000000110524", "images": ["AURORA/data/something/frames/97643/first.jpg", "AURORA/data/something/frames/97643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking chair so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000110525", "images": ["AURORA/data/something/frames/128275/first.jpg", "AURORA/data/something/frames/128275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy train from left to right"}]} +{"id": "000000110526", "images": ["AURORA/data/something/frames/143136/first.jpg", "AURORA/data/something/frames/143136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle in front of car"}]} +{"id": "000000110527", "images": ["AURORA/data/something/frames/120164/first.jpg", "AURORA/data/something/frames/120164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving accelarator of scooter"}]} +{"id": "000000110528", "images": ["AURORA/data/something/frames/10928/first.jpg", "AURORA/data/something/frames/10928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000110529", "images": ["AURORA/data/something/frames/200972/first.jpg", "AURORA/data/something/frames/200972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle across a surface without it falling down"}]} +{"id": "000000110530", "images": ["AURORA/data/something/frames/61889/first.jpg", "AURORA/data/something/frames/61889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a rubiks cube with a piece of paper"}]} +{"id": "000000110531", "images": ["AURORA/data/something/frames/103292/first.jpg", "AURORA/data/something/frames/103292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting liner next to book"}]} +{"id": "000000110532", "images": ["AURORA/data/something/frames/158793/first.jpg", "AURORA/data/something/frames/158793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping perfume over"}]} +{"id": "000000110533", "images": ["AURORA/data/something/frames/134268/first.jpg", "AURORA/data/something/frames/134268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading rice onto plate"}]} +{"id": "000000110534", "images": ["AURORA/data/something/frames/185976/first.jpg", "AURORA/data/something/frames/185976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving black play cards down"}]} +{"id": "000000110535", "images": ["AURORA/data/something/frames/204130/first.jpg", "AURORA/data/something/frames/204130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing teddy bear, revealing a bottle behind"}]} +{"id": "000000110536", "images": ["AURORA/data/something/frames/5017/first.jpg", "AURORA/data/something/frames/5017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring ground coffee into a jar"}]} +{"id": "000000110537", "images": ["AURORA/data/something/frames/177818/first.jpg", "AURORA/data/something/frames/177818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen onto a charger"}]} +{"id": "000000110538", "images": ["AURORA/data/something/frames/213709/first.jpg", "AURORA/data/something/frames/213709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a napkin from behind of cans"}]} +{"id": "000000110539", "images": ["AURORA/data/something/frames/204395/first.jpg", "AURORA/data/something/frames/204395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking knife out of mug"}]} +{"id": "000000110540", "images": ["AURORA/data/something/frames/116256/first.jpg", "AURORA/data/something/frames/116256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can upright on the table"}]} +{"id": "000000110541", "images": ["AURORA/data/something/frames/9605/first.jpg", "AURORA/data/something/frames/9605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a cloth"}]} +{"id": "000000110542", "images": ["AURORA/data/something/frames/647/first.jpg", "AURORA/data/something/frames/647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy car with pencil"}]} +{"id": "000000110543", "images": ["AURORA/data/something/frames/85571/first.jpg", "AURORA/data/something/frames/85571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming pink water bottle"}]} +{"id": "000000110544", "images": ["AURORA/data/something/frames/173807/first.jpg", "AURORA/data/something/frames/173807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a ketchup bottle over"}]} +{"id": "000000110545", "images": ["AURORA/data/something/frames/9025/first.jpg", "AURORA/data/something/frames/9025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 sandal"}]} +{"id": "000000110546", "images": ["AURORA/data/something/frames/179518/first.jpg", "AURORA/data/something/frames/179518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of paper piece so that it separates into two pieces"}]} +{"id": "000000110547", "images": ["AURORA/data/something/frames/67070/first.jpg", "AURORA/data/something/frames/67070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing toiletpaper just a little bit"}]} +{"id": "000000110548", "images": ["AURORA/data/something/frames/51923/first.jpg", "AURORA/data/something/frames/51923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000110549", "images": ["AURORA/data/something/frames/140210/first.jpg", "AURORA/data/something/frames/140210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000110550", "images": ["AURORA/data/something/frames/96217/first.jpg", "AURORA/data/something/frames/96217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading rice onto spoon"}]} +{"id": "000000110551", "images": ["AURORA/data/something/frames/177113/first.jpg", "AURORA/data/something/frames/177113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000110552", "images": ["AURORA/data/something/frames/39883/first.jpg", "AURORA/data/something/frames/39883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110553", "images": ["AURORA/data/something/frames/159264/first.jpg", "AURORA/data/something/frames/159264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mug from right to left"}]} +{"id": "000000110554", "images": ["AURORA/data/something/frames/195315/first.jpg", "AURORA/data/something/frames/195315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet onto candle"}]} +{"id": "000000110555", "images": ["AURORA/data/something/frames/104832/first.jpg", "AURORA/data/something/frames/104832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming mug"}]} +{"id": "000000110556", "images": ["AURORA/data/something/frames/72826/first.jpg", "AURORA/data/something/frames/72826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spanner on the right among many spanners on the table"}]} +{"id": "000000110557", "images": ["AURORA/data/something/frames/188732/first.jpg", "AURORA/data/something/frames/188732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ketchup bottle upright on the table"}]} +{"id": "000000110558", "images": ["AURORA/data/something/frames/9789/first.jpg", "AURORA/data/something/frames/9789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books so the stack collapses"}]} +{"id": "000000110559", "images": ["AURORA/data/something/frames/160208/first.jpg", "AURORA/data/something/frames/160208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book up completely without letting it drop down"}]} +{"id": "000000110560", "images": ["AURORA/data/something/frames/196535/first.jpg", "AURORA/data/something/frames/196535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000110561", "images": ["AURORA/data/something/frames/154077/first.jpg", "AURORA/data/something/frames/154077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one coin"}]} +{"id": "000000110562", "images": ["AURORA/data/something/frames/154981/first.jpg", "AURORA/data/something/frames/154981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming car"}]} +{"id": "000000110563", "images": ["AURORA/data/something/frames/165629/first.jpg", "AURORA/data/something/frames/165629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 containers"}]} +{"id": "000000110564", "images": ["AURORA/data/something/frames/138697/first.jpg", "AURORA/data/something/frames/138697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110565", "images": ["AURORA/data/something/frames/13947/first.jpg", "AURORA/data/something/frames/13947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging coin out of flour"}]} +{"id": "000000110566", "images": ["AURORA/data/something/frames/31268/first.jpg", "AURORA/data/something/frames/31268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one pen from the floor"}]} +{"id": "000000110567", "images": ["AURORA/data/something/frames/182600/first.jpg", "AURORA/data/something/frames/182600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping book over"}]} +{"id": "000000110568", "images": ["AURORA/data/something/frames/189850/first.jpg", "AURORA/data/something/frames/189850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering coin"}]} +{"id": "000000110569", "images": ["AURORA/data/something/frames/206028/first.jpg", "AURORA/data/something/frames/206028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pear into the box"}]} +{"id": "000000110570", "images": ["AURORA/data/something/frames/182462/first.jpg", "AURORA/data/something/frames/182462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with a lighter on it"}]} +{"id": "000000110571", "images": ["AURORA/data/something/frames/16248/first.jpg", "AURORA/data/something/frames/16248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping white spoon into glass bowl"}]} +{"id": "000000110572", "images": ["AURORA/data/something/frames/101335/first.jpg", "AURORA/data/something/frames/101335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into a laptop usb port"}]} +{"id": "000000110573", "images": ["AURORA/data/something/frames/108172/first.jpg", "AURORA/data/something/frames/108172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting something with something"}]} +{"id": "000000110574", "images": ["AURORA/data/something/frames/66982/first.jpg", "AURORA/data/something/frames/66982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a flower away from the camera"}]} +{"id": "000000110575", "images": ["AURORA/data/something/frames/155594/first.jpg", "AURORA/data/something/frames/155594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving screen of laptop"}]} +{"id": "000000110576", "images": ["AURORA/data/something/frames/91984/first.jpg", "AURORA/data/something/frames/91984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a ring out of jewelry box"}]} +{"id": "000000110577", "images": ["AURORA/data/something/frames/13269/first.jpg", "AURORA/data/something/frames/13269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming small book"}]} +{"id": "000000110578", "images": ["AURORA/data/something/frames/176845/first.jpg", "AURORA/data/something/frames/176845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering rock with towel"}]} +{"id": "000000110579", "images": ["AURORA/data/something/frames/125532/first.jpg", "AURORA/data/something/frames/125532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving water bottle towards the camera"}]} +{"id": "000000110580", "images": ["AURORA/data/something/frames/20974/first.jpg", "AURORA/data/something/frames/20974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a clock over"}]} +{"id": "000000110581", "images": ["AURORA/data/something/frames/23465/first.jpg", "AURORA/data/something/frames/23465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning birthday card upside down"}]} +{"id": "000000110582", "images": ["AURORA/data/something/frames/203451/first.jpg", "AURORA/data/something/frames/203451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000110583", "images": ["AURORA/data/something/frames/31589/first.jpg", "AURORA/data/something/frames/31589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping game behind paper"}]} +{"id": "000000110584", "images": ["AURORA/data/something/frames/95537/first.jpg", "AURORA/data/something/frames/95537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cube onto bowl"}]} +{"id": "000000110585", "images": ["AURORA/data/something/frames/37291/first.jpg", "AURORA/data/something/frames/37291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing notepad paper just a little bit"}]} +{"id": "000000110586", "images": ["AURORA/data/something/frames/144888/first.jpg", "AURORA/data/something/frames/144888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying remote in blanket"}]} +{"id": "000000110587", "images": ["AURORA/data/something/frames/28082/first.jpg", "AURORA/data/something/frames/28082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110588", "images": ["AURORA/data/something/frames/114333/first.jpg", "AURORA/data/something/frames/114333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tube so that it deforms"}]} +{"id": "000000110589", "images": ["AURORA/data/something/frames/214567/first.jpg", "AURORA/data/something/frames/214567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110590", "images": ["AURORA/data/something/frames/94575/first.jpg", "AURORA/data/something/frames/94575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing napkin just a little bit"}]} +{"id": "000000110591", "images": ["AURORA/data/something/frames/156285/first.jpg", "AURORA/data/something/frames/156285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) paper of table"}]} +{"id": "000000110592", "images": ["AURORA/data/something/frames/1422/first.jpg", "AURORA/data/something/frames/1422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000110593", "images": ["AURORA/data/something/frames/27595/first.jpg", "AURORA/data/something/frames/27595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel down"}]} +{"id": "000000110594", "images": ["AURORA/data/something/frames/177507/first.jpg", "AURORA/data/something/frames/177507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of leaf so that it separates into two pieces"}]} +{"id": "000000110595", "images": ["AURORA/data/something/frames/34509/first.jpg", "AURORA/data/something/frames/34509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving body spray can up"}]} +{"id": "000000110596", "images": ["AURORA/data/something/frames/121323/first.jpg", "AURORA/data/something/frames/121323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending thick paper so that it deforms"}]} +{"id": "000000110597", "images": ["AURORA/data/something/frames/84915/first.jpg", "AURORA/data/something/frames/84915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving clip closer to remote"}]} +{"id": "000000110598", "images": ["AURORA/data/something/frames/183374/first.jpg", "AURORA/data/something/frames/183374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toy plane from left to right"}]} +{"id": "000000110599", "images": ["AURORA/data/something/frames/123364/first.jpg", "AURORA/data/something/frames/123364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a tissue box upside down"}]} +{"id": "000000110600", "images": ["AURORA/data/something/frames/187215/first.jpg", "AURORA/data/something/frames/187215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red bottlecap from left to right"}]} +{"id": "000000110601", "images": ["AURORA/data/something/frames/216111/first.jpg", "AURORA/data/something/frames/216111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cup with shirt"}]} +{"id": "000000110602", "images": ["AURORA/data/something/frames/155531/first.jpg", "AURORA/data/something/frames/155531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing the slipper with the foot"}]} +{"id": "000000110603", "images": ["AURORA/data/something/frames/63161/first.jpg", "AURORA/data/something/frames/63161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a paper clip behind a box"}]} +{"id": "000000110604", "images": ["AURORA/data/something/frames/157400/first.jpg", "AURORA/data/something/frames/157400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into pillow"}]} +{"id": "000000110605", "images": ["AURORA/data/something/frames/145113/first.jpg", "AURORA/data/something/frames/145113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110606", "images": ["AURORA/data/something/frames/150774/first.jpg", "AURORA/data/something/frames/150774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a candle with a towel"}]} +{"id": "000000110607", "images": ["AURORA/data/something/frames/38377/first.jpg", "AURORA/data/something/frames/38377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming bus"}]} +{"id": "000000110608", "images": ["AURORA/data/something/frames/211126/first.jpg", "AURORA/data/something/frames/211126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a toy car colliding with a marble ball and both are being deflected"}]} +{"id": "000000110609", "images": ["AURORA/data/something/frames/73799/first.jpg", "AURORA/data/something/frames/73799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bowl upside down"}]} +{"id": "000000110610", "images": ["AURORA/data/something/frames/24164/first.jpg", "AURORA/data/something/frames/24164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding mat"}]} +{"id": "000000110611", "images": ["AURORA/data/something/frames/7292/first.jpg", "AURORA/data/something/frames/7292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping plastic bottle into bucket water"}]} +{"id": "000000110612", "images": ["AURORA/data/something/frames/159371/first.jpg", "AURORA/data/something/frames/159371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water into cup"}]} +{"id": "000000110613", "images": ["AURORA/data/something/frames/166456/first.jpg", "AURORA/data/something/frames/166456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from bottle cap with your camera"}]} +{"id": "000000110614", "images": ["AURORA/data/something/frames/196775/first.jpg", "AURORA/data/something/frames/196775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000110615", "images": ["AURORA/data/something/frames/215056/first.jpg", "AURORA/data/something/frames/215056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an airwick scent into a plug"}]} +{"id": "000000110616", "images": ["AURORA/data/something/frames/201589/first.jpg", "AURORA/data/something/frames/201589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing black plastic box"}]} +{"id": "000000110617", "images": ["AURORA/data/something/frames/213462/first.jpg", "AURORA/data/something/frames/213462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb next to the laptop"}]} +{"id": "000000110618", "images": ["AURORA/data/something/frames/203405/first.jpg", "AURORA/data/something/frames/203405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying pitcher on the table on its side, not upright"}]} +{"id": "000000110619", "images": ["AURORA/data/something/frames/162121/first.jpg", "AURORA/data/something/frames/162121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a glass over"}]} +{"id": "000000110620", "images": ["AURORA/data/something/frames/116624/first.jpg", "AURORA/data/something/frames/116624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy idol into blue colour spectacle box"}]} +{"id": "000000110621", "images": ["AURORA/data/something/frames/117244/first.jpg", "AURORA/data/something/frames/117244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000110622", "images": ["AURORA/data/something/frames/92374/first.jpg", "AURORA/data/something/frames/92374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket but pulling it right out as you remove your hand"}]} +{"id": "000000110623", "images": ["AURORA/data/something/frames/209319/first.jpg", "AURORA/data/something/frames/209319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rock and rock away from each other"}]} +{"id": "000000110624", "images": ["AURORA/data/something/frames/52371/first.jpg", "AURORA/data/something/frames/52371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching usb cable to adapter"}]} +{"id": "000000110625", "images": ["AURORA/data/something/frames/89533/first.jpg", "AURORA/data/something/frames/89533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one bottle from similar bottles on the table"}]} +{"id": "000000110626", "images": ["AURORA/data/something/frames/120228/first.jpg", "AURORA/data/something/frames/120228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading jelly onto bread"}]} +{"id": "000000110627", "images": ["AURORA/data/something/frames/93839/first.jpg", "AURORA/data/something/frames/93839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing watch so that it almost falls off but doesn't"}]} +{"id": "000000110628", "images": ["AURORA/data/something/frames/67019/first.jpg", "AURORA/data/something/frames/67019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching plant with your camera"}]} +{"id": "000000110629", "images": ["AURORA/data/something/frames/196321/first.jpg", "AURORA/data/something/frames/196321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cube onto battery so it falls down"}]} +{"id": "000000110630", "images": ["AURORA/data/something/frames/190023/first.jpg", "AURORA/data/something/frames/190023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to refrigerator"}]} +{"id": "000000110631", "images": ["AURORA/data/something/frames/193760/first.jpg", "AURORA/data/something/frames/193760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000110632", "images": ["AURORA/data/something/frames/36121/first.jpg", "AURORA/data/something/frames/36121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a pen up completely without letting it drop down"}]} +{"id": "000000110633", "images": ["AURORA/data/something/frames/24175/first.jpg", "AURORA/data/something/frames/24175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering books"}]} +{"id": "000000110634", "images": ["AURORA/data/something/frames/33232/first.jpg", "AURORA/data/something/frames/33232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with paper"}]} +{"id": "000000110635", "images": ["AURORA/data/something/frames/137833/first.jpg", "AURORA/data/something/frames/137833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tearing something into two pieces into two pieces"}]} +{"id": "000000110636", "images": ["AURORA/data/something/frames/166000/first.jpg", "AURORA/data/something/frames/166000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen"}]} +{"id": "000000110637", "images": ["AURORA/data/something/frames/143762/first.jpg", "AURORA/data/something/frames/143762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving baby toy up"}]} +{"id": "000000110638", "images": ["AURORA/data/something/frames/97541/first.jpg", "AURORA/data/something/frames/97541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000110639", "images": ["AURORA/data/something/frames/115567/first.jpg", "AURORA/data/something/frames/115567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the edge of button"}]} +{"id": "000000110640", "images": ["AURORA/data/something/frames/174407/first.jpg", "AURORA/data/something/frames/174407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil box behind globe"}]} +{"id": "000000110641", "images": ["AURORA/data/something/frames/89126/first.jpg", "AURORA/data/something/frames/89126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto counter"}]} +{"id": "000000110642", "images": ["AURORA/data/something/frames/7636/first.jpg", "AURORA/data/something/frames/7636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler across a surface without it falling down"}]} +{"id": "000000110643", "images": ["AURORA/data/something/frames/166031/first.jpg", "AURORA/data/something/frames/166031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pen refill tube so that it deforms"}]} +{"id": "000000110644", "images": ["AURORA/data/something/frames/105371/first.jpg", "AURORA/data/something/frames/105371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothbrush and toothpaste closer to each other"}]} +{"id": "000000110645", "images": ["AURORA/data/something/frames/66000/first.jpg", "AURORA/data/something/frames/66000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper punch from slab"}]} +{"id": "000000110646", "images": ["AURORA/data/something/frames/109353/first.jpg", "AURORA/data/something/frames/109353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening lip balm"}]} +{"id": "000000110647", "images": ["AURORA/data/something/frames/49894/first.jpg", "AURORA/data/something/frames/49894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb cable closer to eraser"}]} +{"id": "000000110648", "images": ["AURORA/data/something/frames/4074/first.jpg", "AURORA/data/something/frames/4074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spray bottle, book and spoon on the table"}]} +{"id": "000000110649", "images": ["AURORA/data/something/frames/118355/first.jpg", "AURORA/data/something/frames/118355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into charger"}]} +{"id": "000000110650", "images": ["AURORA/data/something/frames/127511/first.jpg", "AURORA/data/something/frames/127511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pencil onto a towel"}]} +{"id": "000000110651", "images": ["AURORA/data/something/frames/116514/first.jpg", "AURORA/data/something/frames/116514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a groundnut next to keys"}]} +{"id": "000000110652", "images": ["AURORA/data/something/frames/113441/first.jpg", "AURORA/data/something/frames/113441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper closer to the computer"}]} +{"id": "000000110653", "images": ["AURORA/data/something/frames/86130/first.jpg", "AURORA/data/something/frames/86130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower towards the camera"}]} +{"id": "000000110654", "images": ["AURORA/data/something/frames/106391/first.jpg", "AURORA/data/something/frames/106391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 containers of tape"}]} +{"id": "000000110655", "images": ["AURORA/data/something/frames/153466/first.jpg", "AURORA/data/something/frames/153466/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rock closer to lighter"}]} +{"id": "000000110656", "images": ["AURORA/data/something/frames/170727/first.jpg", "AURORA/data/something/frames/170727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scotch tape on a surface"}]} +{"id": "000000110657", "images": ["AURORA/data/something/frames/34562/first.jpg", "AURORA/data/something/frames/34562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving thermocol and comb closer to each other"}]} +{"id": "000000110658", "images": ["AURORA/data/something/frames/13504/first.jpg", "AURORA/data/something/frames/13504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a glasses box onto a desk"}]} +{"id": "000000110659", "images": ["AURORA/data/something/frames/21063/first.jpg", "AURORA/data/something/frames/21063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass on a surface"}]} +{"id": "000000110660", "images": ["AURORA/data/something/frames/18893/first.jpg", "AURORA/data/something/frames/18893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wine bottle from right to left"}]} +{"id": "000000110661", "images": ["AURORA/data/something/frames/77021/first.jpg", "AURORA/data/something/frames/77021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into plug"}]} +{"id": "000000110662", "images": ["AURORA/data/something/frames/157052/first.jpg", "AURORA/data/something/frames/157052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pencil in front of tape"}]} +{"id": "000000110663", "images": ["AURORA/data/something/frames/112478/first.jpg", "AURORA/data/something/frames/112478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker into pen case"}]} +{"id": "000000110664", "images": ["AURORA/data/something/frames/168928/first.jpg", "AURORA/data/something/frames/168928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110665", "images": ["AURORA/data/something/frames/166578/first.jpg", "AURORA/data/something/frames/166578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a mobile phone on it"}]} +{"id": "000000110666", "images": ["AURORA/data/something/frames/92842/first.jpg", "AURORA/data/something/frames/92842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving small shot glass and big shot glass away from each other"}]} +{"id": "000000110667", "images": ["AURORA/data/something/frames/133692/first.jpg", "AURORA/data/something/frames/133692/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and cup closer to each other"}]} +{"id": "000000110668", "images": ["AURORA/data/something/frames/144528/first.jpg", "AURORA/data/something/frames/144528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pebble from right to left"}]} +{"id": "000000110669", "images": ["AURORA/data/something/frames/185531/first.jpg", "AURORA/data/something/frames/185531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000110670", "images": ["AURORA/data/something/frames/217346/first.jpg", "AURORA/data/something/frames/217346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking jeans pant"}]} +{"id": "000000110671", "images": ["AURORA/data/something/frames/117784/first.jpg", "AURORA/data/something/frames/117784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a computer mouse so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000110672", "images": ["AURORA/data/something/frames/54056/first.jpg", "AURORA/data/something/frames/54056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toothbrushes with hand towel"}]} +{"id": "000000110673", "images": ["AURORA/data/something/frames/1750/first.jpg", "AURORA/data/something/frames/1750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with nail varnish on it"}]} +{"id": "000000110674", "images": ["AURORA/data/something/frames/143934/first.jpg", "AURORA/data/something/frames/143934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000110675", "images": ["AURORA/data/something/frames/129582/first.jpg", "AURORA/data/something/frames/129582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paer into two pieces"}]} +{"id": "000000110676", "images": ["AURORA/data/something/frames/206035/first.jpg", "AURORA/data/something/frames/206035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering hair clip"}]} +{"id": "000000110677", "images": ["AURORA/data/something/frames/114625/first.jpg", "AURORA/data/something/frames/114625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote control on a surface"}]} +{"id": "000000110678", "images": ["AURORA/data/something/frames/173110/first.jpg", "AURORA/data/something/frames/173110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming chick"}]} +{"id": "000000110679", "images": ["AURORA/data/something/frames/150924/first.jpg", "AURORA/data/something/frames/150924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mouse on a surface"}]} +{"id": "000000110680", "images": ["AURORA/data/something/frames/133009/first.jpg", "AURORA/data/something/frames/133009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking wrist watch up"}]} +{"id": "000000110681", "images": ["AURORA/data/something/frames/52094/first.jpg", "AURORA/data/something/frames/52094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000110682", "images": ["AURORA/data/something/frames/112313/first.jpg", "AURORA/data/something/frames/112313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cable into socket"}]} +{"id": "000000110683", "images": ["AURORA/data/something/frames/219062/first.jpg", "AURORA/data/something/frames/219062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000110684", "images": ["AURORA/data/something/frames/217069/first.jpg", "AURORA/data/something/frames/217069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving razor down"}]} +{"id": "000000110685", "images": ["AURORA/data/something/frames/108226/first.jpg", "AURORA/data/something/frames/108226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming cup"}]} +{"id": "000000110686", "images": ["AURORA/data/something/frames/205678/first.jpg", "AURORA/data/something/frames/205678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110687", "images": ["AURORA/data/something/frames/216977/first.jpg", "AURORA/data/something/frames/216977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a shirt"}]} +{"id": "000000110688", "images": ["AURORA/data/something/frames/106730/first.jpg", "AURORA/data/something/frames/106730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a banana into a packet"}]} +{"id": "000000110689", "images": ["AURORA/data/something/frames/116602/first.jpg", "AURORA/data/something/frames/116602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon into a mug"}]} +{"id": "000000110690", "images": ["AURORA/data/something/frames/205154/first.jpg", "AURORA/data/something/frames/205154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling zipper from left to right"}]} +{"id": "000000110691", "images": ["AURORA/data/something/frames/18580/first.jpg", "AURORA/data/something/frames/18580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving chalk piece up"}]} +{"id": "000000110692", "images": ["AURORA/data/something/frames/103337/first.jpg", "AURORA/data/something/frames/103337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000110693", "images": ["AURORA/data/something/frames/76434/first.jpg", "AURORA/data/something/frames/76434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering an ipad with a cardboard"}]} +{"id": "000000110694", "images": ["AURORA/data/something/frames/19198/first.jpg", "AURORA/data/something/frames/19198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching tables and chairs with your camera"}]} +{"id": "000000110695", "images": ["AURORA/data/something/frames/138001/first.jpg", "AURORA/data/something/frames/138001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a keybound on a surface"}]} +{"id": "000000110696", "images": ["AURORA/data/something/frames/65666/first.jpg", "AURORA/data/something/frames/65666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming notebook"}]} +{"id": "000000110697", "images": ["AURORA/data/something/frames/36268/first.jpg", "AURORA/data/something/frames/36268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water bottle next to water bottle"}]} +{"id": "000000110698", "images": ["AURORA/data/something/frames/199668/first.jpg", "AURORA/data/something/frames/199668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a cloth"}]} +{"id": "000000110699", "images": ["AURORA/data/something/frames/40880/first.jpg", "AURORA/data/something/frames/40880/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting rectanglular box with keys on it"}]} +{"id": "000000110700", "images": ["AURORA/data/something/frames/214093/first.jpg", "AURORA/data/something/frames/214093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a pen up completely without letting it drop down"}]} +{"id": "000000110701", "images": ["AURORA/data/something/frames/113042/first.jpg", "AURORA/data/something/frames/113042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000110702", "images": ["AURORA/data/something/frames/187396/first.jpg", "AURORA/data/something/frames/187396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box so that it almost falls off but doesn't"}]} +{"id": "000000110703", "images": ["AURORA/data/something/frames/15646/first.jpg", "AURORA/data/something/frames/15646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing dirty clothes into bag"}]} +{"id": "000000110704", "images": ["AURORA/data/something/frames/76689/first.jpg", "AURORA/data/something/frames/76689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water into a cup"}]} +{"id": "000000110705", "images": ["AURORA/data/something/frames/54224/first.jpg", "AURORA/data/something/frames/54224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote from left to right"}]} +{"id": "000000110706", "images": ["AURORA/data/something/frames/10122/first.jpg", "AURORA/data/something/frames/10122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending hair pin so that it deforms"}]} +{"id": "000000110707", "images": ["AURORA/data/something/frames/182027/first.jpg", "AURORA/data/something/frames/182027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging earphones into a laptop but pulling it right out as you remove your hand"}]} +{"id": "000000110708", "images": ["AURORA/data/something/frames/139449/first.jpg", "AURORA/data/something/frames/139449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000110709", "images": ["AURORA/data/something/frames/68803/first.jpg", "AURORA/data/something/frames/68803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 dvds"}]} +{"id": "000000110710", "images": ["AURORA/data/something/frames/33547/first.jpg", "AURORA/data/something/frames/33547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing remote, revealing a pen behind"}]} +{"id": "000000110711", "images": ["AURORA/data/something/frames/158343/first.jpg", "AURORA/data/something/frames/158343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle cap from right to left"}]} +{"id": "000000110712", "images": ["AURORA/data/something/frames/177451/first.jpg", "AURORA/data/something/frames/177451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a wallet into a box"}]} +{"id": "000000110713", "images": ["AURORA/data/something/frames/93985/first.jpg", "AURORA/data/something/frames/93985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping clear plastic pot onto windowsill"}]} +{"id": "000000110714", "images": ["AURORA/data/something/frames/50886/first.jpg", "AURORA/data/something/frames/50886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator down"}]} +{"id": "000000110715", "images": ["AURORA/data/something/frames/30223/first.jpg", "AURORA/data/something/frames/30223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coins into coffee can"}]} +{"id": "000000110716", "images": ["AURORA/data/something/frames/109252/first.jpg", "AURORA/data/something/frames/109252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000110717", "images": ["AURORA/data/something/frames/39182/first.jpg", "AURORA/data/something/frames/39182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing plastic clothes hangar into couch cushion opening"}]} +{"id": "000000110718", "images": ["AURORA/data/something/frames/94613/first.jpg", "AURORA/data/something/frames/94613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pillows with a blanket"}]} +{"id": "000000110719", "images": ["AURORA/data/something/frames/23704/first.jpg", "AURORA/data/something/frames/23704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping stuffed animal into basket"}]} +{"id": "000000110720", "images": ["AURORA/data/something/frames/58947/first.jpg", "AURORA/data/something/frames/58947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle closer to lamp"}]} +{"id": "000000110721", "images": ["AURORA/data/something/frames/19805/first.jpg", "AURORA/data/something/frames/19805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin"}]} +{"id": "000000110722", "images": ["AURORA/data/something/frames/110797/first.jpg", "AURORA/data/something/frames/110797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box of juice onto plastic cover"}]} +{"id": "000000110723", "images": ["AURORA/data/something/frames/80980/first.jpg", "AURORA/data/something/frames/80980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering sunglasses with a paper"}]} +{"id": "000000110724", "images": ["AURORA/data/something/frames/32833/first.jpg", "AURORA/data/something/frames/32833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing duster with red spoon"}]} +{"id": "000000110725", "images": ["AURORA/data/something/frames/220688/first.jpg", "AURORA/data/something/frames/220688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking jar out of pot"}]} +{"id": "000000110726", "images": ["AURORA/data/something/frames/7902/first.jpg", "AURORA/data/something/frames/7902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toy into cup"}]} +{"id": "000000110727", "images": ["AURORA/data/something/frames/123627/first.jpg", "AURORA/data/something/frames/123627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping screw driver onto marker pen"}]} +{"id": "000000110728", "images": ["AURORA/data/something/frames/176988/first.jpg", "AURORA/data/something/frames/176988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin into duffel bag"}]} +{"id": "000000110729", "images": ["AURORA/data/something/frames/62149/first.jpg", "AURORA/data/something/frames/62149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass cup"}]} +{"id": "000000110730", "images": ["AURORA/data/something/frames/18398/first.jpg", "AURORA/data/something/frames/18398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a handkerchief in front of a matchbox"}]} +{"id": "000000110731", "images": ["AURORA/data/something/frames/162960/first.jpg", "AURORA/data/something/frames/162960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hair clip closer to white toy car"}]} +{"id": "000000110732", "images": ["AURORA/data/something/frames/182059/first.jpg", "AURORA/data/something/frames/182059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking crystal"}]} +{"id": "000000110733", "images": ["AURORA/data/something/frames/33375/first.jpg", "AURORA/data/something/frames/33375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with candy on it but not enough for it to slide down"}]} +{"id": "000000110734", "images": ["AURORA/data/something/frames/160050/first.jpg", "AURORA/data/something/frames/160050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a glass"}]} +{"id": "000000110735", "images": ["AURORA/data/something/frames/216360/first.jpg", "AURORA/data/something/frames/216360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping paper towels over"}]} +{"id": "000000110736", "images": ["AURORA/data/something/frames/136037/first.jpg", "AURORA/data/something/frames/136037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into usb port"}]} +{"id": "000000110737", "images": ["AURORA/data/something/frames/35790/first.jpg", "AURORA/data/something/frames/35790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shirt into cup"}]} +{"id": "000000110738", "images": ["AURORA/data/something/frames/43088/first.jpg", "AURORA/data/something/frames/43088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping block next to candle"}]} +{"id": "000000110739", "images": ["AURORA/data/something/frames/186734/first.jpg", "AURORA/data/something/frames/186734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling orange post-it from right to left"}]} +{"id": "000000110740", "images": ["AURORA/data/something/frames/40969/first.jpg", "AURORA/data/something/frames/40969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an apple into a fruit basket"}]} +{"id": "000000110741", "images": ["AURORA/data/something/frames/50441/first.jpg", "AURORA/data/something/frames/50441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a pillow so that it falls over"}]} +{"id": "000000110742", "images": ["AURORA/data/something/frames/97640/first.jpg", "AURORA/data/something/frames/97640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting an index card with a quarter on it"}]} +{"id": "000000110743", "images": ["AURORA/data/something/frames/64552/first.jpg", "AURORA/data/something/frames/64552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting yellow colour marker on the top similar to other markers on the table"}]} +{"id": "000000110744", "images": ["AURORA/data/something/frames/108641/first.jpg", "AURORA/data/something/frames/108641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming violin"}]} +{"id": "000000110745", "images": ["AURORA/data/something/frames/214642/first.jpg", "AURORA/data/something/frames/214642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something in front of something"}]} +{"id": "000000110746", "images": ["AURORA/data/something/frames/177318/first.jpg", "AURORA/data/something/frames/177318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone up"}]} +{"id": "000000110747", "images": ["AURORA/data/something/frames/61746/first.jpg", "AURORA/data/something/frames/61746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing perfume"}]} +{"id": "000000110748", "images": ["AURORA/data/something/frames/212841/first.jpg", "AURORA/data/something/frames/212841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of elastic band so that it gets stretched"}]} +{"id": "000000110749", "images": ["AURORA/data/something/frames/74133/first.jpg", "AURORA/data/something/frames/74133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cap"}]} +{"id": "000000110750", "images": ["AURORA/data/something/frames/46326/first.jpg", "AURORA/data/something/frames/46326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting folder with keys on it"}]} +{"id": "000000110751", "images": ["AURORA/data/something/frames/150004/first.jpg", "AURORA/data/something/frames/150004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000110752", "images": ["AURORA/data/something/frames/117615/first.jpg", "AURORA/data/something/frames/117615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and remote away from each other"}]} +{"id": "000000110753", "images": ["AURORA/data/something/frames/92805/first.jpg", "AURORA/data/something/frames/92805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something into something"}]} +{"id": "000000110754", "images": ["AURORA/data/something/frames/13617/first.jpg", "AURORA/data/something/frames/13617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering toothbrush"}]} +{"id": "000000110755", "images": ["AURORA/data/something/frames/162949/first.jpg", "AURORA/data/something/frames/162949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball colliding with ball and both are being deflected"}]} +{"id": "000000110756", "images": ["AURORA/data/something/frames/10446/first.jpg", "AURORA/data/something/frames/10446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rubix cube closer to spectacle box"}]} +{"id": "000000110757", "images": ["AURORA/data/something/frames/159181/first.jpg", "AURORA/data/something/frames/159181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the body of the mirror"}]} +{"id": "000000110758", "images": ["AURORA/data/something/frames/136266/first.jpg", "AURORA/data/something/frames/136266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging inlet into outlet"}]} +{"id": "000000110759", "images": ["AURORA/data/something/frames/136601/first.jpg", "AURORA/data/something/frames/136601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of mouse"}]} +{"id": "000000110760", "images": ["AURORA/data/something/frames/170626/first.jpg", "AURORA/data/something/frames/170626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a woodenbox with a plastic plate"}]} +{"id": "000000110761", "images": ["AURORA/data/something/frames/124122/first.jpg", "AURORA/data/something/frames/124122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a card towards the camera"}]} +{"id": "000000110762", "images": ["AURORA/data/something/frames/96665/first.jpg", "AURORA/data/something/frames/96665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000110763", "images": ["AURORA/data/something/frames/185357/first.jpg", "AURORA/data/something/frames/185357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping canister with lemon over, so lemon falls out"}]} +{"id": "000000110764", "images": ["AURORA/data/something/frames/205944/first.jpg", "AURORA/data/something/frames/205944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rack up"}]} +{"id": "000000110765", "images": ["AURORA/data/something/frames/82829/first.jpg", "AURORA/data/something/frames/82829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting shirt"}]} +{"id": "000000110766", "images": ["AURORA/data/something/frames/85075/first.jpg", "AURORA/data/something/frames/85075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a marker out of a can"}]} +{"id": "000000110767", "images": ["AURORA/data/something/frames/106669/first.jpg", "AURORA/data/something/frames/106669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting envelope on the edge of chair so it is not supported and falls down"}]} +{"id": "000000110768", "images": ["AURORA/data/something/frames/178603/first.jpg", "AURORA/data/something/frames/178603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking shoe up"}]} +{"id": "000000110769", "images": ["AURORA/data/something/frames/121737/first.jpg", "AURORA/data/something/frames/121737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin into a piggy bank"}]} +{"id": "000000110770", "images": ["AURORA/data/something/frames/57055/first.jpg", "AURORA/data/something/frames/57055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spoon"}]} +{"id": "000000110771", "images": ["AURORA/data/something/frames/51198/first.jpg", "AURORA/data/something/frames/51198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying glue stick on the table on its side, not upright"}]} +{"id": "000000110772", "images": ["AURORA/data/something/frames/84967/first.jpg", "AURORA/data/something/frames/84967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from left to right"}]} +{"id": "000000110773", "images": ["AURORA/data/something/frames/185860/first.jpg", "AURORA/data/something/frames/185860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of envelopes without the stack collapsing"}]} +{"id": "000000110774", "images": ["AURORA/data/something/frames/97057/first.jpg", "AURORA/data/something/frames/97057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass onto a matt/coaster"}]} +{"id": "000000110775", "images": ["AURORA/data/something/frames/101761/first.jpg", "AURORA/data/something/frames/101761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming krishna idole"}]} +{"id": "000000110776", "images": ["AURORA/data/something/frames/138230/first.jpg", "AURORA/data/something/frames/138230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone and wristwatch closer to each other"}]} +{"id": "000000110777", "images": ["AURORA/data/something/frames/133810/first.jpg", "AURORA/data/something/frames/133810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a banana out of a glass"}]} +{"id": "000000110778", "images": ["AURORA/data/something/frames/81709/first.jpg", "AURORA/data/something/frames/81709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering eye of stove"}]} +{"id": "000000110779", "images": ["AURORA/data/something/frames/220691/first.jpg", "AURORA/data/something/frames/220691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming the mouse"}]} +{"id": "000000110780", "images": ["AURORA/data/something/frames/94509/first.jpg", "AURORA/data/something/frames/94509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling food packet out of plastic container"}]} +{"id": "000000110781", "images": ["AURORA/data/something/frames/200656/first.jpg", "AURORA/data/something/frames/200656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball closer to sunglasses"}]} +{"id": "000000110782", "images": ["AURORA/data/something/frames/205033/first.jpg", "AURORA/data/something/frames/205033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000110783", "images": ["AURORA/data/something/frames/204186/first.jpg", "AURORA/data/something/frames/204186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery upright on the table"}]} +{"id": "000000110784", "images": ["AURORA/data/something/frames/100872/first.jpg", "AURORA/data/something/frames/100872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing laundry into basket"}]} +{"id": "000000110785", "images": ["AURORA/data/something/frames/176564/first.jpg", "AURORA/data/something/frames/176564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting calculator, pen and wallet on the table"}]} +{"id": "000000110786", "images": ["AURORA/data/something/frames/173923/first.jpg", "AURORA/data/something/frames/173923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cup to cup"}]} +{"id": "000000110787", "images": ["AURORA/data/something/frames/6199/first.jpg", "AURORA/data/something/frames/6199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an immersion blender base upright on the table, so it falls on its side"}]} +{"id": "000000110788", "images": ["AURORA/data/something/frames/208085/first.jpg", "AURORA/data/something/frames/208085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting blue spoon into orange bowl"}]} +{"id": "000000110789", "images": ["AURORA/data/something/frames/166604/first.jpg", "AURORA/data/something/frames/166604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pan onto a stove"}]} +{"id": "000000110790", "images": ["AURORA/data/something/frames/38895/first.jpg", "AURORA/data/something/frames/38895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding kitchen towel"}]} +{"id": "000000110791", "images": ["AURORA/data/something/frames/72820/first.jpg", "AURORA/data/something/frames/72820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into a glass container, but missing so it spills next to it"}]} +{"id": "000000110792", "images": ["AURORA/data/something/frames/131185/first.jpg", "AURORA/data/something/frames/131185/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a tv into a wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000110793", "images": ["AURORA/data/something/frames/122382/first.jpg", "AURORA/data/something/frames/122382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying drinking bottle on the table on its side, not upright"}]} +{"id": "000000110794", "images": ["AURORA/data/something/frames/56621/first.jpg", "AURORA/data/something/frames/56621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen closer to cup"}]} +{"id": "000000110795", "images": ["AURORA/data/something/frames/15581/first.jpg", "AURORA/data/something/frames/15581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pop can over"}]} +{"id": "000000110796", "images": ["AURORA/data/something/frames/44551/first.jpg", "AURORA/data/something/frames/44551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glasses and perfum closer to each other"}]} +{"id": "000000110797", "images": ["AURORA/data/something/frames/54103/first.jpg", "AURORA/data/something/frames/54103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy car off of a table"}]} +{"id": "000000110798", "images": ["AURORA/data/something/frames/97299/first.jpg", "AURORA/data/something/frames/97299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending key chain so that it deforms"}]} +{"id": "000000110799", "images": ["AURORA/data/something/frames/86545/first.jpg", "AURORA/data/something/frames/86545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking water bottle from chair"}]} +{"id": "000000110800", "images": ["AURORA/data/something/frames/18951/first.jpg", "AURORA/data/something/frames/18951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing book into books"}]} +{"id": "000000110801", "images": ["AURORA/data/something/frames/121954/first.jpg", "AURORA/data/something/frames/121954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bottle"}]} +{"id": "000000110802", "images": ["AURORA/data/something/frames/42838/first.jpg", "AURORA/data/something/frames/42838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading mayonase onto bread"}]} +{"id": "000000110803", "images": ["AURORA/data/something/frames/138809/first.jpg", "AURORA/data/something/frames/138809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon down"}]} +{"id": "000000110804", "images": ["AURORA/data/something/frames/98914/first.jpg", "AURORA/data/something/frames/98914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming gate"}]} +{"id": "000000110805", "images": ["AURORA/data/something/frames/106402/first.jpg", "AURORA/data/something/frames/106402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can opener, toy ambulance and a lemon on the table"}]} +{"id": "000000110806", "images": ["AURORA/data/something/frames/156256/first.jpg", "AURORA/data/something/frames/156256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cigaret out of marlboro pack"}]} +{"id": "000000110807", "images": ["AURORA/data/something/frames/81300/first.jpg", "AURORA/data/something/frames/81300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching soda bottle with your camera"}]} +{"id": "000000110808", "images": ["AURORA/data/something/frames/119096/first.jpg", "AURORA/data/something/frames/119096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting khaki into bowl"}]} +{"id": "000000110809", "images": ["AURORA/data/something/frames/95465/first.jpg", "AURORA/data/something/frames/95465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of sugar cubes so the stack collapses"}]} +{"id": "000000110810", "images": ["AURORA/data/something/frames/76867/first.jpg", "AURORA/data/something/frames/76867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming gate"}]} +{"id": "000000110811", "images": ["AURORA/data/something/frames/152145/first.jpg", "AURORA/data/something/frames/152145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charging cable into a cell phone"}]} +{"id": "000000110812", "images": ["AURORA/data/something/frames/76988/first.jpg", "AURORA/data/something/frames/76988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing plastic bag into drinking glass"}]} +{"id": "000000110813", "images": ["AURORA/data/something/frames/206586/first.jpg", "AURORA/data/something/frames/206586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping an eraser onto a table"}]} +{"id": "000000110814", "images": ["AURORA/data/something/frames/195304/first.jpg", "AURORA/data/something/frames/195304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000110815", "images": ["AURORA/data/something/frames/44347/first.jpg", "AURORA/data/something/frames/44347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a pen so that it separates into two pieces"}]} +{"id": "000000110816", "images": ["AURORA/data/something/frames/28772/first.jpg", "AURORA/data/something/frames/28772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) head of toys"}]} +{"id": "000000110817", "images": ["AURORA/data/something/frames/127384/first.jpg", "AURORA/data/something/frames/127384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing teabag into two pieces"}]} +{"id": "000000110818", "images": ["AURORA/data/something/frames/188245/first.jpg", "AURORA/data/something/frames/188245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a dvd"}]} +{"id": "000000110819", "images": ["AURORA/data/something/frames/20628/first.jpg", "AURORA/data/something/frames/20628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coffee grounds behind cup"}]} +{"id": "000000110820", "images": ["AURORA/data/something/frames/568/first.jpg", "AURORA/data/something/frames/568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a trophy across a surface without it falling down"}]} +{"id": "000000110821", "images": ["AURORA/data/something/frames/44850/first.jpg", "AURORA/data/something/frames/44850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000110822", "images": ["AURORA/data/something/frames/51559/first.jpg", "AURORA/data/something/frames/51559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering humidifier with towel"}]} +{"id": "000000110823", "images": ["AURORA/data/something/frames/108368/first.jpg", "AURORA/data/something/frames/108368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110824", "images": ["AURORA/data/something/frames/218971/first.jpg", "AURORA/data/something/frames/218971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting deo into bagback"}]} +{"id": "000000110825", "images": ["AURORA/data/something/frames/208801/first.jpg", "AURORA/data/something/frames/208801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into a smartphone but pulling it right out as you remove your hand"}]} +{"id": "000000110826", "images": ["AURORA/data/something/frames/184986/first.jpg", "AURORA/data/something/frames/184986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle from left to right"}]} +{"id": "000000110827", "images": ["AURORA/data/something/frames/82772/first.jpg", "AURORA/data/something/frames/82772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a chinese food box"}]} +{"id": "000000110828", "images": ["AURORA/data/something/frames/161053/first.jpg", "AURORA/data/something/frames/161053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mug and another mug away from each other"}]} +{"id": "000000110829", "images": ["AURORA/data/something/frames/180805/first.jpg", "AURORA/data/something/frames/180805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a shoe and a purse away from each other"}]} +{"id": "000000110830", "images": ["AURORA/data/something/frames/30829/first.jpg", "AURORA/data/something/frames/30829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping book over"}]} +{"id": "000000110831", "images": ["AURORA/data/something/frames/156666/first.jpg", "AURORA/data/something/frames/156666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling milk onto table mat"}]} +{"id": "000000110832", "images": ["AURORA/data/something/frames/85985/first.jpg", "AURORA/data/something/frames/85985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pencil into floor"}]} +{"id": "000000110833", "images": ["AURORA/data/something/frames/63141/first.jpg", "AURORA/data/something/frames/63141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting silicone onto a slanted surface but it doesn't glide down"}]} +{"id": "000000110834", "images": ["AURORA/data/something/frames/114784/first.jpg", "AURORA/data/something/frames/114784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle behind cup"}]} +{"id": "000000110835", "images": ["AURORA/data/something/frames/171169/first.jpg", "AURORA/data/something/frames/171169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000110836", "images": ["AURORA/data/something/frames/132553/first.jpg", "AURORA/data/something/frames/132553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of jar"}]} +{"id": "000000110837", "images": ["AURORA/data/something/frames/14438/first.jpg", "AURORA/data/something/frames/14438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dish soap off of a laundry machine"}]} +{"id": "000000110838", "images": ["AURORA/data/something/frames/6300/first.jpg", "AURORA/data/something/frames/6300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a large ball and a small ball closer to each other"}]} +{"id": "000000110839", "images": ["AURORA/data/something/frames/4071/first.jpg", "AURORA/data/something/frames/4071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming white toy car"}]} +{"id": "000000110840", "images": ["AURORA/data/something/frames/64032/first.jpg", "AURORA/data/something/frames/64032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000110841", "images": ["AURORA/data/something/frames/10201/first.jpg", "AURORA/data/something/frames/10201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of bottle without letting it drop down"}]} +{"id": "000000110842", "images": ["AURORA/data/something/frames/5767/first.jpg", "AURORA/data/something/frames/5767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000110843", "images": ["AURORA/data/something/frames/199838/first.jpg", "AURORA/data/something/frames/199838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a beaker with a pen"}]} +{"id": "000000110844", "images": ["AURORA/data/something/frames/111604/first.jpg", "AURORA/data/something/frames/111604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of boxes so the stack collapses"}]} +{"id": "000000110845", "images": ["AURORA/data/something/frames/191802/first.jpg", "AURORA/data/something/frames/191802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing bottle"}]} +{"id": "000000110846", "images": ["AURORA/data/something/frames/30178/first.jpg", "AURORA/data/something/frames/30178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a piece of plastic so that it separates into two pieces"}]} +{"id": "000000110847", "images": ["AURORA/data/something/frames/117331/first.jpg", "AURORA/data/something/frames/117331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug next to a bottle"}]} +{"id": "000000110848", "images": ["AURORA/data/something/frames/15812/first.jpg", "AURORA/data/something/frames/15812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper away from the camera"}]} +{"id": "000000110849", "images": ["AURORA/data/something/frames/97201/first.jpg", "AURORA/data/something/frames/97201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a bangle"}]} +{"id": "000000110850", "images": ["AURORA/data/something/frames/113132/first.jpg", "AURORA/data/something/frames/113132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pot on a surface"}]} +{"id": "000000110851", "images": ["AURORA/data/something/frames/177809/first.jpg", "AURORA/data/something/frames/177809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet onto rug"}]} +{"id": "000000110852", "images": ["AURORA/data/something/frames/85067/first.jpg", "AURORA/data/something/frames/85067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting rubix cube in front of toy car"}]} +{"id": "000000110853", "images": ["AURORA/data/something/frames/182165/first.jpg", "AURORA/data/something/frames/182165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottle top"}]} +{"id": "000000110854", "images": ["AURORA/data/something/frames/55178/first.jpg", "AURORA/data/something/frames/55178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle of glue over"}]} +{"id": "000000110855", "images": ["AURORA/data/something/frames/93638/first.jpg", "AURORA/data/something/frames/93638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a cardboard"}]} +{"id": "000000110856", "images": ["AURORA/data/something/frames/9675/first.jpg", "AURORA/data/something/frames/9675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into phone charger"}]} +{"id": "000000110857", "images": ["AURORA/data/something/frames/171477/first.jpg", "AURORA/data/something/frames/171477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing kitchen cabinet"}]} +{"id": "000000110858", "images": ["AURORA/data/something/frames/104808/first.jpg", "AURORA/data/something/frames/104808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping book over"}]} +{"id": "000000110859", "images": ["AURORA/data/something/frames/144970/first.jpg", "AURORA/data/something/frames/144970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into ipad"}]} +{"id": "000000110860", "images": ["AURORA/data/something/frames/6368/first.jpg", "AURORA/data/something/frames/6368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000110861", "images": ["AURORA/data/something/frames/56841/first.jpg", "AURORA/data/something/frames/56841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning milk mug upside down"}]} +{"id": "000000110862", "images": ["AURORA/data/something/frames/174723/first.jpg", "AURORA/data/something/frames/174723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sock, book and glass on the table"}]} +{"id": "000000110863", "images": ["AURORA/data/something/frames/22875/first.jpg", "AURORA/data/something/frames/22875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a tissue box colliding with another tissue box and both are being deflected"}]} +{"id": "000000110864", "images": ["AURORA/data/something/frames/128681/first.jpg", "AURORA/data/something/frames/128681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with crackers over, so cracker falls out"}]} +{"id": "000000110865", "images": ["AURORA/data/something/frames/18596/first.jpg", "AURORA/data/something/frames/18596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000110866", "images": ["AURORA/data/something/frames/15034/first.jpg", "AURORA/data/something/frames/15034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging baby monitor cord into power outlet"}]} +{"id": "000000110867", "images": ["AURORA/data/something/frames/49969/first.jpg", "AURORA/data/something/frames/49969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110868", "images": ["AURORA/data/something/frames/27155/first.jpg", "AURORA/data/something/frames/27155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning stul upside down"}]} +{"id": "000000110869", "images": ["AURORA/data/something/frames/45621/first.jpg", "AURORA/data/something/frames/45621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shirt into bag"}]} +{"id": "000000110870", "images": ["AURORA/data/something/frames/210229/first.jpg", "AURORA/data/something/frames/210229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into mug"}]} +{"id": "000000110871", "images": ["AURORA/data/something/frames/129620/first.jpg", "AURORA/data/something/frames/129620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball pump upright on the table, so it falls on its side"}]} +{"id": "000000110872", "images": ["AURORA/data/something/frames/21759/first.jpg", "AURORA/data/something/frames/21759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pendrive"}]} +{"id": "000000110873", "images": ["AURORA/data/something/frames/112885/first.jpg", "AURORA/data/something/frames/112885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box onto a book"}]} +{"id": "000000110874", "images": ["AURORA/data/something/frames/4829/first.jpg", "AURORA/data/something/frames/4829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cover into cup"}]} +{"id": "000000110875", "images": ["AURORA/data/something/frames/179592/first.jpg", "AURORA/data/something/frames/179592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen so that it almost falls off but doesn't"}]} +{"id": "000000110876", "images": ["AURORA/data/something/frames/20807/first.jpg", "AURORA/data/something/frames/20807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of putty so that it gets stretched"}]} +{"id": "000000110877", "images": ["AURORA/data/something/frames/136522/first.jpg", "AURORA/data/something/frames/136522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a stappler"}]} +{"id": "000000110878", "images": ["AURORA/data/something/frames/89049/first.jpg", "AURORA/data/something/frames/89049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing bottle, revealing marker behind"}]} +{"id": "000000110879", "images": ["AURORA/data/something/frames/206131/first.jpg", "AURORA/data/something/frames/206131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on a surface"}]} +{"id": "000000110880", "images": ["AURORA/data/something/frames/37250/first.jpg", "AURORA/data/something/frames/37250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a marmalade jar upside down"}]} +{"id": "000000110881", "images": ["AURORA/data/something/frames/67389/first.jpg", "AURORA/data/something/frames/67389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping sellotape into box"}]} +{"id": "000000110882", "images": ["AURORA/data/something/frames/128225/first.jpg", "AURORA/data/something/frames/128225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tea light candle on the table with other candles"}]} +{"id": "000000110883", "images": ["AURORA/data/something/frames/111103/first.jpg", "AURORA/data/something/frames/111103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pencil case from right to left"}]} +{"id": "000000110884", "images": ["AURORA/data/something/frames/61437/first.jpg", "AURORA/data/something/frames/61437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a book"}]} +{"id": "000000110885", "images": ["AURORA/data/something/frames/218641/first.jpg", "AURORA/data/something/frames/218641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling curtain from left to right"}]} +{"id": "000000110886", "images": ["AURORA/data/something/frames/11044/first.jpg", "AURORA/data/something/frames/11044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing highlighter"}]} +{"id": "000000110887", "images": ["AURORA/data/something/frames/50758/first.jpg", "AURORA/data/something/frames/50758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming chandelier"}]} +{"id": "000000110888", "images": ["AURORA/data/something/frames/43684/first.jpg", "AURORA/data/something/frames/43684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming krishna idole"}]} +{"id": "000000110889", "images": ["AURORA/data/something/frames/106598/first.jpg", "AURORA/data/something/frames/106598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a stuffed animal with a blanket"}]} +{"id": "000000110890", "images": ["AURORA/data/something/frames/164488/first.jpg", "AURORA/data/something/frames/164488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking jar so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000110891", "images": ["AURORA/data/something/frames/209475/first.jpg", "AURORA/data/something/frames/209475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting body spray bottle on a surface"}]} +{"id": "000000110892", "images": ["AURORA/data/something/frames/94778/first.jpg", "AURORA/data/something/frames/94778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000110893", "images": ["AURORA/data/something/frames/112873/first.jpg", "AURORA/data/something/frames/112873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook into box"}]} +{"id": "000000110894", "images": ["AURORA/data/something/frames/212885/first.jpg", "AURORA/data/something/frames/212885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening marker pen cap"}]} +{"id": "000000110895", "images": ["AURORA/data/something/frames/181204/first.jpg", "AURORA/data/something/frames/181204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger up"}]} +{"id": "000000110896", "images": ["AURORA/data/something/frames/191550/first.jpg", "AURORA/data/something/frames/191550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mug upside down"}]} +{"id": "000000110897", "images": ["AURORA/data/something/frames/178176/first.jpg", "AURORA/data/something/frames/178176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 4 pens onto diary"}]} +{"id": "000000110898", "images": ["AURORA/data/something/frames/65026/first.jpg", "AURORA/data/something/frames/65026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil away from the camera"}]} +{"id": "000000110899", "images": ["AURORA/data/something/frames/25372/first.jpg", "AURORA/data/something/frames/25372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000110900", "images": ["AURORA/data/something/frames/103369/first.jpg", "AURORA/data/something/frames/103369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming car"}]} +{"id": "000000110901", "images": ["AURORA/data/something/frames/47061/first.jpg", "AURORA/data/something/frames/47061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of paper so that it separates into two pieces"}]} +{"id": "000000110902", "images": ["AURORA/data/something/frames/183991/first.jpg", "AURORA/data/something/frames/183991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one domino token"}]} +{"id": "000000110903", "images": ["AURORA/data/something/frames/192140/first.jpg", "AURORA/data/something/frames/192140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic comb behind mug"}]} +{"id": "000000110904", "images": ["AURORA/data/something/frames/191918/first.jpg", "AURORA/data/something/frames/191918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping shoe behind bin"}]} +{"id": "000000110905", "images": ["AURORA/data/something/frames/94273/first.jpg", "AURORA/data/something/frames/94273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting videogame underneath bed"}]} +{"id": "000000110906", "images": ["AURORA/data/something/frames/202432/first.jpg", "AURORA/data/something/frames/202432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a cup"}]} +{"id": "000000110907", "images": ["AURORA/data/something/frames/13123/first.jpg", "AURORA/data/something/frames/13123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching a picture with your camera"}]} +{"id": "000000110908", "images": ["AURORA/data/something/frames/190235/first.jpg", "AURORA/data/something/frames/190235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming motor bike"}]} +{"id": "000000110909", "images": ["AURORA/data/something/frames/154968/first.jpg", "AURORA/data/something/frames/154968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower towards the camera"}]} +{"id": "000000110910", "images": ["AURORA/data/something/frames/139204/first.jpg", "AURORA/data/something/frames/139204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into soft doh"}]} +{"id": "000000110911", "images": ["AURORA/data/something/frames/40879/first.jpg", "AURORA/data/something/frames/40879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing iphone into a sock"}]} +{"id": "000000110912", "images": ["AURORA/data/something/frames/146657/first.jpg", "AURORA/data/something/frames/146657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping plate in front of plate"}]} +{"id": "000000110913", "images": ["AURORA/data/something/frames/51014/first.jpg", "AURORA/data/something/frames/51014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing letter into two pieces"}]} +{"id": "000000110914", "images": ["AURORA/data/something/frames/35831/first.jpg", "AURORA/data/something/frames/35831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 laptop onto pillow"}]} +{"id": "000000110915", "images": ["AURORA/data/something/frames/179280/first.jpg", "AURORA/data/something/frames/179280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with paper"}]} +{"id": "000000110916", "images": ["AURORA/data/something/frames/149231/first.jpg", "AURORA/data/something/frames/149231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000110917", "images": ["AURORA/data/something/frames/138344/first.jpg", "AURORA/data/something/frames/138344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone closer to box"}]} +{"id": "000000110918", "images": ["AURORA/data/something/frames/144626/first.jpg", "AURORA/data/something/frames/144626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving earth of globe"}]} +{"id": "000000110919", "images": ["AURORA/data/something/frames/72913/first.jpg", "AURORA/data/something/frames/72913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small book from right to left"}]} +{"id": "000000110920", "images": ["AURORA/data/something/frames/164457/first.jpg", "AURORA/data/something/frames/164457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and box so they pass each other"}]} +{"id": "000000110921", "images": ["AURORA/data/something/frames/218044/first.jpg", "AURORA/data/something/frames/218044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking book up"}]} +{"id": "000000110922", "images": ["AURORA/data/something/frames/196821/first.jpg", "AURORA/data/something/frames/196821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a peg from behind of a box"}]} +{"id": "000000110923", "images": ["AURORA/data/something/frames/29049/first.jpg", "AURORA/data/something/frames/29049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda out of a soda can"}]} +{"id": "000000110924", "images": ["AURORA/data/something/frames/171101/first.jpg", "AURORA/data/something/frames/171101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sweatshirt into bag"}]} +{"id": "000000110925", "images": ["AURORA/data/something/frames/153712/first.jpg", "AURORA/data/something/frames/153712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of desk"}]} +{"id": "000000110926", "images": ["AURORA/data/something/frames/177899/first.jpg", "AURORA/data/something/frames/177899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging adapter into outlet"}]} +{"id": "000000110927", "images": ["AURORA/data/something/frames/123173/first.jpg", "AURORA/data/something/frames/123173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bag next to cupboard"}]} +{"id": "000000110928", "images": ["AURORA/data/something/frames/116822/first.jpg", "AURORA/data/something/frames/116822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting book with book"}]} +{"id": "000000110929", "images": ["AURORA/data/something/frames/47343/first.jpg", "AURORA/data/something/frames/47343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with spoon"}]} +{"id": "000000110930", "images": ["AURORA/data/something/frames/2963/first.jpg", "AURORA/data/something/frames/2963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a magnet to refrigerator"}]} +{"id": "000000110931", "images": ["AURORA/data/something/frames/194192/first.jpg", "AURORA/data/something/frames/194192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mug and scissors closer to each other"}]} +{"id": "000000110932", "images": ["AURORA/data/something/frames/4784/first.jpg", "AURORA/data/something/frames/4784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pepper so that it almost falls off but doesn't"}]} +{"id": "000000110933", "images": ["AURORA/data/something/frames/220781/first.jpg", "AURORA/data/something/frames/220781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000110934", "images": ["AURORA/data/something/frames/87111/first.jpg", "AURORA/data/something/frames/87111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting stone with lemon"}]} +{"id": "000000110935", "images": ["AURORA/data/something/frames/6079/first.jpg", "AURORA/data/something/frames/6079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball being deflected from a wall"}]} +{"id": "000000110936", "images": ["AURORA/data/something/frames/173943/first.jpg", "AURORA/data/something/frames/173943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a bottle into a plastic bag"}]} +{"id": "000000110937", "images": ["AURORA/data/something/frames/105890/first.jpg", "AURORA/data/something/frames/105890/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a hanger so that it almost falls off but doesn't"}]} +{"id": "000000110938", "images": ["AURORA/data/something/frames/197315/first.jpg", "AURORA/data/something/frames/197315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending metal pipe so that it deforms"}]} +{"id": "000000110939", "images": ["AURORA/data/something/frames/124981/first.jpg", "AURORA/data/something/frames/124981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bearings and speaker away from each other"}]} +{"id": "000000110940", "images": ["AURORA/data/something/frames/173323/first.jpg", "AURORA/data/something/frames/173323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting tumbler with glass"}]} +{"id": "000000110941", "images": ["AURORA/data/something/frames/17248/first.jpg", "AURORA/data/something/frames/17248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending straw so that it deforms"}]} +{"id": "000000110942", "images": ["AURORA/data/something/frames/199252/first.jpg", "AURORA/data/something/frames/199252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small sunscreen lotion from left to right"}]} +{"id": "000000110943", "images": ["AURORA/data/something/frames/135609/first.jpg", "AURORA/data/something/frames/135609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting can with knife"}]} +{"id": "000000110944", "images": ["AURORA/data/something/frames/164623/first.jpg", "AURORA/data/something/frames/164623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug on a surface"}]} +{"id": "000000110945", "images": ["AURORA/data/something/frames/106256/first.jpg", "AURORA/data/something/frames/106256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling hair oil from left to right"}]} +{"id": "000000110946", "images": ["AURORA/data/something/frames/152453/first.jpg", "AURORA/data/something/frames/152453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening gate"}]} +{"id": "000000110947", "images": ["AURORA/data/something/frames/84242/first.jpg", "AURORA/data/something/frames/84242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing orange post-it from right to left"}]} +{"id": "000000110948", "images": ["AURORA/data/something/frames/45228/first.jpg", "AURORA/data/something/frames/45228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and another bottle closer to each other"}]} +{"id": "000000110949", "images": ["AURORA/data/something/frames/115528/first.jpg", "AURORA/data/something/frames/115528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball up"}]} +{"id": "000000110950", "images": ["AURORA/data/something/frames/218718/first.jpg", "AURORA/data/something/frames/218718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing plastik bag, revealing vase behind"}]} +{"id": "000000110951", "images": ["AURORA/data/something/frames/69235/first.jpg", "AURORA/data/something/frames/69235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet"}]} +{"id": "000000110952", "images": ["AURORA/data/something/frames/73037/first.jpg", "AURORA/data/something/frames/73037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) pull part of light"}]} +{"id": "000000110953", "images": ["AURORA/data/something/frames/171852/first.jpg", "AURORA/data/something/frames/171852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering earring with bottle"}]} +{"id": "000000110954", "images": ["AURORA/data/something/frames/179411/first.jpg", "AURORA/data/something/frames/179411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail varnish from left to right"}]} +{"id": "000000110955", "images": ["AURORA/data/something/frames/86141/first.jpg", "AURORA/data/something/frames/86141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cellphone charge plug into wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000110956", "images": ["AURORA/data/something/frames/42148/first.jpg", "AURORA/data/something/frames/42148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bowl"}]} +{"id": "000000110957", "images": ["AURORA/data/something/frames/184809/first.jpg", "AURORA/data/something/frames/184809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel away from towel"}]} +{"id": "000000110958", "images": ["AURORA/data/something/frames/154749/first.jpg", "AURORA/data/something/frames/154749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000110959", "images": ["AURORA/data/something/frames/120158/first.jpg", "AURORA/data/something/frames/120158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: gum colliding with gum and both come to a halt"}]} +{"id": "000000110960", "images": ["AURORA/data/something/frames/30805/first.jpg", "AURORA/data/something/frames/30805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding newspaper"}]} +{"id": "000000110961", "images": ["AURORA/data/something/frames/168325/first.jpg", "AURORA/data/something/frames/168325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen behind diary"}]} +{"id": "000000110962", "images": ["AURORA/data/something/frames/120960/first.jpg", "AURORA/data/something/frames/120960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering goggles"}]} +{"id": "000000110963", "images": ["AURORA/data/something/frames/151101/first.jpg", "AURORA/data/something/frames/151101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling tape measure from right to left"}]} +{"id": "000000110964", "images": ["AURORA/data/something/frames/208689/first.jpg", "AURORA/data/something/frames/208689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger and pendrive closer to each other"}]} +{"id": "000000110965", "images": ["AURORA/data/something/frames/80735/first.jpg", "AURORA/data/something/frames/80735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic comb into mug"}]} +{"id": "000000110966", "images": ["AURORA/data/something/frames/26512/first.jpg", "AURORA/data/something/frames/26512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000110967", "images": ["AURORA/data/something/frames/145153/first.jpg", "AURORA/data/something/frames/145153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening cabinet"}]} +{"id": "000000110968", "images": ["AURORA/data/something/frames/105925/first.jpg", "AURORA/data/something/frames/105925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking measuring tape from ground"}]} +{"id": "000000110969", "images": ["AURORA/data/something/frames/61495/first.jpg", "AURORA/data/something/frames/61495/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a hairspray can"}]} +{"id": "000000110970", "images": ["AURORA/data/something/frames/59264/first.jpg", "AURORA/data/something/frames/59264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter onto sunglasses so it falls down"}]} +{"id": "000000110971", "images": ["AURORA/data/something/frames/78843/first.jpg", "AURORA/data/something/frames/78843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one more glass bottle"}]} +{"id": "000000110972", "images": ["AURORA/data/something/frames/84412/first.jpg", "AURORA/data/something/frames/84412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting brush up completely without letting it drop down"}]} +{"id": "000000110973", "images": ["AURORA/data/something/frames/190334/first.jpg", "AURORA/data/something/frames/190334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fork and spoon away from each other"}]} +{"id": "000000110974", "images": ["AURORA/data/something/frames/78716/first.jpg", "AURORA/data/something/frames/78716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote towards the camera"}]} +{"id": "000000110975", "images": ["AURORA/data/something/frames/112723/first.jpg", "AURORA/data/something/frames/112723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote control with paper"}]} +{"id": "000000110976", "images": ["AURORA/data/something/frames/30118/first.jpg", "AURORA/data/something/frames/30118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind paper"}]} +{"id": "000000110977", "images": ["AURORA/data/something/frames/97604/first.jpg", "AURORA/data/something/frames/97604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cream behind knife"}]} +{"id": "000000110978", "images": ["AURORA/data/something/frames/36352/first.jpg", "AURORA/data/something/frames/36352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ketchup bottle so that it almost falls off but doesn't"}]} +{"id": "000000110979", "images": ["AURORA/data/something/frames/218826/first.jpg", "AURORA/data/something/frames/218826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug adapter into a wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000110980", "images": ["AURORA/data/something/frames/40863/first.jpg", "AURORA/data/something/frames/40863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one poker chip into a group with many poker chips"}]} +{"id": "000000110981", "images": ["AURORA/data/something/frames/41780/first.jpg", "AURORA/data/something/frames/41780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing laptop"}]} +{"id": "000000110982", "images": ["AURORA/data/something/frames/12931/first.jpg", "AURORA/data/something/frames/12931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending wooden stick until it breaks"}]} +{"id": "000000110983", "images": ["AURORA/data/something/frames/62879/first.jpg", "AURORA/data/something/frames/62879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an envelop on a surface"}]} +{"id": "000000110984", "images": ["AURORA/data/something/frames/124982/first.jpg", "AURORA/data/something/frames/124982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a perfume bottle"}]} +{"id": "000000110985", "images": ["AURORA/data/something/frames/85446/first.jpg", "AURORA/data/something/frames/85446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing purple balloon pump from left to right"}]} +{"id": "000000110986", "images": ["AURORA/data/something/frames/69359/first.jpg", "AURORA/data/something/frames/69359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a computer"}]} +{"id": "000000110987", "images": ["AURORA/data/something/frames/31878/first.jpg", "AURORA/data/something/frames/31878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 5 books"}]} +{"id": "000000110988", "images": ["AURORA/data/something/frames/149428/first.jpg", "AURORA/data/something/frames/149428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchstick onto an envelope"}]} +{"id": "000000110989", "images": ["AURORA/data/something/frames/85017/first.jpg", "AURORA/data/something/frames/85017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging ball out of sand"}]} +{"id": "000000110990", "images": ["AURORA/data/something/frames/147799/first.jpg", "AURORA/data/something/frames/147799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering notebook with hat"}]} +{"id": "000000110991", "images": ["AURORA/data/something/frames/128532/first.jpg", "AURORA/data/something/frames/128532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000110992", "images": ["AURORA/data/something/frames/45107/first.jpg", "AURORA/data/something/frames/45107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mobile on to a table"}]} +{"id": "000000110993", "images": ["AURORA/data/something/frames/26192/first.jpg", "AURORA/data/something/frames/26192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup until it overflows"}]} +{"id": "000000110994", "images": ["AURORA/data/something/frames/95706/first.jpg", "AURORA/data/something/frames/95706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into a phone"}]} +{"id": "000000110995", "images": ["AURORA/data/something/frames/160763/first.jpg", "AURORA/data/something/frames/160763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen across a surface without it falling down"}]} +{"id": "000000110996", "images": ["AURORA/data/something/frames/122822/first.jpg", "AURORA/data/something/frames/122822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping jar over"}]} +{"id": "000000110997", "images": ["AURORA/data/something/frames/73137/first.jpg", "AURORA/data/something/frames/73137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000110998", "images": ["AURORA/data/something/frames/116149/first.jpg", "AURORA/data/something/frames/116149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting car and book on the table"}]} +{"id": "000000110999", "images": ["AURORA/data/something/frames/193529/first.jpg", "AURORA/data/something/frames/193529/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tin from left to right"}]} +{"id": "000000111000", "images": ["AURORA/data/something/frames/26734/first.jpg", "AURORA/data/something/frames/26734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a box of tissues upside down"}]} +{"id": "000000111001", "images": ["AURORA/data/something/frames/17315/first.jpg", "AURORA/data/something/frames/17315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000111002", "images": ["AURORA/data/something/frames/110918/first.jpg", "AURORA/data/something/frames/110918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass until it overflows"}]} +{"id": "000000111003", "images": ["AURORA/data/something/frames/140933/first.jpg", "AURORA/data/something/frames/140933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with pillow"}]} +{"id": "000000111004", "images": ["AURORA/data/something/frames/55125/first.jpg", "AURORA/data/something/frames/55125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying boot on the table on its side, not upright"}]} +{"id": "000000111005", "images": ["AURORA/data/something/frames/172395/first.jpg", "AURORA/data/something/frames/172395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking white chalk from table"}]} +{"id": "000000111006", "images": ["AURORA/data/something/frames/105481/first.jpg", "AURORA/data/something/frames/105481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the bowl in front of glass"}]} +{"id": "000000111007", "images": ["AURORA/data/something/frames/20374/first.jpg", "AURORA/data/something/frames/20374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000111008", "images": ["AURORA/data/something/frames/153961/first.jpg", "AURORA/data/something/frames/153961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting carbon paper into the bill book"}]} +{"id": "000000111009", "images": ["AURORA/data/something/frames/26327/first.jpg", "AURORA/data/something/frames/26327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a small bottle and a fidget cube on the table"}]} +{"id": "000000111010", "images": ["AURORA/data/something/frames/115694/first.jpg", "AURORA/data/something/frames/115694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering round case with towel"}]} +{"id": "000000111011", "images": ["AURORA/data/something/frames/95285/first.jpg", "AURORA/data/something/frames/95285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving night light and fig closer to each other"}]} +{"id": "000000111012", "images": ["AURORA/data/something/frames/218361/first.jpg", "AURORA/data/something/frames/218361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming fruits"}]} +{"id": "000000111013", "images": ["AURORA/data/something/frames/112088/first.jpg", "AURORA/data/something/frames/112088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening hand cream tube"}]} +{"id": "000000111014", "images": ["AURORA/data/something/frames/3871/first.jpg", "AURORA/data/something/frames/3871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coloured pen into pens"}]} +{"id": "000000111015", "images": ["AURORA/data/something/frames/24498/first.jpg", "AURORA/data/something/frames/24498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cat with towel"}]} +{"id": "000000111016", "images": ["AURORA/data/something/frames/197549/first.jpg", "AURORA/data/something/frames/197549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming small green ball"}]} +{"id": "000000111017", "images": ["AURORA/data/something/frames/134653/first.jpg", "AURORA/data/something/frames/134653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper towel into two pieces"}]} +{"id": "000000111018", "images": ["AURORA/data/something/frames/150075/first.jpg", "AURORA/data/something/frames/150075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb connector into charging port"}]} +{"id": "000000111019", "images": ["AURORA/data/something/frames/85616/first.jpg", "AURORA/data/something/frames/85616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into surge protector but pulling it right out as you remove your hand"}]} +{"id": "000000111020", "images": ["AURORA/data/something/frames/130469/first.jpg", "AURORA/data/something/frames/130469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy wheel with wooden stick"}]} +{"id": "000000111021", "images": ["AURORA/data/something/frames/9578/first.jpg", "AURORA/data/something/frames/9578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ruler onto a notebook"}]} +{"id": "000000111022", "images": ["AURORA/data/something/frames/121804/first.jpg", "AURORA/data/something/frames/121804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon up"}]} +{"id": "000000111023", "images": ["AURORA/data/something/frames/196406/first.jpg", "AURORA/data/something/frames/196406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with power bank on it"}]} +{"id": "000000111024", "images": ["AURORA/data/something/frames/178551/first.jpg", "AURORA/data/something/frames/178551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bolt screw, gear wheel and pencil sharpner on the table"}]} +{"id": "000000111025", "images": ["AURORA/data/something/frames/138067/first.jpg", "AURORA/data/something/frames/138067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel away from towel"}]} +{"id": "000000111026", "images": ["AURORA/data/something/frames/83306/first.jpg", "AURORA/data/something/frames/83306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sun glass towards the camera"}]} +{"id": "000000111027", "images": ["AURORA/data/something/frames/65009/first.jpg", "AURORA/data/something/frames/65009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000111028", "images": ["AURORA/data/something/frames/107100/first.jpg", "AURORA/data/something/frames/107100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mobile phone similar to other mobile phones that are already on the table"}]} +{"id": "000000111029", "images": ["AURORA/data/something/frames/9186/first.jpg", "AURORA/data/something/frames/9186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000111030", "images": ["AURORA/data/something/frames/218347/first.jpg", "AURORA/data/something/frames/218347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming one tea light candle"}]} +{"id": "000000111031", "images": ["AURORA/data/something/frames/62906/first.jpg", "AURORA/data/something/frames/62906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from car with your camera"}]} +{"id": "000000111032", "images": ["AURORA/data/something/frames/14541/first.jpg", "AURORA/data/something/frames/14541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111033", "images": ["AURORA/data/something/frames/36725/first.jpg", "AURORA/data/something/frames/36725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tablet"}]} +{"id": "000000111034", "images": ["AURORA/data/something/frames/97520/first.jpg", "AURORA/data/something/frames/97520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000111035", "images": ["AURORA/data/something/frames/200714/first.jpg", "AURORA/data/something/frames/200714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind doll"}]} +{"id": "000000111036", "images": ["AURORA/data/something/frames/68421/first.jpg", "AURORA/data/something/frames/68421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass of water on a surface"}]} +{"id": "000000111037", "images": ["AURORA/data/something/frames/135565/first.jpg", "AURORA/data/something/frames/135565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking board clip up"}]} +{"id": "000000111038", "images": ["AURORA/data/something/frames/54579/first.jpg", "AURORA/data/something/frames/54579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging adaptor into socket but pulling it right out as you remove your hand"}]} +{"id": "000000111039", "images": ["AURORA/data/something/frames/121659/first.jpg", "AURORA/data/something/frames/121659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111040", "images": ["AURORA/data/something/frames/156130/first.jpg", "AURORA/data/something/frames/156130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of fork"}]} +{"id": "000000111041", "images": ["AURORA/data/something/frames/78306/first.jpg", "AURORA/data/something/frames/78306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook upright on the table, so it falls on its side"}]} +{"id": "000000111042", "images": ["AURORA/data/something/frames/64595/first.jpg", "AURORA/data/something/frames/64595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) kerchief wet until water comes out"}]} +{"id": "000000111043", "images": ["AURORA/data/something/frames/153575/first.jpg", "AURORA/data/something/frames/153575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors upright on the table, so it falls on its side"}]} +{"id": "000000111044", "images": ["AURORA/data/something/frames/90266/first.jpg", "AURORA/data/something/frames/90266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bulb syringe into sink"}]} +{"id": "000000111045", "images": ["AURORA/data/something/frames/88927/first.jpg", "AURORA/data/something/frames/88927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cup from left to right"}]} +{"id": "000000111046", "images": ["AURORA/data/something/frames/73975/first.jpg", "AURORA/data/something/frames/73975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle with box"}]} +{"id": "000000111047", "images": ["AURORA/data/something/frames/175308/first.jpg", "AURORA/data/something/frames/175308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mouse from right to left"}]} +{"id": "000000111048", "images": ["AURORA/data/something/frames/66669/first.jpg", "AURORA/data/something/frames/66669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111049", "images": ["AURORA/data/something/frames/109760/first.jpg", "AURORA/data/something/frames/109760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy puppy closer to toy"}]} +{"id": "000000111050", "images": ["AURORA/data/something/frames/212833/first.jpg", "AURORA/data/something/frames/212833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a toy car colliding with a toy car and both are being deflected"}]} +{"id": "000000111051", "images": ["AURORA/data/something/frames/84939/first.jpg", "AURORA/data/something/frames/84939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into telephone but pulling it right out as you remove your hand"}]} +{"id": "000000111052", "images": ["AURORA/data/something/frames/59719/first.jpg", "AURORA/data/something/frames/59719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking brush from purse"}]} +{"id": "000000111053", "images": ["AURORA/data/something/frames/168300/first.jpg", "AURORA/data/something/frames/168300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle with box"}]} +{"id": "000000111054", "images": ["AURORA/data/something/frames/203829/first.jpg", "AURORA/data/something/frames/203829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something underneath something"}]} +{"id": "000000111055", "images": ["AURORA/data/something/frames/69340/first.jpg", "AURORA/data/something/frames/69340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding towel"}]} +{"id": "000000111056", "images": ["AURORA/data/something/frames/94264/first.jpg", "AURORA/data/something/frames/94264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keyring of airpod case"}]} +{"id": "000000111057", "images": ["AURORA/data/something/frames/211564/first.jpg", "AURORA/data/something/frames/211564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup on a surface"}]} +{"id": "000000111058", "images": ["AURORA/data/something/frames/1322/first.jpg", "AURORA/data/something/frames/1322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubberband so that it gets stretched"}]} +{"id": "000000111059", "images": ["AURORA/data/something/frames/144633/first.jpg", "AURORA/data/something/frames/144633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pink toothbrush case on a surface"}]} +{"id": "000000111060", "images": ["AURORA/data/something/frames/79206/first.jpg", "AURORA/data/something/frames/79206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving my phone down"}]} +{"id": "000000111061", "images": ["AURORA/data/something/frames/117431/first.jpg", "AURORA/data/something/frames/117431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a watch from right to left"}]} +{"id": "000000111062", "images": ["AURORA/data/something/frames/159874/first.jpg", "AURORA/data/something/frames/159874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000111063", "images": ["AURORA/data/something/frames/153594/first.jpg", "AURORA/data/something/frames/153594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000111064", "images": ["AURORA/data/something/frames/30495/first.jpg", "AURORA/data/something/frames/30495/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000111065", "images": ["AURORA/data/something/frames/87632/first.jpg", "AURORA/data/something/frames/87632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming flowers"}]} +{"id": "000000111066", "images": ["AURORA/data/something/frames/213899/first.jpg", "AURORA/data/something/frames/213899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming banana bunch"}]} +{"id": "000000111067", "images": ["AURORA/data/something/frames/49683/first.jpg", "AURORA/data/something/frames/49683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubix cube behind a pillow"}]} +{"id": "000000111068", "images": ["AURORA/data/something/frames/62582/first.jpg", "AURORA/data/something/frames/62582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a piece of paper"}]} +{"id": "000000111069", "images": ["AURORA/data/something/frames/6426/first.jpg", "AURORA/data/something/frames/6426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying coin in flour"}]} +{"id": "000000111070", "images": ["AURORA/data/something/frames/85360/first.jpg", "AURORA/data/something/frames/85360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming flower"}]} +{"id": "000000111071", "images": ["AURORA/data/something/frames/106452/first.jpg", "AURORA/data/something/frames/106452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a tin with tea leaves over, so tea leaves falls out"}]} +{"id": "000000111072", "images": ["AURORA/data/something/frames/157675/first.jpg", "AURORA/data/something/frames/157675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sticky note"}]} +{"id": "000000111073", "images": ["AURORA/data/something/frames/168324/first.jpg", "AURORA/data/something/frames/168324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming toy giraffe"}]} +{"id": "000000111074", "images": ["AURORA/data/something/frames/98847/first.jpg", "AURORA/data/something/frames/98847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000111075", "images": ["AURORA/data/something/frames/161657/first.jpg", "AURORA/data/something/frames/161657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a watch with a hand"}]} +{"id": "000000111076", "images": ["AURORA/data/something/frames/134584/first.jpg", "AURORA/data/something/frames/134584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue just a little bit"}]} +{"id": "000000111077", "images": ["AURORA/data/something/frames/79910/first.jpg", "AURORA/data/something/frames/79910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of hair elastic so that it gets stretched"}]} +{"id": "000000111078", "images": ["AURORA/data/something/frames/101859/first.jpg", "AURORA/data/something/frames/101859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing container from left to right"}]} +{"id": "000000111079", "images": ["AURORA/data/something/frames/85702/first.jpg", "AURORA/data/something/frames/85702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping cereal up with measuring cup"}]} +{"id": "000000111080", "images": ["AURORA/data/something/frames/98076/first.jpg", "AURORA/data/something/frames/98076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 cups"}]} +{"id": "000000111081", "images": ["AURORA/data/something/frames/77722/first.jpg", "AURORA/data/something/frames/77722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plugg into charger but pulling it right out as you remove your hand"}]} +{"id": "000000111082", "images": ["AURORA/data/something/frames/7632/first.jpg", "AURORA/data/something/frames/7632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving envelopes across a surface without it falling down"}]} +{"id": "000000111083", "images": ["AURORA/data/something/frames/109978/first.jpg", "AURORA/data/something/frames/109978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving table up"}]} +{"id": "000000111084", "images": ["AURORA/data/something/frames/204882/first.jpg", "AURORA/data/something/frames/204882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching bottle to cap"}]} +{"id": "000000111085", "images": ["AURORA/data/something/frames/194332/first.jpg", "AURORA/data/something/frames/194332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering headphones with clothing"}]} +{"id": "000000111086", "images": ["AURORA/data/something/frames/196047/first.jpg", "AURORA/data/something/frames/196047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming gate"}]} +{"id": "000000111087", "images": ["AURORA/data/something/frames/219940/first.jpg", "AURORA/data/something/frames/219940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending spaghetti until it breaks"}]} +{"id": "000000111088", "images": ["AURORA/data/something/frames/161706/first.jpg", "AURORA/data/something/frames/161706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a measuring tape from left to right"}]} +{"id": "000000111089", "images": ["AURORA/data/something/frames/112895/first.jpg", "AURORA/data/something/frames/112895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring animal feed out of container"}]} +{"id": "000000111090", "images": ["AURORA/data/something/frames/42130/first.jpg", "AURORA/data/something/frames/42130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000111091", "images": ["AURORA/data/something/frames/16007/first.jpg", "AURORA/data/something/frames/16007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111092", "images": ["AURORA/data/something/frames/108784/first.jpg", "AURORA/data/something/frames/108784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker pen from left to right"}]} +{"id": "000000111093", "images": ["AURORA/data/something/frames/196269/first.jpg", "AURORA/data/something/frames/196269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning soup bowl upside down"}]} +{"id": "000000111094", "images": ["AURORA/data/something/frames/21651/first.jpg", "AURORA/data/something/frames/21651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on a surface"}]} +{"id": "000000111095", "images": ["AURORA/data/something/frames/103077/first.jpg", "AURORA/data/something/frames/103077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming ball"}]} +{"id": "000000111096", "images": ["AURORA/data/something/frames/181261/first.jpg", "AURORA/data/something/frames/181261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a book so that it deforms"}]} +{"id": "000000111097", "images": ["AURORA/data/something/frames/140527/first.jpg", "AURORA/data/something/frames/140527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from water tap with your camera"}]} +{"id": "000000111098", "images": ["AURORA/data/something/frames/186245/first.jpg", "AURORA/data/something/frames/186245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a beaker so that it almost falls off but doesn't"}]} +{"id": "000000111099", "images": ["AURORA/data/something/frames/218202/first.jpg", "AURORA/data/something/frames/218202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching stopper to vial"}]} +{"id": "000000111100", "images": ["AURORA/data/something/frames/49005/first.jpg", "AURORA/data/something/frames/49005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening fridge"}]} +{"id": "000000111101", "images": ["AURORA/data/something/frames/189104/first.jpg", "AURORA/data/something/frames/189104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 6 books"}]} +{"id": "000000111102", "images": ["AURORA/data/something/frames/85240/first.jpg", "AURORA/data/something/frames/85240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding banana leaf"}]} +{"id": "000000111103", "images": ["AURORA/data/something/frames/181583/first.jpg", "AURORA/data/something/frames/181583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a green box on the table on its side, not upright"}]} +{"id": "000000111104", "images": ["AURORA/data/something/frames/48363/first.jpg", "AURORA/data/something/frames/48363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting charger adapter into orange bowl"}]} +{"id": "000000111105", "images": ["AURORA/data/something/frames/37282/first.jpg", "AURORA/data/something/frames/37282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing notecard just a little bit"}]} +{"id": "000000111106", "images": ["AURORA/data/something/frames/19069/first.jpg", "AURORA/data/something/frames/19069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening empty clay container"}]} +{"id": "000000111107", "images": ["AURORA/data/something/frames/37052/first.jpg", "AURORA/data/something/frames/37052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy down"}]} +{"id": "000000111108", "images": ["AURORA/data/something/frames/4138/first.jpg", "AURORA/data/something/frames/4138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into bowl"}]} +{"id": "000000111109", "images": ["AURORA/data/something/frames/203569/first.jpg", "AURORA/data/something/frames/203569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pad lock"}]} +{"id": "000000111110", "images": ["AURORA/data/something/frames/72108/first.jpg", "AURORA/data/something/frames/72108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into a cup, but missing so it spills next to it"}]} +{"id": "000000111111", "images": ["AURORA/data/something/frames/181944/first.jpg", "AURORA/data/something/frames/181944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving leaf up"}]} +{"id": "000000111112", "images": ["AURORA/data/something/frames/129223/first.jpg", "AURORA/data/something/frames/129223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper tissue into two pieces"}]} +{"id": "000000111113", "images": ["AURORA/data/something/frames/192296/first.jpg", "AURORA/data/something/frames/192296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger down"}]} +{"id": "000000111114", "images": ["AURORA/data/something/frames/53036/first.jpg", "AURORA/data/something/frames/53036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a notebook on a surface"}]} +{"id": "000000111115", "images": ["AURORA/data/something/frames/43527/first.jpg", "AURORA/data/something/frames/43527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping lighter over"}]} +{"id": "000000111116", "images": ["AURORA/data/something/frames/92215/first.jpg", "AURORA/data/something/frames/92215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the keys into the glass"}]} +{"id": "000000111117", "images": ["AURORA/data/something/frames/32149/first.jpg", "AURORA/data/something/frames/32149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging mains plug into socket"}]} +{"id": "000000111118", "images": ["AURORA/data/something/frames/76243/first.jpg", "AURORA/data/something/frames/76243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone with book"}]} +{"id": "000000111119", "images": ["AURORA/data/something/frames/184572/first.jpg", "AURORA/data/something/frames/184572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottle from left to right"}]} +{"id": "000000111120", "images": ["AURORA/data/something/frames/197719/first.jpg", "AURORA/data/something/frames/197719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into notebook paper"}]} +{"id": "000000111121", "images": ["AURORA/data/something/frames/72712/first.jpg", "AURORA/data/something/frames/72712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into container"}]} +{"id": "000000111122", "images": ["AURORA/data/something/frames/55391/first.jpg", "AURORA/data/something/frames/55391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling something up"}]} +{"id": "000000111123", "images": ["AURORA/data/something/frames/81358/first.jpg", "AURORA/data/something/frames/81358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a cloth"}]} +{"id": "000000111124", "images": ["AURORA/data/something/frames/17995/first.jpg", "AURORA/data/something/frames/17995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a box closer to a cube"}]} +{"id": "000000111125", "images": ["AURORA/data/something/frames/184121/first.jpg", "AURORA/data/something/frames/184121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of thread so that it separates into two pieces"}]} +{"id": "000000111126", "images": ["AURORA/data/something/frames/142440/first.jpg", "AURORA/data/something/frames/142440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming lighter"}]} +{"id": "000000111127", "images": ["AURORA/data/something/frames/152357/first.jpg", "AURORA/data/something/frames/152357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling binders up"}]} +{"id": "000000111128", "images": ["AURORA/data/something/frames/42628/first.jpg", "AURORA/data/something/frames/42628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ice cream scoop"}]} +{"id": "000000111129", "images": ["AURORA/data/something/frames/96619/first.jpg", "AURORA/data/something/frames/96619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and ball so they collide with each other"}]} +{"id": "000000111130", "images": ["AURORA/data/something/frames/93549/first.jpg", "AURORA/data/something/frames/93549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming water tap"}]} +{"id": "000000111131", "images": ["AURORA/data/something/frames/212356/first.jpg", "AURORA/data/something/frames/212356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cashew with cap"}]} +{"id": "000000111132", "images": ["AURORA/data/something/frames/141934/first.jpg", "AURORA/data/something/frames/141934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting twisting bottle cap"}]} +{"id": "000000111133", "images": ["AURORA/data/something/frames/33766/first.jpg", "AURORA/data/something/frames/33766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving headphones up"}]} +{"id": "000000111134", "images": ["AURORA/data/something/frames/209994/first.jpg", "AURORA/data/something/frames/209994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a pill bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111135", "images": ["AURORA/data/something/frames/185502/first.jpg", "AURORA/data/something/frames/185502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into jar"}]} +{"id": "000000111136", "images": ["AURORA/data/something/frames/198062/first.jpg", "AURORA/data/something/frames/198062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting coconut tree with hand"}]} +{"id": "000000111137", "images": ["AURORA/data/something/frames/24566/first.jpg", "AURORA/data/something/frames/24566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) front of door"}]} +{"id": "000000111138", "images": ["AURORA/data/something/frames/86039/first.jpg", "AURORA/data/something/frames/86039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb pin into laptop"}]} +{"id": "000000111139", "images": ["AURORA/data/something/frames/166132/first.jpg", "AURORA/data/something/frames/166132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soda can closer to glass"}]} +{"id": "000000111140", "images": ["AURORA/data/something/frames/28021/first.jpg", "AURORA/data/something/frames/28021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111141", "images": ["AURORA/data/something/frames/37110/first.jpg", "AURORA/data/something/frames/37110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with avocado on it"}]} +{"id": "000000111142", "images": ["AURORA/data/something/frames/63041/first.jpg", "AURORA/data/something/frames/63041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000111143", "images": ["AURORA/data/something/frames/132062/first.jpg", "AURORA/data/something/frames/132062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote with comb"}]} +{"id": "000000111144", "images": ["AURORA/data/something/frames/75383/first.jpg", "AURORA/data/something/frames/75383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 staplers"}]} +{"id": "000000111145", "images": ["AURORA/data/something/frames/176777/first.jpg", "AURORA/data/something/frames/176777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rule up"}]} +{"id": "000000111146", "images": ["AURORA/data/something/frames/188301/first.jpg", "AURORA/data/something/frames/188301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses, marker and gift card on the table"}]} +{"id": "000000111147", "images": ["AURORA/data/something/frames/215219/first.jpg", "AURORA/data/something/frames/215219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting brick next to brick"}]} +{"id": "000000111148", "images": ["AURORA/data/something/frames/30105/first.jpg", "AURORA/data/something/frames/30105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking alcohol bottle so that it falls over"}]} +{"id": "000000111149", "images": ["AURORA/data/something/frames/37442/first.jpg", "AURORA/data/something/frames/37442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coin into box"}]} +{"id": "000000111150", "images": ["AURORA/data/something/frames/6342/first.jpg", "AURORA/data/something/frames/6342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a lotion tube so that it falls over"}]} +{"id": "000000111151", "images": ["AURORA/data/something/frames/111853/first.jpg", "AURORA/data/something/frames/111853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key up"}]} +{"id": "000000111152", "images": ["AURORA/data/something/frames/193535/first.jpg", "AURORA/data/something/frames/193535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000111153", "images": ["AURORA/data/something/frames/137883/first.jpg", "AURORA/data/something/frames/137883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring rubbing alcohol out of a bottle"}]} +{"id": "000000111154", "images": ["AURORA/data/something/frames/66036/first.jpg", "AURORA/data/something/frames/66036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 white board clips"}]} +{"id": "000000111155", "images": ["AURORA/data/something/frames/45462/first.jpg", "AURORA/data/something/frames/45462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of lavandin container"}]} +{"id": "000000111156", "images": ["AURORA/data/something/frames/20106/first.jpg", "AURORA/data/something/frames/20106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding folded paper"}]} +{"id": "000000111157", "images": ["AURORA/data/something/frames/111818/first.jpg", "AURORA/data/something/frames/111818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a towel up completely without letting it drop down"}]} +{"id": "000000111158", "images": ["AURORA/data/something/frames/198462/first.jpg", "AURORA/data/something/frames/198462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: adapter colliding with rock and both are being deflected"}]} +{"id": "000000111159", "images": ["AURORA/data/something/frames/140161/first.jpg", "AURORA/data/something/frames/140161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter up"}]} +{"id": "000000111160", "images": ["AURORA/data/something/frames/1464/first.jpg", "AURORA/data/something/frames/1464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing kitchen cabinet"}]} +{"id": "000000111161", "images": ["AURORA/data/something/frames/26984/first.jpg", "AURORA/data/something/frames/26984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving game down"}]} +{"id": "000000111162", "images": ["AURORA/data/something/frames/33327/first.jpg", "AURORA/data/something/frames/33327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening mobile phone cover"}]} +{"id": "000000111163", "images": ["AURORA/data/something/frames/198111/first.jpg", "AURORA/data/something/frames/198111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a hard disk drive"}]} +{"id": "000000111164", "images": ["AURORA/data/something/frames/136876/first.jpg", "AURORA/data/something/frames/136876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping orange colour sharpner in front of duster"}]} +{"id": "000000111165", "images": ["AURORA/data/something/frames/22881/first.jpg", "AURORA/data/something/frames/22881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tie across a surface without it falling down"}]} +{"id": "000000111166", "images": ["AURORA/data/something/frames/70548/first.jpg", "AURORA/data/something/frames/70548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring dr.pepper into cup"}]} +{"id": "000000111167", "images": ["AURORA/data/something/frames/45995/first.jpg", "AURORA/data/something/frames/45995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting glass with tool"}]} +{"id": "000000111168", "images": ["AURORA/data/something/frames/201692/first.jpg", "AURORA/data/something/frames/201692/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing blue lighter from left to right"}]} +{"id": "000000111169", "images": ["AURORA/data/something/frames/68659/first.jpg", "AURORA/data/something/frames/68659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000111170", "images": ["AURORA/data/something/frames/192369/first.jpg", "AURORA/data/something/frames/192369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cub up"}]} +{"id": "000000111171", "images": ["AURORA/data/something/frames/128259/first.jpg", "AURORA/data/something/frames/128259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming cat"}]} +{"id": "000000111172", "images": ["AURORA/data/something/frames/18100/first.jpg", "AURORA/data/something/frames/18100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling stapler from left to right"}]} +{"id": "000000111173", "images": ["AURORA/data/something/frames/161875/first.jpg", "AURORA/data/something/frames/161875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a plant"}]} +{"id": "000000111174", "images": ["AURORA/data/something/frames/184687/first.jpg", "AURORA/data/something/frames/184687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb cord into a charger"}]} +{"id": "000000111175", "images": ["AURORA/data/something/frames/168365/first.jpg", "AURORA/data/something/frames/168365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving computer case down"}]} +{"id": "000000111176", "images": ["AURORA/data/something/frames/146732/first.jpg", "AURORA/data/something/frames/146732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000111177", "images": ["AURORA/data/something/frames/105994/first.jpg", "AURORA/data/something/frames/105994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000111178", "images": ["AURORA/data/something/frames/87458/first.jpg", "AURORA/data/something/frames/87458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote closer to coaster"}]} +{"id": "000000111179", "images": ["AURORA/data/something/frames/116983/first.jpg", "AURORA/data/something/frames/116983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111180", "images": ["AURORA/data/something/frames/89502/first.jpg", "AURORA/data/something/frames/89502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000111181", "images": ["AURORA/data/something/frames/75639/first.jpg", "AURORA/data/something/frames/75639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling notebook out of bookbag"}]} +{"id": "000000111182", "images": ["AURORA/data/something/frames/98888/first.jpg", "AURORA/data/something/frames/98888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering water bottle"}]} +{"id": "000000111183", "images": ["AURORA/data/something/frames/997/first.jpg", "AURORA/data/something/frames/997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil, sharpener and eraser on the table"}]} +{"id": "000000111184", "images": ["AURORA/data/something/frames/86352/first.jpg", "AURORA/data/something/frames/86352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding kitchen towel"}]} +{"id": "000000111185", "images": ["AURORA/data/something/frames/143225/first.jpg", "AURORA/data/something/frames/143225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pot holder into vase"}]} +{"id": "000000111186", "images": ["AURORA/data/something/frames/88589/first.jpg", "AURORA/data/something/frames/88589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fork away from spoon"}]} +{"id": "000000111187", "images": ["AURORA/data/something/frames/188708/first.jpg", "AURORA/data/something/frames/188708/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the remote away from the mouse"}]} +{"id": "000000111188", "images": ["AURORA/data/something/frames/152774/first.jpg", "AURORA/data/something/frames/152774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering watch"}]} +{"id": "000000111189", "images": ["AURORA/data/something/frames/175153/first.jpg", "AURORA/data/something/frames/175153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000111190", "images": ["AURORA/data/something/frames/65798/first.jpg", "AURORA/data/something/frames/65798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from iron with your camera"}]} +{"id": "000000111191", "images": ["AURORA/data/something/frames/57220/first.jpg", "AURORA/data/something/frames/57220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy away from toy"}]} +{"id": "000000111192", "images": ["AURORA/data/something/frames/182807/first.jpg", "AURORA/data/something/frames/182807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a different label skateboard next to another skateboard"}]} +{"id": "000000111193", "images": ["AURORA/data/something/frames/147448/first.jpg", "AURORA/data/something/frames/147448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000111194", "images": ["AURORA/data/something/frames/217201/first.jpg", "AURORA/data/something/frames/217201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping small box into medium tupperware container"}]} +{"id": "000000111195", "images": ["AURORA/data/something/frames/85753/first.jpg", "AURORA/data/something/frames/85753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coke into a cup"}]} +{"id": "000000111196", "images": ["AURORA/data/something/frames/69661/first.jpg", "AURORA/data/something/frames/69661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plate up"}]} +{"id": "000000111197", "images": ["AURORA/data/something/frames/184007/first.jpg", "AURORA/data/something/frames/184007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a folder so that it falls over"}]} +{"id": "000000111198", "images": ["AURORA/data/something/frames/86955/first.jpg", "AURORA/data/something/frames/86955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toilette paper and toilette paper closer to each other"}]} +{"id": "000000111199", "images": ["AURORA/data/something/frames/158425/first.jpg", "AURORA/data/something/frames/158425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving salt shaker and pepper mill closer to each other"}]} +{"id": "000000111200", "images": ["AURORA/data/something/frames/35267/first.jpg", "AURORA/data/something/frames/35267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000111201", "images": ["AURORA/data/something/frames/78872/first.jpg", "AURORA/data/something/frames/78872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000111202", "images": ["AURORA/data/something/frames/48034/first.jpg", "AURORA/data/something/frames/48034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of nail polish so the stack collapses"}]} +{"id": "000000111203", "images": ["AURORA/data/something/frames/181879/first.jpg", "AURORA/data/something/frames/181879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coffee into a cup"}]} +{"id": "000000111204", "images": ["AURORA/data/something/frames/5576/first.jpg", "AURORA/data/something/frames/5576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote on a surface"}]} +{"id": "000000111205", "images": ["AURORA/data/something/frames/36459/first.jpg", "AURORA/data/something/frames/36459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking shoe polish container from piller"}]} +{"id": "000000111206", "images": ["AURORA/data/something/frames/141650/first.jpg", "AURORA/data/something/frames/141650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000111207", "images": ["AURORA/data/something/frames/162418/first.jpg", "AURORA/data/something/frames/162418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking nail polish so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111208", "images": ["AURORA/data/something/frames/180580/first.jpg", "AURORA/data/something/frames/180580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing compassbox"}]} +{"id": "000000111209", "images": ["AURORA/data/something/frames/31139/first.jpg", "AURORA/data/something/frames/31139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a plug on it"}]} +{"id": "000000111210", "images": ["AURORA/data/something/frames/95803/first.jpg", "AURORA/data/something/frames/95803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto plant"}]} +{"id": "000000111211", "images": ["AURORA/data/something/frames/84344/first.jpg", "AURORA/data/something/frames/84344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile and remote closer to each other"}]} +{"id": "000000111212", "images": ["AURORA/data/something/frames/65011/first.jpg", "AURORA/data/something/frames/65011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a book on the table on its side, not upright"}]} +{"id": "000000111213", "images": ["AURORA/data/something/frames/102101/first.jpg", "AURORA/data/something/frames/102101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting feeding bottle into pot"}]} +{"id": "000000111214", "images": ["AURORA/data/something/frames/105837/first.jpg", "AURORA/data/something/frames/105837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a drawer"}]} +{"id": "000000111215", "images": ["AURORA/data/something/frames/29488/first.jpg", "AURORA/data/something/frames/29488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling potholders up"}]} +{"id": "000000111216", "images": ["AURORA/data/something/frames/177211/first.jpg", "AURORA/data/something/frames/177211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sesame seeds onto an oven tray"}]} +{"id": "000000111217", "images": ["AURORA/data/something/frames/195673/first.jpg", "AURORA/data/something/frames/195673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering mobile phone with blanket"}]} +{"id": "000000111218", "images": ["AURORA/data/something/frames/40597/first.jpg", "AURORA/data/something/frames/40597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving blinds up"}]} +{"id": "000000111219", "images": ["AURORA/data/something/frames/116200/first.jpg", "AURORA/data/something/frames/116200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping eraser onto notebook"}]} +{"id": "000000111220", "images": ["AURORA/data/something/frames/110093/first.jpg", "AURORA/data/something/frames/110093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000111221", "images": ["AURORA/data/something/frames/71758/first.jpg", "AURORA/data/something/frames/71758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to fridge"}]} +{"id": "000000111222", "images": ["AURORA/data/something/frames/29538/first.jpg", "AURORA/data/something/frames/29538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candy towards the camera"}]} +{"id": "000000111223", "images": ["AURORA/data/something/frames/128173/first.jpg", "AURORA/data/something/frames/128173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding receipt"}]} +{"id": "000000111224", "images": ["AURORA/data/something/frames/140514/first.jpg", "AURORA/data/something/frames/140514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cufflinks onto a handkerchief"}]} +{"id": "000000111225", "images": ["AURORA/data/something/frames/6452/first.jpg", "AURORA/data/something/frames/6452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a container"}]} +{"id": "000000111226", "images": ["AURORA/data/something/frames/89036/first.jpg", "AURORA/data/something/frames/89036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb in front of a knife"}]} +{"id": "000000111227", "images": ["AURORA/data/something/frames/154955/first.jpg", "AURORA/data/something/frames/154955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching bottle with your camera"}]} +{"id": "000000111228", "images": ["AURORA/data/something/frames/128343/first.jpg", "AURORA/data/something/frames/128343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000111229", "images": ["AURORA/data/something/frames/194338/first.jpg", "AURORA/data/something/frames/194338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cd into case"}]} +{"id": "000000111230", "images": ["AURORA/data/something/frames/17120/first.jpg", "AURORA/data/something/frames/17120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking sellotape so that it falls over"}]} +{"id": "000000111231", "images": ["AURORA/data/something/frames/174589/first.jpg", "AURORA/data/something/frames/174589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000111232", "images": ["AURORA/data/something/frames/125487/first.jpg", "AURORA/data/something/frames/125487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a water bottle onto the floor"}]} +{"id": "000000111233", "images": ["AURORA/data/something/frames/191021/first.jpg", "AURORA/data/something/frames/191021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone towards the camera"}]} +{"id": "000000111234", "images": ["AURORA/data/something/frames/148067/first.jpg", "AURORA/data/something/frames/148067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb onto an envelope"}]} +{"id": "000000111235", "images": ["AURORA/data/something/frames/25653/first.jpg", "AURORA/data/something/frames/25653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a handkerchief in front of a peg"}]} +{"id": "000000111236", "images": ["AURORA/data/something/frames/37595/first.jpg", "AURORA/data/something/frames/37595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and tuperware away from each other"}]} +{"id": "000000111237", "images": ["AURORA/data/something/frames/204942/first.jpg", "AURORA/data/something/frames/204942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and another bottle so they collide with each other"}]} +{"id": "000000111238", "images": ["AURORA/data/something/frames/204713/first.jpg", "AURORA/data/something/frames/204713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from mirror with your camera"}]} +{"id": "000000111239", "images": ["AURORA/data/something/frames/17064/first.jpg", "AURORA/data/something/frames/17064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving handle of glass bottle"}]} +{"id": "000000111240", "images": ["AURORA/data/something/frames/148407/first.jpg", "AURORA/data/something/frames/148407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering stuffed animal"}]} +{"id": "000000111241", "images": ["AURORA/data/something/frames/30654/first.jpg", "AURORA/data/something/frames/30654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering teacup with saucer"}]} +{"id": "000000111242", "images": ["AURORA/data/something/frames/159068/first.jpg", "AURORA/data/something/frames/159068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic flower away from toy duck"}]} +{"id": "000000111243", "images": ["AURORA/data/something/frames/157815/first.jpg", "AURORA/data/something/frames/157815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 cans"}]} +{"id": "000000111244", "images": ["AURORA/data/something/frames/82891/first.jpg", "AURORA/data/something/frames/82891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking candy out of box"}]} +{"id": "000000111245", "images": ["AURORA/data/something/frames/19283/first.jpg", "AURORA/data/something/frames/19283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator closer to box"}]} +{"id": "000000111246", "images": ["AURORA/data/something/frames/133927/first.jpg", "AURORA/data/something/frames/133927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking yogurt out of freezer"}]} +{"id": "000000111247", "images": ["AURORA/data/something/frames/89079/first.jpg", "AURORA/data/something/frames/89079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading butter onto bread"}]} +{"id": "000000111248", "images": ["AURORA/data/something/frames/108992/first.jpg", "AURORA/data/something/frames/108992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending twist ties so that it deforms"}]} +{"id": "000000111249", "images": ["AURORA/data/something/frames/105734/first.jpg", "AURORA/data/something/frames/105734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork with other forks"}]} +{"id": "000000111250", "images": ["AURORA/data/something/frames/12462/first.jpg", "AURORA/data/something/frames/12462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming ring"}]} +{"id": "000000111251", "images": ["AURORA/data/something/frames/64810/first.jpg", "AURORA/data/something/frames/64810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen from right to left"}]} +{"id": "000000111252", "images": ["AURORA/data/something/frames/190983/first.jpg", "AURORA/data/something/frames/190983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottled water"}]} +{"id": "000000111253", "images": ["AURORA/data/something/frames/136860/first.jpg", "AURORA/data/something/frames/136860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tool away from scissor"}]} +{"id": "000000111254", "images": ["AURORA/data/something/frames/21538/first.jpg", "AURORA/data/something/frames/21538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower away from the camera"}]} +{"id": "000000111255", "images": ["AURORA/data/something/frames/181248/first.jpg", "AURORA/data/something/frames/181248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing aluminum foil into two pieces"}]} +{"id": "000000111256", "images": ["AURORA/data/something/frames/176048/first.jpg", "AURORA/data/something/frames/176048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a screw from left to right"}]} +{"id": "000000111257", "images": ["AURORA/data/something/frames/8164/first.jpg", "AURORA/data/something/frames/8164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing canister"}]} +{"id": "000000111258", "images": ["AURORA/data/something/frames/105386/first.jpg", "AURORA/data/something/frames/105386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming green water bottle"}]} +{"id": "000000111259", "images": ["AURORA/data/something/frames/218476/first.jpg", "AURORA/data/something/frames/218476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching flower with your camera"}]} +{"id": "000000111260", "images": ["AURORA/data/something/frames/208894/first.jpg", "AURORA/data/something/frames/208894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking container"}]} +{"id": "000000111261", "images": ["AURORA/data/something/frames/112295/first.jpg", "AURORA/data/something/frames/112295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting belt into bowl"}]} +{"id": "000000111262", "images": ["AURORA/data/something/frames/96898/first.jpg", "AURORA/data/something/frames/96898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000111263", "images": ["AURORA/data/something/frames/153682/first.jpg", "AURORA/data/something/frames/153682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white book marker from right to left"}]} +{"id": "000000111264", "images": ["AURORA/data/something/frames/107878/first.jpg", "AURORA/data/something/frames/107878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000111265", "images": ["AURORA/data/something/frames/36858/first.jpg", "AURORA/data/something/frames/36858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto orange"}]} +{"id": "000000111266", "images": ["AURORA/data/something/frames/30133/first.jpg", "AURORA/data/something/frames/30133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying net in dustbin"}]} +{"id": "000000111267", "images": ["AURORA/data/something/frames/46363/first.jpg", "AURORA/data/something/frames/46363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting id card on a surface"}]} +{"id": "000000111268", "images": ["AURORA/data/something/frames/211992/first.jpg", "AURORA/data/something/frames/211992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping block onto table"}]} +{"id": "000000111269", "images": ["AURORA/data/something/frames/210656/first.jpg", "AURORA/data/something/frames/210656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pencil away from a book"}]} +{"id": "000000111270", "images": ["AURORA/data/something/frames/123891/first.jpg", "AURORA/data/something/frames/123891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering eye of stove with towel"}]} +{"id": "000000111271", "images": ["AURORA/data/something/frames/3571/first.jpg", "AURORA/data/something/frames/3571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a receipt just a little bit"}]} +{"id": "000000111272", "images": ["AURORA/data/something/frames/205653/first.jpg", "AURORA/data/something/frames/205653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy in front of goggles"}]} +{"id": "000000111273", "images": ["AURORA/data/something/frames/133223/first.jpg", "AURORA/data/something/frames/133223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000111274", "images": ["AURORA/data/something/frames/19680/first.jpg", "AURORA/data/something/frames/19680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red colour pen similar to other colour pens on the table"}]} +{"id": "000000111275", "images": ["AURORA/data/something/frames/63680/first.jpg", "AURORA/data/something/frames/63680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pink water bottle on a surface"}]} +{"id": "000000111276", "images": ["AURORA/data/something/frames/116311/first.jpg", "AURORA/data/something/frames/116311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pair of spectacles onto a dashboard"}]} +{"id": "000000111277", "images": ["AURORA/data/something/frames/126356/first.jpg", "AURORA/data/something/frames/126356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging wire into power bank"}]} +{"id": "000000111278", "images": ["AURORA/data/something/frames/195261/first.jpg", "AURORA/data/something/frames/195261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic bottle across a surface without it falling down"}]} +{"id": "000000111279", "images": ["AURORA/data/something/frames/106798/first.jpg", "AURORA/data/something/frames/106798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup over"}]} +{"id": "000000111280", "images": ["AURORA/data/something/frames/146965/first.jpg", "AURORA/data/something/frames/146965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle so that it almost falls off but doesn't"}]} +{"id": "000000111281", "images": ["AURORA/data/something/frames/165861/first.jpg", "AURORA/data/something/frames/165861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering baby doll"}]} +{"id": "000000111282", "images": ["AURORA/data/something/frames/188500/first.jpg", "AURORA/data/something/frames/188500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with pen on it"}]} +{"id": "000000111283", "images": ["AURORA/data/something/frames/113826/first.jpg", "AURORA/data/something/frames/113826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper sheet into two pieces"}]} +{"id": "000000111284", "images": ["AURORA/data/something/frames/172022/first.jpg", "AURORA/data/something/frames/172022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking rubber glow out of bowl"}]} +{"id": "000000111285", "images": ["AURORA/data/something/frames/73442/first.jpg", "AURORA/data/something/frames/73442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottle"}]} +{"id": "000000111286", "images": ["AURORA/data/something/frames/164609/first.jpg", "AURORA/data/something/frames/164609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plushie with charger"}]} +{"id": "000000111287", "images": ["AURORA/data/something/frames/56888/first.jpg", "AURORA/data/something/frames/56888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming generator set"}]} +{"id": "000000111288", "images": ["AURORA/data/something/frames/125282/first.jpg", "AURORA/data/something/frames/125282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen onto a book"}]} +{"id": "000000111289", "images": ["AURORA/data/something/frames/13716/first.jpg", "AURORA/data/something/frames/13716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 notebooks"}]} +{"id": "000000111290", "images": ["AURORA/data/something/frames/178987/first.jpg", "AURORA/data/something/frames/178987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting block with spoon"}]} +{"id": "000000111291", "images": ["AURORA/data/something/frames/195519/first.jpg", "AURORA/data/something/frames/195519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting rocks on a surface"}]} +{"id": "000000111292", "images": ["AURORA/data/something/frames/190611/first.jpg", "AURORA/data/something/frames/190611/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote off of coaster"}]} +{"id": "000000111293", "images": ["AURORA/data/something/frames/114204/first.jpg", "AURORA/data/something/frames/114204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bolt away from the camera"}]} +{"id": "000000111294", "images": ["AURORA/data/something/frames/185287/first.jpg", "AURORA/data/something/frames/185287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning water bottle upside down"}]} +{"id": "000000111295", "images": ["AURORA/data/something/frames/168244/first.jpg", "AURORA/data/something/frames/168244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a cable"}]} +{"id": "000000111296", "images": ["AURORA/data/something/frames/42272/first.jpg", "AURORA/data/something/frames/42272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a receipt into two pieces"}]} +{"id": "000000111297", "images": ["AURORA/data/something/frames/178364/first.jpg", "AURORA/data/something/frames/178364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tape with a box"}]} +{"id": "000000111298", "images": ["AURORA/data/something/frames/198200/first.jpg", "AURORA/data/something/frames/198200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon into bowl"}]} +{"id": "000000111299", "images": ["AURORA/data/something/frames/91387/first.jpg", "AURORA/data/something/frames/91387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting hammer with sponge on it"}]} +{"id": "000000111300", "images": ["AURORA/data/something/frames/133407/first.jpg", "AURORA/data/something/frames/133407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of rectangular box"}]} +{"id": "000000111301", "images": ["AURORA/data/something/frames/148038/first.jpg", "AURORA/data/something/frames/148038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a newspaper into two pieces"}]} +{"id": "000000111302", "images": ["AURORA/data/something/frames/94525/first.jpg", "AURORA/data/something/frames/94525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111303", "images": ["AURORA/data/something/frames/142863/first.jpg", "AURORA/data/something/frames/142863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling game console from behind of carry case"}]} +{"id": "000000111304", "images": ["AURORA/data/something/frames/160229/first.jpg", "AURORA/data/something/frames/160229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding tea towel"}]} +{"id": "000000111305", "images": ["AURORA/data/something/frames/78455/first.jpg", "AURORA/data/something/frames/78455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing orange notebook from right to left"}]} +{"id": "000000111306", "images": ["AURORA/data/something/frames/79242/first.jpg", "AURORA/data/something/frames/79242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup on a surface"}]} +{"id": "000000111307", "images": ["AURORA/data/something/frames/95143/first.jpg", "AURORA/data/something/frames/95143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a chop stick until it breaks"}]} +{"id": "000000111308", "images": ["AURORA/data/something/frames/78438/first.jpg", "AURORA/data/something/frames/78438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a pickle jar"}]} +{"id": "000000111309", "images": ["AURORA/data/something/frames/196308/first.jpg", "AURORA/data/something/frames/196308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book and book closer to each other"}]} +{"id": "000000111310", "images": ["AURORA/data/something/frames/6968/first.jpg", "AURORA/data/something/frames/6968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green chalk towards the camera"}]} +{"id": "000000111311", "images": ["AURORA/data/something/frames/103392/first.jpg", "AURORA/data/something/frames/103392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pencil into a box"}]} +{"id": "000000111312", "images": ["AURORA/data/something/frames/85212/first.jpg", "AURORA/data/something/frames/85212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving star away from square"}]} +{"id": "000000111313", "images": ["AURORA/data/something/frames/12054/first.jpg", "AURORA/data/something/frames/12054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto table"}]} +{"id": "000000111314", "images": ["AURORA/data/something/frames/134888/first.jpg", "AURORA/data/something/frames/134888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from right to left"}]} +{"id": "000000111315", "images": ["AURORA/data/something/frames/65817/first.jpg", "AURORA/data/something/frames/65817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111316", "images": ["AURORA/data/something/frames/4522/first.jpg", "AURORA/data/something/frames/4522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking glasses up"}]} +{"id": "000000111317", "images": ["AURORA/data/something/frames/86705/first.jpg", "AURORA/data/something/frames/86705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting mouse mat with card on it"}]} +{"id": "000000111318", "images": ["AURORA/data/something/frames/15658/first.jpg", "AURORA/data/something/frames/15658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a piece of paper"}]} +{"id": "000000111319", "images": ["AURORA/data/something/frames/210603/first.jpg", "AURORA/data/something/frames/210603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a box up"}]} +{"id": "000000111320", "images": ["AURORA/data/something/frames/152767/first.jpg", "AURORA/data/something/frames/152767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and wallet so they pass each other"}]} +{"id": "000000111321", "images": ["AURORA/data/something/frames/123289/first.jpg", "AURORA/data/something/frames/123289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling oil onto sink"}]} +{"id": "000000111322", "images": ["AURORA/data/something/frames/136072/first.jpg", "AURORA/data/something/frames/136072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue just a little bit"}]} +{"id": "000000111323", "images": ["AURORA/data/something/frames/18645/first.jpg", "AURORA/data/something/frames/18645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from left to right"}]} +{"id": "000000111324", "images": ["AURORA/data/something/frames/157798/first.jpg", "AURORA/data/something/frames/157798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting perfume bottle behind hairclip"}]} +{"id": "000000111325", "images": ["AURORA/data/something/frames/18125/first.jpg", "AURORA/data/something/frames/18125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming slippers"}]} +{"id": "000000111326", "images": ["AURORA/data/something/frames/190823/first.jpg", "AURORA/data/something/frames/190823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting knife with bowl on it"}]} +{"id": "000000111327", "images": ["AURORA/data/something/frames/36871/first.jpg", "AURORA/data/something/frames/36871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a mouse from left to right"}]} +{"id": "000000111328", "images": ["AURORA/data/something/frames/178515/first.jpg", "AURORA/data/something/frames/178515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a tupperware container"}]} +{"id": "000000111329", "images": ["AURORA/data/something/frames/166678/first.jpg", "AURORA/data/something/frames/166678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank up"}]} +{"id": "000000111330", "images": ["AURORA/data/something/frames/64604/first.jpg", "AURORA/data/something/frames/64604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking tape so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111331", "images": ["AURORA/data/something/frames/60125/first.jpg", "AURORA/data/something/frames/60125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a wallet from left to right"}]} +{"id": "000000111332", "images": ["AURORA/data/something/frames/51138/first.jpg", "AURORA/data/something/frames/51138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding pillow case"}]} +{"id": "000000111333", "images": ["AURORA/data/something/frames/207877/first.jpg", "AURORA/data/something/frames/207877/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with paper"}]} +{"id": "000000111334", "images": ["AURORA/data/something/frames/179557/first.jpg", "AURORA/data/something/frames/179557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a pen cap to a pen"}]} +{"id": "000000111335", "images": ["AURORA/data/something/frames/162605/first.jpg", "AURORA/data/something/frames/162605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving striker coin up"}]} +{"id": "000000111336", "images": ["AURORA/data/something/frames/24441/first.jpg", "AURORA/data/something/frames/24441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a book"}]} +{"id": "000000111337", "images": ["AURORA/data/something/frames/84417/first.jpg", "AURORA/data/something/frames/84417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111338", "images": ["AURORA/data/something/frames/24300/first.jpg", "AURORA/data/something/frames/24300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tablet box with red pouch"}]} +{"id": "000000111339", "images": ["AURORA/data/something/frames/59277/first.jpg", "AURORA/data/something/frames/59277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) case of a mouse"}]} +{"id": "000000111340", "images": ["AURORA/data/something/frames/132691/first.jpg", "AURORA/data/something/frames/132691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paperboard with a wallet on it"}]} +{"id": "000000111341", "images": ["AURORA/data/something/frames/106999/first.jpg", "AURORA/data/something/frames/106999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a wooden block into a soft lunchbox"}]} +{"id": "000000111342", "images": ["AURORA/data/something/frames/86300/first.jpg", "AURORA/data/something/frames/86300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting medicine bottle upright on the table, so it falls on its side"}]} +{"id": "000000111343", "images": ["AURORA/data/something/frames/218413/first.jpg", "AURORA/data/something/frames/218413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a container so that it almost falls off but doesn't"}]} +{"id": "000000111344", "images": ["AURORA/data/something/frames/203322/first.jpg", "AURORA/data/something/frames/203322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111345", "images": ["AURORA/data/something/frames/197103/first.jpg", "AURORA/data/something/frames/197103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111346", "images": ["AURORA/data/something/frames/185083/first.jpg", "AURORA/data/something/frames/185083/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle cap from right to left"}]} +{"id": "000000111347", "images": ["AURORA/data/something/frames/47038/first.jpg", "AURORA/data/something/frames/47038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper"}]} +{"id": "000000111348", "images": ["AURORA/data/something/frames/172490/first.jpg", "AURORA/data/something/frames/172490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cassette pie from left to right"}]} +{"id": "000000111349", "images": ["AURORA/data/something/frames/22417/first.jpg", "AURORA/data/something/frames/22417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering marker with paper"}]} +{"id": "000000111350", "images": ["AURORA/data/something/frames/116638/first.jpg", "AURORA/data/something/frames/116638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a charger onto a box"}]} +{"id": "000000111351", "images": ["AURORA/data/something/frames/165710/first.jpg", "AURORA/data/something/frames/165710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000111352", "images": ["AURORA/data/something/frames/3385/first.jpg", "AURORA/data/something/frames/3385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball into a mug"}]} +{"id": "000000111353", "images": ["AURORA/data/something/frames/57315/first.jpg", "AURORA/data/something/frames/57315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000111354", "images": ["AURORA/data/something/frames/214520/first.jpg", "AURORA/data/something/frames/214520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting necklace next to keyboard"}]} +{"id": "000000111355", "images": ["AURORA/data/something/frames/6460/first.jpg", "AURORA/data/something/frames/6460/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one coin of many similar coins on the table"}]} +{"id": "000000111356", "images": ["AURORA/data/something/frames/103001/first.jpg", "AURORA/data/something/frames/103001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coaster with coaster"}]} +{"id": "000000111357", "images": ["AURORA/data/something/frames/218050/first.jpg", "AURORA/data/something/frames/218050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding one dollar bill"}]} +{"id": "000000111358", "images": ["AURORA/data/something/frames/5730/first.jpg", "AURORA/data/something/frames/5730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box with a pen"}]} +{"id": "000000111359", "images": ["AURORA/data/something/frames/71222/first.jpg", "AURORA/data/something/frames/71222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall outlet"}]} +{"id": "000000111360", "images": ["AURORA/data/something/frames/205253/first.jpg", "AURORA/data/something/frames/205253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a tube of toothpaste in front of a toothbrush"}]} +{"id": "000000111361", "images": ["AURORA/data/something/frames/48744/first.jpg", "AURORA/data/something/frames/48744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a towel into a pitcher"}]} +{"id": "000000111362", "images": ["AURORA/data/something/frames/105509/first.jpg", "AURORA/data/something/frames/105509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a box across a surface without it falling down"}]} +{"id": "000000111363", "images": ["AURORA/data/something/frames/7158/first.jpg", "AURORA/data/something/frames/7158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111364", "images": ["AURORA/data/something/frames/142617/first.jpg", "AURORA/data/something/frames/142617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping leaves off of a table"}]} +{"id": "000000111365", "images": ["AURORA/data/something/frames/200378/first.jpg", "AURORA/data/something/frames/200378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flashdrive next to container"}]} +{"id": "000000111366", "images": ["AURORA/data/something/frames/84327/first.jpg", "AURORA/data/something/frames/84327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting pen"}]} +{"id": "000000111367", "images": ["AURORA/data/something/frames/1657/first.jpg", "AURORA/data/something/frames/1657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming black remote"}]} +{"id": "000000111368", "images": ["AURORA/data/something/frames/162068/first.jpg", "AURORA/data/something/frames/162068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sponge upright on the table, so it falls on its side"}]} +{"id": "000000111369", "images": ["AURORA/data/something/frames/182579/first.jpg", "AURORA/data/something/frames/182579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a chair with my hands"}]} +{"id": "000000111370", "images": ["AURORA/data/something/frames/138709/first.jpg", "AURORA/data/something/frames/138709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chip clip, chip clip and chocolate on the table"}]} +{"id": "000000111371", "images": ["AURORA/data/something/frames/24327/first.jpg", "AURORA/data/something/frames/24327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping torch in front of shoe"}]} +{"id": "000000111372", "images": ["AURORA/data/something/frames/210319/first.jpg", "AURORA/data/something/frames/210319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving music player up"}]} +{"id": "000000111373", "images": ["AURORA/data/something/frames/113913/first.jpg", "AURORA/data/something/frames/113913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic twist tie"}]} +{"id": "000000111374", "images": ["AURORA/data/something/frames/123684/first.jpg", "AURORA/data/something/frames/123684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching sandals with your camera"}]} +{"id": "000000111375", "images": ["AURORA/data/something/frames/109636/first.jpg", "AURORA/data/something/frames/109636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a kettle"}]} +{"id": "000000111376", "images": ["AURORA/data/something/frames/87386/first.jpg", "AURORA/data/something/frames/87386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking lipstick so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111377", "images": ["AURORA/data/something/frames/160955/first.jpg", "AURORA/data/something/frames/160955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving razor up"}]} +{"id": "000000111378", "images": ["AURORA/data/something/frames/85924/first.jpg", "AURORA/data/something/frames/85924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering phone"}]} +{"id": "000000111379", "images": ["AURORA/data/something/frames/210649/first.jpg", "AURORA/data/something/frames/210649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting brush in front of pen"}]} +{"id": "000000111380", "images": ["AURORA/data/something/frames/173576/first.jpg", "AURORA/data/something/frames/173576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 books on 3"}]} +{"id": "000000111381", "images": ["AURORA/data/something/frames/192585/first.jpg", "AURORA/data/something/frames/192585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a tennis ball into its plastic box"}]} +{"id": "000000111382", "images": ["AURORA/data/something/frames/13037/first.jpg", "AURORA/data/something/frames/13037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lens closer to camera"}]} +{"id": "000000111383", "images": ["AURORA/data/something/frames/38331/first.jpg", "AURORA/data/something/frames/38331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into paper"}]} +{"id": "000000111384", "images": ["AURORA/data/something/frames/77332/first.jpg", "AURORA/data/something/frames/77332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending notebook so that it deforms"}]} +{"id": "000000111385", "images": ["AURORA/data/something/frames/28237/first.jpg", "AURORA/data/something/frames/28237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of hair tie so that it separates into two pieces"}]} +{"id": "000000111386", "images": ["AURORA/data/something/frames/45172/first.jpg", "AURORA/data/something/frames/45172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting teddy with remote control"}]} +{"id": "000000111387", "images": ["AURORA/data/something/frames/62735/first.jpg", "AURORA/data/something/frames/62735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen upright on the table, so it falls on its side"}]} +{"id": "000000111388", "images": ["AURORA/data/something/frames/75866/first.jpg", "AURORA/data/something/frames/75866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box so that it almost falls off but doesn't"}]} +{"id": "000000111389", "images": ["AURORA/data/something/frames/97399/first.jpg", "AURORA/data/something/frames/97399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a dolar bill out of a wallet"}]} +{"id": "000000111390", "images": ["AURORA/data/something/frames/161099/first.jpg", "AURORA/data/something/frames/161099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping headphones onto the floor"}]} +{"id": "000000111391", "images": ["AURORA/data/something/frames/149515/first.jpg", "AURORA/data/something/frames/149515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper, pen and rubber band on the table"}]} +{"id": "000000111392", "images": ["AURORA/data/something/frames/30520/first.jpg", "AURORA/data/something/frames/30520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen closer to holder"}]} +{"id": "000000111393", "images": ["AURORA/data/something/frames/150672/first.jpg", "AURORA/data/something/frames/150672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into a cup"}]} +{"id": "000000111394", "images": ["AURORA/data/something/frames/80339/first.jpg", "AURORA/data/something/frames/80339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking toothbrush from bin"}]} +{"id": "000000111395", "images": ["AURORA/data/something/frames/41873/first.jpg", "AURORA/data/something/frames/41873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring something into something"}]} +{"id": "000000111396", "images": ["AURORA/data/something/frames/217205/first.jpg", "AURORA/data/something/frames/217205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking tomato up"}]} +{"id": "000000111397", "images": ["AURORA/data/something/frames/132652/first.jpg", "AURORA/data/something/frames/132652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto a rag"}]} +{"id": "000000111398", "images": ["AURORA/data/something/frames/55484/first.jpg", "AURORA/data/something/frames/55484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing tin"}]} +{"id": "000000111399", "images": ["AURORA/data/something/frames/147929/first.jpg", "AURORA/data/something/frames/147929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving block and toy closer to each other"}]} +{"id": "000000111400", "images": ["AURORA/data/something/frames/18445/first.jpg", "AURORA/data/something/frames/18445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing plastic box"}]} +{"id": "000000111401", "images": ["AURORA/data/something/frames/210621/first.jpg", "AURORA/data/something/frames/210621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sandwich into bag"}]} +{"id": "000000111402", "images": ["AURORA/data/something/frames/211903/first.jpg", "AURORA/data/something/frames/211903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books so the stack collapses"}]} +{"id": "000000111403", "images": ["AURORA/data/something/frames/102540/first.jpg", "AURORA/data/something/frames/102540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 blocks"}]} +{"id": "000000111404", "images": ["AURORA/data/something/frames/14077/first.jpg", "AURORA/data/something/frames/14077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto box"}]} +{"id": "000000111405", "images": ["AURORA/data/something/frames/106833/first.jpg", "AURORA/data/something/frames/106833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a book behind a screen"}]} +{"id": "000000111406", "images": ["AURORA/data/something/frames/62486/first.jpg", "AURORA/data/something/frames/62486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking matchstick"}]} +{"id": "000000111407", "images": ["AURORA/data/something/frames/43695/first.jpg", "AURORA/data/something/frames/43695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pillow with a book"}]} +{"id": "000000111408", "images": ["AURORA/data/something/frames/19764/first.jpg", "AURORA/data/something/frames/19764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming jeep"}]} +{"id": "000000111409", "images": ["AURORA/data/something/frames/180485/first.jpg", "AURORA/data/something/frames/180485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111410", "images": ["AURORA/data/something/frames/36824/first.jpg", "AURORA/data/something/frames/36824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping water up with mug"}]} +{"id": "000000111411", "images": ["AURORA/data/something/frames/187399/first.jpg", "AURORA/data/something/frames/187399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a sink"}]} +{"id": "000000111412", "images": ["AURORA/data/something/frames/74525/first.jpg", "AURORA/data/something/frames/74525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and ball closer to each other"}]} +{"id": "000000111413", "images": ["AURORA/data/something/frames/187928/first.jpg", "AURORA/data/something/frames/187928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coffee into a mug"}]} +{"id": "000000111414", "images": ["AURORA/data/something/frames/214597/first.jpg", "AURORA/data/something/frames/214597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cup with towel"}]} +{"id": "000000111415", "images": ["AURORA/data/something/frames/207835/first.jpg", "AURORA/data/something/frames/207835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening stove oven"}]} +{"id": "000000111416", "images": ["AURORA/data/something/frames/136817/first.jpg", "AURORA/data/something/frames/136817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming toy idol"}]} +{"id": "000000111417", "images": ["AURORA/data/something/frames/37252/first.jpg", "AURORA/data/something/frames/37252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling turmeric behind hot case"}]} +{"id": "000000111418", "images": ["AURORA/data/something/frames/94982/first.jpg", "AURORA/data/something/frames/94982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil down"}]} +{"id": "000000111419", "images": ["AURORA/data/something/frames/10353/first.jpg", "AURORA/data/something/frames/10353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tube behind bed"}]} +{"id": "000000111420", "images": ["AURORA/data/something/frames/38642/first.jpg", "AURORA/data/something/frames/38642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling stuffed toy out of cup"}]} +{"id": "000000111421", "images": ["AURORA/data/something/frames/90320/first.jpg", "AURORA/data/something/frames/90320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a flower pot from right to left"}]} +{"id": "000000111422", "images": ["AURORA/data/something/frames/58832/first.jpg", "AURORA/data/something/frames/58832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a card so that it deforms"}]} +{"id": "000000111423", "images": ["AURORA/data/something/frames/175920/first.jpg", "AURORA/data/something/frames/175920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy onto cup"}]} +{"id": "000000111424", "images": ["AURORA/data/something/frames/186512/first.jpg", "AURORA/data/something/frames/186512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking green toy car up"}]} +{"id": "000000111425", "images": ["AURORA/data/something/frames/87101/first.jpg", "AURORA/data/something/frames/87101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup across a surface without it falling down"}]} +{"id": "000000111426", "images": ["AURORA/data/something/frames/17494/first.jpg", "AURORA/data/something/frames/17494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from shampoo bottle with your camera"}]} +{"id": "000000111427", "images": ["AURORA/data/something/frames/20636/first.jpg", "AURORA/data/something/frames/20636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cotton rounds over"}]} +{"id": "000000111428", "images": ["AURORA/data/something/frames/174387/first.jpg", "AURORA/data/something/frames/174387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a cup of soda so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111429", "images": ["AURORA/data/something/frames/67808/first.jpg", "AURORA/data/something/frames/67808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming toothpaste tube"}]} +{"id": "000000111430", "images": ["AURORA/data/something/frames/179265/first.jpg", "AURORA/data/something/frames/179265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting t-shirt"}]} +{"id": "000000111431", "images": ["AURORA/data/something/frames/171592/first.jpg", "AURORA/data/something/frames/171592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding newspaper"}]} +{"id": "000000111432", "images": ["AURORA/data/something/frames/207966/first.jpg", "AURORA/data/something/frames/207966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing card just a little bit"}]} +{"id": "000000111433", "images": ["AURORA/data/something/frames/93756/first.jpg", "AURORA/data/something/frames/93756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into outlet"}]} +{"id": "000000111434", "images": ["AURORA/data/something/frames/129077/first.jpg", "AURORA/data/something/frames/129077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a shoe with a shoe"}]} +{"id": "000000111435", "images": ["AURORA/data/something/frames/113792/first.jpg", "AURORA/data/something/frames/113792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue just a little bit"}]} +{"id": "000000111436", "images": ["AURORA/data/something/frames/13704/first.jpg", "AURORA/data/something/frames/13704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a comb"}]} +{"id": "000000111437", "images": ["AURORA/data/something/frames/207156/first.jpg", "AURORA/data/something/frames/207156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a book with a pen"}]} +{"id": "000000111438", "images": ["AURORA/data/something/frames/139074/first.jpg", "AURORA/data/something/frames/139074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cup into cup"}]} +{"id": "000000111439", "images": ["AURORA/data/something/frames/195860/first.jpg", "AURORA/data/something/frames/195860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a badminton bat colliding with another bat and both come to a halt"}]} +{"id": "000000111440", "images": ["AURORA/data/something/frames/207436/first.jpg", "AURORA/data/something/frames/207436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing leaflet just a little bit"}]} +{"id": "000000111441", "images": ["AURORA/data/something/frames/62750/first.jpg", "AURORA/data/something/frames/62750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall but pulling it right out as you remove your hand"}]} +{"id": "000000111442", "images": ["AURORA/data/something/frames/195332/first.jpg", "AURORA/data/something/frames/195332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending an envolope so that it deforms"}]} +{"id": "000000111443", "images": ["AURORA/data/something/frames/167384/first.jpg", "AURORA/data/something/frames/167384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111444", "images": ["AURORA/data/something/frames/219937/first.jpg", "AURORA/data/something/frames/219937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring boiling water into glass"}]} +{"id": "000000111445", "images": ["AURORA/data/something/frames/174735/first.jpg", "AURORA/data/something/frames/174735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors down"}]} +{"id": "000000111446", "images": ["AURORA/data/something/frames/2571/first.jpg", "AURORA/data/something/frames/2571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stamps, perfume and a pen on the table"}]} +{"id": "000000111447", "images": ["AURORA/data/something/frames/132470/first.jpg", "AURORA/data/something/frames/132470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking laundry pods so that it falls over"}]} +{"id": "000000111448", "images": ["AURORA/data/something/frames/104531/first.jpg", "AURORA/data/something/frames/104531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting pencil with cup"}]} +{"id": "000000111449", "images": ["AURORA/data/something/frames/3881/first.jpg", "AURORA/data/something/frames/3881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coffee into cup"}]} +{"id": "000000111450", "images": ["AURORA/data/something/frames/118897/first.jpg", "AURORA/data/something/frames/118897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a card upright on the table, so it falls on its side"}]} +{"id": "000000111451", "images": ["AURORA/data/something/frames/9235/first.jpg", "AURORA/data/something/frames/9235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming water bottle"}]} +{"id": "000000111452", "images": ["AURORA/data/something/frames/133353/first.jpg", "AURORA/data/something/frames/133353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bangle so that it almost falls off but doesn't"}]} +{"id": "000000111453", "images": ["AURORA/data/something/frames/45193/first.jpg", "AURORA/data/something/frames/45193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book of other books"}]} +{"id": "000000111454", "images": ["AURORA/data/something/frames/61754/first.jpg", "AURORA/data/something/frames/61754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball"}]} +{"id": "000000111455", "images": ["AURORA/data/something/frames/149740/first.jpg", "AURORA/data/something/frames/149740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a little box next to the bread packet"}]} +{"id": "000000111456", "images": ["AURORA/data/something/frames/83569/first.jpg", "AURORA/data/something/frames/83569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book"}]} +{"id": "000000111457", "images": ["AURORA/data/something/frames/32690/first.jpg", "AURORA/data/something/frames/32690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cufflinks onto an envelope"}]} +{"id": "000000111458", "images": ["AURORA/data/something/frames/30427/first.jpg", "AURORA/data/something/frames/30427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a wrist watch on it"}]} +{"id": "000000111459", "images": ["AURORA/data/something/frames/171933/first.jpg", "AURORA/data/something/frames/171933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling vasmol bottle from right to left"}]} +{"id": "000000111460", "images": ["AURORA/data/something/frames/43946/first.jpg", "AURORA/data/something/frames/43946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111461", "images": ["AURORA/data/something/frames/91990/first.jpg", "AURORA/data/something/frames/91990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pencil into stool"}]} +{"id": "000000111462", "images": ["AURORA/data/something/frames/124693/first.jpg", "AURORA/data/something/frames/124693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending (opening) closed book so that it deforms"}]} +{"id": "000000111463", "images": ["AURORA/data/something/frames/127394/first.jpg", "AURORA/data/something/frames/127394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking remote control up"}]} +{"id": "000000111464", "images": ["AURORA/data/something/frames/21181/first.jpg", "AURORA/data/something/frames/21181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wristband down"}]} +{"id": "000000111465", "images": ["AURORA/data/something/frames/37890/first.jpg", "AURORA/data/something/frames/37890/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tearing a piece of paper just a little bit just a little bit"}]} +{"id": "000000111466", "images": ["AURORA/data/something/frames/167706/first.jpg", "AURORA/data/something/frames/167706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving thread and cell phone closer to each other"}]} +{"id": "000000111467", "images": ["AURORA/data/something/frames/144160/first.jpg", "AURORA/data/something/frames/144160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving belt up"}]} +{"id": "000000111468", "images": ["AURORA/data/something/frames/49772/first.jpg", "AURORA/data/something/frames/49772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming usb"}]} +{"id": "000000111469", "images": ["AURORA/data/something/frames/118439/first.jpg", "AURORA/data/something/frames/118439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a envelope just a little bit"}]} +{"id": "000000111470", "images": ["AURORA/data/something/frames/15589/first.jpg", "AURORA/data/something/frames/15589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing white hand gel"}]} +{"id": "000000111471", "images": ["AURORA/data/something/frames/114686/first.jpg", "AURORA/data/something/frames/114686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mp3 across a surface without it falling down"}]} +{"id": "000000111472", "images": ["AURORA/data/something/frames/25335/first.jpg", "AURORA/data/something/frames/25335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a mug from left to right"}]} +{"id": "000000111473", "images": ["AURORA/data/something/frames/199953/first.jpg", "AURORA/data/something/frames/199953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black hair tie from left to right"}]} +{"id": "000000111474", "images": ["AURORA/data/something/frames/137843/first.jpg", "AURORA/data/something/frames/137843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening cabinet"}]} +{"id": "000000111475", "images": ["AURORA/data/something/frames/186986/first.jpg", "AURORA/data/something/frames/186986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111476", "images": ["AURORA/data/something/frames/59587/first.jpg", "AURORA/data/something/frames/59587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 blocks"}]} +{"id": "000000111477", "images": ["AURORA/data/something/frames/191702/first.jpg", "AURORA/data/something/frames/191702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing clothes peg behind"}]} +{"id": "000000111478", "images": ["AURORA/data/something/frames/55356/first.jpg", "AURORA/data/something/frames/55356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a case"}]} +{"id": "000000111479", "images": ["AURORA/data/something/frames/117030/first.jpg", "AURORA/data/something/frames/117030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering box with cap"}]} +{"id": "000000111480", "images": ["AURORA/data/something/frames/68006/first.jpg", "AURORA/data/something/frames/68006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a beer can next to beer mug"}]} +{"id": "000000111481", "images": ["AURORA/data/something/frames/780/first.jpg", "AURORA/data/something/frames/780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a lamp so that it deforms"}]} +{"id": "000000111482", "images": ["AURORA/data/something/frames/164001/first.jpg", "AURORA/data/something/frames/164001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking box from drawer"}]} +{"id": "000000111483", "images": ["AURORA/data/something/frames/215403/first.jpg", "AURORA/data/something/frames/215403/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a washcloth"}]} +{"id": "000000111484", "images": ["AURORA/data/something/frames/48290/first.jpg", "AURORA/data/something/frames/48290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a mug until it overflows"}]} +{"id": "000000111485", "images": ["AURORA/data/something/frames/64058/first.jpg", "AURORA/data/something/frames/64058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a clip so that it almost falls off but doesn't"}]} +{"id": "000000111486", "images": ["AURORA/data/something/frames/203770/first.jpg", "AURORA/data/something/frames/203770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering striker coin with blue spectacle box"}]} +{"id": "000000111487", "images": ["AURORA/data/something/frames/44815/first.jpg", "AURORA/data/something/frames/44815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle onto table"}]} +{"id": "000000111488", "images": ["AURORA/data/something/frames/127151/first.jpg", "AURORA/data/something/frames/127151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bailer up"}]} +{"id": "000000111489", "images": ["AURORA/data/something/frames/204628/first.jpg", "AURORA/data/something/frames/204628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a ribbon up"}]} +{"id": "000000111490", "images": ["AURORA/data/something/frames/174913/first.jpg", "AURORA/data/something/frames/174913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into a glass"}]} +{"id": "000000111491", "images": ["AURORA/data/something/frames/94935/first.jpg", "AURORA/data/something/frames/94935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper and paper closer to each other"}]} +{"id": "000000111492", "images": ["AURORA/data/something/frames/219858/first.jpg", "AURORA/data/something/frames/219858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing nail clipper into rack"}]} +{"id": "000000111493", "images": ["AURORA/data/something/frames/16445/first.jpg", "AURORA/data/something/frames/16445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching stone with your camera"}]} +{"id": "000000111494", "images": ["AURORA/data/something/frames/106337/first.jpg", "AURORA/data/something/frames/106337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sugar into a cup"}]} +{"id": "000000111495", "images": ["AURORA/data/something/frames/65607/first.jpg", "AURORA/data/something/frames/65607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000111496", "images": ["AURORA/data/something/frames/157238/first.jpg", "AURORA/data/something/frames/157238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a jbl, revealing a card behind"}]} +{"id": "000000111497", "images": ["AURORA/data/something/frames/48360/first.jpg", "AURORA/data/something/frames/48360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the remote closer to the mouse"}]} +{"id": "000000111498", "images": ["AURORA/data/something/frames/161008/first.jpg", "AURORA/data/something/frames/161008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mug upside down"}]} +{"id": "000000111499", "images": ["AURORA/data/something/frames/193937/first.jpg", "AURORA/data/something/frames/193937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery into box"}]} +{"id": "000000111500", "images": ["AURORA/data/something/frames/182296/first.jpg", "AURORA/data/something/frames/182296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming small bottle"}]} +{"id": "000000111501", "images": ["AURORA/data/something/frames/171983/first.jpg", "AURORA/data/something/frames/171983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending can so that it deforms"}]} +{"id": "000000111502", "images": ["AURORA/data/something/frames/47392/first.jpg", "AURORA/data/something/frames/47392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book across a surface without it falling down"}]} +{"id": "000000111503", "images": ["AURORA/data/something/frames/163401/first.jpg", "AURORA/data/something/frames/163401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring pasta into trophy"}]} +{"id": "000000111504", "images": ["AURORA/data/something/frames/39249/first.jpg", "AURORA/data/something/frames/39249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a coaster with paper"}]} +{"id": "000000111505", "images": ["AURORA/data/something/frames/43631/first.jpg", "AURORA/data/something/frames/43631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing eggs so that it almost falls off but doesn't"}]} +{"id": "000000111506", "images": ["AURORA/data/something/frames/58664/first.jpg", "AURORA/data/something/frames/58664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a coffee cup over"}]} +{"id": "000000111507", "images": ["AURORA/data/something/frames/193791/first.jpg", "AURORA/data/something/frames/193791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling chocolate up"}]} +{"id": "000000111508", "images": ["AURORA/data/something/frames/19730/first.jpg", "AURORA/data/something/frames/19730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sharpener underneath calculator"}]} +{"id": "000000111509", "images": ["AURORA/data/something/frames/193177/first.jpg", "AURORA/data/something/frames/193177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb stick into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000111510", "images": ["AURORA/data/something/frames/92505/first.jpg", "AURORA/data/something/frames/92505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000111511", "images": ["AURORA/data/something/frames/36900/first.jpg", "AURORA/data/something/frames/36900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book upright on the table"}]} +{"id": "000000111512", "images": ["AURORA/data/something/frames/68841/first.jpg", "AURORA/data/something/frames/68841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a folder"}]} +{"id": "000000111513", "images": ["AURORA/data/something/frames/166093/first.jpg", "AURORA/data/something/frames/166093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking something so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111514", "images": ["AURORA/data/something/frames/22518/first.jpg", "AURORA/data/something/frames/22518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000111515", "images": ["AURORA/data/something/frames/30393/first.jpg", "AURORA/data/something/frames/30393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a peg"}]} +{"id": "000000111516", "images": ["AURORA/data/something/frames/86780/first.jpg", "AURORA/data/something/frames/86780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall but pulling it right out as you remove your hand"}]} +{"id": "000000111517", "images": ["AURORA/data/something/frames/83167/first.jpg", "AURORA/data/something/frames/83167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toy mouse and block away from each other"}]} +{"id": "000000111518", "images": ["AURORA/data/something/frames/1286/first.jpg", "AURORA/data/something/frames/1286/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing napkin just a little bit"}]} +{"id": "000000111519", "images": ["AURORA/data/something/frames/127033/first.jpg", "AURORA/data/something/frames/127033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spatula out of a drawer"}]} +{"id": "000000111520", "images": ["AURORA/data/something/frames/26925/first.jpg", "AURORA/data/something/frames/26925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming brown case"}]} +{"id": "000000111521", "images": ["AURORA/data/something/frames/58205/first.jpg", "AURORA/data/something/frames/58205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000111522", "images": ["AURORA/data/something/frames/211294/first.jpg", "AURORA/data/something/frames/211294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping carton box onto plastic-container"}]} +{"id": "000000111523", "images": ["AURORA/data/something/frames/156718/first.jpg", "AURORA/data/something/frames/156718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving marker and marker closer to each other"}]} +{"id": "000000111524", "images": ["AURORA/data/something/frames/220337/first.jpg", "AURORA/data/something/frames/220337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a comb away from the camera"}]} +{"id": "000000111525", "images": ["AURORA/data/something/frames/41499/first.jpg", "AURORA/data/something/frames/41499/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning wrist watch upside down"}]} +{"id": "000000111526", "images": ["AURORA/data/something/frames/86175/first.jpg", "AURORA/data/something/frames/86175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup upright on the table"}]} +{"id": "000000111527", "images": ["AURORA/data/something/frames/135258/first.jpg", "AURORA/data/something/frames/135258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a figurine so that it falls over"}]} +{"id": "000000111528", "images": ["AURORA/data/something/frames/158554/first.jpg", "AURORA/data/something/frames/158554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming ball"}]} +{"id": "000000111529", "images": ["AURORA/data/something/frames/154377/first.jpg", "AURORA/data/something/frames/154377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000111530", "images": ["AURORA/data/something/frames/100085/first.jpg", "AURORA/data/something/frames/100085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping envelope next to hat"}]} +{"id": "000000111531", "images": ["AURORA/data/something/frames/104313/first.jpg", "AURORA/data/something/frames/104313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing napkin into two pieces"}]} +{"id": "000000111532", "images": ["AURORA/data/something/frames/12027/first.jpg", "AURORA/data/something/frames/12027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candlestick away from candlestick"}]} +{"id": "000000111533", "images": ["AURORA/data/something/frames/21773/first.jpg", "AURORA/data/something/frames/21773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting egg on a surface"}]} +{"id": "000000111534", "images": ["AURORA/data/something/frames/44938/first.jpg", "AURORA/data/something/frames/44938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cookies box"}]} +{"id": "000000111535", "images": ["AURORA/data/something/frames/169189/first.jpg", "AURORA/data/something/frames/169189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white colour marker pen up"}]} +{"id": "000000111536", "images": ["AURORA/data/something/frames/38281/first.jpg", "AURORA/data/something/frames/38281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) towel wet until water comes out"}]} +{"id": "000000111537", "images": ["AURORA/data/something/frames/48944/first.jpg", "AURORA/data/something/frames/48944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting face wash upright on the table"}]} +{"id": "000000111538", "images": ["AURORA/data/something/frames/140171/first.jpg", "AURORA/data/something/frames/140171/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking wallet up"}]} +{"id": "000000111539", "images": ["AURORA/data/something/frames/150756/first.jpg", "AURORA/data/something/frames/150756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a placemat"}]} +{"id": "000000111540", "images": ["AURORA/data/something/frames/40726/first.jpg", "AURORA/data/something/frames/40726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charging cable into cell phone"}]} +{"id": "000000111541", "images": ["AURORA/data/something/frames/195308/first.jpg", "AURORA/data/something/frames/195308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging inlet into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000111542", "images": ["AURORA/data/something/frames/1234/first.jpg", "AURORA/data/something/frames/1234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a sock so that it gets stretched"}]} +{"id": "000000111543", "images": ["AURORA/data/something/frames/93809/first.jpg", "AURORA/data/something/frames/93809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming baby diaper"}]} +{"id": "000000111544", "images": ["AURORA/data/something/frames/128055/first.jpg", "AURORA/data/something/frames/128055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting limon into jar"}]} +{"id": "000000111545", "images": ["AURORA/data/something/frames/134413/first.jpg", "AURORA/data/something/frames/134413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering scissors with tissue"}]} +{"id": "000000111546", "images": ["AURORA/data/something/frames/5822/first.jpg", "AURORA/data/something/frames/5822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses into a bag"}]} +{"id": "000000111547", "images": ["AURORA/data/something/frames/136480/first.jpg", "AURORA/data/something/frames/136480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering dice"}]} +{"id": "000000111548", "images": ["AURORA/data/something/frames/211356/first.jpg", "AURORA/data/something/frames/211356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking keys up"}]} +{"id": "000000111549", "images": ["AURORA/data/something/frames/122022/first.jpg", "AURORA/data/something/frames/122022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto binder"}]} +{"id": "000000111550", "images": ["AURORA/data/something/frames/123131/first.jpg", "AURORA/data/something/frames/123131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking remote"}]} +{"id": "000000111551", "images": ["AURORA/data/something/frames/95946/first.jpg", "AURORA/data/something/frames/95946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a basket with a chair"}]} +{"id": "000000111552", "images": ["AURORA/data/something/frames/194537/first.jpg", "AURORA/data/something/frames/194537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching mobile charger to plug socket"}]} +{"id": "000000111553", "images": ["AURORA/data/something/frames/188056/first.jpg", "AURORA/data/something/frames/188056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass bottle upright on the table"}]} +{"id": "000000111554", "images": ["AURORA/data/something/frames/213838/first.jpg", "AURORA/data/something/frames/213838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting car, small tin and baloon on the table"}]} +{"id": "000000111555", "images": ["AURORA/data/something/frames/125394/first.jpg", "AURORA/data/something/frames/125394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting container"}]} +{"id": "000000111556", "images": ["AURORA/data/something/frames/11080/first.jpg", "AURORA/data/something/frames/11080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping rice up with a measuring cup"}]} +{"id": "000000111557", "images": ["AURORA/data/something/frames/218511/first.jpg", "AURORA/data/something/frames/218511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a folder on a surface"}]} +{"id": "000000111558", "images": ["AURORA/data/something/frames/114334/first.jpg", "AURORA/data/something/frames/114334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting onion into bowl"}]} +{"id": "000000111559", "images": ["AURORA/data/something/frames/107715/first.jpg", "AURORA/data/something/frames/107715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming kitchen platform"}]} +{"id": "000000111560", "images": ["AURORA/data/something/frames/80502/first.jpg", "AURORA/data/something/frames/80502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving comb away from basket"}]} +{"id": "000000111561", "images": ["AURORA/data/something/frames/49434/first.jpg", "AURORA/data/something/frames/49434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000111562", "images": ["AURORA/data/something/frames/115452/first.jpg", "AURORA/data/something/frames/115452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a clip to a bag of sugar"}]} +{"id": "000000111563", "images": ["AURORA/data/something/frames/97360/first.jpg", "AURORA/data/something/frames/97360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing flower just a little bit"}]} +{"id": "000000111564", "images": ["AURORA/data/something/frames/5423/first.jpg", "AURORA/data/something/frames/5423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a marker pen so that it almost falls off but doesn't"}]} +{"id": "000000111565", "images": ["AURORA/data/something/frames/96542/first.jpg", "AURORA/data/something/frames/96542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving striker coin down"}]} +{"id": "000000111566", "images": ["AURORA/data/something/frames/23132/first.jpg", "AURORA/data/something/frames/23132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing smarthphone with book"}]} +{"id": "000000111567", "images": ["AURORA/data/something/frames/73968/first.jpg", "AURORA/data/something/frames/73968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle so that it almost falls off but doesn't"}]} +{"id": "000000111568", "images": ["AURORA/data/something/frames/143969/first.jpg", "AURORA/data/something/frames/143969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening red dairy"}]} +{"id": "000000111569", "images": ["AURORA/data/something/frames/190339/first.jpg", "AURORA/data/something/frames/190339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a shoe so that it deforms"}]} +{"id": "000000111570", "images": ["AURORA/data/something/frames/61114/first.jpg", "AURORA/data/something/frames/61114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bag upright on the table, so it falls on its side"}]} +{"id": "000000111571", "images": ["AURORA/data/something/frames/94754/first.jpg", "AURORA/data/something/frames/94754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing dishwasher"}]} +{"id": "000000111572", "images": ["AURORA/data/something/frames/54431/first.jpg", "AURORA/data/something/frames/54431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming elephant statue"}]} +{"id": "000000111573", "images": ["AURORA/data/something/frames/32313/first.jpg", "AURORA/data/something/frames/32313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a water bottle over"}]} +{"id": "000000111574", "images": ["AURORA/data/something/frames/115429/first.jpg", "AURORA/data/something/frames/115429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000111575", "images": ["AURORA/data/something/frames/209940/first.jpg", "AURORA/data/something/frames/209940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a pen"}]} +{"id": "000000111576", "images": ["AURORA/data/something/frames/116685/first.jpg", "AURORA/data/something/frames/116685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting paper punch with a scissor"}]} +{"id": "000000111577", "images": ["AURORA/data/something/frames/162644/first.jpg", "AURORA/data/something/frames/162644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) something wet until water comes out"}]} +{"id": "000000111578", "images": ["AURORA/data/something/frames/113316/first.jpg", "AURORA/data/something/frames/113316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000111579", "images": ["AURORA/data/something/frames/209678/first.jpg", "AURORA/data/something/frames/209678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming lighter"}]} +{"id": "000000111580", "images": ["AURORA/data/something/frames/20800/first.jpg", "AURORA/data/something/frames/20800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing almara"}]} +{"id": "000000111581", "images": ["AURORA/data/something/frames/35824/first.jpg", "AURORA/data/something/frames/35824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a phone"}]} +{"id": "000000111582", "images": ["AURORA/data/something/frames/91096/first.jpg", "AURORA/data/something/frames/91096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing hand cream tube"}]} +{"id": "000000111583", "images": ["AURORA/data/something/frames/204176/first.jpg", "AURORA/data/something/frames/204176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plastic casing colliding with plastic cover and both are being deflected"}]} +{"id": "000000111584", "images": ["AURORA/data/something/frames/89034/first.jpg", "AURORA/data/something/frames/89034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying box on the table on its side, not upright"}]} +{"id": "000000111585", "images": ["AURORA/data/something/frames/101669/first.jpg", "AURORA/data/something/frames/101669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping grape into glass"}]} +{"id": "000000111586", "images": ["AURORA/data/something/frames/156825/first.jpg", "AURORA/data/something/frames/156825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000111587", "images": ["AURORA/data/something/frames/132699/first.jpg", "AURORA/data/something/frames/132699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from computer screen with your camera"}]} +{"id": "000000111588", "images": ["AURORA/data/something/frames/200763/first.jpg", "AURORA/data/something/frames/200763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser and usb cable away from each other"}]} +{"id": "000000111589", "images": ["AURORA/data/something/frames/208509/first.jpg", "AURORA/data/something/frames/208509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue paper into paper bag"}]} +{"id": "000000111590", "images": ["AURORA/data/something/frames/134085/first.jpg", "AURORA/data/something/frames/134085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving small stone and large stone closer to each other"}]} +{"id": "000000111591", "images": ["AURORA/data/something/frames/187359/first.jpg", "AURORA/data/something/frames/187359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pennies on table"}]} +{"id": "000000111592", "images": ["AURORA/data/something/frames/39852/first.jpg", "AURORA/data/something/frames/39852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box in front of a comb"}]} +{"id": "000000111593", "images": ["AURORA/data/something/frames/143821/first.jpg", "AURORA/data/something/frames/143821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass down"}]} +{"id": "000000111594", "images": ["AURORA/data/something/frames/105544/first.jpg", "AURORA/data/something/frames/105544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a banana on it but not enough for it to slide down"}]} +{"id": "000000111595", "images": ["AURORA/data/something/frames/218487/first.jpg", "AURORA/data/something/frames/218487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle with figurine"}]} +{"id": "000000111596", "images": ["AURORA/data/something/frames/218162/first.jpg", "AURORA/data/something/frames/218162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) wheat of plate wheat"}]} +{"id": "000000111597", "images": ["AURORA/data/something/frames/49823/first.jpg", "AURORA/data/something/frames/49823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111598", "images": ["AURORA/data/something/frames/51630/first.jpg", "AURORA/data/something/frames/51630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting glass with spoon on it"}]} +{"id": "000000111599", "images": ["AURORA/data/something/frames/186413/first.jpg", "AURORA/data/something/frames/186413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a book upside down"}]} +{"id": "000000111600", "images": ["AURORA/data/something/frames/56771/first.jpg", "AURORA/data/something/frames/56771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen, pen and pen on the table"}]} +{"id": "000000111601", "images": ["AURORA/data/something/frames/116401/first.jpg", "AURORA/data/something/frames/116401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting teabag into cup"}]} +{"id": "000000111602", "images": ["AURORA/data/something/frames/182258/first.jpg", "AURORA/data/something/frames/182258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking comb from window sill"}]} +{"id": "000000111603", "images": ["AURORA/data/something/frames/157721/first.jpg", "AURORA/data/something/frames/157721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: block being deflected from chair"}]} +{"id": "000000111604", "images": ["AURORA/data/something/frames/206242/first.jpg", "AURORA/data/something/frames/206242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking an apple so that it falls over"}]} +{"id": "000000111605", "images": ["AURORA/data/something/frames/83120/first.jpg", "AURORA/data/something/frames/83120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pod out of box"}]} +{"id": "000000111606", "images": ["AURORA/data/something/frames/188339/first.jpg", "AURORA/data/something/frames/188339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening card folder"}]} +{"id": "000000111607", "images": ["AURORA/data/something/frames/76344/first.jpg", "AURORA/data/something/frames/76344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into power board but pulling it right out as you remove your hand"}]} +{"id": "000000111608", "images": ["AURORA/data/something/frames/146294/first.jpg", "AURORA/data/something/frames/146294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000111609", "images": ["AURORA/data/something/frames/4941/first.jpg", "AURORA/data/something/frames/4941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tennis ball behind cd stack"}]} +{"id": "000000111610", "images": ["AURORA/data/something/frames/129897/first.jpg", "AURORA/data/something/frames/129897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting package on a surface"}]} +{"id": "000000111611", "images": ["AURORA/data/something/frames/80533/first.jpg", "AURORA/data/something/frames/80533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing small box"}]} +{"id": "000000111612", "images": ["AURORA/data/something/frames/202213/first.jpg", "AURORA/data/something/frames/202213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking toy so that it falls over"}]} +{"id": "000000111613", "images": ["AURORA/data/something/frames/199173/first.jpg", "AURORA/data/something/frames/199173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle of water on a surface"}]} +{"id": "000000111614", "images": ["AURORA/data/something/frames/65274/first.jpg", "AURORA/data/something/frames/65274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 spanners onto diary"}]} +{"id": "000000111615", "images": ["AURORA/data/something/frames/25340/first.jpg", "AURORA/data/something/frames/25340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111616", "images": ["AURORA/data/something/frames/170631/first.jpg", "AURORA/data/something/frames/170631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a mug out of a sink"}]} +{"id": "000000111617", "images": ["AURORA/data/something/frames/58144/first.jpg", "AURORA/data/something/frames/58144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a straw into a cup"}]} +{"id": "000000111618", "images": ["AURORA/data/something/frames/31317/first.jpg", "AURORA/data/something/frames/31317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a glass so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111619", "images": ["AURORA/data/something/frames/175678/first.jpg", "AURORA/data/something/frames/175678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet in front of couch"}]} +{"id": "000000111620", "images": ["AURORA/data/something/frames/212276/first.jpg", "AURORA/data/something/frames/212276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tablet with paper"}]} +{"id": "000000111621", "images": ["AURORA/data/something/frames/118689/first.jpg", "AURORA/data/something/frames/118689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a camera lens upright on the table"}]} +{"id": "000000111622", "images": ["AURORA/data/something/frames/95424/first.jpg", "AURORA/data/something/frames/95424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding plastic"}]} +{"id": "000000111623", "images": ["AURORA/data/something/frames/165434/first.jpg", "AURORA/data/something/frames/165434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching a puzzle cube with your camera"}]} +{"id": "000000111624", "images": ["AURORA/data/something/frames/133644/first.jpg", "AURORA/data/something/frames/133644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing box into christmas stocking"}]} +{"id": "000000111625", "images": ["AURORA/data/something/frames/198536/first.jpg", "AURORA/data/something/frames/198536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into can"}]} +{"id": "000000111626", "images": ["AURORA/data/something/frames/156853/first.jpg", "AURORA/data/something/frames/156853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking eyeglasses out of eyeglass case"}]} +{"id": "000000111627", "images": ["AURORA/data/something/frames/97810/first.jpg", "AURORA/data/something/frames/97810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000111628", "images": ["AURORA/data/something/frames/67822/first.jpg", "AURORA/data/something/frames/67822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming swiffer sweeper"}]} +{"id": "000000111629", "images": ["AURORA/data/something/frames/204864/first.jpg", "AURORA/data/something/frames/204864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming person"}]} +{"id": "000000111630", "images": ["AURORA/data/something/frames/198712/first.jpg", "AURORA/data/something/frames/198712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass and highlighter on the table"}]} +{"id": "000000111631", "images": ["AURORA/data/something/frames/35432/first.jpg", "AURORA/data/something/frames/35432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming earphone"}]} +{"id": "000000111632", "images": ["AURORA/data/something/frames/170820/first.jpg", "AURORA/data/something/frames/170820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending lamp so that it deforms"}]} +{"id": "000000111633", "images": ["AURORA/data/something/frames/129736/first.jpg", "AURORA/data/something/frames/129736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shoulder straps"}]} +{"id": "000000111634", "images": ["AURORA/data/something/frames/10869/first.jpg", "AURORA/data/something/frames/10869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissor closer to pick"}]} +{"id": "000000111635", "images": ["AURORA/data/something/frames/7519/first.jpg", "AURORA/data/something/frames/7519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote upright on the table"}]} +{"id": "000000111636", "images": ["AURORA/data/something/frames/106070/first.jpg", "AURORA/data/something/frames/106070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling plug out of socket"}]} +{"id": "000000111637", "images": ["AURORA/data/something/frames/12560/first.jpg", "AURORA/data/something/frames/12560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding scarf"}]} +{"id": "000000111638", "images": ["AURORA/data/something/frames/144885/first.jpg", "AURORA/data/something/frames/144885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork"}]} +{"id": "000000111639", "images": ["AURORA/data/something/frames/129678/first.jpg", "AURORA/data/something/frames/129678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel closer to towel"}]} +{"id": "000000111640", "images": ["AURORA/data/something/frames/110353/first.jpg", "AURORA/data/something/frames/110353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with highlighter on it until it starts sliding down"}]} +{"id": "000000111641", "images": ["AURORA/data/something/frames/50260/first.jpg", "AURORA/data/something/frames/50260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lipstick upright on the table"}]} +{"id": "000000111642", "images": ["AURORA/data/something/frames/136214/first.jpg", "AURORA/data/something/frames/136214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a candle next to plantpot"}]} +{"id": "000000111643", "images": ["AURORA/data/something/frames/62085/first.jpg", "AURORA/data/something/frames/62085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a matchbox closer to a plate"}]} +{"id": "000000111644", "images": ["AURORA/data/something/frames/205364/first.jpg", "AURORA/data/something/frames/205364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000111645", "images": ["AURORA/data/something/frames/123799/first.jpg", "AURORA/data/something/frames/123799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering keys with cushion"}]} +{"id": "000000111646", "images": ["AURORA/data/something/frames/81915/first.jpg", "AURORA/data/something/frames/81915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing knife from right to left"}]} +{"id": "000000111647", "images": ["AURORA/data/something/frames/14408/first.jpg", "AURORA/data/something/frames/14408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning small fresh mint upside down"}]} +{"id": "000000111648", "images": ["AURORA/data/something/frames/199081/first.jpg", "AURORA/data/something/frames/199081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting polythene bag"}]} +{"id": "000000111649", "images": ["AURORA/data/something/frames/20708/first.jpg", "AURORA/data/something/frames/20708/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wooden puppet across a surface without it falling down"}]} +{"id": "000000111650", "images": ["AURORA/data/something/frames/9450/first.jpg", "AURORA/data/something/frames/9450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pillow and another pillow so they collide with each other"}]} +{"id": "000000111651", "images": ["AURORA/data/something/frames/19546/first.jpg", "AURORA/data/something/frames/19546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a coin and another coin closer to each other"}]} +{"id": "000000111652", "images": ["AURORA/data/something/frames/198667/first.jpg", "AURORA/data/something/frames/198667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling book out of plastic bag"}]} +{"id": "000000111653", "images": ["AURORA/data/something/frames/115382/first.jpg", "AURORA/data/something/frames/115382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening sunglasses case"}]} +{"id": "000000111654", "images": ["AURORA/data/something/frames/72653/first.jpg", "AURORA/data/something/frames/72653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting wallet with tac case on it"}]} +{"id": "000000111655", "images": ["AURORA/data/something/frames/53504/first.jpg", "AURORA/data/something/frames/53504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bracelet so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111656", "images": ["AURORA/data/something/frames/209912/first.jpg", "AURORA/data/something/frames/209912/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box next to a spoon"}]} +{"id": "000000111657", "images": ["AURORA/data/something/frames/153754/first.jpg", "AURORA/data/something/frames/153754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 remotes"}]} +{"id": "000000111658", "images": ["AURORA/data/something/frames/15754/first.jpg", "AURORA/data/something/frames/15754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with book"}]} +{"id": "000000111659", "images": ["AURORA/data/something/frames/44380/first.jpg", "AURORA/data/something/frames/44380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000111660", "images": ["AURORA/data/something/frames/58273/first.jpg", "AURORA/data/something/frames/58273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling laundry up"}]} +{"id": "000000111661", "images": ["AURORA/data/something/frames/81065/first.jpg", "AURORA/data/something/frames/81065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a glue, revealing a container behind"}]} +{"id": "000000111662", "images": ["AURORA/data/something/frames/81154/first.jpg", "AURORA/data/something/frames/81154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pincer up"}]} +{"id": "000000111663", "images": ["AURORA/data/something/frames/112155/first.jpg", "AURORA/data/something/frames/112155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a tissu so that it separates into two pieces"}]} +{"id": "000000111664", "images": ["AURORA/data/something/frames/123010/first.jpg", "AURORA/data/something/frames/123010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving jar away from jar"}]} +{"id": "000000111665", "images": ["AURORA/data/something/frames/180475/first.jpg", "AURORA/data/something/frames/180475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing diary"}]} +{"id": "000000111666", "images": ["AURORA/data/something/frames/153451/first.jpg", "AURORA/data/something/frames/153451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking purse so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111667", "images": ["AURORA/data/something/frames/70642/first.jpg", "AURORA/data/something/frames/70642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking dvd case up"}]} +{"id": "000000111668", "images": ["AURORA/data/something/frames/215794/first.jpg", "AURORA/data/something/frames/215794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bottle"}]} +{"id": "000000111669", "images": ["AURORA/data/something/frames/179427/first.jpg", "AURORA/data/something/frames/179427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pill"}]} +{"id": "000000111670", "images": ["AURORA/data/something/frames/70533/first.jpg", "AURORA/data/something/frames/70533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000111671", "images": ["AURORA/data/something/frames/470/first.jpg", "AURORA/data/something/frames/470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a power converter but pulling it right out as you remove your hand"}]} +{"id": "000000111672", "images": ["AURORA/data/something/frames/114099/first.jpg", "AURORA/data/something/frames/114099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111673", "images": ["AURORA/data/something/frames/181572/first.jpg", "AURORA/data/something/frames/181572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone handset away from a ring with keys"}]} +{"id": "000000111674", "images": ["AURORA/data/something/frames/32321/first.jpg", "AURORA/data/something/frames/32321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching pebble with your camera"}]} +{"id": "000000111675", "images": ["AURORA/data/something/frames/212626/first.jpg", "AURORA/data/something/frames/212626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a book upside down"}]} +{"id": "000000111676", "images": ["AURORA/data/something/frames/33924/first.jpg", "AURORA/data/something/frames/33924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving yellow colour pen up"}]} +{"id": "000000111677", "images": ["AURORA/data/something/frames/15313/first.jpg", "AURORA/data/something/frames/15313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spice out of spices"}]} +{"id": "000000111678", "images": ["AURORA/data/something/frames/103095/first.jpg", "AURORA/data/something/frames/103095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mouse from behind of book"}]} +{"id": "000000111679", "images": ["AURORA/data/something/frames/41598/first.jpg", "AURORA/data/something/frames/41598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000111680", "images": ["AURORA/data/something/frames/168003/first.jpg", "AURORA/data/something/frames/168003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000111681", "images": ["AURORA/data/something/frames/58849/first.jpg", "AURORA/data/something/frames/58849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mouse on a surface"}]} +{"id": "000000111682", "images": ["AURORA/data/something/frames/112509/first.jpg", "AURORA/data/something/frames/112509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cereal box on a surface"}]} +{"id": "000000111683", "images": ["AURORA/data/something/frames/103345/first.jpg", "AURORA/data/something/frames/103345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shampoo bottle into hole"}]} +{"id": "000000111684", "images": ["AURORA/data/something/frames/167306/first.jpg", "AURORA/data/something/frames/167306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clip, jar and toy on the table"}]} +{"id": "000000111685", "images": ["AURORA/data/something/frames/188576/first.jpg", "AURORA/data/something/frames/188576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning peanut butter upside down"}]} +{"id": "000000111686", "images": ["AURORA/data/something/frames/117272/first.jpg", "AURORA/data/something/frames/117272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a clip with a lid"}]} +{"id": "000000111687", "images": ["AURORA/data/something/frames/30392/first.jpg", "AURORA/data/something/frames/30392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting mouse with pen on it"}]} +{"id": "000000111688", "images": ["AURORA/data/something/frames/8007/first.jpg", "AURORA/data/something/frames/8007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler into mug"}]} +{"id": "000000111689", "images": ["AURORA/data/something/frames/123034/first.jpg", "AURORA/data/something/frames/123034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon onto box so it falls down"}]} +{"id": "000000111690", "images": ["AURORA/data/something/frames/109310/first.jpg", "AURORA/data/something/frames/109310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting envelope with pen on it"}]} +{"id": "000000111691", "images": ["AURORA/data/something/frames/53765/first.jpg", "AURORA/data/something/frames/53765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming cigarette lighter"}]} +{"id": "000000111692", "images": ["AURORA/data/something/frames/4970/first.jpg", "AURORA/data/something/frames/4970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter"}]} +{"id": "000000111693", "images": ["AURORA/data/something/frames/110988/first.jpg", "AURORA/data/something/frames/110988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a coffee carafe upside down"}]} +{"id": "000000111694", "images": ["AURORA/data/something/frames/165287/first.jpg", "AURORA/data/something/frames/165287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a battery closer to a lighter"}]} +{"id": "000000111695", "images": ["AURORA/data/something/frames/89503/first.jpg", "AURORA/data/something/frames/89503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bobby pin"}]} +{"id": "000000111696", "images": ["AURORA/data/something/frames/53049/first.jpg", "AURORA/data/something/frames/53049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing container lid from left to right"}]} +{"id": "000000111697", "images": ["AURORA/data/something/frames/87512/first.jpg", "AURORA/data/something/frames/87512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending bottle so that it deforms"}]} +{"id": "000000111698", "images": ["AURORA/data/something/frames/63998/first.jpg", "AURORA/data/something/frames/63998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000111699", "images": ["AURORA/data/something/frames/36460/first.jpg", "AURORA/data/something/frames/36460/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling the purse from right to left"}]} +{"id": "000000111700", "images": ["AURORA/data/something/frames/205403/first.jpg", "AURORA/data/something/frames/205403/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting milk into a glass"}]} +{"id": "000000111701", "images": ["AURORA/data/something/frames/4820/first.jpg", "AURORA/data/something/frames/4820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope into two pieces"}]} +{"id": "000000111702", "images": ["AURORA/data/something/frames/148362/first.jpg", "AURORA/data/something/frames/148362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: envelope being deflected from couch"}]} +{"id": "000000111703", "images": ["AURORA/data/something/frames/43004/first.jpg", "AURORA/data/something/frames/43004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing gate"}]} +{"id": "000000111704", "images": ["AURORA/data/something/frames/152249/first.jpg", "AURORA/data/something/frames/152249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cigarette pack over"}]} +{"id": "000000111705", "images": ["AURORA/data/something/frames/165274/first.jpg", "AURORA/data/something/frames/165274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping soap over"}]} +{"id": "000000111706", "images": ["AURORA/data/something/frames/37437/first.jpg", "AURORA/data/something/frames/37437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green chalk down"}]} +{"id": "000000111707", "images": ["AURORA/data/something/frames/173133/first.jpg", "AURORA/data/something/frames/173133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a sponge wet until water comes out"}]} +{"id": "000000111708", "images": ["AURORA/data/something/frames/14136/first.jpg", "AURORA/data/something/frames/14136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet"}]} +{"id": "000000111709", "images": ["AURORA/data/something/frames/213173/first.jpg", "AURORA/data/something/frames/213173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking headphones"}]} +{"id": "000000111710", "images": ["AURORA/data/something/frames/212080/first.jpg", "AURORA/data/something/frames/212080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and scissors closer to each other"}]} +{"id": "000000111711", "images": ["AURORA/data/something/frames/78559/first.jpg", "AURORA/data/something/frames/78559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup upright on the table"}]} +{"id": "000000111712", "images": ["AURORA/data/something/frames/139370/first.jpg", "AURORA/data/something/frames/139370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a door"}]} +{"id": "000000111713", "images": ["AURORA/data/something/frames/58029/first.jpg", "AURORA/data/something/frames/58029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fruit into bowl"}]} +{"id": "000000111714", "images": ["AURORA/data/something/frames/192432/first.jpg", "AURORA/data/something/frames/192432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a paper ball into the trash can"}]} +{"id": "000000111715", "images": ["AURORA/data/something/frames/61839/first.jpg", "AURORA/data/something/frames/61839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 containers"}]} +{"id": "000000111716", "images": ["AURORA/data/something/frames/169271/first.jpg", "AURORA/data/something/frames/169271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the signal lever down"}]} +{"id": "000000111717", "images": ["AURORA/data/something/frames/146232/first.jpg", "AURORA/data/something/frames/146232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a cup"}]} +{"id": "000000111718", "images": ["AURORA/data/something/frames/79981/first.jpg", "AURORA/data/something/frames/79981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tapeline from right to left"}]} +{"id": "000000111719", "images": ["AURORA/data/something/frames/48010/first.jpg", "AURORA/data/something/frames/48010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking currency from car seat"}]} +{"id": "000000111720", "images": ["AURORA/data/something/frames/29554/first.jpg", "AURORA/data/something/frames/29554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening door"}]} +{"id": "000000111721", "images": ["AURORA/data/something/frames/196623/first.jpg", "AURORA/data/something/frames/196623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black brush from left to right"}]} +{"id": "000000111722", "images": ["AURORA/data/something/frames/80967/first.jpg", "AURORA/data/something/frames/80967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000111723", "images": ["AURORA/data/something/frames/45094/first.jpg", "AURORA/data/something/frames/45094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking paint tube so that it falls over"}]} +{"id": "000000111724", "images": ["AURORA/data/something/frames/13210/first.jpg", "AURORA/data/something/frames/13210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 hair bands onto cookie box"}]} +{"id": "000000111725", "images": ["AURORA/data/something/frames/55428/first.jpg", "AURORA/data/something/frames/55428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle on the table on its side, not upright"}]} +{"id": "000000111726", "images": ["AURORA/data/something/frames/183730/first.jpg", "AURORA/data/something/frames/183730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing granola bar so that it almost falls off but doesn't"}]} +{"id": "000000111727", "images": ["AURORA/data/something/frames/59771/first.jpg", "AURORA/data/something/frames/59771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pencil box over"}]} +{"id": "000000111728", "images": ["AURORA/data/something/frames/109189/first.jpg", "AURORA/data/something/frames/109189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming steam cake"}]} +{"id": "000000111729", "images": ["AURORA/data/something/frames/50997/first.jpg", "AURORA/data/something/frames/50997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of note book without letting it drop down"}]} +{"id": "000000111730", "images": ["AURORA/data/something/frames/130322/first.jpg", "AURORA/data/something/frames/130322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000111731", "images": ["AURORA/data/something/frames/128520/first.jpg", "AURORA/data/something/frames/128520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into the socket to the wall"}]} +{"id": "000000111732", "images": ["AURORA/data/something/frames/129725/first.jpg", "AURORA/data/something/frames/129725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with banana on it"}]} +{"id": "000000111733", "images": ["AURORA/data/something/frames/54869/first.jpg", "AURORA/data/something/frames/54869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting folder with marker on it"}]} +{"id": "000000111734", "images": ["AURORA/data/something/frames/133121/first.jpg", "AURORA/data/something/frames/133121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book up"}]} +{"id": "000000111735", "images": ["AURORA/data/something/frames/15132/first.jpg", "AURORA/data/something/frames/15132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000111736", "images": ["AURORA/data/something/frames/101107/first.jpg", "AURORA/data/something/frames/101107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spray bottle upright on the table"}]} +{"id": "000000111737", "images": ["AURORA/data/something/frames/38220/first.jpg", "AURORA/data/something/frames/38220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink box from left to right"}]} +{"id": "000000111738", "images": ["AURORA/data/something/frames/199410/first.jpg", "AURORA/data/something/frames/199410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing compass from right to left"}]} +{"id": "000000111739", "images": ["AURORA/data/something/frames/54980/first.jpg", "AURORA/data/something/frames/54980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a phone in front of a pillow"}]} +{"id": "000000111740", "images": ["AURORA/data/something/frames/172718/first.jpg", "AURORA/data/something/frames/172718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone handset closer to a ring with keys"}]} +{"id": "000000111741", "images": ["AURORA/data/something/frames/127755/first.jpg", "AURORA/data/something/frames/127755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote and water bottle closer to each other"}]} +{"id": "000000111742", "images": ["AURORA/data/something/frames/16566/first.jpg", "AURORA/data/something/frames/16566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass behind a bottle"}]} +{"id": "000000111743", "images": ["AURORA/data/something/frames/50577/first.jpg", "AURORA/data/something/frames/50577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching sandal for men with your camera"}]} +{"id": "000000111744", "images": ["AURORA/data/something/frames/112148/first.jpg", "AURORA/data/something/frames/112148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a plastic bottle so that it falls over"}]} +{"id": "000000111745", "images": ["AURORA/data/something/frames/204838/first.jpg", "AURORA/data/something/frames/204838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pencil closer to scissors"}]} +{"id": "000000111746", "images": ["AURORA/data/something/frames/137612/first.jpg", "AURORA/data/something/frames/137612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cup with paper towel"}]} +{"id": "000000111747", "images": ["AURORA/data/something/frames/6735/first.jpg", "AURORA/data/something/frames/6735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing face wash so that it almost falls off but doesn't"}]} +{"id": "000000111748", "images": ["AURORA/data/something/frames/208139/first.jpg", "AURORA/data/something/frames/208139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy tiger and toy elephant so they pass each other"}]} +{"id": "000000111749", "images": ["AURORA/data/something/frames/89763/first.jpg", "AURORA/data/something/frames/89763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering earphones"}]} +{"id": "000000111750", "images": ["AURORA/data/something/frames/134532/first.jpg", "AURORA/data/something/frames/134532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into lid"}]} +{"id": "000000111751", "images": ["AURORA/data/something/frames/24301/first.jpg", "AURORA/data/something/frames/24301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling stick out of cup"}]} +{"id": "000000111752", "images": ["AURORA/data/something/frames/173026/first.jpg", "AURORA/data/something/frames/173026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting box with handphone on it"}]} +{"id": "000000111753", "images": ["AURORA/data/something/frames/117183/first.jpg", "AURORA/data/something/frames/117183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sugar onto table"}]} +{"id": "000000111754", "images": ["AURORA/data/something/frames/177010/first.jpg", "AURORA/data/something/frames/177010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tissue into box"}]} +{"id": "000000111755", "images": ["AURORA/data/something/frames/100491/first.jpg", "AURORA/data/something/frames/100491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding tote bag"}]} +{"id": "000000111756", "images": ["AURORA/data/something/frames/189337/first.jpg", "AURORA/data/something/frames/189337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pen from behind of a box"}]} +{"id": "000000111757", "images": ["AURORA/data/something/frames/4024/first.jpg", "AURORA/data/something/frames/4024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone behind mug"}]} +{"id": "000000111758", "images": ["AURORA/data/something/frames/117556/first.jpg", "AURORA/data/something/frames/117556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a cup of mineral water on the table"}]} +{"id": "000000111759", "images": ["AURORA/data/something/frames/74839/first.jpg", "AURORA/data/something/frames/74839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving perfume bottle and toy away from each other"}]} +{"id": "000000111760", "images": ["AURORA/data/something/frames/84992/first.jpg", "AURORA/data/something/frames/84992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a kleenex box so that it falls over"}]} +{"id": "000000111761", "images": ["AURORA/data/something/frames/180656/first.jpg", "AURORA/data/something/frames/180656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something down"}]} +{"id": "000000111762", "images": ["AURORA/data/something/frames/184150/first.jpg", "AURORA/data/something/frames/184150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000111763", "images": ["AURORA/data/something/frames/157974/first.jpg", "AURORA/data/something/frames/157974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching nail cutter with your camera"}]} +{"id": "000000111764", "images": ["AURORA/data/something/frames/208627/first.jpg", "AURORA/data/something/frames/208627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111765", "images": ["AURORA/data/something/frames/14747/first.jpg", "AURORA/data/something/frames/14747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil"}]} +{"id": "000000111766", "images": ["AURORA/data/something/frames/99143/first.jpg", "AURORA/data/something/frames/99143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clementines up"}]} +{"id": "000000111767", "images": ["AURORA/data/something/frames/58874/first.jpg", "AURORA/data/something/frames/58874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying candy mint in blanket"}]} +{"id": "000000111768", "images": ["AURORA/data/something/frames/136441/first.jpg", "AURORA/data/something/frames/136441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book from left to right"}]} +{"id": "000000111769", "images": ["AURORA/data/something/frames/207945/first.jpg", "AURORA/data/something/frames/207945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker out of cup"}]} +{"id": "000000111770", "images": ["AURORA/data/something/frames/180211/first.jpg", "AURORA/data/something/frames/180211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving small end of phone cord"}]} +{"id": "000000111771", "images": ["AURORA/data/something/frames/104418/first.jpg", "AURORA/data/something/frames/104418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and jug closer to each other"}]} +{"id": "000000111772", "images": ["AURORA/data/something/frames/23746/first.jpg", "AURORA/data/something/frames/23746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen behind a pencil case"}]} +{"id": "000000111773", "images": ["AURORA/data/something/frames/156201/first.jpg", "AURORA/data/something/frames/156201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book, candle and pen on the table"}]} +{"id": "000000111774", "images": ["AURORA/data/something/frames/113404/first.jpg", "AURORA/data/something/frames/113404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses box on a surface"}]} +{"id": "000000111775", "images": ["AURORA/data/something/frames/156245/first.jpg", "AURORA/data/something/frames/156245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting usb-stick"}]} +{"id": "000000111776", "images": ["AURORA/data/something/frames/84431/first.jpg", "AURORA/data/something/frames/84431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 nail polish"}]} +{"id": "000000111777", "images": ["AURORA/data/something/frames/105351/first.jpg", "AURORA/data/something/frames/105351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pillow onto bed"}]} +{"id": "000000111778", "images": ["AURORA/data/something/frames/72270/first.jpg", "AURORA/data/something/frames/72270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111779", "images": ["AURORA/data/something/frames/116592/first.jpg", "AURORA/data/something/frames/116592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling binoculars from right to left"}]} +{"id": "000000111780", "images": ["AURORA/data/something/frames/165248/first.jpg", "AURORA/data/something/frames/165248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting keys up completely without letting it drop down"}]} +{"id": "000000111781", "images": ["AURORA/data/something/frames/185918/first.jpg", "AURORA/data/something/frames/185918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook behind box"}]} +{"id": "000000111782", "images": ["AURORA/data/something/frames/126892/first.jpg", "AURORA/data/something/frames/126892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming bottle"}]} +{"id": "000000111783", "images": ["AURORA/data/something/frames/166637/first.jpg", "AURORA/data/something/frames/166637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening sandwichera"}]} +{"id": "000000111784", "images": ["AURORA/data/something/frames/154598/first.jpg", "AURORA/data/something/frames/154598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg behind a book"}]} +{"id": "000000111785", "images": ["AURORA/data/something/frames/200978/first.jpg", "AURORA/data/something/frames/200978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming a bottle of water"}]} +{"id": "000000111786", "images": ["AURORA/data/something/frames/146789/first.jpg", "AURORA/data/something/frames/146789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something off of something"}]} +{"id": "000000111787", "images": ["AURORA/data/something/frames/207528/first.jpg", "AURORA/data/something/frames/207528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting envelope with coins on it"}]} +{"id": "000000111788", "images": ["AURORA/data/something/frames/170966/first.jpg", "AURORA/data/something/frames/170966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping red hairband next to tablet box"}]} +{"id": "000000111789", "images": ["AURORA/data/something/frames/43724/first.jpg", "AURORA/data/something/frames/43724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a thermos"}]} +{"id": "000000111790", "images": ["AURORA/data/something/frames/157613/first.jpg", "AURORA/data/something/frames/157613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into pluge but pulling it right out as you remove your hand"}]} +{"id": "000000111791", "images": ["AURORA/data/something/frames/166636/first.jpg", "AURORA/data/something/frames/166636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000111792", "images": ["AURORA/data/something/frames/72169/first.jpg", "AURORA/data/something/frames/72169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen drive closer to wallet"}]} +{"id": "000000111793", "images": ["AURORA/data/something/frames/37606/first.jpg", "AURORA/data/something/frames/37606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork next to cup"}]} +{"id": "000000111794", "images": ["AURORA/data/something/frames/19390/first.jpg", "AURORA/data/something/frames/19390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from notebook with your camera"}]} +{"id": "000000111795", "images": ["AURORA/data/something/frames/87931/first.jpg", "AURORA/data/something/frames/87931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on a surface"}]} +{"id": "000000111796", "images": ["AURORA/data/something/frames/200999/first.jpg", "AURORA/data/something/frames/200999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a cup up"}]} +{"id": "000000111797", "images": ["AURORA/data/something/frames/27476/first.jpg", "AURORA/data/something/frames/27476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring something onto something"}]} +{"id": "000000111798", "images": ["AURORA/data/something/frames/25838/first.jpg", "AURORA/data/something/frames/25838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of setsquare"}]} +{"id": "000000111799", "images": ["AURORA/data/something/frames/2519/first.jpg", "AURORA/data/something/frames/2519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting candy with candy"}]} +{"id": "000000111800", "images": ["AURORA/data/something/frames/69213/first.jpg", "AURORA/data/something/frames/69213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of boxs without the stack collapsing"}]} +{"id": "000000111801", "images": ["AURORA/data/something/frames/95516/first.jpg", "AURORA/data/something/frames/95516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting calculator onto a slanted surface but it doesn't glide down"}]} +{"id": "000000111802", "images": ["AURORA/data/something/frames/85733/first.jpg", "AURORA/data/something/frames/85733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into washbasin"}]} +{"id": "000000111803", "images": ["AURORA/data/something/frames/92139/first.jpg", "AURORA/data/something/frames/92139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with ball over, so ball falls out"}]} +{"id": "000000111804", "images": ["AURORA/data/something/frames/9344/first.jpg", "AURORA/data/something/frames/9344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering duster with scarf"}]} +{"id": "000000111805", "images": ["AURORA/data/something/frames/150669/first.jpg", "AURORA/data/something/frames/150669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a glass from left to right"}]} +{"id": "000000111806", "images": ["AURORA/data/something/frames/66584/first.jpg", "AURORA/data/something/frames/66584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper in front of box"}]} +{"id": "000000111807", "images": ["AURORA/data/something/frames/60109/first.jpg", "AURORA/data/something/frames/60109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a straw into a cup"}]} +{"id": "000000111808", "images": ["AURORA/data/something/frames/173288/first.jpg", "AURORA/data/something/frames/173288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hand cream tube on a surface"}]} +{"id": "000000111809", "images": ["AURORA/data/something/frames/77175/first.jpg", "AURORA/data/something/frames/77175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting wire"}]} +{"id": "000000111810", "images": ["AURORA/data/something/frames/91196/first.jpg", "AURORA/data/something/frames/91196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker into cup"}]} +{"id": "000000111811", "images": ["AURORA/data/something/frames/67965/first.jpg", "AURORA/data/something/frames/67965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a glue stick on the table on its side, not upright"}]} +{"id": "000000111812", "images": ["AURORA/data/something/frames/162086/first.jpg", "AURORA/data/something/frames/162086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a case"}]} +{"id": "000000111813", "images": ["AURORA/data/something/frames/132146/first.jpg", "AURORA/data/something/frames/132146/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into dirt"}]} +{"id": "000000111814", "images": ["AURORA/data/something/frames/209739/first.jpg", "AURORA/data/something/frames/209739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000111815", "images": ["AURORA/data/something/frames/122248/first.jpg", "AURORA/data/something/frames/122248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug behind a pan"}]} +{"id": "000000111816", "images": ["AURORA/data/something/frames/87361/first.jpg", "AURORA/data/something/frames/87361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of headphones so that it gets stretched"}]} +{"id": "000000111817", "images": ["AURORA/data/something/frames/52945/first.jpg", "AURORA/data/something/frames/52945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cow onto pillow"}]} +{"id": "000000111818", "images": ["AURORA/data/something/frames/39702/first.jpg", "AURORA/data/something/frames/39702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from chair with your camera"}]} +{"id": "000000111819", "images": ["AURORA/data/something/frames/115030/first.jpg", "AURORA/data/something/frames/115030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking plate up"}]} +{"id": "000000111820", "images": ["AURORA/data/something/frames/215414/first.jpg", "AURORA/data/something/frames/215414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting calculator on a surface"}]} +{"id": "000000111821", "images": ["AURORA/data/something/frames/55141/first.jpg", "AURORA/data/something/frames/55141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping eraser into blue glass bowl"}]} +{"id": "000000111822", "images": ["AURORA/data/something/frames/203725/first.jpg", "AURORA/data/something/frames/203725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with phone on it until it starts sliding down"}]} +{"id": "000000111823", "images": ["AURORA/data/something/frames/89670/first.jpg", "AURORA/data/something/frames/89670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of cup"}]} +{"id": "000000111824", "images": ["AURORA/data/something/frames/84335/first.jpg", "AURORA/data/something/frames/84335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking box so that it falls over"}]} +{"id": "000000111825", "images": ["AURORA/data/something/frames/194203/first.jpg", "AURORA/data/something/frames/194203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting drum with lighter"}]} +{"id": "000000111826", "images": ["AURORA/data/something/frames/146631/first.jpg", "AURORA/data/something/frames/146631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111827", "images": ["AURORA/data/something/frames/95729/first.jpg", "AURORA/data/something/frames/95729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a book"}]} +{"id": "000000111828", "images": ["AURORA/data/something/frames/18697/first.jpg", "AURORA/data/something/frames/18697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing bottle cap"}]} +{"id": "000000111829", "images": ["AURORA/data/something/frames/124099/first.jpg", "AURORA/data/something/frames/124099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing container with screw"}]} +{"id": "000000111830", "images": ["AURORA/data/something/frames/76952/first.jpg", "AURORA/data/something/frames/76952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing card folder"}]} +{"id": "000000111831", "images": ["AURORA/data/something/frames/145229/first.jpg", "AURORA/data/something/frames/145229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000111832", "images": ["AURORA/data/something/frames/50232/first.jpg", "AURORA/data/something/frames/50232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue just a little bit"}]} +{"id": "000000111833", "images": ["AURORA/data/something/frames/41463/first.jpg", "AURORA/data/something/frames/41463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying container on the table on its side, not upright"}]} +{"id": "000000111834", "images": ["AURORA/data/something/frames/68822/first.jpg", "AURORA/data/something/frames/68822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a padlock"}]} +{"id": "000000111835", "images": ["AURORA/data/something/frames/31678/first.jpg", "AURORA/data/something/frames/31678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bowl over"}]} +{"id": "000000111836", "images": ["AURORA/data/something/frames/65041/first.jpg", "AURORA/data/something/frames/65041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding newspaper"}]} +{"id": "000000111837", "images": ["AURORA/data/something/frames/201177/first.jpg", "AURORA/data/something/frames/201177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cookies into a box"}]} +{"id": "000000111838", "images": ["AURORA/data/something/frames/162464/first.jpg", "AURORA/data/something/frames/162464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting speaker with gum bottle"}]} +{"id": "000000111839", "images": ["AURORA/data/something/frames/84572/first.jpg", "AURORA/data/something/frames/84572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming telephone junction box"}]} +{"id": "000000111840", "images": ["AURORA/data/something/frames/104873/first.jpg", "AURORA/data/something/frames/104873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing index card into two pieces"}]} +{"id": "000000111841", "images": ["AURORA/data/something/frames/35817/first.jpg", "AURORA/data/something/frames/35817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping plastic onto floor"}]} +{"id": "000000111842", "images": ["AURORA/data/something/frames/149098/first.jpg", "AURORA/data/something/frames/149098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe down"}]} +{"id": "000000111843", "images": ["AURORA/data/something/frames/195085/first.jpg", "AURORA/data/something/frames/195085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shorts into a bag"}]} +{"id": "000000111844", "images": ["AURORA/data/something/frames/170900/first.jpg", "AURORA/data/something/frames/170900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging something into something but pulling it right out as you remove your hand"}]} +{"id": "000000111845", "images": ["AURORA/data/something/frames/3899/first.jpg", "AURORA/data/something/frames/3899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking currency from table"}]} +{"id": "000000111846", "images": ["AURORA/data/something/frames/112588/first.jpg", "AURORA/data/something/frames/112588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white pebble down"}]} +{"id": "000000111847", "images": ["AURORA/data/something/frames/150245/first.jpg", "AURORA/data/something/frames/150245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone in front of pants"}]} +{"id": "000000111848", "images": ["AURORA/data/something/frames/119819/first.jpg", "AURORA/data/something/frames/119819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking timepiece out of basket"}]} +{"id": "000000111849", "images": ["AURORA/data/something/frames/146762/first.jpg", "AURORA/data/something/frames/146762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a beer can, revealing a teaspoon behind"}]} +{"id": "000000111850", "images": ["AURORA/data/something/frames/46281/first.jpg", "AURORA/data/something/frames/46281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening cabinet"}]} +{"id": "000000111851", "images": ["AURORA/data/something/frames/129298/first.jpg", "AURORA/data/something/frames/129298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper in front of cup"}]} +{"id": "000000111852", "images": ["AURORA/data/something/frames/44523/first.jpg", "AURORA/data/something/frames/44523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a tin can over"}]} +{"id": "000000111853", "images": ["AURORA/data/something/frames/13998/first.jpg", "AURORA/data/something/frames/13998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a toy car with a book"}]} +{"id": "000000111854", "images": ["AURORA/data/something/frames/31664/first.jpg", "AURORA/data/something/frames/31664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hand up"}]} +{"id": "000000111855", "images": ["AURORA/data/something/frames/142521/first.jpg", "AURORA/data/something/frames/142521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote control on a surface"}]} +{"id": "000000111856", "images": ["AURORA/data/something/frames/31098/first.jpg", "AURORA/data/something/frames/31098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hair band from table"}]} +{"id": "000000111857", "images": ["AURORA/data/something/frames/93868/first.jpg", "AURORA/data/something/frames/93868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling dvd case from right to left"}]} +{"id": "000000111858", "images": ["AURORA/data/something/frames/83323/first.jpg", "AURORA/data/something/frames/83323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing calculator, revealing eraser behind"}]} +{"id": "000000111859", "images": ["AURORA/data/something/frames/79785/first.jpg", "AURORA/data/something/frames/79785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen away from remote"}]} +{"id": "000000111860", "images": ["AURORA/data/something/frames/145090/first.jpg", "AURORA/data/something/frames/145090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting stencil with wooden stick on it"}]} +{"id": "000000111861", "images": ["AURORA/data/something/frames/69587/first.jpg", "AURORA/data/something/frames/69587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a bottle away from each other"}]} +{"id": "000000111862", "images": ["AURORA/data/something/frames/110273/first.jpg", "AURORA/data/something/frames/110273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with grape over, so grape falls out"}]} +{"id": "000000111863", "images": ["AURORA/data/something/frames/17519/first.jpg", "AURORA/data/something/frames/17519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pen from left to right"}]} +{"id": "000000111864", "images": ["AURORA/data/something/frames/136269/first.jpg", "AURORA/data/something/frames/136269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red pot holder from left to right"}]} +{"id": "000000111865", "images": ["AURORA/data/something/frames/171333/first.jpg", "AURORA/data/something/frames/171333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil case underneath a sweater"}]} +{"id": "000000111866", "images": ["AURORA/data/something/frames/67859/first.jpg", "AURORA/data/something/frames/67859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring something into something until it overflows"}]} +{"id": "000000111867", "images": ["AURORA/data/something/frames/66909/first.jpg", "AURORA/data/something/frames/66909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a lip balm lid"}]} +{"id": "000000111868", "images": ["AURORA/data/something/frames/180303/first.jpg", "AURORA/data/something/frames/180303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen stand from left to right"}]} +{"id": "000000111869", "images": ["AURORA/data/something/frames/162039/first.jpg", "AURORA/data/something/frames/162039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing toilet paper into two pieces"}]} +{"id": "000000111870", "images": ["AURORA/data/something/frames/779/first.jpg", "AURORA/data/something/frames/779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin behind mug"}]} +{"id": "000000111871", "images": ["AURORA/data/something/frames/25303/first.jpg", "AURORA/data/something/frames/25303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000111872", "images": ["AURORA/data/something/frames/9821/first.jpg", "AURORA/data/something/frames/9821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving magnet closer to magnifying glass"}]} +{"id": "000000111873", "images": ["AURORA/data/something/frames/143249/first.jpg", "AURORA/data/something/frames/143249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending plastic card so that it deforms"}]} +{"id": "000000111874", "images": ["AURORA/data/something/frames/151722/first.jpg", "AURORA/data/something/frames/151722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000111875", "images": ["AURORA/data/something/frames/153194/first.jpg", "AURORA/data/something/frames/153194/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: car colliding with train and both are being deflected"}]} +{"id": "000000111876", "images": ["AURORA/data/something/frames/70542/first.jpg", "AURORA/data/something/frames/70542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a car out of parking lot"}]} +{"id": "000000111877", "images": ["AURORA/data/something/frames/132740/first.jpg", "AURORA/data/something/frames/132740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering flashlight"}]} +{"id": "000000111878", "images": ["AURORA/data/something/frames/57240/first.jpg", "AURORA/data/something/frames/57240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling diaper wipes out of the bag"}]} +{"id": "000000111879", "images": ["AURORA/data/something/frames/139833/first.jpg", "AURORA/data/something/frames/139833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a cell phone"}]} +{"id": "000000111880", "images": ["AURORA/data/something/frames/76727/first.jpg", "AURORA/data/something/frames/76727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000111881", "images": ["AURORA/data/something/frames/77019/first.jpg", "AURORA/data/something/frames/77019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting pillow with clothes"}]} +{"id": "000000111882", "images": ["AURORA/data/something/frames/114961/first.jpg", "AURORA/data/something/frames/114961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothpaste tube and toothpaste tube so they collide with each other"}]} +{"id": "000000111883", "images": ["AURORA/data/something/frames/84300/first.jpg", "AURORA/data/something/frames/84300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a lighter from behind of a bottle"}]} +{"id": "000000111884", "images": ["AURORA/data/something/frames/87969/first.jpg", "AURORA/data/something/frames/87969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into watering can, but missing so it spills next to it"}]} +{"id": "000000111885", "images": ["AURORA/data/something/frames/105359/first.jpg", "AURORA/data/something/frames/105359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book in front of a cup"}]} +{"id": "000000111886", "images": ["AURORA/data/something/frames/6848/first.jpg", "AURORA/data/something/frames/6848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from left to right"}]} +{"id": "000000111887", "images": ["AURORA/data/something/frames/175887/first.jpg", "AURORA/data/something/frames/175887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming wastebin"}]} +{"id": "000000111888", "images": ["AURORA/data/something/frames/151807/first.jpg", "AURORA/data/something/frames/151807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spects into box"}]} +{"id": "000000111889", "images": ["AURORA/data/something/frames/34339/first.jpg", "AURORA/data/something/frames/34339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting table with book"}]} +{"id": "000000111890", "images": ["AURORA/data/something/frames/79890/first.jpg", "AURORA/data/something/frames/79890/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111891", "images": ["AURORA/data/something/frames/200068/first.jpg", "AURORA/data/something/frames/200068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000111892", "images": ["AURORA/data/something/frames/174784/first.jpg", "AURORA/data/something/frames/174784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping toothpaste off of a desk"}]} +{"id": "000000111893", "images": ["AURORA/data/something/frames/220342/first.jpg", "AURORA/data/something/frames/220342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pen out of a glass"}]} +{"id": "000000111894", "images": ["AURORA/data/something/frames/196818/first.jpg", "AURORA/data/something/frames/196818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging black cord into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000111895", "images": ["AURORA/data/something/frames/129545/first.jpg", "AURORA/data/something/frames/129545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving yellow hairband down"}]} +{"id": "000000111896", "images": ["AURORA/data/something/frames/220382/first.jpg", "AURORA/data/something/frames/220382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking calculator so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111897", "images": ["AURORA/data/something/frames/149823/first.jpg", "AURORA/data/something/frames/149823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb behind wallet"}]} +{"id": "000000111898", "images": ["AURORA/data/something/frames/143540/first.jpg", "AURORA/data/something/frames/143540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall outlet"}]} +{"id": "000000111899", "images": ["AURORA/data/something/frames/73287/first.jpg", "AURORA/data/something/frames/73287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of keurig"}]} +{"id": "000000111900", "images": ["AURORA/data/something/frames/57287/first.jpg", "AURORA/data/something/frames/57287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle so that it almost falls off but doesn't"}]} +{"id": "000000111901", "images": ["AURORA/data/something/frames/128019/first.jpg", "AURORA/data/something/frames/128019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a adapter but pulling it right out as you remove your hand"}]} +{"id": "000000111902", "images": ["AURORA/data/something/frames/96844/first.jpg", "AURORA/data/something/frames/96844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a ceramic frog"}]} +{"id": "000000111903", "images": ["AURORA/data/something/frames/106398/first.jpg", "AURORA/data/something/frames/106398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing chapati just a little bit"}]} +{"id": "000000111904", "images": ["AURORA/data/something/frames/104108/first.jpg", "AURORA/data/something/frames/104108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coin away from the camera"}]} +{"id": "000000111905", "images": ["AURORA/data/something/frames/46578/first.jpg", "AURORA/data/something/frames/46578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking scissors out of box"}]} +{"id": "000000111906", "images": ["AURORA/data/something/frames/98201/first.jpg", "AURORA/data/something/frames/98201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting muffin and bulb syringe on the table"}]} +{"id": "000000111907", "images": ["AURORA/data/something/frames/2872/first.jpg", "AURORA/data/something/frames/2872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into smarthphone"}]} +{"id": "000000111908", "images": ["AURORA/data/something/frames/57770/first.jpg", "AURORA/data/something/frames/57770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of mason jar"}]} +{"id": "000000111909", "images": ["AURORA/data/something/frames/132932/first.jpg", "AURORA/data/something/frames/132932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cable into socket but pulling it right out as you remove your hand"}]} +{"id": "000000111910", "images": ["AURORA/data/something/frames/128124/first.jpg", "AURORA/data/something/frames/128124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111911", "images": ["AURORA/data/something/frames/188678/first.jpg", "AURORA/data/something/frames/188678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000111912", "images": ["AURORA/data/something/frames/205218/first.jpg", "AURORA/data/something/frames/205218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a trophy next to a speaker"}]} +{"id": "000000111913", "images": ["AURORA/data/something/frames/83441/first.jpg", "AURORA/data/something/frames/83441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stick upright on the table, so it falls on its side"}]} +{"id": "000000111914", "images": ["AURORA/data/something/frames/32984/first.jpg", "AURORA/data/something/frames/32984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottletop onto a wallet"}]} +{"id": "000000111915", "images": ["AURORA/data/something/frames/153707/first.jpg", "AURORA/data/something/frames/153707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a can of mints with an aerosol can on it"}]} +{"id": "000000111916", "images": ["AURORA/data/something/frames/39175/first.jpg", "AURORA/data/something/frames/39175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling tissue out of tissue box"}]} +{"id": "000000111917", "images": ["AURORA/data/something/frames/28395/first.jpg", "AURORA/data/something/frames/28395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing vanity bag"}]} +{"id": "000000111918", "images": ["AURORA/data/something/frames/202780/first.jpg", "AURORA/data/something/frames/202780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ashtray down"}]} +{"id": "000000111919", "images": ["AURORA/data/something/frames/193456/first.jpg", "AURORA/data/something/frames/193456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading salt onto raw chicken meat"}]} +{"id": "000000111920", "images": ["AURORA/data/something/frames/19087/first.jpg", "AURORA/data/something/frames/19087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting gum"}]} +{"id": "000000111921", "images": ["AURORA/data/something/frames/194319/first.jpg", "AURORA/data/something/frames/194319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bottle"}]} +{"id": "000000111922", "images": ["AURORA/data/something/frames/87076/first.jpg", "AURORA/data/something/frames/87076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking poking drawer so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000111923", "images": ["AURORA/data/something/frames/19474/first.jpg", "AURORA/data/something/frames/19474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a necklace out of a basket"}]} +{"id": "000000111924", "images": ["AURORA/data/something/frames/201781/first.jpg", "AURORA/data/something/frames/201781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble next to glass"}]} +{"id": "000000111925", "images": ["AURORA/data/something/frames/95371/first.jpg", "AURORA/data/something/frames/95371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting box with remote on it"}]} +{"id": "000000111926", "images": ["AURORA/data/something/frames/30947/first.jpg", "AURORA/data/something/frames/30947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box in front of a book"}]} +{"id": "000000111927", "images": ["AURORA/data/something/frames/65947/first.jpg", "AURORA/data/something/frames/65947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a toy brick to a toy brick"}]} +{"id": "000000111928", "images": ["AURORA/data/something/frames/29234/first.jpg", "AURORA/data/something/frames/29234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering doll with blanket"}]} +{"id": "000000111929", "images": ["AURORA/data/something/frames/127410/first.jpg", "AURORA/data/something/frames/127410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing receipt just a little bit"}]} +{"id": "000000111930", "images": ["AURORA/data/something/frames/56251/first.jpg", "AURORA/data/something/frames/56251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle closer to a cup"}]} +{"id": "000000111931", "images": ["AURORA/data/something/frames/84827/first.jpg", "AURORA/data/something/frames/84827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting something with something"}]} +{"id": "000000111932", "images": ["AURORA/data/something/frames/171376/first.jpg", "AURORA/data/something/frames/171376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing advertising brochure just a little bit"}]} +{"id": "000000111933", "images": ["AURORA/data/something/frames/79193/first.jpg", "AURORA/data/something/frames/79193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000111934", "images": ["AURORA/data/something/frames/188377/first.jpg", "AURORA/data/something/frames/188377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sugar onto buttered toast"}]} +{"id": "000000111935", "images": ["AURORA/data/something/frames/55149/first.jpg", "AURORA/data/something/frames/55149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting rubber into mug"}]} +{"id": "000000111936", "images": ["AURORA/data/something/frames/31509/first.jpg", "AURORA/data/something/frames/31509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading butter onto bread"}]} +{"id": "000000111937", "images": ["AURORA/data/something/frames/38951/first.jpg", "AURORA/data/something/frames/38951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering doll"}]} +{"id": "000000111938", "images": ["AURORA/data/something/frames/155301/first.jpg", "AURORA/data/something/frames/155301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000111939", "images": ["AURORA/data/something/frames/95328/first.jpg", "AURORA/data/something/frames/95328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water bottle and pocket knife on the table"}]} +{"id": "000000111940", "images": ["AURORA/data/something/frames/89434/first.jpg", "AURORA/data/something/frames/89434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a phone so that it almost falls off but doesn't"}]} +{"id": "000000111941", "images": ["AURORA/data/something/frames/128502/first.jpg", "AURORA/data/something/frames/128502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into glass, but missing so it spills next to it"}]} +{"id": "000000111942", "images": ["AURORA/data/something/frames/118229/first.jpg", "AURORA/data/something/frames/118229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 red spoons onto black pouch"}]} +{"id": "000000111943", "images": ["AURORA/data/something/frames/85939/first.jpg", "AURORA/data/something/frames/85939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy onto spectical box"}]} +{"id": "000000111944", "images": ["AURORA/data/something/frames/33170/first.jpg", "AURORA/data/something/frames/33170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a chest"}]} +{"id": "000000111945", "images": ["AURORA/data/something/frames/134849/first.jpg", "AURORA/data/something/frames/134849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000111946", "images": ["AURORA/data/something/frames/80555/first.jpg", "AURORA/data/something/frames/80555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving matchbox and cellphone closer to each other"}]} +{"id": "000000111947", "images": ["AURORA/data/something/frames/7414/first.jpg", "AURORA/data/something/frames/7414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping a pacifier up with my hand"}]} +{"id": "000000111948", "images": ["AURORA/data/something/frames/100117/first.jpg", "AURORA/data/something/frames/100117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of tea box"}]} +{"id": "000000111949", "images": ["AURORA/data/something/frames/17320/first.jpg", "AURORA/data/something/frames/17320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000111950", "images": ["AURORA/data/something/frames/83295/first.jpg", "AURORA/data/something/frames/83295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass away from bottle"}]} +{"id": "000000111951", "images": ["AURORA/data/something/frames/43503/first.jpg", "AURORA/data/something/frames/43503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug closer to mug"}]} +{"id": "000000111952", "images": ["AURORA/data/something/frames/192879/first.jpg", "AURORA/data/something/frames/192879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000111953", "images": ["AURORA/data/something/frames/211134/first.jpg", "AURORA/data/something/frames/211134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a label so that it deforms"}]} +{"id": "000000111954", "images": ["AURORA/data/something/frames/185728/first.jpg", "AURORA/data/something/frames/185728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 spools of thread onto a box"}]} +{"id": "000000111955", "images": ["AURORA/data/something/frames/35487/first.jpg", "AURORA/data/something/frames/35487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper"}]} +{"id": "000000111956", "images": ["AURORA/data/something/frames/29715/first.jpg", "AURORA/data/something/frames/29715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a stuffed bird over"}]} +{"id": "000000111957", "images": ["AURORA/data/something/frames/18271/first.jpg", "AURORA/data/something/frames/18271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000111958", "images": ["AURORA/data/something/frames/220583/first.jpg", "AURORA/data/something/frames/220583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing watch from right to left"}]} +{"id": "000000111959", "images": ["AURORA/data/something/frames/35716/first.jpg", "AURORA/data/something/frames/35716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending an envelope so that it deforms"}]} +{"id": "000000111960", "images": ["AURORA/data/something/frames/84570/first.jpg", "AURORA/data/something/frames/84570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000111961", "images": ["AURORA/data/something/frames/216857/first.jpg", "AURORA/data/something/frames/216857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle across a surface without it falling down"}]} +{"id": "000000111962", "images": ["AURORA/data/something/frames/205243/first.jpg", "AURORA/data/something/frames/205243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting card"}]} +{"id": "000000111963", "images": ["AURORA/data/something/frames/14384/first.jpg", "AURORA/data/something/frames/14384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping candle with bubblegum over, so bubblegum falls out"}]} +{"id": "000000111964", "images": ["AURORA/data/something/frames/127956/first.jpg", "AURORA/data/something/frames/127956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cassette tape next to mug"}]} +{"id": "000000111965", "images": ["AURORA/data/something/frames/35074/first.jpg", "AURORA/data/something/frames/35074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming world globe"}]} +{"id": "000000111966", "images": ["AURORA/data/something/frames/199935/first.jpg", "AURORA/data/something/frames/199935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with tea towel"}]} +{"id": "000000111967", "images": ["AURORA/data/something/frames/186888/first.jpg", "AURORA/data/something/frames/186888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000111968", "images": ["AURORA/data/something/frames/172333/first.jpg", "AURORA/data/something/frames/172333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bottle up completely without letting it drop down"}]} +{"id": "000000111969", "images": ["AURORA/data/something/frames/22118/first.jpg", "AURORA/data/something/frames/22118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a cloth into two pieces"}]} +{"id": "000000111970", "images": ["AURORA/data/something/frames/4048/first.jpg", "AURORA/data/something/frames/4048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 toy cars onto diary"}]} +{"id": "000000111971", "images": ["AURORA/data/something/frames/183231/first.jpg", "AURORA/data/something/frames/183231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000111972", "images": ["AURORA/data/something/frames/78911/first.jpg", "AURORA/data/something/frames/78911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power plug into electric socket but pulling it right out as you remove your hand"}]} +{"id": "000000111973", "images": ["AURORA/data/something/frames/203254/first.jpg", "AURORA/data/something/frames/203254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000111974", "images": ["AURORA/data/something/frames/217276/first.jpg", "AURORA/data/something/frames/217276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: marble colliding with marble and both are being deflected"}]} +{"id": "000000111975", "images": ["AURORA/data/something/frames/143703/first.jpg", "AURORA/data/something/frames/143703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a note"}]} +{"id": "000000111976", "images": ["AURORA/data/something/frames/208629/first.jpg", "AURORA/data/something/frames/208629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering orange"}]} +{"id": "000000111977", "images": ["AURORA/data/something/frames/122032/first.jpg", "AURORA/data/something/frames/122032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling box onto table"}]} +{"id": "000000111978", "images": ["AURORA/data/something/frames/194840/first.jpg", "AURORA/data/something/frames/194840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering foldable knife with punching machine"}]} +{"id": "000000111979", "images": ["AURORA/data/something/frames/567/first.jpg", "AURORA/data/something/frames/567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb in front of a toothbrush"}]} +{"id": "000000111980", "images": ["AURORA/data/something/frames/21688/first.jpg", "AURORA/data/something/frames/21688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000111981", "images": ["AURORA/data/something/frames/166776/first.jpg", "AURORA/data/something/frames/166776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from right to left"}]} +{"id": "000000111982", "images": ["AURORA/data/something/frames/119800/first.jpg", "AURORA/data/something/frames/119800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering ballpen with towel"}]} +{"id": "000000111983", "images": ["AURORA/data/something/frames/186406/first.jpg", "AURORA/data/something/frames/186406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a container with a blanket"}]} +{"id": "000000111984", "images": ["AURORA/data/something/frames/182911/first.jpg", "AURORA/data/something/frames/182911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering decoration box"}]} +{"id": "000000111985", "images": ["AURORA/data/something/frames/49824/first.jpg", "AURORA/data/something/frames/49824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pot"}]} +{"id": "000000111986", "images": ["AURORA/data/something/frames/4946/first.jpg", "AURORA/data/something/frames/4946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tissues on a surface"}]} +{"id": "000000111987", "images": ["AURORA/data/something/frames/201373/first.jpg", "AURORA/data/something/frames/201373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing yellow clay container"}]} +{"id": "000000111988", "images": ["AURORA/data/something/frames/175473/first.jpg", "AURORA/data/something/frames/175473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a watch on it but not enough for it to slide down"}]} +{"id": "000000111989", "images": ["AURORA/data/something/frames/58820/first.jpg", "AURORA/data/something/frames/58820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bag into the drawer"}]} +{"id": "000000111990", "images": ["AURORA/data/something/frames/156977/first.jpg", "AURORA/data/something/frames/156977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) title of book"}]} +{"id": "000000111991", "images": ["AURORA/data/something/frames/93294/first.jpg", "AURORA/data/something/frames/93294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming plant"}]} +{"id": "000000111992", "images": ["AURORA/data/something/frames/136767/first.jpg", "AURORA/data/something/frames/136767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving aroma diffuser and trophie closer to each other"}]} +{"id": "000000111993", "images": ["AURORA/data/something/frames/142225/first.jpg", "AURORA/data/something/frames/142225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue just a little bit"}]} +{"id": "000000111994", "images": ["AURORA/data/something/frames/82359/first.jpg", "AURORA/data/something/frames/82359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing trash can"}]} +{"id": "000000111995", "images": ["AURORA/data/something/frames/196119/first.jpg", "AURORA/data/something/frames/196119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass"}]} +{"id": "000000111996", "images": ["AURORA/data/something/frames/56653/first.jpg", "AURORA/data/something/frames/56653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen closer to red spoon"}]} +{"id": "000000111997", "images": ["AURORA/data/something/frames/169837/first.jpg", "AURORA/data/something/frames/169837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding wrag"}]} +{"id": "000000111998", "images": ["AURORA/data/something/frames/124242/first.jpg", "AURORA/data/something/frames/124242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a door"}]} +{"id": "000000111999", "images": ["AURORA/data/something/frames/191109/first.jpg", "AURORA/data/something/frames/191109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking plate up"}]} +{"id": "000000112000", "images": ["AURORA/data/something/frames/5950/first.jpg", "AURORA/data/something/frames/5950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper up completely without letting it drop down"}]} +{"id": "000000112001", "images": ["AURORA/data/something/frames/22370/first.jpg", "AURORA/data/something/frames/22370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ruler onto mobile phone"}]} +{"id": "000000112002", "images": ["AURORA/data/something/frames/117370/first.jpg", "AURORA/data/something/frames/117370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with glass bottle on it but not enough for it to slide down"}]} +{"id": "000000112003", "images": ["AURORA/data/something/frames/57930/first.jpg", "AURORA/data/something/frames/57930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000112004", "images": ["AURORA/data/something/frames/182133/first.jpg", "AURORA/data/something/frames/182133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding reciept"}]} +{"id": "000000112005", "images": ["AURORA/data/something/frames/129977/first.jpg", "AURORA/data/something/frames/129977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000112006", "images": ["AURORA/data/something/frames/164624/first.jpg", "AURORA/data/something/frames/164624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into laptop"}]} +{"id": "000000112007", "images": ["AURORA/data/something/frames/65413/first.jpg", "AURORA/data/something/frames/65413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plushie from right to left"}]} +{"id": "000000112008", "images": ["AURORA/data/something/frames/124947/first.jpg", "AURORA/data/something/frames/124947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a computer mouse with a paper"}]} +{"id": "000000112009", "images": ["AURORA/data/something/frames/80884/first.jpg", "AURORA/data/something/frames/80884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel into two pieces"}]} +{"id": "000000112010", "images": ["AURORA/data/something/frames/133449/first.jpg", "AURORA/data/something/frames/133449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning pillow upside down"}]} +{"id": "000000112011", "images": ["AURORA/data/something/frames/39635/first.jpg", "AURORA/data/something/frames/39635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping soda pop can over"}]} +{"id": "000000112012", "images": ["AURORA/data/something/frames/115541/first.jpg", "AURORA/data/something/frames/115541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubix cube into orange bowl"}]} +{"id": "000000112013", "images": ["AURORA/data/something/frames/92691/first.jpg", "AURORA/data/something/frames/92691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket but pulling it right out as you remove your hand"}]} +{"id": "000000112014", "images": ["AURORA/data/something/frames/22562/first.jpg", "AURORA/data/something/frames/22562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ceramic ball and mug so they collide with each other"}]} +{"id": "000000112015", "images": ["AURORA/data/something/frames/200357/first.jpg", "AURORA/data/something/frames/200357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair clip next to green bowl"}]} +{"id": "000000112016", "images": ["AURORA/data/something/frames/35707/first.jpg", "AURORA/data/something/frames/35707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chalk on a surface"}]} +{"id": "000000112017", "images": ["AURORA/data/something/frames/97493/first.jpg", "AURORA/data/something/frames/97493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a can, revealing a pair of tweezers behind"}]} +{"id": "000000112018", "images": ["AURORA/data/something/frames/200484/first.jpg", "AURORA/data/something/frames/200484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing magnet from right to left"}]} +{"id": "000000112019", "images": ["AURORA/data/something/frames/64132/first.jpg", "AURORA/data/something/frames/64132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper up"}]} +{"id": "000000112020", "images": ["AURORA/data/something/frames/91683/first.jpg", "AURORA/data/something/frames/91683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a stapler up"}]} +{"id": "000000112021", "images": ["AURORA/data/something/frames/202680/first.jpg", "AURORA/data/something/frames/202680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening plastic container"}]} +{"id": "000000112022", "images": ["AURORA/data/something/frames/26928/first.jpg", "AURORA/data/something/frames/26928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mobile with mobile"}]} +{"id": "000000112023", "images": ["AURORA/data/something/frames/43192/first.jpg", "AURORA/data/something/frames/43192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with cards on it"}]} +{"id": "000000112024", "images": ["AURORA/data/something/frames/209558/first.jpg", "AURORA/data/something/frames/209558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a pencil so they collide with each other"}]} +{"id": "000000112025", "images": ["AURORA/data/something/frames/216243/first.jpg", "AURORA/data/something/frames/216243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto surface"}]} +{"id": "000000112026", "images": ["AURORA/data/something/frames/38096/first.jpg", "AURORA/data/something/frames/38096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking indian almond up"}]} +{"id": "000000112027", "images": ["AURORA/data/something/frames/93249/first.jpg", "AURORA/data/something/frames/93249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving leaf up"}]} +{"id": "000000112028", "images": ["AURORA/data/something/frames/160988/first.jpg", "AURORA/data/something/frames/160988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bike closer to chair"}]} +{"id": "000000112029", "images": ["AURORA/data/something/frames/153090/first.jpg", "AURORA/data/something/frames/153090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112030", "images": ["AURORA/data/something/frames/208350/first.jpg", "AURORA/data/something/frames/208350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cord into usb hub"}]} +{"id": "000000112031", "images": ["AURORA/data/something/frames/83063/first.jpg", "AURORA/data/something/frames/83063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon"}]} +{"id": "000000112032", "images": ["AURORA/data/something/frames/52198/first.jpg", "AURORA/data/something/frames/52198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle onto cup"}]} +{"id": "000000112033", "images": ["AURORA/data/something/frames/189788/first.jpg", "AURORA/data/something/frames/189788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tape measure down"}]} +{"id": "000000112034", "images": ["AURORA/data/something/frames/200578/first.jpg", "AURORA/data/something/frames/200578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coffee into mug"}]} +{"id": "000000112035", "images": ["AURORA/data/something/frames/17838/first.jpg", "AURORA/data/something/frames/17838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112036", "images": ["AURORA/data/something/frames/139308/first.jpg", "AURORA/data/something/frames/139308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug on a surface"}]} +{"id": "000000112037", "images": ["AURORA/data/something/frames/208063/first.jpg", "AURORA/data/something/frames/208063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a book over"}]} +{"id": "000000112038", "images": ["AURORA/data/something/frames/5804/first.jpg", "AURORA/data/something/frames/5804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a card away from a box"}]} +{"id": "000000112039", "images": ["AURORA/data/something/frames/81430/first.jpg", "AURORA/data/something/frames/81430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 book/dvd case/booklet"}]} +{"id": "000000112040", "images": ["AURORA/data/something/frames/75240/first.jpg", "AURORA/data/something/frames/75240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a water bottle closer to a mug"}]} +{"id": "000000112041", "images": ["AURORA/data/something/frames/189373/first.jpg", "AURORA/data/something/frames/189373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper"}]} +{"id": "000000112042", "images": ["AURORA/data/something/frames/53528/first.jpg", "AURORA/data/something/frames/53528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a pen so that it separates into two pieces"}]} +{"id": "000000112043", "images": ["AURORA/data/something/frames/54973/first.jpg", "AURORA/data/something/frames/54973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hair clips onto yellow note"}]} +{"id": "000000112044", "images": ["AURORA/data/something/frames/71770/first.jpg", "AURORA/data/something/frames/71770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tape with shirt"}]} +{"id": "000000112045", "images": ["AURORA/data/something/frames/65609/first.jpg", "AURORA/data/something/frames/65609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen from stool"}]} +{"id": "000000112046", "images": ["AURORA/data/something/frames/108186/first.jpg", "AURORA/data/something/frames/108186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle and pen on the table"}]} +{"id": "000000112047", "images": ["AURORA/data/something/frames/211943/first.jpg", "AURORA/data/something/frames/211943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour tea into a cup, but missing so it spills next to it"}]} +{"id": "000000112048", "images": ["AURORA/data/something/frames/140875/first.jpg", "AURORA/data/something/frames/140875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending wooden reeper until it breaks"}]} +{"id": "000000112049", "images": ["AURORA/data/something/frames/81113/first.jpg", "AURORA/data/something/frames/81113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112050", "images": ["AURORA/data/something/frames/67285/first.jpg", "AURORA/data/something/frames/67285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sheild away from drum"}]} +{"id": "000000112051", "images": ["AURORA/data/something/frames/187888/first.jpg", "AURORA/data/something/frames/187888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112052", "images": ["AURORA/data/something/frames/47014/first.jpg", "AURORA/data/something/frames/47014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000112053", "images": ["AURORA/data/something/frames/39894/first.jpg", "AURORA/data/something/frames/39894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000112054", "images": ["AURORA/data/something/frames/142895/first.jpg", "AURORA/data/something/frames/142895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wood down"}]} +{"id": "000000112055", "images": ["AURORA/data/something/frames/182882/first.jpg", "AURORA/data/something/frames/182882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving an eraser and a bottlecap closer to each other"}]} +{"id": "000000112056", "images": ["AURORA/data/something/frames/111961/first.jpg", "AURORA/data/something/frames/111961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing the door"}]} +{"id": "000000112057", "images": ["AURORA/data/something/frames/50040/first.jpg", "AURORA/data/something/frames/50040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting orange bowl up completely without letting it drop down"}]} +{"id": "000000112058", "images": ["AURORA/data/something/frames/200050/first.jpg", "AURORA/data/something/frames/200050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000112059", "images": ["AURORA/data/something/frames/23522/first.jpg", "AURORA/data/something/frames/23522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a q-tip upright on the table, so it falls on its side"}]} +{"id": "000000112060", "images": ["AURORA/data/something/frames/187563/first.jpg", "AURORA/data/something/frames/187563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: package colliding with package and both are being deflected"}]} +{"id": "000000112061", "images": ["AURORA/data/something/frames/193659/first.jpg", "AURORA/data/something/frames/193659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a card out of the bag"}]} +{"id": "000000112062", "images": ["AURORA/data/something/frames/69608/first.jpg", "AURORA/data/something/frames/69608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking currency from table"}]} +{"id": "000000112063", "images": ["AURORA/data/something/frames/75340/first.jpg", "AURORA/data/something/frames/75340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books without the stack collapsing"}]} +{"id": "000000112064", "images": ["AURORA/data/something/frames/128828/first.jpg", "AURORA/data/something/frames/128828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding documents"}]} +{"id": "000000112065", "images": ["AURORA/data/something/frames/54941/first.jpg", "AURORA/data/something/frames/54941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving potato and potato away from each other"}]} +{"id": "000000112066", "images": ["AURORA/data/something/frames/91684/first.jpg", "AURORA/data/something/frames/91684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming pipes"}]} +{"id": "000000112067", "images": ["AURORA/data/something/frames/185482/first.jpg", "AURORA/data/something/frames/185482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box"}]} +{"id": "000000112068", "images": ["AURORA/data/something/frames/90490/first.jpg", "AURORA/data/something/frames/90490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cabel into switch but pulling it right out as you remove your hand"}]} +{"id": "000000112069", "images": ["AURORA/data/something/frames/96671/first.jpg", "AURORA/data/something/frames/96671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking tea tumbler up"}]} +{"id": "000000112070", "images": ["AURORA/data/something/frames/91637/first.jpg", "AURORA/data/something/frames/91637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a rag into canister"}]} +{"id": "000000112071", "images": ["AURORA/data/something/frames/35234/first.jpg", "AURORA/data/something/frames/35234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pill bottle over"}]} +{"id": "000000112072", "images": ["AURORA/data/something/frames/27892/first.jpg", "AURORA/data/something/frames/27892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 ink bottles"}]} +{"id": "000000112073", "images": ["AURORA/data/something/frames/102171/first.jpg", "AURORA/data/something/frames/102171/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading books onto chair"}]} +{"id": "000000112074", "images": ["AURORA/data/something/frames/120079/first.jpg", "AURORA/data/something/frames/120079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with a spoon"}]} +{"id": "000000112075", "images": ["AURORA/data/something/frames/112090/first.jpg", "AURORA/data/something/frames/112090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper underneath books"}]} +{"id": "000000112076", "images": ["AURORA/data/something/frames/59546/first.jpg", "AURORA/data/something/frames/59546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small freshmints from right to left"}]} +{"id": "000000112077", "images": ["AURORA/data/something/frames/129519/first.jpg", "AURORA/data/something/frames/129519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cylindrical box in front of a cup"}]} +{"id": "000000112078", "images": ["AURORA/data/something/frames/156515/first.jpg", "AURORA/data/something/frames/156515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cushions up"}]} +{"id": "000000112079", "images": ["AURORA/data/something/frames/90357/first.jpg", "AURORA/data/something/frames/90357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from right to left"}]} +{"id": "000000112080", "images": ["AURORA/data/something/frames/3866/first.jpg", "AURORA/data/something/frames/3866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker out of mug"}]} +{"id": "000000112081", "images": ["AURORA/data/something/frames/179739/first.jpg", "AURORA/data/something/frames/179739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping magazine onto floor"}]} +{"id": "000000112082", "images": ["AURORA/data/something/frames/117781/first.jpg", "AURORA/data/something/frames/117781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a phone next to a key ring"}]} +{"id": "000000112083", "images": ["AURORA/data/something/frames/196568/first.jpg", "AURORA/data/something/frames/196568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending matchstick until it breaks"}]} +{"id": "000000112084", "images": ["AURORA/data/something/frames/114772/first.jpg", "AURORA/data/something/frames/114772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone on a surface"}]} +{"id": "000000112085", "images": ["AURORA/data/something/frames/90916/first.jpg", "AURORA/data/something/frames/90916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen away from glass"}]} +{"id": "000000112086", "images": ["AURORA/data/something/frames/87616/first.jpg", "AURORA/data/something/frames/87616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wooden puppet down"}]} +{"id": "000000112087", "images": ["AURORA/data/something/frames/98227/first.jpg", "AURORA/data/something/frames/98227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting leather bag underneath table"}]} +{"id": "000000112088", "images": ["AURORA/data/something/frames/79154/first.jpg", "AURORA/data/something/frames/79154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something and something closer to each other"}]} +{"id": "000000112089", "images": ["AURORA/data/something/frames/69499/first.jpg", "AURORA/data/something/frames/69499/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting spanner up completely without letting it drop down"}]} +{"id": "000000112090", "images": ["AURORA/data/something/frames/186044/first.jpg", "AURORA/data/something/frames/186044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bulb underneath scooter"}]} +{"id": "000000112091", "images": ["AURORA/data/something/frames/177523/first.jpg", "AURORA/data/something/frames/177523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112092", "images": ["AURORA/data/something/frames/41553/first.jpg", "AURORA/data/something/frames/41553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring tea from glass onto a cup"}]} +{"id": "000000112093", "images": ["AURORA/data/something/frames/73306/first.jpg", "AURORA/data/something/frames/73306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling packet out of jar"}]} +{"id": "000000112094", "images": ["AURORA/data/something/frames/89190/first.jpg", "AURORA/data/something/frames/89190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a stuffed animal with a pillow"}]} +{"id": "000000112095", "images": ["AURORA/data/something/frames/203848/first.jpg", "AURORA/data/something/frames/203848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a book with a blanket"}]} +{"id": "000000112096", "images": ["AURORA/data/something/frames/93475/first.jpg", "AURORA/data/something/frames/93475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering eraser with cloth"}]} +{"id": "000000112097", "images": ["AURORA/data/something/frames/62508/first.jpg", "AURORA/data/something/frames/62508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping watch onto carpet"}]} +{"id": "000000112098", "images": ["AURORA/data/something/frames/80026/first.jpg", "AURORA/data/something/frames/80026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling baby powder onto desk"}]} +{"id": "000000112099", "images": ["AURORA/data/something/frames/128538/first.jpg", "AURORA/data/something/frames/128538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking straightner from table"}]} +{"id": "000000112100", "images": ["AURORA/data/something/frames/98593/first.jpg", "AURORA/data/something/frames/98593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook next to flower"}]} +{"id": "000000112101", "images": ["AURORA/data/something/frames/129654/first.jpg", "AURORA/data/something/frames/129654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a box from left to right"}]} +{"id": "000000112102", "images": ["AURORA/data/something/frames/43323/first.jpg", "AURORA/data/something/frames/43323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming boat"}]} +{"id": "000000112103", "images": ["AURORA/data/something/frames/31877/first.jpg", "AURORA/data/something/frames/31877/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pencil box from left to right"}]} +{"id": "000000112104", "images": ["AURORA/data/something/frames/19983/first.jpg", "AURORA/data/something/frames/19983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a thermometer into a drawer"}]} +{"id": "000000112105", "images": ["AURORA/data/something/frames/219481/first.jpg", "AURORA/data/something/frames/219481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a trimmer on a surface"}]} +{"id": "000000112106", "images": ["AURORA/data/something/frames/137747/first.jpg", "AURORA/data/something/frames/137747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box, flower and key on the table"}]} +{"id": "000000112107", "images": ["AURORA/data/something/frames/128243/first.jpg", "AURORA/data/something/frames/128243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping milk off of wood table"}]} +{"id": "000000112108", "images": ["AURORA/data/something/frames/76129/first.jpg", "AURORA/data/something/frames/76129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000112109", "images": ["AURORA/data/something/frames/34028/first.jpg", "AURORA/data/something/frames/34028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and stapler away from each other"}]} +{"id": "000000112110", "images": ["AURORA/data/something/frames/174854/first.jpg", "AURORA/data/something/frames/174854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening the cover of a paperback book"}]} +{"id": "000000112111", "images": ["AURORA/data/something/frames/123926/first.jpg", "AURORA/data/something/frames/123926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a glass jar up"}]} +{"id": "000000112112", "images": ["AURORA/data/something/frames/52630/first.jpg", "AURORA/data/something/frames/52630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball into a bucket"}]} +{"id": "000000112113", "images": ["AURORA/data/something/frames/207782/first.jpg", "AURORA/data/something/frames/207782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy on a surface"}]} +{"id": "000000112114", "images": ["AURORA/data/something/frames/199509/first.jpg", "AURORA/data/something/frames/199509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening candle"}]} +{"id": "000000112115", "images": ["AURORA/data/something/frames/167392/first.jpg", "AURORA/data/something/frames/167392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a sweatshirt into a bag"}]} +{"id": "000000112116", "images": ["AURORA/data/something/frames/51768/first.jpg", "AURORA/data/something/frames/51768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a coaster and remote control closer to each other"}]} +{"id": "000000112117", "images": ["AURORA/data/something/frames/8956/first.jpg", "AURORA/data/something/frames/8956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000112118", "images": ["AURORA/data/something/frames/184905/first.jpg", "AURORA/data/something/frames/184905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something towards the camera"}]} +{"id": "000000112119", "images": ["AURORA/data/something/frames/157090/first.jpg", "AURORA/data/something/frames/157090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys behind bag"}]} +{"id": "000000112120", "images": ["AURORA/data/something/frames/74973/first.jpg", "AURORA/data/something/frames/74973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cigarette pack with cigarette over, so cigarette falls out"}]} +{"id": "000000112121", "images": ["AURORA/data/something/frames/19175/first.jpg", "AURORA/data/something/frames/19175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000112122", "images": ["AURORA/data/something/frames/79595/first.jpg", "AURORA/data/something/frames/79595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a scarf so that it gets stretched"}]} +{"id": "000000112123", "images": ["AURORA/data/something/frames/135641/first.jpg", "AURORA/data/something/frames/135641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cellphone cord into outlet strip but pulling it right out as you remove your hand"}]} +{"id": "000000112124", "images": ["AURORA/data/something/frames/119177/first.jpg", "AURORA/data/something/frames/119177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coins into a jar"}]} +{"id": "000000112125", "images": ["AURORA/data/something/frames/215591/first.jpg", "AURORA/data/something/frames/215591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting crayon into mug"}]} +{"id": "000000112126", "images": ["AURORA/data/something/frames/65550/first.jpg", "AURORA/data/something/frames/65550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glasses upside down"}]} +{"id": "000000112127", "images": ["AURORA/data/something/frames/87257/first.jpg", "AURORA/data/something/frames/87257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000112128", "images": ["AURORA/data/something/frames/128892/first.jpg", "AURORA/data/something/frames/128892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing mobile phone cover"}]} +{"id": "000000112129", "images": ["AURORA/data/something/frames/15179/first.jpg", "AURORA/data/something/frames/15179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting books into bag"}]} +{"id": "000000112130", "images": ["AURORA/data/something/frames/25922/first.jpg", "AURORA/data/something/frames/25922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle behind bowl"}]} +{"id": "000000112131", "images": ["AURORA/data/something/frames/61424/first.jpg", "AURORA/data/something/frames/61424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the container of a candle"}]} +{"id": "000000112132", "images": ["AURORA/data/something/frames/196340/first.jpg", "AURORA/data/something/frames/196340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin next to pencil"}]} +{"id": "000000112133", "images": ["AURORA/data/something/frames/209619/first.jpg", "AURORA/data/something/frames/209619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming picture"}]} +{"id": "000000112134", "images": ["AURORA/data/something/frames/76217/first.jpg", "AURORA/data/something/frames/76217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading peanut butter onto toast"}]} +{"id": "000000112135", "images": ["AURORA/data/something/frames/23480/first.jpg", "AURORA/data/something/frames/23480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a candle with a plastic lid"}]} +{"id": "000000112136", "images": ["AURORA/data/something/frames/209363/first.jpg", "AURORA/data/something/frames/209363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000112137", "images": ["AURORA/data/something/frames/19620/first.jpg", "AURORA/data/something/frames/19620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a post-it note into two pieces"}]} +{"id": "000000112138", "images": ["AURORA/data/something/frames/209686/first.jpg", "AURORA/data/something/frames/209686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving teddy bear and stuffed toy away from each other"}]} +{"id": "000000112139", "images": ["AURORA/data/something/frames/218248/first.jpg", "AURORA/data/something/frames/218248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling water bottle from behind of television"}]} +{"id": "000000112140", "images": ["AURORA/data/something/frames/62503/first.jpg", "AURORA/data/something/frames/62503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000112141", "images": ["AURORA/data/something/frames/106326/first.jpg", "AURORA/data/something/frames/106326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coffee onto table"}]} +{"id": "000000112142", "images": ["AURORA/data/something/frames/65086/first.jpg", "AURORA/data/something/frames/65086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking discount cards"}]} +{"id": "000000112143", "images": ["AURORA/data/something/frames/65220/first.jpg", "AURORA/data/something/frames/65220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening kitchen cabinet"}]} +{"id": "000000112144", "images": ["AURORA/data/something/frames/99106/first.jpg", "AURORA/data/something/frames/99106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing pomegranate peel just a little bit"}]} +{"id": "000000112145", "images": ["AURORA/data/something/frames/121709/first.jpg", "AURORA/data/something/frames/121709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle with a bottle"}]} +{"id": "000000112146", "images": ["AURORA/data/something/frames/38160/first.jpg", "AURORA/data/something/frames/38160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) sponge wet until water comes out"}]} +{"id": "000000112147", "images": ["AURORA/data/something/frames/122604/first.jpg", "AURORA/data/something/frames/122604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy idol next to hair band"}]} +{"id": "000000112148", "images": ["AURORA/data/something/frames/15724/first.jpg", "AURORA/data/something/frames/15724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering slippers"}]} +{"id": "000000112149", "images": ["AURORA/data/something/frames/67525/first.jpg", "AURORA/data/something/frames/67525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing orange notebook from left to right"}]} +{"id": "000000112150", "images": ["AURORA/data/something/frames/214485/first.jpg", "AURORA/data/something/frames/214485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shampoo bottle and tumbler closer to each other"}]} +{"id": "000000112151", "images": ["AURORA/data/something/frames/55951/first.jpg", "AURORA/data/something/frames/55951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cutting board with lid on it"}]} +{"id": "000000112152", "images": ["AURORA/data/something/frames/114957/first.jpg", "AURORA/data/something/frames/114957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000112153", "images": ["AURORA/data/something/frames/212195/first.jpg", "AURORA/data/something/frames/212195/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000112154", "images": ["AURORA/data/something/frames/46965/first.jpg", "AURORA/data/something/frames/46965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card next to a shoe brush"}]} +{"id": "000000112155", "images": ["AURORA/data/something/frames/69508/first.jpg", "AURORA/data/something/frames/69508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000112156", "images": ["AURORA/data/something/frames/73388/first.jpg", "AURORA/data/something/frames/73388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a hairclip next to a keybound"}]} +{"id": "000000112157", "images": ["AURORA/data/something/frames/150709/first.jpg", "AURORA/data/something/frames/150709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker upright on the table"}]} +{"id": "000000112158", "images": ["AURORA/data/something/frames/35063/first.jpg", "AURORA/data/something/frames/35063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling blankets up"}]} +{"id": "000000112159", "images": ["AURORA/data/something/frames/173258/first.jpg", "AURORA/data/something/frames/173258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cloth and cup away from each other"}]} +{"id": "000000112160", "images": ["AURORA/data/something/frames/172225/first.jpg", "AURORA/data/something/frames/172225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into powerbank"}]} +{"id": "000000112161", "images": ["AURORA/data/something/frames/121085/first.jpg", "AURORA/data/something/frames/121085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112162", "images": ["AURORA/data/something/frames/188196/first.jpg", "AURORA/data/something/frames/188196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112163", "images": ["AURORA/data/something/frames/179063/first.jpg", "AURORA/data/something/frames/179063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cans"}]} +{"id": "000000112164", "images": ["AURORA/data/something/frames/202040/first.jpg", "AURORA/data/something/frames/202040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a chair"}]} +{"id": "000000112165", "images": ["AURORA/data/something/frames/191667/first.jpg", "AURORA/data/something/frames/191667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112166", "images": ["AURORA/data/something/frames/22216/first.jpg", "AURORA/data/something/frames/22216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting something up completely without letting it drop down"}]} +{"id": "000000112167", "images": ["AURORA/data/something/frames/136018/first.jpg", "AURORA/data/something/frames/136018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112168", "images": ["AURORA/data/something/frames/55635/first.jpg", "AURORA/data/something/frames/55635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto plate"}]} +{"id": "000000112169", "images": ["AURORA/data/something/frames/18160/first.jpg", "AURORA/data/something/frames/18160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 sticky notes"}]} +{"id": "000000112170", "images": ["AURORA/data/something/frames/159330/first.jpg", "AURORA/data/something/frames/159330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping salt off of a table"}]} +{"id": "000000112171", "images": ["AURORA/data/something/frames/25499/first.jpg", "AURORA/data/something/frames/25499/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a glasses case up completely without letting it drop down"}]} +{"id": "000000112172", "images": ["AURORA/data/something/frames/205981/first.jpg", "AURORA/data/something/frames/205981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering red spoon with cookie box lid"}]} +{"id": "000000112173", "images": ["AURORA/data/something/frames/141930/first.jpg", "AURORA/data/something/frames/141930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mic and speaker closer to each other"}]} +{"id": "000000112174", "images": ["AURORA/data/something/frames/117960/first.jpg", "AURORA/data/something/frames/117960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking iron box from table"}]} +{"id": "000000112175", "images": ["AURORA/data/something/frames/128034/first.jpg", "AURORA/data/something/frames/128034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notebook towards the camera"}]} +{"id": "000000112176", "images": ["AURORA/data/something/frames/207810/first.jpg", "AURORA/data/something/frames/207810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) handle of door"}]} +{"id": "000000112177", "images": ["AURORA/data/something/frames/131120/first.jpg", "AURORA/data/something/frames/131120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass next to other already on table"}]} +{"id": "000000112178", "images": ["AURORA/data/something/frames/55552/first.jpg", "AURORA/data/something/frames/55552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle into a vase"}]} +{"id": "000000112179", "images": ["AURORA/data/something/frames/210371/first.jpg", "AURORA/data/something/frames/210371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper into two pieces"}]} +{"id": "000000112180", "images": ["AURORA/data/something/frames/134767/first.jpg", "AURORA/data/something/frames/134767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and ruler closer to each other"}]} +{"id": "000000112181", "images": ["AURORA/data/something/frames/84729/first.jpg", "AURORA/data/something/frames/84729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a body pillow and a smaller pillow away from each other"}]} +{"id": "000000112182", "images": ["AURORA/data/something/frames/108841/first.jpg", "AURORA/data/something/frames/108841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a wooden stick up completely without letting it drop down"}]} +{"id": "000000112183", "images": ["AURORA/data/something/frames/177590/first.jpg", "AURORA/data/something/frames/177590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a can"}]} +{"id": "000000112184", "images": ["AURORA/data/something/frames/98251/first.jpg", "AURORA/data/something/frames/98251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112185", "images": ["AURORA/data/something/frames/169292/first.jpg", "AURORA/data/something/frames/169292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking leaf"}]} +{"id": "000000112186", "images": ["AURORA/data/something/frames/128494/first.jpg", "AURORA/data/something/frames/128494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112187", "images": ["AURORA/data/something/frames/209485/first.jpg", "AURORA/data/something/frames/209485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112188", "images": ["AURORA/data/something/frames/74815/first.jpg", "AURORA/data/something/frames/74815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting camera underneath table"}]} +{"id": "000000112189", "images": ["AURORA/data/something/frames/91484/first.jpg", "AURORA/data/something/frames/91484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cigarette lighter in front of battery"}]} +{"id": "000000112190", "images": ["AURORA/data/something/frames/67171/first.jpg", "AURORA/data/something/frames/67171/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with bowl on it but not enough for it to slide down"}]} +{"id": "000000112191", "images": ["AURORA/data/something/frames/200433/first.jpg", "AURORA/data/something/frames/200433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving badge down"}]} +{"id": "000000112192", "images": ["AURORA/data/something/frames/186285/first.jpg", "AURORA/data/something/frames/186285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cutting board upright on the table, so it falls on its side"}]} +{"id": "000000112193", "images": ["AURORA/data/something/frames/71966/first.jpg", "AURORA/data/something/frames/71966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000112194", "images": ["AURORA/data/something/frames/44816/first.jpg", "AURORA/data/something/frames/44816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can behind a can"}]} +{"id": "000000112195", "images": ["AURORA/data/something/frames/125234/first.jpg", "AURORA/data/something/frames/125234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone changer into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000112196", "images": ["AURORA/data/something/frames/72541/first.jpg", "AURORA/data/something/frames/72541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming mobile phone"}]} +{"id": "000000112197", "images": ["AURORA/data/something/frames/195830/first.jpg", "AURORA/data/something/frames/195830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone and notebook closer to each other"}]} +{"id": "000000112198", "images": ["AURORA/data/something/frames/113707/first.jpg", "AURORA/data/something/frames/113707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering goggles with cloth"}]} +{"id": "000000112199", "images": ["AURORA/data/something/frames/218616/first.jpg", "AURORA/data/something/frames/218616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting coin with coin on it"}]} +{"id": "000000112200", "images": ["AURORA/data/something/frames/10101/first.jpg", "AURORA/data/something/frames/10101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charging cord into a bluetooth"}]} +{"id": "000000112201", "images": ["AURORA/data/something/frames/217049/first.jpg", "AURORA/data/something/frames/217049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lime colliding with lime and both are being deflected"}]} +{"id": "000000112202", "images": ["AURORA/data/something/frames/169945/first.jpg", "AURORA/data/something/frames/169945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting button"}]} +{"id": "000000112203", "images": ["AURORA/data/something/frames/47164/first.jpg", "AURORA/data/something/frames/47164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling papers up"}]} +{"id": "000000112204", "images": ["AURORA/data/something/frames/130407/first.jpg", "AURORA/data/something/frames/130407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking comb up"}]} +{"id": "000000112205", "images": ["AURORA/data/something/frames/47739/first.jpg", "AURORA/data/something/frames/47739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching usb to laptop"}]} +{"id": "000000112206", "images": ["AURORA/data/something/frames/134701/first.jpg", "AURORA/data/something/frames/134701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ink bottle and clip box on the table"}]} +{"id": "000000112207", "images": ["AURORA/data/something/frames/201473/first.jpg", "AURORA/data/something/frames/201473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into block"}]} +{"id": "000000112208", "images": ["AURORA/data/something/frames/46193/first.jpg", "AURORA/data/something/frames/46193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle towards the camera"}]} +{"id": "000000112209", "images": ["AURORA/data/something/frames/104061/first.jpg", "AURORA/data/something/frames/104061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging mouse into laptop"}]} +{"id": "000000112210", "images": ["AURORA/data/something/frames/13680/first.jpg", "AURORA/data/something/frames/13680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook and pen"}]} +{"id": "000000112211", "images": ["AURORA/data/something/frames/136695/first.jpg", "AURORA/data/something/frames/136695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass down"}]} +{"id": "000000112212", "images": ["AURORA/data/something/frames/196329/first.jpg", "AURORA/data/something/frames/196329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone but pulling it right out as you remove your hand"}]} +{"id": "000000112213", "images": ["AURORA/data/something/frames/157167/first.jpg", "AURORA/data/something/frames/157167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening car door"}]} +{"id": "000000112214", "images": ["AURORA/data/something/frames/27048/first.jpg", "AURORA/data/something/frames/27048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bowl"}]} +{"id": "000000112215", "images": ["AURORA/data/something/frames/202463/first.jpg", "AURORA/data/something/frames/202463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing lipbalm off of table"}]} +{"id": "000000112216", "images": ["AURORA/data/something/frames/188913/first.jpg", "AURORA/data/something/frames/188913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy wheel in front of rubix cube"}]} +{"id": "000000112217", "images": ["AURORA/data/something/frames/161711/first.jpg", "AURORA/data/something/frames/161711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking box so that it falls over"}]} +{"id": "000000112218", "images": ["AURORA/data/something/frames/126217/first.jpg", "AURORA/data/something/frames/126217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug and glass so they collide with each other"}]} +{"id": "000000112219", "images": ["AURORA/data/something/frames/184814/first.jpg", "AURORA/data/something/frames/184814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000112220", "images": ["AURORA/data/something/frames/208684/first.jpg", "AURORA/data/something/frames/208684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing door"}]} +{"id": "000000112221", "images": ["AURORA/data/something/frames/82785/first.jpg", "AURORA/data/something/frames/82785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tissue box off of a table"}]} +{"id": "000000112222", "images": ["AURORA/data/something/frames/68032/first.jpg", "AURORA/data/something/frames/68032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening soda can"}]} +{"id": "000000112223", "images": ["AURORA/data/something/frames/139515/first.jpg", "AURORA/data/something/frames/139515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000112224", "images": ["AURORA/data/something/frames/144694/first.jpg", "AURORA/data/something/frames/144694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a phone"}]} +{"id": "000000112225", "images": ["AURORA/data/something/frames/156446/first.jpg", "AURORA/data/something/frames/156446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching mega block to mega block"}]} +{"id": "000000112226", "images": ["AURORA/data/something/frames/134501/first.jpg", "AURORA/data/something/frames/134501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of shoes without the stack collapsing"}]} +{"id": "000000112227", "images": ["AURORA/data/something/frames/192841/first.jpg", "AURORA/data/something/frames/192841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping trash can with trash over, so trash falls out"}]} +{"id": "000000112228", "images": ["AURORA/data/something/frames/205853/first.jpg", "AURORA/data/something/frames/205853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mouse with mug"}]} +{"id": "000000112229", "images": ["AURORA/data/something/frames/169931/first.jpg", "AURORA/data/something/frames/169931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of blocks without the stack collapsing"}]} +{"id": "000000112230", "images": ["AURORA/data/something/frames/36593/first.jpg", "AURORA/data/something/frames/36593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ramekin closer to ramekin"}]} +{"id": "000000112231", "images": ["AURORA/data/something/frames/189126/first.jpg", "AURORA/data/something/frames/189126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping candle over"}]} +{"id": "000000112232", "images": ["AURORA/data/something/frames/123552/first.jpg", "AURORA/data/something/frames/123552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into modelling clay"}]} +{"id": "000000112233", "images": ["AURORA/data/something/frames/211871/first.jpg", "AURORA/data/something/frames/211871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning book upside down"}]} +{"id": "000000112234", "images": ["AURORA/data/something/frames/31012/first.jpg", "AURORA/data/something/frames/31012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pillow off of bed"}]} +{"id": "000000112235", "images": ["AURORA/data/something/frames/22782/first.jpg", "AURORA/data/something/frames/22782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a card upright on the table, so it falls on its side"}]} +{"id": "000000112236", "images": ["AURORA/data/something/frames/30489/first.jpg", "AURORA/data/something/frames/30489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000112237", "images": ["AURORA/data/something/frames/28285/first.jpg", "AURORA/data/something/frames/28285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering teacup"}]} +{"id": "000000112238", "images": ["AURORA/data/something/frames/80475/first.jpg", "AURORA/data/something/frames/80475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping marker off of whiteboard"}]} +{"id": "000000112239", "images": ["AURORA/data/something/frames/120157/first.jpg", "AURORA/data/something/frames/120157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking salt shaker so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000112240", "images": ["AURORA/data/something/frames/28041/first.jpg", "AURORA/data/something/frames/28041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming lamp"}]} +{"id": "000000112241", "images": ["AURORA/data/something/frames/217373/first.jpg", "AURORA/data/something/frames/217373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing red dairy"}]} +{"id": "000000112242", "images": ["AURORA/data/something/frames/69584/first.jpg", "AURORA/data/something/frames/69584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping stapler next to rubix cube"}]} +{"id": "000000112243", "images": ["AURORA/data/something/frames/26489/first.jpg", "AURORA/data/something/frames/26489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering smartphone with recipe book"}]} +{"id": "000000112244", "images": ["AURORA/data/something/frames/72400/first.jpg", "AURORA/data/something/frames/72400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into a bowl, but missing so it spills next to it"}]} +{"id": "000000112245", "images": ["AURORA/data/something/frames/152222/first.jpg", "AURORA/data/something/frames/152222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting radio up completely without letting it drop down"}]} +{"id": "000000112246", "images": ["AURORA/data/something/frames/137772/first.jpg", "AURORA/data/something/frames/137772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail polish from left to right"}]} +{"id": "000000112247", "images": ["AURORA/data/something/frames/130173/first.jpg", "AURORA/data/something/frames/130173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue just a little bit"}]} +{"id": "000000112248", "images": ["AURORA/data/something/frames/119812/first.jpg", "AURORA/data/something/frames/119812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112249", "images": ["AURORA/data/something/frames/168638/first.jpg", "AURORA/data/something/frames/168638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen upright on the table, so it falls on its side"}]} +{"id": "000000112250", "images": ["AURORA/data/something/frames/140274/first.jpg", "AURORA/data/something/frames/140274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a tap"}]} +{"id": "000000112251", "images": ["AURORA/data/something/frames/73957/first.jpg", "AURORA/data/something/frames/73957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toothbrush on a surface"}]} +{"id": "000000112252", "images": ["AURORA/data/something/frames/66739/first.jpg", "AURORA/data/something/frames/66739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into socket"}]} +{"id": "000000112253", "images": ["AURORA/data/something/frames/99234/first.jpg", "AURORA/data/something/frames/99234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling diaper from left to right"}]} +{"id": "000000112254", "images": ["AURORA/data/something/frames/142212/first.jpg", "AURORA/data/something/frames/142212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black pencil sharpner with screw driver"}]} +{"id": "000000112255", "images": ["AURORA/data/something/frames/133665/first.jpg", "AURORA/data/something/frames/133665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling can from behind of sofa"}]} +{"id": "000000112256", "images": ["AURORA/data/something/frames/27009/first.jpg", "AURORA/data/something/frames/27009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting matchbox into mug"}]} +{"id": "000000112257", "images": ["AURORA/data/something/frames/105273/first.jpg", "AURORA/data/something/frames/105273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keyboard up"}]} +{"id": "000000112258", "images": ["AURORA/data/something/frames/122910/first.jpg", "AURORA/data/something/frames/122910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing wooden box"}]} +{"id": "000000112259", "images": ["AURORA/data/something/frames/201889/first.jpg", "AURORA/data/something/frames/201889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box in front of purse"}]} +{"id": "000000112260", "images": ["AURORA/data/something/frames/132413/first.jpg", "AURORA/data/something/frames/132413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper underneath book"}]} +{"id": "000000112261", "images": ["AURORA/data/something/frames/83984/first.jpg", "AURORA/data/something/frames/83984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112262", "images": ["AURORA/data/something/frames/69393/first.jpg", "AURORA/data/something/frames/69393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a onion from a cover"}]} +{"id": "000000112263", "images": ["AURORA/data/something/frames/308/first.jpg", "AURORA/data/something/frames/308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112264", "images": ["AURORA/data/something/frames/103563/first.jpg", "AURORA/data/something/frames/103563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key down"}]} +{"id": "000000112265", "images": ["AURORA/data/something/frames/888/first.jpg", "AURORA/data/something/frames/888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading honey onto plate"}]} +{"id": "000000112266", "images": ["AURORA/data/something/frames/158964/first.jpg", "AURORA/data/something/frames/158964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending straw so that it deforms"}]} +{"id": "000000112267", "images": ["AURORA/data/something/frames/103136/first.jpg", "AURORA/data/something/frames/103136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning body spray upside down"}]} +{"id": "000000112268", "images": ["AURORA/data/something/frames/43350/first.jpg", "AURORA/data/something/frames/43350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000112269", "images": ["AURORA/data/something/frames/186632/first.jpg", "AURORA/data/something/frames/186632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a cupboard"}]} +{"id": "000000112270", "images": ["AURORA/data/something/frames/153174/first.jpg", "AURORA/data/something/frames/153174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a feeding bottle in front of camera"}]} +{"id": "000000112271", "images": ["AURORA/data/something/frames/148014/first.jpg", "AURORA/data/something/frames/148014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spring and stapler on the table"}]} +{"id": "000000112272", "images": ["AURORA/data/something/frames/178554/first.jpg", "AURORA/data/something/frames/178554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hairbrush"}]} +{"id": "000000112273", "images": ["AURORA/data/something/frames/180728/first.jpg", "AURORA/data/something/frames/180728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors into drawer"}]} +{"id": "000000112274", "images": ["AURORA/data/something/frames/97039/first.jpg", "AURORA/data/something/frames/97039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming pictures"}]} +{"id": "000000112275", "images": ["AURORA/data/something/frames/154372/first.jpg", "AURORA/data/something/frames/154372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting divide into box"}]} +{"id": "000000112276", "images": ["AURORA/data/something/frames/196092/first.jpg", "AURORA/data/something/frames/196092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing wallet"}]} +{"id": "000000112277", "images": ["AURORA/data/something/frames/179523/first.jpg", "AURORA/data/something/frames/179523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking tube so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000112278", "images": ["AURORA/data/something/frames/31045/first.jpg", "AURORA/data/something/frames/31045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a red pencil with a piece of paper"}]} +{"id": "000000112279", "images": ["AURORA/data/something/frames/119257/first.jpg", "AURORA/data/something/frames/119257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking the lipstick out of the purse"}]} +{"id": "000000112280", "images": ["AURORA/data/something/frames/98917/first.jpg", "AURORA/data/something/frames/98917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball of mouse"}]} +{"id": "000000112281", "images": ["AURORA/data/something/frames/158789/first.jpg", "AURORA/data/something/frames/158789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into mug, but missing so it spills next to it"}]} +{"id": "000000112282", "images": ["AURORA/data/something/frames/105173/first.jpg", "AURORA/data/something/frames/105173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a pencil"}]} +{"id": "000000112283", "images": ["AURORA/data/something/frames/91241/first.jpg", "AURORA/data/something/frames/91241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle cap from left to right"}]} +{"id": "000000112284", "images": ["AURORA/data/something/frames/200417/first.jpg", "AURORA/data/something/frames/200417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a fan from right to left"}]} +{"id": "000000112285", "images": ["AURORA/data/something/frames/133738/first.jpg", "AURORA/data/something/frames/133738/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving black play cards up"}]} +{"id": "000000112286", "images": ["AURORA/data/something/frames/182118/first.jpg", "AURORA/data/something/frames/182118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from right to left"}]} +{"id": "000000112287", "images": ["AURORA/data/something/frames/25013/first.jpg", "AURORA/data/something/frames/25013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting three blocks onto pillow"}]} +{"id": "000000112288", "images": ["AURORA/data/something/frames/154714/first.jpg", "AURORA/data/something/frames/154714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting egg upright on the table, so it falls on its side"}]} +{"id": "000000112289", "images": ["AURORA/data/something/frames/200099/first.jpg", "AURORA/data/something/frames/200099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lid behind box"}]} +{"id": "000000112290", "images": ["AURORA/data/something/frames/82959/first.jpg", "AURORA/data/something/frames/82959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a dish towel"}]} +{"id": "000000112291", "images": ["AURORA/data/something/frames/126933/first.jpg", "AURORA/data/something/frames/126933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning pen upside down"}]} +{"id": "000000112292", "images": ["AURORA/data/something/frames/210563/first.jpg", "AURORA/data/something/frames/210563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper underneath tablet"}]} +{"id": "000000112293", "images": ["AURORA/data/something/frames/196448/first.jpg", "AURORA/data/something/frames/196448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail paint remover from left to right"}]} +{"id": "000000112294", "images": ["AURORA/data/something/frames/18814/first.jpg", "AURORA/data/something/frames/18814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering coin with paper"}]} +{"id": "000000112295", "images": ["AURORA/data/something/frames/47838/first.jpg", "AURORA/data/something/frames/47838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg next to an envelope"}]} +{"id": "000000112296", "images": ["AURORA/data/something/frames/80909/first.jpg", "AURORA/data/something/frames/80909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hammer behind couch"}]} +{"id": "000000112297", "images": ["AURORA/data/something/frames/174093/first.jpg", "AURORA/data/something/frames/174093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and spoon closer to each other"}]} +{"id": "000000112298", "images": ["AURORA/data/something/frames/145648/first.jpg", "AURORA/data/something/frames/145648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming books"}]} +{"id": "000000112299", "images": ["AURORA/data/something/frames/67036/first.jpg", "AURORA/data/something/frames/67036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting mug with cable"}]} +{"id": "000000112300", "images": ["AURORA/data/something/frames/60895/first.jpg", "AURORA/data/something/frames/60895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a stuffed animal off of a couch"}]} +{"id": "000000112301", "images": ["AURORA/data/something/frames/47614/first.jpg", "AURORA/data/something/frames/47614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of glass jar"}]} +{"id": "000000112302", "images": ["AURORA/data/something/frames/219934/first.jpg", "AURORA/data/something/frames/219934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping rice up with spoon"}]} +{"id": "000000112303", "images": ["AURORA/data/something/frames/83595/first.jpg", "AURORA/data/something/frames/83595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking muffin out of bin"}]} +{"id": "000000112304", "images": ["AURORA/data/something/frames/99298/first.jpg", "AURORA/data/something/frames/99298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling papers up"}]} +{"id": "000000112305", "images": ["AURORA/data/something/frames/87436/first.jpg", "AURORA/data/something/frames/87436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spoon from right to left"}]} +{"id": "000000112306", "images": ["AURORA/data/something/frames/42282/first.jpg", "AURORA/data/something/frames/42282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys into drawer"}]} +{"id": "000000112307", "images": ["AURORA/data/something/frames/169352/first.jpg", "AURORA/data/something/frames/169352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book up"}]} +{"id": "000000112308", "images": ["AURORA/data/something/frames/194764/first.jpg", "AURORA/data/something/frames/194764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000112309", "images": ["AURORA/data/something/frames/34597/first.jpg", "AURORA/data/something/frames/34597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming black hat"}]} +{"id": "000000112310", "images": ["AURORA/data/something/frames/195603/first.jpg", "AURORA/data/something/frames/195603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of ceramic jar"}]} +{"id": "000000112311", "images": ["AURORA/data/something/frames/13187/first.jpg", "AURORA/data/something/frames/13187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cup with cloth"}]} +{"id": "000000112312", "images": ["AURORA/data/something/frames/196741/first.jpg", "AURORA/data/something/frames/196741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling wine onto a plate"}]} +{"id": "000000112313", "images": ["AURORA/data/something/frames/65035/first.jpg", "AURORA/data/something/frames/65035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting peeler, keychain and mobile on the table"}]} +{"id": "000000112314", "images": ["AURORA/data/something/frames/103776/first.jpg", "AURORA/data/something/frames/103776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112315", "images": ["AURORA/data/something/frames/195531/first.jpg", "AURORA/data/something/frames/195531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy car onto ramp"}]} +{"id": "000000112316", "images": ["AURORA/data/something/frames/19011/first.jpg", "AURORA/data/something/frames/19011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of tablet without letting it drop down"}]} +{"id": "000000112317", "images": ["AURORA/data/something/frames/54567/first.jpg", "AURORA/data/something/frames/54567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a paper to a wall"}]} +{"id": "000000112318", "images": ["AURORA/data/something/frames/59030/first.jpg", "AURORA/data/something/frames/59030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk out of cup"}]} +{"id": "000000112319", "images": ["AURORA/data/something/frames/103475/first.jpg", "AURORA/data/something/frames/103475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler up"}]} +{"id": "000000112320", "images": ["AURORA/data/something/frames/195913/first.jpg", "AURORA/data/something/frames/195913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a small container from left to right"}]} +{"id": "000000112321", "images": ["AURORA/data/something/frames/128896/first.jpg", "AURORA/data/something/frames/128896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling dessert sprinkles onto a piece of pie."}]} +{"id": "000000112322", "images": ["AURORA/data/something/frames/91013/first.jpg", "AURORA/data/something/frames/91013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a pen"}]} +{"id": "000000112323", "images": ["AURORA/data/something/frames/113236/first.jpg", "AURORA/data/something/frames/113236/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup away from the camera"}]} +{"id": "000000112324", "images": ["AURORA/data/something/frames/204394/first.jpg", "AURORA/data/something/frames/204394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mobile phone upside down"}]} +{"id": "000000112325", "images": ["AURORA/data/something/frames/110208/first.jpg", "AURORA/data/something/frames/110208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying lamp on the table on its side, not upright"}]} +{"id": "000000112326", "images": ["AURORA/data/something/frames/33688/first.jpg", "AURORA/data/something/frames/33688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote control, wallet and mechanical pencil on the table"}]} +{"id": "000000112327", "images": ["AURORA/data/something/frames/51970/first.jpg", "AURORA/data/something/frames/51970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening water tank"}]} +{"id": "000000112328", "images": ["AURORA/data/something/frames/5226/first.jpg", "AURORA/data/something/frames/5226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering wood spoon"}]} +{"id": "000000112329", "images": ["AURORA/data/something/frames/59701/first.jpg", "AURORA/data/something/frames/59701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving smarthphone and book closer to each other"}]} +{"id": "000000112330", "images": ["AURORA/data/something/frames/55716/first.jpg", "AURORA/data/something/frames/55716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pencil until it breaks"}]} +{"id": "000000112331", "images": ["AURORA/data/something/frames/143265/first.jpg", "AURORA/data/something/frames/143265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green water bottle from right to left"}]} +{"id": "000000112332", "images": ["AURORA/data/something/frames/204770/first.jpg", "AURORA/data/something/frames/204770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tearing tissue into two pieces"}]} +{"id": "000000112333", "images": ["AURORA/data/something/frames/4761/first.jpg", "AURORA/data/something/frames/4761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 ink bottles"}]} +{"id": "000000112334", "images": ["AURORA/data/something/frames/152138/first.jpg", "AURORA/data/something/frames/152138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubber onto table"}]} +{"id": "000000112335", "images": ["AURORA/data/something/frames/207247/first.jpg", "AURORA/data/something/frames/207247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cup on the table on its side, not upright"}]} +{"id": "000000112336", "images": ["AURORA/data/something/frames/214128/first.jpg", "AURORA/data/something/frames/214128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of box"}]} +{"id": "000000112337", "images": ["AURORA/data/something/frames/134649/first.jpg", "AURORA/data/something/frames/134649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering lotion tube with paper"}]} +{"id": "000000112338", "images": ["AURORA/data/something/frames/72451/first.jpg", "AURORA/data/something/frames/72451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging auxiliary cord into speaker"}]} +{"id": "000000112339", "images": ["AURORA/data/something/frames/122071/first.jpg", "AURORA/data/something/frames/122071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling purse from left to right"}]} +{"id": "000000112340", "images": ["AURORA/data/something/frames/55781/first.jpg", "AURORA/data/something/frames/55781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white book marker from left to right"}]} +{"id": "000000112341", "images": ["AURORA/data/something/frames/94975/first.jpg", "AURORA/data/something/frames/94975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the purse upside down"}]} +{"id": "000000112342", "images": ["AURORA/data/something/frames/218589/first.jpg", "AURORA/data/something/frames/218589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112343", "images": ["AURORA/data/something/frames/114783/first.jpg", "AURORA/data/something/frames/114783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book in front of bag"}]} +{"id": "000000112344", "images": ["AURORA/data/something/frames/6039/first.jpg", "AURORA/data/something/frames/6039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy car from right to left"}]} +{"id": "000000112345", "images": ["AURORA/data/something/frames/15065/first.jpg", "AURORA/data/something/frames/15065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112346", "images": ["AURORA/data/something/frames/174755/first.jpg", "AURORA/data/something/frames/174755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tie so that it deforms"}]} +{"id": "000000112347", "images": ["AURORA/data/something/frames/180180/first.jpg", "AURORA/data/something/frames/180180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pen colliding with cutter and both come to a halt"}]} +{"id": "000000112348", "images": ["AURORA/data/something/frames/143971/first.jpg", "AURORA/data/something/frames/143971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing door"}]} +{"id": "000000112349", "images": ["AURORA/data/something/frames/65016/first.jpg", "AURORA/data/something/frames/65016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cream tube"}]} +{"id": "000000112350", "images": ["AURORA/data/something/frames/90817/first.jpg", "AURORA/data/something/frames/90817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching tyre with your camera"}]} +{"id": "000000112351", "images": ["AURORA/data/something/frames/123961/first.jpg", "AURORA/data/something/frames/123961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil onto stapler"}]} +{"id": "000000112352", "images": ["AURORA/data/something/frames/74258/first.jpg", "AURORA/data/something/frames/74258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding blanket"}]} +{"id": "000000112353", "images": ["AURORA/data/something/frames/88816/first.jpg", "AURORA/data/something/frames/88816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000112354", "images": ["AURORA/data/something/frames/202337/first.jpg", "AURORA/data/something/frames/202337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug"}]} +{"id": "000000112355", "images": ["AURORA/data/something/frames/92833/first.jpg", "AURORA/data/something/frames/92833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing telephone from left to right"}]} +{"id": "000000112356", "images": ["AURORA/data/something/frames/8959/first.jpg", "AURORA/data/something/frames/8959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pen"}]} +{"id": "000000112357", "images": ["AURORA/data/something/frames/63719/first.jpg", "AURORA/data/something/frames/63719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking sunglasses up"}]} +{"id": "000000112358", "images": ["AURORA/data/something/frames/158781/first.jpg", "AURORA/data/something/frames/158781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a wrapper into the garbage"}]} +{"id": "000000112359", "images": ["AURORA/data/something/frames/220773/first.jpg", "AURORA/data/something/frames/220773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into charger"}]} +{"id": "000000112360", "images": ["AURORA/data/something/frames/164036/first.jpg", "AURORA/data/something/frames/164036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a lipstick from right to left"}]} +{"id": "000000112361", "images": ["AURORA/data/something/frames/161282/first.jpg", "AURORA/data/something/frames/161282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pot"}]} +{"id": "000000112362", "images": ["AURORA/data/something/frames/67333/first.jpg", "AURORA/data/something/frames/67333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000112363", "images": ["AURORA/data/something/frames/153746/first.jpg", "AURORA/data/something/frames/153746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping lotion tube over"}]} +{"id": "000000112364", "images": ["AURORA/data/something/frames/16654/first.jpg", "AURORA/data/something/frames/16654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a scrunchie off of a pen"}]} +{"id": "000000112365", "images": ["AURORA/data/something/frames/69817/first.jpg", "AURORA/data/something/frames/69817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook onto notebook"}]} +{"id": "000000112366", "images": ["AURORA/data/something/frames/207574/first.jpg", "AURORA/data/something/frames/207574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting down another clementine"}]} +{"id": "000000112367", "images": ["AURORA/data/something/frames/207000/first.jpg", "AURORA/data/something/frames/207000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the body of a bottle"}]} +{"id": "000000112368", "images": ["AURORA/data/something/frames/13717/first.jpg", "AURORA/data/something/frames/13717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping formula up with measuring scoop"}]} +{"id": "000000112369", "images": ["AURORA/data/something/frames/62126/first.jpg", "AURORA/data/something/frames/62126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a closed disposable water bottle with a can of beans"}]} +{"id": "000000112370", "images": ["AURORA/data/something/frames/94398/first.jpg", "AURORA/data/something/frames/94398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving screw down"}]} +{"id": "000000112371", "images": ["AURORA/data/something/frames/86407/first.jpg", "AURORA/data/something/frames/86407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and ball away from each other"}]} +{"id": "000000112372", "images": ["AURORA/data/something/frames/123478/first.jpg", "AURORA/data/something/frames/123478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hair clip, toy idol and battery on the table"}]} +{"id": "000000112373", "images": ["AURORA/data/something/frames/211586/first.jpg", "AURORA/data/something/frames/211586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon closer to stapler"}]} +{"id": "000000112374", "images": ["AURORA/data/something/frames/55874/first.jpg", "AURORA/data/something/frames/55874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the back cover of a remote control"}]} +{"id": "000000112375", "images": ["AURORA/data/something/frames/77668/first.jpg", "AURORA/data/something/frames/77668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming scotch tape"}]} +{"id": "000000112376", "images": ["AURORA/data/something/frames/79321/first.jpg", "AURORA/data/something/frames/79321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening book"}]} +{"id": "000000112377", "images": ["AURORA/data/something/frames/16665/first.jpg", "AURORA/data/something/frames/16665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a penny with a tissue"}]} +{"id": "000000112378", "images": ["AURORA/data/something/frames/70008/first.jpg", "AURORA/data/something/frames/70008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing joystick with a scissor"}]} +{"id": "000000112379", "images": ["AURORA/data/something/frames/182537/first.jpg", "AURORA/data/something/frames/182537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with bottle on it"}]} +{"id": "000000112380", "images": ["AURORA/data/something/frames/90592/first.jpg", "AURORA/data/something/frames/90592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a bowl"}]} +{"id": "000000112381", "images": ["AURORA/data/something/frames/54649/first.jpg", "AURORA/data/something/frames/54649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a book onto a bed"}]} +{"id": "000000112382", "images": ["AURORA/data/something/frames/69453/first.jpg", "AURORA/data/something/frames/69453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping die up with spoon"}]} +{"id": "000000112383", "images": ["AURORA/data/something/frames/99183/first.jpg", "AURORA/data/something/frames/99183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler and puncher closer to each other"}]} +{"id": "000000112384", "images": ["AURORA/data/something/frames/92536/first.jpg", "AURORA/data/something/frames/92536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000112385", "images": ["AURORA/data/something/frames/161588/first.jpg", "AURORA/data/something/frames/161588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000112386", "images": ["AURORA/data/something/frames/7474/first.jpg", "AURORA/data/something/frames/7474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup from coaster"}]} +{"id": "000000112387", "images": ["AURORA/data/something/frames/165846/first.jpg", "AURORA/data/something/frames/165846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000112388", "images": ["AURORA/data/something/frames/193958/first.jpg", "AURORA/data/something/frames/193958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: red marker colliding with blue marker and both are being deflected"}]} +{"id": "000000112389", "images": ["AURORA/data/something/frames/27512/first.jpg", "AURORA/data/something/frames/27512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber so that it gets stretched"}]} +{"id": "000000112390", "images": ["AURORA/data/something/frames/188276/first.jpg", "AURORA/data/something/frames/188276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cigarette lighter with cookie box lid"}]} +{"id": "000000112391", "images": ["AURORA/data/something/frames/204623/first.jpg", "AURORA/data/something/frames/204623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle in front of tennis ball"}]} +{"id": "000000112392", "images": ["AURORA/data/something/frames/68903/first.jpg", "AURORA/data/something/frames/68903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending candle until it breaks"}]} +{"id": "000000112393", "images": ["AURORA/data/something/frames/75628/first.jpg", "AURORA/data/something/frames/75628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112394", "images": ["AURORA/data/something/frames/81852/first.jpg", "AURORA/data/something/frames/81852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing receipt into jar"}]} +{"id": "000000112395", "images": ["AURORA/data/something/frames/157454/first.jpg", "AURORA/data/something/frames/157454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying a pillow in a blanket"}]} +{"id": "000000112396", "images": ["AURORA/data/something/frames/22937/first.jpg", "AURORA/data/something/frames/22937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 4 books onto table"}]} +{"id": "000000112397", "images": ["AURORA/data/something/frames/198806/first.jpg", "AURORA/data/something/frames/198806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cellphone up"}]} +{"id": "000000112398", "images": ["AURORA/data/something/frames/135586/first.jpg", "AURORA/data/something/frames/135586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass and keys on the table"}]} +{"id": "000000112399", "images": ["AURORA/data/something/frames/69392/first.jpg", "AURORA/data/something/frames/69392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle onto stool"}]} +{"id": "000000112400", "images": ["AURORA/data/something/frames/149338/first.jpg", "AURORA/data/something/frames/149338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and cup closer to each other"}]} +{"id": "000000112401", "images": ["AURORA/data/something/frames/201811/first.jpg", "AURORA/data/something/frames/201811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottle"}]} +{"id": "000000112402", "images": ["AURORA/data/something/frames/199206/first.jpg", "AURORA/data/something/frames/199206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black disc case from left to right"}]} +{"id": "000000112403", "images": ["AURORA/data/something/frames/110594/first.jpg", "AURORA/data/something/frames/110594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shaver from left to right"}]} +{"id": "000000112404", "images": ["AURORA/data/something/frames/24623/first.jpg", "AURORA/data/something/frames/24623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cufflinks with a bowl"}]} +{"id": "000000112405", "images": ["AURORA/data/something/frames/64267/first.jpg", "AURORA/data/something/frames/64267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book onto can"}]} +{"id": "000000112406", "images": ["AURORA/data/something/frames/32654/first.jpg", "AURORA/data/something/frames/32654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving figurine across a surface without it falling down"}]} +{"id": "000000112407", "images": ["AURORA/data/something/frames/217678/first.jpg", "AURORA/data/something/frames/217678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000112408", "images": ["AURORA/data/something/frames/71008/first.jpg", "AURORA/data/something/frames/71008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking nail polish so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000112409", "images": ["AURORA/data/something/frames/94380/first.jpg", "AURORA/data/something/frames/94380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting waterbottle"}]} +{"id": "000000112410", "images": ["AURORA/data/something/frames/77208/first.jpg", "AURORA/data/something/frames/77208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling box from left to right"}]} +{"id": "000000112411", "images": ["AURORA/data/something/frames/136909/first.jpg", "AURORA/data/something/frames/136909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending ruler so that it deforms"}]} +{"id": "000000112412", "images": ["AURORA/data/something/frames/174077/first.jpg", "AURORA/data/something/frames/174077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote with cloth"}]} +{"id": "000000112413", "images": ["AURORA/data/something/frames/28931/first.jpg", "AURORA/data/something/frames/28931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking fan pole so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000112414", "images": ["AURORA/data/something/frames/161387/first.jpg", "AURORA/data/something/frames/161387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tv remote"}]} +{"id": "000000112415", "images": ["AURORA/data/something/frames/46164/first.jpg", "AURORA/data/something/frames/46164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sun glasses into case"}]} +{"id": "000000112416", "images": ["AURORA/data/something/frames/204706/first.jpg", "AURORA/data/something/frames/204706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112417", "images": ["AURORA/data/something/frames/42068/first.jpg", "AURORA/data/something/frames/42068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel into two pieces"}]} +{"id": "000000112418", "images": ["AURORA/data/something/frames/5709/first.jpg", "AURORA/data/something/frames/5709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000112419", "images": ["AURORA/data/something/frames/153520/first.jpg", "AURORA/data/something/frames/153520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glasses case from left to right"}]} +{"id": "000000112420", "images": ["AURORA/data/something/frames/175280/first.jpg", "AURORA/data/something/frames/175280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar on the edge of box so it is not supported and falls down"}]} +{"id": "000000112421", "images": ["AURORA/data/something/frames/1489/first.jpg", "AURORA/data/something/frames/1489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a candle with a key"}]} +{"id": "000000112422", "images": ["AURORA/data/something/frames/208897/first.jpg", "AURORA/data/something/frames/208897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting notebook with mobile phone on it"}]} +{"id": "000000112423", "images": ["AURORA/data/something/frames/173377/first.jpg", "AURORA/data/something/frames/173377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin"}]} +{"id": "000000112424", "images": ["AURORA/data/something/frames/12565/first.jpg", "AURORA/data/something/frames/12565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen behind watch"}]} +{"id": "000000112425", "images": ["AURORA/data/something/frames/201860/first.jpg", "AURORA/data/something/frames/201860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a speaker over"}]} +{"id": "000000112426", "images": ["AURORA/data/something/frames/69324/first.jpg", "AURORA/data/something/frames/69324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling scissor from left to right"}]} +{"id": "000000112427", "images": ["AURORA/data/something/frames/147227/first.jpg", "AURORA/data/something/frames/147227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling drawer out of washing machine"}]} +{"id": "000000112428", "images": ["AURORA/data/something/frames/128777/first.jpg", "AURORA/data/something/frames/128777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming small book"}]} +{"id": "000000112429", "images": ["AURORA/data/something/frames/180703/first.jpg", "AURORA/data/something/frames/180703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching car with your camera"}]} +{"id": "000000112430", "images": ["AURORA/data/something/frames/199977/first.jpg", "AURORA/data/something/frames/199977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming pill bottle"}]} +{"id": "000000112431", "images": ["AURORA/data/something/frames/133702/first.jpg", "AURORA/data/something/frames/133702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking nailpolish up"}]} +{"id": "000000112432", "images": ["AURORA/data/something/frames/46397/first.jpg", "AURORA/data/something/frames/46397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler with a scissor"}]} +{"id": "000000112433", "images": ["AURORA/data/something/frames/159589/first.jpg", "AURORA/data/something/frames/159589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming small book"}]} +{"id": "000000112434", "images": ["AURORA/data/something/frames/23170/first.jpg", "AURORA/data/something/frames/23170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lever of hole punch"}]} +{"id": "000000112435", "images": ["AURORA/data/something/frames/190404/first.jpg", "AURORA/data/something/frames/190404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting calculator with pink coloured hair clip on it"}]} +{"id": "000000112436", "images": ["AURORA/data/something/frames/155078/first.jpg", "AURORA/data/something/frames/155078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a candle and a candle closer to each other"}]} +{"id": "000000112437", "images": ["AURORA/data/something/frames/51959/first.jpg", "AURORA/data/something/frames/51959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling toothbrushes up"}]} +{"id": "000000112438", "images": ["AURORA/data/something/frames/17226/first.jpg", "AURORA/data/something/frames/17226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 napkins"}]} +{"id": "000000112439", "images": ["AURORA/data/something/frames/175036/first.jpg", "AURORA/data/something/frames/175036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000112440", "images": ["AURORA/data/something/frames/72216/first.jpg", "AURORA/data/something/frames/72216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bag so that it almost falls off but doesn't"}]} +{"id": "000000112441", "images": ["AURORA/data/something/frames/74960/first.jpg", "AURORA/data/something/frames/74960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling gymnastic bands from left to right"}]} +{"id": "000000112442", "images": ["AURORA/data/something/frames/117452/first.jpg", "AURORA/data/something/frames/117452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope just a little bit"}]} +{"id": "000000112443", "images": ["AURORA/data/something/frames/203338/first.jpg", "AURORA/data/something/frames/203338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note up"}]} +{"id": "000000112444", "images": ["AURORA/data/something/frames/131553/first.jpg", "AURORA/data/something/frames/131553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bowl down"}]} +{"id": "000000112445", "images": ["AURORA/data/something/frames/61122/first.jpg", "AURORA/data/something/frames/61122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a pen"}]} +{"id": "000000112446", "images": ["AURORA/data/something/frames/102724/first.jpg", "AURORA/data/something/frames/102724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing piece of paper just a little bit"}]} +{"id": "000000112447", "images": ["AURORA/data/something/frames/62808/first.jpg", "AURORA/data/something/frames/62808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112448", "images": ["AURORA/data/something/frames/156897/first.jpg", "AURORA/data/something/frames/156897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting shoe"}]} +{"id": "000000112449", "images": ["AURORA/data/something/frames/70876/first.jpg", "AURORA/data/something/frames/70876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: orange being deflected from wascher"}]} +{"id": "000000112450", "images": ["AURORA/data/something/frames/125341/first.jpg", "AURORA/data/something/frames/125341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pencil case over"}]} +{"id": "000000112451", "images": ["AURORA/data/something/frames/51349/first.jpg", "AURORA/data/something/frames/51349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water bottle upright on the table"}]} +{"id": "000000112452", "images": ["AURORA/data/something/frames/179941/first.jpg", "AURORA/data/something/frames/179941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting four screws onto magnetic tray"}]} +{"id": "000000112453", "images": ["AURORA/data/something/frames/114937/first.jpg", "AURORA/data/something/frames/114937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving can away from funnel"}]} +{"id": "000000112454", "images": ["AURORA/data/something/frames/127517/first.jpg", "AURORA/data/something/frames/127517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a bowl with a cloth"}]} +{"id": "000000112455", "images": ["AURORA/data/something/frames/207800/first.jpg", "AURORA/data/something/frames/207800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and bottle closer to each other"}]} +{"id": "000000112456", "images": ["AURORA/data/something/frames/30972/first.jpg", "AURORA/data/something/frames/30972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone"}]} +{"id": "000000112457", "images": ["AURORA/data/something/frames/101032/first.jpg", "AURORA/data/something/frames/101032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass underneath a hat"}]} +{"id": "000000112458", "images": ["AURORA/data/something/frames/45776/first.jpg", "AURORA/data/something/frames/45776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a chair with a blanket"}]} +{"id": "000000112459", "images": ["AURORA/data/something/frames/196334/first.jpg", "AURORA/data/something/frames/196334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair band next to tablet box"}]} +{"id": "000000112460", "images": ["AURORA/data/something/frames/99863/first.jpg", "AURORA/data/something/frames/99863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112461", "images": ["AURORA/data/something/frames/13168/first.jpg", "AURORA/data/something/frames/13168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing colorful scarf from right to left"}]} +{"id": "000000112462", "images": ["AURORA/data/something/frames/78718/first.jpg", "AURORA/data/something/frames/78718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling wipe out of box"}]} +{"id": "000000112463", "images": ["AURORA/data/something/frames/80006/first.jpg", "AURORA/data/something/frames/80006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping bottle cap off of table"}]} +{"id": "000000112464", "images": ["AURORA/data/something/frames/89840/first.jpg", "AURORA/data/something/frames/89840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying glass bottle on the table on its side, not upright"}]} +{"id": "000000112465", "images": ["AURORA/data/something/frames/134316/first.jpg", "AURORA/data/something/frames/134316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) body of stethescope"}]} +{"id": "000000112466", "images": ["AURORA/data/something/frames/182267/first.jpg", "AURORA/data/something/frames/182267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing plastic into two pieces"}]} +{"id": "000000112467", "images": ["AURORA/data/something/frames/132986/first.jpg", "AURORA/data/something/frames/132986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from person with your camera"}]} +{"id": "000000112468", "images": ["AURORA/data/something/frames/158027/first.jpg", "AURORA/data/something/frames/158027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding calendar"}]} +{"id": "000000112469", "images": ["AURORA/data/something/frames/216706/first.jpg", "AURORA/data/something/frames/216706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hat, box and glasses on the table"}]} +{"id": "000000112470", "images": ["AURORA/data/something/frames/154658/first.jpg", "AURORA/data/something/frames/154658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pens"}]} +{"id": "000000112471", "images": ["AURORA/data/something/frames/145892/first.jpg", "AURORA/data/something/frames/145892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the arm of a doll"}]} +{"id": "000000112472", "images": ["AURORA/data/something/frames/180510/first.jpg", "AURORA/data/something/frames/180510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen away from a spoon"}]} +{"id": "000000112473", "images": ["AURORA/data/something/frames/47351/first.jpg", "AURORA/data/something/frames/47351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding t-shirt"}]} +{"id": "000000112474", "images": ["AURORA/data/something/frames/125602/first.jpg", "AURORA/data/something/frames/125602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hairclip on a surface"}]} +{"id": "000000112475", "images": ["AURORA/data/something/frames/192997/first.jpg", "AURORA/data/something/frames/192997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000112476", "images": ["AURORA/data/something/frames/79647/first.jpg", "AURORA/data/something/frames/79647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse on a surface"}]} +{"id": "000000112477", "images": ["AURORA/data/something/frames/199158/first.jpg", "AURORA/data/something/frames/199158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening clothes dryer"}]} +{"id": "000000112478", "images": ["AURORA/data/something/frames/10647/first.jpg", "AURORA/data/something/frames/10647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic tin, watch and clip on the table"}]} +{"id": "000000112479", "images": ["AURORA/data/something/frames/115444/first.jpg", "AURORA/data/something/frames/115444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a wallet with a medicine bottle on it"}]} +{"id": "000000112480", "images": ["AURORA/data/something/frames/200114/first.jpg", "AURORA/data/something/frames/200114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from painting with your camera"}]} +{"id": "000000112481", "images": ["AURORA/data/something/frames/109434/first.jpg", "AURORA/data/something/frames/109434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler away from duster"}]} +{"id": "000000112482", "images": ["AURORA/data/something/frames/42322/first.jpg", "AURORA/data/something/frames/42322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tissue box off of table"}]} +{"id": "000000112483", "images": ["AURORA/data/something/frames/141962/first.jpg", "AURORA/data/something/frames/141962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving magnet closer to magnet"}]} +{"id": "000000112484", "images": ["AURORA/data/something/frames/165808/first.jpg", "AURORA/data/something/frames/165808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plastic case up completely without letting it drop down"}]} +{"id": "000000112485", "images": ["AURORA/data/something/frames/19406/first.jpg", "AURORA/data/something/frames/19406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a glove up"}]} +{"id": "000000112486", "images": ["AURORA/data/something/frames/175215/first.jpg", "AURORA/data/something/frames/175215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tailoring tap with cloth"}]} +{"id": "000000112487", "images": ["AURORA/data/something/frames/105727/first.jpg", "AURORA/data/something/frames/105727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen cap onto pen"}]} +{"id": "000000112488", "images": ["AURORA/data/something/frames/153038/first.jpg", "AURORA/data/something/frames/153038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000112489", "images": ["AURORA/data/something/frames/32836/first.jpg", "AURORA/data/something/frames/32836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a pillow"}]} +{"id": "000000112490", "images": ["AURORA/data/something/frames/63388/first.jpg", "AURORA/data/something/frames/63388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a napkin into two pieces"}]} +{"id": "000000112491", "images": ["AURORA/data/something/frames/215516/first.jpg", "AURORA/data/something/frames/215516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lotion into a cup"}]} +{"id": "000000112492", "images": ["AURORA/data/something/frames/1268/first.jpg", "AURORA/data/something/frames/1268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112493", "images": ["AURORA/data/something/frames/48774/first.jpg", "AURORA/data/something/frames/48774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming colorful scarf"}]} +{"id": "000000112494", "images": ["AURORA/data/something/frames/86665/first.jpg", "AURORA/data/something/frames/86665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pencil colliding with a pack of tissu and both come to a halt"}]} +{"id": "000000112495", "images": ["AURORA/data/something/frames/40673/first.jpg", "AURORA/data/something/frames/40673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into bedsheet"}]} +{"id": "000000112496", "images": ["AURORA/data/something/frames/190378/first.jpg", "AURORA/data/something/frames/190378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving leaf down"}]} +{"id": "000000112497", "images": ["AURORA/data/something/frames/9701/first.jpg", "AURORA/data/something/frames/9701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000112498", "images": ["AURORA/data/something/frames/187933/first.jpg", "AURORA/data/something/frames/187933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wristband up"}]} +{"id": "000000112499", "images": ["AURORA/data/something/frames/123812/first.jpg", "AURORA/data/something/frames/123812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) sponge wet until water comes out"}]} +{"id": "000000112500", "images": ["AURORA/data/something/frames/24965/first.jpg", "AURORA/data/something/frames/24965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a doll out of a bag"}]} +{"id": "000000112501", "images": ["AURORA/data/something/frames/15579/first.jpg", "AURORA/data/something/frames/15579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a snowman so that it falls over"}]} +{"id": "000000112502", "images": ["AURORA/data/something/frames/67970/first.jpg", "AURORA/data/something/frames/67970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving container and container so they collide with each other"}]} +{"id": "000000112503", "images": ["AURORA/data/something/frames/132151/first.jpg", "AURORA/data/something/frames/132151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing advent calendar"}]} +{"id": "000000112504", "images": ["AURORA/data/something/frames/74431/first.jpg", "AURORA/data/something/frames/74431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into phone charger"}]} +{"id": "000000112505", "images": ["AURORA/data/something/frames/101676/first.jpg", "AURORA/data/something/frames/101676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable of charger"}]} +{"id": "000000112506", "images": ["AURORA/data/something/frames/133130/first.jpg", "AURORA/data/something/frames/133130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a banana onto a slanted surface but it doesn't glide down"}]} +{"id": "000000112507", "images": ["AURORA/data/something/frames/81505/first.jpg", "AURORA/data/something/frames/81505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying dental floss on the table on its side, not upright"}]} +{"id": "000000112508", "images": ["AURORA/data/something/frames/156153/first.jpg", "AURORA/data/something/frames/156153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking glasses up"}]} +{"id": "000000112509", "images": ["AURORA/data/something/frames/11134/first.jpg", "AURORA/data/something/frames/11134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key closer to box"}]} +{"id": "000000112510", "images": ["AURORA/data/something/frames/185387/first.jpg", "AURORA/data/something/frames/185387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking candle so that it falls over"}]} +{"id": "000000112511", "images": ["AURORA/data/something/frames/149200/first.jpg", "AURORA/data/something/frames/149200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000112512", "images": ["AURORA/data/something/frames/52832/first.jpg", "AURORA/data/something/frames/52832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting lamp knob"}]} +{"id": "000000112513", "images": ["AURORA/data/something/frames/27728/first.jpg", "AURORA/data/something/frames/27728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into extension cord but pulling it right out as you remove your hand"}]} +{"id": "000000112514", "images": ["AURORA/data/something/frames/215000/first.jpg", "AURORA/data/something/frames/215000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle up"}]} +{"id": "000000112515", "images": ["AURORA/data/something/frames/17337/first.jpg", "AURORA/data/something/frames/17337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a skateboard colliding with a toy car and both come to a halt"}]} +{"id": "000000112516", "images": ["AURORA/data/something/frames/150712/first.jpg", "AURORA/data/something/frames/150712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering glass"}]} +{"id": "000000112517", "images": ["AURORA/data/something/frames/172411/first.jpg", "AURORA/data/something/frames/172411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000112518", "images": ["AURORA/data/something/frames/154959/first.jpg", "AURORA/data/something/frames/154959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching coconuts with your camera"}]} +{"id": "000000112519", "images": ["AURORA/data/something/frames/144629/first.jpg", "AURORA/data/something/frames/144629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet and mouse away from each other"}]} +{"id": "000000112520", "images": ["AURORA/data/something/frames/210725/first.jpg", "AURORA/data/something/frames/210725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup onto the television"}]} +{"id": "000000112521", "images": ["AURORA/data/something/frames/3797/first.jpg", "AURORA/data/something/frames/3797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112522", "images": ["AURORA/data/something/frames/52720/first.jpg", "AURORA/data/something/frames/52720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass onto a tray"}]} +{"id": "000000112523", "images": ["AURORA/data/something/frames/48888/first.jpg", "AURORA/data/something/frames/48888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking mobile up"}]} +{"id": "000000112524", "images": ["AURORA/data/something/frames/180149/first.jpg", "AURORA/data/something/frames/180149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of cup"}]} +{"id": "000000112525", "images": ["AURORA/data/something/frames/146836/first.jpg", "AURORA/data/something/frames/146836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard just a little bit"}]} +{"id": "000000112526", "images": ["AURORA/data/something/frames/161271/first.jpg", "AURORA/data/something/frames/161271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cleaning fluid off of goggles"}]} +{"id": "000000112527", "images": ["AURORA/data/something/frames/158283/first.jpg", "AURORA/data/something/frames/158283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter and scissors away from each other"}]} +{"id": "000000112528", "images": ["AURORA/data/something/frames/53727/first.jpg", "AURORA/data/something/frames/53727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lid, saucepan and cup on the table"}]} +{"id": "000000112529", "images": ["AURORA/data/something/frames/73175/first.jpg", "AURORA/data/something/frames/73175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging the usb cable into the laptop"}]} +{"id": "000000112530", "images": ["AURORA/data/something/frames/106928/first.jpg", "AURORA/data/something/frames/106928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ice tray colliding with thermocol and both come to a halt"}]} +{"id": "000000112531", "images": ["AURORA/data/something/frames/139391/first.jpg", "AURORA/data/something/frames/139391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a matchbox away from a comb"}]} +{"id": "000000112532", "images": ["AURORA/data/something/frames/164792/first.jpg", "AURORA/data/something/frames/164792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking yellow colour pen among the many colour pens on the table"}]} +{"id": "000000112533", "images": ["AURORA/data/something/frames/144262/first.jpg", "AURORA/data/something/frames/144262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000112534", "images": ["AURORA/data/something/frames/207471/first.jpg", "AURORA/data/something/frames/207471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling colony onto paper"}]} +{"id": "000000112535", "images": ["AURORA/data/something/frames/158786/first.jpg", "AURORA/data/something/frames/158786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box"}]} +{"id": "000000112536", "images": ["AURORA/data/something/frames/216472/first.jpg", "AURORA/data/something/frames/216472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking red pot holder up"}]} +{"id": "000000112537", "images": ["AURORA/data/something/frames/100180/first.jpg", "AURORA/data/something/frames/100180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 toy wheels"}]} +{"id": "000000112538", "images": ["AURORA/data/something/frames/33185/first.jpg", "AURORA/data/something/frames/33185/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading matches onto the freezer"}]} +{"id": "000000112539", "images": ["AURORA/data/something/frames/18622/first.jpg", "AURORA/data/something/frames/18622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000112540", "images": ["AURORA/data/something/frames/130939/first.jpg", "AURORA/data/something/frames/130939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing 4 layers of paper just a little bit"}]} +{"id": "000000112541", "images": ["AURORA/data/something/frames/38014/first.jpg", "AURORA/data/something/frames/38014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying guitar pick in rice"}]} +{"id": "000000112542", "images": ["AURORA/data/something/frames/151203/first.jpg", "AURORA/data/something/frames/151203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) wipe wet until water comes out"}]} +{"id": "000000112543", "images": ["AURORA/data/something/frames/69177/first.jpg", "AURORA/data/something/frames/69177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bottle with a clip"}]} +{"id": "000000112544", "images": ["AURORA/data/something/frames/108191/first.jpg", "AURORA/data/something/frames/108191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming flowers"}]} +{"id": "000000112545", "images": ["AURORA/data/something/frames/122550/first.jpg", "AURORA/data/something/frames/122550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dental floss and nail clippers on the table"}]} +{"id": "000000112546", "images": ["AURORA/data/something/frames/99048/first.jpg", "AURORA/data/something/frames/99048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000112547", "images": ["AURORA/data/something/frames/38477/first.jpg", "AURORA/data/something/frames/38477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle away from box"}]} +{"id": "000000112548", "images": ["AURORA/data/something/frames/112316/first.jpg", "AURORA/data/something/frames/112316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting digger with car"}]} +{"id": "000000112549", "images": ["AURORA/data/something/frames/188672/first.jpg", "AURORA/data/something/frames/188672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen behind cup"}]} +{"id": "000000112550", "images": ["AURORA/data/something/frames/57530/first.jpg", "AURORA/data/something/frames/57530/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tissue out of box"}]} +{"id": "000000112551", "images": ["AURORA/data/something/frames/60990/first.jpg", "AURORA/data/something/frames/60990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping clay box into cup"}]} +{"id": "000000112552", "images": ["AURORA/data/something/frames/30233/first.jpg", "AURORA/data/something/frames/30233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000112553", "images": ["AURORA/data/something/frames/186133/first.jpg", "AURORA/data/something/frames/186133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 smoothie, ashtray, paper, monster"}]} +{"id": "000000112554", "images": ["AURORA/data/something/frames/211653/first.jpg", "AURORA/data/something/frames/211653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening door"}]} +{"id": "000000112555", "images": ["AURORA/data/something/frames/208741/first.jpg", "AURORA/data/something/frames/208741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing water tin"}]} +{"id": "000000112556", "images": ["AURORA/data/something/frames/178202/first.jpg", "AURORA/data/something/frames/178202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000112557", "images": ["AURORA/data/something/frames/116810/first.jpg", "AURORA/data/something/frames/116810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000112558", "images": ["AURORA/data/something/frames/106519/first.jpg", "AURORA/data/something/frames/106519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a lid into a box"}]} +{"id": "000000112559", "images": ["AURORA/data/something/frames/66165/first.jpg", "AURORA/data/something/frames/66165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking magnifying glass from table"}]} +{"id": "000000112560", "images": ["AURORA/data/something/frames/91110/first.jpg", "AURORA/data/something/frames/91110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sharpie so that it almost falls off but doesn't"}]} +{"id": "000000112561", "images": ["AURORA/data/something/frames/207558/first.jpg", "AURORA/data/something/frames/207558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a stick up completely without letting it drop down"}]} +{"id": "000000112562", "images": ["AURORA/data/something/frames/41845/first.jpg", "AURORA/data/something/frames/41845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup upright on the table"}]} +{"id": "000000112563", "images": ["AURORA/data/something/frames/145994/first.jpg", "AURORA/data/something/frames/145994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 matchbox"}]} +{"id": "000000112564", "images": ["AURORA/data/something/frames/144449/first.jpg", "AURORA/data/something/frames/144449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning container upside down"}]} +{"id": "000000112565", "images": ["AURORA/data/something/frames/83759/first.jpg", "AURORA/data/something/frames/83759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000112566", "images": ["AURORA/data/something/frames/218125/first.jpg", "AURORA/data/something/frames/218125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into chair"}]} +{"id": "000000112567", "images": ["AURORA/data/something/frames/58427/first.jpg", "AURORA/data/something/frames/58427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into a group of pen like objects"}]} +{"id": "000000112568", "images": ["AURORA/data/something/frames/72951/first.jpg", "AURORA/data/something/frames/72951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from flowers with your camera"}]} +{"id": "000000112569", "images": ["AURORA/data/something/frames/2583/first.jpg", "AURORA/data/something/frames/2583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tennis ball being deflected from bottle"}]} +{"id": "000000112570", "images": ["AURORA/data/something/frames/49346/first.jpg", "AURORA/data/something/frames/49346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto cup"}]} +{"id": "000000112571", "images": ["AURORA/data/something/frames/29848/first.jpg", "AURORA/data/something/frames/29848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a beer can next to a mug"}]} +{"id": "000000112572", "images": ["AURORA/data/something/frames/72618/first.jpg", "AURORA/data/something/frames/72618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling spoon from left to right"}]} +{"id": "000000112573", "images": ["AURORA/data/something/frames/16026/first.jpg", "AURORA/data/something/frames/16026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering onion with cloth"}]} +{"id": "000000112574", "images": ["AURORA/data/something/frames/179309/first.jpg", "AURORA/data/something/frames/179309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a dish towel next to a mug"}]} +{"id": "000000112575", "images": ["AURORA/data/something/frames/106441/first.jpg", "AURORA/data/something/frames/106441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a water bottle out of a refrigerator"}]} +{"id": "000000112576", "images": ["AURORA/data/something/frames/75293/first.jpg", "AURORA/data/something/frames/75293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of marker without letting it drop down"}]} +{"id": "000000112577", "images": ["AURORA/data/something/frames/116568/first.jpg", "AURORA/data/something/frames/116568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote onto a table"}]} +{"id": "000000112578", "images": ["AURORA/data/something/frames/81817/first.jpg", "AURORA/data/something/frames/81817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jam-box"}]} +{"id": "000000112579", "images": ["AURORA/data/something/frames/148506/first.jpg", "AURORA/data/something/frames/148506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112580", "images": ["AURORA/data/something/frames/163289/first.jpg", "AURORA/data/something/frames/163289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112581", "images": ["AURORA/data/something/frames/134957/first.jpg", "AURORA/data/something/frames/134957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping book over"}]} +{"id": "000000112582", "images": ["AURORA/data/something/frames/161868/first.jpg", "AURORA/data/something/frames/161868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking glasses so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000112583", "images": ["AURORA/data/something/frames/2034/first.jpg", "AURORA/data/something/frames/2034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball into laundry basket"}]} +{"id": "000000112584", "images": ["AURORA/data/something/frames/74302/first.jpg", "AURORA/data/something/frames/74302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book upright on the table"}]} +{"id": "000000112585", "images": ["AURORA/data/something/frames/10033/first.jpg", "AURORA/data/something/frames/10033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning perfume upside down"}]} +{"id": "000000112586", "images": ["AURORA/data/something/frames/199365/first.jpg", "AURORA/data/something/frames/199365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from rice cooker with your camera"}]} +{"id": "000000112587", "images": ["AURORA/data/something/frames/140635/first.jpg", "AURORA/data/something/frames/140635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a cup from left to right"}]} +{"id": "000000112588", "images": ["AURORA/data/something/frames/19044/first.jpg", "AURORA/data/something/frames/19044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lighter next to other lighters"}]} +{"id": "000000112589", "images": ["AURORA/data/something/frames/31255/first.jpg", "AURORA/data/something/frames/31255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into a socket"}]} +{"id": "000000112590", "images": ["AURORA/data/something/frames/203858/first.jpg", "AURORA/data/something/frames/203858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing mail box"}]} +{"id": "000000112591", "images": ["AURORA/data/something/frames/2774/first.jpg", "AURORA/data/something/frames/2774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dishcloth upright on the table, so it falls on its side"}]} +{"id": "000000112592", "images": ["AURORA/data/something/frames/128480/first.jpg", "AURORA/data/something/frames/128480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing zipper bag"}]} +{"id": "000000112593", "images": ["AURORA/data/something/frames/143448/first.jpg", "AURORA/data/something/frames/143448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000112594", "images": ["AURORA/data/something/frames/182735/first.jpg", "AURORA/data/something/frames/182735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil"}]} +{"id": "000000112595", "images": ["AURORA/data/something/frames/91157/first.jpg", "AURORA/data/something/frames/91157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112596", "images": ["AURORA/data/something/frames/107791/first.jpg", "AURORA/data/something/frames/107791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tv remote with pillow"}]} +{"id": "000000112597", "images": ["AURORA/data/something/frames/97856/first.jpg", "AURORA/data/something/frames/97856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plastic bag into glass bottle"}]} +{"id": "000000112598", "images": ["AURORA/data/something/frames/18746/first.jpg", "AURORA/data/something/frames/18746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tablet with a canister on it"}]} +{"id": "000000112599", "images": ["AURORA/data/something/frames/153947/first.jpg", "AURORA/data/something/frames/153947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112600", "images": ["AURORA/data/something/frames/203147/first.jpg", "AURORA/data/something/frames/203147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking scissors out of sewing box"}]} +{"id": "000000112601", "images": ["AURORA/data/something/frames/112864/first.jpg", "AURORA/data/something/frames/112864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting forks together on the table"}]} +{"id": "000000112602", "images": ["AURORA/data/something/frames/98666/first.jpg", "AURORA/data/something/frames/98666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can next to a bag"}]} +{"id": "000000112603", "images": ["AURORA/data/something/frames/9250/first.jpg", "AURORA/data/something/frames/9250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting soap on the edge of the table so it is not supported and falls down"}]} +{"id": "000000112604", "images": ["AURORA/data/something/frames/163803/first.jpg", "AURORA/data/something/frames/163803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book with metal strip"}]} +{"id": "000000112605", "images": ["AURORA/data/something/frames/22039/first.jpg", "AURORA/data/something/frames/22039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red hair band with pen"}]} +{"id": "000000112606", "images": ["AURORA/data/something/frames/88256/first.jpg", "AURORA/data/something/frames/88256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with apple on it"}]} +{"id": "000000112607", "images": ["AURORA/data/something/frames/30020/first.jpg", "AURORA/data/something/frames/30020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a rubbik cube and rubbik cube closer to each other"}]} +{"id": "000000112608", "images": ["AURORA/data/something/frames/12895/first.jpg", "AURORA/data/something/frames/12895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many pen on the table"}]} +{"id": "000000112609", "images": ["AURORA/data/something/frames/175162/first.jpg", "AURORA/data/something/frames/175162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a shell into a box"}]} +{"id": "000000112610", "images": ["AURORA/data/something/frames/48438/first.jpg", "AURORA/data/something/frames/48438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a ball"}]} +{"id": "000000112611", "images": ["AURORA/data/something/frames/59950/first.jpg", "AURORA/data/something/frames/59950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into power socket but pulling it right out as you remove your hand"}]} +{"id": "000000112612", "images": ["AURORA/data/something/frames/120144/first.jpg", "AURORA/data/something/frames/120144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking timepiece from well wall"}]} +{"id": "000000112613", "images": ["AURORA/data/something/frames/70779/first.jpg", "AURORA/data/something/frames/70779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a fork upright on the table, so it falls on its side"}]} +{"id": "000000112614", "images": ["AURORA/data/something/frames/120745/first.jpg", "AURORA/data/something/frames/120745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming plant"}]} +{"id": "000000112615", "images": ["AURORA/data/something/frames/215878/first.jpg", "AURORA/data/something/frames/215878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle down"}]} +{"id": "000000112616", "images": ["AURORA/data/something/frames/174279/first.jpg", "AURORA/data/something/frames/174279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pulling power bank from left to right from left to right"}]} +{"id": "000000112617", "images": ["AURORA/data/something/frames/69501/first.jpg", "AURORA/data/something/frames/69501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote from right to left"}]} +{"id": "000000112618", "images": ["AURORA/data/something/frames/209979/first.jpg", "AURORA/data/something/frames/209979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a figutine into a mug"}]} +{"id": "000000112619", "images": ["AURORA/data/something/frames/81972/first.jpg", "AURORA/data/something/frames/81972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling water bottle from right to left"}]} +{"id": "000000112620", "images": ["AURORA/data/something/frames/65444/first.jpg", "AURORA/data/something/frames/65444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning something upside down"}]} +{"id": "000000112621", "images": ["AURORA/data/something/frames/113588/first.jpg", "AURORA/data/something/frames/113588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass next to box"}]} +{"id": "000000112622", "images": ["AURORA/data/something/frames/102796/first.jpg", "AURORA/data/something/frames/102796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a plate"}]} +{"id": "000000112623", "images": ["AURORA/data/something/frames/115530/first.jpg", "AURORA/data/something/frames/115530/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red pen and blue pen closer to each other"}]} +{"id": "000000112624", "images": ["AURORA/data/something/frames/200339/first.jpg", "AURORA/data/something/frames/200339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing white paper just a little bit"}]} +{"id": "000000112625", "images": ["AURORA/data/something/frames/56093/first.jpg", "AURORA/data/something/frames/56093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering the watch"}]} +{"id": "000000112626", "images": ["AURORA/data/something/frames/86998/first.jpg", "AURORA/data/something/frames/86998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy-car and toy-car so they collide with each other"}]} +{"id": "000000112627", "images": ["AURORA/data/something/frames/147771/first.jpg", "AURORA/data/something/frames/147771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning book upside down"}]} +{"id": "000000112628", "images": ["AURORA/data/something/frames/57640/first.jpg", "AURORA/data/something/frames/57640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying a lid in salad"}]} +{"id": "000000112629", "images": ["AURORA/data/something/frames/141476/first.jpg", "AURORA/data/something/frames/141476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box of juice so that it almost falls off but doesn't"}]} +{"id": "000000112630", "images": ["AURORA/data/something/frames/208285/first.jpg", "AURORA/data/something/frames/208285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup up"}]} +{"id": "000000112631", "images": ["AURORA/data/something/frames/166583/first.jpg", "AURORA/data/something/frames/166583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000112632", "images": ["AURORA/data/something/frames/22037/first.jpg", "AURORA/data/something/frames/22037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing lid off of iid"}]} +{"id": "000000112633", "images": ["AURORA/data/something/frames/44955/first.jpg", "AURORA/data/something/frames/44955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of a plank of wood"}]} +{"id": "000000112634", "images": ["AURORA/data/something/frames/89116/first.jpg", "AURORA/data/something/frames/89116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto wall"}]} +{"id": "000000112635", "images": ["AURORA/data/something/frames/46733/first.jpg", "AURORA/data/something/frames/46733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning empty coffee mug upside down"}]} +{"id": "000000112636", "images": ["AURORA/data/something/frames/136527/first.jpg", "AURORA/data/something/frames/136527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering candles"}]} +{"id": "000000112637", "images": ["AURORA/data/something/frames/125325/first.jpg", "AURORA/data/something/frames/125325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming flower"}]} +{"id": "000000112638", "images": ["AURORA/data/something/frames/3921/first.jpg", "AURORA/data/something/frames/3921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering apple tv remote"}]} +{"id": "000000112639", "images": ["AURORA/data/something/frames/113793/first.jpg", "AURORA/data/something/frames/113793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching back to remote"}]} +{"id": "000000112640", "images": ["AURORA/data/something/frames/64064/first.jpg", "AURORA/data/something/frames/64064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000112641", "images": ["AURORA/data/something/frames/80326/first.jpg", "AURORA/data/something/frames/80326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing case from right to left"}]} +{"id": "000000112642", "images": ["AURORA/data/something/frames/161298/first.jpg", "AURORA/data/something/frames/161298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass closer to mug"}]} +{"id": "000000112643", "images": ["AURORA/data/something/frames/170836/first.jpg", "AURORA/data/something/frames/170836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000112644", "images": ["AURORA/data/something/frames/88869/first.jpg", "AURORA/data/something/frames/88869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to magnet"}]} +{"id": "000000112645", "images": ["AURORA/data/something/frames/90888/first.jpg", "AURORA/data/something/frames/90888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving microscope and coin closer to each other"}]} +{"id": "000000112646", "images": ["AURORA/data/something/frames/47113/first.jpg", "AURORA/data/something/frames/47113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering glass with cotton towel"}]} +{"id": "000000112647", "images": ["AURORA/data/something/frames/100990/first.jpg", "AURORA/data/something/frames/100990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from small green ball with your camera"}]} +{"id": "000000112648", "images": ["AURORA/data/something/frames/76109/first.jpg", "AURORA/data/something/frames/76109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000112649", "images": ["AURORA/data/something/frames/106076/first.jpg", "AURORA/data/something/frames/106076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 6 pen onto a box"}]} +{"id": "000000112650", "images": ["AURORA/data/something/frames/97551/first.jpg", "AURORA/data/something/frames/97551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a vase upright on the table"}]} +{"id": "000000112651", "images": ["AURORA/data/something/frames/188053/first.jpg", "AURORA/data/something/frames/188053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping stick into small bottle"}]} +{"id": "000000112652", "images": ["AURORA/data/something/frames/198413/first.jpg", "AURORA/data/something/frames/198413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching charger adapter to charging socket"}]} +{"id": "000000112653", "images": ["AURORA/data/something/frames/54495/first.jpg", "AURORA/data/something/frames/54495/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from left to right"}]} +{"id": "000000112654", "images": ["AURORA/data/something/frames/200580/first.jpg", "AURORA/data/something/frames/200580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bottle so that it falls over"}]} +{"id": "000000112655", "images": ["AURORA/data/something/frames/157374/first.jpg", "AURORA/data/something/frames/157374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a wire into an electrical outlet but pulling it right out as you remove your hand"}]} +{"id": "000000112656", "images": ["AURORA/data/something/frames/215970/first.jpg", "AURORA/data/something/frames/215970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112657", "images": ["AURORA/data/something/frames/68279/first.jpg", "AURORA/data/something/frames/68279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing socks into cushion"}]} +{"id": "000000112658", "images": ["AURORA/data/something/frames/189074/first.jpg", "AURORA/data/something/frames/189074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to mug"}]} +{"id": "000000112659", "images": ["AURORA/data/something/frames/115728/first.jpg", "AURORA/data/something/frames/115728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) pull part of blinds"}]} +{"id": "000000112660", "images": ["AURORA/data/something/frames/69581/first.jpg", "AURORA/data/something/frames/69581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying peanut butter on the table on its side, not upright"}]} +{"id": "000000112661", "images": ["AURORA/data/something/frames/213919/first.jpg", "AURORA/data/something/frames/213919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of containers without the stack collapsing"}]} +{"id": "000000112662", "images": ["AURORA/data/something/frames/117326/first.jpg", "AURORA/data/something/frames/117326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall"}]} +{"id": "000000112663", "images": ["AURORA/data/something/frames/139795/first.jpg", "AURORA/data/something/frames/139795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cap onto pillow"}]} +{"id": "000000112664", "images": ["AURORA/data/something/frames/201087/first.jpg", "AURORA/data/something/frames/201087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a book of many books"}]} +{"id": "000000112665", "images": ["AURORA/data/something/frames/69208/first.jpg", "AURORA/data/something/frames/69208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble underneath glass"}]} +{"id": "000000112666", "images": ["AURORA/data/something/frames/145448/first.jpg", "AURORA/data/something/frames/145448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping container next to book"}]} +{"id": "000000112667", "images": ["AURORA/data/something/frames/167180/first.jpg", "AURORA/data/something/frames/167180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sunglasses and keys closer to each other"}]} +{"id": "000000112668", "images": ["AURORA/data/something/frames/47117/first.jpg", "AURORA/data/something/frames/47117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a dvd closer to a mug"}]} +{"id": "000000112669", "images": ["AURORA/data/something/frames/122692/first.jpg", "AURORA/data/something/frames/122692/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a cloth"}]} +{"id": "000000112670", "images": ["AURORA/data/something/frames/212311/first.jpg", "AURORA/data/something/frames/212311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and bottle away from each other"}]} +{"id": "000000112671", "images": ["AURORA/data/something/frames/168904/first.jpg", "AURORA/data/something/frames/168904/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape"}]} +{"id": "000000112672", "images": ["AURORA/data/something/frames/210447/first.jpg", "AURORA/data/something/frames/210447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an adapter into wall outlet"}]} +{"id": "000000112673", "images": ["AURORA/data/something/frames/31674/first.jpg", "AURORA/data/something/frames/31674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book across a surface without it falling down"}]} +{"id": "000000112674", "images": ["AURORA/data/something/frames/28027/first.jpg", "AURORA/data/something/frames/28027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping glass bottle onto waste basket"}]} +{"id": "000000112675", "images": ["AURORA/data/something/frames/2767/first.jpg", "AURORA/data/something/frames/2767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cassette out of player"}]} +{"id": "000000112676", "images": ["AURORA/data/something/frames/47816/first.jpg", "AURORA/data/something/frames/47816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card onto a comb"}]} +{"id": "000000112677", "images": ["AURORA/data/something/frames/192407/first.jpg", "AURORA/data/something/frames/192407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass container until it overflows"}]} +{"id": "000000112678", "images": ["AURORA/data/something/frames/97396/first.jpg", "AURORA/data/something/frames/97396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel down"}]} +{"id": "000000112679", "images": ["AURORA/data/something/frames/112970/first.jpg", "AURORA/data/something/frames/112970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a battery and powerbank on the table"}]} +{"id": "000000112680", "images": ["AURORA/data/something/frames/144676/first.jpg", "AURORA/data/something/frames/144676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone cover so that it almost falls off but doesn't"}]} +{"id": "000000112681", "images": ["AURORA/data/something/frames/53686/first.jpg", "AURORA/data/something/frames/53686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112682", "images": ["AURORA/data/something/frames/182121/first.jpg", "AURORA/data/something/frames/182121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys behind mug"}]} +{"id": "000000112683", "images": ["AURORA/data/something/frames/106494/first.jpg", "AURORA/data/something/frames/106494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving container and cigarettes away from each other"}]} +{"id": "000000112684", "images": ["AURORA/data/something/frames/33094/first.jpg", "AURORA/data/something/frames/33094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass onto a slanted surface but it doesn't glide down"}]} +{"id": "000000112685", "images": ["AURORA/data/something/frames/49891/first.jpg", "AURORA/data/something/frames/49891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning stapler upside down"}]} +{"id": "000000112686", "images": ["AURORA/data/something/frames/212064/first.jpg", "AURORA/data/something/frames/212064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a sheet of paper just a little bit"}]} +{"id": "000000112687", "images": ["AURORA/data/something/frames/102661/first.jpg", "AURORA/data/something/frames/102661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin onto face wash"}]} +{"id": "000000112688", "images": ["AURORA/data/something/frames/17789/first.jpg", "AURORA/data/something/frames/17789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting apple onto floor"}]} +{"id": "000000112689", "images": ["AURORA/data/something/frames/12033/first.jpg", "AURORA/data/something/frames/12033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coin up"}]} +{"id": "000000112690", "images": ["AURORA/data/something/frames/153193/first.jpg", "AURORA/data/something/frames/153193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda into cup"}]} +{"id": "000000112691", "images": ["AURORA/data/something/frames/88000/first.jpg", "AURORA/data/something/frames/88000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting coconut leaf with stick"}]} +{"id": "000000112692", "images": ["AURORA/data/something/frames/75848/first.jpg", "AURORA/data/something/frames/75848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a shoe polish on it"}]} +{"id": "000000112693", "images": ["AURORA/data/something/frames/18016/first.jpg", "AURORA/data/something/frames/18016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting christmas tree upright on the table"}]} +{"id": "000000112694", "images": ["AURORA/data/something/frames/41422/first.jpg", "AURORA/data/something/frames/41422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cooked vegetables into pepers"}]} +{"id": "000000112695", "images": ["AURORA/data/something/frames/219238/first.jpg", "AURORA/data/something/frames/219238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tiger on a surface"}]} +{"id": "000000112696", "images": ["AURORA/data/something/frames/54658/first.jpg", "AURORA/data/something/frames/54658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors and marker on the table"}]} +{"id": "000000112697", "images": ["AURORA/data/something/frames/181663/first.jpg", "AURORA/data/something/frames/181663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bed with blanket"}]} +{"id": "000000112698", "images": ["AURORA/data/something/frames/161906/first.jpg", "AURORA/data/something/frames/161906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling drawer out of kitchen board"}]} +{"id": "000000112699", "images": ["AURORA/data/something/frames/69880/first.jpg", "AURORA/data/something/frames/69880/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending microphone so that it deforms"}]} +{"id": "000000112700", "images": ["AURORA/data/something/frames/145175/first.jpg", "AURORA/data/something/frames/145175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into a smartphone"}]} +{"id": "000000112701", "images": ["AURORA/data/something/frames/20995/first.jpg", "AURORA/data/something/frames/20995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving door of microwave"}]} +{"id": "000000112702", "images": ["AURORA/data/something/frames/40871/first.jpg", "AURORA/data/something/frames/40871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000112703", "images": ["AURORA/data/something/frames/27941/first.jpg", "AURORA/data/something/frames/27941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 board clips"}]} +{"id": "000000112704", "images": ["AURORA/data/something/frames/75949/first.jpg", "AURORA/data/something/frames/75949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pen with a piece of paper"}]} +{"id": "000000112705", "images": ["AURORA/data/something/frames/143961/first.jpg", "AURORA/data/something/frames/143961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup until it overflows"}]} +{"id": "000000112706", "images": ["AURORA/data/something/frames/143325/first.jpg", "AURORA/data/something/frames/143325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper up"}]} +{"id": "000000112707", "images": ["AURORA/data/something/frames/126930/first.jpg", "AURORA/data/something/frames/126930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing car from right to left"}]} +{"id": "000000112708", "images": ["AURORA/data/something/frames/18744/first.jpg", "AURORA/data/something/frames/18744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box of juice behind a box of juice"}]} +{"id": "000000112709", "images": ["AURORA/data/something/frames/36015/first.jpg", "AURORA/data/something/frames/36015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing bag into bag"}]} +{"id": "000000112710", "images": ["AURORA/data/something/frames/186572/first.jpg", "AURORA/data/something/frames/186572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000112711", "images": ["AURORA/data/something/frames/111926/first.jpg", "AURORA/data/something/frames/111926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler from left to right"}]} +{"id": "000000112712", "images": ["AURORA/data/something/frames/78533/first.jpg", "AURORA/data/something/frames/78533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a toothpaste so that it deforms"}]} +{"id": "000000112713", "images": ["AURORA/data/something/frames/29860/first.jpg", "AURORA/data/something/frames/29860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching wire to adapter"}]} +{"id": "000000112714", "images": ["AURORA/data/something/frames/154433/first.jpg", "AURORA/data/something/frames/154433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a remote upside down"}]} +{"id": "000000112715", "images": ["AURORA/data/something/frames/213734/first.jpg", "AURORA/data/something/frames/213734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering remote control"}]} +{"id": "000000112716", "images": ["AURORA/data/something/frames/27084/first.jpg", "AURORA/data/something/frames/27084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming radiator"}]} +{"id": "000000112717", "images": ["AURORA/data/something/frames/154533/first.jpg", "AURORA/data/something/frames/154533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cap to cardreader"}]} +{"id": "000000112718", "images": ["AURORA/data/something/frames/10430/first.jpg", "AURORA/data/something/frames/10430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching green water bottle with your camera"}]} +{"id": "000000112719", "images": ["AURORA/data/something/frames/157723/first.jpg", "AURORA/data/something/frames/157723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pin and tube closer to each other"}]} +{"id": "000000112720", "images": ["AURORA/data/something/frames/185616/first.jpg", "AURORA/data/something/frames/185616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming a panorama"}]} +{"id": "000000112721", "images": ["AURORA/data/something/frames/197574/first.jpg", "AURORA/data/something/frames/197574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bar soap from right to left"}]} +{"id": "000000112722", "images": ["AURORA/data/something/frames/177854/first.jpg", "AURORA/data/something/frames/177854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a notebook off of a bed"}]} +{"id": "000000112723", "images": ["AURORA/data/something/frames/194035/first.jpg", "AURORA/data/something/frames/194035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lamp on a surface"}]} +{"id": "000000112724", "images": ["AURORA/data/something/frames/48476/first.jpg", "AURORA/data/something/frames/48476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing keys into bag"}]} +{"id": "000000112725", "images": ["AURORA/data/something/frames/159574/first.jpg", "AURORA/data/something/frames/159574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending book so that it deforms"}]} +{"id": "000000112726", "images": ["AURORA/data/something/frames/39211/first.jpg", "AURORA/data/something/frames/39211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors and lighter closer to each other"}]} +{"id": "000000112727", "images": ["AURORA/data/something/frames/79730/first.jpg", "AURORA/data/something/frames/79730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a plastic tube so that it falls over"}]} +{"id": "000000112728", "images": ["AURORA/data/something/frames/110930/first.jpg", "AURORA/data/something/frames/110930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cover of notebook"}]} +{"id": "000000112729", "images": ["AURORA/data/something/frames/9075/first.jpg", "AURORA/data/something/frames/9075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on the edge of slab so it is not supported and falls down"}]} +{"id": "000000112730", "images": ["AURORA/data/something/frames/41500/first.jpg", "AURORA/data/something/frames/41500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a kettle plug into wall socket"}]} +{"id": "000000112731", "images": ["AURORA/data/something/frames/151158/first.jpg", "AURORA/data/something/frames/151158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking game from shelf"}]} +{"id": "000000112732", "images": ["AURORA/data/something/frames/9665/first.jpg", "AURORA/data/something/frames/9665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 white colour board clips onto cookie box lid"}]} +{"id": "000000112733", "images": ["AURORA/data/something/frames/145867/first.jpg", "AURORA/data/something/frames/145867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping mousse over"}]} +{"id": "000000112734", "images": ["AURORA/data/something/frames/45321/first.jpg", "AURORA/data/something/frames/45321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging male plug into female plug"}]} +{"id": "000000112735", "images": ["AURORA/data/something/frames/117618/first.jpg", "AURORA/data/something/frames/117618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a cloth"}]} +{"id": "000000112736", "images": ["AURORA/data/something/frames/212164/first.jpg", "AURORA/data/something/frames/212164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white deodorant from right to left"}]} +{"id": "000000112737", "images": ["AURORA/data/something/frames/153589/first.jpg", "AURORA/data/something/frames/153589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000112738", "images": ["AURORA/data/something/frames/175464/first.jpg", "AURORA/data/something/frames/175464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming switches"}]} +{"id": "000000112739", "images": ["AURORA/data/something/frames/169110/first.jpg", "AURORA/data/something/frames/169110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a pen up completely without letting it drop down"}]} +{"id": "000000112740", "images": ["AURORA/data/something/frames/185336/first.jpg", "AURORA/data/something/frames/185336/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a rubber band so that it gets stretched"}]} +{"id": "000000112741", "images": ["AURORA/data/something/frames/168952/first.jpg", "AURORA/data/something/frames/168952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a toy with a pencil"}]} +{"id": "000000112742", "images": ["AURORA/data/something/frames/185955/first.jpg", "AURORA/data/something/frames/185955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting scissors with sharpener on it"}]} +{"id": "000000112743", "images": ["AURORA/data/something/frames/136034/first.jpg", "AURORA/data/something/frames/136034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto paper towel"}]} +{"id": "000000112744", "images": ["AURORA/data/something/frames/32192/first.jpg", "AURORA/data/something/frames/32192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bracelet out of jewelry box"}]} +{"id": "000000112745", "images": ["AURORA/data/something/frames/28710/first.jpg", "AURORA/data/something/frames/28710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball up"}]} +{"id": "000000112746", "images": ["AURORA/data/something/frames/215824/first.jpg", "AURORA/data/something/frames/215824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper plate just a little bit"}]} +{"id": "000000112747", "images": ["AURORA/data/something/frames/18381/first.jpg", "AURORA/data/something/frames/18381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from earphone with your camera"}]} +{"id": "000000112748", "images": ["AURORA/data/something/frames/57972/first.jpg", "AURORA/data/something/frames/57972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering frog statue"}]} +{"id": "000000112749", "images": ["AURORA/data/something/frames/144557/first.jpg", "AURORA/data/something/frames/144557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cloths onto carry bag"}]} +{"id": "000000112750", "images": ["AURORA/data/something/frames/175609/first.jpg", "AURORA/data/something/frames/175609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cover"}]} +{"id": "000000112751", "images": ["AURORA/data/something/frames/8111/first.jpg", "AURORA/data/something/frames/8111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking remote from stool"}]} +{"id": "000000112752", "images": ["AURORA/data/something/frames/159361/first.jpg", "AURORA/data/something/frames/159361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a balloon onto a box"}]} +{"id": "000000112753", "images": ["AURORA/data/something/frames/157340/first.jpg", "AURORA/data/something/frames/157340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping ketchup off of a counter"}]} +{"id": "000000112754", "images": ["AURORA/data/something/frames/54143/first.jpg", "AURORA/data/something/frames/54143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 sticky notepads"}]} +{"id": "000000112755", "images": ["AURORA/data/something/frames/23849/first.jpg", "AURORA/data/something/frames/23849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass up"}]} +{"id": "000000112756", "images": ["AURORA/data/something/frames/197920/first.jpg", "AURORA/data/something/frames/197920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking red colour pen out of many colour pens on table"}]} +{"id": "000000112757", "images": ["AURORA/data/something/frames/162669/first.jpg", "AURORA/data/something/frames/162669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cabinet"}]} +{"id": "000000112758", "images": ["AURORA/data/something/frames/132397/first.jpg", "AURORA/data/something/frames/132397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ice cream container towards the camera"}]} +{"id": "000000112759", "images": ["AURORA/data/something/frames/213042/first.jpg", "AURORA/data/something/frames/213042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into laptop"}]} +{"id": "000000112760", "images": ["AURORA/data/something/frames/93895/first.jpg", "AURORA/data/something/frames/93895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle colliding with bottle and both are being deflected"}]} +{"id": "000000112761", "images": ["AURORA/data/something/frames/119510/first.jpg", "AURORA/data/something/frames/119510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112762", "images": ["AURORA/data/something/frames/122993/first.jpg", "AURORA/data/something/frames/122993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a comb without letting it drop down"}]} +{"id": "000000112763", "images": ["AURORA/data/something/frames/174952/first.jpg", "AURORA/data/something/frames/174952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a tin into a handbag"}]} +{"id": "000000112764", "images": ["AURORA/data/something/frames/48716/first.jpg", "AURORA/data/something/frames/48716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 cards"}]} +{"id": "000000112765", "images": ["AURORA/data/something/frames/185586/first.jpg", "AURORA/data/something/frames/185586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a rubber band so that it gets stretched"}]} +{"id": "000000112766", "images": ["AURORA/data/something/frames/205616/first.jpg", "AURORA/data/something/frames/205616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a paper so that it separates into two pieces"}]} +{"id": "000000112767", "images": ["AURORA/data/something/frames/127205/first.jpg", "AURORA/data/something/frames/127205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving yellow car and white car away from each other"}]} +{"id": "000000112768", "images": ["AURORA/data/something/frames/81136/first.jpg", "AURORA/data/something/frames/81136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book in front of mouse"}]} +{"id": "000000112769", "images": ["AURORA/data/something/frames/2069/first.jpg", "AURORA/data/something/frames/2069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cotton into tote bag"}]} +{"id": "000000112770", "images": ["AURORA/data/something/frames/167159/first.jpg", "AURORA/data/something/frames/167159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and ball away from each other"}]} +{"id": "000000112771", "images": ["AURORA/data/something/frames/109167/first.jpg", "AURORA/data/something/frames/109167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one die to group of dice"}]} +{"id": "000000112772", "images": ["AURORA/data/something/frames/91078/first.jpg", "AURORA/data/something/frames/91078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching wardrobe key with your camera"}]} +{"id": "000000112773", "images": ["AURORA/data/something/frames/146664/first.jpg", "AURORA/data/something/frames/146664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing jeep door"}]} +{"id": "000000112774", "images": ["AURORA/data/something/frames/901/first.jpg", "AURORA/data/something/frames/901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming cup"}]} +{"id": "000000112775", "images": ["AURORA/data/something/frames/216381/first.jpg", "AURORA/data/something/frames/216381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping something with something in it over, so something in it falls out"}]} +{"id": "000000112776", "images": ["AURORA/data/something/frames/209343/first.jpg", "AURORA/data/something/frames/209343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife into sheath"}]} +{"id": "000000112777", "images": ["AURORA/data/something/frames/52409/first.jpg", "AURORA/data/something/frames/52409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching flowers with your camera"}]} +{"id": "000000112778", "images": ["AURORA/data/something/frames/193606/first.jpg", "AURORA/data/something/frames/193606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a yellow marker next to other markers on the table"}]} +{"id": "000000112779", "images": ["AURORA/data/something/frames/171439/first.jpg", "AURORA/data/something/frames/171439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scrap paper away from scrap paper"}]} +{"id": "000000112780", "images": ["AURORA/data/something/frames/160038/first.jpg", "AURORA/data/something/frames/160038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone in front of pillow"}]} +{"id": "000000112781", "images": ["AURORA/data/something/frames/9094/first.jpg", "AURORA/data/something/frames/9094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping container in front of basket"}]} +{"id": "000000112782", "images": ["AURORA/data/something/frames/162986/first.jpg", "AURORA/data/something/frames/162986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with cup on it"}]} +{"id": "000000112783", "images": ["AURORA/data/something/frames/206768/first.jpg", "AURORA/data/something/frames/206768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000112784", "images": ["AURORA/data/something/frames/22865/first.jpg", "AURORA/data/something/frames/22865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cup on the table on its side, not upright"}]} +{"id": "000000112785", "images": ["AURORA/data/something/frames/165580/first.jpg", "AURORA/data/something/frames/165580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stick of deodorant off of bed"}]} +{"id": "000000112786", "images": ["AURORA/data/something/frames/181683/first.jpg", "AURORA/data/something/frames/181683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into glass, but missing so it spills next to it"}]} +{"id": "000000112787", "images": ["AURORA/data/something/frames/184961/first.jpg", "AURORA/data/something/frames/184961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking dinosaur figure so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000112788", "images": ["AURORA/data/something/frames/150311/first.jpg", "AURORA/data/something/frames/150311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key with pen"}]} +{"id": "000000112789", "images": ["AURORA/data/something/frames/171602/first.jpg", "AURORA/data/something/frames/171602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bottle"}]} +{"id": "000000112790", "images": ["AURORA/data/something/frames/5472/first.jpg", "AURORA/data/something/frames/5472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen, an eraser and a glass on the table"}]} +{"id": "000000112791", "images": ["AURORA/data/something/frames/197841/first.jpg", "AURORA/data/something/frames/197841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking silver plate out of sugar bottle"}]} +{"id": "000000112792", "images": ["AURORA/data/something/frames/99266/first.jpg", "AURORA/data/something/frames/99266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling casio from behind of pillow"}]} +{"id": "000000112793", "images": ["AURORA/data/something/frames/87845/first.jpg", "AURORA/data/something/frames/87845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tv control upright on the table"}]} +{"id": "000000112794", "images": ["AURORA/data/something/frames/80406/first.jpg", "AURORA/data/something/frames/80406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000112795", "images": ["AURORA/data/something/frames/129687/first.jpg", "AURORA/data/something/frames/129687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) cap of bottle"}]} +{"id": "000000112796", "images": ["AURORA/data/something/frames/150220/first.jpg", "AURORA/data/something/frames/150220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hammer upright on the table, so it falls on its side"}]} +{"id": "000000112797", "images": ["AURORA/data/something/frames/191641/first.jpg", "AURORA/data/something/frames/191641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a large carrot until it breaks"}]} +{"id": "000000112798", "images": ["AURORA/data/something/frames/146933/first.jpg", "AURORA/data/something/frames/146933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000112799", "images": ["AURORA/data/something/frames/60455/first.jpg", "AURORA/data/something/frames/60455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys onto bag"}]} +{"id": "000000112800", "images": ["AURORA/data/something/frames/36074/first.jpg", "AURORA/data/something/frames/36074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering paper"}]} +{"id": "000000112801", "images": ["AURORA/data/something/frames/19832/first.jpg", "AURORA/data/something/frames/19832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000112802", "images": ["AURORA/data/something/frames/142512/first.jpg", "AURORA/data/something/frames/142512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into headset"}]} +{"id": "000000112803", "images": ["AURORA/data/something/frames/98864/first.jpg", "AURORA/data/something/frames/98864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming dinosaur model"}]} +{"id": "000000112804", "images": ["AURORA/data/something/frames/115386/first.jpg", "AURORA/data/something/frames/115386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hand towel being deflected from cabinet"}]} +{"id": "000000112805", "images": ["AURORA/data/something/frames/216410/first.jpg", "AURORA/data/something/frames/216410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball into measuring jug"}]} +{"id": "000000112806", "images": ["AURORA/data/something/frames/210811/first.jpg", "AURORA/data/something/frames/210811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wrist-watch onto plastic-container"}]} +{"id": "000000112807", "images": ["AURORA/data/something/frames/160418/first.jpg", "AURORA/data/something/frames/160418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112808", "images": ["AURORA/data/something/frames/179295/first.jpg", "AURORA/data/something/frames/179295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000112809", "images": ["AURORA/data/something/frames/72269/first.jpg", "AURORA/data/something/frames/72269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a dvd next to a tissue box"}]} +{"id": "000000112810", "images": ["AURORA/data/something/frames/122492/first.jpg", "AURORA/data/something/frames/122492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting something"}]} +{"id": "000000112811", "images": ["AURORA/data/something/frames/70959/first.jpg", "AURORA/data/something/frames/70959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning stuffed animal upside down"}]} +{"id": "000000112812", "images": ["AURORA/data/something/frames/129834/first.jpg", "AURORA/data/something/frames/129834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coaster off of table"}]} +{"id": "000000112813", "images": ["AURORA/data/something/frames/108361/first.jpg", "AURORA/data/something/frames/108361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a paint brush down"}]} +{"id": "000000112814", "images": ["AURORA/data/something/frames/197975/first.jpg", "AURORA/data/something/frames/197975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing specs with book"}]} +{"id": "000000112815", "images": ["AURORA/data/something/frames/81258/first.jpg", "AURORA/data/something/frames/81258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling one tealight candle from left to right"}]} +{"id": "000000112816", "images": ["AURORA/data/something/frames/190267/first.jpg", "AURORA/data/something/frames/190267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a round glass paperweight with other paperweights on the table"}]} +{"id": "000000112817", "images": ["AURORA/data/something/frames/164059/first.jpg", "AURORA/data/something/frames/164059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging extension plug into wall plug"}]} +{"id": "000000112818", "images": ["AURORA/data/something/frames/215894/first.jpg", "AURORA/data/something/frames/215894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a lightbulb to a candlewarmer"}]} +{"id": "000000112819", "images": ["AURORA/data/something/frames/110358/first.jpg", "AURORA/data/something/frames/110358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sugar bowl up"}]} +{"id": "000000112820", "images": ["AURORA/data/something/frames/155599/first.jpg", "AURORA/data/something/frames/155599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching black microwave with your camera"}]} +{"id": "000000112821", "images": ["AURORA/data/something/frames/217895/first.jpg", "AURORA/data/something/frames/217895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchstick behind a remote"}]} +{"id": "000000112822", "images": ["AURORA/data/something/frames/52805/first.jpg", "AURORA/data/something/frames/52805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a candle"}]} +{"id": "000000112823", "images": ["AURORA/data/something/frames/196030/first.jpg", "AURORA/data/something/frames/196030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tomato behind a mug"}]} +{"id": "000000112824", "images": ["AURORA/data/something/frames/70956/first.jpg", "AURORA/data/something/frames/70956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hairband on a surface"}]} +{"id": "000000112825", "images": ["AURORA/data/something/frames/62553/first.jpg", "AURORA/data/something/frames/62553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coin"}]} +{"id": "000000112826", "images": ["AURORA/data/something/frames/82165/first.jpg", "AURORA/data/something/frames/82165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000112827", "images": ["AURORA/data/something/frames/99908/first.jpg", "AURORA/data/something/frames/99908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a microwave oven door"}]} +{"id": "000000112828", "images": ["AURORA/data/something/frames/70283/first.jpg", "AURORA/data/something/frames/70283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting brush"}]} +{"id": "000000112829", "images": ["AURORA/data/something/frames/9991/first.jpg", "AURORA/data/something/frames/9991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book up"}]} +{"id": "000000112830", "images": ["AURORA/data/something/frames/149591/first.jpg", "AURORA/data/something/frames/149591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a painting upside down"}]} +{"id": "000000112831", "images": ["AURORA/data/something/frames/43819/first.jpg", "AURORA/data/something/frames/43819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil into a glass"}]} +{"id": "000000112832", "images": ["AURORA/data/something/frames/193292/first.jpg", "AURORA/data/something/frames/193292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a candle so that it almost falls off but doesn't"}]} +{"id": "000000112833", "images": ["AURORA/data/something/frames/68527/first.jpg", "AURORA/data/something/frames/68527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking jalebi sweet from packet"}]} +{"id": "000000112834", "images": ["AURORA/data/something/frames/204105/first.jpg", "AURORA/data/something/frames/204105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cat with a blanket"}]} +{"id": "000000112835", "images": ["AURORA/data/something/frames/198082/first.jpg", "AURORA/data/something/frames/198082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a small jar closer to a jug"}]} +{"id": "000000112836", "images": ["AURORA/data/something/frames/198342/first.jpg", "AURORA/data/something/frames/198342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wax jar on a surface"}]} +{"id": "000000112837", "images": ["AURORA/data/something/frames/168278/first.jpg", "AURORA/data/something/frames/168278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into water bottle"}]} +{"id": "000000112838", "images": ["AURORA/data/something/frames/116516/first.jpg", "AURORA/data/something/frames/116516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking paper towels so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000112839", "images": ["AURORA/data/something/frames/40616/first.jpg", "AURORA/data/something/frames/40616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a sheet of paper"}]} +{"id": "000000112840", "images": ["AURORA/data/something/frames/199151/first.jpg", "AURORA/data/something/frames/199151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a socket but pulling it right out as you remove your hand"}]} +{"id": "000000112841", "images": ["AURORA/data/something/frames/211066/first.jpg", "AURORA/data/something/frames/211066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a box just a little bit"}]} +{"id": "000000112842", "images": ["AURORA/data/something/frames/186388/first.jpg", "AURORA/data/something/frames/186388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lunchbox on a surface"}]} +{"id": "000000112843", "images": ["AURORA/data/something/frames/81419/first.jpg", "AURORA/data/something/frames/81419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bittle with spoon"}]} +{"id": "000000112844", "images": ["AURORA/data/something/frames/56041/first.jpg", "AURORA/data/something/frames/56041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing card into two pieces"}]} +{"id": "000000112845", "images": ["AURORA/data/something/frames/112470/first.jpg", "AURORA/data/something/frames/112470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball into cup"}]} +{"id": "000000112846", "images": ["AURORA/data/something/frames/191867/first.jpg", "AURORA/data/something/frames/191867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping a tissue off of a table"}]} +{"id": "000000112847", "images": ["AURORA/data/something/frames/97274/first.jpg", "AURORA/data/something/frames/97274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toy car and a fridge magnet away from each other"}]} +{"id": "000000112848", "images": ["AURORA/data/something/frames/14662/first.jpg", "AURORA/data/something/frames/14662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dice into plastic cup"}]} +{"id": "000000112849", "images": ["AURORA/data/something/frames/39097/first.jpg", "AURORA/data/something/frames/39097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet into drawer"}]} +{"id": "000000112850", "images": ["AURORA/data/something/frames/41384/first.jpg", "AURORA/data/something/frames/41384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting napkin"}]} +{"id": "000000112851", "images": ["AURORA/data/something/frames/119534/first.jpg", "AURORA/data/something/frames/119534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a strawberry candy and a lemon candy closer to each other"}]} +{"id": "000000112852", "images": ["AURORA/data/something/frames/143401/first.jpg", "AURORA/data/something/frames/143401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker pen from right to left"}]} +{"id": "000000112853", "images": ["AURORA/data/something/frames/88599/first.jpg", "AURORA/data/something/frames/88599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble onto glass"}]} +{"id": "000000112854", "images": ["AURORA/data/something/frames/54280/first.jpg", "AURORA/data/something/frames/54280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen"}]} +{"id": "000000112855", "images": ["AURORA/data/something/frames/173817/first.jpg", "AURORA/data/something/frames/173817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning tin upside down"}]} +{"id": "000000112856", "images": ["AURORA/data/something/frames/32343/first.jpg", "AURORA/data/something/frames/32343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning an ipad upside down"}]} +{"id": "000000112857", "images": ["AURORA/data/something/frames/85892/first.jpg", "AURORA/data/something/frames/85892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box across a surface without it falling down"}]} +{"id": "000000112858", "images": ["AURORA/data/something/frames/54331/first.jpg", "AURORA/data/something/frames/54331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of metal can"}]} +{"id": "000000112859", "images": ["AURORA/data/something/frames/141576/first.jpg", "AURORA/data/something/frames/141576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112860", "images": ["AURORA/data/something/frames/35901/first.jpg", "AURORA/data/something/frames/35901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a box with a pencil"}]} +{"id": "000000112861", "images": ["AURORA/data/something/frames/135188/first.jpg", "AURORA/data/something/frames/135188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wallet so that it almost falls off but doesn't"}]} +{"id": "000000112862", "images": ["AURORA/data/something/frames/159829/first.jpg", "AURORA/data/something/frames/159829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing geometric compass with marker pen"}]} +{"id": "000000112863", "images": ["AURORA/data/something/frames/190482/first.jpg", "AURORA/data/something/frames/190482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pebble"}]} +{"id": "000000112864", "images": ["AURORA/data/something/frames/23814/first.jpg", "AURORA/data/something/frames/23814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging mobile charger into socket"}]} +{"id": "000000112865", "images": ["AURORA/data/something/frames/63671/first.jpg", "AURORA/data/something/frames/63671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet behind the cream tube"}]} +{"id": "000000112866", "images": ["AURORA/data/something/frames/32896/first.jpg", "AURORA/data/something/frames/32896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of pen so that it separates into two pieces"}]} +{"id": "000000112867", "images": ["AURORA/data/something/frames/31938/first.jpg", "AURORA/data/something/frames/31938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning ink bottle upside down"}]} +{"id": "000000112868", "images": ["AURORA/data/something/frames/29287/first.jpg", "AURORA/data/something/frames/29287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering lantern with jacket"}]} +{"id": "000000112869", "images": ["AURORA/data/something/frames/62954/first.jpg", "AURORA/data/something/frames/62954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a mop bucket with a mop stick"}]} +{"id": "000000112870", "images": ["AURORA/data/something/frames/178047/first.jpg", "AURORA/data/something/frames/178047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a table"}]} +{"id": "000000112871", "images": ["AURORA/data/something/frames/199457/first.jpg", "AURORA/data/something/frames/199457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a bun into two pieces"}]} +{"id": "000000112872", "images": ["AURORA/data/something/frames/144207/first.jpg", "AURORA/data/something/frames/144207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from lighter with your camera"}]} +{"id": "000000112873", "images": ["AURORA/data/something/frames/12315/first.jpg", "AURORA/data/something/frames/12315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting perfume bottle in front of clip"}]} +{"id": "000000112874", "images": ["AURORA/data/something/frames/5216/first.jpg", "AURORA/data/something/frames/5216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into tissue box"}]} +{"id": "000000112875", "images": ["AURORA/data/something/frames/33274/first.jpg", "AURORA/data/something/frames/33274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hairclip upright on the table, so it falls on its side"}]} +{"id": "000000112876", "images": ["AURORA/data/something/frames/176842/first.jpg", "AURORA/data/something/frames/176842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending text book so that it deforms"}]} +{"id": "000000112877", "images": ["AURORA/data/something/frames/184866/first.jpg", "AURORA/data/something/frames/184866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shirt"}]} +{"id": "000000112878", "images": ["AURORA/data/something/frames/126691/first.jpg", "AURORA/data/something/frames/126691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a washclothe"}]} +{"id": "000000112879", "images": ["AURORA/data/something/frames/145754/first.jpg", "AURORA/data/something/frames/145754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a plastic cup over"}]} +{"id": "000000112880", "images": ["AURORA/data/something/frames/215765/first.jpg", "AURORA/data/something/frames/215765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cell phone and cup on the table"}]} +{"id": "000000112881", "images": ["AURORA/data/something/frames/213619/first.jpg", "AURORA/data/something/frames/213619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box across a surface without it falling down"}]} +{"id": "000000112882", "images": ["AURORA/data/something/frames/25965/first.jpg", "AURORA/data/something/frames/25965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen behind a measuring cup"}]} +{"id": "000000112883", "images": ["AURORA/data/something/frames/5532/first.jpg", "AURORA/data/something/frames/5532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a paper clip on the table"}]} +{"id": "000000112884", "images": ["AURORA/data/something/frames/27494/first.jpg", "AURORA/data/something/frames/27494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking water bottle"}]} +{"id": "000000112885", "images": ["AURORA/data/something/frames/181820/first.jpg", "AURORA/data/something/frames/181820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a phone charger into the wall outlet"}]} +{"id": "000000112886", "images": ["AURORA/data/something/frames/16943/first.jpg", "AURORA/data/something/frames/16943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet behind couch"}]} +{"id": "000000112887", "images": ["AURORA/data/something/frames/27861/first.jpg", "AURORA/data/something/frames/27861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping skateboard in front of robot"}]} +{"id": "000000112888", "images": ["AURORA/data/something/frames/131429/first.jpg", "AURORA/data/something/frames/131429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000112889", "images": ["AURORA/data/something/frames/43241/first.jpg", "AURORA/data/something/frames/43241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) cap of bottle"}]} +{"id": "000000112890", "images": ["AURORA/data/something/frames/56826/first.jpg", "AURORA/data/something/frames/56826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bed"}]} +{"id": "000000112891", "images": ["AURORA/data/something/frames/211749/first.jpg", "AURORA/data/something/frames/211749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: toy car colliding with another toy car and both are being deflected"}]} +{"id": "000000112892", "images": ["AURORA/data/something/frames/25768/first.jpg", "AURORA/data/something/frames/25768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper behind wineglass"}]} +{"id": "000000112893", "images": ["AURORA/data/something/frames/38421/first.jpg", "AURORA/data/something/frames/38421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bed with pillow"}]} +{"id": "000000112894", "images": ["AURORA/data/something/frames/183980/first.jpg", "AURORA/data/something/frames/183980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling glas from right to left"}]} +{"id": "000000112895", "images": ["AURORA/data/something/frames/201372/first.jpg", "AURORA/data/something/frames/201372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box next to a bucket"}]} +{"id": "000000112896", "images": ["AURORA/data/something/frames/87844/first.jpg", "AURORA/data/something/frames/87844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000112897", "images": ["AURORA/data/something/frames/187685/first.jpg", "AURORA/data/something/frames/187685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000112898", "images": ["AURORA/data/something/frames/50485/first.jpg", "AURORA/data/something/frames/50485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112899", "images": ["AURORA/data/something/frames/114460/first.jpg", "AURORA/data/something/frames/114460/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto box"}]} +{"id": "000000112900", "images": ["AURORA/data/something/frames/187315/first.jpg", "AURORA/data/something/frames/187315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting powerbank with airpods case on it"}]} +{"id": "000000112901", "images": ["AURORA/data/something/frames/94733/first.jpg", "AURORA/data/something/frames/94733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering the bottle"}]} +{"id": "000000112902", "images": ["AURORA/data/something/frames/110579/first.jpg", "AURORA/data/something/frames/110579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending notebook so that it deforms"}]} +{"id": "000000112903", "images": ["AURORA/data/something/frames/55230/first.jpg", "AURORA/data/something/frames/55230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming wastebin"}]} +{"id": "000000112904", "images": ["AURORA/data/something/frames/116279/first.jpg", "AURORA/data/something/frames/116279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mouse from right to left"}]} +{"id": "000000112905", "images": ["AURORA/data/something/frames/199373/first.jpg", "AURORA/data/something/frames/199373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hairclip onto a deodorant"}]} +{"id": "000000112906", "images": ["AURORA/data/something/frames/93854/first.jpg", "AURORA/data/something/frames/93854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging adaptor into plug"}]} +{"id": "000000112907", "images": ["AURORA/data/something/frames/124044/first.jpg", "AURORA/data/something/frames/124044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000112908", "images": ["AURORA/data/something/frames/167347/first.jpg", "AURORA/data/something/frames/167347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting napkins in front of shakers"}]} +{"id": "000000112909", "images": ["AURORA/data/something/frames/137733/first.jpg", "AURORA/data/something/frames/137733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into phone"}]} +{"id": "000000112910", "images": ["AURORA/data/something/frames/72697/first.jpg", "AURORA/data/something/frames/72697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking battleship game so that it falls over"}]} +{"id": "000000112911", "images": ["AURORA/data/something/frames/152269/first.jpg", "AURORA/data/something/frames/152269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging box into wall but pulling it right out as you remove your hand"}]} +{"id": "000000112912", "images": ["AURORA/data/something/frames/192654/first.jpg", "AURORA/data/something/frames/192654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bowl out of microwave"}]} +{"id": "000000112913", "images": ["AURORA/data/something/frames/60963/first.jpg", "AURORA/data/something/frames/60963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring orange juice out of jug"}]} +{"id": "000000112914", "images": ["AURORA/data/something/frames/34674/first.jpg", "AURORA/data/something/frames/34674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling green water bottle from right to left"}]} +{"id": "000000112915", "images": ["AURORA/data/something/frames/178932/first.jpg", "AURORA/data/something/frames/178932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling hair oil from left to right"}]} +{"id": "000000112916", "images": ["AURORA/data/something/frames/176411/first.jpg", "AURORA/data/something/frames/176411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into cup"}]} +{"id": "000000112917", "images": ["AURORA/data/something/frames/195783/first.jpg", "AURORA/data/something/frames/195783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping block over"}]} +{"id": "000000112918", "images": ["AURORA/data/something/frames/66462/first.jpg", "AURORA/data/something/frames/66462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pink water bottle from left to right"}]} +{"id": "000000112919", "images": ["AURORA/data/something/frames/102693/first.jpg", "AURORA/data/something/frames/102693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many chocolates"}]} +{"id": "000000112920", "images": ["AURORA/data/something/frames/2329/first.jpg", "AURORA/data/something/frames/2329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping fork onto table"}]} +{"id": "000000112921", "images": ["AURORA/data/something/frames/105135/first.jpg", "AURORA/data/something/frames/105135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 spanners"}]} +{"id": "000000112922", "images": ["AURORA/data/something/frames/69602/first.jpg", "AURORA/data/something/frames/69602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging something into something"}]} +{"id": "000000112923", "images": ["AURORA/data/something/frames/166902/first.jpg", "AURORA/data/something/frames/166902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a pencil so they pass each other"}]} +{"id": "000000112924", "images": ["AURORA/data/something/frames/43134/first.jpg", "AURORA/data/something/frames/43134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a travel mug on a surface"}]} +{"id": "000000112925", "images": ["AURORA/data/something/frames/34617/first.jpg", "AURORA/data/something/frames/34617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112926", "images": ["AURORA/data/something/frames/120443/first.jpg", "AURORA/data/something/frames/120443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying jar on the table on its side, not upright"}]} +{"id": "000000112927", "images": ["AURORA/data/something/frames/70556/first.jpg", "AURORA/data/something/frames/70556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering key with tissue"}]} +{"id": "000000112928", "images": ["AURORA/data/something/frames/220229/first.jpg", "AURORA/data/something/frames/220229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the tip of scissors"}]} +{"id": "000000112929", "images": ["AURORA/data/something/frames/89830/first.jpg", "AURORA/data/something/frames/89830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing compact disc from left to right"}]} +{"id": "000000112930", "images": ["AURORA/data/something/frames/73397/first.jpg", "AURORA/data/something/frames/73397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors upright on the table, so it falls on its side"}]} +{"id": "000000112931", "images": ["AURORA/data/something/frames/19853/first.jpg", "AURORA/data/something/frames/19853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book, lighter and charger on the table"}]} +{"id": "000000112932", "images": ["AURORA/data/something/frames/22364/first.jpg", "AURORA/data/something/frames/22364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball down"}]} +{"id": "000000112933", "images": ["AURORA/data/something/frames/88480/first.jpg", "AURORA/data/something/frames/88480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying glass on the table on its side, not upright"}]} +{"id": "000000112934", "images": ["AURORA/data/something/frames/84867/first.jpg", "AURORA/data/something/frames/84867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000112935", "images": ["AURORA/data/something/frames/194686/first.jpg", "AURORA/data/something/frames/194686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping glass bottle over"}]} +{"id": "000000112936", "images": ["AURORA/data/something/frames/27267/first.jpg", "AURORA/data/something/frames/27267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving thimble up"}]} +{"id": "000000112937", "images": ["AURORA/data/something/frames/175022/first.jpg", "AURORA/data/something/frames/175022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000112938", "images": ["AURORA/data/something/frames/165834/first.jpg", "AURORA/data/something/frames/165834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning ink bottle upside down"}]} +{"id": "000000112939", "images": ["AURORA/data/something/frames/213060/first.jpg", "AURORA/data/something/frames/213060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse down"}]} +{"id": "000000112940", "images": ["AURORA/data/something/frames/67399/first.jpg", "AURORA/data/something/frames/67399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key chain down"}]} +{"id": "000000112941", "images": ["AURORA/data/something/frames/16328/first.jpg", "AURORA/data/something/frames/16328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a sock"}]} +{"id": "000000112942", "images": ["AURORA/data/something/frames/46538/first.jpg", "AURORA/data/something/frames/46538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking basket up"}]} +{"id": "000000112943", "images": ["AURORA/data/something/frames/156677/first.jpg", "AURORA/data/something/frames/156677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into computer but pulling it right out as you remove your hand"}]} +{"id": "000000112944", "images": ["AURORA/data/something/frames/55153/first.jpg", "AURORA/data/something/frames/55153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of potty"}]} +{"id": "000000112945", "images": ["AURORA/data/something/frames/7379/first.jpg", "AURORA/data/something/frames/7379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil and brown colour sketch on the table"}]} +{"id": "000000112946", "images": ["AURORA/data/something/frames/161366/first.jpg", "AURORA/data/something/frames/161366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning remote upside down"}]} +{"id": "000000112947", "images": ["AURORA/data/something/frames/99812/first.jpg", "AURORA/data/something/frames/99812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a candle and a candle away from each other"}]} +{"id": "000000112948", "images": ["AURORA/data/something/frames/120556/first.jpg", "AURORA/data/something/frames/120556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe and shoe away from each other"}]} +{"id": "000000112949", "images": ["AURORA/data/something/frames/68128/first.jpg", "AURORA/data/something/frames/68128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon out of container"}]} +{"id": "000000112950", "images": ["AURORA/data/something/frames/151431/first.jpg", "AURORA/data/something/frames/151431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cleaning cloth onto floor"}]} +{"id": "000000112951", "images": ["AURORA/data/something/frames/2104/first.jpg", "AURORA/data/something/frames/2104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book so that it almost falls off but doesn't"}]} +{"id": "000000112952", "images": ["AURORA/data/something/frames/179990/first.jpg", "AURORA/data/something/frames/179990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small freshmints from left to right"}]} +{"id": "000000112953", "images": ["AURORA/data/something/frames/108088/first.jpg", "AURORA/data/something/frames/108088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping an owl over"}]} +{"id": "000000112954", "images": ["AURORA/data/something/frames/186221/first.jpg", "AURORA/data/something/frames/186221/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a box over"}]} +{"id": "000000112955", "images": ["AURORA/data/something/frames/104455/first.jpg", "AURORA/data/something/frames/104455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb next to toy"}]} +{"id": "000000112956", "images": ["AURORA/data/something/frames/108280/first.jpg", "AURORA/data/something/frames/108280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing towel into cup"}]} +{"id": "000000112957", "images": ["AURORA/data/something/frames/183649/first.jpg", "AURORA/data/something/frames/183649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000112958", "images": ["AURORA/data/something/frames/181094/first.jpg", "AURORA/data/something/frames/181094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a container so that it almost falls off but doesn't"}]} +{"id": "000000112959", "images": ["AURORA/data/something/frames/140150/first.jpg", "AURORA/data/something/frames/140150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling box out of christmas stocking"}]} +{"id": "000000112960", "images": ["AURORA/data/something/frames/141696/first.jpg", "AURORA/data/something/frames/141696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a tv remote upside down"}]} +{"id": "000000112961", "images": ["AURORA/data/something/frames/98615/first.jpg", "AURORA/data/something/frames/98615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a vape upright on the table"}]} +{"id": "000000112962", "images": ["AURORA/data/something/frames/64687/first.jpg", "AURORA/data/something/frames/64687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife into container"}]} +{"id": "000000112963", "images": ["AURORA/data/something/frames/192123/first.jpg", "AURORA/data/something/frames/192123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping jar over"}]} +{"id": "000000112964", "images": ["AURORA/data/something/frames/43954/first.jpg", "AURORA/data/something/frames/43954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green face powder from left to right"}]} +{"id": "000000112965", "images": ["AURORA/data/something/frames/143508/first.jpg", "AURORA/data/something/frames/143508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a peg upright on the table, so it falls on its side"}]} +{"id": "000000112966", "images": ["AURORA/data/something/frames/5492/first.jpg", "AURORA/data/something/frames/5492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle on the edge of a counter so it is not supported and falls down"}]} +{"id": "000000112967", "images": ["AURORA/data/something/frames/55360/first.jpg", "AURORA/data/something/frames/55360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a handkerchief"}]} +{"id": "000000112968", "images": ["AURORA/data/something/frames/161722/first.jpg", "AURORA/data/something/frames/161722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking calculator up"}]} +{"id": "000000112969", "images": ["AURORA/data/something/frames/67939/first.jpg", "AURORA/data/something/frames/67939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking the remote up"}]} +{"id": "000000112970", "images": ["AURORA/data/something/frames/203413/first.jpg", "AURORA/data/something/frames/203413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending hanger so that it deforms"}]} +{"id": "000000112971", "images": ["AURORA/data/something/frames/159326/first.jpg", "AURORA/data/something/frames/159326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen behind glass"}]} +{"id": "000000112972", "images": ["AURORA/data/something/frames/98127/first.jpg", "AURORA/data/something/frames/98127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching jeep with your camera"}]} +{"id": "000000112973", "images": ["AURORA/data/something/frames/164183/first.jpg", "AURORA/data/something/frames/164183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cards upside down"}]} +{"id": "000000112974", "images": ["AURORA/data/something/frames/199215/first.jpg", "AURORA/data/something/frames/199215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting books with bottle on it"}]} +{"id": "000000112975", "images": ["AURORA/data/something/frames/166239/first.jpg", "AURORA/data/something/frames/166239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tissues from right to left"}]} +{"id": "000000112976", "images": ["AURORA/data/something/frames/197669/first.jpg", "AURORA/data/something/frames/197669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and bottle closer to each other"}]} +{"id": "000000112977", "images": ["AURORA/data/something/frames/150869/first.jpg", "AURORA/data/something/frames/150869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting water bottle lid"}]} +{"id": "000000112978", "images": ["AURORA/data/something/frames/174709/first.jpg", "AURORA/data/something/frames/174709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto dishes"}]} +{"id": "000000112979", "images": ["AURORA/data/something/frames/19122/first.jpg", "AURORA/data/something/frames/19122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking box up"}]} +{"id": "000000112980", "images": ["AURORA/data/something/frames/75793/first.jpg", "AURORA/data/something/frames/75793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000112981", "images": ["AURORA/data/something/frames/220183/first.jpg", "AURORA/data/something/frames/220183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tape being deflected from cushion"}]} +{"id": "000000112982", "images": ["AURORA/data/something/frames/183432/first.jpg", "AURORA/data/something/frames/183432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper"}]} +{"id": "000000112983", "images": ["AURORA/data/something/frames/103091/first.jpg", "AURORA/data/something/frames/103091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending toothpick until it breaks"}]} +{"id": "000000112984", "images": ["AURORA/data/something/frames/6161/first.jpg", "AURORA/data/something/frames/6161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking five notebooks"}]} +{"id": "000000112985", "images": ["AURORA/data/something/frames/10335/first.jpg", "AURORA/data/something/frames/10335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of soap"}]} +{"id": "000000112986", "images": ["AURORA/data/something/frames/9614/first.jpg", "AURORA/data/something/frames/9614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen in pile of pens"}]} +{"id": "000000112987", "images": ["AURORA/data/something/frames/180022/first.jpg", "AURORA/data/something/frames/180022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to dishwasher"}]} +{"id": "000000112988", "images": ["AURORA/data/something/frames/72196/first.jpg", "AURORA/data/something/frames/72196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a biro out of a plastic box"}]} +{"id": "000000112989", "images": ["AURORA/data/something/frames/62430/first.jpg", "AURORA/data/something/frames/62430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving powerbank and airpods case closer to each other"}]} +{"id": "000000112990", "images": ["AURORA/data/something/frames/161302/first.jpg", "AURORA/data/something/frames/161302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bowl upside down"}]} +{"id": "000000112991", "images": ["AURORA/data/something/frames/80906/first.jpg", "AURORA/data/something/frames/80906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing the oven"}]} +{"id": "000000112992", "images": ["AURORA/data/something/frames/170918/first.jpg", "AURORA/data/something/frames/170918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into a jar"}]} +{"id": "000000112993", "images": ["AURORA/data/something/frames/126159/first.jpg", "AURORA/data/something/frames/126159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing baby pram with plastic bottle"}]} +{"id": "000000112994", "images": ["AURORA/data/something/frames/3082/first.jpg", "AURORA/data/something/frames/3082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000112995", "images": ["AURORA/data/something/frames/36255/first.jpg", "AURORA/data/something/frames/36255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tomato into bowl"}]} +{"id": "000000112996", "images": ["AURORA/data/something/frames/208560/first.jpg", "AURORA/data/something/frames/208560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000112997", "images": ["AURORA/data/something/frames/96878/first.jpg", "AURORA/data/something/frames/96878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting teabag"}]} +{"id": "000000112998", "images": ["AURORA/data/something/frames/43428/first.jpg", "AURORA/data/something/frames/43428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from measuring tape with your camera"}]} +{"id": "000000112999", "images": ["AURORA/data/something/frames/212/first.jpg", "AURORA/data/something/frames/212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paint tube next to cactus"}]} +{"id": "000000113000", "images": ["AURORA/data/something/frames/85066/first.jpg", "AURORA/data/something/frames/85066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb cable into a desktop microphone but pulling it right out as you remove your hand"}]} +{"id": "000000113001", "images": ["AURORA/data/something/frames/73131/first.jpg", "AURORA/data/something/frames/73131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000113002", "images": ["AURORA/data/something/frames/71103/first.jpg", "AURORA/data/something/frames/71103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a pencil without letting it drop down"}]} +{"id": "000000113003", "images": ["AURORA/data/something/frames/66545/first.jpg", "AURORA/data/something/frames/66545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a wall plug but pulling it right out as you remove your hand"}]} +{"id": "000000113004", "images": ["AURORA/data/something/frames/60960/first.jpg", "AURORA/data/something/frames/60960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a tissue"}]} +{"id": "000000113005", "images": ["AURORA/data/something/frames/59884/first.jpg", "AURORA/data/something/frames/59884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000113006", "images": ["AURORA/data/something/frames/203473/first.jpg", "AURORA/data/something/frames/203473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming old mobile phone"}]} +{"id": "000000113007", "images": ["AURORA/data/something/frames/114096/first.jpg", "AURORA/data/something/frames/114096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling laundry up"}]} +{"id": "000000113008", "images": ["AURORA/data/something/frames/10411/first.jpg", "AURORA/data/something/frames/10411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bag over"}]} +{"id": "000000113009", "images": ["AURORA/data/something/frames/200490/first.jpg", "AURORA/data/something/frames/200490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of cream container"}]} +{"id": "000000113010", "images": ["AURORA/data/something/frames/67325/first.jpg", "AURORA/data/something/frames/67325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toothpick container closer to a plate"}]} +{"id": "000000113011", "images": ["AURORA/data/something/frames/12499/first.jpg", "AURORA/data/something/frames/12499/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000113012", "images": ["AURORA/data/something/frames/115061/first.jpg", "AURORA/data/something/frames/115061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket but pulling it right out as you remove your hand"}]} +{"id": "000000113013", "images": ["AURORA/data/something/frames/146601/first.jpg", "AURORA/data/something/frames/146601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a glass on the table on its side, not upright"}]} +{"id": "000000113014", "images": ["AURORA/data/something/frames/72315/first.jpg", "AURORA/data/something/frames/72315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a chair in front of the door"}]} +{"id": "000000113015", "images": ["AURORA/data/something/frames/93845/first.jpg", "AURORA/data/something/frames/93845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a jug"}]} +{"id": "000000113016", "images": ["AURORA/data/something/frames/186786/first.jpg", "AURORA/data/something/frames/186786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a shoe and another shoe so they collide with each other"}]} +{"id": "000000113017", "images": ["AURORA/data/something/frames/48705/first.jpg", "AURORA/data/something/frames/48705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into electrical outlet"}]} +{"id": "000000113018", "images": ["AURORA/data/something/frames/143243/first.jpg", "AURORA/data/something/frames/143243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse up"}]} +{"id": "000000113019", "images": ["AURORA/data/something/frames/170105/first.jpg", "AURORA/data/something/frames/170105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a calculator with a cloth"}]} +{"id": "000000113020", "images": ["AURORA/data/something/frames/188811/first.jpg", "AURORA/data/something/frames/188811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon behind cup"}]} +{"id": "000000113021", "images": ["AURORA/data/something/frames/75635/first.jpg", "AURORA/data/something/frames/75635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy gun off of laptop"}]} +{"id": "000000113022", "images": ["AURORA/data/something/frames/217074/first.jpg", "AURORA/data/something/frames/217074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000113023", "images": ["AURORA/data/something/frames/29086/first.jpg", "AURORA/data/something/frames/29086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding handout"}]} +{"id": "000000113024", "images": ["AURORA/data/something/frames/184198/first.jpg", "AURORA/data/something/frames/184198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking notebook so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113025", "images": ["AURORA/data/something/frames/28327/first.jpg", "AURORA/data/something/frames/28327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a plastic container onto a slanted surface but it doesn't glide down"}]} +{"id": "000000113026", "images": ["AURORA/data/something/frames/179892/first.jpg", "AURORA/data/something/frames/179892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with glasses on it"}]} +{"id": "000000113027", "images": ["AURORA/data/something/frames/36298/first.jpg", "AURORA/data/something/frames/36298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on the table near pencils"}]} +{"id": "000000113028", "images": ["AURORA/data/something/frames/17014/first.jpg", "AURORA/data/something/frames/17014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing take-out menu into two pieces"}]} +{"id": "000000113029", "images": ["AURORA/data/something/frames/16724/first.jpg", "AURORA/data/something/frames/16724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000113030", "images": ["AURORA/data/something/frames/50807/first.jpg", "AURORA/data/something/frames/50807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving basketball up"}]} +{"id": "000000113031", "images": ["AURORA/data/something/frames/139524/first.jpg", "AURORA/data/something/frames/139524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissor away from pick"}]} +{"id": "000000113032", "images": ["AURORA/data/something/frames/53121/first.jpg", "AURORA/data/something/frames/53121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing water bottle, revealing a container behind"}]} +{"id": "000000113033", "images": ["AURORA/data/something/frames/186952/first.jpg", "AURORA/data/something/frames/186952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lip bam and pen closer to each other"}]} +{"id": "000000113034", "images": ["AURORA/data/something/frames/157010/first.jpg", "AURORA/data/something/frames/157010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup, stapler and scissors on the table"}]} +{"id": "000000113035", "images": ["AURORA/data/something/frames/57794/first.jpg", "AURORA/data/something/frames/57794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing aim toothpaste so that it almost falls off but doesn't"}]} +{"id": "000000113036", "images": ["AURORA/data/something/frames/177002/first.jpg", "AURORA/data/something/frames/177002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb onto toy"}]} +{"id": "000000113037", "images": ["AURORA/data/something/frames/217026/first.jpg", "AURORA/data/something/frames/217026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000113038", "images": ["AURORA/data/something/frames/31627/first.jpg", "AURORA/data/something/frames/31627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tab of soda can"}]} +{"id": "000000113039", "images": ["AURORA/data/something/frames/191966/first.jpg", "AURORA/data/something/frames/191966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into phone charger but pulling it right out as you remove your hand"}]} +{"id": "000000113040", "images": ["AURORA/data/something/frames/12454/first.jpg", "AURORA/data/something/frames/12454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering spoon with plate"}]} +{"id": "000000113041", "images": ["AURORA/data/something/frames/89232/first.jpg", "AURORA/data/something/frames/89232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soap and nail cutter so they pass each other"}]} +{"id": "000000113042", "images": ["AURORA/data/something/frames/92825/first.jpg", "AURORA/data/something/frames/92825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting remote up completely without letting it drop down"}]} +{"id": "000000113043", "images": ["AURORA/data/something/frames/634/first.jpg", "AURORA/data/something/frames/634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening hot case"}]} +{"id": "000000113044", "images": ["AURORA/data/something/frames/29503/first.jpg", "AURORA/data/something/frames/29503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from hair dryer with your camera"}]} +{"id": "000000113045", "images": ["AURORA/data/something/frames/155826/first.jpg", "AURORA/data/something/frames/155826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind jar"}]} +{"id": "000000113046", "images": ["AURORA/data/something/frames/13933/first.jpg", "AURORA/data/something/frames/13933/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching lid to bottle"}]} +{"id": "000000113047", "images": ["AURORA/data/something/frames/171834/first.jpg", "AURORA/data/something/frames/171834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ashtray underneath table"}]} +{"id": "000000113048", "images": ["AURORA/data/something/frames/125162/first.jpg", "AURORA/data/something/frames/125162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a handkerchief"}]} +{"id": "000000113049", "images": ["AURORA/data/something/frames/87024/first.jpg", "AURORA/data/something/frames/87024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing clip behind"}]} +{"id": "000000113050", "images": ["AURORA/data/something/frames/153049/first.jpg", "AURORA/data/something/frames/153049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tape measurer so that it deforms"}]} +{"id": "000000113051", "images": ["AURORA/data/something/frames/85694/first.jpg", "AURORA/data/something/frames/85694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cup with a rag"}]} +{"id": "000000113052", "images": ["AURORA/data/something/frames/97259/first.jpg", "AURORA/data/something/frames/97259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto headlight of scooter"}]} +{"id": "000000113053", "images": ["AURORA/data/something/frames/89405/first.jpg", "AURORA/data/something/frames/89405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening banana"}]} +{"id": "000000113054", "images": ["AURORA/data/something/frames/65007/first.jpg", "AURORA/data/something/frames/65007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box in front of remote"}]} +{"id": "000000113055", "images": ["AURORA/data/something/frames/163756/first.jpg", "AURORA/data/something/frames/163756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a mug with paper towel on it"}]} +{"id": "000000113056", "images": ["AURORA/data/something/frames/197580/first.jpg", "AURORA/data/something/frames/197580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch towards the camera"}]} +{"id": "000000113057", "images": ["AURORA/data/something/frames/68400/first.jpg", "AURORA/data/something/frames/68400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone and a lighter so they pass each other"}]} +{"id": "000000113058", "images": ["AURORA/data/something/frames/53492/first.jpg", "AURORA/data/something/frames/53492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle on a surface"}]} +{"id": "000000113059", "images": ["AURORA/data/something/frames/141300/first.jpg", "AURORA/data/something/frames/141300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into basket"}]} +{"id": "000000113060", "images": ["AURORA/data/something/frames/133777/first.jpg", "AURORA/data/something/frames/133777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into cup"}]} +{"id": "000000113061", "images": ["AURORA/data/something/frames/84130/first.jpg", "AURORA/data/something/frames/84130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping cooking plane off of dirt"}]} +{"id": "000000113062", "images": ["AURORA/data/something/frames/79298/first.jpg", "AURORA/data/something/frames/79298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling shoe from behind of wall"}]} +{"id": "000000113063", "images": ["AURORA/data/something/frames/130879/first.jpg", "AURORA/data/something/frames/130879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000113064", "images": ["AURORA/data/something/frames/99704/first.jpg", "AURORA/data/something/frames/99704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from traffic light with your camera"}]} +{"id": "000000113065", "images": ["AURORA/data/something/frames/75609/first.jpg", "AURORA/data/something/frames/75609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick so that it deforms"}]} +{"id": "000000113066", "images": ["AURORA/data/something/frames/56001/first.jpg", "AURORA/data/something/frames/56001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a pair of mens boxers"}]} +{"id": "000000113067", "images": ["AURORA/data/something/frames/7729/first.jpg", "AURORA/data/something/frames/7729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing container off of counter"}]} +{"id": "000000113068", "images": ["AURORA/data/something/frames/161729/first.jpg", "AURORA/data/something/frames/161729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting earphone onto keyboard"}]} +{"id": "000000113069", "images": ["AURORA/data/something/frames/75763/first.jpg", "AURORA/data/something/frames/75763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tablet box into coffe cup"}]} +{"id": "000000113070", "images": ["AURORA/data/something/frames/154344/first.jpg", "AURORA/data/something/frames/154344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting top in front of pan"}]} +{"id": "000000113071", "images": ["AURORA/data/something/frames/190961/first.jpg", "AURORA/data/something/frames/190961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg behind a cup"}]} +{"id": "000000113072", "images": ["AURORA/data/something/frames/75375/first.jpg", "AURORA/data/something/frames/75375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into cup"}]} +{"id": "000000113073", "images": ["AURORA/data/something/frames/27243/first.jpg", "AURORA/data/something/frames/27243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from fence with your camera"}]} +{"id": "000000113074", "images": ["AURORA/data/something/frames/76726/first.jpg", "AURORA/data/something/frames/76726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing book"}]} +{"id": "000000113075", "images": ["AURORA/data/something/frames/36913/first.jpg", "AURORA/data/something/frames/36913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering rock"}]} +{"id": "000000113076", "images": ["AURORA/data/something/frames/51007/first.jpg", "AURORA/data/something/frames/51007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000113077", "images": ["AURORA/data/something/frames/211829/first.jpg", "AURORA/data/something/frames/211829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000113078", "images": ["AURORA/data/something/frames/4581/first.jpg", "AURORA/data/something/frames/4581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy off of the table"}]} +{"id": "000000113079", "images": ["AURORA/data/something/frames/99072/first.jpg", "AURORA/data/something/frames/99072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the cube onto the fan so it falls down"}]} +{"id": "000000113080", "images": ["AURORA/data/something/frames/200198/first.jpg", "AURORA/data/something/frames/200198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup so that it almost falls off but doesn't"}]} +{"id": "000000113081", "images": ["AURORA/data/something/frames/197052/first.jpg", "AURORA/data/something/frames/197052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a piece of paper"}]} +{"id": "000000113082", "images": ["AURORA/data/something/frames/186266/first.jpg", "AURORA/data/something/frames/186266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bowl"}]} +{"id": "000000113083", "images": ["AURORA/data/something/frames/15490/first.jpg", "AURORA/data/something/frames/15490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a power supply cord into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000113084", "images": ["AURORA/data/something/frames/146728/first.jpg", "AURORA/data/something/frames/146728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning container upside down"}]} +{"id": "000000113085", "images": ["AURORA/data/something/frames/163959/first.jpg", "AURORA/data/something/frames/163959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a pencil case so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113086", "images": ["AURORA/data/something/frames/111838/first.jpg", "AURORA/data/something/frames/111838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking dustpan up"}]} +{"id": "000000113087", "images": ["AURORA/data/something/frames/160927/first.jpg", "AURORA/data/something/frames/160927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto countertop"}]} +{"id": "000000113088", "images": ["AURORA/data/something/frames/203624/first.jpg", "AURORA/data/something/frames/203624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank down"}]} +{"id": "000000113089", "images": ["AURORA/data/something/frames/131954/first.jpg", "AURORA/data/something/frames/131954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing booklet into two pieces"}]} +{"id": "000000113090", "images": ["AURORA/data/something/frames/102754/first.jpg", "AURORA/data/something/frames/102754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into backpack"}]} +{"id": "000000113091", "images": ["AURORA/data/something/frames/202448/first.jpg", "AURORA/data/something/frames/202448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candles"}]} +{"id": "000000113092", "images": ["AURORA/data/something/frames/130876/first.jpg", "AURORA/data/something/frames/130876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book next to book"}]} +{"id": "000000113093", "images": ["AURORA/data/something/frames/14594/first.jpg", "AURORA/data/something/frames/14594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a sneaker away from a backpack"}]} +{"id": "000000113094", "images": ["AURORA/data/something/frames/69683/first.jpg", "AURORA/data/something/frames/69683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into amp but pulling it right out as you remove your hand"}]} +{"id": "000000113095", "images": ["AURORA/data/something/frames/96210/first.jpg", "AURORA/data/something/frames/96210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from safety helmet with your camera"}]} +{"id": "000000113096", "images": ["AURORA/data/something/frames/63696/first.jpg", "AURORA/data/something/frames/63696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000113097", "images": ["AURORA/data/something/frames/94286/first.jpg", "AURORA/data/something/frames/94286/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering mobile with tissue paper"}]} +{"id": "000000113098", "images": ["AURORA/data/something/frames/146684/first.jpg", "AURORA/data/something/frames/146684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming pictures"}]} +{"id": "000000113099", "images": ["AURORA/data/something/frames/150496/first.jpg", "AURORA/data/something/frames/150496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flat box closer to flat box"}]} +{"id": "000000113100", "images": ["AURORA/data/something/frames/50882/first.jpg", "AURORA/data/something/frames/50882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting ruler with paper on it"}]} +{"id": "000000113101", "images": ["AURORA/data/something/frames/10285/first.jpg", "AURORA/data/something/frames/10285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113102", "images": ["AURORA/data/something/frames/64755/first.jpg", "AURORA/data/something/frames/64755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping drop something onto something"}]} +{"id": "000000113103", "images": ["AURORA/data/something/frames/129543/first.jpg", "AURORA/data/something/frames/129543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bottle top"}]} +{"id": "000000113104", "images": ["AURORA/data/something/frames/86025/first.jpg", "AURORA/data/something/frames/86025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cashew"}]} +{"id": "000000113105", "images": ["AURORA/data/something/frames/77368/first.jpg", "AURORA/data/something/frames/77368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting computer mouse with ios usb charger adaptor on it"}]} +{"id": "000000113106", "images": ["AURORA/data/something/frames/83716/first.jpg", "AURORA/data/something/frames/83716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tea infuser out of mug"}]} +{"id": "000000113107", "images": ["AURORA/data/something/frames/16284/first.jpg", "AURORA/data/something/frames/16284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending bag so that it deforms"}]} +{"id": "000000113108", "images": ["AURORA/data/something/frames/203449/first.jpg", "AURORA/data/something/frames/203449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a sticky note to the wall"}]} +{"id": "000000113109", "images": ["AURORA/data/something/frames/150483/first.jpg", "AURORA/data/something/frames/150483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ipad upright on the table, so it falls on its side"}]} +{"id": "000000113110", "images": ["AURORA/data/something/frames/41116/first.jpg", "AURORA/data/something/frames/41116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking toothpick"}]} +{"id": "000000113111", "images": ["AURORA/data/something/frames/73342/first.jpg", "AURORA/data/something/frames/73342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000113112", "images": ["AURORA/data/something/frames/123179/first.jpg", "AURORA/data/something/frames/123179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting rubber band similar to other rubber bands that are already on the table"}]} +{"id": "000000113113", "images": ["AURORA/data/something/frames/193901/first.jpg", "AURORA/data/something/frames/193901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling wristwatch from left to right"}]} +{"id": "000000113114", "images": ["AURORA/data/something/frames/13497/first.jpg", "AURORA/data/something/frames/13497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wristwatch next to a bottle"}]} +{"id": "000000113115", "images": ["AURORA/data/something/frames/182501/first.jpg", "AURORA/data/something/frames/182501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening window"}]} +{"id": "000000113116", "images": ["AURORA/data/something/frames/131389/first.jpg", "AURORA/data/something/frames/131389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bobby pin next to pencil"}]} +{"id": "000000113117", "images": ["AURORA/data/something/frames/106485/first.jpg", "AURORA/data/something/frames/106485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000113118", "images": ["AURORA/data/something/frames/199741/first.jpg", "AURORA/data/something/frames/199741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening closet"}]} +{"id": "000000113119", "images": ["AURORA/data/something/frames/143420/first.jpg", "AURORA/data/something/frames/143420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing napkin into glass"}]} +{"id": "000000113120", "images": ["AURORA/data/something/frames/10154/first.jpg", "AURORA/data/something/frames/10154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming mosquito repellent"}]} +{"id": "000000113121", "images": ["AURORA/data/something/frames/201342/first.jpg", "AURORA/data/something/frames/201342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar on a surface"}]} +{"id": "000000113122", "images": ["AURORA/data/something/frames/52497/first.jpg", "AURORA/data/something/frames/52497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing glass jar"}]} +{"id": "000000113123", "images": ["AURORA/data/something/frames/88701/first.jpg", "AURORA/data/something/frames/88701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper just a little bit"}]} +{"id": "000000113124", "images": ["AURORA/data/something/frames/168954/first.jpg", "AURORA/data/something/frames/168954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box"}]} +{"id": "000000113125", "images": ["AURORA/data/something/frames/17545/first.jpg", "AURORA/data/something/frames/17545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a lighter up completely without letting it drop down"}]} +{"id": "000000113126", "images": ["AURORA/data/something/frames/59511/first.jpg", "AURORA/data/something/frames/59511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tissus from tissue box"}]} +{"id": "000000113127", "images": ["AURORA/data/something/frames/172216/first.jpg", "AURORA/data/something/frames/172216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000113128", "images": ["AURORA/data/something/frames/211857/first.jpg", "AURORA/data/something/frames/211857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000113129", "images": ["AURORA/data/something/frames/161435/first.jpg", "AURORA/data/something/frames/161435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an adaptor but pulling it right out as you remove your hand"}]} +{"id": "000000113130", "images": ["AURORA/data/something/frames/146574/first.jpg", "AURORA/data/something/frames/146574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a coffee mug"}]} +{"id": "000000113131", "images": ["AURORA/data/something/frames/160612/first.jpg", "AURORA/data/something/frames/160612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hair bows onto phone"}]} +{"id": "000000113132", "images": ["AURORA/data/something/frames/124448/first.jpg", "AURORA/data/something/frames/124448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging hdmi cable into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000113133", "images": ["AURORA/data/something/frames/29178/first.jpg", "AURORA/data/something/frames/29178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing jar with tripod"}]} +{"id": "000000113134", "images": ["AURORA/data/something/frames/76465/first.jpg", "AURORA/data/something/frames/76465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking battery from floor"}]} +{"id": "000000113135", "images": ["AURORA/data/something/frames/44716/first.jpg", "AURORA/data/something/frames/44716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a wooden stick until it breaks"}]} +{"id": "000000113136", "images": ["AURORA/data/something/frames/157934/first.jpg", "AURORA/data/something/frames/157934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a cooking pot with a chopstick"}]} +{"id": "000000113137", "images": ["AURORA/data/something/frames/142200/first.jpg", "AURORA/data/something/frames/142200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a sharpener"}]} +{"id": "000000113138", "images": ["AURORA/data/something/frames/186609/first.jpg", "AURORA/data/something/frames/186609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving post-it notes up"}]} +{"id": "000000113139", "images": ["AURORA/data/something/frames/57197/first.jpg", "AURORA/data/something/frames/57197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle in front of marker"}]} +{"id": "000000113140", "images": ["AURORA/data/something/frames/153182/first.jpg", "AURORA/data/something/frames/153182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coin from box"}]} +{"id": "000000113141", "images": ["AURORA/data/something/frames/4411/first.jpg", "AURORA/data/something/frames/4411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113142", "images": ["AURORA/data/something/frames/212727/first.jpg", "AURORA/data/something/frames/212727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming me"}]} +{"id": "000000113143", "images": ["AURORA/data/something/frames/78984/first.jpg", "AURORA/data/something/frames/78984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet into two pieces"}]} +{"id": "000000113144", "images": ["AURORA/data/something/frames/36339/first.jpg", "AURORA/data/something/frames/36339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming dining room"}]} +{"id": "000000113145", "images": ["AURORA/data/something/frames/165413/first.jpg", "AURORA/data/something/frames/165413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a yogurt container"}]} +{"id": "000000113146", "images": ["AURORA/data/something/frames/20598/first.jpg", "AURORA/data/something/frames/20598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tablet computer upright on the table"}]} +{"id": "000000113147", "images": ["AURORA/data/something/frames/160896/first.jpg", "AURORA/data/something/frames/160896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy closer to toy"}]} +{"id": "000000113148", "images": ["AURORA/data/something/frames/17149/first.jpg", "AURORA/data/something/frames/17149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a cabinet"}]} +{"id": "000000113149", "images": ["AURORA/data/something/frames/119546/first.jpg", "AURORA/data/something/frames/119546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into the wall but pulling it right out as you remove your hand"}]} +{"id": "000000113150", "images": ["AURORA/data/something/frames/197445/first.jpg", "AURORA/data/something/frames/197445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle with scissors"}]} +{"id": "000000113151", "images": ["AURORA/data/something/frames/171693/first.jpg", "AURORA/data/something/frames/171693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mobile phone upright on the table, so it falls on its side"}]} +{"id": "000000113152", "images": ["AURORA/data/something/frames/164346/first.jpg", "AURORA/data/something/frames/164346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter and lighter on the table"}]} +{"id": "000000113153", "images": ["AURORA/data/something/frames/20243/first.jpg", "AURORA/data/something/frames/20243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging two pin into socket"}]} +{"id": "000000113154", "images": ["AURORA/data/something/frames/10207/first.jpg", "AURORA/data/something/frames/10207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a flashlight up"}]} +{"id": "000000113155", "images": ["AURORA/data/something/frames/22418/first.jpg", "AURORA/data/something/frames/22418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box and bottle away from each other"}]} +{"id": "000000113156", "images": ["AURORA/data/something/frames/185982/first.jpg", "AURORA/data/something/frames/185982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something towards the camera"}]} +{"id": "000000113157", "images": ["AURORA/data/something/frames/183706/first.jpg", "AURORA/data/something/frames/183706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming pink toothbrush case"}]} +{"id": "000000113158", "images": ["AURORA/data/something/frames/122582/first.jpg", "AURORA/data/something/frames/122582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a book up"}]} +{"id": "000000113159", "images": ["AURORA/data/something/frames/101197/first.jpg", "AURORA/data/something/frames/101197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning mix cup upside down"}]} +{"id": "000000113160", "images": ["AURORA/data/something/frames/91630/first.jpg", "AURORA/data/something/frames/91630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113161", "images": ["AURORA/data/something/frames/55310/first.jpg", "AURORA/data/something/frames/55310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with pennies over, so pennies falls out"}]} +{"id": "000000113162", "images": ["AURORA/data/something/frames/49667/first.jpg", "AURORA/data/something/frames/49667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching peg to usb cable"}]} +{"id": "000000113163", "images": ["AURORA/data/something/frames/77990/first.jpg", "AURORA/data/something/frames/77990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of blocks so the stack collapses"}]} +{"id": "000000113164", "images": ["AURORA/data/something/frames/123585/first.jpg", "AURORA/data/something/frames/123585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000113165", "images": ["AURORA/data/something/frames/50906/first.jpg", "AURORA/data/something/frames/50906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic container on a surface"}]} +{"id": "000000113166", "images": ["AURORA/data/something/frames/178084/first.jpg", "AURORA/data/something/frames/178084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into extension cord but pulling it right out as you remove your hand"}]} +{"id": "000000113167", "images": ["AURORA/data/something/frames/2426/first.jpg", "AURORA/data/something/frames/2426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning jar upside down"}]} +{"id": "000000113168", "images": ["AURORA/data/something/frames/209649/first.jpg", "AURORA/data/something/frames/209649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pebble with wooden stick"}]} +{"id": "000000113169", "images": ["AURORA/data/something/frames/30467/first.jpg", "AURORA/data/something/frames/30467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into an envelope"}]} +{"id": "000000113170", "images": ["AURORA/data/something/frames/92639/first.jpg", "AURORA/data/something/frames/92639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cereal into mouth"}]} +{"id": "000000113171", "images": ["AURORA/data/something/frames/151044/first.jpg", "AURORA/data/something/frames/151044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cell phone on a surface"}]} +{"id": "000000113172", "images": ["AURORA/data/something/frames/78618/first.jpg", "AURORA/data/something/frames/78618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000113173", "images": ["AURORA/data/something/frames/205149/first.jpg", "AURORA/data/something/frames/205149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a cup so that it falls over"}]} +{"id": "000000113174", "images": ["AURORA/data/something/frames/176086/first.jpg", "AURORA/data/something/frames/176086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a water bottle over"}]} +{"id": "000000113175", "images": ["AURORA/data/something/frames/52130/first.jpg", "AURORA/data/something/frames/52130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking silverware"}]} +{"id": "000000113176", "images": ["AURORA/data/something/frames/152091/first.jpg", "AURORA/data/something/frames/152091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from old mobile phone with your camera"}]} +{"id": "000000113177", "images": ["AURORA/data/something/frames/53788/first.jpg", "AURORA/data/something/frames/53788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting red toy car with marker pen"}]} +{"id": "000000113178", "images": ["AURORA/data/something/frames/171374/first.jpg", "AURORA/data/something/frames/171374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping battery behind cup"}]} +{"id": "000000113179", "images": ["AURORA/data/something/frames/67153/first.jpg", "AURORA/data/something/frames/67153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming brown case"}]} +{"id": "000000113180", "images": ["AURORA/data/something/frames/62193/first.jpg", "AURORA/data/something/frames/62193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shoe box from right to left"}]} +{"id": "000000113181", "images": ["AURORA/data/something/frames/30509/first.jpg", "AURORA/data/something/frames/30509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into laptop"}]} +{"id": "000000113182", "images": ["AURORA/data/something/frames/119930/first.jpg", "AURORA/data/something/frames/119930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of banana without letting it drop down"}]} +{"id": "000000113183", "images": ["AURORA/data/something/frames/124878/first.jpg", "AURORA/data/something/frames/124878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into a box"}]} +{"id": "000000113184", "images": ["AURORA/data/something/frames/49099/first.jpg", "AURORA/data/something/frames/49099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching granola bar with your camera"}]} +{"id": "000000113185", "images": ["AURORA/data/something/frames/131557/first.jpg", "AURORA/data/something/frames/131557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lime and lime away from each other"}]} +{"id": "000000113186", "images": ["AURORA/data/something/frames/144615/first.jpg", "AURORA/data/something/frames/144615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening purse"}]} +{"id": "000000113187", "images": ["AURORA/data/something/frames/23907/first.jpg", "AURORA/data/something/frames/23907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a container on the table on its side, not upright"}]} +{"id": "000000113188", "images": ["AURORA/data/something/frames/126582/first.jpg", "AURORA/data/something/frames/126582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving punching machine closer to wallet"}]} +{"id": "000000113189", "images": ["AURORA/data/something/frames/185757/first.jpg", "AURORA/data/something/frames/185757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a coin with another coin"}]} +{"id": "000000113190", "images": ["AURORA/data/something/frames/3793/first.jpg", "AURORA/data/something/frames/3793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a yellow pen in front of a screen"}]} +{"id": "000000113191", "images": ["AURORA/data/something/frames/92489/first.jpg", "AURORA/data/something/frames/92489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug adapter into a wall socket"}]} +{"id": "000000113192", "images": ["AURORA/data/something/frames/149612/first.jpg", "AURORA/data/something/frames/149612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and bottle away from each other"}]} +{"id": "000000113193", "images": ["AURORA/data/something/frames/135355/first.jpg", "AURORA/data/something/frames/135355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wine key and chapstick on the table"}]} +{"id": "000000113194", "images": ["AURORA/data/something/frames/174956/first.jpg", "AURORA/data/something/frames/174956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book across a surface without it falling down"}]} +{"id": "000000113195", "images": ["AURORA/data/something/frames/28601/first.jpg", "AURORA/data/something/frames/28601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rocks and rocks away from each other"}]} +{"id": "000000113196", "images": ["AURORA/data/something/frames/26971/first.jpg", "AURORA/data/something/frames/26971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) keys of keyboard"}]} +{"id": "000000113197", "images": ["AURORA/data/something/frames/199245/first.jpg", "AURORA/data/something/frames/199245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hairclip and ice tray closer to each other"}]} +{"id": "000000113198", "images": ["AURORA/data/something/frames/167436/first.jpg", "AURORA/data/something/frames/167436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing printer paper into two pieces"}]} +{"id": "000000113199", "images": ["AURORA/data/something/frames/184772/first.jpg", "AURORA/data/something/frames/184772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda out of cup"}]} +{"id": "000000113200", "images": ["AURORA/data/something/frames/142357/first.jpg", "AURORA/data/something/frames/142357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000113201", "images": ["AURORA/data/something/frames/109948/first.jpg", "AURORA/data/something/frames/109948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking car out of basket"}]} +{"id": "000000113202", "images": ["AURORA/data/something/frames/212394/first.jpg", "AURORA/data/something/frames/212394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a paper clip so that it deforms"}]} +{"id": "000000113203", "images": ["AURORA/data/something/frames/86565/first.jpg", "AURORA/data/something/frames/86565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white badge with wooden stick"}]} +{"id": "000000113204", "images": ["AURORA/data/something/frames/24659/first.jpg", "AURORA/data/something/frames/24659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) front of book"}]} +{"id": "000000113205", "images": ["AURORA/data/something/frames/99273/first.jpg", "AURORA/data/something/frames/99273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank up"}]} +{"id": "000000113206", "images": ["AURORA/data/something/frames/182096/first.jpg", "AURORA/data/something/frames/182096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pink blush on from right to left"}]} +{"id": "000000113207", "images": ["AURORA/data/something/frames/74983/first.jpg", "AURORA/data/something/frames/74983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug on a surface"}]} +{"id": "000000113208", "images": ["AURORA/data/something/frames/185777/first.jpg", "AURORA/data/something/frames/185777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing play-doh behind"}]} +{"id": "000000113209", "images": ["AURORA/data/something/frames/150301/first.jpg", "AURORA/data/something/frames/150301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup upright on the table"}]} +{"id": "000000113210", "images": ["AURORA/data/something/frames/191701/first.jpg", "AURORA/data/something/frames/191701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting marker pen up completely without letting it drop down"}]} +{"id": "000000113211", "images": ["AURORA/data/something/frames/30315/first.jpg", "AURORA/data/something/frames/30315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plate from left to right"}]} +{"id": "000000113212", "images": ["AURORA/data/something/frames/93580/first.jpg", "AURORA/data/something/frames/93580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cigarrete butt so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113213", "images": ["AURORA/data/something/frames/62813/first.jpg", "AURORA/data/something/frames/62813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cards on a surface"}]} +{"id": "000000113214", "images": ["AURORA/data/something/frames/11687/first.jpg", "AURORA/data/something/frames/11687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a phone but pulling it right out as you remove your hand"}]} +{"id": "000000113215", "images": ["AURORA/data/something/frames/77265/first.jpg", "AURORA/data/something/frames/77265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113216", "images": ["AURORA/data/something/frames/108595/first.jpg", "AURORA/data/something/frames/108595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000113217", "images": ["AURORA/data/something/frames/476/first.jpg", "AURORA/data/something/frames/476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green bowl with spoon"}]} +{"id": "000000113218", "images": ["AURORA/data/something/frames/142530/first.jpg", "AURORA/data/something/frames/142530/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering smartphone with pillow"}]} +{"id": "000000113219", "images": ["AURORA/data/something/frames/159882/first.jpg", "AURORA/data/something/frames/159882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking an adapter from an outlet"}]} +{"id": "000000113220", "images": ["AURORA/data/something/frames/31914/first.jpg", "AURORA/data/something/frames/31914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming pictures"}]} +{"id": "000000113221", "images": ["AURORA/data/something/frames/184108/first.jpg", "AURORA/data/something/frames/184108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a shirt into a laundry basket"}]} +{"id": "000000113222", "images": ["AURORA/data/something/frames/106813/first.jpg", "AURORA/data/something/frames/106813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping knife next to fork"}]} +{"id": "000000113223", "images": ["AURORA/data/something/frames/156401/first.jpg", "AURORA/data/something/frames/156401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening door"}]} +{"id": "000000113224", "images": ["AURORA/data/something/frames/204017/first.jpg", "AURORA/data/something/frames/204017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one button from many buttons"}]} +{"id": "000000113225", "images": ["AURORA/data/something/frames/5916/first.jpg", "AURORA/data/something/frames/5916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking game piece out of container"}]} +{"id": "000000113226", "images": ["AURORA/data/something/frames/88381/first.jpg", "AURORA/data/something/frames/88381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113227", "images": ["AURORA/data/something/frames/112174/first.jpg", "AURORA/data/something/frames/112174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic screwcap next to mug"}]} +{"id": "000000113228", "images": ["AURORA/data/something/frames/1568/first.jpg", "AURORA/data/something/frames/1568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key away from comb"}]} +{"id": "000000113229", "images": ["AURORA/data/something/frames/218533/first.jpg", "AURORA/data/something/frames/218533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding shirt"}]} +{"id": "000000113230", "images": ["AURORA/data/something/frames/202332/first.jpg", "AURORA/data/something/frames/202332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphone into phone"}]} +{"id": "000000113231", "images": ["AURORA/data/something/frames/115579/first.jpg", "AURORA/data/something/frames/115579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball across a surface without it falling down"}]} +{"id": "000000113232", "images": ["AURORA/data/something/frames/26673/first.jpg", "AURORA/data/something/frames/26673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113233", "images": ["AURORA/data/something/frames/167701/first.jpg", "AURORA/data/something/frames/167701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into a bag"}]} +{"id": "000000113234", "images": ["AURORA/data/something/frames/183125/first.jpg", "AURORA/data/something/frames/183125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg behind a box"}]} +{"id": "000000113235", "images": ["AURORA/data/something/frames/183767/first.jpg", "AURORA/data/something/frames/183767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: nail clipper colliding with pen and both are being deflected"}]} +{"id": "000000113236", "images": ["AURORA/data/something/frames/106625/first.jpg", "AURORA/data/something/frames/106625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000113237", "images": ["AURORA/data/something/frames/169574/first.jpg", "AURORA/data/something/frames/169574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting laptop similar to other laptops that are already on the table"}]} +{"id": "000000113238", "images": ["AURORA/data/something/frames/69312/first.jpg", "AURORA/data/something/frames/69312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tube underneath bed"}]} +{"id": "000000113239", "images": ["AURORA/data/something/frames/51695/first.jpg", "AURORA/data/something/frames/51695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a rock from right to left"}]} +{"id": "000000113240", "images": ["AURORA/data/something/frames/66923/first.jpg", "AURORA/data/something/frames/66923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a powder tin towards the camera"}]} +{"id": "000000113241", "images": ["AURORA/data/something/frames/202803/first.jpg", "AURORA/data/something/frames/202803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spon down"}]} +{"id": "000000113242", "images": ["AURORA/data/something/frames/63313/first.jpg", "AURORA/data/something/frames/63313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coaster underneath cup"}]} +{"id": "000000113243", "images": ["AURORA/data/something/frames/183775/first.jpg", "AURORA/data/something/frames/183775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mouse from pad"}]} +{"id": "000000113244", "images": ["AURORA/data/something/frames/109557/first.jpg", "AURORA/data/something/frames/109557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paint tube behind cactus"}]} +{"id": "000000113245", "images": ["AURORA/data/something/frames/140935/first.jpg", "AURORA/data/something/frames/140935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a bucket with a toy bulldozer on it"}]} +{"id": "000000113246", "images": ["AURORA/data/something/frames/81367/first.jpg", "AURORA/data/something/frames/81367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling toy cars up"}]} +{"id": "000000113247", "images": ["AURORA/data/something/frames/199182/first.jpg", "AURORA/data/something/frames/199182/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a baby doll with a blanket"}]} +{"id": "000000113248", "images": ["AURORA/data/something/frames/134500/first.jpg", "AURORA/data/something/frames/134500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb cable away from usb"}]} +{"id": "000000113249", "images": ["AURORA/data/something/frames/159131/first.jpg", "AURORA/data/something/frames/159131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering coin with paper"}]} +{"id": "000000113250", "images": ["AURORA/data/something/frames/182806/first.jpg", "AURORA/data/something/frames/182806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a plastic bag"}]} +{"id": "000000113251", "images": ["AURORA/data/something/frames/39048/first.jpg", "AURORA/data/something/frames/39048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bag with a door hook"}]} +{"id": "000000113252", "images": ["AURORA/data/something/frames/69470/first.jpg", "AURORA/data/something/frames/69470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000113253", "images": ["AURORA/data/something/frames/63365/first.jpg", "AURORA/data/something/frames/63365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup away from plant"}]} +{"id": "000000113254", "images": ["AURORA/data/something/frames/156240/first.jpg", "AURORA/data/something/frames/156240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower down"}]} +{"id": "000000113255", "images": ["AURORA/data/something/frames/21438/first.jpg", "AURORA/data/something/frames/21438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening small freshmints"}]} +{"id": "000000113256", "images": ["AURORA/data/something/frames/84277/first.jpg", "AURORA/data/something/frames/84277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering screwdriver"}]} +{"id": "000000113257", "images": ["AURORA/data/something/frames/70659/first.jpg", "AURORA/data/something/frames/70659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle behind kendama"}]} +{"id": "000000113258", "images": ["AURORA/data/something/frames/190154/first.jpg", "AURORA/data/something/frames/190154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming dinosaur model"}]} +{"id": "000000113259", "images": ["AURORA/data/something/frames/92150/first.jpg", "AURORA/data/something/frames/92150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator down"}]} +{"id": "000000113260", "images": ["AURORA/data/something/frames/92925/first.jpg", "AURORA/data/something/frames/92925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging mouse into laptop"}]} +{"id": "000000113261", "images": ["AURORA/data/something/frames/25736/first.jpg", "AURORA/data/something/frames/25736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching toothbrush with your camera"}]} +{"id": "000000113262", "images": ["AURORA/data/something/frames/6879/first.jpg", "AURORA/data/something/frames/6879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with book on it"}]} +{"id": "000000113263", "images": ["AURORA/data/something/frames/172284/first.jpg", "AURORA/data/something/frames/172284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into plug hole"}]} +{"id": "000000113264", "images": ["AURORA/data/something/frames/101856/first.jpg", "AURORA/data/something/frames/101856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into plant"}]} +{"id": "000000113265", "images": ["AURORA/data/something/frames/107303/first.jpg", "AURORA/data/something/frames/107303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming pumpkin"}]} +{"id": "000000113266", "images": ["AURORA/data/something/frames/10773/first.jpg", "AURORA/data/something/frames/10773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a hair accessoire up"}]} +{"id": "000000113267", "images": ["AURORA/data/something/frames/170634/first.jpg", "AURORA/data/something/frames/170634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nailpolish down"}]} +{"id": "000000113268", "images": ["AURORA/data/something/frames/25393/first.jpg", "AURORA/data/something/frames/25393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring syrup into glass"}]} +{"id": "000000113269", "images": ["AURORA/data/something/frames/140620/first.jpg", "AURORA/data/something/frames/140620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering ball"}]} +{"id": "000000113270", "images": ["AURORA/data/something/frames/144126/first.jpg", "AURORA/data/something/frames/144126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pencil of school materials"}]} +{"id": "000000113271", "images": ["AURORA/data/something/frames/92056/first.jpg", "AURORA/data/something/frames/92056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000113272", "images": ["AURORA/data/something/frames/104601/first.jpg", "AURORA/data/something/frames/104601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tea out of box"}]} +{"id": "000000113273", "images": ["AURORA/data/something/frames/83133/first.jpg", "AURORA/data/something/frames/83133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a spoon onto a plate"}]} +{"id": "000000113274", "images": ["AURORA/data/something/frames/78437/first.jpg", "AURORA/data/something/frames/78437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping a lotion off of the table"}]} +{"id": "000000113275", "images": ["AURORA/data/something/frames/122884/first.jpg", "AURORA/data/something/frames/122884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000113276", "images": ["AURORA/data/something/frames/124792/first.jpg", "AURORA/data/something/frames/124792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding ipad cover"}]} +{"id": "000000113277", "images": ["AURORA/data/something/frames/135026/first.jpg", "AURORA/data/something/frames/135026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing computer mouse, revealing key behind"}]} +{"id": "000000113278", "images": ["AURORA/data/something/frames/5058/first.jpg", "AURORA/data/something/frames/5058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a piece of paper and a glass of cordial on the table"}]} +{"id": "000000113279", "images": ["AURORA/data/something/frames/41496/first.jpg", "AURORA/data/something/frames/41496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a wallet with a textsurfer"}]} +{"id": "000000113280", "images": ["AURORA/data/something/frames/54764/first.jpg", "AURORA/data/something/frames/54764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a book across a surface without it falling down"}]} +{"id": "000000113281", "images": ["AURORA/data/something/frames/168948/first.jpg", "AURORA/data/something/frames/168948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a deck of cards off of table"}]} +{"id": "000000113282", "images": ["AURORA/data/something/frames/208698/first.jpg", "AURORA/data/something/frames/208698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle cap so that it almost falls off but doesn't"}]} +{"id": "000000113283", "images": ["AURORA/data/something/frames/120142/first.jpg", "AURORA/data/something/frames/120142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113284", "images": ["AURORA/data/something/frames/26966/first.jpg", "AURORA/data/something/frames/26966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cut tomatoes into a bowl"}]} +{"id": "000000113285", "images": ["AURORA/data/something/frames/64506/first.jpg", "AURORA/data/something/frames/64506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking yellow highlighter"}]} +{"id": "000000113286", "images": ["AURORA/data/something/frames/52769/first.jpg", "AURORA/data/something/frames/52769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling scotch tape from right to left"}]} +{"id": "000000113287", "images": ["AURORA/data/something/frames/169085/first.jpg", "AURORA/data/something/frames/169085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming fan"}]} +{"id": "000000113288", "images": ["AURORA/data/something/frames/120364/first.jpg", "AURORA/data/something/frames/120364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming readymade dresses"}]} +{"id": "000000113289", "images": ["AURORA/data/something/frames/147269/first.jpg", "AURORA/data/something/frames/147269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing felt pen with pen"}]} +{"id": "000000113290", "images": ["AURORA/data/something/frames/98879/first.jpg", "AURORA/data/something/frames/98879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle and bottle on the table"}]} +{"id": "000000113291", "images": ["AURORA/data/something/frames/9317/first.jpg", "AURORA/data/something/frames/9317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen behind notebook"}]} +{"id": "000000113292", "images": ["AURORA/data/something/frames/152262/first.jpg", "AURORA/data/something/frames/152262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon upright on the table, so it falls on its side"}]} +{"id": "000000113293", "images": ["AURORA/data/something/frames/36254/first.jpg", "AURORA/data/something/frames/36254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into glue"}]} +{"id": "000000113294", "images": ["AURORA/data/something/frames/11334/first.jpg", "AURORA/data/something/frames/11334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113295", "images": ["AURORA/data/something/frames/83541/first.jpg", "AURORA/data/something/frames/83541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and glass away from each other"}]} +{"id": "000000113296", "images": ["AURORA/data/something/frames/8590/first.jpg", "AURORA/data/something/frames/8590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pillow onto floor"}]} +{"id": "000000113297", "images": ["AURORA/data/something/frames/135962/first.jpg", "AURORA/data/something/frames/135962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding hat"}]} +{"id": "000000113298", "images": ["AURORA/data/something/frames/1168/first.jpg", "AURORA/data/something/frames/1168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book off of table"}]} +{"id": "000000113299", "images": ["AURORA/data/something/frames/56795/first.jpg", "AURORA/data/something/frames/56795/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning remote control upside down"}]} +{"id": "000000113300", "images": ["AURORA/data/something/frames/137973/first.jpg", "AURORA/data/something/frames/137973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with tissue paper on it"}]} +{"id": "000000113301", "images": ["AURORA/data/something/frames/193333/first.jpg", "AURORA/data/something/frames/193333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon on a surface"}]} +{"id": "000000113302", "images": ["AURORA/data/something/frames/20396/first.jpg", "AURORA/data/something/frames/20396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and fruit away from each other"}]} +{"id": "000000113303", "images": ["AURORA/data/something/frames/75384/first.jpg", "AURORA/data/something/frames/75384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto frying pan"}]} +{"id": "000000113304", "images": ["AURORA/data/something/frames/4995/first.jpg", "AURORA/data/something/frames/4995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113305", "images": ["AURORA/data/something/frames/214017/first.jpg", "AURORA/data/something/frames/214017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging sunglass out of clothes bag"}]} +{"id": "000000113306", "images": ["AURORA/data/something/frames/75685/first.jpg", "AURORA/data/something/frames/75685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting egg"}]} +{"id": "000000113307", "images": ["AURORA/data/something/frames/75766/first.jpg", "AURORA/data/something/frames/75766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking six books"}]} +{"id": "000000113308", "images": ["AURORA/data/something/frames/108425/first.jpg", "AURORA/data/something/frames/108425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting wallet up completely without letting it drop down"}]} +{"id": "000000113309", "images": ["AURORA/data/something/frames/6954/first.jpg", "AURORA/data/something/frames/6954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding newspaper"}]} +{"id": "000000113310", "images": ["AURORA/data/something/frames/167356/first.jpg", "AURORA/data/something/frames/167356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a monkey figure and a monkey figure away from each other"}]} +{"id": "000000113311", "images": ["AURORA/data/something/frames/9497/first.jpg", "AURORA/data/something/frames/9497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with nail cutter"}]} +{"id": "000000113312", "images": ["AURORA/data/something/frames/50256/first.jpg", "AURORA/data/something/frames/50256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mouse with pen"}]} +{"id": "000000113313", "images": ["AURORA/data/something/frames/217306/first.jpg", "AURORA/data/something/frames/217306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a marker"}]} +{"id": "000000113314", "images": ["AURORA/data/something/frames/68391/first.jpg", "AURORA/data/something/frames/68391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a toy robot on it"}]} +{"id": "000000113315", "images": ["AURORA/data/something/frames/191006/first.jpg", "AURORA/data/something/frames/191006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a wok"}]} +{"id": "000000113316", "images": ["AURORA/data/something/frames/162881/first.jpg", "AURORA/data/something/frames/162881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin next to pen"}]} +{"id": "000000113317", "images": ["AURORA/data/something/frames/207417/first.jpg", "AURORA/data/something/frames/207417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy away from clip"}]} +{"id": "000000113318", "images": ["AURORA/data/something/frames/151614/first.jpg", "AURORA/data/something/frames/151614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk out of a jug"}]} +{"id": "000000113319", "images": ["AURORA/data/something/frames/25704/first.jpg", "AURORA/data/something/frames/25704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flowers"}]} +{"id": "000000113320", "images": ["AURORA/data/something/frames/114986/first.jpg", "AURORA/data/something/frames/114986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping flour up with measuring cup"}]} +{"id": "000000113321", "images": ["AURORA/data/something/frames/128956/first.jpg", "AURORA/data/something/frames/128956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a towel"}]} +{"id": "000000113322", "images": ["AURORA/data/something/frames/129615/first.jpg", "AURORA/data/something/frames/129615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000113323", "images": ["AURORA/data/something/frames/104368/first.jpg", "AURORA/data/something/frames/104368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote upright on the table, so it falls on its side"}]} +{"id": "000000113324", "images": ["AURORA/data/something/frames/218377/first.jpg", "AURORA/data/something/frames/218377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel up"}]} +{"id": "000000113325", "images": ["AURORA/data/something/frames/102782/first.jpg", "AURORA/data/something/frames/102782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling purple balloon pump from right to left"}]} +{"id": "000000113326", "images": ["AURORA/data/something/frames/46169/first.jpg", "AURORA/data/something/frames/46169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000113327", "images": ["AURORA/data/something/frames/206987/first.jpg", "AURORA/data/something/frames/206987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to cloth"}]} +{"id": "000000113328", "images": ["AURORA/data/something/frames/145492/first.jpg", "AURORA/data/something/frames/145492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a glue stick behind a box"}]} +{"id": "000000113329", "images": ["AURORA/data/something/frames/15498/first.jpg", "AURORA/data/something/frames/15498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a mouse from behind of a helmet"}]} +{"id": "000000113330", "images": ["AURORA/data/something/frames/31540/first.jpg", "AURORA/data/something/frames/31540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hand sanitizer upright on the table"}]} +{"id": "000000113331", "images": ["AURORA/data/something/frames/24321/first.jpg", "AURORA/data/something/frames/24321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming shampoo bottle"}]} +{"id": "000000113332", "images": ["AURORA/data/something/frames/23230/first.jpg", "AURORA/data/something/frames/23230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box, book and gum on the table"}]} +{"id": "000000113333", "images": ["AURORA/data/something/frames/200080/first.jpg", "AURORA/data/something/frames/200080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a face towel into a small bag"}]} +{"id": "000000113334", "images": ["AURORA/data/something/frames/107441/first.jpg", "AURORA/data/something/frames/107441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hairclip into a glas"}]} +{"id": "000000113335", "images": ["AURORA/data/something/frames/134541/first.jpg", "AURORA/data/something/frames/134541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving head charger and head charger away from each other"}]} +{"id": "000000113336", "images": ["AURORA/data/something/frames/91418/first.jpg", "AURORA/data/something/frames/91418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon up"}]} +{"id": "000000113337", "images": ["AURORA/data/something/frames/194218/first.jpg", "AURORA/data/something/frames/194218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting notebook with mouse on it"}]} +{"id": "000000113338", "images": ["AURORA/data/something/frames/4114/first.jpg", "AURORA/data/something/frames/4114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000113339", "images": ["AURORA/data/something/frames/135837/first.jpg", "AURORA/data/something/frames/135837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping tissues over"}]} +{"id": "000000113340", "images": ["AURORA/data/something/frames/23147/first.jpg", "AURORA/data/something/frames/23147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging candy mint out of blanket"}]} +{"id": "000000113341", "images": ["AURORA/data/something/frames/155310/first.jpg", "AURORA/data/something/frames/155310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shirt"}]} +{"id": "000000113342", "images": ["AURORA/data/something/frames/185280/first.jpg", "AURORA/data/something/frames/185280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote control with hand"}]} +{"id": "000000113343", "images": ["AURORA/data/something/frames/44303/first.jpg", "AURORA/data/something/frames/44303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plant on a surface"}]} +{"id": "000000113344", "images": ["AURORA/data/something/frames/143793/first.jpg", "AURORA/data/something/frames/143793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000113345", "images": ["AURORA/data/something/frames/31560/first.jpg", "AURORA/data/something/frames/31560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) switch of light"}]} +{"id": "000000113346", "images": ["AURORA/data/something/frames/146870/first.jpg", "AURORA/data/something/frames/146870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 striker coins onto black pouch"}]} +{"id": "000000113347", "images": ["AURORA/data/something/frames/36641/first.jpg", "AURORA/data/something/frames/36641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending spaghetti until it breaks"}]} +{"id": "000000113348", "images": ["AURORA/data/something/frames/26281/first.jpg", "AURORA/data/something/frames/26281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug"}]} +{"id": "000000113349", "images": ["AURORA/data/something/frames/8252/first.jpg", "AURORA/data/something/frames/8252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000113350", "images": ["AURORA/data/something/frames/195007/first.jpg", "AURORA/data/something/frames/195007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a watch from right to left"}]} +{"id": "000000113351", "images": ["AURORA/data/something/frames/50765/first.jpg", "AURORA/data/something/frames/50765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing notebooks into eco bag"}]} +{"id": "000000113352", "images": ["AURORA/data/something/frames/92475/first.jpg", "AURORA/data/something/frames/92475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening mixer-jar"}]} +{"id": "000000113353", "images": ["AURORA/data/something/frames/164584/first.jpg", "AURORA/data/something/frames/164584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall outlet"}]} +{"id": "000000113354", "images": ["AURORA/data/something/frames/87170/first.jpg", "AURORA/data/something/frames/87170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending wire so that it deforms"}]} +{"id": "000000113355", "images": ["AURORA/data/something/frames/62930/first.jpg", "AURORA/data/something/frames/62930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an electric plug into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000113356", "images": ["AURORA/data/something/frames/218360/first.jpg", "AURORA/data/something/frames/218360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one book of many similar books on the table"}]} +{"id": "000000113357", "images": ["AURORA/data/something/frames/95927/first.jpg", "AURORA/data/something/frames/95927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000113358", "images": ["AURORA/data/something/frames/64862/first.jpg", "AURORA/data/something/frames/64862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork"}]} +{"id": "000000113359", "images": ["AURORA/data/something/frames/16767/first.jpg", "AURORA/data/something/frames/16767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a toy out of a toy box"}]} +{"id": "000000113360", "images": ["AURORA/data/something/frames/8461/first.jpg", "AURORA/data/something/frames/8461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting hair band"}]} +{"id": "000000113361", "images": ["AURORA/data/something/frames/124081/first.jpg", "AURORA/data/something/frames/124081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 11 coins"}]} +{"id": "000000113362", "images": ["AURORA/data/something/frames/71827/first.jpg", "AURORA/data/something/frames/71827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toothbrush next to smart phone"}]} +{"id": "000000113363", "images": ["AURORA/data/something/frames/22668/first.jpg", "AURORA/data/something/frames/22668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113364", "images": ["AURORA/data/something/frames/164031/first.jpg", "AURORA/data/something/frames/164031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping mouse in front of keyboard"}]} +{"id": "000000113365", "images": ["AURORA/data/something/frames/47958/first.jpg", "AURORA/data/something/frames/47958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse away from keyboard"}]} +{"id": "000000113366", "images": ["AURORA/data/something/frames/124125/first.jpg", "AURORA/data/something/frames/124125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing plastic bags into a plastic bag"}]} +{"id": "000000113367", "images": ["AURORA/data/something/frames/45017/first.jpg", "AURORA/data/something/frames/45017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: rubber being deflected from pencil sharpener"}]} +{"id": "000000113368", "images": ["AURORA/data/something/frames/55733/first.jpg", "AURORA/data/something/frames/55733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113369", "images": ["AURORA/data/something/frames/68900/first.jpg", "AURORA/data/something/frames/68900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil closer to spoon"}]} +{"id": "000000113370", "images": ["AURORA/data/something/frames/110845/first.jpg", "AURORA/data/something/frames/110845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb drive into an adapter"}]} +{"id": "000000113371", "images": ["AURORA/data/something/frames/157672/first.jpg", "AURORA/data/something/frames/157672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with ball"}]} +{"id": "000000113372", "images": ["AURORA/data/something/frames/83920/first.jpg", "AURORA/data/something/frames/83920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of table"}]} +{"id": "000000113373", "images": ["AURORA/data/something/frames/180173/first.jpg", "AURORA/data/something/frames/180173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting one screw"}]} +{"id": "000000113374", "images": ["AURORA/data/something/frames/29894/first.jpg", "AURORA/data/something/frames/29894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a lid off"}]} +{"id": "000000113375", "images": ["AURORA/data/something/frames/145462/first.jpg", "AURORA/data/something/frames/145462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a fork away from a pencil"}]} +{"id": "000000113376", "images": ["AURORA/data/something/frames/145653/first.jpg", "AURORA/data/something/frames/145653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming car"}]} +{"id": "000000113377", "images": ["AURORA/data/something/frames/77223/first.jpg", "AURORA/data/something/frames/77223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering scissor with cloth"}]} +{"id": "000000113378", "images": ["AURORA/data/something/frames/77592/first.jpg", "AURORA/data/something/frames/77592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: remote being deflected from couch"}]} +{"id": "000000113379", "images": ["AURORA/data/something/frames/209593/first.jpg", "AURORA/data/something/frames/209593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tumblers"}]} +{"id": "000000113380", "images": ["AURORA/data/something/frames/57897/first.jpg", "AURORA/data/something/frames/57897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a glass so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113381", "images": ["AURORA/data/something/frames/93723/first.jpg", "AURORA/data/something/frames/93723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering coupon"}]} +{"id": "000000113382", "images": ["AURORA/data/something/frames/63586/first.jpg", "AURORA/data/something/frames/63586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: clip colliding with bottle and both come to a halt"}]} +{"id": "000000113383", "images": ["AURORA/data/something/frames/73270/first.jpg", "AURORA/data/something/frames/73270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting envelope"}]} +{"id": "000000113384", "images": ["AURORA/data/something/frames/80680/first.jpg", "AURORA/data/something/frames/80680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000113385", "images": ["AURORA/data/something/frames/101156/first.jpg", "AURORA/data/something/frames/101156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting eraser on a surface"}]} +{"id": "000000113386", "images": ["AURORA/data/something/frames/23152/first.jpg", "AURORA/data/something/frames/23152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering gear wheel"}]} +{"id": "000000113387", "images": ["AURORA/data/something/frames/29127/first.jpg", "AURORA/data/something/frames/29127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball into bucket"}]} +{"id": "000000113388", "images": ["AURORA/data/something/frames/145347/first.jpg", "AURORA/data/something/frames/145347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling soda pop can from behind of coffee can"}]} +{"id": "000000113389", "images": ["AURORA/data/something/frames/118293/first.jpg", "AURORA/data/something/frames/118293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote and earphones on the table"}]} +{"id": "000000113390", "images": ["AURORA/data/something/frames/109533/first.jpg", "AURORA/data/something/frames/109533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming audio sistem"}]} +{"id": "000000113391", "images": ["AURORA/data/something/frames/209224/first.jpg", "AURORA/data/something/frames/209224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bleacher with hat"}]} +{"id": "000000113392", "images": ["AURORA/data/something/frames/133812/first.jpg", "AURORA/data/something/frames/133812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling folders up"}]} +{"id": "000000113393", "images": ["AURORA/data/something/frames/179656/first.jpg", "AURORA/data/something/frames/179656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of cards so the stack collapses"}]} +{"id": "000000113394", "images": ["AURORA/data/something/frames/44055/first.jpg", "AURORA/data/something/frames/44055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into box but pulling it right out as you remove your hand"}]} +{"id": "000000113395", "images": ["AURORA/data/something/frames/95071/first.jpg", "AURORA/data/something/frames/95071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting pouch"}]} +{"id": "000000113396", "images": ["AURORA/data/something/frames/14001/first.jpg", "AURORA/data/something/frames/14001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling tissue out of tissue box"}]} +{"id": "000000113397", "images": ["AURORA/data/something/frames/181666/first.jpg", "AURORA/data/something/frames/181666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pillow with a hockey stick"}]} +{"id": "000000113398", "images": ["AURORA/data/something/frames/2684/first.jpg", "AURORA/data/something/frames/2684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box wood underneath heart wood"}]} +{"id": "000000113399", "images": ["AURORA/data/something/frames/58306/first.jpg", "AURORA/data/something/frames/58306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toy onto bed"}]} +{"id": "000000113400", "images": ["AURORA/data/something/frames/60831/first.jpg", "AURORA/data/something/frames/60831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving gear wheel closer to battery"}]} +{"id": "000000113401", "images": ["AURORA/data/something/frames/41824/first.jpg", "AURORA/data/something/frames/41824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter away from lighter"}]} +{"id": "000000113402", "images": ["AURORA/data/something/frames/217388/first.jpg", "AURORA/data/something/frames/217388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking tablet up"}]} +{"id": "000000113403", "images": ["AURORA/data/something/frames/37928/first.jpg", "AURORA/data/something/frames/37928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling colorful scarf from right to left"}]} +{"id": "000000113404", "images": ["AURORA/data/something/frames/122169/first.jpg", "AURORA/data/something/frames/122169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle behind another bottle"}]} +{"id": "000000113405", "images": ["AURORA/data/something/frames/107226/first.jpg", "AURORA/data/something/frames/107226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into adaptor"}]} +{"id": "000000113406", "images": ["AURORA/data/something/frames/183179/first.jpg", "AURORA/data/something/frames/183179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawyer"}]} +{"id": "000000113407", "images": ["AURORA/data/something/frames/217671/first.jpg", "AURORA/data/something/frames/217671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000113408", "images": ["AURORA/data/something/frames/94366/first.jpg", "AURORA/data/something/frames/94366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottlecap"}]} +{"id": "000000113409", "images": ["AURORA/data/something/frames/198126/first.jpg", "AURORA/data/something/frames/198126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a bottle, revealing key chain behind"}]} +{"id": "000000113410", "images": ["AURORA/data/something/frames/151270/first.jpg", "AURORA/data/something/frames/151270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a vessel"}]} +{"id": "000000113411", "images": ["AURORA/data/something/frames/44821/first.jpg", "AURORA/data/something/frames/44821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from toothpaste tube with your camera"}]} +{"id": "000000113412", "images": ["AURORA/data/something/frames/178023/first.jpg", "AURORA/data/something/frames/178023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse down"}]} +{"id": "000000113413", "images": ["AURORA/data/something/frames/48015/first.jpg", "AURORA/data/something/frames/48015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of match box"}]} +{"id": "000000113414", "images": ["AURORA/data/something/frames/5455/first.jpg", "AURORA/data/something/frames/5455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bangles"}]} +{"id": "000000113415", "images": ["AURORA/data/something/frames/62410/first.jpg", "AURORA/data/something/frames/62410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) flower of plant"}]} +{"id": "000000113416", "images": ["AURORA/data/something/frames/117031/first.jpg", "AURORA/data/something/frames/117031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red pot holder on a surface"}]} +{"id": "000000113417", "images": ["AURORA/data/something/frames/83901/first.jpg", "AURORA/data/something/frames/83901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113418", "images": ["AURORA/data/something/frames/48432/first.jpg", "AURORA/data/something/frames/48432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissor on the edge of slab so it is not supported and falls down"}]} +{"id": "000000113419", "images": ["AURORA/data/something/frames/161595/first.jpg", "AURORA/data/something/frames/161595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering red chili with small box"}]} +{"id": "000000113420", "images": ["AURORA/data/something/frames/24305/first.jpg", "AURORA/data/something/frames/24305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse closer to keyboard"}]} +{"id": "000000113421", "images": ["AURORA/data/something/frames/83961/first.jpg", "AURORA/data/something/frames/83961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: toy truck colliding with cup and both are being deflected"}]} +{"id": "000000113422", "images": ["AURORA/data/something/frames/55458/first.jpg", "AURORA/data/something/frames/55458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall but pulling it right out as you remove your hand"}]} +{"id": "000000113423", "images": ["AURORA/data/something/frames/641/first.jpg", "AURORA/data/something/frames/641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113424", "images": ["AURORA/data/something/frames/213166/first.jpg", "AURORA/data/something/frames/213166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pitcher upright on the table"}]} +{"id": "000000113425", "images": ["AURORA/data/something/frames/103953/first.jpg", "AURORA/data/something/frames/103953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a flask cover"}]} +{"id": "000000113426", "images": ["AURORA/data/something/frames/148093/first.jpg", "AURORA/data/something/frames/148093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a fork on the table"}]} +{"id": "000000113427", "images": ["AURORA/data/something/frames/201181/first.jpg", "AURORA/data/something/frames/201181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pencil until it breaks"}]} +{"id": "000000113428", "images": ["AURORA/data/something/frames/62458/first.jpg", "AURORA/data/something/frames/62458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bell pepper"}]} +{"id": "000000113429", "images": ["AURORA/data/something/frames/104517/first.jpg", "AURORA/data/something/frames/104517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving comb and calculator closer to each other"}]} +{"id": "000000113430", "images": ["AURORA/data/something/frames/45078/first.jpg", "AURORA/data/something/frames/45078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with folder"}]} +{"id": "000000113431", "images": ["AURORA/data/something/frames/197634/first.jpg", "AURORA/data/something/frames/197634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding coversheet"}]} +{"id": "000000113432", "images": ["AURORA/data/something/frames/82134/first.jpg", "AURORA/data/something/frames/82134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a deodorant and a glass closer to each other"}]} +{"id": "000000113433", "images": ["AURORA/data/something/frames/90043/first.jpg", "AURORA/data/something/frames/90043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering blue colour pen with white sheet"}]} +{"id": "000000113434", "images": ["AURORA/data/something/frames/104162/first.jpg", "AURORA/data/something/frames/104162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a laptop"}]} +{"id": "000000113435", "images": ["AURORA/data/something/frames/86694/first.jpg", "AURORA/data/something/frames/86694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and glass away from each other"}]} +{"id": "000000113436", "images": ["AURORA/data/something/frames/84304/first.jpg", "AURORA/data/something/frames/84304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) arm of action figure"}]} +{"id": "000000113437", "images": ["AURORA/data/something/frames/49586/first.jpg", "AURORA/data/something/frames/49586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting wash cloth"}]} +{"id": "000000113438", "images": ["AURORA/data/something/frames/186424/first.jpg", "AURORA/data/something/frames/186424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass"}]} +{"id": "000000113439", "images": ["AURORA/data/something/frames/143524/first.jpg", "AURORA/data/something/frames/143524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) hand rest of chair"}]} +{"id": "000000113440", "images": ["AURORA/data/something/frames/86489/first.jpg", "AURORA/data/something/frames/86489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sugar into sugar container"}]} +{"id": "000000113441", "images": ["AURORA/data/something/frames/141375/first.jpg", "AURORA/data/something/frames/141375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a bottle from left to right"}]} +{"id": "000000113442", "images": ["AURORA/data/something/frames/206796/first.jpg", "AURORA/data/something/frames/206796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle with pen"}]} +{"id": "000000113443", "images": ["AURORA/data/something/frames/104298/first.jpg", "AURORA/data/something/frames/104298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting matchbox behind mug"}]} +{"id": "000000113444", "images": ["AURORA/data/something/frames/62796/first.jpg", "AURORA/data/something/frames/62796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing letter just a little bit"}]} +{"id": "000000113445", "images": ["AURORA/data/something/frames/116520/first.jpg", "AURORA/data/something/frames/116520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping rocks up with trowel"}]} +{"id": "000000113446", "images": ["AURORA/data/something/frames/166665/first.jpg", "AURORA/data/something/frames/166665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming flower"}]} +{"id": "000000113447", "images": ["AURORA/data/something/frames/80699/first.jpg", "AURORA/data/something/frames/80699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming red watch box"}]} +{"id": "000000113448", "images": ["AURORA/data/something/frames/156641/first.jpg", "AURORA/data/something/frames/156641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup over"}]} +{"id": "000000113449", "images": ["AURORA/data/something/frames/193371/first.jpg", "AURORA/data/something/frames/193371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a measuring cup"}]} +{"id": "000000113450", "images": ["AURORA/data/something/frames/83781/first.jpg", "AURORA/data/something/frames/83781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg in front of a cup"}]} +{"id": "000000113451", "images": ["AURORA/data/something/frames/37985/first.jpg", "AURORA/data/something/frames/37985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ruler into mug"}]} +{"id": "000000113452", "images": ["AURORA/data/something/frames/177883/first.jpg", "AURORA/data/something/frames/177883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing keys from right to left"}]} +{"id": "000000113453", "images": ["AURORA/data/something/frames/161130/first.jpg", "AURORA/data/something/frames/161130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box"}]} +{"id": "000000113454", "images": ["AURORA/data/something/frames/132360/first.jpg", "AURORA/data/something/frames/132360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a box"}]} +{"id": "000000113455", "images": ["AURORA/data/something/frames/24706/first.jpg", "AURORA/data/something/frames/24706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tree branch up"}]} +{"id": "000000113456", "images": ["AURORA/data/something/frames/65519/first.jpg", "AURORA/data/something/frames/65519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping picture off of white board"}]} +{"id": "000000113457", "images": ["AURORA/data/something/frames/133262/first.jpg", "AURORA/data/something/frames/133262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pen"}]} +{"id": "000000113458", "images": ["AURORA/data/something/frames/153985/first.jpg", "AURORA/data/something/frames/153985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a mobile phone into the socket"}]} +{"id": "000000113459", "images": ["AURORA/data/something/frames/33257/first.jpg", "AURORA/data/something/frames/33257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000113460", "images": ["AURORA/data/something/frames/185578/first.jpg", "AURORA/data/something/frames/185578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle on the table on its side, not upright"}]} +{"id": "000000113461", "images": ["AURORA/data/something/frames/29727/first.jpg", "AURORA/data/something/frames/29727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse onto keyboard"}]} +{"id": "000000113462", "images": ["AURORA/data/something/frames/179922/first.jpg", "AURORA/data/something/frames/179922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a hand towel"}]} +{"id": "000000113463", "images": ["AURORA/data/something/frames/141102/first.jpg", "AURORA/data/something/frames/141102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving canister away from paper towels"}]} +{"id": "000000113464", "images": ["AURORA/data/something/frames/14731/first.jpg", "AURORA/data/something/frames/14731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling speaker from right to left"}]} +{"id": "000000113465", "images": ["AURORA/data/something/frames/168796/first.jpg", "AURORA/data/something/frames/168796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening opening a manicure set"}]} +{"id": "000000113466", "images": ["AURORA/data/something/frames/74305/first.jpg", "AURORA/data/something/frames/74305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling ketchup onto sink"}]} +{"id": "000000113467", "images": ["AURORA/data/something/frames/190447/first.jpg", "AURORA/data/something/frames/190447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching mobile to charger"}]} +{"id": "000000113468", "images": ["AURORA/data/something/frames/36022/first.jpg", "AURORA/data/something/frames/36022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening printer"}]} +{"id": "000000113469", "images": ["AURORA/data/something/frames/160396/first.jpg", "AURORA/data/something/frames/160396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering remote"}]} +{"id": "000000113470", "images": ["AURORA/data/something/frames/81061/first.jpg", "AURORA/data/something/frames/81061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113471", "images": ["AURORA/data/something/frames/72101/first.jpg", "AURORA/data/something/frames/72101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothbrush and toothpaste so they pass each other"}]} +{"id": "000000113472", "images": ["AURORA/data/something/frames/147306/first.jpg", "AURORA/data/something/frames/147306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into bowl"}]} +{"id": "000000113473", "images": ["AURORA/data/something/frames/181523/first.jpg", "AURORA/data/something/frames/181523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass up"}]} +{"id": "000000113474", "images": ["AURORA/data/something/frames/153109/first.jpg", "AURORA/data/something/frames/153109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening the water container"}]} +{"id": "000000113475", "images": ["AURORA/data/something/frames/210125/first.jpg", "AURORA/data/something/frames/210125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping jelly off of a book"}]} +{"id": "000000113476", "images": ["AURORA/data/something/frames/15035/first.jpg", "AURORA/data/something/frames/15035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming vanity bag"}]} +{"id": "000000113477", "images": ["AURORA/data/something/frames/155358/first.jpg", "AURORA/data/something/frames/155358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113478", "images": ["AURORA/data/something/frames/131001/first.jpg", "AURORA/data/something/frames/131001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cloth clip on a surface"}]} +{"id": "000000113479", "images": ["AURORA/data/something/frames/73884/first.jpg", "AURORA/data/something/frames/73884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a helmet with a pencil"}]} +{"id": "000000113480", "images": ["AURORA/data/something/frames/216559/first.jpg", "AURORA/data/something/frames/216559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a soda can on a surface"}]} +{"id": "000000113481", "images": ["AURORA/data/something/frames/113950/first.jpg", "AURORA/data/something/frames/113950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning wallet upside down"}]} +{"id": "000000113482", "images": ["AURORA/data/something/frames/91798/first.jpg", "AURORA/data/something/frames/91798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toy truck from right to left"}]} +{"id": "000000113483", "images": ["AURORA/data/something/frames/101552/first.jpg", "AURORA/data/something/frames/101552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a piece of paper"}]} +{"id": "000000113484", "images": ["AURORA/data/something/frames/148219/first.jpg", "AURORA/data/something/frames/148219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000113485", "images": ["AURORA/data/something/frames/34894/first.jpg", "AURORA/data/something/frames/34894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving brush and paper away from each other"}]} +{"id": "000000113486", "images": ["AURORA/data/something/frames/123711/first.jpg", "AURORA/data/something/frames/123711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing brown bracelet from right to left"}]} +{"id": "000000113487", "images": ["AURORA/data/something/frames/111006/first.jpg", "AURORA/data/something/frames/111006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) clasp of box"}]} +{"id": "000000113488", "images": ["AURORA/data/something/frames/63640/first.jpg", "AURORA/data/something/frames/63640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toothbrush with plate"}]} +{"id": "000000113489", "images": ["AURORA/data/something/frames/81503/first.jpg", "AURORA/data/something/frames/81503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tortilla until it breaks"}]} +{"id": "000000113490", "images": ["AURORA/data/something/frames/211835/first.jpg", "AURORA/data/something/frames/211835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering mug with towel"}]} +{"id": "000000113491", "images": ["AURORA/data/something/frames/92079/first.jpg", "AURORA/data/something/frames/92079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing spoon into cup"}]} +{"id": "000000113492", "images": ["AURORA/data/something/frames/166754/first.jpg", "AURORA/data/something/frames/166754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding magazine"}]} +{"id": "000000113493", "images": ["AURORA/data/something/frames/85036/first.jpg", "AURORA/data/something/frames/85036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: adhesive can colliding with candle and both come to a halt"}]} +{"id": "000000113494", "images": ["AURORA/data/something/frames/118902/first.jpg", "AURORA/data/something/frames/118902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a book with a bottle"}]} +{"id": "000000113495", "images": ["AURORA/data/something/frames/129492/first.jpg", "AURORA/data/something/frames/129492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding sheet of paper"}]} +{"id": "000000113496", "images": ["AURORA/data/something/frames/164395/first.jpg", "AURORA/data/something/frames/164395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting wire"}]} +{"id": "000000113497", "images": ["AURORA/data/something/frames/9858/first.jpg", "AURORA/data/something/frames/9858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a cup off of the counter"}]} +{"id": "000000113498", "images": ["AURORA/data/something/frames/141498/first.jpg", "AURORA/data/something/frames/141498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening body lotion"}]} +{"id": "000000113499", "images": ["AURORA/data/something/frames/206775/first.jpg", "AURORA/data/something/frames/206775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a watch"}]} +{"id": "000000113500", "images": ["AURORA/data/something/frames/149756/first.jpg", "AURORA/data/something/frames/149756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toothbrush behind mug"}]} +{"id": "000000113501", "images": ["AURORA/data/something/frames/16537/first.jpg", "AURORA/data/something/frames/16537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving knife up"}]} +{"id": "000000113502", "images": ["AURORA/data/something/frames/213417/first.jpg", "AURORA/data/something/frames/213417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping box onto pillow"}]} +{"id": "000000113503", "images": ["AURORA/data/something/frames/100536/first.jpg", "AURORA/data/something/frames/100536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping case onto phone"}]} +{"id": "000000113504", "images": ["AURORA/data/something/frames/63823/first.jpg", "AURORA/data/something/frames/63823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pincer down"}]} +{"id": "000000113505", "images": ["AURORA/data/something/frames/171619/first.jpg", "AURORA/data/something/frames/171619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming ball"}]} +{"id": "000000113506", "images": ["AURORA/data/something/frames/127296/first.jpg", "AURORA/data/something/frames/127296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing newspaper just a little bit"}]} +{"id": "000000113507", "images": ["AURORA/data/something/frames/1682/first.jpg", "AURORA/data/something/frames/1682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 pens onto book"}]} +{"id": "000000113508", "images": ["AURORA/data/something/frames/46544/first.jpg", "AURORA/data/something/frames/46544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening toilet lid"}]} +{"id": "000000113509", "images": ["AURORA/data/something/frames/85418/first.jpg", "AURORA/data/something/frames/85418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys in front of bag"}]} +{"id": "000000113510", "images": ["AURORA/data/something/frames/68639/first.jpg", "AURORA/data/something/frames/68639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching a small vacuum with your camera"}]} +{"id": "000000113511", "images": ["AURORA/data/something/frames/13167/first.jpg", "AURORA/data/something/frames/13167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping badminton bat behind a pair of shoes"}]} +{"id": "000000113512", "images": ["AURORA/data/something/frames/182155/first.jpg", "AURORA/data/something/frames/182155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling milk onto a plate"}]} +{"id": "000000113513", "images": ["AURORA/data/something/frames/166768/first.jpg", "AURORA/data/something/frames/166768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113514", "images": ["AURORA/data/something/frames/196350/first.jpg", "AURORA/data/something/frames/196350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a coin from a jar"}]} +{"id": "000000113515", "images": ["AURORA/data/something/frames/159740/first.jpg", "AURORA/data/something/frames/159740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000113516", "images": ["AURORA/data/something/frames/152533/first.jpg", "AURORA/data/something/frames/152533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging microphone into laptop"}]} +{"id": "000000113517", "images": ["AURORA/data/something/frames/1475/first.jpg", "AURORA/data/something/frames/1475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming earphone"}]} +{"id": "000000113518", "images": ["AURORA/data/something/frames/204701/first.jpg", "AURORA/data/something/frames/204701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000113519", "images": ["AURORA/data/something/frames/178838/first.jpg", "AURORA/data/something/frames/178838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking notebook out of box"}]} +{"id": "000000113520", "images": ["AURORA/data/something/frames/179450/first.jpg", "AURORA/data/something/frames/179450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding bag"}]} +{"id": "000000113521", "images": ["AURORA/data/something/frames/77820/first.jpg", "AURORA/data/something/frames/77820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 5 markers onto a table"}]} +{"id": "000000113522", "images": ["AURORA/data/something/frames/114852/first.jpg", "AURORA/data/something/frames/114852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading almond butter onto bread"}]} +{"id": "000000113523", "images": ["AURORA/data/something/frames/38462/first.jpg", "AURORA/data/something/frames/38462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lip gloss and coffee mug away from each other"}]} +{"id": "000000113524", "images": ["AURORA/data/something/frames/11769/first.jpg", "AURORA/data/something/frames/11769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000113525", "images": ["AURORA/data/something/frames/114347/first.jpg", "AURORA/data/something/frames/114347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking belt out of duffel bag"}]} +{"id": "000000113526", "images": ["AURORA/data/something/frames/1915/first.jpg", "AURORA/data/something/frames/1915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto mug"}]} +{"id": "000000113527", "images": ["AURORA/data/something/frames/190758/first.jpg", "AURORA/data/something/frames/190758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a book"}]} +{"id": "000000113528", "images": ["AURORA/data/something/frames/97523/first.jpg", "AURORA/data/something/frames/97523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into usb slot"}]} +{"id": "000000113529", "images": ["AURORA/data/something/frames/191184/first.jpg", "AURORA/data/something/frames/191184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen in front of scissors"}]} +{"id": "000000113530", "images": ["AURORA/data/something/frames/100087/first.jpg", "AURORA/data/something/frames/100087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a marker closer to each other"}]} +{"id": "000000113531", "images": ["AURORA/data/something/frames/77812/first.jpg", "AURORA/data/something/frames/77812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a jar and another jar away from each other"}]} +{"id": "000000113532", "images": ["AURORA/data/something/frames/149818/first.jpg", "AURORA/data/something/frames/149818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking flower so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113533", "images": ["AURORA/data/something/frames/82661/first.jpg", "AURORA/data/something/frames/82661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something on a surface"}]} +{"id": "000000113534", "images": ["AURORA/data/something/frames/194380/first.jpg", "AURORA/data/something/frames/194380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing car door"}]} +{"id": "000000113535", "images": ["AURORA/data/something/frames/73814/first.jpg", "AURORA/data/something/frames/73814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of marker so that it separates into two pieces"}]} +{"id": "000000113536", "images": ["AURORA/data/something/frames/198863/first.jpg", "AURORA/data/something/frames/198863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming green water bottle"}]} +{"id": "000000113537", "images": ["AURORA/data/something/frames/174376/first.jpg", "AURORA/data/something/frames/174376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000113538", "images": ["AURORA/data/something/frames/175160/first.jpg", "AURORA/data/something/frames/175160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing usb stick with ruler"}]} +{"id": "000000113539", "images": ["AURORA/data/something/frames/32811/first.jpg", "AURORA/data/something/frames/32811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a wine glass"}]} +{"id": "000000113540", "images": ["AURORA/data/something/frames/106955/first.jpg", "AURORA/data/something/frames/106955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving powerbank closer to radio"}]} +{"id": "000000113541", "images": ["AURORA/data/something/frames/188988/first.jpg", "AURORA/data/something/frames/188988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle with candle"}]} +{"id": "000000113542", "images": ["AURORA/data/something/frames/92158/first.jpg", "AURORA/data/something/frames/92158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling key from left to right"}]} +{"id": "000000113543", "images": ["AURORA/data/something/frames/212818/first.jpg", "AURORA/data/something/frames/212818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb away from usb cable"}]} +{"id": "000000113544", "images": ["AURORA/data/something/frames/146384/first.jpg", "AURORA/data/something/frames/146384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing paint tube from left to right"}]} +{"id": "000000113545", "images": ["AURORA/data/something/frames/188983/first.jpg", "AURORA/data/something/frames/188983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000113546", "images": ["AURORA/data/something/frames/207940/first.jpg", "AURORA/data/something/frames/207940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping torch into shoe"}]} +{"id": "000000113547", "images": ["AURORA/data/something/frames/144130/first.jpg", "AURORA/data/something/frames/144130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging extension plug into wall plug but pulling it right out as you remove your hand"}]} +{"id": "000000113548", "images": ["AURORA/data/something/frames/217331/first.jpg", "AURORA/data/something/frames/217331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a fork"}]} +{"id": "000000113549", "images": ["AURORA/data/something/frames/95586/first.jpg", "AURORA/data/something/frames/95586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing calculator into envelope"}]} +{"id": "000000113550", "images": ["AURORA/data/something/frames/125449/first.jpg", "AURORA/data/something/frames/125449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a tissue paper"}]} +{"id": "000000113551", "images": ["AURORA/data/something/frames/87390/first.jpg", "AURORA/data/something/frames/87390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing plastic box"}]} +{"id": "000000113552", "images": ["AURORA/data/something/frames/196386/first.jpg", "AURORA/data/something/frames/196386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box from right to left"}]} +{"id": "000000113553", "images": ["AURORA/data/something/frames/178125/first.jpg", "AURORA/data/something/frames/178125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering wallet with cloth"}]} +{"id": "000000113554", "images": ["AURORA/data/something/frames/100400/first.jpg", "AURORA/data/something/frames/100400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping ground coffee up with spoon"}]} +{"id": "000000113555", "images": ["AURORA/data/something/frames/100764/first.jpg", "AURORA/data/something/frames/100764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a paper from right to left"}]} +{"id": "000000113556", "images": ["AURORA/data/something/frames/144710/first.jpg", "AURORA/data/something/frames/144710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking vape up"}]} +{"id": "000000113557", "images": ["AURORA/data/something/frames/153348/first.jpg", "AURORA/data/something/frames/153348/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking small, clockwork wolverine toy so that it falls over"}]} +{"id": "000000113558", "images": ["AURORA/data/something/frames/7092/first.jpg", "AURORA/data/something/frames/7092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000113559", "images": ["AURORA/data/something/frames/143998/first.jpg", "AURORA/data/something/frames/143998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking toothpick up"}]} +{"id": "000000113560", "images": ["AURORA/data/something/frames/214951/first.jpg", "AURORA/data/something/frames/214951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pepper in front of a belt"}]} +{"id": "000000113561", "images": ["AURORA/data/something/frames/69353/first.jpg", "AURORA/data/something/frames/69353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail polish closer to cup"}]} +{"id": "000000113562", "images": ["AURORA/data/something/frames/220677/first.jpg", "AURORA/data/something/frames/220677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting folder with box on it"}]} +{"id": "000000113563", "images": ["AURORA/data/something/frames/136192/first.jpg", "AURORA/data/something/frames/136192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing pressure cooker"}]} +{"id": "000000113564", "images": ["AURORA/data/something/frames/135643/first.jpg", "AURORA/data/something/frames/135643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy car and toy wheel so they collide with each other"}]} +{"id": "000000113565", "images": ["AURORA/data/something/frames/216532/first.jpg", "AURORA/data/something/frames/216532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing apple from right to left"}]} +{"id": "000000113566", "images": ["AURORA/data/something/frames/219868/first.jpg", "AURORA/data/something/frames/219868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper towel"}]} +{"id": "000000113567", "images": ["AURORA/data/something/frames/121115/first.jpg", "AURORA/data/something/frames/121115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power plug into outlet"}]} +{"id": "000000113568", "images": ["AURORA/data/something/frames/196487/first.jpg", "AURORA/data/something/frames/196487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red watch case from left to right"}]} +{"id": "000000113569", "images": ["AURORA/data/something/frames/157894/first.jpg", "AURORA/data/something/frames/157894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paperclip holder with paperclips on it"}]} +{"id": "000000113570", "images": ["AURORA/data/something/frames/21553/first.jpg", "AURORA/data/something/frames/21553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubix cube into green bowl"}]} +{"id": "000000113571", "images": ["AURORA/data/something/frames/14278/first.jpg", "AURORA/data/something/frames/14278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of pendrive"}]} +{"id": "000000113572", "images": ["AURORA/data/something/frames/35493/first.jpg", "AURORA/data/something/frames/35493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a card"}]} +{"id": "000000113573", "images": ["AURORA/data/something/frames/42521/first.jpg", "AURORA/data/something/frames/42521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000113574", "images": ["AURORA/data/something/frames/137436/first.jpg", "AURORA/data/something/frames/137436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a banana on it until it starts sliding down"}]} +{"id": "000000113575", "images": ["AURORA/data/something/frames/119481/first.jpg", "AURORA/data/something/frames/119481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing something, revealing something behind"}]} +{"id": "000000113576", "images": ["AURORA/data/something/frames/159180/first.jpg", "AURORA/data/something/frames/159180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone from left to right"}]} +{"id": "000000113577", "images": ["AURORA/data/something/frames/187854/first.jpg", "AURORA/data/something/frames/187854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a binder onto a box"}]} +{"id": "000000113578", "images": ["AURORA/data/something/frames/99597/first.jpg", "AURORA/data/something/frames/99597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000113579", "images": ["AURORA/data/something/frames/162918/first.jpg", "AURORA/data/something/frames/162918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into plastic cup"}]} +{"id": "000000113580", "images": ["AURORA/data/something/frames/23764/first.jpg", "AURORA/data/something/frames/23764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box so that it almost falls off but doesn't"}]} +{"id": "000000113581", "images": ["AURORA/data/something/frames/36097/first.jpg", "AURORA/data/something/frames/36097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a glass of water up"}]} +{"id": "000000113582", "images": ["AURORA/data/something/frames/125849/first.jpg", "AURORA/data/something/frames/125849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto paper"}]} +{"id": "000000113583", "images": ["AURORA/data/something/frames/18710/first.jpg", "AURORA/data/something/frames/18710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote behind jug"}]} +{"id": "000000113584", "images": ["AURORA/data/something/frames/72554/first.jpg", "AURORA/data/something/frames/72554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking candy"}]} +{"id": "000000113585", "images": ["AURORA/data/something/frames/59656/first.jpg", "AURORA/data/something/frames/59656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting can on a surface"}]} +{"id": "000000113586", "images": ["AURORA/data/something/frames/220065/first.jpg", "AURORA/data/something/frames/220065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing flowers into box"}]} +{"id": "000000113587", "images": ["AURORA/data/something/frames/100653/first.jpg", "AURORA/data/something/frames/100653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and packet away from each other"}]} +{"id": "000000113588", "images": ["AURORA/data/something/frames/9219/first.jpg", "AURORA/data/something/frames/9219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring coffee into mug"}]} +{"id": "000000113589", "images": ["AURORA/data/something/frames/214942/first.jpg", "AURORA/data/something/frames/214942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball colliding with another ball and both are being deflected"}]} +{"id": "000000113590", "images": ["AURORA/data/something/frames/66183/first.jpg", "AURORA/data/something/frames/66183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon onto cup"}]} +{"id": "000000113591", "images": ["AURORA/data/something/frames/103529/first.jpg", "AURORA/data/something/frames/103529/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling seeds onto vegetables"}]} +{"id": "000000113592", "images": ["AURORA/data/something/frames/9653/first.jpg", "AURORA/data/something/frames/9653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mirror behind box"}]} +{"id": "000000113593", "images": ["AURORA/data/something/frames/16575/first.jpg", "AURORA/data/something/frames/16575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping game next to paper"}]} +{"id": "000000113594", "images": ["AURORA/data/something/frames/67650/first.jpg", "AURORA/data/something/frames/67650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottle from floor"}]} +{"id": "000000113595", "images": ["AURORA/data/something/frames/110595/first.jpg", "AURORA/data/something/frames/110595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote control in front of table"}]} +{"id": "000000113596", "images": ["AURORA/data/something/frames/122023/first.jpg", "AURORA/data/something/frames/122023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cotton buds"}]} +{"id": "000000113597", "images": ["AURORA/data/something/frames/166038/first.jpg", "AURORA/data/something/frames/166038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging box into wall"}]} +{"id": "000000113598", "images": ["AURORA/data/something/frames/67240/first.jpg", "AURORA/data/something/frames/67240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cookie until it breaks"}]} +{"id": "000000113599", "images": ["AURORA/data/something/frames/132160/first.jpg", "AURORA/data/something/frames/132160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bag pin so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113600", "images": ["AURORA/data/something/frames/79214/first.jpg", "AURORA/data/something/frames/79214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone with folder"}]} +{"id": "000000113601", "images": ["AURORA/data/something/frames/177209/first.jpg", "AURORA/data/something/frames/177209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a teddy"}]} +{"id": "000000113602", "images": ["AURORA/data/something/frames/110683/first.jpg", "AURORA/data/something/frames/110683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toy in front of tv stand"}]} +{"id": "000000113603", "images": ["AURORA/data/something/frames/207926/first.jpg", "AURORA/data/something/frames/207926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening small box"}]} +{"id": "000000113604", "images": ["AURORA/data/something/frames/20796/first.jpg", "AURORA/data/something/frames/20796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding scarf"}]} +{"id": "000000113605", "images": ["AURORA/data/something/frames/45189/first.jpg", "AURORA/data/something/frames/45189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking hat up"}]} +{"id": "000000113606", "images": ["AURORA/data/something/frames/179769/first.jpg", "AURORA/data/something/frames/179769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses case upright on the table, so it falls on its side"}]} +{"id": "000000113607", "images": ["AURORA/data/something/frames/142139/first.jpg", "AURORA/data/something/frames/142139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping remote over"}]} +{"id": "000000113608", "images": ["AURORA/data/something/frames/60258/first.jpg", "AURORA/data/something/frames/60258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into plastic case until it overflows"}]} +{"id": "000000113609", "images": ["AURORA/data/something/frames/38673/first.jpg", "AURORA/data/something/frames/38673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into phone charger but pulling it right out as you remove your hand"}]} +{"id": "000000113610", "images": ["AURORA/data/something/frames/175725/first.jpg", "AURORA/data/something/frames/175725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking stuffed toy so that it falls over"}]} +{"id": "000000113611", "images": ["AURORA/data/something/frames/163217/first.jpg", "AURORA/data/something/frames/163217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto plant"}]} +{"id": "000000113612", "images": ["AURORA/data/something/frames/166562/first.jpg", "AURORA/data/something/frames/166562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing orange bowl from right to left"}]} +{"id": "000000113613", "images": ["AURORA/data/something/frames/152094/first.jpg", "AURORA/data/something/frames/152094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a water bottle on the table on its side, not upright"}]} +{"id": "000000113614", "images": ["AURORA/data/something/frames/124217/first.jpg", "AURORA/data/something/frames/124217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from something with your camera"}]} +{"id": "000000113615", "images": ["AURORA/data/something/frames/220461/first.jpg", "AURORA/data/something/frames/220461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into computer"}]} +{"id": "000000113616", "images": ["AURORA/data/something/frames/1452/first.jpg", "AURORA/data/something/frames/1452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball into a bowl"}]} +{"id": "000000113617", "images": ["AURORA/data/something/frames/163893/first.jpg", "AURORA/data/something/frames/163893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white mug closer to black mug"}]} +{"id": "000000113618", "images": ["AURORA/data/something/frames/12582/first.jpg", "AURORA/data/something/frames/12582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a receipt just a little bit"}]} +{"id": "000000113619", "images": ["AURORA/data/something/frames/217115/first.jpg", "AURORA/data/something/frames/217115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 phone onto papers"}]} +{"id": "000000113620", "images": ["AURORA/data/something/frames/201633/first.jpg", "AURORA/data/something/frames/201633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into an ipod"}]} +{"id": "000000113621", "images": ["AURORA/data/something/frames/121071/first.jpg", "AURORA/data/something/frames/121071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass closer to glass"}]} +{"id": "000000113622", "images": ["AURORA/data/something/frames/80757/first.jpg", "AURORA/data/something/frames/80757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tissues from left to right"}]} +{"id": "000000113623", "images": ["AURORA/data/something/frames/5157/first.jpg", "AURORA/data/something/frames/5157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chickpea"}]} +{"id": "000000113624", "images": ["AURORA/data/something/frames/199203/first.jpg", "AURORA/data/something/frames/199203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking blue colour pen among the many colour pens on the table"}]} +{"id": "000000113625", "images": ["AURORA/data/something/frames/163711/first.jpg", "AURORA/data/something/frames/163711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming board"}]} +{"id": "000000113626", "images": ["AURORA/data/something/frames/88048/first.jpg", "AURORA/data/something/frames/88048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000113627", "images": ["AURORA/data/something/frames/197873/first.jpg", "AURORA/data/something/frames/197873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting money into wallet"}]} +{"id": "000000113628", "images": ["AURORA/data/something/frames/9737/first.jpg", "AURORA/data/something/frames/9737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a glass with a coaster"}]} +{"id": "000000113629", "images": ["AURORA/data/something/frames/64380/first.jpg", "AURORA/data/something/frames/64380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into cup"}]} +{"id": "000000113630", "images": ["AURORA/data/something/frames/204739/first.jpg", "AURORA/data/something/frames/204739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin underneath bag"}]} +{"id": "000000113631", "images": ["AURORA/data/something/frames/125435/first.jpg", "AURORA/data/something/frames/125435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pen until it breaks"}]} +{"id": "000000113632", "images": ["AURORA/data/something/frames/195366/first.jpg", "AURORA/data/something/frames/195366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pink golf ball"}]} +{"id": "000000113633", "images": ["AURORA/data/something/frames/207591/first.jpg", "AURORA/data/something/frames/207591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping apple into bowl"}]} +{"id": "000000113634", "images": ["AURORA/data/something/frames/83767/first.jpg", "AURORA/data/something/frames/83767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a phone"}]} +{"id": "000000113635", "images": ["AURORA/data/something/frames/18086/first.jpg", "AURORA/data/something/frames/18086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with coffee cup on it"}]} +{"id": "000000113636", "images": ["AURORA/data/something/frames/182229/first.jpg", "AURORA/data/something/frames/182229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling remote from left to right"}]} +{"id": "000000113637", "images": ["AURORA/data/something/frames/191590/first.jpg", "AURORA/data/something/frames/191590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ring and ring closer to each other"}]} +{"id": "000000113638", "images": ["AURORA/data/something/frames/189745/first.jpg", "AURORA/data/something/frames/189745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing action camera from right to left"}]} +{"id": "000000113639", "images": ["AURORA/data/something/frames/93526/first.jpg", "AURORA/data/something/frames/93526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto an envelope"}]} +{"id": "000000113640", "images": ["AURORA/data/something/frames/151843/first.jpg", "AURORA/data/something/frames/151843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler from right to left"}]} +{"id": "000000113641", "images": ["AURORA/data/something/frames/50519/first.jpg", "AURORA/data/something/frames/50519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting shoe with torch"}]} +{"id": "000000113642", "images": ["AURORA/data/something/frames/176333/first.jpg", "AURORA/data/something/frames/176333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking water bottle"}]} +{"id": "000000113643", "images": ["AURORA/data/something/frames/13736/first.jpg", "AURORA/data/something/frames/13736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113644", "images": ["AURORA/data/something/frames/91142/first.jpg", "AURORA/data/something/frames/91142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle with book"}]} +{"id": "000000113645", "images": ["AURORA/data/something/frames/111350/first.jpg", "AURORA/data/something/frames/111350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book"}]} +{"id": "000000113646", "images": ["AURORA/data/something/frames/125356/first.jpg", "AURORA/data/something/frames/125356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000113647", "images": ["AURORA/data/something/frames/191250/first.jpg", "AURORA/data/something/frames/191250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pen until it breaks"}]} +{"id": "000000113648", "images": ["AURORA/data/something/frames/176222/first.jpg", "AURORA/data/something/frames/176222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plastic out of basket"}]} +{"id": "000000113649", "images": ["AURORA/data/something/frames/39041/first.jpg", "AURORA/data/something/frames/39041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of spring so that it gets stretched"}]} +{"id": "000000113650", "images": ["AURORA/data/something/frames/187076/first.jpg", "AURORA/data/something/frames/187076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from sapodilla with your camera"}]} +{"id": "000000113651", "images": ["AURORA/data/something/frames/189780/first.jpg", "AURORA/data/something/frames/189780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tea"}]} +{"id": "000000113652", "images": ["AURORA/data/something/frames/45106/first.jpg", "AURORA/data/something/frames/45106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: orange colliding with orange and both are being deflected"}]} +{"id": "000000113653", "images": ["AURORA/data/something/frames/111944/first.jpg", "AURORA/data/something/frames/111944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000113654", "images": ["AURORA/data/something/frames/65448/first.jpg", "AURORA/data/something/frames/65448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a mug with a dish towel"}]} +{"id": "000000113655", "images": ["AURORA/data/something/frames/148145/first.jpg", "AURORA/data/something/frames/148145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening handbag"}]} +{"id": "000000113656", "images": ["AURORA/data/something/frames/86009/first.jpg", "AURORA/data/something/frames/86009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a ball so that it almost falls off but doesn't"}]} +{"id": "000000113657", "images": ["AURORA/data/something/frames/95893/first.jpg", "AURORA/data/something/frames/95893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing toilet paper just a little bit"}]} +{"id": "000000113658", "images": ["AURORA/data/something/frames/176719/first.jpg", "AURORA/data/something/frames/176719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping spoon into glass"}]} +{"id": "000000113659", "images": ["AURORA/data/something/frames/125286/first.jpg", "AURORA/data/something/frames/125286/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ice tray away from the cup"}]} +{"id": "000000113660", "images": ["AURORA/data/something/frames/193439/first.jpg", "AURORA/data/something/frames/193439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing magazine"}]} +{"id": "000000113661", "images": ["AURORA/data/something/frames/124061/first.jpg", "AURORA/data/something/frames/124061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a stapler and a bracelet closer to each other"}]} +{"id": "000000113662", "images": ["AURORA/data/something/frames/99760/first.jpg", "AURORA/data/something/frames/99760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling punch from right to left"}]} +{"id": "000000113663", "images": ["AURORA/data/something/frames/187079/first.jpg", "AURORA/data/something/frames/187079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking packet out of basket"}]} +{"id": "000000113664", "images": ["AURORA/data/something/frames/161608/first.jpg", "AURORA/data/something/frames/161608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming white candle"}]} +{"id": "000000113665", "images": ["AURORA/data/something/frames/204619/first.jpg", "AURORA/data/something/frames/204619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from cup with your camera"}]} +{"id": "000000113666", "images": ["AURORA/data/something/frames/179423/first.jpg", "AURORA/data/something/frames/179423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking car key up"}]} +{"id": "000000113667", "images": ["AURORA/data/something/frames/80618/first.jpg", "AURORA/data/something/frames/80618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering comb with wipes"}]} +{"id": "000000113668", "images": ["AURORA/data/something/frames/35565/first.jpg", "AURORA/data/something/frames/35565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the pencil case up"}]} +{"id": "000000113669", "images": ["AURORA/data/something/frames/49883/first.jpg", "AURORA/data/something/frames/49883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pocket knife, a container and a hand bag on the table"}]} +{"id": "000000113670", "images": ["AURORA/data/something/frames/121079/first.jpg", "AURORA/data/something/frames/121079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading perfume onto pillow"}]} +{"id": "000000113671", "images": ["AURORA/data/something/frames/111422/first.jpg", "AURORA/data/something/frames/111422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white candle from left to right"}]} +{"id": "000000113672", "images": ["AURORA/data/something/frames/14732/first.jpg", "AURORA/data/something/frames/14732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plate and glove away from each other"}]} +{"id": "000000113673", "images": ["AURORA/data/something/frames/25776/first.jpg", "AURORA/data/something/frames/25776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking envelope out of drawer"}]} +{"id": "000000113674", "images": ["AURORA/data/something/frames/209616/first.jpg", "AURORA/data/something/frames/209616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a cd into a case"}]} +{"id": "000000113675", "images": ["AURORA/data/something/frames/39127/first.jpg", "AURORA/data/something/frames/39127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding book"}]} +{"id": "000000113676", "images": ["AURORA/data/something/frames/69776/first.jpg", "AURORA/data/something/frames/69776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottle"}]} +{"id": "000000113677", "images": ["AURORA/data/something/frames/82168/first.jpg", "AURORA/data/something/frames/82168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hat on a surface"}]} +{"id": "000000113678", "images": ["AURORA/data/something/frames/166057/first.jpg", "AURORA/data/something/frames/166057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking books on sofa"}]} +{"id": "000000113679", "images": ["AURORA/data/something/frames/72766/first.jpg", "AURORA/data/something/frames/72766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling magnifying glass from right to left"}]} +{"id": "000000113680", "images": ["AURORA/data/something/frames/16867/first.jpg", "AURORA/data/something/frames/16867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pen"}]} +{"id": "000000113681", "images": ["AURORA/data/something/frames/24038/first.jpg", "AURORA/data/something/frames/24038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000113682", "images": ["AURORA/data/something/frames/152114/first.jpg", "AURORA/data/something/frames/152114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a wallet"}]} +{"id": "000000113683", "images": ["AURORA/data/something/frames/62624/first.jpg", "AURORA/data/something/frames/62624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring something onto something"}]} +{"id": "000000113684", "images": ["AURORA/data/something/frames/41714/first.jpg", "AURORA/data/something/frames/41714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking an apple so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113685", "images": ["AURORA/data/something/frames/135008/first.jpg", "AURORA/data/something/frames/135008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning can upside down"}]} +{"id": "000000113686", "images": ["AURORA/data/something/frames/128477/first.jpg", "AURORA/data/something/frames/128477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking scissors out of drawer"}]} +{"id": "000000113687", "images": ["AURORA/data/something/frames/27730/first.jpg", "AURORA/data/something/frames/27730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding handkerchief"}]} +{"id": "000000113688", "images": ["AURORA/data/something/frames/61246/first.jpg", "AURORA/data/something/frames/61246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tennis ball from right to left"}]} +{"id": "000000113689", "images": ["AURORA/data/something/frames/83948/first.jpg", "AURORA/data/something/frames/83948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notebook closer to plastic cup"}]} +{"id": "000000113690", "images": ["AURORA/data/something/frames/43071/first.jpg", "AURORA/data/something/frames/43071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a rag wet until water comes out"}]} +{"id": "000000113691", "images": ["AURORA/data/something/frames/107257/first.jpg", "AURORA/data/something/frames/107257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a computer but pulling it right out as you remove your hand"}]} +{"id": "000000113692", "images": ["AURORA/data/something/frames/18001/first.jpg", "AURORA/data/something/frames/18001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ice cube into cup"}]} +{"id": "000000113693", "images": ["AURORA/data/something/frames/2560/first.jpg", "AURORA/data/something/frames/2560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottletop so that it almost falls off but doesn't"}]} +{"id": "000000113694", "images": ["AURORA/data/something/frames/60981/first.jpg", "AURORA/data/something/frames/60981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stick on a surface"}]} +{"id": "000000113695", "images": ["AURORA/data/something/frames/19162/first.jpg", "AURORA/data/something/frames/19162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen with a pencil"}]} +{"id": "000000113696", "images": ["AURORA/data/something/frames/160839/first.jpg", "AURORA/data/something/frames/160839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing pen"}]} +{"id": "000000113697", "images": ["AURORA/data/something/frames/158046/first.jpg", "AURORA/data/something/frames/158046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many books"}]} +{"id": "000000113698", "images": ["AURORA/data/something/frames/47059/first.jpg", "AURORA/data/something/frames/47059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging nail polish out of pile of nail polish"}]} +{"id": "000000113699", "images": ["AURORA/data/something/frames/94544/first.jpg", "AURORA/data/something/frames/94544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a mug until it overflows"}]} +{"id": "000000113700", "images": ["AURORA/data/something/frames/184037/first.jpg", "AURORA/data/something/frames/184037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bin with a marker"}]} +{"id": "000000113701", "images": ["AURORA/data/something/frames/139238/first.jpg", "AURORA/data/something/frames/139238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000113702", "images": ["AURORA/data/something/frames/51655/first.jpg", "AURORA/data/something/frames/51655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting modem onto table"}]} +{"id": "000000113703", "images": ["AURORA/data/something/frames/156041/first.jpg", "AURORA/data/something/frames/156041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113704", "images": ["AURORA/data/something/frames/132234/first.jpg", "AURORA/data/something/frames/132234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting lid off nail polish"}]} +{"id": "000000113705", "images": ["AURORA/data/something/frames/32538/first.jpg", "AURORA/data/something/frames/32538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and bottle so they pass each other"}]} +{"id": "000000113706", "images": ["AURORA/data/something/frames/24034/first.jpg", "AURORA/data/something/frames/24034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a smartphone so they collide with each other"}]} +{"id": "000000113707", "images": ["AURORA/data/something/frames/16016/first.jpg", "AURORA/data/something/frames/16016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy car and toy car so they collide with each other"}]} +{"id": "000000113708", "images": ["AURORA/data/something/frames/200229/first.jpg", "AURORA/data/something/frames/200229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a pepper shaker so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113709", "images": ["AURORA/data/something/frames/178407/first.jpg", "AURORA/data/something/frames/178407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000113710", "images": ["AURORA/data/something/frames/204382/first.jpg", "AURORA/data/something/frames/204382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tape dispenser and mouse closer to each other"}]} +{"id": "000000113711", "images": ["AURORA/data/something/frames/22140/first.jpg", "AURORA/data/something/frames/22140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering stone with cap"}]} +{"id": "000000113712", "images": ["AURORA/data/something/frames/201467/first.jpg", "AURORA/data/something/frames/201467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plant towards the camera"}]} +{"id": "000000113713", "images": ["AURORA/data/something/frames/56299/first.jpg", "AURORA/data/something/frames/56299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping battery in front of glass"}]} +{"id": "000000113714", "images": ["AURORA/data/something/frames/118572/first.jpg", "AURORA/data/something/frames/118572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses underneath desk"}]} +{"id": "000000113715", "images": ["AURORA/data/something/frames/143643/first.jpg", "AURORA/data/something/frames/143643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing brown case from left to right"}]} +{"id": "000000113716", "images": ["AURORA/data/something/frames/183535/first.jpg", "AURORA/data/something/frames/183535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling torch from left to right"}]} +{"id": "000000113717", "images": ["AURORA/data/something/frames/39980/first.jpg", "AURORA/data/something/frames/39980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of pan"}]} +{"id": "000000113718", "images": ["AURORA/data/something/frames/123133/first.jpg", "AURORA/data/something/frames/123133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing note paper just a little bit"}]} +{"id": "000000113719", "images": ["AURORA/data/something/frames/163062/first.jpg", "AURORA/data/something/frames/163062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting orange"}]} +{"id": "000000113720", "images": ["AURORA/data/something/frames/193868/first.jpg", "AURORA/data/something/frames/193868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a brochure"}]} +{"id": "000000113721", "images": ["AURORA/data/something/frames/35883/first.jpg", "AURORA/data/something/frames/35883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote control onto a book"}]} +{"id": "000000113722", "images": ["AURORA/data/something/frames/82004/first.jpg", "AURORA/data/something/frames/82004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling hair oil from left to right"}]} +{"id": "000000113723", "images": ["AURORA/data/something/frames/145242/first.jpg", "AURORA/data/something/frames/145242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle of mustard on a surface"}]} +{"id": "000000113724", "images": ["AURORA/data/something/frames/138104/first.jpg", "AURORA/data/something/frames/138104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking screwdriver out of toolbox"}]} +{"id": "000000113725", "images": ["AURORA/data/something/frames/58085/first.jpg", "AURORA/data/something/frames/58085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding jacket"}]} +{"id": "000000113726", "images": ["AURORA/data/something/frames/29139/first.jpg", "AURORA/data/something/frames/29139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing napkin into cup holder"}]} +{"id": "000000113727", "images": ["AURORA/data/something/frames/1886/first.jpg", "AURORA/data/something/frames/1886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling boxes up"}]} +{"id": "000000113728", "images": ["AURORA/data/something/frames/198465/first.jpg", "AURORA/data/something/frames/198465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something onto something"}]} +{"id": "000000113729", "images": ["AURORA/data/something/frames/135394/first.jpg", "AURORA/data/something/frames/135394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping battery cell onto stool"}]} +{"id": "000000113730", "images": ["AURORA/data/something/frames/202300/first.jpg", "AURORA/data/something/frames/202300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto pencil case"}]} +{"id": "000000113731", "images": ["AURORA/data/something/frames/157868/first.jpg", "AURORA/data/something/frames/157868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy wheel with red colour pen"}]} +{"id": "000000113732", "images": ["AURORA/data/something/frames/140163/first.jpg", "AURORA/data/something/frames/140163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a fork"}]} +{"id": "000000113733", "images": ["AURORA/data/something/frames/197146/first.jpg", "AURORA/data/something/frames/197146/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books without the stack collapsing"}]} +{"id": "000000113734", "images": ["AURORA/data/something/frames/77770/first.jpg", "AURORA/data/something/frames/77770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stuffed animal so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113735", "images": ["AURORA/data/something/frames/41579/first.jpg", "AURORA/data/something/frames/41579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup on a surface"}]} +{"id": "000000113736", "images": ["AURORA/data/something/frames/117500/first.jpg", "AURORA/data/something/frames/117500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a pen into a pencase"}]} +{"id": "000000113737", "images": ["AURORA/data/something/frames/59557/first.jpg", "AURORA/data/something/frames/59557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving control away from vase"}]} +{"id": "000000113738", "images": ["AURORA/data/something/frames/18485/first.jpg", "AURORA/data/something/frames/18485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sharpener onto sticky note"}]} +{"id": "000000113739", "images": ["AURORA/data/something/frames/218305/first.jpg", "AURORA/data/something/frames/218305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a sock into a shoe"}]} +{"id": "000000113740", "images": ["AURORA/data/something/frames/138355/first.jpg", "AURORA/data/something/frames/138355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup on a surface"}]} +{"id": "000000113741", "images": ["AURORA/data/something/frames/157981/first.jpg", "AURORA/data/something/frames/157981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a pin"}]} +{"id": "000000113742", "images": ["AURORA/data/something/frames/199464/first.jpg", "AURORA/data/something/frames/199464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pom poms out of a container"}]} +{"id": "000000113743", "images": ["AURORA/data/something/frames/148753/first.jpg", "AURORA/data/something/frames/148753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping slipper in front of handbag"}]} +{"id": "000000113744", "images": ["AURORA/data/something/frames/50966/first.jpg", "AURORA/data/something/frames/50966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pet bottle in front of feet"}]} +{"id": "000000113745", "images": ["AURORA/data/something/frames/7716/first.jpg", "AURORA/data/something/frames/7716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ink bottle with spring"}]} +{"id": "000000113746", "images": ["AURORA/data/something/frames/24408/first.jpg", "AURORA/data/something/frames/24408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping sauce off of hummus container"}]} +{"id": "000000113747", "images": ["AURORA/data/something/frames/86525/first.jpg", "AURORA/data/something/frames/86525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking jar so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113748", "images": ["AURORA/data/something/frames/73513/first.jpg", "AURORA/data/something/frames/73513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000113749", "images": ["AURORA/data/something/frames/155721/first.jpg", "AURORA/data/something/frames/155721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a plastic tub upside down"}]} +{"id": "000000113750", "images": ["AURORA/data/something/frames/198635/first.jpg", "AURORA/data/something/frames/198635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing pouch"}]} +{"id": "000000113751", "images": ["AURORA/data/something/frames/180596/first.jpg", "AURORA/data/something/frames/180596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bag behind a table"}]} +{"id": "000000113752", "images": ["AURORA/data/something/frames/136835/first.jpg", "AURORA/data/something/frames/136835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a book so that it deforms"}]} +{"id": "000000113753", "images": ["AURORA/data/something/frames/5270/first.jpg", "AURORA/data/something/frames/5270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto paper"}]} +{"id": "000000113754", "images": ["AURORA/data/something/frames/10295/first.jpg", "AURORA/data/something/frames/10295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon out of cup"}]} +{"id": "000000113755", "images": ["AURORA/data/something/frames/176249/first.jpg", "AURORA/data/something/frames/176249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencile up"}]} +{"id": "000000113756", "images": ["AURORA/data/something/frames/92699/first.jpg", "AURORA/data/something/frames/92699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a book up"}]} +{"id": "000000113757", "images": ["AURORA/data/something/frames/55519/first.jpg", "AURORA/data/something/frames/55519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottle from table"}]} +{"id": "000000113758", "images": ["AURORA/data/something/frames/157253/first.jpg", "AURORA/data/something/frames/157253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000113759", "images": ["AURORA/data/something/frames/215310/first.jpg", "AURORA/data/something/frames/215310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping block in front of candle"}]} +{"id": "000000113760", "images": ["AURORA/data/something/frames/144305/first.jpg", "AURORA/data/something/frames/144305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of toy"}]} +{"id": "000000113761", "images": ["AURORA/data/something/frames/167135/first.jpg", "AURORA/data/something/frames/167135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box up"}]} +{"id": "000000113762", "images": ["AURORA/data/something/frames/215855/first.jpg", "AURORA/data/something/frames/215855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bottle of nail varnish so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113763", "images": ["AURORA/data/something/frames/38684/first.jpg", "AURORA/data/something/frames/38684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping salsa jar over"}]} +{"id": "000000113764", "images": ["AURORA/data/something/frames/142966/first.jpg", "AURORA/data/something/frames/142966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving purple container up"}]} +{"id": "000000113765", "images": ["AURORA/data/something/frames/81665/first.jpg", "AURORA/data/something/frames/81665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping mouse next to keyboard"}]} +{"id": "000000113766", "images": ["AURORA/data/something/frames/182144/first.jpg", "AURORA/data/something/frames/182144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cap to a ballpen"}]} +{"id": "000000113767", "images": ["AURORA/data/something/frames/177140/first.jpg", "AURORA/data/something/frames/177140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving moving stone up up"}]} +{"id": "000000113768", "images": ["AURORA/data/something/frames/87220/first.jpg", "AURORA/data/something/frames/87220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening face cream pack"}]} +{"id": "000000113769", "images": ["AURORA/data/something/frames/187302/first.jpg", "AURORA/data/something/frames/187302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113770", "images": ["AURORA/data/something/frames/87493/first.jpg", "AURORA/data/something/frames/87493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting laundry into a washing machine"}]} +{"id": "000000113771", "images": ["AURORA/data/something/frames/34571/first.jpg", "AURORA/data/something/frames/34571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting skipping rope, scale and stapler on the table"}]} +{"id": "000000113772", "images": ["AURORA/data/something/frames/30163/first.jpg", "AURORA/data/something/frames/30163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000113773", "images": ["AURORA/data/something/frames/204298/first.jpg", "AURORA/data/something/frames/204298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pendrive from computer table"}]} +{"id": "000000113774", "images": ["AURORA/data/something/frames/71944/first.jpg", "AURORA/data/something/frames/71944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toilet paper closer to inhaler"}]} +{"id": "000000113775", "images": ["AURORA/data/something/frames/173478/first.jpg", "AURORA/data/something/frames/173478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shorts"}]} +{"id": "000000113776", "images": ["AURORA/data/something/frames/204343/first.jpg", "AURORA/data/something/frames/204343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000113777", "images": ["AURORA/data/something/frames/137288/first.jpg", "AURORA/data/something/frames/137288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing clip onto phone"}]} +{"id": "000000113778", "images": ["AURORA/data/something/frames/64948/first.jpg", "AURORA/data/something/frames/64948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking lever up"}]} +{"id": "000000113779", "images": ["AURORA/data/something/frames/24109/first.jpg", "AURORA/data/something/frames/24109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000113780", "images": ["AURORA/data/something/frames/60442/first.jpg", "AURORA/data/something/frames/60442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending toothbrush stick until it breaks"}]} +{"id": "000000113781", "images": ["AURORA/data/something/frames/34166/first.jpg", "AURORA/data/something/frames/34166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a cup"}]} +{"id": "000000113782", "images": ["AURORA/data/something/frames/14116/first.jpg", "AURORA/data/something/frames/14116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping pig over"}]} +{"id": "000000113783", "images": ["AURORA/data/something/frames/7613/first.jpg", "AURORA/data/something/frames/7613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping case in front of phone"}]} +{"id": "000000113784", "images": ["AURORA/data/something/frames/64412/first.jpg", "AURORA/data/something/frames/64412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting jar with glass"}]} +{"id": "000000113785", "images": ["AURORA/data/something/frames/183136/first.jpg", "AURORA/data/something/frames/183136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending paperclip so that it deforms"}]} +{"id": "000000113786", "images": ["AURORA/data/something/frames/37062/first.jpg", "AURORA/data/something/frames/37062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging ring out of blanket"}]} +{"id": "000000113787", "images": ["AURORA/data/something/frames/64905/first.jpg", "AURORA/data/something/frames/64905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book, watch and remote on the table"}]} +{"id": "000000113788", "images": ["AURORA/data/something/frames/152358/first.jpg", "AURORA/data/something/frames/152358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a remote upside down"}]} +{"id": "000000113789", "images": ["AURORA/data/something/frames/129927/first.jpg", "AURORA/data/something/frames/129927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box and can away from each other"}]} +{"id": "000000113790", "images": ["AURORA/data/something/frames/47482/first.jpg", "AURORA/data/something/frames/47482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping iced tea mix up with a spoon"}]} +{"id": "000000113791", "images": ["AURORA/data/something/frames/212279/first.jpg", "AURORA/data/something/frames/212279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box from left to right"}]} +{"id": "000000113792", "images": ["AURORA/data/something/frames/157166/first.jpg", "AURORA/data/something/frames/157166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler with tooth brush"}]} +{"id": "000000113793", "images": ["AURORA/data/something/frames/102311/first.jpg", "AURORA/data/something/frames/102311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into multi-plug"}]} +{"id": "000000113794", "images": ["AURORA/data/something/frames/42411/first.jpg", "AURORA/data/something/frames/42411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sugar closer to coffee"}]} +{"id": "000000113795", "images": ["AURORA/data/something/frames/88253/first.jpg", "AURORA/data/something/frames/88253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote across a surface without it falling down"}]} +{"id": "000000113796", "images": ["AURORA/data/something/frames/99838/first.jpg", "AURORA/data/something/frames/99838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cellphone from right to left"}]} +{"id": "000000113797", "images": ["AURORA/data/something/frames/197154/first.jpg", "AURORA/data/something/frames/197154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a ruler behind a flowerpot"}]} +{"id": "000000113798", "images": ["AURORA/data/something/frames/5646/first.jpg", "AURORA/data/something/frames/5646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving perfume bottle and wax jar away from each other"}]} +{"id": "000000113799", "images": ["AURORA/data/something/frames/165368/first.jpg", "AURORA/data/something/frames/165368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper just a little bit"}]} +{"id": "000000113800", "images": ["AURORA/data/something/frames/131606/first.jpg", "AURORA/data/something/frames/131606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving carom coin closer to rubber band"}]} +{"id": "000000113801", "images": ["AURORA/data/something/frames/62189/first.jpg", "AURORA/data/something/frames/62189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing one tealight candle from left to right"}]} +{"id": "000000113802", "images": ["AURORA/data/something/frames/87468/first.jpg", "AURORA/data/something/frames/87468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a wall socket"}]} +{"id": "000000113803", "images": ["AURORA/data/something/frames/40842/first.jpg", "AURORA/data/something/frames/40842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying screw in flowerpot"}]} +{"id": "000000113804", "images": ["AURORA/data/something/frames/188772/first.jpg", "AURORA/data/something/frames/188772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113805", "images": ["AURORA/data/something/frames/98413/first.jpg", "AURORA/data/something/frames/98413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking keys up"}]} +{"id": "000000113806", "images": ["AURORA/data/something/frames/33342/first.jpg", "AURORA/data/something/frames/33342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper down"}]} +{"id": "000000113807", "images": ["AURORA/data/something/frames/190483/first.jpg", "AURORA/data/something/frames/190483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a ball with another ball"}]} +{"id": "000000113808", "images": ["AURORA/data/something/frames/17384/first.jpg", "AURORA/data/something/frames/17384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a coin"}]} +{"id": "000000113809", "images": ["AURORA/data/something/frames/112997/first.jpg", "AURORA/data/something/frames/112997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring grains into a glass jar until it overflows"}]} +{"id": "000000113810", "images": ["AURORA/data/something/frames/16498/first.jpg", "AURORA/data/something/frames/16498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a container upright on the table, so it falls on its side"}]} +{"id": "000000113811", "images": ["AURORA/data/something/frames/11775/first.jpg", "AURORA/data/something/frames/11775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into switch board"}]} +{"id": "000000113812", "images": ["AURORA/data/something/frames/172524/first.jpg", "AURORA/data/something/frames/172524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing bubble wrap into an envelope"}]} +{"id": "000000113813", "images": ["AURORA/data/something/frames/32443/first.jpg", "AURORA/data/something/frames/32443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 toys onto can"}]} +{"id": "000000113814", "images": ["AURORA/data/something/frames/199115/first.jpg", "AURORA/data/something/frames/199115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one screw"}]} +{"id": "000000113815", "images": ["AURORA/data/something/frames/136157/first.jpg", "AURORA/data/something/frames/136157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup with coffee beans over, so coffee beans falls out"}]} +{"id": "000000113816", "images": ["AURORA/data/something/frames/152384/first.jpg", "AURORA/data/something/frames/152384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a piece of cloth"}]} +{"id": "000000113817", "images": ["AURORA/data/something/frames/218744/first.jpg", "AURORA/data/something/frames/218744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of counter"}]} +{"id": "000000113818", "images": ["AURORA/data/something/frames/209032/first.jpg", "AURORA/data/something/frames/209032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching pin to pillow"}]} +{"id": "000000113819", "images": ["AURORA/data/something/frames/212856/first.jpg", "AURORA/data/something/frames/212856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy, block and comb on the table"}]} +{"id": "000000113820", "images": ["AURORA/data/something/frames/48416/first.jpg", "AURORA/data/something/frames/48416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with pen on it"}]} +{"id": "000000113821", "images": ["AURORA/data/something/frames/76809/first.jpg", "AURORA/data/something/frames/76809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a receipt into two pieces"}]} +{"id": "000000113822", "images": ["AURORA/data/something/frames/85020/first.jpg", "AURORA/data/something/frames/85020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and can closer to each other"}]} +{"id": "000000113823", "images": ["AURORA/data/something/frames/171814/first.jpg", "AURORA/data/something/frames/171814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing rose paper into two pieces"}]} +{"id": "000000113824", "images": ["AURORA/data/something/frames/156230/first.jpg", "AURORA/data/something/frames/156230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking rubber duck so that it falls over"}]} +{"id": "000000113825", "images": ["AURORA/data/something/frames/74608/first.jpg", "AURORA/data/something/frames/74608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000113826", "images": ["AURORA/data/something/frames/192818/first.jpg", "AURORA/data/something/frames/192818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming family"}]} +{"id": "000000113827", "images": ["AURORA/data/something/frames/113302/first.jpg", "AURORA/data/something/frames/113302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: potato colliding with potato and both are being deflected"}]} +{"id": "000000113828", "images": ["AURORA/data/something/frames/130824/first.jpg", "AURORA/data/something/frames/130824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending toothpaste so that it deforms"}]} +{"id": "000000113829", "images": ["AURORA/data/something/frames/58049/first.jpg", "AURORA/data/something/frames/58049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) rag wet until water comes out"}]} +{"id": "000000113830", "images": ["AURORA/data/something/frames/100820/first.jpg", "AURORA/data/something/frames/100820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a writing implement"}]} +{"id": "000000113831", "images": ["AURORA/data/something/frames/140340/first.jpg", "AURORA/data/something/frames/140340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing colorful scarf from left to right"}]} +{"id": "000000113832", "images": ["AURORA/data/something/frames/63757/first.jpg", "AURORA/data/something/frames/63757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving light lamp up"}]} +{"id": "000000113833", "images": ["AURORA/data/something/frames/44959/first.jpg", "AURORA/data/something/frames/44959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pasta until it breaks"}]} +{"id": "000000113834", "images": ["AURORA/data/something/frames/145865/first.jpg", "AURORA/data/something/frames/145865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper"}]} +{"id": "000000113835", "images": ["AURORA/data/something/frames/70714/first.jpg", "AURORA/data/something/frames/70714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse closer to watch"}]} +{"id": "000000113836", "images": ["AURORA/data/something/frames/109125/first.jpg", "AURORA/data/something/frames/109125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113837", "images": ["AURORA/data/something/frames/181356/first.jpg", "AURORA/data/something/frames/181356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing baking powder from left to right"}]} +{"id": "000000113838", "images": ["AURORA/data/something/frames/197104/first.jpg", "AURORA/data/something/frames/197104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending instruction booklet so that it deforms"}]} +{"id": "000000113839", "images": ["AURORA/data/something/frames/106143/first.jpg", "AURORA/data/something/frames/106143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid closer to straw"}]} +{"id": "000000113840", "images": ["AURORA/data/something/frames/104402/first.jpg", "AURORA/data/something/frames/104402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering box with blanket"}]} +{"id": "000000113841", "images": ["AURORA/data/something/frames/137033/first.jpg", "AURORA/data/something/frames/137033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000113842", "images": ["AURORA/data/something/frames/43560/first.jpg", "AURORA/data/something/frames/43560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking aa battery"}]} +{"id": "000000113843", "images": ["AURORA/data/something/frames/14152/first.jpg", "AURORA/data/something/frames/14152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a wallet"}]} +{"id": "000000113844", "images": ["AURORA/data/something/frames/135778/first.jpg", "AURORA/data/something/frames/135778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) front of door"}]} +{"id": "000000113845", "images": ["AURORA/data/something/frames/77546/first.jpg", "AURORA/data/something/frames/77546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pendrive with green coloured cup"}]} +{"id": "000000113846", "images": ["AURORA/data/something/frames/25186/first.jpg", "AURORA/data/something/frames/25186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a biscuit"}]} +{"id": "000000113847", "images": ["AURORA/data/something/frames/23358/first.jpg", "AURORA/data/something/frames/23358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking battery out of mug"}]} +{"id": "000000113848", "images": ["AURORA/data/something/frames/71022/first.jpg", "AURORA/data/something/frames/71022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 pencil sharpners"}]} +{"id": "000000113849", "images": ["AURORA/data/something/frames/220247/first.jpg", "AURORA/data/something/frames/220247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one plate"}]} +{"id": "000000113850", "images": ["AURORA/data/something/frames/157617/first.jpg", "AURORA/data/something/frames/157617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keyboard next to backpack"}]} +{"id": "000000113851", "images": ["AURORA/data/something/frames/150705/first.jpg", "AURORA/data/something/frames/150705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pill box on a surface"}]} +{"id": "000000113852", "images": ["AURORA/data/something/frames/89877/first.jpg", "AURORA/data/something/frames/89877/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding folding kerchief"}]} +{"id": "000000113853", "images": ["AURORA/data/something/frames/150511/first.jpg", "AURORA/data/something/frames/150511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key so that it almost falls off but doesn't"}]} +{"id": "000000113854", "images": ["AURORA/data/something/frames/10124/first.jpg", "AURORA/data/something/frames/10124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing envelope into two pieces"}]} +{"id": "000000113855", "images": ["AURORA/data/something/frames/179875/first.jpg", "AURORA/data/something/frames/179875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving smart phone down"}]} +{"id": "000000113856", "images": ["AURORA/data/something/frames/160186/first.jpg", "AURORA/data/something/frames/160186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into outlet"}]} +{"id": "000000113857", "images": ["AURORA/data/something/frames/82448/first.jpg", "AURORA/data/something/frames/82448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle closer to cup"}]} +{"id": "000000113858", "images": ["AURORA/data/something/frames/213579/first.jpg", "AURORA/data/something/frames/213579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book onto chair"}]} +{"id": "000000113859", "images": ["AURORA/data/something/frames/45416/first.jpg", "AURORA/data/something/frames/45416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming green water bottle"}]} +{"id": "000000113860", "images": ["AURORA/data/something/frames/109307/first.jpg", "AURORA/data/something/frames/109307/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling orange post-it from left to right"}]} +{"id": "000000113861", "images": ["AURORA/data/something/frames/127994/first.jpg", "AURORA/data/something/frames/127994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto book"}]} +{"id": "000000113862", "images": ["AURORA/data/something/frames/179725/first.jpg", "AURORA/data/something/frames/179725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of coaster without letting it drop down"}]} +{"id": "000000113863", "images": ["AURORA/data/something/frames/48706/first.jpg", "AURORA/data/something/frames/48706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil, a pen and scissors on the table"}]} +{"id": "000000113864", "images": ["AURORA/data/something/frames/40962/first.jpg", "AURORA/data/something/frames/40962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pen with a book"}]} +{"id": "000000113865", "images": ["AURORA/data/something/frames/200180/first.jpg", "AURORA/data/something/frames/200180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a towel"}]} +{"id": "000000113866", "images": ["AURORA/data/something/frames/90522/first.jpg", "AURORA/data/something/frames/90522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering table"}]} +{"id": "000000113867", "images": ["AURORA/data/something/frames/182237/first.jpg", "AURORA/data/something/frames/182237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book"}]} +{"id": "000000113868", "images": ["AURORA/data/something/frames/166398/first.jpg", "AURORA/data/something/frames/166398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching cap to pen"}]} +{"id": "000000113869", "images": ["AURORA/data/something/frames/26972/first.jpg", "AURORA/data/something/frames/26972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming tv"}]} +{"id": "000000113870", "images": ["AURORA/data/something/frames/124781/first.jpg", "AURORA/data/something/frames/124781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour milk into cup, but missing so it spills next to it"}]} +{"id": "000000113871", "images": ["AURORA/data/something/frames/156369/first.jpg", "AURORA/data/something/frames/156369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving banana towards the camera"}]} +{"id": "000000113872", "images": ["AURORA/data/something/frames/29717/first.jpg", "AURORA/data/something/frames/29717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving block and toy away from each other"}]} +{"id": "000000113873", "images": ["AURORA/data/something/frames/70290/first.jpg", "AURORA/data/something/frames/70290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen with other pens"}]} +{"id": "000000113874", "images": ["AURORA/data/something/frames/76510/first.jpg", "AURORA/data/something/frames/76510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and lighter closer to each other"}]} +{"id": "000000113875", "images": ["AURORA/data/something/frames/1317/first.jpg", "AURORA/data/something/frames/1317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of duster without letting it drop down"}]} +{"id": "000000113876", "images": ["AURORA/data/something/frames/84961/first.jpg", "AURORA/data/something/frames/84961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping newspaper behind bag"}]} +{"id": "000000113877", "images": ["AURORA/data/something/frames/52267/first.jpg", "AURORA/data/something/frames/52267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into power strip"}]} +{"id": "000000113878", "images": ["AURORA/data/something/frames/153371/first.jpg", "AURORA/data/something/frames/153371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking magnet clip so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113879", "images": ["AURORA/data/something/frames/180197/first.jpg", "AURORA/data/something/frames/180197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking remote control from bed"}]} +{"id": "000000113880", "images": ["AURORA/data/something/frames/191570/first.jpg", "AURORA/data/something/frames/191570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting car keys on a surface"}]} +{"id": "000000113881", "images": ["AURORA/data/something/frames/65762/first.jpg", "AURORA/data/something/frames/65762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass"}]} +{"id": "000000113882", "images": ["AURORA/data/something/frames/150143/first.jpg", "AURORA/data/something/frames/150143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping tea off of a table"}]} +{"id": "000000113883", "images": ["AURORA/data/something/frames/55675/first.jpg", "AURORA/data/something/frames/55675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding papers"}]} +{"id": "000000113884", "images": ["AURORA/data/something/frames/1488/first.jpg", "AURORA/data/something/frames/1488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler in front of ointment"}]} +{"id": "000000113885", "images": ["AURORA/data/something/frames/217361/first.jpg", "AURORA/data/something/frames/217361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering key"}]} +{"id": "000000113886", "images": ["AURORA/data/something/frames/220191/first.jpg", "AURORA/data/something/frames/220191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving big rock up"}]} +{"id": "000000113887", "images": ["AURORA/data/something/frames/150085/first.jpg", "AURORA/data/something/frames/150085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a glue bottle with scissors"}]} +{"id": "000000113888", "images": ["AURORA/data/something/frames/39589/first.jpg", "AURORA/data/something/frames/39589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a mouse with a sheet of paper"}]} +{"id": "000000113889", "images": ["AURORA/data/something/frames/158329/first.jpg", "AURORA/data/something/frames/158329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a can down"}]} +{"id": "000000113890", "images": ["AURORA/data/something/frames/77020/first.jpg", "AURORA/data/something/frames/77020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 remotes onto tissue"}]} +{"id": "000000113891", "images": ["AURORA/data/something/frames/39134/first.jpg", "AURORA/data/something/frames/39134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting headphones underneath a bed"}]} +{"id": "000000113892", "images": ["AURORA/data/something/frames/117763/first.jpg", "AURORA/data/something/frames/117763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving block away from box"}]} +{"id": "000000113893", "images": ["AURORA/data/something/frames/99550/first.jpg", "AURORA/data/something/frames/99550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing chapati into two pieces"}]} +{"id": "000000113894", "images": ["AURORA/data/something/frames/102275/first.jpg", "AURORA/data/something/frames/102275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a box with a napkin"}]} +{"id": "000000113895", "images": ["AURORA/data/something/frames/154564/first.jpg", "AURORA/data/something/frames/154564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of floor"}]} +{"id": "000000113896", "images": ["AURORA/data/something/frames/86353/first.jpg", "AURORA/data/something/frames/86353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into the socket to the wall but pulling it right out as you remove your hand"}]} +{"id": "000000113897", "images": ["AURORA/data/something/frames/135077/first.jpg", "AURORA/data/something/frames/135077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toothbrush upright on the table, so it falls on its side"}]} +{"id": "000000113898", "images": ["AURORA/data/something/frames/207303/first.jpg", "AURORA/data/something/frames/207303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000113899", "images": ["AURORA/data/something/frames/211430/first.jpg", "AURORA/data/something/frames/211430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into charger"}]} +{"id": "000000113900", "images": ["AURORA/data/something/frames/164427/first.jpg", "AURORA/data/something/frames/164427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle with vitamins over, so vitamins falls out"}]} +{"id": "000000113901", "images": ["AURORA/data/something/frames/71368/first.jpg", "AURORA/data/something/frames/71368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113902", "images": ["AURORA/data/something/frames/8562/first.jpg", "AURORA/data/something/frames/8562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a box away from a cube"}]} +{"id": "000000113903", "images": ["AURORA/data/something/frames/11244/first.jpg", "AURORA/data/something/frames/11244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning shoe brush upside down"}]} +{"id": "000000113904", "images": ["AURORA/data/something/frames/74229/first.jpg", "AURORA/data/something/frames/74229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and tape closer to each other"}]} +{"id": "000000113905", "images": ["AURORA/data/something/frames/78247/first.jpg", "AURORA/data/something/frames/78247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a paper so that it separates into two pieces"}]} +{"id": "000000113906", "images": ["AURORA/data/something/frames/29580/first.jpg", "AURORA/data/something/frames/29580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting pot holder"}]} +{"id": "000000113907", "images": ["AURORA/data/something/frames/3651/first.jpg", "AURORA/data/something/frames/3651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shaving brush onto box so it falls down"}]} +{"id": "000000113908", "images": ["AURORA/data/something/frames/162833/first.jpg", "AURORA/data/something/frames/162833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys next to bowl"}]} +{"id": "000000113909", "images": ["AURORA/data/something/frames/108670/first.jpg", "AURORA/data/something/frames/108670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a spoon with an apple on it"}]} +{"id": "000000113910", "images": ["AURORA/data/something/frames/141032/first.jpg", "AURORA/data/something/frames/141032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting baking powder on a surface"}]} +{"id": "000000113911", "images": ["AURORA/data/something/frames/179648/first.jpg", "AURORA/data/something/frames/179648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book next to book"}]} +{"id": "000000113912", "images": ["AURORA/data/something/frames/192817/first.jpg", "AURORA/data/something/frames/192817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen off of a table"}]} +{"id": "000000113913", "images": ["AURORA/data/something/frames/217921/first.jpg", "AURORA/data/something/frames/217921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hat and shoe so they pass each other"}]} +{"id": "000000113914", "images": ["AURORA/data/something/frames/155438/first.jpg", "AURORA/data/something/frames/155438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle next to an iron"}]} +{"id": "000000113915", "images": ["AURORA/data/something/frames/60638/first.jpg", "AURORA/data/something/frames/60638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass jar from box"}]} +{"id": "000000113916", "images": ["AURORA/data/something/frames/20096/first.jpg", "AURORA/data/something/frames/20096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wooden stick, battery and striker on the table"}]} +{"id": "000000113917", "images": ["AURORA/data/something/frames/93987/first.jpg", "AURORA/data/something/frames/93987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cow up"}]} +{"id": "000000113918", "images": ["AURORA/data/something/frames/161930/first.jpg", "AURORA/data/something/frames/161930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stuffed animal from right to left"}]} +{"id": "000000113919", "images": ["AURORA/data/something/frames/46571/first.jpg", "AURORA/data/something/frames/46571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book across a surface without it falling down"}]} +{"id": "000000113920", "images": ["AURORA/data/something/frames/122043/first.jpg", "AURORA/data/something/frames/122043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel down"}]} +{"id": "000000113921", "images": ["AURORA/data/something/frames/62533/first.jpg", "AURORA/data/something/frames/62533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing bandaids into two pieces"}]} +{"id": "000000113922", "images": ["AURORA/data/something/frames/122847/first.jpg", "AURORA/data/something/frames/122847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: batery colliding with batery and both come to a halt"}]} +{"id": "000000113923", "images": ["AURORA/data/something/frames/212378/first.jpg", "AURORA/data/something/frames/212378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glas and glas closer to each other"}]} +{"id": "000000113924", "images": ["AURORA/data/something/frames/150617/first.jpg", "AURORA/data/something/frames/150617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking string so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113925", "images": ["AURORA/data/something/frames/64089/first.jpg", "AURORA/data/something/frames/64089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ball"}]} +{"id": "000000113926", "images": ["AURORA/data/something/frames/204778/first.jpg", "AURORA/data/something/frames/204778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors away from a box"}]} +{"id": "000000113927", "images": ["AURORA/data/something/frames/130956/first.jpg", "AURORA/data/something/frames/130956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mug upside down"}]} +{"id": "000000113928", "images": ["AURORA/data/something/frames/84056/first.jpg", "AURORA/data/something/frames/84056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pack of gum onto a notebook"}]} +{"id": "000000113929", "images": ["AURORA/data/something/frames/67015/first.jpg", "AURORA/data/something/frames/67015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000113930", "images": ["AURORA/data/something/frames/59375/first.jpg", "AURORA/data/something/frames/59375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of envelopes so the stack collapses"}]} +{"id": "000000113931", "images": ["AURORA/data/something/frames/140370/first.jpg", "AURORA/data/something/frames/140370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000113932", "images": ["AURORA/data/something/frames/4651/first.jpg", "AURORA/data/something/frames/4651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing tumbler cap"}]} +{"id": "000000113933", "images": ["AURORA/data/something/frames/213960/first.jpg", "AURORA/data/something/frames/213960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a mug so that it almost falls off but doesn't"}]} +{"id": "000000113934", "images": ["AURORA/data/something/frames/138200/first.jpg", "AURORA/data/something/frames/138200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys onto the table"}]} +{"id": "000000113935", "images": ["AURORA/data/something/frames/134949/first.jpg", "AURORA/data/something/frames/134949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pink toothbrush case from right to left"}]} +{"id": "000000113936", "images": ["AURORA/data/something/frames/73891/first.jpg", "AURORA/data/something/frames/73891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mug from right to left"}]} +{"id": "000000113937", "images": ["AURORA/data/something/frames/81960/first.jpg", "AURORA/data/something/frames/81960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tissues and block on the table"}]} +{"id": "000000113938", "images": ["AURORA/data/something/frames/72154/first.jpg", "AURORA/data/something/frames/72154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging key into lock but pulling it right out as you remove your hand"}]} +{"id": "000000113939", "images": ["AURORA/data/something/frames/131016/first.jpg", "AURORA/data/something/frames/131016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing something into something"}]} +{"id": "000000113940", "images": ["AURORA/data/something/frames/132836/first.jpg", "AURORA/data/something/frames/132836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000113941", "images": ["AURORA/data/something/frames/137811/first.jpg", "AURORA/data/something/frames/137811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping ac outlet off of paper"}]} +{"id": "000000113942", "images": ["AURORA/data/something/frames/182920/first.jpg", "AURORA/data/something/frames/182920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering an ipad"}]} +{"id": "000000113943", "images": ["AURORA/data/something/frames/91634/first.jpg", "AURORA/data/something/frames/91634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a shoe brush into a box"}]} +{"id": "000000113944", "images": ["AURORA/data/something/frames/154652/first.jpg", "AURORA/data/something/frames/154652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing toilet paper into two pieces"}]} +{"id": "000000113945", "images": ["AURORA/data/something/frames/117190/first.jpg", "AURORA/data/something/frames/117190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into tablet"}]} +{"id": "000000113946", "images": ["AURORA/data/something/frames/106432/first.jpg", "AURORA/data/something/frames/106432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing battery from left to right"}]} +{"id": "000000113947", "images": ["AURORA/data/something/frames/7609/first.jpg", "AURORA/data/something/frames/7609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting dvd box with scotch tape on it"}]} +{"id": "000000113948", "images": ["AURORA/data/something/frames/214306/first.jpg", "AURORA/data/something/frames/214306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into rice"}]} +{"id": "000000113949", "images": ["AURORA/data/something/frames/213207/first.jpg", "AURORA/data/something/frames/213207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a plate with a fork"}]} +{"id": "000000113950", "images": ["AURORA/data/something/frames/118121/first.jpg", "AURORA/data/something/frames/118121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cd"}]} +{"id": "000000113951", "images": ["AURORA/data/something/frames/58136/first.jpg", "AURORA/data/something/frames/58136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses next to a watch"}]} +{"id": "000000113952", "images": ["AURORA/data/something/frames/102030/first.jpg", "AURORA/data/something/frames/102030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bam box away from the bowl"}]} +{"id": "000000113953", "images": ["AURORA/data/something/frames/50015/first.jpg", "AURORA/data/something/frames/50015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a jar out of a shelf"}]} +{"id": "000000113954", "images": ["AURORA/data/something/frames/187387/first.jpg", "AURORA/data/something/frames/187387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping spectacle box next to orange cup"}]} +{"id": "000000113955", "images": ["AURORA/data/something/frames/71913/first.jpg", "AURORA/data/something/frames/71913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bottle"}]} +{"id": "000000113956", "images": ["AURORA/data/something/frames/47709/first.jpg", "AURORA/data/something/frames/47709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a box"}]} +{"id": "000000113957", "images": ["AURORA/data/something/frames/217226/first.jpg", "AURORA/data/something/frames/217226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sponge into bowl"}]} +{"id": "000000113958", "images": ["AURORA/data/something/frames/24902/first.jpg", "AURORA/data/something/frames/24902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a watch from left to right"}]} +{"id": "000000113959", "images": ["AURORA/data/something/frames/72854/first.jpg", "AURORA/data/something/frames/72854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000113960", "images": ["AURORA/data/something/frames/106474/first.jpg", "AURORA/data/something/frames/106474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into electrical outlet"}]} +{"id": "000000113961", "images": ["AURORA/data/something/frames/49120/first.jpg", "AURORA/data/something/frames/49120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into adapter but pulling it right out as you remove your hand"}]} +{"id": "000000113962", "images": ["AURORA/data/something/frames/123776/first.jpg", "AURORA/data/something/frames/123776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys out of bag"}]} +{"id": "000000113963", "images": ["AURORA/data/something/frames/140576/first.jpg", "AURORA/data/something/frames/140576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall socket"}]} +{"id": "000000113964", "images": ["AURORA/data/something/frames/140936/first.jpg", "AURORA/data/something/frames/140936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting can with lemon on it"}]} +{"id": "000000113965", "images": ["AURORA/data/something/frames/61766/first.jpg", "AURORA/data/something/frames/61766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cloth just a little bit"}]} +{"id": "000000113966", "images": ["AURORA/data/something/frames/78960/first.jpg", "AURORA/data/something/frames/78960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113967", "images": ["AURORA/data/something/frames/205377/first.jpg", "AURORA/data/something/frames/205377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charging cord into a charging base"}]} +{"id": "000000113968", "images": ["AURORA/data/something/frames/4391/first.jpg", "AURORA/data/something/frames/4391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a charger from right to left"}]} +{"id": "000000113969", "images": ["AURORA/data/something/frames/83045/first.jpg", "AURORA/data/something/frames/83045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching top to kettle"}]} +{"id": "000000113970", "images": ["AURORA/data/something/frames/76654/first.jpg", "AURORA/data/something/frames/76654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tool into bucket"}]} +{"id": "000000113971", "images": ["AURORA/data/something/frames/128734/first.jpg", "AURORA/data/something/frames/128734/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hairpin on a surface"}]} +{"id": "000000113972", "images": ["AURORA/data/something/frames/143947/first.jpg", "AURORA/data/something/frames/143947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing brown bracelet from left to right"}]} +{"id": "000000113973", "images": ["AURORA/data/something/frames/86087/first.jpg", "AURORA/data/something/frames/86087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pen"}]} +{"id": "000000113974", "images": ["AURORA/data/something/frames/199944/first.jpg", "AURORA/data/something/frames/199944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book up"}]} +{"id": "000000113975", "images": ["AURORA/data/something/frames/15603/first.jpg", "AURORA/data/something/frames/15603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a spoon with an envelope"}]} +{"id": "000000113976", "images": ["AURORA/data/something/frames/11123/first.jpg", "AURORA/data/something/frames/11123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring cream onto a plate"}]} +{"id": "000000113977", "images": ["AURORA/data/something/frames/206039/first.jpg", "AURORA/data/something/frames/206039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup"}]} +{"id": "000000113978", "images": ["AURORA/data/something/frames/114408/first.jpg", "AURORA/data/something/frames/114408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cigarettes so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000113979", "images": ["AURORA/data/something/frames/94943/first.jpg", "AURORA/data/something/frames/94943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending magnet so that it deforms"}]} +{"id": "000000113980", "images": ["AURORA/data/something/frames/74338/first.jpg", "AURORA/data/something/frames/74338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pen into purse"}]} +{"id": "000000113981", "images": ["AURORA/data/something/frames/61042/first.jpg", "AURORA/data/something/frames/61042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a cardboard bit just a little bit"}]} +{"id": "000000113982", "images": ["AURORA/data/something/frames/18041/first.jpg", "AURORA/data/something/frames/18041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000113983", "images": ["AURORA/data/something/frames/155147/first.jpg", "AURORA/data/something/frames/155147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into dirt"}]} +{"id": "000000113984", "images": ["AURORA/data/something/frames/192972/first.jpg", "AURORA/data/something/frames/192972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming toy"}]} +{"id": "000000113985", "images": ["AURORA/data/something/frames/174259/first.jpg", "AURORA/data/something/frames/174259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of glass"}]} +{"id": "000000113986", "images": ["AURORA/data/something/frames/94238/first.jpg", "AURORA/data/something/frames/94238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling boxes up"}]} +{"id": "000000113987", "images": ["AURORA/data/something/frames/7440/first.jpg", "AURORA/data/something/frames/7440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a ball"}]} +{"id": "000000113988", "images": ["AURORA/data/something/frames/39528/first.jpg", "AURORA/data/something/frames/39528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a napkin into two pieces"}]} +{"id": "000000113989", "images": ["AURORA/data/something/frames/215426/first.jpg", "AURORA/data/something/frames/215426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eye drops across a surface without it falling down"}]} +{"id": "000000113990", "images": ["AURORA/data/something/frames/72727/first.jpg", "AURORA/data/something/frames/72727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting board clip, bolt and chalk on the table"}]} +{"id": "000000113991", "images": ["AURORA/data/something/frames/75045/first.jpg", "AURORA/data/something/frames/75045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a stone onto a slanted surface but it doesn't glide down"}]} +{"id": "000000113992", "images": ["AURORA/data/something/frames/12605/first.jpg", "AURORA/data/something/frames/12605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into laptop"}]} +{"id": "000000113993", "images": ["AURORA/data/something/frames/73923/first.jpg", "AURORA/data/something/frames/73923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet and harmonica on the table"}]} +{"id": "000000113994", "images": ["AURORA/data/something/frames/125802/first.jpg", "AURORA/data/something/frames/125802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering hair band with black pouch"}]} +{"id": "000000113995", "images": ["AURORA/data/something/frames/81501/first.jpg", "AURORA/data/something/frames/81501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping stuffed animal next to stuffed animal"}]} +{"id": "000000113996", "images": ["AURORA/data/something/frames/215647/first.jpg", "AURORA/data/something/frames/215647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a pencil"}]} +{"id": "000000113997", "images": ["AURORA/data/something/frames/79253/first.jpg", "AURORA/data/something/frames/79253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keys and phone closer to each other"}]} +{"id": "000000113998", "images": ["AURORA/data/something/frames/91162/first.jpg", "AURORA/data/something/frames/91162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper into a folder"}]} +{"id": "000000113999", "images": ["AURORA/data/something/frames/23873/first.jpg", "AURORA/data/something/frames/23873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming carton box"}]} +{"id": "000000114000", "images": ["AURORA/data/something/frames/4387/first.jpg", "AURORA/data/something/frames/4387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote into a box"}]} +{"id": "000000114001", "images": ["AURORA/data/something/frames/62731/first.jpg", "AURORA/data/something/frames/62731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a toy horse underneath a coffee table"}]} +{"id": "000000114002", "images": ["AURORA/data/something/frames/220085/first.jpg", "AURORA/data/something/frames/220085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving laptop up"}]} +{"id": "000000114003", "images": ["AURORA/data/something/frames/138177/first.jpg", "AURORA/data/something/frames/138177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eye kajal away from pendrive"}]} +{"id": "000000114004", "images": ["AURORA/data/something/frames/28464/first.jpg", "AURORA/data/something/frames/28464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pizza cutter"}]} +{"id": "000000114005", "images": ["AURORA/data/something/frames/86548/first.jpg", "AURORA/data/something/frames/86548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling something up"}]} +{"id": "000000114006", "images": ["AURORA/data/something/frames/188726/first.jpg", "AURORA/data/something/frames/188726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of pen drive"}]} +{"id": "000000114007", "images": ["AURORA/data/something/frames/38073/first.jpg", "AURORA/data/something/frames/38073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling novels up"}]} +{"id": "000000114008", "images": ["AURORA/data/something/frames/116615/first.jpg", "AURORA/data/something/frames/116615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000114009", "images": ["AURORA/data/something/frames/150023/first.jpg", "AURORA/data/something/frames/150023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a toy from behind of the couch"}]} +{"id": "000000114010", "images": ["AURORA/data/something/frames/29279/first.jpg", "AURORA/data/something/frames/29279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving left foot and right foot so they collide with each other"}]} +{"id": "000000114011", "images": ["AURORA/data/something/frames/2059/first.jpg", "AURORA/data/something/frames/2059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: red crayon colliding with blue crayon and both are being deflected"}]} +{"id": "000000114012", "images": ["AURORA/data/something/frames/143113/first.jpg", "AURORA/data/something/frames/143113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with lighter on it until it starts sliding down"}]} +{"id": "000000114013", "images": ["AURORA/data/something/frames/130068/first.jpg", "AURORA/data/something/frames/130068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000114014", "images": ["AURORA/data/something/frames/64480/first.jpg", "AURORA/data/something/frames/64480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging chord into outlet"}]} +{"id": "000000114015", "images": ["AURORA/data/something/frames/103583/first.jpg", "AURORA/data/something/frames/103583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bowl upside down"}]} +{"id": "000000114016", "images": ["AURORA/data/something/frames/120106/first.jpg", "AURORA/data/something/frames/120106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000114017", "images": ["AURORA/data/something/frames/150329/first.jpg", "AURORA/data/something/frames/150329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marble"}]} +{"id": "000000114018", "images": ["AURORA/data/something/frames/73312/first.jpg", "AURORA/data/something/frames/73312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cellphone"}]} +{"id": "000000114019", "images": ["AURORA/data/something/frames/55572/first.jpg", "AURORA/data/something/frames/55572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying toy on the table on its side, not upright"}]} +{"id": "000000114020", "images": ["AURORA/data/something/frames/28328/first.jpg", "AURORA/data/something/frames/28328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting dvd with phone on it"}]} +{"id": "000000114021", "images": ["AURORA/data/something/frames/66067/first.jpg", "AURORA/data/something/frames/66067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg onto a comb"}]} +{"id": "000000114022", "images": ["AURORA/data/something/frames/112419/first.jpg", "AURORA/data/something/frames/112419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000114023", "images": ["AURORA/data/something/frames/188022/first.jpg", "AURORA/data/something/frames/188022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing granola bar from right to left"}]} +{"id": "000000114024", "images": ["AURORA/data/something/frames/140180/first.jpg", "AURORA/data/something/frames/140180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000114025", "images": ["AURORA/data/something/frames/130831/first.jpg", "AURORA/data/something/frames/130831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a cup so that it falls over"}]} +{"id": "000000114026", "images": ["AURORA/data/something/frames/86510/first.jpg", "AURORA/data/something/frames/86510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper mat"}]} +{"id": "000000114027", "images": ["AURORA/data/something/frames/205685/first.jpg", "AURORA/data/something/frames/205685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000114028", "images": ["AURORA/data/something/frames/69019/first.jpg", "AURORA/data/something/frames/69019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting belt, calculator and lock on the table"}]} +{"id": "000000114029", "images": ["AURORA/data/something/frames/40101/first.jpg", "AURORA/data/something/frames/40101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plate away from the camera"}]} +{"id": "000000114030", "images": ["AURORA/data/something/frames/48077/first.jpg", "AURORA/data/something/frames/48077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mugs"}]} +{"id": "000000114031", "images": ["AURORA/data/something/frames/16482/first.jpg", "AURORA/data/something/frames/16482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding an envelope"}]} +{"id": "000000114032", "images": ["AURORA/data/something/frames/95431/first.jpg", "AURORA/data/something/frames/95431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into penstand"}]} +{"id": "000000114033", "images": ["AURORA/data/something/frames/102620/first.jpg", "AURORA/data/something/frames/102620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a remote away from a comb"}]} +{"id": "000000114034", "images": ["AURORA/data/something/frames/187808/first.jpg", "AURORA/data/something/frames/187808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tape measure so that it deforms"}]} +{"id": "000000114035", "images": ["AURORA/data/something/frames/175742/first.jpg", "AURORA/data/something/frames/175742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a battery from right to left"}]} +{"id": "000000114036", "images": ["AURORA/data/something/frames/187496/first.jpg", "AURORA/data/something/frames/187496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler from left to right"}]} +{"id": "000000114037", "images": ["AURORA/data/something/frames/79237/first.jpg", "AURORA/data/something/frames/79237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing piece of paper just a little bit"}]} +{"id": "000000114038", "images": ["AURORA/data/something/frames/75216/first.jpg", "AURORA/data/something/frames/75216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many similar things on the table"}]} +{"id": "000000114039", "images": ["AURORA/data/something/frames/125290/first.jpg", "AURORA/data/something/frames/125290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading lentiles onto plate"}]} +{"id": "000000114040", "images": ["AURORA/data/something/frames/116099/first.jpg", "AURORA/data/something/frames/116099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000114041", "images": ["AURORA/data/something/frames/210441/first.jpg", "AURORA/data/something/frames/210441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black pouch bag from right to left"}]} +{"id": "000000114042", "images": ["AURORA/data/something/frames/174303/first.jpg", "AURORA/data/something/frames/174303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114043", "images": ["AURORA/data/something/frames/67096/first.jpg", "AURORA/data/something/frames/67096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hairspray down"}]} +{"id": "000000114044", "images": ["AURORA/data/something/frames/183763/first.jpg", "AURORA/data/something/frames/183763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a water bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114045", "images": ["AURORA/data/something/frames/82867/first.jpg", "AURORA/data/something/frames/82867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle of tool oil on the table on its side, not upright"}]} +{"id": "000000114046", "images": ["AURORA/data/something/frames/60095/first.jpg", "AURORA/data/something/frames/60095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114047", "images": ["AURORA/data/something/frames/211224/first.jpg", "AURORA/data/something/frames/211224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping milk off of table"}]} +{"id": "000000114048", "images": ["AURORA/data/something/frames/12331/first.jpg", "AURORA/data/something/frames/12331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking measurement spoon out of cupboard"}]} +{"id": "000000114049", "images": ["AURORA/data/something/frames/15266/first.jpg", "AURORA/data/something/frames/15266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a jar"}]} +{"id": "000000114050", "images": ["AURORA/data/something/frames/182527/first.jpg", "AURORA/data/something/frames/182527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottle"}]} +{"id": "000000114051", "images": ["AURORA/data/something/frames/111236/first.jpg", "AURORA/data/something/frames/111236/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bay leaves upright on the table, so it falls on its side"}]} +{"id": "000000114052", "images": ["AURORA/data/something/frames/78583/first.jpg", "AURORA/data/something/frames/78583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading pens onto flat surface"}]} +{"id": "000000114053", "images": ["AURORA/data/something/frames/67103/first.jpg", "AURORA/data/something/frames/67103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114054", "images": ["AURORA/data/something/frames/213741/first.jpg", "AURORA/data/something/frames/213741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding tea towel"}]} +{"id": "000000114055", "images": ["AURORA/data/something/frames/27206/first.jpg", "AURORA/data/something/frames/27206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle with book"}]} +{"id": "000000114056", "images": ["AURORA/data/something/frames/72889/first.jpg", "AURORA/data/something/frames/72889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing papper into a cup"}]} +{"id": "000000114057", "images": ["AURORA/data/something/frames/3413/first.jpg", "AURORA/data/something/frames/3413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a power plug"}]} +{"id": "000000114058", "images": ["AURORA/data/something/frames/71778/first.jpg", "AURORA/data/something/frames/71778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass until it overflows"}]} +{"id": "000000114059", "images": ["AURORA/data/something/frames/55513/first.jpg", "AURORA/data/something/frames/55513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a lighter into a beach bucket"}]} +{"id": "000000114060", "images": ["AURORA/data/something/frames/82026/first.jpg", "AURORA/data/something/frames/82026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling baking soda onto ground"}]} +{"id": "000000114061", "images": ["AURORA/data/something/frames/69755/first.jpg", "AURORA/data/something/frames/69755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto banana"}]} +{"id": "000000114062", "images": ["AURORA/data/something/frames/5173/first.jpg", "AURORA/data/something/frames/5173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tiger toy colliding with elephant toy and both come to a halt"}]} +{"id": "000000114063", "images": ["AURORA/data/something/frames/105144/first.jpg", "AURORA/data/something/frames/105144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white candle from right to left"}]} +{"id": "000000114064", "images": ["AURORA/data/something/frames/91388/first.jpg", "AURORA/data/something/frames/91388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of paper towel so that it separates into two pieces"}]} +{"id": "000000114065", "images": ["AURORA/data/something/frames/201366/first.jpg", "AURORA/data/something/frames/201366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a card"}]} +{"id": "000000114066", "images": ["AURORA/data/something/frames/86145/first.jpg", "AURORA/data/something/frames/86145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a spectacle case up"}]} +{"id": "000000114067", "images": ["AURORA/data/something/frames/69735/first.jpg", "AURORA/data/something/frames/69735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) something wet until water comes out"}]} +{"id": "000000114068", "images": ["AURORA/data/something/frames/65130/first.jpg", "AURORA/data/something/frames/65130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a wallet up"}]} +{"id": "000000114069", "images": ["AURORA/data/something/frames/105110/first.jpg", "AURORA/data/something/frames/105110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling knife from behind of monitor"}]} +{"id": "000000114070", "images": ["AURORA/data/something/frames/77274/first.jpg", "AURORA/data/something/frames/77274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ball off of table"}]} +{"id": "000000114071", "images": ["AURORA/data/something/frames/151324/first.jpg", "AURORA/data/something/frames/151324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pen so that it almost falls off but doesn't"}]} +{"id": "000000114072", "images": ["AURORA/data/something/frames/27177/first.jpg", "AURORA/data/something/frames/27177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking pumpkin so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114073", "images": ["AURORA/data/something/frames/25430/first.jpg", "AURORA/data/something/frames/25430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning book upside down"}]} +{"id": "000000114074", "images": ["AURORA/data/something/frames/109237/first.jpg", "AURORA/data/something/frames/109237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging extension cord into wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000114075", "images": ["AURORA/data/something/frames/10977/first.jpg", "AURORA/data/something/frames/10977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting stopper"}]} +{"id": "000000114076", "images": ["AURORA/data/something/frames/158936/first.jpg", "AURORA/data/something/frames/158936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pulling power bank from right to left from right to left"}]} +{"id": "000000114077", "images": ["AURORA/data/something/frames/149424/first.jpg", "AURORA/data/something/frames/149424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving thread down"}]} +{"id": "000000114078", "images": ["AURORA/data/something/frames/101862/first.jpg", "AURORA/data/something/frames/101862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering scissor"}]} +{"id": "000000114079", "images": ["AURORA/data/something/frames/182755/first.jpg", "AURORA/data/something/frames/182755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sports water bottle and green water bottle on the table"}]} +{"id": "000000114080", "images": ["AURORA/data/something/frames/30209/first.jpg", "AURORA/data/something/frames/30209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a chair across a surface without it falling down"}]} +{"id": "000000114081", "images": ["AURORA/data/something/frames/185144/first.jpg", "AURORA/data/something/frames/185144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hair pin"}]} +{"id": "000000114082", "images": ["AURORA/data/something/frames/38566/first.jpg", "AURORA/data/something/frames/38566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping q-tips into a coffee can"}]} +{"id": "000000114083", "images": ["AURORA/data/something/frames/5875/first.jpg", "AURORA/data/something/frames/5875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering mug with cloth"}]} +{"id": "000000114084", "images": ["AURORA/data/something/frames/92349/first.jpg", "AURORA/data/something/frames/92349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball up"}]} +{"id": "000000114085", "images": ["AURORA/data/something/frames/188722/first.jpg", "AURORA/data/something/frames/188722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery closer to other battery"}]} +{"id": "000000114086", "images": ["AURORA/data/something/frames/68762/first.jpg", "AURORA/data/something/frames/68762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving jeep away from the camera"}]} +{"id": "000000114087", "images": ["AURORA/data/something/frames/112521/first.jpg", "AURORA/data/something/frames/112521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000114088", "images": ["AURORA/data/something/frames/74764/first.jpg", "AURORA/data/something/frames/74764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a speaker colliding with a shirt and both come to a halt"}]} +{"id": "000000114089", "images": ["AURORA/data/something/frames/8642/first.jpg", "AURORA/data/something/frames/8642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a battery from left to right"}]} +{"id": "000000114090", "images": ["AURORA/data/something/frames/102916/first.jpg", "AURORA/data/something/frames/102916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000114091", "images": ["AURORA/data/something/frames/110111/first.jpg", "AURORA/data/something/frames/110111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing post it note into two pieces"}]} +{"id": "000000114092", "images": ["AURORA/data/something/frames/219234/first.jpg", "AURORA/data/something/frames/219234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering shoe with towel"}]} +{"id": "000000114093", "images": ["AURORA/data/something/frames/125277/first.jpg", "AURORA/data/something/frames/125277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors away from a bottle"}]} +{"id": "000000114094", "images": ["AURORA/data/something/frames/128760/first.jpg", "AURORA/data/something/frames/128760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 cd onto laptop"}]} +{"id": "000000114095", "images": ["AURORA/data/something/frames/22577/first.jpg", "AURORA/data/something/frames/22577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto table"}]} +{"id": "000000114096", "images": ["AURORA/data/something/frames/84160/first.jpg", "AURORA/data/something/frames/84160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lemon into basket"}]} +{"id": "000000114097", "images": ["AURORA/data/something/frames/78000/first.jpg", "AURORA/data/something/frames/78000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bottletop onto a box"}]} +{"id": "000000114098", "images": ["AURORA/data/something/frames/67207/first.jpg", "AURORA/data/something/frames/67207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardboard into two pieces"}]} +{"id": "000000114099", "images": ["AURORA/data/something/frames/159921/first.jpg", "AURORA/data/something/frames/159921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping badminton bat in front of a pair of shoes"}]} +{"id": "000000114100", "images": ["AURORA/data/something/frames/26291/first.jpg", "AURORA/data/something/frames/26291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hair gel bottle with nail paint remover"}]} +{"id": "000000114101", "images": ["AURORA/data/something/frames/120363/first.jpg", "AURORA/data/something/frames/120363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing notebook page into two pieces"}]} +{"id": "000000114102", "images": ["AURORA/data/something/frames/186913/first.jpg", "AURORA/data/something/frames/186913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into laptop"}]} +{"id": "000000114103", "images": ["AURORA/data/something/frames/182928/first.jpg", "AURORA/data/something/frames/182928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pencil"}]} +{"id": "000000114104", "images": ["AURORA/data/something/frames/218510/first.jpg", "AURORA/data/something/frames/218510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four books"}]} +{"id": "000000114105", "images": ["AURORA/data/something/frames/169915/first.jpg", "AURORA/data/something/frames/169915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting ipad with water bottle on it"}]} +{"id": "000000114106", "images": ["AURORA/data/something/frames/65950/first.jpg", "AURORA/data/something/frames/65950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle colliding with bottle and both are being deflected"}]} +{"id": "000000114107", "images": ["AURORA/data/something/frames/147533/first.jpg", "AURORA/data/something/frames/147533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a cup on the table on its side, not upright"}]} +{"id": "000000114108", "images": ["AURORA/data/something/frames/129181/first.jpg", "AURORA/data/something/frames/129181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup behind canister"}]} +{"id": "000000114109", "images": ["AURORA/data/something/frames/178550/first.jpg", "AURORA/data/something/frames/178550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving match box down"}]} +{"id": "000000114110", "images": ["AURORA/data/something/frames/157759/first.jpg", "AURORA/data/something/frames/157759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding reciept"}]} +{"id": "000000114111", "images": ["AURORA/data/something/frames/86401/first.jpg", "AURORA/data/something/frames/86401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing brown case from right to left"}]} +{"id": "000000114112", "images": ["AURORA/data/something/frames/144404/first.jpg", "AURORA/data/something/frames/144404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scotch tape so that it almost falls off but doesn't"}]} +{"id": "000000114113", "images": ["AURORA/data/something/frames/198150/first.jpg", "AURORA/data/something/frames/198150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy duck and plastic flower away from each other"}]} +{"id": "000000114114", "images": ["AURORA/data/something/frames/89166/first.jpg", "AURORA/data/something/frames/89166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000114115", "images": ["AURORA/data/something/frames/5248/first.jpg", "AURORA/data/something/frames/5248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a candle up completely without letting it drop down"}]} +{"id": "000000114116", "images": ["AURORA/data/something/frames/208314/first.jpg", "AURORA/data/something/frames/208314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling felt pen up"}]} +{"id": "000000114117", "images": ["AURORA/data/something/frames/81098/first.jpg", "AURORA/data/something/frames/81098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling papers up"}]} +{"id": "000000114118", "images": ["AURORA/data/something/frames/171081/first.jpg", "AURORA/data/something/frames/171081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clock in front of cup"}]} +{"id": "000000114119", "images": ["AURORA/data/something/frames/121504/first.jpg", "AURORA/data/something/frames/121504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000114120", "images": ["AURORA/data/something/frames/101681/first.jpg", "AURORA/data/something/frames/101681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 6 dog treats onto chopping board"}]} +{"id": "000000114121", "images": ["AURORA/data/something/frames/213334/first.jpg", "AURORA/data/something/frames/213334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving punching machine up"}]} +{"id": "000000114122", "images": ["AURORA/data/something/frames/184423/first.jpg", "AURORA/data/something/frames/184423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb next to a peg"}]} +{"id": "000000114123", "images": ["AURORA/data/something/frames/55398/first.jpg", "AURORA/data/something/frames/55398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of clementines without the stack collapsing"}]} +{"id": "000000114124", "images": ["AURORA/data/something/frames/196954/first.jpg", "AURORA/data/something/frames/196954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking toy out of box"}]} +{"id": "000000114125", "images": ["AURORA/data/something/frames/14270/first.jpg", "AURORA/data/something/frames/14270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper just a little bit"}]} +{"id": "000000114126", "images": ["AURORA/data/something/frames/18366/first.jpg", "AURORA/data/something/frames/18366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending envelope so that it deforms"}]} +{"id": "000000114127", "images": ["AURORA/data/something/frames/167596/first.jpg", "AURORA/data/something/frames/167596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing plastic bag just a little bit"}]} +{"id": "000000114128", "images": ["AURORA/data/something/frames/41450/first.jpg", "AURORA/data/something/frames/41450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000114129", "images": ["AURORA/data/something/frames/134471/first.jpg", "AURORA/data/something/frames/134471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000114130", "images": ["AURORA/data/something/frames/89099/first.jpg", "AURORA/data/something/frames/89099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling chopsticks out of package"}]} +{"id": "000000114131", "images": ["AURORA/data/something/frames/88732/first.jpg", "AURORA/data/something/frames/88732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone underneath mug"}]} +{"id": "000000114132", "images": ["AURORA/data/something/frames/24394/first.jpg", "AURORA/data/something/frames/24394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pencil out of cup"}]} +{"id": "000000114133", "images": ["AURORA/data/something/frames/81255/first.jpg", "AURORA/data/something/frames/81255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a charger so that it separates into two pieces"}]} +{"id": "000000114134", "images": ["AURORA/data/something/frames/143509/first.jpg", "AURORA/data/something/frames/143509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring koolaid into a bowl"}]} +{"id": "000000114135", "images": ["AURORA/data/something/frames/29472/first.jpg", "AURORA/data/something/frames/29472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting felt pen"}]} +{"id": "000000114136", "images": ["AURORA/data/something/frames/25938/first.jpg", "AURORA/data/something/frames/25938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notepad across a surface without it falling down"}]} +{"id": "000000114137", "images": ["AURORA/data/something/frames/85169/first.jpg", "AURORA/data/something/frames/85169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a woollen yarn into a box"}]} +{"id": "000000114138", "images": ["AURORA/data/something/frames/161027/first.jpg", "AURORA/data/something/frames/161027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 books"}]} +{"id": "000000114139", "images": ["AURORA/data/something/frames/100458/first.jpg", "AURORA/data/something/frames/100458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plate from desk"}]} +{"id": "000000114140", "images": ["AURORA/data/something/frames/129432/first.jpg", "AURORA/data/something/frames/129432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing door"}]} +{"id": "000000114141", "images": ["AURORA/data/something/frames/195005/first.jpg", "AURORA/data/something/frames/195005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a spoon up"}]} +{"id": "000000114142", "images": ["AURORA/data/something/frames/176329/first.jpg", "AURORA/data/something/frames/176329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000114143", "images": ["AURORA/data/something/frames/79168/first.jpg", "AURORA/data/something/frames/79168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a key away from a pen"}]} +{"id": "000000114144", "images": ["AURORA/data/something/frames/155824/first.jpg", "AURORA/data/something/frames/155824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114145", "images": ["AURORA/data/something/frames/83895/first.jpg", "AURORA/data/something/frames/83895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book onto books"}]} +{"id": "000000114146", "images": ["AURORA/data/something/frames/214793/first.jpg", "AURORA/data/something/frames/214793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000114147", "images": ["AURORA/data/something/frames/130837/first.jpg", "AURORA/data/something/frames/130837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box closer to can"}]} +{"id": "000000114148", "images": ["AURORA/data/something/frames/35183/first.jpg", "AURORA/data/something/frames/35183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tv remote with towel"}]} +{"id": "000000114149", "images": ["AURORA/data/something/frames/127248/first.jpg", "AURORA/data/something/frames/127248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a card upside down"}]} +{"id": "000000114150", "images": ["AURORA/data/something/frames/64912/first.jpg", "AURORA/data/something/frames/64912/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of glass"}]} +{"id": "000000114151", "images": ["AURORA/data/something/frames/99945/first.jpg", "AURORA/data/something/frames/99945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning box upside down"}]} +{"id": "000000114152", "images": ["AURORA/data/something/frames/208950/first.jpg", "AURORA/data/something/frames/208950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging toaster into socket"}]} +{"id": "000000114153", "images": ["AURORA/data/something/frames/158909/first.jpg", "AURORA/data/something/frames/158909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a power cord into a laptop"}]} +{"id": "000000114154", "images": ["AURORA/data/something/frames/124393/first.jpg", "AURORA/data/something/frames/124393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking documents out of bag"}]} +{"id": "000000114155", "images": ["AURORA/data/something/frames/10473/first.jpg", "AURORA/data/something/frames/10473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming banana"}]} +{"id": "000000114156", "images": ["AURORA/data/something/frames/45522/first.jpg", "AURORA/data/something/frames/45522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red spoon away from the camera"}]} +{"id": "000000114157", "images": ["AURORA/data/something/frames/60361/first.jpg", "AURORA/data/something/frames/60361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of cloth without letting it drop down"}]} +{"id": "000000114158", "images": ["AURORA/data/something/frames/74604/first.jpg", "AURORA/data/something/frames/74604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a plug"}]} +{"id": "000000114159", "images": ["AURORA/data/something/frames/107990/first.jpg", "AURORA/data/something/frames/107990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying red cup on the table on its side, not upright"}]} +{"id": "000000114160", "images": ["AURORA/data/something/frames/34047/first.jpg", "AURORA/data/something/frames/34047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toothbrush with notebook"}]} +{"id": "000000114161", "images": ["AURORA/data/something/frames/121487/first.jpg", "AURORA/data/something/frames/121487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000114162", "images": ["AURORA/data/something/frames/101117/first.jpg", "AURORA/data/something/frames/101117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000114163", "images": ["AURORA/data/something/frames/214149/first.jpg", "AURORA/data/something/frames/214149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tissue box on the edge of table so it is not supported and falls down"}]} +{"id": "000000114164", "images": ["AURORA/data/something/frames/203721/first.jpg", "AURORA/data/something/frames/203721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle next to kendama"}]} +{"id": "000000114165", "images": ["AURORA/data/something/frames/69439/first.jpg", "AURORA/data/something/frames/69439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of a mirror"}]} +{"id": "000000114166", "images": ["AURORA/data/something/frames/32741/first.jpg", "AURORA/data/something/frames/32741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe down"}]} +{"id": "000000114167", "images": ["AURORA/data/something/frames/53592/first.jpg", "AURORA/data/something/frames/53592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving basketball down"}]} +{"id": "000000114168", "images": ["AURORA/data/something/frames/113329/first.jpg", "AURORA/data/something/frames/113329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a book from a pile of books"}]} +{"id": "000000114169", "images": ["AURORA/data/something/frames/109268/first.jpg", "AURORA/data/something/frames/109268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting brush with paper on it"}]} +{"id": "000000114170", "images": ["AURORA/data/something/frames/16749/first.jpg", "AURORA/data/something/frames/16749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114171", "images": ["AURORA/data/something/frames/193403/first.jpg", "AURORA/data/something/frames/193403/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lunchbox behind a computer"}]} +{"id": "000000114172", "images": ["AURORA/data/something/frames/39205/first.jpg", "AURORA/data/something/frames/39205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing jar so that it almost falls off but doesn't"}]} +{"id": "000000114173", "images": ["AURORA/data/something/frames/179673/first.jpg", "AURORA/data/something/frames/179673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking candle so that it falls over"}]} +{"id": "000000114174", "images": ["AURORA/data/something/frames/162861/first.jpg", "AURORA/data/something/frames/162861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114175", "images": ["AURORA/data/something/frames/173426/first.jpg", "AURORA/data/something/frames/173426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting selfie stick behind wooden box"}]} +{"id": "000000114176", "images": ["AURORA/data/something/frames/100579/first.jpg", "AURORA/data/something/frames/100579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of play-doh"}]} +{"id": "000000114177", "images": ["AURORA/data/something/frames/213168/first.jpg", "AURORA/data/something/frames/213168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote control with hand"}]} +{"id": "000000114178", "images": ["AURORA/data/something/frames/36308/first.jpg", "AURORA/data/something/frames/36308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pant into bag"}]} +{"id": "000000114179", "images": ["AURORA/data/something/frames/195136/first.jpg", "AURORA/data/something/frames/195136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching toy with your camera"}]} +{"id": "000000114180", "images": ["AURORA/data/something/frames/145503/first.jpg", "AURORA/data/something/frames/145503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup off of table"}]} +{"id": "000000114181", "images": ["AURORA/data/something/frames/184810/first.jpg", "AURORA/data/something/frames/184810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) lid of box"}]} +{"id": "000000114182", "images": ["AURORA/data/something/frames/139652/first.jpg", "AURORA/data/something/frames/139652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a box with a book"}]} +{"id": "000000114183", "images": ["AURORA/data/something/frames/99304/first.jpg", "AURORA/data/something/frames/99304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto table"}]} +{"id": "000000114184", "images": ["AURORA/data/something/frames/157086/first.jpg", "AURORA/data/something/frames/157086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114185", "images": ["AURORA/data/something/frames/64685/first.jpg", "AURORA/data/something/frames/64685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup in front of a spoon"}]} +{"id": "000000114186", "images": ["AURORA/data/something/frames/129940/first.jpg", "AURORA/data/something/frames/129940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a pillow upside down"}]} +{"id": "000000114187", "images": ["AURORA/data/something/frames/43904/first.jpg", "AURORA/data/something/frames/43904/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote"}]} +{"id": "000000114188", "images": ["AURORA/data/something/frames/49552/first.jpg", "AURORA/data/something/frames/49552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling envelopes up"}]} +{"id": "000000114189", "images": ["AURORA/data/something/frames/211632/first.jpg", "AURORA/data/something/frames/211632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000114190", "images": ["AURORA/data/something/frames/22700/first.jpg", "AURORA/data/something/frames/22700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a thread so that it separates into two pieces"}]} +{"id": "000000114191", "images": ["AURORA/data/something/frames/28815/first.jpg", "AURORA/data/something/frames/28815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one spoon from many spoons on the table"}]} +{"id": "000000114192", "images": ["AURORA/data/something/frames/46642/first.jpg", "AURORA/data/something/frames/46642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000114193", "images": ["AURORA/data/something/frames/98886/first.jpg", "AURORA/data/something/frames/98886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000114194", "images": ["AURORA/data/something/frames/72298/first.jpg", "AURORA/data/something/frames/72298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking shoes from floor"}]} +{"id": "000000114195", "images": ["AURORA/data/something/frames/52971/first.jpg", "AURORA/data/something/frames/52971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing aim toothpaste from right to left"}]} +{"id": "000000114196", "images": ["AURORA/data/something/frames/155511/first.jpg", "AURORA/data/something/frames/155511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering an electric fan with a towel"}]} +{"id": "000000114197", "images": ["AURORA/data/something/frames/193863/first.jpg", "AURORA/data/something/frames/193863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a can with a basket"}]} +{"id": "000000114198", "images": ["AURORA/data/something/frames/211354/first.jpg", "AURORA/data/something/frames/211354/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lipstick colliding with another lipstick and both are being deflected"}]} +{"id": "000000114199", "images": ["AURORA/data/something/frames/64794/first.jpg", "AURORA/data/something/frames/64794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle with bowl"}]} +{"id": "000000114200", "images": ["AURORA/data/something/frames/56120/first.jpg", "AURORA/data/something/frames/56120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 book"}]} +{"id": "000000114201", "images": ["AURORA/data/something/frames/107138/first.jpg", "AURORA/data/something/frames/107138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing tin"}]} +{"id": "000000114202", "images": ["AURORA/data/something/frames/131342/first.jpg", "AURORA/data/something/frames/131342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with teatowel"}]} +{"id": "000000114203", "images": ["AURORA/data/something/frames/192642/first.jpg", "AURORA/data/something/frames/192642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking jar out of box"}]} +{"id": "000000114204", "images": ["AURORA/data/something/frames/146799/first.jpg", "AURORA/data/something/frames/146799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone but pulling it right out as you remove your hand"}]} +{"id": "000000114205", "images": ["AURORA/data/something/frames/90618/first.jpg", "AURORA/data/something/frames/90618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator away from box"}]} +{"id": "000000114206", "images": ["AURORA/data/something/frames/112522/first.jpg", "AURORA/data/something/frames/112522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting remote control up completely without letting it drop down"}]} +{"id": "000000114207", "images": ["AURORA/data/something/frames/130003/first.jpg", "AURORA/data/something/frames/130003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water bottle"}]} +{"id": "000000114208", "images": ["AURORA/data/something/frames/121225/first.jpg", "AURORA/data/something/frames/121225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pill bottle into sink"}]} +{"id": "000000114209", "images": ["AURORA/data/something/frames/24132/first.jpg", "AURORA/data/something/frames/24132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cups up"}]} +{"id": "000000114210", "images": ["AURORA/data/something/frames/183163/first.jpg", "AURORA/data/something/frames/183163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cork with hat"}]} +{"id": "000000114211", "images": ["AURORA/data/something/frames/65191/first.jpg", "AURORA/data/something/frames/65191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin next to a belt"}]} +{"id": "000000114212", "images": ["AURORA/data/something/frames/42556/first.jpg", "AURORA/data/something/frames/42556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling door from left to right"}]} +{"id": "000000114213", "images": ["AURORA/data/something/frames/157256/first.jpg", "AURORA/data/something/frames/157256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending plastic card so that it deforms"}]} +{"id": "000000114214", "images": ["AURORA/data/something/frames/196501/first.jpg", "AURORA/data/something/frames/196501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000114215", "images": ["AURORA/data/something/frames/126786/first.jpg", "AURORA/data/something/frames/126786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting writing pad with papers on it"}]} +{"id": "000000114216", "images": ["AURORA/data/something/frames/44812/first.jpg", "AURORA/data/something/frames/44812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle and pen away from each other"}]} +{"id": "000000114217", "images": ["AURORA/data/something/frames/209457/first.jpg", "AURORA/data/something/frames/209457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000114218", "images": ["AURORA/data/something/frames/124435/first.jpg", "AURORA/data/something/frames/124435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glue from left to right"}]} +{"id": "000000114219", "images": ["AURORA/data/something/frames/88126/first.jpg", "AURORA/data/something/frames/88126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000114220", "images": ["AURORA/data/something/frames/75125/first.jpg", "AURORA/data/something/frames/75125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting notebook with glass on it"}]} +{"id": "000000114221", "images": ["AURORA/data/something/frames/8210/first.jpg", "AURORA/data/something/frames/8210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 envelope onto chair"}]} +{"id": "000000114222", "images": ["AURORA/data/something/frames/79932/first.jpg", "AURORA/data/something/frames/79932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle in front of eraser"}]} +{"id": "000000114223", "images": ["AURORA/data/something/frames/124285/first.jpg", "AURORA/data/something/frames/124285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting an apple up completely without letting it drop down"}]} +{"id": "000000114224", "images": ["AURORA/data/something/frames/166428/first.jpg", "AURORA/data/something/frames/166428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a book into a purse"}]} +{"id": "000000114225", "images": ["AURORA/data/something/frames/2123/first.jpg", "AURORA/data/something/frames/2123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sandals towards the camera"}]} +{"id": "000000114226", "images": ["AURORA/data/something/frames/199577/first.jpg", "AURORA/data/something/frames/199577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000114227", "images": ["AURORA/data/something/frames/166634/first.jpg", "AURORA/data/something/frames/166634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing canned food from left to right"}]} +{"id": "000000114228", "images": ["AURORA/data/something/frames/72016/first.jpg", "AURORA/data/something/frames/72016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of cup"}]} +{"id": "000000114229", "images": ["AURORA/data/something/frames/209928/first.jpg", "AURORA/data/something/frames/209928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching charger to phone"}]} +{"id": "000000114230", "images": ["AURORA/data/something/frames/94199/first.jpg", "AURORA/data/something/frames/94199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cards up"}]} +{"id": "000000114231", "images": ["AURORA/data/something/frames/205741/first.jpg", "AURORA/data/something/frames/205741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114232", "images": ["AURORA/data/something/frames/188398/first.jpg", "AURORA/data/something/frames/188398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pencil case from left to right"}]} +{"id": "000000114233", "images": ["AURORA/data/something/frames/131451/first.jpg", "AURORA/data/something/frames/131451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114234", "images": ["AURORA/data/something/frames/115564/first.jpg", "AURORA/data/something/frames/115564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of cloves organizer"}]} +{"id": "000000114235", "images": ["AURORA/data/something/frames/61998/first.jpg", "AURORA/data/something/frames/61998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping gallon jug over"}]} +{"id": "000000114236", "images": ["AURORA/data/something/frames/174255/first.jpg", "AURORA/data/something/frames/174255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of paper"}]} +{"id": "000000114237", "images": ["AURORA/data/something/frames/162332/first.jpg", "AURORA/data/something/frames/162332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a coin upside down"}]} +{"id": "000000114238", "images": ["AURORA/data/something/frames/106715/first.jpg", "AURORA/data/something/frames/106715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coaster so that it almost falls off but doesn't"}]} +{"id": "000000114239", "images": ["AURORA/data/something/frames/220483/first.jpg", "AURORA/data/something/frames/220483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) phone of the folder"}]} +{"id": "000000114240", "images": ["AURORA/data/something/frames/5417/first.jpg", "AURORA/data/something/frames/5417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking bottle up"}]} +{"id": "000000114241", "images": ["AURORA/data/something/frames/190898/first.jpg", "AURORA/data/something/frames/190898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging a mallet out of stack of gravel"}]} +{"id": "000000114242", "images": ["AURORA/data/something/frames/58097/first.jpg", "AURORA/data/something/frames/58097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into a phone but pulling it right out as you remove your hand"}]} +{"id": "000000114243", "images": ["AURORA/data/something/frames/177885/first.jpg", "AURORA/data/something/frames/177885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fluorescent light bulb behind mug"}]} +{"id": "000000114244", "images": ["AURORA/data/something/frames/73758/first.jpg", "AURORA/data/something/frames/73758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a screw away from many screws"}]} +{"id": "000000114245", "images": ["AURORA/data/something/frames/74408/first.jpg", "AURORA/data/something/frames/74408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of envelope without letting it drop down"}]} +{"id": "000000114246", "images": ["AURORA/data/something/frames/216489/first.jpg", "AURORA/data/something/frames/216489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting figurine up completely without letting it drop down"}]} +{"id": "000000114247", "images": ["AURORA/data/something/frames/178399/first.jpg", "AURORA/data/something/frames/178399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphone into mobilephone but pulling it right out as you remove your hand"}]} +{"id": "000000114248", "images": ["AURORA/data/something/frames/129562/first.jpg", "AURORA/data/something/frames/129562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cell phone with marker on it"}]} +{"id": "000000114249", "images": ["AURORA/data/something/frames/106483/first.jpg", "AURORA/data/something/frames/106483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping ground tea off of table"}]} +{"id": "000000114250", "images": ["AURORA/data/something/frames/75967/first.jpg", "AURORA/data/something/frames/75967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sticky note in front of sharpener"}]} +{"id": "000000114251", "images": ["AURORA/data/something/frames/187835/first.jpg", "AURORA/data/something/frames/187835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging guitar cable into amplifier but pulling it right out as you remove your hand"}]} +{"id": "000000114252", "images": ["AURORA/data/something/frames/167391/first.jpg", "AURORA/data/something/frames/167391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of paper without letting it drop down"}]} +{"id": "000000114253", "images": ["AURORA/data/something/frames/106134/first.jpg", "AURORA/data/something/frames/106134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000114254", "images": ["AURORA/data/something/frames/192714/first.jpg", "AURORA/data/something/frames/192714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting knife with soap on it"}]} +{"id": "000000114255", "images": ["AURORA/data/something/frames/37976/first.jpg", "AURORA/data/something/frames/37976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving vape closer to wallet"}]} +{"id": "000000114256", "images": ["AURORA/data/something/frames/171527/first.jpg", "AURORA/data/something/frames/171527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into jar"}]} +{"id": "000000114257", "images": ["AURORA/data/something/frames/32578/first.jpg", "AURORA/data/something/frames/32578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping puzzle piece up with hand"}]} +{"id": "000000114258", "images": ["AURORA/data/something/frames/84921/first.jpg", "AURORA/data/something/frames/84921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a usb stick into a plastic box"}]} +{"id": "000000114259", "images": ["AURORA/data/something/frames/25072/first.jpg", "AURORA/data/something/frames/25072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000114260", "images": ["AURORA/data/something/frames/61220/first.jpg", "AURORA/data/something/frames/61220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping charger behind watch"}]} +{"id": "000000114261", "images": ["AURORA/data/something/frames/173043/first.jpg", "AURORA/data/something/frames/173043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toy with bowl"}]} +{"id": "000000114262", "images": ["AURORA/data/something/frames/33742/first.jpg", "AURORA/data/something/frames/33742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a shoe up"}]} +{"id": "000000114263", "images": ["AURORA/data/something/frames/2355/first.jpg", "AURORA/data/something/frames/2355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto cup"}]} +{"id": "000000114264", "images": ["AURORA/data/something/frames/74509/first.jpg", "AURORA/data/something/frames/74509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling cleaning powder onto a bathtub"}]} +{"id": "000000114265", "images": ["AURORA/data/something/frames/58958/first.jpg", "AURORA/data/something/frames/58958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spice with spices"}]} +{"id": "000000114266", "images": ["AURORA/data/something/frames/32629/first.jpg", "AURORA/data/something/frames/32629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a pineapple up completely without letting it drop down"}]} +{"id": "000000114267", "images": ["AURORA/data/something/frames/84116/first.jpg", "AURORA/data/something/frames/84116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding towel"}]} +{"id": "000000114268", "images": ["AURORA/data/something/frames/40159/first.jpg", "AURORA/data/something/frames/40159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000114269", "images": ["AURORA/data/something/frames/127307/first.jpg", "AURORA/data/something/frames/127307/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red booklet from right to left"}]} +{"id": "000000114270", "images": ["AURORA/data/something/frames/208090/first.jpg", "AURORA/data/something/frames/208090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a grape out of a small bag"}]} +{"id": "000000114271", "images": ["AURORA/data/something/frames/177716/first.jpg", "AURORA/data/something/frames/177716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pick and scissor away from each other"}]} +{"id": "000000114272", "images": ["AURORA/data/something/frames/12128/first.jpg", "AURORA/data/something/frames/12128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil beetween others"}]} +{"id": "000000114273", "images": ["AURORA/data/something/frames/75489/first.jpg", "AURORA/data/something/frames/75489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing jacket into bag"}]} +{"id": "000000114274", "images": ["AURORA/data/something/frames/138952/first.jpg", "AURORA/data/something/frames/138952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking tape so that it falls over"}]} +{"id": "000000114275", "images": ["AURORA/data/something/frames/108023/first.jpg", "AURORA/data/something/frames/108023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting the lid on a bottle"}]} +{"id": "000000114276", "images": ["AURORA/data/something/frames/115590/first.jpg", "AURORA/data/something/frames/115590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: glasses box colliding with bottle and both are being deflected"}]} +{"id": "000000114277", "images": ["AURORA/data/something/frames/137925/first.jpg", "AURORA/data/something/frames/137925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen from stool"}]} +{"id": "000000114278", "images": ["AURORA/data/something/frames/204696/first.jpg", "AURORA/data/something/frames/204696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000114279", "images": ["AURORA/data/something/frames/3506/first.jpg", "AURORA/data/something/frames/3506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000114280", "images": ["AURORA/data/something/frames/148378/first.jpg", "AURORA/data/something/frames/148378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a box upside down"}]} +{"id": "000000114281", "images": ["AURORA/data/something/frames/2533/first.jpg", "AURORA/data/something/frames/2533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book closer to remotes"}]} +{"id": "000000114282", "images": ["AURORA/data/something/frames/5756/first.jpg", "AURORA/data/something/frames/5756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing an encyclopedia into a shelf"}]} +{"id": "000000114283", "images": ["AURORA/data/something/frames/30622/first.jpg", "AURORA/data/something/frames/30622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 4 colour chalks onto diary"}]} +{"id": "000000114284", "images": ["AURORA/data/something/frames/104891/first.jpg", "AURORA/data/something/frames/104891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting soda can"}]} +{"id": "000000114285", "images": ["AURORA/data/something/frames/131678/first.jpg", "AURORA/data/something/frames/131678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pens together"}]} +{"id": "000000114286", "images": ["AURORA/data/something/frames/138321/first.jpg", "AURORA/data/something/frames/138321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black disc case from left to right"}]} +{"id": "000000114287", "images": ["AURORA/data/something/frames/41513/first.jpg", "AURORA/data/something/frames/41513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing tablecloth, revealing comb behind"}]} +{"id": "000000114288", "images": ["AURORA/data/something/frames/196654/first.jpg", "AURORA/data/something/frames/196654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking box up"}]} +{"id": "000000114289", "images": ["AURORA/data/something/frames/167326/first.jpg", "AURORA/data/something/frames/167326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking lipstick"}]} +{"id": "000000114290", "images": ["AURORA/data/something/frames/187530/first.jpg", "AURORA/data/something/frames/187530/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding napkin"}]} +{"id": "000000114291", "images": ["AURORA/data/something/frames/89223/first.jpg", "AURORA/data/something/frames/89223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a coffee cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114292", "images": ["AURORA/data/something/frames/52438/first.jpg", "AURORA/data/something/frames/52438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bowl closer to sunglasses"}]} +{"id": "000000114293", "images": ["AURORA/data/something/frames/152718/first.jpg", "AURORA/data/something/frames/152718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape onto a slanted surface but it doesn't glide down"}]} +{"id": "000000114294", "images": ["AURORA/data/something/frames/63350/first.jpg", "AURORA/data/something/frames/63350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lid and wallet on the table"}]} +{"id": "000000114295", "images": ["AURORA/data/something/frames/219489/first.jpg", "AURORA/data/something/frames/219489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening letter envelope"}]} +{"id": "000000114296", "images": ["AURORA/data/something/frames/75316/first.jpg", "AURORA/data/something/frames/75316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book down"}]} +{"id": "000000114297", "images": ["AURORA/data/something/frames/150304/first.jpg", "AURORA/data/something/frames/150304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging electrical adaptor into electrical socket"}]} +{"id": "000000114298", "images": ["AURORA/data/something/frames/69583/first.jpg", "AURORA/data/something/frames/69583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening the container"}]} +{"id": "000000114299", "images": ["AURORA/data/something/frames/78191/first.jpg", "AURORA/data/something/frames/78191/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toys into a bag"}]} +{"id": "000000114300", "images": ["AURORA/data/something/frames/43065/first.jpg", "AURORA/data/something/frames/43065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting black play cards on a surface"}]} +{"id": "000000114301", "images": ["AURORA/data/something/frames/138974/first.jpg", "AURORA/data/something/frames/138974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a wallet so that it almost falls off but doesn't"}]} +{"id": "000000114302", "images": ["AURORA/data/something/frames/213679/first.jpg", "AURORA/data/something/frames/213679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bottle"}]} +{"id": "000000114303", "images": ["AURORA/data/something/frames/75252/first.jpg", "AURORA/data/something/frames/75252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cablle into a laptop but pulling it right out as you remove your hand"}]} +{"id": "000000114304", "images": ["AURORA/data/something/frames/109198/first.jpg", "AURORA/data/something/frames/109198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tube in front of bed"}]} +{"id": "000000114305", "images": ["AURORA/data/something/frames/24335/first.jpg", "AURORA/data/something/frames/24335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000114306", "images": ["AURORA/data/something/frames/4077/first.jpg", "AURORA/data/something/frames/4077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding something"}]} +{"id": "000000114307", "images": ["AURORA/data/something/frames/15970/first.jpg", "AURORA/data/something/frames/15970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning wallet upside down"}]} +{"id": "000000114308", "images": ["AURORA/data/something/frames/18531/first.jpg", "AURORA/data/something/frames/18531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114309", "images": ["AURORA/data/something/frames/126702/first.jpg", "AURORA/data/something/frames/126702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and pen so they collide with each other"}]} +{"id": "000000114310", "images": ["AURORA/data/something/frames/113120/first.jpg", "AURORA/data/something/frames/113120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red teacup and white teacup away from each other"}]} +{"id": "000000114311", "images": ["AURORA/data/something/frames/161450/first.jpg", "AURORA/data/something/frames/161450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding towel"}]} +{"id": "000000114312", "images": ["AURORA/data/something/frames/32018/first.jpg", "AURORA/data/something/frames/32018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting pen with marker"}]} +{"id": "000000114313", "images": ["AURORA/data/something/frames/108464/first.jpg", "AURORA/data/something/frames/108464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling blanket from right to left"}]} +{"id": "000000114314", "images": ["AURORA/data/something/frames/34343/first.jpg", "AURORA/data/something/frames/34343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank up"}]} +{"id": "000000114315", "images": ["AURORA/data/something/frames/170087/first.jpg", "AURORA/data/something/frames/170087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 small bowls"}]} +{"id": "000000114316", "images": ["AURORA/data/something/frames/56827/first.jpg", "AURORA/data/something/frames/56827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling puzzle piece out of plastic bag"}]} +{"id": "000000114317", "images": ["AURORA/data/something/frames/109524/first.jpg", "AURORA/data/something/frames/109524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing flowers into cup"}]} +{"id": "000000114318", "images": ["AURORA/data/something/frames/4372/first.jpg", "AURORA/data/something/frames/4372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening fridge"}]} +{"id": "000000114319", "images": ["AURORA/data/something/frames/197847/first.jpg", "AURORA/data/something/frames/197847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a jumpdrive away from a stapler"}]} +{"id": "000000114320", "images": ["AURORA/data/something/frames/62873/first.jpg", "AURORA/data/something/frames/62873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pen from right to left"}]} +{"id": "000000114321", "images": ["AURORA/data/something/frames/128044/first.jpg", "AURORA/data/something/frames/128044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cufflinks so that it almost falls off but doesn't"}]} +{"id": "000000114322", "images": ["AURORA/data/something/frames/111792/first.jpg", "AURORA/data/something/frames/111792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen next to a matchbox"}]} +{"id": "000000114323", "images": ["AURORA/data/something/frames/206137/first.jpg", "AURORA/data/something/frames/206137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000114324", "images": ["AURORA/data/something/frames/21113/first.jpg", "AURORA/data/something/frames/21113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cleaning sponge into sink"}]} +{"id": "000000114325", "images": ["AURORA/data/something/frames/69694/first.jpg", "AURORA/data/something/frames/69694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a doll and a doll so they pass each other"}]} +{"id": "000000114326", "images": ["AURORA/data/something/frames/24012/first.jpg", "AURORA/data/something/frames/24012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a pencil so that it almost falls off but doesn't"}]} +{"id": "000000114327", "images": ["AURORA/data/something/frames/73438/first.jpg", "AURORA/data/something/frames/73438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing cup, revealing lighter behind"}]} +{"id": "000000114328", "images": ["AURORA/data/something/frames/37037/first.jpg", "AURORA/data/something/frames/37037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting chair up completely without letting it drop down"}]} +{"id": "000000114329", "images": ["AURORA/data/something/frames/86435/first.jpg", "AURORA/data/something/frames/86435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an extension chord"}]} +{"id": "000000114330", "images": ["AURORA/data/something/frames/48695/first.jpg", "AURORA/data/something/frames/48695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tool closer to scissor"}]} +{"id": "000000114331", "images": ["AURORA/data/something/frames/28981/first.jpg", "AURORA/data/something/frames/28981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse and notebook closer to each other"}]} +{"id": "000000114332", "images": ["AURORA/data/something/frames/112179/first.jpg", "AURORA/data/something/frames/112179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing jar so that it almost falls off but doesn't"}]} +{"id": "000000114333", "images": ["AURORA/data/something/frames/26064/first.jpg", "AURORA/data/something/frames/26064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a cup with a chopstick"}]} +{"id": "000000114334", "images": ["AURORA/data/something/frames/190032/first.jpg", "AURORA/data/something/frames/190032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking glasses with glasses"}]} +{"id": "000000114335", "images": ["AURORA/data/something/frames/162581/first.jpg", "AURORA/data/something/frames/162581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and ball so they collide with each other"}]} +{"id": "000000114336", "images": ["AURORA/data/something/frames/32442/first.jpg", "AURORA/data/something/frames/32442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving big white color ball and small orange color ball so they pass each other"}]} +{"id": "000000114337", "images": ["AURORA/data/something/frames/3216/first.jpg", "AURORA/data/something/frames/3216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into outlet"}]} +{"id": "000000114338", "images": ["AURORA/data/something/frames/106390/first.jpg", "AURORA/data/something/frames/106390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sunglass and sunglass so they pass each other"}]} +{"id": "000000114339", "images": ["AURORA/data/something/frames/4386/first.jpg", "AURORA/data/something/frames/4386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting camera case in front of speedlite"}]} +{"id": "000000114340", "images": ["AURORA/data/something/frames/98438/first.jpg", "AURORA/data/something/frames/98438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into a glass"}]} +{"id": "000000114341", "images": ["AURORA/data/something/frames/38004/first.jpg", "AURORA/data/something/frames/38004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spray bottle upright on the table"}]} +{"id": "000000114342", "images": ["AURORA/data/something/frames/8361/first.jpg", "AURORA/data/something/frames/8361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging mobile charger into power socket but pulling it right out as you remove your hand"}]} +{"id": "000000114343", "images": ["AURORA/data/something/frames/111337/first.jpg", "AURORA/data/something/frames/111337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto book"}]} +{"id": "000000114344", "images": ["AURORA/data/something/frames/27593/first.jpg", "AURORA/data/something/frames/27593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning ink bottle upside down"}]} +{"id": "000000114345", "images": ["AURORA/data/something/frames/138953/first.jpg", "AURORA/data/something/frames/138953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a wristwatch and charger away from each other"}]} +{"id": "000000114346", "images": ["AURORA/data/something/frames/117117/first.jpg", "AURORA/data/something/frames/117117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper into two pieces"}]} +{"id": "000000114347", "images": ["AURORA/data/something/frames/69636/first.jpg", "AURORA/data/something/frames/69636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a hairbrush up"}]} +{"id": "000000114348", "images": ["AURORA/data/something/frames/41013/first.jpg", "AURORA/data/something/frames/41013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a styrofoam block"}]} +{"id": "000000114349", "images": ["AURORA/data/something/frames/211938/first.jpg", "AURORA/data/something/frames/211938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four books"}]} +{"id": "000000114350", "images": ["AURORA/data/something/frames/199277/first.jpg", "AURORA/data/something/frames/199277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000114351", "images": ["AURORA/data/something/frames/89648/first.jpg", "AURORA/data/something/frames/89648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 coasters"}]} +{"id": "000000114352", "images": ["AURORA/data/something/frames/120818/first.jpg", "AURORA/data/something/frames/120818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle so that it almost falls off but doesn't"}]} +{"id": "000000114353", "images": ["AURORA/data/something/frames/180850/first.jpg", "AURORA/data/something/frames/180850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bucket with bat"}]} +{"id": "000000114354", "images": ["AURORA/data/something/frames/214599/first.jpg", "AURORA/data/something/frames/214599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pillow into pillowcase"}]} +{"id": "000000114355", "images": ["AURORA/data/something/frames/97391/first.jpg", "AURORA/data/something/frames/97391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a measuring cup until it overflows"}]} +{"id": "000000114356", "images": ["AURORA/data/something/frames/209243/first.jpg", "AURORA/data/something/frames/209243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a pen up"}]} +{"id": "000000114357", "images": ["AURORA/data/something/frames/88787/first.jpg", "AURORA/data/something/frames/88787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending chopsticks until it breaks"}]} +{"id": "000000114358", "images": ["AURORA/data/something/frames/99177/first.jpg", "AURORA/data/something/frames/99177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a spray can with a lighter"}]} +{"id": "000000114359", "images": ["AURORA/data/something/frames/21329/first.jpg", "AURORA/data/something/frames/21329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing water into container"}]} +{"id": "000000114360", "images": ["AURORA/data/something/frames/216505/first.jpg", "AURORA/data/something/frames/216505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000114361", "images": ["AURORA/data/something/frames/46201/first.jpg", "AURORA/data/something/frames/46201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting toy car with pen"}]} +{"id": "000000114362", "images": ["AURORA/data/something/frames/183742/first.jpg", "AURORA/data/something/frames/183742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cellphone up"}]} +{"id": "000000114363", "images": ["AURORA/data/something/frames/34675/first.jpg", "AURORA/data/something/frames/34675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a wallet away from a pencil"}]} +{"id": "000000114364", "images": ["AURORA/data/something/frames/33067/first.jpg", "AURORA/data/something/frames/33067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling salt onto a table"}]} +{"id": "000000114365", "images": ["AURORA/data/something/frames/96143/first.jpg", "AURORA/data/something/frames/96143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting nail polish, bottle and tube on the table"}]} +{"id": "000000114366", "images": ["AURORA/data/something/frames/205141/first.jpg", "AURORA/data/something/frames/205141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning orange bowl upside down"}]} +{"id": "000000114367", "images": ["AURORA/data/something/frames/128572/first.jpg", "AURORA/data/something/frames/128572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soap and nail cutter so they collide with each other"}]} +{"id": "000000114368", "images": ["AURORA/data/something/frames/52879/first.jpg", "AURORA/data/something/frames/52879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notebook and pen away from each other"}]} +{"id": "000000114369", "images": ["AURORA/data/something/frames/150441/first.jpg", "AURORA/data/something/frames/150441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling small blocks up"}]} +{"id": "000000114370", "images": ["AURORA/data/something/frames/12763/first.jpg", "AURORA/data/something/frames/12763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cardboard tube until it breaks"}]} +{"id": "000000114371", "images": ["AURORA/data/something/frames/88815/first.jpg", "AURORA/data/something/frames/88815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy next to toy watch"}]} +{"id": "000000114372", "images": ["AURORA/data/something/frames/181807/first.jpg", "AURORA/data/something/frames/181807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and box so they collide with each other"}]} +{"id": "000000114373", "images": ["AURORA/data/something/frames/28230/first.jpg", "AURORA/data/something/frames/28230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching carabinier hook to a keyring"}]} +{"id": "000000114374", "images": ["AURORA/data/something/frames/145132/first.jpg", "AURORA/data/something/frames/145132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending chenille stick so that it deforms"}]} +{"id": "000000114375", "images": ["AURORA/data/something/frames/58953/first.jpg", "AURORA/data/something/frames/58953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting sliper"}]} +{"id": "000000114376", "images": ["AURORA/data/something/frames/63960/first.jpg", "AURORA/data/something/frames/63960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wristwatch and phone away from each other"}]} +{"id": "000000114377", "images": ["AURORA/data/something/frames/155928/first.jpg", "AURORA/data/something/frames/155928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting yellow container next to blue spectacle box"}]} +{"id": "000000114378", "images": ["AURORA/data/something/frames/36703/first.jpg", "AURORA/data/something/frames/36703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning dvd case upside down"}]} +{"id": "000000114379", "images": ["AURORA/data/something/frames/45066/first.jpg", "AURORA/data/something/frames/45066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a tissue box next to a mug"}]} +{"id": "000000114380", "images": ["AURORA/data/something/frames/124682/first.jpg", "AURORA/data/something/frames/124682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and holder away from each other"}]} +{"id": "000000114381", "images": ["AURORA/data/something/frames/12129/first.jpg", "AURORA/data/something/frames/12129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a face cloth wet until water comes out"}]} +{"id": "000000114382", "images": ["AURORA/data/something/frames/161541/first.jpg", "AURORA/data/something/frames/161541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000114383", "images": ["AURORA/data/something/frames/47160/first.jpg", "AURORA/data/something/frames/47160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing grape off of table"}]} +{"id": "000000114384", "images": ["AURORA/data/something/frames/99174/first.jpg", "AURORA/data/something/frames/99174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing watch from right to left"}]} +{"id": "000000114385", "images": ["AURORA/data/something/frames/5435/first.jpg", "AURORA/data/something/frames/5435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bag"}]} +{"id": "000000114386", "images": ["AURORA/data/something/frames/208455/first.jpg", "AURORA/data/something/frames/208455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug cable into plug holder"}]} +{"id": "000000114387", "images": ["AURORA/data/something/frames/138510/first.jpg", "AURORA/data/something/frames/138510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a phone"}]} +{"id": "000000114388", "images": ["AURORA/data/something/frames/86882/first.jpg", "AURORA/data/something/frames/86882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000114389", "images": ["AURORA/data/something/frames/197066/first.jpg", "AURORA/data/something/frames/197066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000114390", "images": ["AURORA/data/something/frames/79026/first.jpg", "AURORA/data/something/frames/79026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a plastic cup behind a bucket"}]} +{"id": "000000114391", "images": ["AURORA/data/something/frames/140400/first.jpg", "AURORA/data/something/frames/140400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking book so that it falls over"}]} +{"id": "000000114392", "images": ["AURORA/data/something/frames/218881/first.jpg", "AURORA/data/something/frames/218881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dishcloth being deflected from cabinet"}]} +{"id": "000000114393", "images": ["AURORA/data/something/frames/44133/first.jpg", "AURORA/data/something/frames/44133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a box up"}]} +{"id": "000000114394", "images": ["AURORA/data/something/frames/152502/first.jpg", "AURORA/data/something/frames/152502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox behind a cup"}]} +{"id": "000000114395", "images": ["AURORA/data/something/frames/115418/first.jpg", "AURORA/data/something/frames/115418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114396", "images": ["AURORA/data/something/frames/45091/first.jpg", "AURORA/data/something/frames/45091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging mobile charger into electical outlet"}]} +{"id": "000000114397", "images": ["AURORA/data/something/frames/159442/first.jpg", "AURORA/data/something/frames/159442/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle of mustard on the table on its side, not upright"}]} +{"id": "000000114398", "images": ["AURORA/data/something/frames/105308/first.jpg", "AURORA/data/something/frames/105308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into socket but pulling it right out as you remove your hand"}]} +{"id": "000000114399", "images": ["AURORA/data/something/frames/20519/first.jpg", "AURORA/data/something/frames/20519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling soda onto towel"}]} +{"id": "000000114400", "images": ["AURORA/data/something/frames/176966/first.jpg", "AURORA/data/something/frames/176966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pot in front of a bracelet"}]} +{"id": "000000114401", "images": ["AURORA/data/something/frames/27803/first.jpg", "AURORA/data/something/frames/27803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into thermocol"}]} +{"id": "000000114402", "images": ["AURORA/data/something/frames/188665/first.jpg", "AURORA/data/something/frames/188665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling aim toothpaste from right to left"}]} +{"id": "000000114403", "images": ["AURORA/data/something/frames/60845/first.jpg", "AURORA/data/something/frames/60845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a bandana"}]} +{"id": "000000114404", "images": ["AURORA/data/something/frames/98297/first.jpg", "AURORA/data/something/frames/98297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000114405", "images": ["AURORA/data/something/frames/23998/first.jpg", "AURORA/data/something/frames/23998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000114406", "images": ["AURORA/data/something/frames/31706/first.jpg", "AURORA/data/something/frames/31706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a marker from left to right"}]} +{"id": "000000114407", "images": ["AURORA/data/something/frames/90617/first.jpg", "AURORA/data/something/frames/90617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying glass on the table on its side, not upright"}]} +{"id": "000000114408", "images": ["AURORA/data/something/frames/151706/first.jpg", "AURORA/data/something/frames/151706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing notebook from right to left"}]} +{"id": "000000114409", "images": ["AURORA/data/something/frames/102321/first.jpg", "AURORA/data/something/frames/102321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into glass, but missing so it spills next to it"}]} +{"id": "000000114410", "images": ["AURORA/data/something/frames/98828/first.jpg", "AURORA/data/something/frames/98828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying sketch pen in sand"}]} +{"id": "000000114411", "images": ["AURORA/data/something/frames/114264/first.jpg", "AURORA/data/something/frames/114264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting perfume bottle on a surface"}]} +{"id": "000000114412", "images": ["AURORA/data/something/frames/81162/first.jpg", "AURORA/data/something/frames/81162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble behind glass"}]} +{"id": "000000114413", "images": ["AURORA/data/something/frames/9895/first.jpg", "AURORA/data/something/frames/9895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping soap off of a table"}]} +{"id": "000000114414", "images": ["AURORA/data/something/frames/75835/first.jpg", "AURORA/data/something/frames/75835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote on the edge of mug so it is not supported and falls down"}]} +{"id": "000000114415", "images": ["AURORA/data/something/frames/19106/first.jpg", "AURORA/data/something/frames/19106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a mug with a napkin"}]} +{"id": "000000114416", "images": ["AURORA/data/something/frames/219046/first.jpg", "AURORA/data/something/frames/219046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a book with a piece of paper"}]} +{"id": "000000114417", "images": ["AURORA/data/something/frames/10186/first.jpg", "AURORA/data/something/frames/10186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keychain onto basket"}]} +{"id": "000000114418", "images": ["AURORA/data/something/frames/22283/first.jpg", "AURORA/data/something/frames/22283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping towel onto toilet"}]} +{"id": "000000114419", "images": ["AURORA/data/something/frames/114842/first.jpg", "AURORA/data/something/frames/114842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet and hat closer to each other"}]} +{"id": "000000114420", "images": ["AURORA/data/something/frames/11386/first.jpg", "AURORA/data/something/frames/11386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping ice cream up with an ice-cream scoop"}]} +{"id": "000000114421", "images": ["AURORA/data/something/frames/14117/first.jpg", "AURORA/data/something/frames/14117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking number of something"}]} +{"id": "000000114422", "images": ["AURORA/data/something/frames/44811/first.jpg", "AURORA/data/something/frames/44811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing orange bowl from right to left"}]} +{"id": "000000114423", "images": ["AURORA/data/something/frames/100240/first.jpg", "AURORA/data/something/frames/100240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into smarthphone but pulling it right out as you remove your hand"}]} +{"id": "000000114424", "images": ["AURORA/data/something/frames/106488/first.jpg", "AURORA/data/something/frames/106488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling purple microfiber from right to left"}]} +{"id": "000000114425", "images": ["AURORA/data/something/frames/79991/first.jpg", "AURORA/data/something/frames/79991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and flower away from each other"}]} +{"id": "000000114426", "images": ["AURORA/data/something/frames/54766/first.jpg", "AURORA/data/something/frames/54766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking audio helmet so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114427", "images": ["AURORA/data/something/frames/17486/first.jpg", "AURORA/data/something/frames/17486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keys away from pen"}]} +{"id": "000000114428", "images": ["AURORA/data/something/frames/84373/first.jpg", "AURORA/data/something/frames/84373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with paper ball on it"}]} +{"id": "000000114429", "images": ["AURORA/data/something/frames/48351/first.jpg", "AURORA/data/something/frames/48351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening glass jar"}]} +{"id": "000000114430", "images": ["AURORA/data/something/frames/33617/first.jpg", "AURORA/data/something/frames/33617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading crunchy peanut butter onto a cracker"}]} +{"id": "000000114431", "images": ["AURORA/data/something/frames/16741/first.jpg", "AURORA/data/something/frames/16741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000114432", "images": ["AURORA/data/something/frames/162607/first.jpg", "AURORA/data/something/frames/162607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling notecard out of purple container"}]} +{"id": "000000114433", "images": ["AURORA/data/something/frames/218394/first.jpg", "AURORA/data/something/frames/218394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning flashlight upside down"}]} +{"id": "000000114434", "images": ["AURORA/data/something/frames/12124/first.jpg", "AURORA/data/something/frames/12124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming eggplant"}]} +{"id": "000000114435", "images": ["AURORA/data/something/frames/106359/first.jpg", "AURORA/data/something/frames/106359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter and glass away from each other"}]} +{"id": "000000114436", "images": ["AURORA/data/something/frames/217625/first.jpg", "AURORA/data/something/frames/217625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a book so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114437", "images": ["AURORA/data/something/frames/138617/first.jpg", "AURORA/data/something/frames/138617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto paper towel"}]} +{"id": "000000114438", "images": ["AURORA/data/something/frames/149864/first.jpg", "AURORA/data/something/frames/149864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting spring up completely without letting it drop down"}]} +{"id": "000000114439", "images": ["AURORA/data/something/frames/201066/first.jpg", "AURORA/data/something/frames/201066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning marker pen upside down"}]} +{"id": "000000114440", "images": ["AURORA/data/something/frames/85103/first.jpg", "AURORA/data/something/frames/85103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving one extreme of fan"}]} +{"id": "000000114441", "images": ["AURORA/data/something/frames/155980/first.jpg", "AURORA/data/something/frames/155980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000114442", "images": ["AURORA/data/something/frames/218735/first.jpg", "AURORA/data/something/frames/218735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a book"}]} +{"id": "000000114443", "images": ["AURORA/data/something/frames/123665/first.jpg", "AURORA/data/something/frames/123665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hand sanitizer, dental floss and nail polish on the table"}]} +{"id": "000000114444", "images": ["AURORA/data/something/frames/113141/first.jpg", "AURORA/data/something/frames/113141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb cable and smarthphone closer to each other"}]} +{"id": "000000114445", "images": ["AURORA/data/something/frames/93147/first.jpg", "AURORA/data/something/frames/93147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball behind chair"}]} +{"id": "000000114446", "images": ["AURORA/data/something/frames/27034/first.jpg", "AURORA/data/something/frames/27034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into laptop"}]} +{"id": "000000114447", "images": ["AURORA/data/something/frames/104677/first.jpg", "AURORA/data/something/frames/104677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottled pesto sauce from left to right"}]} +{"id": "000000114448", "images": ["AURORA/data/something/frames/209410/first.jpg", "AURORA/data/something/frames/209410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing striker coin into black pouch"}]} +{"id": "000000114449", "images": ["AURORA/data/something/frames/37244/first.jpg", "AURORA/data/something/frames/37244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of scrunchie so that it gets stretched"}]} +{"id": "000000114450", "images": ["AURORA/data/something/frames/206488/first.jpg", "AURORA/data/something/frames/206488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket but pulling it right out as you remove your hand"}]} +{"id": "000000114451", "images": ["AURORA/data/something/frames/182263/first.jpg", "AURORA/data/something/frames/182263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable down"}]} +{"id": "000000114452", "images": ["AURORA/data/something/frames/35323/first.jpg", "AURORA/data/something/frames/35323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power adapter into socket"}]} +{"id": "000000114453", "images": ["AURORA/data/something/frames/191681/first.jpg", "AURORA/data/something/frames/191681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery down"}]} +{"id": "000000114454", "images": ["AURORA/data/something/frames/119331/first.jpg", "AURORA/data/something/frames/119331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering eraser"}]} +{"id": "000000114455", "images": ["AURORA/data/something/frames/96407/first.jpg", "AURORA/data/something/frames/96407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000114456", "images": ["AURORA/data/something/frames/174164/first.jpg", "AURORA/data/something/frames/174164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking camera from drawer"}]} +{"id": "000000114457", "images": ["AURORA/data/something/frames/39343/first.jpg", "AURORA/data/something/frames/39343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toy with bat"}]} +{"id": "000000114458", "images": ["AURORA/data/something/frames/46569/first.jpg", "AURORA/data/something/frames/46569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a container of rice"}]} +{"id": "000000114459", "images": ["AURORA/data/something/frames/193729/first.jpg", "AURORA/data/something/frames/193729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass behind box"}]} +{"id": "000000114460", "images": ["AURORA/data/something/frames/32364/first.jpg", "AURORA/data/something/frames/32364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a phone on the edge of a tissue box so it is not supported and falls down"}]} +{"id": "000000114461", "images": ["AURORA/data/something/frames/192360/first.jpg", "AURORA/data/something/frames/192360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone closer to tissue box"}]} +{"id": "000000114462", "images": ["AURORA/data/something/frames/90565/first.jpg", "AURORA/data/something/frames/90565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 pots"}]} +{"id": "000000114463", "images": ["AURORA/data/something/frames/98360/first.jpg", "AURORA/data/something/frames/98360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone into desk"}]} +{"id": "000000114464", "images": ["AURORA/data/something/frames/150588/first.jpg", "AURORA/data/something/frames/150588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering toothbrush"}]} +{"id": "000000114465", "images": ["AURORA/data/something/frames/179463/first.jpg", "AURORA/data/something/frames/179463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000114466", "images": ["AURORA/data/something/frames/59662/first.jpg", "AURORA/data/something/frames/59662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing face wash so that it almost falls off but doesn't"}]} +{"id": "000000114467", "images": ["AURORA/data/something/frames/89976/first.jpg", "AURORA/data/something/frames/89976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming mug"}]} +{"id": "000000114468", "images": ["AURORA/data/something/frames/127957/first.jpg", "AURORA/data/something/frames/127957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into the bowl"}]} +{"id": "000000114469", "images": ["AURORA/data/something/frames/34605/first.jpg", "AURORA/data/something/frames/34605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sock colliding with book and both come to a halt"}]} +{"id": "000000114470", "images": ["AURORA/data/something/frames/178167/first.jpg", "AURORA/data/something/frames/178167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing the glass so that it almost falls off but doesn't"}]} +{"id": "000000114471", "images": ["AURORA/data/something/frames/45016/first.jpg", "AURORA/data/something/frames/45016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker"}]} +{"id": "000000114472", "images": ["AURORA/data/something/frames/95252/first.jpg", "AURORA/data/something/frames/95252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping jar with candy over, so candy falls out"}]} +{"id": "000000114473", "images": ["AURORA/data/something/frames/99389/first.jpg", "AURORA/data/something/frames/99389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a napkin into two pieces"}]} +{"id": "000000114474", "images": ["AURORA/data/something/frames/77689/first.jpg", "AURORA/data/something/frames/77689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000114475", "images": ["AURORA/data/something/frames/73338/first.jpg", "AURORA/data/something/frames/73338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coin down"}]} +{"id": "000000114476", "images": ["AURORA/data/something/frames/107831/first.jpg", "AURORA/data/something/frames/107831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming punching machine"}]} +{"id": "000000114477", "images": ["AURORA/data/something/frames/27283/first.jpg", "AURORA/data/something/frames/27283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter down"}]} +{"id": "000000114478", "images": ["AURORA/data/something/frames/142880/first.jpg", "AURORA/data/something/frames/142880/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a bottle from right to left"}]} +{"id": "000000114479", "images": ["AURORA/data/something/frames/168348/first.jpg", "AURORA/data/something/frames/168348/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a mason jar"}]} +{"id": "000000114480", "images": ["AURORA/data/something/frames/202045/first.jpg", "AURORA/data/something/frames/202045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of hair dryer"}]} +{"id": "000000114481", "images": ["AURORA/data/something/frames/12985/first.jpg", "AURORA/data/something/frames/12985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving clasp of charger"}]} +{"id": "000000114482", "images": ["AURORA/data/something/frames/53836/first.jpg", "AURORA/data/something/frames/53836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a sock out of drawer"}]} +{"id": "000000114483", "images": ["AURORA/data/something/frames/211095/first.jpg", "AURORA/data/something/frames/211095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a stuffed bob-omb up"}]} +{"id": "000000114484", "images": ["AURORA/data/something/frames/17710/first.jpg", "AURORA/data/something/frames/17710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic into basket"}]} +{"id": "000000114485", "images": ["AURORA/data/something/frames/182063/first.jpg", "AURORA/data/something/frames/182063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000114486", "images": ["AURORA/data/something/frames/34760/first.jpg", "AURORA/data/something/frames/34760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000114487", "images": ["AURORA/data/something/frames/10243/first.jpg", "AURORA/data/something/frames/10243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing hat, revealing remote behind"}]} +{"id": "000000114488", "images": ["AURORA/data/something/frames/39742/first.jpg", "AURORA/data/something/frames/39742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114489", "images": ["AURORA/data/something/frames/161347/first.jpg", "AURORA/data/something/frames/161347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a lighter on it"}]} +{"id": "000000114490", "images": ["AURORA/data/something/frames/219147/first.jpg", "AURORA/data/something/frames/219147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning peanut butter upside down"}]} +{"id": "000000114491", "images": ["AURORA/data/something/frames/90324/first.jpg", "AURORA/data/something/frames/90324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a dial of a telephone"}]} +{"id": "000000114492", "images": ["AURORA/data/something/frames/220446/first.jpg", "AURORA/data/something/frames/220446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet into bag"}]} +{"id": "000000114493", "images": ["AURORA/data/something/frames/28022/first.jpg", "AURORA/data/something/frames/28022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ring up"}]} +{"id": "000000114494", "images": ["AURORA/data/something/frames/107399/first.jpg", "AURORA/data/something/frames/107399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto plate"}]} +{"id": "000000114495", "images": ["AURORA/data/something/frames/173063/first.jpg", "AURORA/data/something/frames/173063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000114496", "images": ["AURORA/data/something/frames/212832/first.jpg", "AURORA/data/something/frames/212832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler upright on the table, so it falls on its side"}]} +{"id": "000000114497", "images": ["AURORA/data/something/frames/126184/first.jpg", "AURORA/data/something/frames/126184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screw nail upright on the table, so it falls on its side"}]} +{"id": "000000114498", "images": ["AURORA/data/something/frames/23005/first.jpg", "AURORA/data/something/frames/23005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote in front of seal pad"}]} +{"id": "000000114499", "images": ["AURORA/data/something/frames/179370/first.jpg", "AURORA/data/something/frames/179370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting board clip onto a slanted surface but it doesn't glide down"}]} +{"id": "000000114500", "images": ["AURORA/data/something/frames/120436/first.jpg", "AURORA/data/something/frames/120436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an adapter into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000114501", "images": ["AURORA/data/something/frames/170068/first.jpg", "AURORA/data/something/frames/170068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting towel"}]} +{"id": "000000114502", "images": ["AURORA/data/something/frames/97562/first.jpg", "AURORA/data/something/frames/97562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on a table with more pens on it"}]} +{"id": "000000114503", "images": ["AURORA/data/something/frames/66519/first.jpg", "AURORA/data/something/frames/66519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with a bag"}]} +{"id": "000000114504", "images": ["AURORA/data/something/frames/71457/first.jpg", "AURORA/data/something/frames/71457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tub upright on the table"}]} +{"id": "000000114505", "images": ["AURORA/data/something/frames/84869/first.jpg", "AURORA/data/something/frames/84869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping duster onto cookie box"}]} +{"id": "000000114506", "images": ["AURORA/data/something/frames/70226/first.jpg", "AURORA/data/something/frames/70226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon into cup"}]} +{"id": "000000114507", "images": ["AURORA/data/something/frames/147043/first.jpg", "AURORA/data/something/frames/147043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tuperware with playdoh on it"}]} +{"id": "000000114508", "images": ["AURORA/data/something/frames/57470/first.jpg", "AURORA/data/something/frames/57470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing table lamp so that it almost falls off but doesn't"}]} +{"id": "000000114509", "images": ["AURORA/data/something/frames/103915/first.jpg", "AURORA/data/something/frames/103915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors, glasses and phone on the table"}]} +{"id": "000000114510", "images": ["AURORA/data/something/frames/159492/first.jpg", "AURORA/data/something/frames/159492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coins into a bowl"}]} +{"id": "000000114511", "images": ["AURORA/data/something/frames/51057/first.jpg", "AURORA/data/something/frames/51057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a card so that it deforms"}]} +{"id": "000000114512", "images": ["AURORA/data/something/frames/148642/first.jpg", "AURORA/data/something/frames/148642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking yarn out of box"}]} +{"id": "000000114513", "images": ["AURORA/data/something/frames/88064/first.jpg", "AURORA/data/something/frames/88064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a wallet with sunglasses on it"}]} +{"id": "000000114514", "images": ["AURORA/data/something/frames/32417/first.jpg", "AURORA/data/something/frames/32417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying lotion on the table on its side, not upright"}]} +{"id": "000000114515", "images": ["AURORA/data/something/frames/41929/first.jpg", "AURORA/data/something/frames/41929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cufflinks closer to a belt"}]} +{"id": "000000114516", "images": ["AURORA/data/something/frames/186552/first.jpg", "AURORA/data/something/frames/186552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: somethimg with colliding with something and both are being deflected"}]} +{"id": "000000114517", "images": ["AURORA/data/something/frames/179178/first.jpg", "AURORA/data/something/frames/179178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the top of a block"}]} +{"id": "000000114518", "images": ["AURORA/data/something/frames/38318/first.jpg", "AURORA/data/something/frames/38318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a smartphone with a hoodie"}]} +{"id": "000000114519", "images": ["AURORA/data/something/frames/30636/first.jpg", "AURORA/data/something/frames/30636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking receipts from a table"}]} +{"id": "000000114520", "images": ["AURORA/data/something/frames/24744/first.jpg", "AURORA/data/something/frames/24744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a cloth wet until water comes out"}]} +{"id": "000000114521", "images": ["AURORA/data/something/frames/47530/first.jpg", "AURORA/data/something/frames/47530/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming board"}]} +{"id": "000000114522", "images": ["AURORA/data/something/frames/157057/first.jpg", "AURORA/data/something/frames/157057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a doll upright on the table, so it falls on its side"}]} +{"id": "000000114523", "images": ["AURORA/data/something/frames/162969/first.jpg", "AURORA/data/something/frames/162969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging glade plugin into electrical wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000114524", "images": ["AURORA/data/something/frames/4516/first.jpg", "AURORA/data/something/frames/4516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000114525", "images": ["AURORA/data/something/frames/151103/first.jpg", "AURORA/data/something/frames/151103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a stopper of a pen"}]} +{"id": "000000114526", "images": ["AURORA/data/something/frames/91945/first.jpg", "AURORA/data/something/frames/91945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a tissue out of a tissue box"}]} +{"id": "000000114527", "images": ["AURORA/data/something/frames/82216/first.jpg", "AURORA/data/something/frames/82216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into ballone"}]} +{"id": "000000114528", "images": ["AURORA/data/something/frames/35803/first.jpg", "AURORA/data/something/frames/35803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving car closer to duster"}]} +{"id": "000000114529", "images": ["AURORA/data/something/frames/214571/first.jpg", "AURORA/data/something/frames/214571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting paper with paper"}]} +{"id": "000000114530", "images": ["AURORA/data/something/frames/166004/first.jpg", "AURORA/data/something/frames/166004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering popcorn"}]} +{"id": "000000114531", "images": ["AURORA/data/something/frames/166506/first.jpg", "AURORA/data/something/frames/166506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a ribbon"}]} +{"id": "000000114532", "images": ["AURORA/data/something/frames/125224/first.jpg", "AURORA/data/something/frames/125224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning jar upside down"}]} +{"id": "000000114533", "images": ["AURORA/data/something/frames/70178/first.jpg", "AURORA/data/something/frames/70178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar underneath box"}]} +{"id": "000000114534", "images": ["AURORA/data/something/frames/81605/first.jpg", "AURORA/data/something/frames/81605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto bucket"}]} +{"id": "000000114535", "images": ["AURORA/data/something/frames/202634/first.jpg", "AURORA/data/something/frames/202634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114536", "images": ["AURORA/data/something/frames/36498/first.jpg", "AURORA/data/something/frames/36498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000114537", "images": ["AURORA/data/something/frames/95347/first.jpg", "AURORA/data/something/frames/95347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving orange colour pen up"}]} +{"id": "000000114538", "images": ["AURORA/data/something/frames/141921/first.jpg", "AURORA/data/something/frames/141921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114539", "images": ["AURORA/data/something/frames/157421/first.jpg", "AURORA/data/something/frames/157421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and flashlight away from each other"}]} +{"id": "000000114540", "images": ["AURORA/data/something/frames/136438/first.jpg", "AURORA/data/something/frames/136438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing letter into envelope"}]} +{"id": "000000114541", "images": ["AURORA/data/something/frames/69106/first.jpg", "AURORA/data/something/frames/69106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) handle of iron"}]} +{"id": "000000114542", "images": ["AURORA/data/something/frames/89927/first.jpg", "AURORA/data/something/frames/89927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bolt closer to white badge"}]} +{"id": "000000114543", "images": ["AURORA/data/something/frames/18055/first.jpg", "AURORA/data/something/frames/18055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting two seashells onto table"}]} +{"id": "000000114544", "images": ["AURORA/data/something/frames/54459/first.jpg", "AURORA/data/something/frames/54459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone into charger"}]} +{"id": "000000114545", "images": ["AURORA/data/something/frames/156966/first.jpg", "AURORA/data/something/frames/156966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a smartphone with a tissu"}]} +{"id": "000000114546", "images": ["AURORA/data/something/frames/51754/first.jpg", "AURORA/data/something/frames/51754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000114547", "images": ["AURORA/data/something/frames/169306/first.jpg", "AURORA/data/something/frames/169306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing wipes into container"}]} +{"id": "000000114548", "images": ["AURORA/data/something/frames/35963/first.jpg", "AURORA/data/something/frames/35963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen away from holder"}]} +{"id": "000000114549", "images": ["AURORA/data/something/frames/27926/first.jpg", "AURORA/data/something/frames/27926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging microwave into socket"}]} +{"id": "000000114550", "images": ["AURORA/data/something/frames/88984/first.jpg", "AURORA/data/something/frames/88984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg next to a fork"}]} +{"id": "000000114551", "images": ["AURORA/data/something/frames/67762/first.jpg", "AURORA/data/something/frames/67762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling piece of paper onto notebook"}]} +{"id": "000000114552", "images": ["AURORA/data/something/frames/14715/first.jpg", "AURORA/data/something/frames/14715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a notebook from left to right"}]} +{"id": "000000114553", "images": ["AURORA/data/something/frames/190769/first.jpg", "AURORA/data/something/frames/190769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting kolleg block on the edge of table edge so it is not supported and falls down"}]} +{"id": "000000114554", "images": ["AURORA/data/something/frames/180630/first.jpg", "AURORA/data/something/frames/180630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering box with napkin"}]} +{"id": "000000114555", "images": ["AURORA/data/something/frames/50391/first.jpg", "AURORA/data/something/frames/50391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing notebook page just a little bit"}]} +{"id": "000000114556", "images": ["AURORA/data/something/frames/181556/first.jpg", "AURORA/data/something/frames/181556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel just a little bit"}]} +{"id": "000000114557", "images": ["AURORA/data/something/frames/82674/first.jpg", "AURORA/data/something/frames/82674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving knife down"}]} +{"id": "000000114558", "images": ["AURORA/data/something/frames/114865/first.jpg", "AURORA/data/something/frames/114865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many coins"}]} +{"id": "000000114559", "images": ["AURORA/data/something/frames/99808/first.jpg", "AURORA/data/something/frames/99808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping yellow ball into orange bowl"}]} +{"id": "000000114560", "images": ["AURORA/data/something/frames/55871/first.jpg", "AURORA/data/something/frames/55871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing chair with leg"}]} +{"id": "000000114561", "images": ["AURORA/data/something/frames/181882/first.jpg", "AURORA/data/something/frames/181882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coins into box"}]} +{"id": "000000114562", "images": ["AURORA/data/something/frames/79534/first.jpg", "AURORA/data/something/frames/79534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing world globe from left to right"}]} +{"id": "000000114563", "images": ["AURORA/data/something/frames/10049/first.jpg", "AURORA/data/something/frames/10049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a ring being deflected from a mug"}]} +{"id": "000000114564", "images": ["AURORA/data/something/frames/73207/first.jpg", "AURORA/data/something/frames/73207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering vicks vapourb with bedsheet"}]} +{"id": "000000114565", "images": ["AURORA/data/something/frames/17914/first.jpg", "AURORA/data/something/frames/17914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cooking pot with its cover"}]} +{"id": "000000114566", "images": ["AURORA/data/something/frames/146642/first.jpg", "AURORA/data/something/frames/146642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of dice without the stack collapsing"}]} +{"id": "000000114567", "images": ["AURORA/data/something/frames/19431/first.jpg", "AURORA/data/something/frames/19431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing crayon behind"}]} +{"id": "000000114568", "images": ["AURORA/data/something/frames/23541/first.jpg", "AURORA/data/something/frames/23541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into plug socket"}]} +{"id": "000000114569", "images": ["AURORA/data/something/frames/92682/first.jpg", "AURORA/data/something/frames/92682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a container with a lid"}]} +{"id": "000000114570", "images": ["AURORA/data/something/frames/149208/first.jpg", "AURORA/data/something/frames/149208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000114571", "images": ["AURORA/data/something/frames/31880/first.jpg", "AURORA/data/something/frames/31880/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book closer to light switch"}]} +{"id": "000000114572", "images": ["AURORA/data/something/frames/67044/first.jpg", "AURORA/data/something/frames/67044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet onto book"}]} +{"id": "000000114573", "images": ["AURORA/data/something/frames/162803/first.jpg", "AURORA/data/something/frames/162803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bottle with a comb"}]} +{"id": "000000114574", "images": ["AURORA/data/something/frames/81991/first.jpg", "AURORA/data/something/frames/81991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114575", "images": ["AURORA/data/something/frames/173301/first.jpg", "AURORA/data/something/frames/173301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing newspaper into two pieces"}]} +{"id": "000000114576", "images": ["AURORA/data/something/frames/40471/first.jpg", "AURORA/data/something/frames/40471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching water bottle with your camera"}]} +{"id": "000000114577", "images": ["AURORA/data/something/frames/148120/first.jpg", "AURORA/data/something/frames/148120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing laminated paper mat just a little bit"}]} +{"id": "000000114578", "images": ["AURORA/data/something/frames/17198/first.jpg", "AURORA/data/something/frames/17198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote with fork"}]} +{"id": "000000114579", "images": ["AURORA/data/something/frames/91199/first.jpg", "AURORA/data/something/frames/91199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving duct tape and duct tape closer to each other"}]} +{"id": "000000114580", "images": ["AURORA/data/something/frames/108163/first.jpg", "AURORA/data/something/frames/108163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114581", "images": ["AURORA/data/something/frames/167457/first.jpg", "AURORA/data/something/frames/167457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spring onto wallet"}]} +{"id": "000000114582", "images": ["AURORA/data/something/frames/125741/first.jpg", "AURORA/data/something/frames/125741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling aim toothpaste from left to right"}]} +{"id": "000000114583", "images": ["AURORA/data/something/frames/47229/first.jpg", "AURORA/data/something/frames/47229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 children's books"}]} +{"id": "000000114584", "images": ["AURORA/data/something/frames/44824/first.jpg", "AURORA/data/something/frames/44824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy so that it almost falls off but doesn't"}]} +{"id": "000000114585", "images": ["AURORA/data/something/frames/2528/first.jpg", "AURORA/data/something/frames/2528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pencil until it breaks"}]} +{"id": "000000114586", "images": ["AURORA/data/something/frames/100049/first.jpg", "AURORA/data/something/frames/100049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000114587", "images": ["AURORA/data/something/frames/154011/first.jpg", "AURORA/data/something/frames/154011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a jbl onto chewing gums so it falls down"}]} +{"id": "000000114588", "images": ["AURORA/data/something/frames/218064/first.jpg", "AURORA/data/something/frames/218064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into steel glass"}]} +{"id": "000000114589", "images": ["AURORA/data/something/frames/147548/first.jpg", "AURORA/data/something/frames/147548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving medicine up"}]} +{"id": "000000114590", "images": ["AURORA/data/something/frames/126970/first.jpg", "AURORA/data/something/frames/126970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper into two pieces"}]} +{"id": "000000114591", "images": ["AURORA/data/something/frames/184282/first.jpg", "AURORA/data/something/frames/184282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering gear wheel with red pouch"}]} +{"id": "000000114592", "images": ["AURORA/data/something/frames/21639/first.jpg", "AURORA/data/something/frames/21639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and fork closer to each other"}]} +{"id": "000000114593", "images": ["AURORA/data/something/frames/130777/first.jpg", "AURORA/data/something/frames/130777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending book so that it deforms"}]} +{"id": "000000114594", "images": ["AURORA/data/something/frames/83348/first.jpg", "AURORA/data/something/frames/83348/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a bottle"}]} +{"id": "000000114595", "images": ["AURORA/data/something/frames/102659/first.jpg", "AURORA/data/something/frames/102659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pink toothbrush case down"}]} +{"id": "000000114596", "images": ["AURORA/data/something/frames/151821/first.jpg", "AURORA/data/something/frames/151821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing door"}]} +{"id": "000000114597", "images": ["AURORA/data/something/frames/18963/first.jpg", "AURORA/data/something/frames/18963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking coin up"}]} +{"id": "000000114598", "images": ["AURORA/data/something/frames/158112/first.jpg", "AURORA/data/something/frames/158112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving display of laptop"}]} +{"id": "000000114599", "images": ["AURORA/data/something/frames/107539/first.jpg", "AURORA/data/something/frames/107539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book up completely without letting it drop down"}]} +{"id": "000000114600", "images": ["AURORA/data/something/frames/61772/first.jpg", "AURORA/data/something/frames/61772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing plastic-cover into two pieces"}]} +{"id": "000000114601", "images": ["AURORA/data/something/frames/168176/first.jpg", "AURORA/data/something/frames/168176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000114602", "images": ["AURORA/data/something/frames/138772/first.jpg", "AURORA/data/something/frames/138772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing notebook"}]} +{"id": "000000114603", "images": ["AURORA/data/something/frames/188691/first.jpg", "AURORA/data/something/frames/188691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping something off of something"}]} +{"id": "000000114604", "images": ["AURORA/data/something/frames/104364/first.jpg", "AURORA/data/something/frames/104364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000114605", "images": ["AURORA/data/something/frames/48691/first.jpg", "AURORA/data/something/frames/48691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking buttons"}]} +{"id": "000000114606", "images": ["AURORA/data/something/frames/128053/first.jpg", "AURORA/data/something/frames/128053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a sandal behind a box"}]} +{"id": "000000114607", "images": ["AURORA/data/something/frames/180082/first.jpg", "AURORA/data/something/frames/180082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a pen up"}]} +{"id": "000000114608", "images": ["AURORA/data/something/frames/203884/first.jpg", "AURORA/data/something/frames/203884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking deoderant so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114609", "images": ["AURORA/data/something/frames/142226/first.jpg", "AURORA/data/something/frames/142226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying videotape on the table on its side, not upright"}]} +{"id": "000000114610", "images": ["AURORA/data/something/frames/116507/first.jpg", "AURORA/data/something/frames/116507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting brush on a surface"}]} +{"id": "000000114611", "images": ["AURORA/data/something/frames/48879/first.jpg", "AURORA/data/something/frames/48879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching credit card to black box"}]} +{"id": "000000114612", "images": ["AURORA/data/something/frames/168268/first.jpg", "AURORA/data/something/frames/168268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing envelope into two pieces"}]} +{"id": "000000114613", "images": ["AURORA/data/something/frames/99986/first.jpg", "AURORA/data/something/frames/99986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing one tealight candle from right to left"}]} +{"id": "000000114614", "images": ["AURORA/data/something/frames/95507/first.jpg", "AURORA/data/something/frames/95507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sponge out of mug"}]} +{"id": "000000114615", "images": ["AURORA/data/something/frames/127081/first.jpg", "AURORA/data/something/frames/127081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stick up"}]} +{"id": "000000114616", "images": ["AURORA/data/something/frames/58717/first.jpg", "AURORA/data/something/frames/58717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving door of washing machine"}]} +{"id": "000000114617", "images": ["AURORA/data/something/frames/10070/first.jpg", "AURORA/data/something/frames/10070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing an usb from right to left"}]} +{"id": "000000114618", "images": ["AURORA/data/something/frames/132053/first.jpg", "AURORA/data/something/frames/132053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a bag, revealing a hair brush behind"}]} +{"id": "000000114619", "images": ["AURORA/data/something/frames/209637/first.jpg", "AURORA/data/something/frames/209637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning metal box upside down"}]} +{"id": "000000114620", "images": ["AURORA/data/something/frames/161288/first.jpg", "AURORA/data/something/frames/161288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a lead out of a plug"}]} +{"id": "000000114621", "images": ["AURORA/data/something/frames/199341/first.jpg", "AURORA/data/something/frames/199341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening paint tube"}]} +{"id": "000000114622", "images": ["AURORA/data/something/frames/197866/first.jpg", "AURORA/data/something/frames/197866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a salt shaker"}]} +{"id": "000000114623", "images": ["AURORA/data/something/frames/7216/first.jpg", "AURORA/data/something/frames/7216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting three pin plug onto box"}]} +{"id": "000000114624", "images": ["AURORA/data/something/frames/46385/first.jpg", "AURORA/data/something/frames/46385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking gum"}]} +{"id": "000000114625", "images": ["AURORA/data/something/frames/20889/first.jpg", "AURORA/data/something/frames/20889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cooler in front of glass"}]} +{"id": "000000114626", "images": ["AURORA/data/something/frames/51590/first.jpg", "AURORA/data/something/frames/51590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a socket"}]} +{"id": "000000114627", "images": ["AURORA/data/something/frames/93983/first.jpg", "AURORA/data/something/frames/93983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping box over"}]} +{"id": "000000114628", "images": ["AURORA/data/something/frames/74260/first.jpg", "AURORA/data/something/frames/74260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a paper without letting it drop down"}]} +{"id": "000000114629", "images": ["AURORA/data/something/frames/70608/first.jpg", "AURORA/data/something/frames/70608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting letter into envelope"}]} +{"id": "000000114630", "images": ["AURORA/data/something/frames/129255/first.jpg", "AURORA/data/something/frames/129255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying plastic cup on the table on its side, not upright"}]} +{"id": "000000114631", "images": ["AURORA/data/something/frames/113920/first.jpg", "AURORA/data/something/frames/113920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bear behind chair"}]} +{"id": "000000114632", "images": ["AURORA/data/something/frames/140058/first.jpg", "AURORA/data/something/frames/140058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle behind dustbin"}]} +{"id": "000000114633", "images": ["AURORA/data/something/frames/30588/first.jpg", "AURORA/data/something/frames/30588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking water bottle up"}]} +{"id": "000000114634", "images": ["AURORA/data/something/frames/9632/first.jpg", "AURORA/data/something/frames/9632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning snack cup upside down"}]} +{"id": "000000114635", "images": ["AURORA/data/something/frames/145219/first.jpg", "AURORA/data/something/frames/145219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering air conditioner and window from blinds"}]} +{"id": "000000114636", "images": ["AURORA/data/something/frames/127300/first.jpg", "AURORA/data/something/frames/127300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping milk off of table"}]} +{"id": "000000114637", "images": ["AURORA/data/something/frames/117154/first.jpg", "AURORA/data/something/frames/117154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching toothbrush to toothbrush handle"}]} +{"id": "000000114638", "images": ["AURORA/data/something/frames/198125/first.jpg", "AURORA/data/something/frames/198125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping black cloth into cookie box"}]} +{"id": "000000114639", "images": ["AURORA/data/something/frames/148848/first.jpg", "AURORA/data/something/frames/148848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000114640", "images": ["AURORA/data/something/frames/59360/first.jpg", "AURORA/data/something/frames/59360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottled ponzu sauce on a surface"}]} +{"id": "000000114641", "images": ["AURORA/data/something/frames/154998/first.jpg", "AURORA/data/something/frames/154998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114642", "images": ["AURORA/data/something/frames/98224/first.jpg", "AURORA/data/something/frames/98224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000114643", "images": ["AURORA/data/something/frames/105459/first.jpg", "AURORA/data/something/frames/105459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling tomatoes up"}]} +{"id": "000000114644", "images": ["AURORA/data/something/frames/129939/first.jpg", "AURORA/data/something/frames/129939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook onto box"}]} +{"id": "000000114645", "images": ["AURORA/data/something/frames/152678/first.jpg", "AURORA/data/something/frames/152678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking biscuit pack up"}]} +{"id": "000000114646", "images": ["AURORA/data/something/frames/171440/first.jpg", "AURORA/data/something/frames/171440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paper from desk"}]} +{"id": "000000114647", "images": ["AURORA/data/something/frames/75832/first.jpg", "AURORA/data/something/frames/75832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of book without letting it drop down"}]} +{"id": "000000114648", "images": ["AURORA/data/something/frames/216150/first.jpg", "AURORA/data/something/frames/216150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114649", "images": ["AURORA/data/something/frames/173/first.jpg", "AURORA/data/something/frames/173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing cup, revealing little cup behind"}]} +{"id": "000000114650", "images": ["AURORA/data/something/frames/142710/first.jpg", "AURORA/data/something/frames/142710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a door"}]} +{"id": "000000114651", "images": ["AURORA/data/something/frames/177390/first.jpg", "AURORA/data/something/frames/177390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sandal from floor"}]} +{"id": "000000114652", "images": ["AURORA/data/something/frames/180417/first.jpg", "AURORA/data/something/frames/180417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cap from right to left"}]} +{"id": "000000114653", "images": ["AURORA/data/something/frames/133190/first.jpg", "AURORA/data/something/frames/133190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending canela until it breaks"}]} +{"id": "000000114654", "images": ["AURORA/data/something/frames/129845/first.jpg", "AURORA/data/something/frames/129845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a car toy colliding with a car toy and both are being deflected"}]} +{"id": "000000114655", "images": ["AURORA/data/something/frames/4150/first.jpg", "AURORA/data/something/frames/4150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cough drop closer to cough drop"}]} +{"id": "000000114656", "images": ["AURORA/data/something/frames/168946/first.jpg", "AURORA/data/something/frames/168946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 4 pens onto a black file"}]} +{"id": "000000114657", "images": ["AURORA/data/something/frames/153198/first.jpg", "AURORA/data/something/frames/153198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote control from left to right"}]} +{"id": "000000114658", "images": ["AURORA/data/something/frames/15914/first.jpg", "AURORA/data/something/frames/15914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a microphone up"}]} +{"id": "000000114659", "images": ["AURORA/data/something/frames/24959/first.jpg", "AURORA/data/something/frames/24959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into slime"}]} +{"id": "000000114660", "images": ["AURORA/data/something/frames/22313/first.jpg", "AURORA/data/something/frames/22313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a leaf into two pieces"}]} +{"id": "000000114661", "images": ["AURORA/data/something/frames/85601/first.jpg", "AURORA/data/something/frames/85601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a marker among other markers on the table"}]} +{"id": "000000114662", "images": ["AURORA/data/something/frames/12584/first.jpg", "AURORA/data/something/frames/12584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting raw chicken meat into bowl"}]} +{"id": "000000114663", "images": ["AURORA/data/something/frames/112614/first.jpg", "AURORA/data/something/frames/112614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a fake flower so that it deforms"}]} +{"id": "000000114664", "images": ["AURORA/data/something/frames/53979/first.jpg", "AURORA/data/something/frames/53979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging egg out of salt"}]} +{"id": "000000114665", "images": ["AURORA/data/something/frames/122190/first.jpg", "AURORA/data/something/frames/122190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000114666", "images": ["AURORA/data/something/frames/72519/first.jpg", "AURORA/data/something/frames/72519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding newspaper"}]} +{"id": "000000114667", "images": ["AURORA/data/something/frames/44385/first.jpg", "AURORA/data/something/frames/44385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114668", "images": ["AURORA/data/something/frames/209009/first.jpg", "AURORA/data/something/frames/209009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon"}]} +{"id": "000000114669", "images": ["AURORA/data/something/frames/197171/first.jpg", "AURORA/data/something/frames/197171/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper note"}]} +{"id": "000000114670", "images": ["AURORA/data/something/frames/138590/first.jpg", "AURORA/data/something/frames/138590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting washing machine nob"}]} +{"id": "000000114671", "images": ["AURORA/data/something/frames/160183/first.jpg", "AURORA/data/something/frames/160183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a handkerchief"}]} +{"id": "000000114672", "images": ["AURORA/data/something/frames/208727/first.jpg", "AURORA/data/something/frames/208727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scissors colliding with a book and both come to a halt"}]} +{"id": "000000114673", "images": ["AURORA/data/something/frames/167036/first.jpg", "AURORA/data/something/frames/167036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying coin in flour"}]} +{"id": "000000114674", "images": ["AURORA/data/something/frames/132274/first.jpg", "AURORA/data/something/frames/132274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping purse onto floor"}]} +{"id": "000000114675", "images": ["AURORA/data/something/frames/186560/first.jpg", "AURORA/data/something/frames/186560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing candle from left to right"}]} +{"id": "000000114676", "images": ["AURORA/data/something/frames/205127/first.jpg", "AURORA/data/something/frames/205127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving banana down"}]} +{"id": "000000114677", "images": ["AURORA/data/something/frames/41075/first.jpg", "AURORA/data/something/frames/41075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something from right to left"}]} +{"id": "000000114678", "images": ["AURORA/data/something/frames/141065/first.jpg", "AURORA/data/something/frames/141065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000114679", "images": ["AURORA/data/something/frames/122659/first.jpg", "AURORA/data/something/frames/122659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a sponge into a plastic bowl"}]} +{"id": "000000114680", "images": ["AURORA/data/something/frames/149624/first.jpg", "AURORA/data/something/frames/149624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball next to airplane"}]} +{"id": "000000114681", "images": ["AURORA/data/something/frames/52276/first.jpg", "AURORA/data/something/frames/52276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 plastic bags onto a box"}]} +{"id": "000000114682", "images": ["AURORA/data/something/frames/52698/first.jpg", "AURORA/data/something/frames/52698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping marker off of a board"}]} +{"id": "000000114683", "images": ["AURORA/data/something/frames/197127/first.jpg", "AURORA/data/something/frames/197127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork onto napkin"}]} +{"id": "000000114684", "images": ["AURORA/data/something/frames/35637/first.jpg", "AURORA/data/something/frames/35637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling plates up"}]} +{"id": "000000114685", "images": ["AURORA/data/something/frames/3362/first.jpg", "AURORA/data/something/frames/3362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the bottle next to the bowl"}]} +{"id": "000000114686", "images": ["AURORA/data/something/frames/59046/first.jpg", "AURORA/data/something/frames/59046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114687", "images": ["AURORA/data/something/frames/72309/first.jpg", "AURORA/data/something/frames/72309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming red watch box"}]} +{"id": "000000114688", "images": ["AURORA/data/something/frames/180295/first.jpg", "AURORA/data/something/frames/180295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ruler and masking tape away from each other"}]} +{"id": "000000114689", "images": ["AURORA/data/something/frames/119434/first.jpg", "AURORA/data/something/frames/119434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114690", "images": ["AURORA/data/something/frames/218468/first.jpg", "AURORA/data/something/frames/218468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling scissor from left to right"}]} +{"id": "000000114691", "images": ["AURORA/data/something/frames/113071/first.jpg", "AURORA/data/something/frames/113071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving banana away from the camera"}]} +{"id": "000000114692", "images": ["AURORA/data/something/frames/74976/first.jpg", "AURORA/data/something/frames/74976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cloth onto coaster"}]} +{"id": "000000114693", "images": ["AURORA/data/something/frames/70912/first.jpg", "AURORA/data/something/frames/70912/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with water over, so water falls out"}]} +{"id": "000000114694", "images": ["AURORA/data/something/frames/192731/first.jpg", "AURORA/data/something/frames/192731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with watermelon on it"}]} +{"id": "000000114695", "images": ["AURORA/data/something/frames/185188/first.jpg", "AURORA/data/something/frames/185188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a table tennis ball"}]} +{"id": "000000114696", "images": ["AURORA/data/something/frames/165202/first.jpg", "AURORA/data/something/frames/165202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto chair"}]} +{"id": "000000114697", "images": ["AURORA/data/something/frames/45688/first.jpg", "AURORA/data/something/frames/45688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting vessel onto mixer grinder"}]} +{"id": "000000114698", "images": ["AURORA/data/something/frames/131064/first.jpg", "AURORA/data/something/frames/131064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering books with bag"}]} +{"id": "000000114699", "images": ["AURORA/data/something/frames/208718/first.jpg", "AURORA/data/something/frames/208718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling headphones from right to left"}]} +{"id": "000000114700", "images": ["AURORA/data/something/frames/166394/first.jpg", "AURORA/data/something/frames/166394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting matchstick"}]} +{"id": "000000114701", "images": ["AURORA/data/something/frames/119685/first.jpg", "AURORA/data/something/frames/119685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup away from tv remote"}]} +{"id": "000000114702", "images": ["AURORA/data/something/frames/120454/first.jpg", "AURORA/data/something/frames/120454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114703", "images": ["AURORA/data/something/frames/106705/first.jpg", "AURORA/data/something/frames/106705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tubes into glass beaker"}]} +{"id": "000000114704", "images": ["AURORA/data/something/frames/135039/first.jpg", "AURORA/data/something/frames/135039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing aim toothpaste from left to right"}]} +{"id": "000000114705", "images": ["AURORA/data/something/frames/92076/first.jpg", "AURORA/data/something/frames/92076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving dry cells towards the camera"}]} +{"id": "000000114706", "images": ["AURORA/data/something/frames/72066/first.jpg", "AURORA/data/something/frames/72066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114707", "images": ["AURORA/data/something/frames/77203/first.jpg", "AURORA/data/something/frames/77203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000114708", "images": ["AURORA/data/something/frames/168603/first.jpg", "AURORA/data/something/frames/168603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting wallet with eraser on it"}]} +{"id": "000000114709", "images": ["AURORA/data/something/frames/117094/first.jpg", "AURORA/data/something/frames/117094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dust off of table"}]} +{"id": "000000114710", "images": ["AURORA/data/something/frames/196391/first.jpg", "AURORA/data/something/frames/196391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of spoon without letting it drop down"}]} +{"id": "000000114711", "images": ["AURORA/data/something/frames/48582/first.jpg", "AURORA/data/something/frames/48582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball down"}]} +{"id": "000000114712", "images": ["AURORA/data/something/frames/206735/first.jpg", "AURORA/data/something/frames/206735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing bottle, revealing sharpener behind"}]} +{"id": "000000114713", "images": ["AURORA/data/something/frames/58090/first.jpg", "AURORA/data/something/frames/58090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging ethernet cable into laptop"}]} +{"id": "000000114714", "images": ["AURORA/data/something/frames/159174/first.jpg", "AURORA/data/something/frames/159174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114715", "images": ["AURORA/data/something/frames/20592/first.jpg", "AURORA/data/something/frames/20592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a sweet next to the other sweets"}]} +{"id": "000000114716", "images": ["AURORA/data/something/frames/105884/first.jpg", "AURORA/data/something/frames/105884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cardigan into bag"}]} +{"id": "000000114717", "images": ["AURORA/data/something/frames/52424/first.jpg", "AURORA/data/something/frames/52424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb in front of a shoe brush"}]} +{"id": "000000114718", "images": ["AURORA/data/something/frames/119087/first.jpg", "AURORA/data/something/frames/119087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pet food bowl with a flipflop"}]} +{"id": "000000114719", "images": ["AURORA/data/something/frames/128515/first.jpg", "AURORA/data/something/frames/128515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a small container"}]} +{"id": "000000114720", "images": ["AURORA/data/something/frames/90824/first.jpg", "AURORA/data/something/frames/90824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a cup on it"}]} +{"id": "000000114721", "images": ["AURORA/data/something/frames/1369/first.jpg", "AURORA/data/something/frames/1369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a water bottle across a surface without it falling down"}]} +{"id": "000000114722", "images": ["AURORA/data/something/frames/176552/first.jpg", "AURORA/data/something/frames/176552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a bottle"}]} +{"id": "000000114723", "images": ["AURORA/data/something/frames/220724/first.jpg", "AURORA/data/something/frames/220724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114724", "images": ["AURORA/data/something/frames/212092/first.jpg", "AURORA/data/something/frames/212092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming hair comb"}]} +{"id": "000000114725", "images": ["AURORA/data/something/frames/10812/first.jpg", "AURORA/data/something/frames/10812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching head of pen to body of pen"}]} +{"id": "000000114726", "images": ["AURORA/data/something/frames/35758/first.jpg", "AURORA/data/something/frames/35758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding blanket"}]} +{"id": "000000114727", "images": ["AURORA/data/something/frames/180205/first.jpg", "AURORA/data/something/frames/180205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pillow"}]} +{"id": "000000114728", "images": ["AURORA/data/something/frames/191949/first.jpg", "AURORA/data/something/frames/191949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys behind bag"}]} +{"id": "000000114729", "images": ["AURORA/data/something/frames/72263/first.jpg", "AURORA/data/something/frames/72263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a polythene bag"}]} +{"id": "000000114730", "images": ["AURORA/data/something/frames/213956/first.jpg", "AURORA/data/something/frames/213956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping stapler next to pink hairclip"}]} +{"id": "000000114731", "images": ["AURORA/data/something/frames/170676/first.jpg", "AURORA/data/something/frames/170676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 sets of coins"}]} +{"id": "000000114732", "images": ["AURORA/data/something/frames/188634/first.jpg", "AURORA/data/something/frames/188634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coconut towards the camera"}]} +{"id": "000000114733", "images": ["AURORA/data/something/frames/150744/first.jpg", "AURORA/data/something/frames/150744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming black remote"}]} +{"id": "000000114734", "images": ["AURORA/data/something/frames/139784/first.jpg", "AURORA/data/something/frames/139784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting spoon with fork"}]} +{"id": "000000114735", "images": ["AURORA/data/something/frames/81322/first.jpg", "AURORA/data/something/frames/81322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a textsurfer from left to right"}]} +{"id": "000000114736", "images": ["AURORA/data/something/frames/1152/first.jpg", "AURORA/data/something/frames/1152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming the wall"}]} +{"id": "000000114737", "images": ["AURORA/data/something/frames/156929/first.jpg", "AURORA/data/something/frames/156929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one plastic cover of many similar plastic covers on the table"}]} +{"id": "000000114738", "images": ["AURORA/data/something/frames/208363/first.jpg", "AURORA/data/something/frames/208363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coffee onto coffee table"}]} +{"id": "000000114739", "images": ["AURORA/data/something/frames/136579/first.jpg", "AURORA/data/something/frames/136579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000114740", "images": ["AURORA/data/something/frames/55300/first.jpg", "AURORA/data/something/frames/55300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plate from right to left"}]} +{"id": "000000114741", "images": ["AURORA/data/something/frames/213541/first.jpg", "AURORA/data/something/frames/213541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000114742", "images": ["AURORA/data/something/frames/77709/first.jpg", "AURORA/data/something/frames/77709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning notebook upside down"}]} +{"id": "000000114743", "images": ["AURORA/data/something/frames/213228/first.jpg", "AURORA/data/something/frames/213228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone but pulling it right out as you remove your hand"}]} +{"id": "000000114744", "images": ["AURORA/data/something/frames/77606/first.jpg", "AURORA/data/something/frames/77606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing dvd case from left to right"}]} +{"id": "000000114745", "images": ["AURORA/data/something/frames/111708/first.jpg", "AURORA/data/something/frames/111708/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel into two pieces"}]} +{"id": "000000114746", "images": ["AURORA/data/something/frames/135254/first.jpg", "AURORA/data/something/frames/135254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clothes peg into mug"}]} +{"id": "000000114747", "images": ["AURORA/data/something/frames/118193/first.jpg", "AURORA/data/something/frames/118193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto table"}]} +{"id": "000000114748", "images": ["AURORA/data/something/frames/69206/first.jpg", "AURORA/data/something/frames/69206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking twine out of vase"}]} +{"id": "000000114749", "images": ["AURORA/data/something/frames/138392/first.jpg", "AURORA/data/something/frames/138392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning paint bottle upside down"}]} +{"id": "000000114750", "images": ["AURORA/data/something/frames/164587/first.jpg", "AURORA/data/something/frames/164587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and ball so they pass each other"}]} +{"id": "000000114751", "images": ["AURORA/data/something/frames/112340/first.jpg", "AURORA/data/something/frames/112340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil underneath table"}]} +{"id": "000000114752", "images": ["AURORA/data/something/frames/82514/first.jpg", "AURORA/data/something/frames/82514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading butter onto toast"}]} +{"id": "000000114753", "images": ["AURORA/data/something/frames/65790/first.jpg", "AURORA/data/something/frames/65790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114754", "images": ["AURORA/data/something/frames/213545/first.jpg", "AURORA/data/something/frames/213545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bus and box away from each other"}]} +{"id": "000000114755", "images": ["AURORA/data/something/frames/168262/first.jpg", "AURORA/data/something/frames/168262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a small bear next to a large bear"}]} +{"id": "000000114756", "images": ["AURORA/data/something/frames/209459/first.jpg", "AURORA/data/something/frames/209459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pushing plastic spay so that it almost falls off but doesn't so that it almost falls off but doesn't"}]} +{"id": "000000114757", "images": ["AURORA/data/something/frames/116945/first.jpg", "AURORA/data/something/frames/116945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cow with pillow"}]} +{"id": "000000114758", "images": ["AURORA/data/something/frames/149395/first.jpg", "AURORA/data/something/frames/149395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass"}]} +{"id": "000000114759", "images": ["AURORA/data/something/frames/175228/first.jpg", "AURORA/data/something/frames/175228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a tape with scissors on it"}]} +{"id": "000000114760", "images": ["AURORA/data/something/frames/206947/first.jpg", "AURORA/data/something/frames/206947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bed"}]} +{"id": "000000114761", "images": ["AURORA/data/something/frames/187799/first.jpg", "AURORA/data/something/frames/187799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb closer to usb cable"}]} +{"id": "000000114762", "images": ["AURORA/data/something/frames/36529/first.jpg", "AURORA/data/something/frames/36529/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking orange of many similar"}]} +{"id": "000000114763", "images": ["AURORA/data/something/frames/217557/first.jpg", "AURORA/data/something/frames/217557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pen from left to right"}]} +{"id": "000000114764", "images": ["AURORA/data/something/frames/101365/first.jpg", "AURORA/data/something/frames/101365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a cap"}]} +{"id": "000000114765", "images": ["AURORA/data/something/frames/117328/first.jpg", "AURORA/data/something/frames/117328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114766", "images": ["AURORA/data/something/frames/29999/first.jpg", "AURORA/data/something/frames/29999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glasses from left to right"}]} +{"id": "000000114767", "images": ["AURORA/data/something/frames/197762/first.jpg", "AURORA/data/something/frames/197762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cup from left to right"}]} +{"id": "000000114768", "images": ["AURORA/data/something/frames/190494/first.jpg", "AURORA/data/something/frames/190494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a clothes hanger behind a basket"}]} +{"id": "000000114769", "images": ["AURORA/data/something/frames/210975/first.jpg", "AURORA/data/something/frames/210975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the hand of a doll"}]} +{"id": "000000114770", "images": ["AURORA/data/something/frames/152209/first.jpg", "AURORA/data/something/frames/152209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book from left to right"}]} +{"id": "000000114771", "images": ["AURORA/data/something/frames/186123/first.jpg", "AURORA/data/something/frames/186123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sunglasses with bottle"}]} +{"id": "000000114772", "images": ["AURORA/data/something/frames/160477/first.jpg", "AURORA/data/something/frames/160477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto plant"}]} +{"id": "000000114773", "images": ["AURORA/data/something/frames/54893/first.jpg", "AURORA/data/something/frames/54893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling apple from left to right"}]} +{"id": "000000114774", "images": ["AURORA/data/something/frames/24879/first.jpg", "AURORA/data/something/frames/24879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small sunscreen lotion from right to left"}]} +{"id": "000000114775", "images": ["AURORA/data/something/frames/209566/first.jpg", "AURORA/data/something/frames/209566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a fork"}]} +{"id": "000000114776", "images": ["AURORA/data/something/frames/68946/first.jpg", "AURORA/data/something/frames/68946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing playdoh into its container"}]} +{"id": "000000114777", "images": ["AURORA/data/something/frames/71563/first.jpg", "AURORA/data/something/frames/71563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing orange bowl from left to right"}]} +{"id": "000000114778", "images": ["AURORA/data/something/frames/17103/first.jpg", "AURORA/data/something/frames/17103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cup so that it deforms"}]} +{"id": "000000114779", "images": ["AURORA/data/something/frames/130178/first.jpg", "AURORA/data/something/frames/130178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling jar from right to left"}]} +{"id": "000000114780", "images": ["AURORA/data/something/frames/40302/first.jpg", "AURORA/data/something/frames/40302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000114781", "images": ["AURORA/data/something/frames/22114/first.jpg", "AURORA/data/something/frames/22114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plate"}]} +{"id": "000000114782", "images": ["AURORA/data/something/frames/149937/first.jpg", "AURORA/data/something/frames/149937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114783", "images": ["AURORA/data/something/frames/137056/first.jpg", "AURORA/data/something/frames/137056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening book"}]} +{"id": "000000114784", "images": ["AURORA/data/something/frames/134687/first.jpg", "AURORA/data/something/frames/134687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000114785", "images": ["AURORA/data/something/frames/216143/first.jpg", "AURORA/data/something/frames/216143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting big bottle in front of small bottle"}]} +{"id": "000000114786", "images": ["AURORA/data/something/frames/111536/first.jpg", "AURORA/data/something/frames/111536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching lid to container"}]} +{"id": "000000114787", "images": ["AURORA/data/something/frames/139019/first.jpg", "AURORA/data/something/frames/139019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling torch from right to left"}]} +{"id": "000000114788", "images": ["AURORA/data/something/frames/184666/first.jpg", "AURORA/data/something/frames/184666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000114789", "images": ["AURORA/data/something/frames/161732/first.jpg", "AURORA/data/something/frames/161732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope into two pieces"}]} +{"id": "000000114790", "images": ["AURORA/data/something/frames/135024/first.jpg", "AURORA/data/something/frames/135024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching a window with your camera"}]} +{"id": "000000114791", "images": ["AURORA/data/something/frames/55380/first.jpg", "AURORA/data/something/frames/55380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving one leg of the doll"}]} +{"id": "000000114792", "images": ["AURORA/data/something/frames/23536/first.jpg", "AURORA/data/something/frames/23536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging air freshener into socket"}]} +{"id": "000000114793", "images": ["AURORA/data/something/frames/169687/first.jpg", "AURORA/data/something/frames/169687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife into mug"}]} +{"id": "000000114794", "images": ["AURORA/data/something/frames/197143/first.jpg", "AURORA/data/something/frames/197143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ball point pen"}]} +{"id": "000000114795", "images": ["AURORA/data/something/frames/33250/first.jpg", "AURORA/data/something/frames/33250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup so that it almost falls off but doesn't"}]} +{"id": "000000114796", "images": ["AURORA/data/something/frames/60656/first.jpg", "AURORA/data/something/frames/60656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable down"}]} +{"id": "000000114797", "images": ["AURORA/data/something/frames/60129/first.jpg", "AURORA/data/something/frames/60129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping blocks over"}]} +{"id": "000000114798", "images": ["AURORA/data/something/frames/132850/first.jpg", "AURORA/data/something/frames/132850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into cup, but missing so it spills next to it"}]} +{"id": "000000114799", "images": ["AURORA/data/something/frames/104025/first.jpg", "AURORA/data/something/frames/104025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming iron"}]} +{"id": "000000114800", "images": ["AURORA/data/something/frames/111120/first.jpg", "AURORA/data/something/frames/111120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a battery on the table on its side, not upright"}]} +{"id": "000000114801", "images": ["AURORA/data/something/frames/3020/first.jpg", "AURORA/data/something/frames/3020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning duster upside down"}]} +{"id": "000000114802", "images": ["AURORA/data/something/frames/174759/first.jpg", "AURORA/data/something/frames/174759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coin"}]} +{"id": "000000114803", "images": ["AURORA/data/something/frames/214066/first.jpg", "AURORA/data/something/frames/214066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming motorbike"}]} +{"id": "000000114804", "images": ["AURORA/data/something/frames/4804/first.jpg", "AURORA/data/something/frames/4804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red marker pen off of blue marker pen"}]} +{"id": "000000114805", "images": ["AURORA/data/something/frames/91009/first.jpg", "AURORA/data/something/frames/91009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing knife from left to right"}]} +{"id": "000000114806", "images": ["AURORA/data/something/frames/33831/first.jpg", "AURORA/data/something/frames/33831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen and spool of thread on the table"}]} +{"id": "000000114807", "images": ["AURORA/data/something/frames/14097/first.jpg", "AURORA/data/something/frames/14097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000114808", "images": ["AURORA/data/something/frames/104073/first.jpg", "AURORA/data/something/frames/104073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a wallet onto the floor"}]} +{"id": "000000114809", "images": ["AURORA/data/something/frames/195051/first.jpg", "AURORA/data/something/frames/195051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pillow with blanket"}]} +{"id": "000000114810", "images": ["AURORA/data/something/frames/50872/first.jpg", "AURORA/data/something/frames/50872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling powdered sugar onto a jar"}]} +{"id": "000000114811", "images": ["AURORA/data/something/frames/152479/first.jpg", "AURORA/data/something/frames/152479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling beaker onto phone"}]} +{"id": "000000114812", "images": ["AURORA/data/something/frames/77221/first.jpg", "AURORA/data/something/frames/77221/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses upright on the table, so it falls on its side"}]} +{"id": "000000114813", "images": ["AURORA/data/something/frames/83168/first.jpg", "AURORA/data/something/frames/83168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tomato"}]} +{"id": "000000114814", "images": ["AURORA/data/something/frames/5294/first.jpg", "AURORA/data/something/frames/5294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving opener of water tap"}]} +{"id": "000000114815", "images": ["AURORA/data/something/frames/122810/first.jpg", "AURORA/data/something/frames/122810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000114816", "images": ["AURORA/data/something/frames/78056/first.jpg", "AURORA/data/something/frames/78056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pizza cutter"}]} +{"id": "000000114817", "images": ["AURORA/data/something/frames/172666/first.jpg", "AURORA/data/something/frames/172666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of knife"}]} +{"id": "000000114818", "images": ["AURORA/data/something/frames/77125/first.jpg", "AURORA/data/something/frames/77125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cushion across a surface without it falling down"}]} +{"id": "000000114819", "images": ["AURORA/data/something/frames/109443/first.jpg", "AURORA/data/something/frames/109443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking peanut butter jar from cabinet"}]} +{"id": "000000114820", "images": ["AURORA/data/something/frames/99271/first.jpg", "AURORA/data/something/frames/99271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto concrete"}]} +{"id": "000000114821", "images": ["AURORA/data/something/frames/9119/first.jpg", "AURORA/data/something/frames/9119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing powerbank so that it almost falls off but doesn't"}]} +{"id": "000000114822", "images": ["AURORA/data/something/frames/15657/first.jpg", "AURORA/data/something/frames/15657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering usb"}]} +{"id": "000000114823", "images": ["AURORA/data/something/frames/177671/first.jpg", "AURORA/data/something/frames/177671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000114824", "images": ["AURORA/data/something/frames/137138/first.jpg", "AURORA/data/something/frames/137138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking waterbottle so that it falls over"}]} +{"id": "000000114825", "images": ["AURORA/data/something/frames/149534/first.jpg", "AURORA/data/something/frames/149534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000114826", "images": ["AURORA/data/something/frames/107036/first.jpg", "AURORA/data/something/frames/107036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting memory card reader and memory card on the table"}]} +{"id": "000000114827", "images": ["AURORA/data/something/frames/94632/first.jpg", "AURORA/data/something/frames/94632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black hairclip from left to right"}]} +{"id": "000000114828", "images": ["AURORA/data/something/frames/51607/first.jpg", "AURORA/data/something/frames/51607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling blocks onto floor"}]} +{"id": "000000114829", "images": ["AURORA/data/something/frames/77531/first.jpg", "AURORA/data/something/frames/77531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphone into cellphone"}]} +{"id": "000000114830", "images": ["AURORA/data/something/frames/37029/first.jpg", "AURORA/data/something/frames/37029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking lighter"}]} +{"id": "000000114831", "images": ["AURORA/data/something/frames/5705/first.jpg", "AURORA/data/something/frames/5705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000114832", "images": ["AURORA/data/something/frames/69854/first.jpg", "AURORA/data/something/frames/69854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic screwcap into mug"}]} +{"id": "000000114833", "images": ["AURORA/data/something/frames/98419/first.jpg", "AURORA/data/something/frames/98419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding handkerchief"}]} +{"id": "000000114834", "images": ["AURORA/data/something/frames/122060/first.jpg", "AURORA/data/something/frames/122060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a shoulder bag onto a globe which cant support it so it falls down"}]} +{"id": "000000114835", "images": ["AURORA/data/something/frames/142936/first.jpg", "AURORA/data/something/frames/142936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cell phone with water bottle on it"}]} +{"id": "000000114836", "images": ["AURORA/data/something/frames/154128/first.jpg", "AURORA/data/something/frames/154128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming phone case"}]} +{"id": "000000114837", "images": ["AURORA/data/something/frames/203286/first.jpg", "AURORA/data/something/frames/203286/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000114838", "images": ["AURORA/data/something/frames/130446/first.jpg", "AURORA/data/something/frames/130446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking leaves out of tree"}]} +{"id": "000000114839", "images": ["AURORA/data/something/frames/8713/first.jpg", "AURORA/data/something/frames/8713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging light into socket but pulling it right out as you remove your hand"}]} +{"id": "000000114840", "images": ["AURORA/data/something/frames/29583/first.jpg", "AURORA/data/something/frames/29583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from right to left"}]} +{"id": "000000114841", "images": ["AURORA/data/something/frames/114907/first.jpg", "AURORA/data/something/frames/114907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) face cloth wet until water comes out"}]} +{"id": "000000114842", "images": ["AURORA/data/something/frames/122534/first.jpg", "AURORA/data/something/frames/122534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a screwdriver"}]} +{"id": "000000114843", "images": ["AURORA/data/something/frames/178054/first.jpg", "AURORA/data/something/frames/178054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling jacket from right to left"}]} +{"id": "000000114844", "images": ["AURORA/data/something/frames/88039/first.jpg", "AURORA/data/something/frames/88039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping orange juice off of counter"}]} +{"id": "000000114845", "images": ["AURORA/data/something/frames/26289/first.jpg", "AURORA/data/something/frames/26289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet and knife closer to each other"}]} +{"id": "000000114846", "images": ["AURORA/data/something/frames/42581/first.jpg", "AURORA/data/something/frames/42581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing torch with dvd case"}]} +{"id": "000000114847", "images": ["AURORA/data/something/frames/189936/first.jpg", "AURORA/data/something/frames/189936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from left to right"}]} +{"id": "000000114848", "images": ["AURORA/data/something/frames/190899/first.jpg", "AURORA/data/something/frames/190899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil on a surface"}]} +{"id": "000000114849", "images": ["AURORA/data/something/frames/198683/first.jpg", "AURORA/data/something/frames/198683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink box from right to left"}]} +{"id": "000000114850", "images": ["AURORA/data/something/frames/121290/first.jpg", "AURORA/data/something/frames/121290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking tape measure up"}]} +{"id": "000000114851", "images": ["AURORA/data/something/frames/172087/first.jpg", "AURORA/data/something/frames/172087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hairband from table"}]} +{"id": "000000114852", "images": ["AURORA/data/something/frames/102830/first.jpg", "AURORA/data/something/frames/102830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping hand soap over"}]} +{"id": "000000114853", "images": ["AURORA/data/something/frames/192399/first.jpg", "AURORA/data/something/frames/192399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on the edge of glass so it is not supported and falls down"}]} +{"id": "000000114854", "images": ["AURORA/data/something/frames/60988/first.jpg", "AURORA/data/something/frames/60988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing calculator with a bottle"}]} +{"id": "000000114855", "images": ["AURORA/data/something/frames/202588/first.jpg", "AURORA/data/something/frames/202588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ruler on a surface"}]} +{"id": "000000114856", "images": ["AURORA/data/something/frames/123956/first.jpg", "AURORA/data/something/frames/123956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming toy idol"}]} +{"id": "000000114857", "images": ["AURORA/data/something/frames/21338/first.jpg", "AURORA/data/something/frames/21338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into the wall"}]} +{"id": "000000114858", "images": ["AURORA/data/something/frames/177974/first.jpg", "AURORA/data/something/frames/177974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile and remote away from each other"}]} +{"id": "000000114859", "images": ["AURORA/data/something/frames/212414/first.jpg", "AURORA/data/something/frames/212414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bucket until it overflows"}]} +{"id": "000000114860", "images": ["AURORA/data/something/frames/114562/first.jpg", "AURORA/data/something/frames/114562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup closer to a book"}]} +{"id": "000000114861", "images": ["AURORA/data/something/frames/13902/first.jpg", "AURORA/data/something/frames/13902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming soft drink"}]} +{"id": "000000114862", "images": ["AURORA/data/something/frames/112743/first.jpg", "AURORA/data/something/frames/112743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting toys"}]} +{"id": "000000114863", "images": ["AURORA/data/something/frames/204602/first.jpg", "AURORA/data/something/frames/204602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cellphone behind book"}]} +{"id": "000000114864", "images": ["AURORA/data/something/frames/192223/first.jpg", "AURORA/data/something/frames/192223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ball and glass sheaker closer to each other"}]} +{"id": "000000114865", "images": ["AURORA/data/something/frames/215032/first.jpg", "AURORA/data/something/frames/215032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering the ball with a towel"}]} +{"id": "000000114866", "images": ["AURORA/data/something/frames/139586/first.jpg", "AURORA/data/something/frames/139586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife behind mug"}]} +{"id": "000000114867", "images": ["AURORA/data/something/frames/34302/first.jpg", "AURORA/data/something/frames/34302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000114868", "images": ["AURORA/data/something/frames/5465/first.jpg", "AURORA/data/something/frames/5465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving led of thermos"}]} +{"id": "000000114869", "images": ["AURORA/data/something/frames/26587/first.jpg", "AURORA/data/something/frames/26587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glasses from right to left"}]} +{"id": "000000114870", "images": ["AURORA/data/something/frames/191023/first.jpg", "AURORA/data/something/frames/191023/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting usb cable into laptop"}]} +{"id": "000000114871", "images": ["AURORA/data/something/frames/213594/first.jpg", "AURORA/data/something/frames/213594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering headphones with a towel"}]} +{"id": "000000114872", "images": ["AURORA/data/something/frames/182632/first.jpg", "AURORA/data/something/frames/182632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a toothpick upright on the table, so it falls on its side"}]} +{"id": "000000114873", "images": ["AURORA/data/something/frames/106342/first.jpg", "AURORA/data/something/frames/106342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 board clips"}]} +{"id": "000000114874", "images": ["AURORA/data/something/frames/30918/first.jpg", "AURORA/data/something/frames/30918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking tote bag up"}]} +{"id": "000000114875", "images": ["AURORA/data/something/frames/122497/first.jpg", "AURORA/data/something/frames/122497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a top off a drink"}]} +{"id": "000000114876", "images": ["AURORA/data/something/frames/212046/first.jpg", "AURORA/data/something/frames/212046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card next to a plate"}]} +{"id": "000000114877", "images": ["AURORA/data/something/frames/163305/first.jpg", "AURORA/data/something/frames/163305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a shoe up"}]} +{"id": "000000114878", "images": ["AURORA/data/something/frames/145268/first.jpg", "AURORA/data/something/frames/145268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bowl on a surface"}]} +{"id": "000000114879", "images": ["AURORA/data/something/frames/205521/first.jpg", "AURORA/data/something/frames/205521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery onto rubix cube"}]} +{"id": "000000114880", "images": ["AURORA/data/something/frames/4377/first.jpg", "AURORA/data/something/frames/4377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing pen"}]} +{"id": "000000114881", "images": ["AURORA/data/something/frames/94528/first.jpg", "AURORA/data/something/frames/94528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming red booklet"}]} +{"id": "000000114882", "images": ["AURORA/data/something/frames/27664/first.jpg", "AURORA/data/something/frames/27664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000114883", "images": ["AURORA/data/something/frames/178765/first.jpg", "AURORA/data/something/frames/178765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping something over"}]} +{"id": "000000114884", "images": ["AURORA/data/something/frames/5186/first.jpg", "AURORA/data/something/frames/5186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from bottle with your camera"}]} +{"id": "000000114885", "images": ["AURORA/data/something/frames/92574/first.jpg", "AURORA/data/something/frames/92574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a jar"}]} +{"id": "000000114886", "images": ["AURORA/data/something/frames/39009/first.jpg", "AURORA/data/something/frames/39009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting lamp with finger"}]} +{"id": "000000114887", "images": ["AURORA/data/something/frames/131779/first.jpg", "AURORA/data/something/frames/131779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a wash cloth"}]} +{"id": "000000114888", "images": ["AURORA/data/something/frames/12095/first.jpg", "AURORA/data/something/frames/12095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cabinet"}]} +{"id": "000000114889", "images": ["AURORA/data/something/frames/204548/first.jpg", "AURORA/data/something/frames/204548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering stapler with red pouch"}]} +{"id": "000000114890", "images": ["AURORA/data/something/frames/63816/first.jpg", "AURORA/data/something/frames/63816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000114891", "images": ["AURORA/data/something/frames/149000/first.jpg", "AURORA/data/something/frames/149000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pc mouse closer to scissors"}]} +{"id": "000000114892", "images": ["AURORA/data/something/frames/16293/first.jpg", "AURORA/data/something/frames/16293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into mobile but pulling it right out as you remove your hand"}]} +{"id": "000000114893", "images": ["AURORA/data/something/frames/13939/first.jpg", "AURORA/data/something/frames/13939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting globe and unicorn on the table"}]} +{"id": "000000114894", "images": ["AURORA/data/something/frames/58579/first.jpg", "AURORA/data/something/frames/58579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pick and usb away from each other"}]} +{"id": "000000114895", "images": ["AURORA/data/something/frames/173824/first.jpg", "AURORA/data/something/frames/173824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors away from a sieve"}]} +{"id": "000000114896", "images": ["AURORA/data/something/frames/210365/first.jpg", "AURORA/data/something/frames/210365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a shoe with a hand"}]} +{"id": "000000114897", "images": ["AURORA/data/something/frames/134457/first.jpg", "AURORA/data/something/frames/134457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pencil"}]} +{"id": "000000114898", "images": ["AURORA/data/something/frames/134626/first.jpg", "AURORA/data/something/frames/134626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup away from a bottle"}]} +{"id": "000000114899", "images": ["AURORA/data/something/frames/60521/first.jpg", "AURORA/data/something/frames/60521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114900", "images": ["AURORA/data/something/frames/34095/first.jpg", "AURORA/data/something/frames/34095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking teddy bear up"}]} +{"id": "000000114901", "images": ["AURORA/data/something/frames/194852/first.jpg", "AURORA/data/something/frames/194852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling marker onto santa hat"}]} +{"id": "000000114902", "images": ["AURORA/data/something/frames/37956/first.jpg", "AURORA/data/something/frames/37956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting glasses with paper on it"}]} +{"id": "000000114903", "images": ["AURORA/data/something/frames/188086/first.jpg", "AURORA/data/something/frames/188086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many similar"}]} +{"id": "000000114904", "images": ["AURORA/data/something/frames/142969/first.jpg", "AURORA/data/something/frames/142969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nail polish away from the camera"}]} +{"id": "000000114905", "images": ["AURORA/data/something/frames/186642/first.jpg", "AURORA/data/something/frames/186642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding shirt"}]} +{"id": "000000114906", "images": ["AURORA/data/something/frames/155756/first.jpg", "AURORA/data/something/frames/155756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter down"}]} +{"id": "000000114907", "images": ["AURORA/data/something/frames/146395/first.jpg", "AURORA/data/something/frames/146395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto sink"}]} +{"id": "000000114908", "images": ["AURORA/data/something/frames/133166/first.jpg", "AURORA/data/something/frames/133166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000114909", "images": ["AURORA/data/something/frames/104764/first.jpg", "AURORA/data/something/frames/104764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto bottle"}]} +{"id": "000000114910", "images": ["AURORA/data/something/frames/163103/first.jpg", "AURORA/data/something/frames/163103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing casual hat from left to right"}]} +{"id": "000000114911", "images": ["AURORA/data/something/frames/31361/first.jpg", "AURORA/data/something/frames/31361/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cd's up"}]} +{"id": "000000114912", "images": ["AURORA/data/something/frames/36772/first.jpg", "AURORA/data/something/frames/36772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubix cube in front of a pillow"}]} +{"id": "000000114913", "images": ["AURORA/data/something/frames/94505/first.jpg", "AURORA/data/something/frames/94505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting the towel"}]} +{"id": "000000114914", "images": ["AURORA/data/something/frames/145907/first.jpg", "AURORA/data/something/frames/145907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bracelet out of a jewelry box"}]} +{"id": "000000114915", "images": ["AURORA/data/something/frames/23892/first.jpg", "AURORA/data/something/frames/23892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000114916", "images": ["AURORA/data/something/frames/101018/first.jpg", "AURORA/data/something/frames/101018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking candles"}]} +{"id": "000000114917", "images": ["AURORA/data/something/frames/132411/first.jpg", "AURORA/data/something/frames/132411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys out of bag"}]} +{"id": "000000114918", "images": ["AURORA/data/something/frames/111472/first.jpg", "AURORA/data/something/frames/111472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a candle up"}]} +{"id": "000000114919", "images": ["AURORA/data/something/frames/99350/first.jpg", "AURORA/data/something/frames/99350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cow into box"}]} +{"id": "000000114920", "images": ["AURORA/data/something/frames/12152/first.jpg", "AURORA/data/something/frames/12152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a nailpolish bottle upside down"}]} +{"id": "000000114921", "images": ["AURORA/data/something/frames/156254/first.jpg", "AURORA/data/something/frames/156254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bowl"}]} +{"id": "000000114922", "images": ["AURORA/data/something/frames/10914/first.jpg", "AURORA/data/something/frames/10914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle-bottle and candle-bottle so they collide with each other"}]} +{"id": "000000114923", "images": ["AURORA/data/something/frames/155132/first.jpg", "AURORA/data/something/frames/155132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery and battery closer to each other"}]} +{"id": "000000114924", "images": ["AURORA/data/something/frames/188158/first.jpg", "AURORA/data/something/frames/188158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a strip of paper so that it deforms"}]} +{"id": "000000114925", "images": ["AURORA/data/something/frames/15636/first.jpg", "AURORA/data/something/frames/15636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle upright on the table"}]} +{"id": "000000114926", "images": ["AURORA/data/something/frames/156616/first.jpg", "AURORA/data/something/frames/156616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with box on it"}]} +{"id": "000000114927", "images": ["AURORA/data/something/frames/43591/first.jpg", "AURORA/data/something/frames/43591/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a book on the table on its side, not upright"}]} +{"id": "000000114928", "images": ["AURORA/data/something/frames/181564/first.jpg", "AURORA/data/something/frames/181564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a teddy with a blanket"}]} +{"id": "000000114929", "images": ["AURORA/data/something/frames/29133/first.jpg", "AURORA/data/something/frames/29133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bottle"}]} +{"id": "000000114930", "images": ["AURORA/data/something/frames/121011/first.jpg", "AURORA/data/something/frames/121011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key with pencil"}]} +{"id": "000000114931", "images": ["AURORA/data/something/frames/98735/first.jpg", "AURORA/data/something/frames/98735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving little spray of container box"}]} +{"id": "000000114932", "images": ["AURORA/data/something/frames/87855/first.jpg", "AURORA/data/something/frames/87855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering key with paper"}]} +{"id": "000000114933", "images": ["AURORA/data/something/frames/156905/first.jpg", "AURORA/data/something/frames/156905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing thread from right to left"}]} +{"id": "000000114934", "images": ["AURORA/data/something/frames/74683/first.jpg", "AURORA/data/something/frames/74683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching t shirts with your camera"}]} +{"id": "000000114935", "images": ["AURORA/data/something/frames/92799/first.jpg", "AURORA/data/something/frames/92799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing printer paper just a little bit"}]} +{"id": "000000114936", "images": ["AURORA/data/something/frames/127983/first.jpg", "AURORA/data/something/frames/127983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet next to magnifying glass"}]} +{"id": "000000114937", "images": ["AURORA/data/something/frames/33400/first.jpg", "AURORA/data/something/frames/33400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000114938", "images": ["AURORA/data/something/frames/171824/first.jpg", "AURORA/data/something/frames/171824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a glue with a bottle"}]} +{"id": "000000114939", "images": ["AURORA/data/something/frames/189615/first.jpg", "AURORA/data/something/frames/189615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a matchbox from behind of a box"}]} +{"id": "000000114940", "images": ["AURORA/data/something/frames/115190/first.jpg", "AURORA/data/something/frames/115190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing bottle into box"}]} +{"id": "000000114941", "images": ["AURORA/data/something/frames/120423/first.jpg", "AURORA/data/something/frames/120423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a water container upside down"}]} +{"id": "000000114942", "images": ["AURORA/data/something/frames/132485/first.jpg", "AURORA/data/something/frames/132485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a chair with the arms"}]} +{"id": "000000114943", "images": ["AURORA/data/something/frames/77814/first.jpg", "AURORA/data/something/frames/77814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) sensor of lamp"}]} +{"id": "000000114944", "images": ["AURORA/data/something/frames/217964/first.jpg", "AURORA/data/something/frames/217964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling laundry up"}]} +{"id": "000000114945", "images": ["AURORA/data/something/frames/63425/first.jpg", "AURORA/data/something/frames/63425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a container onto a box"}]} +{"id": "000000114946", "images": ["AURORA/data/something/frames/87011/first.jpg", "AURORA/data/something/frames/87011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000114947", "images": ["AURORA/data/something/frames/13017/first.jpg", "AURORA/data/something/frames/13017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing the paper into two pieces"}]} +{"id": "000000114948", "images": ["AURORA/data/something/frames/30245/first.jpg", "AURORA/data/something/frames/30245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bag so that it almost falls off but doesn't"}]} +{"id": "000000114949", "images": ["AURORA/data/something/frames/200057/first.jpg", "AURORA/data/something/frames/200057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cap"}]} +{"id": "000000114950", "images": ["AURORA/data/something/frames/150347/first.jpg", "AURORA/data/something/frames/150347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into box"}]} +{"id": "000000114951", "images": ["AURORA/data/something/frames/199138/first.jpg", "AURORA/data/something/frames/199138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic comb next to mug"}]} +{"id": "000000114952", "images": ["AURORA/data/something/frames/114553/first.jpg", "AURORA/data/something/frames/114553/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sponge into mug"}]} +{"id": "000000114953", "images": ["AURORA/data/something/frames/67788/first.jpg", "AURORA/data/something/frames/67788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope just a little bit"}]} +{"id": "000000114954", "images": ["AURORA/data/something/frames/88218/first.jpg", "AURORA/data/something/frames/88218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) back camera of smartphone"}]} +{"id": "000000114955", "images": ["AURORA/data/something/frames/115613/first.jpg", "AURORA/data/something/frames/115613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing window"}]} +{"id": "000000114956", "images": ["AURORA/data/something/frames/96298/first.jpg", "AURORA/data/something/frames/96298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key closer to comb"}]} +{"id": "000000114957", "images": ["AURORA/data/something/frames/157432/first.jpg", "AURORA/data/something/frames/157432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a cup with a card on it"}]} +{"id": "000000114958", "images": ["AURORA/data/something/frames/212349/first.jpg", "AURORA/data/something/frames/212349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon from plate"}]} +{"id": "000000114959", "images": ["AURORA/data/something/frames/160945/first.jpg", "AURORA/data/something/frames/160945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering popcorn with lid"}]} +{"id": "000000114960", "images": ["AURORA/data/something/frames/188433/first.jpg", "AURORA/data/something/frames/188433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottled ponzu sauce from left to right"}]} +{"id": "000000114961", "images": ["AURORA/data/something/frames/210710/first.jpg", "AURORA/data/something/frames/210710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming posters"}]} +{"id": "000000114962", "images": ["AURORA/data/something/frames/155526/first.jpg", "AURORA/data/something/frames/155526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening notebook"}]} +{"id": "000000114963", "images": ["AURORA/data/something/frames/121735/first.jpg", "AURORA/data/something/frames/121735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book"}]} +{"id": "000000114964", "images": ["AURORA/data/something/frames/16552/first.jpg", "AURORA/data/something/frames/16552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000114965", "images": ["AURORA/data/something/frames/128589/first.jpg", "AURORA/data/something/frames/128589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 water bottles onto wooden board"}]} +{"id": "000000114966", "images": ["AURORA/data/something/frames/176219/first.jpg", "AURORA/data/something/frames/176219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind book"}]} +{"id": "000000114967", "images": ["AURORA/data/something/frames/122075/first.jpg", "AURORA/data/something/frames/122075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of flashlight without letting it drop down"}]} +{"id": "000000114968", "images": ["AURORA/data/something/frames/145759/first.jpg", "AURORA/data/something/frames/145759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into wine glass until it overflows"}]} +{"id": "000000114969", "images": ["AURORA/data/something/frames/174374/first.jpg", "AURORA/data/something/frames/174374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a memory stick into a usb port"}]} +{"id": "000000114970", "images": ["AURORA/data/something/frames/166365/first.jpg", "AURORA/data/something/frames/166365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving an orange basket ball and a black basket ball so they collide with each other"}]} +{"id": "000000114971", "images": ["AURORA/data/something/frames/117195/first.jpg", "AURORA/data/something/frames/117195/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a bottle"}]} +{"id": "000000114972", "images": ["AURORA/data/something/frames/39264/first.jpg", "AURORA/data/something/frames/39264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a glass closer to each other"}]} +{"id": "000000114973", "images": ["AURORA/data/something/frames/209856/first.jpg", "AURORA/data/something/frames/209856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box away from container"}]} +{"id": "000000114974", "images": ["AURORA/data/something/frames/163449/first.jpg", "AURORA/data/something/frames/163449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000114975", "images": ["AURORA/data/something/frames/150689/first.jpg", "AURORA/data/something/frames/150689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball colliding with bowl and both are being deflected"}]} +{"id": "000000114976", "images": ["AURORA/data/something/frames/121193/first.jpg", "AURORA/data/something/frames/121193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping water bottle over"}]} +{"id": "000000114977", "images": ["AURORA/data/something/frames/43987/first.jpg", "AURORA/data/something/frames/43987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a sponge with a straw on it"}]} +{"id": "000000114978", "images": ["AURORA/data/something/frames/152938/first.jpg", "AURORA/data/something/frames/152938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bag strap"}]} +{"id": "000000114979", "images": ["AURORA/data/something/frames/112404/first.jpg", "AURORA/data/something/frames/112404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto table"}]} +{"id": "000000114980", "images": ["AURORA/data/something/frames/5926/first.jpg", "AURORA/data/something/frames/5926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000114981", "images": ["AURORA/data/something/frames/53331/first.jpg", "AURORA/data/something/frames/53331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a book onto the bed"}]} +{"id": "000000114982", "images": ["AURORA/data/something/frames/199487/first.jpg", "AURORA/data/something/frames/199487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle on the table on its side, not upright"}]} +{"id": "000000114983", "images": ["AURORA/data/something/frames/48393/first.jpg", "AURORA/data/something/frames/48393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking board clip up"}]} +{"id": "000000114984", "images": ["AURORA/data/something/frames/71544/first.jpg", "AURORA/data/something/frames/71544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000114985", "images": ["AURORA/data/something/frames/44655/first.jpg", "AURORA/data/something/frames/44655/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking candle out of glas"}]} +{"id": "000000114986", "images": ["AURORA/data/something/frames/122400/first.jpg", "AURORA/data/something/frames/122400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting vitamin into bottle"}]} +{"id": "000000114987", "images": ["AURORA/data/something/frames/158724/first.jpg", "AURORA/data/something/frames/158724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a plant on it"}]} +{"id": "000000114988", "images": ["AURORA/data/something/frames/11859/first.jpg", "AURORA/data/something/frames/11859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a mobile on it"}]} +{"id": "000000114989", "images": ["AURORA/data/something/frames/155680/first.jpg", "AURORA/data/something/frames/155680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a fan with a shoe"}]} +{"id": "000000114990", "images": ["AURORA/data/something/frames/88889/first.jpg", "AURORA/data/something/frames/88889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon, fork and knife on the table"}]} +{"id": "000000114991", "images": ["AURORA/data/something/frames/131090/first.jpg", "AURORA/data/something/frames/131090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a nail polish upside down"}]} +{"id": "000000114992", "images": ["AURORA/data/something/frames/35281/first.jpg", "AURORA/data/something/frames/35281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a plastic bottle with scissors"}]} +{"id": "000000114993", "images": ["AURORA/data/something/frames/44395/first.jpg", "AURORA/data/something/frames/44395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something on the edge of something so it is not supported and falls down"}]} +{"id": "000000114994", "images": ["AURORA/data/something/frames/198861/first.jpg", "AURORA/data/something/frames/198861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ligher into box"}]} +{"id": "000000114995", "images": ["AURORA/data/something/frames/115934/first.jpg", "AURORA/data/something/frames/115934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 cans"}]} +{"id": "000000114996", "images": ["AURORA/data/something/frames/135498/first.jpg", "AURORA/data/something/frames/135498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coin with scissor"}]} +{"id": "000000114997", "images": ["AURORA/data/something/frames/99170/first.jpg", "AURORA/data/something/frames/99170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000114998", "images": ["AURORA/data/something/frames/30763/first.jpg", "AURORA/data/something/frames/30763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a box"}]} +{"id": "000000114999", "images": ["AURORA/data/something/frames/146009/first.jpg", "AURORA/data/something/frames/146009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting metal pencil case with wrist watch"}]} +{"id": "000000115000", "images": ["AURORA/data/something/frames/55860/first.jpg", "AURORA/data/something/frames/55860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling paper up"}]} +{"id": "000000115001", "images": ["AURORA/data/something/frames/9254/first.jpg", "AURORA/data/something/frames/9254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone"}]} +{"id": "000000115002", "images": ["AURORA/data/something/frames/154626/first.jpg", "AURORA/data/something/frames/154626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a box"}]} +{"id": "000000115003", "images": ["AURORA/data/something/frames/13122/first.jpg", "AURORA/data/something/frames/13122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil upright on the table, so it falls on its side"}]} +{"id": "000000115004", "images": ["AURORA/data/something/frames/67720/first.jpg", "AURORA/data/something/frames/67720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming hair dryer"}]} +{"id": "000000115005", "images": ["AURORA/data/something/frames/160604/first.jpg", "AURORA/data/something/frames/160604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pens into pencil case"}]} +{"id": "000000115006", "images": ["AURORA/data/something/frames/65600/first.jpg", "AURORA/data/something/frames/65600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour soda into cup, but missing so it spills next to it"}]} +{"id": "000000115007", "images": ["AURORA/data/something/frames/49599/first.jpg", "AURORA/data/something/frames/49599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000115008", "images": ["AURORA/data/something/frames/15966/first.jpg", "AURORA/data/something/frames/15966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000115009", "images": ["AURORA/data/something/frames/138967/first.jpg", "AURORA/data/something/frames/138967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000115010", "images": ["AURORA/data/something/frames/149268/first.jpg", "AURORA/data/something/frames/149268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding shirt"}]} +{"id": "000000115011", "images": ["AURORA/data/something/frames/24760/first.jpg", "AURORA/data/something/frames/24760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone and xbox game closer to each other"}]} +{"id": "000000115012", "images": ["AURORA/data/something/frames/177238/first.jpg", "AURORA/data/something/frames/177238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000115013", "images": ["AURORA/data/something/frames/15451/first.jpg", "AURORA/data/something/frames/15451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a tea light candle away from a group of candles"}]} +{"id": "000000115014", "images": ["AURORA/data/something/frames/62083/first.jpg", "AURORA/data/something/frames/62083/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of sock so that it gets stretched"}]} +{"id": "000000115015", "images": ["AURORA/data/something/frames/118091/first.jpg", "AURORA/data/something/frames/118091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000115016", "images": ["AURORA/data/something/frames/2970/first.jpg", "AURORA/data/something/frames/2970/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering tablet with handkerchief"}]} +{"id": "000000115017", "images": ["AURORA/data/something/frames/147131/first.jpg", "AURORA/data/something/frames/147131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from pen with your camera"}]} +{"id": "000000115018", "images": ["AURORA/data/something/frames/93652/first.jpg", "AURORA/data/something/frames/93652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting black spectacles up completely without letting it drop down"}]} +{"id": "000000115019", "images": ["AURORA/data/something/frames/11248/first.jpg", "AURORA/data/something/frames/11248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting blue colour spectacle box up completely without letting it drop down"}]} +{"id": "000000115020", "images": ["AURORA/data/something/frames/103661/first.jpg", "AURORA/data/something/frames/103661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from left to right"}]} +{"id": "000000115021", "images": ["AURORA/data/something/frames/130147/first.jpg", "AURORA/data/something/frames/130147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting play-doh into mug"}]} +{"id": "000000115022", "images": ["AURORA/data/something/frames/218479/first.jpg", "AURORA/data/something/frames/218479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys"}]} +{"id": "000000115023", "images": ["AURORA/data/something/frames/104468/first.jpg", "AURORA/data/something/frames/104468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink blush on from left to right"}]} +{"id": "000000115024", "images": ["AURORA/data/something/frames/17535/first.jpg", "AURORA/data/something/frames/17535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000115025", "images": ["AURORA/data/something/frames/2324/first.jpg", "AURORA/data/something/frames/2324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a rubix cube with a hammer"}]} +{"id": "000000115026", "images": ["AURORA/data/something/frames/189371/first.jpg", "AURORA/data/something/frames/189371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a leaf so that it separates into two pieces"}]} +{"id": "000000115027", "images": ["AURORA/data/something/frames/92373/first.jpg", "AURORA/data/something/frames/92373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing napkin into candle"}]} +{"id": "000000115028", "images": ["AURORA/data/something/frames/196364/first.jpg", "AURORA/data/something/frames/196364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy wheel into green bowl"}]} +{"id": "000000115029", "images": ["AURORA/data/something/frames/120000/first.jpg", "AURORA/data/something/frames/120000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending metal wire so that it deforms"}]} +{"id": "000000115030", "images": ["AURORA/data/something/frames/200662/first.jpg", "AURORA/data/something/frames/200662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone behind cup"}]} +{"id": "000000115031", "images": ["AURORA/data/something/frames/126386/first.jpg", "AURORA/data/something/frames/126386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of paper so that it separates into two pieces"}]} +{"id": "000000115032", "images": ["AURORA/data/something/frames/133641/first.jpg", "AURORA/data/something/frames/133641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glass with brush"}]} +{"id": "000000115033", "images": ["AURORA/data/something/frames/130669/first.jpg", "AURORA/data/something/frames/130669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping milk off of counter"}]} +{"id": "000000115034", "images": ["AURORA/data/something/frames/173220/first.jpg", "AURORA/data/something/frames/173220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving marker and jar away from each other"}]} +{"id": "000000115035", "images": ["AURORA/data/something/frames/30537/first.jpg", "AURORA/data/something/frames/30537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a water bottle"}]} +{"id": "000000115036", "images": ["AURORA/data/something/frames/201987/first.jpg", "AURORA/data/something/frames/201987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000115037", "images": ["AURORA/data/something/frames/23835/first.jpg", "AURORA/data/something/frames/23835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000115038", "images": ["AURORA/data/something/frames/119903/first.jpg", "AURORA/data/something/frames/119903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from right to left"}]} +{"id": "000000115039", "images": ["AURORA/data/something/frames/25846/first.jpg", "AURORA/data/something/frames/25846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting crayons, pencilbox and scissors on the table"}]} +{"id": "000000115040", "images": ["AURORA/data/something/frames/203953/first.jpg", "AURORA/data/something/frames/203953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mouse onto a mouse pad"}]} +{"id": "000000115041", "images": ["AURORA/data/something/frames/133030/first.jpg", "AURORA/data/something/frames/133030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a shoe colliding with another shoe and both come to a halt"}]} +{"id": "000000115042", "images": ["AURORA/data/something/frames/164547/first.jpg", "AURORA/data/something/frames/164547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning canned food upside down"}]} +{"id": "000000115043", "images": ["AURORA/data/something/frames/207893/first.jpg", "AURORA/data/something/frames/207893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000115044", "images": ["AURORA/data/something/frames/170043/first.jpg", "AURORA/data/something/frames/170043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a usb so that it almost falls off but doesn't"}]} +{"id": "000000115045", "images": ["AURORA/data/something/frames/39583/first.jpg", "AURORA/data/something/frames/39583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a [pen amongst other pens"}]} +{"id": "000000115046", "images": ["AURORA/data/something/frames/132966/first.jpg", "AURORA/data/something/frames/132966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000115047", "images": ["AURORA/data/something/frames/196314/first.jpg", "AURORA/data/something/frames/196314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping liquid hand soap off of counter"}]} +{"id": "000000115048", "images": ["AURORA/data/something/frames/122981/first.jpg", "AURORA/data/something/frames/122981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) tissue wet until water comes out"}]} +{"id": "000000115049", "images": ["AURORA/data/something/frames/89367/first.jpg", "AURORA/data/something/frames/89367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning mug upside down"}]} +{"id": "000000115050", "images": ["AURORA/data/something/frames/4689/first.jpg", "AURORA/data/something/frames/4689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving yo-yo and marble so they pass each other"}]} +{"id": "000000115051", "images": ["AURORA/data/something/frames/127592/first.jpg", "AURORA/data/something/frames/127592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pipe cleaner so that it deforms"}]} +{"id": "000000115052", "images": ["AURORA/data/something/frames/27792/first.jpg", "AURORA/data/something/frames/27792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring vodka into cup"}]} +{"id": "000000115053", "images": ["AURORA/data/something/frames/71417/first.jpg", "AURORA/data/something/frames/71417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tiger toy on a surface"}]} +{"id": "000000115054", "images": ["AURORA/data/something/frames/32992/first.jpg", "AURORA/data/something/frames/32992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box from right to left"}]} +{"id": "000000115055", "images": ["AURORA/data/something/frames/67810/first.jpg", "AURORA/data/something/frames/67810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a shoe so that it almost falls off but doesn't"}]} +{"id": "000000115056", "images": ["AURORA/data/something/frames/196076/first.jpg", "AURORA/data/something/frames/196076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a plate with mexican dip container on it"}]} +{"id": "000000115057", "images": ["AURORA/data/something/frames/219708/first.jpg", "AURORA/data/something/frames/219708/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something away from the camera"}]} +{"id": "000000115058", "images": ["AURORA/data/something/frames/33456/first.jpg", "AURORA/data/something/frames/33456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming tea box"}]} +{"id": "000000115059", "images": ["AURORA/data/something/frames/145001/first.jpg", "AURORA/data/something/frames/145001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting eraser on the edge of window so it is not supported and falls down"}]} +{"id": "000000115060", "images": ["AURORA/data/something/frames/184846/first.jpg", "AURORA/data/something/frames/184846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking table salt"}]} +{"id": "000000115061", "images": ["AURORA/data/something/frames/195091/first.jpg", "AURORA/data/something/frames/195091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardstock just a little bit"}]} +{"id": "000000115062", "images": ["AURORA/data/something/frames/66930/first.jpg", "AURORA/data/something/frames/66930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bottle so that it falls over"}]} +{"id": "000000115063", "images": ["AURORA/data/something/frames/155059/first.jpg", "AURORA/data/something/frames/155059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling wire onto tablet"}]} +{"id": "000000115064", "images": ["AURORA/data/something/frames/1705/first.jpg", "AURORA/data/something/frames/1705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing waste bin"}]} +{"id": "000000115065", "images": ["AURORA/data/something/frames/29729/first.jpg", "AURORA/data/something/frames/29729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bottle"}]} +{"id": "000000115066", "images": ["AURORA/data/something/frames/1521/first.jpg", "AURORA/data/something/frames/1521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and banana closer to each other"}]} +{"id": "000000115067", "images": ["AURORA/data/something/frames/129914/first.jpg", "AURORA/data/something/frames/129914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toothpaste onto toothbrush"}]} +{"id": "000000115068", "images": ["AURORA/data/something/frames/191134/first.jpg", "AURORA/data/something/frames/191134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115069", "images": ["AURORA/data/something/frames/173712/first.jpg", "AURORA/data/something/frames/173712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a thermometer out of a drawer"}]} +{"id": "000000115070", "images": ["AURORA/data/something/frames/149222/first.jpg", "AURORA/data/something/frames/149222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping spatula onto stove"}]} +{"id": "000000115071", "images": ["AURORA/data/something/frames/111809/first.jpg", "AURORA/data/something/frames/111809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and fork away from each other"}]} +{"id": "000000115072", "images": ["AURORA/data/something/frames/193078/first.jpg", "AURORA/data/something/frames/193078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000115073", "images": ["AURORA/data/something/frames/123531/first.jpg", "AURORA/data/something/frames/123531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bus ticket so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000115074", "images": ["AURORA/data/something/frames/32267/first.jpg", "AURORA/data/something/frames/32267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000115075", "images": ["AURORA/data/something/frames/9679/first.jpg", "AURORA/data/something/frames/9679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting calculator in front of eraser"}]} +{"id": "000000115076", "images": ["AURORA/data/something/frames/8739/first.jpg", "AURORA/data/something/frames/8739/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing purple balloon pump from right to left"}]} +{"id": "000000115077", "images": ["AURORA/data/something/frames/220641/first.jpg", "AURORA/data/something/frames/220641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket but pulling it right out as you remove your hand"}]} +{"id": "000000115078", "images": ["AURORA/data/something/frames/142853/first.jpg", "AURORA/data/something/frames/142853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking water bottle so that it falls over"}]} +{"id": "000000115079", "images": ["AURORA/data/something/frames/130937/first.jpg", "AURORA/data/something/frames/130937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and cup away from each other"}]} +{"id": "000000115080", "images": ["AURORA/data/something/frames/171127/first.jpg", "AURORA/data/something/frames/171127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil next to a magazine"}]} +{"id": "000000115081", "images": ["AURORA/data/something/frames/16733/first.jpg", "AURORA/data/something/frames/16733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power supply cord into laptop"}]} +{"id": "000000115082", "images": ["AURORA/data/something/frames/99996/first.jpg", "AURORA/data/something/frames/99996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling seltzer onto grape juice"}]} +{"id": "000000115083", "images": ["AURORA/data/something/frames/14859/first.jpg", "AURORA/data/something/frames/14859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking box from table"}]} +{"id": "000000115084", "images": ["AURORA/data/something/frames/132868/first.jpg", "AURORA/data/something/frames/132868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering green toy car"}]} +{"id": "000000115085", "images": ["AURORA/data/something/frames/74719/first.jpg", "AURORA/data/something/frames/74719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling towel from right to left"}]} +{"id": "000000115086", "images": ["AURORA/data/something/frames/117865/first.jpg", "AURORA/data/something/frames/117865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping yellow ball into glass bowl"}]} +{"id": "000000115087", "images": ["AURORA/data/something/frames/167671/first.jpg", "AURORA/data/something/frames/167671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering teething ring with bib"}]} +{"id": "000000115088", "images": ["AURORA/data/something/frames/8283/first.jpg", "AURORA/data/something/frames/8283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bobby pin"}]} +{"id": "000000115089", "images": ["AURORA/data/something/frames/44585/first.jpg", "AURORA/data/something/frames/44585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into jar until it overflows"}]} +{"id": "000000115090", "images": ["AURORA/data/something/frames/33311/first.jpg", "AURORA/data/something/frames/33311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tablet upright on the table, so it falls on its side"}]} +{"id": "000000115091", "images": ["AURORA/data/something/frames/32532/first.jpg", "AURORA/data/something/frames/32532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen and a bottle on the table"}]} +{"id": "000000115092", "images": ["AURORA/data/something/frames/174635/first.jpg", "AURORA/data/something/frames/174635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a pencil up completely without letting it drop down"}]} +{"id": "000000115093", "images": ["AURORA/data/something/frames/151592/first.jpg", "AURORA/data/something/frames/151592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen similar to the other pens that are already on the table"}]} +{"id": "000000115094", "images": ["AURORA/data/something/frames/97094/first.jpg", "AURORA/data/something/frames/97094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving chair towards the camera"}]} +{"id": "000000115095", "images": ["AURORA/data/something/frames/141825/first.jpg", "AURORA/data/something/frames/141825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting vial on a surface"}]} +{"id": "000000115096", "images": ["AURORA/data/something/frames/50750/first.jpg", "AURORA/data/something/frames/50750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into a computer but pulling it right out as you remove your hand"}]} +{"id": "000000115097", "images": ["AURORA/data/something/frames/201173/first.jpg", "AURORA/data/something/frames/201173/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a steel piece on the edge of steel stick so it is not supported and falls down"}]} +{"id": "000000115098", "images": ["AURORA/data/something/frames/4818/first.jpg", "AURORA/data/something/frames/4818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork among forks"}]} +{"id": "000000115099", "images": ["AURORA/data/something/frames/163869/first.jpg", "AURORA/data/something/frames/163869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a fork closer to a pencil"}]} +{"id": "000000115100", "images": ["AURORA/data/something/frames/52979/first.jpg", "AURORA/data/something/frames/52979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115101", "images": ["AURORA/data/something/frames/69679/first.jpg", "AURORA/data/something/frames/69679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000115102", "images": ["AURORA/data/something/frames/81376/first.jpg", "AURORA/data/something/frames/81376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving action figure across a surface without it falling down"}]} +{"id": "000000115103", "images": ["AURORA/data/something/frames/4752/first.jpg", "AURORA/data/something/frames/4752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115104", "images": ["AURORA/data/something/frames/73507/first.jpg", "AURORA/data/something/frames/73507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking paint tube"}]} +{"id": "000000115105", "images": ["AURORA/data/something/frames/114030/first.jpg", "AURORA/data/something/frames/114030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000115106", "images": ["AURORA/data/something/frames/143570/first.jpg", "AURORA/data/something/frames/143570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning salt shaker upside down"}]} +{"id": "000000115107", "images": ["AURORA/data/something/frames/189482/first.jpg", "AURORA/data/something/frames/189482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bottle"}]} +{"id": "000000115108", "images": ["AURORA/data/something/frames/4143/first.jpg", "AURORA/data/something/frames/4143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking candle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000115109", "images": ["AURORA/data/something/frames/163521/first.jpg", "AURORA/data/something/frames/163521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork next to knife"}]} +{"id": "000000115110", "images": ["AURORA/data/something/frames/14257/first.jpg", "AURORA/data/something/frames/14257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting pan with spoon"}]} +{"id": "000000115111", "images": ["AURORA/data/something/frames/193707/first.jpg", "AURORA/data/something/frames/193707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming traffic light"}]} +{"id": "000000115112", "images": ["AURORA/data/something/frames/204125/first.jpg", "AURORA/data/something/frames/204125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic cup on a surface"}]} +{"id": "000000115113", "images": ["AURORA/data/something/frames/16809/first.jpg", "AURORA/data/something/frames/16809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sugarpot so that it almost falls off but doesn't"}]} +{"id": "000000115114", "images": ["AURORA/data/something/frames/69064/first.jpg", "AURORA/data/something/frames/69064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from right to left"}]} +{"id": "000000115115", "images": ["AURORA/data/something/frames/46846/first.jpg", "AURORA/data/something/frames/46846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a water tank"}]} +{"id": "000000115116", "images": ["AURORA/data/something/frames/112347/first.jpg", "AURORA/data/something/frames/112347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something on a surface"}]} +{"id": "000000115117", "images": ["AURORA/data/something/frames/133411/first.jpg", "AURORA/data/something/frames/133411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering luggage tag with paper"}]} +{"id": "000000115118", "images": ["AURORA/data/something/frames/192810/first.jpg", "AURORA/data/something/frames/192810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bowl"}]} +{"id": "000000115119", "images": ["AURORA/data/something/frames/94638/first.jpg", "AURORA/data/something/frames/94638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of napkin so that it separates into two pieces"}]} +{"id": "000000115120", "images": ["AURORA/data/something/frames/138117/first.jpg", "AURORA/data/something/frames/138117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on a surface"}]} +{"id": "000000115121", "images": ["AURORA/data/something/frames/50773/first.jpg", "AURORA/data/something/frames/50773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking the water recipient so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000115122", "images": ["AURORA/data/something/frames/193163/first.jpg", "AURORA/data/something/frames/193163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle so that it almost falls off but doesn't"}]} +{"id": "000000115123", "images": ["AURORA/data/something/frames/153593/first.jpg", "AURORA/data/something/frames/153593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000115124", "images": ["AURORA/data/something/frames/144926/first.jpg", "AURORA/data/something/frames/144926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bunch of keys with pencil on it"}]} +{"id": "000000115125", "images": ["AURORA/data/something/frames/85931/first.jpg", "AURORA/data/something/frames/85931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading coins onto mirror"}]} +{"id": "000000115126", "images": ["AURORA/data/something/frames/40860/first.jpg", "AURORA/data/something/frames/40860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pin into a box"}]} +{"id": "000000115127", "images": ["AURORA/data/something/frames/155109/first.jpg", "AURORA/data/something/frames/155109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dice on table of similar items"}]} +{"id": "000000115128", "images": ["AURORA/data/something/frames/178899/first.jpg", "AURORA/data/something/frames/178899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper underneath stand"}]} +{"id": "000000115129", "images": ["AURORA/data/something/frames/217301/first.jpg", "AURORA/data/something/frames/217301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green cup from right to left"}]} +{"id": "000000115130", "images": ["AURORA/data/something/frames/51858/first.jpg", "AURORA/data/something/frames/51858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys out of mug"}]} +{"id": "000000115131", "images": ["AURORA/data/something/frames/187867/first.jpg", "AURORA/data/something/frames/187867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a screwdriver off of a box"}]} +{"id": "000000115132", "images": ["AURORA/data/something/frames/145237/first.jpg", "AURORA/data/something/frames/145237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into the sink"}]} +{"id": "000000115133", "images": ["AURORA/data/something/frames/144798/first.jpg", "AURORA/data/something/frames/144798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with scale"}]} +{"id": "000000115134", "images": ["AURORA/data/something/frames/129314/first.jpg", "AURORA/data/something/frames/129314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000115135", "images": ["AURORA/data/something/frames/146809/first.jpg", "AURORA/data/something/frames/146809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch and wallet closer to each other"}]} +{"id": "000000115136", "images": ["AURORA/data/something/frames/115794/first.jpg", "AURORA/data/something/frames/115794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from behind of cup"}]} +{"id": "000000115137", "images": ["AURORA/data/something/frames/54990/first.jpg", "AURORA/data/something/frames/54990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of onion so the stack collapses"}]} +{"id": "000000115138", "images": ["AURORA/data/something/frames/135935/first.jpg", "AURORA/data/something/frames/135935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife upright on the table, so it falls on its side"}]} +{"id": "000000115139", "images": ["AURORA/data/something/frames/44608/first.jpg", "AURORA/data/something/frames/44608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of exercise band so that it gets stretched"}]} +{"id": "000000115140", "images": ["AURORA/data/something/frames/66100/first.jpg", "AURORA/data/something/frames/66100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a mouse with a stapler"}]} +{"id": "000000115141", "images": ["AURORA/data/something/frames/180067/first.jpg", "AURORA/data/something/frames/180067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping water bottle over"}]} +{"id": "000000115142", "images": ["AURORA/data/something/frames/53968/first.jpg", "AURORA/data/something/frames/53968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sandal on a surface"}]} +{"id": "000000115143", "images": ["AURORA/data/something/frames/47953/first.jpg", "AURORA/data/something/frames/47953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening oven"}]} +{"id": "000000115144", "images": ["AURORA/data/something/frames/81261/first.jpg", "AURORA/data/something/frames/81261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing envelope into two pieces"}]} +{"id": "000000115145", "images": ["AURORA/data/something/frames/77390/first.jpg", "AURORA/data/something/frames/77390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red bottlecap from right to left"}]} +{"id": "000000115146", "images": ["AURORA/data/something/frames/42720/first.jpg", "AURORA/data/something/frames/42720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto the floor"}]} +{"id": "000000115147", "images": ["AURORA/data/something/frames/43950/first.jpg", "AURORA/data/something/frames/43950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a tub without letting it drop down"}]} +{"id": "000000115148", "images": ["AURORA/data/something/frames/59142/first.jpg", "AURORA/data/something/frames/59142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scotch tape up"}]} +{"id": "000000115149", "images": ["AURORA/data/something/frames/134311/first.jpg", "AURORA/data/something/frames/134311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cufflinks closer to a box"}]} +{"id": "000000115150", "images": ["AURORA/data/something/frames/42956/first.jpg", "AURORA/data/something/frames/42956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching keys with your camera"}]} +{"id": "000000115151", "images": ["AURORA/data/something/frames/73045/first.jpg", "AURORA/data/something/frames/73045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper towel into two pieces"}]} +{"id": "000000115152", "images": ["AURORA/data/something/frames/175372/first.jpg", "AURORA/data/something/frames/175372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a cup from right to left"}]} +{"id": "000000115153", "images": ["AURORA/data/something/frames/202114/first.jpg", "AURORA/data/something/frames/202114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coin and watch away from each other"}]} +{"id": "000000115154", "images": ["AURORA/data/something/frames/170639/first.jpg", "AURORA/data/something/frames/170639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil next to wooden stick"}]} +{"id": "000000115155", "images": ["AURORA/data/something/frames/154512/first.jpg", "AURORA/data/something/frames/154512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ink bottle from right to left"}]} +{"id": "000000115156", "images": ["AURORA/data/something/frames/71643/first.jpg", "AURORA/data/something/frames/71643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping butter off of plate"}]} +{"id": "000000115157", "images": ["AURORA/data/something/frames/186949/first.jpg", "AURORA/data/something/frames/186949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending wooden reeper until it breaks"}]} +{"id": "000000115158", "images": ["AURORA/data/something/frames/201445/first.jpg", "AURORA/data/something/frames/201445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000115159", "images": ["AURORA/data/something/frames/115277/first.jpg", "AURORA/data/something/frames/115277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping popcorn up with spoon"}]} +{"id": "000000115160", "images": ["AURORA/data/something/frames/19766/first.jpg", "AURORA/data/something/frames/19766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing plastic just a little bit"}]} +{"id": "000000115161", "images": ["AURORA/data/something/frames/71978/first.jpg", "AURORA/data/something/frames/71978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pot holder being deflected from chalkboard"}]} +{"id": "000000115162", "images": ["AURORA/data/something/frames/76768/first.jpg", "AURORA/data/something/frames/76768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle into glass"}]} +{"id": "000000115163", "images": ["AURORA/data/something/frames/140369/first.jpg", "AURORA/data/something/frames/140369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a container next to a shoe brush"}]} +{"id": "000000115164", "images": ["AURORA/data/something/frames/104152/first.jpg", "AURORA/data/something/frames/104152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen into glass"}]} +{"id": "000000115165", "images": ["AURORA/data/something/frames/4288/first.jpg", "AURORA/data/something/frames/4288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking green colour pen among many colour pens on the table"}]} +{"id": "000000115166", "images": ["AURORA/data/something/frames/137064/first.jpg", "AURORA/data/something/frames/137064/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking wafer"}]} +{"id": "000000115167", "images": ["AURORA/data/something/frames/124255/first.jpg", "AURORA/data/something/frames/124255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing something into something"}]} +{"id": "000000115168", "images": ["AURORA/data/something/frames/209151/first.jpg", "AURORA/data/something/frames/209151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing canderelbox so that it almost falls off but doesn't"}]} +{"id": "000000115169", "images": ["AURORA/data/something/frames/129580/first.jpg", "AURORA/data/something/frames/129580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing calculator with pen"}]} +{"id": "000000115170", "images": ["AURORA/data/something/frames/16505/first.jpg", "AURORA/data/something/frames/16505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the bottle and the pencil case closer to each other"}]} +{"id": "000000115171", "images": ["AURORA/data/something/frames/220825/first.jpg", "AURORA/data/something/frames/220825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a glass from right to left"}]} +{"id": "000000115172", "images": ["AURORA/data/something/frames/475/first.jpg", "AURORA/data/something/frames/475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bag up"}]} +{"id": "000000115173", "images": ["AURORA/data/something/frames/143765/first.jpg", "AURORA/data/something/frames/143765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting folder underneath desk"}]} +{"id": "000000115174", "images": ["AURORA/data/something/frames/33956/first.jpg", "AURORA/data/something/frames/33956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour coconut water into glass, but missing so it spills next to it"}]} +{"id": "000000115175", "images": ["AURORA/data/something/frames/125041/first.jpg", "AURORA/data/something/frames/125041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000115176", "images": ["AURORA/data/something/frames/93454/first.jpg", "AURORA/data/something/frames/93454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic ball and plastic ball closer to each other"}]} +{"id": "000000115177", "images": ["AURORA/data/something/frames/168282/first.jpg", "AURORA/data/something/frames/168282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lipstick up"}]} +{"id": "000000115178", "images": ["AURORA/data/something/frames/81223/first.jpg", "AURORA/data/something/frames/81223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle"}]} +{"id": "000000115179", "images": ["AURORA/data/something/frames/44930/first.jpg", "AURORA/data/something/frames/44930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto ground"}]} +{"id": "000000115180", "images": ["AURORA/data/something/frames/39318/first.jpg", "AURORA/data/something/frames/39318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000115181", "images": ["AURORA/data/something/frames/169724/first.jpg", "AURORA/data/something/frames/169724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching toy with your camera"}]} +{"id": "000000115182", "images": ["AURORA/data/something/frames/103685/first.jpg", "AURORA/data/something/frames/103685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding blanket"}]} +{"id": "000000115183", "images": ["AURORA/data/something/frames/17657/first.jpg", "AURORA/data/something/frames/17657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil next to other similar objects on the table"}]} +{"id": "000000115184", "images": ["AURORA/data/something/frames/44451/first.jpg", "AURORA/data/something/frames/44451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000115185", "images": ["AURORA/data/something/frames/17532/first.jpg", "AURORA/data/something/frames/17532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass until it overflows"}]} +{"id": "000000115186", "images": ["AURORA/data/something/frames/54391/first.jpg", "AURORA/data/something/frames/54391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving elf closer to buddha"}]} +{"id": "000000115187", "images": ["AURORA/data/something/frames/10652/first.jpg", "AURORA/data/something/frames/10652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping canister over"}]} +{"id": "000000115188", "images": ["AURORA/data/something/frames/127806/first.jpg", "AURORA/data/something/frames/127806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cycle away from the camera"}]} +{"id": "000000115189", "images": ["AURORA/data/something/frames/16589/first.jpg", "AURORA/data/something/frames/16589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) part of towel"}]} +{"id": "000000115190", "images": ["AURORA/data/something/frames/73888/first.jpg", "AURORA/data/something/frames/73888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a water bottle away from a mug"}]} +{"id": "000000115191", "images": ["AURORA/data/something/frames/179039/first.jpg", "AURORA/data/something/frames/179039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a figurine from right to left"}]} +{"id": "000000115192", "images": ["AURORA/data/something/frames/36639/first.jpg", "AURORA/data/something/frames/36639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing battery compartment of tv remote"}]} +{"id": "000000115193", "images": ["AURORA/data/something/frames/46778/first.jpg", "AURORA/data/something/frames/46778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker pen from left to right"}]} +{"id": "000000115194", "images": ["AURORA/data/something/frames/195729/first.jpg", "AURORA/data/something/frames/195729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting green cup onto duster"}]} +{"id": "000000115195", "images": ["AURORA/data/something/frames/217109/first.jpg", "AURORA/data/something/frames/217109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger cable into cell phone"}]} +{"id": "000000115196", "images": ["AURORA/data/something/frames/177650/first.jpg", "AURORA/data/something/frames/177650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching the wall with your camera"}]} +{"id": "000000115197", "images": ["AURORA/data/something/frames/11944/first.jpg", "AURORA/data/something/frames/11944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding bed sheet"}]} +{"id": "000000115198", "images": ["AURORA/data/something/frames/4903/first.jpg", "AURORA/data/something/frames/4903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging vga 9 pin plug into laptop"}]} +{"id": "000000115199", "images": ["AURORA/data/something/frames/16215/first.jpg", "AURORA/data/something/frames/16215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pulling plastic spray from right to left from right to left"}]} +{"id": "000000115200", "images": ["AURORA/data/something/frames/36238/first.jpg", "AURORA/data/something/frames/36238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000115201", "images": ["AURORA/data/something/frames/46141/first.jpg", "AURORA/data/something/frames/46141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing glass, revealing scissor behind"}]} +{"id": "000000115202", "images": ["AURORA/data/something/frames/137966/first.jpg", "AURORA/data/something/frames/137966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into plug socket but pulling it right out as you remove your hand"}]} +{"id": "000000115203", "images": ["AURORA/data/something/frames/181899/first.jpg", "AURORA/data/something/frames/181899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottle from right to left"}]} +{"id": "000000115204", "images": ["AURORA/data/something/frames/142940/first.jpg", "AURORA/data/something/frames/142940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug and canister on the table"}]} +{"id": "000000115205", "images": ["AURORA/data/something/frames/159005/first.jpg", "AURORA/data/something/frames/159005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking jacket up"}]} +{"id": "000000115206", "images": ["AURORA/data/something/frames/149508/first.jpg", "AURORA/data/something/frames/149508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch and glasses closer to each other"}]} +{"id": "000000115207", "images": ["AURORA/data/something/frames/131887/first.jpg", "AURORA/data/something/frames/131887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115208", "images": ["AURORA/data/something/frames/220496/first.jpg", "AURORA/data/something/frames/220496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115209", "images": ["AURORA/data/something/frames/118392/first.jpg", "AURORA/data/something/frames/118392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon out of drawer"}]} +{"id": "000000115210", "images": ["AURORA/data/something/frames/27776/first.jpg", "AURORA/data/something/frames/27776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging electric plug into an electric outlet but pulling it right out as you remove your hand"}]} +{"id": "000000115211", "images": ["AURORA/data/something/frames/154500/first.jpg", "AURORA/data/something/frames/154500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking chocolate bar"}]} +{"id": "000000115212", "images": ["AURORA/data/something/frames/178117/first.jpg", "AURORA/data/something/frames/178117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bowl"}]} +{"id": "000000115213", "images": ["AURORA/data/something/frames/151772/first.jpg", "AURORA/data/something/frames/151772/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a laptop"}]} +{"id": "000000115214", "images": ["AURORA/data/something/frames/122617/first.jpg", "AURORA/data/something/frames/122617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking medicine from box"}]} +{"id": "000000115215", "images": ["AURORA/data/something/frames/13057/first.jpg", "AURORA/data/something/frames/13057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering coaster with pillow"}]} +{"id": "000000115216", "images": ["AURORA/data/something/frames/149363/first.jpg", "AURORA/data/something/frames/149363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the mate onto helmet"}]} +{"id": "000000115217", "images": ["AURORA/data/something/frames/101819/first.jpg", "AURORA/data/something/frames/101819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into extension cord"}]} +{"id": "000000115218", "images": ["AURORA/data/something/frames/22355/first.jpg", "AURORA/data/something/frames/22355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on a surface"}]} +{"id": "000000115219", "images": ["AURORA/data/something/frames/89400/first.jpg", "AURORA/data/something/frames/89400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking padlock from glass jar"}]} +{"id": "000000115220", "images": ["AURORA/data/something/frames/138804/first.jpg", "AURORA/data/something/frames/138804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup across a surface without it falling down"}]} +{"id": "000000115221", "images": ["AURORA/data/something/frames/152916/first.jpg", "AURORA/data/something/frames/152916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving salt and pepper closer to each other"}]} +{"id": "000000115222", "images": ["AURORA/data/something/frames/43061/first.jpg", "AURORA/data/something/frames/43061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting binder upright on the table, so it falls on its side"}]} +{"id": "000000115223", "images": ["AURORA/data/something/frames/86277/first.jpg", "AURORA/data/something/frames/86277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of cup"}]} +{"id": "000000115224", "images": ["AURORA/data/something/frames/210726/first.jpg", "AURORA/data/something/frames/210726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors upright on the table, so it falls on its side"}]} +{"id": "000000115225", "images": ["AURORA/data/something/frames/117638/first.jpg", "AURORA/data/something/frames/117638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy car from left to right"}]} +{"id": "000000115226", "images": ["AURORA/data/something/frames/55099/first.jpg", "AURORA/data/something/frames/55099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb and usb cable closer to each other"}]} +{"id": "000000115227", "images": ["AURORA/data/something/frames/12055/first.jpg", "AURORA/data/something/frames/12055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115228", "images": ["AURORA/data/something/frames/157717/first.jpg", "AURORA/data/something/frames/157717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115229", "images": ["AURORA/data/something/frames/122816/first.jpg", "AURORA/data/something/frames/122816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving an eyeglass case towards the camera"}]} +{"id": "000000115230", "images": ["AURORA/data/something/frames/93555/first.jpg", "AURORA/data/something/frames/93555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000115231", "images": ["AURORA/data/something/frames/91902/first.jpg", "AURORA/data/something/frames/91902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet"}]} +{"id": "000000115232", "images": ["AURORA/data/something/frames/121078/first.jpg", "AURORA/data/something/frames/121078/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching glasses with your camera"}]} +{"id": "000000115233", "images": ["AURORA/data/something/frames/92119/first.jpg", "AURORA/data/something/frames/92119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering plastic knife with towel"}]} +{"id": "000000115234", "images": ["AURORA/data/something/frames/219665/first.jpg", "AURORA/data/something/frames/219665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto the little globe"}]} +{"id": "000000115235", "images": ["AURORA/data/something/frames/94090/first.jpg", "AURORA/data/something/frames/94090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery on a surface"}]} +{"id": "000000115236", "images": ["AURORA/data/something/frames/213998/first.jpg", "AURORA/data/something/frames/213998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening umbrella"}]} +{"id": "000000115237", "images": ["AURORA/data/something/frames/207295/first.jpg", "AURORA/data/something/frames/207295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a cup"}]} +{"id": "000000115238", "images": ["AURORA/data/something/frames/175726/first.jpg", "AURORA/data/something/frames/175726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to laptop"}]} +{"id": "000000115239", "images": ["AURORA/data/something/frames/87607/first.jpg", "AURORA/data/something/frames/87607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an egg upright on the table, so it falls on its side"}]} +{"id": "000000115240", "images": ["AURORA/data/something/frames/220318/first.jpg", "AURORA/data/something/frames/220318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting soft ball into box"}]} +{"id": "000000115241", "images": ["AURORA/data/something/frames/212353/first.jpg", "AURORA/data/something/frames/212353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water bottle onto wooden ball so it falls down"}]} +{"id": "000000115242", "images": ["AURORA/data/something/frames/69911/first.jpg", "AURORA/data/something/frames/69911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115243", "images": ["AURORA/data/something/frames/104745/first.jpg", "AURORA/data/something/frames/104745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of pen so that it separates into two pieces"}]} +{"id": "000000115244", "images": ["AURORA/data/something/frames/27809/first.jpg", "AURORA/data/something/frames/27809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a bird cage"}]} +{"id": "000000115245", "images": ["AURORA/data/something/frames/1484/first.jpg", "AURORA/data/something/frames/1484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of fluorescent light bulb"}]} +{"id": "000000115246", "images": ["AURORA/data/something/frames/129210/first.jpg", "AURORA/data/something/frames/129210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper and paper closer to each other"}]} +{"id": "000000115247", "images": ["AURORA/data/something/frames/64254/first.jpg", "AURORA/data/something/frames/64254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000115248", "images": ["AURORA/data/something/frames/212253/first.jpg", "AURORA/data/something/frames/212253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming black hair tie"}]} +{"id": "000000115249", "images": ["AURORA/data/something/frames/152333/first.jpg", "AURORA/data/something/frames/152333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting banana leaf"}]} +{"id": "000000115250", "images": ["AURORA/data/something/frames/120110/first.jpg", "AURORA/data/something/frames/120110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the frame of sunglasses"}]} +{"id": "000000115251", "images": ["AURORA/data/something/frames/126004/first.jpg", "AURORA/data/something/frames/126004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a coin with paper"}]} +{"id": "000000115252", "images": ["AURORA/data/something/frames/114711/first.jpg", "AURORA/data/something/frames/114711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding handout"}]} +{"id": "000000115253", "images": ["AURORA/data/something/frames/86740/first.jpg", "AURORA/data/something/frames/86740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall socket"}]} +{"id": "000000115254", "images": ["AURORA/data/something/frames/160106/first.jpg", "AURORA/data/something/frames/160106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pencil from left to right"}]} +{"id": "000000115255", "images": ["AURORA/data/something/frames/25815/first.jpg", "AURORA/data/something/frames/25815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding something"}]} +{"id": "000000115256", "images": ["AURORA/data/something/frames/175654/first.jpg", "AURORA/data/something/frames/175654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something and something away from each other"}]} +{"id": "000000115257", "images": ["AURORA/data/something/frames/191030/first.jpg", "AURORA/data/something/frames/191030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cup"}]} +{"id": "000000115258", "images": ["AURORA/data/something/frames/7818/first.jpg", "AURORA/data/something/frames/7818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing cleaner, revealing glass behind"}]} +{"id": "000000115259", "images": ["AURORA/data/something/frames/24715/first.jpg", "AURORA/data/something/frames/24715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping balls into cup"}]} +{"id": "000000115260", "images": ["AURORA/data/something/frames/72239/first.jpg", "AURORA/data/something/frames/72239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork similar to many forks on the table"}]} +{"id": "000000115261", "images": ["AURORA/data/something/frames/42754/first.jpg", "AURORA/data/something/frames/42754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb and usb away from each other"}]} +{"id": "000000115262", "images": ["AURORA/data/something/frames/213488/first.jpg", "AURORA/data/something/frames/213488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: candy colliding with candy and both are being deflected"}]} +{"id": "000000115263", "images": ["AURORA/data/something/frames/188112/first.jpg", "AURORA/data/something/frames/188112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy truck from left to right"}]} +{"id": "000000115264", "images": ["AURORA/data/something/frames/13022/first.jpg", "AURORA/data/something/frames/13022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting the counter with a knife"}]} +{"id": "000000115265", "images": ["AURORA/data/something/frames/50618/first.jpg", "AURORA/data/something/frames/50618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000115266", "images": ["AURORA/data/something/frames/34745/first.jpg", "AURORA/data/something/frames/34745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging jack into computer but pulling it right out as you remove your hand"}]} +{"id": "000000115267", "images": ["AURORA/data/something/frames/175746/first.jpg", "AURORA/data/something/frames/175746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pencil until it breaks"}]} +{"id": "000000115268", "images": ["AURORA/data/something/frames/67117/first.jpg", "AURORA/data/something/frames/67117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from plant with your camera"}]} +{"id": "000000115269", "images": ["AURORA/data/something/frames/140874/first.jpg", "AURORA/data/something/frames/140874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting washcloth"}]} +{"id": "000000115270", "images": ["AURORA/data/something/frames/211453/first.jpg", "AURORA/data/something/frames/211453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000115271", "images": ["AURORA/data/something/frames/184891/first.jpg", "AURORA/data/something/frames/184891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a phone underneath a water bottle"}]} +{"id": "000000115272", "images": ["AURORA/data/something/frames/12107/first.jpg", "AURORA/data/something/frames/12107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting soda pop can behind coffee can"}]} +{"id": "000000115273", "images": ["AURORA/data/something/frames/184538/first.jpg", "AURORA/data/something/frames/184538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000115274", "images": ["AURORA/data/something/frames/145150/first.jpg", "AURORA/data/something/frames/145150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering case with towel"}]} +{"id": "000000115275", "images": ["AURORA/data/something/frames/5085/first.jpg", "AURORA/data/something/frames/5085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box with pen"}]} +{"id": "000000115276", "images": ["AURORA/data/something/frames/85258/first.jpg", "AURORA/data/something/frames/85258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing blue lighter from right to left"}]} +{"id": "000000115277", "images": ["AURORA/data/something/frames/38117/first.jpg", "AURORA/data/something/frames/38117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pack of tissues closer to a wallet"}]} +{"id": "000000115278", "images": ["AURORA/data/something/frames/178214/first.jpg", "AURORA/data/something/frames/178214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote closer to remote"}]} +{"id": "000000115279", "images": ["AURORA/data/something/frames/192867/first.jpg", "AURORA/data/something/frames/192867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing plastic into two pieces"}]} +{"id": "000000115280", "images": ["AURORA/data/something/frames/42903/first.jpg", "AURORA/data/something/frames/42903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000115281", "images": ["AURORA/data/something/frames/54227/first.jpg", "AURORA/data/something/frames/54227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb cord into a charger but pulling it right out as you remove your hand"}]} +{"id": "000000115282", "images": ["AURORA/data/something/frames/94498/first.jpg", "AURORA/data/something/frames/94498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pillow into pillowcase"}]} +{"id": "000000115283", "images": ["AURORA/data/something/frames/206954/first.jpg", "AURORA/data/something/frames/206954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting sachet with chopstick"}]} +{"id": "000000115284", "images": ["AURORA/data/something/frames/42610/first.jpg", "AURORA/data/something/frames/42610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a phone but pulling it right out as you remove your hand"}]} +{"id": "000000115285", "images": ["AURORA/data/something/frames/191903/first.jpg", "AURORA/data/something/frames/191903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping red hair band in front of spectacle box"}]} +{"id": "000000115286", "images": ["AURORA/data/something/frames/33797/first.jpg", "AURORA/data/something/frames/33797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger cable into ipod"}]} +{"id": "000000115287", "images": ["AURORA/data/something/frames/13583/first.jpg", "AURORA/data/something/frames/13583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing dog toy so that it almost falls off but doesn't"}]} +{"id": "000000115288", "images": ["AURORA/data/something/frames/102948/first.jpg", "AURORA/data/something/frames/102948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon on a surface"}]} +{"id": "000000115289", "images": ["AURORA/data/something/frames/90011/first.jpg", "AURORA/data/something/frames/90011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cards and paper away from each other"}]} +{"id": "000000115290", "images": ["AURORA/data/something/frames/56620/first.jpg", "AURORA/data/something/frames/56620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pencils onto the floor"}]} +{"id": "000000115291", "images": ["AURORA/data/something/frames/72564/first.jpg", "AURORA/data/something/frames/72564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling bags of cookies up"}]} +{"id": "000000115292", "images": ["AURORA/data/something/frames/205079/first.jpg", "AURORA/data/something/frames/205079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing ripping napkin in half into two pieces"}]} +{"id": "000000115293", "images": ["AURORA/data/something/frames/138504/first.jpg", "AURORA/data/something/frames/138504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a diary"}]} +{"id": "000000115294", "images": ["AURORA/data/something/frames/191560/first.jpg", "AURORA/data/something/frames/191560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a socket"}]} +{"id": "000000115295", "images": ["AURORA/data/something/frames/139585/first.jpg", "AURORA/data/something/frames/139585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing change into a bag"}]} +{"id": "000000115296", "images": ["AURORA/data/something/frames/33353/first.jpg", "AURORA/data/something/frames/33353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pink bunny closer to a carrot"}]} +{"id": "000000115297", "images": ["AURORA/data/something/frames/72063/first.jpg", "AURORA/data/something/frames/72063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling boxes up"}]} +{"id": "000000115298", "images": ["AURORA/data/something/frames/185483/first.jpg", "AURORA/data/something/frames/185483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and statue closer to each other"}]} +{"id": "000000115299", "images": ["AURORA/data/something/frames/42742/first.jpg", "AURORA/data/something/frames/42742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tea light candle onto ball so it falls down"}]} +{"id": "000000115300", "images": ["AURORA/data/something/frames/218443/first.jpg", "AURORA/data/something/frames/218443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000115301", "images": ["AURORA/data/something/frames/60164/first.jpg", "AURORA/data/something/frames/60164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000115302", "images": ["AURORA/data/something/frames/113944/first.jpg", "AURORA/data/something/frames/113944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothpaste tube and toothpaste tube so they pass each other"}]} +{"id": "000000115303", "images": ["AURORA/data/something/frames/35022/first.jpg", "AURORA/data/something/frames/35022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cotton into pot"}]} +{"id": "000000115304", "images": ["AURORA/data/something/frames/35569/first.jpg", "AURORA/data/something/frames/35569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a plastic pipe so that it deforms"}]} +{"id": "000000115305", "images": ["AURORA/data/something/frames/218482/first.jpg", "AURORA/data/something/frames/218482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into phone"}]} +{"id": "000000115306", "images": ["AURORA/data/something/frames/49888/first.jpg", "AURORA/data/something/frames/49888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler with colour pen"}]} +{"id": "000000115307", "images": ["AURORA/data/something/frames/48861/first.jpg", "AURORA/data/something/frames/48861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mouse up"}]} +{"id": "000000115308", "images": ["AURORA/data/something/frames/78129/first.jpg", "AURORA/data/something/frames/78129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping sharpner next to white colour board clip"}]} +{"id": "000000115309", "images": ["AURORA/data/something/frames/10018/first.jpg", "AURORA/data/something/frames/10018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to flower pot"}]} +{"id": "000000115310", "images": ["AURORA/data/something/frames/70685/first.jpg", "AURORA/data/something/frames/70685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper heart into two pieces"}]} +{"id": "000000115311", "images": ["AURORA/data/something/frames/124924/first.jpg", "AURORA/data/something/frames/124924/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a box up completely without letting it drop down"}]} +{"id": "000000115312", "images": ["AURORA/data/something/frames/191646/first.jpg", "AURORA/data/something/frames/191646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pear onto the book"}]} +{"id": "000000115313", "images": ["AURORA/data/something/frames/181561/first.jpg", "AURORA/data/something/frames/181561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000115314", "images": ["AURORA/data/something/frames/52295/first.jpg", "AURORA/data/something/frames/52295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a sphere and a stone away from each other"}]} +{"id": "000000115315", "images": ["AURORA/data/something/frames/206638/first.jpg", "AURORA/data/something/frames/206638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving binoculars away from bracelet"}]} +{"id": "000000115316", "images": ["AURORA/data/something/frames/174814/first.jpg", "AURORA/data/something/frames/174814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming water bottle"}]} +{"id": "000000115317", "images": ["AURORA/data/something/frames/104635/first.jpg", "AURORA/data/something/frames/104635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone so that it almost falls off but doesn't"}]} +{"id": "000000115318", "images": ["AURORA/data/something/frames/127683/first.jpg", "AURORA/data/something/frames/127683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen from a desk drawer"}]} +{"id": "000000115319", "images": ["AURORA/data/something/frames/212644/first.jpg", "AURORA/data/something/frames/212644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four boxes"}]} +{"id": "000000115320", "images": ["AURORA/data/something/frames/2322/first.jpg", "AURORA/data/something/frames/2322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a chess board from right to left"}]} +{"id": "000000115321", "images": ["AURORA/data/something/frames/179755/first.jpg", "AURORA/data/something/frames/179755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tablet into container"}]} +{"id": "000000115322", "images": ["AURORA/data/something/frames/206826/first.jpg", "AURORA/data/something/frames/206826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe up"}]} +{"id": "000000115323", "images": ["AURORA/data/something/frames/216913/first.jpg", "AURORA/data/something/frames/216913/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding notebook"}]} +{"id": "000000115324", "images": ["AURORA/data/something/frames/72089/first.jpg", "AURORA/data/something/frames/72089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching clip to handle"}]} +{"id": "000000115325", "images": ["AURORA/data/something/frames/150265/first.jpg", "AURORA/data/something/frames/150265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a matchbox so that it almost falls off but doesn't"}]} +{"id": "000000115326", "images": ["AURORA/data/something/frames/188857/first.jpg", "AURORA/data/something/frames/188857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter closer to tv remote"}]} +{"id": "000000115327", "images": ["AURORA/data/something/frames/159804/first.jpg", "AURORA/data/something/frames/159804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping wallet over"}]} +{"id": "000000115328", "images": ["AURORA/data/something/frames/111066/first.jpg", "AURORA/data/something/frames/111066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a coin away from a spoon"}]} +{"id": "000000115329", "images": ["AURORA/data/something/frames/218135/first.jpg", "AURORA/data/something/frames/218135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cable into socket"}]} +{"id": "000000115330", "images": ["AURORA/data/something/frames/195877/first.jpg", "AURORA/data/something/frames/195877/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shirt into drawer"}]} +{"id": "000000115331", "images": ["AURORA/data/something/frames/12828/first.jpg", "AURORA/data/something/frames/12828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a card reader so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000115332", "images": ["AURORA/data/something/frames/152224/first.jpg", "AURORA/data/something/frames/152224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115333", "images": ["AURORA/data/something/frames/114314/first.jpg", "AURORA/data/something/frames/114314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pencil from educational kits"}]} +{"id": "000000115334", "images": ["AURORA/data/something/frames/72576/first.jpg", "AURORA/data/something/frames/72576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing hot case"}]} +{"id": "000000115335", "images": ["AURORA/data/something/frames/53650/first.jpg", "AURORA/data/something/frames/53650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: toy car being deflected from mug"}]} +{"id": "000000115336", "images": ["AURORA/data/something/frames/94371/first.jpg", "AURORA/data/something/frames/94371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bowl in front of pencil sharpener"}]} +{"id": "000000115337", "images": ["AURORA/data/something/frames/177656/first.jpg", "AURORA/data/something/frames/177656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of containers so the stack collapses"}]} +{"id": "000000115338", "images": ["AURORA/data/something/frames/30481/first.jpg", "AURORA/data/something/frames/30481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000115339", "images": ["AURORA/data/something/frames/43477/first.jpg", "AURORA/data/something/frames/43477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing table from left to right"}]} +{"id": "000000115340", "images": ["AURORA/data/something/frames/144859/first.jpg", "AURORA/data/something/frames/144859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto plants"}]} +{"id": "000000115341", "images": ["AURORA/data/something/frames/71054/first.jpg", "AURORA/data/something/frames/71054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pencil from right to left"}]} +{"id": "000000115342", "images": ["AURORA/data/something/frames/12503/first.jpg", "AURORA/data/something/frames/12503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115343", "images": ["AURORA/data/something/frames/154348/first.jpg", "AURORA/data/something/frames/154348/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cigarette into a pack of cigarettes"}]} +{"id": "000000115344", "images": ["AURORA/data/something/frames/74125/first.jpg", "AURORA/data/something/frames/74125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming traffic light"}]} +{"id": "000000115345", "images": ["AURORA/data/something/frames/63204/first.jpg", "AURORA/data/something/frames/63204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a stapler upside down"}]} +{"id": "000000115346", "images": ["AURORA/data/something/frames/23126/first.jpg", "AURORA/data/something/frames/23126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming love birds"}]} +{"id": "000000115347", "images": ["AURORA/data/something/frames/111388/first.jpg", "AURORA/data/something/frames/111388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking cup up"}]} +{"id": "000000115348", "images": ["AURORA/data/something/frames/138537/first.jpg", "AURORA/data/something/frames/138537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying electronic cigarette on the table on its side, not upright"}]} +{"id": "000000115349", "images": ["AURORA/data/something/frames/171868/first.jpg", "AURORA/data/something/frames/171868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting jarlid"}]} +{"id": "000000115350", "images": ["AURORA/data/something/frames/114543/first.jpg", "AURORA/data/something/frames/114543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors and remote control away from each other"}]} +{"id": "000000115351", "images": ["AURORA/data/something/frames/55927/first.jpg", "AURORA/data/something/frames/55927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering remote with cloth"}]} +{"id": "000000115352", "images": ["AURORA/data/something/frames/151631/first.jpg", "AURORA/data/something/frames/151631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering box with fabric"}]} +{"id": "000000115353", "images": ["AURORA/data/something/frames/205567/first.jpg", "AURORA/data/something/frames/205567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ink bottle, spanner and pen on the table"}]} +{"id": "000000115354", "images": ["AURORA/data/something/frames/47916/first.jpg", "AURORA/data/something/frames/47916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a sharpener with a box"}]} +{"id": "000000115355", "images": ["AURORA/data/something/frames/19508/first.jpg", "AURORA/data/something/frames/19508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming plant"}]} +{"id": "000000115356", "images": ["AURORA/data/something/frames/100122/first.jpg", "AURORA/data/something/frames/100122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking wiimote up"}]} +{"id": "000000115357", "images": ["AURORA/data/something/frames/60486/first.jpg", "AURORA/data/something/frames/60486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading soap onto cabinet"}]} +{"id": "000000115358", "images": ["AURORA/data/something/frames/100819/first.jpg", "AURORA/data/something/frames/100819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a lighter from right to left"}]} +{"id": "000000115359", "images": ["AURORA/data/something/frames/160246/first.jpg", "AURORA/data/something/frames/160246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a steel glass colliding with another steel glass and both are being deflected"}]} +{"id": "000000115360", "images": ["AURORA/data/something/frames/115764/first.jpg", "AURORA/data/something/frames/115764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin next to a matchbox"}]} +{"id": "000000115361", "images": ["AURORA/data/something/frames/181866/first.jpg", "AURORA/data/something/frames/181866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something on a surface"}]} +{"id": "000000115362", "images": ["AURORA/data/something/frames/84385/first.jpg", "AURORA/data/something/frames/84385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of holder"}]} +{"id": "000000115363", "images": ["AURORA/data/something/frames/10025/first.jpg", "AURORA/data/something/frames/10025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen behind box"}]} +{"id": "000000115364", "images": ["AURORA/data/something/frames/107887/first.jpg", "AURORA/data/something/frames/107887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of wood log without letting it drop down"}]} +{"id": "000000115365", "images": ["AURORA/data/something/frames/28043/first.jpg", "AURORA/data/something/frames/28043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bag upside down"}]} +{"id": "000000115366", "images": ["AURORA/data/something/frames/28140/first.jpg", "AURORA/data/something/frames/28140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mice from table"}]} +{"id": "000000115367", "images": ["AURORA/data/something/frames/169163/first.jpg", "AURORA/data/something/frames/169163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping duster next to green bowl"}]} +{"id": "000000115368", "images": ["AURORA/data/something/frames/166717/first.jpg", "AURORA/data/something/frames/166717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping scoop in front of canister"}]} +{"id": "000000115369", "images": ["AURORA/data/something/frames/108720/first.jpg", "AURORA/data/something/frames/108720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering wifi pod"}]} +{"id": "000000115370", "images": ["AURORA/data/something/frames/56254/first.jpg", "AURORA/data/something/frames/56254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing basket"}]} +{"id": "000000115371", "images": ["AURORA/data/something/frames/84500/first.jpg", "AURORA/data/something/frames/84500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000115372", "images": ["AURORA/data/something/frames/190818/first.jpg", "AURORA/data/something/frames/190818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking mobile battery so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000115373", "images": ["AURORA/data/something/frames/98897/first.jpg", "AURORA/data/something/frames/98897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking flowers up"}]} +{"id": "000000115374", "images": ["AURORA/data/something/frames/212171/first.jpg", "AURORA/data/something/frames/212171/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paint brush behind paper holder"}]} +{"id": "000000115375", "images": ["AURORA/data/something/frames/199147/first.jpg", "AURORA/data/something/frames/199147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging a piece of garlic out of rice"}]} +{"id": "000000115376", "images": ["AURORA/data/something/frames/54508/first.jpg", "AURORA/data/something/frames/54508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000115377", "images": ["AURORA/data/something/frames/21482/first.jpg", "AURORA/data/something/frames/21482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting food container with sandal"}]} +{"id": "000000115378", "images": ["AURORA/data/something/frames/203/first.jpg", "AURORA/data/something/frames/203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bowl on a surface"}]} +{"id": "000000115379", "images": ["AURORA/data/something/frames/156106/first.jpg", "AURORA/data/something/frames/156106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming rice cooker"}]} +{"id": "000000115380", "images": ["AURORA/data/something/frames/126638/first.jpg", "AURORA/data/something/frames/126638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cloth from behind of pillow"}]} +{"id": "000000115381", "images": ["AURORA/data/something/frames/32235/first.jpg", "AURORA/data/something/frames/32235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and wallet so they collide with each other"}]} +{"id": "000000115382", "images": ["AURORA/data/something/frames/174895/first.jpg", "AURORA/data/something/frames/174895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting water jug up completely without letting it drop down"}]} +{"id": "000000115383", "images": ["AURORA/data/something/frames/156949/first.jpg", "AURORA/data/something/frames/156949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000115384", "images": ["AURORA/data/something/frames/155958/first.jpg", "AURORA/data/something/frames/155958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white book marker from left to right"}]} +{"id": "000000115385", "images": ["AURORA/data/something/frames/81282/first.jpg", "AURORA/data/something/frames/81282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a green container with a yellow saucer"}]} +{"id": "000000115386", "images": ["AURORA/data/something/frames/189851/first.jpg", "AURORA/data/something/frames/189851/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering book with cloth"}]} +{"id": "000000115387", "images": ["AURORA/data/something/frames/56007/first.jpg", "AURORA/data/something/frames/56007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000115388", "images": ["AURORA/data/something/frames/66668/first.jpg", "AURORA/data/something/frames/66668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving perfume bottle away from toy"}]} +{"id": "000000115389", "images": ["AURORA/data/something/frames/51263/first.jpg", "AURORA/data/something/frames/51263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping snus into snusdisk"}]} +{"id": "000000115390", "images": ["AURORA/data/something/frames/213148/first.jpg", "AURORA/data/something/frames/213148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a shirt"}]} +{"id": "000000115391", "images": ["AURORA/data/something/frames/220735/first.jpg", "AURORA/data/something/frames/220735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a chair with a foot"}]} +{"id": "000000115392", "images": ["AURORA/data/something/frames/112775/first.jpg", "AURORA/data/something/frames/112775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming rice cooker"}]} +{"id": "000000115393", "images": ["AURORA/data/something/frames/167567/first.jpg", "AURORA/data/something/frames/167567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote down"}]} +{"id": "000000115394", "images": ["AURORA/data/something/frames/141791/first.jpg", "AURORA/data/something/frames/141791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring something out of something"}]} +{"id": "000000115395", "images": ["AURORA/data/something/frames/152602/first.jpg", "AURORA/data/something/frames/152602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring orange juice into cup"}]} +{"id": "000000115396", "images": ["AURORA/data/something/frames/178922/first.jpg", "AURORA/data/something/frames/178922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending flexible microphone so that it deforms"}]} +{"id": "000000115397", "images": ["AURORA/data/something/frames/108814/first.jpg", "AURORA/data/something/frames/108814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger up"}]} +{"id": "000000115398", "images": ["AURORA/data/something/frames/77633/first.jpg", "AURORA/data/something/frames/77633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening book"}]} +{"id": "000000115399", "images": ["AURORA/data/something/frames/82500/first.jpg", "AURORA/data/something/frames/82500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000115400", "images": ["AURORA/data/something/frames/78404/first.jpg", "AURORA/data/something/frames/78404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting iphone with sock on it"}]} +{"id": "000000115401", "images": ["AURORA/data/something/frames/93635/first.jpg", "AURORA/data/something/frames/93635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering plush doll with paper"}]} +{"id": "000000115402", "images": ["AURORA/data/something/frames/11436/first.jpg", "AURORA/data/something/frames/11436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering an apple with a bowl"}]} +{"id": "000000115403", "images": ["AURORA/data/something/frames/164404/first.jpg", "AURORA/data/something/frames/164404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bottle"}]} +{"id": "000000115404", "images": ["AURORA/data/something/frames/158423/first.jpg", "AURORA/data/something/frames/158423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cd and cd away from each other"}]} +{"id": "000000115405", "images": ["AURORA/data/something/frames/166600/first.jpg", "AURORA/data/something/frames/166600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing compressed fuel can so that it almost falls off but doesn't"}]} +{"id": "000000115406", "images": ["AURORA/data/something/frames/62634/first.jpg", "AURORA/data/something/frames/62634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling small sharpener from left to right"}]} +{"id": "000000115407", "images": ["AURORA/data/something/frames/144516/first.jpg", "AURORA/data/something/frames/144516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a light plug into a standard socket"}]} +{"id": "000000115408", "images": ["AURORA/data/something/frames/107143/first.jpg", "AURORA/data/something/frames/107143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of dice so the stack collapses"}]} +{"id": "000000115409", "images": ["AURORA/data/something/frames/186059/first.jpg", "AURORA/data/something/frames/186059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone"}]} +{"id": "000000115410", "images": ["AURORA/data/something/frames/168735/first.jpg", "AURORA/data/something/frames/168735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000115411", "images": ["AURORA/data/something/frames/136630/first.jpg", "AURORA/data/something/frames/136630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a deodorant next to a glas"}]} +{"id": "000000115412", "images": ["AURORA/data/something/frames/202946/first.jpg", "AURORA/data/something/frames/202946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a color into a container"}]} +{"id": "000000115413", "images": ["AURORA/data/something/frames/130936/first.jpg", "AURORA/data/something/frames/130936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) cloth wet until water comes out"}]} +{"id": "000000115414", "images": ["AURORA/data/something/frames/145467/first.jpg", "AURORA/data/something/frames/145467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper just a little bit"}]} +{"id": "000000115415", "images": ["AURORA/data/something/frames/70828/first.jpg", "AURORA/data/something/frames/70828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving compass up"}]} +{"id": "000000115416", "images": ["AURORA/data/something/frames/149101/first.jpg", "AURORA/data/something/frames/149101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing piller"}]} +{"id": "000000115417", "images": ["AURORA/data/something/frames/44324/first.jpg", "AURORA/data/something/frames/44324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cap"}]} +{"id": "000000115418", "images": ["AURORA/data/something/frames/94411/first.jpg", "AURORA/data/something/frames/94411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) computermaus of computermaus"}]} +{"id": "000000115419", "images": ["AURORA/data/something/frames/26824/first.jpg", "AURORA/data/something/frames/26824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bowl with book on it"}]} +{"id": "000000115420", "images": ["AURORA/data/something/frames/201048/first.jpg", "AURORA/data/something/frames/201048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet closer to coaster"}]} +{"id": "000000115421", "images": ["AURORA/data/something/frames/91016/first.jpg", "AURORA/data/something/frames/91016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green toy car and white toy car so they pass each other"}]} +{"id": "000000115422", "images": ["AURORA/data/something/frames/116414/first.jpg", "AURORA/data/something/frames/116414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing bags into another plastic bag"}]} +{"id": "000000115423", "images": ["AURORA/data/something/frames/153581/first.jpg", "AURORA/data/something/frames/153581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking brush from table"}]} +{"id": "000000115424", "images": ["AURORA/data/something/frames/185793/first.jpg", "AURORA/data/something/frames/185793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping marker off of whiteboard"}]} +{"id": "000000115425", "images": ["AURORA/data/something/frames/22957/first.jpg", "AURORA/data/something/frames/22957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with chalk on it"}]} +{"id": "000000115426", "images": ["AURORA/data/something/frames/149075/first.jpg", "AURORA/data/something/frames/149075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a wallet up"}]} +{"id": "000000115427", "images": ["AURORA/data/something/frames/6597/first.jpg", "AURORA/data/something/frames/6597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a phone but pulling it right out as you remove your hand"}]} +{"id": "000000115428", "images": ["AURORA/data/something/frames/220074/first.jpg", "AURORA/data/something/frames/220074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into laptop"}]} +{"id": "000000115429", "images": ["AURORA/data/something/frames/97455/first.jpg", "AURORA/data/something/frames/97455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a screwdriver behind a box"}]} +{"id": "000000115430", "images": ["AURORA/data/something/frames/181038/first.jpg", "AURORA/data/something/frames/181038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a piece of cloth wet until water comes out"}]} +{"id": "000000115431", "images": ["AURORA/data/something/frames/145321/first.jpg", "AURORA/data/something/frames/145321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a water bottle"}]} +{"id": "000000115432", "images": ["AURORA/data/something/frames/60451/first.jpg", "AURORA/data/something/frames/60451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall but pulling it right out as you remove your hand"}]} +{"id": "000000115433", "images": ["AURORA/data/something/frames/13950/first.jpg", "AURORA/data/something/frames/13950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle"}]} +{"id": "000000115434", "images": ["AURORA/data/something/frames/109339/first.jpg", "AURORA/data/something/frames/109339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothbrush in front of a box"}]} +{"id": "000000115435", "images": ["AURORA/data/something/frames/1942/first.jpg", "AURORA/data/something/frames/1942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tobacco into packet"}]} +{"id": "000000115436", "images": ["AURORA/data/something/frames/179153/first.jpg", "AURORA/data/something/frames/179153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup behind the mobile phone"}]} +{"id": "000000115437", "images": ["AURORA/data/something/frames/159183/first.jpg", "AURORA/data/something/frames/159183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle and candle closer to each other"}]} +{"id": "000000115438", "images": ["AURORA/data/something/frames/214331/first.jpg", "AURORA/data/something/frames/214331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone and stand away from each other"}]} +{"id": "000000115439", "images": ["AURORA/data/something/frames/2196/first.jpg", "AURORA/data/something/frames/2196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming pink water bottle"}]} +{"id": "000000115440", "images": ["AURORA/data/something/frames/59886/first.jpg", "AURORA/data/something/frames/59886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting towel"}]} +{"id": "000000115441", "images": ["AURORA/data/something/frames/153874/first.jpg", "AURORA/data/something/frames/153874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming bulb light"}]} +{"id": "000000115442", "images": ["AURORA/data/something/frames/210486/first.jpg", "AURORA/data/something/frames/210486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000115443", "images": ["AURORA/data/something/frames/127756/first.jpg", "AURORA/data/something/frames/127756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 violet colour pocket foldable knives onto white container"}]} +{"id": "000000115444", "images": ["AURORA/data/something/frames/164854/first.jpg", "AURORA/data/something/frames/164854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving jar closer to jar"}]} +{"id": "000000115445", "images": ["AURORA/data/something/frames/178974/first.jpg", "AURORA/data/something/frames/178974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a board game"}]} +{"id": "000000115446", "images": ["AURORA/data/something/frames/228/first.jpg", "AURORA/data/something/frames/228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into computer"}]} +{"id": "000000115447", "images": ["AURORA/data/something/frames/65596/first.jpg", "AURORA/data/something/frames/65596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000115448", "images": ["AURORA/data/something/frames/138651/first.jpg", "AURORA/data/something/frames/138651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking card out of box"}]} +{"id": "000000115449", "images": ["AURORA/data/something/frames/129907/first.jpg", "AURORA/data/something/frames/129907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg onto a box"}]} +{"id": "000000115450", "images": ["AURORA/data/something/frames/115971/first.jpg", "AURORA/data/something/frames/115971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing book"}]} +{"id": "000000115451", "images": ["AURORA/data/something/frames/120937/first.jpg", "AURORA/data/something/frames/120937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing orange paper just a little bit"}]} +{"id": "000000115452", "images": ["AURORA/data/something/frames/33763/first.jpg", "AURORA/data/something/frames/33763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 pebbles onto cookie box lid"}]} +{"id": "000000115453", "images": ["AURORA/data/something/frames/183965/first.jpg", "AURORA/data/something/frames/183965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a pillow upside down"}]} +{"id": "000000115454", "images": ["AURORA/data/something/frames/126010/first.jpg", "AURORA/data/something/frames/126010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a laptop"}]} +{"id": "000000115455", "images": ["AURORA/data/something/frames/12383/first.jpg", "AURORA/data/something/frames/12383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker onto rug"}]} +{"id": "000000115456", "images": ["AURORA/data/something/frames/95303/first.jpg", "AURORA/data/something/frames/95303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking tree so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000115457", "images": ["AURORA/data/something/frames/58143/first.jpg", "AURORA/data/something/frames/58143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a smartphone next to a glue stick"}]} +{"id": "000000115458", "images": ["AURORA/data/something/frames/90590/first.jpg", "AURORA/data/something/frames/90590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball point pen"}]} +{"id": "000000115459", "images": ["AURORA/data/something/frames/141045/first.jpg", "AURORA/data/something/frames/141045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen next to a pencil case"}]} +{"id": "000000115460", "images": ["AURORA/data/something/frames/26724/first.jpg", "AURORA/data/something/frames/26724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dvds with dvds"}]} +{"id": "000000115461", "images": ["AURORA/data/something/frames/139278/first.jpg", "AURORA/data/something/frames/139278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing the door"}]} +{"id": "000000115462", "images": ["AURORA/data/something/frames/207594/first.jpg", "AURORA/data/something/frames/207594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screwdriver into the case"}]} +{"id": "000000115463", "images": ["AURORA/data/something/frames/218761/first.jpg", "AURORA/data/something/frames/218761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a water canteen upright on the table"}]} +{"id": "000000115464", "images": ["AURORA/data/something/frames/140002/first.jpg", "AURORA/data/something/frames/140002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of pen without letting it drop down"}]} +{"id": "000000115465", "images": ["AURORA/data/something/frames/7408/first.jpg", "AURORA/data/something/frames/7408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a small bottle colliding with another bottle and both are being deflected"}]} +{"id": "000000115466", "images": ["AURORA/data/something/frames/213560/first.jpg", "AURORA/data/something/frames/213560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wine key upright on the table, so it falls on its side"}]} +{"id": "000000115467", "images": ["AURORA/data/something/frames/193921/first.jpg", "AURORA/data/something/frames/193921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000115468", "images": ["AURORA/data/something/frames/86333/first.jpg", "AURORA/data/something/frames/86333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mug from left to right"}]} +{"id": "000000115469", "images": ["AURORA/data/something/frames/74428/first.jpg", "AURORA/data/something/frames/74428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling hair oil from left to right"}]} +{"id": "000000115470", "images": ["AURORA/data/something/frames/65522/first.jpg", "AURORA/data/something/frames/65522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing money into wallet"}]} +{"id": "000000115471", "images": ["AURORA/data/something/frames/148962/first.jpg", "AURORA/data/something/frames/148962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping key onto floor"}]} +{"id": "000000115472", "images": ["AURORA/data/something/frames/141286/first.jpg", "AURORA/data/something/frames/141286/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting power bank, rubix cube and a musical tabala on the table"}]} +{"id": "000000115473", "images": ["AURORA/data/something/frames/127861/first.jpg", "AURORA/data/something/frames/127861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a glass with spoon"}]} +{"id": "000000115474", "images": ["AURORA/data/something/frames/185672/first.jpg", "AURORA/data/something/frames/185672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil upright on the table, so it falls on its side"}]} +{"id": "000000115475", "images": ["AURORA/data/something/frames/55129/first.jpg", "AURORA/data/something/frames/55129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling lime juice onto a bowl of tomatoes"}]} +{"id": "000000115476", "images": ["AURORA/data/something/frames/104299/first.jpg", "AURORA/data/something/frames/104299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle next to folder"}]} +{"id": "000000115477", "images": ["AURORA/data/something/frames/114782/first.jpg", "AURORA/data/something/frames/114782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching tv dish antenna with your camera"}]} +{"id": "000000115478", "images": ["AURORA/data/something/frames/132977/first.jpg", "AURORA/data/something/frames/132977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dry erase marker off of a marker board"}]} +{"id": "000000115479", "images": ["AURORA/data/something/frames/208059/first.jpg", "AURORA/data/something/frames/208059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping wallet up with hands"}]} +{"id": "000000115480", "images": ["AURORA/data/something/frames/105848/first.jpg", "AURORA/data/something/frames/105848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bucket"}]} +{"id": "000000115481", "images": ["AURORA/data/something/frames/16831/first.jpg", "AURORA/data/something/frames/16831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass up"}]} +{"id": "000000115482", "images": ["AURORA/data/something/frames/146444/first.jpg", "AURORA/data/something/frames/146444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a coaster down"}]} +{"id": "000000115483", "images": ["AURORA/data/something/frames/93316/first.jpg", "AURORA/data/something/frames/93316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stopper up"}]} +{"id": "000000115484", "images": ["AURORA/data/something/frames/201441/first.jpg", "AURORA/data/something/frames/201441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coconut water onto placemat"}]} +{"id": "000000115485", "images": ["AURORA/data/something/frames/64881/first.jpg", "AURORA/data/something/frames/64881/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a pen"}]} +{"id": "000000115486", "images": ["AURORA/data/something/frames/184721/first.jpg", "AURORA/data/something/frames/184721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black pouch bag from right to left"}]} +{"id": "000000115487", "images": ["AURORA/data/something/frames/52185/first.jpg", "AURORA/data/something/frames/52185/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering briefcase"}]} +{"id": "000000115488", "images": ["AURORA/data/something/frames/189592/first.jpg", "AURORA/data/something/frames/189592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing candle tin"}]} +{"id": "000000115489", "images": ["AURORA/data/something/frames/191302/first.jpg", "AURORA/data/something/frames/191302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone up"}]} +{"id": "000000115490", "images": ["AURORA/data/something/frames/195493/first.jpg", "AURORA/data/something/frames/195493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending folder so that it deforms"}]} +{"id": "000000115491", "images": ["AURORA/data/something/frames/138069/first.jpg", "AURORA/data/something/frames/138069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white deodorant from left to right"}]} +{"id": "000000115492", "images": ["AURORA/data/something/frames/36982/first.jpg", "AURORA/data/something/frames/36982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bicycle-bell next to door-bell"}]} +{"id": "000000115493", "images": ["AURORA/data/something/frames/33186/first.jpg", "AURORA/data/something/frames/33186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling towel from left to right"}]} +{"id": "000000115494", "images": ["AURORA/data/something/frames/143902/first.jpg", "AURORA/data/something/frames/143902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon next to a mug"}]} +{"id": "000000115495", "images": ["AURORA/data/something/frames/153769/first.jpg", "AURORA/data/something/frames/153769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing earring from right to left"}]} +{"id": "000000115496", "images": ["AURORA/data/something/frames/80552/first.jpg", "AURORA/data/something/frames/80552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cycle towards the camera"}]} +{"id": "000000115497", "images": ["AURORA/data/something/frames/14875/first.jpg", "AURORA/data/something/frames/14875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching something to something"}]} +{"id": "000000115498", "images": ["AURORA/data/something/frames/61770/first.jpg", "AURORA/data/something/frames/61770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a sharpener next to an envelope"}]} +{"id": "000000115499", "images": ["AURORA/data/something/frames/89328/first.jpg", "AURORA/data/something/frames/89328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening piano"}]} +{"id": "000000115500", "images": ["AURORA/data/something/frames/15441/first.jpg", "AURORA/data/something/frames/15441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a pendrive to a laptop"}]} +{"id": "000000115501", "images": ["AURORA/data/something/frames/82952/first.jpg", "AURORA/data/something/frames/82952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping game onto paper"}]} +{"id": "000000115502", "images": ["AURORA/data/something/frames/154002/first.jpg", "AURORA/data/something/frames/154002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle away from the camera"}]} +{"id": "000000115503", "images": ["AURORA/data/something/frames/122108/first.jpg", "AURORA/data/something/frames/122108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking the key out of the glass"}]} +{"id": "000000115504", "images": ["AURORA/data/something/frames/203130/first.jpg", "AURORA/data/something/frames/203130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a toy frog to a white board"}]} +{"id": "000000115505", "images": ["AURORA/data/something/frames/207937/first.jpg", "AURORA/data/something/frames/207937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pen out of a shoe"}]} +{"id": "000000115506", "images": ["AURORA/data/something/frames/119827/first.jpg", "AURORA/data/something/frames/119827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a coupon into two pieces"}]} +{"id": "000000115507", "images": ["AURORA/data/something/frames/92486/first.jpg", "AURORA/data/something/frames/92486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pillow"}]} +{"id": "000000115508", "images": ["AURORA/data/something/frames/86284/first.jpg", "AURORA/data/something/frames/86284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tube into box"}]} +{"id": "000000115509", "images": ["AURORA/data/something/frames/15031/first.jpg", "AURORA/data/something/frames/15031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass into bowl"}]} +{"id": "000000115510", "images": ["AURORA/data/something/frames/147276/first.jpg", "AURORA/data/something/frames/147276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a toy car and a fridge magnet closer to each other"}]} +{"id": "000000115511", "images": ["AURORA/data/something/frames/182162/first.jpg", "AURORA/data/something/frames/182162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bra onto bed"}]} +{"id": "000000115512", "images": ["AURORA/data/something/frames/126188/first.jpg", "AURORA/data/something/frames/126188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pencil"}]} +{"id": "000000115513", "images": ["AURORA/data/something/frames/19571/first.jpg", "AURORA/data/something/frames/19571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into pan"}]} +{"id": "000000115514", "images": ["AURORA/data/something/frames/202641/first.jpg", "AURORA/data/something/frames/202641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green bowl from left to right"}]} +{"id": "000000115515", "images": ["AURORA/data/something/frames/53427/first.jpg", "AURORA/data/something/frames/53427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming globe"}]} +{"id": "000000115516", "images": ["AURORA/data/something/frames/120525/first.jpg", "AURORA/data/something/frames/120525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000115517", "images": ["AURORA/data/something/frames/124082/first.jpg", "AURORA/data/something/frames/124082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming chair"}]} +{"id": "000000115518", "images": ["AURORA/data/something/frames/155379/first.jpg", "AURORA/data/something/frames/155379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling plates up"}]} +{"id": "000000115519", "images": ["AURORA/data/something/frames/83394/first.jpg", "AURORA/data/something/frames/83394/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000115520", "images": ["AURORA/data/something/frames/138819/first.jpg", "AURORA/data/something/frames/138819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming iron"}]} +{"id": "000000115521", "images": ["AURORA/data/something/frames/156724/first.jpg", "AURORA/data/something/frames/156724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing bags into plastic bag"}]} +{"id": "000000115522", "images": ["AURORA/data/something/frames/28235/first.jpg", "AURORA/data/something/frames/28235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a pin"}]} +{"id": "000000115523", "images": ["AURORA/data/something/frames/209702/first.jpg", "AURORA/data/something/frames/209702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and jug closer to each other"}]} +{"id": "000000115524", "images": ["AURORA/data/something/frames/40175/first.jpg", "AURORA/data/something/frames/40175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a screwdriver on it"}]} +{"id": "000000115525", "images": ["AURORA/data/something/frames/181958/first.jpg", "AURORA/data/something/frames/181958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching rice cooker with your camera"}]} +{"id": "000000115526", "images": ["AURORA/data/something/frames/152807/first.jpg", "AURORA/data/something/frames/152807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shirt into bag"}]} +{"id": "000000115527", "images": ["AURORA/data/something/frames/43069/first.jpg", "AURORA/data/something/frames/43069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box in front of a cup"}]} +{"id": "000000115528", "images": ["AURORA/data/something/frames/219576/first.jpg", "AURORA/data/something/frames/219576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending toothpick until it breaks"}]} +{"id": "000000115529", "images": ["AURORA/data/something/frames/142086/first.jpg", "AURORA/data/something/frames/142086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys into bag"}]} +{"id": "000000115530", "images": ["AURORA/data/something/frames/68409/first.jpg", "AURORA/data/something/frames/68409/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring orange juice into a cup"}]} +{"id": "000000115531", "images": ["AURORA/data/something/frames/35727/first.jpg", "AURORA/data/something/frames/35727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening refridgerator"}]} +{"id": "000000115532", "images": ["AURORA/data/something/frames/56453/first.jpg", "AURORA/data/something/frames/56453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler up"}]} +{"id": "000000115533", "images": ["AURORA/data/something/frames/179758/first.jpg", "AURORA/data/something/frames/179758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming flower"}]} +{"id": "000000115534", "images": ["AURORA/data/something/frames/110654/first.jpg", "AURORA/data/something/frames/110654/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping stopper onto sink"}]} +{"id": "000000115535", "images": ["AURORA/data/something/frames/128039/first.jpg", "AURORA/data/something/frames/128039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a table fan with a scissor"}]} +{"id": "000000115536", "images": ["AURORA/data/something/frames/52285/first.jpg", "AURORA/data/something/frames/52285/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking five xbox games"}]} +{"id": "000000115537", "images": ["AURORA/data/something/frames/23695/first.jpg", "AURORA/data/something/frames/23695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming one tea light candle"}]} +{"id": "000000115538", "images": ["AURORA/data/something/frames/15445/first.jpg", "AURORA/data/something/frames/15445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting pepper grinder"}]} +{"id": "000000115539", "images": ["AURORA/data/something/frames/209176/first.jpg", "AURORA/data/something/frames/209176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting punching machine up completely without letting it drop down"}]} +{"id": "000000115540", "images": ["AURORA/data/something/frames/199029/first.jpg", "AURORA/data/something/frames/199029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into floor"}]} +{"id": "000000115541", "images": ["AURORA/data/something/frames/81777/first.jpg", "AURORA/data/something/frames/81777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a peg being deflected from a cup"}]} +{"id": "000000115542", "images": ["AURORA/data/something/frames/179093/first.jpg", "AURORA/data/something/frames/179093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115543", "images": ["AURORA/data/something/frames/16914/first.jpg", "AURORA/data/something/frames/16914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork on a surface"}]} +{"id": "000000115544", "images": ["AURORA/data/something/frames/117126/first.jpg", "AURORA/data/something/frames/117126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of containers without the stack collapsing"}]} +{"id": "000000115545", "images": ["AURORA/data/something/frames/9634/first.jpg", "AURORA/data/something/frames/9634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a peg upright on the table, so it falls on its side"}]} +{"id": "000000115546", "images": ["AURORA/data/something/frames/99700/first.jpg", "AURORA/data/something/frames/99700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting punching machine and stapler on the table"}]} +{"id": "000000115547", "images": ["AURORA/data/something/frames/196678/first.jpg", "AURORA/data/something/frames/196678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning shot glass upside down"}]} +{"id": "000000115548", "images": ["AURORA/data/something/frames/94289/first.jpg", "AURORA/data/something/frames/94289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into power outlet"}]} +{"id": "000000115549", "images": ["AURORA/data/something/frames/169728/first.jpg", "AURORA/data/something/frames/169728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse and remote closer to each other"}]} +{"id": "000000115550", "images": ["AURORA/data/something/frames/218384/first.jpg", "AURORA/data/something/frames/218384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon into glass"}]} +{"id": "000000115551", "images": ["AURORA/data/something/frames/66505/first.jpg", "AURORA/data/something/frames/66505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a notebook"}]} +{"id": "000000115552", "images": ["AURORA/data/something/frames/13689/first.jpg", "AURORA/data/something/frames/13689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000115553", "images": ["AURORA/data/something/frames/44104/first.jpg", "AURORA/data/something/frames/44104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000115554", "images": ["AURORA/data/something/frames/87459/first.jpg", "AURORA/data/something/frames/87459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box and comb away from each other"}]} +{"id": "000000115555", "images": ["AURORA/data/something/frames/62501/first.jpg", "AURORA/data/something/frames/62501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the side of a cube"}]} +{"id": "000000115556", "images": ["AURORA/data/something/frames/166231/first.jpg", "AURORA/data/something/frames/166231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing tennisball behind"}]} +{"id": "000000115557", "images": ["AURORA/data/something/frames/3552/first.jpg", "AURORA/data/something/frames/3552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking scissors from chair"}]} +{"id": "000000115558", "images": ["AURORA/data/something/frames/91176/first.jpg", "AURORA/data/something/frames/91176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bottle cap until it overflows"}]} +{"id": "000000115559", "images": ["AURORA/data/something/frames/18048/first.jpg", "AURORA/data/something/frames/18048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping tea up with teacup"}]} +{"id": "000000115560", "images": ["AURORA/data/something/frames/148294/first.jpg", "AURORA/data/something/frames/148294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic cover similar to other plastic covers that are already on the table]"}]} +{"id": "000000115561", "images": ["AURORA/data/something/frames/100516/first.jpg", "AURORA/data/something/frames/100516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red watch case from left to right"}]} +{"id": "000000115562", "images": ["AURORA/data/something/frames/57505/first.jpg", "AURORA/data/something/frames/57505/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a book upside down"}]} +{"id": "000000115563", "images": ["AURORA/data/something/frames/84387/first.jpg", "AURORA/data/something/frames/84387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking broom from floor"}]} +{"id": "000000115564", "images": ["AURORA/data/something/frames/20005/first.jpg", "AURORA/data/something/frames/20005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000115565", "images": ["AURORA/data/something/frames/177365/first.jpg", "AURORA/data/something/frames/177365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening car door"}]} +{"id": "000000115566", "images": ["AURORA/data/something/frames/153539/first.jpg", "AURORA/data/something/frames/153539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115567", "images": ["AURORA/data/something/frames/88175/first.jpg", "AURORA/data/something/frames/88175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sweet packet into two pieces"}]} +{"id": "000000115568", "images": ["AURORA/data/something/frames/210714/first.jpg", "AURORA/data/something/frames/210714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger down"}]} +{"id": "000000115569", "images": ["AURORA/data/something/frames/33539/first.jpg", "AURORA/data/something/frames/33539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling swab out of pot"}]} +{"id": "000000115570", "images": ["AURORA/data/something/frames/11755/first.jpg", "AURORA/data/something/frames/11755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding something"}]} +{"id": "000000115571", "images": ["AURORA/data/something/frames/73395/first.jpg", "AURORA/data/something/frames/73395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming house"}]} +{"id": "000000115572", "images": ["AURORA/data/something/frames/194882/first.jpg", "AURORA/data/something/frames/194882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting table with bat"}]} +{"id": "000000115573", "images": ["AURORA/data/something/frames/92283/first.jpg", "AURORA/data/something/frames/92283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses on a surface"}]} +{"id": "000000115574", "images": ["AURORA/data/something/frames/129145/first.jpg", "AURORA/data/something/frames/129145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon into a basket"}]} +{"id": "000000115575", "images": ["AURORA/data/something/frames/6565/first.jpg", "AURORA/data/something/frames/6565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a plastic bottle down"}]} +{"id": "000000115576", "images": ["AURORA/data/something/frames/2799/first.jpg", "AURORA/data/something/frames/2799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto table"}]} +{"id": "000000115577", "images": ["AURORA/data/something/frames/37952/first.jpg", "AURORA/data/something/frames/37952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sleeping bag into its storage pocket"}]} +{"id": "000000115578", "images": ["AURORA/data/something/frames/166890/first.jpg", "AURORA/data/something/frames/166890/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cup next to cup"}]} +{"id": "000000115579", "images": ["AURORA/data/something/frames/173179/first.jpg", "AURORA/data/something/frames/173179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass from table"}]} +{"id": "000000115580", "images": ["AURORA/data/something/frames/132594/first.jpg", "AURORA/data/something/frames/132594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering apple with towel"}]} +{"id": "000000115581", "images": ["AURORA/data/something/frames/6921/first.jpg", "AURORA/data/something/frames/6921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking three boxes"}]} +{"id": "000000115582", "images": ["AURORA/data/something/frames/119790/first.jpg", "AURORA/data/something/frames/119790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper next to headphones"}]} +{"id": "000000115583", "images": ["AURORA/data/something/frames/71761/first.jpg", "AURORA/data/something/frames/71761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a bowl"}]} +{"id": "000000115584", "images": ["AURORA/data/something/frames/154864/first.jpg", "AURORA/data/something/frames/154864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115585", "images": ["AURORA/data/something/frames/127334/first.jpg", "AURORA/data/something/frames/127334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spoon out of a saucepan"}]} +{"id": "000000115586", "images": ["AURORA/data/something/frames/12693/first.jpg", "AURORA/data/something/frames/12693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling chair from left to right"}]} +{"id": "000000115587", "images": ["AURORA/data/something/frames/203203/first.jpg", "AURORA/data/something/frames/203203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into switchboard"}]} +{"id": "000000115588", "images": ["AURORA/data/something/frames/158053/first.jpg", "AURORA/data/something/frames/158053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plate and glass on the table"}]} +{"id": "000000115589", "images": ["AURORA/data/something/frames/32060/first.jpg", "AURORA/data/something/frames/32060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) a part of post it notes"}]} +{"id": "000000115590", "images": ["AURORA/data/something/frames/86680/first.jpg", "AURORA/data/something/frames/86680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing newspaper just a little bit"}]} +{"id": "000000115591", "images": ["AURORA/data/something/frames/151454/first.jpg", "AURORA/data/something/frames/151454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink water bottle from left to right"}]} +{"id": "000000115592", "images": ["AURORA/data/something/frames/164180/first.jpg", "AURORA/data/something/frames/164180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a ruler and a wallet on the table"}]} +{"id": "000000115593", "images": ["AURORA/data/something/frames/162925/first.jpg", "AURORA/data/something/frames/162925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115594", "images": ["AURORA/data/something/frames/65371/first.jpg", "AURORA/data/something/frames/65371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking three coins"}]} +{"id": "000000115595", "images": ["AURORA/data/something/frames/97459/first.jpg", "AURORA/data/something/frames/97459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a doll"}]} +{"id": "000000115596", "images": ["AURORA/data/something/frames/106405/first.jpg", "AURORA/data/something/frames/106405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper bag just a little bit"}]} +{"id": "000000115597", "images": ["AURORA/data/something/frames/176052/first.jpg", "AURORA/data/something/frames/176052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb cable closer to usb"}]} +{"id": "000000115598", "images": ["AURORA/data/something/frames/473/first.jpg", "AURORA/data/something/frames/473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto mug"}]} +{"id": "000000115599", "images": ["AURORA/data/something/frames/150353/first.jpg", "AURORA/data/something/frames/150353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping coffee grounds up with spoon"}]} +{"id": "000000115600", "images": ["AURORA/data/something/frames/69578/first.jpg", "AURORA/data/something/frames/69578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a lid so that it almost falls off but doesn't"}]} +{"id": "000000115601", "images": ["AURORA/data/something/frames/6977/first.jpg", "AURORA/data/something/frames/6977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a phone onto a folder"}]} +{"id": "000000115602", "images": ["AURORA/data/something/frames/62609/first.jpg", "AURORA/data/something/frames/62609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mouthwash bottle upside down"}]} +{"id": "000000115603", "images": ["AURORA/data/something/frames/32167/first.jpg", "AURORA/data/something/frames/32167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottlecap from left to right"}]} +{"id": "000000115604", "images": ["AURORA/data/something/frames/42331/first.jpg", "AURORA/data/something/frames/42331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ring behind pot"}]} +{"id": "000000115605", "images": ["AURORA/data/something/frames/144820/first.jpg", "AURORA/data/something/frames/144820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spanner down"}]} +{"id": "000000115606", "images": ["AURORA/data/something/frames/79557/first.jpg", "AURORA/data/something/frames/79557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a computer charger into a wall outlet"}]} +{"id": "000000115607", "images": ["AURORA/data/something/frames/132080/first.jpg", "AURORA/data/something/frames/132080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jam behind peanut butter"}]} +{"id": "000000115608", "images": ["AURORA/data/something/frames/220647/first.jpg", "AURORA/data/something/frames/220647/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle with a box"}]} +{"id": "000000115609", "images": ["AURORA/data/something/frames/29625/first.jpg", "AURORA/data/something/frames/29625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking poking chapstick so it falls so that it falls over"}]} +{"id": "000000115610", "images": ["AURORA/data/something/frames/14227/first.jpg", "AURORA/data/something/frames/14227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mouse on a surface"}]} +{"id": "000000115611", "images": ["AURORA/data/something/frames/51220/first.jpg", "AURORA/data/something/frames/51220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of shoe without letting it drop down"}]} +{"id": "000000115612", "images": ["AURORA/data/something/frames/89639/first.jpg", "AURORA/data/something/frames/89639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000115613", "images": ["AURORA/data/something/frames/203224/first.jpg", "AURORA/data/something/frames/203224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone cover with cloth"}]} +{"id": "000000115614", "images": ["AURORA/data/something/frames/74945/first.jpg", "AURORA/data/something/frames/74945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking tape up"}]} +{"id": "000000115615", "images": ["AURORA/data/something/frames/71501/first.jpg", "AURORA/data/something/frames/71501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering board clip with cookie box lid"}]} +{"id": "000000115616", "images": ["AURORA/data/something/frames/119103/first.jpg", "AURORA/data/something/frames/119103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of crayon"}]} +{"id": "000000115617", "images": ["AURORA/data/something/frames/194513/first.jpg", "AURORA/data/something/frames/194513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle of lotion on a surface"}]} +{"id": "000000115618", "images": ["AURORA/data/something/frames/4570/first.jpg", "AURORA/data/something/frames/4570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a picture underneath a glass"}]} +{"id": "000000115619", "images": ["AURORA/data/something/frames/12724/first.jpg", "AURORA/data/something/frames/12724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving garlic presser away from the camera"}]} +{"id": "000000115620", "images": ["AURORA/data/something/frames/100007/first.jpg", "AURORA/data/something/frames/100007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming park"}]} +{"id": "000000115621", "images": ["AURORA/data/something/frames/60290/first.jpg", "AURORA/data/something/frames/60290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic mug on a surface"}]} +{"id": "000000115622", "images": ["AURORA/data/something/frames/218804/first.jpg", "AURORA/data/something/frames/218804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering screwdriver with shirt"}]} +{"id": "000000115623", "images": ["AURORA/data/something/frames/16999/first.jpg", "AURORA/data/something/frames/16999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking glasses up"}]} +{"id": "000000115624", "images": ["AURORA/data/something/frames/26996/first.jpg", "AURORA/data/something/frames/26996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into the dryer"}]} +{"id": "000000115625", "images": ["AURORA/data/something/frames/57327/first.jpg", "AURORA/data/something/frames/57327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115626", "images": ["AURORA/data/something/frames/85782/first.jpg", "AURORA/data/something/frames/85782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something similar to color tube"}]} +{"id": "000000115627", "images": ["AURORA/data/something/frames/128292/first.jpg", "AURORA/data/something/frames/128292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning toy link upside down"}]} +{"id": "000000115628", "images": ["AURORA/data/something/frames/4367/first.jpg", "AURORA/data/something/frames/4367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a drawer"}]} +{"id": "000000115629", "images": ["AURORA/data/something/frames/159419/first.jpg", "AURORA/data/something/frames/159419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a hard drive of a server"}]} +{"id": "000000115630", "images": ["AURORA/data/something/frames/126580/first.jpg", "AURORA/data/something/frames/126580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a coin from a bowl"}]} +{"id": "000000115631", "images": ["AURORA/data/something/frames/73787/first.jpg", "AURORA/data/something/frames/73787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting firm plastic up completely without letting it drop down"}]} +{"id": "000000115632", "images": ["AURORA/data/something/frames/207565/first.jpg", "AURORA/data/something/frames/207565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 candles"}]} +{"id": "000000115633", "images": ["AURORA/data/something/frames/120453/first.jpg", "AURORA/data/something/frames/120453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a watering pipe"}]} +{"id": "000000115634", "images": ["AURORA/data/something/frames/91402/first.jpg", "AURORA/data/something/frames/91402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and bowl away from each other"}]} +{"id": "000000115635", "images": ["AURORA/data/something/frames/187794/first.jpg", "AURORA/data/something/frames/187794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cloth, battery and packing tape on the table"}]} +{"id": "000000115636", "images": ["AURORA/data/something/frames/115479/first.jpg", "AURORA/data/something/frames/115479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into hair gel"}]} +{"id": "000000115637", "images": ["AURORA/data/something/frames/109472/first.jpg", "AURORA/data/something/frames/109472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall outlet"}]} +{"id": "000000115638", "images": ["AURORA/data/something/frames/217753/first.jpg", "AURORA/data/something/frames/217753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall"}]} +{"id": "000000115639", "images": ["AURORA/data/something/frames/209716/first.jpg", "AURORA/data/something/frames/209716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from right to left"}]} +{"id": "000000115640", "images": ["AURORA/data/something/frames/156164/first.jpg", "AURORA/data/something/frames/156164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a cardboard container"}]} +{"id": "000000115641", "images": ["AURORA/data/something/frames/146236/first.jpg", "AURORA/data/something/frames/146236/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000115642", "images": ["AURORA/data/something/frames/64277/first.jpg", "AURORA/data/something/frames/64277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000115643", "images": ["AURORA/data/something/frames/28699/first.jpg", "AURORA/data/something/frames/28699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a ball colliding with a ball and both are being deflected"}]} +{"id": "000000115644", "images": ["AURORA/data/something/frames/45515/first.jpg", "AURORA/data/something/frames/45515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping envelopes next to candle"}]} +{"id": "000000115645", "images": ["AURORA/data/something/frames/218831/first.jpg", "AURORA/data/something/frames/218831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb into cup"}]} +{"id": "000000115646", "images": ["AURORA/data/something/frames/218317/first.jpg", "AURORA/data/something/frames/218317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tearing paper into two pieces"}]} +{"id": "000000115647", "images": ["AURORA/data/something/frames/81964/first.jpg", "AURORA/data/something/frames/81964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a head phones cable into an ipad"}]} +{"id": "000000115648", "images": ["AURORA/data/something/frames/152011/first.jpg", "AURORA/data/something/frames/152011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a cup on the table on its side, not upright"}]} +{"id": "000000115649", "images": ["AURORA/data/something/frames/50154/first.jpg", "AURORA/data/something/frames/50154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four books"}]} +{"id": "000000115650", "images": ["AURORA/data/something/frames/115762/first.jpg", "AURORA/data/something/frames/115762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening diary"}]} +{"id": "000000115651", "images": ["AURORA/data/something/frames/47975/first.jpg", "AURORA/data/something/frames/47975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening water bottle"}]} +{"id": "000000115652", "images": ["AURORA/data/something/frames/27192/first.jpg", "AURORA/data/something/frames/27192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cotton into toy duck"}]} +{"id": "000000115653", "images": ["AURORA/data/something/frames/1077/first.jpg", "AURORA/data/something/frames/1077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchstick into a bowl"}]} +{"id": "000000115654", "images": ["AURORA/data/something/frames/57796/first.jpg", "AURORA/data/something/frames/57796/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen next to box"}]} +{"id": "000000115655", "images": ["AURORA/data/something/frames/132509/first.jpg", "AURORA/data/something/frames/132509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone"}]} +{"id": "000000115656", "images": ["AURORA/data/something/frames/197582/first.jpg", "AURORA/data/something/frames/197582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing window"}]} +{"id": "000000115657", "images": ["AURORA/data/something/frames/20943/first.jpg", "AURORA/data/something/frames/20943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning small book upside down"}]} +{"id": "000000115658", "images": ["AURORA/data/something/frames/58339/first.jpg", "AURORA/data/something/frames/58339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a glass"}]} +{"id": "000000115659", "images": ["AURORA/data/something/frames/133154/first.jpg", "AURORA/data/something/frames/133154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning water botle upside down"}]} +{"id": "000000115660", "images": ["AURORA/data/something/frames/194291/first.jpg", "AURORA/data/something/frames/194291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115661", "images": ["AURORA/data/something/frames/156292/first.jpg", "AURORA/data/something/frames/156292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling emblem from left to right"}]} +{"id": "000000115662", "images": ["AURORA/data/something/frames/23209/first.jpg", "AURORA/data/something/frames/23209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115663", "images": ["AURORA/data/something/frames/132011/first.jpg", "AURORA/data/something/frames/132011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115664", "images": ["AURORA/data/something/frames/161610/first.jpg", "AURORA/data/something/frames/161610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug in front of clip"}]} +{"id": "000000115665", "images": ["AURORA/data/something/frames/103127/first.jpg", "AURORA/data/something/frames/103127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000115666", "images": ["AURORA/data/something/frames/127812/first.jpg", "AURORA/data/something/frames/127812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall plug"}]} +{"id": "000000115667", "images": ["AURORA/data/something/frames/123079/first.jpg", "AURORA/data/something/frames/123079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking bottle up"}]} +{"id": "000000115668", "images": ["AURORA/data/something/frames/184347/first.jpg", "AURORA/data/something/frames/184347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering mobile"}]} +{"id": "000000115669", "images": ["AURORA/data/something/frames/42048/first.jpg", "AURORA/data/something/frames/42048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering matchbox"}]} +{"id": "000000115670", "images": ["AURORA/data/something/frames/127270/first.jpg", "AURORA/data/something/frames/127270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000115671", "images": ["AURORA/data/something/frames/217193/first.jpg", "AURORA/data/something/frames/217193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to bucket"}]} +{"id": "000000115672", "images": ["AURORA/data/something/frames/145526/first.jpg", "AURORA/data/something/frames/145526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spoon colliding with spoon and both are being deflected"}]} +{"id": "000000115673", "images": ["AURORA/data/something/frames/214510/first.jpg", "AURORA/data/something/frames/214510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging toaster into wall outlet"}]} +{"id": "000000115674", "images": ["AURORA/data/something/frames/76799/first.jpg", "AURORA/data/something/frames/76799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding 50 peso bill"}]} +{"id": "000000115675", "images": ["AURORA/data/something/frames/212740/first.jpg", "AURORA/data/something/frames/212740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote, cream tube and candle on the table"}]} +{"id": "000000115676", "images": ["AURORA/data/something/frames/135075/first.jpg", "AURORA/data/something/frames/135075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ball being deflected from cup"}]} +{"id": "000000115677", "images": ["AURORA/data/something/frames/159132/first.jpg", "AURORA/data/something/frames/159132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of wall"}]} +{"id": "000000115678", "images": ["AURORA/data/something/frames/28397/first.jpg", "AURORA/data/something/frames/28397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving game up"}]} +{"id": "000000115679", "images": ["AURORA/data/something/frames/80494/first.jpg", "AURORA/data/something/frames/80494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of paper"}]} +{"id": "000000115680", "images": ["AURORA/data/something/frames/129306/first.jpg", "AURORA/data/something/frames/129306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a marker off of books"}]} +{"id": "000000115681", "images": ["AURORA/data/something/frames/130688/first.jpg", "AURORA/data/something/frames/130688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone with hand"}]} +{"id": "000000115682", "images": ["AURORA/data/something/frames/166547/first.jpg", "AURORA/data/something/frames/166547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into bowl, but missing so it spills next to it"}]} +{"id": "000000115683", "images": ["AURORA/data/something/frames/91042/first.jpg", "AURORA/data/something/frames/91042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening wallet"}]} +{"id": "000000115684", "images": ["AURORA/data/something/frames/215601/first.jpg", "AURORA/data/something/frames/215601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting dishwashing liquid and cup on the table"}]} +{"id": "000000115685", "images": ["AURORA/data/something/frames/67672/first.jpg", "AURORA/data/something/frames/67672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming sugar container"}]} +{"id": "000000115686", "images": ["AURORA/data/something/frames/148768/first.jpg", "AURORA/data/something/frames/148768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) wet towel wet until water comes out"}]} +{"id": "000000115687", "images": ["AURORA/data/something/frames/196781/first.jpg", "AURORA/data/something/frames/196781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tape"}]} +{"id": "000000115688", "images": ["AURORA/data/something/frames/206019/first.jpg", "AURORA/data/something/frames/206019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a sweet on it but not enough for it to slide down"}]} +{"id": "000000115689", "images": ["AURORA/data/something/frames/130384/first.jpg", "AURORA/data/something/frames/130384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000115690", "images": ["AURORA/data/something/frames/29278/first.jpg", "AURORA/data/something/frames/29278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mousepad underneath mouse"}]} +{"id": "000000115691", "images": ["AURORA/data/something/frames/26322/first.jpg", "AURORA/data/something/frames/26322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of remote without letting it drop down"}]} +{"id": "000000115692", "images": ["AURORA/data/something/frames/171717/first.jpg", "AURORA/data/something/frames/171717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a notecard just a little bit"}]} +{"id": "000000115693", "images": ["AURORA/data/something/frames/67039/first.jpg", "AURORA/data/something/frames/67039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing water bottle"}]} +{"id": "000000115694", "images": ["AURORA/data/something/frames/193838/first.jpg", "AURORA/data/something/frames/193838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing newspaper into a jar"}]} +{"id": "000000115695", "images": ["AURORA/data/something/frames/108777/first.jpg", "AURORA/data/something/frames/108777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a notecard into two pieces"}]} +{"id": "000000115696", "images": ["AURORA/data/something/frames/93233/first.jpg", "AURORA/data/something/frames/93233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000115697", "images": ["AURORA/data/something/frames/45293/first.jpg", "AURORA/data/something/frames/45293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a nickle with a coaster"}]} +{"id": "000000115698", "images": ["AURORA/data/something/frames/160093/first.jpg", "AURORA/data/something/frames/160093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a glass closer to each other"}]} +{"id": "000000115699", "images": ["AURORA/data/something/frames/148517/first.jpg", "AURORA/data/something/frames/148517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling containers up"}]} +{"id": "000000115700", "images": ["AURORA/data/something/frames/49748/first.jpg", "AURORA/data/something/frames/49748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115701", "images": ["AURORA/data/something/frames/136949/first.jpg", "AURORA/data/something/frames/136949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing plastic cap, revealing pebble behind"}]} +{"id": "000000115702", "images": ["AURORA/data/something/frames/188756/first.jpg", "AURORA/data/something/frames/188756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rock and rock closer to each other"}]} +{"id": "000000115703", "images": ["AURORA/data/something/frames/144837/first.jpg", "AURORA/data/something/frames/144837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a toothbrus so that it falls over"}]} +{"id": "000000115704", "images": ["AURORA/data/something/frames/72793/first.jpg", "AURORA/data/something/frames/72793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking jacket out of rack"}]} +{"id": "000000115705", "images": ["AURORA/data/something/frames/204292/first.jpg", "AURORA/data/something/frames/204292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115706", "images": ["AURORA/data/something/frames/163019/first.jpg", "AURORA/data/something/frames/163019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering table with blanket"}]} +{"id": "000000115707", "images": ["AURORA/data/something/frames/24103/first.jpg", "AURORA/data/something/frames/24103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting deodorant next to cream"}]} +{"id": "000000115708", "images": ["AURORA/data/something/frames/105930/first.jpg", "AURORA/data/something/frames/105930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) rag wet until water comes out"}]} +{"id": "000000115709", "images": ["AURORA/data/something/frames/125617/first.jpg", "AURORA/data/something/frames/125617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into socket"}]} +{"id": "000000115710", "images": ["AURORA/data/something/frames/113188/first.jpg", "AURORA/data/something/frames/113188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115711", "images": ["AURORA/data/something/frames/35636/first.jpg", "AURORA/data/something/frames/35636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling matchboxes up"}]} +{"id": "000000115712", "images": ["AURORA/data/something/frames/29216/first.jpg", "AURORA/data/something/frames/29216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping ketchup stains off of a surface"}]} +{"id": "000000115713", "images": ["AURORA/data/something/frames/20742/first.jpg", "AURORA/data/something/frames/20742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bottle with movie on it"}]} +{"id": "000000115714", "images": ["AURORA/data/something/frames/165008/first.jpg", "AURORA/data/something/frames/165008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a cup colliding with an apple and both come to a halt"}]} +{"id": "000000115715", "images": ["AURORA/data/something/frames/74289/first.jpg", "AURORA/data/something/frames/74289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a toothpick upright on the table, so it falls on its side"}]} +{"id": "000000115716", "images": ["AURORA/data/something/frames/179471/first.jpg", "AURORA/data/something/frames/179471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring toothpaste onto toothbrush"}]} +{"id": "000000115717", "images": ["AURORA/data/something/frames/142250/first.jpg", "AURORA/data/something/frames/142250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a plastic knife until it breaks"}]} +{"id": "000000115718", "images": ["AURORA/data/something/frames/77214/first.jpg", "AURORA/data/something/frames/77214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000115719", "images": ["AURORA/data/something/frames/111958/first.jpg", "AURORA/data/something/frames/111958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000115720", "images": ["AURORA/data/something/frames/46420/first.jpg", "AURORA/data/something/frames/46420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lighter away from book"}]} +{"id": "000000115721", "images": ["AURORA/data/something/frames/159237/first.jpg", "AURORA/data/something/frames/159237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a magnet to a refrigerator"}]} +{"id": "000000115722", "images": ["AURORA/data/something/frames/107674/first.jpg", "AURORA/data/something/frames/107674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing flowers into woodbowl"}]} +{"id": "000000115723", "images": ["AURORA/data/something/frames/168093/first.jpg", "AURORA/data/something/frames/168093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking box so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000115724", "images": ["AURORA/data/something/frames/51127/first.jpg", "AURORA/data/something/frames/51127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing glass from left to right"}]} +{"id": "000000115725", "images": ["AURORA/data/something/frames/107744/first.jpg", "AURORA/data/something/frames/107744/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening jar"}]} +{"id": "000000115726", "images": ["AURORA/data/something/frames/157451/first.jpg", "AURORA/data/something/frames/157451/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pencil sharpener in front of scotch tape"}]} +{"id": "000000115727", "images": ["AURORA/data/something/frames/42363/first.jpg", "AURORA/data/something/frames/42363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping groundnuts into a bowl"}]} +{"id": "000000115728", "images": ["AURORA/data/something/frames/177864/first.jpg", "AURORA/data/something/frames/177864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting white badge and black toy wheel on the table"}]} +{"id": "000000115729", "images": ["AURORA/data/something/frames/3396/first.jpg", "AURORA/data/something/frames/3396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping chapstick over"}]} +{"id": "000000115730", "images": ["AURORA/data/something/frames/27116/first.jpg", "AURORA/data/something/frames/27116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging rocks out of towel"}]} +{"id": "000000115731", "images": ["AURORA/data/something/frames/83751/first.jpg", "AURORA/data/something/frames/83751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding piece of paper"}]} +{"id": "000000115732", "images": ["AURORA/data/something/frames/114135/first.jpg", "AURORA/data/something/frames/114135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115733", "images": ["AURORA/data/something/frames/8778/first.jpg", "AURORA/data/something/frames/8778/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a soap so that it almost falls off but doesn't"}]} +{"id": "000000115734", "images": ["AURORA/data/something/frames/218205/first.jpg", "AURORA/data/something/frames/218205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting box with phone on it"}]} +{"id": "000000115735", "images": ["AURORA/data/something/frames/60410/first.jpg", "AURORA/data/something/frames/60410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many forks"}]} +{"id": "000000115736", "images": ["AURORA/data/something/frames/171095/first.jpg", "AURORA/data/something/frames/171095/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cube behind dish"}]} +{"id": "000000115737", "images": ["AURORA/data/something/frames/18582/first.jpg", "AURORA/data/something/frames/18582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone down"}]} +{"id": "000000115738", "images": ["AURORA/data/something/frames/138429/first.jpg", "AURORA/data/something/frames/138429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book up"}]} +{"id": "000000115739", "images": ["AURORA/data/something/frames/111038/first.jpg", "AURORA/data/something/frames/111038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering the tulips with a magazine"}]} +{"id": "000000115740", "images": ["AURORA/data/something/frames/82480/first.jpg", "AURORA/data/something/frames/82480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a candle upside down"}]} +{"id": "000000115741", "images": ["AURORA/data/something/frames/179688/first.jpg", "AURORA/data/something/frames/179688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pen colliding with another pen and both come to a halt"}]} +{"id": "000000115742", "images": ["AURORA/data/something/frames/54234/first.jpg", "AURORA/data/something/frames/54234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cloth into bowl"}]} +{"id": "000000115743", "images": ["AURORA/data/something/frames/86103/first.jpg", "AURORA/data/something/frames/86103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pencile out of glas"}]} +{"id": "000000115744", "images": ["AURORA/data/something/frames/12898/first.jpg", "AURORA/data/something/frames/12898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white chalk away from the camera"}]} +{"id": "000000115745", "images": ["AURORA/data/something/frames/208486/first.jpg", "AURORA/data/something/frames/208486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a candle into a bougeoir"}]} +{"id": "000000115746", "images": ["AURORA/data/something/frames/106214/first.jpg", "AURORA/data/something/frames/106214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000115747", "images": ["AURORA/data/something/frames/140784/first.jpg", "AURORA/data/something/frames/140784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping litter up with shovel"}]} +{"id": "000000115748", "images": ["AURORA/data/something/frames/31438/first.jpg", "AURORA/data/something/frames/31438/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen in front of pieces"}]} +{"id": "000000115749", "images": ["AURORA/data/something/frames/128636/first.jpg", "AURORA/data/something/frames/128636/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote into box"}]} +{"id": "000000115750", "images": ["AURORA/data/something/frames/1183/first.jpg", "AURORA/data/something/frames/1183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a pillow into a backpack"}]} +{"id": "000000115751", "images": ["AURORA/data/something/frames/94296/first.jpg", "AURORA/data/something/frames/94296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a bottle"}]} +{"id": "000000115752", "images": ["AURORA/data/something/frames/132094/first.jpg", "AURORA/data/something/frames/132094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching paper to wall"}]} +{"id": "000000115753", "images": ["AURORA/data/something/frames/23517/first.jpg", "AURORA/data/something/frames/23517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing orange, revealing coin behind"}]} +{"id": "000000115754", "images": ["AURORA/data/something/frames/81051/first.jpg", "AURORA/data/something/frames/81051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cigarette lighter up"}]} +{"id": "000000115755", "images": ["AURORA/data/something/frames/217225/first.jpg", "AURORA/data/something/frames/217225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a box"}]} +{"id": "000000115756", "images": ["AURORA/data/something/frames/128688/first.jpg", "AURORA/data/something/frames/128688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing jar so that it almost falls off but doesn't"}]} +{"id": "000000115757", "images": ["AURORA/data/something/frames/82454/first.jpg", "AURORA/data/something/frames/82454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming advertisment board"}]} +{"id": "000000115758", "images": ["AURORA/data/something/frames/212224/first.jpg", "AURORA/data/something/frames/212224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting crayon next to mug"}]} +{"id": "000000115759", "images": ["AURORA/data/something/frames/172789/first.jpg", "AURORA/data/something/frames/172789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper"}]} +{"id": "000000115760", "images": ["AURORA/data/something/frames/31715/first.jpg", "AURORA/data/something/frames/31715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pillow into pillow case"}]} +{"id": "000000115761", "images": ["AURORA/data/something/frames/123758/first.jpg", "AURORA/data/something/frames/123758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting sticky note with sharpener on it"}]} +{"id": "000000115762", "images": ["AURORA/data/something/frames/146024/first.jpg", "AURORA/data/something/frames/146024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spoon from right to left"}]} +{"id": "000000115763", "images": ["AURORA/data/something/frames/123028/first.jpg", "AURORA/data/something/frames/123028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into a bag"}]} +{"id": "000000115764", "images": ["AURORA/data/something/frames/183416/first.jpg", "AURORA/data/something/frames/183416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning plastic cup upside down"}]} +{"id": "000000115765", "images": ["AURORA/data/something/frames/69903/first.jpg", "AURORA/data/something/frames/69903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging air freshener into wall outlet"}]} +{"id": "000000115766", "images": ["AURORA/data/something/frames/62678/first.jpg", "AURORA/data/something/frames/62678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving earring down"}]} +{"id": "000000115767", "images": ["AURORA/data/something/frames/208126/first.jpg", "AURORA/data/something/frames/208126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a mug up completely without letting it drop down"}]} +{"id": "000000115768", "images": ["AURORA/data/something/frames/177640/first.jpg", "AURORA/data/something/frames/177640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering broom"}]} +{"id": "000000115769", "images": ["AURORA/data/something/frames/177713/first.jpg", "AURORA/data/something/frames/177713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting setquare behind mug"}]} +{"id": "000000115770", "images": ["AURORA/data/something/frames/145491/first.jpg", "AURORA/data/something/frames/145491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scissors with a box"}]} +{"id": "000000115771", "images": ["AURORA/data/something/frames/157681/first.jpg", "AURORA/data/something/frames/157681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bottle"}]} +{"id": "000000115772", "images": ["AURORA/data/something/frames/91917/first.jpg", "AURORA/data/something/frames/91917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting soap on a surface"}]} +{"id": "000000115773", "images": ["AURORA/data/something/frames/148184/first.jpg", "AURORA/data/something/frames/148184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a white cup next to a black cup"}]} +{"id": "000000115774", "images": ["AURORA/data/something/frames/209254/first.jpg", "AURORA/data/something/frames/209254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling green hair comb from left to right"}]} +{"id": "000000115775", "images": ["AURORA/data/something/frames/7805/first.jpg", "AURORA/data/something/frames/7805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving staple down"}]} +{"id": "000000115776", "images": ["AURORA/data/something/frames/138714/first.jpg", "AURORA/data/something/frames/138714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet behind pillow"}]} +{"id": "000000115777", "images": ["AURORA/data/something/frames/204752/first.jpg", "AURORA/data/something/frames/204752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending pencil until it breaks"}]} +{"id": "000000115778", "images": ["AURORA/data/something/frames/205071/first.jpg", "AURORA/data/something/frames/205071/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a fork"}]} +{"id": "000000115779", "images": ["AURORA/data/something/frames/121337/first.jpg", "AURORA/data/something/frames/121337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into an outlet"}]} +{"id": "000000115780", "images": ["AURORA/data/something/frames/108716/first.jpg", "AURORA/data/something/frames/108716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting laptop with charger on it"}]} +{"id": "000000115781", "images": ["AURORA/data/something/frames/71532/first.jpg", "AURORA/data/something/frames/71532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing waste cloth just a little bit"}]} +{"id": "000000115782", "images": ["AURORA/data/something/frames/96389/first.jpg", "AURORA/data/something/frames/96389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a remote closer to a box"}]} +{"id": "000000115783", "images": ["AURORA/data/something/frames/55854/first.jpg", "AURORA/data/something/frames/55854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug onto coaster"}]} +{"id": "000000115784", "images": ["AURORA/data/something/frames/46256/first.jpg", "AURORA/data/something/frames/46256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting newspaper on a surface"}]} +{"id": "000000115785", "images": ["AURORA/data/something/frames/28806/first.jpg", "AURORA/data/something/frames/28806/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling brown case from right to left"}]} +{"id": "000000115786", "images": ["AURORA/data/something/frames/37516/first.jpg", "AURORA/data/something/frames/37516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a wrap wet until water comes out"}]} +{"id": "000000115787", "images": ["AURORA/data/something/frames/128150/first.jpg", "AURORA/data/something/frames/128150/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tennis ball being deflected from cd stack"}]} +{"id": "000000115788", "images": ["AURORA/data/something/frames/21472/first.jpg", "AURORA/data/something/frames/21472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying rock in dirt"}]} +{"id": "000000115789", "images": ["AURORA/data/something/frames/799/first.jpg", "AURORA/data/something/frames/799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to fridge"}]} +{"id": "000000115790", "images": ["AURORA/data/something/frames/70598/first.jpg", "AURORA/data/something/frames/70598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a napkin"}]} +{"id": "000000115791", "images": ["AURORA/data/something/frames/97487/first.jpg", "AURORA/data/something/frames/97487/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pink water bottle from right to left"}]} +{"id": "000000115792", "images": ["AURORA/data/something/frames/170007/first.jpg", "AURORA/data/something/frames/170007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pink water bottle from right to left"}]} +{"id": "000000115793", "images": ["AURORA/data/something/frames/184507/first.jpg", "AURORA/data/something/frames/184507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115794", "images": ["AURORA/data/something/frames/84085/first.jpg", "AURORA/data/something/frames/84085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissues into container"}]} +{"id": "000000115795", "images": ["AURORA/data/something/frames/51984/first.jpg", "AURORA/data/something/frames/51984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a notebook across a surface without it falling down"}]} +{"id": "000000115796", "images": ["AURORA/data/something/frames/108352/first.jpg", "AURORA/data/something/frames/108352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing brochure into two pieces"}]} +{"id": "000000115797", "images": ["AURORA/data/something/frames/212936/first.jpg", "AURORA/data/something/frames/212936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a mug from right to left"}]} +{"id": "000000115798", "images": ["AURORA/data/something/frames/171027/first.jpg", "AURORA/data/something/frames/171027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pushing a child's water bottle top across kitchen counter from left to right"}]} +{"id": "000000115799", "images": ["AURORA/data/something/frames/82117/first.jpg", "AURORA/data/something/frames/82117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a pack of gum on it until it starts sliding down"}]} +{"id": "000000115800", "images": ["AURORA/data/something/frames/132832/first.jpg", "AURORA/data/something/frames/132832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone in front of bottle"}]} +{"id": "000000115801", "images": ["AURORA/data/something/frames/21376/first.jpg", "AURORA/data/something/frames/21376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting block with sunglasses on it"}]} +{"id": "000000115802", "images": ["AURORA/data/something/frames/126968/first.jpg", "AURORA/data/something/frames/126968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000115803", "images": ["AURORA/data/something/frames/214697/first.jpg", "AURORA/data/something/frames/214697/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a water bottle and a mug closer to each other"}]} +{"id": "000000115804", "images": ["AURORA/data/something/frames/195096/first.jpg", "AURORA/data/something/frames/195096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass on a surface"}]} +{"id": "000000115805", "images": ["AURORA/data/something/frames/45963/first.jpg", "AURORA/data/something/frames/45963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting adapter in front of key"}]} +{"id": "000000115806", "images": ["AURORA/data/something/frames/63496/first.jpg", "AURORA/data/something/frames/63496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming rubber"}]} +{"id": "000000115807", "images": ["AURORA/data/something/frames/168997/first.jpg", "AURORA/data/something/frames/168997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening tea box"}]} +{"id": "000000115808", "images": ["AURORA/data/something/frames/206979/first.jpg", "AURORA/data/something/frames/206979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper towel"}]} +{"id": "000000115809", "images": ["AURORA/data/something/frames/93879/first.jpg", "AURORA/data/something/frames/93879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting carton lid"}]} +{"id": "000000115810", "images": ["AURORA/data/something/frames/50783/first.jpg", "AURORA/data/something/frames/50783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen next to pencil case"}]} +{"id": "000000115811", "images": ["AURORA/data/something/frames/3011/first.jpg", "AURORA/data/something/frames/3011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hand towel on the edge of counter so it is not supported and falls down"}]} +{"id": "000000115812", "images": ["AURORA/data/something/frames/123911/first.jpg", "AURORA/data/something/frames/123911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting stapler with pen"}]} +{"id": "000000115813", "images": ["AURORA/data/something/frames/50091/first.jpg", "AURORA/data/something/frames/50091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) wet cloth wet until water comes out"}]} +{"id": "000000115814", "images": ["AURORA/data/something/frames/195032/first.jpg", "AURORA/data/something/frames/195032/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white envelope from left to right"}]} +{"id": "000000115815", "images": ["AURORA/data/something/frames/180159/first.jpg", "AURORA/data/something/frames/180159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bag from table"}]} +{"id": "000000115816", "images": ["AURORA/data/something/frames/62119/first.jpg", "AURORA/data/something/frames/62119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping towel onto floor"}]} +{"id": "000000115817", "images": ["AURORA/data/something/frames/129999/first.jpg", "AURORA/data/something/frames/129999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching an electronic portier to its base"}]} +{"id": "000000115818", "images": ["AURORA/data/something/frames/127152/first.jpg", "AURORA/data/something/frames/127152/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000115819", "images": ["AURORA/data/something/frames/79405/first.jpg", "AURORA/data/something/frames/79405/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into laptop computer"}]} +{"id": "000000115820", "images": ["AURORA/data/something/frames/209055/first.jpg", "AURORA/data/something/frames/209055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a toothbrush"}]} +{"id": "000000115821", "images": ["AURORA/data/something/frames/8378/first.jpg", "AURORA/data/something/frames/8378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a comb"}]} +{"id": "000000115822", "images": ["AURORA/data/something/frames/54709/first.jpg", "AURORA/data/something/frames/54709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coaster, remote and tissue box on the table"}]} +{"id": "000000115823", "images": ["AURORA/data/something/frames/28142/first.jpg", "AURORA/data/something/frames/28142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with pen on it"}]} +{"id": "000000115824", "images": ["AURORA/data/something/frames/91618/first.jpg", "AURORA/data/something/frames/91618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and lid away from each other"}]} +{"id": "000000115825", "images": ["AURORA/data/something/frames/192775/first.jpg", "AURORA/data/something/frames/192775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting green toy car and toy wheel on the table"}]} +{"id": "000000115826", "images": ["AURORA/data/something/frames/18316/first.jpg", "AURORA/data/something/frames/18316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring tea into glass"}]} +{"id": "000000115827", "images": ["AURORA/data/something/frames/196757/first.jpg", "AURORA/data/something/frames/196757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning playdough upside down"}]} +{"id": "000000115828", "images": ["AURORA/data/something/frames/146940/first.jpg", "AURORA/data/something/frames/146940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a water bottle with a pen over, so water falls out"}]} +{"id": "000000115829", "images": ["AURORA/data/something/frames/175251/first.jpg", "AURORA/data/something/frames/175251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of egg carton"}]} +{"id": "000000115830", "images": ["AURORA/data/something/frames/117704/first.jpg", "AURORA/data/something/frames/117704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a glass up"}]} +{"id": "000000115831", "images": ["AURORA/data/something/frames/109889/first.jpg", "AURORA/data/something/frames/109889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup up"}]} +{"id": "000000115832", "images": ["AURORA/data/something/frames/210652/first.jpg", "AURORA/data/something/frames/210652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting yogurt and butter on the table"}]} +{"id": "000000115833", "images": ["AURORA/data/something/frames/16997/first.jpg", "AURORA/data/something/frames/16997/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving block closer to box"}]} +{"id": "000000115834", "images": ["AURORA/data/something/frames/71474/first.jpg", "AURORA/data/something/frames/71474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting purse onto sponze"}]} +{"id": "000000115835", "images": ["AURORA/data/something/frames/78475/first.jpg", "AURORA/data/something/frames/78475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bed with blanket"}]} +{"id": "000000115836", "images": ["AURORA/data/something/frames/29205/first.jpg", "AURORA/data/something/frames/29205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker pen with marker pen"}]} +{"id": "000000115837", "images": ["AURORA/data/something/frames/131856/first.jpg", "AURORA/data/something/frames/131856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into usb port"}]} +{"id": "000000115838", "images": ["AURORA/data/something/frames/11531/first.jpg", "AURORA/data/something/frames/11531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eye kajal and pendrive closer to each other"}]} +{"id": "000000115839", "images": ["AURORA/data/something/frames/119750/first.jpg", "AURORA/data/something/frames/119750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tape being deflected from deodorant"}]} +{"id": "000000115840", "images": ["AURORA/data/something/frames/181358/first.jpg", "AURORA/data/something/frames/181358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from usb with your camera"}]} +{"id": "000000115841", "images": ["AURORA/data/something/frames/195387/first.jpg", "AURORA/data/something/frames/195387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging box into extension cord"}]} +{"id": "000000115842", "images": ["AURORA/data/something/frames/173422/first.jpg", "AURORA/data/something/frames/173422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000115843", "images": ["AURORA/data/something/frames/213158/first.jpg", "AURORA/data/something/frames/213158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping paperclip holder with finger over, so paperclips falls out"}]} +{"id": "000000115844", "images": ["AURORA/data/something/frames/40161/first.jpg", "AURORA/data/something/frames/40161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 cups"}]} +{"id": "000000115845", "images": ["AURORA/data/something/frames/137038/first.jpg", "AURORA/data/something/frames/137038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a speaker on a surface"}]} +{"id": "000000115846", "images": ["AURORA/data/something/frames/25709/first.jpg", "AURORA/data/something/frames/25709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from plant with your camera"}]} +{"id": "000000115847", "images": ["AURORA/data/something/frames/175508/first.jpg", "AURORA/data/something/frames/175508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a train from right to left"}]} +{"id": "000000115848", "images": ["AURORA/data/something/frames/15201/first.jpg", "AURORA/data/something/frames/15201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering branch"}]} +{"id": "000000115849", "images": ["AURORA/data/something/frames/146020/first.jpg", "AURORA/data/something/frames/146020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pillow into bag"}]} +{"id": "000000115850", "images": ["AURORA/data/something/frames/75502/first.jpg", "AURORA/data/something/frames/75502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cup on the table on its side, not upright"}]} +{"id": "000000115851", "images": ["AURORA/data/something/frames/69297/first.jpg", "AURORA/data/something/frames/69297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a candle jar"}]} +{"id": "000000115852", "images": ["AURORA/data/something/frames/103052/first.jpg", "AURORA/data/something/frames/103052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lemon up"}]} +{"id": "000000115853", "images": ["AURORA/data/something/frames/180921/first.jpg", "AURORA/data/something/frames/180921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115854", "images": ["AURORA/data/something/frames/171674/first.jpg", "AURORA/data/something/frames/171674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a deck of cards behind a mug"}]} +{"id": "000000115855", "images": ["AURORA/data/something/frames/75455/first.jpg", "AURORA/data/something/frames/75455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pincer up"}]} +{"id": "000000115856", "images": ["AURORA/data/something/frames/56891/first.jpg", "AURORA/data/something/frames/56891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pillow so that it almost falls off but doesn't"}]} +{"id": "000000115857", "images": ["AURORA/data/something/frames/107137/first.jpg", "AURORA/data/something/frames/107137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of sink"}]} +{"id": "000000115858", "images": ["AURORA/data/something/frames/5231/first.jpg", "AURORA/data/something/frames/5231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a bowl colliding with a bottle and both come to a halt"}]} +{"id": "000000115859", "images": ["AURORA/data/something/frames/583/first.jpg", "AURORA/data/something/frames/583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115860", "images": ["AURORA/data/something/frames/64853/first.jpg", "AURORA/data/something/frames/64853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving smartphone across a surface without it falling down"}]} +{"id": "000000115861", "images": ["AURORA/data/something/frames/144552/first.jpg", "AURORA/data/something/frames/144552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from flower with your camera"}]} +{"id": "000000115862", "images": ["AURORA/data/something/frames/211186/first.jpg", "AURORA/data/something/frames/211186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book up"}]} +{"id": "000000115863", "images": ["AURORA/data/something/frames/209947/first.jpg", "AURORA/data/something/frames/209947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving steel glass towards the camera"}]} +{"id": "000000115864", "images": ["AURORA/data/something/frames/159542/first.jpg", "AURORA/data/something/frames/159542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing cloth, revealing hairband behind"}]} +{"id": "000000115865", "images": ["AURORA/data/something/frames/220316/first.jpg", "AURORA/data/something/frames/220316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ribbon down"}]} +{"id": "000000115866", "images": ["AURORA/data/something/frames/27436/first.jpg", "AURORA/data/something/frames/27436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering box"}]} +{"id": "000000115867", "images": ["AURORA/data/something/frames/90121/first.jpg", "AURORA/data/something/frames/90121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from bolt with your camera"}]} +{"id": "000000115868", "images": ["AURORA/data/something/frames/185472/first.jpg", "AURORA/data/something/frames/185472/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115869", "images": ["AURORA/data/something/frames/197161/first.jpg", "AURORA/data/something/frames/197161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000115870", "images": ["AURORA/data/something/frames/142705/first.jpg", "AURORA/data/something/frames/142705/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000115871", "images": ["AURORA/data/something/frames/121328/first.jpg", "AURORA/data/something/frames/121328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hairbrush into box"}]} +{"id": "000000115872", "images": ["AURORA/data/something/frames/87312/first.jpg", "AURORA/data/something/frames/87312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing bread into two pieces"}]} +{"id": "000000115873", "images": ["AURORA/data/something/frames/123652/first.jpg", "AURORA/data/something/frames/123652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pumpkin with a bottle"}]} +{"id": "000000115874", "images": ["AURORA/data/something/frames/137771/first.jpg", "AURORA/data/something/frames/137771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling chip crumbs onto paper towel"}]} +{"id": "000000115875", "images": ["AURORA/data/something/frames/115957/first.jpg", "AURORA/data/something/frames/115957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering remote control"}]} +{"id": "000000115876", "images": ["AURORA/data/something/frames/169894/first.jpg", "AURORA/data/something/frames/169894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into a glass"}]} +{"id": "000000115877", "images": ["AURORA/data/something/frames/69895/first.jpg", "AURORA/data/something/frames/69895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000115878", "images": ["AURORA/data/something/frames/33082/first.jpg", "AURORA/data/something/frames/33082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking soup can"}]} +{"id": "000000115879", "images": ["AURORA/data/something/frames/63494/first.jpg", "AURORA/data/something/frames/63494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving brush and paper closer to each other"}]} +{"id": "000000115880", "images": ["AURORA/data/something/frames/99109/first.jpg", "AURORA/data/something/frames/99109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying glass on the table on its side, not upright"}]} +{"id": "000000115881", "images": ["AURORA/data/something/frames/44140/first.jpg", "AURORA/data/something/frames/44140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing towel into bag"}]} +{"id": "000000115882", "images": ["AURORA/data/something/frames/102422/first.jpg", "AURORA/data/something/frames/102422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto paper"}]} +{"id": "000000115883", "images": ["AURORA/data/something/frames/138364/first.jpg", "AURORA/data/something/frames/138364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flashlight on a surface"}]} +{"id": "000000115884", "images": ["AURORA/data/something/frames/80256/first.jpg", "AURORA/data/something/frames/80256/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hairpins"}]} +{"id": "000000115885", "images": ["AURORA/data/something/frames/139261/first.jpg", "AURORA/data/something/frames/139261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging stone out of sand"}]} +{"id": "000000115886", "images": ["AURORA/data/something/frames/29911/first.jpg", "AURORA/data/something/frames/29911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into leaf"}]} +{"id": "000000115887", "images": ["AURORA/data/something/frames/69008/first.jpg", "AURORA/data/something/frames/69008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle with scissors"}]} +{"id": "000000115888", "images": ["AURORA/data/something/frames/143248/first.jpg", "AURORA/data/something/frames/143248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a bottle of perfume on it"}]} +{"id": "000000115889", "images": ["AURORA/data/something/frames/217737/first.jpg", "AURORA/data/something/frames/217737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cup with a towel"}]} +{"id": "000000115890", "images": ["AURORA/data/something/frames/154702/first.jpg", "AURORA/data/something/frames/154702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a coffee cup on the table on its side, not upright"}]} +{"id": "000000115891", "images": ["AURORA/data/something/frames/66523/first.jpg", "AURORA/data/something/frames/66523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle cap with black cloth"}]} +{"id": "000000115892", "images": ["AURORA/data/something/frames/183181/first.jpg", "AURORA/data/something/frames/183181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a marker so that it falls over"}]} +{"id": "000000115893", "images": ["AURORA/data/something/frames/143303/first.jpg", "AURORA/data/something/frames/143303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000115894", "images": ["AURORA/data/something/frames/135947/first.jpg", "AURORA/data/something/frames/135947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a book so that it almost falls off but doesn't"}]} +{"id": "000000115895", "images": ["AURORA/data/something/frames/106200/first.jpg", "AURORA/data/something/frames/106200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toothbrush so that it almost falls off but doesn't"}]} +{"id": "000000115896", "images": ["AURORA/data/something/frames/131223/first.jpg", "AURORA/data/something/frames/131223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red pencil sharpner from left to right"}]} +{"id": "000000115897", "images": ["AURORA/data/something/frames/102606/first.jpg", "AURORA/data/something/frames/102606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bottle cap"}]} +{"id": "000000115898", "images": ["AURORA/data/something/frames/45726/first.jpg", "AURORA/data/something/frames/45726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pendrive down"}]} +{"id": "000000115899", "images": ["AURORA/data/something/frames/94488/first.jpg", "AURORA/data/something/frames/94488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mason jar upside down"}]} +{"id": "000000115900", "images": ["AURORA/data/something/frames/152430/first.jpg", "AURORA/data/something/frames/152430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glue stick on a surface"}]} +{"id": "000000115901", "images": ["AURORA/data/something/frames/177289/first.jpg", "AURORA/data/something/frames/177289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup on a surface"}]} +{"id": "000000115902", "images": ["AURORA/data/something/frames/56444/first.jpg", "AURORA/data/something/frames/56444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books so the stack collapses"}]} +{"id": "000000115903", "images": ["AURORA/data/something/frames/189496/first.jpg", "AURORA/data/something/frames/189496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening juicer cap"}]} +{"id": "000000115904", "images": ["AURORA/data/something/frames/164586/first.jpg", "AURORA/data/something/frames/164586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving notebook up"}]} +{"id": "000000115905", "images": ["AURORA/data/something/frames/41786/first.jpg", "AURORA/data/something/frames/41786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissor behind glass"}]} +{"id": "000000115906", "images": ["AURORA/data/something/frames/117853/first.jpg", "AURORA/data/something/frames/117853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hair band out of green cup"}]} +{"id": "000000115907", "images": ["AURORA/data/something/frames/167586/first.jpg", "AURORA/data/something/frames/167586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup upright on the table"}]} +{"id": "000000115908", "images": ["AURORA/data/something/frames/4004/first.jpg", "AURORA/data/something/frames/4004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissor on a surface"}]} +{"id": "000000115909", "images": ["AURORA/data/something/frames/180648/first.jpg", "AURORA/data/something/frames/180648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spectacles case upright on the table"}]} +{"id": "000000115910", "images": ["AURORA/data/something/frames/114296/first.jpg", "AURORA/data/something/frames/114296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a book"}]} +{"id": "000000115911", "images": ["AURORA/data/something/frames/20414/first.jpg", "AURORA/data/something/frames/20414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book down"}]} +{"id": "000000115912", "images": ["AURORA/data/something/frames/104143/first.jpg", "AURORA/data/something/frames/104143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon, marble and sponge on the table"}]} +{"id": "000000115913", "images": ["AURORA/data/something/frames/74053/first.jpg", "AURORA/data/something/frames/74053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping scissors behind tape dispenser"}]} +{"id": "000000115914", "images": ["AURORA/data/something/frames/190246/first.jpg", "AURORA/data/something/frames/190246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving dog plush towards the camera"}]} +{"id": "000000115915", "images": ["AURORA/data/something/frames/124015/first.jpg", "AURORA/data/something/frames/124015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing heater component from left to right"}]} +{"id": "000000115916", "images": ["AURORA/data/something/frames/185398/first.jpg", "AURORA/data/something/frames/185398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil and pen away from each other"}]} +{"id": "000000115917", "images": ["AURORA/data/something/frames/181765/first.jpg", "AURORA/data/something/frames/181765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toy with cloth"}]} +{"id": "000000115918", "images": ["AURORA/data/something/frames/99861/first.jpg", "AURORA/data/something/frames/99861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000115919", "images": ["AURORA/data/something/frames/13592/first.jpg", "AURORA/data/something/frames/13592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of paper so that it separates into two pieces"}]} +{"id": "000000115920", "images": ["AURORA/data/something/frames/119635/first.jpg", "AURORA/data/something/frames/119635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming person"}]} +{"id": "000000115921", "images": ["AURORA/data/something/frames/102044/first.jpg", "AURORA/data/something/frames/102044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tin foil so that it deforms"}]} +{"id": "000000115922", "images": ["AURORA/data/something/frames/22465/first.jpg", "AURORA/data/something/frames/22465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching flowers with your camera"}]} +{"id": "000000115923", "images": ["AURORA/data/something/frames/150279/first.jpg", "AURORA/data/something/frames/150279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bowl"}]} +{"id": "000000115924", "images": ["AURORA/data/something/frames/167677/first.jpg", "AURORA/data/something/frames/167677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box of special k cereals next to a box of krave cereals"}]} +{"id": "000000115925", "images": ["AURORA/data/something/frames/9424/first.jpg", "AURORA/data/something/frames/9424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hairband with red spoon"}]} +{"id": "000000115926", "images": ["AURORA/data/something/frames/4634/first.jpg", "AURORA/data/something/frames/4634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting clothe"}]} +{"id": "000000115927", "images": ["AURORA/data/something/frames/172716/first.jpg", "AURORA/data/something/frames/172716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing lid off of cup"}]} +{"id": "000000115928", "images": ["AURORA/data/something/frames/144680/first.jpg", "AURORA/data/something/frames/144680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a piece of cloth wet until water comes out"}]} +{"id": "000000115929", "images": ["AURORA/data/something/frames/171605/first.jpg", "AURORA/data/something/frames/171605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sweet out of sweetbox"}]} +{"id": "000000115930", "images": ["AURORA/data/something/frames/126129/first.jpg", "AURORA/data/something/frames/126129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking bottles"}]} +{"id": "000000115931", "images": ["AURORA/data/something/frames/97982/first.jpg", "AURORA/data/something/frames/97982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pincer from right to left"}]} +{"id": "000000115932", "images": ["AURORA/data/something/frames/8793/first.jpg", "AURORA/data/something/frames/8793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking three gift cards"}]} +{"id": "000000115933", "images": ["AURORA/data/something/frames/112536/first.jpg", "AURORA/data/something/frames/112536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: cow being deflected from door"}]} +{"id": "000000115934", "images": ["AURORA/data/something/frames/166599/first.jpg", "AURORA/data/something/frames/166599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting the compact disc into the compact disc case"}]} +{"id": "000000115935", "images": ["AURORA/data/something/frames/212129/first.jpg", "AURORA/data/something/frames/212129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000115936", "images": ["AURORA/data/something/frames/153859/first.jpg", "AURORA/data/something/frames/153859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sugar container away from tomato"}]} +{"id": "000000115937", "images": ["AURORA/data/something/frames/172201/first.jpg", "AURORA/data/something/frames/172201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sunglasses with wallet"}]} +{"id": "000000115938", "images": ["AURORA/data/something/frames/125766/first.jpg", "AURORA/data/something/frames/125766/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pin behind a remote"}]} +{"id": "000000115939", "images": ["AURORA/data/something/frames/159460/first.jpg", "AURORA/data/something/frames/159460/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000115940", "images": ["AURORA/data/something/frames/85701/first.jpg", "AURORA/data/something/frames/85701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming sign post"}]} +{"id": "000000115941", "images": ["AURORA/data/something/frames/215254/first.jpg", "AURORA/data/something/frames/215254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering soap with cloth"}]} +{"id": "000000115942", "images": ["AURORA/data/something/frames/26337/first.jpg", "AURORA/data/something/frames/26337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting mouse with a remote"}]} +{"id": "000000115943", "images": ["AURORA/data/something/frames/62208/first.jpg", "AURORA/data/something/frames/62208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a gift card to a bandage box"}]} +{"id": "000000115944", "images": ["AURORA/data/something/frames/70330/first.jpg", "AURORA/data/something/frames/70330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with cup on it"}]} +{"id": "000000115945", "images": ["AURORA/data/something/frames/103985/first.jpg", "AURORA/data/something/frames/103985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming toy"}]} +{"id": "000000115946", "images": ["AURORA/data/something/frames/58565/first.jpg", "AURORA/data/something/frames/58565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000115947", "images": ["AURORA/data/something/frames/161676/first.jpg", "AURORA/data/something/frames/161676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000115948", "images": ["AURORA/data/something/frames/177827/first.jpg", "AURORA/data/something/frames/177827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of leaves so that it separates into two pieces"}]} +{"id": "000000115949", "images": ["AURORA/data/something/frames/212417/first.jpg", "AURORA/data/something/frames/212417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000115950", "images": ["AURORA/data/something/frames/81516/first.jpg", "AURORA/data/something/frames/81516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with match box"}]} +{"id": "000000115951", "images": ["AURORA/data/something/frames/186012/first.jpg", "AURORA/data/something/frames/186012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing hard paper into two pieces"}]} +{"id": "000000115952", "images": ["AURORA/data/something/frames/163038/first.jpg", "AURORA/data/something/frames/163038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving part of dvd cover"}]} +{"id": "000000115953", "images": ["AURORA/data/something/frames/180231/first.jpg", "AURORA/data/something/frames/180231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb next to cup"}]} +{"id": "000000115954", "images": ["AURORA/data/something/frames/119376/first.jpg", "AURORA/data/something/frames/119376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin in front of a matchbox"}]} +{"id": "000000115955", "images": ["AURORA/data/something/frames/197680/first.jpg", "AURORA/data/something/frames/197680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000115956", "images": ["AURORA/data/something/frames/46375/first.jpg", "AURORA/data/something/frames/46375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass until it overflows"}]} +{"id": "000000115957", "images": ["AURORA/data/something/frames/136257/first.jpg", "AURORA/data/something/frames/136257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing scissors so that it almost falls off but doesn't"}]} +{"id": "000000115958", "images": ["AURORA/data/something/frames/46811/first.jpg", "AURORA/data/something/frames/46811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind orange"}]} +{"id": "000000115959", "images": ["AURORA/data/something/frames/17162/first.jpg", "AURORA/data/something/frames/17162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming toothpaste box"}]} +{"id": "000000115960", "images": ["AURORA/data/something/frames/146415/first.jpg", "AURORA/data/something/frames/146415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a twig until it breaks"}]} +{"id": "000000115961", "images": ["AURORA/data/something/frames/12942/first.jpg", "AURORA/data/something/frames/12942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a box"}]} +{"id": "000000115962", "images": ["AURORA/data/something/frames/118525/first.jpg", "AURORA/data/something/frames/118525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper just a little bit"}]} +{"id": "000000115963", "images": ["AURORA/data/something/frames/180779/first.jpg", "AURORA/data/something/frames/180779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle onto table edge so it falls down"}]} +{"id": "000000115964", "images": ["AURORA/data/something/frames/151963/first.jpg", "AURORA/data/something/frames/151963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rule down"}]} +{"id": "000000115965", "images": ["AURORA/data/something/frames/194101/first.jpg", "AURORA/data/something/frames/194101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower up"}]} +{"id": "000000115966", "images": ["AURORA/data/something/frames/7703/first.jpg", "AURORA/data/something/frames/7703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sand up with shovel"}]} +{"id": "000000115967", "images": ["AURORA/data/something/frames/165080/first.jpg", "AURORA/data/something/frames/165080/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubik cube next to card"}]} +{"id": "000000115968", "images": ["AURORA/data/something/frames/377/first.jpg", "AURORA/data/something/frames/377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cookie box lid with green toy car on it"}]} +{"id": "000000115969", "images": ["AURORA/data/something/frames/142837/first.jpg", "AURORA/data/something/frames/142837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000115970", "images": ["AURORA/data/something/frames/7496/first.jpg", "AURORA/data/something/frames/7496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping an empty ice cream cup over"}]} +{"id": "000000115971", "images": ["AURORA/data/something/frames/151509/first.jpg", "AURORA/data/something/frames/151509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass until it overflows"}]} +{"id": "000000115972", "images": ["AURORA/data/something/frames/140857/first.jpg", "AURORA/data/something/frames/140857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a calculator next to a pencase"}]} +{"id": "000000115973", "images": ["AURORA/data/something/frames/161514/first.jpg", "AURORA/data/something/frames/161514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming sunset"}]} +{"id": "000000115974", "images": ["AURORA/data/something/frames/202253/first.jpg", "AURORA/data/something/frames/202253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting lamp with pen"}]} +{"id": "000000115975", "images": ["AURORA/data/something/frames/167415/first.jpg", "AURORA/data/something/frames/167415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a bottle"}]} +{"id": "000000115976", "images": ["AURORA/data/something/frames/30414/first.jpg", "AURORA/data/something/frames/30414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a block of paper on a surface"}]} +{"id": "000000115977", "images": ["AURORA/data/something/frames/36094/first.jpg", "AURORA/data/something/frames/36094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling tissue boxes up"}]} +{"id": "000000115978", "images": ["AURORA/data/something/frames/62874/first.jpg", "AURORA/data/something/frames/62874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling bottle from left to right"}]} +{"id": "000000115979", "images": ["AURORA/data/something/frames/1694/first.jpg", "AURORA/data/something/frames/1694/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000115980", "images": ["AURORA/data/something/frames/168854/first.jpg", "AURORA/data/something/frames/168854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plate with rubber duck on it"}]} +{"id": "000000115981", "images": ["AURORA/data/something/frames/19081/first.jpg", "AURORA/data/something/frames/19081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a plate with a spoon"}]} +{"id": "000000115982", "images": ["AURORA/data/something/frames/75788/first.jpg", "AURORA/data/something/frames/75788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something that cannot upright on the table, so it falls on its side"}]} +{"id": "000000115983", "images": ["AURORA/data/something/frames/153026/first.jpg", "AURORA/data/something/frames/153026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing gate with hand"}]} +{"id": "000000115984", "images": ["AURORA/data/something/frames/179551/first.jpg", "AURORA/data/something/frames/179551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green chalk from left to right"}]} +{"id": "000000115985", "images": ["AURORA/data/something/frames/100751/first.jpg", "AURORA/data/something/frames/100751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000115986", "images": ["AURORA/data/something/frames/196829/first.jpg", "AURORA/data/something/frames/196829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing towels into basket"}]} +{"id": "000000115987", "images": ["AURORA/data/something/frames/185313/first.jpg", "AURORA/data/something/frames/185313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000115988", "images": ["AURORA/data/something/frames/146053/first.jpg", "AURORA/data/something/frames/146053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000115989", "images": ["AURORA/data/something/frames/36584/first.jpg", "AURORA/data/something/frames/36584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a bottle closer to each other"}]} +{"id": "000000115990", "images": ["AURORA/data/something/frames/133961/first.jpg", "AURORA/data/something/frames/133961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking something up"}]} +{"id": "000000115991", "images": ["AURORA/data/something/frames/152215/first.jpg", "AURORA/data/something/frames/152215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading red chillies onto a plate"}]} +{"id": "000000115992", "images": ["AURORA/data/something/frames/33523/first.jpg", "AURORA/data/something/frames/33523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting watch next to toy"}]} +{"id": "000000115993", "images": ["AURORA/data/something/frames/71988/first.jpg", "AURORA/data/something/frames/71988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring gems out of container"}]} +{"id": "000000115994", "images": ["AURORA/data/something/frames/68888/first.jpg", "AURORA/data/something/frames/68888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass on a surface"}]} +{"id": "000000115995", "images": ["AURORA/data/something/frames/183751/first.jpg", "AURORA/data/something/frames/183751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper plate"}]} +{"id": "000000115996", "images": ["AURORA/data/something/frames/116234/first.jpg", "AURORA/data/something/frames/116234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping ketchup over"}]} +{"id": "000000115997", "images": ["AURORA/data/something/frames/152261/first.jpg", "AURORA/data/something/frames/152261/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin behind a padlock"}]} +{"id": "000000115998", "images": ["AURORA/data/something/frames/81390/first.jpg", "AURORA/data/something/frames/81390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to more pens, pencils."}]} +{"id": "000000115999", "images": ["AURORA/data/something/frames/205883/first.jpg", "AURORA/data/something/frames/205883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a key next to a phone"}]} +{"id": "000000116000", "images": ["AURORA/data/something/frames/3226/first.jpg", "AURORA/data/something/frames/3226/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from left to right"}]} +{"id": "000000116001", "images": ["AURORA/data/something/frames/206345/first.jpg", "AURORA/data/something/frames/206345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching usb stick to magnet"}]} +{"id": "000000116002", "images": ["AURORA/data/something/frames/128081/first.jpg", "AURORA/data/something/frames/128081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many candles on the table"}]} +{"id": "000000116003", "images": ["AURORA/data/something/frames/40435/first.jpg", "AURORA/data/something/frames/40435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying lotion on the table on its side, not upright"}]} +{"id": "000000116004", "images": ["AURORA/data/something/frames/42075/first.jpg", "AURORA/data/something/frames/42075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a brush from left to right"}]} +{"id": "000000116005", "images": ["AURORA/data/something/frames/106607/first.jpg", "AURORA/data/something/frames/106607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a towel wet until water comes out"}]} +{"id": "000000116006", "images": ["AURORA/data/something/frames/9381/first.jpg", "AURORA/data/something/frames/9381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling glass onto table"}]} +{"id": "000000116007", "images": ["AURORA/data/something/frames/82049/first.jpg", "AURORA/data/something/frames/82049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping books onto table"}]} +{"id": "000000116008", "images": ["AURORA/data/something/frames/141411/first.jpg", "AURORA/data/something/frames/141411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming cup"}]} +{"id": "000000116009", "images": ["AURORA/data/something/frames/165031/first.jpg", "AURORA/data/something/frames/165031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an electrical plug into a plug socket"}]} +{"id": "000000116010", "images": ["AURORA/data/something/frames/163769/first.jpg", "AURORA/data/something/frames/163769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming white book marker"}]} +{"id": "000000116011", "images": ["AURORA/data/something/frames/139906/first.jpg", "AURORA/data/something/frames/139906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into computer but pulling it right out as you remove your hand"}]} +{"id": "000000116012", "images": ["AURORA/data/something/frames/51538/first.jpg", "AURORA/data/something/frames/51538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching refill to pen"}]} +{"id": "000000116013", "images": ["AURORA/data/something/frames/182093/first.jpg", "AURORA/data/something/frames/182093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of straw without letting it drop down"}]} +{"id": "000000116014", "images": ["AURORA/data/something/frames/159555/first.jpg", "AURORA/data/something/frames/159555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming notebook"}]} +{"id": "000000116015", "images": ["AURORA/data/something/frames/100029/first.jpg", "AURORA/data/something/frames/100029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle upright on the table"}]} +{"id": "000000116016", "images": ["AURORA/data/something/frames/179801/first.jpg", "AURORA/data/something/frames/179801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a notebook so that it almost falls off but doesn't"}]} +{"id": "000000116017", "images": ["AURORA/data/something/frames/42602/first.jpg", "AURORA/data/something/frames/42602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching old mobile phone with your camera"}]} +{"id": "000000116018", "images": ["AURORA/data/something/frames/136093/first.jpg", "AURORA/data/something/frames/136093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000116019", "images": ["AURORA/data/something/frames/94070/first.jpg", "AURORA/data/something/frames/94070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a nightlight into a socket"}]} +{"id": "000000116020", "images": ["AURORA/data/something/frames/193966/first.jpg", "AURORA/data/something/frames/193966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a spoon from a container"}]} +{"id": "000000116021", "images": ["AURORA/data/something/frames/28841/first.jpg", "AURORA/data/something/frames/28841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book onto pen stand"}]} +{"id": "000000116022", "images": ["AURORA/data/something/frames/60717/first.jpg", "AURORA/data/something/frames/60717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting seasor, tailoring tap and pen on the table"}]} +{"id": "000000116023", "images": ["AURORA/data/something/frames/4971/first.jpg", "AURORA/data/something/frames/4971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into mobile but pulling it right out as you remove your hand"}]} +{"id": "000000116024", "images": ["AURORA/data/something/frames/70841/first.jpg", "AURORA/data/something/frames/70841/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pen so that it deforms"}]} +{"id": "000000116025", "images": ["AURORA/data/something/frames/3002/first.jpg", "AURORA/data/something/frames/3002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming audio sistem"}]} +{"id": "000000116026", "images": ["AURORA/data/something/frames/101206/first.jpg", "AURORA/data/something/frames/101206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel into two pieces"}]} +{"id": "000000116027", "images": ["AURORA/data/something/frames/171783/first.jpg", "AURORA/data/something/frames/171783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping matchbox into jar"}]} +{"id": "000000116028", "images": ["AURORA/data/something/frames/213305/first.jpg", "AURORA/data/something/frames/213305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening purse"}]} +{"id": "000000116029", "images": ["AURORA/data/something/frames/216736/first.jpg", "AURORA/data/something/frames/216736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bracelet behind hand bag"}]} +{"id": "000000116030", "images": ["AURORA/data/something/frames/217783/first.jpg", "AURORA/data/something/frames/217783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork onto plate"}]} +{"id": "000000116031", "images": ["AURORA/data/something/frames/204721/first.jpg", "AURORA/data/something/frames/204721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bag of bread onto the counter"}]} +{"id": "000000116032", "images": ["AURORA/data/something/frames/217909/first.jpg", "AURORA/data/something/frames/217909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pushing plastic spray from left to right from left to right"}]} +{"id": "000000116033", "images": ["AURORA/data/something/frames/153183/first.jpg", "AURORA/data/something/frames/153183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cap"}]} +{"id": "000000116034", "images": ["AURORA/data/something/frames/118265/first.jpg", "AURORA/data/something/frames/118265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball on a surface"}]} +{"id": "000000116035", "images": ["AURORA/data/something/frames/18632/first.jpg", "AURORA/data/something/frames/18632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering sunglasses with cushion"}]} +{"id": "000000116036", "images": ["AURORA/data/something/frames/34137/first.jpg", "AURORA/data/something/frames/34137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red candle from left to right"}]} +{"id": "000000116037", "images": ["AURORA/data/something/frames/110058/first.jpg", "AURORA/data/something/frames/110058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving seal pad down"}]} +{"id": "000000116038", "images": ["AURORA/data/something/frames/173175/first.jpg", "AURORA/data/something/frames/173175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball onto soil ground"}]} +{"id": "000000116039", "images": ["AURORA/data/something/frames/213040/first.jpg", "AURORA/data/something/frames/213040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering coin with sock"}]} +{"id": "000000116040", "images": ["AURORA/data/something/frames/11548/first.jpg", "AURORA/data/something/frames/11548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto plate"}]} +{"id": "000000116041", "images": ["AURORA/data/something/frames/70471/first.jpg", "AURORA/data/something/frames/70471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one mobile phone of many similar mobile phones on the table"}]} +{"id": "000000116042", "images": ["AURORA/data/something/frames/214369/first.jpg", "AURORA/data/something/frames/214369/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking box so that it falls over"}]} +{"id": "000000116043", "images": ["AURORA/data/something/frames/170919/first.jpg", "AURORA/data/something/frames/170919/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sponge behind mug"}]} +{"id": "000000116044", "images": ["AURORA/data/something/frames/54925/first.jpg", "AURORA/data/something/frames/54925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a spider with my fist"}]} +{"id": "000000116045", "images": ["AURORA/data/something/frames/31379/first.jpg", "AURORA/data/something/frames/31379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black hair tie from right to left"}]} +{"id": "000000116046", "images": ["AURORA/data/something/frames/159346/first.jpg", "AURORA/data/something/frames/159346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving door of cupboard"}]} +{"id": "000000116047", "images": ["AURORA/data/something/frames/213476/first.jpg", "AURORA/data/something/frames/213476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling beans onto hand"}]} +{"id": "000000116048", "images": ["AURORA/data/something/frames/132955/first.jpg", "AURORA/data/something/frames/132955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a screw on a surface"}]} +{"id": "000000116049", "images": ["AURORA/data/something/frames/125775/first.jpg", "AURORA/data/something/frames/125775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar next to saltshaker"}]} +{"id": "000000116050", "images": ["AURORA/data/something/frames/126925/first.jpg", "AURORA/data/something/frames/126925/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pen cap so that it deforms"}]} +{"id": "000000116051", "images": ["AURORA/data/something/frames/70337/first.jpg", "AURORA/data/something/frames/70337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching lid to bottle"}]} +{"id": "000000116052", "images": ["AURORA/data/something/frames/110661/first.jpg", "AURORA/data/something/frames/110661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) nose of my face"}]} +{"id": "000000116053", "images": ["AURORA/data/something/frames/172563/first.jpg", "AURORA/data/something/frames/172563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000116054", "images": ["AURORA/data/something/frames/174764/first.jpg", "AURORA/data/something/frames/174764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000116055", "images": ["AURORA/data/something/frames/51547/first.jpg", "AURORA/data/something/frames/51547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charging cable into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000116056", "images": ["AURORA/data/something/frames/145057/first.jpg", "AURORA/data/something/frames/145057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a smartphone into a box"}]} +{"id": "000000116057", "images": ["AURORA/data/something/frames/20237/first.jpg", "AURORA/data/something/frames/20237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pencil from cupboard"}]} +{"id": "000000116058", "images": ["AURORA/data/something/frames/124637/first.jpg", "AURORA/data/something/frames/124637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from window with your camera"}]} +{"id": "000000116059", "images": ["AURORA/data/something/frames/78995/first.jpg", "AURORA/data/something/frames/78995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting copo with mug"}]} +{"id": "000000116060", "images": ["AURORA/data/something/frames/55969/first.jpg", "AURORA/data/something/frames/55969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottle cover"}]} +{"id": "000000116061", "images": ["AURORA/data/something/frames/169808/first.jpg", "AURORA/data/something/frames/169808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into iphone but pulling it right out as you remove your hand"}]} +{"id": "000000116062", "images": ["AURORA/data/something/frames/200682/first.jpg", "AURORA/data/something/frames/200682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting whisk up completely without letting it drop down"}]} +{"id": "000000116063", "images": ["AURORA/data/something/frames/189399/first.jpg", "AURORA/data/something/frames/189399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking toy so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116064", "images": ["AURORA/data/something/frames/137851/first.jpg", "AURORA/data/something/frames/137851/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116065", "images": ["AURORA/data/something/frames/84343/first.jpg", "AURORA/data/something/frames/84343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling duster from left to right"}]} +{"id": "000000116066", "images": ["AURORA/data/something/frames/219973/first.jpg", "AURORA/data/something/frames/219973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book up"}]} +{"id": "000000116067", "images": ["AURORA/data/something/frames/136669/first.jpg", "AURORA/data/something/frames/136669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging baby monitor cord into power outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116068", "images": ["AURORA/data/something/frames/196736/first.jpg", "AURORA/data/something/frames/196736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black brush from right to left"}]} +{"id": "000000116069", "images": ["AURORA/data/something/frames/56558/first.jpg", "AURORA/data/something/frames/56558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a watch"}]} +{"id": "000000116070", "images": ["AURORA/data/something/frames/171874/first.jpg", "AURORA/data/something/frames/171874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wine glas and cup away from each other"}]} +{"id": "000000116071", "images": ["AURORA/data/something/frames/43299/first.jpg", "AURORA/data/something/frames/43299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000116072", "images": ["AURORA/data/something/frames/161832/first.jpg", "AURORA/data/something/frames/161832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping napkin behind dustbin"}]} +{"id": "000000116073", "images": ["AURORA/data/something/frames/73196/first.jpg", "AURORA/data/something/frames/73196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen in front of a book"}]} +{"id": "000000116074", "images": ["AURORA/data/something/frames/192310/first.jpg", "AURORA/data/something/frames/192310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling brake pedal onto hand"}]} +{"id": "000000116075", "images": ["AURORA/data/something/frames/165723/first.jpg", "AURORA/data/something/frames/165723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lotion in front of small bottle"}]} +{"id": "000000116076", "images": ["AURORA/data/something/frames/112899/first.jpg", "AURORA/data/something/frames/112899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil sharpener onto cat"}]} +{"id": "000000116077", "images": ["AURORA/data/something/frames/203036/first.jpg", "AURORA/data/something/frames/203036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming pill bottle"}]} +{"id": "000000116078", "images": ["AURORA/data/something/frames/79626/first.jpg", "AURORA/data/something/frames/79626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116079", "images": ["AURORA/data/something/frames/98494/first.jpg", "AURORA/data/something/frames/98494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming baby play mat"}]} +{"id": "000000116080", "images": ["AURORA/data/something/frames/133384/first.jpg", "AURORA/data/something/frames/133384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering small bottle with box"}]} +{"id": "000000116081", "images": ["AURORA/data/something/frames/26702/first.jpg", "AURORA/data/something/frames/26702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spanner away from magnifying glass"}]} +{"id": "000000116082", "images": ["AURORA/data/something/frames/97329/first.jpg", "AURORA/data/something/frames/97329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sock down"}]} +{"id": "000000116083", "images": ["AURORA/data/something/frames/39075/first.jpg", "AURORA/data/something/frames/39075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing soap so that it almost falls off but doesn't"}]} +{"id": "000000116084", "images": ["AURORA/data/something/frames/196824/first.jpg", "AURORA/data/something/frames/196824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116085", "images": ["AURORA/data/something/frames/109685/first.jpg", "AURORA/data/something/frames/109685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting can into can holder"}]} +{"id": "000000116086", "images": ["AURORA/data/something/frames/133477/first.jpg", "AURORA/data/something/frames/133477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel just a little bit"}]} +{"id": "000000116087", "images": ["AURORA/data/something/frames/218426/first.jpg", "AURORA/data/something/frames/218426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissor closer to tool"}]} +{"id": "000000116088", "images": ["AURORA/data/something/frames/102272/first.jpg", "AURORA/data/something/frames/102272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116089", "images": ["AURORA/data/something/frames/190613/first.jpg", "AURORA/data/something/frames/190613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a book"}]} +{"id": "000000116090", "images": ["AURORA/data/something/frames/34319/first.jpg", "AURORA/data/something/frames/34319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tissue box in front of a dvd"}]} +{"id": "000000116091", "images": ["AURORA/data/something/frames/57569/first.jpg", "AURORA/data/something/frames/57569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting paper"}]} +{"id": "000000116092", "images": ["AURORA/data/something/frames/67480/first.jpg", "AURORA/data/something/frames/67480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a book next to a bottle"}]} +{"id": "000000116093", "images": ["AURORA/data/something/frames/30303/first.jpg", "AURORA/data/something/frames/30303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bottle"}]} +{"id": "000000116094", "images": ["AURORA/data/something/frames/59108/first.jpg", "AURORA/data/something/frames/59108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a pillow with a book on it"}]} +{"id": "000000116095", "images": ["AURORA/data/something/frames/43816/first.jpg", "AURORA/data/something/frames/43816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen off of bench"}]} +{"id": "000000116096", "images": ["AURORA/data/something/frames/19932/first.jpg", "AURORA/data/something/frames/19932/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a magnet keyholder to the door"}]} +{"id": "000000116097", "images": ["AURORA/data/something/frames/43675/first.jpg", "AURORA/data/something/frames/43675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing paint tube"}]} +{"id": "000000116098", "images": ["AURORA/data/something/frames/22215/first.jpg", "AURORA/data/something/frames/22215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching measuring tape with your camera"}]} +{"id": "000000116099", "images": ["AURORA/data/something/frames/147707/first.jpg", "AURORA/data/something/frames/147707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from newspaper with your camera"}]} +{"id": "000000116100", "images": ["AURORA/data/something/frames/209302/first.jpg", "AURORA/data/something/frames/209302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into box"}]} +{"id": "000000116101", "images": ["AURORA/data/something/frames/208012/first.jpg", "AURORA/data/something/frames/208012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle behind laptop"}]} +{"id": "000000116102", "images": ["AURORA/data/something/frames/68767/first.jpg", "AURORA/data/something/frames/68767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping jar over"}]} +{"id": "000000116103", "images": ["AURORA/data/something/frames/21304/first.jpg", "AURORA/data/something/frames/21304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hair brush next to a book"}]} +{"id": "000000116104", "images": ["AURORA/data/something/frames/67659/first.jpg", "AURORA/data/something/frames/67659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116105", "images": ["AURORA/data/something/frames/90235/first.jpg", "AURORA/data/something/frames/90235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116106", "images": ["AURORA/data/something/frames/195230/first.jpg", "AURORA/data/something/frames/195230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass across a surface without it falling down"}]} +{"id": "000000116107", "images": ["AURORA/data/something/frames/156392/first.jpg", "AURORA/data/something/frames/156392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000116108", "images": ["AURORA/data/something/frames/20107/first.jpg", "AURORA/data/something/frames/20107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box with bin"}]} +{"id": "000000116109", "images": ["AURORA/data/something/frames/22094/first.jpg", "AURORA/data/something/frames/22094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000116110", "images": ["AURORA/data/something/frames/104158/first.jpg", "AURORA/data/something/frames/104158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into phone charger"}]} +{"id": "000000116111", "images": ["AURORA/data/something/frames/94134/first.jpg", "AURORA/data/something/frames/94134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a smart phone from right to left"}]} +{"id": "000000116112", "images": ["AURORA/data/something/frames/209521/first.jpg", "AURORA/data/something/frames/209521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cup on the table on its side, not upright"}]} +{"id": "000000116113", "images": ["AURORA/data/something/frames/29792/first.jpg", "AURORA/data/something/frames/29792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking feet deodorant so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116114", "images": ["AURORA/data/something/frames/156299/first.jpg", "AURORA/data/something/frames/156299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting clothing"}]} +{"id": "000000116115", "images": ["AURORA/data/something/frames/62862/first.jpg", "AURORA/data/something/frames/62862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tube so that it deforms"}]} +{"id": "000000116116", "images": ["AURORA/data/something/frames/50831/first.jpg", "AURORA/data/something/frames/50831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000116117", "images": ["AURORA/data/something/frames/171067/first.jpg", "AURORA/data/something/frames/171067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling blocks up"}]} +{"id": "000000116118", "images": ["AURORA/data/something/frames/57406/first.jpg", "AURORA/data/something/frames/57406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding pants"}]} +{"id": "000000116119", "images": ["AURORA/data/something/frames/47457/first.jpg", "AURORA/data/something/frames/47457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys next to bag"}]} +{"id": "000000116120", "images": ["AURORA/data/something/frames/77643/first.jpg", "AURORA/data/something/frames/77643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking joystick so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116121", "images": ["AURORA/data/something/frames/40640/first.jpg", "AURORA/data/something/frames/40640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping gloves into a carton"}]} +{"id": "000000116122", "images": ["AURORA/data/something/frames/123823/first.jpg", "AURORA/data/something/frames/123823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass on a surface"}]} +{"id": "000000116123", "images": ["AURORA/data/something/frames/214020/first.jpg", "AURORA/data/something/frames/214020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a plastic pineapple on the table on its side, not upright"}]} +{"id": "000000116124", "images": ["AURORA/data/something/frames/105033/first.jpg", "AURORA/data/something/frames/105033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting metal into bowl"}]} +{"id": "000000116125", "images": ["AURORA/data/something/frames/208685/first.jpg", "AURORA/data/something/frames/208685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving package up"}]} +{"id": "000000116126", "images": ["AURORA/data/something/frames/156188/first.jpg", "AURORA/data/something/frames/156188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper towel"}]} +{"id": "000000116127", "images": ["AURORA/data/something/frames/205729/first.jpg", "AURORA/data/something/frames/205729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card next to scissors"}]} +{"id": "000000116128", "images": ["AURORA/data/something/frames/24798/first.jpg", "AURORA/data/something/frames/24798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping ice-cream up with spoon"}]} +{"id": "000000116129", "images": ["AURORA/data/something/frames/68428/first.jpg", "AURORA/data/something/frames/68428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping box over"}]} +{"id": "000000116130", "images": ["AURORA/data/something/frames/206020/first.jpg", "AURORA/data/something/frames/206020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending can so that it deforms"}]} +{"id": "000000116131", "images": ["AURORA/data/something/frames/12399/first.jpg", "AURORA/data/something/frames/12399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting towel"}]} +{"id": "000000116132", "images": ["AURORA/data/something/frames/218703/first.jpg", "AURORA/data/something/frames/218703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching umbrella with your camera"}]} +{"id": "000000116133", "images": ["AURORA/data/something/frames/213412/first.jpg", "AURORA/data/something/frames/213412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a box over"}]} +{"id": "000000116134", "images": ["AURORA/data/something/frames/149393/first.jpg", "AURORA/data/something/frames/149393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper into two pieces"}]} +{"id": "000000116135", "images": ["AURORA/data/something/frames/204894/first.jpg", "AURORA/data/something/frames/204894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of books without the stack collapsing"}]} +{"id": "000000116136", "images": ["AURORA/data/something/frames/133652/first.jpg", "AURORA/data/something/frames/133652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper sheet just a little bit"}]} +{"id": "000000116137", "images": ["AURORA/data/something/frames/21190/first.jpg", "AURORA/data/something/frames/21190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping mouse onto bed"}]} +{"id": "000000116138", "images": ["AURORA/data/something/frames/16977/first.jpg", "AURORA/data/something/frames/16977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a phone on a surface"}]} +{"id": "000000116139", "images": ["AURORA/data/something/frames/144403/first.jpg", "AURORA/data/something/frames/144403/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering canister with towel"}]} +{"id": "000000116140", "images": ["AURORA/data/something/frames/43893/first.jpg", "AURORA/data/something/frames/43893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 nail polish bottles onto a book"}]} +{"id": "000000116141", "images": ["AURORA/data/something/frames/1181/first.jpg", "AURORA/data/something/frames/1181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving post-it down"}]} +{"id": "000000116142", "images": ["AURORA/data/something/frames/170175/first.jpg", "AURORA/data/something/frames/170175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a book next to a spoon"}]} +{"id": "000000116143", "images": ["AURORA/data/something/frames/69025/first.jpg", "AURORA/data/something/frames/69025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a domino and a toy figurine closer to each other"}]} +{"id": "000000116144", "images": ["AURORA/data/something/frames/157315/first.jpg", "AURORA/data/something/frames/157315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting soft, braun slipper"}]} +{"id": "000000116145", "images": ["AURORA/data/something/frames/96620/first.jpg", "AURORA/data/something/frames/96620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering paper clip with paper"}]} +{"id": "000000116146", "images": ["AURORA/data/something/frames/20485/first.jpg", "AURORA/data/something/frames/20485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a vase from left to right"}]} +{"id": "000000116147", "images": ["AURORA/data/something/frames/193479/first.jpg", "AURORA/data/something/frames/193479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning orange post-it upside down"}]} +{"id": "000000116148", "images": ["AURORA/data/something/frames/59817/first.jpg", "AURORA/data/something/frames/59817/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a sticker to the fridge"}]} +{"id": "000000116149", "images": ["AURORA/data/something/frames/177638/first.jpg", "AURORA/data/something/frames/177638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing flower into two pieces"}]} +{"id": "000000116150", "images": ["AURORA/data/something/frames/30596/first.jpg", "AURORA/data/something/frames/30596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing banana onto bag"}]} +{"id": "000000116151", "images": ["AURORA/data/something/frames/182733/first.jpg", "AURORA/data/something/frames/182733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending skewer stick until it breaks"}]} +{"id": "000000116152", "images": ["AURORA/data/something/frames/68326/first.jpg", "AURORA/data/something/frames/68326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing window"}]} +{"id": "000000116153", "images": ["AURORA/data/something/frames/219561/first.jpg", "AURORA/data/something/frames/219561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 containers onto table"}]} +{"id": "000000116154", "images": ["AURORA/data/something/frames/88206/first.jpg", "AURORA/data/something/frames/88206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen and keys on the table"}]} +{"id": "000000116155", "images": ["AURORA/data/something/frames/56948/first.jpg", "AURORA/data/something/frames/56948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pen colliding with pencil and both are being deflected"}]} +{"id": "000000116156", "images": ["AURORA/data/something/frames/114426/first.jpg", "AURORA/data/something/frames/114426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning small tv set upside down"}]} +{"id": "000000116157", "images": ["AURORA/data/something/frames/139521/first.jpg", "AURORA/data/something/frames/139521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of remote control without letting it drop down"}]} +{"id": "000000116158", "images": ["AURORA/data/something/frames/59748/first.jpg", "AURORA/data/something/frames/59748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into smartphone"}]} +{"id": "000000116159", "images": ["AURORA/data/something/frames/136469/first.jpg", "AURORA/data/something/frames/136469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a cup upside down"}]} +{"id": "000000116160", "images": ["AURORA/data/something/frames/211799/first.jpg", "AURORA/data/something/frames/211799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup until it overflows"}]} +{"id": "000000116161", "images": ["AURORA/data/something/frames/202604/first.jpg", "AURORA/data/something/frames/202604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking plastic bottle so that it falls over"}]} +{"id": "000000116162", "images": ["AURORA/data/something/frames/54844/first.jpg", "AURORA/data/something/frames/54844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a potatoe with a fork"}]} +{"id": "000000116163", "images": ["AURORA/data/something/frames/107735/first.jpg", "AURORA/data/something/frames/107735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116164", "images": ["AURORA/data/something/frames/144987/first.jpg", "AURORA/data/something/frames/144987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding blanket"}]} +{"id": "000000116165", "images": ["AURORA/data/something/frames/191621/first.jpg", "AURORA/data/something/frames/191621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting charger cord"}]} +{"id": "000000116166", "images": ["AURORA/data/something/frames/123953/first.jpg", "AURORA/data/something/frames/123953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a groundnut so that it almost falls off but doesn't"}]} +{"id": "000000116167", "images": ["AURORA/data/something/frames/31662/first.jpg", "AURORA/data/something/frames/31662/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from sign post with your camera"}]} +{"id": "000000116168", "images": ["AURORA/data/something/frames/35073/first.jpg", "AURORA/data/something/frames/35073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a handkerchief so that it gets stretched"}]} +{"id": "000000116169", "images": ["AURORA/data/something/frames/86575/first.jpg", "AURORA/data/something/frames/86575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cup from left to right"}]} +{"id": "000000116170", "images": ["AURORA/data/something/frames/18227/first.jpg", "AURORA/data/something/frames/18227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping drink up with spoon"}]} +{"id": "000000116171", "images": ["AURORA/data/something/frames/51801/first.jpg", "AURORA/data/something/frames/51801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading cloth onto table"}]} +{"id": "000000116172", "images": ["AURORA/data/something/frames/166779/first.jpg", "AURORA/data/something/frames/166779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hair clip from left to right"}]} +{"id": "000000116173", "images": ["AURORA/data/something/frames/93264/first.jpg", "AURORA/data/something/frames/93264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a stuffed animal dog with a yard stick"}]} +{"id": "000000116174", "images": ["AURORA/data/something/frames/78164/first.jpg", "AURORA/data/something/frames/78164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a pair of pants"}]} +{"id": "000000116175", "images": ["AURORA/data/something/frames/60020/first.jpg", "AURORA/data/something/frames/60020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of book without letting it drop down"}]} +{"id": "000000116176", "images": ["AURORA/data/something/frames/73537/first.jpg", "AURORA/data/something/frames/73537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending metal wire so that it deforms"}]} +{"id": "000000116177", "images": ["AURORA/data/something/frames/47243/first.jpg", "AURORA/data/something/frames/47243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a planner with scissors on it"}]} +{"id": "000000116178", "images": ["AURORA/data/something/frames/141484/first.jpg", "AURORA/data/something/frames/141484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening the oven"}]} +{"id": "000000116179", "images": ["AURORA/data/something/frames/40838/first.jpg", "AURORA/data/something/frames/40838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a box upside down"}]} +{"id": "000000116180", "images": ["AURORA/data/something/frames/90563/first.jpg", "AURORA/data/something/frames/90563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding towel"}]} +{"id": "000000116181", "images": ["AURORA/data/something/frames/23780/first.jpg", "AURORA/data/something/frames/23780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a glass with a pen"}]} +{"id": "000000116182", "images": ["AURORA/data/something/frames/177572/first.jpg", "AURORA/data/something/frames/177572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a key into a lock"}]} +{"id": "000000116183", "images": ["AURORA/data/something/frames/135517/first.jpg", "AURORA/data/something/frames/135517/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pot with paper"}]} +{"id": "000000116184", "images": ["AURORA/data/something/frames/21637/first.jpg", "AURORA/data/something/frames/21637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: nail clipper being deflected from pen"}]} +{"id": "000000116185", "images": ["AURORA/data/something/frames/179459/first.jpg", "AURORA/data/something/frames/179459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a bottle, revealing a charger behind"}]} +{"id": "000000116186", "images": ["AURORA/data/something/frames/122159/first.jpg", "AURORA/data/something/frames/122159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging loader into jack"}]} +{"id": "000000116187", "images": ["AURORA/data/something/frames/73565/first.jpg", "AURORA/data/something/frames/73565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000116188", "images": ["AURORA/data/something/frames/181455/first.jpg", "AURORA/data/something/frames/181455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming dinosaur model"}]} +{"id": "000000116189", "images": ["AURORA/data/something/frames/168976/first.jpg", "AURORA/data/something/frames/168976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000116190", "images": ["AURORA/data/something/frames/161910/first.jpg", "AURORA/data/something/frames/161910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone with camera"}]} +{"id": "000000116191", "images": ["AURORA/data/something/frames/207873/first.jpg", "AURORA/data/something/frames/207873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of eraser"}]} +{"id": "000000116192", "images": ["AURORA/data/something/frames/18846/first.jpg", "AURORA/data/something/frames/18846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving magnet up"}]} +{"id": "000000116193", "images": ["AURORA/data/something/frames/78061/first.jpg", "AURORA/data/something/frames/78061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting something up completely without letting it drop down"}]} +{"id": "000000116194", "images": ["AURORA/data/something/frames/50281/first.jpg", "AURORA/data/something/frames/50281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a tele-commander and a plastic pot so they collide with each other"}]} +{"id": "000000116195", "images": ["AURORA/data/something/frames/155859/first.jpg", "AURORA/data/something/frames/155859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a plastic bottle, a water bottle and a glass on the table"}]} +{"id": "000000116196", "images": ["AURORA/data/something/frames/84519/first.jpg", "AURORA/data/something/frames/84519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of cds so the stack collapses"}]} +{"id": "000000116197", "images": ["AURORA/data/something/frames/180920/first.jpg", "AURORA/data/something/frames/180920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting notebook with pen"}]} +{"id": "000000116198", "images": ["AURORA/data/something/frames/117118/first.jpg", "AURORA/data/something/frames/117118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a glass over"}]} +{"id": "000000116199", "images": ["AURORA/data/something/frames/144159/first.jpg", "AURORA/data/something/frames/144159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a card into two pieces"}]} +{"id": "000000116200", "images": ["AURORA/data/something/frames/68721/first.jpg", "AURORA/data/something/frames/68721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a shirt"}]} +{"id": "000000116201", "images": ["AURORA/data/something/frames/38845/first.jpg", "AURORA/data/something/frames/38845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and marker away from each other"}]} +{"id": "000000116202", "images": ["AURORA/data/something/frames/139432/first.jpg", "AURORA/data/something/frames/139432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto foot"}]} +{"id": "000000116203", "images": ["AURORA/data/something/frames/67128/first.jpg", "AURORA/data/something/frames/67128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle in front of glass"}]} +{"id": "000000116204", "images": ["AURORA/data/something/frames/82217/first.jpg", "AURORA/data/something/frames/82217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ipad in front of bananas"}]} +{"id": "000000116205", "images": ["AURORA/data/something/frames/140433/first.jpg", "AURORA/data/something/frames/140433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto zink"}]} +{"id": "000000116206", "images": ["AURORA/data/something/frames/198964/first.jpg", "AURORA/data/something/frames/198964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a book"}]} +{"id": "000000116207", "images": ["AURORA/data/something/frames/3469/first.jpg", "AURORA/data/something/frames/3469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy, toy watch and box on the table"}]} +{"id": "000000116208", "images": ["AURORA/data/something/frames/34942/first.jpg", "AURORA/data/something/frames/34942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses, a beer bottle and a wallet on the table"}]} +{"id": "000000116209", "images": ["AURORA/data/something/frames/55605/first.jpg", "AURORA/data/something/frames/55605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter"}]} +{"id": "000000116210", "images": ["AURORA/data/something/frames/56029/first.jpg", "AURORA/data/something/frames/56029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing notepad paper into two pieces"}]} +{"id": "000000116211", "images": ["AURORA/data/something/frames/218865/first.jpg", "AURORA/data/something/frames/218865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing remote with scale"}]} +{"id": "000000116212", "images": ["AURORA/data/something/frames/175060/first.jpg", "AURORA/data/something/frames/175060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling wire out of box"}]} +{"id": "000000116213", "images": ["AURORA/data/something/frames/181926/first.jpg", "AURORA/data/something/frames/181926/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stapler onto red toy car"}]} +{"id": "000000116214", "images": ["AURORA/data/something/frames/187001/first.jpg", "AURORA/data/something/frames/187001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping tea off of a counter"}]} +{"id": "000000116215", "images": ["AURORA/data/something/frames/114149/first.jpg", "AURORA/data/something/frames/114149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mobile and another mobile so they collide with each other"}]} +{"id": "000000116216", "images": ["AURORA/data/something/frames/108259/first.jpg", "AURORA/data/something/frames/108259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something upright on the table"}]} +{"id": "000000116217", "images": ["AURORA/data/something/frames/139566/first.jpg", "AURORA/data/something/frames/139566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marble"}]} +{"id": "000000116218", "images": ["AURORA/data/something/frames/200260/first.jpg", "AURORA/data/something/frames/200260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into computer"}]} +{"id": "000000116219", "images": ["AURORA/data/something/frames/46206/first.jpg", "AURORA/data/something/frames/46206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen behind sunglasses"}]} +{"id": "000000116220", "images": ["AURORA/data/something/frames/168612/first.jpg", "AURORA/data/something/frames/168612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping scoop into canister"}]} +{"id": "000000116221", "images": ["AURORA/data/something/frames/117574/first.jpg", "AURORA/data/something/frames/117574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candy into a bin"}]} +{"id": "000000116222", "images": ["AURORA/data/something/frames/116894/first.jpg", "AURORA/data/something/frames/116894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting rubik's cube up completely without letting it drop down"}]} +{"id": "000000116223", "images": ["AURORA/data/something/frames/142594/first.jpg", "AURORA/data/something/frames/142594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching waste bin with your camera"}]} +{"id": "000000116224", "images": ["AURORA/data/something/frames/49057/first.jpg", "AURORA/data/something/frames/49057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping ketchup off of counter top"}]} +{"id": "000000116225", "images": ["AURORA/data/something/frames/51109/first.jpg", "AURORA/data/something/frames/51109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000116226", "images": ["AURORA/data/something/frames/159168/first.jpg", "AURORA/data/something/frames/159168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a shoe brush"}]} +{"id": "000000116227", "images": ["AURORA/data/something/frames/147379/first.jpg", "AURORA/data/something/frames/147379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charging cable into socket"}]} +{"id": "000000116228", "images": ["AURORA/data/something/frames/208136/first.jpg", "AURORA/data/something/frames/208136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bottle"}]} +{"id": "000000116229", "images": ["AURORA/data/something/frames/25872/first.jpg", "AURORA/data/something/frames/25872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife next to fork"}]} +{"id": "000000116230", "images": ["AURORA/data/something/frames/63681/first.jpg", "AURORA/data/something/frames/63681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glove and cell phone so they pass each other"}]} +{"id": "000000116231", "images": ["AURORA/data/something/frames/189969/first.jpg", "AURORA/data/something/frames/189969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving leaf down"}]} +{"id": "000000116232", "images": ["AURORA/data/something/frames/128468/first.jpg", "AURORA/data/something/frames/128468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing jar into fridge"}]} +{"id": "000000116233", "images": ["AURORA/data/something/frames/180577/first.jpg", "AURORA/data/something/frames/180577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue into two pieces"}]} +{"id": "000000116234", "images": ["AURORA/data/something/frames/217102/first.jpg", "AURORA/data/something/frames/217102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging battery charger into laptop"}]} +{"id": "000000116235", "images": ["AURORA/data/something/frames/54347/first.jpg", "AURORA/data/something/frames/54347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000116236", "images": ["AURORA/data/something/frames/213041/first.jpg", "AURORA/data/something/frames/213041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a dvd behind a container"}]} +{"id": "000000116237", "images": ["AURORA/data/something/frames/97076/first.jpg", "AURORA/data/something/frames/97076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing microwave"}]} +{"id": "000000116238", "images": ["AURORA/data/something/frames/131354/first.jpg", "AURORA/data/something/frames/131354/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of book without letting it drop down"}]} +{"id": "000000116239", "images": ["AURORA/data/something/frames/55934/first.jpg", "AURORA/data/something/frames/55934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen into glass"}]} +{"id": "000000116240", "images": ["AURORA/data/something/frames/219161/first.jpg", "AURORA/data/something/frames/219161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paint tube"}]} +{"id": "000000116241", "images": ["AURORA/data/something/frames/138291/first.jpg", "AURORA/data/something/frames/138291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying battery in sand"}]} +{"id": "000000116242", "images": ["AURORA/data/something/frames/2099/first.jpg", "AURORA/data/something/frames/2099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking toy wheel up"}]} +{"id": "000000116243", "images": ["AURORA/data/something/frames/155973/first.jpg", "AURORA/data/something/frames/155973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen from table"}]} +{"id": "000000116244", "images": ["AURORA/data/something/frames/7247/first.jpg", "AURORA/data/something/frames/7247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cube so that it almost falls off but doesn't"}]} +{"id": "000000116245", "images": ["AURORA/data/something/frames/55276/first.jpg", "AURORA/data/something/frames/55276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil into a pencil case"}]} +{"id": "000000116246", "images": ["AURORA/data/something/frames/135322/first.jpg", "AURORA/data/something/frames/135322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red toy car on a surface"}]} +{"id": "000000116247", "images": ["AURORA/data/something/frames/47589/first.jpg", "AURORA/data/something/frames/47589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling water canteen from right to left"}]} +{"id": "000000116248", "images": ["AURORA/data/something/frames/134434/first.jpg", "AURORA/data/something/frames/134434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging spoon out of hand towel"}]} +{"id": "000000116249", "images": ["AURORA/data/something/frames/176308/first.jpg", "AURORA/data/something/frames/176308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper and cellphone closer to each other"}]} +{"id": "000000116250", "images": ["AURORA/data/something/frames/152428/first.jpg", "AURORA/data/something/frames/152428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pen being deflected from binder"}]} +{"id": "000000116251", "images": ["AURORA/data/something/frames/99563/first.jpg", "AURORA/data/something/frames/99563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116252", "images": ["AURORA/data/something/frames/197717/first.jpg", "AURORA/data/something/frames/197717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching pen to wall"}]} +{"id": "000000116253", "images": ["AURORA/data/something/frames/74759/first.jpg", "AURORA/data/something/frames/74759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen upright on the table, so it falls on its side"}]} +{"id": "000000116254", "images": ["AURORA/data/something/frames/122389/first.jpg", "AURORA/data/something/frames/122389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pink golf ball colliding with pink golf ball and both are being deflected"}]} +{"id": "000000116255", "images": ["AURORA/data/something/frames/170580/first.jpg", "AURORA/data/something/frames/170580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling mobiles up"}]} +{"id": "000000116256", "images": ["AURORA/data/something/frames/37580/first.jpg", "AURORA/data/something/frames/37580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering laptop"}]} +{"id": "000000116257", "images": ["AURORA/data/something/frames/138317/first.jpg", "AURORA/data/something/frames/138317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming highlighter"}]} +{"id": "000000116258", "images": ["AURORA/data/something/frames/215316/first.jpg", "AURORA/data/something/frames/215316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into swicth but pulling it right out as you remove your hand"}]} +{"id": "000000116259", "images": ["AURORA/data/something/frames/107214/first.jpg", "AURORA/data/something/frames/107214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming black hat"}]} +{"id": "000000116260", "images": ["AURORA/data/something/frames/36364/first.jpg", "AURORA/data/something/frames/36364/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a remote with a pen"}]} +{"id": "000000116261", "images": ["AURORA/data/something/frames/186404/first.jpg", "AURORA/data/something/frames/186404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone and a wallet away from each other"}]} +{"id": "000000116262", "images": ["AURORA/data/something/frames/56629/first.jpg", "AURORA/data/something/frames/56629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of plate without letting it drop down"}]} +{"id": "000000116263", "images": ["AURORA/data/something/frames/75187/first.jpg", "AURORA/data/something/frames/75187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a spun onto the floor"}]} +{"id": "000000116264", "images": ["AURORA/data/something/frames/106583/first.jpg", "AURORA/data/something/frames/106583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling napkin onto laptop screen top"}]} +{"id": "000000116265", "images": ["AURORA/data/something/frames/66116/first.jpg", "AURORA/data/something/frames/66116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe up"}]} +{"id": "000000116266", "images": ["AURORA/data/something/frames/28586/first.jpg", "AURORA/data/something/frames/28586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging sketch pen out of sand"}]} +{"id": "000000116267", "images": ["AURORA/data/something/frames/175684/first.jpg", "AURORA/data/something/frames/175684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a container with a book"}]} +{"id": "000000116268", "images": ["AURORA/data/something/frames/106771/first.jpg", "AURORA/data/something/frames/106771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting teddy bear onto stool"}]} +{"id": "000000116269", "images": ["AURORA/data/something/frames/42931/first.jpg", "AURORA/data/something/frames/42931/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning lighter upside down"}]} +{"id": "000000116270", "images": ["AURORA/data/something/frames/110027/first.jpg", "AURORA/data/something/frames/110027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a blanket"}]} +{"id": "000000116271", "images": ["AURORA/data/something/frames/164301/first.jpg", "AURORA/data/something/frames/164301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending plastic plate so that it deforms"}]} +{"id": "000000116272", "images": ["AURORA/data/something/frames/105901/first.jpg", "AURORA/data/something/frames/105901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box on the edge of table so it is not supported and falls down"}]} +{"id": "000000116273", "images": ["AURORA/data/something/frames/56270/first.jpg", "AURORA/data/something/frames/56270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming black disc case"}]} +{"id": "000000116274", "images": ["AURORA/data/something/frames/178347/first.jpg", "AURORA/data/something/frames/178347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 board clips onto cookie box lid"}]} +{"id": "000000116275", "images": ["AURORA/data/something/frames/38828/first.jpg", "AURORA/data/something/frames/38828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting eye glasses up completely without letting it drop down"}]} +{"id": "000000116276", "images": ["AURORA/data/something/frames/50727/first.jpg", "AURORA/data/something/frames/50727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from pen with your camera"}]} +{"id": "000000116277", "images": ["AURORA/data/something/frames/138978/first.jpg", "AURORA/data/something/frames/138978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting towel up completely without letting it drop down"}]} +{"id": "000000116278", "images": ["AURORA/data/something/frames/55332/first.jpg", "AURORA/data/something/frames/55332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending incense stick until it breaks"}]} +{"id": "000000116279", "images": ["AURORA/data/something/frames/220813/first.jpg", "AURORA/data/something/frames/220813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116280", "images": ["AURORA/data/something/frames/126215/first.jpg", "AURORA/data/something/frames/126215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four underpants"}]} +{"id": "000000116281", "images": ["AURORA/data/something/frames/57816/first.jpg", "AURORA/data/something/frames/57816/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil sharpener behind bowl"}]} +{"id": "000000116282", "images": ["AURORA/data/something/frames/159172/first.jpg", "AURORA/data/something/frames/159172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keys closer to a camera"}]} +{"id": "000000116283", "images": ["AURORA/data/something/frames/15390/first.jpg", "AURORA/data/something/frames/15390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000116284", "images": ["AURORA/data/something/frames/190253/first.jpg", "AURORA/data/something/frames/190253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shaker towards the camera"}]} +{"id": "000000116285", "images": ["AURORA/data/something/frames/211478/first.jpg", "AURORA/data/something/frames/211478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hangar into box"}]} +{"id": "000000116286", "images": ["AURORA/data/something/frames/125349/first.jpg", "AURORA/data/something/frames/125349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116287", "images": ["AURORA/data/something/frames/93619/first.jpg", "AURORA/data/something/frames/93619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling paint tube from right to left"}]} +{"id": "000000116288", "images": ["AURORA/data/something/frames/198645/first.jpg", "AURORA/data/something/frames/198645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping candy onto notepad"}]} +{"id": "000000116289", "images": ["AURORA/data/something/frames/35241/first.jpg", "AURORA/data/something/frames/35241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding childs shirt"}]} +{"id": "000000116290", "images": ["AURORA/data/something/frames/146617/first.jpg", "AURORA/data/something/frames/146617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) stopper of bottle"}]} +{"id": "000000116291", "images": ["AURORA/data/something/frames/183412/first.jpg", "AURORA/data/something/frames/183412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000116292", "images": ["AURORA/data/something/frames/7011/first.jpg", "AURORA/data/something/frames/7011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching tape to couch"}]} +{"id": "000000116293", "images": ["AURORA/data/something/frames/118107/first.jpg", "AURORA/data/something/frames/118107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a paper clip off the table"}]} +{"id": "000000116294", "images": ["AURORA/data/something/frames/198878/first.jpg", "AURORA/data/something/frames/198878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling white sheet out of magazine"}]} +{"id": "000000116295", "images": ["AURORA/data/something/frames/63422/first.jpg", "AURORA/data/something/frames/63422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting notebook next to box"}]} +{"id": "000000116296", "images": ["AURORA/data/something/frames/154791/first.jpg", "AURORA/data/something/frames/154791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pen into bucket"}]} +{"id": "000000116297", "images": ["AURORA/data/something/frames/178368/first.jpg", "AURORA/data/something/frames/178368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116298", "images": ["AURORA/data/something/frames/100590/first.jpg", "AURORA/data/something/frames/100590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering my face"}]} +{"id": "000000116299", "images": ["AURORA/data/something/frames/68381/first.jpg", "AURORA/data/something/frames/68381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tea mug in front of candy"}]} +{"id": "000000116300", "images": ["AURORA/data/something/frames/170884/first.jpg", "AURORA/data/something/frames/170884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling curry leaves onto cloth"}]} +{"id": "000000116301", "images": ["AURORA/data/something/frames/12061/first.jpg", "AURORA/data/something/frames/12061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of duster without letting it drop down"}]} +{"id": "000000116302", "images": ["AURORA/data/something/frames/80449/first.jpg", "AURORA/data/something/frames/80449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening spectical box"}]} +{"id": "000000116303", "images": ["AURORA/data/something/frames/134089/first.jpg", "AURORA/data/something/frames/134089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling papers up"}]} +{"id": "000000116304", "images": ["AURORA/data/something/frames/80706/first.jpg", "AURORA/data/something/frames/80706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cotton swabs so that it deforms"}]} +{"id": "000000116305", "images": ["AURORA/data/something/frames/113748/first.jpg", "AURORA/data/something/frames/113748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pepper behind a box"}]} +{"id": "000000116306", "images": ["AURORA/data/something/frames/134893/first.jpg", "AURORA/data/something/frames/134893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping poker chip into cup"}]} +{"id": "000000116307", "images": ["AURORA/data/something/frames/139163/first.jpg", "AURORA/data/something/frames/139163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116308", "images": ["AURORA/data/something/frames/148321/first.jpg", "AURORA/data/something/frames/148321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116309", "images": ["AURORA/data/something/frames/68792/first.jpg", "AURORA/data/something/frames/68792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a bottle"}]} +{"id": "000000116310", "images": ["AURORA/data/something/frames/62/first.jpg", "AURORA/data/something/frames/62/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000116311", "images": ["AURORA/data/something/frames/20726/first.jpg", "AURORA/data/something/frames/20726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a phone with paper"}]} +{"id": "000000116312", "images": ["AURORA/data/something/frames/12581/first.jpg", "AURORA/data/something/frames/12581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ball and a block closer to each other"}]} +{"id": "000000116313", "images": ["AURORA/data/something/frames/73864/first.jpg", "AURORA/data/something/frames/73864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 bottles"}]} +{"id": "000000116314", "images": ["AURORA/data/something/frames/58539/first.jpg", "AURORA/data/something/frames/58539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a light bulb onto a cushion"}]} +{"id": "000000116315", "images": ["AURORA/data/something/frames/53688/first.jpg", "AURORA/data/something/frames/53688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cord into power outlet"}]} +{"id": "000000116316", "images": ["AURORA/data/something/frames/193755/first.jpg", "AURORA/data/something/frames/193755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking make-up out of toiletry bag"}]} +{"id": "000000116317", "images": ["AURORA/data/something/frames/171937/first.jpg", "AURORA/data/something/frames/171937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a pen into a pillowcase"}]} +{"id": "000000116318", "images": ["AURORA/data/something/frames/217387/first.jpg", "AURORA/data/something/frames/217387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pen top"}]} +{"id": "000000116319", "images": ["AURORA/data/something/frames/65252/first.jpg", "AURORA/data/something/frames/65252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coke onto post it"}]} +{"id": "000000116320", "images": ["AURORA/data/something/frames/112374/first.jpg", "AURORA/data/something/frames/112374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting three coins onto lid"}]} +{"id": "000000116321", "images": ["AURORA/data/something/frames/50492/first.jpg", "AURORA/data/something/frames/50492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching usb with your camera"}]} +{"id": "000000116322", "images": ["AURORA/data/something/frames/201002/first.jpg", "AURORA/data/something/frames/201002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plush up"}]} +{"id": "000000116323", "images": ["AURORA/data/something/frames/53329/first.jpg", "AURORA/data/something/frames/53329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000116324", "images": ["AURORA/data/something/frames/6551/first.jpg", "AURORA/data/something/frames/6551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling ipod from right to left"}]} +{"id": "000000116325", "images": ["AURORA/data/something/frames/151908/first.jpg", "AURORA/data/something/frames/151908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting camera lens"}]} +{"id": "000000116326", "images": ["AURORA/data/something/frames/23884/first.jpg", "AURORA/data/something/frames/23884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from left to right"}]} +{"id": "000000116327", "images": ["AURORA/data/something/frames/111777/first.jpg", "AURORA/data/something/frames/111777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling papers up"}]} +{"id": "000000116328", "images": ["AURORA/data/something/frames/139284/first.jpg", "AURORA/data/something/frames/139284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving screwdriver across a surface without it falling down"}]} +{"id": "000000116329", "images": ["AURORA/data/something/frames/76144/first.jpg", "AURORA/data/something/frames/76144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming a bottle of lotion"}]} +{"id": "000000116330", "images": ["AURORA/data/something/frames/189275/first.jpg", "AURORA/data/something/frames/189275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toy car from left to right"}]} +{"id": "000000116331", "images": ["AURORA/data/something/frames/183053/first.jpg", "AURORA/data/something/frames/183053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening an oven door"}]} +{"id": "000000116332", "images": ["AURORA/data/something/frames/52578/first.jpg", "AURORA/data/something/frames/52578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a comb so that it almost falls off but doesn't"}]} +{"id": "000000116333", "images": ["AURORA/data/something/frames/163473/first.jpg", "AURORA/data/something/frames/163473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping book onto bed"}]} +{"id": "000000116334", "images": ["AURORA/data/something/frames/8726/first.jpg", "AURORA/data/something/frames/8726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000116335", "images": ["AURORA/data/something/frames/139118/first.jpg", "AURORA/data/something/frames/139118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a socket plug into a socket"}]} +{"id": "000000116336", "images": ["AURORA/data/something/frames/121046/first.jpg", "AURORA/data/something/frames/121046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a match box and a lighter so they collide with each other"}]} +{"id": "000000116337", "images": ["AURORA/data/something/frames/115108/first.jpg", "AURORA/data/something/frames/115108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming advertisement board"}]} +{"id": "000000116338", "images": ["AURORA/data/something/frames/122979/first.jpg", "AURORA/data/something/frames/122979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coconut shell towards the camera"}]} +{"id": "000000116339", "images": ["AURORA/data/something/frames/33807/first.jpg", "AURORA/data/something/frames/33807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming mobile phone"}]} +{"id": "000000116340", "images": ["AURORA/data/something/frames/37196/first.jpg", "AURORA/data/something/frames/37196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking food container from table"}]} +{"id": "000000116341", "images": ["AURORA/data/something/frames/118373/first.jpg", "AURORA/data/something/frames/118373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball onto grass yard"}]} +{"id": "000000116342", "images": ["AURORA/data/something/frames/198004/first.jpg", "AURORA/data/something/frames/198004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping something off of something"}]} +{"id": "000000116343", "images": ["AURORA/data/something/frames/143382/first.jpg", "AURORA/data/something/frames/143382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pills into box"}]} +{"id": "000000116344", "images": ["AURORA/data/something/frames/173289/first.jpg", "AURORA/data/something/frames/173289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a card"}]} +{"id": "000000116345", "images": ["AURORA/data/something/frames/11131/first.jpg", "AURORA/data/something/frames/11131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ashtray up"}]} +{"id": "000000116346", "images": ["AURORA/data/something/frames/70193/first.jpg", "AURORA/data/something/frames/70193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a washcloth wet until water comes out"}]} +{"id": "000000116347", "images": ["AURORA/data/something/frames/31481/first.jpg", "AURORA/data/something/frames/31481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with a scoop"}]} +{"id": "000000116348", "images": ["AURORA/data/something/frames/50331/first.jpg", "AURORA/data/something/frames/50331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting puzzle dice on a surface"}]} +{"id": "000000116349", "images": ["AURORA/data/something/frames/122249/first.jpg", "AURORA/data/something/frames/122249/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling toy figures up"}]} +{"id": "000000116350", "images": ["AURORA/data/something/frames/180461/first.jpg", "AURORA/data/something/frames/180461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing hot case"}]} +{"id": "000000116351", "images": ["AURORA/data/something/frames/8789/first.jpg", "AURORA/data/something/frames/8789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting flash drive with ballpen"}]} +{"id": "000000116352", "images": ["AURORA/data/something/frames/192334/first.jpg", "AURORA/data/something/frames/192334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cardstock into two pieces"}]} +{"id": "000000116353", "images": ["AURORA/data/something/frames/43140/first.jpg", "AURORA/data/something/frames/43140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sugar pack"}]} +{"id": "000000116354", "images": ["AURORA/data/something/frames/25903/first.jpg", "AURORA/data/something/frames/25903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling mobile phones up"}]} +{"id": "000000116355", "images": ["AURORA/data/something/frames/1858/first.jpg", "AURORA/data/something/frames/1858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy-car and toy-car so they pass each other"}]} +{"id": "000000116356", "images": ["AURORA/data/something/frames/7538/first.jpg", "AURORA/data/something/frames/7538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a card so that it deforms"}]} +{"id": "000000116357", "images": ["AURORA/data/something/frames/50660/first.jpg", "AURORA/data/something/frames/50660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass upright on the table"}]} +{"id": "000000116358", "images": ["AURORA/data/something/frames/185715/first.jpg", "AURORA/data/something/frames/185715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000116359", "images": ["AURORA/data/something/frames/149631/first.jpg", "AURORA/data/something/frames/149631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking scotch tape up"}]} +{"id": "000000116360", "images": ["AURORA/data/something/frames/60672/first.jpg", "AURORA/data/something/frames/60672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning shampoo bottle upside down"}]} +{"id": "000000116361", "images": ["AURORA/data/something/frames/198092/first.jpg", "AURORA/data/something/frames/198092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching hair dryer with your camera"}]} +{"id": "000000116362", "images": ["AURORA/data/something/frames/192115/first.jpg", "AURORA/data/something/frames/192115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper just a little bit"}]} +{"id": "000000116363", "images": ["AURORA/data/something/frames/36471/first.jpg", "AURORA/data/something/frames/36471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into bottle, but missing so it spills next to it"}]} +{"id": "000000116364", "images": ["AURORA/data/something/frames/118911/first.jpg", "AURORA/data/something/frames/118911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving container closer to another one"}]} +{"id": "000000116365", "images": ["AURORA/data/something/frames/144068/first.jpg", "AURORA/data/something/frames/144068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming plants"}]} +{"id": "000000116366", "images": ["AURORA/data/something/frames/104609/first.jpg", "AURORA/data/something/frames/104609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving door stopper down"}]} +{"id": "000000116367", "images": ["AURORA/data/something/frames/187312/first.jpg", "AURORA/data/something/frames/187312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green headlight from left to right"}]} +{"id": "000000116368", "images": ["AURORA/data/something/frames/57635/first.jpg", "AURORA/data/something/frames/57635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug across a surface without it falling down"}]} +{"id": "000000116369", "images": ["AURORA/data/something/frames/87660/first.jpg", "AURORA/data/something/frames/87660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with lighter on it"}]} +{"id": "000000116370", "images": ["AURORA/data/something/frames/105758/first.jpg", "AURORA/data/something/frames/105758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a remote"}]} +{"id": "000000116371", "images": ["AURORA/data/something/frames/194669/first.jpg", "AURORA/data/something/frames/194669/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a notebook upright on the table, so it falls on its side"}]} +{"id": "000000116372", "images": ["AURORA/data/something/frames/200687/first.jpg", "AURORA/data/something/frames/200687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000116373", "images": ["AURORA/data/something/frames/62820/first.jpg", "AURORA/data/something/frames/62820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking pillow so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116374", "images": ["AURORA/data/something/frames/154557/first.jpg", "AURORA/data/something/frames/154557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors underneath dishwasher door"}]} +{"id": "000000116375", "images": ["AURORA/data/something/frames/48674/first.jpg", "AURORA/data/something/frames/48674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a matchbox over"}]} +{"id": "000000116376", "images": ["AURORA/data/something/frames/50424/first.jpg", "AURORA/data/something/frames/50424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from left to right"}]} +{"id": "000000116377", "images": ["AURORA/data/something/frames/39791/first.jpg", "AURORA/data/something/frames/39791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen into drawer"}]} +{"id": "000000116378", "images": ["AURORA/data/something/frames/2635/first.jpg", "AURORA/data/something/frames/2635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an apple on the edge of chair so it is not supported and falls down"}]} +{"id": "000000116379", "images": ["AURORA/data/something/frames/87133/first.jpg", "AURORA/data/something/frames/87133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning drink upside down"}]} +{"id": "000000116380", "images": ["AURORA/data/something/frames/84982/first.jpg", "AURORA/data/something/frames/84982/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching banana bunch with your camera"}]} +{"id": "000000116381", "images": ["AURORA/data/something/frames/140355/first.jpg", "AURORA/data/something/frames/140355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into an outlet"}]} +{"id": "000000116382", "images": ["AURORA/data/something/frames/74717/first.jpg", "AURORA/data/something/frames/74717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candy into basket"}]} +{"id": "000000116383", "images": ["AURORA/data/something/frames/213467/first.jpg", "AURORA/data/something/frames/213467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming white candle"}]} +{"id": "000000116384", "images": ["AURORA/data/something/frames/189193/first.jpg", "AURORA/data/something/frames/189193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking cup up"}]} +{"id": "000000116385", "images": ["AURORA/data/something/frames/21284/first.jpg", "AURORA/data/something/frames/21284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming jackfruit"}]} +{"id": "000000116386", "images": ["AURORA/data/something/frames/158153/first.jpg", "AURORA/data/something/frames/158153/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a portable charger into a wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116387", "images": ["AURORA/data/something/frames/78318/first.jpg", "AURORA/data/something/frames/78318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into surge protector"}]} +{"id": "000000116388", "images": ["AURORA/data/something/frames/109272/first.jpg", "AURORA/data/something/frames/109272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving my phone up"}]} +{"id": "000000116389", "images": ["AURORA/data/something/frames/87848/first.jpg", "AURORA/data/something/frames/87848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup upright on the table"}]} +{"id": "000000116390", "images": ["AURORA/data/something/frames/66832/first.jpg", "AURORA/data/something/frames/66832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping board clip into glass bowl"}]} +{"id": "000000116391", "images": ["AURORA/data/something/frames/50781/first.jpg", "AURORA/data/something/frames/50781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors on a surface"}]} +{"id": "000000116392", "images": ["AURORA/data/something/frames/55006/first.jpg", "AURORA/data/something/frames/55006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening door"}]} +{"id": "000000116393", "images": ["AURORA/data/something/frames/175876/first.jpg", "AURORA/data/something/frames/175876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pen with sheets of paper"}]} +{"id": "000000116394", "images": ["AURORA/data/something/frames/147906/first.jpg", "AURORA/data/something/frames/147906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pencil colliding with a pen and both are being deflected"}]} +{"id": "000000116395", "images": ["AURORA/data/something/frames/47960/first.jpg", "AURORA/data/something/frames/47960/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding sheet"}]} +{"id": "000000116396", "images": ["AURORA/data/something/frames/177267/first.jpg", "AURORA/data/something/frames/177267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into power outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116397", "images": ["AURORA/data/something/frames/86235/first.jpg", "AURORA/data/something/frames/86235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cd player and usb closer to each other"}]} +{"id": "000000116398", "images": ["AURORA/data/something/frames/53565/first.jpg", "AURORA/data/something/frames/53565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marble"}]} +{"id": "000000116399", "images": ["AURORA/data/something/frames/4473/first.jpg", "AURORA/data/something/frames/4473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a facial wash up"}]} +{"id": "000000116400", "images": ["AURORA/data/something/frames/76320/first.jpg", "AURORA/data/something/frames/76320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000116401", "images": ["AURORA/data/something/frames/104554/first.jpg", "AURORA/data/something/frames/104554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling magazines up"}]} +{"id": "000000116402", "images": ["AURORA/data/something/frames/77100/first.jpg", "AURORA/data/something/frames/77100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup"}]} +{"id": "000000116403", "images": ["AURORA/data/something/frames/5279/first.jpg", "AURORA/data/something/frames/5279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lip balm and lip gloss so they collide with each other"}]} +{"id": "000000116404", "images": ["AURORA/data/something/frames/24802/first.jpg", "AURORA/data/something/frames/24802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a shot glass with nails in it over, so nails in it falls out"}]} +{"id": "000000116405", "images": ["AURORA/data/something/frames/62007/first.jpg", "AURORA/data/something/frames/62007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mirror into a pouch"}]} +{"id": "000000116406", "images": ["AURORA/data/something/frames/120802/first.jpg", "AURORA/data/something/frames/120802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a can with a phone"}]} +{"id": "000000116407", "images": ["AURORA/data/something/frames/14378/first.jpg", "AURORA/data/something/frames/14378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping crumbs off of a table"}]} +{"id": "000000116408", "images": ["AURORA/data/something/frames/179024/first.jpg", "AURORA/data/something/frames/179024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing wadded up papertowel off of table"}]} +{"id": "000000116409", "images": ["AURORA/data/something/frames/70543/first.jpg", "AURORA/data/something/frames/70543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116410", "images": ["AURORA/data/something/frames/140987/first.jpg", "AURORA/data/something/frames/140987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116411", "images": ["AURORA/data/something/frames/144761/first.jpg", "AURORA/data/something/frames/144761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white toy car away from hair clip"}]} +{"id": "000000116412", "images": ["AURORA/data/something/frames/3306/first.jpg", "AURORA/data/something/frames/3306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000116413", "images": ["AURORA/data/something/frames/95557/first.jpg", "AURORA/data/something/frames/95557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000116414", "images": ["AURORA/data/something/frames/106838/first.jpg", "AURORA/data/something/frames/106838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: salt shaker colliding with pepper shaker and both are being deflected"}]} +{"id": "000000116415", "images": ["AURORA/data/something/frames/104884/first.jpg", "AURORA/data/something/frames/104884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a comb upright on the table, so it falls on its side"}]} +{"id": "000000116416", "images": ["AURORA/data/something/frames/104415/first.jpg", "AURORA/data/something/frames/104415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning waterbottle upside down"}]} +{"id": "000000116417", "images": ["AURORA/data/something/frames/96992/first.jpg", "AURORA/data/something/frames/96992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000116418", "images": ["AURORA/data/something/frames/176652/first.jpg", "AURORA/data/something/frames/176652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a box so that it falls over"}]} +{"id": "000000116419", "images": ["AURORA/data/something/frames/175814/first.jpg", "AURORA/data/something/frames/175814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something away from something"}]} +{"id": "000000116420", "images": ["AURORA/data/something/frames/79863/first.jpg", "AURORA/data/something/frames/79863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000116421", "images": ["AURORA/data/something/frames/119614/first.jpg", "AURORA/data/something/frames/119614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting big filter with pen"}]} +{"id": "000000116422", "images": ["AURORA/data/something/frames/116708/first.jpg", "AURORA/data/something/frames/116708/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug head into an extension lead"}]} +{"id": "000000116423", "images": ["AURORA/data/something/frames/127312/first.jpg", "AURORA/data/something/frames/127312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a phone upside down"}]} +{"id": "000000116424", "images": ["AURORA/data/something/frames/157768/first.jpg", "AURORA/data/something/frames/157768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming something"}]} +{"id": "000000116425", "images": ["AURORA/data/something/frames/23174/first.jpg", "AURORA/data/something/frames/23174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of shot glass"}]} +{"id": "000000116426", "images": ["AURORA/data/something/frames/98142/first.jpg", "AURORA/data/something/frames/98142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000116427", "images": ["AURORA/data/something/frames/6200/first.jpg", "AURORA/data/something/frames/6200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping drinking glass over"}]} +{"id": "000000116428", "images": ["AURORA/data/something/frames/163292/first.jpg", "AURORA/data/something/frames/163292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail varnish from left to right"}]} +{"id": "000000116429", "images": ["AURORA/data/something/frames/187730/first.jpg", "AURORA/data/something/frames/187730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000116430", "images": ["AURORA/data/something/frames/177838/first.jpg", "AURORA/data/something/frames/177838/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an electric juicer in front of a glass"}]} +{"id": "000000116431", "images": ["AURORA/data/something/frames/116079/first.jpg", "AURORA/data/something/frames/116079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking discs so that it falls over"}]} +{"id": "000000116432", "images": ["AURORA/data/something/frames/86532/first.jpg", "AURORA/data/something/frames/86532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lip gloss in a pile of other lip glosses"}]} +{"id": "000000116433", "images": ["AURORA/data/something/frames/126784/first.jpg", "AURORA/data/something/frames/126784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000116434", "images": ["AURORA/data/something/frames/62463/first.jpg", "AURORA/data/something/frames/62463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring beer into a wash basin"}]} +{"id": "000000116435", "images": ["AURORA/data/something/frames/115216/first.jpg", "AURORA/data/something/frames/115216/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting highlighter in front of glass"}]} +{"id": "000000116436", "images": ["AURORA/data/something/frames/76862/first.jpg", "AURORA/data/something/frames/76862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging ipad out of blanket"}]} +{"id": "000000116437", "images": ["AURORA/data/something/frames/169663/first.jpg", "AURORA/data/something/frames/169663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting blinds"}]} +{"id": "000000116438", "images": ["AURORA/data/something/frames/108564/first.jpg", "AURORA/data/something/frames/108564/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of scotch tape so that it separates into two pieces"}]} +{"id": "000000116439", "images": ["AURORA/data/something/frames/132760/first.jpg", "AURORA/data/something/frames/132760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a razor on the edge of a desk so it is not supported and falls down"}]} +{"id": "000000116440", "images": ["AURORA/data/something/frames/159824/first.jpg", "AURORA/data/something/frames/159824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a tub with plastic bricks over, so some of the plastic bricks falls out"}]} +{"id": "000000116441", "images": ["AURORA/data/something/frames/111463/first.jpg", "AURORA/data/something/frames/111463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tablet on a surface"}]} +{"id": "000000116442", "images": ["AURORA/data/something/frames/184524/first.jpg", "AURORA/data/something/frames/184524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 toy cars"}]} +{"id": "000000116443", "images": ["AURORA/data/something/frames/50659/first.jpg", "AURORA/data/something/frames/50659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug extender into the wall outlet"}]} +{"id": "000000116444", "images": ["AURORA/data/something/frames/167525/first.jpg", "AURORA/data/something/frames/167525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of containers so the stack collapses"}]} +{"id": "000000116445", "images": ["AURORA/data/something/frames/88721/first.jpg", "AURORA/data/something/frames/88721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling carriage clip from behind of a bicycle"}]} +{"id": "000000116446", "images": ["AURORA/data/something/frames/49754/first.jpg", "AURORA/data/something/frames/49754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000116447", "images": ["AURORA/data/something/frames/14467/first.jpg", "AURORA/data/something/frames/14467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a beer can from the table"}]} +{"id": "000000116448", "images": ["AURORA/data/something/frames/85070/first.jpg", "AURORA/data/something/frames/85070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking balpoint"}]} +{"id": "000000116449", "images": ["AURORA/data/something/frames/57146/first.jpg", "AURORA/data/something/frames/57146/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting setsquare into mug"}]} +{"id": "000000116450", "images": ["AURORA/data/something/frames/149633/first.jpg", "AURORA/data/something/frames/149633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red spoon on a surface"}]} +{"id": "000000116451", "images": ["AURORA/data/something/frames/206013/first.jpg", "AURORA/data/something/frames/206013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle away from the camera"}]} +{"id": "000000116452", "images": ["AURORA/data/something/frames/105752/first.jpg", "AURORA/data/something/frames/105752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a glass upside down"}]} +{"id": "000000116453", "images": ["AURORA/data/something/frames/170547/first.jpg", "AURORA/data/something/frames/170547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking crayon out of box"}]} +{"id": "000000116454", "images": ["AURORA/data/something/frames/136873/first.jpg", "AURORA/data/something/frames/136873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the remote across a surface without it falling down"}]} +{"id": "000000116455", "images": ["AURORA/data/something/frames/219599/first.jpg", "AURORA/data/something/frames/219599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a mug"}]} +{"id": "000000116456", "images": ["AURORA/data/something/frames/197721/first.jpg", "AURORA/data/something/frames/197721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving watch towards the camera"}]} +{"id": "000000116457", "images": ["AURORA/data/something/frames/105668/first.jpg", "AURORA/data/something/frames/105668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a kid so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116458", "images": ["AURORA/data/something/frames/195639/first.jpg", "AURORA/data/something/frames/195639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing scarves into a bag"}]} +{"id": "000000116459", "images": ["AURORA/data/something/frames/94139/first.jpg", "AURORA/data/something/frames/94139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup away from the camera"}]} +{"id": "000000116460", "images": ["AURORA/data/something/frames/182580/first.jpg", "AURORA/data/something/frames/182580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping toothpaste over"}]} +{"id": "000000116461", "images": ["AURORA/data/something/frames/211127/first.jpg", "AURORA/data/something/frames/211127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116462", "images": ["AURORA/data/something/frames/176346/first.jpg", "AURORA/data/something/frames/176346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending fork so that it deforms"}]} +{"id": "000000116463", "images": ["AURORA/data/something/frames/48989/first.jpg", "AURORA/data/something/frames/48989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box in front of a comb"}]} +{"id": "000000116464", "images": ["AURORA/data/something/frames/121481/first.jpg", "AURORA/data/something/frames/121481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stone and ring closer to each other"}]} +{"id": "000000116465", "images": ["AURORA/data/something/frames/37627/first.jpg", "AURORA/data/something/frames/37627/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a container, revealing adapter behind"}]} +{"id": "000000116466", "images": ["AURORA/data/something/frames/17036/first.jpg", "AURORA/data/something/frames/17036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pencil onto desk"}]} +{"id": "000000116467", "images": ["AURORA/data/something/frames/72855/first.jpg", "AURORA/data/something/frames/72855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hammer on the edge of a desk so it is not supported and falls down"}]} +{"id": "000000116468", "images": ["AURORA/data/something/frames/121844/first.jpg", "AURORA/data/something/frames/121844/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling box from right to left"}]} +{"id": "000000116469", "images": ["AURORA/data/something/frames/31757/first.jpg", "AURORA/data/something/frames/31757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stick down"}]} +{"id": "000000116470", "images": ["AURORA/data/something/frames/209003/first.jpg", "AURORA/data/something/frames/209003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116471", "images": ["AURORA/data/something/frames/155471/first.jpg", "AURORA/data/something/frames/155471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with cereal over, so cereal falls out"}]} +{"id": "000000116472", "images": ["AURORA/data/something/frames/219213/first.jpg", "AURORA/data/something/frames/219213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one shoe off a table of shoes"}]} +{"id": "000000116473", "images": ["AURORA/data/something/frames/3172/first.jpg", "AURORA/data/something/frames/3172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000116474", "images": ["AURORA/data/something/frames/1788/first.jpg", "AURORA/data/something/frames/1788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking shoe up"}]} +{"id": "000000116475", "images": ["AURORA/data/something/frames/39595/first.jpg", "AURORA/data/something/frames/39595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cub down"}]} +{"id": "000000116476", "images": ["AURORA/data/something/frames/116416/first.jpg", "AURORA/data/something/frames/116416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a container away from a comb"}]} +{"id": "000000116477", "images": ["AURORA/data/something/frames/149040/first.jpg", "AURORA/data/something/frames/149040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 4 of laundry buckle onto a plastic bag"}]} +{"id": "000000116478", "images": ["AURORA/data/something/frames/50679/first.jpg", "AURORA/data/something/frames/50679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pencil with shirt"}]} +{"id": "000000116479", "images": ["AURORA/data/something/frames/188407/first.jpg", "AURORA/data/something/frames/188407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116480", "images": ["AURORA/data/something/frames/162102/first.jpg", "AURORA/data/something/frames/162102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug"}]} +{"id": "000000116481", "images": ["AURORA/data/something/frames/211849/first.jpg", "AURORA/data/something/frames/211849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing green face powder"}]} +{"id": "000000116482", "images": ["AURORA/data/something/frames/205695/first.jpg", "AURORA/data/something/frames/205695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cookies and spoon on the table"}]} +{"id": "000000116483", "images": ["AURORA/data/something/frames/29474/first.jpg", "AURORA/data/something/frames/29474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a coffee can"}]} +{"id": "000000116484", "images": ["AURORA/data/something/frames/165549/first.jpg", "AURORA/data/something/frames/165549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding something"}]} +{"id": "000000116485", "images": ["AURORA/data/something/frames/7490/first.jpg", "AURORA/data/something/frames/7490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of notebook without letting it drop down"}]} +{"id": "000000116486", "images": ["AURORA/data/something/frames/185094/first.jpg", "AURORA/data/something/frames/185094/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting tuner"}]} +{"id": "000000116487", "images": ["AURORA/data/something/frames/97295/first.jpg", "AURORA/data/something/frames/97295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pick closer to eraser"}]} +{"id": "000000116488", "images": ["AURORA/data/something/frames/111079/first.jpg", "AURORA/data/something/frames/111079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into wall"}]} +{"id": "000000116489", "images": ["AURORA/data/something/frames/387/first.jpg", "AURORA/data/something/frames/387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into mug"}]} +{"id": "000000116490", "images": ["AURORA/data/something/frames/200991/first.jpg", "AURORA/data/something/frames/200991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glasses"}]} +{"id": "000000116491", "images": ["AURORA/data/something/frames/160372/first.jpg", "AURORA/data/something/frames/160372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a paper clip so that it deforms"}]} +{"id": "000000116492", "images": ["AURORA/data/something/frames/203523/first.jpg", "AURORA/data/something/frames/203523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper into two pieces"}]} +{"id": "000000116493", "images": ["AURORA/data/something/frames/146957/first.jpg", "AURORA/data/something/frames/146957/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a hat from left to right"}]} +{"id": "000000116494", "images": ["AURORA/data/something/frames/56578/first.jpg", "AURORA/data/something/frames/56578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering tablet"}]} +{"id": "000000116495", "images": ["AURORA/data/something/frames/62479/first.jpg", "AURORA/data/something/frames/62479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling coins up"}]} +{"id": "000000116496", "images": ["AURORA/data/something/frames/32293/first.jpg", "AURORA/data/something/frames/32293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with rock on it"}]} +{"id": "000000116497", "images": ["AURORA/data/something/frames/103900/first.jpg", "AURORA/data/something/frames/103900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a plastic bottle closer to a box"}]} +{"id": "000000116498", "images": ["AURORA/data/something/frames/197985/first.jpg", "AURORA/data/something/frames/197985/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of toys so the stack collapses"}]} +{"id": "000000116499", "images": ["AURORA/data/something/frames/44616/first.jpg", "AURORA/data/something/frames/44616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116500", "images": ["AURORA/data/something/frames/17765/first.jpg", "AURORA/data/something/frames/17765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a flashlight from left to right"}]} +{"id": "000000116501", "images": ["AURORA/data/something/frames/163383/first.jpg", "AURORA/data/something/frames/163383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key and comb away from each other"}]} +{"id": "000000116502", "images": ["AURORA/data/something/frames/93698/first.jpg", "AURORA/data/something/frames/93698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing paper punch from left to right"}]} +{"id": "000000116503", "images": ["AURORA/data/something/frames/5736/first.jpg", "AURORA/data/something/frames/5736/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling liquid onto kitchen counter"}]} +{"id": "000000116504", "images": ["AURORA/data/something/frames/140301/first.jpg", "AURORA/data/something/frames/140301/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope into two pieces"}]} +{"id": "000000116505", "images": ["AURORA/data/something/frames/52613/first.jpg", "AURORA/data/something/frames/52613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a cardboard with a helmet on it"}]} +{"id": "000000116506", "images": ["AURORA/data/something/frames/214236/first.jpg", "AURORA/data/something/frames/214236/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a knife into a box"}]} +{"id": "000000116507", "images": ["AURORA/data/something/frames/9641/first.jpg", "AURORA/data/something/frames/9641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 staplers"}]} +{"id": "000000116508", "images": ["AURORA/data/something/frames/8445/first.jpg", "AURORA/data/something/frames/8445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring green liquid into a glass"}]} +{"id": "000000116509", "images": ["AURORA/data/something/frames/139431/first.jpg", "AURORA/data/something/frames/139431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening drawer"}]} +{"id": "000000116510", "images": ["AURORA/data/something/frames/118550/first.jpg", "AURORA/data/something/frames/118550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into mug"}]} +{"id": "000000116511", "images": ["AURORA/data/something/frames/180540/first.jpg", "AURORA/data/something/frames/180540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet onto coaster"}]} +{"id": "000000116512", "images": ["AURORA/data/something/frames/17886/first.jpg", "AURORA/data/something/frames/17886/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a brush closer to a pencil case"}]} +{"id": "000000116513", "images": ["AURORA/data/something/frames/100225/first.jpg", "AURORA/data/something/frames/100225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming orange sharpner"}]} +{"id": "000000116514", "images": ["AURORA/data/something/frames/195448/first.jpg", "AURORA/data/something/frames/195448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling coffee mug from behind of box"}]} +{"id": "000000116515", "images": ["AURORA/data/something/frames/197908/first.jpg", "AURORA/data/something/frames/197908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallet away from remote"}]} +{"id": "000000116516", "images": ["AURORA/data/something/frames/203775/first.jpg", "AURORA/data/something/frames/203775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a stuffed bird onto the ground"}]} +{"id": "000000116517", "images": ["AURORA/data/something/frames/6253/first.jpg", "AURORA/data/something/frames/6253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000116518", "images": ["AURORA/data/something/frames/174280/first.jpg", "AURORA/data/something/frames/174280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a tablet away from a tissue box"}]} +{"id": "000000116519", "images": ["AURORA/data/something/frames/141406/first.jpg", "AURORA/data/something/frames/141406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying a purse in a blanket"}]} +{"id": "000000116520", "images": ["AURORA/data/something/frames/74309/first.jpg", "AURORA/data/something/frames/74309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading peanut butter onto bread"}]} +{"id": "000000116521", "images": ["AURORA/data/something/frames/12195/first.jpg", "AURORA/data/something/frames/12195/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of box"}]} +{"id": "000000116522", "images": ["AURORA/data/something/frames/108061/first.jpg", "AURORA/data/something/frames/108061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking brick"}]} +{"id": "000000116523", "images": ["AURORA/data/something/frames/18492/first.jpg", "AURORA/data/something/frames/18492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering paper with phone case"}]} +{"id": "000000116524", "images": ["AURORA/data/something/frames/97237/first.jpg", "AURORA/data/something/frames/97237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting microscope behind mouse"}]} +{"id": "000000116525", "images": ["AURORA/data/something/frames/44635/first.jpg", "AURORA/data/something/frames/44635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white board clip with metal rod"}]} +{"id": "000000116526", "images": ["AURORA/data/something/frames/220026/first.jpg", "AURORA/data/something/frames/220026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger up"}]} +{"id": "000000116527", "images": ["AURORA/data/something/frames/58567/first.jpg", "AURORA/data/something/frames/58567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chess piece on a surface"}]} +{"id": "000000116528", "images": ["AURORA/data/something/frames/42860/first.jpg", "AURORA/data/something/frames/42860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening car door"}]} +{"id": "000000116529", "images": ["AURORA/data/something/frames/105228/first.jpg", "AURORA/data/something/frames/105228/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker pen"}]} +{"id": "000000116530", "images": ["AURORA/data/something/frames/75201/first.jpg", "AURORA/data/something/frames/75201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116531", "images": ["AURORA/data/something/frames/80767/first.jpg", "AURORA/data/something/frames/80767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a chess board from left to right"}]} +{"id": "000000116532", "images": ["AURORA/data/something/frames/50632/first.jpg", "AURORA/data/something/frames/50632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope just a little bit"}]} +{"id": "000000116533", "images": ["AURORA/data/something/frames/14048/first.jpg", "AURORA/data/something/frames/14048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from right to left"}]} +{"id": "000000116534", "images": ["AURORA/data/something/frames/39568/first.jpg", "AURORA/data/something/frames/39568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking crayon"}]} +{"id": "000000116535", "images": ["AURORA/data/something/frames/53799/first.jpg", "AURORA/data/something/frames/53799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a chess board with a hand"}]} +{"id": "000000116536", "images": ["AURORA/data/something/frames/23151/first.jpg", "AURORA/data/something/frames/23151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking firm plastic up"}]} +{"id": "000000116537", "images": ["AURORA/data/something/frames/40327/first.jpg", "AURORA/data/something/frames/40327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: water bottle colliding with water bottle and both are being deflected"}]} +{"id": "000000116538", "images": ["AURORA/data/something/frames/96935/first.jpg", "AURORA/data/something/frames/96935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening car door"}]} +{"id": "000000116539", "images": ["AURORA/data/something/frames/25211/first.jpg", "AURORA/data/something/frames/25211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug away from glass"}]} +{"id": "000000116540", "images": ["AURORA/data/something/frames/6570/first.jpg", "AURORA/data/something/frames/6570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering wallet with bag"}]} +{"id": "000000116541", "images": ["AURORA/data/something/frames/188132/first.jpg", "AURORA/data/something/frames/188132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote control on a surface"}]} +{"id": "000000116542", "images": ["AURORA/data/something/frames/6268/first.jpg", "AURORA/data/something/frames/6268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending comb so that it deforms"}]} +{"id": "000000116543", "images": ["AURORA/data/something/frames/5877/first.jpg", "AURORA/data/something/frames/5877/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spray bottle on the edge of sofa so it is not supported and falls down"}]} +{"id": "000000116544", "images": ["AURORA/data/something/frames/87109/first.jpg", "AURORA/data/something/frames/87109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking clothes peg out of mug"}]} +{"id": "000000116545", "images": ["AURORA/data/something/frames/127420/first.jpg", "AURORA/data/something/frames/127420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bag out of a jar"}]} +{"id": "000000116546", "images": ["AURORA/data/something/frames/96021/first.jpg", "AURORA/data/something/frames/96021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking paper so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116547", "images": ["AURORA/data/something/frames/6303/first.jpg", "AURORA/data/something/frames/6303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a shirt"}]} +{"id": "000000116548", "images": ["AURORA/data/something/frames/117395/first.jpg", "AURORA/data/something/frames/117395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into giftbag"}]} +{"id": "000000116549", "images": ["AURORA/data/something/frames/70671/first.jpg", "AURORA/data/something/frames/70671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting stamp pad with remote"}]} +{"id": "000000116550", "images": ["AURORA/data/something/frames/29972/first.jpg", "AURORA/data/something/frames/29972/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching earphone to laptop"}]} +{"id": "000000116551", "images": ["AURORA/data/something/frames/56039/first.jpg", "AURORA/data/something/frames/56039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with rule on it"}]} +{"id": "000000116552", "images": ["AURORA/data/something/frames/33598/first.jpg", "AURORA/data/something/frames/33598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting trash bags upright on the table, so it falls on its side"}]} +{"id": "000000116553", "images": ["AURORA/data/something/frames/163471/first.jpg", "AURORA/data/something/frames/163471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening cd box"}]} +{"id": "000000116554", "images": ["AURORA/data/something/frames/100623/first.jpg", "AURORA/data/something/frames/100623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ring down"}]} +{"id": "000000116555", "images": ["AURORA/data/something/frames/63058/first.jpg", "AURORA/data/something/frames/63058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a reusable grocery bag out of its holder"}]} +{"id": "000000116556", "images": ["AURORA/data/something/frames/15547/first.jpg", "AURORA/data/something/frames/15547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000116557", "images": ["AURORA/data/something/frames/157680/first.jpg", "AURORA/data/something/frames/157680/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pillow"}]} +{"id": "000000116558", "images": ["AURORA/data/something/frames/134377/first.jpg", "AURORA/data/something/frames/134377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling the phone from right to left"}]} +{"id": "000000116559", "images": ["AURORA/data/something/frames/155848/first.jpg", "AURORA/data/something/frames/155848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a doll so that it falls over"}]} +{"id": "000000116560", "images": ["AURORA/data/something/frames/82439/first.jpg", "AURORA/data/something/frames/82439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a glass so that it almost falls off but doesn't"}]} +{"id": "000000116561", "images": ["AURORA/data/something/frames/132952/first.jpg", "AURORA/data/something/frames/132952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calendar away from the camera"}]} +{"id": "000000116562", "images": ["AURORA/data/something/frames/141049/first.jpg", "AURORA/data/something/frames/141049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into a bottle"}]} +{"id": "000000116563", "images": ["AURORA/data/something/frames/212483/first.jpg", "AURORA/data/something/frames/212483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting matchbox next to mug"}]} +{"id": "000000116564", "images": ["AURORA/data/something/frames/82991/first.jpg", "AURORA/data/something/frames/82991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into wall outlet"}]} +{"id": "000000116565", "images": ["AURORA/data/something/frames/154239/first.jpg", "AURORA/data/something/frames/154239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116566", "images": ["AURORA/data/something/frames/613/first.jpg", "AURORA/data/something/frames/613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paint into bucket"}]} +{"id": "000000116567", "images": ["AURORA/data/something/frames/181975/first.jpg", "AURORA/data/something/frames/181975/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000116568", "images": ["AURORA/data/something/frames/14965/first.jpg", "AURORA/data/something/frames/14965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with glass on it"}]} +{"id": "000000116569", "images": ["AURORA/data/something/frames/40049/first.jpg", "AURORA/data/something/frames/40049/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into a mug"}]} +{"id": "000000116570", "images": ["AURORA/data/something/frames/45673/first.jpg", "AURORA/data/something/frames/45673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pillow with blanket"}]} +{"id": "000000116571", "images": ["AURORA/data/something/frames/22367/first.jpg", "AURORA/data/something/frames/22367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler on a surface"}]} +{"id": "000000116572", "images": ["AURORA/data/something/frames/88167/first.jpg", "AURORA/data/something/frames/88167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping food off of stove top"}]} +{"id": "000000116573", "images": ["AURORA/data/something/frames/56433/first.jpg", "AURORA/data/something/frames/56433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the cover of a book"}]} +{"id": "000000116574", "images": ["AURORA/data/something/frames/81130/first.jpg", "AURORA/data/something/frames/81130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle cap upside down"}]} +{"id": "000000116575", "images": ["AURORA/data/something/frames/6948/first.jpg", "AURORA/data/something/frames/6948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of coasters without the stack collapsing"}]} +{"id": "000000116576", "images": ["AURORA/data/something/frames/203294/first.jpg", "AURORA/data/something/frames/203294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) flusher of toilet"}]} +{"id": "000000116577", "images": ["AURORA/data/something/frames/20338/first.jpg", "AURORA/data/something/frames/20338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking toy out of plastic egg"}]} +{"id": "000000116578", "images": ["AURORA/data/something/frames/146868/first.jpg", "AURORA/data/something/frames/146868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a water bottle upright on the table, so it falls on its side"}]} +{"id": "000000116579", "images": ["AURORA/data/something/frames/51370/first.jpg", "AURORA/data/something/frames/51370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin next to belt"}]} +{"id": "000000116580", "images": ["AURORA/data/something/frames/192785/first.jpg", "AURORA/data/something/frames/192785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sunglasses into bucket"}]} +{"id": "000000116581", "images": ["AURORA/data/something/frames/30605/first.jpg", "AURORA/data/something/frames/30605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading water onto stove"}]} +{"id": "000000116582", "images": ["AURORA/data/something/frames/10443/first.jpg", "AURORA/data/something/frames/10443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming picture"}]} +{"id": "000000116583", "images": ["AURORA/data/something/frames/72320/first.jpg", "AURORA/data/something/frames/72320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a card so that it deforms"}]} +{"id": "000000116584", "images": ["AURORA/data/something/frames/136523/first.jpg", "AURORA/data/something/frames/136523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000116585", "images": ["AURORA/data/something/frames/21596/first.jpg", "AURORA/data/something/frames/21596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into cup, but missing so it spills next to it"}]} +{"id": "000000116586", "images": ["AURORA/data/something/frames/185991/first.jpg", "AURORA/data/something/frames/185991/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox onto a container"}]} +{"id": "000000116587", "images": ["AURORA/data/something/frames/122737/first.jpg", "AURORA/data/something/frames/122737/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into jar"}]} +{"id": "000000116588", "images": ["AURORA/data/something/frames/117448/first.jpg", "AURORA/data/something/frames/117448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting stapler into basket"}]} +{"id": "000000116589", "images": ["AURORA/data/something/frames/190268/first.jpg", "AURORA/data/something/frames/190268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a tanktop"}]} +{"id": "000000116590", "images": ["AURORA/data/something/frames/56980/first.jpg", "AURORA/data/something/frames/56980/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116591", "images": ["AURORA/data/something/frames/38891/first.jpg", "AURORA/data/something/frames/38891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug closer to glass"}]} +{"id": "000000116592", "images": ["AURORA/data/something/frames/125555/first.jpg", "AURORA/data/something/frames/125555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting napkin on the edge of wooden bowl so it is not supported and falls down"}]} +{"id": "000000116593", "images": ["AURORA/data/something/frames/72851/first.jpg", "AURORA/data/something/frames/72851/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking pig so that it falls over"}]} +{"id": "000000116594", "images": ["AURORA/data/something/frames/16038/first.jpg", "AURORA/data/something/frames/16038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing cd case"}]} +{"id": "000000116595", "images": ["AURORA/data/something/frames/123399/first.jpg", "AURORA/data/something/frames/123399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a rubber pig with lint brush"}]} +{"id": "000000116596", "images": ["AURORA/data/something/frames/103003/first.jpg", "AURORA/data/something/frames/103003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking glass of water so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116597", "images": ["AURORA/data/something/frames/40719/first.jpg", "AURORA/data/something/frames/40719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116598", "images": ["AURORA/data/something/frames/116562/first.jpg", "AURORA/data/something/frames/116562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling yarn out of canister"}]} +{"id": "000000116599", "images": ["AURORA/data/something/frames/97193/first.jpg", "AURORA/data/something/frames/97193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000116600", "images": ["AURORA/data/something/frames/148490/first.jpg", "AURORA/data/something/frames/148490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing something into two pieces"}]} +{"id": "000000116601", "images": ["AURORA/data/something/frames/19786/first.jpg", "AURORA/data/something/frames/19786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing duster with metal rod"}]} +{"id": "000000116602", "images": ["AURORA/data/something/frames/110402/first.jpg", "AURORA/data/something/frames/110402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a mug from left to right"}]} +{"id": "000000116603", "images": ["AURORA/data/something/frames/71506/first.jpg", "AURORA/data/something/frames/71506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000116604", "images": ["AURORA/data/something/frames/43875/first.jpg", "AURORA/data/something/frames/43875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering calculator with a piece or paper"}]} +{"id": "000000116605", "images": ["AURORA/data/something/frames/122955/first.jpg", "AURORA/data/something/frames/122955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming split air conditioner outdoor unit"}]} +{"id": "000000116606", "images": ["AURORA/data/something/frames/110138/first.jpg", "AURORA/data/something/frames/110138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing book with smarthphone"}]} +{"id": "000000116607", "images": ["AURORA/data/something/frames/83978/first.jpg", "AURORA/data/something/frames/83978/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a wallet so that it falls over"}]} +{"id": "000000116608", "images": ["AURORA/data/something/frames/132395/first.jpg", "AURORA/data/something/frames/132395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing faucet from right to left"}]} +{"id": "000000116609", "images": ["AURORA/data/something/frames/185895/first.jpg", "AURORA/data/something/frames/185895/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding sun glasses"}]} +{"id": "000000116610", "images": ["AURORA/data/something/frames/3137/first.jpg", "AURORA/data/something/frames/3137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors onto tape dispenser so it falls down"}]} +{"id": "000000116611", "images": ["AURORA/data/something/frames/61892/first.jpg", "AURORA/data/something/frames/61892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle into backpack"}]} +{"id": "000000116612", "images": ["AURORA/data/something/frames/182007/first.jpg", "AURORA/data/something/frames/182007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power adapter into a wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116613", "images": ["AURORA/data/something/frames/50661/first.jpg", "AURORA/data/something/frames/50661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming soft drink bottles"}]} +{"id": "000000116614", "images": ["AURORA/data/something/frames/173777/first.jpg", "AURORA/data/something/frames/173777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soda away from box"}]} +{"id": "000000116615", "images": ["AURORA/data/something/frames/124864/first.jpg", "AURORA/data/something/frames/124864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping dish soap over"}]} +{"id": "000000116616", "images": ["AURORA/data/something/frames/11200/first.jpg", "AURORA/data/something/frames/11200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto toothbrush"}]} +{"id": "000000116617", "images": ["AURORA/data/something/frames/120231/first.jpg", "AURORA/data/something/frames/120231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening petrol tank"}]} +{"id": "000000116618", "images": ["AURORA/data/something/frames/79688/first.jpg", "AURORA/data/something/frames/79688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing phone from right to left"}]} +{"id": "000000116619", "images": ["AURORA/data/something/frames/92635/first.jpg", "AURORA/data/something/frames/92635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of a water pipe"}]} +{"id": "000000116620", "images": ["AURORA/data/something/frames/61840/first.jpg", "AURORA/data/something/frames/61840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) part of a bottle"}]} +{"id": "000000116621", "images": ["AURORA/data/something/frames/6803/first.jpg", "AURORA/data/something/frames/6803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball into a cup"}]} +{"id": "000000116622", "images": ["AURORA/data/something/frames/45089/first.jpg", "AURORA/data/something/frames/45089/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116623", "images": ["AURORA/data/something/frames/62389/first.jpg", "AURORA/data/something/frames/62389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking toaster so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116624", "images": ["AURORA/data/something/frames/104454/first.jpg", "AURORA/data/something/frames/104454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel into two pieces"}]} +{"id": "000000116625", "images": ["AURORA/data/something/frames/74493/first.jpg", "AURORA/data/something/frames/74493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cd drive across a surface without it falling down"}]} +{"id": "000000116626", "images": ["AURORA/data/something/frames/29389/first.jpg", "AURORA/data/something/frames/29389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning red spoon upside down"}]} +{"id": "000000116627", "images": ["AURORA/data/something/frames/173496/first.jpg", "AURORA/data/something/frames/173496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading peanut butter onto bread"}]} +{"id": "000000116628", "images": ["AURORA/data/something/frames/40018/first.jpg", "AURORA/data/something/frames/40018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto glass so it falls down"}]} +{"id": "000000116629", "images": ["AURORA/data/something/frames/39683/first.jpg", "AURORA/data/something/frames/39683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing closing a manicure set"}]} +{"id": "000000116630", "images": ["AURORA/data/something/frames/33098/first.jpg", "AURORA/data/something/frames/33098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping something over"}]} +{"id": "000000116631", "images": ["AURORA/data/something/frames/213392/first.jpg", "AURORA/data/something/frames/213392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into phone"}]} +{"id": "000000116632", "images": ["AURORA/data/something/frames/7940/first.jpg", "AURORA/data/something/frames/7940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening ink bottle"}]} +{"id": "000000116633", "images": ["AURORA/data/something/frames/115573/first.jpg", "AURORA/data/something/frames/115573/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into plug"}]} +{"id": "000000116634", "images": ["AURORA/data/something/frames/145382/first.jpg", "AURORA/data/something/frames/145382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending matchstick until it breaks"}]} +{"id": "000000116635", "images": ["AURORA/data/something/frames/24130/first.jpg", "AURORA/data/something/frames/24130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a highlighter"}]} +{"id": "000000116636", "images": ["AURORA/data/something/frames/127063/first.jpg", "AURORA/data/something/frames/127063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting screw driver"}]} +{"id": "000000116637", "images": ["AURORA/data/something/frames/8110/first.jpg", "AURORA/data/something/frames/8110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a piece of cloth wet until water comes out"}]} +{"id": "000000116638", "images": ["AURORA/data/something/frames/75757/first.jpg", "AURORA/data/something/frames/75757/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with glue stick on it until it starts sliding down"}]} +{"id": "000000116639", "images": ["AURORA/data/something/frames/102177/first.jpg", "AURORA/data/something/frames/102177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000116640", "images": ["AURORA/data/something/frames/40280/first.jpg", "AURORA/data/something/frames/40280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000116641", "images": ["AURORA/data/something/frames/89404/first.jpg", "AURORA/data/something/frames/89404/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchstick behind a remote"}]} +{"id": "000000116642", "images": ["AURORA/data/something/frames/82892/first.jpg", "AURORA/data/something/frames/82892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hanger and screwdriver closer to each other"}]} +{"id": "000000116643", "images": ["AURORA/data/something/frames/130671/first.jpg", "AURORA/data/something/frames/130671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting mug with pen"}]} +{"id": "000000116644", "images": ["AURORA/data/something/frames/60599/first.jpg", "AURORA/data/something/frames/60599/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing toothbrush from right to left"}]} +{"id": "000000116645", "images": ["AURORA/data/something/frames/88131/first.jpg", "AURORA/data/something/frames/88131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper towels into cup"}]} +{"id": "000000116646", "images": ["AURORA/data/something/frames/7177/first.jpg", "AURORA/data/something/frames/7177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto table"}]} +{"id": "000000116647", "images": ["AURORA/data/something/frames/167661/first.jpg", "AURORA/data/something/frames/167661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a remote up"}]} +{"id": "000000116648", "images": ["AURORA/data/something/frames/83628/first.jpg", "AURORA/data/something/frames/83628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling broom from left to right"}]} +{"id": "000000116649", "images": ["AURORA/data/something/frames/91358/first.jpg", "AURORA/data/something/frames/91358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sunglasses and toothbrush on the table"}]} +{"id": "000000116650", "images": ["AURORA/data/something/frames/98332/first.jpg", "AURORA/data/something/frames/98332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging lead into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000116651", "images": ["AURORA/data/something/frames/123583/first.jpg", "AURORA/data/something/frames/123583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming poster"}]} +{"id": "000000116652", "images": ["AURORA/data/something/frames/53324/first.jpg", "AURORA/data/something/frames/53324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a packaging up"}]} +{"id": "000000116653", "images": ["AURORA/data/something/frames/168601/first.jpg", "AURORA/data/something/frames/168601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fork"}]} +{"id": "000000116654", "images": ["AURORA/data/something/frames/118498/first.jpg", "AURORA/data/something/frames/118498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle in front of eraser"}]} +{"id": "000000116655", "images": ["AURORA/data/something/frames/163847/first.jpg", "AURORA/data/something/frames/163847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a wash cloth"}]} +{"id": "000000116656", "images": ["AURORA/data/something/frames/205330/first.jpg", "AURORA/data/something/frames/205330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting water bottle"}]} +{"id": "000000116657", "images": ["AURORA/data/something/frames/21923/first.jpg", "AURORA/data/something/frames/21923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox onto a box"}]} +{"id": "000000116658", "images": ["AURORA/data/something/frames/8092/first.jpg", "AURORA/data/something/frames/8092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming black hair tie"}]} +{"id": "000000116659", "images": ["AURORA/data/something/frames/164331/first.jpg", "AURORA/data/something/frames/164331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from mouse with your camera"}]} +{"id": "000000116660", "images": ["AURORA/data/something/frames/122279/first.jpg", "AURORA/data/something/frames/122279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a pot"}]} +{"id": "000000116661", "images": ["AURORA/data/something/frames/142888/first.jpg", "AURORA/data/something/frames/142888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000116662", "images": ["AURORA/data/something/frames/7870/first.jpg", "AURORA/data/something/frames/7870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring liquid into a glass"}]} +{"id": "000000116663", "images": ["AURORA/data/something/frames/151214/first.jpg", "AURORA/data/something/frames/151214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tissue box so that it almost falls off but doesn't"}]} +{"id": "000000116664", "images": ["AURORA/data/something/frames/19981/first.jpg", "AURORA/data/something/frames/19981/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a watch with a hat"}]} +{"id": "000000116665", "images": ["AURORA/data/something/frames/185471/first.jpg", "AURORA/data/something/frames/185471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bucket"}]} +{"id": "000000116666", "images": ["AURORA/data/something/frames/45410/first.jpg", "AURORA/data/something/frames/45410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116667", "images": ["AURORA/data/something/frames/33247/first.jpg", "AURORA/data/something/frames/33247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wooden fork upright on the table, so it falls on its side"}]} +{"id": "000000116668", "images": ["AURORA/data/something/frames/91910/first.jpg", "AURORA/data/something/frames/91910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the arm of plush"}]} +{"id": "000000116669", "images": ["AURORA/data/something/frames/150963/first.jpg", "AURORA/data/something/frames/150963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping container behind bowl"}]} +{"id": "000000116670", "images": ["AURORA/data/something/frames/13843/first.jpg", "AURORA/data/something/frames/13843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering striker coin"}]} +{"id": "000000116671", "images": ["AURORA/data/something/frames/172786/first.jpg", "AURORA/data/something/frames/172786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup"}]} +{"id": "000000116672", "images": ["AURORA/data/something/frames/136685/first.jpg", "AURORA/data/something/frames/136685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) the edge of plate"}]} +{"id": "000000116673", "images": ["AURORA/data/something/frames/201763/first.jpg", "AURORA/data/something/frames/201763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker into mug"}]} +{"id": "000000116674", "images": ["AURORA/data/something/frames/196602/first.jpg", "AURORA/data/something/frames/196602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling remote from left to right"}]} +{"id": "000000116675", "images": ["AURORA/data/something/frames/44263/first.jpg", "AURORA/data/something/frames/44263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing casual hat from right to left"}]} +{"id": "000000116676", "images": ["AURORA/data/something/frames/165984/first.jpg", "AURORA/data/something/frames/165984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a paper"}]} +{"id": "000000116677", "images": ["AURORA/data/something/frames/162628/first.jpg", "AURORA/data/something/frames/162628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116678", "images": ["AURORA/data/something/frames/170243/first.jpg", "AURORA/data/something/frames/170243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling plushie from right to left"}]} +{"id": "000000116679", "images": ["AURORA/data/something/frames/108988/first.jpg", "AURORA/data/something/frames/108988/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000116680", "images": ["AURORA/data/something/frames/138471/first.jpg", "AURORA/data/something/frames/138471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a ball into a basket"}]} +{"id": "000000116681", "images": ["AURORA/data/something/frames/64640/first.jpg", "AURORA/data/something/frames/64640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching smart phone with your camera"}]} +{"id": "000000116682", "images": ["AURORA/data/something/frames/1105/first.jpg", "AURORA/data/something/frames/1105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering mug with big pouch"}]} +{"id": "000000116683", "images": ["AURORA/data/something/frames/106243/first.jpg", "AURORA/data/something/frames/106243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cross over"}]} +{"id": "000000116684", "images": ["AURORA/data/something/frames/26012/first.jpg", "AURORA/data/something/frames/26012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key towards the camera"}]} +{"id": "000000116685", "images": ["AURORA/data/something/frames/25674/first.jpg", "AURORA/data/something/frames/25674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking belt from bed"}]} +{"id": "000000116686", "images": ["AURORA/data/something/frames/198898/first.jpg", "AURORA/data/something/frames/198898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a plastic bag, revealing a coin behind"}]} +{"id": "000000116687", "images": ["AURORA/data/something/frames/81215/first.jpg", "AURORA/data/something/frames/81215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping coin onto blanket"}]} +{"id": "000000116688", "images": ["AURORA/data/something/frames/219401/first.jpg", "AURORA/data/something/frames/219401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cigarette"}]} +{"id": "000000116689", "images": ["AURORA/data/something/frames/206292/first.jpg", "AURORA/data/something/frames/206292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bowl upside down"}]} +{"id": "000000116690", "images": ["AURORA/data/something/frames/65987/first.jpg", "AURORA/data/something/frames/65987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116691", "images": ["AURORA/data/something/frames/14551/first.jpg", "AURORA/data/something/frames/14551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into charger but pulling it right out as you remove your hand"}]} +{"id": "000000116692", "images": ["AURORA/data/something/frames/80828/first.jpg", "AURORA/data/something/frames/80828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking medicine bottle out of a prescription bag"}]} +{"id": "000000116693", "images": ["AURORA/data/something/frames/142894/first.jpg", "AURORA/data/something/frames/142894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plastic ognions colliding with plastic choux and both are being deflected"}]} +{"id": "000000116694", "images": ["AURORA/data/something/frames/137582/first.jpg", "AURORA/data/something/frames/137582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon next to sponze"}]} +{"id": "000000116695", "images": ["AURORA/data/something/frames/219248/first.jpg", "AURORA/data/something/frames/219248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a plastic box across a surface without it falling down"}]} +{"id": "000000116696", "images": ["AURORA/data/something/frames/83801/first.jpg", "AURORA/data/something/frames/83801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering key with cup"}]} +{"id": "000000116697", "images": ["AURORA/data/something/frames/140387/first.jpg", "AURORA/data/something/frames/140387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting stool with newspaper"}]} +{"id": "000000116698", "images": ["AURORA/data/something/frames/52914/first.jpg", "AURORA/data/something/frames/52914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening something"}]} +{"id": "000000116699", "images": ["AURORA/data/something/frames/194953/first.jpg", "AURORA/data/something/frames/194953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling matchboxes up"}]} +{"id": "000000116700", "images": ["AURORA/data/something/frames/94288/first.jpg", "AURORA/data/something/frames/94288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a headphones"}]} +{"id": "000000116701", "images": ["AURORA/data/something/frames/35677/first.jpg", "AURORA/data/something/frames/35677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lotion bottle down"}]} +{"id": "000000116702", "images": ["AURORA/data/something/frames/178165/first.jpg", "AURORA/data/something/frames/178165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving punching machine down"}]} +{"id": "000000116703", "images": ["AURORA/data/something/frames/126421/first.jpg", "AURORA/data/something/frames/126421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching girl statue with your camera"}]} +{"id": "000000116704", "images": ["AURORA/data/something/frames/56512/first.jpg", "AURORA/data/something/frames/56512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving perfume and cream away from each other"}]} +{"id": "000000116705", "images": ["AURORA/data/something/frames/158875/first.jpg", "AURORA/data/something/frames/158875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon behind a mug"}]} +{"id": "000000116706", "images": ["AURORA/data/something/frames/99214/first.jpg", "AURORA/data/something/frames/99214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116707", "images": ["AURORA/data/something/frames/23681/first.jpg", "AURORA/data/something/frames/23681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle onto ball so it falls down"}]} +{"id": "000000116708", "images": ["AURORA/data/something/frames/93576/first.jpg", "AURORA/data/something/frames/93576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cigarette lighter with wooden stick"}]} +{"id": "000000116709", "images": ["AURORA/data/something/frames/152243/first.jpg", "AURORA/data/something/frames/152243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming hair dryer"}]} +{"id": "000000116710", "images": ["AURORA/data/something/frames/110663/first.jpg", "AURORA/data/something/frames/110663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bar soap upside down"}]} +{"id": "000000116711", "images": ["AURORA/data/something/frames/208019/first.jpg", "AURORA/data/something/frames/208019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper up"}]} +{"id": "000000116712", "images": ["AURORA/data/something/frames/69401/first.jpg", "AURORA/data/something/frames/69401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon and pen on the table"}]} +{"id": "000000116713", "images": ["AURORA/data/something/frames/48371/first.jpg", "AURORA/data/something/frames/48371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering lantern"}]} +{"id": "000000116714", "images": ["AURORA/data/something/frames/14784/first.jpg", "AURORA/data/something/frames/14784/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing jar"}]} +{"id": "000000116715", "images": ["AURORA/data/something/frames/190079/first.jpg", "AURORA/data/something/frames/190079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a hammer and a nail away from each other"}]} +{"id": "000000116716", "images": ["AURORA/data/something/frames/2819/first.jpg", "AURORA/data/something/frames/2819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering goggles with towel"}]} +{"id": "000000116717", "images": ["AURORA/data/something/frames/87683/first.jpg", "AURORA/data/something/frames/87683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping souce off of floor"}]} +{"id": "000000116718", "images": ["AURORA/data/something/frames/93704/first.jpg", "AURORA/data/something/frames/93704/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling plushie from left to right"}]} +{"id": "000000116719", "images": ["AURORA/data/something/frames/186916/first.jpg", "AURORA/data/something/frames/186916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning candle upside down"}]} +{"id": "000000116720", "images": ["AURORA/data/something/frames/166257/first.jpg", "AURORA/data/something/frames/166257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spoon and a cup on the table"}]} +{"id": "000000116721", "images": ["AURORA/data/something/frames/46884/first.jpg", "AURORA/data/something/frames/46884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing blankets into a fabric bin"}]} +{"id": "000000116722", "images": ["AURORA/data/something/frames/45040/first.jpg", "AURORA/data/something/frames/45040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling dish onto table"}]} +{"id": "000000116723", "images": ["AURORA/data/something/frames/195577/first.jpg", "AURORA/data/something/frames/195577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a teddy bear upside down"}]} +{"id": "000000116724", "images": ["AURORA/data/something/frames/15504/first.jpg", "AURORA/data/something/frames/15504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a towel"}]} +{"id": "000000116725", "images": ["AURORA/data/something/frames/27690/first.jpg", "AURORA/data/something/frames/27690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote upright on the table, so it falls on its side"}]} +{"id": "000000116726", "images": ["AURORA/data/something/frames/117774/first.jpg", "AURORA/data/something/frames/117774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pear with newspaper"}]} +{"id": "000000116727", "images": ["AURORA/data/something/frames/93275/first.jpg", "AURORA/data/something/frames/93275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116728", "images": ["AURORA/data/something/frames/89853/first.jpg", "AURORA/data/something/frames/89853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming hair dryer"}]} +{"id": "000000116729", "images": ["AURORA/data/something/frames/46001/first.jpg", "AURORA/data/something/frames/46001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chalk, magnet and marker pen on the table"}]} +{"id": "000000116730", "images": ["AURORA/data/something/frames/33775/first.jpg", "AURORA/data/something/frames/33775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tissue box from left to right"}]} +{"id": "000000116731", "images": ["AURORA/data/something/frames/14215/first.jpg", "AURORA/data/something/frames/14215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a leaf just a little bit"}]} +{"id": "000000116732", "images": ["AURORA/data/something/frames/75613/first.jpg", "AURORA/data/something/frames/75613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 ink bottles"}]} +{"id": "000000116733", "images": ["AURORA/data/something/frames/136128/first.jpg", "AURORA/data/something/frames/136128/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into a wall"}]} +{"id": "000000116734", "images": ["AURORA/data/something/frames/71799/first.jpg", "AURORA/data/something/frames/71799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something down"}]} +{"id": "000000116735", "images": ["AURORA/data/something/frames/72232/first.jpg", "AURORA/data/something/frames/72232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker pen"}]} +{"id": "000000116736", "images": ["AURORA/data/something/frames/72462/first.jpg", "AURORA/data/something/frames/72462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mug and remote closer to each other"}]} +{"id": "000000116737", "images": ["AURORA/data/something/frames/195073/first.jpg", "AURORA/data/something/frames/195073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116738", "images": ["AURORA/data/something/frames/115800/first.jpg", "AURORA/data/something/frames/115800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a cloth into a cardboard box"}]} +{"id": "000000116739", "images": ["AURORA/data/something/frames/203165/first.jpg", "AURORA/data/something/frames/203165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming hat"}]} +{"id": "000000116740", "images": ["AURORA/data/something/frames/87870/first.jpg", "AURORA/data/something/frames/87870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a penny so that it falls over"}]} +{"id": "000000116741", "images": ["AURORA/data/something/frames/111888/first.jpg", "AURORA/data/something/frames/111888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into box"}]} +{"id": "000000116742", "images": ["AURORA/data/something/frames/187748/first.jpg", "AURORA/data/something/frames/187748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring drink into glass"}]} +{"id": "000000116743", "images": ["AURORA/data/something/frames/207682/first.jpg", "AURORA/data/something/frames/207682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking can so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000116744", "images": ["AURORA/data/something/frames/150504/first.jpg", "AURORA/data/something/frames/150504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving domino and domino closer to each other"}]} +{"id": "000000116745", "images": ["AURORA/data/something/frames/35613/first.jpg", "AURORA/data/something/frames/35613/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116746", "images": ["AURORA/data/something/frames/78671/first.jpg", "AURORA/data/something/frames/78671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an usb into pc"}]} +{"id": "000000116747", "images": ["AURORA/data/something/frames/82024/first.jpg", "AURORA/data/something/frames/82024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a computer charger into a wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116748", "images": ["AURORA/data/something/frames/23718/first.jpg", "AURORA/data/something/frames/23718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding something"}]} +{"id": "000000116749", "images": ["AURORA/data/something/frames/204703/first.jpg", "AURORA/data/something/frames/204703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cat in front of cube"}]} +{"id": "000000116750", "images": ["AURORA/data/something/frames/171502/first.jpg", "AURORA/data/something/frames/171502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a badminton bat next to a pair of shoes"}]} +{"id": "000000116751", "images": ["AURORA/data/something/frames/4548/first.jpg", "AURORA/data/something/frames/4548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering vitamin with hand towel"}]} +{"id": "000000116752", "images": ["AURORA/data/something/frames/128498/first.jpg", "AURORA/data/something/frames/128498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming cart"}]} +{"id": "000000116753", "images": ["AURORA/data/something/frames/166244/first.jpg", "AURORA/data/something/frames/166244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with thread"}]} +{"id": "000000116754", "images": ["AURORA/data/something/frames/105814/first.jpg", "AURORA/data/something/frames/105814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a ruler so that it deforms"}]} +{"id": "000000116755", "images": ["AURORA/data/something/frames/32373/first.jpg", "AURORA/data/something/frames/32373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a small jar and a small jar closer to each other"}]} +{"id": "000000116756", "images": ["AURORA/data/something/frames/113525/first.jpg", "AURORA/data/something/frames/113525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pen with a shoe"}]} +{"id": "000000116757", "images": ["AURORA/data/something/frames/151079/first.jpg", "AURORA/data/something/frames/151079/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker pen so that it almost falls off but doesn't"}]} +{"id": "000000116758", "images": ["AURORA/data/something/frames/118544/first.jpg", "AURORA/data/something/frames/118544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding pamphlet"}]} +{"id": "000000116759", "images": ["AURORA/data/something/frames/51413/first.jpg", "AURORA/data/something/frames/51413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking dog toy up"}]} +{"id": "000000116760", "images": ["AURORA/data/something/frames/65224/first.jpg", "AURORA/data/something/frames/65224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power adapter into socket but pulling it right out as you remove your hand"}]} +{"id": "000000116761", "images": ["AURORA/data/something/frames/210275/first.jpg", "AURORA/data/something/frames/210275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of many travel magazines"}]} +{"id": "000000116762", "images": ["AURORA/data/something/frames/174660/first.jpg", "AURORA/data/something/frames/174660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking knife out of knife holder"}]} +{"id": "000000116763", "images": ["AURORA/data/something/frames/9719/first.jpg", "AURORA/data/something/frames/9719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving laptop up"}]} +{"id": "000000116764", "images": ["AURORA/data/something/frames/117848/first.jpg", "AURORA/data/something/frames/117848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red crayon away from blue crayon"}]} +{"id": "000000116765", "images": ["AURORA/data/something/frames/220410/first.jpg", "AURORA/data/something/frames/220410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sfety helmet from beam"}]} +{"id": "000000116766", "images": ["AURORA/data/something/frames/6519/first.jpg", "AURORA/data/something/frames/6519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of tin foil so that it separates into two pieces"}]} +{"id": "000000116767", "images": ["AURORA/data/something/frames/11322/first.jpg", "AURORA/data/something/frames/11322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cup upside down"}]} +{"id": "000000116768", "images": ["AURORA/data/something/frames/188741/first.jpg", "AURORA/data/something/frames/188741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into the glass"}]} +{"id": "000000116769", "images": ["AURORA/data/something/frames/57471/first.jpg", "AURORA/data/something/frames/57471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto sink counter"}]} +{"id": "000000116770", "images": ["AURORA/data/something/frames/166383/first.jpg", "AURORA/data/something/frames/166383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000116771", "images": ["AURORA/data/something/frames/89422/first.jpg", "AURORA/data/something/frames/89422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching sticker to wall"}]} +{"id": "000000116772", "images": ["AURORA/data/something/frames/4170/first.jpg", "AURORA/data/something/frames/4170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a necklace next to chewing gums"}]} +{"id": "000000116773", "images": ["AURORA/data/something/frames/25481/first.jpg", "AURORA/data/something/frames/25481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting beer can with crayon on it"}]} +{"id": "000000116774", "images": ["AURORA/data/something/frames/94055/first.jpg", "AURORA/data/something/frames/94055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000116775", "images": ["AURORA/data/something/frames/166441/first.jpg", "AURORA/data/something/frames/166441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116776", "images": ["AURORA/data/something/frames/87834/first.jpg", "AURORA/data/something/frames/87834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tag, bangle and clip on the table"}]} +{"id": "000000116777", "images": ["AURORA/data/something/frames/210701/first.jpg", "AURORA/data/something/frames/210701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning body spray upside down"}]} +{"id": "000000116778", "images": ["AURORA/data/something/frames/45676/first.jpg", "AURORA/data/something/frames/45676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid away from straw"}]} +{"id": "000000116779", "images": ["AURORA/data/something/frames/164740/first.jpg", "AURORA/data/something/frames/164740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book and phone closer to each other"}]} +{"id": "000000116780", "images": ["AURORA/data/something/frames/155015/first.jpg", "AURORA/data/something/frames/155015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening gate"}]} +{"id": "000000116781", "images": ["AURORA/data/something/frames/212610/first.jpg", "AURORA/data/something/frames/212610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing packet so that it almost falls off but doesn't"}]} +{"id": "000000116782", "images": ["AURORA/data/something/frames/119661/first.jpg", "AURORA/data/something/frames/119661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a usb into a wall adapter"}]} +{"id": "000000116783", "images": ["AURORA/data/something/frames/108927/first.jpg", "AURORA/data/something/frames/108927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pear"}]} +{"id": "000000116784", "images": ["AURORA/data/something/frames/122484/first.jpg", "AURORA/data/something/frames/122484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plate on a surface"}]} +{"id": "000000116785", "images": ["AURORA/data/something/frames/27911/first.jpg", "AURORA/data/something/frames/27911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of headband so that it gets stretched"}]} +{"id": "000000116786", "images": ["AURORA/data/something/frames/141628/first.jpg", "AURORA/data/something/frames/141628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing patterned paper into two pieces"}]} +{"id": "000000116787", "images": ["AURORA/data/something/frames/191283/first.jpg", "AURORA/data/something/frames/191283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming tree"}]} +{"id": "000000116788", "images": ["AURORA/data/something/frames/99415/first.jpg", "AURORA/data/something/frames/99415/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wallete and mouse closer to each other"}]} +{"id": "000000116789", "images": ["AURORA/data/something/frames/30183/first.jpg", "AURORA/data/something/frames/30183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering marker"}]} +{"id": "000000116790", "images": ["AURORA/data/something/frames/124163/first.jpg", "AURORA/data/something/frames/124163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of stick so that it separates into two pieces"}]} +{"id": "000000116791", "images": ["AURORA/data/something/frames/139629/first.jpg", "AURORA/data/something/frames/139629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a measuring tape so that it deforms"}]} +{"id": "000000116792", "images": ["AURORA/data/something/frames/24493/first.jpg", "AURORA/data/something/frames/24493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen into storage"}]} +{"id": "000000116793", "images": ["AURORA/data/something/frames/111625/first.jpg", "AURORA/data/something/frames/111625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming hair brush"}]} +{"id": "000000116794", "images": ["AURORA/data/something/frames/172496/first.jpg", "AURORA/data/something/frames/172496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116795", "images": ["AURORA/data/something/frames/22709/first.jpg", "AURORA/data/something/frames/22709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning stamp ink upside down"}]} +{"id": "000000116796", "images": ["AURORA/data/something/frames/129665/first.jpg", "AURORA/data/something/frames/129665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bottle of shampoo"}]} +{"id": "000000116797", "images": ["AURORA/data/something/frames/30668/first.jpg", "AURORA/data/something/frames/30668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy closer to horse statue"}]} +{"id": "000000116798", "images": ["AURORA/data/something/frames/74414/first.jpg", "AURORA/data/something/frames/74414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling small sharpener from right to left"}]} +{"id": "000000116799", "images": ["AURORA/data/something/frames/119678/first.jpg", "AURORA/data/something/frames/119678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass"}]} +{"id": "000000116800", "images": ["AURORA/data/something/frames/211547/first.jpg", "AURORA/data/something/frames/211547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cups"}]} +{"id": "000000116801", "images": ["AURORA/data/something/frames/60716/first.jpg", "AURORA/data/something/frames/60716/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping coffee off of the counter"}]} +{"id": "000000116802", "images": ["AURORA/data/something/frames/5679/first.jpg", "AURORA/data/something/frames/5679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding newspaper"}]} +{"id": "000000116803", "images": ["AURORA/data/something/frames/96088/first.jpg", "AURORA/data/something/frames/96088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife"}]} +{"id": "000000116804", "images": ["AURORA/data/something/frames/220131/first.jpg", "AURORA/data/something/frames/220131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pens into pencil case"}]} +{"id": "000000116805", "images": ["AURORA/data/something/frames/113076/first.jpg", "AURORA/data/something/frames/113076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a golf ball"}]} +{"id": "000000116806", "images": ["AURORA/data/something/frames/130900/first.jpg", "AURORA/data/something/frames/130900/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cover just a little bit"}]} +{"id": "000000116807", "images": ["AURORA/data/something/frames/114944/first.jpg", "AURORA/data/something/frames/114944/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ball closer to a pillow"}]} +{"id": "000000116808", "images": ["AURORA/data/something/frames/193811/first.jpg", "AURORA/data/something/frames/193811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting timepiece and toy on the table"}]} +{"id": "000000116809", "images": ["AURORA/data/something/frames/205565/first.jpg", "AURORA/data/something/frames/205565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming a bottle"}]} +{"id": "000000116810", "images": ["AURORA/data/something/frames/66765/first.jpg", "AURORA/data/something/frames/66765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000116811", "images": ["AURORA/data/something/frames/212065/first.jpg", "AURORA/data/something/frames/212065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting eraser behind calculator"}]} +{"id": "000000116812", "images": ["AURORA/data/something/frames/85329/first.jpg", "AURORA/data/something/frames/85329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cover up"}]} +{"id": "000000116813", "images": ["AURORA/data/something/frames/140125/first.jpg", "AURORA/data/something/frames/140125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116814", "images": ["AURORA/data/something/frames/117768/first.jpg", "AURORA/data/something/frames/117768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tablet computer with dust mask on it"}]} +{"id": "000000116815", "images": ["AURORA/data/something/frames/190864/first.jpg", "AURORA/data/something/frames/190864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pump of bottle"}]} +{"id": "000000116816", "images": ["AURORA/data/something/frames/35158/first.jpg", "AURORA/data/something/frames/35158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping biscuit packet in front of water-bottle"}]} +{"id": "000000116817", "images": ["AURORA/data/something/frames/80758/first.jpg", "AURORA/data/something/frames/80758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sun glass towards the camera"}]} +{"id": "000000116818", "images": ["AURORA/data/something/frames/20616/first.jpg", "AURORA/data/something/frames/20616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle cap from left to right"}]} +{"id": "000000116819", "images": ["AURORA/data/something/frames/147010/first.jpg", "AURORA/data/something/frames/147010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book in front of a bandana"}]} +{"id": "000000116820", "images": ["AURORA/data/something/frames/53854/first.jpg", "AURORA/data/something/frames/53854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tea bag upright on the table, so it falls on its side"}]} +{"id": "000000116821", "images": ["AURORA/data/something/frames/59860/first.jpg", "AURORA/data/something/frames/59860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting iron plate with toy"}]} +{"id": "000000116822", "images": ["AURORA/data/something/frames/152010/first.jpg", "AURORA/data/something/frames/152010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering screwdriver with napkin"}]} +{"id": "000000116823", "images": ["AURORA/data/something/frames/78383/first.jpg", "AURORA/data/something/frames/78383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: match box colliding with match box and both are being deflected"}]} +{"id": "000000116824", "images": ["AURORA/data/something/frames/111106/first.jpg", "AURORA/data/something/frames/111106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a padlock from behind of a wall"}]} +{"id": "000000116825", "images": ["AURORA/data/something/frames/83155/first.jpg", "AURORA/data/something/frames/83155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening book"}]} +{"id": "000000116826", "images": ["AURORA/data/something/frames/135149/first.jpg", "AURORA/data/something/frames/135149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking black pouch up"}]} +{"id": "000000116827", "images": ["AURORA/data/something/frames/149753/first.jpg", "AURORA/data/something/frames/149753/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching usb adaptor to a computer"}]} +{"id": "000000116828", "images": ["AURORA/data/something/frames/143698/first.jpg", "AURORA/data/something/frames/143698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing white paper, revealing memory card behind"}]} +{"id": "000000116829", "images": ["AURORA/data/something/frames/23791/first.jpg", "AURORA/data/something/frames/23791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering quarter with paper"}]} +{"id": "000000116830", "images": ["AURORA/data/something/frames/188038/first.jpg", "AURORA/data/something/frames/188038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring wtaer into the cup until it overflows"}]} +{"id": "000000116831", "images": ["AURORA/data/something/frames/125313/first.jpg", "AURORA/data/something/frames/125313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of a chair"}]} +{"id": "000000116832", "images": ["AURORA/data/something/frames/89241/first.jpg", "AURORA/data/something/frames/89241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass similar to"}]} +{"id": "000000116833", "images": ["AURORA/data/something/frames/200491/first.jpg", "AURORA/data/something/frames/200491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a plate"}]} +{"id": "000000116834", "images": ["AURORA/data/something/frames/72143/first.jpg", "AURORA/data/something/frames/72143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a remote control with a paper sheet"}]} +{"id": "000000116835", "images": ["AURORA/data/something/frames/121526/first.jpg", "AURORA/data/something/frames/121526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a jar up"}]} +{"id": "000000116836", "images": ["AURORA/data/something/frames/157356/first.jpg", "AURORA/data/something/frames/157356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116837", "images": ["AURORA/data/something/frames/72106/first.jpg", "AURORA/data/something/frames/72106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming vacuum cleaner"}]} +{"id": "000000116838", "images": ["AURORA/data/something/frames/112372/first.jpg", "AURORA/data/something/frames/112372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb charger into computer but pulling it right out as you remove your hand"}]} +{"id": "000000116839", "images": ["AURORA/data/something/frames/210163/first.jpg", "AURORA/data/something/frames/210163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a banana onto a slanted surface but it doesn't glide down"}]} +{"id": "000000116840", "images": ["AURORA/data/something/frames/64265/first.jpg", "AURORA/data/something/frames/64265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116841", "images": ["AURORA/data/something/frames/182546/first.jpg", "AURORA/data/something/frames/182546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bag up"}]} +{"id": "000000116842", "images": ["AURORA/data/something/frames/134331/first.jpg", "AURORA/data/something/frames/134331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a glasses up"}]} +{"id": "000000116843", "images": ["AURORA/data/something/frames/11239/first.jpg", "AURORA/data/something/frames/11239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping a rag up with a spatula"}]} +{"id": "000000116844", "images": ["AURORA/data/something/frames/51929/first.jpg", "AURORA/data/something/frames/51929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a stone and a stone so they pass each other"}]} +{"id": "000000116845", "images": ["AURORA/data/something/frames/118536/first.jpg", "AURORA/data/something/frames/118536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting textbook upright on the table"}]} +{"id": "000000116846", "images": ["AURORA/data/something/frames/14873/first.jpg", "AURORA/data/something/frames/14873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a handkerchief behind a box"}]} +{"id": "000000116847", "images": ["AURORA/data/something/frames/201513/first.jpg", "AURORA/data/something/frames/201513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000116848", "images": ["AURORA/data/something/frames/94994/first.jpg", "AURORA/data/something/frames/94994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering earphones with cloth"}]} +{"id": "000000116849", "images": ["AURORA/data/something/frames/104087/first.jpg", "AURORA/data/something/frames/104087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plush into bowl"}]} +{"id": "000000116850", "images": ["AURORA/data/something/frames/19777/first.jpg", "AURORA/data/something/frames/19777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a sunglasses case"}]} +{"id": "000000116851", "images": ["AURORA/data/something/frames/156867/first.jpg", "AURORA/data/something/frames/156867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming green toy car"}]} +{"id": "000000116852", "images": ["AURORA/data/something/frames/76379/first.jpg", "AURORA/data/something/frames/76379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass"}]} +{"id": "000000116853", "images": ["AURORA/data/something/frames/197621/first.jpg", "AURORA/data/something/frames/197621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: ipad being deflected from couch"}]} +{"id": "000000116854", "images": ["AURORA/data/something/frames/56440/first.jpg", "AURORA/data/something/frames/56440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting red candle on a surface"}]} +{"id": "000000116855", "images": ["AURORA/data/something/frames/80371/first.jpg", "AURORA/data/something/frames/80371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a jewellry box with jewellry over, so jewellry falls out"}]} +{"id": "000000116856", "images": ["AURORA/data/something/frames/149054/first.jpg", "AURORA/data/something/frames/149054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking black umbrella up"}]} +{"id": "000000116857", "images": ["AURORA/data/something/frames/145663/first.jpg", "AURORA/data/something/frames/145663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a matchbox"}]} +{"id": "000000116858", "images": ["AURORA/data/something/frames/62631/first.jpg", "AURORA/data/something/frames/62631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle down"}]} +{"id": "000000116859", "images": ["AURORA/data/something/frames/220213/first.jpg", "AURORA/data/something/frames/220213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coins out of a purse"}]} +{"id": "000000116860", "images": ["AURORA/data/something/frames/105779/first.jpg", "AURORA/data/something/frames/105779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting tshirt"}]} +{"id": "000000116861", "images": ["AURORA/data/something/frames/110791/first.jpg", "AURORA/data/something/frames/110791/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening closet"}]} +{"id": "000000116862", "images": ["AURORA/data/something/frames/158145/first.jpg", "AURORA/data/something/frames/158145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a towel"}]} +{"id": "000000116863", "images": ["AURORA/data/something/frames/46597/first.jpg", "AURORA/data/something/frames/46597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing blue hair clip with white spoon"}]} +{"id": "000000116864", "images": ["AURORA/data/something/frames/168864/first.jpg", "AURORA/data/something/frames/168864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000116865", "images": ["AURORA/data/something/frames/159733/first.jpg", "AURORA/data/something/frames/159733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering onion"}]} +{"id": "000000116866", "images": ["AURORA/data/something/frames/60178/first.jpg", "AURORA/data/something/frames/60178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pants into drawer"}]} +{"id": "000000116867", "images": ["AURORA/data/something/frames/16862/first.jpg", "AURORA/data/something/frames/16862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fork and knife closer to each other"}]} +{"id": "000000116868", "images": ["AURORA/data/something/frames/171615/first.jpg", "AURORA/data/something/frames/171615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 books"}]} +{"id": "000000116869", "images": ["AURORA/data/something/frames/194709/first.jpg", "AURORA/data/something/frames/194709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching adhesive tape to a cabinet"}]} +{"id": "000000116870", "images": ["AURORA/data/something/frames/111890/first.jpg", "AURORA/data/something/frames/111890/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a marker so that it separates into two pieces"}]} +{"id": "000000116871", "images": ["AURORA/data/something/frames/110362/first.jpg", "AURORA/data/something/frames/110362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding towel"}]} +{"id": "000000116872", "images": ["AURORA/data/something/frames/44127/first.jpg", "AURORA/data/something/frames/44127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling computer mouse from behind of thermos"}]} +{"id": "000000116873", "images": ["AURORA/data/something/frames/85081/first.jpg", "AURORA/data/something/frames/85081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork"}]} +{"id": "000000116874", "images": ["AURORA/data/something/frames/54792/first.jpg", "AURORA/data/something/frames/54792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a sock with a cloth"}]} +{"id": "000000116875", "images": ["AURORA/data/something/frames/114635/first.jpg", "AURORA/data/something/frames/114635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pencil with a paper"}]} +{"id": "000000116876", "images": ["AURORA/data/something/frames/211312/first.jpg", "AURORA/data/something/frames/211312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching clip magnet to lamp stand joint"}]} +{"id": "000000116877", "images": ["AURORA/data/something/frames/150668/first.jpg", "AURORA/data/something/frames/150668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: burying lid in butter"}]} +{"id": "000000116878", "images": ["AURORA/data/something/frames/52114/first.jpg", "AURORA/data/something/frames/52114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling scissor from right to left"}]} +{"id": "000000116879", "images": ["AURORA/data/something/frames/17126/first.jpg", "AURORA/data/something/frames/17126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking three juice boxes"}]} +{"id": "000000116880", "images": ["AURORA/data/something/frames/138792/first.jpg", "AURORA/data/something/frames/138792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking ball up"}]} +{"id": "000000116881", "images": ["AURORA/data/something/frames/27110/first.jpg", "AURORA/data/something/frames/27110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker in front of tape dispenser"}]} +{"id": "000000116882", "images": ["AURORA/data/something/frames/40045/first.jpg", "AURORA/data/something/frames/40045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing book into container"}]} +{"id": "000000116883", "images": ["AURORA/data/something/frames/36570/first.jpg", "AURORA/data/something/frames/36570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching earphone with your camera"}]} +{"id": "000000116884", "images": ["AURORA/data/something/frames/154204/first.jpg", "AURORA/data/something/frames/154204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000116885", "images": ["AURORA/data/something/frames/203267/first.jpg", "AURORA/data/something/frames/203267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup upright on the table"}]} +{"id": "000000116886", "images": ["AURORA/data/something/frames/97986/first.jpg", "AURORA/data/something/frames/97986/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching an aligator clip to wire"}]} +{"id": "000000116887", "images": ["AURORA/data/something/frames/142395/first.jpg", "AURORA/data/something/frames/142395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing papper into two pieces"}]} +{"id": "000000116888", "images": ["AURORA/data/something/frames/29861/first.jpg", "AURORA/data/something/frames/29861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116889", "images": ["AURORA/data/something/frames/169190/first.jpg", "AURORA/data/something/frames/169190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000116890", "images": ["AURORA/data/something/frames/183675/first.jpg", "AURORA/data/something/frames/183675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cream container off of table"}]} +{"id": "000000116891", "images": ["AURORA/data/something/frames/82223/first.jpg", "AURORA/data/something/frames/82223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle closer to a sock"}]} +{"id": "000000116892", "images": ["AURORA/data/something/frames/19579/first.jpg", "AURORA/data/something/frames/19579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a handkerchief next to a remote"}]} +{"id": "000000116893", "images": ["AURORA/data/something/frames/209230/first.jpg", "AURORA/data/something/frames/209230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with box on it"}]} +{"id": "000000116894", "images": ["AURORA/data/something/frames/217607/first.jpg", "AURORA/data/something/frames/217607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116895", "images": ["AURORA/data/something/frames/62818/first.jpg", "AURORA/data/something/frames/62818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging nightlight into powerpoint"}]} +{"id": "000000116896", "images": ["AURORA/data/something/frames/110884/first.jpg", "AURORA/data/something/frames/110884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bowl"}]} +{"id": "000000116897", "images": ["AURORA/data/something/frames/199768/first.jpg", "AURORA/data/something/frames/199768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pot in front of mug"}]} +{"id": "000000116898", "images": ["AURORA/data/something/frames/218994/first.jpg", "AURORA/data/something/frames/218994/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a thumb drive next to a water bottle"}]} +{"id": "000000116899", "images": ["AURORA/data/something/frames/77584/first.jpg", "AURORA/data/something/frames/77584/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching battery cover to tv remote"}]} +{"id": "000000116900", "images": ["AURORA/data/something/frames/201576/first.jpg", "AURORA/data/something/frames/201576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a ball"}]} +{"id": "000000116901", "images": ["AURORA/data/something/frames/67147/first.jpg", "AURORA/data/something/frames/67147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pink cologne from left to right"}]} +{"id": "000000116902", "images": ["AURORA/data/something/frames/34782/first.jpg", "AURORA/data/something/frames/34782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling something up"}]} +{"id": "000000116903", "images": ["AURORA/data/something/frames/173407/first.jpg", "AURORA/data/something/frames/173407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering stapler with cloth"}]} +{"id": "000000116904", "images": ["AURORA/data/something/frames/33635/first.jpg", "AURORA/data/something/frames/33635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling an electric pencil sharpener out of a basket"}]} +{"id": "000000116905", "images": ["AURORA/data/something/frames/192554/first.jpg", "AURORA/data/something/frames/192554/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pot so that it almost falls off but doesn't"}]} +{"id": "000000116906", "images": ["AURORA/data/something/frames/101885/first.jpg", "AURORA/data/something/frames/101885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bowl upside down"}]} +{"id": "000000116907", "images": ["AURORA/data/something/frames/187934/first.jpg", "AURORA/data/something/frames/187934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging water into mouth"}]} +{"id": "000000116908", "images": ["AURORA/data/something/frames/138398/first.jpg", "AURORA/data/something/frames/138398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116909", "images": ["AURORA/data/something/frames/106600/first.jpg", "AURORA/data/something/frames/106600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a paper so that it deforms"}]} +{"id": "000000116910", "images": ["AURORA/data/something/frames/108588/first.jpg", "AURORA/data/something/frames/108588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cover off of couch"}]} +{"id": "000000116911", "images": ["AURORA/data/something/frames/184312/first.jpg", "AURORA/data/something/frames/184312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a ball up"}]} +{"id": "000000116912", "images": ["AURORA/data/something/frames/130515/first.jpg", "AURORA/data/something/frames/130515/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from right to left"}]} +{"id": "000000116913", "images": ["AURORA/data/something/frames/123884/first.jpg", "AURORA/data/something/frames/123884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000116914", "images": ["AURORA/data/something/frames/171294/first.jpg", "AURORA/data/something/frames/171294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: rubber ball colliding with rubber ball and both are being deflected"}]} +{"id": "000000116915", "images": ["AURORA/data/something/frames/192406/first.jpg", "AURORA/data/something/frames/192406/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box off of table"}]} +{"id": "000000116916", "images": ["AURORA/data/something/frames/146953/first.jpg", "AURORA/data/something/frames/146953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming wireless mouse"}]} +{"id": "000000116917", "images": ["AURORA/data/something/frames/216134/first.jpg", "AURORA/data/something/frames/216134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming step up transformer"}]} +{"id": "000000116918", "images": ["AURORA/data/something/frames/52443/first.jpg", "AURORA/data/something/frames/52443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a toy onto a cube"}]} +{"id": "000000116919", "images": ["AURORA/data/something/frames/112653/first.jpg", "AURORA/data/something/frames/112653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning plastic cup upside down"}]} +{"id": "000000116920", "images": ["AURORA/data/something/frames/86731/first.jpg", "AURORA/data/something/frames/86731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind a trash can"}]} +{"id": "000000116921", "images": ["AURORA/data/something/frames/106735/first.jpg", "AURORA/data/something/frames/106735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle closer to bottle"}]} +{"id": "000000116922", "images": ["AURORA/data/something/frames/81087/first.jpg", "AURORA/data/something/frames/81087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tissue from box"}]} +{"id": "000000116923", "images": ["AURORA/data/something/frames/125899/first.jpg", "AURORA/data/something/frames/125899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with glass on it until it starts sliding down"}]} +{"id": "000000116924", "images": ["AURORA/data/something/frames/198296/first.jpg", "AURORA/data/something/frames/198296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen into a small container"}]} +{"id": "000000116925", "images": ["AURORA/data/something/frames/197047/first.jpg", "AURORA/data/something/frames/197047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup so that it almost falls off but doesn't"}]} +{"id": "000000116926", "images": ["AURORA/data/something/frames/186343/first.jpg", "AURORA/data/something/frames/186343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pyramid on a surface"}]} +{"id": "000000116927", "images": ["AURORA/data/something/frames/42454/first.jpg", "AURORA/data/something/frames/42454/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting laptop with cord"}]} +{"id": "000000116928", "images": ["AURORA/data/something/frames/192045/first.jpg", "AURORA/data/something/frames/192045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a leaflet across a surface without it falling down"}]} +{"id": "000000116929", "images": ["AURORA/data/something/frames/137281/first.jpg", "AURORA/data/something/frames/137281/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking phone up"}]} +{"id": "000000116930", "images": ["AURORA/data/something/frames/135383/first.jpg", "AURORA/data/something/frames/135383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a towel wet until water comes out"}]} +{"id": "000000116931", "images": ["AURORA/data/something/frames/23889/first.jpg", "AURORA/data/something/frames/23889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil next to mug"}]} +{"id": "000000116932", "images": ["AURORA/data/something/frames/131879/first.jpg", "AURORA/data/something/frames/131879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000116933", "images": ["AURORA/data/something/frames/1810/first.jpg", "AURORA/data/something/frames/1810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling toy out of box"}]} +{"id": "000000116934", "images": ["AURORA/data/something/frames/2661/first.jpg", "AURORA/data/something/frames/2661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering bottle"}]} +{"id": "000000116935", "images": ["AURORA/data/something/frames/11432/first.jpg", "AURORA/data/something/frames/11432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a dvd and a mug away from each other"}]} +{"id": "000000116936", "images": ["AURORA/data/something/frames/174633/first.jpg", "AURORA/data/something/frames/174633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing plastic bag from left to right"}]} +{"id": "000000116937", "images": ["AURORA/data/something/frames/85262/first.jpg", "AURORA/data/something/frames/85262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging night light into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000116938", "images": ["AURORA/data/something/frames/179478/first.jpg", "AURORA/data/something/frames/179478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 shirts"}]} +{"id": "000000116939", "images": ["AURORA/data/something/frames/39685/first.jpg", "AURORA/data/something/frames/39685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving radio away from powerbank"}]} +{"id": "000000116940", "images": ["AURORA/data/something/frames/168185/first.jpg", "AURORA/data/something/frames/168185/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper onto coaster"}]} +{"id": "000000116941", "images": ["AURORA/data/something/frames/206597/first.jpg", "AURORA/data/something/frames/206597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle closer to candle"}]} +{"id": "000000116942", "images": ["AURORA/data/something/frames/43287/first.jpg", "AURORA/data/something/frames/43287/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming pictures"}]} +{"id": "000000116943", "images": ["AURORA/data/something/frames/216359/first.jpg", "AURORA/data/something/frames/216359/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching small book with your camera"}]} +{"id": "000000116944", "images": ["AURORA/data/something/frames/124045/first.jpg", "AURORA/data/something/frames/124045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into beaker until it overflows"}]} +{"id": "000000116945", "images": ["AURORA/data/something/frames/74115/first.jpg", "AURORA/data/something/frames/74115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing the fan from left to right"}]} +{"id": "000000116946", "images": ["AURORA/data/something/frames/68019/first.jpg", "AURORA/data/something/frames/68019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a coaster from left to right"}]} +{"id": "000000116947", "images": ["AURORA/data/something/frames/63956/first.jpg", "AURORA/data/something/frames/63956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white candle from right to left"}]} +{"id": "000000116948", "images": ["AURORA/data/something/frames/77562/first.jpg", "AURORA/data/something/frames/77562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of trash can"}]} +{"id": "000000116949", "images": ["AURORA/data/something/frames/98797/first.jpg", "AURORA/data/something/frames/98797/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting stapler with highlighter"}]} +{"id": "000000116950", "images": ["AURORA/data/something/frames/27501/first.jpg", "AURORA/data/something/frames/27501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming stapler"}]} +{"id": "000000116951", "images": ["AURORA/data/something/frames/128037/first.jpg", "AURORA/data/something/frames/128037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pens next to a desk organizer"}]} +{"id": "000000116952", "images": ["AURORA/data/something/frames/54968/first.jpg", "AURORA/data/something/frames/54968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one water bottle"}]} +{"id": "000000116953", "images": ["AURORA/data/something/frames/31984/first.jpg", "AURORA/data/something/frames/31984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys onto bag"}]} +{"id": "000000116954", "images": ["AURORA/data/something/frames/140157/first.jpg", "AURORA/data/something/frames/140157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a mug on it until it starts sliding down"}]} +{"id": "000000116955", "images": ["AURORA/data/something/frames/117056/first.jpg", "AURORA/data/something/frames/117056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with paper on it until it starts sliding down"}]} +{"id": "000000116956", "images": ["AURORA/data/something/frames/180859/first.jpg", "AURORA/data/something/frames/180859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming something"}]} +{"id": "000000116957", "images": ["AURORA/data/something/frames/210300/first.jpg", "AURORA/data/something/frames/210300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching fireplace with your camera"}]} +{"id": "000000116958", "images": ["AURORA/data/something/frames/144836/first.jpg", "AURORA/data/something/frames/144836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning hair gel bottle upside down"}]} +{"id": "000000116959", "images": ["AURORA/data/something/frames/89283/first.jpg", "AURORA/data/something/frames/89283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming ring"}]} +{"id": "000000116960", "images": ["AURORA/data/something/frames/215308/first.jpg", "AURORA/data/something/frames/215308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling cassette pie from left to right"}]} +{"id": "000000116961", "images": ["AURORA/data/something/frames/120532/first.jpg", "AURORA/data/something/frames/120532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting desk with highlighter"}]} +{"id": "000000116962", "images": ["AURORA/data/something/frames/53011/first.jpg", "AURORA/data/something/frames/53011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting videotape upright on the table"}]} +{"id": "000000116963", "images": ["AURORA/data/something/frames/196594/first.jpg", "AURORA/data/something/frames/196594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling cereal onto paper"}]} +{"id": "000000116964", "images": ["AURORA/data/something/frames/65842/first.jpg", "AURORA/data/something/frames/65842/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a remote control onto a couch"}]} +{"id": "000000116965", "images": ["AURORA/data/something/frames/118523/first.jpg", "AURORA/data/something/frames/118523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning snow globe upside down"}]} +{"id": "000000116966", "images": ["AURORA/data/something/frames/139161/first.jpg", "AURORA/data/something/frames/139161/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000116967", "images": ["AURORA/data/something/frames/127456/first.jpg", "AURORA/data/something/frames/127456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying waterbottle on the table on its side, not upright"}]} +{"id": "000000116968", "images": ["AURORA/data/something/frames/152367/first.jpg", "AURORA/data/something/frames/152367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116969", "images": ["AURORA/data/something/frames/51893/first.jpg", "AURORA/data/something/frames/51893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flavor juice in front of coffee pot"}]} +{"id": "000000116970", "images": ["AURORA/data/something/frames/167538/first.jpg", "AURORA/data/something/frames/167538/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox next to a shoe brush"}]} +{"id": "000000116971", "images": ["AURORA/data/something/frames/185166/first.jpg", "AURORA/data/something/frames/185166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mixer grinder behind the vessel"}]} +{"id": "000000116972", "images": ["AURORA/data/something/frames/149131/first.jpg", "AURORA/data/something/frames/149131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a piece of paper up"}]} +{"id": "000000116973", "images": ["AURORA/data/something/frames/111300/first.jpg", "AURORA/data/something/frames/111300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pack of cards and a box closer to each other"}]} +{"id": "000000116974", "images": ["AURORA/data/something/frames/212418/first.jpg", "AURORA/data/something/frames/212418/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving metal weight and metal weight closer to each other"}]} +{"id": "000000116975", "images": ["AURORA/data/something/frames/11379/first.jpg", "AURORA/data/something/frames/11379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting yellow coloured hair band next to charger adapter"}]} +{"id": "000000116976", "images": ["AURORA/data/something/frames/151180/first.jpg", "AURORA/data/something/frames/151180/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pencil boxes up"}]} +{"id": "000000116977", "images": ["AURORA/data/something/frames/13136/first.jpg", "AURORA/data/something/frames/13136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting headphones and a book on the table"}]} +{"id": "000000116978", "images": ["AURORA/data/something/frames/127210/first.jpg", "AURORA/data/something/frames/127210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000116979", "images": ["AURORA/data/something/frames/107899/first.jpg", "AURORA/data/something/frames/107899/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pill bottle with pills in it over, so pills falls out"}]} +{"id": "000000116980", "images": ["AURORA/data/something/frames/86673/first.jpg", "AURORA/data/something/frames/86673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening brown covered note book"}]} +{"id": "000000116981", "images": ["AURORA/data/something/frames/78582/first.jpg", "AURORA/data/something/frames/78582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 notebooks"}]} +{"id": "000000116982", "images": ["AURORA/data/something/frames/199813/first.jpg", "AURORA/data/something/frames/199813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cellphone up"}]} +{"id": "000000116983", "images": ["AURORA/data/something/frames/130887/first.jpg", "AURORA/data/something/frames/130887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116984", "images": ["AURORA/data/something/frames/140535/first.jpg", "AURORA/data/something/frames/140535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sticky note just a little bit"}]} +{"id": "000000116985", "images": ["AURORA/data/something/frames/145107/first.jpg", "AURORA/data/something/frames/145107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping shampoo bottle over"}]} +{"id": "000000116986", "images": ["AURORA/data/something/frames/35502/first.jpg", "AURORA/data/something/frames/35502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting book with ruler"}]} +{"id": "000000116987", "images": ["AURORA/data/something/frames/138448/first.jpg", "AURORA/data/something/frames/138448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting purple colour foldable pocket knife into spectacle box"}]} +{"id": "000000116988", "images": ["AURORA/data/something/frames/86118/first.jpg", "AURORA/data/something/frames/86118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning box of tissues upside down"}]} +{"id": "000000116989", "images": ["AURORA/data/something/frames/112712/first.jpg", "AURORA/data/something/frames/112712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key with pen"}]} +{"id": "000000116990", "images": ["AURORA/data/something/frames/75052/first.jpg", "AURORA/data/something/frames/75052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending ruler so that it deforms"}]} +{"id": "000000116991", "images": ["AURORA/data/something/frames/205305/first.jpg", "AURORA/data/something/frames/205305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: small plates colliding with small plates and both are being deflected"}]} +{"id": "000000116992", "images": ["AURORA/data/something/frames/84184/first.jpg", "AURORA/data/something/frames/84184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: paper ball being deflected from water bottle"}]} +{"id": "000000116993", "images": ["AURORA/data/something/frames/216434/first.jpg", "AURORA/data/something/frames/216434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000116994", "images": ["AURORA/data/something/frames/78428/first.jpg", "AURORA/data/something/frames/78428/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a mobile up"}]} +{"id": "000000116995", "images": ["AURORA/data/something/frames/27222/first.jpg", "AURORA/data/something/frames/27222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of paper"}]} +{"id": "000000116996", "images": ["AURORA/data/something/frames/157449/first.jpg", "AURORA/data/something/frames/157449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a pen"}]} +{"id": "000000116997", "images": ["AURORA/data/something/frames/57131/first.jpg", "AURORA/data/something/frames/57131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping earing into glass"}]} +{"id": "000000116998", "images": ["AURORA/data/something/frames/207818/first.jpg", "AURORA/data/something/frames/207818/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging guitar pick out of rice"}]} +{"id": "000000116999", "images": ["AURORA/data/something/frames/169385/first.jpg", "AURORA/data/something/frames/169385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking seven gooseberry"}]} +{"id": "000000117000", "images": ["AURORA/data/something/frames/91758/first.jpg", "AURORA/data/something/frames/91758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000117001", "images": ["AURORA/data/something/frames/173075/first.jpg", "AURORA/data/something/frames/173075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing clothes into a bag"}]} +{"id": "000000117002", "images": ["AURORA/data/something/frames/37836/first.jpg", "AURORA/data/something/frames/37836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000117003", "images": ["AURORA/data/something/frames/27722/first.jpg", "AURORA/data/something/frames/27722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting stool with laptop on it"}]} +{"id": "000000117004", "images": ["AURORA/data/something/frames/140054/first.jpg", "AURORA/data/something/frames/140054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pebble down"}]} +{"id": "000000117005", "images": ["AURORA/data/something/frames/189909/first.jpg", "AURORA/data/something/frames/189909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one spice out of may"}]} +{"id": "000000117006", "images": ["AURORA/data/something/frames/163313/first.jpg", "AURORA/data/something/frames/163313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking five slices of bread"}]} +{"id": "000000117007", "images": ["AURORA/data/something/frames/145466/first.jpg", "AURORA/data/something/frames/145466/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving candle up"}]} +{"id": "000000117008", "images": ["AURORA/data/something/frames/119102/first.jpg", "AURORA/data/something/frames/119102/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a padlock so that it almost falls off but doesn't"}]} +{"id": "000000117009", "images": ["AURORA/data/something/frames/73540/first.jpg", "AURORA/data/something/frames/73540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something on a surface"}]} +{"id": "000000117010", "images": ["AURORA/data/something/frames/119573/first.jpg", "AURORA/data/something/frames/119573/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing avocado off of table"}]} +{"id": "000000117011", "images": ["AURORA/data/something/frames/28864/first.jpg", "AURORA/data/something/frames/28864/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote onto bed"}]} +{"id": "000000117012", "images": ["AURORA/data/something/frames/28865/first.jpg", "AURORA/data/something/frames/28865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue paper into a glass"}]} +{"id": "000000117013", "images": ["AURORA/data/something/frames/55877/first.jpg", "AURORA/data/something/frames/55877/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking toothpaste"}]} +{"id": "000000117014", "images": ["AURORA/data/something/frames/184070/first.jpg", "AURORA/data/something/frames/184070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto cup so it falls down"}]} +{"id": "000000117015", "images": ["AURORA/data/something/frames/72326/first.jpg", "AURORA/data/something/frames/72326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into wall plug"}]} +{"id": "000000117016", "images": ["AURORA/data/something/frames/168061/first.jpg", "AURORA/data/something/frames/168061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting salt shaker onto matchbox so it falls down"}]} +{"id": "000000117017", "images": ["AURORA/data/something/frames/5741/first.jpg", "AURORA/data/something/frames/5741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank down"}]} +{"id": "000000117018", "images": ["AURORA/data/something/frames/7773/first.jpg", "AURORA/data/something/frames/7773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of bottle"}]} +{"id": "000000117019", "images": ["AURORA/data/something/frames/134076/first.jpg", "AURORA/data/something/frames/134076/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pen colliding with another pen and both are being deflected"}]} +{"id": "000000117020", "images": ["AURORA/data/something/frames/2693/first.jpg", "AURORA/data/something/frames/2693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a bench with a shoe"}]} +{"id": "000000117021", "images": ["AURORA/data/something/frames/181760/first.jpg", "AURORA/data/something/frames/181760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of boxes so the stack collapses"}]} +{"id": "000000117022", "images": ["AURORA/data/something/frames/87289/first.jpg", "AURORA/data/something/frames/87289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery behind mug"}]} +{"id": "000000117023", "images": ["AURORA/data/something/frames/33041/first.jpg", "AURORA/data/something/frames/33041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of box"}]} +{"id": "000000117024", "images": ["AURORA/data/something/frames/19837/first.jpg", "AURORA/data/something/frames/19837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pills into pill bottle"}]} +{"id": "000000117025", "images": ["AURORA/data/something/frames/192463/first.jpg", "AURORA/data/something/frames/192463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ring, bangle and chain on the table"}]} +{"id": "000000117026", "images": ["AURORA/data/something/frames/147266/first.jpg", "AURORA/data/something/frames/147266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000117027", "images": ["AURORA/data/something/frames/179668/first.jpg", "AURORA/data/something/frames/179668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling pennies onto floor"}]} +{"id": "000000117028", "images": ["AURORA/data/something/frames/23920/first.jpg", "AURORA/data/something/frames/23920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting debit card, rular and marker on the table"}]} +{"id": "000000117029", "images": ["AURORA/data/something/frames/219060/first.jpg", "AURORA/data/something/frames/219060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker from drawer"}]} +{"id": "000000117030", "images": ["AURORA/data/something/frames/88992/first.jpg", "AURORA/data/something/frames/88992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fork out of plate"}]} +{"id": "000000117031", "images": ["AURORA/data/something/frames/197774/first.jpg", "AURORA/data/something/frames/197774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing door"}]} +{"id": "000000117032", "images": ["AURORA/data/something/frames/177327/first.jpg", "AURORA/data/something/frames/177327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming rubber"}]} +{"id": "000000117033", "images": ["AURORA/data/something/frames/185036/first.jpg", "AURORA/data/something/frames/185036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming plant"}]} +{"id": "000000117034", "images": ["AURORA/data/something/frames/156118/first.jpg", "AURORA/data/something/frames/156118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking book so that it falls over"}]} +{"id": "000000117035", "images": ["AURORA/data/something/frames/195660/first.jpg", "AURORA/data/something/frames/195660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 1 plate onto chair"}]} +{"id": "000000117036", "images": ["AURORA/data/something/frames/86475/first.jpg", "AURORA/data/something/frames/86475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pencil case down"}]} +{"id": "000000117037", "images": ["AURORA/data/something/frames/67222/first.jpg", "AURORA/data/something/frames/67222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paper next to person"}]} +{"id": "000000117038", "images": ["AURORA/data/something/frames/98259/first.jpg", "AURORA/data/something/frames/98259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping coffee spills off of a table"}]} +{"id": "000000117039", "images": ["AURORA/data/something/frames/133158/first.jpg", "AURORA/data/something/frames/133158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming pink toothbrush case"}]} +{"id": "000000117040", "images": ["AURORA/data/something/frames/39317/first.jpg", "AURORA/data/something/frames/39317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with clip on it but not enough for it to slide down"}]} +{"id": "000000117041", "images": ["AURORA/data/something/frames/200298/first.jpg", "AURORA/data/something/frames/200298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from left to right"}]} +{"id": "000000117042", "images": ["AURORA/data/something/frames/183843/first.jpg", "AURORA/data/something/frames/183843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000117043", "images": ["AURORA/data/something/frames/220750/first.jpg", "AURORA/data/something/frames/220750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen from glass"}]} +{"id": "000000117044", "images": ["AURORA/data/something/frames/201527/first.jpg", "AURORA/data/something/frames/201527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something onto something"}]} +{"id": "000000117045", "images": ["AURORA/data/something/frames/32942/first.jpg", "AURORA/data/something/frames/32942/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of hair band so that it gets stretched"}]} +{"id": "000000117046", "images": ["AURORA/data/something/frames/192632/first.jpg", "AURORA/data/something/frames/192632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glas on a surface"}]} +{"id": "000000117047", "images": ["AURORA/data/something/frames/134848/first.jpg", "AURORA/data/something/frames/134848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into laptop"}]} +{"id": "000000117048", "images": ["AURORA/data/something/frames/135768/first.jpg", "AURORA/data/something/frames/135768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 plates"}]} +{"id": "000000117049", "images": ["AURORA/data/something/frames/123057/first.jpg", "AURORA/data/something/frames/123057/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of the table"}]} +{"id": "000000117050", "images": ["AURORA/data/something/frames/114017/first.jpg", "AURORA/data/something/frames/114017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 coins"}]} +{"id": "000000117051", "images": ["AURORA/data/something/frames/187074/first.jpg", "AURORA/data/something/frames/187074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging air freshener into a plug"}]} +{"id": "000000117052", "images": ["AURORA/data/something/frames/146477/first.jpg", "AURORA/data/something/frames/146477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and pen away from each other"}]} +{"id": "000000117053", "images": ["AURORA/data/something/frames/4810/first.jpg", "AURORA/data/something/frames/4810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a lighter upside down"}]} +{"id": "000000117054", "images": ["AURORA/data/something/frames/142577/first.jpg", "AURORA/data/something/frames/142577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hairband, pendrive and hair clip on the table"}]} +{"id": "000000117055", "images": ["AURORA/data/something/frames/140189/first.jpg", "AURORA/data/something/frames/140189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pillow off of couch"}]} +{"id": "000000117056", "images": ["AURORA/data/something/frames/81100/first.jpg", "AURORA/data/something/frames/81100/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000117057", "images": ["AURORA/data/something/frames/48381/first.jpg", "AURORA/data/something/frames/48381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book and smarthphone away from each other"}]} +{"id": "000000117058", "images": ["AURORA/data/something/frames/113381/first.jpg", "AURORA/data/something/frames/113381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000117059", "images": ["AURORA/data/something/frames/107646/first.jpg", "AURORA/data/something/frames/107646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000117060", "images": ["AURORA/data/something/frames/134918/first.jpg", "AURORA/data/something/frames/134918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a telephone so that it almost falls off but doesn't"}]} +{"id": "000000117061", "images": ["AURORA/data/something/frames/85424/first.jpg", "AURORA/data/something/frames/85424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000117062", "images": ["AURORA/data/something/frames/138854/first.jpg", "AURORA/data/something/frames/138854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving green colour pen up"}]} +{"id": "000000117063", "images": ["AURORA/data/something/frames/161289/first.jpg", "AURORA/data/something/frames/161289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving crayon closer to doorknob"}]} +{"id": "000000117064", "images": ["AURORA/data/something/frames/17223/first.jpg", "AURORA/data/something/frames/17223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping card over"}]} +{"id": "000000117065", "images": ["AURORA/data/something/frames/27351/first.jpg", "AURORA/data/something/frames/27351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to cup"}]} +{"id": "000000117066", "images": ["AURORA/data/something/frames/106189/first.jpg", "AURORA/data/something/frames/106189/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into socket"}]} +{"id": "000000117067", "images": ["AURORA/data/something/frames/98792/first.jpg", "AURORA/data/something/frames/98792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen into a mug"}]} +{"id": "000000117068", "images": ["AURORA/data/something/frames/126789/first.jpg", "AURORA/data/something/frames/126789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wallet being deflected from desk"}]} +{"id": "000000117069", "images": ["AURORA/data/something/frames/80714/first.jpg", "AURORA/data/something/frames/80714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a head with a hat"}]} +{"id": "000000117070", "images": ["AURORA/data/something/frames/190272/first.jpg", "AURORA/data/something/frames/190272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving striker coin down"}]} +{"id": "000000117071", "images": ["AURORA/data/something/frames/79372/first.jpg", "AURORA/data/something/frames/79372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming ball"}]} +{"id": "000000117072", "images": ["AURORA/data/something/frames/194908/first.jpg", "AURORA/data/something/frames/194908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking sponge so that it falls over"}]} +{"id": "000000117073", "images": ["AURORA/data/something/frames/175034/first.jpg", "AURORA/data/something/frames/175034/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass onto a slanted surface but it doesn't glide down"}]} +{"id": "000000117074", "images": ["AURORA/data/something/frames/31762/first.jpg", "AURORA/data/something/frames/31762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking something out of something"}]} +{"id": "000000117075", "images": ["AURORA/data/something/frames/10012/first.jpg", "AURORA/data/something/frames/10012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stamp pad from right to left"}]} +{"id": "000000117076", "images": ["AURORA/data/something/frames/143712/first.jpg", "AURORA/data/something/frames/143712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling stuff onto a surface"}]} +{"id": "000000117077", "images": ["AURORA/data/something/frames/2699/first.jpg", "AURORA/data/something/frames/2699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a wire into a telephone"}]} +{"id": "000000117078", "images": ["AURORA/data/something/frames/12747/first.jpg", "AURORA/data/something/frames/12747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117079", "images": ["AURORA/data/something/frames/209388/first.jpg", "AURORA/data/something/frames/209388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a coin to a wall"}]} +{"id": "000000117080", "images": ["AURORA/data/something/frames/135379/first.jpg", "AURORA/data/something/frames/135379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a scarf"}]} +{"id": "000000117081", "images": ["AURORA/data/something/frames/87993/first.jpg", "AURORA/data/something/frames/87993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a charger next to a bottle"}]} +{"id": "000000117082", "images": ["AURORA/data/something/frames/202902/first.jpg", "AURORA/data/something/frames/202902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a perfume bottle onto the floor"}]} +{"id": "000000117083", "images": ["AURORA/data/something/frames/81108/first.jpg", "AURORA/data/something/frames/81108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into charger"}]} +{"id": "000000117084", "images": ["AURORA/data/something/frames/108041/first.jpg", "AURORA/data/something/frames/108041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing pen"}]} +{"id": "000000117085", "images": ["AURORA/data/something/frames/62681/first.jpg", "AURORA/data/something/frames/62681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping rice up with spoon"}]} +{"id": "000000117086", "images": ["AURORA/data/something/frames/65280/first.jpg", "AURORA/data/something/frames/65280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a box onto a chair"}]} +{"id": "000000117087", "images": ["AURORA/data/something/frames/64118/first.jpg", "AURORA/data/something/frames/64118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117088", "images": ["AURORA/data/something/frames/130172/first.jpg", "AURORA/data/something/frames/130172/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper folder"}]} +{"id": "000000117089", "images": ["AURORA/data/something/frames/115799/first.jpg", "AURORA/data/something/frames/115799/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking book out of bag"}]} +{"id": "000000117090", "images": ["AURORA/data/something/frames/48561/first.jpg", "AURORA/data/something/frames/48561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen into a glass"}]} +{"id": "000000117091", "images": ["AURORA/data/something/frames/30297/first.jpg", "AURORA/data/something/frames/30297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding bed sheet"}]} +{"id": "000000117092", "images": ["AURORA/data/something/frames/186219/first.jpg", "AURORA/data/something/frames/186219/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a napkin from behind of a pillow"}]} +{"id": "000000117093", "images": ["AURORA/data/something/frames/206244/first.jpg", "AURORA/data/something/frames/206244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a cloth into a purse"}]} +{"id": "000000117094", "images": ["AURORA/data/something/frames/106801/first.jpg", "AURORA/data/something/frames/106801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering purse with towel"}]} +{"id": "000000117095", "images": ["AURORA/data/something/frames/178569/first.jpg", "AURORA/data/something/frames/178569/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a computer mouse so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117096", "images": ["AURORA/data/something/frames/108579/first.jpg", "AURORA/data/something/frames/108579/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117097", "images": ["AURORA/data/something/frames/33760/first.jpg", "AURORA/data/something/frames/33760/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening cream tube"}]} +{"id": "000000117098", "images": ["AURORA/data/something/frames/194422/first.jpg", "AURORA/data/something/frames/194422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117099", "images": ["AURORA/data/something/frames/21373/first.jpg", "AURORA/data/something/frames/21373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing jar"}]} +{"id": "000000117100", "images": ["AURORA/data/something/frames/30749/first.jpg", "AURORA/data/something/frames/30749/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000117101", "images": ["AURORA/data/something/frames/51343/first.jpg", "AURORA/data/something/frames/51343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000117102", "images": ["AURORA/data/something/frames/4725/first.jpg", "AURORA/data/something/frames/4725/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a ball onto a shelf"}]} +{"id": "000000117103", "images": ["AURORA/data/something/frames/93493/first.jpg", "AURORA/data/something/frames/93493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving blocks across a surface without it falling down"}]} +{"id": "000000117104", "images": ["AURORA/data/something/frames/132010/first.jpg", "AURORA/data/something/frames/132010/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping keys into a bowl"}]} +{"id": "000000117105", "images": ["AURORA/data/something/frames/143904/first.jpg", "AURORA/data/something/frames/143904/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing piece of paper into two pieces"}]} +{"id": "000000117106", "images": ["AURORA/data/something/frames/173782/first.jpg", "AURORA/data/something/frames/173782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pillow with blanket"}]} +{"id": "000000117107", "images": ["AURORA/data/something/frames/206696/first.jpg", "AURORA/data/something/frames/206696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mug from right to left"}]} +{"id": "000000117108", "images": ["AURORA/data/something/frames/40414/first.jpg", "AURORA/data/something/frames/40414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking lip balm so that it falls over"}]} +{"id": "000000117109", "images": ["AURORA/data/something/frames/99901/first.jpg", "AURORA/data/something/frames/99901/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottle cap"}]} +{"id": "000000117110", "images": ["AURORA/data/something/frames/134252/first.jpg", "AURORA/data/something/frames/134252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting buttons and coaster on the table"}]} +{"id": "000000117111", "images": ["AURORA/data/something/frames/154717/first.jpg", "AURORA/data/something/frames/154717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping sellotape in front of box"}]} +{"id": "000000117112", "images": ["AURORA/data/something/frames/103938/first.jpg", "AURORA/data/something/frames/103938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting battery onto small tin so it falls down"}]} +{"id": "000000117113", "images": ["AURORA/data/something/frames/113764/first.jpg", "AURORA/data/something/frames/113764/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding invitation letter"}]} +{"id": "000000117114", "images": ["AURORA/data/something/frames/73936/first.jpg", "AURORA/data/something/frames/73936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toothbrush on a surface"}]} +{"id": "000000117115", "images": ["AURORA/data/something/frames/16441/first.jpg", "AURORA/data/something/frames/16441/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into sink"}]} +{"id": "000000117116", "images": ["AURORA/data/something/frames/171973/first.jpg", "AURORA/data/something/frames/171973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming red booklet"}]} +{"id": "000000117117", "images": ["AURORA/data/something/frames/92995/first.jpg", "AURORA/data/something/frames/92995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting hand with rainboot"}]} +{"id": "000000117118", "images": ["AURORA/data/something/frames/18745/first.jpg", "AURORA/data/something/frames/18745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching glass with your camera"}]} +{"id": "000000117119", "images": ["AURORA/data/something/frames/50740/first.jpg", "AURORA/data/something/frames/50740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching clip to ring"}]} +{"id": "000000117120", "images": ["AURORA/data/something/frames/62372/first.jpg", "AURORA/data/something/frames/62372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a bandage so that it separates into two pieces"}]} +{"id": "000000117121", "images": ["AURORA/data/something/frames/118678/first.jpg", "AURORA/data/something/frames/118678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of a table"}]} +{"id": "000000117122", "images": ["AURORA/data/something/frames/173941/first.jpg", "AURORA/data/something/frames/173941/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a sofa with a cushion"}]} +{"id": "000000117123", "images": ["AURORA/data/something/frames/120687/first.jpg", "AURORA/data/something/frames/120687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from vacuum cleaner with your camera"}]} +{"id": "000000117124", "images": ["AURORA/data/something/frames/15449/first.jpg", "AURORA/data/something/frames/15449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 bibles"}]} +{"id": "000000117125", "images": ["AURORA/data/something/frames/54110/first.jpg", "AURORA/data/something/frames/54110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flower away from the camera"}]} +{"id": "000000117126", "images": ["AURORA/data/something/frames/190897/first.jpg", "AURORA/data/something/frames/190897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup on a surface"}]} +{"id": "000000117127", "images": ["AURORA/data/something/frames/110340/first.jpg", "AURORA/data/something/frames/110340/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of sprayer so that it separates into two pieces"}]} +{"id": "000000117128", "images": ["AURORA/data/something/frames/188137/first.jpg", "AURORA/data/something/frames/188137/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting watch on a surface"}]} +{"id": "000000117129", "images": ["AURORA/data/something/frames/218823/first.jpg", "AURORA/data/something/frames/218823/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000117130", "images": ["AURORA/data/something/frames/34291/first.jpg", "AURORA/data/something/frames/34291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of paper"}]} +{"id": "000000117131", "images": ["AURORA/data/something/frames/81009/first.jpg", "AURORA/data/something/frames/81009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117132", "images": ["AURORA/data/something/frames/214380/first.jpg", "AURORA/data/something/frames/214380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a vessel with a thermocol box"}]} +{"id": "000000117133", "images": ["AURORA/data/something/frames/44325/first.jpg", "AURORA/data/something/frames/44325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a pen up"}]} +{"id": "000000117134", "images": ["AURORA/data/something/frames/143775/first.jpg", "AURORA/data/something/frames/143775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from right to left"}]} +{"id": "000000117135", "images": ["AURORA/data/something/frames/10509/first.jpg", "AURORA/data/something/frames/10509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plastic package up completely without letting it drop down"}]} +{"id": "000000117136", "images": ["AURORA/data/something/frames/216213/first.jpg", "AURORA/data/something/frames/216213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) earth of globe"}]} +{"id": "000000117137", "images": ["AURORA/data/something/frames/182111/first.jpg", "AURORA/data/something/frames/182111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coins"}]} +{"id": "000000117138", "images": ["AURORA/data/something/frames/9965/first.jpg", "AURORA/data/something/frames/9965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving iphone and small pillow away from each other"}]} +{"id": "000000117139", "images": ["AURORA/data/something/frames/206214/first.jpg", "AURORA/data/something/frames/206214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a paperweight away from coffee cup"}]} +{"id": "000000117140", "images": ["AURORA/data/something/frames/189956/first.jpg", "AURORA/data/something/frames/189956/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a marker on it"}]} +{"id": "000000117141", "images": ["AURORA/data/something/frames/18178/first.jpg", "AURORA/data/something/frames/18178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to cufflinks"}]} +{"id": "000000117142", "images": ["AURORA/data/something/frames/198357/first.jpg", "AURORA/data/something/frames/198357/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote and spoon on the table"}]} +{"id": "000000117143", "images": ["AURORA/data/something/frames/167055/first.jpg", "AURORA/data/something/frames/167055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering watch with tissue"}]} +{"id": "000000117144", "images": ["AURORA/data/something/frames/98603/first.jpg", "AURORA/data/something/frames/98603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black remote from right to left"}]} +{"id": "000000117145", "images": ["AURORA/data/something/frames/200865/first.jpg", "AURORA/data/something/frames/200865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into charger but pulling it right out as you remove your hand"}]} +{"id": "000000117146", "images": ["AURORA/data/something/frames/156231/first.jpg", "AURORA/data/something/frames/156231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hanger towards the camera"}]} +{"id": "000000117147", "images": ["AURORA/data/something/frames/202907/first.jpg", "AURORA/data/something/frames/202907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing thermos"}]} +{"id": "000000117148", "images": ["AURORA/data/something/frames/215928/first.jpg", "AURORA/data/something/frames/215928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sticky notes, a pen and a candle on the table"}]} +{"id": "000000117149", "images": ["AURORA/data/something/frames/48378/first.jpg", "AURORA/data/something/frames/48378/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of blocks so the stack collapses"}]} +{"id": "000000117150", "images": ["AURORA/data/something/frames/6476/first.jpg", "AURORA/data/something/frames/6476/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting water bottle with comb"}]} +{"id": "000000117151", "images": ["AURORA/data/something/frames/186556/first.jpg", "AURORA/data/something/frames/186556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and fork away from each other"}]} +{"id": "000000117152", "images": ["AURORA/data/something/frames/95870/first.jpg", "AURORA/data/something/frames/95870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen out of a cup"}]} +{"id": "000000117153", "images": ["AURORA/data/something/frames/133202/first.jpg", "AURORA/data/something/frames/133202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening green face powder"}]} +{"id": "000000117154", "images": ["AURORA/data/something/frames/170488/first.jpg", "AURORA/data/something/frames/170488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing alcohol from left to right"}]} +{"id": "000000117155", "images": ["AURORA/data/something/frames/107377/first.jpg", "AURORA/data/something/frames/107377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pebble, battery and key on the table"}]} +{"id": "000000117156", "images": ["AURORA/data/something/frames/186777/first.jpg", "AURORA/data/something/frames/186777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling tissue out of box"}]} +{"id": "000000117157", "images": ["AURORA/data/something/frames/149112/first.jpg", "AURORA/data/something/frames/149112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pencil up"}]} +{"id": "000000117158", "images": ["AURORA/data/something/frames/184391/first.jpg", "AURORA/data/something/frames/184391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into power outlet"}]} +{"id": "000000117159", "images": ["AURORA/data/something/frames/163597/first.jpg", "AURORA/data/something/frames/163597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping soda bottle over"}]} +{"id": "000000117160", "images": ["AURORA/data/something/frames/208134/first.jpg", "AURORA/data/something/frames/208134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cell phone and paper away from each other"}]} +{"id": "000000117161", "images": ["AURORA/data/something/frames/199968/first.jpg", "AURORA/data/something/frames/199968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117162", "images": ["AURORA/data/something/frames/43510/first.jpg", "AURORA/data/something/frames/43510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cell phone charging cable"}]} +{"id": "000000117163", "images": ["AURORA/data/something/frames/142070/first.jpg", "AURORA/data/something/frames/142070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking four articles of clothes"}]} +{"id": "000000117164", "images": ["AURORA/data/something/frames/142266/first.jpg", "AURORA/data/something/frames/142266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler down"}]} +{"id": "000000117165", "images": ["AURORA/data/something/frames/43853/first.jpg", "AURORA/data/something/frames/43853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pieces of paper"}]} +{"id": "000000117166", "images": ["AURORA/data/something/frames/194028/first.jpg", "AURORA/data/something/frames/194028/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) edge of plate"}]} +{"id": "000000117167", "images": ["AURORA/data/something/frames/17331/first.jpg", "AURORA/data/something/frames/17331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing napkin into two pieces"}]} +{"id": "000000117168", "images": ["AURORA/data/something/frames/164600/first.jpg", "AURORA/data/something/frames/164600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming cow"}]} +{"id": "000000117169", "images": ["AURORA/data/something/frames/108453/first.jpg", "AURORA/data/something/frames/108453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker into mug"}]} +{"id": "000000117170", "images": ["AURORA/data/something/frames/131701/first.jpg", "AURORA/data/something/frames/131701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with glue bottle on it"}]} +{"id": "000000117171", "images": ["AURORA/data/something/frames/115400/first.jpg", "AURORA/data/something/frames/115400/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling things up"}]} +{"id": "000000117172", "images": ["AURORA/data/something/frames/219321/first.jpg", "AURORA/data/something/frames/219321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending plastic fork until it breaks"}]} +{"id": "000000117173", "images": ["AURORA/data/something/frames/63936/first.jpg", "AURORA/data/something/frames/63936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking a shell up"}]} +{"id": "000000117174", "images": ["AURORA/data/something/frames/213085/first.jpg", "AURORA/data/something/frames/213085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting tablet with deodorant on it"}]} +{"id": "000000117175", "images": ["AURORA/data/something/frames/165666/first.jpg", "AURORA/data/something/frames/165666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wood and binder clip closer to each other"}]} +{"id": "000000117176", "images": ["AURORA/data/something/frames/82682/first.jpg", "AURORA/data/something/frames/82682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cd player and usb away from each other"}]} +{"id": "000000117177", "images": ["AURORA/data/something/frames/53264/first.jpg", "AURORA/data/something/frames/53264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen from front of"}]} +{"id": "000000117178", "images": ["AURORA/data/something/frames/178520/first.jpg", "AURORA/data/something/frames/178520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping salt off of table"}]} +{"id": "000000117179", "images": ["AURORA/data/something/frames/182184/first.jpg", "AURORA/data/something/frames/182184/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving rock up"}]} +{"id": "000000117180", "images": ["AURORA/data/something/frames/5588/first.jpg", "AURORA/data/something/frames/5588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting lotion"}]} +{"id": "000000117181", "images": ["AURORA/data/something/frames/65162/first.jpg", "AURORA/data/something/frames/65162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping toiletpaper over"}]} +{"id": "000000117182", "images": ["AURORA/data/something/frames/160061/first.jpg", "AURORA/data/something/frames/160061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding napkin"}]} +{"id": "000000117183", "images": ["AURORA/data/something/frames/182876/first.jpg", "AURORA/data/something/frames/182876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle being deflected from wall"}]} +{"id": "000000117184", "images": ["AURORA/data/something/frames/50140/first.jpg", "AURORA/data/something/frames/50140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117185", "images": ["AURORA/data/something/frames/19300/first.jpg", "AURORA/data/something/frames/19300/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into computer"}]} +{"id": "000000117186", "images": ["AURORA/data/something/frames/124893/first.jpg", "AURORA/data/something/frames/124893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin in front of a lid"}]} +{"id": "000000117187", "images": ["AURORA/data/something/frames/149011/first.jpg", "AURORA/data/something/frames/149011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching recorder piece to recorder end piece"}]} +{"id": "000000117188", "images": ["AURORA/data/something/frames/171659/first.jpg", "AURORA/data/something/frames/171659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pear with a pen"}]} +{"id": "000000117189", "images": ["AURORA/data/something/frames/148520/first.jpg", "AURORA/data/something/frames/148520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a wooden figure upright on the table, so it falls on its side"}]} +{"id": "000000117190", "images": ["AURORA/data/something/frames/124093/first.jpg", "AURORA/data/something/frames/124093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117191", "images": ["AURORA/data/something/frames/161519/first.jpg", "AURORA/data/something/frames/161519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marker upright on the table, so it falls on its side"}]} +{"id": "000000117192", "images": ["AURORA/data/something/frames/142326/first.jpg", "AURORA/data/something/frames/142326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of tissue paper so that it separates into two pieces"}]} +{"id": "000000117193", "images": ["AURORA/data/something/frames/149882/first.jpg", "AURORA/data/something/frames/149882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging night light into outlet"}]} +{"id": "000000117194", "images": ["AURORA/data/something/frames/140448/first.jpg", "AURORA/data/something/frames/140448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending branch until it breaks"}]} +{"id": "000000117195", "images": ["AURORA/data/something/frames/95522/first.jpg", "AURORA/data/something/frames/95522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting soft drink pack on a surface"}]} +{"id": "000000117196", "images": ["AURORA/data/something/frames/134065/first.jpg", "AURORA/data/something/frames/134065/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering coaster"}]} +{"id": "000000117197", "images": ["AURORA/data/something/frames/195142/first.jpg", "AURORA/data/something/frames/195142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the bottle and the box away from each other"}]} +{"id": "000000117198", "images": ["AURORA/data/something/frames/41436/first.jpg", "AURORA/data/something/frames/41436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving canister and cup so they pass each other"}]} +{"id": "000000117199", "images": ["AURORA/data/something/frames/87127/first.jpg", "AURORA/data/something/frames/87127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something onto something else that so it falls down"}]} +{"id": "000000117200", "images": ["AURORA/data/something/frames/122971/first.jpg", "AURORA/data/something/frames/122971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: book colliding with book and both are being deflected"}]} +{"id": "000000117201", "images": ["AURORA/data/something/frames/134790/first.jpg", "AURORA/data/something/frames/134790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stick until it breaks"}]} +{"id": "000000117202", "images": ["AURORA/data/something/frames/179768/first.jpg", "AURORA/data/something/frames/179768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting box with scale"}]} +{"id": "000000117203", "images": ["AURORA/data/something/frames/195322/first.jpg", "AURORA/data/something/frames/195322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping fork onto floor"}]} +{"id": "000000117204", "images": ["AURORA/data/something/frames/201604/first.jpg", "AURORA/data/something/frames/201604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cloth"}]} +{"id": "000000117205", "images": ["AURORA/data/something/frames/148911/first.jpg", "AURORA/data/something/frames/148911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clip onto cream tin"}]} +{"id": "000000117206", "images": ["AURORA/data/something/frames/185525/first.jpg", "AURORA/data/something/frames/185525/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving note book down"}]} +{"id": "000000117207", "images": ["AURORA/data/something/frames/107619/first.jpg", "AURORA/data/something/frames/107619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hair clip similar to other hairclips that are already on the table"}]} +{"id": "000000117208", "images": ["AURORA/data/something/frames/2800/first.jpg", "AURORA/data/something/frames/2800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a charger next to a box"}]} +{"id": "000000117209", "images": ["AURORA/data/something/frames/192618/first.jpg", "AURORA/data/something/frames/192618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving coin up"}]} +{"id": "000000117210", "images": ["AURORA/data/something/frames/206836/first.jpg", "AURORA/data/something/frames/206836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a cup until it overflows"}]} +{"id": "000000117211", "images": ["AURORA/data/something/frames/86148/first.jpg", "AURORA/data/something/frames/86148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a beaker so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117212", "images": ["AURORA/data/something/frames/150124/first.jpg", "AURORA/data/something/frames/150124/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) paper towel wet until water comes out"}]} +{"id": "000000117213", "images": ["AURORA/data/something/frames/156862/first.jpg", "AURORA/data/something/frames/156862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet into bag"}]} +{"id": "000000117214", "images": ["AURORA/data/something/frames/79825/first.jpg", "AURORA/data/something/frames/79825/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000117215", "images": ["AURORA/data/something/frames/32165/first.jpg", "AURORA/data/something/frames/32165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching crystal candle holder with your camera"}]} +{"id": "000000117216", "images": ["AURORA/data/something/frames/76786/first.jpg", "AURORA/data/something/frames/76786/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000117217", "images": ["AURORA/data/something/frames/195135/first.jpg", "AURORA/data/something/frames/195135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen"}]} +{"id": "000000117218", "images": ["AURORA/data/something/frames/195976/first.jpg", "AURORA/data/something/frames/195976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ring behind matchbox"}]} +{"id": "000000117219", "images": ["AURORA/data/something/frames/162311/first.jpg", "AURORA/data/something/frames/162311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000117220", "images": ["AURORA/data/something/frames/174074/first.jpg", "AURORA/data/something/frames/174074/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning box upside down"}]} +{"id": "000000117221", "images": ["AURORA/data/something/frames/59220/first.jpg", "AURORA/data/something/frames/59220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into a adapter"}]} +{"id": "000000117222", "images": ["AURORA/data/something/frames/85689/first.jpg", "AURORA/data/something/frames/85689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic spoon closer to orange"}]} +{"id": "000000117223", "images": ["AURORA/data/something/frames/99643/first.jpg", "AURORA/data/something/frames/99643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000117224", "images": ["AURORA/data/something/frames/25829/first.jpg", "AURORA/data/something/frames/25829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking purse up"}]} +{"id": "000000117225", "images": ["AURORA/data/something/frames/214590/first.jpg", "AURORA/data/something/frames/214590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a marker"}]} +{"id": "000000117226", "images": ["AURORA/data/something/frames/148858/first.jpg", "AURORA/data/something/frames/148858/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a brass casing up completely without letting it drop down"}]} +{"id": "000000117227", "images": ["AURORA/data/something/frames/178283/first.jpg", "AURORA/data/something/frames/178283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto sponge"}]} +{"id": "000000117228", "images": ["AURORA/data/something/frames/73456/first.jpg", "AURORA/data/something/frames/73456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming battery"}]} +{"id": "000000117229", "images": ["AURORA/data/something/frames/187735/first.jpg", "AURORA/data/something/frames/187735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving punching machine closer to magnifying glass"}]} +{"id": "000000117230", "images": ["AURORA/data/something/frames/110509/first.jpg", "AURORA/data/something/frames/110509/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small book from left to right"}]} +{"id": "000000117231", "images": ["AURORA/data/something/frames/86492/first.jpg", "AURORA/data/something/frames/86492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking wheel"}]} +{"id": "000000117232", "images": ["AURORA/data/something/frames/177260/first.jpg", "AURORA/data/something/frames/177260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fruit next to bowl"}]} +{"id": "000000117233", "images": ["AURORA/data/something/frames/189756/first.jpg", "AURORA/data/something/frames/189756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coffee cup"}]} +{"id": "000000117234", "images": ["AURORA/data/something/frames/134519/first.jpg", "AURORA/data/something/frames/134519/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting jar cap"}]} +{"id": "000000117235", "images": ["AURORA/data/something/frames/199520/first.jpg", "AURORA/data/something/frames/199520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117236", "images": ["AURORA/data/something/frames/6510/first.jpg", "AURORA/data/something/frames/6510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pack of gum behind a glass jar"}]} +{"id": "000000117237", "images": ["AURORA/data/something/frames/141187/first.jpg", "AURORA/data/something/frames/141187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering keys"}]} +{"id": "000000117238", "images": ["AURORA/data/something/frames/54809/first.jpg", "AURORA/data/something/frames/54809/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing napkin into two pieces"}]} +{"id": "000000117239", "images": ["AURORA/data/something/frames/200151/first.jpg", "AURORA/data/something/frames/200151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one vase from three."}]} +{"id": "000000117240", "images": ["AURORA/data/something/frames/194702/first.jpg", "AURORA/data/something/frames/194702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling water onto a mirror"}]} +{"id": "000000117241", "images": ["AURORA/data/something/frames/196688/first.jpg", "AURORA/data/something/frames/196688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with hand"}]} +{"id": "000000117242", "images": ["AURORA/data/something/frames/12545/first.jpg", "AURORA/data/something/frames/12545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) knob of door"}]} +{"id": "000000117243", "images": ["AURORA/data/something/frames/177229/first.jpg", "AURORA/data/something/frames/177229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting hair gel with chapstick on it"}]} +{"id": "000000117244", "images": ["AURORA/data/something/frames/91290/first.jpg", "AURORA/data/something/frames/91290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading jam onto bread"}]} +{"id": "000000117245", "images": ["AURORA/data/something/frames/66663/first.jpg", "AURORA/data/something/frames/66663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tape with a box"}]} +{"id": "000000117246", "images": ["AURORA/data/something/frames/123431/first.jpg", "AURORA/data/something/frames/123431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging earphone into cell phone"}]} +{"id": "000000117247", "images": ["AURORA/data/something/frames/71267/first.jpg", "AURORA/data/something/frames/71267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117248", "images": ["AURORA/data/something/frames/98329/first.jpg", "AURORA/data/something/frames/98329/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing shirt just a little bit"}]} +{"id": "000000117249", "images": ["AURORA/data/something/frames/96190/first.jpg", "AURORA/data/something/frames/96190/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding something"}]} +{"id": "000000117250", "images": ["AURORA/data/something/frames/95108/first.jpg", "AURORA/data/something/frames/95108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel into two pieces"}]} +{"id": "000000117251", "images": ["AURORA/data/something/frames/124583/first.jpg", "AURORA/data/something/frames/124583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: truck colliding with car and both are being deflected"}]} +{"id": "000000117252", "images": ["AURORA/data/something/frames/68702/first.jpg", "AURORA/data/something/frames/68702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117253", "images": ["AURORA/data/something/frames/120653/first.jpg", "AURORA/data/something/frames/120653/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a zipper on a make up bag"}]} +{"id": "000000117254", "images": ["AURORA/data/something/frames/114501/first.jpg", "AURORA/data/something/frames/114501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing chair from left to right"}]} +{"id": "000000117255", "images": ["AURORA/data/something/frames/124327/first.jpg", "AURORA/data/something/frames/124327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming teacups"}]} +{"id": "000000117256", "images": ["AURORA/data/something/frames/36695/first.jpg", "AURORA/data/something/frames/36695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a tin with a nail"}]} +{"id": "000000117257", "images": ["AURORA/data/something/frames/42709/first.jpg", "AURORA/data/something/frames/42709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a remote away from two other remotes"}]} +{"id": "000000117258", "images": ["AURORA/data/something/frames/169063/first.jpg", "AURORA/data/something/frames/169063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding bill"}]} +{"id": "000000117259", "images": ["AURORA/data/something/frames/2917/first.jpg", "AURORA/data/something/frames/2917/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving comb and key closer to each other"}]} +{"id": "000000117260", "images": ["AURORA/data/something/frames/12276/first.jpg", "AURORA/data/something/frames/12276/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a teddy bear up completely without letting it drop down"}]} +{"id": "000000117261", "images": ["AURORA/data/something/frames/32175/first.jpg", "AURORA/data/something/frames/32175/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with plate on it until it starts sliding down"}]} +{"id": "000000117262", "images": ["AURORA/data/something/frames/148667/first.jpg", "AURORA/data/something/frames/148667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing kitchen paper just a little bit"}]} +{"id": "000000117263", "images": ["AURORA/data/something/frames/36536/first.jpg", "AURORA/data/something/frames/36536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass and sock closer to each other"}]} +{"id": "000000117264", "images": ["AURORA/data/something/frames/112147/first.jpg", "AURORA/data/something/frames/112147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing orange post-it from left to right"}]} +{"id": "000000117265", "images": ["AURORA/data/something/frames/93104/first.jpg", "AURORA/data/something/frames/93104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000117266", "images": ["AURORA/data/something/frames/80240/first.jpg", "AURORA/data/something/frames/80240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book down"}]} +{"id": "000000117267", "images": ["AURORA/data/something/frames/41820/first.jpg", "AURORA/data/something/frames/41820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife onto cup"}]} +{"id": "000000117268", "images": ["AURORA/data/something/frames/82259/first.jpg", "AURORA/data/something/frames/82259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting lotion with lipgloss"}]} +{"id": "000000117269", "images": ["AURORA/data/something/frames/190556/first.jpg", "AURORA/data/something/frames/190556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving key away from cup"}]} +{"id": "000000117270", "images": ["AURORA/data/something/frames/110225/first.jpg", "AURORA/data/something/frames/110225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping hair tie next to wallet"}]} +{"id": "000000117271", "images": ["AURORA/data/something/frames/180885/first.jpg", "AURORA/data/something/frames/180885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting two brushes onto book"}]} +{"id": "000000117272", "images": ["AURORA/data/something/frames/20909/first.jpg", "AURORA/data/something/frames/20909/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a stapler onto a chair"}]} +{"id": "000000117273", "images": ["AURORA/data/something/frames/177531/first.jpg", "AURORA/data/something/frames/177531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) handle of microwave"}]} +{"id": "000000117274", "images": ["AURORA/data/something/frames/123615/first.jpg", "AURORA/data/something/frames/123615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing steel glass from right to left"}]} +{"id": "000000117275", "images": ["AURORA/data/something/frames/14811/first.jpg", "AURORA/data/something/frames/14811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 compass onto blue note"}]} +{"id": "000000117276", "images": ["AURORA/data/something/frames/86801/first.jpg", "AURORA/data/something/frames/86801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 cookies"}]} +{"id": "000000117277", "images": ["AURORA/data/something/frames/12718/first.jpg", "AURORA/data/something/frames/12718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scissors closer to a toothbrush"}]} +{"id": "000000117278", "images": ["AURORA/data/something/frames/21763/first.jpg", "AURORA/data/something/frames/21763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117279", "images": ["AURORA/data/something/frames/77236/first.jpg", "AURORA/data/something/frames/77236/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of plastic so the stack collapses"}]} +{"id": "000000117280", "images": ["AURORA/data/something/frames/176212/first.jpg", "AURORA/data/something/frames/176212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing piece of paper into two pieces"}]} +{"id": "000000117281", "images": ["AURORA/data/something/frames/22852/first.jpg", "AURORA/data/something/frames/22852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping golf ball into bowl"}]} +{"id": "000000117282", "images": ["AURORA/data/something/frames/114673/first.jpg", "AURORA/data/something/frames/114673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000117283", "images": ["AURORA/data/something/frames/687/first.jpg", "AURORA/data/something/frames/687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing something into something"}]} +{"id": "000000117284", "images": ["AURORA/data/something/frames/47212/first.jpg", "AURORA/data/something/frames/47212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle next to a cup"}]} +{"id": "000000117285", "images": ["AURORA/data/something/frames/66733/first.jpg", "AURORA/data/something/frames/66733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen out of glass"}]} +{"id": "000000117286", "images": ["AURORA/data/something/frames/205630/first.jpg", "AURORA/data/something/frames/205630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fork behind mug"}]} +{"id": "000000117287", "images": ["AURORA/data/something/frames/81277/first.jpg", "AURORA/data/something/frames/81277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a book with a lighter"}]} +{"id": "000000117288", "images": ["AURORA/data/something/frames/13268/first.jpg", "AURORA/data/something/frames/13268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging plastic spoon out of salt"}]} +{"id": "000000117289", "images": ["AURORA/data/something/frames/77626/first.jpg", "AURORA/data/something/frames/77626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candle behind decorative pear"}]} +{"id": "000000117290", "images": ["AURORA/data/something/frames/70181/first.jpg", "AURORA/data/something/frames/70181/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sweater into purse"}]} +{"id": "000000117291", "images": ["AURORA/data/something/frames/7024/first.jpg", "AURORA/data/something/frames/7024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening magazine"}]} +{"id": "000000117292", "images": ["AURORA/data/something/frames/203752/first.jpg", "AURORA/data/something/frames/203752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking lighter so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117293", "images": ["AURORA/data/something/frames/106643/first.jpg", "AURORA/data/something/frames/106643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding unfolding"}]} +{"id": "000000117294", "images": ["AURORA/data/something/frames/73040/first.jpg", "AURORA/data/something/frames/73040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving door of bath cupboard"}]} +{"id": "000000117295", "images": ["AURORA/data/something/frames/100836/first.jpg", "AURORA/data/something/frames/100836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book into a bookshelf"}]} +{"id": "000000117296", "images": ["AURORA/data/something/frames/179575/first.jpg", "AURORA/data/something/frames/179575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a flashlight from drawer"}]} +{"id": "000000117297", "images": ["AURORA/data/something/frames/27733/first.jpg", "AURORA/data/something/frames/27733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a telephone with a telephone"}]} +{"id": "000000117298", "images": ["AURORA/data/something/frames/149339/first.jpg", "AURORA/data/something/frames/149339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone up"}]} +{"id": "000000117299", "images": ["AURORA/data/something/frames/167958/first.jpg", "AURORA/data/something/frames/167958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000117300", "images": ["AURORA/data/something/frames/177145/first.jpg", "AURORA/data/something/frames/177145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting calculator with rule on it"}]} +{"id": "000000117301", "images": ["AURORA/data/something/frames/142943/first.jpg", "AURORA/data/something/frames/142943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb cable into usb port but pulling it right out as you remove your hand"}]} +{"id": "000000117302", "images": ["AURORA/data/something/frames/73813/first.jpg", "AURORA/data/something/frames/73813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling chips onto a high tray tray"}]} +{"id": "000000117303", "images": ["AURORA/data/something/frames/112867/first.jpg", "AURORA/data/something/frames/112867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping deodorant can over"}]} +{"id": "000000117304", "images": ["AURORA/data/something/frames/66211/first.jpg", "AURORA/data/something/frames/66211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a stapler and a pen on the table"}]} +{"id": "000000117305", "images": ["AURORA/data/something/frames/161029/first.jpg", "AURORA/data/something/frames/161029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pushing a child's water bottle top across kitchen counter from right to left"}]} +{"id": "000000117306", "images": ["AURORA/data/something/frames/207003/first.jpg", "AURORA/data/something/frames/207003/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering phone"}]} +{"id": "000000117307", "images": ["AURORA/data/something/frames/93898/first.jpg", "AURORA/data/something/frames/93898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling purple microfiber from left to right"}]} +{"id": "000000117308", "images": ["AURORA/data/something/frames/34875/first.jpg", "AURORA/data/something/frames/34875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into socket"}]} +{"id": "000000117309", "images": ["AURORA/data/something/frames/151488/first.jpg", "AURORA/data/something/frames/151488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping onion onto book"}]} +{"id": "000000117310", "images": ["AURORA/data/something/frames/96014/first.jpg", "AURORA/data/something/frames/96014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mug upside down"}]} +{"id": "000000117311", "images": ["AURORA/data/something/frames/148651/first.jpg", "AURORA/data/something/frames/148651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) \\\"toaster of \\\"grab\\\"plate"}]} +{"id": "000000117312", "images": ["AURORA/data/something/frames/45691/first.jpg", "AURORA/data/something/frames/45691/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000117313", "images": ["AURORA/data/something/frames/156054/first.jpg", "AURORA/data/something/frames/156054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering deodorant"}]} +{"id": "000000117314", "images": ["AURORA/data/something/frames/45131/first.jpg", "AURORA/data/something/frames/45131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a toothpick into a box"}]} +{"id": "000000117315", "images": ["AURORA/data/something/frames/146235/first.jpg", "AURORA/data/something/frames/146235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking sunglasses up"}]} +{"id": "000000117316", "images": ["AURORA/data/something/frames/118907/first.jpg", "AURORA/data/something/frames/118907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a business card so that it deforms"}]} +{"id": "000000117317", "images": ["AURORA/data/something/frames/33419/first.jpg", "AURORA/data/something/frames/33419/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking pencil up"}]} +{"id": "000000117318", "images": ["AURORA/data/something/frames/126106/first.jpg", "AURORA/data/something/frames/126106/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fork"}]} +{"id": "000000117319", "images": ["AURORA/data/something/frames/153882/first.jpg", "AURORA/data/something/frames/153882/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning mouse upside down"}]} +{"id": "000000117320", "images": ["AURORA/data/something/frames/125593/first.jpg", "AURORA/data/something/frames/125593/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bracelet so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117321", "images": ["AURORA/data/something/frames/161664/first.jpg", "AURORA/data/something/frames/161664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of pencil case"}]} +{"id": "000000117322", "images": ["AURORA/data/something/frames/198726/first.jpg", "AURORA/data/something/frames/198726/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen away from cup"}]} +{"id": "000000117323", "images": ["AURORA/data/something/frames/219178/first.jpg", "AURORA/data/something/frames/219178/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring pop into glass"}]} +{"id": "000000117324", "images": ["AURORA/data/something/frames/155650/first.jpg", "AURORA/data/something/frames/155650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup down"}]} +{"id": "000000117325", "images": ["AURORA/data/something/frames/62513/first.jpg", "AURORA/data/something/frames/62513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone closer to a mug"}]} +{"id": "000000117326", "images": ["AURORA/data/something/frames/200154/first.jpg", "AURORA/data/something/frames/200154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: crackers colliding with crackers and both come to a halt"}]} +{"id": "000000117327", "images": ["AURORA/data/something/frames/204733/first.jpg", "AURORA/data/something/frames/204733/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keyd next to bag"}]} +{"id": "000000117328", "images": ["AURORA/data/something/frames/75060/first.jpg", "AURORA/data/something/frames/75060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming plants"}]} +{"id": "000000117329", "images": ["AURORA/data/something/frames/83521/first.jpg", "AURORA/data/something/frames/83521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into an apple"}]} +{"id": "000000117330", "images": ["AURORA/data/something/frames/48198/first.jpg", "AURORA/data/something/frames/48198/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a post it to the door"}]} +{"id": "000000117331", "images": ["AURORA/data/something/frames/4103/first.jpg", "AURORA/data/something/frames/4103/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fluorescent colour pen down"}]} +{"id": "000000117332", "images": ["AURORA/data/something/frames/220138/first.jpg", "AURORA/data/something/frames/220138/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping towel next to handbag"}]} +{"id": "000000117333", "images": ["AURORA/data/something/frames/27026/first.jpg", "AURORA/data/something/frames/27026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering key"}]} +{"id": "000000117334", "images": ["AURORA/data/something/frames/133808/first.jpg", "AURORA/data/something/frames/133808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lid in front of bowl"}]} +{"id": "000000117335", "images": ["AURORA/data/something/frames/136129/first.jpg", "AURORA/data/something/frames/136129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching bag to hangar nail"}]} +{"id": "000000117336", "images": ["AURORA/data/something/frames/55727/first.jpg", "AURORA/data/something/frames/55727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a doll on the table on its side, not upright"}]} +{"id": "000000117337", "images": ["AURORA/data/something/frames/75656/first.jpg", "AURORA/data/something/frames/75656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping blocks over"}]} +{"id": "000000117338", "images": ["AURORA/data/something/frames/121746/first.jpg", "AURORA/data/something/frames/121746/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading jam onto a biscuit"}]} +{"id": "000000117339", "images": ["AURORA/data/something/frames/80983/first.jpg", "AURORA/data/something/frames/80983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving nozzle of bottle"}]} +{"id": "000000117340", "images": ["AURORA/data/something/frames/88024/first.jpg", "AURORA/data/something/frames/88024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving dvd case up"}]} +{"id": "000000117341", "images": ["AURORA/data/something/frames/166689/first.jpg", "AURORA/data/something/frames/166689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding towel"}]} +{"id": "000000117342", "images": ["AURORA/data/something/frames/16781/first.jpg", "AURORA/data/something/frames/16781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle colliding with bottle and both come to a halt"}]} +{"id": "000000117343", "images": ["AURORA/data/something/frames/79210/first.jpg", "AURORA/data/something/frames/79210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching lcd monitor with your camera"}]} +{"id": "000000117344", "images": ["AURORA/data/something/frames/188660/first.jpg", "AURORA/data/something/frames/188660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lid onto a can"}]} +{"id": "000000117345", "images": ["AURORA/data/something/frames/5800/first.jpg", "AURORA/data/something/frames/5800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding magazine"}]} +{"id": "000000117346", "images": ["AURORA/data/something/frames/6934/first.jpg", "AURORA/data/something/frames/6934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle from right to left"}]} +{"id": "000000117347", "images": ["AURORA/data/something/frames/191385/first.jpg", "AURORA/data/something/frames/191385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book onto a water jug so it falls down"}]} +{"id": "000000117348", "images": ["AURORA/data/something/frames/106723/first.jpg", "AURORA/data/something/frames/106723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen cap out of pen"}]} +{"id": "000000117349", "images": ["AURORA/data/something/frames/62401/first.jpg", "AURORA/data/something/frames/62401/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving can and glass so they collide with each other"}]} +{"id": "000000117350", "images": ["AURORA/data/something/frames/106139/first.jpg", "AURORA/data/something/frames/106139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: flip flops colliding with flip flops and both come to a halt"}]} +{"id": "000000117351", "images": ["AURORA/data/something/frames/82528/first.jpg", "AURORA/data/something/frames/82528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering briefcase with shall"}]} +{"id": "000000117352", "images": ["AURORA/data/something/frames/98896/first.jpg", "AURORA/data/something/frames/98896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving battery closer to screw"}]} +{"id": "000000117353", "images": ["AURORA/data/something/frames/179671/first.jpg", "AURORA/data/something/frames/179671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117354", "images": ["AURORA/data/something/frames/78066/first.jpg", "AURORA/data/something/frames/78066/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000117355", "images": ["AURORA/data/something/frames/24005/first.jpg", "AURORA/data/something/frames/24005/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from behind of glass"}]} +{"id": "000000117356", "images": ["AURORA/data/something/frames/140798/first.jpg", "AURORA/data/something/frames/140798/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering baby boy with blanket"}]} +{"id": "000000117357", "images": ["AURORA/data/something/frames/33183/first.jpg", "AURORA/data/something/frames/33183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white colour board clip up"}]} +{"id": "000000117358", "images": ["AURORA/data/something/frames/196955/first.jpg", "AURORA/data/something/frames/196955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117359", "images": ["AURORA/data/something/frames/65480/first.jpg", "AURORA/data/something/frames/65480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving box closer to container"}]} +{"id": "000000117360", "images": ["AURORA/data/something/frames/57711/first.jpg", "AURORA/data/something/frames/57711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen in front of sunglasses"}]} +{"id": "000000117361", "images": ["AURORA/data/something/frames/122116/first.jpg", "AURORA/data/something/frames/122116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one marker out of many"}]} +{"id": "000000117362", "images": ["AURORA/data/something/frames/54534/first.jpg", "AURORA/data/something/frames/54534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a helmet and another helmet so they collide with each other"}]} +{"id": "000000117363", "images": ["AURORA/data/something/frames/108114/first.jpg", "AURORA/data/something/frames/108114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling cheese onto rice"}]} +{"id": "000000117364", "images": ["AURORA/data/something/frames/194130/first.jpg", "AURORA/data/something/frames/194130/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking bracelet up"}]} +{"id": "000000117365", "images": ["AURORA/data/something/frames/138481/first.jpg", "AURORA/data/something/frames/138481/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a napkin just a little bit"}]} +{"id": "000000117366", "images": ["AURORA/data/something/frames/196748/first.jpg", "AURORA/data/something/frames/196748/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: something colliding with something and both come to a halt"}]} +{"id": "000000117367", "images": ["AURORA/data/something/frames/72660/first.jpg", "AURORA/data/something/frames/72660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000117368", "images": ["AURORA/data/something/frames/91824/first.jpg", "AURORA/data/something/frames/91824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into box"}]} +{"id": "000000117369", "images": ["AURORA/data/something/frames/25707/first.jpg", "AURORA/data/something/frames/25707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging hands-free into mobile phone but pulling it right out as you remove your hand"}]} +{"id": "000000117370", "images": ["AURORA/data/something/frames/156246/first.jpg", "AURORA/data/something/frames/156246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing glass, revealing match box behind"}]} +{"id": "000000117371", "images": ["AURORA/data/something/frames/69663/first.jpg", "AURORA/data/something/frames/69663/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000117372", "images": ["AURORA/data/something/frames/128840/first.jpg", "AURORA/data/something/frames/128840/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box in front of remote"}]} +{"id": "000000117373", "images": ["AURORA/data/something/frames/197325/first.jpg", "AURORA/data/something/frames/197325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving flag up"}]} +{"id": "000000117374", "images": ["AURORA/data/something/frames/64910/first.jpg", "AURORA/data/something/frames/64910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117375", "images": ["AURORA/data/something/frames/151345/first.jpg", "AURORA/data/something/frames/151345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone with cloth"}]} +{"id": "000000117376", "images": ["AURORA/data/something/frames/35356/first.jpg", "AURORA/data/something/frames/35356/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000117377", "images": ["AURORA/data/something/frames/36568/first.jpg", "AURORA/data/something/frames/36568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming cup"}]} +{"id": "000000117378", "images": ["AURORA/data/something/frames/133144/first.jpg", "AURORA/data/something/frames/133144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a mouse upside down"}]} +{"id": "000000117379", "images": ["AURORA/data/something/frames/92018/first.jpg", "AURORA/data/something/frames/92018/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending toothpick until it breaks"}]} +{"id": "000000117380", "images": ["AURORA/data/something/frames/219349/first.jpg", "AURORA/data/something/frames/219349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking blocks so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117381", "images": ["AURORA/data/something/frames/218299/first.jpg", "AURORA/data/something/frames/218299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting green fabric clip"}]} +{"id": "000000117382", "images": ["AURORA/data/something/frames/104101/first.jpg", "AURORA/data/something/frames/104101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pillow with bed cover"}]} +{"id": "000000117383", "images": ["AURORA/data/something/frames/174616/first.jpg", "AURORA/data/something/frames/174616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing ruber behind"}]} +{"id": "000000117384", "images": ["AURORA/data/something/frames/151836/first.jpg", "AURORA/data/something/frames/151836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging box into extension cord but pulling it right out as you remove your hand"}]} +{"id": "000000117385", "images": ["AURORA/data/something/frames/104255/first.jpg", "AURORA/data/something/frames/104255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keyboard behind monitor"}]} +{"id": "000000117386", "images": ["AURORA/data/something/frames/29075/first.jpg", "AURORA/data/something/frames/29075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117387", "images": ["AURORA/data/something/frames/64499/first.jpg", "AURORA/data/something/frames/64499/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg behind a shoe brush"}]} +{"id": "000000117388", "images": ["AURORA/data/something/frames/197131/first.jpg", "AURORA/data/something/frames/197131/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bowl, comb and camera on the table"}]} +{"id": "000000117389", "images": ["AURORA/data/something/frames/5938/first.jpg", "AURORA/data/something/frames/5938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen behind urn"}]} +{"id": "000000117390", "images": ["AURORA/data/something/frames/207607/first.jpg", "AURORA/data/something/frames/207607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering my face with a pillow"}]} +{"id": "000000117391", "images": ["AURORA/data/something/frames/57062/first.jpg", "AURORA/data/something/frames/57062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000117392", "images": ["AURORA/data/something/frames/68624/first.jpg", "AURORA/data/something/frames/68624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a tv remote upside down"}]} +{"id": "000000117393", "images": ["AURORA/data/something/frames/218197/first.jpg", "AURORA/data/something/frames/218197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bag in front of table"}]} +{"id": "000000117394", "images": ["AURORA/data/something/frames/213033/first.jpg", "AURORA/data/something/frames/213033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cable"}]} +{"id": "000000117395", "images": ["AURORA/data/something/frames/108264/first.jpg", "AURORA/data/something/frames/108264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching pen top to pen bottom"}]} +{"id": "000000117396", "images": ["AURORA/data/something/frames/1439/first.jpg", "AURORA/data/something/frames/1439/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a doll from behind of a bag"}]} +{"id": "000000117397", "images": ["AURORA/data/something/frames/12940/first.jpg", "AURORA/data/something/frames/12940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing playingcard into two pieces"}]} +{"id": "000000117398", "images": ["AURORA/data/something/frames/187845/first.jpg", "AURORA/data/something/frames/187845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving eraser away from usb cable"}]} +{"id": "000000117399", "images": ["AURORA/data/something/frames/115374/first.jpg", "AURORA/data/something/frames/115374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking juice bottles"}]} +{"id": "000000117400", "images": ["AURORA/data/something/frames/165346/first.jpg", "AURORA/data/something/frames/165346/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming caution board"}]} +{"id": "000000117401", "images": ["AURORA/data/something/frames/28059/first.jpg", "AURORA/data/something/frames/28059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pencil until it breaks"}]} +{"id": "000000117402", "images": ["AURORA/data/something/frames/202117/first.jpg", "AURORA/data/something/frames/202117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting cd case with nail polish on it"}]} +{"id": "000000117403", "images": ["AURORA/data/something/frames/31650/first.jpg", "AURORA/data/something/frames/31650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing papier just a little bit"}]} +{"id": "000000117404", "images": ["AURORA/data/something/frames/214959/first.jpg", "AURORA/data/something/frames/214959/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a phone away from the camera"}]} +{"id": "000000117405", "images": ["AURORA/data/something/frames/61353/first.jpg", "AURORA/data/something/frames/61353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying can on the table on its side, not upright"}]} +{"id": "000000117406", "images": ["AURORA/data/something/frames/186060/first.jpg", "AURORA/data/something/frames/186060/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing water into glass"}]} +{"id": "000000117407", "images": ["AURORA/data/something/frames/23416/first.jpg", "AURORA/data/something/frames/23416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a pill bottle over"}]} +{"id": "000000117408", "images": ["AURORA/data/something/frames/36892/first.jpg", "AURORA/data/something/frames/36892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering eraser with hand"}]} +{"id": "000000117409", "images": ["AURORA/data/something/frames/24220/first.jpg", "AURORA/data/something/frames/24220/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sock into shoe"}]} +{"id": "000000117410", "images": ["AURORA/data/something/frames/43780/first.jpg", "AURORA/data/something/frames/43780/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on the edge of card board so it is not supported and falls down"}]} +{"id": "000000117411", "images": ["AURORA/data/something/frames/10412/first.jpg", "AURORA/data/something/frames/10412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle into buckets"}]} +{"id": "000000117412", "images": ["AURORA/data/something/frames/75469/first.jpg", "AURORA/data/something/frames/75469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing trash into chip bag"}]} +{"id": "000000117413", "images": ["AURORA/data/something/frames/177565/first.jpg", "AURORA/data/something/frames/177565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil"}]} +{"id": "000000117414", "images": ["AURORA/data/something/frames/37038/first.jpg", "AURORA/data/something/frames/37038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching attaching paper to fridge"}]} +{"id": "000000117415", "images": ["AURORA/data/something/frames/93510/first.jpg", "AURORA/data/something/frames/93510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clip onto toy"}]} +{"id": "000000117416", "images": ["AURORA/data/something/frames/163752/first.jpg", "AURORA/data/something/frames/163752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of the pens"}]} +{"id": "000000117417", "images": ["AURORA/data/something/frames/175024/first.jpg", "AURORA/data/something/frames/175024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming sugar container"}]} +{"id": "000000117418", "images": ["AURORA/data/something/frames/111230/first.jpg", "AURORA/data/something/frames/111230/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cigarette lighter towards the camera"}]} +{"id": "000000117419", "images": ["AURORA/data/something/frames/123709/first.jpg", "AURORA/data/something/frames/123709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing notebook into briefcase"}]} +{"id": "000000117420", "images": ["AURORA/data/something/frames/195222/first.jpg", "AURORA/data/something/frames/195222/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a plastic bag"}]} +{"id": "000000117421", "images": ["AURORA/data/something/frames/33321/first.jpg", "AURORA/data/something/frames/33321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda into a cup"}]} +{"id": "000000117422", "images": ["AURORA/data/something/frames/128511/first.jpg", "AURORA/data/something/frames/128511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a sieve"}]} +{"id": "000000117423", "images": ["AURORA/data/something/frames/156939/first.jpg", "AURORA/data/something/frames/156939/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting game case with wallet on it"}]} +{"id": "000000117424", "images": ["AURORA/data/something/frames/121693/first.jpg", "AURORA/data/something/frames/121693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green face powder from right to left"}]} +{"id": "000000117425", "images": ["AURORA/data/something/frames/90367/first.jpg", "AURORA/data/something/frames/90367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering calculator with newspaper"}]} +{"id": "000000117426", "images": ["AURORA/data/something/frames/73616/first.jpg", "AURORA/data/something/frames/73616/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking plastic twist tie"}]} +{"id": "000000117427", "images": ["AURORA/data/something/frames/109608/first.jpg", "AURORA/data/something/frames/109608/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming white book marker"}]} +{"id": "000000117428", "images": ["AURORA/data/something/frames/94197/first.jpg", "AURORA/data/something/frames/94197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering something with something"}]} +{"id": "000000117429", "images": ["AURORA/data/something/frames/153785/first.jpg", "AURORA/data/something/frames/153785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117430", "images": ["AURORA/data/something/frames/195811/first.jpg", "AURORA/data/something/frames/195811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering wooden stick"}]} +{"id": "000000117431", "images": ["AURORA/data/something/frames/72743/first.jpg", "AURORA/data/something/frames/72743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a knife next to a mug"}]} +{"id": "000000117432", "images": ["AURORA/data/something/frames/103559/first.jpg", "AURORA/data/something/frames/103559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a coin off of laptop"}]} +{"id": "000000117433", "images": ["AURORA/data/something/frames/22030/first.jpg", "AURORA/data/something/frames/22030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lipstick next to a cat"}]} +{"id": "000000117434", "images": ["AURORA/data/something/frames/166989/first.jpg", "AURORA/data/something/frames/166989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming car"}]} +{"id": "000000117435", "images": ["AURORA/data/something/frames/133186/first.jpg", "AURORA/data/something/frames/133186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black remote from left to right"}]} +{"id": "000000117436", "images": ["AURORA/data/something/frames/142282/first.jpg", "AURORA/data/something/frames/142282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading cue cards onto book"}]} +{"id": "000000117437", "images": ["AURORA/data/something/frames/98035/first.jpg", "AURORA/data/something/frames/98035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cell phone down"}]} +{"id": "000000117438", "images": ["AURORA/data/something/frames/152052/first.jpg", "AURORA/data/something/frames/152052/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book underneath another book"}]} +{"id": "000000117439", "images": ["AURORA/data/something/frames/68246/first.jpg", "AURORA/data/something/frames/68246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming usb"}]} +{"id": "000000117440", "images": ["AURORA/data/something/frames/35833/first.jpg", "AURORA/data/something/frames/35833/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys out of bag"}]} +{"id": "000000117441", "images": ["AURORA/data/something/frames/112826/first.jpg", "AURORA/data/something/frames/112826/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering clip"}]} +{"id": "000000117442", "images": ["AURORA/data/something/frames/83592/first.jpg", "AURORA/data/something/frames/83592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting bottle with fork"}]} +{"id": "000000117443", "images": ["AURORA/data/something/frames/92891/first.jpg", "AURORA/data/something/frames/92891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing candy bag into waterbottle"}]} +{"id": "000000117444", "images": ["AURORA/data/something/frames/78839/first.jpg", "AURORA/data/something/frames/78839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bowl"}]} +{"id": "000000117445", "images": ["AURORA/data/something/frames/171848/first.jpg", "AURORA/data/something/frames/171848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking hook out of bowl"}]} +{"id": "000000117446", "images": ["AURORA/data/something/frames/70911/first.jpg", "AURORA/data/something/frames/70911/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving soft drink can towards the camera"}]} +{"id": "000000117447", "images": ["AURORA/data/something/frames/147142/first.jpg", "AURORA/data/something/frames/147142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming something"}]} +{"id": "000000117448", "images": ["AURORA/data/something/frames/158269/first.jpg", "AURORA/data/something/frames/158269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming tv"}]} +{"id": "000000117449", "images": ["AURORA/data/something/frames/19374/first.jpg", "AURORA/data/something/frames/19374/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering scissors with paper"}]} +{"id": "000000117450", "images": ["AURORA/data/something/frames/110623/first.jpg", "AURORA/data/something/frames/110623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling small bottles up"}]} +{"id": "000000117451", "images": ["AURORA/data/something/frames/102857/first.jpg", "AURORA/data/something/frames/102857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a block of paper up"}]} +{"id": "000000117452", "images": ["AURORA/data/something/frames/188928/first.jpg", "AURORA/data/something/frames/188928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tip of hat"}]} +{"id": "000000117453", "images": ["AURORA/data/something/frames/819/first.jpg", "AURORA/data/something/frames/819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding newspaper"}]} +{"id": "000000117454", "images": ["AURORA/data/something/frames/102026/first.jpg", "AURORA/data/something/frames/102026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming sign post"}]} +{"id": "000000117455", "images": ["AURORA/data/something/frames/105503/first.jpg", "AURORA/data/something/frames/105503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a beer botle"}]} +{"id": "000000117456", "images": ["AURORA/data/something/frames/53648/first.jpg", "AURORA/data/something/frames/53648/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting bottle with paper on it"}]} +{"id": "000000117457", "images": ["AURORA/data/something/frames/168163/first.jpg", "AURORA/data/something/frames/168163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sharpener out of tumbler"}]} +{"id": "000000117458", "images": ["AURORA/data/something/frames/159040/first.jpg", "AURORA/data/something/frames/159040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone underneath camera"}]} +{"id": "000000117459", "images": ["AURORA/data/something/frames/14279/first.jpg", "AURORA/data/something/frames/14279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone up"}]} +{"id": "000000117460", "images": ["AURORA/data/something/frames/10559/first.jpg", "AURORA/data/something/frames/10559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting orange colour bottle cap onto black wallet"}]} +{"id": "000000117461", "images": ["AURORA/data/something/frames/5139/first.jpg", "AURORA/data/something/frames/5139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000117462", "images": ["AURORA/data/something/frames/128531/first.jpg", "AURORA/data/something/frames/128531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117463", "images": ["AURORA/data/something/frames/82203/first.jpg", "AURORA/data/something/frames/82203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding floormat"}]} +{"id": "000000117464", "images": ["AURORA/data/something/frames/211304/first.jpg", "AURORA/data/something/frames/211304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117465", "images": ["AURORA/data/something/frames/91308/first.jpg", "AURORA/data/something/frames/91308/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming monitor"}]} +{"id": "000000117466", "images": ["AURORA/data/something/frames/138918/first.jpg", "AURORA/data/something/frames/138918/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting comb upright on the table, so it falls on its side"}]} +{"id": "000000117467", "images": ["AURORA/data/something/frames/169802/first.jpg", "AURORA/data/something/frames/169802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a coin with a box"}]} +{"id": "000000117468", "images": ["AURORA/data/something/frames/70601/first.jpg", "AURORA/data/something/frames/70601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering spoon with paper towel"}]} +{"id": "000000117469", "images": ["AURORA/data/something/frames/172977/first.jpg", "AURORA/data/something/frames/172977/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling wristwatch from left to right"}]} +{"id": "000000117470", "images": ["AURORA/data/something/frames/93164/first.jpg", "AURORA/data/something/frames/93164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling jug from right to left"}]} +{"id": "000000117471", "images": ["AURORA/data/something/frames/113630/first.jpg", "AURORA/data/something/frames/113630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching charger to socket"}]} +{"id": "000000117472", "images": ["AURORA/data/something/frames/22830/first.jpg", "AURORA/data/something/frames/22830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: clip colliding with clip and both are being deflected"}]} +{"id": "000000117473", "images": ["AURORA/data/something/frames/198107/first.jpg", "AURORA/data/something/frames/198107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000117474", "images": ["AURORA/data/something/frames/95937/first.jpg", "AURORA/data/something/frames/95937/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping potato into bowl"}]} +{"id": "000000117475", "images": ["AURORA/data/something/frames/134098/first.jpg", "AURORA/data/something/frames/134098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and marker closer to each other"}]} +{"id": "000000117476", "images": ["AURORA/data/something/frames/20539/first.jpg", "AURORA/data/something/frames/20539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into clay"}]} +{"id": "000000117477", "images": ["AURORA/data/something/frames/99508/first.jpg", "AURORA/data/something/frames/99508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening refrigerator"}]} +{"id": "000000117478", "images": ["AURORA/data/something/frames/219464/first.jpg", "AURORA/data/something/frames/219464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking diaper"}]} +{"id": "000000117479", "images": ["AURORA/data/something/frames/103279/first.jpg", "AURORA/data/something/frames/103279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping rubix cube into a pillow"}]} +{"id": "000000117480", "images": ["AURORA/data/something/frames/89735/first.jpg", "AURORA/data/something/frames/89735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing key with pen"}]} +{"id": "000000117481", "images": ["AURORA/data/something/frames/58444/first.jpg", "AURORA/data/something/frames/58444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin on a surface"}]} +{"id": "000000117482", "images": ["AURORA/data/something/frames/167575/first.jpg", "AURORA/data/something/frames/167575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving spoon and stapler closer to each other"}]} +{"id": "000000117483", "images": ["AURORA/data/something/frames/196559/first.jpg", "AURORA/data/something/frames/196559/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone onto charger"}]} +{"id": "000000117484", "images": ["AURORA/data/something/frames/124156/first.jpg", "AURORA/data/something/frames/124156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting button on a surface"}]} +{"id": "000000117485", "images": ["AURORA/data/something/frames/107013/first.jpg", "AURORA/data/something/frames/107013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a plastic pot upside down"}]} +{"id": "000000117486", "images": ["AURORA/data/something/frames/119550/first.jpg", "AURORA/data/something/frames/119550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping block tower over"}]} +{"id": "000000117487", "images": ["AURORA/data/something/frames/77839/first.jpg", "AURORA/data/something/frames/77839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tape next to scissors"}]} +{"id": "000000117488", "images": ["AURORA/data/something/frames/38565/first.jpg", "AURORA/data/something/frames/38565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an electrical cord into an electrical extension"}]} +{"id": "000000117489", "images": ["AURORA/data/something/frames/171368/first.jpg", "AURORA/data/something/frames/171368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117490", "images": ["AURORA/data/something/frames/183380/first.jpg", "AURORA/data/something/frames/183380/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chopping board on a surface"}]} +{"id": "000000117491", "images": ["AURORA/data/something/frames/45604/first.jpg", "AURORA/data/something/frames/45604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming car"}]} +{"id": "000000117492", "images": ["AURORA/data/something/frames/83151/first.jpg", "AURORA/data/something/frames/83151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving motorbike away from the camera"}]} +{"id": "000000117493", "images": ["AURORA/data/something/frames/123974/first.jpg", "AURORA/data/something/frames/123974/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking marker pen out of spectacle box"}]} +{"id": "000000117494", "images": ["AURORA/data/something/frames/42154/first.jpg", "AURORA/data/something/frames/42154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging rca plug into laptop"}]} +{"id": "000000117495", "images": ["AURORA/data/something/frames/197136/first.jpg", "AURORA/data/something/frames/197136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking something out of something"}]} +{"id": "000000117496", "images": ["AURORA/data/something/frames/112948/first.jpg", "AURORA/data/something/frames/112948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming balloons"}]} +{"id": "000000117497", "images": ["AURORA/data/something/frames/68038/first.jpg", "AURORA/data/something/frames/68038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging dryer into plug"}]} +{"id": "000000117498", "images": ["AURORA/data/something/frames/191061/first.jpg", "AURORA/data/something/frames/191061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of jar without the stack collapsing"}]} +{"id": "000000117499", "images": ["AURORA/data/something/frames/122623/first.jpg", "AURORA/data/something/frames/122623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coin from left to right"}]} +{"id": "000000117500", "images": ["AURORA/data/something/frames/9019/first.jpg", "AURORA/data/something/frames/9019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding duppatta"}]} +{"id": "000000117501", "images": ["AURORA/data/something/frames/57803/first.jpg", "AURORA/data/something/frames/57803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring juice into a cup"}]} +{"id": "000000117502", "images": ["AURORA/data/something/frames/160769/first.jpg", "AURORA/data/something/frames/160769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a comb into glass mug"}]} +{"id": "000000117503", "images": ["AURORA/data/something/frames/1323/first.jpg", "AURORA/data/something/frames/1323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coins into the bag"}]} +{"id": "000000117504", "images": ["AURORA/data/something/frames/203154/first.jpg", "AURORA/data/something/frames/203154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening bag"}]} +{"id": "000000117505", "images": ["AURORA/data/something/frames/56676/first.jpg", "AURORA/data/something/frames/56676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering garlic with cloth"}]} +{"id": "000000117506", "images": ["AURORA/data/something/frames/134550/first.jpg", "AURORA/data/something/frames/134550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping handkerchief next to pillow"}]} +{"id": "000000117507", "images": ["AURORA/data/something/frames/64592/first.jpg", "AURORA/data/something/frames/64592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking matchbox"}]} +{"id": "000000117508", "images": ["AURORA/data/something/frames/203000/first.jpg", "AURORA/data/something/frames/203000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fork and fork closer to each other"}]} +{"id": "000000117509", "images": ["AURORA/data/something/frames/110413/first.jpg", "AURORA/data/something/frames/110413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing paper off of a desk"}]} +{"id": "000000117510", "images": ["AURORA/data/something/frames/218711/first.jpg", "AURORA/data/something/frames/218711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cup from left to right"}]} +{"id": "000000117511", "images": ["AURORA/data/something/frames/151114/first.jpg", "AURORA/data/something/frames/151114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting doll upright on the table, so it falls on its side"}]} +{"id": "000000117512", "images": ["AURORA/data/something/frames/3040/first.jpg", "AURORA/data/something/frames/3040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving salt and pepper closer to each other"}]} +{"id": "000000117513", "images": ["AURORA/data/something/frames/16849/first.jpg", "AURORA/data/something/frames/16849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving apple and apple away from each other"}]} +{"id": "000000117514", "images": ["AURORA/data/something/frames/82227/first.jpg", "AURORA/data/something/frames/82227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117515", "images": ["AURORA/data/something/frames/171255/first.jpg", "AURORA/data/something/frames/171255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering glass"}]} +{"id": "000000117516", "images": ["AURORA/data/something/frames/104855/first.jpg", "AURORA/data/something/frames/104855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening plastic container"}]} +{"id": "000000117517", "images": ["AURORA/data/something/frames/62283/first.jpg", "AURORA/data/something/frames/62283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb flash drive away from cover"}]} +{"id": "000000117518", "images": ["AURORA/data/something/frames/4274/first.jpg", "AURORA/data/something/frames/4274/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117519", "images": ["AURORA/data/something/frames/131162/first.jpg", "AURORA/data/something/frames/131162/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a knife so that it almost falls off but doesn't"}]} +{"id": "000000117520", "images": ["AURORA/data/something/frames/100142/first.jpg", "AURORA/data/something/frames/100142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book upright on the table, so it falls on its side"}]} +{"id": "000000117521", "images": ["AURORA/data/something/frames/7192/first.jpg", "AURORA/data/something/frames/7192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a can, revealing an eraser behind"}]} +{"id": "000000117522", "images": ["AURORA/data/something/frames/218112/first.jpg", "AURORA/data/something/frames/218112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning salsa upside down"}]} +{"id": "000000117523", "images": ["AURORA/data/something/frames/96603/first.jpg", "AURORA/data/something/frames/96603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing striker coin with battery"}]} +{"id": "000000117524", "images": ["AURORA/data/something/frames/121989/first.jpg", "AURORA/data/something/frames/121989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming hair comb"}]} +{"id": "000000117525", "images": ["AURORA/data/something/frames/116035/first.jpg", "AURORA/data/something/frames/116035/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling duster from right to left"}]} +{"id": "000000117526", "images": ["AURORA/data/something/frames/53667/first.jpg", "AURORA/data/something/frames/53667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank up"}]} +{"id": "000000117527", "images": ["AURORA/data/something/frames/209202/first.jpg", "AURORA/data/something/frames/209202/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a wallet"}]} +{"id": "000000117528", "images": ["AURORA/data/something/frames/186295/first.jpg", "AURORA/data/something/frames/186295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape onto box surface"}]} +{"id": "000000117529", "images": ["AURORA/data/something/frames/69527/first.jpg", "AURORA/data/something/frames/69527/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117530", "images": ["AURORA/data/something/frames/43664/first.jpg", "AURORA/data/something/frames/43664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toothbrush into container"}]} +{"id": "000000117531", "images": ["AURORA/data/something/frames/2350/first.jpg", "AURORA/data/something/frames/2350/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing lighter off of bottle"}]} +{"id": "000000117532", "images": ["AURORA/data/something/frames/42850/first.jpg", "AURORA/data/something/frames/42850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sandal away from the camera"}]} +{"id": "000000117533", "images": ["AURORA/data/something/frames/42129/first.jpg", "AURORA/data/something/frames/42129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping candy into box"}]} +{"id": "000000117534", "images": ["AURORA/data/something/frames/69469/first.jpg", "AURORA/data/something/frames/69469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving duster away from punching machine"}]} +{"id": "000000117535", "images": ["AURORA/data/something/frames/25945/first.jpg", "AURORA/data/something/frames/25945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000117536", "images": ["AURORA/data/something/frames/210843/first.jpg", "AURORA/data/something/frames/210843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mouse so that it almost falls off but doesn't"}]} +{"id": "000000117537", "images": ["AURORA/data/something/frames/32915/first.jpg", "AURORA/data/something/frames/32915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pebble closer to magnifying glass"}]} +{"id": "000000117538", "images": ["AURORA/data/something/frames/185283/first.jpg", "AURORA/data/something/frames/185283/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a rag"}]} +{"id": "000000117539", "images": ["AURORA/data/something/frames/90775/first.jpg", "AURORA/data/something/frames/90775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a remote so that it almost falls off but doesn't"}]} +{"id": "000000117540", "images": ["AURORA/data/something/frames/55758/first.jpg", "AURORA/data/something/frames/55758/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000117541", "images": ["AURORA/data/something/frames/33231/first.jpg", "AURORA/data/something/frames/33231/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117542", "images": ["AURORA/data/something/frames/173550/first.jpg", "AURORA/data/something/frames/173550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a coffee mug upside down"}]} +{"id": "000000117543", "images": ["AURORA/data/something/frames/60417/first.jpg", "AURORA/data/something/frames/60417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping box into trash can"}]} +{"id": "000000117544", "images": ["AURORA/data/something/frames/5873/first.jpg", "AURORA/data/something/frames/5873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering dog"}]} +{"id": "000000117545", "images": ["AURORA/data/something/frames/3030/first.jpg", "AURORA/data/something/frames/3030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into phone"}]} +{"id": "000000117546", "images": ["AURORA/data/something/frames/161085/first.jpg", "AURORA/data/something/frames/161085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy next to spectical box"}]} +{"id": "000000117547", "images": ["AURORA/data/something/frames/92502/first.jpg", "AURORA/data/something/frames/92502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bolt up"}]} +{"id": "000000117548", "images": ["AURORA/data/something/frames/47144/first.jpg", "AURORA/data/something/frames/47144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming sandal"}]} +{"id": "000000117549", "images": ["AURORA/data/something/frames/87449/first.jpg", "AURORA/data/something/frames/87449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 pens onto a cup"}]} +{"id": "000000117550", "images": ["AURORA/data/something/frames/122853/first.jpg", "AURORA/data/something/frames/122853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fan next to sandals"}]} +{"id": "000000117551", "images": ["AURORA/data/something/frames/162638/first.jpg", "AURORA/data/something/frames/162638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a paperclip with a piece of paper"}]} +{"id": "000000117552", "images": ["AURORA/data/something/frames/185520/first.jpg", "AURORA/data/something/frames/185520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a box of pins"}]} +{"id": "000000117553", "images": ["AURORA/data/something/frames/23507/first.jpg", "AURORA/data/something/frames/23507/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a tape onto a plank of wood"}]} +{"id": "000000117554", "images": ["AURORA/data/something/frames/38381/first.jpg", "AURORA/data/something/frames/38381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking vitamin out of bottle"}]} +{"id": "000000117555", "images": ["AURORA/data/something/frames/19416/first.jpg", "AURORA/data/something/frames/19416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle cap with remote"}]} +{"id": "000000117556", "images": ["AURORA/data/something/frames/199390/first.jpg", "AURORA/data/something/frames/199390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from chair with your camera"}]} +{"id": "000000117557", "images": ["AURORA/data/something/frames/22922/first.jpg", "AURORA/data/something/frames/22922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117558", "images": ["AURORA/data/something/frames/172947/first.jpg", "AURORA/data/something/frames/172947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting suitcase up completely without letting it drop down"}]} +{"id": "000000117559", "images": ["AURORA/data/something/frames/64851/first.jpg", "AURORA/data/something/frames/64851/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting marking pen"}]} +{"id": "000000117560", "images": ["AURORA/data/something/frames/99247/first.jpg", "AURORA/data/something/frames/99247/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle upright on the table"}]} +{"id": "000000117561", "images": ["AURORA/data/something/frames/3215/first.jpg", "AURORA/data/something/frames/3215/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour water into bucket, but missing so it spills next to it"}]} +{"id": "000000117562", "images": ["AURORA/data/something/frames/88615/first.jpg", "AURORA/data/something/frames/88615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hair clips onto blue note"}]} +{"id": "000000117563", "images": ["AURORA/data/something/frames/80446/first.jpg", "AURORA/data/something/frames/80446/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to fridge"}]} +{"id": "000000117564", "images": ["AURORA/data/something/frames/178983/first.jpg", "AURORA/data/something/frames/178983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000117565", "images": ["AURORA/data/something/frames/178224/first.jpg", "AURORA/data/something/frames/178224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cup and a cup so they collide with each other"}]} +{"id": "000000117566", "images": ["AURORA/data/something/frames/151541/first.jpg", "AURORA/data/something/frames/151541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing door"}]} +{"id": "000000117567", "images": ["AURORA/data/something/frames/206958/first.jpg", "AURORA/data/something/frames/206958/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a bottle on the table on its side, not upright"}]} +{"id": "000000117568", "images": ["AURORA/data/something/frames/128234/first.jpg", "AURORA/data/something/frames/128234/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: air hockey puck colliding with air hockey puck and both are being deflected"}]} +{"id": "000000117569", "images": ["AURORA/data/something/frames/169776/first.jpg", "AURORA/data/something/frames/169776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile from behind of laptop"}]} +{"id": "000000117570", "images": ["AURORA/data/something/frames/34792/first.jpg", "AURORA/data/something/frames/34792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling towel from left to right"}]} +{"id": "000000117571", "images": ["AURORA/data/something/frames/104869/first.jpg", "AURORA/data/something/frames/104869/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy up"}]} +{"id": "000000117572", "images": ["AURORA/data/something/frames/22657/first.jpg", "AURORA/data/something/frames/22657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking padlock so that it falls over"}]} +{"id": "000000117573", "images": ["AURORA/data/something/frames/76721/first.jpg", "AURORA/data/something/frames/76721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fruit out of bowl"}]} +{"id": "000000117574", "images": ["AURORA/data/something/frames/72455/first.jpg", "AURORA/data/something/frames/72455/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping book over"}]} +{"id": "000000117575", "images": ["AURORA/data/something/frames/118879/first.jpg", "AURORA/data/something/frames/118879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cream on a surface"}]} +{"id": "000000117576", "images": ["AURORA/data/something/frames/133862/first.jpg", "AURORA/data/something/frames/133862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming small green ball"}]} +{"id": "000000117577", "images": ["AURORA/data/something/frames/71176/first.jpg", "AURORA/data/something/frames/71176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling zipper from right to left"}]} +{"id": "000000117578", "images": ["AURORA/data/something/frames/192597/first.jpg", "AURORA/data/something/frames/192597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cups on a table"}]} +{"id": "000000117579", "images": ["AURORA/data/something/frames/27474/first.jpg", "AURORA/data/something/frames/27474/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen drive, a lipstick and a lighter on the table"}]} +{"id": "000000117580", "images": ["AURORA/data/something/frames/129458/first.jpg", "AURORA/data/something/frames/129458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a towel from behind of napkin holder"}]} +{"id": "000000117581", "images": ["AURORA/data/something/frames/199113/first.jpg", "AURORA/data/something/frames/199113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plastic cap into glass"}]} +{"id": "000000117582", "images": ["AURORA/data/something/frames/86299/first.jpg", "AURORA/data/something/frames/86299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging plastic round out of sand"}]} +{"id": "000000117583", "images": ["AURORA/data/something/frames/143727/first.jpg", "AURORA/data/something/frames/143727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone and xbox game away from each other"}]} +{"id": "000000117584", "images": ["AURORA/data/something/frames/178201/first.jpg", "AURORA/data/something/frames/178201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a shoe onto corner"}]} +{"id": "000000117585", "images": ["AURORA/data/something/frames/72009/first.jpg", "AURORA/data/something/frames/72009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking fork"}]} +{"id": "000000117586", "images": ["AURORA/data/something/frames/94463/first.jpg", "AURORA/data/something/frames/94463/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting newspaper"}]} +{"id": "000000117587", "images": ["AURORA/data/something/frames/195323/first.jpg", "AURORA/data/something/frames/195323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a deodorant bottle so that it falls over"}]} +{"id": "000000117588", "images": ["AURORA/data/something/frames/55493/first.jpg", "AURORA/data/something/frames/55493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching prown fishes with your camera"}]} +{"id": "000000117589", "images": ["AURORA/data/something/frames/137269/first.jpg", "AURORA/data/something/frames/137269/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a pen until it breaks"}]} +{"id": "000000117590", "images": ["AURORA/data/something/frames/92000/first.jpg", "AURORA/data/something/frames/92000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering an apple with a handkerchief"}]} +{"id": "000000117591", "images": ["AURORA/data/something/frames/52540/first.jpg", "AURORA/data/something/frames/52540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting wallet on the edge of desk so it is not supported and falls down"}]} +{"id": "000000117592", "images": ["AURORA/data/something/frames/124199/first.jpg", "AURORA/data/something/frames/124199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling drawer out of carousel box"}]} +{"id": "000000117593", "images": ["AURORA/data/something/frames/110169/first.jpg", "AURORA/data/something/frames/110169/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle on a surface"}]} +{"id": "000000117594", "images": ["AURORA/data/something/frames/123936/first.jpg", "AURORA/data/something/frames/123936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a bottle so that it falls over"}]} +{"id": "000000117595", "images": ["AURORA/data/something/frames/151776/first.jpg", "AURORA/data/something/frames/151776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117596", "images": ["AURORA/data/something/frames/207618/first.jpg", "AURORA/data/something/frames/207618/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet just a little bit"}]} +{"id": "000000117597", "images": ["AURORA/data/something/frames/88272/first.jpg", "AURORA/data/something/frames/88272/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading white kerchief onto cutting plier"}]} +{"id": "000000117598", "images": ["AURORA/data/something/frames/60718/first.jpg", "AURORA/data/something/frames/60718/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving perfume bottle and wax jar closer to each other"}]} +{"id": "000000117599", "images": ["AURORA/data/something/frames/95562/first.jpg", "AURORA/data/something/frames/95562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from car with your camera"}]} +{"id": "000000117600", "images": ["AURORA/data/something/frames/152676/first.jpg", "AURORA/data/something/frames/152676/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning pan upside down"}]} +{"id": "000000117601", "images": ["AURORA/data/something/frames/153468/first.jpg", "AURORA/data/something/frames/153468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking remote control up"}]} +{"id": "000000117602", "images": ["AURORA/data/something/frames/173384/first.jpg", "AURORA/data/something/frames/173384/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from tea box with your camera"}]} +{"id": "000000117603", "images": ["AURORA/data/something/frames/29995/first.jpg", "AURORA/data/something/frames/29995/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sugar onto a book"}]} +{"id": "000000117604", "images": ["AURORA/data/something/frames/18781/first.jpg", "AURORA/data/something/frames/18781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering dvd disk with dvd cover"}]} +{"id": "000000117605", "images": ["AURORA/data/something/frames/159317/first.jpg", "AURORA/data/something/frames/159317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a keyset towards the camera"}]} +{"id": "000000117606", "images": ["AURORA/data/something/frames/9684/first.jpg", "AURORA/data/something/frames/9684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening the box"}]} +{"id": "000000117607", "images": ["AURORA/data/something/frames/177183/first.jpg", "AURORA/data/something/frames/177183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging moblie charger into socket"}]} +{"id": "000000117608", "images": ["AURORA/data/something/frames/190214/first.jpg", "AURORA/data/something/frames/190214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cans with a napkin"}]} +{"id": "000000117609", "images": ["AURORA/data/something/frames/50067/first.jpg", "AURORA/data/something/frames/50067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging electrical plug into an outlet but pulling it right out as you remove your hand"}]} +{"id": "000000117610", "images": ["AURORA/data/something/frames/51288/first.jpg", "AURORA/data/something/frames/51288/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing pomegranate peel into two pieces"}]} +{"id": "000000117611", "images": ["AURORA/data/something/frames/189302/first.jpg", "AURORA/data/something/frames/189302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending gift card so that it deforms"}]} +{"id": "000000117612", "images": ["AURORA/data/something/frames/214386/first.jpg", "AURORA/data/something/frames/214386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile and other mobile phone closer to each other"}]} +{"id": "000000117613", "images": ["AURORA/data/something/frames/54238/first.jpg", "AURORA/data/something/frames/54238/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a purse on the edge of the table so it is not supported and falls down"}]} +{"id": "000000117614", "images": ["AURORA/data/something/frames/137299/first.jpg", "AURORA/data/something/frames/137299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling ground cinnamon onto peanut butter bread"}]} +{"id": "000000117615", "images": ["AURORA/data/something/frames/190123/first.jpg", "AURORA/data/something/frames/190123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote upright on the table, so it falls on its side"}]} +{"id": "000000117616", "images": ["AURORA/data/something/frames/98322/first.jpg", "AURORA/data/something/frames/98322/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book, a candle and a lighter on the table"}]} +{"id": "000000117617", "images": ["AURORA/data/something/frames/177935/first.jpg", "AURORA/data/something/frames/177935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a pair of sunglasses closer to each other"}]} +{"id": "000000117618", "images": ["AURORA/data/something/frames/15326/first.jpg", "AURORA/data/something/frames/15326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping powder up with spoon"}]} +{"id": "000000117619", "images": ["AURORA/data/something/frames/68743/first.jpg", "AURORA/data/something/frames/68743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117620", "images": ["AURORA/data/something/frames/191793/first.jpg", "AURORA/data/something/frames/191793/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy lion and toy pig closer to each other"}]} +{"id": "000000117621", "images": ["AURORA/data/something/frames/191139/first.jpg", "AURORA/data/something/frames/191139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass until it overflows"}]} +{"id": "000000117622", "images": ["AURORA/data/something/frames/193087/first.jpg", "AURORA/data/something/frames/193087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a ring into a ceramic container"}]} +{"id": "000000117623", "images": ["AURORA/data/something/frames/192351/first.jpg", "AURORA/data/something/frames/192351/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000117624", "images": ["AURORA/data/something/frames/173008/first.jpg", "AURORA/data/something/frames/173008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg onto a box"}]} +{"id": "000000117625", "images": ["AURORA/data/something/frames/30728/first.jpg", "AURORA/data/something/frames/30728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle and pen on the table"}]} +{"id": "000000117626", "images": ["AURORA/data/something/frames/164262/first.jpg", "AURORA/data/something/frames/164262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying tablet box on the table on its side, not upright"}]} +{"id": "000000117627", "images": ["AURORA/data/something/frames/206570/first.jpg", "AURORA/data/something/frames/206570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning postcard upside down"}]} +{"id": "000000117628", "images": ["AURORA/data/something/frames/206935/first.jpg", "AURORA/data/something/frames/206935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bag with sheet"}]} +{"id": "000000117629", "images": ["AURORA/data/something/frames/157042/first.jpg", "AURORA/data/something/frames/157042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting something with something"}]} +{"id": "000000117630", "images": ["AURORA/data/something/frames/122241/first.jpg", "AURORA/data/something/frames/122241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red colour clip box from left to right"}]} +{"id": "000000117631", "images": ["AURORA/data/something/frames/118801/first.jpg", "AURORA/data/something/frames/118801/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting computer mouse on a surface"}]} +{"id": "000000117632", "images": ["AURORA/data/something/frames/149115/first.jpg", "AURORA/data/something/frames/149115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a feather until it breaks"}]} +{"id": "000000117633", "images": ["AURORA/data/something/frames/100134/first.jpg", "AURORA/data/something/frames/100134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking laptop so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117634", "images": ["AURORA/data/something/frames/21992/first.jpg", "AURORA/data/something/frames/21992/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming light"}]} +{"id": "000000117635", "images": ["AURORA/data/something/frames/215803/first.jpg", "AURORA/data/something/frames/215803/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen, bottle and cup on the table"}]} +{"id": "000000117636", "images": ["AURORA/data/something/frames/213685/first.jpg", "AURORA/data/something/frames/213685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting bottle cap"}]} +{"id": "000000117637", "images": ["AURORA/data/something/frames/118508/first.jpg", "AURORA/data/something/frames/118508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a vase"}]} +{"id": "000000117638", "images": ["AURORA/data/something/frames/213902/first.jpg", "AURORA/data/something/frames/213902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening file"}]} +{"id": "000000117639", "images": ["AURORA/data/something/frames/188681/first.jpg", "AURORA/data/something/frames/188681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting spoon with coin on it"}]} +{"id": "000000117640", "images": ["AURORA/data/something/frames/37638/first.jpg", "AURORA/data/something/frames/37638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting colorful scarf on a surface"}]} +{"id": "000000117641", "images": ["AURORA/data/something/frames/113337/first.jpg", "AURORA/data/something/frames/113337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering phone with wallet"}]} +{"id": "000000117642", "images": ["AURORA/data/something/frames/190006/first.jpg", "AURORA/data/something/frames/190006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing something with something"}]} +{"id": "000000117643", "images": ["AURORA/data/something/frames/45713/first.jpg", "AURORA/data/something/frames/45713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping peanut butter up with spoon"}]} +{"id": "000000117644", "images": ["AURORA/data/something/frames/70210/first.jpg", "AURORA/data/something/frames/70210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting an envelope underneath a cup"}]} +{"id": "000000117645", "images": ["AURORA/data/something/frames/198293/first.jpg", "AURORA/data/something/frames/198293/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000117646", "images": ["AURORA/data/something/frames/194462/first.jpg", "AURORA/data/something/frames/194462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning granola bar upside down"}]} +{"id": "000000117647", "images": ["AURORA/data/something/frames/33762/first.jpg", "AURORA/data/something/frames/33762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a salt grinder closer to a cup"}]} +{"id": "000000117648", "images": ["AURORA/data/something/frames/206713/first.jpg", "AURORA/data/something/frames/206713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hand colliding with hand and both come to a halt"}]} +{"id": "000000117649", "images": ["AURORA/data/something/frames/28259/first.jpg", "AURORA/data/something/frames/28259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving violin closer to pillow"}]} +{"id": "000000117650", "images": ["AURORA/data/something/frames/87865/first.jpg", "AURORA/data/something/frames/87865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking the phone out of the box"}]} +{"id": "000000117651", "images": ["AURORA/data/something/frames/95686/first.jpg", "AURORA/data/something/frames/95686/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping thermal cup over"}]} +{"id": "000000117652", "images": ["AURORA/data/something/frames/186979/first.jpg", "AURORA/data/something/frames/186979/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000117653", "images": ["AURORA/data/something/frames/177118/first.jpg", "AURORA/data/something/frames/177118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering travel iron-box"}]} +{"id": "000000117654", "images": ["AURORA/data/something/frames/78602/first.jpg", "AURORA/data/something/frames/78602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting purple microfiber on a surface"}]} +{"id": "000000117655", "images": ["AURORA/data/something/frames/134468/first.jpg", "AURORA/data/something/frames/134468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling pepper onto pan"}]} +{"id": "000000117656", "images": ["AURORA/data/something/frames/23512/first.jpg", "AURORA/data/something/frames/23512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle from left to right"}]} +{"id": "000000117657", "images": ["AURORA/data/something/frames/157520/first.jpg", "AURORA/data/something/frames/157520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting paper with pen on it"}]} +{"id": "000000117658", "images": ["AURORA/data/something/frames/82742/first.jpg", "AURORA/data/something/frames/82742/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving perfume bottle and toy closer to each other"}]} +{"id": "000000117659", "images": ["AURORA/data/something/frames/42929/first.jpg", "AURORA/data/something/frames/42929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping spice over"}]} +{"id": "000000117660", "images": ["AURORA/data/something/frames/155021/first.jpg", "AURORA/data/something/frames/155021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping game in front of paper"}]} +{"id": "000000117661", "images": ["AURORA/data/something/frames/99830/first.jpg", "AURORA/data/something/frames/99830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mouse from left to right"}]} +{"id": "000000117662", "images": ["AURORA/data/something/frames/41303/first.jpg", "AURORA/data/something/frames/41303/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pliers closer to a key"}]} +{"id": "000000117663", "images": ["AURORA/data/something/frames/41267/first.jpg", "AURORA/data/something/frames/41267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper in front of orange"}]} +{"id": "000000117664", "images": ["AURORA/data/something/frames/216661/first.jpg", "AURORA/data/something/frames/216661/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a towel onto the table"}]} +{"id": "000000117665", "images": ["AURORA/data/something/frames/54132/first.jpg", "AURORA/data/something/frames/54132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toothbrush behind container"}]} +{"id": "000000117666", "images": ["AURORA/data/something/frames/101774/first.jpg", "AURORA/data/something/frames/101774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys from box"}]} +{"id": "000000117667", "images": ["AURORA/data/something/frames/190352/first.jpg", "AURORA/data/something/frames/190352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing plate, revealing trivet behind"}]} +{"id": "000000117668", "images": ["AURORA/data/something/frames/155802/first.jpg", "AURORA/data/something/frames/155802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000117669", "images": ["AURORA/data/something/frames/207741/first.jpg", "AURORA/data/something/frames/207741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a stapler on it"}]} +{"id": "000000117670", "images": ["AURORA/data/something/frames/173280/first.jpg", "AURORA/data/something/frames/173280/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking blanket so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117671", "images": ["AURORA/data/something/frames/13240/first.jpg", "AURORA/data/something/frames/13240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding towel"}]} +{"id": "000000117672", "images": ["AURORA/data/something/frames/208362/first.jpg", "AURORA/data/something/frames/208362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a champagne glass"}]} +{"id": "000000117673", "images": ["AURORA/data/something/frames/183897/first.jpg", "AURORA/data/something/frames/183897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hollow pipe, that cannot stand upright upright on the table, so it falls on its side"}]} +{"id": "000000117674", "images": ["AURORA/data/something/frames/96417/first.jpg", "AURORA/data/something/frames/96417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a coaster from right to left"}]} +{"id": "000000117675", "images": ["AURORA/data/something/frames/152632/first.jpg", "AURORA/data/something/frames/152632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping water bottle onto desk"}]} +{"id": "000000117676", "images": ["AURORA/data/something/frames/149187/first.jpg", "AURORA/data/something/frames/149187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving book away from pillow"}]} +{"id": "000000117677", "images": ["AURORA/data/something/frames/191338/first.jpg", "AURORA/data/something/frames/191338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet"}]} +{"id": "000000117678", "images": ["AURORA/data/something/frames/96436/first.jpg", "AURORA/data/something/frames/96436/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and lego man closer to each other"}]} +{"id": "000000117679", "images": ["AURORA/data/something/frames/44514/first.jpg", "AURORA/data/something/frames/44514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into socket"}]} +{"id": "000000117680", "images": ["AURORA/data/something/frames/156116/first.jpg", "AURORA/data/something/frames/156116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from left to right"}]} +{"id": "000000117681", "images": ["AURORA/data/something/frames/205949/first.jpg", "AURORA/data/something/frames/205949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding pillowcase"}]} +{"id": "000000117682", "images": ["AURORA/data/something/frames/191583/first.jpg", "AURORA/data/something/frames/191583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging something into something"}]} +{"id": "000000117683", "images": ["AURORA/data/something/frames/95194/first.jpg", "AURORA/data/something/frames/95194/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a book down"}]} +{"id": "000000117684", "images": ["AURORA/data/something/frames/48387/first.jpg", "AURORA/data/something/frames/48387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from left to right"}]} +{"id": "000000117685", "images": ["AURORA/data/something/frames/126583/first.jpg", "AURORA/data/something/frames/126583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming a laptop"}]} +{"id": "000000117686", "images": ["AURORA/data/something/frames/94947/first.jpg", "AURORA/data/something/frames/94947/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a napkin behind a pillow"}]} +{"id": "000000117687", "images": ["AURORA/data/something/frames/47349/first.jpg", "AURORA/data/something/frames/47349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a calendar in front of bottle"}]} +{"id": "000000117688", "images": ["AURORA/data/something/frames/87568/first.jpg", "AURORA/data/something/frames/87568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white chalk away from battery"}]} +{"id": "000000117689", "images": ["AURORA/data/something/frames/82433/first.jpg", "AURORA/data/something/frames/82433/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering toy with tin"}]} +{"id": "000000117690", "images": ["AURORA/data/something/frames/88319/first.jpg", "AURORA/data/something/frames/88319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toothbrush next to mug"}]} +{"id": "000000117691", "images": ["AURORA/data/something/frames/6920/first.jpg", "AURORA/data/something/frames/6920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 spectacle boxes"}]} +{"id": "000000117692", "images": ["AURORA/data/something/frames/174768/first.jpg", "AURORA/data/something/frames/174768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling small book from right to left"}]} +{"id": "000000117693", "images": ["AURORA/data/something/frames/200312/first.jpg", "AURORA/data/something/frames/200312/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting spoon up completely without letting it drop down"}]} +{"id": "000000117694", "images": ["AURORA/data/something/frames/65630/first.jpg", "AURORA/data/something/frames/65630/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing mixer-jar"}]} +{"id": "000000117695", "images": ["AURORA/data/something/frames/21313/first.jpg", "AURORA/data/something/frames/21313/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking brushes"}]} +{"id": "000000117696", "images": ["AURORA/data/something/frames/32943/first.jpg", "AURORA/data/something/frames/32943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000117697", "images": ["AURORA/data/something/frames/60896/first.jpg", "AURORA/data/something/frames/60896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping remote onto pillow"}]} +{"id": "000000117698", "images": ["AURORA/data/something/frames/14397/first.jpg", "AURORA/data/something/frames/14397/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coffee cup into a cupboard"}]} +{"id": "000000117699", "images": ["AURORA/data/something/frames/182728/first.jpg", "AURORA/data/something/frames/182728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box"}]} +{"id": "000000117700", "images": ["AURORA/data/something/frames/60867/first.jpg", "AURORA/data/something/frames/60867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching block to block"}]} +{"id": "000000117701", "images": ["AURORA/data/something/frames/41597/first.jpg", "AURORA/data/something/frames/41597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning shoe upside down"}]} +{"id": "000000117702", "images": ["AURORA/data/something/frames/13099/first.jpg", "AURORA/data/something/frames/13099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing notebook"}]} +{"id": "000000117703", "images": ["AURORA/data/something/frames/127774/first.jpg", "AURORA/data/something/frames/127774/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming a vase with a plant"}]} +{"id": "000000117704", "images": ["AURORA/data/something/frames/196379/first.jpg", "AURORA/data/something/frames/196379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing mouse from left to right"}]} +{"id": "000000117705", "images": ["AURORA/data/something/frames/73738/first.jpg", "AURORA/data/something/frames/73738/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking soap out of mug"}]} +{"id": "000000117706", "images": ["AURORA/data/something/frames/189828/first.jpg", "AURORA/data/something/frames/189828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a knife upright on the table, so it falls on its side"}]} +{"id": "000000117707", "images": ["AURORA/data/something/frames/139411/first.jpg", "AURORA/data/something/frames/139411/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking stuffed animal so that it falls over"}]} +{"id": "000000117708", "images": ["AURORA/data/something/frames/15522/first.jpg", "AURORA/data/something/frames/15522/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box and a charger on the table"}]} +{"id": "000000117709", "images": ["AURORA/data/something/frames/108542/first.jpg", "AURORA/data/something/frames/108542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling slipper onto carpet"}]} +{"id": "000000117710", "images": ["AURORA/data/something/frames/198417/first.jpg", "AURORA/data/something/frames/198417/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117711", "images": ["AURORA/data/something/frames/198157/first.jpg", "AURORA/data/something/frames/198157/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing white towel into wooden box"}]} +{"id": "000000117712", "images": ["AURORA/data/something/frames/104885/first.jpg", "AURORA/data/something/frames/104885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a marker pen so that it almost falls off but doesn't"}]} +{"id": "000000117713", "images": ["AURORA/data/something/frames/158824/first.jpg", "AURORA/data/something/frames/158824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping crayon into bowl"}]} +{"id": "000000117714", "images": ["AURORA/data/something/frames/45500/first.jpg", "AURORA/data/something/frames/45500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a sink"}]} +{"id": "000000117715", "images": ["AURORA/data/something/frames/204531/first.jpg", "AURORA/data/something/frames/204531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bin with remote"}]} +{"id": "000000117716", "images": ["AURORA/data/something/frames/12227/first.jpg", "AURORA/data/something/frames/12227/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen into pot"}]} +{"id": "000000117717", "images": ["AURORA/data/something/frames/201861/first.jpg", "AURORA/data/something/frames/201861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting spoon"}]} +{"id": "000000117718", "images": ["AURORA/data/something/frames/126759/first.jpg", "AURORA/data/something/frames/126759/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a book without letting it drop down"}]} +{"id": "000000117719", "images": ["AURORA/data/something/frames/185952/first.jpg", "AURORA/data/something/frames/185952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a shoe brush so that it almost falls off but doesn't"}]} +{"id": "000000117720", "images": ["AURORA/data/something/frames/163872/first.jpg", "AURORA/data/something/frames/163872/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from plant with your camera"}]} +{"id": "000000117721", "images": ["AURORA/data/something/frames/58815/first.jpg", "AURORA/data/something/frames/58815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing leaf into two pieces"}]} +{"id": "000000117722", "images": ["AURORA/data/something/frames/99163/first.jpg", "AURORA/data/something/frames/99163/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 puzzle pieces"}]} +{"id": "000000117723", "images": ["AURORA/data/something/frames/178424/first.jpg", "AURORA/data/something/frames/178424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a piece of paper"}]} +{"id": "000000117724", "images": ["AURORA/data/something/frames/119715/first.jpg", "AURORA/data/something/frames/119715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling baking soda onto a bowl"}]} +{"id": "000000117725", "images": ["AURORA/data/something/frames/144302/first.jpg", "AURORA/data/something/frames/144302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and leadbox closer to each other"}]} +{"id": "000000117726", "images": ["AURORA/data/something/frames/42620/first.jpg", "AURORA/data/something/frames/42620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting measuring tape on a surface"}]} +{"id": "000000117727", "images": ["AURORA/data/something/frames/105458/first.jpg", "AURORA/data/something/frames/105458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hat and wallet away from each other"}]} +{"id": "000000117728", "images": ["AURORA/data/something/frames/143141/first.jpg", "AURORA/data/something/frames/143141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing notecard into two pieces"}]} +{"id": "000000117729", "images": ["AURORA/data/something/frames/217265/first.jpg", "AURORA/data/something/frames/217265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking selfie stick from floor"}]} +{"id": "000000117730", "images": ["AURORA/data/something/frames/17366/first.jpg", "AURORA/data/something/frames/17366/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting lighter behind candle"}]} +{"id": "000000117731", "images": ["AURORA/data/something/frames/154244/first.jpg", "AURORA/data/something/frames/154244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling matchboxes up"}]} +{"id": "000000117732", "images": ["AURORA/data/something/frames/88835/first.jpg", "AURORA/data/something/frames/88835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of coins so the stack collapses"}]} +{"id": "000000117733", "images": ["AURORA/data/something/frames/134721/first.jpg", "AURORA/data/something/frames/134721/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning shampoo upside down"}]} +{"id": "000000117734", "images": ["AURORA/data/something/frames/201134/first.jpg", "AURORA/data/something/frames/201134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping water off of table"}]} +{"id": "000000117735", "images": ["AURORA/data/something/frames/49845/first.jpg", "AURORA/data/something/frames/49845/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering milk"}]} +{"id": "000000117736", "images": ["AURORA/data/something/frames/25657/first.jpg", "AURORA/data/something/frames/25657/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing duster from left to right"}]} +{"id": "000000117737", "images": ["AURORA/data/something/frames/160129/first.jpg", "AURORA/data/something/frames/160129/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping milk off of a table"}]} +{"id": "000000117738", "images": ["AURORA/data/something/frames/211352/first.jpg", "AURORA/data/something/frames/211352/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking gift packs from a bag"}]} +{"id": "000000117739", "images": ["AURORA/data/something/frames/189290/first.jpg", "AURORA/data/something/frames/189290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping matchbox in front of jar"}]} +{"id": "000000117740", "images": ["AURORA/data/something/frames/159318/first.jpg", "AURORA/data/something/frames/159318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring cereals into a glass container until it overflows"}]} +{"id": "000000117741", "images": ["AURORA/data/something/frames/100091/first.jpg", "AURORA/data/something/frames/100091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000117742", "images": ["AURORA/data/something/frames/174047/first.jpg", "AURORA/data/something/frames/174047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching glass tumbler with your camera"}]} +{"id": "000000117743", "images": ["AURORA/data/something/frames/45905/first.jpg", "AURORA/data/something/frames/45905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding clothes"}]} +{"id": "000000117744", "images": ["AURORA/data/something/frames/43365/first.jpg", "AURORA/data/something/frames/43365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming window view"}]} +{"id": "000000117745", "images": ["AURORA/data/something/frames/43765/first.jpg", "AURORA/data/something/frames/43765/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking seven cookies"}]} +{"id": "000000117746", "images": ["AURORA/data/something/frames/52242/first.jpg", "AURORA/data/something/frames/52242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into laptop but pulling it right out as you remove your hand"}]} +{"id": "000000117747", "images": ["AURORA/data/something/frames/103484/first.jpg", "AURORA/data/something/frames/103484/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000117748", "images": ["AURORA/data/something/frames/60628/first.jpg", "AURORA/data/something/frames/60628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a book, a container and a milk carton on the table"}]} +{"id": "000000117749", "images": ["AURORA/data/something/frames/54037/first.jpg", "AURORA/data/something/frames/54037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bag of bread"}]} +{"id": "000000117750", "images": ["AURORA/data/something/frames/18874/first.jpg", "AURORA/data/something/frames/18874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching magnet to board"}]} +{"id": "000000117751", "images": ["AURORA/data/something/frames/65996/first.jpg", "AURORA/data/something/frames/65996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wheel of train"}]} +{"id": "000000117752", "images": ["AURORA/data/something/frames/128624/first.jpg", "AURORA/data/something/frames/128624/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto desk"}]} +{"id": "000000117753", "images": ["AURORA/data/something/frames/142889/first.jpg", "AURORA/data/something/frames/142889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into charger but pulling it right out as you remove your hand"}]} +{"id": "000000117754", "images": ["AURORA/data/something/frames/93763/first.jpg", "AURORA/data/something/frames/93763/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into jar"}]} +{"id": "000000117755", "images": ["AURORA/data/something/frames/7213/first.jpg", "AURORA/data/something/frames/7213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a sandal from behind of a wall"}]} +{"id": "000000117756", "images": ["AURORA/data/something/frames/13046/first.jpg", "AURORA/data/something/frames/13046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking book so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117757", "images": ["AURORA/data/something/frames/56042/first.jpg", "AURORA/data/something/frames/56042/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box onto a notebook so it falls down"}]} +{"id": "000000117758", "images": ["AURORA/data/something/frames/31338/first.jpg", "AURORA/data/something/frames/31338/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing socks into cup"}]} +{"id": "000000117759", "images": ["AURORA/data/something/frames/214847/first.jpg", "AURORA/data/something/frames/214847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup"}]} +{"id": "000000117760", "images": ["AURORA/data/something/frames/126363/first.jpg", "AURORA/data/something/frames/126363/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of cloth so that it separates into two pieces"}]} +{"id": "000000117761", "images": ["AURORA/data/something/frames/158449/first.jpg", "AURORA/data/something/frames/158449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming car"}]} +{"id": "000000117762", "images": ["AURORA/data/something/frames/173389/first.jpg", "AURORA/data/something/frames/173389/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cover from right to left"}]} +{"id": "000000117763", "images": ["AURORA/data/something/frames/183310/first.jpg", "AURORA/data/something/frames/183310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching a paper to a paper"}]} +{"id": "000000117764", "images": ["AURORA/data/something/frames/19741/first.jpg", "AURORA/data/something/frames/19741/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000117765", "images": ["AURORA/data/something/frames/137277/first.jpg", "AURORA/data/something/frames/137277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving doll and lipstick away from each other"}]} +{"id": "000000117766", "images": ["AURORA/data/something/frames/213552/first.jpg", "AURORA/data/something/frames/213552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar next to box"}]} +{"id": "000000117767", "images": ["AURORA/data/something/frames/217376/first.jpg", "AURORA/data/something/frames/217376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing nail paint remover from right to left"}]} +{"id": "000000117768", "images": ["AURORA/data/something/frames/161039/first.jpg", "AURORA/data/something/frames/161039/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging earphones into mp4"}]} +{"id": "000000117769", "images": ["AURORA/data/something/frames/68969/first.jpg", "AURORA/data/something/frames/68969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a robot with cardboard"}]} +{"id": "000000117770", "images": ["AURORA/data/something/frames/90542/first.jpg", "AURORA/data/something/frames/90542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape on a surface"}]} +{"id": "000000117771", "images": ["AURORA/data/something/frames/15160/first.jpg", "AURORA/data/something/frames/15160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse next to mouse pad"}]} +{"id": "000000117772", "images": ["AURORA/data/something/frames/83910/first.jpg", "AURORA/data/something/frames/83910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling flowers onto floor"}]} +{"id": "000000117773", "images": ["AURORA/data/something/frames/130962/first.jpg", "AURORA/data/something/frames/130962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving juice away from coffee"}]} +{"id": "000000117774", "images": ["AURORA/data/something/frames/59029/first.jpg", "AURORA/data/something/frames/59029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of plastic boxes without the stack collapsing"}]} +{"id": "000000117775", "images": ["AURORA/data/something/frames/201456/first.jpg", "AURORA/data/something/frames/201456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle away from pink notebook"}]} +{"id": "000000117776", "images": ["AURORA/data/something/frames/94731/first.jpg", "AURORA/data/something/frames/94731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a tissue box in front of a mug"}]} +{"id": "000000117777", "images": ["AURORA/data/something/frames/143649/first.jpg", "AURORA/data/something/frames/143649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving dvd away from keyboard"}]} +{"id": "000000117778", "images": ["AURORA/data/something/frames/148055/first.jpg", "AURORA/data/something/frames/148055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving car colliding with book and both come to a halt"}]} +{"id": "000000117779", "images": ["AURORA/data/something/frames/121135/first.jpg", "AURORA/data/something/frames/121135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a plate"}]} +{"id": "000000117780", "images": ["AURORA/data/something/frames/67183/first.jpg", "AURORA/data/something/frames/67183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming bicycle"}]} +{"id": "000000117781", "images": ["AURORA/data/something/frames/4210/first.jpg", "AURORA/data/something/frames/4210/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking teabags out of bowl"}]} +{"id": "000000117782", "images": ["AURORA/data/something/frames/133541/first.jpg", "AURORA/data/something/frames/133541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from left to right"}]} +{"id": "000000117783", "images": ["AURORA/data/something/frames/206332/first.jpg", "AURORA/data/something/frames/206332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming bike"}]} +{"id": "000000117784", "images": ["AURORA/data/something/frames/20087/first.jpg", "AURORA/data/something/frames/20087/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading vegetables onto a plate"}]} +{"id": "000000117785", "images": ["AURORA/data/something/frames/88989/first.jpg", "AURORA/data/something/frames/88989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into the wall but pulling it right out as you remove your hand"}]} +{"id": "000000117786", "images": ["AURORA/data/something/frames/62343/first.jpg", "AURORA/data/something/frames/62343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a calculator away from a pencase"}]} +{"id": "000000117787", "images": ["AURORA/data/something/frames/157804/first.jpg", "AURORA/data/something/frames/157804/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with pen on it"}]} +{"id": "000000117788", "images": ["AURORA/data/something/frames/152337/first.jpg", "AURORA/data/something/frames/152337/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a doll, a pen and scissors on the table"}]} +{"id": "000000117789", "images": ["AURORA/data/something/frames/18906/first.jpg", "AURORA/data/something/frames/18906/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping box onto table"}]} +{"id": "000000117790", "images": ["AURORA/data/something/frames/159717/first.jpg", "AURORA/data/something/frames/159717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto the floor"}]} +{"id": "000000117791", "images": ["AURORA/data/something/frames/130860/first.jpg", "AURORA/data/something/frames/130860/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending stapler pin so that it deforms"}]} +{"id": "000000117792", "images": ["AURORA/data/something/frames/214188/first.jpg", "AURORA/data/something/frames/214188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a videocamera up"}]} +{"id": "000000117793", "images": ["AURORA/data/something/frames/48562/first.jpg", "AURORA/data/something/frames/48562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a candy cane upright on the table, so it falls on its side"}]} +{"id": "000000117794", "images": ["AURORA/data/something/frames/42170/first.jpg", "AURORA/data/something/frames/42170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a cloth into a cup"}]} +{"id": "000000117795", "images": ["AURORA/data/something/frames/201645/first.jpg", "AURORA/data/something/frames/201645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a spoon onto the counter"}]} +{"id": "000000117796", "images": ["AURORA/data/something/frames/128047/first.jpg", "AURORA/data/something/frames/128047/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking eraser out of box"}]} +{"id": "000000117797", "images": ["AURORA/data/something/frames/112815/first.jpg", "AURORA/data/something/frames/112815/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spects from box"}]} +{"id": "000000117798", "images": ["AURORA/data/something/frames/204679/first.jpg", "AURORA/data/something/frames/204679/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall socket"}]} +{"id": "000000117799", "images": ["AURORA/data/something/frames/141984/first.jpg", "AURORA/data/something/frames/141984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a cup with ruler"}]} +{"id": "000000117800", "images": ["AURORA/data/something/frames/17410/first.jpg", "AURORA/data/something/frames/17410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking an energy drink can"}]} +{"id": "000000117801", "images": ["AURORA/data/something/frames/48218/first.jpg", "AURORA/data/something/frames/48218/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting vitamins and medication on the table"}]} +{"id": "000000117802", "images": ["AURORA/data/something/frames/45362/first.jpg", "AURORA/data/something/frames/45362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving ice tray and mobile phone away from each other"}]} +{"id": "000000117803", "images": ["AURORA/data/something/frames/213371/first.jpg", "AURORA/data/something/frames/213371/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering wound"}]} +{"id": "000000117804", "images": ["AURORA/data/something/frames/49722/first.jpg", "AURORA/data/something/frames/49722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a laptop"}]} +{"id": "000000117805", "images": ["AURORA/data/something/frames/180382/first.jpg", "AURORA/data/something/frames/180382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a cup onto a box"}]} +{"id": "000000117806", "images": ["AURORA/data/something/frames/162448/first.jpg", "AURORA/data/something/frames/162448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of pennies so the stack collapses"}]} +{"id": "000000117807", "images": ["AURORA/data/something/frames/144555/first.jpg", "AURORA/data/something/frames/144555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000117808", "images": ["AURORA/data/something/frames/210207/first.jpg", "AURORA/data/something/frames/210207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117809", "images": ["AURORA/data/something/frames/195056/first.jpg", "AURORA/data/something/frames/195056/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a textsurfer upside down"}]} +{"id": "000000117810", "images": ["AURORA/data/something/frames/120395/first.jpg", "AURORA/data/something/frames/120395/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding papers"}]} +{"id": "000000117811", "images": ["AURORA/data/something/frames/42849/first.jpg", "AURORA/data/something/frames/42849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 spanners onto yellow note"}]} +{"id": "000000117812", "images": ["AURORA/data/something/frames/151668/first.jpg", "AURORA/data/something/frames/151668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving leaf towards the camera"}]} +{"id": "000000117813", "images": ["AURORA/data/something/frames/57299/first.jpg", "AURORA/data/something/frames/57299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup until it overflows"}]} +{"id": "000000117814", "images": ["AURORA/data/something/frames/214602/first.jpg", "AURORA/data/something/frames/214602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing face wash with card"}]} +{"id": "000000117815", "images": ["AURORA/data/something/frames/115717/first.jpg", "AURORA/data/something/frames/115717/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling spoon from right to left"}]} +{"id": "000000117816", "images": ["AURORA/data/something/frames/39709/first.jpg", "AURORA/data/something/frames/39709/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a tea cup to tea set"}]} +{"id": "000000117817", "images": ["AURORA/data/something/frames/129445/first.jpg", "AURORA/data/something/frames/129445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing cover into two pieces"}]} +{"id": "000000117818", "images": ["AURORA/data/something/frames/216606/first.jpg", "AURORA/data/something/frames/216606/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming frame"}]} +{"id": "000000117819", "images": ["AURORA/data/something/frames/167013/first.jpg", "AURORA/data/something/frames/167013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a book up"}]} +{"id": "000000117820", "images": ["AURORA/data/something/frames/198677/first.jpg", "AURORA/data/something/frames/198677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black brush from left to right"}]} +{"id": "000000117821", "images": ["AURORA/data/something/frames/153097/first.jpg", "AURORA/data/something/frames/153097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing cloth, revealing phone behind"}]} +{"id": "000000117822", "images": ["AURORA/data/something/frames/16429/first.jpg", "AURORA/data/something/frames/16429/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen"}]} +{"id": "000000117823", "images": ["AURORA/data/something/frames/3292/first.jpg", "AURORA/data/something/frames/3292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving phone case down"}]} +{"id": "000000117824", "images": ["AURORA/data/something/frames/45055/first.jpg", "AURORA/data/something/frames/45055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into an outlet"}]} +{"id": "000000117825", "images": ["AURORA/data/something/frames/23572/first.jpg", "AURORA/data/something/frames/23572/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of bottle cap so the stack collapses"}]} +{"id": "000000117826", "images": ["AURORA/data/something/frames/131243/first.jpg", "AURORA/data/something/frames/131243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117827", "images": ["AURORA/data/something/frames/121738/first.jpg", "AURORA/data/something/frames/121738/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding wallet"}]} +{"id": "000000117828", "images": ["AURORA/data/something/frames/131456/first.jpg", "AURORA/data/something/frames/131456/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cushion on a surface"}]} +{"id": "000000117829", "images": ["AURORA/data/something/frames/73703/first.jpg", "AURORA/data/something/frames/73703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a key next to a knife"}]} +{"id": "000000117830", "images": ["AURORA/data/something/frames/161088/first.jpg", "AURORA/data/something/frames/161088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching wastebin with your camera"}]} +{"id": "000000117831", "images": ["AURORA/data/something/frames/59938/first.jpg", "AURORA/data/something/frames/59938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a smartphone upside down"}]} +{"id": "000000117832", "images": ["AURORA/data/something/frames/121561/first.jpg", "AURORA/data/something/frames/121561/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000117833", "images": ["AURORA/data/something/frames/77808/first.jpg", "AURORA/data/something/frames/77808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: metal ball colliding with metal ball and both are being deflected"}]} +{"id": "000000117834", "images": ["AURORA/data/something/frames/67469/first.jpg", "AURORA/data/something/frames/67469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117835", "images": ["AURORA/data/something/frames/195318/first.jpg", "AURORA/data/something/frames/195318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cap with hand towel"}]} +{"id": "000000117836", "images": ["AURORA/data/something/frames/146598/first.jpg", "AURORA/data/something/frames/146598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle"}]} +{"id": "000000117837", "images": ["AURORA/data/something/frames/115894/first.jpg", "AURORA/data/something/frames/115894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping nail clippers into a cup"}]} +{"id": "000000117838", "images": ["AURORA/data/something/frames/168036/first.jpg", "AURORA/data/something/frames/168036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping pepper off of the counter top"}]} +{"id": "000000117839", "images": ["AURORA/data/something/frames/154294/first.jpg", "AURORA/data/something/frames/154294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving paper clip holder and marker closer to each other"}]} +{"id": "000000117840", "images": ["AURORA/data/something/frames/148142/first.jpg", "AURORA/data/something/frames/148142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning coffee cup upside down"}]} +{"id": "000000117841", "images": ["AURORA/data/something/frames/3879/first.jpg", "AURORA/data/something/frames/3879/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a cloth"}]} +{"id": "000000117842", "images": ["AURORA/data/something/frames/179545/first.jpg", "AURORA/data/something/frames/179545/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of coins so the stack collapses"}]} +{"id": "000000117843", "images": ["AURORA/data/something/frames/143558/first.jpg", "AURORA/data/something/frames/143558/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a remote control next to a headphones"}]} +{"id": "000000117844", "images": ["AURORA/data/something/frames/155670/first.jpg", "AURORA/data/something/frames/155670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a mug, an eraser and a coin on the table"}]} +{"id": "000000117845", "images": ["AURORA/data/something/frames/77945/first.jpg", "AURORA/data/something/frames/77945/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a pen"}]} +{"id": "000000117846", "images": ["AURORA/data/something/frames/70341/first.jpg", "AURORA/data/something/frames/70341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keys up"}]} +{"id": "000000117847", "images": ["AURORA/data/something/frames/151715/first.jpg", "AURORA/data/something/frames/151715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing pad lock"}]} +{"id": "000000117848", "images": ["AURORA/data/something/frames/177461/first.jpg", "AURORA/data/something/frames/177461/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming smart phone"}]} +{"id": "000000117849", "images": ["AURORA/data/something/frames/47486/first.jpg", "AURORA/data/something/frames/47486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into wall socket but pulling it right out as you remove your hand"}]} +{"id": "000000117850", "images": ["AURORA/data/something/frames/135790/first.jpg", "AURORA/data/something/frames/135790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000117851", "images": ["AURORA/data/something/frames/215596/first.jpg", "AURORA/data/something/frames/215596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: candy being deflected from clock"}]} +{"id": "000000117852", "images": ["AURORA/data/something/frames/34170/first.jpg", "AURORA/data/something/frames/34170/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming traffic signboard"}]} +{"id": "000000117853", "images": ["AURORA/data/something/frames/32510/first.jpg", "AURORA/data/something/frames/32510/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power cable into socket but pulling it right out as you remove your hand"}]} +{"id": "000000117854", "images": ["AURORA/data/something/frames/212969/first.jpg", "AURORA/data/something/frames/212969/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117855", "images": ["AURORA/data/something/frames/181651/first.jpg", "AURORA/data/something/frames/181651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) a towel wet until water comes out"}]} +{"id": "000000117856", "images": ["AURORA/data/something/frames/211973/first.jpg", "AURORA/data/something/frames/211973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000117857", "images": ["AURORA/data/something/frames/43544/first.jpg", "AURORA/data/something/frames/43544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a mouse with a wallet"}]} +{"id": "000000117858", "images": ["AURORA/data/something/frames/12235/first.jpg", "AURORA/data/something/frames/12235/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen off of ipad"}]} +{"id": "000000117859", "images": ["AURORA/data/something/frames/141750/first.jpg", "AURORA/data/something/frames/141750/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping soap off of a chair"}]} +{"id": "000000117860", "images": ["AURORA/data/something/frames/51775/first.jpg", "AURORA/data/something/frames/51775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting paper in front of candle"}]} +{"id": "000000117861", "images": ["AURORA/data/something/frames/1751/first.jpg", "AURORA/data/something/frames/1751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle and box closer to each other"}]} +{"id": "000000117862", "images": ["AURORA/data/something/frames/38738/first.jpg", "AURORA/data/something/frames/38738/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking jar so that it falls over"}]} +{"id": "000000117863", "images": ["AURORA/data/something/frames/179232/first.jpg", "AURORA/data/something/frames/179232/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping push in onto push in"}]} +{"id": "000000117864", "images": ["AURORA/data/something/frames/102701/first.jpg", "AURORA/data/something/frames/102701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a crayon into a pot"}]} +{"id": "000000117865", "images": ["AURORA/data/something/frames/119552/first.jpg", "AURORA/data/something/frames/119552/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a remote so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117866", "images": ["AURORA/data/something/frames/184511/first.jpg", "AURORA/data/something/frames/184511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue paper into two pieces"}]} +{"id": "000000117867", "images": ["AURORA/data/something/frames/114930/first.jpg", "AURORA/data/something/frames/114930/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper towel into two pieces"}]} +{"id": "000000117868", "images": ["AURORA/data/something/frames/175789/first.jpg", "AURORA/data/something/frames/175789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a letter into two pieces"}]} +{"id": "000000117869", "images": ["AURORA/data/something/frames/63424/first.jpg", "AURORA/data/something/frames/63424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking keys out of bag"}]} +{"id": "000000117870", "images": ["AURORA/data/something/frames/128894/first.jpg", "AURORA/data/something/frames/128894/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a box"}]} +{"id": "000000117871", "images": ["AURORA/data/something/frames/136310/first.jpg", "AURORA/data/something/frames/136310/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117872", "images": ["AURORA/data/something/frames/18534/first.jpg", "AURORA/data/something/frames/18534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing medicine into a box"}]} +{"id": "000000117873", "images": ["AURORA/data/something/frames/21421/first.jpg", "AURORA/data/something/frames/21421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000117874", "images": ["AURORA/data/something/frames/105836/first.jpg", "AURORA/data/something/frames/105836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking currency"}]} +{"id": "000000117875", "images": ["AURORA/data/something/frames/63452/first.jpg", "AURORA/data/something/frames/63452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a plug from right to left"}]} +{"id": "000000117876", "images": ["AURORA/data/something/frames/2683/first.jpg", "AURORA/data/something/frames/2683/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a cigarette out of the pack"}]} +{"id": "000000117877", "images": ["AURORA/data/something/frames/173702/first.jpg", "AURORA/data/something/frames/173702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil"}]} +{"id": "000000117878", "images": ["AURORA/data/something/frames/156258/first.jpg", "AURORA/data/something/frames/156258/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117879", "images": ["AURORA/data/something/frames/68678/first.jpg", "AURORA/data/something/frames/68678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a bowl"}]} +{"id": "000000117880", "images": ["AURORA/data/something/frames/123792/first.jpg", "AURORA/data/something/frames/123792/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into laptop"}]} +{"id": "000000117881", "images": ["AURORA/data/something/frames/153427/first.jpg", "AURORA/data/something/frames/153427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding napkin"}]} +{"id": "000000117882", "images": ["AURORA/data/something/frames/220119/first.jpg", "AURORA/data/something/frames/220119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pencil being deflected from a box"}]} +{"id": "000000117883", "images": ["AURORA/data/something/frames/74665/first.jpg", "AURORA/data/something/frames/74665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging power chord into outlet"}]} +{"id": "000000117884", "images": ["AURORA/data/something/frames/27016/first.jpg", "AURORA/data/something/frames/27016/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping paper off of table"}]} +{"id": "000000117885", "images": ["AURORA/data/something/frames/116144/first.jpg", "AURORA/data/something/frames/116144/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a lighter onto a metal box"}]} +{"id": "000000117886", "images": ["AURORA/data/something/frames/211585/first.jpg", "AURORA/data/something/frames/211585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting orange post-it on a surface"}]} +{"id": "000000117887", "images": ["AURORA/data/something/frames/166927/first.jpg", "AURORA/data/something/frames/166927/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: remote being deflected from couch"}]} +{"id": "000000117888", "images": ["AURORA/data/something/frames/130392/first.jpg", "AURORA/data/something/frames/130392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000117889", "images": ["AURORA/data/something/frames/198965/first.jpg", "AURORA/data/something/frames/198965/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling pillows up"}]} +{"id": "000000117890", "images": ["AURORA/data/something/frames/88011/first.jpg", "AURORA/data/something/frames/88011/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering plastic knife"}]} +{"id": "000000117891", "images": ["AURORA/data/something/frames/50874/first.jpg", "AURORA/data/something/frames/50874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping cereal up with spoon"}]} +{"id": "000000117892", "images": ["AURORA/data/something/frames/82524/first.jpg", "AURORA/data/something/frames/82524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 pen onto book"}]} +{"id": "000000117893", "images": ["AURORA/data/something/frames/168508/first.jpg", "AURORA/data/something/frames/168508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into glass"}]} +{"id": "000000117894", "images": ["AURORA/data/something/frames/220335/first.jpg", "AURORA/data/something/frames/220335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching battery cover to remote"}]} +{"id": "000000117895", "images": ["AURORA/data/something/frames/28598/first.jpg", "AURORA/data/something/frames/28598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bottle upside down"}]} +{"id": "000000117896", "images": ["AURORA/data/something/frames/178788/first.jpg", "AURORA/data/something/frames/178788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) sponge wet until water comes out"}]} +{"id": "000000117897", "images": ["AURORA/data/something/frames/186015/first.jpg", "AURORA/data/something/frames/186015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sticky note into two pieces"}]} +{"id": "000000117898", "images": ["AURORA/data/something/frames/110396/first.jpg", "AURORA/data/something/frames/110396/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000117899", "images": ["AURORA/data/something/frames/56775/first.jpg", "AURORA/data/something/frames/56775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding handkerchief"}]} +{"id": "000000117900", "images": ["AURORA/data/something/frames/4940/first.jpg", "AURORA/data/something/frames/4940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving antenas of antena set"}]} +{"id": "000000117901", "images": ["AURORA/data/something/frames/74512/first.jpg", "AURORA/data/something/frames/74512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring tea bags out of a box"}]} +{"id": "000000117902", "images": ["AURORA/data/something/frames/76349/first.jpg", "AURORA/data/something/frames/76349/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pill bottle into coffee can"}]} +{"id": "000000117903", "images": ["AURORA/data/something/frames/131843/first.jpg", "AURORA/data/something/frames/131843/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bowel underneath gas stove"}]} +{"id": "000000117904", "images": ["AURORA/data/something/frames/78898/first.jpg", "AURORA/data/something/frames/78898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving calculator up"}]} +{"id": "000000117905", "images": ["AURORA/data/something/frames/98916/first.jpg", "AURORA/data/something/frames/98916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning bowl upside down"}]} +{"id": "000000117906", "images": ["AURORA/data/something/frames/168896/first.jpg", "AURORA/data/something/frames/168896/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking bottle so that it falls over"}]} +{"id": "000000117907", "images": ["AURORA/data/something/frames/16055/first.jpg", "AURORA/data/something/frames/16055/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving power bank down"}]} +{"id": "000000117908", "images": ["AURORA/data/something/frames/39000/first.jpg", "AURORA/data/something/frames/39000/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg next to a belt"}]} +{"id": "000000117909", "images": ["AURORA/data/something/frames/39745/first.jpg", "AURORA/data/something/frames/39745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering soap"}]} +{"id": "000000117910", "images": ["AURORA/data/something/frames/84546/first.jpg", "AURORA/data/something/frames/84546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering orange colour bottle cap with white sheet"}]} +{"id": "000000117911", "images": ["AURORA/data/something/frames/168876/first.jpg", "AURORA/data/something/frames/168876/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 cigarette boxes"}]} +{"id": "000000117912", "images": ["AURORA/data/something/frames/95309/first.jpg", "AURORA/data/something/frames/95309/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117913", "images": ["AURORA/data/something/frames/15514/first.jpg", "AURORA/data/something/frames/15514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing case, revealing pc behind"}]} +{"id": "000000117914", "images": ["AURORA/data/something/frames/117674/first.jpg", "AURORA/data/something/frames/117674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning chair upside down"}]} +{"id": "000000117915", "images": ["AURORA/data/something/frames/127213/first.jpg", "AURORA/data/something/frames/127213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 2 coins"}]} +{"id": "000000117916", "images": ["AURORA/data/something/frames/167865/first.jpg", "AURORA/data/something/frames/167865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117917", "images": ["AURORA/data/something/frames/80518/first.jpg", "AURORA/data/something/frames/80518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000117918", "images": ["AURORA/data/something/frames/112348/first.jpg", "AURORA/data/something/frames/112348/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing foldable knife from left to right"}]} +{"id": "000000117919", "images": ["AURORA/data/something/frames/167431/first.jpg", "AURORA/data/something/frames/167431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming banana bunch"}]} +{"id": "000000117920", "images": ["AURORA/data/something/frames/163099/first.jpg", "AURORA/data/something/frames/163099/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping marker pen in front of spectacle box"}]} +{"id": "000000117921", "images": ["AURORA/data/something/frames/174688/first.jpg", "AURORA/data/something/frames/174688/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a paper"}]} +{"id": "000000117922", "images": ["AURORA/data/something/frames/53898/first.jpg", "AURORA/data/something/frames/53898/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing package from right to left"}]} +{"id": "000000117923", "images": ["AURORA/data/something/frames/203070/first.jpg", "AURORA/data/something/frames/203070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup and orange on the table"}]} +{"id": "000000117924", "images": ["AURORA/data/something/frames/194108/first.jpg", "AURORA/data/something/frames/194108/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000117925", "images": ["AURORA/data/something/frames/75548/first.jpg", "AURORA/data/something/frames/75548/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming gate"}]} +{"id": "000000117926", "images": ["AURORA/data/something/frames/55373/first.jpg", "AURORA/data/something/frames/55373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117927", "images": ["AURORA/data/something/frames/122602/first.jpg", "AURORA/data/something/frames/122602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spone to other spones that are already on the table"}]} +{"id": "000000117928", "images": ["AURORA/data/something/frames/12008/first.jpg", "AURORA/data/something/frames/12008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117929", "images": ["AURORA/data/something/frames/130674/first.jpg", "AURORA/data/something/frames/130674/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black umbrella from right to left"}]} +{"id": "000000117930", "images": ["AURORA/data/something/frames/140022/first.jpg", "AURORA/data/something/frames/140022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of cover so that it gets stretched"}]} +{"id": "000000117931", "images": ["AURORA/data/something/frames/97477/first.jpg", "AURORA/data/something/frames/97477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning breath mint container upside down"}]} +{"id": "000000117932", "images": ["AURORA/data/something/frames/74711/first.jpg", "AURORA/data/something/frames/74711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000117933", "images": ["AURORA/data/something/frames/35443/first.jpg", "AURORA/data/something/frames/35443/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bowl"}]} +{"id": "000000117934", "images": ["AURORA/data/something/frames/209621/first.jpg", "AURORA/data/something/frames/209621/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a lamp and coasters away from each other"}]} +{"id": "000000117935", "images": ["AURORA/data/something/frames/3021/first.jpg", "AURORA/data/something/frames/3021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a packet on the edge of the chair so it is not supported and falls down"}]} +{"id": "000000117936", "images": ["AURORA/data/something/frames/96771/first.jpg", "AURORA/data/something/frames/96771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a knife so that it almost falls off but doesn't"}]} +{"id": "000000117937", "images": ["AURORA/data/something/frames/5903/first.jpg", "AURORA/data/something/frames/5903/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a fragrance diffuser into a wall socket"}]} +{"id": "000000117938", "images": ["AURORA/data/something/frames/39506/first.jpg", "AURORA/data/something/frames/39506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000117939", "images": ["AURORA/data/something/frames/129375/first.jpg", "AURORA/data/something/frames/129375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading kerchief onto rubix cube"}]} +{"id": "000000117940", "images": ["AURORA/data/something/frames/32619/first.jpg", "AURORA/data/something/frames/32619/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of a rubber strip so that it gets stretched"}]} +{"id": "000000117941", "images": ["AURORA/data/something/frames/33910/first.jpg", "AURORA/data/something/frames/33910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing envelope just a little bit"}]} +{"id": "000000117942", "images": ["AURORA/data/something/frames/204133/first.jpg", "AURORA/data/something/frames/204133/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a drawer"}]} +{"id": "000000117943", "images": ["AURORA/data/something/frames/142245/first.jpg", "AURORA/data/something/frames/142245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking small stone from pile of stones"}]} +{"id": "000000117944", "images": ["AURORA/data/something/frames/13922/first.jpg", "AURORA/data/something/frames/13922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a sandal in front of a shoe"}]} +{"id": "000000117945", "images": ["AURORA/data/something/frames/53813/first.jpg", "AURORA/data/something/frames/53813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving feeding bottle and plastic bottel closer to each other"}]} +{"id": "000000117946", "images": ["AURORA/data/something/frames/138954/first.jpg", "AURORA/data/something/frames/138954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green hair comb from right to left"}]} +{"id": "000000117947", "images": ["AURORA/data/something/frames/53225/first.jpg", "AURORA/data/something/frames/53225/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping phone onto book"}]} +{"id": "000000117948", "images": ["AURORA/data/something/frames/37891/first.jpg", "AURORA/data/something/frames/37891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking book up"}]} +{"id": "000000117949", "images": ["AURORA/data/something/frames/41260/first.jpg", "AURORA/data/something/frames/41260/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a remote with a knife"}]} +{"id": "000000117950", "images": ["AURORA/data/something/frames/125029/first.jpg", "AURORA/data/something/frames/125029/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping shirt in front of shirt"}]} +{"id": "000000117951", "images": ["AURORA/data/something/frames/115127/first.jpg", "AURORA/data/something/frames/115127/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming indian weight machine"}]} +{"id": "000000117952", "images": ["AURORA/data/something/frames/44321/first.jpg", "AURORA/data/something/frames/44321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting shoe on a surface"}]} +{"id": "000000117953", "images": ["AURORA/data/something/frames/36852/first.jpg", "AURORA/data/something/frames/36852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking magnifying glass out of spectacle box"}]} +{"id": "000000117954", "images": ["AURORA/data/something/frames/108574/first.jpg", "AURORA/data/something/frames/108574/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking liner out of book"}]} +{"id": "000000117955", "images": ["AURORA/data/something/frames/40602/first.jpg", "AURORA/data/something/frames/40602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a container upright on the table, so it falls on its side"}]} +{"id": "000000117956", "images": ["AURORA/data/something/frames/206632/first.jpg", "AURORA/data/something/frames/206632/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pill behind bottle"}]} +{"id": "000000117957", "images": ["AURORA/data/something/frames/184038/first.jpg", "AURORA/data/something/frames/184038/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red pot holder down"}]} +{"id": "000000117958", "images": ["AURORA/data/something/frames/204588/first.jpg", "AURORA/data/something/frames/204588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cell phone with pillow"}]} +{"id": "000000117959", "images": ["AURORA/data/something/frames/138084/first.jpg", "AURORA/data/something/frames/138084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking jar so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000117960", "images": ["AURORA/data/something/frames/39430/first.jpg", "AURORA/data/something/frames/39430/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a lipstick lid"}]} +{"id": "000000117961", "images": ["AURORA/data/something/frames/182381/first.jpg", "AURORA/data/something/frames/182381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering lollipop with card"}]} +{"id": "000000117962", "images": ["AURORA/data/something/frames/197012/first.jpg", "AURORA/data/something/frames/197012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting soda can next to glass"}]} +{"id": "000000117963", "images": ["AURORA/data/something/frames/170934/first.jpg", "AURORA/data/something/frames/170934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a box upside down"}]} +{"id": "000000117964", "images": ["AURORA/data/something/frames/21720/first.jpg", "AURORA/data/something/frames/21720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into a cup"}]} +{"id": "000000117965", "images": ["AURORA/data/something/frames/123334/first.jpg", "AURORA/data/something/frames/123334/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of pen so that it separates into two pieces"}]} +{"id": "000000117966", "images": ["AURORA/data/something/frames/194897/first.jpg", "AURORA/data/something/frames/194897/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a container and another one away from each other"}]} +{"id": "000000117967", "images": ["AURORA/data/something/frames/26464/first.jpg", "AURORA/data/something/frames/26464/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into glass"}]} +{"id": "000000117968", "images": ["AURORA/data/something/frames/206093/first.jpg", "AURORA/data/something/frames/206093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a card"}]} +{"id": "000000117969", "images": ["AURORA/data/something/frames/126255/first.jpg", "AURORA/data/something/frames/126255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching block to block"}]} +{"id": "000000117970", "images": ["AURORA/data/something/frames/60729/first.jpg", "AURORA/data/something/frames/60729/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming fishes"}]} +{"id": "000000117971", "images": ["AURORA/data/something/frames/182132/first.jpg", "AURORA/data/something/frames/182132/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking silver pen among other pens on table"}]} +{"id": "000000117972", "images": ["AURORA/data/something/frames/41420/first.jpg", "AURORA/data/something/frames/41420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000117973", "images": ["AURORA/data/something/frames/14263/first.jpg", "AURORA/data/something/frames/14263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching usb to charger"}]} +{"id": "000000117974", "images": ["AURORA/data/something/frames/219524/first.jpg", "AURORA/data/something/frames/219524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 hair bands onto black pouch"}]} +{"id": "000000117975", "images": ["AURORA/data/something/frames/153239/first.jpg", "AURORA/data/something/frames/153239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto wood box"}]} +{"id": "000000117976", "images": ["AURORA/data/something/frames/220375/first.jpg", "AURORA/data/something/frames/220375/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plant away from phone"}]} +{"id": "000000117977", "images": ["AURORA/data/something/frames/108246/first.jpg", "AURORA/data/something/frames/108246/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle in front of a rubbish bin"}]} +{"id": "000000117978", "images": ["AURORA/data/something/frames/118752/first.jpg", "AURORA/data/something/frames/118752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting notepad with remote on it"}]} +{"id": "000000117979", "images": ["AURORA/data/something/frames/112658/first.jpg", "AURORA/data/something/frames/112658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sauce bottle on a surface"}]} +{"id": "000000117980", "images": ["AURORA/data/something/frames/96317/first.jpg", "AURORA/data/something/frames/96317/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something next to something"}]} +{"id": "000000117981", "images": ["AURORA/data/something/frames/117165/first.jpg", "AURORA/data/something/frames/117165/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into headphones"}]} +{"id": "000000117982", "images": ["AURORA/data/something/frames/209914/first.jpg", "AURORA/data/something/frames/209914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) ball of mouse"}]} +{"id": "000000117983", "images": ["AURORA/data/something/frames/128332/first.jpg", "AURORA/data/something/frames/128332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto box"}]} +{"id": "000000117984", "images": ["AURORA/data/something/frames/219850/first.jpg", "AURORA/data/something/frames/219850/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a comb from left to right"}]} +{"id": "000000117985", "images": ["AURORA/data/something/frames/98789/first.jpg", "AURORA/data/something/frames/98789/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing paint with phone"}]} +{"id": "000000117986", "images": ["AURORA/data/something/frames/52025/first.jpg", "AURORA/data/something/frames/52025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a children's book"}]} +{"id": "000000117987", "images": ["AURORA/data/something/frames/156752/first.jpg", "AURORA/data/something/frames/156752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying battery on the table on its side, not upright"}]} +{"id": "000000117988", "images": ["AURORA/data/something/frames/104547/first.jpg", "AURORA/data/something/frames/104547/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cover into lipstick"}]} +{"id": "000000117989", "images": ["AURORA/data/something/frames/131497/first.jpg", "AURORA/data/something/frames/131497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a box with a pillow"}]} +{"id": "000000117990", "images": ["AURORA/data/something/frames/145929/first.jpg", "AURORA/data/something/frames/145929/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing tape dispenser from left to right"}]} +{"id": "000000117991", "images": ["AURORA/data/something/frames/88041/first.jpg", "AURORA/data/something/frames/88041/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse in front of cutter"}]} +{"id": "000000117992", "images": ["AURORA/data/something/frames/207568/first.jpg", "AURORA/data/something/frames/207568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting flashdisk next to box"}]} +{"id": "000000117993", "images": ["AURORA/data/something/frames/219773/first.jpg", "AURORA/data/something/frames/219773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting egg"}]} +{"id": "000000117994", "images": ["AURORA/data/something/frames/37854/first.jpg", "AURORA/data/something/frames/37854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000117995", "images": ["AURORA/data/something/frames/64031/first.jpg", "AURORA/data/something/frames/64031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000117996", "images": ["AURORA/data/something/frames/70031/first.jpg", "AURORA/data/something/frames/70031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing double-sided adhesive tape from left to right"}]} +{"id": "000000117997", "images": ["AURORA/data/something/frames/139884/first.jpg", "AURORA/data/something/frames/139884/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving hair comb down"}]} +{"id": "000000117998", "images": ["AURORA/data/something/frames/15588/first.jpg", "AURORA/data/something/frames/15588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting packet"}]} +{"id": "000000117999", "images": ["AURORA/data/something/frames/151923/first.jpg", "AURORA/data/something/frames/151923/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering paper"}]} +{"id": "000000118000", "images": ["AURORA/data/something/frames/149720/first.jpg", "AURORA/data/something/frames/149720/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping water botle into purse"}]} +{"id": "000000118001", "images": ["AURORA/data/something/frames/112335/first.jpg", "AURORA/data/something/frames/112335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving inline skate wheel and inline skate wheel away from each other"}]} +{"id": "000000118002", "images": ["AURORA/data/something/frames/112154/first.jpg", "AURORA/data/something/frames/112154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into cord"}]} +{"id": "000000118003", "images": ["AURORA/data/something/frames/111998/first.jpg", "AURORA/data/something/frames/111998/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting knife into glass cup"}]} +{"id": "000000118004", "images": ["AURORA/data/something/frames/62715/first.jpg", "AURORA/data/something/frames/62715/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a ticket just a little bit"}]} +{"id": "000000118005", "images": ["AURORA/data/something/frames/97620/first.jpg", "AURORA/data/something/frames/97620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting dollar"}]} +{"id": "000000118006", "images": ["AURORA/data/something/frames/67297/first.jpg", "AURORA/data/something/frames/67297/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding dish cloth"}]} +{"id": "000000118007", "images": ["AURORA/data/something/frames/172290/first.jpg", "AURORA/data/something/frames/172290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle upright on the table"}]} +{"id": "000000118008", "images": ["AURORA/data/something/frames/176020/first.jpg", "AURORA/data/something/frames/176020/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing papers into trash can"}]} +{"id": "000000118009", "images": ["AURORA/data/something/frames/118112/first.jpg", "AURORA/data/something/frames/118112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fuel can towards the camera"}]} +{"id": "000000118010", "images": ["AURORA/data/something/frames/6458/first.jpg", "AURORA/data/something/frames/6458/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting pencil up completely without letting it drop down"}]} +{"id": "000000118011", "images": ["AURORA/data/something/frames/61244/first.jpg", "AURORA/data/something/frames/61244/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging earphones into a mobile"}]} +{"id": "000000118012", "images": ["AURORA/data/something/frames/190516/first.jpg", "AURORA/data/something/frames/190516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle of tool oil upright on the table"}]} +{"id": "000000118013", "images": ["AURORA/data/something/frames/188239/first.jpg", "AURORA/data/something/frames/188239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mobile phone from left to right"}]} +{"id": "000000118014", "images": ["AURORA/data/something/frames/16820/first.jpg", "AURORA/data/something/frames/16820/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking deo out of bagback"}]} +{"id": "000000118015", "images": ["AURORA/data/something/frames/103125/first.jpg", "AURORA/data/something/frames/103125/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting milk jug upright on the table"}]} +{"id": "000000118016", "images": ["AURORA/data/something/frames/64019/first.jpg", "AURORA/data/something/frames/64019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into an outlet"}]} +{"id": "000000118017", "images": ["AURORA/data/something/frames/53642/first.jpg", "AURORA/data/something/frames/53642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a bracelet from left to right"}]} +{"id": "000000118018", "images": ["AURORA/data/something/frames/46575/first.jpg", "AURORA/data/something/frames/46575/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a wine glass with a penny"}]} +{"id": "000000118019", "images": ["AURORA/data/something/frames/135321/first.jpg", "AURORA/data/something/frames/135321/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe down"}]} +{"id": "000000118020", "images": ["AURORA/data/something/frames/87604/first.jpg", "AURORA/data/something/frames/87604/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118021", "images": ["AURORA/data/something/frames/181382/first.jpg", "AURORA/data/something/frames/181382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending spaghetti noodle until it breaks"}]} +{"id": "000000118022", "images": ["AURORA/data/something/frames/201535/first.jpg", "AURORA/data/something/frames/201535/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a drawer"}]} +{"id": "000000118023", "images": ["AURORA/data/something/frames/69849/first.jpg", "AURORA/data/something/frames/69849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking teddy bear so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000118024", "images": ["AURORA/data/something/frames/72304/first.jpg", "AURORA/data/something/frames/72304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a card into a box"}]} +{"id": "000000118025", "images": ["AURORA/data/something/frames/188518/first.jpg", "AURORA/data/something/frames/188518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe up"}]} +{"id": "000000118026", "images": ["AURORA/data/something/frames/113332/first.jpg", "AURORA/data/something/frames/113332/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving horse and cow closer to each other"}]} +{"id": "000000118027", "images": ["AURORA/data/something/frames/147059/first.jpg", "AURORA/data/something/frames/147059/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper just a little bit"}]} +{"id": "000000118028", "images": ["AURORA/data/something/frames/155024/first.jpg", "AURORA/data/something/frames/155024/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pebble away from metal rod"}]} +{"id": "000000118029", "images": ["AURORA/data/something/frames/166273/first.jpg", "AURORA/data/something/frames/166273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cap into backpack"}]} +{"id": "000000118030", "images": ["AURORA/data/something/frames/195086/first.jpg", "AURORA/data/something/frames/195086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming sunset"}]} +{"id": "000000118031", "images": ["AURORA/data/something/frames/176821/first.jpg", "AURORA/data/something/frames/176821/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda out of can"}]} +{"id": "000000118032", "images": ["AURORA/data/something/frames/129367/first.jpg", "AURORA/data/something/frames/129367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting two coasters onto table"}]} +{"id": "000000118033", "images": ["AURORA/data/something/frames/143253/first.jpg", "AURORA/data/something/frames/143253/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a padlock"}]} +{"id": "000000118034", "images": ["AURORA/data/something/frames/178787/first.jpg", "AURORA/data/something/frames/178787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000118035", "images": ["AURORA/data/something/frames/212642/first.jpg", "AURORA/data/something/frames/212642/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hammer next to a child toy"}]} +{"id": "000000118036", "images": ["AURORA/data/something/frames/142963/first.jpg", "AURORA/data/something/frames/142963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a candle with a cover"}]} +{"id": "000000118037", "images": ["AURORA/data/something/frames/114255/first.jpg", "AURORA/data/something/frames/114255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plastic container with plastic container on it"}]} +{"id": "000000118038", "images": ["AURORA/data/something/frames/110453/first.jpg", "AURORA/data/something/frames/110453/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000118039", "images": ["AURORA/data/something/frames/118971/first.jpg", "AURORA/data/something/frames/118971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading old tree leaves onto small tree"}]} +{"id": "000000118040", "images": ["AURORA/data/something/frames/132707/first.jpg", "AURORA/data/something/frames/132707/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: toy car being deflected from another toy car"}]} +{"id": "000000118041", "images": ["AURORA/data/something/frames/9304/first.jpg", "AURORA/data/something/frames/9304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: toy colliding with toy and both come to a halt"}]} +{"id": "000000118042", "images": ["AURORA/data/something/frames/10747/first.jpg", "AURORA/data/something/frames/10747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing packet"}]} +{"id": "000000118043", "images": ["AURORA/data/something/frames/48836/first.jpg", "AURORA/data/something/frames/48836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting plush stitch onto mug"}]} +{"id": "000000118044", "images": ["AURORA/data/something/frames/21147/first.jpg", "AURORA/data/something/frames/21147/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen next to watch"}]} +{"id": "000000118045", "images": ["AURORA/data/something/frames/17062/first.jpg", "AURORA/data/something/frames/17062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a saucepan with a lid"}]} +{"id": "000000118046", "images": ["AURORA/data/something/frames/145084/first.jpg", "AURORA/data/something/frames/145084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle of water upright on the table"}]} +{"id": "000000118047", "images": ["AURORA/data/something/frames/65206/first.jpg", "AURORA/data/something/frames/65206/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118048", "images": ["AURORA/data/something/frames/185722/first.jpg", "AURORA/data/something/frames/185722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming beach"}]} +{"id": "000000118049", "images": ["AURORA/data/something/frames/58520/first.jpg", "AURORA/data/something/frames/58520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spectacle box from left to right"}]} +{"id": "000000118050", "images": ["AURORA/data/something/frames/65968/first.jpg", "AURORA/data/something/frames/65968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching wardrobe with your camera"}]} +{"id": "000000118051", "images": ["AURORA/data/something/frames/42650/first.jpg", "AURORA/data/something/frames/42650/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with a spoon"}]} +{"id": "000000118052", "images": ["AURORA/data/something/frames/135620/first.jpg", "AURORA/data/something/frames/135620/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water out of cup"}]} +{"id": "000000118053", "images": ["AURORA/data/something/frames/117888/first.jpg", "AURORA/data/something/frames/117888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting hair"}]} +{"id": "000000118054", "images": ["AURORA/data/something/frames/24299/first.jpg", "AURORA/data/something/frames/24299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a lighter with a piece of paper"}]} +{"id": "000000118055", "images": ["AURORA/data/something/frames/204259/first.jpg", "AURORA/data/something/frames/204259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red spoon away from blue spoon"}]} +{"id": "000000118056", "images": ["AURORA/data/something/frames/180556/first.jpg", "AURORA/data/something/frames/180556/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting blue colour bottle cap into spectacle box"}]} +{"id": "000000118057", "images": ["AURORA/data/something/frames/84296/first.jpg", "AURORA/data/something/frames/84296/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging iphone cord into electric socket"}]} +{"id": "000000118058", "images": ["AURORA/data/something/frames/42077/first.jpg", "AURORA/data/something/frames/42077/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile and diary away from each other"}]} +{"id": "000000118059", "images": ["AURORA/data/something/frames/219134/first.jpg", "AURORA/data/something/frames/219134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a deodorant up"}]} +{"id": "000000118060", "images": ["AURORA/data/something/frames/40319/first.jpg", "AURORA/data/something/frames/40319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone underneath cloth"}]} +{"id": "000000118061", "images": ["AURORA/data/something/frames/69566/first.jpg", "AURORA/data/something/frames/69566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into phone but pulling it right out as you remove your hand"}]} +{"id": "000000118062", "images": ["AURORA/data/something/frames/136722/first.jpg", "AURORA/data/something/frames/136722/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a plate with a towel"}]} +{"id": "000000118063", "images": ["AURORA/data/something/frames/135893/first.jpg", "AURORA/data/something/frames/135893/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a nail with a hammer"}]} +{"id": "000000118064", "images": ["AURORA/data/something/frames/124037/first.jpg", "AURORA/data/something/frames/124037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet"}]} +{"id": "000000118065", "images": ["AURORA/data/something/frames/68466/first.jpg", "AURORA/data/something/frames/68466/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping the squeeze over"}]} +{"id": "000000118066", "images": ["AURORA/data/something/frames/201017/first.jpg", "AURORA/data/something/frames/201017/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a cleansing pad with a paper"}]} +{"id": "000000118067", "images": ["AURORA/data/something/frames/196516/first.jpg", "AURORA/data/something/frames/196516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing muug, revealing coin behind"}]} +{"id": "000000118068", "images": ["AURORA/data/something/frames/64651/first.jpg", "AURORA/data/something/frames/64651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing water bottle onto another water bottle"}]} +{"id": "000000118069", "images": ["AURORA/data/something/frames/35530/first.jpg", "AURORA/data/something/frames/35530/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle up"}]} +{"id": "000000118070", "images": ["AURORA/data/something/frames/62866/first.jpg", "AURORA/data/something/frames/62866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching wardrobe with your camera"}]} +{"id": "000000118071", "images": ["AURORA/data/something/frames/29155/first.jpg", "AURORA/data/something/frames/29155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a deodorant upside down"}]} +{"id": "000000118072", "images": ["AURORA/data/something/frames/105526/first.jpg", "AURORA/data/something/frames/105526/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a drawer"}]} +{"id": "000000118073", "images": ["AURORA/data/something/frames/208112/first.jpg", "AURORA/data/something/frames/208112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a tape with scissors"}]} +{"id": "000000118074", "images": ["AURORA/data/something/frames/12891/first.jpg", "AURORA/data/something/frames/12891/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving scotch tape down"}]} +{"id": "000000118075", "images": ["AURORA/data/something/frames/13096/first.jpg", "AURORA/data/something/frames/13096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shot glass from left to right"}]} +{"id": "000000118076", "images": ["AURORA/data/something/frames/195109/first.jpg", "AURORA/data/something/frames/195109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toy in front of spectical box"}]} +{"id": "000000118077", "images": ["AURORA/data/something/frames/68373/first.jpg", "AURORA/data/something/frames/68373/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pin upright on the table, so it falls on its side"}]} +{"id": "000000118078", "images": ["AURORA/data/something/frames/18320/first.jpg", "AURORA/data/something/frames/18320/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching clasp to bar"}]} +{"id": "000000118079", "images": ["AURORA/data/something/frames/104854/first.jpg", "AURORA/data/something/frames/104854/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping apple into basket"}]} +{"id": "000000118080", "images": ["AURORA/data/something/frames/57009/first.jpg", "AURORA/data/something/frames/57009/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking taking adapter"}]} +{"id": "000000118081", "images": ["AURORA/data/something/frames/171004/first.jpg", "AURORA/data/something/frames/171004/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ruler next to mug"}]} +{"id": "000000118082", "images": ["AURORA/data/something/frames/114475/first.jpg", "AURORA/data/something/frames/114475/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping paint bottle into cup"}]} +{"id": "000000118083", "images": ["AURORA/data/something/frames/203731/first.jpg", "AURORA/data/something/frames/203731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118084", "images": ["AURORA/data/something/frames/77785/first.jpg", "AURORA/data/something/frames/77785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen in front of pencil case"}]} +{"id": "000000118085", "images": ["AURORA/data/something/frames/152051/first.jpg", "AURORA/data/something/frames/152051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning green water bottle upside down"}]} +{"id": "000000118086", "images": ["AURORA/data/something/frames/118298/first.jpg", "AURORA/data/something/frames/118298/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle next to bottles"}]} +{"id": "000000118087", "images": ["AURORA/data/something/frames/65824/first.jpg", "AURORA/data/something/frames/65824/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a plate"}]} +{"id": "000000118088", "images": ["AURORA/data/something/frames/189640/first.jpg", "AURORA/data/something/frames/189640/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe up"}]} +{"id": "000000118089", "images": ["AURORA/data/something/frames/28289/first.jpg", "AURORA/data/something/frames/28289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a crayon out of a pot"}]} +{"id": "000000118090", "images": ["AURORA/data/something/frames/175432/first.jpg", "AURORA/data/something/frames/175432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000118091", "images": ["AURORA/data/something/frames/95354/first.jpg", "AURORA/data/something/frames/95354/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tablet box upright on the table"}]} +{"id": "000000118092", "images": ["AURORA/data/something/frames/126781/first.jpg", "AURORA/data/something/frames/126781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen, keychain and pouch on the table"}]} +{"id": "000000118093", "images": ["AURORA/data/something/frames/157197/first.jpg", "AURORA/data/something/frames/157197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging extention into socket"}]} +{"id": "000000118094", "images": ["AURORA/data/something/frames/29703/first.jpg", "AURORA/data/something/frames/29703/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000118095", "images": ["AURORA/data/something/frames/158134/first.jpg", "AURORA/data/something/frames/158134/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mineral water"}]} +{"id": "000000118096", "images": ["AURORA/data/something/frames/210344/first.jpg", "AURORA/data/something/frames/210344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into the wall"}]} +{"id": "000000118097", "images": ["AURORA/data/something/frames/187254/first.jpg", "AURORA/data/something/frames/187254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118098", "images": ["AURORA/data/something/frames/99414/first.jpg", "AURORA/data/something/frames/99414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box so that it almost falls off but doesn't"}]} +{"id": "000000118099", "images": ["AURORA/data/something/frames/104492/first.jpg", "AURORA/data/something/frames/104492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering clock with cloth"}]} +{"id": "000000118100", "images": ["AURORA/data/something/frames/37528/first.jpg", "AURORA/data/something/frames/37528/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling black hair tie from left to right"}]} +{"id": "000000118101", "images": ["AURORA/data/something/frames/171614/first.jpg", "AURORA/data/something/frames/171614/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing drawer"}]} +{"id": "000000118102", "images": ["AURORA/data/something/frames/127761/first.jpg", "AURORA/data/something/frames/127761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toast into toaster"}]} +{"id": "000000118103", "images": ["AURORA/data/something/frames/102637/first.jpg", "AURORA/data/something/frames/102637/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cofee cup onto a backpack"}]} +{"id": "000000118104", "images": ["AURORA/data/something/frames/169770/first.jpg", "AURORA/data/something/frames/169770/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering flashlight with paper bowl"}]} +{"id": "000000118105", "images": ["AURORA/data/something/frames/83315/first.jpg", "AURORA/data/something/frames/83315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000118106", "images": ["AURORA/data/something/frames/150634/first.jpg", "AURORA/data/something/frames/150634/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking vegetable ice cream scoop"}]} +{"id": "000000118107", "images": ["AURORA/data/something/frames/210861/first.jpg", "AURORA/data/something/frames/210861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing something into something"}]} +{"id": "000000118108", "images": ["AURORA/data/something/frames/39257/first.jpg", "AURORA/data/something/frames/39257/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sunglasses off of table"}]} +{"id": "000000118109", "images": ["AURORA/data/something/frames/50546/first.jpg", "AURORA/data/something/frames/50546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug"}]} +{"id": "000000118110", "images": ["AURORA/data/something/frames/168423/first.jpg", "AURORA/data/something/frames/168423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000118111", "images": ["AURORA/data/something/frames/130921/first.jpg", "AURORA/data/something/frames/130921/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pen"}]} +{"id": "000000118112", "images": ["AURORA/data/something/frames/148827/first.jpg", "AURORA/data/something/frames/148827/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cup in front of text books"}]} +{"id": "000000118113", "images": ["AURORA/data/something/frames/22486/first.jpg", "AURORA/data/something/frames/22486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 pennies"}]} +{"id": "000000118114", "images": ["AURORA/data/something/frames/14393/first.jpg", "AURORA/data/something/frames/14393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors on a surface"}]} +{"id": "000000118115", "images": ["AURORA/data/something/frames/193856/first.jpg", "AURORA/data/something/frames/193856/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking cup and saucer from table"}]} +{"id": "000000118116", "images": ["AURORA/data/something/frames/88019/first.jpg", "AURORA/data/something/frames/88019/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pancile with sheed of paper"}]} +{"id": "000000118117", "images": ["AURORA/data/something/frames/96829/first.jpg", "AURORA/data/something/frames/96829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing phone into case"}]} +{"id": "000000118118", "images": ["AURORA/data/something/frames/76081/first.jpg", "AURORA/data/something/frames/76081/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking ball out of bowl"}]} +{"id": "000000118119", "images": ["AURORA/data/something/frames/124013/first.jpg", "AURORA/data/something/frames/124013/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass closer to bottle"}]} +{"id": "000000118120", "images": ["AURORA/data/something/frames/205598/first.jpg", "AURORA/data/something/frames/205598/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cap"}]} +{"id": "000000118121", "images": ["AURORA/data/something/frames/65069/first.jpg", "AURORA/data/something/frames/65069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing paper into bag"}]} +{"id": "000000118122", "images": ["AURORA/data/something/frames/191875/first.jpg", "AURORA/data/something/frames/191875/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a card so that it deforms"}]} +{"id": "000000118123", "images": ["AURORA/data/something/frames/63808/first.jpg", "AURORA/data/something/frames/63808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pen"}]} +{"id": "000000118124", "images": ["AURORA/data/something/frames/108199/first.jpg", "AURORA/data/something/frames/108199/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone on a surface"}]} +{"id": "000000118125", "images": ["AURORA/data/something/frames/194486/first.jpg", "AURORA/data/something/frames/194486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000118126", "images": ["AURORA/data/something/frames/27217/first.jpg", "AURORA/data/something/frames/27217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a bottle with scissors"}]} +{"id": "000000118127", "images": ["AURORA/data/something/frames/111193/first.jpg", "AURORA/data/something/frames/111193/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coaster underneath cloth"}]} +{"id": "000000118128", "images": ["AURORA/data/something/frames/120989/first.jpg", "AURORA/data/something/frames/120989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lime and lime closer to each other"}]} +{"id": "000000118129", "images": ["AURORA/data/something/frames/115880/first.jpg", "AURORA/data/something/frames/115880/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering eraser"}]} +{"id": "000000118130", "images": ["AURORA/data/something/frames/185664/first.jpg", "AURORA/data/something/frames/185664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a kiwi being deflected from a litter bin"}]} +{"id": "000000118131", "images": ["AURORA/data/something/frames/190265/first.jpg", "AURORA/data/something/frames/190265/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a card with a box"}]} +{"id": "000000118132", "images": ["AURORA/data/something/frames/12682/first.jpg", "AURORA/data/something/frames/12682/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pomegranate so that it almost falls off but doesn't"}]} +{"id": "000000118133", "images": ["AURORA/data/something/frames/35391/first.jpg", "AURORA/data/something/frames/35391/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a beer can in front of a cup"}]} +{"id": "000000118134", "images": ["AURORA/data/something/frames/165539/first.jpg", "AURORA/data/something/frames/165539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with plastic container on it but not enough for it to slide down"}]} +{"id": "000000118135", "images": ["AURORA/data/something/frames/111954/first.jpg", "AURORA/data/something/frames/111954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a spoon so that it deforms"}]} +{"id": "000000118136", "images": ["AURORA/data/something/frames/168084/first.jpg", "AURORA/data/something/frames/168084/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking headphones out of bag"}]} +{"id": "000000118137", "images": ["AURORA/data/something/frames/166205/first.jpg", "AURORA/data/something/frames/166205/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling red watch case from right to left"}]} +{"id": "000000118138", "images": ["AURORA/data/something/frames/29050/first.jpg", "AURORA/data/something/frames/29050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a colored pencil"}]} +{"id": "000000118139", "images": ["AURORA/data/something/frames/17810/first.jpg", "AURORA/data/something/frames/17810/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing shoe with clothes peg"}]} +{"id": "000000118140", "images": ["AURORA/data/something/frames/18610/first.jpg", "AURORA/data/something/frames/18610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen onto holder so it falls down"}]} +{"id": "000000118141", "images": ["AURORA/data/something/frames/103589/first.jpg", "AURORA/data/something/frames/103589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking lipstick so that it falls over"}]} +{"id": "000000118142", "images": ["AURORA/data/something/frames/183915/first.jpg", "AURORA/data/something/frames/183915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen onto table"}]} +{"id": "000000118143", "images": ["AURORA/data/something/frames/23486/first.jpg", "AURORA/data/something/frames/23486/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a mug"}]} +{"id": "000000118144", "images": ["AURORA/data/something/frames/197377/first.jpg", "AURORA/data/something/frames/197377/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a bottle upside down"}]} +{"id": "000000118145", "images": ["AURORA/data/something/frames/220755/first.jpg", "AURORA/data/something/frames/220755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a box away from each other"}]} +{"id": "000000118146", "images": ["AURORA/data/something/frames/42290/first.jpg", "AURORA/data/something/frames/42290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lighter behind box"}]} +{"id": "000000118147", "images": ["AURORA/data/something/frames/146104/first.jpg", "AURORA/data/something/frames/146104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin next to mug"}]} +{"id": "000000118148", "images": ["AURORA/data/something/frames/175393/first.jpg", "AURORA/data/something/frames/175393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking stuffed cat so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000118149", "images": ["AURORA/data/something/frames/21781/first.jpg", "AURORA/data/something/frames/21781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking chair case up"}]} +{"id": "000000118150", "images": ["AURORA/data/something/frames/56489/first.jpg", "AURORA/data/something/frames/56489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water behind door"}]} +{"id": "000000118151", "images": ["AURORA/data/something/frames/55421/first.jpg", "AURORA/data/something/frames/55421/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing a pot"}]} +{"id": "000000118152", "images": ["AURORA/data/something/frames/101471/first.jpg", "AURORA/data/something/frames/101471/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging computer cord into computer"}]} +{"id": "000000118153", "images": ["AURORA/data/something/frames/162318/first.jpg", "AURORA/data/something/frames/162318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering jar with lid"}]} +{"id": "000000118154", "images": ["AURORA/data/something/frames/182698/first.jpg", "AURORA/data/something/frames/182698/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting knee with paintbrush"}]} +{"id": "000000118155", "images": ["AURORA/data/something/frames/74252/first.jpg", "AURORA/data/something/frames/74252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing wrapper into yogurt cup"}]} +{"id": "000000118156", "images": ["AURORA/data/something/frames/79857/first.jpg", "AURORA/data/something/frames/79857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cereal on the table on its side, not upright"}]} +{"id": "000000118157", "images": ["AURORA/data/something/frames/201866/first.jpg", "AURORA/data/something/frames/201866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg onto a container"}]} +{"id": "000000118158", "images": ["AURORA/data/something/frames/15848/first.jpg", "AURORA/data/something/frames/15848/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing jar so that it almost falls off but doesn't"}]} +{"id": "000000118159", "images": ["AURORA/data/something/frames/107747/first.jpg", "AURORA/data/something/frames/107747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching microphone to stand"}]} +{"id": "000000118160", "images": ["AURORA/data/something/frames/8318/first.jpg", "AURORA/data/something/frames/8318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a marker on a surface"}]} +{"id": "000000118161", "images": ["AURORA/data/something/frames/54318/first.jpg", "AURORA/data/something/frames/54318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending swab so that it deforms"}]} +{"id": "000000118162", "images": ["AURORA/data/something/frames/136539/first.jpg", "AURORA/data/something/frames/136539/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming fire extinguisher"}]} +{"id": "000000118163", "images": ["AURORA/data/something/frames/4963/first.jpg", "AURORA/data/something/frames/4963/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a hand with a pen on it"}]} +{"id": "000000118164", "images": ["AURORA/data/something/frames/24550/first.jpg", "AURORA/data/something/frames/24550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with spoon"}]} +{"id": "000000118165", "images": ["AURORA/data/something/frames/201800/first.jpg", "AURORA/data/something/frames/201800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning tablet box upside down"}]} +{"id": "000000118166", "images": ["AURORA/data/something/frames/204053/first.jpg", "AURORA/data/something/frames/204053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping ball in front of car"}]} +{"id": "000000118167", "images": ["AURORA/data/something/frames/55788/first.jpg", "AURORA/data/something/frames/55788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring gems into small bottle until it overflows"}]} +{"id": "000000118168", "images": ["AURORA/data/something/frames/159537/first.jpg", "AURORA/data/something/frames/159537/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a spray bottle behind the packet"}]} +{"id": "000000118169", "images": ["AURORA/data/something/frames/42966/first.jpg", "AURORA/data/something/frames/42966/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hanger being deflected from moving car"}]} +{"id": "000000118170", "images": ["AURORA/data/something/frames/128952/first.jpg", "AURORA/data/something/frames/128952/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a can with a napkin"}]} +{"id": "000000118171", "images": ["AURORA/data/something/frames/32201/first.jpg", "AURORA/data/something/frames/32201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling glasses from left to right"}]} +{"id": "000000118172", "images": ["AURORA/data/something/frames/180070/first.jpg", "AURORA/data/something/frames/180070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hotpot from right to left"}]} +{"id": "000000118173", "images": ["AURORA/data/something/frames/103229/first.jpg", "AURORA/data/something/frames/103229/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and spoon away from each other"}]} +{"id": "000000118174", "images": ["AURORA/data/something/frames/68376/first.jpg", "AURORA/data/something/frames/68376/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000118175", "images": ["AURORA/data/something/frames/215114/first.jpg", "AURORA/data/something/frames/215114/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toffee container towards the camera"}]} +{"id": "000000118176", "images": ["AURORA/data/something/frames/169002/first.jpg", "AURORA/data/something/frames/169002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending comb so that it deforms"}]} +{"id": "000000118177", "images": ["AURORA/data/something/frames/136745/first.jpg", "AURORA/data/something/frames/136745/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cell phone with notebook"}]} +{"id": "000000118178", "images": ["AURORA/data/something/frames/126058/first.jpg", "AURORA/data/something/frames/126058/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a die on it until it starts sliding down"}]} +{"id": "000000118179", "images": ["AURORA/data/something/frames/110120/first.jpg", "AURORA/data/something/frames/110120/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle upright on the table"}]} +{"id": "000000118180", "images": ["AURORA/data/something/frames/33495/first.jpg", "AURORA/data/something/frames/33495/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging stopper into drain but pulling it right out as you remove your hand"}]} +{"id": "000000118181", "images": ["AURORA/data/something/frames/127667/first.jpg", "AURORA/data/something/frames/127667/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a receipt just a little bit"}]} +{"id": "000000118182", "images": ["AURORA/data/something/frames/72811/first.jpg", "AURORA/data/something/frames/72811/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving button up"}]} +{"id": "000000118183", "images": ["AURORA/data/something/frames/27358/first.jpg", "AURORA/data/something/frames/27358/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing a towel into a hat"}]} +{"id": "000000118184", "images": ["AURORA/data/something/frames/196426/first.jpg", "AURORA/data/something/frames/196426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of wood blocks without the stack collapsing"}]} +{"id": "000000118185", "images": ["AURORA/data/something/frames/213105/first.jpg", "AURORA/data/something/frames/213105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering cellphone"}]} +{"id": "000000118186", "images": ["AURORA/data/something/frames/66122/first.jpg", "AURORA/data/something/frames/66122/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing an envelope into two pieces"}]} +{"id": "000000118187", "images": ["AURORA/data/something/frames/167007/first.jpg", "AURORA/data/something/frames/167007/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking book up"}]} +{"id": "000000118188", "images": ["AURORA/data/something/frames/85935/first.jpg", "AURORA/data/something/frames/85935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cufflinks behind a padlock"}]} +{"id": "000000118189", "images": ["AURORA/data/something/frames/146051/first.jpg", "AURORA/data/something/frames/146051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet behind mouse"}]} +{"id": "000000118190", "images": ["AURORA/data/something/frames/107289/first.jpg", "AURORA/data/something/frames/107289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into cup"}]} +{"id": "000000118191", "images": ["AURORA/data/something/frames/213727/first.jpg", "AURORA/data/something/frames/213727/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking smart phone out of handbag"}]} +{"id": "000000118192", "images": ["AURORA/data/something/frames/8800/first.jpg", "AURORA/data/something/frames/8800/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming poster"}]} +{"id": "000000118193", "images": ["AURORA/data/something/frames/101989/first.jpg", "AURORA/data/something/frames/101989/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking coin out of mug"}]} +{"id": "000000118194", "images": ["AURORA/data/something/frames/187743/first.jpg", "AURORA/data/something/frames/187743/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of something so that it gets stretched"}]} +{"id": "000000118195", "images": ["AURORA/data/something/frames/15112/first.jpg", "AURORA/data/something/frames/15112/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a cup so that it almost falls off but doesn't"}]} +{"id": "000000118196", "images": ["AURORA/data/something/frames/20051/first.jpg", "AURORA/data/something/frames/20051/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming iron"}]} +{"id": "000000118197", "images": ["AURORA/data/something/frames/123467/first.jpg", "AURORA/data/something/frames/123467/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting car key on a surface"}]} +{"id": "000000118198", "images": ["AURORA/data/something/frames/117874/first.jpg", "AURORA/data/something/frames/117874/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a bottle and a water container closer to each other"}]} +{"id": "000000118199", "images": ["AURORA/data/something/frames/91295/first.jpg", "AURORA/data/something/frames/91295/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet in front of mouse"}]} +{"id": "000000118200", "images": ["AURORA/data/something/frames/129123/first.jpg", "AURORA/data/something/frames/129123/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding napkin"}]} +{"id": "000000118201", "images": ["AURORA/data/something/frames/20609/first.jpg", "AURORA/data/something/frames/20609/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coaster and remote on the table"}]} +{"id": "000000118202", "images": ["AURORA/data/something/frames/139085/first.jpg", "AURORA/data/something/frames/139085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hair gum from left to right"}]} +{"id": "000000118203", "images": ["AURORA/data/something/frames/26381/first.jpg", "AURORA/data/something/frames/26381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a hole into a piece of paper"}]} +{"id": "000000118204", "images": ["AURORA/data/something/frames/166275/first.jpg", "AURORA/data/something/frames/166275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a water can colliding with another water can and both are being deflected"}]} +{"id": "000000118205", "images": ["AURORA/data/something/frames/38302/first.jpg", "AURORA/data/something/frames/38302/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a charger into a socket"}]} +{"id": "000000118206", "images": ["AURORA/data/something/frames/10873/first.jpg", "AURORA/data/something/frames/10873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass out of drawer"}]} +{"id": "000000118207", "images": ["AURORA/data/something/frames/75268/first.jpg", "AURORA/data/something/frames/75268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a water bottle on the table on its side, not upright"}]} +{"id": "000000118208", "images": ["AURORA/data/something/frames/104999/first.jpg", "AURORA/data/something/frames/104999/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling paper from behind of paper"}]} +{"id": "000000118209", "images": ["AURORA/data/something/frames/192155/first.jpg", "AURORA/data/something/frames/192155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering water bottle with cap"}]} +{"id": "000000118210", "images": ["AURORA/data/something/frames/197702/first.jpg", "AURORA/data/something/frames/197702/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cow next to box"}]} +{"id": "000000118211", "images": ["AURORA/data/something/frames/94224/first.jpg", "AURORA/data/something/frames/94224/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000118212", "images": ["AURORA/data/something/frames/103119/first.jpg", "AURORA/data/something/frames/103119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a calculator and paper weight on the table"}]} +{"id": "000000118213", "images": ["AURORA/data/something/frames/192546/first.jpg", "AURORA/data/something/frames/192546/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pencil out of pencil holder"}]} +{"id": "000000118214", "images": ["AURORA/data/something/frames/32233/first.jpg", "AURORA/data/something/frames/32233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming toothpaste tube"}]} +{"id": "000000118215", "images": ["AURORA/data/something/frames/175533/first.jpg", "AURORA/data/something/frames/175533/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming laptop"}]} +{"id": "000000118216", "images": ["AURORA/data/something/frames/55164/first.jpg", "AURORA/data/something/frames/55164/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a pen without letting it drop down"}]} +{"id": "000000118217", "images": ["AURORA/data/something/frames/123498/first.jpg", "AURORA/data/something/frames/123498/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pink hat in front of bowl"}]} +{"id": "000000118218", "images": ["AURORA/data/something/frames/167192/first.jpg", "AURORA/data/something/frames/167192/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering handy"}]} +{"id": "000000118219", "images": ["AURORA/data/something/frames/40166/first.jpg", "AURORA/data/something/frames/40166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting apple into bowl"}]} +{"id": "000000118220", "images": ["AURORA/data/something/frames/194342/first.jpg", "AURORA/data/something/frames/194342/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lighter on a surface"}]} +{"id": "000000118221", "images": ["AURORA/data/something/frames/9633/first.jpg", "AURORA/data/something/frames/9633/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping eraser in front of cup"}]} +{"id": "000000118222", "images": ["AURORA/data/something/frames/72135/first.jpg", "AURORA/data/something/frames/72135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000118223", "images": ["AURORA/data/something/frames/54075/first.jpg", "AURORA/data/something/frames/54075/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glass"}]} +{"id": "000000118224", "images": ["AURORA/data/something/frames/218168/first.jpg", "AURORA/data/something/frames/218168/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering onion"}]} +{"id": "000000118225", "images": ["AURORA/data/something/frames/12696/first.jpg", "AURORA/data/something/frames/12696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118226", "images": ["AURORA/data/something/frames/4521/first.jpg", "AURORA/data/something/frames/4521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling cards up"}]} +{"id": "000000118227", "images": ["AURORA/data/something/frames/165610/first.jpg", "AURORA/data/something/frames/165610/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a jar of peanutbutter upside down"}]} +{"id": "000000118228", "images": ["AURORA/data/something/frames/123768/first.jpg", "AURORA/data/something/frames/123768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: a pencil colliding with a bottle and both come to a halt"}]} +{"id": "000000118229", "images": ["AURORA/data/something/frames/187347/first.jpg", "AURORA/data/something/frames/187347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming plant"}]} +{"id": "000000118230", "images": ["AURORA/data/something/frames/50341/first.jpg", "AURORA/data/something/frames/50341/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping air freshener over"}]} +{"id": "000000118231", "images": ["AURORA/data/something/frames/19292/first.jpg", "AURORA/data/something/frames/19292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of boxes without the stack collapsing"}]} +{"id": "000000118232", "images": ["AURORA/data/something/frames/58713/first.jpg", "AURORA/data/something/frames/58713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying nail polish bottle on the table on its side, not upright"}]} +{"id": "000000118233", "images": ["AURORA/data/something/frames/61566/first.jpg", "AURORA/data/something/frames/61566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something up"}]} +{"id": "000000118234", "images": ["AURORA/data/something/frames/22712/first.jpg", "AURORA/data/something/frames/22712/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into power strip but pulling it right out as you remove your hand"}]} +{"id": "000000118235", "images": ["AURORA/data/something/frames/213513/first.jpg", "AURORA/data/something/frames/213513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering pen with paper"}]} +{"id": "000000118236", "images": ["AURORA/data/something/frames/42866/first.jpg", "AURORA/data/something/frames/42866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000118237", "images": ["AURORA/data/something/frames/38794/first.jpg", "AURORA/data/something/frames/38794/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin onto a card"}]} +{"id": "000000118238", "images": ["AURORA/data/something/frames/75781/first.jpg", "AURORA/data/something/frames/75781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a football up completely without letting it drop down"}]} +{"id": "000000118239", "images": ["AURORA/data/something/frames/111254/first.jpg", "AURORA/data/something/frames/111254/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving screw down"}]} +{"id": "000000118240", "images": ["AURORA/data/something/frames/84984/first.jpg", "AURORA/data/something/frames/84984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something away from something"}]} +{"id": "000000118241", "images": ["AURORA/data/something/frames/31477/first.jpg", "AURORA/data/something/frames/31477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming post box"}]} +{"id": "000000118242", "images": ["AURORA/data/something/frames/217536/first.jpg", "AURORA/data/something/frames/217536/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping soap off of counter"}]} +{"id": "000000118243", "images": ["AURORA/data/something/frames/61693/first.jpg", "AURORA/data/something/frames/61693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping bottle in front of leptop"}]} +{"id": "000000118244", "images": ["AURORA/data/something/frames/201468/first.jpg", "AURORA/data/something/frames/201468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming radiator"}]} +{"id": "000000118245", "images": ["AURORA/data/something/frames/114233/first.jpg", "AURORA/data/something/frames/114233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118246", "images": ["AURORA/data/something/frames/124829/first.jpg", "AURORA/data/something/frames/124829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchstick behind a padlock"}]} +{"id": "000000118247", "images": ["AURORA/data/something/frames/108665/first.jpg", "AURORA/data/something/frames/108665/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting piggy bank onto notebook"}]} +{"id": "000000118248", "images": ["AURORA/data/something/frames/219318/first.jpg", "AURORA/data/something/frames/219318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper into two pieces"}]} +{"id": "000000118249", "images": ["AURORA/data/something/frames/139331/first.jpg", "AURORA/data/something/frames/139331/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin into cup"}]} +{"id": "000000118250", "images": ["AURORA/data/something/frames/5571/first.jpg", "AURORA/data/something/frames/5571/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a key behind a remote"}]} +{"id": "000000118251", "images": ["AURORA/data/something/frames/50413/first.jpg", "AURORA/data/something/frames/50413/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into cord but pulling it right out as you remove your hand"}]} +{"id": "000000118252", "images": ["AURORA/data/something/frames/193713/first.jpg", "AURORA/data/something/frames/193713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118253", "images": ["AURORA/data/something/frames/188485/first.jpg", "AURORA/data/something/frames/188485/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote up"}]} +{"id": "000000118254", "images": ["AURORA/data/something/frames/130735/first.jpg", "AURORA/data/something/frames/130735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape into box"}]} +{"id": "000000118255", "images": ["AURORA/data/something/frames/55368/first.jpg", "AURORA/data/something/frames/55368/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering can with cloth"}]} +{"id": "000000118256", "images": ["AURORA/data/something/frames/127452/first.jpg", "AURORA/data/something/frames/127452/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of a book without letting it drop down"}]} +{"id": "000000118257", "images": ["AURORA/data/something/frames/7255/first.jpg", "AURORA/data/something/frames/7255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000118258", "images": ["AURORA/data/something/frames/82271/first.jpg", "AURORA/data/something/frames/82271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming squeezable strawberry jam"}]} +{"id": "000000118259", "images": ["AURORA/data/something/frames/59605/first.jpg", "AURORA/data/something/frames/59605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering spring"}]} +{"id": "000000118260", "images": ["AURORA/data/something/frames/145719/first.jpg", "AURORA/data/something/frames/145719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000118261", "images": ["AURORA/data/something/frames/122885/first.jpg", "AURORA/data/something/frames/122885/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling books up"}]} +{"id": "000000118262", "images": ["AURORA/data/something/frames/54069/first.jpg", "AURORA/data/something/frames/54069/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming jackfruits"}]} +{"id": "000000118263", "images": ["AURORA/data/something/frames/148151/first.jpg", "AURORA/data/something/frames/148151/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118264", "images": ["AURORA/data/something/frames/32776/first.jpg", "AURORA/data/something/frames/32776/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book underneath notebook"}]} +{"id": "000000118265", "images": ["AURORA/data/something/frames/54506/first.jpg", "AURORA/data/something/frames/54506/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000118266", "images": ["AURORA/data/something/frames/162700/first.jpg", "AURORA/data/something/frames/162700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping dirt up with dustpan"}]} +{"id": "000000118267", "images": ["AURORA/data/something/frames/54445/first.jpg", "AURORA/data/something/frames/54445/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning computer mouse upside down"}]} +{"id": "000000118268", "images": ["AURORA/data/something/frames/21603/first.jpg", "AURORA/data/something/frames/21603/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting jar upright on the table"}]} +{"id": "000000118269", "images": ["AURORA/data/something/frames/11508/first.jpg", "AURORA/data/something/frames/11508/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering bottle with plastic bag"}]} +{"id": "000000118270", "images": ["AURORA/data/something/frames/182217/first.jpg", "AURORA/data/something/frames/182217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pillow with a spoon"}]} +{"id": "000000118271", "images": ["AURORA/data/something/frames/13996/first.jpg", "AURORA/data/something/frames/13996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys next to mug"}]} +{"id": "000000118272", "images": ["AURORA/data/something/frames/180326/first.jpg", "AURORA/data/something/frames/180326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of tank"}]} +{"id": "000000118273", "images": ["AURORA/data/something/frames/83878/first.jpg", "AURORA/data/something/frames/83878/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from water bottle with your camera"}]} +{"id": "000000118274", "images": ["AURORA/data/something/frames/78710/first.jpg", "AURORA/data/something/frames/78710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shirt into bag"}]} +{"id": "000000118275", "images": ["AURORA/data/something/frames/138149/first.jpg", "AURORA/data/something/frames/138149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box"}]} +{"id": "000000118276", "images": ["AURORA/data/something/frames/192829/first.jpg", "AURORA/data/something/frames/192829/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending cotton swab so that it deforms"}]} +{"id": "000000118277", "images": ["AURORA/data/something/frames/31701/first.jpg", "AURORA/data/something/frames/31701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a toy car from left to right"}]} +{"id": "000000118278", "images": ["AURORA/data/something/frames/33946/first.jpg", "AURORA/data/something/frames/33946/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling phone from behind of camera"}]} +{"id": "000000118279", "images": ["AURORA/data/something/frames/23867/first.jpg", "AURORA/data/something/frames/23867/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning candle upside down"}]} +{"id": "000000118280", "images": ["AURORA/data/something/frames/108248/first.jpg", "AURORA/data/something/frames/108248/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 3 screw drivers onto brown note"}]} +{"id": "000000118281", "images": ["AURORA/data/something/frames/107551/first.jpg", "AURORA/data/something/frames/107551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a book so that it falls over"}]} +{"id": "000000118282", "images": ["AURORA/data/something/frames/34837/first.jpg", "AURORA/data/something/frames/34837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping shampoo onto floor"}]} +{"id": "000000118283", "images": ["AURORA/data/something/frames/65116/first.jpg", "AURORA/data/something/frames/65116/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting laptop with notebook"}]} +{"id": "000000118284", "images": ["AURORA/data/something/frames/209951/first.jpg", "AURORA/data/something/frames/209951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: box colliding with box and both come to a halt"}]} +{"id": "000000118285", "images": ["AURORA/data/something/frames/29092/first.jpg", "AURORA/data/something/frames/29092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup with spoon over, so spoon falls out"}]} +{"id": "000000118286", "images": ["AURORA/data/something/frames/83762/first.jpg", "AURORA/data/something/frames/83762/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bowl"}]} +{"id": "000000118287", "images": ["AURORA/data/something/frames/49072/first.jpg", "AURORA/data/something/frames/49072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a plate with cutlery on it"}]} +{"id": "000000118288", "images": ["AURORA/data/something/frames/134048/first.jpg", "AURORA/data/something/frames/134048/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing pens into pouch"}]} +{"id": "000000118289", "images": ["AURORA/data/something/frames/181524/first.jpg", "AURORA/data/something/frames/181524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and flower closer to each other"}]} +{"id": "000000118290", "images": ["AURORA/data/something/frames/188126/first.jpg", "AURORA/data/something/frames/188126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing hot case"}]} +{"id": "000000118291", "images": ["AURORA/data/something/frames/152050/first.jpg", "AURORA/data/something/frames/152050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking clips out of a container"}]} +{"id": "000000118292", "images": ["AURORA/data/something/frames/47566/first.jpg", "AURORA/data/something/frames/47566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox behind a cup"}]} +{"id": "000000118293", "images": ["AURORA/data/something/frames/208855/first.jpg", "AURORA/data/something/frames/208855/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting tissue"}]} +{"id": "000000118294", "images": ["AURORA/data/something/frames/3159/first.jpg", "AURORA/data/something/frames/3159/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000118295", "images": ["AURORA/data/something/frames/1255/first.jpg", "AURORA/data/something/frames/1255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug head into an extension lead but pulling it right out as you remove your hand"}]} +{"id": "000000118296", "images": ["AURORA/data/something/frames/141073/first.jpg", "AURORA/data/something/frames/141073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending coat hanger so that it deforms"}]} +{"id": "000000118297", "images": ["AURORA/data/something/frames/7113/first.jpg", "AURORA/data/something/frames/7113/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a ball and a glass figure away from each other"}]} +{"id": "000000118298", "images": ["AURORA/data/something/frames/187696/first.jpg", "AURORA/data/something/frames/187696/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bottle with other bottles"}]} +{"id": "000000118299", "images": ["AURORA/data/something/frames/101044/first.jpg", "AURORA/data/something/frames/101044/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming a dream catcher"}]} +{"id": "000000118300", "images": ["AURORA/data/something/frames/205240/first.jpg", "AURORA/data/something/frames/205240/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling coffee onto a dinner plate"}]} +{"id": "000000118301", "images": ["AURORA/data/something/frames/27779/first.jpg", "AURORA/data/something/frames/27779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing jacket into handbag"}]} +{"id": "000000118302", "images": ["AURORA/data/something/frames/42787/first.jpg", "AURORA/data/something/frames/42787/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting candy bar upright on the table, so it falls on its side"}]} +{"id": "000000118303", "images": ["AURORA/data/something/frames/112659/first.jpg", "AURORA/data/something/frames/112659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying bottle on the table on its side, not upright"}]} +{"id": "000000118304", "images": ["AURORA/data/something/frames/99268/first.jpg", "AURORA/data/something/frames/99268/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging allout into plug but pulling it right out as you remove your hand"}]} +{"id": "000000118305", "images": ["AURORA/data/something/frames/185040/first.jpg", "AURORA/data/something/frames/185040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing piece of bread into two pieces"}]} +{"id": "000000118306", "images": ["AURORA/data/something/frames/25491/first.jpg", "AURORA/data/something/frames/25491/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering torch lighter with towel"}]} +{"id": "000000118307", "images": ["AURORA/data/something/frames/40681/first.jpg", "AURORA/data/something/frames/40681/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping something with something in it over, so something in it falls out"}]} +{"id": "000000118308", "images": ["AURORA/data/something/frames/30014/first.jpg", "AURORA/data/something/frames/30014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) leaves of a plant"}]} +{"id": "000000118309", "images": ["AURORA/data/something/frames/57631/first.jpg", "AURORA/data/something/frames/57631/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118310", "images": ["AURORA/data/something/frames/22699/first.jpg", "AURORA/data/something/frames/22699/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting vase on a surface"}]} +{"id": "000000118311", "images": ["AURORA/data/something/frames/84851/first.jpg", "AURORA/data/something/frames/84851/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding t-shirt"}]} +{"id": "000000118312", "images": ["AURORA/data/something/frames/84109/first.jpg", "AURORA/data/something/frames/84109/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a bottle with a box on it"}]} +{"id": "000000118313", "images": ["AURORA/data/something/frames/160082/first.jpg", "AURORA/data/something/frames/160082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a plastic bottle on the edge of a stool so it is not supported and falls down"}]} +{"id": "000000118314", "images": ["AURORA/data/something/frames/181873/first.jpg", "AURORA/data/something/frames/181873/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a cup with a stapler"}]} +{"id": "000000118315", "images": ["AURORA/data/something/frames/59866/first.jpg", "AURORA/data/something/frames/59866/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a disc out of a paper sleeve"}]} +{"id": "000000118316", "images": ["AURORA/data/something/frames/144407/first.jpg", "AURORA/data/something/frames/144407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into a socket"}]} +{"id": "000000118317", "images": ["AURORA/data/something/frames/214289/first.jpg", "AURORA/data/something/frames/214289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting purple balloon pump on a surface"}]} +{"id": "000000118318", "images": ["AURORA/data/something/frames/76625/first.jpg", "AURORA/data/something/frames/76625/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass up"}]} +{"id": "000000118319", "images": ["AURORA/data/something/frames/85534/first.jpg", "AURORA/data/something/frames/85534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring peanuts into a glass"}]} +{"id": "000000118320", "images": ["AURORA/data/something/frames/105278/first.jpg", "AURORA/data/something/frames/105278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting pikachu plush with pen"}]} +{"id": "000000118321", "images": ["AURORA/data/something/frames/177502/first.jpg", "AURORA/data/something/frames/177502/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a door"}]} +{"id": "000000118322", "images": ["AURORA/data/something/frames/205583/first.jpg", "AURORA/data/something/frames/205583/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping bottle over"}]} +{"id": "000000118323", "images": ["AURORA/data/something/frames/126834/first.jpg", "AURORA/data/something/frames/126834/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a book next to a spoon"}]} +{"id": "000000118324", "images": ["AURORA/data/something/frames/119483/first.jpg", "AURORA/data/something/frames/119483/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a phone"}]} +{"id": "000000118325", "images": ["AURORA/data/something/frames/217531/first.jpg", "AURORA/data/something/frames/217531/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking two plates"}]} +{"id": "000000118326", "images": ["AURORA/data/something/frames/177943/first.jpg", "AURORA/data/something/frames/177943/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring soda out of cup"}]} +{"id": "000000118327", "images": ["AURORA/data/something/frames/83008/first.jpg", "AURORA/data/something/frames/83008/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pillow with a stick"}]} +{"id": "000000118328", "images": ["AURORA/data/something/frames/116888/first.jpg", "AURORA/data/something/frames/116888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming small fresh mint"}]} +{"id": "000000118329", "images": ["AURORA/data/something/frames/448/first.jpg", "AURORA/data/something/frames/448/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening laptop"}]} +{"id": "000000118330", "images": ["AURORA/data/something/frames/110423/first.jpg", "AURORA/data/something/frames/110423/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000118331", "images": ["AURORA/data/something/frames/115435/first.jpg", "AURORA/data/something/frames/115435/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000118332", "images": ["AURORA/data/something/frames/7068/first.jpg", "AURORA/data/something/frames/7068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb device into usb port but pulling it right out as you remove your hand"}]} +{"id": "000000118333", "images": ["AURORA/data/something/frames/52685/first.jpg", "AURORA/data/something/frames/52685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into plug socket but pulling it right out as you remove your hand"}]} +{"id": "000000118334", "images": ["AURORA/data/something/frames/153335/first.jpg", "AURORA/data/something/frames/153335/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping cup over"}]} +{"id": "000000118335", "images": ["AURORA/data/something/frames/170390/first.jpg", "AURORA/data/something/frames/170390/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000118336", "images": ["AURORA/data/something/frames/145160/first.jpg", "AURORA/data/something/frames/145160/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping silver container into plastic-container"}]} +{"id": "000000118337", "images": ["AURORA/data/something/frames/64581/first.jpg", "AURORA/data/something/frames/64581/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118338", "images": ["AURORA/data/something/frames/36279/first.jpg", "AURORA/data/something/frames/36279/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle of lotion over"}]} +{"id": "000000118339", "images": ["AURORA/data/something/frames/24255/first.jpg", "AURORA/data/something/frames/24255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching cucumber with your camera"}]} +{"id": "000000118340", "images": ["AURORA/data/something/frames/10768/first.jpg", "AURORA/data/something/frames/10768/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into an outlet"}]} +{"id": "000000118341", "images": ["AURORA/data/something/frames/174868/first.jpg", "AURORA/data/something/frames/174868/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera downwards while filming red booklet"}]} +{"id": "000000118342", "images": ["AURORA/data/something/frames/78012/first.jpg", "AURORA/data/something/frames/78012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping tissue onto bowl"}]} +{"id": "000000118343", "images": ["AURORA/data/something/frames/19362/first.jpg", "AURORA/data/something/frames/19362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing cigarette lighter off of note bok"}]} +{"id": "000000118344", "images": ["AURORA/data/something/frames/115006/first.jpg", "AURORA/data/something/frames/115006/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a mirror with a comb on it"}]} +{"id": "000000118345", "images": ["AURORA/data/something/frames/94027/first.jpg", "AURORA/data/something/frames/94027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sticky note onto book"}]} +{"id": "000000118346", "images": ["AURORA/data/something/frames/145501/first.jpg", "AURORA/data/something/frames/145501/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping mug with clementine over, so clementine falls out"}]} +{"id": "000000118347", "images": ["AURORA/data/something/frames/174612/first.jpg", "AURORA/data/something/frames/174612/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass until it overflows"}]} +{"id": "000000118348", "images": ["AURORA/data/something/frames/151021/first.jpg", "AURORA/data/something/frames/151021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking an earring"}]} +{"id": "000000118349", "images": ["AURORA/data/something/frames/100101/first.jpg", "AURORA/data/something/frames/100101/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen up"}]} +{"id": "000000118350", "images": ["AURORA/data/something/frames/146345/first.jpg", "AURORA/data/something/frames/146345/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: video game case colliding with a box and both come to a halt"}]} +{"id": "000000118351", "images": ["AURORA/data/something/frames/4208/first.jpg", "AURORA/data/something/frames/4208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling spray onto glasses"}]} +{"id": "000000118352", "images": ["AURORA/data/something/frames/141201/first.jpg", "AURORA/data/something/frames/141201/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing keys so that it almost falls off but doesn't"}]} +{"id": "000000118353", "images": ["AURORA/data/something/frames/7601/first.jpg", "AURORA/data/something/frames/7601/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a cotton swab so that it deforms"}]} +{"id": "000000118354", "images": ["AURORA/data/something/frames/125118/first.jpg", "AURORA/data/something/frames/125118/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a fork"}]} +{"id": "000000118355", "images": ["AURORA/data/something/frames/4477/first.jpg", "AURORA/data/something/frames/4477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cup in front of cup"}]} +{"id": "000000118356", "images": ["AURORA/data/something/frames/195255/first.jpg", "AURORA/data/something/frames/195255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to coffee mug"}]} +{"id": "000000118357", "images": ["AURORA/data/something/frames/11344/first.jpg", "AURORA/data/something/frames/11344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing blanket from right to left"}]} +{"id": "000000118358", "images": ["AURORA/data/something/frames/57849/first.jpg", "AURORA/data/something/frames/57849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding cloth"}]} +{"id": "000000118359", "images": ["AURORA/data/something/frames/140410/first.jpg", "AURORA/data/something/frames/140410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a wristwatch and a ball closer to each other"}]} +{"id": "000000118360", "images": ["AURORA/data/something/frames/98534/first.jpg", "AURORA/data/something/frames/98534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box from right to left"}]} +{"id": "000000118361", "images": ["AURORA/data/something/frames/78928/first.jpg", "AURORA/data/something/frames/78928/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water onto glass"}]} +{"id": "000000118362", "images": ["AURORA/data/something/frames/126365/first.jpg", "AURORA/data/something/frames/126365/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening tumbler cap"}]} +{"id": "000000118363", "images": ["AURORA/data/something/frames/1282/first.jpg", "AURORA/data/something/frames/1282/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving aim toothpaste down"}]} +{"id": "000000118364", "images": ["AURORA/data/something/frames/175755/first.jpg", "AURORA/data/something/frames/175755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000118365", "images": ["AURORA/data/something/frames/15968/first.jpg", "AURORA/data/something/frames/15968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lipbalm and nailpolish closer to each other"}]} +{"id": "000000118366", "images": ["AURORA/data/something/frames/149914/first.jpg", "AURORA/data/something/frames/149914/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a remote"}]} +{"id": "000000118367", "images": ["AURORA/data/something/frames/130543/first.jpg", "AURORA/data/something/frames/130543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening medicine bottle"}]} +{"id": "000000118368", "images": ["AURORA/data/something/frames/43964/first.jpg", "AURORA/data/something/frames/43964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a plank of wood"}]} +{"id": "000000118369", "images": ["AURORA/data/something/frames/192096/first.jpg", "AURORA/data/something/frames/192096/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a ruler so that it deforms"}]} +{"id": "000000118370", "images": ["AURORA/data/something/frames/170660/first.jpg", "AURORA/data/something/frames/170660/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle colliding with bottle and both are being deflected"}]} +{"id": "000000118371", "images": ["AURORA/data/something/frames/644/first.jpg", "AURORA/data/something/frames/644/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a jar"}]} +{"id": "000000118372", "images": ["AURORA/data/something/frames/55208/first.jpg", "AURORA/data/something/frames/55208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a cup so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000118373", "images": ["AURORA/data/something/frames/18353/first.jpg", "AURORA/data/something/frames/18353/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting apple on a surface"}]} +{"id": "000000118374", "images": ["AURORA/data/something/frames/46275/first.jpg", "AURORA/data/something/frames/46275/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a laptop into a plug extender"}]} +{"id": "000000118375", "images": ["AURORA/data/something/frames/104511/first.jpg", "AURORA/data/something/frames/104511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing sheet of paper into two pieces"}]} +{"id": "000000118376", "images": ["AURORA/data/something/frames/142046/first.jpg", "AURORA/data/something/frames/142046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a wallet from right to left"}]} +{"id": "000000118377", "images": ["AURORA/data/something/frames/92383/first.jpg", "AURORA/data/something/frames/92383/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a pencil sharpener upside down"}]} +{"id": "000000118378", "images": ["AURORA/data/something/frames/128381/first.jpg", "AURORA/data/something/frames/128381/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering chalk"}]} +{"id": "000000118379", "images": ["AURORA/data/something/frames/110203/first.jpg", "AURORA/data/something/frames/110203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding news paper"}]} +{"id": "000000118380", "images": ["AURORA/data/something/frames/93097/first.jpg", "AURORA/data/something/frames/93097/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a bottle"}]} +{"id": "000000118381", "images": ["AURORA/data/something/frames/136045/first.jpg", "AURORA/data/something/frames/136045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing white hand gel from right to left"}]} +{"id": "000000118382", "images": ["AURORA/data/something/frames/145333/first.jpg", "AURORA/data/something/frames/145333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking controler up"}]} +{"id": "000000118383", "images": ["AURORA/data/something/frames/143695/first.jpg", "AURORA/data/something/frames/143695/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping raw egg into the floor"}]} +{"id": "000000118384", "images": ["AURORA/data/something/frames/128710/first.jpg", "AURORA/data/something/frames/128710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb bluetooth into usb port but pulling it right out as you remove your hand"}]} +{"id": "000000118385", "images": ["AURORA/data/something/frames/56993/first.jpg", "AURORA/data/something/frames/56993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting globe toy upright on the table"}]} +{"id": "000000118386", "images": ["AURORA/data/something/frames/81577/first.jpg", "AURORA/data/something/frames/81577/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing marker from right to left"}]} +{"id": "000000118387", "images": ["AURORA/data/something/frames/6209/first.jpg", "AURORA/data/something/frames/6209/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving umbrella up"}]} +{"id": "000000118388", "images": ["AURORA/data/something/frames/55953/first.jpg", "AURORA/data/something/frames/55953/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a fork and a knife on the table"}]} +{"id": "000000118389", "images": ["AURORA/data/something/frames/36954/first.jpg", "AURORA/data/something/frames/36954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending tea filter so that it deforms"}]} +{"id": "000000118390", "images": ["AURORA/data/something/frames/174355/first.jpg", "AURORA/data/something/frames/174355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling marker pen from left to right"}]} +{"id": "000000118391", "images": ["AURORA/data/something/frames/212751/first.jpg", "AURORA/data/something/frames/212751/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the book and the magazine away from each other"}]} +{"id": "000000118392", "images": ["AURORA/data/something/frames/131596/first.jpg", "AURORA/data/something/frames/131596/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a spoon so that it almost falls off but doesn't"}]} +{"id": "000000118393", "images": ["AURORA/data/something/frames/82479/first.jpg", "AURORA/data/something/frames/82479/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000118394", "images": ["AURORA/data/something/frames/141955/first.jpg", "AURORA/data/something/frames/141955/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto flowers"}]} +{"id": "000000118395", "images": ["AURORA/data/something/frames/4951/first.jpg", "AURORA/data/something/frames/4951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a watch into a hat"}]} +{"id": "000000118396", "images": ["AURORA/data/something/frames/134493/first.jpg", "AURORA/data/something/frames/134493/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a sieve closer to a belt"}]} +{"id": "000000118397", "images": ["AURORA/data/something/frames/198902/first.jpg", "AURORA/data/something/frames/198902/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a card in front of a peg"}]} +{"id": "000000118398", "images": ["AURORA/data/something/frames/77468/first.jpg", "AURORA/data/something/frames/77468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting coin into water bottle"}]} +{"id": "000000118399", "images": ["AURORA/data/something/frames/98935/first.jpg", "AURORA/data/something/frames/98935/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: trying to pour cereals into a glass container, but missing so it spills next to it"}]} +{"id": "000000118400", "images": ["AURORA/data/something/frames/61752/first.jpg", "AURORA/data/something/frames/61752/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing lotion, revealing deodorant behind"}]} +{"id": "000000118401", "images": ["AURORA/data/something/frames/62523/first.jpg", "AURORA/data/something/frames/62523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a play block with a group of play blocks"}]} +{"id": "000000118402", "images": ["AURORA/data/something/frames/53883/first.jpg", "AURORA/data/something/frames/53883/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening calculator"}]} +{"id": "000000118403", "images": ["AURORA/data/something/frames/2167/first.jpg", "AURORA/data/something/frames/2167/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen on the edge of chair so it is not supported and falls down"}]} +{"id": "000000118404", "images": ["AURORA/data/something/frames/192984/first.jpg", "AURORA/data/something/frames/192984/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking sunglasses out of box"}]} +{"id": "000000118405", "images": ["AURORA/data/something/frames/213465/first.jpg", "AURORA/data/something/frames/213465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a paper just a little bit"}]} +{"id": "000000118406", "images": ["AURORA/data/something/frames/28567/first.jpg", "AURORA/data/something/frames/28567/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling jam onto a biscuit"}]} +{"id": "000000118407", "images": ["AURORA/data/something/frames/43520/first.jpg", "AURORA/data/something/frames/43520/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into computer"}]} +{"id": "000000118408", "images": ["AURORA/data/something/frames/66140/first.jpg", "AURORA/data/something/frames/66140/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lip balm and nail polish away from each other"}]} +{"id": "000000118409", "images": ["AURORA/data/something/frames/49021/first.jpg", "AURORA/data/something/frames/49021/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling oil next to bread"}]} +{"id": "000000118410", "images": ["AURORA/data/something/frames/5107/first.jpg", "AURORA/data/something/frames/5107/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking wallet"}]} +{"id": "000000118411", "images": ["AURORA/data/something/frames/29115/first.jpg", "AURORA/data/something/frames/29115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a meat thermometer upright on the table, so it falls on its side"}]} +{"id": "000000118412", "images": ["AURORA/data/something/frames/107347/first.jpg", "AURORA/data/something/frames/107347/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glove and cell phone on the table"}]} +{"id": "000000118413", "images": ["AURORA/data/something/frames/37054/first.jpg", "AURORA/data/something/frames/37054/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mouse onto mousepad"}]} +{"id": "000000118414", "images": ["AURORA/data/something/frames/183323/first.jpg", "AURORA/data/something/frames/183323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a glass with a hairbrush"}]} +{"id": "000000118415", "images": ["AURORA/data/something/frames/1092/first.jpg", "AURORA/data/something/frames/1092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving laptop down"}]} +{"id": "000000118416", "images": ["AURORA/data/something/frames/124462/first.jpg", "AURORA/data/something/frames/124462/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting wall with flashlight"}]} +{"id": "000000118417", "images": ["AURORA/data/something/frames/95659/first.jpg", "AURORA/data/something/frames/95659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding receipt paper"}]} +{"id": "000000118418", "images": ["AURORA/data/something/frames/168781/first.jpg", "AURORA/data/something/frames/168781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a book"}]} +{"id": "000000118419", "images": ["AURORA/data/something/frames/125278/first.jpg", "AURORA/data/something/frames/125278/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118420", "images": ["AURORA/data/something/frames/212728/first.jpg", "AURORA/data/something/frames/212728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a bottle cap"}]} +{"id": "000000118421", "images": ["AURORA/data/something/frames/181664/first.jpg", "AURORA/data/something/frames/181664/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning chocolate upside down"}]} +{"id": "000000118422", "images": ["AURORA/data/something/frames/63822/first.jpg", "AURORA/data/something/frames/63822/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a phone charger into a multi-socket"}]} +{"id": "000000118423", "images": ["AURORA/data/something/frames/193566/first.jpg", "AURORA/data/something/frames/193566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding quiz paper"}]} +{"id": "000000118424", "images": ["AURORA/data/something/frames/171781/first.jpg", "AURORA/data/something/frames/171781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving usb cable away from eraser"}]} +{"id": "000000118425", "images": ["AURORA/data/something/frames/22635/first.jpg", "AURORA/data/something/frames/22635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a cup"}]} +{"id": "000000118426", "images": ["AURORA/data/something/frames/199666/first.jpg", "AURORA/data/something/frames/199666/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118427", "images": ["AURORA/data/something/frames/4814/first.jpg", "AURORA/data/something/frames/4814/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a toothbrush so that it almost falls off but doesn't"}]} +{"id": "000000118428", "images": ["AURORA/data/something/frames/129217/first.jpg", "AURORA/data/something/frames/129217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing folded paper into two pieces"}]} +{"id": "000000118429", "images": ["AURORA/data/something/frames/7905/first.jpg", "AURORA/data/something/frames/7905/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of cylinder without letting it drop down"}]} +{"id": "000000118430", "images": ["AURORA/data/something/frames/5398/first.jpg", "AURORA/data/something/frames/5398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging electric plug into socket"}]} +{"id": "000000118431", "images": ["AURORA/data/something/frames/10832/first.jpg", "AURORA/data/something/frames/10832/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a baking tray with pens on it"}]} +{"id": "000000118432", "images": ["AURORA/data/something/frames/161067/first.jpg", "AURORA/data/something/frames/161067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing black disc case from right to left"}]} +{"id": "000000118433", "images": ["AURORA/data/something/frames/188267/first.jpg", "AURORA/data/something/frames/188267/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a towel"}]} +{"id": "000000118434", "images": ["AURORA/data/something/frames/82586/first.jpg", "AURORA/data/something/frames/82586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a notebook from right to left"}]} +{"id": "000000118435", "images": ["AURORA/data/something/frames/152500/first.jpg", "AURORA/data/something/frames/152500/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving red colour pencil sharpener away from wooden stick"}]} +{"id": "000000118436", "images": ["AURORA/data/something/frames/91046/first.jpg", "AURORA/data/something/frames/91046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tiolet paper closer to tiolet paper"}]} +{"id": "000000118437", "images": ["AURORA/data/something/frames/195196/first.jpg", "AURORA/data/something/frames/195196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a tissue into a trash can"}]} +{"id": "000000118438", "images": ["AURORA/data/something/frames/30936/first.jpg", "AURORA/data/something/frames/30936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keys down"}]} +{"id": "000000118439", "images": ["AURORA/data/something/frames/70385/first.jpg", "AURORA/data/something/frames/70385/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a pencil on it until it starts sliding down"}]} +{"id": "000000118440", "images": ["AURORA/data/something/frames/69360/first.jpg", "AURORA/data/something/frames/69360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking jar so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000118441", "images": ["AURORA/data/something/frames/186713/first.jpg", "AURORA/data/something/frames/186713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a lemon into a bowl"}]} +{"id": "000000118442", "images": ["AURORA/data/something/frames/188976/first.jpg", "AURORA/data/something/frames/188976/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting teaspoon and lime on the table"}]} +{"id": "000000118443", "images": ["AURORA/data/something/frames/75490/first.jpg", "AURORA/data/something/frames/75490/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering cd with paper"}]} +{"id": "000000118444", "images": ["AURORA/data/something/frames/144328/first.jpg", "AURORA/data/something/frames/144328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming cup"}]} +{"id": "000000118445", "images": ["AURORA/data/something/frames/44255/first.jpg", "AURORA/data/something/frames/44255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper sheet into two pieces"}]} +{"id": "000000118446", "images": ["AURORA/data/something/frames/53775/first.jpg", "AURORA/data/something/frames/53775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching bicycle with your camera"}]} +{"id": "000000118447", "images": ["AURORA/data/something/frames/95402/first.jpg", "AURORA/data/something/frames/95402/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a remote control in front of a mug"}]} +{"id": "000000118448", "images": ["AURORA/data/something/frames/201241/first.jpg", "AURORA/data/something/frames/201241/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a sofa so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000118449", "images": ["AURORA/data/something/frames/168812/first.jpg", "AURORA/data/something/frames/168812/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sandwich into lunchbox"}]} +{"id": "000000118450", "images": ["AURORA/data/something/frames/193859/first.jpg", "AURORA/data/something/frames/193859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering mobilephone"}]} +{"id": "000000118451", "images": ["AURORA/data/something/frames/23186/first.jpg", "AURORA/data/something/frames/23186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse next to mug"}]} +{"id": "000000118452", "images": ["AURORA/data/something/frames/29263/first.jpg", "AURORA/data/something/frames/29263/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen in front of cup"}]} +{"id": "000000118453", "images": ["AURORA/data/something/frames/22290/first.jpg", "AURORA/data/something/frames/22290/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching calculator with your camera"}]} +{"id": "000000118454", "images": ["AURORA/data/something/frames/35156/first.jpg", "AURORA/data/something/frames/35156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing red pot holder from right to left"}]} +{"id": "000000118455", "images": ["AURORA/data/something/frames/35541/first.jpg", "AURORA/data/something/frames/35541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a match box with a lighter"}]} +{"id": "000000118456", "images": ["AURORA/data/something/frames/28403/first.jpg", "AURORA/data/something/frames/28403/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into washing machine"}]} +{"id": "000000118457", "images": ["AURORA/data/something/frames/123846/first.jpg", "AURORA/data/something/frames/123846/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling mint onto laptop"}]} +{"id": "000000118458", "images": ["AURORA/data/something/frames/75747/first.jpg", "AURORA/data/something/frames/75747/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a ice tray on the edge of table so it is not supported and falls down"}]} +{"id": "000000118459", "images": ["AURORA/data/something/frames/217273/first.jpg", "AURORA/data/something/frames/217273/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a green cup"}]} +{"id": "000000118460", "images": ["AURORA/data/something/frames/15524/first.jpg", "AURORA/data/something/frames/15524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a vase with a blanket"}]} +{"id": "000000118461", "images": ["AURORA/data/something/frames/109781/first.jpg", "AURORA/data/something/frames/109781/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing small sharpener from right to left"}]} +{"id": "000000118462", "images": ["AURORA/data/something/frames/22001/first.jpg", "AURORA/data/something/frames/22001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering television remote"}]} +{"id": "000000118463", "images": ["AURORA/data/something/frames/83447/first.jpg", "AURORA/data/something/frames/83447/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a pole with a fly swatter"}]} +{"id": "000000118464", "images": ["AURORA/data/something/frames/38270/first.jpg", "AURORA/data/something/frames/38270/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000118465", "images": ["AURORA/data/something/frames/110987/first.jpg", "AURORA/data/something/frames/110987/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118466", "images": ["AURORA/data/something/frames/186785/first.jpg", "AURORA/data/something/frames/186785/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box with block"}]} +{"id": "000000118467", "images": ["AURORA/data/something/frames/171560/first.jpg", "AURORA/data/something/frames/171560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) handle of cup"}]} +{"id": "000000118468", "images": ["AURORA/data/something/frames/86420/first.jpg", "AURORA/data/something/frames/86420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000118469", "images": ["AURORA/data/something/frames/111223/first.jpg", "AURORA/data/something/frames/111223/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving towel up"}]} +{"id": "000000118470", "images": ["AURORA/data/something/frames/179304/first.jpg", "AURORA/data/something/frames/179304/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a jar of sugar upright on the table"}]} +{"id": "000000118471", "images": ["AURORA/data/something/frames/198728/first.jpg", "AURORA/data/something/frames/198728/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottletop over"}]} +{"id": "000000118472", "images": ["AURORA/data/something/frames/95063/first.jpg", "AURORA/data/something/frames/95063/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting coaster with cup on it"}]} +{"id": "000000118473", "images": ["AURORA/data/something/frames/143197/first.jpg", "AURORA/data/something/frames/143197/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing spanner from left to right"}]} +{"id": "000000118474", "images": ["AURORA/data/something/frames/95036/first.jpg", "AURORA/data/something/frames/95036/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching board with your camera"}]} +{"id": "000000118475", "images": ["AURORA/data/something/frames/27414/first.jpg", "AURORA/data/something/frames/27414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of mirror without letting it drop down"}]} +{"id": "000000118476", "images": ["AURORA/data/something/frames/64711/first.jpg", "AURORA/data/something/frames/64711/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a notebook with a screw on it"}]} +{"id": "000000118477", "images": ["AURORA/data/something/frames/51847/first.jpg", "AURORA/data/something/frames/51847/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a candle up"}]} +{"id": "000000118478", "images": ["AURORA/data/something/frames/15387/first.jpg", "AURORA/data/something/frames/15387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing bread into two pieces"}]} +{"id": "000000118479", "images": ["AURORA/data/something/frames/30468/first.jpg", "AURORA/data/something/frames/30468/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pill in front of bottle"}]} +{"id": "000000118480", "images": ["AURORA/data/something/frames/18865/first.jpg", "AURORA/data/something/frames/18865/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into plug cage but pulling it right out as you remove your hand"}]} +{"id": "000000118481", "images": ["AURORA/data/something/frames/149043/first.jpg", "AURORA/data/something/frames/149043/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a medicine bottle over"}]} +{"id": "000000118482", "images": ["AURORA/data/something/frames/132250/first.jpg", "AURORA/data/something/frames/132250/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a flying disc underneath a child's chair"}]} +{"id": "000000118483", "images": ["AURORA/data/something/frames/158769/first.jpg", "AURORA/data/something/frames/158769/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging charger into outlet"}]} +{"id": "000000118484", "images": ["AURORA/data/something/frames/26605/first.jpg", "AURORA/data/something/frames/26605/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a marker away from a pen"}]} +{"id": "000000118485", "images": ["AURORA/data/something/frames/76139/first.jpg", "AURORA/data/something/frames/76139/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ink bottle, clip box and charger adapter on the table"}]} +{"id": "000000118486", "images": ["AURORA/data/something/frames/11951/first.jpg", "AURORA/data/something/frames/11951/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving fork and spoon closer to each other"}]} +{"id": "000000118487", "images": ["AURORA/data/something/frames/63299/first.jpg", "AURORA/data/something/frames/63299/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote and wallet on the table"}]} +{"id": "000000118488", "images": ["AURORA/data/something/frames/204859/first.jpg", "AURORA/data/something/frames/204859/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hat onto shoe"}]} +{"id": "000000118489", "images": ["AURORA/data/something/frames/66570/first.jpg", "AURORA/data/something/frames/66570/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking box up"}]} +{"id": "000000118490", "images": ["AURORA/data/something/frames/175503/first.jpg", "AURORA/data/something/frames/175503/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote upright on the table, so it falls on its side"}]} +{"id": "000000118491", "images": ["AURORA/data/something/frames/145595/first.jpg", "AURORA/data/something/frames/145595/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hairbrush on a surface"}]} +{"id": "000000118492", "images": ["AURORA/data/something/frames/140323/first.jpg", "AURORA/data/something/frames/140323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000118493", "images": ["AURORA/data/something/frames/21852/first.jpg", "AURORA/data/something/frames/21852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting stress"}]} +{"id": "000000118494", "images": ["AURORA/data/something/frames/19580/first.jpg", "AURORA/data/something/frames/19580/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a comb in front of a book"}]} +{"id": "000000118495", "images": ["AURORA/data/something/frames/130719/first.jpg", "AURORA/data/something/frames/130719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling pen from behind of binder"}]} +{"id": "000000118496", "images": ["AURORA/data/something/frames/132623/first.jpg", "AURORA/data/something/frames/132623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting diaper wipes into a purse"}]} +{"id": "000000118497", "images": ["AURORA/data/something/frames/87053/first.jpg", "AURORA/data/something/frames/87053/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing tissue into slipper"}]} +{"id": "000000118498", "images": ["AURORA/data/something/frames/21549/first.jpg", "AURORA/data/something/frames/21549/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing hairband with white colour pen"}]} +{"id": "000000118499", "images": ["AURORA/data/something/frames/106141/first.jpg", "AURORA/data/something/frames/106141/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving remote and lighter closer to each other"}]} +{"id": "000000118500", "images": ["AURORA/data/something/frames/105469/first.jpg", "AURORA/data/something/frames/105469/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving water bottle and water bottle so they pass each other"}]} +{"id": "000000118501", "images": ["AURORA/data/something/frames/14807/first.jpg", "AURORA/data/something/frames/14807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tape measure up"}]} +{"id": "000000118502", "images": ["AURORA/data/something/frames/220710/first.jpg", "AURORA/data/something/frames/220710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring tea into cup"}]} +{"id": "000000118503", "images": ["AURORA/data/something/frames/188061/first.jpg", "AURORA/data/something/frames/188061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mug next to keyboard"}]} +{"id": "000000118504", "images": ["AURORA/data/something/frames/165623/first.jpg", "AURORA/data/something/frames/165623/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cable up"}]} +{"id": "000000118505", "images": ["AURORA/data/something/frames/15143/first.jpg", "AURORA/data/something/frames/15143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pencil sharpener, a pot and a shoe on the table"}]} +{"id": "000000118506", "images": ["AURORA/data/something/frames/175082/first.jpg", "AURORA/data/something/frames/175082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cellphone and mug away from each other"}]} +{"id": "000000118507", "images": ["AURORA/data/something/frames/109836/first.jpg", "AURORA/data/something/frames/109836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of four similar lighters"}]} +{"id": "000000118508", "images": ["AURORA/data/something/frames/144645/first.jpg", "AURORA/data/something/frames/144645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of cell phone"}]} +{"id": "000000118509", "images": ["AURORA/data/something/frames/139494/first.jpg", "AURORA/data/something/frames/139494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a bottle over"}]} +{"id": "000000118510", "images": ["AURORA/data/something/frames/137135/first.jpg", "AURORA/data/something/frames/137135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a colored pencil"}]} +{"id": "000000118511", "images": ["AURORA/data/something/frames/91255/first.jpg", "AURORA/data/something/frames/91255/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen and duct tape closer to each other"}]} +{"id": "000000118512", "images": ["AURORA/data/something/frames/42217/first.jpg", "AURORA/data/something/frames/42217/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a pen and a pencil so they collide with each other"}]} +{"id": "000000118513", "images": ["AURORA/data/something/frames/203916/first.jpg", "AURORA/data/something/frames/203916/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking water bottle so lightly that it doesn't or almost doesn't move"}]} +{"id": "000000118514", "images": ["AURORA/data/something/frames/15819/first.jpg", "AURORA/data/something/frames/15819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bread, cup and cellphone on the table"}]} +{"id": "000000118515", "images": ["AURORA/data/something/frames/195600/first.jpg", "AURORA/data/something/frames/195600/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) front of fridge"}]} +{"id": "000000118516", "images": ["AURORA/data/something/frames/78566/first.jpg", "AURORA/data/something/frames/78566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a charger with a remote control"}]} +{"id": "000000118517", "images": ["AURORA/data/something/frames/180050/first.jpg", "AURORA/data/something/frames/180050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hair clip"}]} +{"id": "000000118518", "images": ["AURORA/data/something/frames/73431/first.jpg", "AURORA/data/something/frames/73431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of rubber band so that it gets stretched"}]} +{"id": "000000118519", "images": ["AURORA/data/something/frames/208954/first.jpg", "AURORA/data/something/frames/208954/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118520", "images": ["AURORA/data/something/frames/25730/first.jpg", "AURORA/data/something/frames/25730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a phone with a lighter on it"}]} +{"id": "000000118521", "images": ["AURORA/data/something/frames/128861/first.jpg", "AURORA/data/something/frames/128861/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching clip magnet to stove"}]} +{"id": "000000118522", "images": ["AURORA/data/something/frames/57628/first.jpg", "AURORA/data/something/frames/57628/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking a stack of boxes without the stack collapsing"}]} +{"id": "000000118523", "images": ["AURORA/data/something/frames/144213/first.jpg", "AURORA/data/something/frames/144213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pink golf ball being deflected from white plug adapter"}]} +{"id": "000000118524", "images": ["AURORA/data/something/frames/135393/first.jpg", "AURORA/data/something/frames/135393/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into bottle"}]} +{"id": "000000118525", "images": ["AURORA/data/something/frames/181328/first.jpg", "AURORA/data/something/frames/181328/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box in front of jar"}]} +{"id": "000000118526", "images": ["AURORA/data/something/frames/139387/first.jpg", "AURORA/data/something/frames/139387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping dispenser over"}]} +{"id": "000000118527", "images": ["AURORA/data/something/frames/76915/first.jpg", "AURORA/data/something/frames/76915/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox into a bowl"}]} +{"id": "000000118528", "images": ["AURORA/data/something/frames/163592/first.jpg", "AURORA/data/something/frames/163592/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto box"}]} +{"id": "000000118529", "images": ["AURORA/data/something/frames/125145/first.jpg", "AURORA/data/something/frames/125145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cord into the wall"}]} +{"id": "000000118530", "images": ["AURORA/data/something/frames/187284/first.jpg", "AURORA/data/something/frames/187284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring detergent into cup until it overflows"}]} +{"id": "000000118531", "images": ["AURORA/data/something/frames/188040/first.jpg", "AURORA/data/something/frames/188040/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with mobile on it"}]} +{"id": "000000118532", "images": ["AURORA/data/something/frames/65437/first.jpg", "AURORA/data/something/frames/65437/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting soft, light yellow cooking glove"}]} +{"id": "000000118533", "images": ["AURORA/data/something/frames/49387/first.jpg", "AURORA/data/something/frames/49387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 wooden sticks onto red pouch"}]} +{"id": "000000118534", "images": ["AURORA/data/something/frames/101323/first.jpg", "AURORA/data/something/frames/101323/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on a surface"}]} +{"id": "000000118535", "images": ["AURORA/data/something/frames/71155/first.jpg", "AURORA/data/something/frames/71155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: digging a worm out of wheat bran"}]} +{"id": "000000118536", "images": ["AURORA/data/something/frames/210387/first.jpg", "AURORA/data/something/frames/210387/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen down"}]} +{"id": "000000118537", "images": ["AURORA/data/something/frames/62617/first.jpg", "AURORA/data/something/frames/62617/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting crayon behind mug"}]} +{"id": "000000118538", "images": ["AURORA/data/something/frames/43790/first.jpg", "AURORA/data/something/frames/43790/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving top of purse"}]} +{"id": "000000118539", "images": ["AURORA/data/something/frames/197983/first.jpg", "AURORA/data/something/frames/197983/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning starbucks cup upside down"}]} +{"id": "000000118540", "images": ["AURORA/data/something/frames/102853/first.jpg", "AURORA/data/something/frames/102853/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving shoe and shoe closer to each other"}]} +{"id": "000000118541", "images": ["AURORA/data/something/frames/144706/first.jpg", "AURORA/data/something/frames/144706/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a computer mouse upside down"}]} +{"id": "000000118542", "images": ["AURORA/data/something/frames/6658/first.jpg", "AURORA/data/something/frames/6658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding cloth"}]} +{"id": "000000118543", "images": ["AURORA/data/something/frames/186837/first.jpg", "AURORA/data/something/frames/186837/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting something with something on it"}]} +{"id": "000000118544", "images": ["AURORA/data/something/frames/109239/first.jpg", "AURORA/data/something/frames/109239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a paper"}]} +{"id": "000000118545", "images": ["AURORA/data/something/frames/181557/first.jpg", "AURORA/data/something/frames/181557/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving keys and pensil away from each other"}]} +{"id": "000000118546", "images": ["AURORA/data/something/frames/166887/first.jpg", "AURORA/data/something/frames/166887/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking card"}]} +{"id": "000000118547", "images": ["AURORA/data/something/frames/29783/first.jpg", "AURORA/data/something/frames/29783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: piling clothes up"}]} +{"id": "000000118548", "images": ["AURORA/data/something/frames/215967/first.jpg", "AURORA/data/something/frames/215967/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing box with paint brush"}]} +{"id": "000000118549", "images": ["AURORA/data/something/frames/97105/first.jpg", "AURORA/data/something/frames/97105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving purse towards the camera"}]} +{"id": "000000118550", "images": ["AURORA/data/something/frames/152949/first.jpg", "AURORA/data/something/frames/152949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into mug"}]} +{"id": "000000118551", "images": ["AURORA/data/something/frames/193434/first.jpg", "AURORA/data/something/frames/193434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing cloth into bag"}]} +{"id": "000000118552", "images": ["AURORA/data/something/frames/72427/first.jpg", "AURORA/data/something/frames/72427/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading pate onto biscuit"}]} +{"id": "000000118553", "images": ["AURORA/data/something/frames/126314/first.jpg", "AURORA/data/something/frames/126314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping deoderant into a drawer"}]} +{"id": "000000118554", "images": ["AURORA/data/something/frames/107242/first.jpg", "AURORA/data/something/frames/107242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching tomato with your camera"}]} +{"id": "000000118555", "images": ["AURORA/data/something/frames/80543/first.jpg", "AURORA/data/something/frames/80543/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass down"}]} +{"id": "000000118556", "images": ["AURORA/data/something/frames/201629/first.jpg", "AURORA/data/something/frames/201629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting scissors on a surface"}]} +{"id": "000000118557", "images": ["AURORA/data/something/frames/146002/first.jpg", "AURORA/data/something/frames/146002/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking pen out of mug"}]} +{"id": "000000118558", "images": ["AURORA/data/something/frames/153870/first.jpg", "AURORA/data/something/frames/153870/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk into a cup"}]} +{"id": "000000118559", "images": ["AURORA/data/something/frames/217459/first.jpg", "AURORA/data/something/frames/217459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a calculator onto a desk"}]} +{"id": "000000118560", "images": ["AURORA/data/something/frames/213573/first.jpg", "AURORA/data/something/frames/213573/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ruler onto calculator"}]} +{"id": "000000118561", "images": ["AURORA/data/something/frames/56271/first.jpg", "AURORA/data/something/frames/56271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into an outlet"}]} +{"id": "000000118562", "images": ["AURORA/data/something/frames/109857/first.jpg", "AURORA/data/something/frames/109857/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) top of bottle"}]} +{"id": "000000118563", "images": ["AURORA/data/something/frames/188449/first.jpg", "AURORA/data/something/frames/188449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping marbles up with hand"}]} +{"id": "000000118564", "images": ["AURORA/data/something/frames/102319/first.jpg", "AURORA/data/something/frames/102319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into bottle"}]} +{"id": "000000118565", "images": ["AURORA/data/something/frames/193105/first.jpg", "AURORA/data/something/frames/193105/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting dish with dummy on it"}]} +{"id": "000000118566", "images": ["AURORA/data/something/frames/75027/first.jpg", "AURORA/data/something/frames/75027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a makeup brush so that it almost falls off but doesn't"}]} +{"id": "000000118567", "images": ["AURORA/data/something/frames/18022/first.jpg", "AURORA/data/something/frames/18022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting book with notebook on it"}]} +{"id": "000000118568", "images": ["AURORA/data/something/frames/162291/first.jpg", "AURORA/data/something/frames/162291/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting box with pen"}]} +{"id": "000000118569", "images": ["AURORA/data/something/frames/149465/first.jpg", "AURORA/data/something/frames/149465/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching pill bottle with your camera"}]} +{"id": "000000118570", "images": ["AURORA/data/something/frames/69033/first.jpg", "AURORA/data/something/frames/69033/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into glass"}]} +{"id": "000000118571", "images": ["AURORA/data/something/frames/140292/first.jpg", "AURORA/data/something/frames/140292/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering nail cutter"}]} +{"id": "000000118572", "images": ["AURORA/data/something/frames/30271/first.jpg", "AURORA/data/something/frames/30271/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a placemat"}]} +{"id": "000000118573", "images": ["AURORA/data/something/frames/163541/first.jpg", "AURORA/data/something/frames/163541/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: approaching painting with your camera"}]} +{"id": "000000118574", "images": ["AURORA/data/something/frames/69142/first.jpg", "AURORA/data/something/frames/69142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) plunger of dispenser"}]} +{"id": "000000118575", "images": ["AURORA/data/something/frames/107629/first.jpg", "AURORA/data/something/frames/107629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving stapler up"}]} +{"id": "000000118576", "images": ["AURORA/data/something/frames/10073/first.jpg", "AURORA/data/something/frames/10073/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving tangerine and tangerine closer to each other"}]} +{"id": "000000118577", "images": ["AURORA/data/something/frames/70183/first.jpg", "AURORA/data/something/frames/70183/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing stone with pencil"}]} +{"id": "000000118578", "images": ["AURORA/data/something/frames/144971/first.jpg", "AURORA/data/something/frames/144971/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the remote and the mouse closer to each other"}]} +{"id": "000000118579", "images": ["AURORA/data/something/frames/127516/first.jpg", "AURORA/data/something/frames/127516/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a peg into a bowl"}]} +{"id": "000000118580", "images": ["AURORA/data/something/frames/122012/first.jpg", "AURORA/data/something/frames/122012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing ink bottle from left to right"}]} +{"id": "000000118581", "images": ["AURORA/data/something/frames/151732/first.jpg", "AURORA/data/something/frames/151732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a coin into a box"}]} +{"id": "000000118582", "images": ["AURORA/data/something/frames/209656/first.jpg", "AURORA/data/something/frames/209656/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking tin out of cup"}]} +{"id": "000000118583", "images": ["AURORA/data/something/frames/219597/first.jpg", "AURORA/data/something/frames/219597/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118584", "images": ["AURORA/data/something/frames/151673/first.jpg", "AURORA/data/something/frames/151673/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting nail clipper behind wallet"}]} +{"id": "000000118585", "images": ["AURORA/data/something/frames/198264/first.jpg", "AURORA/data/something/frames/198264/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving sugar away from coffee"}]} +{"id": "000000118586", "images": ["AURORA/data/something/frames/100719/first.jpg", "AURORA/data/something/frames/100719/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming brown bracelet"}]} +{"id": "000000118587", "images": ["AURORA/data/something/frames/132392/first.jpg", "AURORA/data/something/frames/132392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with a bottle of honey on it"}]} +{"id": "000000118588", "images": ["AURORA/data/something/frames/150362/first.jpg", "AURORA/data/something/frames/150362/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing purple microfiber from right to left"}]} +{"id": "000000118589", "images": ["AURORA/data/something/frames/48412/first.jpg", "AURORA/data/something/frames/48412/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting scissors with remote"}]} +{"id": "000000118590", "images": ["AURORA/data/something/frames/43072/first.jpg", "AURORA/data/something/frames/43072/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing paint bottle"}]} +{"id": "000000118591", "images": ["AURORA/data/something/frames/110204/first.jpg", "AURORA/data/something/frames/110204/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving jar across a surface without it falling down"}]} +{"id": "000000118592", "images": ["AURORA/data/something/frames/133470/first.jpg", "AURORA/data/something/frames/133470/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 4 books"}]} +{"id": "000000118593", "images": ["AURORA/data/something/frames/50203/first.jpg", "AURORA/data/something/frames/50203/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118594", "images": ["AURORA/data/something/frames/100480/first.jpg", "AURORA/data/something/frames/100480/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pin into a bowl"}]} +{"id": "000000118595", "images": ["AURORA/data/something/frames/85414/first.jpg", "AURORA/data/something/frames/85414/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting up one end of pencil box without letting it drop down"}]} +{"id": "000000118596", "images": ["AURORA/data/something/frames/217807/first.jpg", "AURORA/data/something/frames/217807/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a jbl in front of candy"}]} +{"id": "000000118597", "images": ["AURORA/data/something/frames/192457/first.jpg", "AURORA/data/something/frames/192457/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking footwear up"}]} +{"id": "000000118598", "images": ["AURORA/data/something/frames/71259/first.jpg", "AURORA/data/something/frames/71259/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring milk out of pot"}]} +{"id": "000000118599", "images": ["AURORA/data/something/frames/12993/first.jpg", "AURORA/data/something/frames/12993/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cube and a box away from each other"}]} +{"id": "000000118600", "images": ["AURORA/data/something/frames/59710/first.jpg", "AURORA/data/something/frames/59710/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cup in front of fork"}]} +{"id": "000000118601", "images": ["AURORA/data/something/frames/115996/first.jpg", "AURORA/data/something/frames/115996/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy closer to box"}]} +{"id": "000000118602", "images": ["AURORA/data/something/frames/104990/first.jpg", "AURORA/data/something/frames/104990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fluorescent light bulb into mug"}]} +{"id": "000000118603", "images": ["AURORA/data/something/frames/26196/first.jpg", "AURORA/data/something/frames/26196/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending diary so that it deforms"}]} +{"id": "000000118604", "images": ["AURORA/data/something/frames/189723/first.jpg", "AURORA/data/something/frames/189723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to a bottletop"}]} +{"id": "000000118605", "images": ["AURORA/data/something/frames/95277/first.jpg", "AURORA/data/something/frames/95277/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a vase on a surface"}]} +{"id": "000000118606", "images": ["AURORA/data/something/frames/95473/first.jpg", "AURORA/data/something/frames/95473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118607", "images": ["AURORA/data/something/frames/134207/first.jpg", "AURORA/data/something/frames/134207/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tissue just a little bit"}]} +{"id": "000000118608", "images": ["AURORA/data/something/frames/55333/first.jpg", "AURORA/data/something/frames/55333/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a glass on the table on its side, not upright"}]} +{"id": "000000118609", "images": ["AURORA/data/something/frames/48386/first.jpg", "AURORA/data/something/frames/48386/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting charger with a remote control"}]} +{"id": "000000118610", "images": ["AURORA/data/something/frames/213646/first.jpg", "AURORA/data/something/frames/213646/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving the signal lever up"}]} +{"id": "000000118611", "images": ["AURORA/data/something/frames/217091/first.jpg", "AURORA/data/something/frames/217091/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of deodorant"}]} +{"id": "000000118612", "images": ["AURORA/data/something/frames/14440/first.jpg", "AURORA/data/something/frames/14440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading peanut butter onto wheat bread"}]} +{"id": "000000118613", "images": ["AURORA/data/something/frames/81521/first.jpg", "AURORA/data/something/frames/81521/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting something that cannot actually stand upright on the table, so it falls on its side"}]} +{"id": "000000118614", "images": ["AURORA/data/something/frames/203266/first.jpg", "AURORA/data/something/frames/203266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping sugar up with a measuring cup"}]} +{"id": "000000118615", "images": ["AURORA/data/something/frames/174724/first.jpg", "AURORA/data/something/frames/174724/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto peanut butter"}]} +{"id": "000000118616", "images": ["AURORA/data/something/frames/60550/first.jpg", "AURORA/data/something/frames/60550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ring bell on the edge of stand of stone so it is not supported and falls down"}]} +{"id": "000000118617", "images": ["AURORA/data/something/frames/65678/first.jpg", "AURORA/data/something/frames/65678/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen into mug"}]} +{"id": "000000118618", "images": ["AURORA/data/something/frames/142355/first.jpg", "AURORA/data/something/frames/142355/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading matxhboxes onto newspaper"}]} +{"id": "000000118619", "images": ["AURORA/data/something/frames/103922/first.jpg", "AURORA/data/something/frames/103922/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving dvd case down"}]} +{"id": "000000118620", "images": ["AURORA/data/something/frames/78730/first.jpg", "AURORA/data/something/frames/78730/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a safety pin onto a slipper"}]} +{"id": "000000118621", "images": ["AURORA/data/something/frames/98700/first.jpg", "AURORA/data/something/frames/98700/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning glass upside down"}]} +{"id": "000000118622", "images": ["AURORA/data/something/frames/76262/first.jpg", "AURORA/data/something/frames/76262/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting dog with bottle"}]} +{"id": "000000118623", "images": ["AURORA/data/something/frames/76188/first.jpg", "AURORA/data/something/frames/76188/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping lid in front of box"}]} +{"id": "000000118624", "images": ["AURORA/data/something/frames/42061/first.jpg", "AURORA/data/something/frames/42061/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118625", "images": ["AURORA/data/something/frames/29459/first.jpg", "AURORA/data/something/frames/29459/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchstick behind a remote"}]} +{"id": "000000118626", "images": ["AURORA/data/something/frames/26482/first.jpg", "AURORA/data/something/frames/26482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing a tissue box, revealing a dvd behind"}]} +{"id": "000000118627", "images": ["AURORA/data/something/frames/92852/first.jpg", "AURORA/data/something/frames/92852/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading chocolate onto waffel"}]} +{"id": "000000118628", "images": ["AURORA/data/something/frames/88513/first.jpg", "AURORA/data/something/frames/88513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking red colour sharpner out of yellow container"}]} +{"id": "000000118629", "images": ["AURORA/data/something/frames/180544/first.jpg", "AURORA/data/something/frames/180544/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering pool"}]} +{"id": "000000118630", "images": ["AURORA/data/something/frames/43177/first.jpg", "AURORA/data/something/frames/43177/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting block into hole"}]} +{"id": "000000118631", "images": ["AURORA/data/something/frames/49025/first.jpg", "AURORA/data/something/frames/49025/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing note pad from left to right"}]} +{"id": "000000118632", "images": ["AURORA/data/something/frames/191117/first.jpg", "AURORA/data/something/frames/191117/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keys into mug"}]} +{"id": "000000118633", "images": ["AURORA/data/something/frames/161576/first.jpg", "AURORA/data/something/frames/161576/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting toys into basket"}]} +{"id": "000000118634", "images": ["AURORA/data/something/frames/126093/first.jpg", "AURORA/data/something/frames/126093/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming motorbike"}]} +{"id": "000000118635", "images": ["AURORA/data/something/frames/1754/first.jpg", "AURORA/data/something/frames/1754/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pen onto karpet"}]} +{"id": "000000118636", "images": ["AURORA/data/something/frames/180372/first.jpg", "AURORA/data/something/frames/180372/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: removing mug, revealing tape behind"}]} +{"id": "000000118637", "images": ["AURORA/data/something/frames/55067/first.jpg", "AURORA/data/something/frames/55067/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying a soda can on the table on its side, not upright"}]} +{"id": "000000118638", "images": ["AURORA/data/something/frames/15242/first.jpg", "AURORA/data/something/frames/15242/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking color paper clip"}]} +{"id": "000000118639", "images": ["AURORA/data/something/frames/143311/first.jpg", "AURORA/data/something/frames/143311/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing green chalk from right to left"}]} +{"id": "000000118640", "images": ["AURORA/data/something/frames/23934/first.jpg", "AURORA/data/something/frames/23934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying cardboard box on the table on its side, not upright"}]} +{"id": "000000118641", "images": ["AURORA/data/something/frames/87684/first.jpg", "AURORA/data/something/frames/87684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking highlighter out of glass"}]} +{"id": "000000118642", "images": ["AURORA/data/something/frames/163119/first.jpg", "AURORA/data/something/frames/163119/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping container with pennies over, so pennies falls out"}]} +{"id": "000000118643", "images": ["AURORA/data/something/frames/15512/first.jpg", "AURORA/data/something/frames/15512/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into socket but pulling it right out as you remove your hand"}]} +{"id": "000000118644", "images": ["AURORA/data/something/frames/149908/first.jpg", "AURORA/data/something/frames/149908/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pin in front of a handkerchief"}]} +{"id": "000000118645", "images": ["AURORA/data/something/frames/10888/first.jpg", "AURORA/data/something/frames/10888/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering an apple"}]} +{"id": "000000118646", "images": ["AURORA/data/something/frames/26635/first.jpg", "AURORA/data/something/frames/26635/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending a stick until it breaks"}]} +{"id": "000000118647", "images": ["AURORA/data/something/frames/89783/first.jpg", "AURORA/data/something/frames/89783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a paper heart up"}]} +{"id": "000000118648", "images": ["AURORA/data/something/frames/6731/first.jpg", "AURORA/data/something/frames/6731/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a towel"}]} +{"id": "000000118649", "images": ["AURORA/data/something/frames/149607/first.jpg", "AURORA/data/something/frames/149607/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling pepper onto bread"}]} +{"id": "000000118650", "images": ["AURORA/data/something/frames/41645/first.jpg", "AURORA/data/something/frames/41645/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging an earphone into a mobile gadget"}]} +{"id": "000000118651", "images": ["AURORA/data/something/frames/89568/first.jpg", "AURORA/data/something/frames/89568/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a jar onto another jar"}]} +{"id": "000000118652", "images": ["AURORA/data/something/frames/66638/first.jpg", "AURORA/data/something/frames/66638/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping something off of something"}]} +{"id": "000000118653", "images": ["AURORA/data/something/frames/216578/first.jpg", "AURORA/data/something/frames/216578/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone next to yellowbook"}]} +{"id": "000000118654", "images": ["AURORA/data/something/frames/125701/first.jpg", "AURORA/data/something/frames/125701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling remote from behind of blocks"}]} +{"id": "000000118655", "images": ["AURORA/data/something/frames/204496/first.jpg", "AURORA/data/something/frames/204496/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming printer"}]} +{"id": "000000118656", "images": ["AURORA/data/something/frames/9166/first.jpg", "AURORA/data/something/frames/9166/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning deodorant upside down"}]} +{"id": "000000118657", "images": ["AURORA/data/something/frames/54551/first.jpg", "AURORA/data/something/frames/54551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening gate"}]} +{"id": "000000118658", "images": ["AURORA/data/something/frames/50514/first.jpg", "AURORA/data/something/frames/50514/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: picking cellphone up"}]} +{"id": "000000118659", "images": ["AURORA/data/something/frames/174626/first.jpg", "AURORA/data/something/frames/174626/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into outlet but pulling it right out as you remove your hand"}]} +{"id": "000000118660", "images": ["AURORA/data/something/frames/56964/first.jpg", "AURORA/data/something/frames/56964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118661", "images": ["AURORA/data/something/frames/156566/first.jpg", "AURORA/data/something/frames/156566/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning water bottle upside down"}]} +{"id": "000000118662", "images": ["AURORA/data/something/frames/181782/first.jpg", "AURORA/data/something/frames/181782/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping spoon into cup"}]} +{"id": "000000118663", "images": ["AURORA/data/something/frames/220513/first.jpg", "AURORA/data/something/frames/220513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking phone out of mug"}]} +{"id": "000000118664", "images": ["AURORA/data/something/frames/32068/first.jpg", "AURORA/data/something/frames/32068/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting keys with remote"}]} +{"id": "000000118665", "images": ["AURORA/data/something/frames/137808/first.jpg", "AURORA/data/something/frames/137808/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming picture"}]} +{"id": "000000118666", "images": ["AURORA/data/something/frames/12388/first.jpg", "AURORA/data/something/frames/12388/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting glass into bowl"}]} +{"id": "000000118667", "images": ["AURORA/data/something/frames/142652/first.jpg", "AURORA/data/something/frames/142652/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending spoon so that it deforms"}]} +{"id": "000000118668", "images": ["AURORA/data/something/frames/209892/first.jpg", "AURORA/data/something/frames/209892/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup and spoon away from each other"}]} +{"id": "000000118669", "images": ["AURORA/data/something/frames/150031/first.jpg", "AURORA/data/something/frames/150031/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting usb cable upright on the table"}]} +{"id": "000000118670", "images": ["AURORA/data/something/frames/171877/first.jpg", "AURORA/data/something/frames/171877/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil"}]} +{"id": "000000118671", "images": ["AURORA/data/something/frames/99513/first.jpg", "AURORA/data/something/frames/99513/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto a knife"}]} +{"id": "000000118672", "images": ["AURORA/data/something/frames/158318/first.jpg", "AURORA/data/something/frames/158318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle being deflected from carton"}]} +{"id": "000000118673", "images": ["AURORA/data/something/frames/98211/first.jpg", "AURORA/data/something/frames/98211/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging plug into power bar"}]} +{"id": "000000118674", "images": ["AURORA/data/something/frames/169659/first.jpg", "AURORA/data/something/frames/169659/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending plastic knife until it breaks"}]} +{"id": "000000118675", "images": ["AURORA/data/something/frames/137213/first.jpg", "AURORA/data/something/frames/137213/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a pen onto the floor"}]} +{"id": "000000118676", "images": ["AURORA/data/something/frames/168973/first.jpg", "AURORA/data/something/frames/168973/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a coin to other coins"}]} +{"id": "000000118677", "images": ["AURORA/data/something/frames/110156/first.jpg", "AURORA/data/something/frames/110156/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cookie upright on the table, so it falls on its side"}]} +{"id": "000000118678", "images": ["AURORA/data/something/frames/201910/first.jpg", "AURORA/data/something/frames/201910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toothbrush towards the camera"}]} +{"id": "000000118679", "images": ["AURORA/data/something/frames/60555/first.jpg", "AURORA/data/something/frames/60555/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming krishna idole"}]} +{"id": "000000118680", "images": ["AURORA/data/something/frames/217121/first.jpg", "AURORA/data/something/frames/217121/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming lorry"}]} +{"id": "000000118681", "images": ["AURORA/data/something/frames/123565/first.jpg", "AURORA/data/something/frames/123565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing napkin into mug"}]} +{"id": "000000118682", "images": ["AURORA/data/something/frames/143289/first.jpg", "AURORA/data/something/frames/143289/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118683", "images": ["AURORA/data/something/frames/51701/first.jpg", "AURORA/data/something/frames/51701/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing a piece of paper into two pieces"}]} +{"id": "000000118684", "images": ["AURORA/data/something/frames/145214/first.jpg", "AURORA/data/something/frames/145214/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting ball on the edge of table so it is not supported and falls down"}]} +{"id": "000000118685", "images": ["AURORA/data/something/frames/174245/first.jpg", "AURORA/data/something/frames/174245/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting fluorescent light bulb next to mug"}]} +{"id": "000000118686", "images": ["AURORA/data/something/frames/122370/first.jpg", "AURORA/data/something/frames/122370/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking glass from desk"}]} +{"id": "000000118687", "images": ["AURORA/data/something/frames/68062/first.jpg", "AURORA/data/something/frames/68062/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: paper box colliding with another paper box and both are being deflected"}]} +{"id": "000000118688", "images": ["AURORA/data/something/frames/181326/first.jpg", "AURORA/data/something/frames/181326/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting placemat with glass on it"}]} +{"id": "000000118689", "images": ["AURORA/data/something/frames/199111/first.jpg", "AURORA/data/something/frames/199111/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving lid of shampoo container"}]} +{"id": "000000118690", "images": ["AURORA/data/something/frames/96588/first.jpg", "AURORA/data/something/frames/96588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending steel spoon so that it deforms"}]} +{"id": "000000118691", "images": ["AURORA/data/something/frames/180398/first.jpg", "AURORA/data/something/frames/180398/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving handle of a door lock"}]} +{"id": "000000118692", "images": ["AURORA/data/something/frames/67732/first.jpg", "AURORA/data/something/frames/67732/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting (wringing) sponge wet until water comes out"}]} +{"id": "000000118693", "images": ["AURORA/data/something/frames/104179/first.jpg", "AURORA/data/something/frames/104179/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mobile phone up"}]} +{"id": "000000118694", "images": ["AURORA/data/something/frames/166450/first.jpg", "AURORA/data/something/frames/166450/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting sponge on the edge of table so it is not supported and falls down"}]} +{"id": "000000118695", "images": ["AURORA/data/something/frames/167779/first.jpg", "AURORA/data/something/frames/167779/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000118696", "images": ["AURORA/data/something/frames/119934/first.jpg", "AURORA/data/something/frames/119934/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting orange underneath notebook"}]} +{"id": "000000118697", "images": ["AURORA/data/something/frames/32587/first.jpg", "AURORA/data/something/frames/32587/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing thread into a coffee can"}]} +{"id": "000000118698", "images": ["AURORA/data/something/frames/156523/first.jpg", "AURORA/data/something/frames/156523/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a pen from right to left"}]} +{"id": "000000118699", "images": ["AURORA/data/something/frames/67306/first.jpg", "AURORA/data/something/frames/67306/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting chocolate onto tie"}]} +{"id": "000000118700", "images": ["AURORA/data/something/frames/146990/first.jpg", "AURORA/data/something/frames/146990/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing box"}]} +{"id": "000000118701", "images": ["AURORA/data/something/frames/133314/first.jpg", "AURORA/data/something/frames/133314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a plate on it until it starts sliding down"}]} +{"id": "000000118702", "images": ["AURORA/data/something/frames/152550/first.jpg", "AURORA/data/something/frames/152550/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a flashlight away from a smartphone"}]} +{"id": "000000118703", "images": ["AURORA/data/something/frames/10449/first.jpg", "AURORA/data/something/frames/10449/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: laying clock on the table on its side, not upright"}]} +{"id": "000000118704", "images": ["AURORA/data/something/frames/200684/first.jpg", "AURORA/data/something/frames/200684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting clip box onto stencil"}]} +{"id": "000000118705", "images": ["AURORA/data/something/frames/30690/first.jpg", "AURORA/data/something/frames/30690/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with lotion container on it until it starts sliding down"}]} +{"id": "000000118706", "images": ["AURORA/data/something/frames/207410/first.jpg", "AURORA/data/something/frames/207410/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading peanut butter onto a plate"}]} +{"id": "000000118707", "images": ["AURORA/data/something/frames/185504/first.jpg", "AURORA/data/something/frames/185504/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118708", "images": ["AURORA/data/something/frames/17367/first.jpg", "AURORA/data/something/frames/17367/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting mouse next to keyboard"}]} +{"id": "000000118709", "images": ["AURORA/data/something/frames/63938/first.jpg", "AURORA/data/something/frames/63938/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118710", "images": ["AURORA/data/something/frames/182551/first.jpg", "AURORA/data/something/frames/182551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving smart phone down"}]} +{"id": "000000118711", "images": ["AURORA/data/something/frames/49208/first.jpg", "AURORA/data/something/frames/49208/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) handle of a mug"}]} +{"id": "000000118712", "images": ["AURORA/data/something/frames/43615/first.jpg", "AURORA/data/something/frames/43615/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: wiping dust off of a jar"}]} +{"id": "000000118713", "images": ["AURORA/data/something/frames/56562/first.jpg", "AURORA/data/something/frames/56562/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a hairdryer into the wall"}]} +{"id": "000000118714", "images": ["AURORA/data/something/frames/219444/first.jpg", "AURORA/data/something/frames/219444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting phone onto lotion container"}]} +{"id": "000000118715", "images": ["AURORA/data/something/frames/21830/first.jpg", "AURORA/data/something/frames/21830/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking straw"}]} +{"id": "000000118716", "images": ["AURORA/data/something/frames/76136/first.jpg", "AURORA/data/something/frames/76136/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking piece of garbage"}]} +{"id": "000000118717", "images": ["AURORA/data/something/frames/63783/first.jpg", "AURORA/data/something/frames/63783/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping pillow behind basket"}]} +{"id": "000000118718", "images": ["AURORA/data/something/frames/45444/first.jpg", "AURORA/data/something/frames/45444/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking box so that it falls over"}]} +{"id": "000000118719", "images": ["AURORA/data/something/frames/76426/first.jpg", "AURORA/data/something/frames/76426/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting eraser into box"}]} +{"id": "000000118720", "images": ["AURORA/data/something/frames/67492/first.jpg", "AURORA/data/something/frames/67492/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking red toy car from table"}]} +{"id": "000000118721", "images": ["AURORA/data/something/frames/188907/first.jpg", "AURORA/data/something/frames/188907/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping cow behind box"}]} +{"id": "000000118722", "images": ["AURORA/data/something/frames/17284/first.jpg", "AURORA/data/something/frames/17284/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing toilet paper just a little bit"}]} +{"id": "000000118723", "images": ["AURORA/data/something/frames/195590/first.jpg", "AURORA/data/something/frames/195590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing mircowave"}]} +{"id": "000000118724", "images": ["AURORA/data/something/frames/206602/first.jpg", "AURORA/data/something/frames/206602/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting remote, lipbalm and keychain on the table"}]} +{"id": "000000118725", "images": ["AURORA/data/something/frames/53473/first.jpg", "AURORA/data/something/frames/53473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a ball"}]} +{"id": "000000118726", "images": ["AURORA/data/something/frames/146187/first.jpg", "AURORA/data/something/frames/146187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a can onto a table"}]} +{"id": "000000118727", "images": ["AURORA/data/something/frames/212416/first.jpg", "AURORA/data/something/frames/212416/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen on the edge of chair so it is not supported and falls down"}]} +{"id": "000000118728", "images": ["AURORA/data/something/frames/116582/first.jpg", "AURORA/data/something/frames/116582/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving something up"}]} +{"id": "000000118729", "images": ["AURORA/data/something/frames/79740/first.jpg", "AURORA/data/something/frames/79740/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a plug into socket"}]} +{"id": "000000118730", "images": ["AURORA/data/something/frames/91964/first.jpg", "AURORA/data/something/frames/91964/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing handle onto door"}]} +{"id": "000000118731", "images": ["AURORA/data/something/frames/13540/first.jpg", "AURORA/data/something/frames/13540/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen into a pen case"}]} +{"id": "000000118732", "images": ["AURORA/data/something/frames/78494/first.jpg", "AURORA/data/something/frames/78494/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a toy car from right to left"}]} +{"id": "000000118733", "images": ["AURORA/data/something/frames/177586/first.jpg", "AURORA/data/something/frames/177586/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto table"}]} +{"id": "000000118734", "images": ["AURORA/data/something/frames/60110/first.jpg", "AURORA/data/something/frames/60110/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper just a little bit"}]} +{"id": "000000118735", "images": ["AURORA/data/something/frames/96030/first.jpg", "AURORA/data/something/frames/96030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving toy car away from toy man"}]} +{"id": "000000118736", "images": ["AURORA/data/something/frames/188482/first.jpg", "AURORA/data/something/frames/188482/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cord into outlet"}]} +{"id": "000000118737", "images": ["AURORA/data/something/frames/35314/first.jpg", "AURORA/data/something/frames/35314/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving wooden stick closer to red hair band"}]} +{"id": "000000118738", "images": ["AURORA/data/something/frames/55511/first.jpg", "AURORA/data/something/frames/55511/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting a slipper"}]} +{"id": "000000118739", "images": ["AURORA/data/something/frames/210836/first.jpg", "AURORA/data/something/frames/210836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into cup"}]} +{"id": "000000118740", "images": ["AURORA/data/something/frames/119936/first.jpg", "AURORA/data/something/frames/119936/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a notebook upside down"}]} +{"id": "000000118741", "images": ["AURORA/data/something/frames/166187/first.jpg", "AURORA/data/something/frames/166187/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting cup with pen"}]} +{"id": "000000118742", "images": ["AURORA/data/something/frames/84316/first.jpg", "AURORA/data/something/frames/84316/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a glue with screwdriver"}]} +{"id": "000000118743", "images": ["AURORA/data/something/frames/65684/first.jpg", "AURORA/data/something/frames/65684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting cloth"}]} +{"id": "000000118744", "images": ["AURORA/data/something/frames/20379/first.jpg", "AURORA/data/something/frames/20379/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pen upright on the table, so it falls on its side"}]} +{"id": "000000118745", "images": ["AURORA/data/something/frames/123713/first.jpg", "AURORA/data/something/frames/123713/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering keys with napkin"}]} +{"id": "000000118746", "images": ["AURORA/data/something/frames/118950/first.jpg", "AURORA/data/something/frames/118950/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a nail-brush on it until it starts sliding down"}]} +{"id": "000000118747", "images": ["AURORA/data/something/frames/178115/first.jpg", "AURORA/data/something/frames/178115/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a wallet upside down"}]} +{"id": "000000118748", "images": ["AURORA/data/something/frames/132440/first.jpg", "AURORA/data/something/frames/132440/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking mobile phone from floor"}]} +{"id": "000000118749", "images": ["AURORA/data/something/frames/31658/first.jpg", "AURORA/data/something/frames/31658/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing coffee from right to left"}]} +{"id": "000000118750", "images": ["AURORA/data/something/frames/121668/first.jpg", "AURORA/data/something/frames/121668/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera upwards while filming waist basket"}]} +{"id": "000000118751", "images": ["AURORA/data/something/frames/207651/first.jpg", "AURORA/data/something/frames/207651/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting camera into hat"}]} +{"id": "000000118752", "images": ["AURORA/data/something/frames/17176/first.jpg", "AURORA/data/something/frames/17176/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering something with something"}]} +{"id": "000000118753", "images": ["AURORA/data/something/frames/56889/first.jpg", "AURORA/data/something/frames/56889/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving car across a surface without it falling down"}]} +{"id": "000000118754", "images": ["AURORA/data/something/frames/116863/first.jpg", "AURORA/data/something/frames/116863/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling watch out of box"}]} +{"id": "000000118755", "images": ["AURORA/data/something/frames/111677/first.jpg", "AURORA/data/something/frames/111677/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a lighter upright on the table"}]} +{"id": "000000118756", "images": ["AURORA/data/something/frames/97085/first.jpg", "AURORA/data/something/frames/97085/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a book with sunglasses on it"}]} +{"id": "000000118757", "images": ["AURORA/data/something/frames/51243/first.jpg", "AURORA/data/something/frames/51243/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water onto coffee table"}]} +{"id": "000000118758", "images": ["AURORA/data/something/frames/55773/first.jpg", "AURORA/data/something/frames/55773/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting orange cup with key"}]} +{"id": "000000118759", "images": ["AURORA/data/something/frames/27382/first.jpg", "AURORA/data/something/frames/27382/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing an accumulator so that it almost falls off but doesn't"}]} +{"id": "000000118760", "images": ["AURORA/data/something/frames/190022/first.jpg", "AURORA/data/something/frames/190022/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting a big ball with cardboard"}]} +{"id": "000000118761", "images": ["AURORA/data/something/frames/150551/first.jpg", "AURORA/data/something/frames/150551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into beaker"}]} +{"id": "000000118762", "images": ["AURORA/data/something/frames/210684/first.jpg", "AURORA/data/something/frames/210684/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending something so that it deforms"}]} +{"id": "000000118763", "images": ["AURORA/data/something/frames/134399/first.jpg", "AURORA/data/something/frames/134399/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with clip on it until it starts sliding down"}]} +{"id": "000000118764", "images": ["AURORA/data/something/frames/52343/first.jpg", "AURORA/data/something/frames/52343/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding paper"}]} +{"id": "000000118765", "images": ["AURORA/data/something/frames/81318/first.jpg", "AURORA/data/something/frames/81318/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a wallet down"}]} +{"id": "000000118766", "images": ["AURORA/data/something/frames/121756/first.jpg", "AURORA/data/something/frames/121756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a cigarette pack behind a lighter"}]} +{"id": "000000118767", "images": ["AURORA/data/something/frames/84104/first.jpg", "AURORA/data/something/frames/84104/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling lipstick from right to left"}]} +{"id": "000000118768", "images": ["AURORA/data/something/frames/168294/first.jpg", "AURORA/data/something/frames/168294/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching paper to book"}]} +{"id": "000000118769", "images": ["AURORA/data/something/frames/181154/first.jpg", "AURORA/data/something/frames/181154/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: scooping banana up with cup"}]} +{"id": "000000118770", "images": ["AURORA/data/something/frames/83090/first.jpg", "AURORA/data/something/frames/83090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing sunglasses so that it almost falls off but doesn't"}]} +{"id": "000000118771", "images": ["AURORA/data/something/frames/174788/first.jpg", "AURORA/data/something/frames/174788/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cup closer to pen"}]} +{"id": "000000118772", "images": ["AURORA/data/something/frames/52026/first.jpg", "AURORA/data/something/frames/52026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone wire into phone but pulling it right out as you remove your hand"}]} +{"id": "000000118773", "images": ["AURORA/data/something/frames/76639/first.jpg", "AURORA/data/something/frames/76639/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting cookie jar and glass on the table"}]} +{"id": "000000118774", "images": ["AURORA/data/something/frames/82090/first.jpg", "AURORA/data/something/frames/82090/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming red watch box"}]} +{"id": "000000118775", "images": ["AURORA/data/something/frames/11477/first.jpg", "AURORA/data/something/frames/11477/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a cylindrical battery and a pocket watch so they collide with each other"}]} +{"id": "000000118776", "images": ["AURORA/data/something/frames/149237/first.jpg", "AURORA/data/something/frames/149237/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing tearing a sheet of paper into two pieces into two pieces"}]} +{"id": "000000118777", "images": ["AURORA/data/something/frames/193251/first.jpg", "AURORA/data/something/frames/193251/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting tape and scissors on the table"}]} +{"id": "000000118778", "images": ["AURORA/data/something/frames/201420/first.jpg", "AURORA/data/something/frames/201420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming eggplant"}]} +{"id": "000000118779", "images": ["AURORA/data/something/frames/136563/first.jpg", "AURORA/data/something/frames/136563/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a glue in front of a container"}]} +{"id": "000000118780", "images": ["AURORA/data/something/frames/167239/first.jpg", "AURORA/data/something/frames/167239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a bead into an organizer box"}]} +{"id": "000000118781", "images": ["AURORA/data/something/frames/4319/first.jpg", "AURORA/data/something/frames/4319/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting 2 coasters onto a glass"}]} +{"id": "000000118782", "images": ["AURORA/data/something/frames/67155/first.jpg", "AURORA/data/something/frames/67155/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving cigarette down"}]} +{"id": "000000118783", "images": ["AURORA/data/something/frames/106098/first.jpg", "AURORA/data/something/frames/106098/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging air conditioning unit into wall but pulling it right out as you remove your hand"}]} +{"id": "000000118784", "images": ["AURORA/data/something/frames/219037/first.jpg", "AURORA/data/something/frames/219037/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing a stuffed bear off of a dresser"}]} +{"id": "000000118785", "images": ["AURORA/data/something/frames/204551/first.jpg", "AURORA/data/something/frames/204551/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a can with a pencil on it"}]} +{"id": "000000118786", "images": ["AURORA/data/something/frames/127585/first.jpg", "AURORA/data/something/frames/127585/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping small canister over"}]} +{"id": "000000118787", "images": ["AURORA/data/something/frames/98819/first.jpg", "AURORA/data/something/frames/98819/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning cellphone upside down"}]} +{"id": "000000118788", "images": ["AURORA/data/something/frames/206689/first.jpg", "AURORA/data/something/frames/206689/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting nailpolish on a surface"}]} +{"id": "000000118789", "images": ["AURORA/data/something/frames/158643/first.jpg", "AURORA/data/something/frames/158643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing shirt into hand"}]} +{"id": "000000118790", "images": ["AURORA/data/something/frames/41828/first.jpg", "AURORA/data/something/frames/41828/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pencil behind mug"}]} +{"id": "000000118791", "images": ["AURORA/data/something/frames/87145/first.jpg", "AURORA/data/something/frames/87145/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one spray bottle"}]} +{"id": "000000118792", "images": ["AURORA/data/something/frames/207200/first.jpg", "AURORA/data/something/frames/207200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling a tail from behind of a cat"}]} +{"id": "000000118793", "images": ["AURORA/data/something/frames/208045/first.jpg", "AURORA/data/something/frames/208045/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a hair brush on a surface"}]} +{"id": "000000118794", "images": ["AURORA/data/something/frames/110143/first.jpg", "AURORA/data/something/frames/110143/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stacking 3 pot"}]} +{"id": "000000118795", "images": ["AURORA/data/something/frames/39831/first.jpg", "AURORA/data/something/frames/39831/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spreading butter onto bread"}]} +{"id": "000000118796", "images": ["AURORA/data/something/frames/171488/first.jpg", "AURORA/data/something/frames/171488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: poking plush doll so that it falls over"}]} +{"id": "000000118797", "images": ["AURORA/data/something/frames/130325/first.jpg", "AURORA/data/something/frames/130325/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling sugar onto a cup"}]} +{"id": "000000118798", "images": ["AURORA/data/something/frames/39672/first.jpg", "AURORA/data/something/frames/39672/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottles with bottles"}]} +{"id": "000000118799", "images": ["AURORA/data/something/frames/70940/first.jpg", "AURORA/data/something/frames/70940/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing chip bag into bigger bag"}]} +{"id": "000000118800", "images": ["AURORA/data/something/frames/91488/first.jpg", "AURORA/data/something/frames/91488/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a box behind a stack"}]} +{"id": "000000118801", "images": ["AURORA/data/something/frames/114641/first.jpg", "AURORA/data/something/frames/114641/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving clock and pill bottle closer to each other"}]} +{"id": "000000118802", "images": ["AURORA/data/something/frames/81012/first.jpg", "AURORA/data/something/frames/81012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a glass"}]} +{"id": "000000118803", "images": ["AURORA/data/something/frames/39756/first.jpg", "AURORA/data/something/frames/39756/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing pen from right to left"}]} +{"id": "000000118804", "images": ["AURORA/data/something/frames/117524/first.jpg", "AURORA/data/something/frames/117524/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving plastic flower closer to toy duck"}]} +{"id": "000000118805", "images": ["AURORA/data/something/frames/145532/first.jpg", "AURORA/data/something/frames/145532/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping toy onto tile"}]} +{"id": "000000118806", "images": ["AURORA/data/something/frames/33671/first.jpg", "AURORA/data/something/frames/33671/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: stuffing sheet into can"}]} +{"id": "000000118807", "images": ["AURORA/data/something/frames/3839/first.jpg", "AURORA/data/something/frames/3839/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting brush, scissors and comb on the table"}]} +{"id": "000000118808", "images": ["AURORA/data/something/frames/22200/first.jpg", "AURORA/data/something/frames/22200/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bottle colliding with bottle opener and both are being deflected"}]} +{"id": "000000118809", "images": ["AURORA/data/something/frames/100026/first.jpg", "AURORA/data/something/frames/100026/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting airscrew"}]} +{"id": "000000118810", "images": ["AURORA/data/something/frames/68862/first.jpg", "AURORA/data/something/frames/68862/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a wrist band with a hand"}]} +{"id": "000000118811", "images": ["AURORA/data/something/frames/195082/first.jpg", "AURORA/data/something/frames/195082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving a beer can away from a mug"}]} +{"id": "000000118812", "images": ["AURORA/data/something/frames/57070/first.jpg", "AURORA/data/something/frames/57070/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving mouse up"}]} +{"id": "000000118813", "images": ["AURORA/data/something/frames/177266/first.jpg", "AURORA/data/something/frames/177266/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into power socket"}]} +{"id": "000000118814", "images": ["AURORA/data/something/frames/118082/first.jpg", "AURORA/data/something/frames/118082/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: folding a book page"}]} +{"id": "000000118815", "images": ["AURORA/data/something/frames/220761/first.jpg", "AURORA/data/something/frames/220761/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping an apple next to a mug"}]} +{"id": "000000118816", "images": ["AURORA/data/something/frames/67092/first.jpg", "AURORA/data/something/frames/67092/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting hat behind shoe"}]} +{"id": "000000118817", "images": ["AURORA/data/something/frames/45135/first.jpg", "AURORA/data/something/frames/45135/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118818", "images": ["AURORA/data/something/frames/139001/first.jpg", "AURORA/data/something/frames/139001/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pen"}]} +{"id": "000000118819", "images": ["AURORA/data/something/frames/55424/first.jpg", "AURORA/data/something/frames/55424/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: touching (without moving) lightningbulb of lamp"}]} +{"id": "000000118820", "images": ["AURORA/data/something/frames/176239/first.jpg", "AURORA/data/something/frames/176239/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming old mobile phone"}]} +{"id": "000000118821", "images": ["AURORA/data/something/frames/169723/first.jpg", "AURORA/data/something/frames/169723/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging cable into connector"}]} +{"id": "000000118822", "images": ["AURORA/data/something/frames/15622/first.jpg", "AURORA/data/something/frames/15622/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding towel"}]} +{"id": "000000118823", "images": ["AURORA/data/something/frames/9407/first.jpg", "AURORA/data/something/frames/9407/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pen with a tissue"}]} +{"id": "000000118824", "images": ["AURORA/data/something/frames/114693/first.jpg", "AURORA/data/something/frames/114693/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a collar up completely without letting it drop down"}]} +{"id": "000000118825", "images": ["AURORA/data/something/frames/34767/first.jpg", "AURORA/data/something/frames/34767/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming purple microfiber"}]} +{"id": "000000118826", "images": ["AURORA/data/something/frames/196675/first.jpg", "AURORA/data/something/frames/196675/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering snail shell with paper"}]} +{"id": "000000118827", "images": ["AURORA/data/something/frames/196305/first.jpg", "AURORA/data/something/frames/196305/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging phone charger into wall outlet but pulling it right out as you remove your hand"}]} +{"id": "000000118828", "images": ["AURORA/data/something/frames/160835/first.jpg", "AURORA/data/something/frames/160835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving chalk up"}]} +{"id": "000000118829", "images": ["AURORA/data/something/frames/65088/first.jpg", "AURORA/data/something/frames/65088/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting pen next to pen"}]} +{"id": "000000118830", "images": ["AURORA/data/something/frames/10126/first.jpg", "AURORA/data/something/frames/10126/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting magnifying glass up completely without letting it drop down"}]} +{"id": "000000118831", "images": ["AURORA/data/something/frames/171030/first.jpg", "AURORA/data/something/frames/171030/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing bottle off of counter"}]} +{"id": "000000118832", "images": ["AURORA/data/something/frames/216565/first.jpg", "AURORA/data/something/frames/216565/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping wallet onto chair"}]} +{"id": "000000118833", "images": ["AURORA/data/something/frames/174835/first.jpg", "AURORA/data/something/frames/174835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: gummy ball being deflected from tennis ball"}]} +{"id": "000000118834", "images": ["AURORA/data/something/frames/193046/first.jpg", "AURORA/data/something/frames/193046/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving crayon closer to candle"}]} +{"id": "000000118835", "images": ["AURORA/data/something/frames/83949/first.jpg", "AURORA/data/something/frames/83949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pepper shaker on a surface"}]} +{"id": "000000118836", "images": ["AURORA/data/something/frames/131836/first.jpg", "AURORA/data/something/frames/131836/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening box"}]} +{"id": "000000118837", "images": ["AURORA/data/something/frames/171174/first.jpg", "AURORA/data/something/frames/171174/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera right while filming the tv"}]} +{"id": "000000118838", "images": ["AURORA/data/something/frames/44142/first.jpg", "AURORA/data/something/frames/44142/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: hitting chair with racket"}]} +{"id": "000000118839", "images": ["AURORA/data/something/frames/150212/first.jpg", "AURORA/data/something/frames/150212/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: something colliding with something and both are being deflected"}]} +{"id": "000000118840", "images": ["AURORA/data/something/frames/5589/first.jpg", "AURORA/data/something/frames/5589/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking a pompom"}]} +{"id": "000000118841", "images": ["AURORA/data/something/frames/97560/first.jpg", "AURORA/data/something/frames/97560/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting laptop onto table"}]} +{"id": "000000118842", "images": ["AURORA/data/something/frames/49392/first.jpg", "AURORA/data/something/frames/49392/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting keyd"}]} +{"id": "000000118843", "images": ["AURORA/data/something/frames/171871/first.jpg", "AURORA/data/something/frames/171871/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting bottle on a surface"}]} +{"id": "000000118844", "images": ["AURORA/data/something/frames/6949/first.jpg", "AURORA/data/something/frames/6949/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving white colour board clip down"}]} +{"id": "000000118845", "images": ["AURORA/data/something/frames/34330/first.jpg", "AURORA/data/something/frames/34330/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving bottle down"}]} +{"id": "000000118846", "images": ["AURORA/data/something/frames/213968/first.jpg", "AURORA/data/something/frames/213968/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing paper into two pieces"}]} +{"id": "000000118847", "images": ["AURORA/data/something/frames/43497/first.jpg", "AURORA/data/something/frames/43497/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning the camera left while filming plant"}]} +{"id": "000000118848", "images": ["AURORA/data/something/frames/125910/first.jpg", "AURORA/data/something/frames/125910/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding paper"}]} +{"id": "000000118849", "images": ["AURORA/data/something/frames/214327/first.jpg", "AURORA/data/something/frames/214327/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: orange being deflected from wall"}]} +{"id": "000000118850", "images": ["AURORA/data/something/frames/154473/first.jpg", "AURORA/data/something/frames/154473/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening tin"}]} +{"id": "000000118851", "images": ["AURORA/data/something/frames/194086/first.jpg", "AURORA/data/something/frames/194086/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening a box"}]} +{"id": "000000118852", "images": ["AURORA/data/something/frames/24813/first.jpg", "AURORA/data/something/frames/24813/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: attaching light bulb to socket"}]} +{"id": "000000118853", "images": ["AURORA/data/something/frames/34431/first.jpg", "AURORA/data/something/frames/34431/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a pair of socks into drawer"}]} +{"id": "000000118854", "images": ["AURORA/data/something/frames/171534/first.jpg", "AURORA/data/something/frames/171534/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving leaves of plant"}]} +{"id": "000000118855", "images": ["AURORA/data/something/frames/1014/first.jpg", "AURORA/data/something/frames/1014/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering fossil with pillow"}]} +{"id": "000000118856", "images": ["AURORA/data/something/frames/139649/first.jpg", "AURORA/data/something/frames/139649/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking soda bottle"}]} +{"id": "000000118857", "images": ["AURORA/data/something/frames/39518/first.jpg", "AURORA/data/something/frames/39518/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering white colour board clip with duster"}]} +{"id": "000000118858", "images": ["AURORA/data/something/frames/112252/first.jpg", "AURORA/data/something/frames/112252/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving charger down"}]} +{"id": "000000118859", "images": ["AURORA/data/something/frames/187802/first.jpg", "AURORA/data/something/frames/187802/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing feeding bottle from left to right"}]} +{"id": "000000118860", "images": ["AURORA/data/something/frames/163771/first.jpg", "AURORA/data/something/frames/163771/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting a bell pepper with a group of bell peppers"}]} +{"id": "000000118861", "images": ["AURORA/data/something/frames/24489/first.jpg", "AURORA/data/something/frames/24489/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing flowers from left to right"}]} +{"id": "000000118862", "images": ["AURORA/data/something/frames/50186/first.jpg", "AURORA/data/something/frames/50186/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving punching machine away from stapler"}]} +{"id": "000000118863", "images": ["AURORA/data/something/frames/146714/first.jpg", "AURORA/data/something/frames/146714/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging a cable into an outlet"}]} +{"id": "000000118864", "images": ["AURORA/data/something/frames/188755/first.jpg", "AURORA/data/something/frames/188755/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting plant with coffin on it"}]} +{"id": "000000118865", "images": ["AURORA/data/something/frames/209027/first.jpg", "AURORA/data/something/frames/209027/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering box with blanket"}]} +{"id": "000000118866", "images": ["AURORA/data/something/frames/118434/first.jpg", "AURORA/data/something/frames/118434/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping necklace in front of door"}]} +{"id": "000000118867", "images": ["AURORA/data/something/frames/141432/first.jpg", "AURORA/data/something/frames/141432/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: spilling water next to faucet"}]} +{"id": "000000118868", "images": ["AURORA/data/something/frames/110590/first.jpg", "AURORA/data/something/frames/110590/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting xbox game with phone on it"}]} +{"id": "000000118869", "images": ["AURORA/data/something/frames/13962/first.jpg", "AURORA/data/something/frames/13962/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: sprinkling flour onto mat"}]} +{"id": "000000118870", "images": ["AURORA/data/something/frames/201315/first.jpg", "AURORA/data/something/frames/201315/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging headphones into a tablet"}]} +{"id": "000000118871", "images": ["AURORA/data/something/frames/152835/first.jpg", "AURORA/data/something/frames/152835/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking orange"}]} +{"id": "000000118872", "images": ["AURORA/data/something/frames/112050/first.jpg", "AURORA/data/something/frames/112050/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening pouch"}]} +{"id": "000000118873", "images": ["AURORA/data/something/frames/86588/first.jpg", "AURORA/data/something/frames/86588/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking spoon"}]} +{"id": "000000118874", "images": ["AURORA/data/something/frames/51920/first.jpg", "AURORA/data/something/frames/51920/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: opening basket"}]} +{"id": "000000118875", "images": ["AURORA/data/something/frames/163685/first.jpg", "AURORA/data/something/frames/163685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking one of the glass bottles"}]} +{"id": "000000118876", "images": ["AURORA/data/something/frames/13339/first.jpg", "AURORA/data/something/frames/13339/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: twisting mascara tube"}]} +{"id": "000000118877", "images": ["AURORA/data/something/frames/91775/first.jpg", "AURORA/data/something/frames/91775/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning a picture upside down"}]} +{"id": "000000118878", "images": ["AURORA/data/something/frames/154735/first.jpg", "AURORA/data/something/frames/154735/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into usb port"}]} +{"id": "000000118879", "images": ["AURORA/data/something/frames/43685/first.jpg", "AURORA/data/something/frames/43685/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: bending wire so that it deforms"}]} +{"id": "000000118880", "images": ["AURORA/data/something/frames/191149/first.jpg", "AURORA/data/something/frames/191149/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pouring water into a mug"}]} +{"id": "000000118881", "images": ["AURORA/data/something/frames/205805/first.jpg", "AURORA/data/something/frames/205805/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving big ball and small ball so they collide with each other"}]} +{"id": "000000118882", "images": ["AURORA/data/something/frames/109420/first.jpg", "AURORA/data/something/frames/109420/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a lid up completely without letting it drop down"}]} +{"id": "000000118883", "images": ["AURORA/data/something/frames/208158/first.jpg", "AURORA/data/something/frames/208158/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: plugging usb into pc"}]} +{"id": "000000118884", "images": ["AURORA/data/something/frames/110495/first.jpg", "AURORA/data/something/frames/110495/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tipping a cup with milk over, so milk falls out"}]} +{"id": "000000118885", "images": ["AURORA/data/something/frames/161643/first.jpg", "AURORA/data/something/frames/161643/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a pen with tissue paper"}]} +{"id": "000000118886", "images": ["AURORA/data/something/frames/66961/first.jpg", "AURORA/data/something/frames/66961/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting book on the edge of chair so it is not supported and falls down"}]} +{"id": "000000118887", "images": ["AURORA/data/something/frames/167687/first.jpg", "AURORA/data/something/frames/167687/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling paper out of bowl"}]} +{"id": "000000118888", "images": ["AURORA/data/something/frames/136015/first.jpg", "AURORA/data/something/frames/136015/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pushing an iron from right to left"}]} +{"id": "000000118889", "images": ["AURORA/data/something/frames/103594/first.jpg", "AURORA/data/something/frames/103594/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting box on a surface"}]} +{"id": "000000118890", "images": ["AURORA/data/something/frames/34012/first.jpg", "AURORA/data/something/frames/34012/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a matchbox in front of a book"}]} +{"id": "000000118891", "images": ["AURORA/data/something/frames/195629/first.jpg", "AURORA/data/something/frames/195629/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from scotch tape with your camera"}]} +{"id": "000000118892", "images": ["AURORA/data/something/frames/110670/first.jpg", "AURORA/data/something/frames/110670/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving pen away from candle"}]} +{"id": "000000118893", "images": ["AURORA/data/something/frames/194148/first.jpg", "AURORA/data/something/frames/194148/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: taking remote out of box"}]} +{"id": "000000118894", "images": ["AURORA/data/something/frames/113233/first.jpg", "AURORA/data/something/frames/113233/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: covering a watch with a cloth"}]} +{"id": "000000118895", "images": ["AURORA/data/something/frames/196408/first.jpg", "AURORA/data/something/frames/196408/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting banana upright on the table, so it falls on its side"}]} +{"id": "000000118896", "images": ["AURORA/data/something/frames/70324/first.jpg", "AURORA/data/something/frames/70324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: lifting a surface with a watch on it until it starts sliding down"}]} +{"id": "000000118897", "images": ["AURORA/data/something/frames/87849/first.jpg", "AURORA/data/something/frames/87849/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: pulling two ends of paper so that it separates into two pieces"}]} +{"id": "000000118898", "images": ["AURORA/data/something/frames/171194/first.jpg", "AURORA/data/something/frames/171194/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: dropping a loonie into a cup"}]} +{"id": "000000118899", "images": ["AURORA/data/something/frames/52422/first.jpg", "AURORA/data/something/frames/52422/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: turning remote upside down"}]} +{"id": "000000118900", "images": ["AURORA/data/something/frames/201542/first.jpg", "AURORA/data/something/frames/201542/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: uncovering a red pencil"}]} +{"id": "000000118901", "images": ["AURORA/data/something/frames/43344/first.jpg", "AURORA/data/something/frames/43344/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: tearing handout into two pieces"}]} +{"id": "000000118902", "images": ["AURORA/data/something/frames/23324/first.jpg", "AURORA/data/something/frames/23324/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: putting t-shirt packet on a surface"}]} +{"id": "000000118903", "images": ["AURORA/data/something/frames/12777/first.jpg", "AURORA/data/something/frames/12777/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving away from waste basket with your camera"}]} +{"id": "000000118904", "images": ["AURORA/data/something/frames/151948/first.jpg", "AURORA/data/something/frames/151948/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving car key towards the camera"}]} +{"id": "000000118905", "images": ["AURORA/data/something/frames/117425/first.jpg", "AURORA/data/something/frames/117425/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: closing small freshmints"}]} +{"id": "000000118906", "images": ["AURORA/data/something/frames/157360/first.jpg", "AURORA/data/something/frames/157360/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: unfolding a shirt"}]} +{"id": "000000118907", "images": ["AURORA/data/something/frames/117478/first.jpg", "AURORA/data/something/frames/117478/last.jpg"], "conversations": [{"from": "human", "value": "You are given two sequential observations in the form of images.\n\nPast observations:\n\nNext observation after taking the action:\n\n\nYour task is to infer and describe the most likely action that occurred between the past and next observations. The action should be described concisely in natural language, capturing key changes that explain the state transition."}, {"from": "gpt", "value": "The most likely action that occurred between the observations is: moving glass up"}]} diff --git a/data/something/sft-editing-train.jsonl b/data/something/sft-editing-train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..19bdcc729ad5af90eb75b7b0aef2502427fe1023 --- /dev/null +++ b/data/something/sft-editing-train.jsonl @@ -0,0 +1,13765 @@ +{"id": "000000105143", "images": ["AURORA/data/something/frames/154202/first.jpg", "AURORA/data/something/frames/154202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming camel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105144", "images": ["AURORA/data/something/frames/195805/first.jpg", "AURORA/data/something/frames/195805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging the plug into the socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105145", "images": ["AURORA/data/something/frames/190795/first.jpg", "AURORA/data/something/frames/190795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105146", "images": ["AURORA/data/something/frames/131125/first.jpg", "AURORA/data/something/frames/131125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending carrot until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105147", "images": ["AURORA/data/something/frames/220123/first.jpg", "AURORA/data/something/frames/220123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering card with papper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105148", "images": ["AURORA/data/something/frames/32/first.jpg", "AURORA/data/something/frames/32/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105149", "images": ["AURORA/data/something/frames/1147/first.jpg", "AURORA/data/something/frames/1147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile phone and specs closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105150", "images": ["AURORA/data/something/frames/141261/first.jpg", "AURORA/data/something/frames/141261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a plastic bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105151", "images": ["AURORA/data/something/frames/35295/first.jpg", "AURORA/data/something/frames/35295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105152", "images": ["AURORA/data/something/frames/184107/first.jpg", "AURORA/data/something/frames/184107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key chain up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105153", "images": ["AURORA/data/something/frames/5140/first.jpg", "AURORA/data/something/frames/5140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105154", "images": ["AURORA/data/something/frames/71847/first.jpg", "AURORA/data/something/frames/71847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105155", "images": ["AURORA/data/something/frames/133331/first.jpg", "AURORA/data/something/frames/133331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote control onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000105156", "images": ["AURORA/data/something/frames/149139/first.jpg", "AURORA/data/something/frames/149139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toy cars onto duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000105157", "images": ["AURORA/data/something/frames/157845/first.jpg", "AURORA/data/something/frames/157845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring apple juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105158", "images": ["AURORA/data/something/frames/183482/first.jpg", "AURORA/data/something/frames/183482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105159", "images": ["AURORA/data/something/frames/198475/first.jpg", "AURORA/data/something/frames/198475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105160", "images": ["AURORA/data/something/frames/102187/first.jpg", "AURORA/data/something/frames/102187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105161", "images": ["AURORA/data/something/frames/126211/first.jpg", "AURORA/data/something/frames/126211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing fork from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105162", "images": ["AURORA/data/something/frames/14292/first.jpg", "AURORA/data/something/frames/14292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a teaspoon behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105163", "images": ["AURORA/data/something/frames/208472/first.jpg", "AURORA/data/something/frames/208472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105164", "images": ["AURORA/data/something/frames/52696/first.jpg", "AURORA/data/something/frames/52696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with spoon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105165", "images": ["AURORA/data/something/frames/64006/first.jpg", "AURORA/data/something/frames/64006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105166", "images": ["AURORA/data/something/frames/37382/first.jpg", "AURORA/data/something/frames/37382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105167", "images": ["AURORA/data/something/frames/6853/first.jpg", "AURORA/data/something/frames/6853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming shampoo bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105168", "images": ["AURORA/data/something/frames/60360/first.jpg", "AURORA/data/something/frames/60360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a marker away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105169", "images": ["AURORA/data/something/frames/45788/first.jpg", "AURORA/data/something/frames/45788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rubbing alcohol from behind of a soup dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000105170", "images": ["AURORA/data/something/frames/176844/first.jpg", "AURORA/data/something/frames/176844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a doll with a face towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105171", "images": ["AURORA/data/something/frames/207533/first.jpg", "AURORA/data/something/frames/207533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling wheat bran onto a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105172", "images": ["AURORA/data/something/frames/53834/first.jpg", "AURORA/data/something/frames/53834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife next to glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105173", "images": ["AURORA/data/something/frames/98523/first.jpg", "AURORA/data/something/frames/98523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000105174", "images": ["AURORA/data/something/frames/89300/first.jpg", "AURORA/data/something/frames/89300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening oreo package"}, {"from": "gpt", "value": ""}]} +{"id": "000000105175", "images": ["AURORA/data/something/frames/174121/first.jpg", "AURORA/data/something/frames/174121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving foot of feet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105176", "images": ["AURORA/data/something/frames/81048/first.jpg", "AURORA/data/something/frames/81048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earring up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105177", "images": ["AURORA/data/something/frames/129488/first.jpg", "AURORA/data/something/frames/129488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105178", "images": ["AURORA/data/something/frames/216225/first.jpg", "AURORA/data/something/frames/216225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105179", "images": ["AURORA/data/something/frames/179339/first.jpg", "AURORA/data/something/frames/179339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking dominoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000105180", "images": ["AURORA/data/something/frames/97447/first.jpg", "AURORA/data/something/frames/97447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping phone over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105181", "images": ["AURORA/data/something/frames/112080/first.jpg", "AURORA/data/something/frames/112080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring canola oi into the hot pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000105182", "images": ["AURORA/data/something/frames/98309/first.jpg", "AURORA/data/something/frames/98309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105183", "images": ["AURORA/data/something/frames/136247/first.jpg", "AURORA/data/something/frames/136247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105184", "images": ["AURORA/data/something/frames/129901/first.jpg", "AURORA/data/something/frames/129901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a spray bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105185", "images": ["AURORA/data/something/frames/141900/first.jpg", "AURORA/data/something/frames/141900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a textbook onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105186", "images": ["AURORA/data/something/frames/103377/first.jpg", "AURORA/data/something/frames/103377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking headphones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105187", "images": ["AURORA/data/something/frames/95874/first.jpg", "AURORA/data/something/frames/95874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105188", "images": ["AURORA/data/something/frames/88820/first.jpg", "AURORA/data/something/frames/88820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering chapstick with a pot lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000105189", "images": ["AURORA/data/something/frames/95683/first.jpg", "AURORA/data/something/frames/95683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a toy with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105190", "images": ["AURORA/data/something/frames/104527/first.jpg", "AURORA/data/something/frames/104527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending small magazine so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105191", "images": ["AURORA/data/something/frames/215203/first.jpg", "AURORA/data/something/frames/215203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering computer with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105192", "images": ["AURORA/data/something/frames/44727/first.jpg", "AURORA/data/something/frames/44727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pc so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105193", "images": ["AURORA/data/something/frames/158759/first.jpg", "AURORA/data/something/frames/158759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105194", "images": ["AURORA/data/something/frames/218282/first.jpg", "AURORA/data/something/frames/218282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105195", "images": ["AURORA/data/something/frames/72990/first.jpg", "AURORA/data/something/frames/72990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105196", "images": ["AURORA/data/something/frames/169237/first.jpg", "AURORA/data/something/frames/169237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a teddy with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000105197", "images": ["AURORA/data/something/frames/133764/first.jpg", "AURORA/data/something/frames/133764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glasses with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105198", "images": ["AURORA/data/something/frames/16687/first.jpg", "AURORA/data/something/frames/16687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a rubber duck so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105199", "images": ["AURORA/data/something/frames/106031/first.jpg", "AURORA/data/something/frames/106031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tapemeasure across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105200", "images": ["AURORA/data/something/frames/74405/first.jpg", "AURORA/data/something/frames/74405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105201", "images": ["AURORA/data/something/frames/4887/first.jpg", "AURORA/data/something/frames/4887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105202", "images": ["AURORA/data/something/frames/156885/first.jpg", "AURORA/data/something/frames/156885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping teacup with tea over, so tea falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105203", "images": ["AURORA/data/something/frames/203074/first.jpg", "AURORA/data/something/frames/203074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from wastebin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105204", "images": ["AURORA/data/something/frames/16512/first.jpg", "AURORA/data/something/frames/16512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105205", "images": ["AURORA/data/something/frames/175606/first.jpg", "AURORA/data/something/frames/175606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching small green ball with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105206", "images": ["AURORA/data/something/frames/104280/first.jpg", "AURORA/data/something/frames/104280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup in front of outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105207", "images": ["AURORA/data/something/frames/111134/first.jpg", "AURORA/data/something/frames/111134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cream tube with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105208", "images": ["AURORA/data/something/frames/89658/first.jpg", "AURORA/data/something/frames/89658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bed sheet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105209", "images": ["AURORA/data/something/frames/767/first.jpg", "AURORA/data/something/frames/767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105210", "images": ["AURORA/data/something/frames/96652/first.jpg", "AURORA/data/something/frames/96652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping train car with chapstick over, so chapstick falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105211", "images": ["AURORA/data/something/frames/220035/first.jpg", "AURORA/data/something/frames/220035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cycle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105212", "images": ["AURORA/data/something/frames/149505/first.jpg", "AURORA/data/something/frames/149505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving compass with pencil down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105213", "images": ["AURORA/data/something/frames/49419/first.jpg", "AURORA/data/something/frames/49419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bowl with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105214", "images": ["AURORA/data/something/frames/86126/first.jpg", "AURORA/data/something/frames/86126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy colliding with toy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105215", "images": ["AURORA/data/something/frames/73765/first.jpg", "AURORA/data/something/frames/73765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball in front of headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000105216", "images": ["AURORA/data/something/frames/154331/first.jpg", "AURORA/data/something/frames/154331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a small toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000105217", "images": ["AURORA/data/something/frames/174861/first.jpg", "AURORA/data/something/frames/174861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow clay container into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105218", "images": ["AURORA/data/something/frames/33834/first.jpg", "AURORA/data/something/frames/33834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking soda can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105219", "images": ["AURORA/data/something/frames/35202/first.jpg", "AURORA/data/something/frames/35202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105220", "images": ["AURORA/data/something/frames/70281/first.jpg", "AURORA/data/something/frames/70281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming atm machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000105221", "images": ["AURORA/data/something/frames/32562/first.jpg", "AURORA/data/something/frames/32562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000105222", "images": ["AURORA/data/something/frames/22383/first.jpg", "AURORA/data/something/frames/22383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105223", "images": ["AURORA/data/something/frames/95173/first.jpg", "AURORA/data/something/frames/95173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105224", "images": ["AURORA/data/something/frames/45504/first.jpg", "AURORA/data/something/frames/45504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pick up van"}, {"from": "gpt", "value": ""}]} +{"id": "000000105225", "images": ["AURORA/data/something/frames/107032/first.jpg", "AURORA/data/something/frames/107032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto referigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000105226", "images": ["AURORA/data/something/frames/124218/first.jpg", "AURORA/data/something/frames/124218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming steps"}, {"from": "gpt", "value": ""}]} +{"id": "000000105227", "images": ["AURORA/data/something/frames/129920/first.jpg", "AURORA/data/something/frames/129920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105228", "images": ["AURORA/data/something/frames/67825/first.jpg", "AURORA/data/something/frames/67825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105229", "images": ["AURORA/data/something/frames/150802/first.jpg", "AURORA/data/something/frames/150802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105230", "images": ["AURORA/data/something/frames/101585/first.jpg", "AURORA/data/something/frames/101585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and spoon closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105231", "images": ["AURORA/data/something/frames/107628/first.jpg", "AURORA/data/something/frames/107628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 breads"}, {"from": "gpt", "value": ""}]} +{"id": "000000105232", "images": ["AURORA/data/something/frames/67266/first.jpg", "AURORA/data/something/frames/67266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105233", "images": ["AURORA/data/something/frames/124412/first.jpg", "AURORA/data/something/frames/124412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking ten twigs"}, {"from": "gpt", "value": ""}]} +{"id": "000000105234", "images": ["AURORA/data/something/frames/154312/first.jpg", "AURORA/data/something/frames/154312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving garlic presser towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105235", "images": ["AURORA/data/something/frames/148258/first.jpg", "AURORA/data/something/frames/148258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000105236", "images": ["AURORA/data/something/frames/220302/first.jpg", "AURORA/data/something/frames/220302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105237", "images": ["AURORA/data/something/frames/134700/first.jpg", "AURORA/data/something/frames/134700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glass with magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105238", "images": ["AURORA/data/something/frames/195636/first.jpg", "AURORA/data/something/frames/195636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105239", "images": ["AURORA/data/something/frames/9576/first.jpg", "AURORA/data/something/frames/9576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105240", "images": ["AURORA/data/something/frames/2185/first.jpg", "AURORA/data/something/frames/2185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105241", "images": ["AURORA/data/something/frames/48640/first.jpg", "AURORA/data/something/frames/48640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000105242", "images": ["AURORA/data/something/frames/10979/first.jpg", "AURORA/data/something/frames/10979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it notes down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105243", "images": ["AURORA/data/something/frames/132896/first.jpg", "AURORA/data/something/frames/132896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping small empty bottle into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105244", "images": ["AURORA/data/something/frames/144945/first.jpg", "AURORA/data/something/frames/144945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of mustrd upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105245", "images": ["AURORA/data/something/frames/206937/first.jpg", "AURORA/data/something/frames/206937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging duracell charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105246", "images": ["AURORA/data/something/frames/59128/first.jpg", "AURORA/data/something/frames/59128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000105247", "images": ["AURORA/data/something/frames/41668/first.jpg", "AURORA/data/something/frames/41668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring drink into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105248", "images": ["AURORA/data/something/frames/168937/first.jpg", "AURORA/data/something/frames/168937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lighter being deflected from control"}, {"from": "gpt", "value": ""}]} +{"id": "000000105249", "images": ["AURORA/data/something/frames/91516/first.jpg", "AURORA/data/something/frames/91516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cap into head"}, {"from": "gpt", "value": ""}]} +{"id": "000000105250", "images": ["AURORA/data/something/frames/36379/first.jpg", "AURORA/data/something/frames/36379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105251", "images": ["AURORA/data/something/frames/26004/first.jpg", "AURORA/data/something/frames/26004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105252", "images": ["AURORA/data/something/frames/182859/first.jpg", "AURORA/data/something/frames/182859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000105253", "images": ["AURORA/data/something/frames/96350/first.jpg", "AURORA/data/something/frames/96350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105254", "images": ["AURORA/data/something/frames/160798/first.jpg", "AURORA/data/something/frames/160798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105255", "images": ["AURORA/data/something/frames/151740/first.jpg", "AURORA/data/something/frames/151740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wireless mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000105256", "images": ["AURORA/data/something/frames/144311/first.jpg", "AURORA/data/something/frames/144311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105257", "images": ["AURORA/data/something/frames/121340/first.jpg", "AURORA/data/something/frames/121340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy car into plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105258", "images": ["AURORA/data/something/frames/187094/first.jpg", "AURORA/data/something/frames/187094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with calculator on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105259", "images": ["AURORA/data/something/frames/60396/first.jpg", "AURORA/data/something/frames/60396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105260", "images": ["AURORA/data/something/frames/87209/first.jpg", "AURORA/data/something/frames/87209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mason jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105261", "images": ["AURORA/data/something/frames/95042/first.jpg", "AURORA/data/something/frames/95042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105262", "images": ["AURORA/data/something/frames/154158/first.jpg", "AURORA/data/something/frames/154158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into blue cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105263", "images": ["AURORA/data/something/frames/88938/first.jpg", "AURORA/data/something/frames/88938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105264", "images": ["AURORA/data/something/frames/4949/first.jpg", "AURORA/data/something/frames/4949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105265", "images": ["AURORA/data/something/frames/154852/first.jpg", "AURORA/data/something/frames/154852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tomato out of a box of tomatoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000105266", "images": ["AURORA/data/something/frames/44577/first.jpg", "AURORA/data/something/frames/44577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of wallet without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105267", "images": ["AURORA/data/something/frames/28624/first.jpg", "AURORA/data/something/frames/28624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pepper shaker over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105268", "images": ["AURORA/data/something/frames/152912/first.jpg", "AURORA/data/something/frames/152912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105269", "images": ["AURORA/data/something/frames/197287/first.jpg", "AURORA/data/something/frames/197287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ring on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105270", "images": ["AURORA/data/something/frames/111338/first.jpg", "AURORA/data/something/frames/111338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubberband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000105271", "images": ["AURORA/data/something/frames/75999/first.jpg", "AURORA/data/something/frames/75999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wafer colliding with wafer and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105272", "images": ["AURORA/data/something/frames/63526/first.jpg", "AURORA/data/something/frames/63526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105273", "images": ["AURORA/data/something/frames/45227/first.jpg", "AURORA/data/something/frames/45227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming jackfruits"}, {"from": "gpt", "value": ""}]} +{"id": "000000105274", "images": ["AURORA/data/something/frames/66432/first.jpg", "AURORA/data/something/frames/66432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of a white board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105275", "images": ["AURORA/data/something/frames/104293/first.jpg", "AURORA/data/something/frames/104293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lip balm and a laser toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105276", "images": ["AURORA/data/something/frames/217782/first.jpg", "AURORA/data/something/frames/217782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting clip box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105277", "images": ["AURORA/data/something/frames/179385/first.jpg", "AURORA/data/something/frames/179385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105278", "images": ["AURORA/data/something/frames/6774/first.jpg", "AURORA/data/something/frames/6774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mouse from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105279", "images": ["AURORA/data/something/frames/173425/first.jpg", "AURORA/data/something/frames/173425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105280", "images": ["AURORA/data/something/frames/41732/first.jpg", "AURORA/data/something/frames/41732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pillow onto a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000105281", "images": ["AURORA/data/something/frames/173242/first.jpg", "AURORA/data/something/frames/173242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000105282", "images": ["AURORA/data/something/frames/43549/first.jpg", "AURORA/data/something/frames/43549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving button of light switch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105283", "images": ["AURORA/data/something/frames/167907/first.jpg", "AURORA/data/something/frames/167907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen from a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105284", "images": ["AURORA/data/something/frames/91216/first.jpg", "AURORA/data/something/frames/91216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick behind a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105285", "images": ["AURORA/data/something/frames/211630/first.jpg", "AURORA/data/something/frames/211630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105286", "images": ["AURORA/data/something/frames/133798/first.jpg", "AURORA/data/something/frames/133798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box in front of a lip balm"}, {"from": "gpt", "value": ""}]} +{"id": "000000105287", "images": ["AURORA/data/something/frames/192470/first.jpg", "AURORA/data/something/frames/192470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glue stick and eraser away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105288", "images": ["AURORA/data/something/frames/203018/first.jpg", "AURORA/data/something/frames/203018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book underneath book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105289", "images": ["AURORA/data/something/frames/18785/first.jpg", "AURORA/data/something/frames/18785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cell phones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105290", "images": ["AURORA/data/something/frames/207766/first.jpg", "AURORA/data/something/frames/207766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle closer to pencil holders"}, {"from": "gpt", "value": ""}]} +{"id": "000000105291", "images": ["AURORA/data/something/frames/209129/first.jpg", "AURORA/data/something/frames/209129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting statue with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105292", "images": ["AURORA/data/something/frames/169125/first.jpg", "AURORA/data/something/frames/169125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pen so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105293", "images": ["AURORA/data/something/frames/151527/first.jpg", "AURORA/data/something/frames/151527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a remote without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105294", "images": ["AURORA/data/something/frames/180046/first.jpg", "AURORA/data/something/frames/180046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hand bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105295", "images": ["AURORA/data/something/frames/152375/first.jpg", "AURORA/data/something/frames/152375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105296", "images": ["AURORA/data/something/frames/191558/first.jpg", "AURORA/data/something/frames/191558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling vasmol bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105297", "images": ["AURORA/data/something/frames/12621/first.jpg", "AURORA/data/something/frames/12621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000105298", "images": ["AURORA/data/something/frames/130007/first.jpg", "AURORA/data/something/frames/130007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paperclip with notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000105299", "images": ["AURORA/data/something/frames/68922/first.jpg", "AURORA/data/something/frames/68922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fuel can away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105300", "images": ["AURORA/data/something/frames/169513/first.jpg", "AURORA/data/something/frames/169513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and soap away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105301", "images": ["AURORA/data/something/frames/163246/first.jpg", "AURORA/data/something/frames/163246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000105302", "images": ["AURORA/data/something/frames/76274/first.jpg", "AURORA/data/something/frames/76274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105303", "images": ["AURORA/data/something/frames/8551/first.jpg", "AURORA/data/something/frames/8551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105304", "images": ["AURORA/data/something/frames/153414/first.jpg", "AURORA/data/something/frames/153414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105305", "images": ["AURORA/data/something/frames/132100/first.jpg", "AURORA/data/something/frames/132100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting marker up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105306", "images": ["AURORA/data/something/frames/184818/first.jpg", "AURORA/data/something/frames/184818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a laptop power adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105307", "images": ["AURORA/data/something/frames/165192/first.jpg", "AURORA/data/something/frames/165192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving head charger and head charger closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105308", "images": ["AURORA/data/something/frames/98584/first.jpg", "AURORA/data/something/frames/98584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sandals next to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000105309", "images": ["AURORA/data/something/frames/31892/first.jpg", "AURORA/data/something/frames/31892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of box without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105310", "images": ["AURORA/data/something/frames/208470/first.jpg", "AURORA/data/something/frames/208470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105311", "images": ["AURORA/data/something/frames/159635/first.jpg", "AURORA/data/something/frames/159635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105312", "images": ["AURORA/data/something/frames/214517/first.jpg", "AURORA/data/something/frames/214517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105313", "images": ["AURORA/data/something/frames/5335/first.jpg", "AURORA/data/something/frames/5335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105314", "images": ["AURORA/data/something/frames/35659/first.jpg", "AURORA/data/something/frames/35659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box of tissues on the edge of a table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105315", "images": ["AURORA/data/something/frames/172748/first.jpg", "AURORA/data/something/frames/172748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a bracelet so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000105316", "images": ["AURORA/data/something/frames/184196/first.jpg", "AURORA/data/something/frames/184196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000105317", "images": ["AURORA/data/something/frames/74086/first.jpg", "AURORA/data/something/frames/74086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105318", "images": ["AURORA/data/something/frames/8842/first.jpg", "AURORA/data/something/frames/8842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105319", "images": ["AURORA/data/something/frames/188369/first.jpg", "AURORA/data/something/frames/188369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking my dog so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105320", "images": ["AURORA/data/something/frames/145850/first.jpg", "AURORA/data/something/frames/145850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105321", "images": ["AURORA/data/something/frames/2863/first.jpg", "AURORA/data/something/frames/2863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105322", "images": ["AURORA/data/something/frames/100149/first.jpg", "AURORA/data/something/frames/100149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle into a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105323", "images": ["AURORA/data/something/frames/63857/first.jpg", "AURORA/data/something/frames/63857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pellet to other pellets"}, {"from": "gpt", "value": ""}]} +{"id": "000000105324", "images": ["AURORA/data/something/frames/110553/first.jpg", "AURORA/data/something/frames/110553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105325", "images": ["AURORA/data/something/frames/161834/first.jpg", "AURORA/data/something/frames/161834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking poking plastic spray once so that it falls so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105326", "images": ["AURORA/data/something/frames/18944/first.jpg", "AURORA/data/something/frames/18944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105327", "images": ["AURORA/data/something/frames/74394/first.jpg", "AURORA/data/something/frames/74394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching notebook with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105328", "images": ["AURORA/data/something/frames/42793/first.jpg", "AURORA/data/something/frames/42793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105329", "images": ["AURORA/data/something/frames/102660/first.jpg", "AURORA/data/something/frames/102660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105330", "images": ["AURORA/data/something/frames/107944/first.jpg", "AURORA/data/something/frames/107944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a water can colliding with another water can and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105331", "images": ["AURORA/data/something/frames/127342/first.jpg", "AURORA/data/something/frames/127342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: coin of inr 2 colliding with coin of inr 1 and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105332", "images": ["AURORA/data/something/frames/45070/first.jpg", "AURORA/data/something/frames/45070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105333", "images": ["AURORA/data/something/frames/218395/first.jpg", "AURORA/data/something/frames/218395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering shaker with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105334", "images": ["AURORA/data/something/frames/201710/first.jpg", "AURORA/data/something/frames/201710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mascara bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105335", "images": ["AURORA/data/something/frames/53020/first.jpg", "AURORA/data/something/frames/53020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a hat out of decorative shell"}, {"from": "gpt", "value": ""}]} +{"id": "000000105336", "images": ["AURORA/data/something/frames/168634/first.jpg", "AURORA/data/something/frames/168634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105337", "images": ["AURORA/data/something/frames/149646/first.jpg", "AURORA/data/something/frames/149646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a game into an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000105338", "images": ["AURORA/data/something/frames/169117/first.jpg", "AURORA/data/something/frames/169117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105339", "images": ["AURORA/data/something/frames/187318/first.jpg", "AURORA/data/something/frames/187318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 cans of compressed fuel onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105340", "images": ["AURORA/data/something/frames/35365/first.jpg", "AURORA/data/something/frames/35365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105341", "images": ["AURORA/data/something/frames/40312/first.jpg", "AURORA/data/something/frames/40312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting record book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105342", "images": ["AURORA/data/something/frames/139818/first.jpg", "AURORA/data/something/frames/139818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet underneath a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105343", "images": ["AURORA/data/something/frames/152719/first.jpg", "AURORA/data/something/frames/152719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105344", "images": ["AURORA/data/something/frames/71873/first.jpg", "AURORA/data/something/frames/71873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sandwich out of lunchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000105345", "images": ["AURORA/data/something/frames/181318/first.jpg", "AURORA/data/something/frames/181318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000105346", "images": ["AURORA/data/something/frames/198362/first.jpg", "AURORA/data/something/frames/198362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105347", "images": ["AURORA/data/something/frames/97601/first.jpg", "AURORA/data/something/frames/97601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and usb cable closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105348", "images": ["AURORA/data/something/frames/102700/first.jpg", "AURORA/data/something/frames/102700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sand up with a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000105349", "images": ["AURORA/data/something/frames/17650/first.jpg", "AURORA/data/something/frames/17650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105350", "images": ["AURORA/data/something/frames/111964/first.jpg", "AURORA/data/something/frames/111964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105351", "images": ["AURORA/data/something/frames/4768/first.jpg", "AURORA/data/something/frames/4768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105352", "images": ["AURORA/data/something/frames/163214/first.jpg", "AURORA/data/something/frames/163214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105353", "images": ["AURORA/data/something/frames/130060/first.jpg", "AURORA/data/something/frames/130060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming white book marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105354", "images": ["AURORA/data/something/frames/128518/first.jpg", "AURORA/data/something/frames/128518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105355", "images": ["AURORA/data/something/frames/47791/first.jpg", "AURORA/data/something/frames/47791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105356", "images": ["AURORA/data/something/frames/108836/first.jpg", "AURORA/data/something/frames/108836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping die into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105357", "images": ["AURORA/data/something/frames/182282/first.jpg", "AURORA/data/something/frames/182282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana and plate closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105358", "images": ["AURORA/data/something/frames/174675/first.jpg", "AURORA/data/something/frames/174675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105359", "images": ["AURORA/data/something/frames/130207/first.jpg", "AURORA/data/something/frames/130207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105360", "images": ["AURORA/data/something/frames/23102/first.jpg", "AURORA/data/something/frames/23102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug hole but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105361", "images": ["AURORA/data/something/frames/188898/first.jpg", "AURORA/data/something/frames/188898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105362", "images": ["AURORA/data/something/frames/203547/first.jpg", "AURORA/data/something/frames/203547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105363", "images": ["AURORA/data/something/frames/125653/first.jpg", "AURORA/data/something/frames/125653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105364", "images": ["AURORA/data/something/frames/64105/first.jpg", "AURORA/data/something/frames/64105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105365", "images": ["AURORA/data/something/frames/153990/first.jpg", "AURORA/data/something/frames/153990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a child toy with a hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105366", "images": ["AURORA/data/something/frames/208577/first.jpg", "AURORA/data/something/frames/208577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000105367", "images": ["AURORA/data/something/frames/218730/first.jpg", "AURORA/data/something/frames/218730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shirt behind videotapes"}, {"from": "gpt", "value": ""}]} +{"id": "000000105368", "images": ["AURORA/data/something/frames/62321/first.jpg", "AURORA/data/something/frames/62321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) dish cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105369", "images": ["AURORA/data/something/frames/213167/first.jpg", "AURORA/data/something/frames/213167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000105370", "images": ["AURORA/data/something/frames/208891/first.jpg", "AURORA/data/something/frames/208891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair pins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105371", "images": ["AURORA/data/something/frames/25435/first.jpg", "AURORA/data/something/frames/25435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105372", "images": ["AURORA/data/something/frames/10309/first.jpg", "AURORA/data/something/frames/10309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clip box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105373", "images": ["AURORA/data/something/frames/18068/first.jpg", "AURORA/data/something/frames/18068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105374", "images": ["AURORA/data/something/frames/214419/first.jpg", "AURORA/data/something/frames/214419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bangle being deflected from a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105375", "images": ["AURORA/data/something/frames/127427/first.jpg", "AURORA/data/something/frames/127427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow pen next to blue pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105376", "images": ["AURORA/data/something/frames/123212/first.jpg", "AURORA/data/something/frames/123212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000105377", "images": ["AURORA/data/something/frames/76637/first.jpg", "AURORA/data/something/frames/76637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105378", "images": ["AURORA/data/something/frames/65067/first.jpg", "AURORA/data/something/frames/65067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing closing plastic spray"}, {"from": "gpt", "value": ""}]} +{"id": "000000105379", "images": ["AURORA/data/something/frames/73278/first.jpg", "AURORA/data/something/frames/73278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing button onto printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105380", "images": ["AURORA/data/something/frames/21655/first.jpg", "AURORA/data/something/frames/21655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105381", "images": ["AURORA/data/something/frames/164127/first.jpg", "AURORA/data/something/frames/164127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a bottletop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105382", "images": ["AURORA/data/something/frames/205040/first.jpg", "AURORA/data/something/frames/205040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a matchbox from behind of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105383", "images": ["AURORA/data/something/frames/84352/first.jpg", "AURORA/data/something/frames/84352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105384", "images": ["AURORA/data/something/frames/210950/first.jpg", "AURORA/data/something/frames/210950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four cookies"}, {"from": "gpt", "value": ""}]} +{"id": "000000105385", "images": ["AURORA/data/something/frames/197965/first.jpg", "AURORA/data/something/frames/197965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft drink can away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105386", "images": ["AURORA/data/something/frames/72806/first.jpg", "AURORA/data/something/frames/72806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting duster and blue colour spectacle box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105387", "images": ["AURORA/data/something/frames/67692/first.jpg", "AURORA/data/something/frames/67692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting magnet on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105388", "images": ["AURORA/data/something/frames/164131/first.jpg", "AURORA/data/something/frames/164131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spanner from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105389", "images": ["AURORA/data/something/frames/13867/first.jpg", "AURORA/data/something/frames/13867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a battery to headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000105390", "images": ["AURORA/data/something/frames/11086/first.jpg", "AURORA/data/something/frames/11086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something behind something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105391", "images": ["AURORA/data/something/frames/65849/first.jpg", "AURORA/data/something/frames/65849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105392", "images": ["AURORA/data/something/frames/4441/first.jpg", "AURORA/data/something/frames/4441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cookie into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105393", "images": ["AURORA/data/something/frames/106051/first.jpg", "AURORA/data/something/frames/106051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cup with tissue on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105394", "images": ["AURORA/data/something/frames/165799/first.jpg", "AURORA/data/something/frames/165799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105395", "images": ["AURORA/data/something/frames/216679/first.jpg", "AURORA/data/something/frames/216679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105396", "images": ["AURORA/data/something/frames/47837/first.jpg", "AURORA/data/something/frames/47837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a safe"}, {"from": "gpt", "value": ""}]} +{"id": "000000105397", "images": ["AURORA/data/something/frames/3208/first.jpg", "AURORA/data/something/frames/3208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105398", "images": ["AURORA/data/something/frames/209765/first.jpg", "AURORA/data/something/frames/209765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000105399", "images": ["AURORA/data/something/frames/140826/first.jpg", "AURORA/data/something/frames/140826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book out of plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105400", "images": ["AURORA/data/something/frames/201101/first.jpg", "AURORA/data/something/frames/201101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105401", "images": ["AURORA/data/something/frames/217325/first.jpg", "AURORA/data/something/frames/217325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tool with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105402", "images": ["AURORA/data/something/frames/110477/first.jpg", "AURORA/data/something/frames/110477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into dish"}, {"from": "gpt", "value": ""}]} +{"id": "000000105403", "images": ["AURORA/data/something/frames/120311/first.jpg", "AURORA/data/something/frames/120311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105404", "images": ["AURORA/data/something/frames/105867/first.jpg", "AURORA/data/something/frames/105867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock away from lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105405", "images": ["AURORA/data/something/frames/9496/first.jpg", "AURORA/data/something/frames/9496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing wood box, revealing mobile behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000105406", "images": ["AURORA/data/something/frames/81269/first.jpg", "AURORA/data/something/frames/81269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping tea off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105407", "images": ["AURORA/data/something/frames/27154/first.jpg", "AURORA/data/something/frames/27154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105408", "images": ["AURORA/data/something/frames/83649/first.jpg", "AURORA/data/something/frames/83649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming me"}, {"from": "gpt", "value": ""}]} +{"id": "000000105409", "images": ["AURORA/data/something/frames/114106/first.jpg", "AURORA/data/something/frames/114106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bag in front of a spec"}, {"from": "gpt", "value": ""}]} +{"id": "000000105410", "images": ["AURORA/data/something/frames/150472/first.jpg", "AURORA/data/something/frames/150472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticker to table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105411", "images": ["AURORA/data/something/frames/72679/first.jpg", "AURORA/data/something/frames/72679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105412", "images": ["AURORA/data/something/frames/34882/first.jpg", "AURORA/data/something/frames/34882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a robot"}, {"from": "gpt", "value": ""}]} +{"id": "000000105413", "images": ["AURORA/data/something/frames/186671/first.jpg", "AURORA/data/something/frames/186671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105414", "images": ["AURORA/data/something/frames/157137/first.jpg", "AURORA/data/something/frames/157137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft drink can towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105415", "images": ["AURORA/data/something/frames/52843/first.jpg", "AURORA/data/something/frames/52843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105416", "images": ["AURORA/data/something/frames/135061/first.jpg", "AURORA/data/something/frames/135061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black sharpner with glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000105417", "images": ["AURORA/data/something/frames/34162/first.jpg", "AURORA/data/something/frames/34162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting diary with punching machine on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105418", "images": ["AURORA/data/something/frames/123678/first.jpg", "AURORA/data/something/frames/123678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tape onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105419", "images": ["AURORA/data/something/frames/174027/first.jpg", "AURORA/data/something/frames/174027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105420", "images": ["AURORA/data/something/frames/125947/first.jpg", "AURORA/data/something/frames/125947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into chocolate"}, {"from": "gpt", "value": ""}]} +{"id": "000000105421", "images": ["AURORA/data/something/frames/111509/first.jpg", "AURORA/data/something/frames/111509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105422", "images": ["AURORA/data/something/frames/135568/first.jpg", "AURORA/data/something/frames/135568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000105423", "images": ["AURORA/data/something/frames/220360/first.jpg", "AURORA/data/something/frames/220360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105424", "images": ["AURORA/data/something/frames/219838/first.jpg", "AURORA/data/something/frames/219838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying stone in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105425", "images": ["AURORA/data/something/frames/82723/first.jpg", "AURORA/data/something/frames/82723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000105426", "images": ["AURORA/data/something/frames/168986/first.jpg", "AURORA/data/something/frames/168986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105427", "images": ["AURORA/data/something/frames/54222/first.jpg", "AURORA/data/something/frames/54222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105428", "images": ["AURORA/data/something/frames/103402/first.jpg", "AURORA/data/something/frames/103402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the air off of the air"}, {"from": "gpt", "value": ""}]} +{"id": "000000105429", "images": ["AURORA/data/something/frames/206745/first.jpg", "AURORA/data/something/frames/206745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon onto a container so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105430", "images": ["AURORA/data/something/frames/205381/first.jpg", "AURORA/data/something/frames/205381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cloth up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105431", "images": ["AURORA/data/something/frames/181241/first.jpg", "AURORA/data/something/frames/181241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ring next to bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105432", "images": ["AURORA/data/something/frames/156280/first.jpg", "AURORA/data/something/frames/156280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105433", "images": ["AURORA/data/something/frames/143988/first.jpg", "AURORA/data/something/frames/143988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mp3 player off of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105434", "images": ["AURORA/data/something/frames/35522/first.jpg", "AURORA/data/something/frames/35522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105435", "images": ["AURORA/data/something/frames/134490/first.jpg", "AURORA/data/something/frames/134490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing fridge door"}, {"from": "gpt", "value": ""}]} +{"id": "000000105436", "images": ["AURORA/data/something/frames/105525/first.jpg", "AURORA/data/something/frames/105525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105437", "images": ["AURORA/data/something/frames/46581/first.jpg", "AURORA/data/something/frames/46581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105438", "images": ["AURORA/data/something/frames/105972/first.jpg", "AURORA/data/something/frames/105972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pamphlet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105439", "images": ["AURORA/data/something/frames/183491/first.jpg", "AURORA/data/something/frames/183491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bear behind a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000105440", "images": ["AURORA/data/something/frames/182789/first.jpg", "AURORA/data/something/frames/182789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105441", "images": ["AURORA/data/something/frames/25290/first.jpg", "AURORA/data/something/frames/25290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pusher, nail cutter and nipper on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105442", "images": ["AURORA/data/something/frames/148441/first.jpg", "AURORA/data/something/frames/148441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle cap across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105443", "images": ["AURORA/data/something/frames/166003/first.jpg", "AURORA/data/something/frames/166003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000105444", "images": ["AURORA/data/something/frames/87210/first.jpg", "AURORA/data/something/frames/87210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving inhaler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105445", "images": ["AURORA/data/something/frames/99090/first.jpg", "AURORA/data/something/frames/99090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000105446", "images": ["AURORA/data/something/frames/134372/first.jpg", "AURORA/data/something/frames/134372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105447", "images": ["AURORA/data/something/frames/131278/first.jpg", "AURORA/data/something/frames/131278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105448", "images": ["AURORA/data/something/frames/185981/first.jpg", "AURORA/data/something/frames/185981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105449", "images": ["AURORA/data/something/frames/58789/first.jpg", "AURORA/data/something/frames/58789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105450", "images": ["AURORA/data/something/frames/53611/first.jpg", "AURORA/data/something/frames/53611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a lead into a wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105451", "images": ["AURORA/data/something/frames/142654/first.jpg", "AURORA/data/something/frames/142654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tomato and mandarin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105452", "images": ["AURORA/data/something/frames/131838/first.jpg", "AURORA/data/something/frames/131838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105453", "images": ["AURORA/data/something/frames/103954/first.jpg", "AURORA/data/something/frames/103954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming poster"}, {"from": "gpt", "value": ""}]} +{"id": "000000105454", "images": ["AURORA/data/something/frames/188950/first.jpg", "AURORA/data/something/frames/188950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105455", "images": ["AURORA/data/something/frames/6392/first.jpg", "AURORA/data/something/frames/6392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105456", "images": ["AURORA/data/something/frames/85972/first.jpg", "AURORA/data/something/frames/85972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105457", "images": ["AURORA/data/something/frames/11780/first.jpg", "AURORA/data/something/frames/11780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105458", "images": ["AURORA/data/something/frames/164847/first.jpg", "AURORA/data/something/frames/164847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toys next to toys"}, {"from": "gpt", "value": ""}]} +{"id": "000000105459", "images": ["AURORA/data/something/frames/152520/first.jpg", "AURORA/data/something/frames/152520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105460", "images": ["AURORA/data/something/frames/173497/first.jpg", "AURORA/data/something/frames/173497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many knives"}, {"from": "gpt", "value": ""}]} +{"id": "000000105461", "images": ["AURORA/data/something/frames/167119/first.jpg", "AURORA/data/something/frames/167119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105462", "images": ["AURORA/data/something/frames/194875/first.jpg", "AURORA/data/something/frames/194875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105463", "images": ["AURORA/data/something/frames/9655/first.jpg", "AURORA/data/something/frames/9655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening container of slime"}, {"from": "gpt", "value": ""}]} +{"id": "000000105464", "images": ["AURORA/data/something/frames/17836/first.jpg", "AURORA/data/something/frames/17836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cat behind cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000105465", "images": ["AURORA/data/something/frames/10569/first.jpg", "AURORA/data/something/frames/10569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105466", "images": ["AURORA/data/something/frames/116322/first.jpg", "AURORA/data/something/frames/116322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker and debit card on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105467", "images": ["AURORA/data/something/frames/204410/first.jpg", "AURORA/data/something/frames/204410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a salt shaker with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105468", "images": ["AURORA/data/something/frames/21256/first.jpg", "AURORA/data/something/frames/21256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bags into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105469", "images": ["AURORA/data/something/frames/148979/first.jpg", "AURORA/data/something/frames/148979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a cat with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105470", "images": ["AURORA/data/something/frames/181003/first.jpg", "AURORA/data/something/frames/181003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming posters"}, {"from": "gpt", "value": ""}]} +{"id": "000000105471", "images": ["AURORA/data/something/frames/50572/first.jpg", "AURORA/data/something/frames/50572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ball next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105472", "images": ["AURORA/data/something/frames/206260/first.jpg", "AURORA/data/something/frames/206260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105473", "images": ["AURORA/data/something/frames/188511/first.jpg", "AURORA/data/something/frames/188511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105474", "images": ["AURORA/data/something/frames/77527/first.jpg", "AURORA/data/something/frames/77527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a command hook up with post it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105475", "images": ["AURORA/data/something/frames/117728/first.jpg", "AURORA/data/something/frames/117728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe onto jar so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105476", "images": ["AURORA/data/something/frames/120585/first.jpg", "AURORA/data/something/frames/120585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000105477", "images": ["AURORA/data/something/frames/116233/first.jpg", "AURORA/data/something/frames/116233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a wipe into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105478", "images": ["AURORA/data/something/frames/46148/first.jpg", "AURORA/data/something/frames/46148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105479", "images": ["AURORA/data/something/frames/78698/first.jpg", "AURORA/data/something/frames/78698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate into pile"}, {"from": "gpt", "value": ""}]} +{"id": "000000105480", "images": ["AURORA/data/something/frames/55349/first.jpg", "AURORA/data/something/frames/55349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting duster and spectacle box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105481", "images": ["AURORA/data/something/frames/41967/first.jpg", "AURORA/data/something/frames/41967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a laptop charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105482", "images": ["AURORA/data/something/frames/58923/first.jpg", "AURORA/data/something/frames/58923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black charger adapter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105483", "images": ["AURORA/data/something/frames/41321/first.jpg", "AURORA/data/something/frames/41321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a stappler with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000105484", "images": ["AURORA/data/something/frames/176278/first.jpg", "AURORA/data/something/frames/176278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105485", "images": ["AURORA/data/something/frames/47312/first.jpg", "AURORA/data/something/frames/47312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105486", "images": ["AURORA/data/something/frames/105366/first.jpg", "AURORA/data/something/frames/105366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105487", "images": ["AURORA/data/something/frames/82488/first.jpg", "AURORA/data/something/frames/82488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissues into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105488", "images": ["AURORA/data/something/frames/32372/first.jpg", "AURORA/data/something/frames/32372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105489", "images": ["AURORA/data/something/frames/154425/first.jpg", "AURORA/data/something/frames/154425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of breadboard without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105490", "images": ["AURORA/data/something/frames/48022/first.jpg", "AURORA/data/something/frames/48022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from glass tumbler with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105491", "images": ["AURORA/data/something/frames/151796/first.jpg", "AURORA/data/something/frames/151796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashdrive into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105492", "images": ["AURORA/data/something/frames/206480/first.jpg", "AURORA/data/something/frames/206480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105493", "images": ["AURORA/data/something/frames/120767/first.jpg", "AURORA/data/something/frames/120767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105494", "images": ["AURORA/data/something/frames/214705/first.jpg", "AURORA/data/something/frames/214705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking red diary so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105495", "images": ["AURORA/data/something/frames/194471/first.jpg", "AURORA/data/something/frames/194471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105496", "images": ["AURORA/data/something/frames/59756/first.jpg", "AURORA/data/something/frames/59756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: garage opener being deflected from cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105497", "images": ["AURORA/data/something/frames/149031/first.jpg", "AURORA/data/something/frames/149031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting five gooseberry onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105498", "images": ["AURORA/data/something/frames/50584/first.jpg", "AURORA/data/something/frames/50584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105499", "images": ["AURORA/data/something/frames/125672/first.jpg", "AURORA/data/something/frames/125672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder clips behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105500", "images": ["AURORA/data/something/frames/38932/first.jpg", "AURORA/data/something/frames/38932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105501", "images": ["AURORA/data/something/frames/143179/first.jpg", "AURORA/data/something/frames/143179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon next to a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105502", "images": ["AURORA/data/something/frames/219206/first.jpg", "AURORA/data/something/frames/219206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105503", "images": ["AURORA/data/something/frames/151322/first.jpg", "AURORA/data/something/frames/151322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105504", "images": ["AURORA/data/something/frames/133037/first.jpg", "AURORA/data/something/frames/133037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an eraser and a bottlecap away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105505", "images": ["AURORA/data/something/frames/126202/first.jpg", "AURORA/data/something/frames/126202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105506", "images": ["AURORA/data/something/frames/130349/first.jpg", "AURORA/data/something/frames/130349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of cassette tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105507", "images": ["AURORA/data/something/frames/109736/first.jpg", "AURORA/data/something/frames/109736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105508", "images": ["AURORA/data/something/frames/117490/first.jpg", "AURORA/data/something/frames/117490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling dvd case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105509", "images": ["AURORA/data/something/frames/216211/first.jpg", "AURORA/data/something/frames/216211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a backpack onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105510", "images": ["AURORA/data/something/frames/146757/first.jpg", "AURORA/data/something/frames/146757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coat in front of a coat hanger"}, {"from": "gpt", "value": ""}]} +{"id": "000000105511", "images": ["AURORA/data/something/frames/141467/first.jpg", "AURORA/data/something/frames/141467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 staplers onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000105512", "images": ["AURORA/data/something/frames/88101/first.jpg", "AURORA/data/something/frames/88101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105513", "images": ["AURORA/data/something/frames/68496/first.jpg", "AURORA/data/something/frames/68496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a stuffed bunny"}, {"from": "gpt", "value": ""}]} +{"id": "000000105514", "images": ["AURORA/data/something/frames/54071/first.jpg", "AURORA/data/something/frames/54071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105515", "images": ["AURORA/data/something/frames/176994/first.jpg", "AURORA/data/something/frames/176994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pebble from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105516", "images": ["AURORA/data/something/frames/1431/first.jpg", "AURORA/data/something/frames/1431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing transperent sugar jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105517", "images": ["AURORA/data/something/frames/87587/first.jpg", "AURORA/data/something/frames/87587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105518", "images": ["AURORA/data/something/frames/20480/first.jpg", "AURORA/data/something/frames/20480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bag into small gift bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105519", "images": ["AURORA/data/something/frames/121922/first.jpg", "AURORA/data/something/frames/121922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red booklet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105520", "images": ["AURORA/data/something/frames/42321/first.jpg", "AURORA/data/something/frames/42321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000105521", "images": ["AURORA/data/something/frames/40619/first.jpg", "AURORA/data/something/frames/40619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000105522", "images": ["AURORA/data/something/frames/95483/first.jpg", "AURORA/data/something/frames/95483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something and something on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105523", "images": ["AURORA/data/something/frames/94123/first.jpg", "AURORA/data/something/frames/94123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ball off of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105524", "images": ["AURORA/data/something/frames/1334/first.jpg", "AURORA/data/something/frames/1334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into flower pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000105525", "images": ["AURORA/data/something/frames/119824/first.jpg", "AURORA/data/something/frames/119824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105526", "images": ["AURORA/data/something/frames/54513/first.jpg", "AURORA/data/something/frames/54513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and bottle so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105527", "images": ["AURORA/data/something/frames/119359/first.jpg", "AURORA/data/something/frames/119359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105528", "images": ["AURORA/data/something/frames/176577/first.jpg", "AURORA/data/something/frames/176577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105529", "images": ["AURORA/data/something/frames/87245/first.jpg", "AURORA/data/something/frames/87245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing card with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000105530", "images": ["AURORA/data/something/frames/19501/first.jpg", "AURORA/data/something/frames/19501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tissue into a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105531", "images": ["AURORA/data/something/frames/49364/first.jpg", "AURORA/data/something/frames/49364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching shampoo bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105532", "images": ["AURORA/data/something/frames/45213/first.jpg", "AURORA/data/something/frames/45213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105533", "images": ["AURORA/data/something/frames/64817/first.jpg", "AURORA/data/something/frames/64817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000105534", "images": ["AURORA/data/something/frames/28778/first.jpg", "AURORA/data/something/frames/28778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toothbrush in front of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105535", "images": ["AURORA/data/something/frames/155475/first.jpg", "AURORA/data/something/frames/155475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin in front of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105536", "images": ["AURORA/data/something/frames/91/first.jpg", "AURORA/data/something/frames/91/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a guitar pick to a ukelele"}, {"from": "gpt", "value": ""}]} +{"id": "000000105537", "images": ["AURORA/data/something/frames/90178/first.jpg", "AURORA/data/something/frames/90178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105538", "images": ["AURORA/data/something/frames/68995/first.jpg", "AURORA/data/something/frames/68995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping white chalk in front of duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000105539", "images": ["AURORA/data/something/frames/67471/first.jpg", "AURORA/data/something/frames/67471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105540", "images": ["AURORA/data/something/frames/106456/first.jpg", "AURORA/data/something/frames/106456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sideview mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000105541", "images": ["AURORA/data/something/frames/165323/first.jpg", "AURORA/data/something/frames/165323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming perfume"}, {"from": "gpt", "value": ""}]} +{"id": "000000105542", "images": ["AURORA/data/something/frames/154842/first.jpg", "AURORA/data/something/frames/154842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105543", "images": ["AURORA/data/something/frames/134862/first.jpg", "AURORA/data/something/frames/134862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105544", "images": ["AURORA/data/something/frames/80776/first.jpg", "AURORA/data/something/frames/80776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105545", "images": ["AURORA/data/something/frames/90889/first.jpg", "AURORA/data/something/frames/90889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving teaspoon of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105546", "images": ["AURORA/data/something/frames/187218/first.jpg", "AURORA/data/something/frames/187218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup off of wooden ledge"}, {"from": "gpt", "value": ""}]} +{"id": "000000105547", "images": ["AURORA/data/something/frames/111511/first.jpg", "AURORA/data/something/frames/111511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into the glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105548", "images": ["AURORA/data/something/frames/74663/first.jpg", "AURORA/data/something/frames/74663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a container into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105549", "images": ["AURORA/data/something/frames/105292/first.jpg", "AURORA/data/something/frames/105292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105550", "images": ["AURORA/data/something/frames/179191/first.jpg", "AURORA/data/something/frames/179191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching hat with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105551", "images": ["AURORA/data/something/frames/151275/first.jpg", "AURORA/data/something/frames/151275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing computer keyboard so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105552", "images": ["AURORA/data/something/frames/180192/first.jpg", "AURORA/data/something/frames/180192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105553", "images": ["AURORA/data/something/frames/204438/first.jpg", "AURORA/data/something/frames/204438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a glass, revealing a banana behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000105554", "images": ["AURORA/data/something/frames/106357/first.jpg", "AURORA/data/something/frames/106357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105555", "images": ["AURORA/data/something/frames/202294/first.jpg", "AURORA/data/something/frames/202294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle in front of a mallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105556", "images": ["AURORA/data/something/frames/143334/first.jpg", "AURORA/data/something/frames/143334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clip into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105557", "images": ["AURORA/data/something/frames/61506/first.jpg", "AURORA/data/something/frames/61506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling things on the table up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105558", "images": ["AURORA/data/something/frames/82744/first.jpg", "AURORA/data/something/frames/82744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000105559", "images": ["AURORA/data/something/frames/117856/first.jpg", "AURORA/data/something/frames/117856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105560", "images": ["AURORA/data/something/frames/91361/first.jpg", "AURORA/data/something/frames/91361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105561", "images": ["AURORA/data/something/frames/160277/first.jpg", "AURORA/data/something/frames/160277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and paper on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105562", "images": ["AURORA/data/something/frames/18678/first.jpg", "AURORA/data/something/frames/18678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a post-it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105563", "images": ["AURORA/data/something/frames/68661/first.jpg", "AURORA/data/something/frames/68661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting grape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105564", "images": ["AURORA/data/something/frames/4247/first.jpg", "AURORA/data/something/frames/4247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candy out of sugar case"}, {"from": "gpt", "value": ""}]} +{"id": "000000105565", "images": ["AURORA/data/something/frames/193996/first.jpg", "AURORA/data/something/frames/193996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring drink onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105566", "images": ["AURORA/data/something/frames/673/first.jpg", "AURORA/data/something/frames/673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deodorant upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105567", "images": ["AURORA/data/something/frames/203039/first.jpg", "AURORA/data/something/frames/203039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching traffic light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105568", "images": ["AURORA/data/something/frames/164212/first.jpg", "AURORA/data/something/frames/164212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving birdcage towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105569", "images": ["AURORA/data/something/frames/172312/first.jpg", "AURORA/data/something/frames/172312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105570", "images": ["AURORA/data/something/frames/114258/first.jpg", "AURORA/data/something/frames/114258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling broom from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105571", "images": ["AURORA/data/something/frames/107088/first.jpg", "AURORA/data/something/frames/107088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105572", "images": ["AURORA/data/something/frames/162387/first.jpg", "AURORA/data/something/frames/162387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105573", "images": ["AURORA/data/something/frames/125807/first.jpg", "AURORA/data/something/frames/125807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming staircase"}, {"from": "gpt", "value": ""}]} +{"id": "000000105574", "images": ["AURORA/data/something/frames/101146/first.jpg", "AURORA/data/something/frames/101146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kiwi, pencil and wine glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105575", "images": ["AURORA/data/something/frames/102091/first.jpg", "AURORA/data/something/frames/102091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105576", "images": ["AURORA/data/something/frames/130607/first.jpg", "AURORA/data/something/frames/130607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering uncovering microphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105577", "images": ["AURORA/data/something/frames/127461/first.jpg", "AURORA/data/something/frames/127461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105578", "images": ["AURORA/data/something/frames/10535/first.jpg", "AURORA/data/something/frames/10535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105579", "images": ["AURORA/data/something/frames/102157/first.jpg", "AURORA/data/something/frames/102157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing knife into its slot place"}, {"from": "gpt", "value": ""}]} +{"id": "000000105580", "images": ["AURORA/data/something/frames/121426/first.jpg", "AURORA/data/something/frames/121426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothpaste over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105581", "images": ["AURORA/data/something/frames/13056/first.jpg", "AURORA/data/something/frames/13056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105582", "images": ["AURORA/data/something/frames/130416/first.jpg", "AURORA/data/something/frames/130416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle onto a candelabra"}, {"from": "gpt", "value": ""}]} +{"id": "000000105583", "images": ["AURORA/data/something/frames/198500/first.jpg", "AURORA/data/something/frames/198500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming shampoo bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105584", "images": ["AURORA/data/something/frames/178034/first.jpg", "AURORA/data/something/frames/178034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring oil onto pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000105585", "images": ["AURORA/data/something/frames/144108/first.jpg", "AURORA/data/something/frames/144108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glue stick and diskette closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105586", "images": ["AURORA/data/something/frames/172019/first.jpg", "AURORA/data/something/frames/172019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105587", "images": ["AURORA/data/something/frames/60266/first.jpg", "AURORA/data/something/frames/60266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105588", "images": ["AURORA/data/something/frames/146709/first.jpg", "AURORA/data/something/frames/146709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105589", "images": ["AURORA/data/something/frames/204213/first.jpg", "AURORA/data/something/frames/204213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105590", "images": ["AURORA/data/something/frames/89947/first.jpg", "AURORA/data/something/frames/89947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping green toy car into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105591", "images": ["AURORA/data/something/frames/175660/first.jpg", "AURORA/data/something/frames/175660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105592", "images": ["AURORA/data/something/frames/168863/first.jpg", "AURORA/data/something/frames/168863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105593", "images": ["AURORA/data/something/frames/2977/first.jpg", "AURORA/data/something/frames/2977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping sugar jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105594", "images": ["AURORA/data/something/frames/116114/first.jpg", "AURORA/data/something/frames/116114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000105595", "images": ["AURORA/data/something/frames/105483/first.jpg", "AURORA/data/something/frames/105483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pc mouse away from scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000105596", "images": ["AURORA/data/something/frames/132505/first.jpg", "AURORA/data/something/frames/132505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking vegetable peeler"}, {"from": "gpt", "value": ""}]} +{"id": "000000105597", "images": ["AURORA/data/something/frames/48472/first.jpg", "AURORA/data/something/frames/48472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming backyard"}, {"from": "gpt", "value": ""}]} +{"id": "000000105598", "images": ["AURORA/data/something/frames/172041/first.jpg", "AURORA/data/something/frames/172041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105599", "images": ["AURORA/data/something/frames/64846/first.jpg", "AURORA/data/something/frames/64846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105600", "images": ["AURORA/data/something/frames/187712/first.jpg", "AURORA/data/something/frames/187712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering muffins"}, {"from": "gpt", "value": ""}]} +{"id": "000000105601", "images": ["AURORA/data/something/frames/83150/first.jpg", "AURORA/data/something/frames/83150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking granola bar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105602", "images": ["AURORA/data/something/frames/131318/first.jpg", "AURORA/data/something/frames/131318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming a dog in a frame"}, {"from": "gpt", "value": ""}]} +{"id": "000000105603", "images": ["AURORA/data/something/frames/192064/first.jpg", "AURORA/data/something/frames/192064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000105604", "images": ["AURORA/data/something/frames/176798/first.jpg", "AURORA/data/something/frames/176798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toffee box towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105605", "images": ["AURORA/data/something/frames/21605/first.jpg", "AURORA/data/something/frames/21605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of npaperote so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105606", "images": ["AURORA/data/something/frames/55671/first.jpg", "AURORA/data/something/frames/55671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key and padlock away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105607", "images": ["AURORA/data/something/frames/164617/first.jpg", "AURORA/data/something/frames/164617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from knife with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105608", "images": ["AURORA/data/something/frames/107051/first.jpg", "AURORA/data/something/frames/107051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillbox onto marlboro pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000105609", "images": ["AURORA/data/something/frames/64184/first.jpg", "AURORA/data/something/frames/64184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105610", "images": ["AURORA/data/something/frames/39826/first.jpg", "AURORA/data/something/frames/39826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000105611", "images": ["AURORA/data/something/frames/220130/first.jpg", "AURORA/data/something/frames/220130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen next to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105612", "images": ["AURORA/data/something/frames/97799/first.jpg", "AURORA/data/something/frames/97799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a soft pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105613", "images": ["AURORA/data/something/frames/26334/first.jpg", "AURORA/data/something/frames/26334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105614", "images": ["AURORA/data/something/frames/31441/first.jpg", "AURORA/data/something/frames/31441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105615", "images": ["AURORA/data/something/frames/150729/first.jpg", "AURORA/data/something/frames/150729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105616", "images": ["AURORA/data/something/frames/110812/first.jpg", "AURORA/data/something/frames/110812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container closer to another one"}, {"from": "gpt", "value": ""}]} +{"id": "000000105617", "images": ["AURORA/data/something/frames/93204/first.jpg", "AURORA/data/something/frames/93204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105618", "images": ["AURORA/data/something/frames/116741/first.jpg", "AURORA/data/something/frames/116741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scotch tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105619", "images": ["AURORA/data/something/frames/32937/first.jpg", "AURORA/data/something/frames/32937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105620", "images": ["AURORA/data/something/frames/167318/first.jpg", "AURORA/data/something/frames/167318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from red spoon with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105621", "images": ["AURORA/data/something/frames/73015/first.jpg", "AURORA/data/something/frames/73015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lipstick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105622", "images": ["AURORA/data/something/frames/124987/first.jpg", "AURORA/data/something/frames/124987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105623", "images": ["AURORA/data/something/frames/205593/first.jpg", "AURORA/data/something/frames/205593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105624", "images": ["AURORA/data/something/frames/130041/first.jpg", "AURORA/data/something/frames/130041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soapy water into surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105625", "images": ["AURORA/data/something/frames/42299/first.jpg", "AURORA/data/something/frames/42299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing letter box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105626", "images": ["AURORA/data/something/frames/99955/first.jpg", "AURORA/data/something/frames/99955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking blanket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105627", "images": ["AURORA/data/something/frames/187580/first.jpg", "AURORA/data/something/frames/187580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105628", "images": ["AURORA/data/something/frames/142433/first.jpg", "AURORA/data/something/frames/142433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105629", "images": ["AURORA/data/something/frames/99126/first.jpg", "AURORA/data/something/frames/99126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple microfiber from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105630", "images": ["AURORA/data/something/frames/187644/first.jpg", "AURORA/data/something/frames/187644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105631", "images": ["AURORA/data/something/frames/175786/first.jpg", "AURORA/data/something/frames/175786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a rose"}, {"from": "gpt", "value": ""}]} +{"id": "000000105632", "images": ["AURORA/data/something/frames/211377/first.jpg", "AURORA/data/something/frames/211377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling disks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105633", "images": ["AURORA/data/something/frames/9601/first.jpg", "AURORA/data/something/frames/9601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tape next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000105634", "images": ["AURORA/data/something/frames/176624/first.jpg", "AURORA/data/something/frames/176624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000105635", "images": ["AURORA/data/something/frames/3252/first.jpg", "AURORA/data/something/frames/3252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105636", "images": ["AURORA/data/something/frames/52153/first.jpg", "AURORA/data/something/frames/52153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105637", "images": ["AURORA/data/something/frames/40822/first.jpg", "AURORA/data/something/frames/40822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking highligher out of pencil cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105638", "images": ["AURORA/data/something/frames/68372/first.jpg", "AURORA/data/something/frames/68372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000105639", "images": ["AURORA/data/something/frames/142768/first.jpg", "AURORA/data/something/frames/142768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar in front of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105640", "images": ["AURORA/data/something/frames/175484/first.jpg", "AURORA/data/something/frames/175484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105641", "images": ["AURORA/data/something/frames/177969/first.jpg", "AURORA/data/something/frames/177969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a confetti start with other confetti stars that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105642", "images": ["AURORA/data/something/frames/153394/first.jpg", "AURORA/data/something/frames/153394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a container with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105643", "images": ["AURORA/data/something/frames/17590/first.jpg", "AURORA/data/something/frames/17590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000105644", "images": ["AURORA/data/something/frames/131210/first.jpg", "AURORA/data/something/frames/131210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000105645", "images": ["AURORA/data/something/frames/106551/first.jpg", "AURORA/data/something/frames/106551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000105646", "images": ["AURORA/data/something/frames/99642/first.jpg", "AURORA/data/something/frames/99642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and cellphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105647", "images": ["AURORA/data/something/frames/176434/first.jpg", "AURORA/data/something/frames/176434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105648", "images": ["AURORA/data/something/frames/189748/first.jpg", "AURORA/data/something/frames/189748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105649", "images": ["AURORA/data/something/frames/135472/first.jpg", "AURORA/data/something/frames/135472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tupperware onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105650", "images": ["AURORA/data/something/frames/201362/first.jpg", "AURORA/data/something/frames/201362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105651", "images": ["AURORA/data/something/frames/176476/first.jpg", "AURORA/data/something/frames/176476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105652", "images": ["AURORA/data/something/frames/60030/first.jpg", "AURORA/data/something/frames/60030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105653", "images": ["AURORA/data/something/frames/62848/first.jpg", "AURORA/data/something/frames/62848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105654", "images": ["AURORA/data/something/frames/5553/first.jpg", "AURORA/data/something/frames/5553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105655", "images": ["AURORA/data/something/frames/150400/first.jpg", "AURORA/data/something/frames/150400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ruler on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105656", "images": ["AURORA/data/something/frames/38391/first.jpg", "AURORA/data/something/frames/38391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lipstisck on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105657", "images": ["AURORA/data/something/frames/35454/first.jpg", "AURORA/data/something/frames/35454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mouse with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000105658", "images": ["AURORA/data/something/frames/168654/first.jpg", "AURORA/data/something/frames/168654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting powder tin, watch and nail polish on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105659", "images": ["AURORA/data/something/frames/216492/first.jpg", "AURORA/data/something/frames/216492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bowl, revealing egg behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000105660", "images": ["AURORA/data/something/frames/23217/first.jpg", "AURORA/data/something/frames/23217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting banana next to apples"}, {"from": "gpt", "value": ""}]} +{"id": "000000105661", "images": ["AURORA/data/something/frames/167837/first.jpg", "AURORA/data/something/frames/167837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting the lamp handle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105662", "images": ["AURORA/data/something/frames/101071/first.jpg", "AURORA/data/something/frames/101071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing can from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105663", "images": ["AURORA/data/something/frames/7412/first.jpg", "AURORA/data/something/frames/7412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105664", "images": ["AURORA/data/something/frames/104072/first.jpg", "AURORA/data/something/frames/104072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping sauce off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105665", "images": ["AURORA/data/something/frames/102036/first.jpg", "AURORA/data/something/frames/102036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105666", "images": ["AURORA/data/something/frames/81806/first.jpg", "AURORA/data/something/frames/81806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000105667", "images": ["AURORA/data/something/frames/218089/first.jpg", "AURORA/data/something/frames/218089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105668", "images": ["AURORA/data/something/frames/190657/first.jpg", "AURORA/data/something/frames/190657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105669", "images": ["AURORA/data/something/frames/100473/first.jpg", "AURORA/data/something/frames/100473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting milk with knife on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105670", "images": ["AURORA/data/something/frames/3763/first.jpg", "AURORA/data/something/frames/3763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105671", "images": ["AURORA/data/something/frames/91885/first.jpg", "AURORA/data/something/frames/91885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105672", "images": ["AURORA/data/something/frames/145973/first.jpg", "AURORA/data/something/frames/145973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105673", "images": ["AURORA/data/something/frames/38091/first.jpg", "AURORA/data/something/frames/38091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting wall with stone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105674", "images": ["AURORA/data/something/frames/185743/first.jpg", "AURORA/data/something/frames/185743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105675", "images": ["AURORA/data/something/frames/124537/first.jpg", "AURORA/data/something/frames/124537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105676", "images": ["AURORA/data/something/frames/51867/first.jpg", "AURORA/data/something/frames/51867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wafer into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105677", "images": ["AURORA/data/something/frames/18181/first.jpg", "AURORA/data/something/frames/18181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling medicinal powder behind a toothbrush holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000105678", "images": ["AURORA/data/something/frames/135900/first.jpg", "AURORA/data/something/frames/135900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can of instant coffee upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105679", "images": ["AURORA/data/something/frames/219564/first.jpg", "AURORA/data/something/frames/219564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105680", "images": ["AURORA/data/something/frames/190232/first.jpg", "AURORA/data/something/frames/190232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wooden small home so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105681", "images": ["AURORA/data/something/frames/177735/first.jpg", "AURORA/data/something/frames/177735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105682", "images": ["AURORA/data/something/frames/164263/first.jpg", "AURORA/data/something/frames/164263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming curtains"}, {"from": "gpt", "value": ""}]} +{"id": "000000105683", "images": ["AURORA/data/something/frames/191587/first.jpg", "AURORA/data/something/frames/191587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle next to candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000105684", "images": ["AURORA/data/something/frames/187793/first.jpg", "AURORA/data/something/frames/187793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 candies"}, {"from": "gpt", "value": ""}]} +{"id": "000000105685", "images": ["AURORA/data/something/frames/33444/first.jpg", "AURORA/data/something/frames/33444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105686", "images": ["AURORA/data/something/frames/38853/first.jpg", "AURORA/data/something/frames/38853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105687", "images": ["AURORA/data/something/frames/205081/first.jpg", "AURORA/data/something/frames/205081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses onto the table next to other glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105688", "images": ["AURORA/data/something/frames/145634/first.jpg", "AURORA/data/something/frames/145634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000105689", "images": ["AURORA/data/something/frames/159969/first.jpg", "AURORA/data/something/frames/159969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105690", "images": ["AURORA/data/something/frames/15818/first.jpg", "AURORA/data/something/frames/15818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paper weight from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105691", "images": ["AURORA/data/something/frames/4328/first.jpg", "AURORA/data/something/frames/4328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from headphones with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105692", "images": ["AURORA/data/something/frames/205753/first.jpg", "AURORA/data/something/frames/205753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000105693", "images": ["AURORA/data/something/frames/27396/first.jpg", "AURORA/data/something/frames/27396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105694", "images": ["AURORA/data/something/frames/741/first.jpg", "AURORA/data/something/frames/741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cd"}, {"from": "gpt", "value": ""}]} +{"id": "000000105695", "images": ["AURORA/data/something/frames/47770/first.jpg", "AURORA/data/something/frames/47770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: flashdisk colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105696", "images": ["AURORA/data/something/frames/3670/first.jpg", "AURORA/data/something/frames/3670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105697", "images": ["AURORA/data/something/frames/74243/first.jpg", "AURORA/data/something/frames/74243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105698", "images": ["AURORA/data/something/frames/85158/first.jpg", "AURORA/data/something/frames/85158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on the edge of speaker so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105699", "images": ["AURORA/data/something/frames/209987/first.jpg", "AURORA/data/something/frames/209987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lead pencils out of pencil box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105700", "images": ["AURORA/data/something/frames/120661/first.jpg", "AURORA/data/something/frames/120661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105701", "images": ["AURORA/data/something/frames/201054/first.jpg", "AURORA/data/something/frames/201054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000105702", "images": ["AURORA/data/something/frames/119894/first.jpg", "AURORA/data/something/frames/119894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105703", "images": ["AURORA/data/something/frames/43376/first.jpg", "AURORA/data/something/frames/43376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving orange colour pencil sharpner up up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105704", "images": ["AURORA/data/something/frames/214952/first.jpg", "AURORA/data/something/frames/214952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105705", "images": ["AURORA/data/something/frames/112684/first.jpg", "AURORA/data/something/frames/112684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plant vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000105706", "images": ["AURORA/data/something/frames/142040/first.jpg", "AURORA/data/something/frames/142040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105707", "images": ["AURORA/data/something/frames/26367/first.jpg", "AURORA/data/something/frames/26367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from laterite stone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105708", "images": ["AURORA/data/something/frames/60477/first.jpg", "AURORA/data/something/frames/60477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105709", "images": ["AURORA/data/something/frames/36736/first.jpg", "AURORA/data/something/frames/36736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105710", "images": ["AURORA/data/something/frames/207317/first.jpg", "AURORA/data/something/frames/207317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105711", "images": ["AURORA/data/something/frames/193297/first.jpg", "AURORA/data/something/frames/193297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking frame from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105712", "images": ["AURORA/data/something/frames/21173/first.jpg", "AURORA/data/something/frames/21173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105713", "images": ["AURORA/data/something/frames/77202/first.jpg", "AURORA/data/something/frames/77202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing silver coloured pen off of drawing board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105714", "images": ["AURORA/data/something/frames/126686/first.jpg", "AURORA/data/something/frames/126686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mail"}, {"from": "gpt", "value": ""}]} +{"id": "000000105715", "images": ["AURORA/data/something/frames/165841/first.jpg", "AURORA/data/something/frames/165841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed animal so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105716", "images": ["AURORA/data/something/frames/24184/first.jpg", "AURORA/data/something/frames/24184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000105717", "images": ["AURORA/data/something/frames/18057/first.jpg", "AURORA/data/something/frames/18057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105718", "images": ["AURORA/data/something/frames/61568/first.jpg", "AURORA/data/something/frames/61568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing speaker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105719", "images": ["AURORA/data/something/frames/140169/first.jpg", "AURORA/data/something/frames/140169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair band in front of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105720", "images": ["AURORA/data/something/frames/5946/first.jpg", "AURORA/data/something/frames/5946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000105721", "images": ["AURORA/data/something/frames/108436/first.jpg", "AURORA/data/something/frames/108436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking spectacle box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105722", "images": ["AURORA/data/something/frames/141381/first.jpg", "AURORA/data/something/frames/141381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening refrigerator door"}, {"from": "gpt", "value": ""}]} +{"id": "000000105723", "images": ["AURORA/data/something/frames/83646/first.jpg", "AURORA/data/something/frames/83646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a dvd over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105724", "images": ["AURORA/data/something/frames/171405/first.jpg", "AURORA/data/something/frames/171405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105725", "images": ["AURORA/data/something/frames/37455/first.jpg", "AURORA/data/something/frames/37455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000105726", "images": ["AURORA/data/something/frames/153856/first.jpg", "AURORA/data/something/frames/153856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconut away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105727", "images": ["AURORA/data/something/frames/184753/first.jpg", "AURORA/data/something/frames/184753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bucket from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105728", "images": ["AURORA/data/something/frames/157447/first.jpg", "AURORA/data/something/frames/157447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the surface of memorabilia"}, {"from": "gpt", "value": ""}]} +{"id": "000000105729", "images": ["AURORA/data/something/frames/40820/first.jpg", "AURORA/data/something/frames/40820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, spoon and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105730", "images": ["AURORA/data/something/frames/215140/first.jpg", "AURORA/data/something/frames/215140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105731", "images": ["AURORA/data/something/frames/23093/first.jpg", "AURORA/data/something/frames/23093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105732", "images": ["AURORA/data/something/frames/121181/first.jpg", "AURORA/data/something/frames/121181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small hand gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105733", "images": ["AURORA/data/something/frames/83066/first.jpg", "AURORA/data/something/frames/83066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking onion out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105734", "images": ["AURORA/data/something/frames/63338/first.jpg", "AURORA/data/something/frames/63338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105735", "images": ["AURORA/data/something/frames/1939/first.jpg", "AURORA/data/something/frames/1939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105736", "images": ["AURORA/data/something/frames/42000/first.jpg", "AURORA/data/something/frames/42000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105737", "images": ["AURORA/data/something/frames/50207/first.jpg", "AURORA/data/something/frames/50207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lighter colliding with ruler and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105738", "images": ["AURORA/data/something/frames/121549/first.jpg", "AURORA/data/something/frames/121549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping brush onto blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105739", "images": ["AURORA/data/something/frames/188416/first.jpg", "AURORA/data/something/frames/188416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping banana in front of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105740", "images": ["AURORA/data/something/frames/219516/first.jpg", "AURORA/data/something/frames/219516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto water the plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000105741", "images": ["AURORA/data/something/frames/181792/first.jpg", "AURORA/data/something/frames/181792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening black spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105742", "images": ["AURORA/data/something/frames/217963/first.jpg", "AURORA/data/something/frames/217963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lemon next to doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000105743", "images": ["AURORA/data/something/frames/191935/first.jpg", "AURORA/data/something/frames/191935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting sweet with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105744", "images": ["AURORA/data/something/frames/6102/first.jpg", "AURORA/data/something/frames/6102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into power block but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105745", "images": ["AURORA/data/something/frames/130289/first.jpg", "AURORA/data/something/frames/130289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into headphones but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105746", "images": ["AURORA/data/something/frames/107136/first.jpg", "AURORA/data/something/frames/107136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105747", "images": ["AURORA/data/something/frames/28866/first.jpg", "AURORA/data/something/frames/28866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105748", "images": ["AURORA/data/something/frames/35538/first.jpg", "AURORA/data/something/frames/35538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring a fabric conditioner into a plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105749", "images": ["AURORA/data/something/frames/8249/first.jpg", "AURORA/data/something/frames/8249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105750", "images": ["AURORA/data/something/frames/116464/first.jpg", "AURORA/data/something/frames/116464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a knife and a spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105751", "images": ["AURORA/data/something/frames/57093/first.jpg", "AURORA/data/something/frames/57093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105752", "images": ["AURORA/data/something/frames/154013/first.jpg", "AURORA/data/something/frames/154013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105753", "images": ["AURORA/data/something/frames/217957/first.jpg", "AURORA/data/something/frames/217957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power supply into a wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105754", "images": ["AURORA/data/something/frames/147451/first.jpg", "AURORA/data/something/frames/147451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black lipstick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105755", "images": ["AURORA/data/something/frames/155410/first.jpg", "AURORA/data/something/frames/155410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hand towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105756", "images": ["AURORA/data/something/frames/67855/first.jpg", "AURORA/data/something/frames/67855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105757", "images": ["AURORA/data/something/frames/157604/first.jpg", "AURORA/data/something/frames/157604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105758", "images": ["AURORA/data/something/frames/213815/first.jpg", "AURORA/data/something/frames/213815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip and eraser on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105759", "images": ["AURORA/data/something/frames/47364/first.jpg", "AURORA/data/something/frames/47364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting microscope on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105760", "images": ["AURORA/data/something/frames/90101/first.jpg", "AURORA/data/something/frames/90101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105761", "images": ["AURORA/data/something/frames/104878/first.jpg", "AURORA/data/something/frames/104878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a watch behind a clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000105762", "images": ["AURORA/data/something/frames/44540/first.jpg", "AURORA/data/something/frames/44540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and other mobile away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105763", "images": ["AURORA/data/something/frames/165210/first.jpg", "AURORA/data/something/frames/165210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blankets up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105764", "images": ["AURORA/data/something/frames/83053/first.jpg", "AURORA/data/something/frames/83053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pot into an oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000105765", "images": ["AURORA/data/something/frames/69652/first.jpg", "AURORA/data/something/frames/69652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105766", "images": ["AURORA/data/something/frames/110615/first.jpg", "AURORA/data/something/frames/110615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cockroach out of a ear"}, {"from": "gpt", "value": ""}]} +{"id": "000000105767", "images": ["AURORA/data/something/frames/147079/first.jpg", "AURORA/data/something/frames/147079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000105768", "images": ["AURORA/data/something/frames/75065/first.jpg", "AURORA/data/something/frames/75065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000105769", "images": ["AURORA/data/something/frames/83907/first.jpg", "AURORA/data/something/frames/83907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000105770", "images": ["AURORA/data/something/frames/219989/first.jpg", "AURORA/data/something/frames/219989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105771", "images": ["AURORA/data/something/frames/67854/first.jpg", "AURORA/data/something/frames/67854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a teddy bear in front of a teddy bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000105772", "images": ["AURORA/data/something/frames/44070/first.jpg", "AURORA/data/something/frames/44070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bra in front of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105773", "images": ["AURORA/data/something/frames/71979/first.jpg", "AURORA/data/something/frames/71979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dia next to 3rd dia"}, {"from": "gpt", "value": ""}]} +{"id": "000000105774", "images": ["AURORA/data/something/frames/209939/first.jpg", "AURORA/data/something/frames/209939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105775", "images": ["AURORA/data/something/frames/8771/first.jpg", "AURORA/data/something/frames/8771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white kerchief out of orange purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000105776", "images": ["AURORA/data/something/frames/118341/first.jpg", "AURORA/data/something/frames/118341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105777", "images": ["AURORA/data/something/frames/57985/first.jpg", "AURORA/data/something/frames/57985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug and a cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105778", "images": ["AURORA/data/something/frames/181337/first.jpg", "AURORA/data/something/frames/181337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into pen stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105779", "images": ["AURORA/data/something/frames/48406/first.jpg", "AURORA/data/something/frames/48406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a loop to a hook"}, {"from": "gpt", "value": ""}]} +{"id": "000000105780", "images": ["AURORA/data/something/frames/47806/first.jpg", "AURORA/data/something/frames/47806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen out of case"}, {"from": "gpt", "value": ""}]} +{"id": "000000105781", "images": ["AURORA/data/something/frames/43276/first.jpg", "AURORA/data/something/frames/43276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000105782", "images": ["AURORA/data/something/frames/186132/first.jpg", "AURORA/data/something/frames/186132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105783", "images": ["AURORA/data/something/frames/124527/first.jpg", "AURORA/data/something/frames/124527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bear next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105784", "images": ["AURORA/data/something/frames/48874/first.jpg", "AURORA/data/something/frames/48874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000105785", "images": ["AURORA/data/something/frames/21563/first.jpg", "AURORA/data/something/frames/21563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of water pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000105786", "images": ["AURORA/data/something/frames/136820/first.jpg", "AURORA/data/something/frames/136820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105787", "images": ["AURORA/data/something/frames/134879/first.jpg", "AURORA/data/something/frames/134879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105788", "images": ["AURORA/data/something/frames/164688/first.jpg", "AURORA/data/something/frames/164688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000105789", "images": ["AURORA/data/something/frames/39889/first.jpg", "AURORA/data/something/frames/39889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering gear wheel with black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105790", "images": ["AURORA/data/something/frames/46167/first.jpg", "AURORA/data/something/frames/46167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a phone charger into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105791", "images": ["AURORA/data/something/frames/147065/first.jpg", "AURORA/data/something/frames/147065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into the computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105792", "images": ["AURORA/data/something/frames/207999/first.jpg", "AURORA/data/something/frames/207999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coffee in front of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000105793", "images": ["AURORA/data/something/frames/41035/first.jpg", "AURORA/data/something/frames/41035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw next to carabiner"}, {"from": "gpt", "value": ""}]} +{"id": "000000105794", "images": ["AURORA/data/something/frames/145863/first.jpg", "AURORA/data/something/frames/145863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: cup being deflected from counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105795", "images": ["AURORA/data/something/frames/60668/first.jpg", "AURORA/data/something/frames/60668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coin so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105796", "images": ["AURORA/data/something/frames/87666/first.jpg", "AURORA/data/something/frames/87666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105797", "images": ["AURORA/data/something/frames/120377/first.jpg", "AURORA/data/something/frames/120377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: candy colliding with candy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105798", "images": ["AURORA/data/something/frames/150621/first.jpg", "AURORA/data/something/frames/150621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105799", "images": ["AURORA/data/something/frames/29699/first.jpg", "AURORA/data/something/frames/29699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105800", "images": ["AURORA/data/something/frames/12651/first.jpg", "AURORA/data/something/frames/12651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000105801", "images": ["AURORA/data/something/frames/82560/first.jpg", "AURORA/data/something/frames/82560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking striped pen out of sturdy glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105802", "images": ["AURORA/data/something/frames/117511/first.jpg", "AURORA/data/something/frames/117511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105803", "images": ["AURORA/data/something/frames/92628/first.jpg", "AURORA/data/something/frames/92628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105804", "images": ["AURORA/data/something/frames/170558/first.jpg", "AURORA/data/something/frames/170558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into pot of a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000105805", "images": ["AURORA/data/something/frames/211161/first.jpg", "AURORA/data/something/frames/211161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shorts"}, {"from": "gpt", "value": ""}]} +{"id": "000000105806", "images": ["AURORA/data/something/frames/95415/first.jpg", "AURORA/data/something/frames/95415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with ice over, so ice falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105807", "images": ["AURORA/data/something/frames/27602/first.jpg", "AURORA/data/something/frames/27602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a glass figure closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105808", "images": ["AURORA/data/something/frames/142836/first.jpg", "AURORA/data/something/frames/142836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sign board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105809", "images": ["AURORA/data/something/frames/161497/first.jpg", "AURORA/data/something/frames/161497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000105810", "images": ["AURORA/data/something/frames/21809/first.jpg", "AURORA/data/something/frames/21809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105811", "images": ["AURORA/data/something/frames/112028/first.jpg", "AURORA/data/something/frames/112028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105812", "images": ["AURORA/data/something/frames/185796/first.jpg", "AURORA/data/something/frames/185796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105813", "images": ["AURORA/data/something/frames/143051/first.jpg", "AURORA/data/something/frames/143051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bar soap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105814", "images": ["AURORA/data/something/frames/115697/first.jpg", "AURORA/data/something/frames/115697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the cube and the ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105815", "images": ["AURORA/data/something/frames/136968/first.jpg", "AURORA/data/something/frames/136968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of bottle without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105816", "images": ["AURORA/data/something/frames/205726/first.jpg", "AURORA/data/something/frames/205726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105817", "images": ["AURORA/data/something/frames/220678/first.jpg", "AURORA/data/something/frames/220678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping packet behind chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000105818", "images": ["AURORA/data/something/frames/119246/first.jpg", "AURORA/data/something/frames/119246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105819", "images": ["AURORA/data/something/frames/40845/first.jpg", "AURORA/data/something/frames/40845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen off of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105820", "images": ["AURORA/data/something/frames/200201/first.jpg", "AURORA/data/something/frames/200201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000105821", "images": ["AURORA/data/something/frames/59762/first.jpg", "AURORA/data/something/frames/59762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour juice into bowl, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105822", "images": ["AURORA/data/something/frames/5299/first.jpg", "AURORA/data/something/frames/5299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunscreen on the edge of the table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105823", "images": ["AURORA/data/something/frames/165921/first.jpg", "AURORA/data/something/frames/165921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping battery over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105824", "images": ["AURORA/data/something/frames/6175/first.jpg", "AURORA/data/something/frames/6175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000105825", "images": ["AURORA/data/something/frames/152924/first.jpg", "AURORA/data/something/frames/152924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cap of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105826", "images": ["AURORA/data/something/frames/193788/first.jpg", "AURORA/data/something/frames/193788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105827", "images": ["AURORA/data/something/frames/46550/first.jpg", "AURORA/data/something/frames/46550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105828", "images": ["AURORA/data/something/frames/167927/first.jpg", "AURORA/data/something/frames/167927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle on the edge of a book so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105829", "images": ["AURORA/data/something/frames/25680/first.jpg", "AURORA/data/something/frames/25680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105830", "images": ["AURORA/data/something/frames/844/first.jpg", "AURORA/data/something/frames/844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105831", "images": ["AURORA/data/something/frames/188825/first.jpg", "AURORA/data/something/frames/188825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card into wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105832", "images": ["AURORA/data/something/frames/113152/first.jpg", "AURORA/data/something/frames/113152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105833", "images": ["AURORA/data/something/frames/184786/first.jpg", "AURORA/data/something/frames/184786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105834", "images": ["AURORA/data/something/frames/119880/first.jpg", "AURORA/data/something/frames/119880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning black play cards upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105835", "images": ["AURORA/data/something/frames/181980/first.jpg", "AURORA/data/something/frames/181980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105836", "images": ["AURORA/data/something/frames/90646/first.jpg", "AURORA/data/something/frames/90646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105837", "images": ["AURORA/data/something/frames/158672/first.jpg", "AURORA/data/something/frames/158672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105838", "images": ["AURORA/data/something/frames/20153/first.jpg", "AURORA/data/something/frames/20153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105839", "images": ["AURORA/data/something/frames/149681/first.jpg", "AURORA/data/something/frames/149681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping little bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105840", "images": ["AURORA/data/something/frames/1091/first.jpg", "AURORA/data/something/frames/1091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cookie crumbs onto banana pudding"}, {"from": "gpt", "value": ""}]} +{"id": "000000105841", "images": ["AURORA/data/something/frames/111318/first.jpg", "AURORA/data/something/frames/111318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105842", "images": ["AURORA/data/something/frames/38384/first.jpg", "AURORA/data/something/frames/38384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an adapter into an aoutlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105843", "images": ["AURORA/data/something/frames/194468/first.jpg", "AURORA/data/something/frames/194468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105844", "images": ["AURORA/data/something/frames/149648/first.jpg", "AURORA/data/something/frames/149648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing key into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105845", "images": ["AURORA/data/something/frames/57653/first.jpg", "AURORA/data/something/frames/57653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105846", "images": ["AURORA/data/something/frames/177859/first.jpg", "AURORA/data/something/frames/177859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming blue pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105847", "images": ["AURORA/data/something/frames/98316/first.jpg", "AURORA/data/something/frames/98316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105848", "images": ["AURORA/data/something/frames/220367/first.jpg", "AURORA/data/something/frames/220367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lime being deflected from phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105849", "images": ["AURORA/data/something/frames/105780/first.jpg", "AURORA/data/something/frames/105780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie next to slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105850", "images": ["AURORA/data/something/frames/142024/first.jpg", "AURORA/data/something/frames/142024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a clip on the edge of refrigerator so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105851", "images": ["AURORA/data/something/frames/116148/first.jpg", "AURORA/data/something/frames/116148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy cart from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105852", "images": ["AURORA/data/something/frames/87064/first.jpg", "AURORA/data/something/frames/87064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105853", "images": ["AURORA/data/something/frames/181779/first.jpg", "AURORA/data/something/frames/181779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105854", "images": ["AURORA/data/something/frames/60908/first.jpg", "AURORA/data/something/frames/60908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105855", "images": ["AURORA/data/something/frames/9561/first.jpg", "AURORA/data/something/frames/9561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming photo scenery"}, {"from": "gpt", "value": ""}]} +{"id": "000000105856", "images": ["AURORA/data/something/frames/174527/first.jpg", "AURORA/data/something/frames/174527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105857", "images": ["AURORA/data/something/frames/200178/first.jpg", "AURORA/data/something/frames/200178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping trash into a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105858", "images": ["AURORA/data/something/frames/46963/first.jpg", "AURORA/data/something/frames/46963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many skateboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000105859", "images": ["AURORA/data/something/frames/197927/first.jpg", "AURORA/data/something/frames/197927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105860", "images": ["AURORA/data/something/frames/150544/first.jpg", "AURORA/data/something/frames/150544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing rice into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105861", "images": ["AURORA/data/something/frames/50395/first.jpg", "AURORA/data/something/frames/50395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a screw from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105862", "images": ["AURORA/data/something/frames/11676/first.jpg", "AURORA/data/something/frames/11676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of tricycle without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105863", "images": ["AURORA/data/something/frames/126614/first.jpg", "AURORA/data/something/frames/126614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105864", "images": ["AURORA/data/something/frames/187029/first.jpg", "AURORA/data/something/frames/187029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb drive into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000105865", "images": ["AURORA/data/something/frames/28312/first.jpg", "AURORA/data/something/frames/28312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting books into cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105866", "images": ["AURORA/data/something/frames/158885/first.jpg", "AURORA/data/something/frames/158885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming transformer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105867", "images": ["AURORA/data/something/frames/203354/first.jpg", "AURORA/data/something/frames/203354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plastic bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105868", "images": ["AURORA/data/something/frames/210666/first.jpg", "AURORA/data/something/frames/210666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105869", "images": ["AURORA/data/something/frames/63587/first.jpg", "AURORA/data/something/frames/63587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling origami stars onto spiraled notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000105870", "images": ["AURORA/data/something/frames/202999/first.jpg", "AURORA/data/something/frames/202999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and lock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105871", "images": ["AURORA/data/something/frames/177123/first.jpg", "AURORA/data/something/frames/177123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105872", "images": ["AURORA/data/something/frames/27827/first.jpg", "AURORA/data/something/frames/27827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic bottle and plastic bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105873", "images": ["AURORA/data/something/frames/157289/first.jpg", "AURORA/data/something/frames/157289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105874", "images": ["AURORA/data/something/frames/54354/first.jpg", "AURORA/data/something/frames/54354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a $20 bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000105875", "images": ["AURORA/data/something/frames/67174/first.jpg", "AURORA/data/something/frames/67174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105876", "images": ["AURORA/data/something/frames/92580/first.jpg", "AURORA/data/something/frames/92580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ribbon out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105877", "images": ["AURORA/data/something/frames/183926/first.jpg", "AURORA/data/something/frames/183926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging memory into usb but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105878", "images": ["AURORA/data/something/frames/86654/first.jpg", "AURORA/data/something/frames/86654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rock colliding with rock and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105879", "images": ["AURORA/data/something/frames/105671/first.jpg", "AURORA/data/something/frames/105671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker from a group of markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105880", "images": ["AURORA/data/something/frames/179956/first.jpg", "AURORA/data/something/frames/179956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105881", "images": ["AURORA/data/something/frames/72507/first.jpg", "AURORA/data/something/frames/72507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning an ashtray upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105882", "images": ["AURORA/data/something/frames/170686/first.jpg", "AURORA/data/something/frames/170686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small green ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000105883", "images": ["AURORA/data/something/frames/101343/first.jpg", "AURORA/data/something/frames/101343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105884", "images": ["AURORA/data/something/frames/120176/first.jpg", "AURORA/data/something/frames/120176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lighter with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000105885", "images": ["AURORA/data/something/frames/134267/first.jpg", "AURORA/data/something/frames/134267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000105886", "images": ["AURORA/data/something/frames/142785/first.jpg", "AURORA/data/something/frames/142785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothclips"}, {"from": "gpt", "value": ""}]} +{"id": "000000105887", "images": ["AURORA/data/something/frames/3548/first.jpg", "AURORA/data/something/frames/3548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105888", "images": ["AURORA/data/something/frames/130213/first.jpg", "AURORA/data/something/frames/130213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking receipts"}, {"from": "gpt", "value": ""}]} +{"id": "000000105889", "images": ["AURORA/data/something/frames/176110/first.jpg", "AURORA/data/something/frames/176110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105890", "images": ["AURORA/data/something/frames/192254/first.jpg", "AURORA/data/something/frames/192254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red watch case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105891", "images": ["AURORA/data/something/frames/110620/first.jpg", "AURORA/data/something/frames/110620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105892", "images": ["AURORA/data/something/frames/20405/first.jpg", "AURORA/data/something/frames/20405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble and spanner on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105893", "images": ["AURORA/data/something/frames/8128/first.jpg", "AURORA/data/something/frames/8128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105894", "images": ["AURORA/data/something/frames/135241/first.jpg", "AURORA/data/something/frames/135241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white board clip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105895", "images": ["AURORA/data/something/frames/50078/first.jpg", "AURORA/data/something/frames/50078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding bed sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105896", "images": ["AURORA/data/something/frames/192208/first.jpg", "AURORA/data/something/frames/192208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking push pins out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105897", "images": ["AURORA/data/something/frames/15645/first.jpg", "AURORA/data/something/frames/15645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chocolate bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105898", "images": ["AURORA/data/something/frames/167693/first.jpg", "AURORA/data/something/frames/167693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pepper onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000105899", "images": ["AURORA/data/something/frames/105091/first.jpg", "AURORA/data/something/frames/105091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass of many similar glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105900", "images": ["AURORA/data/something/frames/197319/first.jpg", "AURORA/data/something/frames/197319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000105901", "images": ["AURORA/data/something/frames/119993/first.jpg", "AURORA/data/something/frames/119993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bird on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105902", "images": ["AURORA/data/something/frames/107016/first.jpg", "AURORA/data/something/frames/107016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105903", "images": ["AURORA/data/something/frames/78969/first.jpg", "AURORA/data/something/frames/78969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting grass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105904", "images": ["AURORA/data/something/frames/217238/first.jpg", "AURORA/data/something/frames/217238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105905", "images": ["AURORA/data/something/frames/147868/first.jpg", "AURORA/data/something/frames/147868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming brown case"}, {"from": "gpt", "value": ""}]} +{"id": "000000105906", "images": ["AURORA/data/something/frames/204296/first.jpg", "AURORA/data/something/frames/204296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 coin onto hair oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105907", "images": ["AURORA/data/something/frames/97082/first.jpg", "AURORA/data/something/frames/97082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000105908", "images": ["AURORA/data/something/frames/135944/first.jpg", "AURORA/data/something/frames/135944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105909", "images": ["AURORA/data/something/frames/213296/first.jpg", "AURORA/data/something/frames/213296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper-clip upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105910", "images": ["AURORA/data/something/frames/102224/first.jpg", "AURORA/data/something/frames/102224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105911", "images": ["AURORA/data/something/frames/71060/first.jpg", "AURORA/data/something/frames/71060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling socks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105912", "images": ["AURORA/data/something/frames/14995/first.jpg", "AURORA/data/something/frames/14995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105913", "images": ["AURORA/data/something/frames/20672/first.jpg", "AURORA/data/something/frames/20672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105914", "images": ["AURORA/data/something/frames/57753/first.jpg", "AURORA/data/something/frames/57753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bean bag onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105915", "images": ["AURORA/data/something/frames/184562/first.jpg", "AURORA/data/something/frames/184562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105916", "images": ["AURORA/data/something/frames/209315/first.jpg", "AURORA/data/something/frames/209315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105917", "images": ["AURORA/data/something/frames/66953/first.jpg", "AURORA/data/something/frames/66953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105918", "images": ["AURORA/data/something/frames/43233/first.jpg", "AURORA/data/something/frames/43233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105919", "images": ["AURORA/data/something/frames/103869/first.jpg", "AURORA/data/something/frames/103869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning soupbowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105920", "images": ["AURORA/data/something/frames/191488/first.jpg", "AURORA/data/something/frames/191488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105921", "images": ["AURORA/data/something/frames/178356/first.jpg", "AURORA/data/something/frames/178356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105922", "images": ["AURORA/data/something/frames/42228/first.jpg", "AURORA/data/something/frames/42228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobilephone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105923", "images": ["AURORA/data/something/frames/63548/first.jpg", "AURORA/data/something/frames/63548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105924", "images": ["AURORA/data/something/frames/66319/first.jpg", "AURORA/data/something/frames/66319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dinosaur prototype"}, {"from": "gpt", "value": ""}]} +{"id": "000000105925", "images": ["AURORA/data/something/frames/85905/first.jpg", "AURORA/data/something/frames/85905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105926", "images": ["AURORA/data/something/frames/183031/first.jpg", "AURORA/data/something/frames/183031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105927", "images": ["AURORA/data/something/frames/162748/first.jpg", "AURORA/data/something/frames/162748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screw up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105928", "images": ["AURORA/data/something/frames/82424/first.jpg", "AURORA/data/something/frames/82424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the arm of a teddy bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000105929", "images": ["AURORA/data/something/frames/103429/first.jpg", "AURORA/data/something/frames/103429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105930", "images": ["AURORA/data/something/frames/132614/first.jpg", "AURORA/data/something/frames/132614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying pig on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000105931", "images": ["AURORA/data/something/frames/165322/first.jpg", "AURORA/data/something/frames/165322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a fist"}, {"from": "gpt", "value": ""}]} +{"id": "000000105932", "images": ["AURORA/data/something/frames/72552/first.jpg", "AURORA/data/something/frames/72552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105933", "images": ["AURORA/data/something/frames/21575/first.jpg", "AURORA/data/something/frames/21575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pliers upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105934", "images": ["AURORA/data/something/frames/104775/first.jpg", "AURORA/data/something/frames/104775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105935", "images": ["AURORA/data/something/frames/106533/first.jpg", "AURORA/data/something/frames/106533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 pens onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105936", "images": ["AURORA/data/something/frames/34352/first.jpg", "AURORA/data/something/frames/34352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105937", "images": ["AURORA/data/something/frames/104458/first.jpg", "AURORA/data/something/frames/104458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105938", "images": ["AURORA/data/something/frames/42782/first.jpg", "AURORA/data/something/frames/42782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105939", "images": ["AURORA/data/something/frames/138899/first.jpg", "AURORA/data/something/frames/138899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering compass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105940", "images": ["AURORA/data/something/frames/130929/first.jpg", "AURORA/data/something/frames/130929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105941", "images": ["AURORA/data/something/frames/129551/first.jpg", "AURORA/data/something/frames/129551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105942", "images": ["AURORA/data/something/frames/155287/first.jpg", "AURORA/data/something/frames/155287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling things up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105943", "images": ["AURORA/data/something/frames/161270/first.jpg", "AURORA/data/something/frames/161270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cord so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105944", "images": ["AURORA/data/something/frames/206508/first.jpg", "AURORA/data/something/frames/206508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from banana bunch with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105945", "images": ["AURORA/data/something/frames/10098/first.jpg", "AURORA/data/something/frames/10098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a pink sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000105946", "images": ["AURORA/data/something/frames/49280/first.jpg", "AURORA/data/something/frames/49280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging machine into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105947", "images": ["AURORA/data/something/frames/64934/first.jpg", "AURORA/data/something/frames/64934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105948", "images": ["AURORA/data/something/frames/145196/first.jpg", "AURORA/data/something/frames/145196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105949", "images": ["AURORA/data/something/frames/177244/first.jpg", "AURORA/data/something/frames/177244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105950", "images": ["AURORA/data/something/frames/138993/first.jpg", "AURORA/data/something/frames/138993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000105951", "images": ["AURORA/data/something/frames/85895/first.jpg", "AURORA/data/something/frames/85895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jumpdrive closer to a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000105952", "images": ["AURORA/data/something/frames/105054/first.jpg", "AURORA/data/something/frames/105054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water from bottle into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105953", "images": ["AURORA/data/something/frames/11119/first.jpg", "AURORA/data/something/frames/11119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a paper tissue out of a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105954", "images": ["AURORA/data/something/frames/11267/first.jpg", "AURORA/data/something/frames/11267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote behind pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105955", "images": ["AURORA/data/something/frames/193127/first.jpg", "AURORA/data/something/frames/193127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105956", "images": ["AURORA/data/something/frames/203717/first.jpg", "AURORA/data/something/frames/203717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into marshmallow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105957", "images": ["AURORA/data/something/frames/194955/first.jpg", "AURORA/data/something/frames/194955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105958", "images": ["AURORA/data/something/frames/18592/first.jpg", "AURORA/data/something/frames/18592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into whiskey"}, {"from": "gpt", "value": ""}]} +{"id": "000000105959", "images": ["AURORA/data/something/frames/53531/first.jpg", "AURORA/data/something/frames/53531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105960", "images": ["AURORA/data/something/frames/77401/first.jpg", "AURORA/data/something/frames/77401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and fruit closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105961", "images": ["AURORA/data/something/frames/12160/first.jpg", "AURORA/data/something/frames/12160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105962", "images": ["AURORA/data/something/frames/194954/first.jpg", "AURORA/data/something/frames/194954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying bangle in rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000105963", "images": ["AURORA/data/something/frames/30186/first.jpg", "AURORA/data/something/frames/30186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bicycle-bell with hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105964", "images": ["AURORA/data/something/frames/203047/first.jpg", "AURORA/data/something/frames/203047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pad lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000105965", "images": ["AURORA/data/something/frames/190281/first.jpg", "AURORA/data/something/frames/190281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000105966", "images": ["AURORA/data/something/frames/127980/first.jpg", "AURORA/data/something/frames/127980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging ac charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105967", "images": ["AURORA/data/something/frames/83799/first.jpg", "AURORA/data/something/frames/83799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lidded cup next to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105968", "images": ["AURORA/data/something/frames/177874/first.jpg", "AURORA/data/something/frames/177874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping wallet over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105969", "images": ["AURORA/data/something/frames/72077/first.jpg", "AURORA/data/something/frames/72077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105970", "images": ["AURORA/data/something/frames/19584/first.jpg", "AURORA/data/something/frames/19584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105971", "images": ["AURORA/data/something/frames/111395/first.jpg", "AURORA/data/something/frames/111395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105972", "images": ["AURORA/data/something/frames/91376/first.jpg", "AURORA/data/something/frames/91376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wired headset on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105973", "images": ["AURORA/data/something/frames/60229/first.jpg", "AURORA/data/something/frames/60229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105974", "images": ["AURORA/data/something/frames/193671/first.jpg", "AURORA/data/something/frames/193671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box in front of a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000105975", "images": ["AURORA/data/something/frames/23292/first.jpg", "AURORA/data/something/frames/23292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 different items"}, {"from": "gpt", "value": ""}]} +{"id": "000000105976", "images": ["AURORA/data/something/frames/41924/first.jpg", "AURORA/data/something/frames/41924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105977", "images": ["AURORA/data/something/frames/91755/first.jpg", "AURORA/data/something/frames/91755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105978", "images": ["AURORA/data/something/frames/117454/first.jpg", "AURORA/data/something/frames/117454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with pen on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105979", "images": ["AURORA/data/something/frames/174211/first.jpg", "AURORA/data/something/frames/174211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pant into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105980", "images": ["AURORA/data/something/frames/78261/first.jpg", "AURORA/data/something/frames/78261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bear over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105981", "images": ["AURORA/data/something/frames/141684/first.jpg", "AURORA/data/something/frames/141684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105982", "images": ["AURORA/data/something/frames/122772/first.jpg", "AURORA/data/something/frames/122772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding coversheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105983", "images": ["AURORA/data/something/frames/104693/first.jpg", "AURORA/data/something/frames/104693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water bottle into cd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000105984", "images": ["AURORA/data/something/frames/78579/first.jpg", "AURORA/data/something/frames/78579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing binder clip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105985", "images": ["AURORA/data/something/frames/78678/first.jpg", "AURORA/data/something/frames/78678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping toothpaste off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105986", "images": ["AURORA/data/something/frames/16191/first.jpg", "AURORA/data/something/frames/16191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a gatorade bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105987", "images": ["AURORA/data/something/frames/164685/first.jpg", "AURORA/data/something/frames/164685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding car's side mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000105988", "images": ["AURORA/data/something/frames/157582/first.jpg", "AURORA/data/something/frames/157582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105989", "images": ["AURORA/data/something/frames/213350/first.jpg", "AURORA/data/something/frames/213350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105990", "images": ["AURORA/data/something/frames/217620/first.jpg", "AURORA/data/something/frames/217620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing canned food from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105991", "images": ["AURORA/data/something/frames/111440/first.jpg", "AURORA/data/something/frames/111440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning spoon rest upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105992", "images": ["AURORA/data/something/frames/68685/first.jpg", "AURORA/data/something/frames/68685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: gum colliding with gum and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105993", "images": ["AURORA/data/something/frames/402/first.jpg", "AURORA/data/something/frames/402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105994", "images": ["AURORA/data/something/frames/144523/first.jpg", "AURORA/data/something/frames/144523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bucket from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105995", "images": ["AURORA/data/something/frames/172835/first.jpg", "AURORA/data/something/frames/172835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105996", "images": ["AURORA/data/something/frames/212475/first.jpg", "AURORA/data/something/frames/212475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000105997", "images": ["AURORA/data/something/frames/180301/first.jpg", "AURORA/data/something/frames/180301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a cell phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105998", "images": ["AURORA/data/something/frames/42088/first.jpg", "AURORA/data/something/frames/42088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing masking tape just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105999", "images": ["AURORA/data/something/frames/84449/first.jpg", "AURORA/data/something/frames/84449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator and a coin on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106000", "images": ["AURORA/data/something/frames/203223/first.jpg", "AURORA/data/something/frames/203223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106001", "images": ["AURORA/data/something/frames/90746/first.jpg", "AURORA/data/something/frames/90746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106002", "images": ["AURORA/data/something/frames/25962/first.jpg", "AURORA/data/something/frames/25962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lamp up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106003", "images": ["AURORA/data/something/frames/50772/first.jpg", "AURORA/data/something/frames/50772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000106004", "images": ["AURORA/data/something/frames/106048/first.jpg", "AURORA/data/something/frames/106048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106005", "images": ["AURORA/data/something/frames/187138/first.jpg", "AURORA/data/something/frames/187138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming temple"}, {"from": "gpt", "value": ""}]} +{"id": "000000106006", "images": ["AURORA/data/something/frames/74575/first.jpg", "AURORA/data/something/frames/74575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106007", "images": ["AURORA/data/something/frames/57579/first.jpg", "AURORA/data/something/frames/57579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bolt with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106008", "images": ["AURORA/data/something/frames/210051/first.jpg", "AURORA/data/something/frames/210051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106009", "images": ["AURORA/data/something/frames/179043/first.jpg", "AURORA/data/something/frames/179043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106010", "images": ["AURORA/data/something/frames/179512/first.jpg", "AURORA/data/something/frames/179512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil from many others"}, {"from": "gpt", "value": ""}]} +{"id": "000000106011", "images": ["AURORA/data/something/frames/31859/first.jpg", "AURORA/data/something/frames/31859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106012", "images": ["AURORA/data/something/frames/108294/first.jpg", "AURORA/data/something/frames/108294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106013", "images": ["AURORA/data/something/frames/135954/first.jpg", "AURORA/data/something/frames/135954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106014", "images": ["AURORA/data/something/frames/98361/first.jpg", "AURORA/data/something/frames/98361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling granola bar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106015", "images": ["AURORA/data/something/frames/62240/first.jpg", "AURORA/data/something/frames/62240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind a bath-tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106016", "images": ["AURORA/data/something/frames/198860/first.jpg", "AURORA/data/something/frames/198860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106017", "images": ["AURORA/data/something/frames/53730/first.jpg", "AURORA/data/something/frames/53730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106018", "images": ["AURORA/data/something/frames/106822/first.jpg", "AURORA/data/something/frames/106822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping vitamin bottle with vitamins over, so vitamins falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106019", "images": ["AURORA/data/something/frames/59299/first.jpg", "AURORA/data/something/frames/59299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book onto book so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106020", "images": ["AURORA/data/something/frames/41214/first.jpg", "AURORA/data/something/frames/41214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 train tracks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106021", "images": ["AURORA/data/something/frames/61621/first.jpg", "AURORA/data/something/frames/61621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106022", "images": ["AURORA/data/something/frames/156790/first.jpg", "AURORA/data/something/frames/156790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106023", "images": ["AURORA/data/something/frames/180692/first.jpg", "AURORA/data/something/frames/180692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging soil out of ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000106024", "images": ["AURORA/data/something/frames/34709/first.jpg", "AURORA/data/something/frames/34709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with flashdisk and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106025", "images": ["AURORA/data/something/frames/139766/first.jpg", "AURORA/data/something/frames/139766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pencil without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106026", "images": ["AURORA/data/something/frames/141994/first.jpg", "AURORA/data/something/frames/141994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a piece of tangerine and a dish closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106027", "images": ["AURORA/data/something/frames/102550/first.jpg", "AURORA/data/something/frames/102550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending medicine tablet strip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106028", "images": ["AURORA/data/something/frames/219800/first.jpg", "AURORA/data/something/frames/219800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt closer to pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106029", "images": ["AURORA/data/something/frames/78847/first.jpg", "AURORA/data/something/frames/78847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106030", "images": ["AURORA/data/something/frames/191662/first.jpg", "AURORA/data/something/frames/191662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wire into mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000106031", "images": ["AURORA/data/something/frames/74760/first.jpg", "AURORA/data/something/frames/74760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bowl behind a jbl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106032", "images": ["AURORA/data/something/frames/148945/first.jpg", "AURORA/data/something/frames/148945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a screwdriver closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106033", "images": ["AURORA/data/something/frames/184051/first.jpg", "AURORA/data/something/frames/184051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with knife on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106034", "images": ["AURORA/data/something/frames/216657/first.jpg", "AURORA/data/something/frames/216657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106035", "images": ["AURORA/data/something/frames/98301/first.jpg", "AURORA/data/something/frames/98301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106036", "images": ["AURORA/data/something/frames/161014/first.jpg", "AURORA/data/something/frames/161014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bottled ponzu sauce"}, {"from": "gpt", "value": ""}]} +{"id": "000000106037", "images": ["AURORA/data/something/frames/95962/first.jpg", "AURORA/data/something/frames/95962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106038", "images": ["AURORA/data/something/frames/202556/first.jpg", "AURORA/data/something/frames/202556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106039", "images": ["AURORA/data/something/frames/166833/first.jpg", "AURORA/data/something/frames/166833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106040", "images": ["AURORA/data/something/frames/22966/first.jpg", "AURORA/data/something/frames/22966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote behind textbook"}, {"from": "gpt", "value": ""}]} +{"id": "000000106041", "images": ["AURORA/data/something/frames/44441/first.jpg", "AURORA/data/something/frames/44441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pillow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106042", "images": ["AURORA/data/something/frames/158205/first.jpg", "AURORA/data/something/frames/158205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106043", "images": ["AURORA/data/something/frames/45058/first.jpg", "AURORA/data/something/frames/45058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power box into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106044", "images": ["AURORA/data/something/frames/74966/first.jpg", "AURORA/data/something/frames/74966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wooden block up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106045", "images": ["AURORA/data/something/frames/134415/first.jpg", "AURORA/data/something/frames/134415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plastic oignons being deflected from palstic choux"}, {"from": "gpt", "value": ""}]} +{"id": "000000106046", "images": ["AURORA/data/something/frames/60063/first.jpg", "AURORA/data/something/frames/60063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rubix cube closer to yellow ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000106047", "images": ["AURORA/data/something/frames/77904/first.jpg", "AURORA/data/something/frames/77904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper onto fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000106048", "images": ["AURORA/data/something/frames/24532/first.jpg", "AURORA/data/something/frames/24532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106049", "images": ["AURORA/data/something/frames/207871/first.jpg", "AURORA/data/something/frames/207871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering shoe with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106050", "images": ["AURORA/data/something/frames/192999/first.jpg", "AURORA/data/something/frames/192999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening waste bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106051", "images": ["AURORA/data/something/frames/159145/first.jpg", "AURORA/data/something/frames/159145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail clippers closer to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106052", "images": ["AURORA/data/something/frames/125214/first.jpg", "AURORA/data/something/frames/125214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106053", "images": ["AURORA/data/something/frames/104739/first.jpg", "AURORA/data/something/frames/104739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106054", "images": ["AURORA/data/something/frames/147219/first.jpg", "AURORA/data/something/frames/147219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pen and black pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106055", "images": ["AURORA/data/something/frames/212006/first.jpg", "AURORA/data/something/frames/212006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette tape behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106056", "images": ["AURORA/data/something/frames/164273/first.jpg", "AURORA/data/something/frames/164273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106057", "images": ["AURORA/data/something/frames/170235/first.jpg", "AURORA/data/something/frames/170235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106058", "images": ["AURORA/data/something/frames/70631/first.jpg", "AURORA/data/something/frames/70631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble onto paper structure so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106059", "images": ["AURORA/data/something/frames/196910/first.jpg", "AURORA/data/something/frames/196910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting dinosaur with car"}, {"from": "gpt", "value": ""}]} +{"id": "000000106060", "images": ["AURORA/data/something/frames/148169/first.jpg", "AURORA/data/something/frames/148169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cross onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106061", "images": ["AURORA/data/something/frames/62725/first.jpg", "AURORA/data/something/frames/62725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106062", "images": ["AURORA/data/something/frames/181858/first.jpg", "AURORA/data/something/frames/181858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one card of many cards on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106063", "images": ["AURORA/data/something/frames/93923/first.jpg", "AURORA/data/something/frames/93923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mouse with a spanner"}, {"from": "gpt", "value": ""}]} +{"id": "000000106064", "images": ["AURORA/data/something/frames/82611/first.jpg", "AURORA/data/something/frames/82611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106065", "images": ["AURORA/data/something/frames/172902/first.jpg", "AURORA/data/something/frames/172902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106066", "images": ["AURORA/data/something/frames/108786/first.jpg", "AURORA/data/something/frames/108786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lemon into a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106067", "images": ["AURORA/data/something/frames/130905/first.jpg", "AURORA/data/something/frames/130905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tv remote onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106068", "images": ["AURORA/data/something/frames/52646/first.jpg", "AURORA/data/something/frames/52646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bubble bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106069", "images": ["AURORA/data/something/frames/118974/first.jpg", "AURORA/data/something/frames/118974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting body moisturiser bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106070", "images": ["AURORA/data/something/frames/53974/first.jpg", "AURORA/data/something/frames/53974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106071", "images": ["AURORA/data/something/frames/198782/first.jpg", "AURORA/data/something/frames/198782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106072", "images": ["AURORA/data/something/frames/34187/first.jpg", "AURORA/data/something/frames/34187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106073", "images": ["AURORA/data/something/frames/89104/first.jpg", "AURORA/data/something/frames/89104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cough syrup off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106074", "images": ["AURORA/data/something/frames/171612/first.jpg", "AURORA/data/something/frames/171612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red pot holder from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106075", "images": ["AURORA/data/something/frames/219456/first.jpg", "AURORA/data/something/frames/219456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lift pump up without dropdown up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106076", "images": ["AURORA/data/something/frames/38922/first.jpg", "AURORA/data/something/frames/38922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106077", "images": ["AURORA/data/something/frames/128208/first.jpg", "AURORA/data/something/frames/128208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106078", "images": ["AURORA/data/something/frames/3735/first.jpg", "AURORA/data/something/frames/3735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106079", "images": ["AURORA/data/something/frames/132230/first.jpg", "AURORA/data/something/frames/132230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling candies onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106080", "images": ["AURORA/data/something/frames/181910/first.jpg", "AURORA/data/something/frames/181910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sphere and a stone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106081", "images": ["AURORA/data/something/frames/10659/first.jpg", "AURORA/data/something/frames/10659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106082", "images": ["AURORA/data/something/frames/83778/first.jpg", "AURORA/data/something/frames/83778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106083", "images": ["AURORA/data/something/frames/200234/first.jpg", "AURORA/data/something/frames/200234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106084", "images": ["AURORA/data/something/frames/34412/first.jpg", "AURORA/data/something/frames/34412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000106085", "images": ["AURORA/data/something/frames/171317/first.jpg", "AURORA/data/something/frames/171317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and ruler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106086", "images": ["AURORA/data/something/frames/207671/first.jpg", "AURORA/data/something/frames/207671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106087", "images": ["AURORA/data/something/frames/25172/first.jpg", "AURORA/data/something/frames/25172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106088", "images": ["AURORA/data/something/frames/89103/first.jpg", "AURORA/data/something/frames/89103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106089", "images": ["AURORA/data/something/frames/217749/first.jpg", "AURORA/data/something/frames/217749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cereal over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106090", "images": ["AURORA/data/something/frames/39512/first.jpg", "AURORA/data/something/frames/39512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting s phone in front of key"}, {"from": "gpt", "value": ""}]} +{"id": "000000106091", "images": ["AURORA/data/something/frames/45983/first.jpg", "AURORA/data/something/frames/45983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a usb stick away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106092", "images": ["AURORA/data/something/frames/113384/first.jpg", "AURORA/data/something/frames/113384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something next to something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106093", "images": ["AURORA/data/something/frames/16214/first.jpg", "AURORA/data/something/frames/16214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a lighter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106094", "images": ["AURORA/data/something/frames/53680/first.jpg", "AURORA/data/something/frames/53680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate onto coversheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106095", "images": ["AURORA/data/something/frames/198737/first.jpg", "AURORA/data/something/frames/198737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106096", "images": ["AURORA/data/something/frames/187591/first.jpg", "AURORA/data/something/frames/187591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote next to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106097", "images": ["AURORA/data/something/frames/179770/first.jpg", "AURORA/data/something/frames/179770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106098", "images": ["AURORA/data/something/frames/33362/first.jpg", "AURORA/data/something/frames/33362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox behind a bucket lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000106099", "images": ["AURORA/data/something/frames/36124/first.jpg", "AURORA/data/something/frames/36124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106100", "images": ["AURORA/data/something/frames/30316/first.jpg", "AURORA/data/something/frames/30316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pumpkin cookie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106101", "images": ["AURORA/data/something/frames/19583/first.jpg", "AURORA/data/something/frames/19583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking snack from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106102", "images": ["AURORA/data/something/frames/173811/first.jpg", "AURORA/data/something/frames/173811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106103", "images": ["AURORA/data/something/frames/138482/first.jpg", "AURORA/data/something/frames/138482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106104", "images": ["AURORA/data/something/frames/146988/first.jpg", "AURORA/data/something/frames/146988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spanner behind paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000106105", "images": ["AURORA/data/something/frames/205496/first.jpg", "AURORA/data/something/frames/205496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lamp with double-sided adhesive tape on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106106", "images": ["AURORA/data/something/frames/100661/first.jpg", "AURORA/data/something/frames/100661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106107", "images": ["AURORA/data/something/frames/14842/first.jpg", "AURORA/data/something/frames/14842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106108", "images": ["AURORA/data/something/frames/118049/first.jpg", "AURORA/data/something/frames/118049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: air hockey puck being deflected from air hockey mallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106109", "images": ["AURORA/data/something/frames/93308/first.jpg", "AURORA/data/something/frames/93308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106110", "images": ["AURORA/data/something/frames/188413/first.jpg", "AURORA/data/something/frames/188413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into cake"}, {"from": "gpt", "value": ""}]} +{"id": "000000106111", "images": ["AURORA/data/something/frames/46057/first.jpg", "AURORA/data/something/frames/46057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106112", "images": ["AURORA/data/something/frames/65200/first.jpg", "AURORA/data/something/frames/65200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a flashlight on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106113", "images": ["AURORA/data/something/frames/76980/first.jpg", "AURORA/data/something/frames/76980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106114", "images": ["AURORA/data/something/frames/186942/first.jpg", "AURORA/data/something/frames/186942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106115", "images": ["AURORA/data/something/frames/157478/first.jpg", "AURORA/data/something/frames/157478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a key behind a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106116", "images": ["AURORA/data/something/frames/160765/first.jpg", "AURORA/data/something/frames/160765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking taking knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000106117", "images": ["AURORA/data/something/frames/159540/first.jpg", "AURORA/data/something/frames/159540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106118", "images": ["AURORA/data/something/frames/111995/first.jpg", "AURORA/data/something/frames/111995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106119", "images": ["AURORA/data/something/frames/107701/first.jpg", "AURORA/data/something/frames/107701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106120", "images": ["AURORA/data/something/frames/117648/first.jpg", "AURORA/data/something/frames/117648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106121", "images": ["AURORA/data/something/frames/11588/first.jpg", "AURORA/data/something/frames/11588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with spoon on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106122", "images": ["AURORA/data/something/frames/185958/first.jpg", "AURORA/data/something/frames/185958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb plug into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106123", "images": ["AURORA/data/something/frames/365/first.jpg", "AURORA/data/something/frames/365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106124", "images": ["AURORA/data/something/frames/195612/first.jpg", "AURORA/data/something/frames/195612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106125", "images": ["AURORA/data/something/frames/103389/first.jpg", "AURORA/data/something/frames/103389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106126", "images": ["AURORA/data/something/frames/10975/first.jpg", "AURORA/data/something/frames/10975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106127", "images": ["AURORA/data/something/frames/3540/first.jpg", "AURORA/data/something/frames/3540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106128", "images": ["AURORA/data/something/frames/204776/first.jpg", "AURORA/data/something/frames/204776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins (pennies)"}, {"from": "gpt", "value": ""}]} +{"id": "000000106129", "images": ["AURORA/data/something/frames/213669/first.jpg", "AURORA/data/something/frames/213669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106130", "images": ["AURORA/data/something/frames/191031/first.jpg", "AURORA/data/something/frames/191031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a hammer and a nail closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106131", "images": ["AURORA/data/something/frames/85558/first.jpg", "AURORA/data/something/frames/85558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spatula upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106132", "images": ["AURORA/data/something/frames/200985/first.jpg", "AURORA/data/something/frames/200985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106133", "images": ["AURORA/data/something/frames/154385/first.jpg", "AURORA/data/something/frames/154385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a watering can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106134", "images": ["AURORA/data/something/frames/20586/first.jpg", "AURORA/data/something/frames/20586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass flower vase until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106135", "images": ["AURORA/data/something/frames/62926/first.jpg", "AURORA/data/something/frames/62926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a wooden stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106136", "images": ["AURORA/data/something/frames/196297/first.jpg", "AURORA/data/something/frames/196297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106137", "images": ["AURORA/data/something/frames/56670/first.jpg", "AURORA/data/something/frames/56670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106138", "images": ["AURORA/data/something/frames/163607/first.jpg", "AURORA/data/something/frames/163607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting playing card with tweezers on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106139", "images": ["AURORA/data/something/frames/123124/first.jpg", "AURORA/data/something/frames/123124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a cube, revealing a toy behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106140", "images": ["AURORA/data/something/frames/71173/first.jpg", "AURORA/data/something/frames/71173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from book with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106141", "images": ["AURORA/data/something/frames/80513/first.jpg", "AURORA/data/something/frames/80513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving potato and potato so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106142", "images": ["AURORA/data/something/frames/52137/first.jpg", "AURORA/data/something/frames/52137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106143", "images": ["AURORA/data/something/frames/211202/first.jpg", "AURORA/data/something/frames/211202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106144", "images": ["AURORA/data/something/frames/62001/first.jpg", "AURORA/data/something/frames/62001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106145", "images": ["AURORA/data/something/frames/135520/first.jpg", "AURORA/data/something/frames/135520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing blanket, revealing piggy bank on notebook behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106146", "images": ["AURORA/data/something/frames/180287/first.jpg", "AURORA/data/something/frames/180287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue ballpen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106147", "images": ["AURORA/data/something/frames/55937/first.jpg", "AURORA/data/something/frames/55937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106148", "images": ["AURORA/data/something/frames/124975/first.jpg", "AURORA/data/something/frames/124975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip that cannot stand upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106149", "images": ["AURORA/data/something/frames/185198/first.jpg", "AURORA/data/something/frames/185198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler and a remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106150", "images": ["AURORA/data/something/frames/219139/first.jpg", "AURORA/data/something/frames/219139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fluorescent colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106151", "images": ["AURORA/data/something/frames/132337/first.jpg", "AURORA/data/something/frames/132337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a wall with a stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000106152", "images": ["AURORA/data/something/frames/147296/first.jpg", "AURORA/data/something/frames/147296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pencil so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106153", "images": ["AURORA/data/something/frames/57826/first.jpg", "AURORA/data/something/frames/57826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000106154", "images": ["AURORA/data/something/frames/149698/first.jpg", "AURORA/data/something/frames/149698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping beach pebble next to plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106155", "images": ["AURORA/data/something/frames/3445/first.jpg", "AURORA/data/something/frames/3445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106156", "images": ["AURORA/data/something/frames/92579/first.jpg", "AURORA/data/something/frames/92579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tiger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106157", "images": ["AURORA/data/something/frames/168536/first.jpg", "AURORA/data/something/frames/168536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) sole of shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000106158", "images": ["AURORA/data/something/frames/173369/first.jpg", "AURORA/data/something/frames/173369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pot out of an oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000106159", "images": ["AURORA/data/something/frames/106306/first.jpg", "AURORA/data/something/frames/106306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing water bottle with cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106160", "images": ["AURORA/data/something/frames/138238/first.jpg", "AURORA/data/something/frames/138238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) part of candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106161", "images": ["AURORA/data/something/frames/57112/first.jpg", "AURORA/data/something/frames/57112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with scissors on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106162", "images": ["AURORA/data/something/frames/35431/first.jpg", "AURORA/data/something/frames/35431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106163", "images": ["AURORA/data/something/frames/180817/first.jpg", "AURORA/data/something/frames/180817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil sharpener next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106164", "images": ["AURORA/data/something/frames/55848/first.jpg", "AURORA/data/something/frames/55848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106165", "images": ["AURORA/data/something/frames/53018/first.jpg", "AURORA/data/something/frames/53018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106166", "images": ["AURORA/data/something/frames/54073/first.jpg", "AURORA/data/something/frames/54073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106167", "images": ["AURORA/data/something/frames/3619/first.jpg", "AURORA/data/something/frames/3619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black lipstick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106168", "images": ["AURORA/data/something/frames/125048/first.jpg", "AURORA/data/something/frames/125048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a shampoo tube colliding with a comb and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106169", "images": ["AURORA/data/something/frames/169342/first.jpg", "AURORA/data/something/frames/169342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106170", "images": ["AURORA/data/something/frames/54657/first.jpg", "AURORA/data/something/frames/54657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing plastic spray from right to left from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106171", "images": ["AURORA/data/something/frames/209016/first.jpg", "AURORA/data/something/frames/209016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106172", "images": ["AURORA/data/something/frames/8042/first.jpg", "AURORA/data/something/frames/8042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding jeans"}, {"from": "gpt", "value": ""}]} +{"id": "000000106173", "images": ["AURORA/data/something/frames/108315/first.jpg", "AURORA/data/something/frames/108315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106174", "images": ["AURORA/data/something/frames/105737/first.jpg", "AURORA/data/something/frames/105737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillbox off of marlboro pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106175", "images": ["AURORA/data/something/frames/118419/first.jpg", "AURORA/data/something/frames/118419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106176", "images": ["AURORA/data/something/frames/37680/first.jpg", "AURORA/data/something/frames/37680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bucket until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106177", "images": ["AURORA/data/something/frames/34931/first.jpg", "AURORA/data/something/frames/34931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106178", "images": ["AURORA/data/something/frames/86032/first.jpg", "AURORA/data/something/frames/86032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106179", "images": ["AURORA/data/something/frames/118166/first.jpg", "AURORA/data/something/frames/118166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing heater component from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106180", "images": ["AURORA/data/something/frames/14056/first.jpg", "AURORA/data/something/frames/14056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106181", "images": ["AURORA/data/something/frames/155351/first.jpg", "AURORA/data/something/frames/155351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing candy wrapper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106182", "images": ["AURORA/data/something/frames/8740/first.jpg", "AURORA/data/something/frames/8740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a doll and a doll so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106183", "images": ["AURORA/data/something/frames/140042/first.jpg", "AURORA/data/something/frames/140042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon onto a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106184", "images": ["AURORA/data/something/frames/62427/first.jpg", "AURORA/data/something/frames/62427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106185", "images": ["AURORA/data/something/frames/68352/first.jpg", "AURORA/data/something/frames/68352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106186", "images": ["AURORA/data/something/frames/11143/first.jpg", "AURORA/data/something/frames/11143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106187", "images": ["AURORA/data/something/frames/83303/first.jpg", "AURORA/data/something/frames/83303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a monitor so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106188", "images": ["AURORA/data/something/frames/12738/first.jpg", "AURORA/data/something/frames/12738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a wallet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106189", "images": ["AURORA/data/something/frames/144470/first.jpg", "AURORA/data/something/frames/144470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106190", "images": ["AURORA/data/something/frames/193842/first.jpg", "AURORA/data/something/frames/193842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106191", "images": ["AURORA/data/something/frames/218349/first.jpg", "AURORA/data/something/frames/218349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a peace of paper across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106192", "images": ["AURORA/data/something/frames/123833/first.jpg", "AURORA/data/something/frames/123833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lidded cup into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106193", "images": ["AURORA/data/something/frames/169507/first.jpg", "AURORA/data/something/frames/169507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000106194", "images": ["AURORA/data/something/frames/111092/first.jpg", "AURORA/data/something/frames/111092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106195", "images": ["AURORA/data/something/frames/97369/first.jpg", "AURORA/data/something/frames/97369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting postit into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106196", "images": ["AURORA/data/something/frames/77068/first.jpg", "AURORA/data/something/frames/77068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and mug so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106197", "images": ["AURORA/data/something/frames/94183/first.jpg", "AURORA/data/something/frames/94183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a calculator towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106198", "images": ["AURORA/data/something/frames/147600/first.jpg", "AURORA/data/something/frames/147600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106199", "images": ["AURORA/data/something/frames/169688/first.jpg", "AURORA/data/something/frames/169688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into mattress"}, {"from": "gpt", "value": ""}]} +{"id": "000000106200", "images": ["AURORA/data/something/frames/119679/first.jpg", "AURORA/data/something/frames/119679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing salt onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106201", "images": ["AURORA/data/something/frames/24781/first.jpg", "AURORA/data/something/frames/24781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening side view mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000106202", "images": ["AURORA/data/something/frames/108505/first.jpg", "AURORA/data/something/frames/108505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many coins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106203", "images": ["AURORA/data/something/frames/190668/first.jpg", "AURORA/data/something/frames/190668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106204", "images": ["AURORA/data/something/frames/212697/first.jpg", "AURORA/data/something/frames/212697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glass on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106205", "images": ["AURORA/data/something/frames/194731/first.jpg", "AURORA/data/something/frames/194731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000106206", "images": ["AURORA/data/something/frames/205710/first.jpg", "AURORA/data/something/frames/205710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plant on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106207", "images": ["AURORA/data/something/frames/74522/first.jpg", "AURORA/data/something/frames/74522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending green bean until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106208", "images": ["AURORA/data/something/frames/102896/first.jpg", "AURORA/data/something/frames/102896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending twist tie so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106209", "images": ["AURORA/data/something/frames/64129/first.jpg", "AURORA/data/something/frames/64129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving arm of glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106210", "images": ["AURORA/data/something/frames/187904/first.jpg", "AURORA/data/something/frames/187904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a bench"}, {"from": "gpt", "value": ""}]} +{"id": "000000106211", "images": ["AURORA/data/something/frames/195213/first.jpg", "AURORA/data/something/frames/195213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mobile phone up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106212", "images": ["AURORA/data/something/frames/6107/first.jpg", "AURORA/data/something/frames/6107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming motor bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000106213", "images": ["AURORA/data/something/frames/88128/first.jpg", "AURORA/data/something/frames/88128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a water bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106214", "images": ["AURORA/data/something/frames/35037/first.jpg", "AURORA/data/something/frames/35037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bag, revealing glasses behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106215", "images": ["AURORA/data/something/frames/57685/first.jpg", "AURORA/data/something/frames/57685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106216", "images": ["AURORA/data/something/frames/80221/first.jpg", "AURORA/data/something/frames/80221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106217", "images": ["AURORA/data/something/frames/106786/first.jpg", "AURORA/data/something/frames/106786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106218", "images": ["AURORA/data/something/frames/11193/first.jpg", "AURORA/data/something/frames/11193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106219", "images": ["AURORA/data/something/frames/23455/first.jpg", "AURORA/data/something/frames/23455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a hose to a spirometer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106220", "images": ["AURORA/data/something/frames/6010/first.jpg", "AURORA/data/something/frames/6010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106221", "images": ["AURORA/data/something/frames/212602/first.jpg", "AURORA/data/something/frames/212602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of my leg"}, {"from": "gpt", "value": ""}]} +{"id": "000000106222", "images": ["AURORA/data/something/frames/56518/first.jpg", "AURORA/data/something/frames/56518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking helmet from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000106223", "images": ["AURORA/data/something/frames/131135/first.jpg", "AURORA/data/something/frames/131135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106224", "images": ["AURORA/data/something/frames/2659/first.jpg", "AURORA/data/something/frames/2659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small bin off of large bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106225", "images": ["AURORA/data/something/frames/53781/first.jpg", "AURORA/data/something/frames/53781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tiny scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000106226", "images": ["AURORA/data/something/frames/32250/first.jpg", "AURORA/data/something/frames/32250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lighter colliding with control and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106227", "images": ["AURORA/data/something/frames/216856/first.jpg", "AURORA/data/something/frames/216856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair clips onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106228", "images": ["AURORA/data/something/frames/160836/first.jpg", "AURORA/data/something/frames/160836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping folded napkin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106229", "images": ["AURORA/data/something/frames/138353/first.jpg", "AURORA/data/something/frames/138353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a small bottlr being deflected from a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000106230", "images": ["AURORA/data/something/frames/69512/first.jpg", "AURORA/data/something/frames/69512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker pen and tubelight relay on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106231", "images": ["AURORA/data/something/frames/129246/first.jpg", "AURORA/data/something/frames/129246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000106232", "images": ["AURORA/data/something/frames/174397/first.jpg", "AURORA/data/something/frames/174397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and water bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106233", "images": ["AURORA/data/something/frames/6976/first.jpg", "AURORA/data/something/frames/6976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106234", "images": ["AURORA/data/something/frames/176713/first.jpg", "AURORA/data/something/frames/176713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106235", "images": ["AURORA/data/something/frames/9740/first.jpg", "AURORA/data/something/frames/9740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106236", "images": ["AURORA/data/something/frames/217353/first.jpg", "AURORA/data/something/frames/217353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106237", "images": ["AURORA/data/something/frames/70366/first.jpg", "AURORA/data/something/frames/70366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper weight up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106238", "images": ["AURORA/data/something/frames/125970/first.jpg", "AURORA/data/something/frames/125970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106239", "images": ["AURORA/data/something/frames/111502/first.jpg", "AURORA/data/something/frames/111502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106240", "images": ["AURORA/data/something/frames/79041/first.jpg", "AURORA/data/something/frames/79041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000106241", "images": ["AURORA/data/something/frames/2417/first.jpg", "AURORA/data/something/frames/2417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106242", "images": ["AURORA/data/something/frames/145858/first.jpg", "AURORA/data/something/frames/145858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading toothpaste onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000106243", "images": ["AURORA/data/something/frames/95700/first.jpg", "AURORA/data/something/frames/95700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shoe and a cat brush closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106244", "images": ["AURORA/data/something/frames/1241/first.jpg", "AURORA/data/something/frames/1241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of candy packs"}, {"from": "gpt", "value": ""}]} +{"id": "000000106245", "images": ["AURORA/data/something/frames/183134/first.jpg", "AURORA/data/something/frames/183134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106246", "images": ["AURORA/data/something/frames/115391/first.jpg", "AURORA/data/something/frames/115391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a jumper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106247", "images": ["AURORA/data/something/frames/155620/first.jpg", "AURORA/data/something/frames/155620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106248", "images": ["AURORA/data/something/frames/189493/first.jpg", "AURORA/data/something/frames/189493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106249", "images": ["AURORA/data/something/frames/23123/first.jpg", "AURORA/data/something/frames/23123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post-it to a monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106250", "images": ["AURORA/data/something/frames/89442/first.jpg", "AURORA/data/something/frames/89442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106251", "images": ["AURORA/data/something/frames/82690/first.jpg", "AURORA/data/something/frames/82690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flashlight and glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106252", "images": ["AURORA/data/something/frames/212161/first.jpg", "AURORA/data/something/frames/212161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering sketch book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106253", "images": ["AURORA/data/something/frames/161086/first.jpg", "AURORA/data/something/frames/161086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a monkey figure and a monkey figure closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106254", "images": ["AURORA/data/something/frames/203659/first.jpg", "AURORA/data/something/frames/203659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106255", "images": ["AURORA/data/something/frames/209430/first.jpg", "AURORA/data/something/frames/209430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a comb colliding with another comb and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106256", "images": ["AURORA/data/something/frames/83567/first.jpg", "AURORA/data/something/frames/83567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour some grains into a glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106257", "images": ["AURORA/data/something/frames/131849/first.jpg", "AURORA/data/something/frames/131849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106258", "images": ["AURORA/data/something/frames/22324/first.jpg", "AURORA/data/something/frames/22324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking sponge so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106259", "images": ["AURORA/data/something/frames/75976/first.jpg", "AURORA/data/something/frames/75976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into power board"}, {"from": "gpt", "value": ""}]} +{"id": "000000106260", "images": ["AURORA/data/something/frames/92909/first.jpg", "AURORA/data/something/frames/92909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106261", "images": ["AURORA/data/something/frames/216055/first.jpg", "AURORA/data/something/frames/216055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106262", "images": ["AURORA/data/something/frames/217404/first.jpg", "AURORA/data/something/frames/217404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106263", "images": ["AURORA/data/something/frames/128813/first.jpg", "AURORA/data/something/frames/128813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106264", "images": ["AURORA/data/something/frames/150380/first.jpg", "AURORA/data/something/frames/150380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106265", "images": ["AURORA/data/something/frames/213378/first.jpg", "AURORA/data/something/frames/213378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a game out of an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106266", "images": ["AURORA/data/something/frames/206408/first.jpg", "AURORA/data/something/frames/206408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106267", "images": ["AURORA/data/something/frames/66269/first.jpg", "AURORA/data/something/frames/66269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cell phone with envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106268", "images": ["AURORA/data/something/frames/138244/first.jpg", "AURORA/data/something/frames/138244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a figurine upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106269", "images": ["AURORA/data/something/frames/184211/first.jpg", "AURORA/data/something/frames/184211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pencilbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000106270", "images": ["AURORA/data/something/frames/32751/first.jpg", "AURORA/data/something/frames/32751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106271", "images": ["AURORA/data/something/frames/175586/first.jpg", "AURORA/data/something/frames/175586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing iron onto board"}, {"from": "gpt", "value": ""}]} +{"id": "000000106272", "images": ["AURORA/data/something/frames/7627/first.jpg", "AURORA/data/something/frames/7627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106273", "images": ["AURORA/data/something/frames/209874/first.jpg", "AURORA/data/something/frames/209874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spanner with screw driver"}, {"from": "gpt", "value": ""}]} +{"id": "000000106274", "images": ["AURORA/data/something/frames/138894/first.jpg", "AURORA/data/something/frames/138894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106275", "images": ["AURORA/data/something/frames/120887/first.jpg", "AURORA/data/something/frames/120887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an audio cable into headphones but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106276", "images": ["AURORA/data/something/frames/80814/first.jpg", "AURORA/data/something/frames/80814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106277", "images": ["AURORA/data/something/frames/6973/first.jpg", "AURORA/data/something/frames/6973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coins (pennies)"}, {"from": "gpt", "value": ""}]} +{"id": "000000106278", "images": ["AURORA/data/something/frames/91802/first.jpg", "AURORA/data/something/frames/91802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106279", "images": ["AURORA/data/something/frames/197389/first.jpg", "AURORA/data/something/frames/197389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle back"}, {"from": "gpt", "value": ""}]} +{"id": "000000106280", "images": ["AURORA/data/something/frames/139760/first.jpg", "AURORA/data/something/frames/139760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ring away from the earing"}, {"from": "gpt", "value": ""}]} +{"id": "000000106281", "images": ["AURORA/data/something/frames/61881/first.jpg", "AURORA/data/something/frames/61881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bb-8 cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106282", "images": ["AURORA/data/something/frames/61982/first.jpg", "AURORA/data/something/frames/61982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass canister and glass canister closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106283", "images": ["AURORA/data/something/frames/97009/first.jpg", "AURORA/data/something/frames/97009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106284", "images": ["AURORA/data/something/frames/83304/first.jpg", "AURORA/data/something/frames/83304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106285", "images": ["AURORA/data/something/frames/46005/first.jpg", "AURORA/data/something/frames/46005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coloured pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106286", "images": ["AURORA/data/something/frames/201616/first.jpg", "AURORA/data/something/frames/201616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000106287", "images": ["AURORA/data/something/frames/181896/first.jpg", "AURORA/data/something/frames/181896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106288", "images": ["AURORA/data/something/frames/142062/first.jpg", "AURORA/data/something/frames/142062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb data cable into usb slot"}, {"from": "gpt", "value": ""}]} +{"id": "000000106289", "images": ["AURORA/data/something/frames/201509/first.jpg", "AURORA/data/something/frames/201509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto shoe box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106290", "images": ["AURORA/data/something/frames/88103/first.jpg", "AURORA/data/something/frames/88103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote control and a pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106291", "images": ["AURORA/data/something/frames/169102/first.jpg", "AURORA/data/something/frames/169102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a lighter on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106292", "images": ["AURORA/data/something/frames/158390/first.jpg", "AURORA/data/something/frames/158390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting scissors up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106293", "images": ["AURORA/data/something/frames/199119/first.jpg", "AURORA/data/something/frames/199119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting beer bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106294", "images": ["AURORA/data/something/frames/31874/first.jpg", "AURORA/data/something/frames/31874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting music player with coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106295", "images": ["AURORA/data/something/frames/42212/first.jpg", "AURORA/data/something/frames/42212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000106296", "images": ["AURORA/data/something/frames/72183/first.jpg", "AURORA/data/something/frames/72183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking file out of almirah"}, {"from": "gpt", "value": ""}]} +{"id": "000000106297", "images": ["AURORA/data/something/frames/79071/first.jpg", "AURORA/data/something/frames/79071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting off a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106298", "images": ["AURORA/data/something/frames/190027/first.jpg", "AURORA/data/something/frames/190027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb to micro-usb cord into a wall adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106299", "images": ["AURORA/data/something/frames/79097/first.jpg", "AURORA/data/something/frames/79097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000106300", "images": ["AURORA/data/something/frames/17933/first.jpg", "AURORA/data/something/frames/17933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white deodorant from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106301", "images": ["AURORA/data/something/frames/85715/first.jpg", "AURORA/data/something/frames/85715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106302", "images": ["AURORA/data/something/frames/76825/first.jpg", "AURORA/data/something/frames/76825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106303", "images": ["AURORA/data/something/frames/202581/first.jpg", "AURORA/data/something/frames/202581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106304", "images": ["AURORA/data/something/frames/100253/first.jpg", "AURORA/data/something/frames/100253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering feuerzeug with papier"}, {"from": "gpt", "value": ""}]} +{"id": "000000106305", "images": ["AURORA/data/something/frames/67856/first.jpg", "AURORA/data/something/frames/67856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106306", "images": ["AURORA/data/something/frames/12139/first.jpg", "AURORA/data/something/frames/12139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toothbrushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000106307", "images": ["AURORA/data/something/frames/157935/first.jpg", "AURORA/data/something/frames/157935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fluorescent light bulb out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106308", "images": ["AURORA/data/something/frames/15661/first.jpg", "AURORA/data/something/frames/15661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading vegetables onto a vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106309", "images": ["AURORA/data/something/frames/50974/first.jpg", "AURORA/data/something/frames/50974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106310", "images": ["AURORA/data/something/frames/83262/first.jpg", "AURORA/data/something/frames/83262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106311", "images": ["AURORA/data/something/frames/123836/first.jpg", "AURORA/data/something/frames/123836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pillow into a pillow case"}, {"from": "gpt", "value": ""}]} +{"id": "000000106312", "images": ["AURORA/data/something/frames/151294/first.jpg", "AURORA/data/something/frames/151294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keyboard with clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000106313", "images": ["AURORA/data/something/frames/78303/first.jpg", "AURORA/data/something/frames/78303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106314", "images": ["AURORA/data/something/frames/109256/first.jpg", "AURORA/data/something/frames/109256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling colorful scarf from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106315", "images": ["AURORA/data/something/frames/214988/first.jpg", "AURORA/data/something/frames/214988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106316", "images": ["AURORA/data/something/frames/182252/first.jpg", "AURORA/data/something/frames/182252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106317", "images": ["AURORA/data/something/frames/105275/first.jpg", "AURORA/data/something/frames/105275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging stove cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106318", "images": ["AURORA/data/something/frames/157211/first.jpg", "AURORA/data/something/frames/157211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from wardrobe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106319", "images": ["AURORA/data/something/frames/3659/first.jpg", "AURORA/data/something/frames/3659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toaster oven with an egg whisk"}, {"from": "gpt", "value": ""}]} +{"id": "000000106320", "images": ["AURORA/data/something/frames/196811/first.jpg", "AURORA/data/something/frames/196811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape, ball and helmet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106321", "images": ["AURORA/data/something/frames/139577/first.jpg", "AURORA/data/something/frames/139577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000106322", "images": ["AURORA/data/something/frames/141856/first.jpg", "AURORA/data/something/frames/141856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106323", "images": ["AURORA/data/something/frames/122269/first.jpg", "AURORA/data/something/frames/122269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chocolate next to other chocolates"}, {"from": "gpt", "value": ""}]} +{"id": "000000106324", "images": ["AURORA/data/something/frames/120355/first.jpg", "AURORA/data/something/frames/120355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000106325", "images": ["AURORA/data/something/frames/180330/first.jpg", "AURORA/data/something/frames/180330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of laptop without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106326", "images": ["AURORA/data/something/frames/66070/first.jpg", "AURORA/data/something/frames/66070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106327", "images": ["AURORA/data/something/frames/215876/first.jpg", "AURORA/data/something/frames/215876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping envelopes onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106328", "images": ["AURORA/data/something/frames/201176/first.jpg", "AURORA/data/something/frames/201176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying pocket bible in blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106329", "images": ["AURORA/data/something/frames/139070/first.jpg", "AURORA/data/something/frames/139070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106330", "images": ["AURORA/data/something/frames/205013/first.jpg", "AURORA/data/something/frames/205013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106331", "images": ["AURORA/data/something/frames/141056/first.jpg", "AURORA/data/something/frames/141056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling backpack onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106332", "images": ["AURORA/data/something/frames/192020/first.jpg", "AURORA/data/something/frames/192020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106333", "images": ["AURORA/data/something/frames/174205/first.jpg", "AURORA/data/something/frames/174205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106334", "images": ["AURORA/data/something/frames/139317/first.jpg", "AURORA/data/something/frames/139317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106335", "images": ["AURORA/data/something/frames/79473/first.jpg", "AURORA/data/something/frames/79473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106336", "images": ["AURORA/data/something/frames/2022/first.jpg", "AURORA/data/something/frames/2022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lighter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106337", "images": ["AURORA/data/something/frames/86088/first.jpg", "AURORA/data/something/frames/86088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106338", "images": ["AURORA/data/something/frames/157810/first.jpg", "AURORA/data/something/frames/157810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106339", "images": ["AURORA/data/something/frames/160076/first.jpg", "AURORA/data/something/frames/160076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening stein lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000106340", "images": ["AURORA/data/something/frames/155138/first.jpg", "AURORA/data/something/frames/155138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106341", "images": ["AURORA/data/something/frames/13124/first.jpg", "AURORA/data/something/frames/13124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb next to remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000106342", "images": ["AURORA/data/something/frames/121899/first.jpg", "AURORA/data/something/frames/121899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106343", "images": ["AURORA/data/something/frames/67126/first.jpg", "AURORA/data/something/frames/67126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting nail polish cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106344", "images": ["AURORA/data/something/frames/63501/first.jpg", "AURORA/data/something/frames/63501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106345", "images": ["AURORA/data/something/frames/87014/first.jpg", "AURORA/data/something/frames/87014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting highlighter on the edge of desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106346", "images": ["AURORA/data/something/frames/17220/first.jpg", "AURORA/data/something/frames/17220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: soda can being deflected from jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106347", "images": ["AURORA/data/something/frames/218819/first.jpg", "AURORA/data/something/frames/218819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink toothbrush case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106348", "images": ["AURORA/data/something/frames/98671/first.jpg", "AURORA/data/something/frames/98671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of shoes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106349", "images": ["AURORA/data/something/frames/83415/first.jpg", "AURORA/data/something/frames/83415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone closer to glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106350", "images": ["AURORA/data/something/frames/50434/first.jpg", "AURORA/data/something/frames/50434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into plastic case, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106351", "images": ["AURORA/data/something/frames/217280/first.jpg", "AURORA/data/something/frames/217280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plastic bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106352", "images": ["AURORA/data/something/frames/208665/first.jpg", "AURORA/data/something/frames/208665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stone onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000106353", "images": ["AURORA/data/something/frames/125396/first.jpg", "AURORA/data/something/frames/125396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dirt off of a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106354", "images": ["AURORA/data/something/frames/51189/first.jpg", "AURORA/data/something/frames/51189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glue stick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106355", "images": ["AURORA/data/something/frames/126230/first.jpg", "AURORA/data/something/frames/126230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pillow into a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000106356", "images": ["AURORA/data/something/frames/118682/first.jpg", "AURORA/data/something/frames/118682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106357", "images": ["AURORA/data/something/frames/89924/first.jpg", "AURORA/data/something/frames/89924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106358", "images": ["AURORA/data/something/frames/47979/first.jpg", "AURORA/data/something/frames/47979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a card reader so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106359", "images": ["AURORA/data/something/frames/144763/first.jpg", "AURORA/data/something/frames/144763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting metal next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106360", "images": ["AURORA/data/something/frames/175560/first.jpg", "AURORA/data/something/frames/175560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106361", "images": ["AURORA/data/something/frames/72810/first.jpg", "AURORA/data/something/frames/72810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106362", "images": ["AURORA/data/something/frames/175924/first.jpg", "AURORA/data/something/frames/175924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting eyeglass case with clip on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106363", "images": ["AURORA/data/something/frames/185108/first.jpg", "AURORA/data/something/frames/185108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker pen away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106364", "images": ["AURORA/data/something/frames/11881/first.jpg", "AURORA/data/something/frames/11881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair bands onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106365", "images": ["AURORA/data/something/frames/60583/first.jpg", "AURORA/data/something/frames/60583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking oranges"}, {"from": "gpt", "value": ""}]} +{"id": "000000106366", "images": ["AURORA/data/something/frames/47335/first.jpg", "AURORA/data/something/frames/47335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106367", "images": ["AURORA/data/something/frames/183131/first.jpg", "AURORA/data/something/frames/183131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green bowl from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106368", "images": ["AURORA/data/something/frames/167536/first.jpg", "AURORA/data/something/frames/167536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106369", "images": ["AURORA/data/something/frames/38232/first.jpg", "AURORA/data/something/frames/38232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a clothes peg in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106370", "images": ["AURORA/data/something/frames/139106/first.jpg", "AURORA/data/something/frames/139106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106371", "images": ["AURORA/data/something/frames/3629/first.jpg", "AURORA/data/something/frames/3629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming smart phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106372", "images": ["AURORA/data/something/frames/174333/first.jpg", "AURORA/data/something/frames/174333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106373", "images": ["AURORA/data/something/frames/144303/first.jpg", "AURORA/data/something/frames/144303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a wallet of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106374", "images": ["AURORA/data/something/frames/62545/first.jpg", "AURORA/data/something/frames/62545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cube from plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106375", "images": ["AURORA/data/something/frames/44413/first.jpg", "AURORA/data/something/frames/44413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking can so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106376", "images": ["AURORA/data/something/frames/43796/first.jpg", "AURORA/data/something/frames/43796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and a pendrive closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106377", "images": ["AURORA/data/something/frames/175736/first.jpg", "AURORA/data/something/frames/175736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and knife closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106378", "images": ["AURORA/data/something/frames/44024/first.jpg", "AURORA/data/something/frames/44024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a nail cutter upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106379", "images": ["AURORA/data/something/frames/157330/first.jpg", "AURORA/data/something/frames/157330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with big bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106380", "images": ["AURORA/data/something/frames/33210/first.jpg", "AURORA/data/something/frames/33210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106381", "images": ["AURORA/data/something/frames/175642/first.jpg", "AURORA/data/something/frames/175642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106382", "images": ["AURORA/data/something/frames/56241/first.jpg", "AURORA/data/something/frames/56241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106383", "images": ["AURORA/data/something/frames/201792/first.jpg", "AURORA/data/something/frames/201792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping butter off of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106384", "images": ["AURORA/data/something/frames/105493/first.jpg", "AURORA/data/something/frames/105493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lotion container with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106385", "images": ["AURORA/data/something/frames/166294/first.jpg", "AURORA/data/something/frames/166294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106386", "images": ["AURORA/data/something/frames/34830/first.jpg", "AURORA/data/something/frames/34830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106387", "images": ["AURORA/data/something/frames/181209/first.jpg", "AURORA/data/something/frames/181209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106388", "images": ["AURORA/data/something/frames/159438/first.jpg", "AURORA/data/something/frames/159438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000106389", "images": ["AURORA/data/something/frames/152497/first.jpg", "AURORA/data/something/frames/152497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106390", "images": ["AURORA/data/something/frames/180089/first.jpg", "AURORA/data/something/frames/180089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a tablet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106391", "images": ["AURORA/data/something/frames/215797/first.jpg", "AURORA/data/something/frames/215797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cat figure and a dog figure closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106392", "images": ["AURORA/data/something/frames/190824/first.jpg", "AURORA/data/something/frames/190824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106393", "images": ["AURORA/data/something/frames/191418/first.jpg", "AURORA/data/something/frames/191418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106394", "images": ["AURORA/data/something/frames/165397/first.jpg", "AURORA/data/something/frames/165397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duster away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106395", "images": ["AURORA/data/something/frames/109733/first.jpg", "AURORA/data/something/frames/109733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting oil container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106396", "images": ["AURORA/data/something/frames/153700/first.jpg", "AURORA/data/something/frames/153700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106397", "images": ["AURORA/data/something/frames/80885/first.jpg", "AURORA/data/something/frames/80885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy with a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000106398", "images": ["AURORA/data/something/frames/26852/first.jpg", "AURORA/data/something/frames/26852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving card down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106399", "images": ["AURORA/data/something/frames/122418/first.jpg", "AURORA/data/something/frames/122418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106400", "images": ["AURORA/data/something/frames/10108/first.jpg", "AURORA/data/something/frames/10108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning turning bottles water upside down upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106401", "images": ["AURORA/data/something/frames/176716/first.jpg", "AURORA/data/something/frames/176716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden stick down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106402", "images": ["AURORA/data/something/frames/115011/first.jpg", "AURORA/data/something/frames/115011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bismuth with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106403", "images": ["AURORA/data/something/frames/102791/first.jpg", "AURORA/data/something/frames/102791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106404", "images": ["AURORA/data/something/frames/94572/first.jpg", "AURORA/data/something/frames/94572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring sand into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106405", "images": ["AURORA/data/something/frames/85114/first.jpg", "AURORA/data/something/frames/85114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106406", "images": ["AURORA/data/something/frames/100452/first.jpg", "AURORA/data/something/frames/100452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106407", "images": ["AURORA/data/something/frames/89456/first.jpg", "AURORA/data/something/frames/89456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plate so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106408", "images": ["AURORA/data/something/frames/91409/first.jpg", "AURORA/data/something/frames/91409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fruit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106409", "images": ["AURORA/data/something/frames/73057/first.jpg", "AURORA/data/something/frames/73057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106410", "images": ["AURORA/data/something/frames/205113/first.jpg", "AURORA/data/something/frames/205113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a sandbax with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106411", "images": ["AURORA/data/something/frames/123975/first.jpg", "AURORA/data/something/frames/123975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky note to a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106412", "images": ["AURORA/data/something/frames/50796/first.jpg", "AURORA/data/something/frames/50796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tablet out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106413", "images": ["AURORA/data/something/frames/138389/first.jpg", "AURORA/data/something/frames/138389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106414", "images": ["AURORA/data/something/frames/7369/first.jpg", "AURORA/data/something/frames/7369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106415", "images": ["AURORA/data/something/frames/73233/first.jpg", "AURORA/data/something/frames/73233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000106416", "images": ["AURORA/data/something/frames/217426/first.jpg", "AURORA/data/something/frames/217426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106417", "images": ["AURORA/data/something/frames/199086/first.jpg", "AURORA/data/something/frames/199086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hair comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000106418", "images": ["AURORA/data/something/frames/103284/first.jpg", "AURORA/data/something/frames/103284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106419", "images": ["AURORA/data/something/frames/131324/first.jpg", "AURORA/data/something/frames/131324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a salt shaker so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106420", "images": ["AURORA/data/something/frames/82695/first.jpg", "AURORA/data/something/frames/82695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106421", "images": ["AURORA/data/something/frames/23393/first.jpg", "AURORA/data/something/frames/23393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of crocheted yarn so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000106422", "images": ["AURORA/data/something/frames/87615/first.jpg", "AURORA/data/something/frames/87615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106423", "images": ["AURORA/data/something/frames/68182/first.jpg", "AURORA/data/something/frames/68182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106424", "images": ["AURORA/data/something/frames/38808/first.jpg", "AURORA/data/something/frames/38808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106425", "images": ["AURORA/data/something/frames/140913/first.jpg", "AURORA/data/something/frames/140913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cotton ball so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000106426", "images": ["AURORA/data/something/frames/29698/first.jpg", "AURORA/data/something/frames/29698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a container so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106427", "images": ["AURORA/data/something/frames/43316/first.jpg", "AURORA/data/something/frames/43316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rubix cube away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106428", "images": ["AURORA/data/something/frames/881/first.jpg", "AURORA/data/something/frames/881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106429", "images": ["AURORA/data/something/frames/127704/first.jpg", "AURORA/data/something/frames/127704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one rubber band of many similar rubber bands on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106430", "images": ["AURORA/data/something/frames/18224/first.jpg", "AURORA/data/something/frames/18224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth rags into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106431", "images": ["AURORA/data/something/frames/64282/first.jpg", "AURORA/data/something/frames/64282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106432", "images": ["AURORA/data/something/frames/114755/first.jpg", "AURORA/data/something/frames/114755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sheet up with pizza cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106433", "images": ["AURORA/data/something/frames/76441/first.jpg", "AURORA/data/something/frames/76441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pillow with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106434", "images": ["AURORA/data/something/frames/155249/first.jpg", "AURORA/data/something/frames/155249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106435", "images": ["AURORA/data/something/frames/63281/first.jpg", "AURORA/data/something/frames/63281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106436", "images": ["AURORA/data/something/frames/176755/first.jpg", "AURORA/data/something/frames/176755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen and a water bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106437", "images": ["AURORA/data/something/frames/102308/first.jpg", "AURORA/data/something/frames/102308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106438", "images": ["AURORA/data/something/frames/134581/first.jpg", "AURORA/data/something/frames/134581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping glue bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106439", "images": ["AURORA/data/something/frames/113790/first.jpg", "AURORA/data/something/frames/113790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and cellphone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106440", "images": ["AURORA/data/something/frames/115622/first.jpg", "AURORA/data/something/frames/115622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a handkerchief so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106441", "images": ["AURORA/data/something/frames/40152/first.jpg", "AURORA/data/something/frames/40152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending small envelope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106442", "images": ["AURORA/data/something/frames/21912/first.jpg", "AURORA/data/something/frames/21912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106443", "images": ["AURORA/data/something/frames/87965/first.jpg", "AURORA/data/something/frames/87965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106444", "images": ["AURORA/data/something/frames/56944/first.jpg", "AURORA/data/something/frames/56944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling beads from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106445", "images": ["AURORA/data/something/frames/50321/first.jpg", "AURORA/data/something/frames/50321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106446", "images": ["AURORA/data/something/frames/29559/first.jpg", "AURORA/data/something/frames/29559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cube into dish"}, {"from": "gpt", "value": ""}]} +{"id": "000000106447", "images": ["AURORA/data/something/frames/189827/first.jpg", "AURORA/data/something/frames/189827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a computer mouse on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106448", "images": ["AURORA/data/something/frames/160870/first.jpg", "AURORA/data/something/frames/160870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106449", "images": ["AURORA/data/something/frames/92356/first.jpg", "AURORA/data/something/frames/92356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting books with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106450", "images": ["AURORA/data/something/frames/78978/first.jpg", "AURORA/data/something/frames/78978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting wall with tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000106451", "images": ["AURORA/data/something/frames/183276/first.jpg", "AURORA/data/something/frames/183276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping shot glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106452", "images": ["AURORA/data/something/frames/189156/first.jpg", "AURORA/data/something/frames/189156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing handkerchief into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106453", "images": ["AURORA/data/something/frames/28947/first.jpg", "AURORA/data/something/frames/28947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing gift into of plastic egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000106454", "images": ["AURORA/data/something/frames/123/first.jpg", "AURORA/data/something/frames/123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking brush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106455", "images": ["AURORA/data/something/frames/186095/first.jpg", "AURORA/data/something/frames/186095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of marker pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106456", "images": ["AURORA/data/something/frames/31780/first.jpg", "AURORA/data/something/frames/31780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106457", "images": ["AURORA/data/something/frames/16516/first.jpg", "AURORA/data/something/frames/16516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106458", "images": ["AURORA/data/something/frames/132288/first.jpg", "AURORA/data/something/frames/132288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a screwdriver without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106459", "images": ["AURORA/data/something/frames/92194/first.jpg", "AURORA/data/something/frames/92194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a can upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106460", "images": ["AURORA/data/something/frames/112017/first.jpg", "AURORA/data/something/frames/112017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106461", "images": ["AURORA/data/something/frames/205255/first.jpg", "AURORA/data/something/frames/205255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting backpack with boot"}, {"from": "gpt", "value": ""}]} +{"id": "000000106462", "images": ["AURORA/data/something/frames/182072/first.jpg", "AURORA/data/something/frames/182072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106463", "images": ["AURORA/data/something/frames/52020/first.jpg", "AURORA/data/something/frames/52020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet out of trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106464", "images": ["AURORA/data/something/frames/97774/first.jpg", "AURORA/data/something/frames/97774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying something on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106465", "images": ["AURORA/data/something/frames/53698/first.jpg", "AURORA/data/something/frames/53698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000106466", "images": ["AURORA/data/something/frames/150814/first.jpg", "AURORA/data/something/frames/150814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wood carving"}, {"from": "gpt", "value": ""}]} +{"id": "000000106467", "images": ["AURORA/data/something/frames/151351/first.jpg", "AURORA/data/something/frames/151351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling four blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106468", "images": ["AURORA/data/something/frames/124129/first.jpg", "AURORA/data/something/frames/124129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mallet underneath a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106469", "images": ["AURORA/data/something/frames/73868/first.jpg", "AURORA/data/something/frames/73868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tissue into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106470", "images": ["AURORA/data/something/frames/187593/first.jpg", "AURORA/data/something/frames/187593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106471", "images": ["AURORA/data/something/frames/207992/first.jpg", "AURORA/data/something/frames/207992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106472", "images": ["AURORA/data/something/frames/105620/first.jpg", "AURORA/data/something/frames/105620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a coin from behind of a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000106473", "images": ["AURORA/data/something/frames/52271/first.jpg", "AURORA/data/something/frames/52271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106474", "images": ["AURORA/data/something/frames/121692/first.jpg", "AURORA/data/something/frames/121692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106475", "images": ["AURORA/data/something/frames/24136/first.jpg", "AURORA/data/something/frames/24136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106476", "images": ["AURORA/data/something/frames/112584/first.jpg", "AURORA/data/something/frames/112584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cucumber down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106477", "images": ["AURORA/data/something/frames/220500/first.jpg", "AURORA/data/something/frames/220500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106478", "images": ["AURORA/data/something/frames/56863/first.jpg", "AURORA/data/something/frames/56863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106479", "images": ["AURORA/data/something/frames/176076/first.jpg", "AURORA/data/something/frames/176076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106480", "images": ["AURORA/data/something/frames/99295/first.jpg", "AURORA/data/something/frames/99295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a matchbox upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106481", "images": ["AURORA/data/something/frames/139036/first.jpg", "AURORA/data/something/frames/139036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a rock with other rocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106482", "images": ["AURORA/data/something/frames/74211/first.jpg", "AURORA/data/something/frames/74211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 toy wheels"}, {"from": "gpt", "value": ""}]} +{"id": "000000106483", "images": ["AURORA/data/something/frames/115291/first.jpg", "AURORA/data/something/frames/115291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106484", "images": ["AURORA/data/something/frames/81572/first.jpg", "AURORA/data/something/frames/81572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a mug on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106485", "images": ["AURORA/data/something/frames/114381/first.jpg", "AURORA/data/something/frames/114381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106486", "images": ["AURORA/data/something/frames/94617/first.jpg", "AURORA/data/something/frames/94617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the drawer from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106487", "images": ["AURORA/data/something/frames/3115/first.jpg", "AURORA/data/something/frames/3115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106488", "images": ["AURORA/data/something/frames/79373/first.jpg", "AURORA/data/something/frames/79373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106489", "images": ["AURORA/data/something/frames/146181/first.jpg", "AURORA/data/something/frames/146181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving oil bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106490", "images": ["AURORA/data/something/frames/52432/first.jpg", "AURORA/data/something/frames/52432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glass with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106491", "images": ["AURORA/data/something/frames/70882/first.jpg", "AURORA/data/something/frames/70882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting setquare next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106492", "images": ["AURORA/data/something/frames/10454/first.jpg", "AURORA/data/something/frames/10454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106493", "images": ["AURORA/data/something/frames/215234/first.jpg", "AURORA/data/something/frames/215234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106494", "images": ["AURORA/data/something/frames/171041/first.jpg", "AURORA/data/something/frames/171041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box behind bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106495", "images": ["AURORA/data/something/frames/178993/first.jpg", "AURORA/data/something/frames/178993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying lighter in soil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106496", "images": ["AURORA/data/something/frames/94423/first.jpg", "AURORA/data/something/frames/94423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coaster across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106497", "images": ["AURORA/data/something/frames/16887/first.jpg", "AURORA/data/something/frames/16887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bar soap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106498", "images": ["AURORA/data/something/frames/104053/first.jpg", "AURORA/data/something/frames/104053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting my phone with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106499", "images": ["AURORA/data/something/frames/185533/first.jpg", "AURORA/data/something/frames/185533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106500", "images": ["AURORA/data/something/frames/53062/first.jpg", "AURORA/data/something/frames/53062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106501", "images": ["AURORA/data/something/frames/106101/first.jpg", "AURORA/data/something/frames/106101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a t-shirt to laundry thread"}, {"from": "gpt", "value": ""}]} +{"id": "000000106502", "images": ["AURORA/data/something/frames/120242/first.jpg", "AURORA/data/something/frames/120242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ball out of cardboard box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106503", "images": ["AURORA/data/something/frames/20994/first.jpg", "AURORA/data/something/frames/20994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip gloss and coffee mug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106504", "images": ["AURORA/data/something/frames/73054/first.jpg", "AURORA/data/something/frames/73054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and a pendrive away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106505", "images": ["AURORA/data/something/frames/42151/first.jpg", "AURORA/data/something/frames/42151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106506", "images": ["AURORA/data/something/frames/92701/first.jpg", "AURORA/data/something/frames/92701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106507", "images": ["AURORA/data/something/frames/171173/first.jpg", "AURORA/data/something/frames/171173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shoe next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106508", "images": ["AURORA/data/something/frames/14519/first.jpg", "AURORA/data/something/frames/14519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106509", "images": ["AURORA/data/something/frames/159433/first.jpg", "AURORA/data/something/frames/159433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper out of rift"}, {"from": "gpt", "value": ""}]} +{"id": "000000106510", "images": ["AURORA/data/something/frames/127954/first.jpg", "AURORA/data/something/frames/127954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106511", "images": ["AURORA/data/something/frames/58108/first.jpg", "AURORA/data/something/frames/58108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toothpaste tube with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106512", "images": ["AURORA/data/something/frames/138724/first.jpg", "AURORA/data/something/frames/138724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping dog food up with a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106513", "images": ["AURORA/data/something/frames/97015/first.jpg", "AURORA/data/something/frames/97015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy tiger so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106514", "images": ["AURORA/data/something/frames/168066/first.jpg", "AURORA/data/something/frames/168066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hairclip next to piggybank"}, {"from": "gpt", "value": ""}]} +{"id": "000000106515", "images": ["AURORA/data/something/frames/25092/first.jpg", "AURORA/data/something/frames/25092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106516", "images": ["AURORA/data/something/frames/181078/first.jpg", "AURORA/data/something/frames/181078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106517", "images": ["AURORA/data/something/frames/191177/first.jpg", "AURORA/data/something/frames/191177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking world globe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106518", "images": ["AURORA/data/something/frames/84959/first.jpg", "AURORA/data/something/frames/84959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ribbon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106519", "images": ["AURORA/data/something/frames/111324/first.jpg", "AURORA/data/something/frames/111324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106520", "images": ["AURORA/data/something/frames/112667/first.jpg", "AURORA/data/something/frames/112667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a piece of cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106521", "images": ["AURORA/data/something/frames/114731/first.jpg", "AURORA/data/something/frames/114731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the handle of the purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106522", "images": ["AURORA/data/something/frames/77481/first.jpg", "AURORA/data/something/frames/77481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning body cream upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106523", "images": ["AURORA/data/something/frames/53960/first.jpg", "AURORA/data/something/frames/53960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106524", "images": ["AURORA/data/something/frames/181149/first.jpg", "AURORA/data/something/frames/181149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a headphone plug into a jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106525", "images": ["AURORA/data/something/frames/89731/first.jpg", "AURORA/data/something/frames/89731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking clip so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106526", "images": ["AURORA/data/something/frames/9644/first.jpg", "AURORA/data/something/frames/9644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving matchbox down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106527", "images": ["AURORA/data/something/frames/143847/first.jpg", "AURORA/data/something/frames/143847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106528", "images": ["AURORA/data/something/frames/16722/first.jpg", "AURORA/data/something/frames/16722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling starburst up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106529", "images": ["AURORA/data/something/frames/41807/first.jpg", "AURORA/data/something/frames/41807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate closer to toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000106530", "images": ["AURORA/data/something/frames/148261/first.jpg", "AURORA/data/something/frames/148261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cord to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106531", "images": ["AURORA/data/something/frames/47439/first.jpg", "AURORA/data/something/frames/47439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a cover colliding with pen and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106532", "images": ["AURORA/data/something/frames/176261/first.jpg", "AURORA/data/something/frames/176261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking comb out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106533", "images": ["AURORA/data/something/frames/25599/first.jpg", "AURORA/data/something/frames/25599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheel of bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000106534", "images": ["AURORA/data/something/frames/122584/first.jpg", "AURORA/data/something/frames/122584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cooking pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000106535", "images": ["AURORA/data/something/frames/100906/first.jpg", "AURORA/data/something/frames/100906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping medicine bottle onto a medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106536", "images": ["AURORA/data/something/frames/99226/first.jpg", "AURORA/data/something/frames/99226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil sharpner away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106537", "images": ["AURORA/data/something/frames/207527/first.jpg", "AURORA/data/something/frames/207527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106538", "images": ["AURORA/data/something/frames/121842/first.jpg", "AURORA/data/something/frames/121842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 laptop onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106539", "images": ["AURORA/data/something/frames/74886/first.jpg", "AURORA/data/something/frames/74886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106540", "images": ["AURORA/data/something/frames/149622/first.jpg", "AURORA/data/something/frames/149622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106541", "images": ["AURORA/data/something/frames/23178/first.jpg", "AURORA/data/something/frames/23178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106542", "images": ["AURORA/data/something/frames/156427/first.jpg", "AURORA/data/something/frames/156427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106543", "images": ["AURORA/data/something/frames/192598/first.jpg", "AURORA/data/something/frames/192598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with glasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106544", "images": ["AURORA/data/something/frames/50045/first.jpg", "AURORA/data/something/frames/50045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing the book, revealing the key behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106545", "images": ["AURORA/data/something/frames/131362/first.jpg", "AURORA/data/something/frames/131362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106546", "images": ["AURORA/data/something/frames/40547/first.jpg", "AURORA/data/something/frames/40547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106547", "images": ["AURORA/data/something/frames/43039/first.jpg", "AURORA/data/something/frames/43039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106548", "images": ["AURORA/data/something/frames/142742/first.jpg", "AURORA/data/something/frames/142742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106549", "images": ["AURORA/data/something/frames/62212/first.jpg", "AURORA/data/something/frames/62212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger away from toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000106550", "images": ["AURORA/data/something/frames/81447/first.jpg", "AURORA/data/something/frames/81447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning something upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106551", "images": ["AURORA/data/something/frames/77720/first.jpg", "AURORA/data/something/frames/77720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to pebble"}, {"from": "gpt", "value": ""}]} +{"id": "000000106552", "images": ["AURORA/data/something/frames/113084/first.jpg", "AURORA/data/something/frames/113084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106553", "images": ["AURORA/data/something/frames/129871/first.jpg", "AURORA/data/something/frames/129871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106554", "images": ["AURORA/data/something/frames/4316/first.jpg", "AURORA/data/something/frames/4316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106555", "images": ["AURORA/data/something/frames/148516/first.jpg", "AURORA/data/something/frames/148516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a slice of bread until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106556", "images": ["AURORA/data/something/frames/61921/first.jpg", "AURORA/data/something/frames/61921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling coffee cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106557", "images": ["AURORA/data/something/frames/134199/first.jpg", "AURORA/data/something/frames/134199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hairclip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106558", "images": ["AURORA/data/something/frames/131644/first.jpg", "AURORA/data/something/frames/131644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notepad into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106559", "images": ["AURORA/data/something/frames/214887/first.jpg", "AURORA/data/something/frames/214887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spice from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106560", "images": ["AURORA/data/something/frames/148472/first.jpg", "AURORA/data/something/frames/148472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tablet onto mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000106561", "images": ["AURORA/data/something/frames/34157/first.jpg", "AURORA/data/something/frames/34157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106562", "images": ["AURORA/data/something/frames/11274/first.jpg", "AURORA/data/something/frames/11274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) ear of coffeecup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106563", "images": ["AURORA/data/something/frames/200926/first.jpg", "AURORA/data/something/frames/200926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from metal wall art with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106564", "images": ["AURORA/data/something/frames/120798/first.jpg", "AURORA/data/something/frames/120798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106565", "images": ["AURORA/data/something/frames/93464/first.jpg", "AURORA/data/something/frames/93464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106566", "images": ["AURORA/data/something/frames/36819/first.jpg", "AURORA/data/something/frames/36819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106567", "images": ["AURORA/data/something/frames/55817/first.jpg", "AURORA/data/something/frames/55817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106568", "images": ["AURORA/data/something/frames/23745/first.jpg", "AURORA/data/something/frames/23745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet behind a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106569", "images": ["AURORA/data/something/frames/93346/first.jpg", "AURORA/data/something/frames/93346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cigarette lighter with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106570", "images": ["AURORA/data/something/frames/134497/first.jpg", "AURORA/data/something/frames/134497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106571", "images": ["AURORA/data/something/frames/173566/first.jpg", "AURORA/data/something/frames/173566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning perfume bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106572", "images": ["AURORA/data/something/frames/207901/first.jpg", "AURORA/data/something/frames/207901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting container with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106573", "images": ["AURORA/data/something/frames/59905/first.jpg", "AURORA/data/something/frames/59905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange onto notebook so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106574", "images": ["AURORA/data/something/frames/187446/first.jpg", "AURORA/data/something/frames/187446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing study table from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106575", "images": ["AURORA/data/something/frames/31006/first.jpg", "AURORA/data/something/frames/31006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a toy cradle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106576", "images": ["AURORA/data/something/frames/96478/first.jpg", "AURORA/data/something/frames/96478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000106577", "images": ["AURORA/data/something/frames/130128/first.jpg", "AURORA/data/something/frames/130128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106578", "images": ["AURORA/data/something/frames/16152/first.jpg", "AURORA/data/something/frames/16152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging coin out of flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000106579", "images": ["AURORA/data/something/frames/97671/first.jpg", "AURORA/data/something/frames/97671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106580", "images": ["AURORA/data/something/frames/86389/first.jpg", "AURORA/data/something/frames/86389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tube into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106581", "images": ["AURORA/data/something/frames/207707/first.jpg", "AURORA/data/something/frames/207707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto sink surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106582", "images": ["AURORA/data/something/frames/163709/first.jpg", "AURORA/data/something/frames/163709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wall charger into home outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106583", "images": ["AURORA/data/something/frames/203364/first.jpg", "AURORA/data/something/frames/203364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106584", "images": ["AURORA/data/something/frames/69101/first.jpg", "AURORA/data/something/frames/69101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling fingernail clippers from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106585", "images": ["AURORA/data/something/frames/131418/first.jpg", "AURORA/data/something/frames/131418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming christmas tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000106586", "images": ["AURORA/data/something/frames/204370/first.jpg", "AURORA/data/something/frames/204370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains into a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106587", "images": ["AURORA/data/something/frames/45558/first.jpg", "AURORA/data/something/frames/45558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pink water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106588", "images": ["AURORA/data/something/frames/166929/first.jpg", "AURORA/data/something/frames/166929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wheel chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106589", "images": ["AURORA/data/something/frames/140485/first.jpg", "AURORA/data/something/frames/140485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting suncreen, a stuffed animal and fake flowers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106590", "images": ["AURORA/data/something/frames/45463/first.jpg", "AURORA/data/something/frames/45463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106591", "images": ["AURORA/data/something/frames/212684/first.jpg", "AURORA/data/something/frames/212684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 sheets of paper onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106592", "images": ["AURORA/data/something/frames/63801/first.jpg", "AURORA/data/something/frames/63801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106593", "images": ["AURORA/data/something/frames/168963/first.jpg", "AURORA/data/something/frames/168963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a lid up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106594", "images": ["AURORA/data/something/frames/211057/first.jpg", "AURORA/data/something/frames/211057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering blue spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106595", "images": ["AURORA/data/something/frames/187316/first.jpg", "AURORA/data/something/frames/187316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soap closer to soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106596", "images": ["AURORA/data/something/frames/59378/first.jpg", "AURORA/data/something/frames/59378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing action camera from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106597", "images": ["AURORA/data/something/frames/207085/first.jpg", "AURORA/data/something/frames/207085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106598", "images": ["AURORA/data/something/frames/46863/first.jpg", "AURORA/data/something/frames/46863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with paper on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106599", "images": ["AURORA/data/something/frames/58248/first.jpg", "AURORA/data/something/frames/58248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106600", "images": ["AURORA/data/something/frames/34063/first.jpg", "AURORA/data/something/frames/34063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106601", "images": ["AURORA/data/something/frames/107918/first.jpg", "AURORA/data/something/frames/107918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler behind comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000106602", "images": ["AURORA/data/something/frames/142422/first.jpg", "AURORA/data/something/frames/142422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into tumbler until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106603", "images": ["AURORA/data/something/frames/178608/first.jpg", "AURORA/data/something/frames/178608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106604", "images": ["AURORA/data/something/frames/141418/first.jpg", "AURORA/data/something/frames/141418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a sweater"}, {"from": "gpt", "value": ""}]} +{"id": "000000106605", "images": ["AURORA/data/something/frames/40960/first.jpg", "AURORA/data/something/frames/40960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of plastic boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106606", "images": ["AURORA/data/something/frames/206599/first.jpg", "AURORA/data/something/frames/206599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106607", "images": ["AURORA/data/something/frames/65977/first.jpg", "AURORA/data/something/frames/65977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106608", "images": ["AURORA/data/something/frames/99091/first.jpg", "AURORA/data/something/frames/99091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106609", "images": ["AURORA/data/something/frames/70159/first.jpg", "AURORA/data/something/frames/70159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106610", "images": ["AURORA/data/something/frames/109071/first.jpg", "AURORA/data/something/frames/109071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 breads onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106611", "images": ["AURORA/data/something/frames/178872/first.jpg", "AURORA/data/something/frames/178872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper of pile of papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000106612", "images": ["AURORA/data/something/frames/137184/first.jpg", "AURORA/data/something/frames/137184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106613", "images": ["AURORA/data/something/frames/8827/first.jpg", "AURORA/data/something/frames/8827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106614", "images": ["AURORA/data/something/frames/11335/first.jpg", "AURORA/data/something/frames/11335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a potholder so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106615", "images": ["AURORA/data/something/frames/23262/first.jpg", "AURORA/data/something/frames/23262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106616", "images": ["AURORA/data/something/frames/139537/first.jpg", "AURORA/data/something/frames/139537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a box with a cottonball on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106617", "images": ["AURORA/data/something/frames/36775/first.jpg", "AURORA/data/something/frames/36775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000106618", "images": ["AURORA/data/something/frames/180081/first.jpg", "AURORA/data/something/frames/180081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106619", "images": ["AURORA/data/something/frames/93609/first.jpg", "AURORA/data/something/frames/93609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106620", "images": ["AURORA/data/something/frames/144967/first.jpg", "AURORA/data/something/frames/144967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping juice off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106621", "images": ["AURORA/data/something/frames/39036/first.jpg", "AURORA/data/something/frames/39036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of clementines so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106622", "images": ["AURORA/data/something/frames/9338/first.jpg", "AURORA/data/something/frames/9338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106623", "images": ["AURORA/data/something/frames/63057/first.jpg", "AURORA/data/something/frames/63057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle from bench"}, {"from": "gpt", "value": ""}]} +{"id": "000000106624", "images": ["AURORA/data/something/frames/176392/first.jpg", "AURORA/data/something/frames/176392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106625", "images": ["AURORA/data/something/frames/141612/first.jpg", "AURORA/data/something/frames/141612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a toy into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106626", "images": ["AURORA/data/something/frames/29307/first.jpg", "AURORA/data/something/frames/29307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106627", "images": ["AURORA/data/something/frames/208462/first.jpg", "AURORA/data/something/frames/208462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106628", "images": ["AURORA/data/something/frames/75993/first.jpg", "AURORA/data/something/frames/75993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green bowl on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106629", "images": ["AURORA/data/something/frames/130409/first.jpg", "AURORA/data/something/frames/130409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106630", "images": ["AURORA/data/something/frames/205323/first.jpg", "AURORA/data/something/frames/205323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle with water over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106631", "images": ["AURORA/data/something/frames/133940/first.jpg", "AURORA/data/something/frames/133940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power cord into a laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106632", "images": ["AURORA/data/something/frames/208307/first.jpg", "AURORA/data/something/frames/208307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red spoon and battery on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106633", "images": ["AURORA/data/something/frames/38329/first.jpg", "AURORA/data/something/frames/38329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106634", "images": ["AURORA/data/something/frames/15503/first.jpg", "AURORA/data/something/frames/15503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting badminton bat upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106635", "images": ["AURORA/data/something/frames/101726/first.jpg", "AURORA/data/something/frames/101726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 plates"}, {"from": "gpt", "value": ""}]} +{"id": "000000106636", "images": ["AURORA/data/something/frames/64623/first.jpg", "AURORA/data/something/frames/64623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106637", "images": ["AURORA/data/something/frames/85026/first.jpg", "AURORA/data/something/frames/85026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a peanut butter jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106638", "images": ["AURORA/data/something/frames/91836/first.jpg", "AURORA/data/something/frames/91836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106639", "images": ["AURORA/data/something/frames/125220/first.jpg", "AURORA/data/something/frames/125220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106640", "images": ["AURORA/data/something/frames/147016/first.jpg", "AURORA/data/something/frames/147016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pear from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106641", "images": ["AURORA/data/something/frames/101653/first.jpg", "AURORA/data/something/frames/101653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic cap out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106642", "images": ["AURORA/data/something/frames/11977/first.jpg", "AURORA/data/something/frames/11977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a drumstick without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106643", "images": ["AURORA/data/something/frames/218573/first.jpg", "AURORA/data/something/frames/218573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106644", "images": ["AURORA/data/something/frames/135434/first.jpg", "AURORA/data/something/frames/135434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a circuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106645", "images": ["AURORA/data/something/frames/121727/first.jpg", "AURORA/data/something/frames/121727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000106646", "images": ["AURORA/data/something/frames/55262/first.jpg", "AURORA/data/something/frames/55262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and snap off blade closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106647", "images": ["AURORA/data/something/frames/74538/first.jpg", "AURORA/data/something/frames/74538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106648", "images": ["AURORA/data/something/frames/174830/first.jpg", "AURORA/data/something/frames/174830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106649", "images": ["AURORA/data/something/frames/149422/first.jpg", "AURORA/data/something/frames/149422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106650", "images": ["AURORA/data/something/frames/142478/first.jpg", "AURORA/data/something/frames/142478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and candle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106651", "images": ["AURORA/data/something/frames/34199/first.jpg", "AURORA/data/something/frames/34199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a wine glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106652", "images": ["AURORA/data/something/frames/79548/first.jpg", "AURORA/data/something/frames/79548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a flyer just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106653", "images": ["AURORA/data/something/frames/5810/first.jpg", "AURORA/data/something/frames/5810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106654", "images": ["AURORA/data/something/frames/157563/first.jpg", "AURORA/data/something/frames/157563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse and remote away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106655", "images": ["AURORA/data/something/frames/34926/first.jpg", "AURORA/data/something/frames/34926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pair of scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000106656", "images": ["AURORA/data/something/frames/200748/first.jpg", "AURORA/data/something/frames/200748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring suji into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106657", "images": ["AURORA/data/something/frames/20466/first.jpg", "AURORA/data/something/frames/20466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106658", "images": ["AURORA/data/something/frames/131308/first.jpg", "AURORA/data/something/frames/131308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving make up closer to a soda"}, {"from": "gpt", "value": ""}]} +{"id": "000000106659", "images": ["AURORA/data/something/frames/61617/first.jpg", "AURORA/data/something/frames/61617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a card so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106660", "images": ["AURORA/data/something/frames/213276/first.jpg", "AURORA/data/something/frames/213276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting empty treat bar wrap on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106661", "images": ["AURORA/data/something/frames/75931/first.jpg", "AURORA/data/something/frames/75931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106662", "images": ["AURORA/data/something/frames/175595/first.jpg", "AURORA/data/something/frames/175595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pillow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106663", "images": ["AURORA/data/something/frames/116399/first.jpg", "AURORA/data/something/frames/116399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106664", "images": ["AURORA/data/something/frames/15896/first.jpg", "AURORA/data/something/frames/15896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour oil into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106665", "images": ["AURORA/data/something/frames/115808/first.jpg", "AURORA/data/something/frames/115808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer out of a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106666", "images": ["AURORA/data/something/frames/173157/first.jpg", "AURORA/data/something/frames/173157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching cup with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106667", "images": ["AURORA/data/something/frames/23234/first.jpg", "AURORA/data/something/frames/23234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106668", "images": ["AURORA/data/something/frames/15783/first.jpg", "AURORA/data/something/frames/15783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing apple from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106669", "images": ["AURORA/data/something/frames/135596/first.jpg", "AURORA/data/something/frames/135596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a smartphone away from a calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000106670", "images": ["AURORA/data/something/frames/182519/first.jpg", "AURORA/data/something/frames/182519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling car out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106671", "images": ["AURORA/data/something/frames/14898/first.jpg", "AURORA/data/something/frames/14898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a jar on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106672", "images": ["AURORA/data/something/frames/128300/first.jpg", "AURORA/data/something/frames/128300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a wine glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106673", "images": ["AURORA/data/something/frames/217935/first.jpg", "AURORA/data/something/frames/217935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into a charging port"}, {"from": "gpt", "value": ""}]} +{"id": "000000106674", "images": ["AURORA/data/something/frames/139854/first.jpg", "AURORA/data/something/frames/139854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106675", "images": ["AURORA/data/something/frames/1686/first.jpg", "AURORA/data/something/frames/1686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper out of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106676", "images": ["AURORA/data/something/frames/215545/first.jpg", "AURORA/data/something/frames/215545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a remote control with a comb on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106677", "images": ["AURORA/data/something/frames/40456/first.jpg", "AURORA/data/something/frames/40456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming tooth paste"}, {"from": "gpt", "value": ""}]} +{"id": "000000106678", "images": ["AURORA/data/something/frames/181516/first.jpg", "AURORA/data/something/frames/181516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting elephant statue on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106679", "images": ["AURORA/data/something/frames/79254/first.jpg", "AURORA/data/something/frames/79254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pillow out of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000106680", "images": ["AURORA/data/something/frames/136173/first.jpg", "AURORA/data/something/frames/136173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plate into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106681", "images": ["AURORA/data/something/frames/150165/first.jpg", "AURORA/data/something/frames/150165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of elastic cloth so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000106682", "images": ["AURORA/data/something/frames/129033/first.jpg", "AURORA/data/something/frames/129033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106683", "images": ["AURORA/data/something/frames/114147/first.jpg", "AURORA/data/something/frames/114147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving geometric compass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106684", "images": ["AURORA/data/something/frames/195699/first.jpg", "AURORA/data/something/frames/195699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping comb into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106685", "images": ["AURORA/data/something/frames/186819/first.jpg", "AURORA/data/something/frames/186819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106686", "images": ["AURORA/data/something/frames/57642/first.jpg", "AURORA/data/something/frames/57642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into powerpoint"}, {"from": "gpt", "value": ""}]} +{"id": "000000106687", "images": ["AURORA/data/something/frames/59109/first.jpg", "AURORA/data/something/frames/59109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending chocolate bar until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106688", "images": ["AURORA/data/something/frames/22091/first.jpg", "AURORA/data/something/frames/22091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tv remote from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000106689", "images": ["AURORA/data/something/frames/147834/first.jpg", "AURORA/data/something/frames/147834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery next to yellow container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106690", "images": ["AURORA/data/something/frames/140733/first.jpg", "AURORA/data/something/frames/140733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shovel of a toy excavator"}, {"from": "gpt", "value": ""}]} +{"id": "000000106691", "images": ["AURORA/data/something/frames/71752/first.jpg", "AURORA/data/something/frames/71752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106692", "images": ["AURORA/data/something/frames/39269/first.jpg", "AURORA/data/something/frames/39269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106693", "images": ["AURORA/data/something/frames/68317/first.jpg", "AURORA/data/something/frames/68317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting small box on the edge of bigger box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106694", "images": ["AURORA/data/something/frames/145926/first.jpg", "AURORA/data/something/frames/145926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106695", "images": ["AURORA/data/something/frames/132839/first.jpg", "AURORA/data/something/frames/132839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissues into a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106696", "images": ["AURORA/data/something/frames/9855/first.jpg", "AURORA/data/something/frames/9855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading rice onto plastic-lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000106697", "images": ["AURORA/data/something/frames/39056/first.jpg", "AURORA/data/something/frames/39056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking massage pillow so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106698", "images": ["AURORA/data/something/frames/207570/first.jpg", "AURORA/data/something/frames/207570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a note to a notice board"}, {"from": "gpt", "value": ""}]} +{"id": "000000106699", "images": ["AURORA/data/something/frames/156325/first.jpg", "AURORA/data/something/frames/156325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing card onto puzzle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106700", "images": ["AURORA/data/something/frames/138624/first.jpg", "AURORA/data/something/frames/138624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning spoon upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106701", "images": ["AURORA/data/something/frames/92118/first.jpg", "AURORA/data/something/frames/92118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106702", "images": ["AURORA/data/something/frames/10501/first.jpg", "AURORA/data/something/frames/10501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork, a spoon and a knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106703", "images": ["AURORA/data/something/frames/78336/first.jpg", "AURORA/data/something/frames/78336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush and toothpaste so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106704", "images": ["AURORA/data/something/frames/16134/first.jpg", "AURORA/data/something/frames/16134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling metal keys from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106705", "images": ["AURORA/data/something/frames/148138/first.jpg", "AURORA/data/something/frames/148138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106706", "images": ["AURORA/data/something/frames/85095/first.jpg", "AURORA/data/something/frames/85095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cup with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106707", "images": ["AURORA/data/something/frames/107442/first.jpg", "AURORA/data/something/frames/107442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching door with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106708", "images": ["AURORA/data/something/frames/63915/first.jpg", "AURORA/data/something/frames/63915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106709", "images": ["AURORA/data/something/frames/162105/first.jpg", "AURORA/data/something/frames/162105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106710", "images": ["AURORA/data/something/frames/35742/first.jpg", "AURORA/data/something/frames/35742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen and a pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106711", "images": ["AURORA/data/something/frames/72327/first.jpg", "AURORA/data/something/frames/72327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a children's book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106712", "images": ["AURORA/data/something/frames/207394/first.jpg", "AURORA/data/something/frames/207394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a sweet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106713", "images": ["AURORA/data/something/frames/123869/first.jpg", "AURORA/data/something/frames/123869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish bottle and post it notes away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106714", "images": ["AURORA/data/something/frames/180889/first.jpg", "AURORA/data/something/frames/180889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106715", "images": ["AURORA/data/something/frames/94899/first.jpg", "AURORA/data/something/frames/94899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one binder clip of many similar binder clips on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106716", "images": ["AURORA/data/something/frames/109650/first.jpg", "AURORA/data/something/frames/109650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing metal box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106717", "images": ["AURORA/data/something/frames/74580/first.jpg", "AURORA/data/something/frames/74580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106718", "images": ["AURORA/data/something/frames/51260/first.jpg", "AURORA/data/something/frames/51260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a coffee mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106719", "images": ["AURORA/data/something/frames/38946/first.jpg", "AURORA/data/something/frames/38946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106720", "images": ["AURORA/data/something/frames/11340/first.jpg", "AURORA/data/something/frames/11340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wolf and wolf closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106721", "images": ["AURORA/data/something/frames/92976/first.jpg", "AURORA/data/something/frames/92976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing carbon paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106722", "images": ["AURORA/data/something/frames/109278/first.jpg", "AURORA/data/something/frames/109278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a cupboard door"}, {"from": "gpt", "value": ""}]} +{"id": "000000106723", "images": ["AURORA/data/something/frames/49253/first.jpg", "AURORA/data/something/frames/49253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106724", "images": ["AURORA/data/something/frames/202121/first.jpg", "AURORA/data/something/frames/202121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cookie into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106725", "images": ["AURORA/data/something/frames/1524/first.jpg", "AURORA/data/something/frames/1524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobile with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106726", "images": ["AURORA/data/something/frames/189933/first.jpg", "AURORA/data/something/frames/189933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving caps and caps closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106727", "images": ["AURORA/data/something/frames/43321/first.jpg", "AURORA/data/something/frames/43321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping neckalce behind door"}, {"from": "gpt", "value": ""}]} +{"id": "000000106728", "images": ["AURORA/data/something/frames/121203/first.jpg", "AURORA/data/something/frames/121203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106729", "images": ["AURORA/data/something/frames/9239/first.jpg", "AURORA/data/something/frames/9239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106730", "images": ["AURORA/data/something/frames/154513/first.jpg", "AURORA/data/something/frames/154513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening lipstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000106731", "images": ["AURORA/data/something/frames/191567/first.jpg", "AURORA/data/something/frames/191567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000106732", "images": ["AURORA/data/something/frames/54945/first.jpg", "AURORA/data/something/frames/54945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106733", "images": ["AURORA/data/something/frames/28799/first.jpg", "AURORA/data/something/frames/28799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106734", "images": ["AURORA/data/something/frames/217399/first.jpg", "AURORA/data/something/frames/217399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106735", "images": ["AURORA/data/something/frames/204638/first.jpg", "AURORA/data/something/frames/204638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: aqua colliding with aqua and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106736", "images": ["AURORA/data/something/frames/132915/first.jpg", "AURORA/data/something/frames/132915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000106737", "images": ["AURORA/data/something/frames/2342/first.jpg", "AURORA/data/something/frames/2342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cat onto cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106738", "images": ["AURORA/data/something/frames/141321/first.jpg", "AURORA/data/something/frames/141321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking garlic"}, {"from": "gpt", "value": ""}]} +{"id": "000000106739", "images": ["AURORA/data/something/frames/201906/first.jpg", "AURORA/data/something/frames/201906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106740", "images": ["AURORA/data/something/frames/101578/first.jpg", "AURORA/data/something/frames/101578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106741", "images": ["AURORA/data/something/frames/101394/first.jpg", "AURORA/data/something/frames/101394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000106742", "images": ["AURORA/data/something/frames/28687/first.jpg", "AURORA/data/something/frames/28687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small gear wheel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106743", "images": ["AURORA/data/something/frames/6383/first.jpg", "AURORA/data/something/frames/6383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 envelopes"}, {"from": "gpt", "value": ""}]} +{"id": "000000106744", "images": ["AURORA/data/something/frames/32706/first.jpg", "AURORA/data/something/frames/32706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000106745", "images": ["AURORA/data/something/frames/9900/first.jpg", "AURORA/data/something/frames/9900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing brochure into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106746", "images": ["AURORA/data/something/frames/38085/first.jpg", "AURORA/data/something/frames/38085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling anchor from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106747", "images": ["AURORA/data/something/frames/176035/first.jpg", "AURORA/data/something/frames/176035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking glasses box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106748", "images": ["AURORA/data/something/frames/39063/first.jpg", "AURORA/data/something/frames/39063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping an empty water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106749", "images": ["AURORA/data/something/frames/18604/first.jpg", "AURORA/data/something/frames/18604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106750", "images": ["AURORA/data/something/frames/116797/first.jpg", "AURORA/data/something/frames/116797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plastic basket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106751", "images": ["AURORA/data/something/frames/57322/first.jpg", "AURORA/data/something/frames/57322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a mug so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106752", "images": ["AURORA/data/something/frames/67512/first.jpg", "AURORA/data/something/frames/67512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106753", "images": ["AURORA/data/something/frames/173148/first.jpg", "AURORA/data/something/frames/173148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106754", "images": ["AURORA/data/something/frames/98174/first.jpg", "AURORA/data/something/frames/98174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tape upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106755", "images": ["AURORA/data/something/frames/122967/first.jpg", "AURORA/data/something/frames/122967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning waterbottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106756", "images": ["AURORA/data/something/frames/102714/first.jpg", "AURORA/data/something/frames/102714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000106757", "images": ["AURORA/data/something/frames/4420/first.jpg", "AURORA/data/something/frames/4420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sandals"}, {"from": "gpt", "value": ""}]} +{"id": "000000106758", "images": ["AURORA/data/something/frames/15567/first.jpg", "AURORA/data/something/frames/15567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lighter behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106759", "images": ["AURORA/data/something/frames/92811/first.jpg", "AURORA/data/something/frames/92811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106760", "images": ["AURORA/data/something/frames/102777/first.jpg", "AURORA/data/something/frames/102777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106761", "images": ["AURORA/data/something/frames/54595/first.jpg", "AURORA/data/something/frames/54595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red object up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106762", "images": ["AURORA/data/something/frames/9011/first.jpg", "AURORA/data/something/frames/9011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking baby toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106763", "images": ["AURORA/data/something/frames/94610/first.jpg", "AURORA/data/something/frames/94610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106764", "images": ["AURORA/data/something/frames/213048/first.jpg", "AURORA/data/something/frames/213048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106765", "images": ["AURORA/data/something/frames/104330/first.jpg", "AURORA/data/something/frames/104330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ring on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106766", "images": ["AURORA/data/something/frames/17547/first.jpg", "AURORA/data/something/frames/17547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106767", "images": ["AURORA/data/something/frames/4720/first.jpg", "AURORA/data/something/frames/4720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106768", "images": ["AURORA/data/something/frames/34858/first.jpg", "AURORA/data/something/frames/34858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing apple so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106769", "images": ["AURORA/data/something/frames/192198/first.jpg", "AURORA/data/something/frames/192198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from hat with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106770", "images": ["AURORA/data/something/frames/206519/first.jpg", "AURORA/data/something/frames/206519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wastebin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106771", "images": ["AURORA/data/something/frames/68993/first.jpg", "AURORA/data/something/frames/68993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000106772", "images": ["AURORA/data/something/frames/198750/first.jpg", "AURORA/data/something/frames/198750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar and bowl so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106773", "images": ["AURORA/data/something/frames/153598/first.jpg", "AURORA/data/something/frames/153598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106774", "images": ["AURORA/data/something/frames/38956/first.jpg", "AURORA/data/something/frames/38956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106775", "images": ["AURORA/data/something/frames/175751/first.jpg", "AURORA/data/something/frames/175751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106776", "images": ["AURORA/data/something/frames/51038/first.jpg", "AURORA/data/something/frames/51038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106777", "images": ["AURORA/data/something/frames/71540/first.jpg", "AURORA/data/something/frames/71540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106778", "images": ["AURORA/data/something/frames/197098/first.jpg", "AURORA/data/something/frames/197098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106779", "images": ["AURORA/data/something/frames/216535/first.jpg", "AURORA/data/something/frames/216535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106780", "images": ["AURORA/data/something/frames/191690/first.jpg", "AURORA/data/something/frames/191690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000106781", "images": ["AURORA/data/something/frames/119916/first.jpg", "AURORA/data/something/frames/119916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106782", "images": ["AURORA/data/something/frames/151204/first.jpg", "AURORA/data/something/frames/151204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pendrive and eye kajal away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106783", "images": ["AURORA/data/something/frames/1764/first.jpg", "AURORA/data/something/frames/1764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106784", "images": ["AURORA/data/something/frames/14242/first.jpg", "AURORA/data/something/frames/14242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching carabiner to handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106785", "images": ["AURORA/data/something/frames/11925/first.jpg", "AURORA/data/something/frames/11925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106786", "images": ["AURORA/data/something/frames/133077/first.jpg", "AURORA/data/something/frames/133077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106787", "images": ["AURORA/data/something/frames/25820/first.jpg", "AURORA/data/something/frames/25820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000106788", "images": ["AURORA/data/something/frames/90063/first.jpg", "AURORA/data/something/frames/90063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106789", "images": ["AURORA/data/something/frames/76797/first.jpg", "AURORA/data/something/frames/76797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking telephone receiver from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106790", "images": ["AURORA/data/something/frames/94801/first.jpg", "AURORA/data/something/frames/94801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing napkin holder, revealing salt and pepper behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106791", "images": ["AURORA/data/something/frames/133517/first.jpg", "AURORA/data/something/frames/133517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping toothpaste off of notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000106792", "images": ["AURORA/data/something/frames/173775/first.jpg", "AURORA/data/something/frames/173775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a scarf into a helmet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106793", "images": ["AURORA/data/something/frames/211062/first.jpg", "AURORA/data/something/frames/211062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic skull"}, {"from": "gpt", "value": ""}]} +{"id": "000000106794", "images": ["AURORA/data/something/frames/138308/first.jpg", "AURORA/data/something/frames/138308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and candle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106795", "images": ["AURORA/data/something/frames/214999/first.jpg", "AURORA/data/something/frames/214999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106796", "images": ["AURORA/data/something/frames/139344/first.jpg", "AURORA/data/something/frames/139344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106797", "images": ["AURORA/data/something/frames/132487/first.jpg", "AURORA/data/something/frames/132487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cloth clip from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106798", "images": ["AURORA/data/something/frames/119151/first.jpg", "AURORA/data/something/frames/119151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a portable lamp upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106799", "images": ["AURORA/data/something/frames/205794/first.jpg", "AURORA/data/something/frames/205794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dvd case on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106800", "images": ["AURORA/data/something/frames/206077/first.jpg", "AURORA/data/something/frames/206077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000106801", "images": ["AURORA/data/something/frames/65777/first.jpg", "AURORA/data/something/frames/65777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lid on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106802", "images": ["AURORA/data/something/frames/203989/first.jpg", "AURORA/data/something/frames/203989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and glue stick closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106803", "images": ["AURORA/data/something/frames/193728/first.jpg", "AURORA/data/something/frames/193728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106804", "images": ["AURORA/data/something/frames/149423/first.jpg", "AURORA/data/something/frames/149423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000106805", "images": ["AURORA/data/something/frames/4331/first.jpg", "AURORA/data/something/frames/4331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning white out upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106806", "images": ["AURORA/data/something/frames/53345/first.jpg", "AURORA/data/something/frames/53345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering waterbottle with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106807", "images": ["AURORA/data/something/frames/39875/first.jpg", "AURORA/data/something/frames/39875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000106808", "images": ["AURORA/data/something/frames/89443/first.jpg", "AURORA/data/something/frames/89443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106809", "images": ["AURORA/data/something/frames/214050/first.jpg", "AURORA/data/something/frames/214050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106810", "images": ["AURORA/data/something/frames/82015/first.jpg", "AURORA/data/something/frames/82015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening table drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106811", "images": ["AURORA/data/something/frames/24069/first.jpg", "AURORA/data/something/frames/24069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto wooden floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106812", "images": ["AURORA/data/something/frames/49858/first.jpg", "AURORA/data/something/frames/49858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pot holder up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106813", "images": ["AURORA/data/something/frames/62529/first.jpg", "AURORA/data/something/frames/62529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping biscuit packet next to water-bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106814", "images": ["AURORA/data/something/frames/65409/first.jpg", "AURORA/data/something/frames/65409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coasters without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000106815", "images": ["AURORA/data/something/frames/96827/first.jpg", "AURORA/data/something/frames/96827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106816", "images": ["AURORA/data/something/frames/186931/first.jpg", "AURORA/data/something/frames/186931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding calendar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106817", "images": ["AURORA/data/something/frames/53506/first.jpg", "AURORA/data/something/frames/53506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106818", "images": ["AURORA/data/something/frames/41755/first.jpg", "AURORA/data/something/frames/41755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a cantaloupe up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106819", "images": ["AURORA/data/something/frames/99788/first.jpg", "AURORA/data/something/frames/99788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106820", "images": ["AURORA/data/something/frames/171136/first.jpg", "AURORA/data/something/frames/171136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking eraser up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106821", "images": ["AURORA/data/something/frames/84354/first.jpg", "AURORA/data/something/frames/84354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil away from scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000106822", "images": ["AURORA/data/something/frames/119099/first.jpg", "AURORA/data/something/frames/119099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bed with belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106823", "images": ["AURORA/data/something/frames/158294/first.jpg", "AURORA/data/something/frames/158294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing clip box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106824", "images": ["AURORA/data/something/frames/88347/first.jpg", "AURORA/data/something/frames/88347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106825", "images": ["AURORA/data/something/frames/146130/first.jpg", "AURORA/data/something/frames/146130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a salt shaker on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106826", "images": ["AURORA/data/something/frames/28216/first.jpg", "AURORA/data/something/frames/28216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning coffee kuerig cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106827", "images": ["AURORA/data/something/frames/135785/first.jpg", "AURORA/data/something/frames/135785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106828", "images": ["AURORA/data/something/frames/53562/first.jpg", "AURORA/data/something/frames/53562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106829", "images": ["AURORA/data/something/frames/123960/first.jpg", "AURORA/data/something/frames/123960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop next to canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000106830", "images": ["AURORA/data/something/frames/109720/first.jpg", "AURORA/data/something/frames/109720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a wooden stick without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106831", "images": ["AURORA/data/something/frames/32452/first.jpg", "AURORA/data/something/frames/32452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pill bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106832", "images": ["AURORA/data/something/frames/26899/first.jpg", "AURORA/data/something/frames/26899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106833", "images": ["AURORA/data/something/frames/177191/first.jpg", "AURORA/data/something/frames/177191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hotbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000106834", "images": ["AURORA/data/something/frames/172001/first.jpg", "AURORA/data/something/frames/172001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106835", "images": ["AURORA/data/something/frames/17833/first.jpg", "AURORA/data/something/frames/17833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glas from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106836", "images": ["AURORA/data/something/frames/23202/first.jpg", "AURORA/data/something/frames/23202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106837", "images": ["AURORA/data/something/frames/169396/first.jpg", "AURORA/data/something/frames/169396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106838", "images": ["AURORA/data/something/frames/78795/first.jpg", "AURORA/data/something/frames/78795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a book out of a gym bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106839", "images": ["AURORA/data/something/frames/148464/first.jpg", "AURORA/data/something/frames/148464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking teabag out of tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106840", "images": ["AURORA/data/something/frames/91704/first.jpg", "AURORA/data/something/frames/91704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106841", "images": ["AURORA/data/something/frames/53957/first.jpg", "AURORA/data/something/frames/53957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana closer to shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000106842", "images": ["AURORA/data/something/frames/33816/first.jpg", "AURORA/data/something/frames/33816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crystal"}, {"from": "gpt", "value": ""}]} +{"id": "000000106843", "images": ["AURORA/data/something/frames/23275/first.jpg", "AURORA/data/something/frames/23275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking prescription so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106844", "images": ["AURORA/data/something/frames/192617/first.jpg", "AURORA/data/something/frames/192617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106845", "images": ["AURORA/data/something/frames/63861/first.jpg", "AURORA/data/something/frames/63861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106846", "images": ["AURORA/data/something/frames/20872/first.jpg", "AURORA/data/something/frames/20872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ipad upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106847", "images": ["AURORA/data/something/frames/137455/first.jpg", "AURORA/data/something/frames/137455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ball on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106848", "images": ["AURORA/data/something/frames/158625/first.jpg", "AURORA/data/something/frames/158625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a flyer just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106849", "images": ["AURORA/data/something/frames/148722/first.jpg", "AURORA/data/something/frames/148722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to other books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106850", "images": ["AURORA/data/something/frames/185049/first.jpg", "AURORA/data/something/frames/185049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toy wheels onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000106851", "images": ["AURORA/data/something/frames/203253/first.jpg", "AURORA/data/something/frames/203253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000106852", "images": ["AURORA/data/something/frames/16584/first.jpg", "AURORA/data/something/frames/16584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106853", "images": ["AURORA/data/something/frames/55971/first.jpg", "AURORA/data/something/frames/55971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sponge and nail clipper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106854", "images": ["AURORA/data/something/frames/164445/first.jpg", "AURORA/data/something/frames/164445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple next to a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106855", "images": ["AURORA/data/something/frames/136803/first.jpg", "AURORA/data/something/frames/136803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: blue marble colliding with red marble and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106856", "images": ["AURORA/data/something/frames/50909/first.jpg", "AURORA/data/something/frames/50909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106857", "images": ["AURORA/data/something/frames/157212/first.jpg", "AURORA/data/something/frames/157212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a shuttle cock just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106858", "images": ["AURORA/data/something/frames/69444/first.jpg", "AURORA/data/something/frames/69444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106859", "images": ["AURORA/data/something/frames/219699/first.jpg", "AURORA/data/something/frames/219699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a tote bag up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106860", "images": ["AURORA/data/something/frames/108657/first.jpg", "AURORA/data/something/frames/108657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb bluetooth into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000106861", "images": ["AURORA/data/something/frames/163271/first.jpg", "AURORA/data/something/frames/163271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106862", "images": ["AURORA/data/something/frames/98509/first.jpg", "AURORA/data/something/frames/98509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106863", "images": ["AURORA/data/something/frames/163545/first.jpg", "AURORA/data/something/frames/163545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the lip glosses from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106864", "images": ["AURORA/data/something/frames/218338/first.jpg", "AURORA/data/something/frames/218338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying moisturizer on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106865", "images": ["AURORA/data/something/frames/216460/first.jpg", "AURORA/data/something/frames/216460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paste with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106866", "images": ["AURORA/data/something/frames/128976/first.jpg", "AURORA/data/something/frames/128976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a window"}, {"from": "gpt", "value": ""}]} +{"id": "000000106867", "images": ["AURORA/data/something/frames/90926/first.jpg", "AURORA/data/something/frames/90926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106868", "images": ["AURORA/data/something/frames/124577/first.jpg", "AURORA/data/something/frames/124577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wrist-watch in front of plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106869", "images": ["AURORA/data/something/frames/43317/first.jpg", "AURORA/data/something/frames/43317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000106870", "images": ["AURORA/data/something/frames/178760/first.jpg", "AURORA/data/something/frames/178760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one spray bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106871", "images": ["AURORA/data/something/frames/49583/first.jpg", "AURORA/data/something/frames/49583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mobile phone with ipod on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106872", "images": ["AURORA/data/something/frames/83918/first.jpg", "AURORA/data/something/frames/83918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a fork so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106873", "images": ["AURORA/data/something/frames/46969/first.jpg", "AURORA/data/something/frames/46969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter closer to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106874", "images": ["AURORA/data/something/frames/38730/first.jpg", "AURORA/data/something/frames/38730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into power adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106875", "images": ["AURORA/data/something/frames/1697/first.jpg", "AURORA/data/something/frames/1697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching waist basket with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106876", "images": ["AURORA/data/something/frames/141742/first.jpg", "AURORA/data/something/frames/141742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camphor packet next to sugar bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106877", "images": ["AURORA/data/something/frames/126457/first.jpg", "AURORA/data/something/frames/126457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106878", "images": ["AURORA/data/something/frames/199705/first.jpg", "AURORA/data/something/frames/199705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup off of surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106879", "images": ["AURORA/data/something/frames/136661/first.jpg", "AURORA/data/something/frames/136661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mobile phone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106880", "images": ["AURORA/data/something/frames/21481/first.jpg", "AURORA/data/something/frames/21481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106881", "images": ["AURORA/data/something/frames/35645/first.jpg", "AURORA/data/something/frames/35645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pillow with fist"}, {"from": "gpt", "value": ""}]} +{"id": "000000106882", "images": ["AURORA/data/something/frames/141638/first.jpg", "AURORA/data/something/frames/141638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106883", "images": ["AURORA/data/something/frames/110256/first.jpg", "AURORA/data/something/frames/110256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping red hair band next to diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000106884", "images": ["AURORA/data/something/frames/202211/first.jpg", "AURORA/data/something/frames/202211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming window view"}, {"from": "gpt", "value": ""}]} +{"id": "000000106885", "images": ["AURORA/data/something/frames/57771/first.jpg", "AURORA/data/something/frames/57771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy and another toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106886", "images": ["AURORA/data/something/frames/142814/first.jpg", "AURORA/data/something/frames/142814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator in front of stapler cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000106887", "images": ["AURORA/data/something/frames/7664/first.jpg", "AURORA/data/something/frames/7664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ceiling"}, {"from": "gpt", "value": ""}]} +{"id": "000000106888", "images": ["AURORA/data/something/frames/177182/first.jpg", "AURORA/data/something/frames/177182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rectangular box and ramekin closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106889", "images": ["AURORA/data/something/frames/193578/first.jpg", "AURORA/data/something/frames/193578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106890", "images": ["AURORA/data/something/frames/113521/first.jpg", "AURORA/data/something/frames/113521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting color pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106891", "images": ["AURORA/data/something/frames/152458/first.jpg", "AURORA/data/something/frames/152458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper heart so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106892", "images": ["AURORA/data/something/frames/135323/first.jpg", "AURORA/data/something/frames/135323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106893", "images": ["AURORA/data/something/frames/39700/first.jpg", "AURORA/data/something/frames/39700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106894", "images": ["AURORA/data/something/frames/167988/first.jpg", "AURORA/data/something/frames/167988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding duppatta"}, {"from": "gpt", "value": ""}]} +{"id": "000000106895", "images": ["AURORA/data/something/frames/165698/first.jpg", "AURORA/data/something/frames/165698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: crackers colliding with crackers and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106896", "images": ["AURORA/data/something/frames/101194/first.jpg", "AURORA/data/something/frames/101194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow ball into orange cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106897", "images": ["AURORA/data/something/frames/123037/first.jpg", "AURORA/data/something/frames/123037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000106898", "images": ["AURORA/data/something/frames/189335/first.jpg", "AURORA/data/something/frames/189335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin onto cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106899", "images": ["AURORA/data/something/frames/194411/first.jpg", "AURORA/data/something/frames/194411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electrical plug into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106900", "images": ["AURORA/data/something/frames/219270/first.jpg", "AURORA/data/something/frames/219270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sandal with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106901", "images": ["AURORA/data/something/frames/28528/first.jpg", "AURORA/data/something/frames/28528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glasses from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106902", "images": ["AURORA/data/something/frames/94236/first.jpg", "AURORA/data/something/frames/94236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a large measuring cup, revealing a small measuring cup behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106903", "images": ["AURORA/data/something/frames/136393/first.jpg", "AURORA/data/something/frames/136393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a deck of cards so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106904", "images": ["AURORA/data/something/frames/77933/first.jpg", "AURORA/data/something/frames/77933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a toy plane with a sharpener on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106905", "images": ["AURORA/data/something/frames/196089/first.jpg", "AURORA/data/something/frames/196089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106906", "images": ["AURORA/data/something/frames/85244/first.jpg", "AURORA/data/something/frames/85244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: soda can colliding with deodarant and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106907", "images": ["AURORA/data/something/frames/140034/first.jpg", "AURORA/data/something/frames/140034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a makeup brush into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106908", "images": ["AURORA/data/something/frames/95047/first.jpg", "AURORA/data/something/frames/95047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bolt down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106909", "images": ["AURORA/data/something/frames/121054/first.jpg", "AURORA/data/something/frames/121054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky paper to a wooden surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106910", "images": ["AURORA/data/something/frames/64153/first.jpg", "AURORA/data/something/frames/64153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting little cup next to cat doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000106911", "images": ["AURORA/data/something/frames/175088/first.jpg", "AURORA/data/something/frames/175088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a vase from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106912", "images": ["AURORA/data/something/frames/182737/first.jpg", "AURORA/data/something/frames/182737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106913", "images": ["AURORA/data/something/frames/145367/first.jpg", "AURORA/data/something/frames/145367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting greetings card upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106914", "images": ["AURORA/data/something/frames/133571/first.jpg", "AURORA/data/something/frames/133571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting toy with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106915", "images": ["AURORA/data/something/frames/68793/first.jpg", "AURORA/data/something/frames/68793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106916", "images": ["AURORA/data/something/frames/194076/first.jpg", "AURORA/data/something/frames/194076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming aquarium"}, {"from": "gpt", "value": ""}]} +{"id": "000000106917", "images": ["AURORA/data/something/frames/154882/first.jpg", "AURORA/data/something/frames/154882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a bottle of mineral water so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106918", "images": ["AURORA/data/something/frames/30402/first.jpg", "AURORA/data/something/frames/30402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106919", "images": ["AURORA/data/something/frames/158893/first.jpg", "AURORA/data/something/frames/158893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106920", "images": ["AURORA/data/something/frames/159257/first.jpg", "AURORA/data/something/frames/159257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a wine bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106921", "images": ["AURORA/data/something/frames/84401/first.jpg", "AURORA/data/something/frames/84401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning plastic cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106922", "images": ["AURORA/data/something/frames/119528/first.jpg", "AURORA/data/something/frames/119528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earpiece of sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106923", "images": ["AURORA/data/something/frames/155968/first.jpg", "AURORA/data/something/frames/155968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000106924", "images": ["AURORA/data/something/frames/38735/first.jpg", "AURORA/data/something/frames/38735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106925", "images": ["AURORA/data/something/frames/97075/first.jpg", "AURORA/data/something/frames/97075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106926", "images": ["AURORA/data/something/frames/7505/first.jpg", "AURORA/data/something/frames/7505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peanut into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106927", "images": ["AURORA/data/something/frames/198935/first.jpg", "AURORA/data/something/frames/198935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lid of lip gloss"}, {"from": "gpt", "value": ""}]} +{"id": "000000106928", "images": ["AURORA/data/something/frames/16459/first.jpg", "AURORA/data/something/frames/16459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106929", "images": ["AURORA/data/something/frames/73021/first.jpg", "AURORA/data/something/frames/73021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106930", "images": ["AURORA/data/something/frames/140718/first.jpg", "AURORA/data/something/frames/140718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106931", "images": ["AURORA/data/something/frames/217892/first.jpg", "AURORA/data/something/frames/217892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting calculator with scissor on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106932", "images": ["AURORA/data/something/frames/36400/first.jpg", "AURORA/data/something/frames/36400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an owl upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106933", "images": ["AURORA/data/something/frames/108540/first.jpg", "AURORA/data/something/frames/108540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tube of toothpaste in front of a mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000106934", "images": ["AURORA/data/something/frames/214998/first.jpg", "AURORA/data/something/frames/214998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106935", "images": ["AURORA/data/something/frames/166020/first.jpg", "AURORA/data/something/frames/166020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106936", "images": ["AURORA/data/something/frames/108484/first.jpg", "AURORA/data/something/frames/108484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wood box in front of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106937", "images": ["AURORA/data/something/frames/36803/first.jpg", "AURORA/data/something/frames/36803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car and red toy car closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106938", "images": ["AURORA/data/something/frames/31942/first.jpg", "AURORA/data/something/frames/31942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar behind monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106939", "images": ["AURORA/data/something/frames/71016/first.jpg", "AURORA/data/something/frames/71016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking 1 jar away from other jars"}, {"from": "gpt", "value": ""}]} +{"id": "000000106940", "images": ["AURORA/data/something/frames/80147/first.jpg", "AURORA/data/something/frames/80147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000106941", "images": ["AURORA/data/something/frames/111375/first.jpg", "AURORA/data/something/frames/111375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106942", "images": ["AURORA/data/something/frames/151752/first.jpg", "AURORA/data/something/frames/151752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying ball in towels"}, {"from": "gpt", "value": ""}]} +{"id": "000000106943", "images": ["AURORA/data/something/frames/442/first.jpg", "AURORA/data/something/frames/442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106944", "images": ["AURORA/data/something/frames/106936/first.jpg", "AURORA/data/something/frames/106936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green hair comb from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106945", "images": ["AURORA/data/something/frames/22840/first.jpg", "AURORA/data/something/frames/22840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon rest away from stove eye"}, {"from": "gpt", "value": ""}]} +{"id": "000000106946", "images": ["AURORA/data/something/frames/196566/first.jpg", "AURORA/data/something/frames/196566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papers into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106947", "images": ["AURORA/data/something/frames/152059/first.jpg", "AURORA/data/something/frames/152059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106948", "images": ["AURORA/data/something/frames/86804/first.jpg", "AURORA/data/something/frames/86804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting key on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106949", "images": ["AURORA/data/something/frames/208266/first.jpg", "AURORA/data/something/frames/208266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening letter box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106950", "images": ["AURORA/data/something/frames/220711/first.jpg", "AURORA/data/something/frames/220711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling computer mouse onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106951", "images": ["AURORA/data/something/frames/25983/first.jpg", "AURORA/data/something/frames/25983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106952", "images": ["AURORA/data/something/frames/39273/first.jpg", "AURORA/data/something/frames/39273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106953", "images": ["AURORA/data/something/frames/91549/first.jpg", "AURORA/data/something/frames/91549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet onto paper so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106954", "images": ["AURORA/data/something/frames/116063/first.jpg", "AURORA/data/something/frames/116063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a textbook in front of a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106955", "images": ["AURORA/data/something/frames/111194/first.jpg", "AURORA/data/something/frames/111194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106956", "images": ["AURORA/data/something/frames/29810/first.jpg", "AURORA/data/something/frames/29810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000106957", "images": ["AURORA/data/something/frames/19486/first.jpg", "AURORA/data/something/frames/19486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106958", "images": ["AURORA/data/something/frames/148396/first.jpg", "AURORA/data/something/frames/148396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red chilli"}, {"from": "gpt", "value": ""}]} +{"id": "000000106959", "images": ["AURORA/data/something/frames/46541/first.jpg", "AURORA/data/something/frames/46541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pen being deflected from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106960", "images": ["AURORA/data/something/frames/86207/first.jpg", "AURORA/data/something/frames/86207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pencil sharpners onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106961", "images": ["AURORA/data/something/frames/8941/first.jpg", "AURORA/data/something/frames/8941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving powerbank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106962", "images": ["AURORA/data/something/frames/3928/first.jpg", "AURORA/data/something/frames/3928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000106963", "images": ["AURORA/data/something/frames/125103/first.jpg", "AURORA/data/something/frames/125103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106964", "images": ["AURORA/data/something/frames/53872/first.jpg", "AURORA/data/something/frames/53872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106965", "images": ["AURORA/data/something/frames/106612/first.jpg", "AURORA/data/something/frames/106612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106966", "images": ["AURORA/data/something/frames/194620/first.jpg", "AURORA/data/something/frames/194620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading kercief onto rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106967", "images": ["AURORA/data/something/frames/4362/first.jpg", "AURORA/data/something/frames/4362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106968", "images": ["AURORA/data/something/frames/129592/first.jpg", "AURORA/data/something/frames/129592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106969", "images": ["AURORA/data/something/frames/4466/first.jpg", "AURORA/data/something/frames/4466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a steel ball colliding with a steel ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106970", "images": ["AURORA/data/something/frames/178174/first.jpg", "AURORA/data/something/frames/178174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000106971", "images": ["AURORA/data/something/frames/211303/first.jpg", "AURORA/data/something/frames/211303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching purple microfiber with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106972", "images": ["AURORA/data/something/frames/179226/first.jpg", "AURORA/data/something/frames/179226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106973", "images": ["AURORA/data/something/frames/105854/first.jpg", "AURORA/data/something/frames/105854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106974", "images": ["AURORA/data/something/frames/78820/first.jpg", "AURORA/data/something/frames/78820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, handphone and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106975", "images": ["AURORA/data/something/frames/65518/first.jpg", "AURORA/data/something/frames/65518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106976", "images": ["AURORA/data/something/frames/2784/first.jpg", "AURORA/data/something/frames/2784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a stone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106977", "images": ["AURORA/data/something/frames/115868/first.jpg", "AURORA/data/something/frames/115868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bullet bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000106978", "images": ["AURORA/data/something/frames/189082/first.jpg", "AURORA/data/something/frames/189082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106979", "images": ["AURORA/data/something/frames/158563/first.jpg", "AURORA/data/something/frames/158563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming animals"}, {"from": "gpt", "value": ""}]} +{"id": "000000106980", "images": ["AURORA/data/something/frames/64793/first.jpg", "AURORA/data/something/frames/64793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106981", "images": ["AURORA/data/something/frames/196867/first.jpg", "AURORA/data/something/frames/196867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging alarm clock into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106982", "images": ["AURORA/data/something/frames/113160/first.jpg", "AURORA/data/something/frames/113160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick onto a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000106983", "images": ["AURORA/data/something/frames/105846/first.jpg", "AURORA/data/something/frames/105846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle and a book closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106984", "images": ["AURORA/data/something/frames/84606/first.jpg", "AURORA/data/something/frames/84606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning purple balloon pump upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106985", "images": ["AURORA/data/something/frames/16778/first.jpg", "AURORA/data/something/frames/16778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106986", "images": ["AURORA/data/something/frames/212301/first.jpg", "AURORA/data/something/frames/212301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green hair comb from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106987", "images": ["AURORA/data/something/frames/39039/first.jpg", "AURORA/data/something/frames/39039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pen over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106988", "images": ["AURORA/data/something/frames/208446/first.jpg", "AURORA/data/something/frames/208446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106989", "images": ["AURORA/data/something/frames/193490/first.jpg", "AURORA/data/something/frames/193490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper towels into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106990", "images": ["AURORA/data/something/frames/26118/first.jpg", "AURORA/data/something/frames/26118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and a box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106991", "images": ["AURORA/data/something/frames/133709/first.jpg", "AURORA/data/something/frames/133709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106992", "images": ["AURORA/data/something/frames/96919/first.jpg", "AURORA/data/something/frames/96919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a ruler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106993", "images": ["AURORA/data/something/frames/10753/first.jpg", "AURORA/data/something/frames/10753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling glitter onto paper plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106994", "images": ["AURORA/data/something/frames/12384/first.jpg", "AURORA/data/something/frames/12384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering kettle with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106995", "images": ["AURORA/data/something/frames/201252/first.jpg", "AURORA/data/something/frames/201252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106996", "images": ["AURORA/data/something/frames/184924/first.jpg", "AURORA/data/something/frames/184924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106997", "images": ["AURORA/data/something/frames/56607/first.jpg", "AURORA/data/something/frames/56607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone case next to crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106998", "images": ["AURORA/data/something/frames/168893/first.jpg", "AURORA/data/something/frames/168893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a cup until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106999", "images": ["AURORA/data/something/frames/165231/first.jpg", "AURORA/data/something/frames/165231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hair comb up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107000", "images": ["AURORA/data/something/frames/79033/first.jpg", "AURORA/data/something/frames/79033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107001", "images": ["AURORA/data/something/frames/161614/first.jpg", "AURORA/data/something/frames/161614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 book onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000107002", "images": ["AURORA/data/something/frames/191439/first.jpg", "AURORA/data/something/frames/191439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tv remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107003", "images": ["AURORA/data/something/frames/217590/first.jpg", "AURORA/data/something/frames/217590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107004", "images": ["AURORA/data/something/frames/49407/first.jpg", "AURORA/data/something/frames/49407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a figure into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107005", "images": ["AURORA/data/something/frames/205391/first.jpg", "AURORA/data/something/frames/205391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107006", "images": ["AURORA/data/something/frames/130343/first.jpg", "AURORA/data/something/frames/130343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a vape battery box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107007", "images": ["AURORA/data/something/frames/124642/first.jpg", "AURORA/data/something/frames/124642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching white brick with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107008", "images": ["AURORA/data/something/frames/61237/first.jpg", "AURORA/data/something/frames/61237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107009", "images": ["AURORA/data/something/frames/79001/first.jpg", "AURORA/data/something/frames/79001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending branch until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107010", "images": ["AURORA/data/something/frames/60325/first.jpg", "AURORA/data/something/frames/60325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending fragrance stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107011", "images": ["AURORA/data/something/frames/46492/first.jpg", "AURORA/data/something/frames/46492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107012", "images": ["AURORA/data/something/frames/21642/first.jpg", "AURORA/data/something/frames/21642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107013", "images": ["AURORA/data/something/frames/84073/first.jpg", "AURORA/data/something/frames/84073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000107014", "images": ["AURORA/data/something/frames/19555/first.jpg", "AURORA/data/something/frames/19555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting jar with folder on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107015", "images": ["AURORA/data/something/frames/113531/first.jpg", "AURORA/data/something/frames/113531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a dvd"}, {"from": "gpt", "value": ""}]} +{"id": "000000107016", "images": ["AURORA/data/something/frames/111069/first.jpg", "AURORA/data/something/frames/111069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107017", "images": ["AURORA/data/something/frames/172598/first.jpg", "AURORA/data/something/frames/172598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cd box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107018", "images": ["AURORA/data/something/frames/218702/first.jpg", "AURORA/data/something/frames/218702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107019", "images": ["AURORA/data/something/frames/116184/first.jpg", "AURORA/data/something/frames/116184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving milk away from knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000107020", "images": ["AURORA/data/something/frames/153694/first.jpg", "AURORA/data/something/frames/153694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107021", "images": ["AURORA/data/something/frames/148204/first.jpg", "AURORA/data/something/frames/148204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic chip"}, {"from": "gpt", "value": ""}]} +{"id": "000000107022", "images": ["AURORA/data/something/frames/123574/first.jpg", "AURORA/data/something/frames/123574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting another pen on the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107023", "images": ["AURORA/data/something/frames/143160/first.jpg", "AURORA/data/something/frames/143160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hand cream and banana away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107024", "images": ["AURORA/data/something/frames/22257/first.jpg", "AURORA/data/something/frames/22257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107025", "images": ["AURORA/data/something/frames/214513/first.jpg", "AURORA/data/something/frames/214513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ironbox from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107026", "images": ["AURORA/data/something/frames/199886/first.jpg", "AURORA/data/something/frames/199886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving triangle and pen so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107027", "images": ["AURORA/data/something/frames/187937/first.jpg", "AURORA/data/something/frames/187937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many biscuits"}, {"from": "gpt", "value": ""}]} +{"id": "000000107028", "images": ["AURORA/data/something/frames/91527/first.jpg", "AURORA/data/something/frames/91527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ukulele out of the case"}, {"from": "gpt", "value": ""}]} +{"id": "000000107029", "images": ["AURORA/data/something/frames/143962/first.jpg", "AURORA/data/something/frames/143962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering headphone with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107030", "images": ["AURORA/data/something/frames/169616/first.jpg", "AURORA/data/something/frames/169616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000107031", "images": ["AURORA/data/something/frames/29620/first.jpg", "AURORA/data/something/frames/29620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering rubix cube with white hand kerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107032", "images": ["AURORA/data/something/frames/186090/first.jpg", "AURORA/data/something/frames/186090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming laterate stone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107033", "images": ["AURORA/data/something/frames/49702/first.jpg", "AURORA/data/something/frames/49702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to pen/marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107034", "images": ["AURORA/data/something/frames/173571/first.jpg", "AURORA/data/something/frames/173571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping nail polish over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107035", "images": ["AURORA/data/something/frames/40186/first.jpg", "AURORA/data/something/frames/40186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering legs with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107036", "images": ["AURORA/data/something/frames/69189/first.jpg", "AURORA/data/something/frames/69189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107037", "images": ["AURORA/data/something/frames/120996/first.jpg", "AURORA/data/something/frames/120996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling car key from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107038", "images": ["AURORA/data/something/frames/214684/first.jpg", "AURORA/data/something/frames/214684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glass jar with paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107039", "images": ["AURORA/data/something/frames/209141/first.jpg", "AURORA/data/something/frames/209141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107040", "images": ["AURORA/data/something/frames/73667/first.jpg", "AURORA/data/something/frames/73667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000107041", "images": ["AURORA/data/something/frames/166247/first.jpg", "AURORA/data/something/frames/166247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tape with cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000107042", "images": ["AURORA/data/something/frames/42333/first.jpg", "AURORA/data/something/frames/42333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of glove so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000107043", "images": ["AURORA/data/something/frames/28337/first.jpg", "AURORA/data/something/frames/28337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming switch board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107044", "images": ["AURORA/data/something/frames/23963/first.jpg", "AURORA/data/something/frames/23963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107045", "images": ["AURORA/data/something/frames/163169/first.jpg", "AURORA/data/something/frames/163169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107046", "images": ["AURORA/data/something/frames/209000/first.jpg", "AURORA/data/something/frames/209000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering drumstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000107047", "images": ["AURORA/data/something/frames/161310/first.jpg", "AURORA/data/something/frames/161310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hanger and screwdriver away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107048", "images": ["AURORA/data/something/frames/149192/first.jpg", "AURORA/data/something/frames/149192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107049", "images": ["AURORA/data/something/frames/189122/first.jpg", "AURORA/data/something/frames/189122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper weight from bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107050", "images": ["AURORA/data/something/frames/126045/first.jpg", "AURORA/data/something/frames/126045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000107051", "images": ["AURORA/data/something/frames/49367/first.jpg", "AURORA/data/something/frames/49367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk next to cookie"}, {"from": "gpt", "value": ""}]} +{"id": "000000107052", "images": ["AURORA/data/something/frames/83203/first.jpg", "AURORA/data/something/frames/83203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107053", "images": ["AURORA/data/something/frames/22563/first.jpg", "AURORA/data/something/frames/22563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107054", "images": ["AURORA/data/something/frames/150314/first.jpg", "AURORA/data/something/frames/150314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107055", "images": ["AURORA/data/something/frames/107548/first.jpg", "AURORA/data/something/frames/107548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping blistex chapstick over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107056", "images": ["AURORA/data/something/frames/29610/first.jpg", "AURORA/data/something/frames/29610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering small gear wheel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107057", "images": ["AURORA/data/something/frames/171965/first.jpg", "AURORA/data/something/frames/171965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper towels in front of board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107058", "images": ["AURORA/data/something/frames/51744/first.jpg", "AURORA/data/something/frames/51744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107059", "images": ["AURORA/data/something/frames/53129/first.jpg", "AURORA/data/something/frames/53129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107060", "images": ["AURORA/data/something/frames/176176/first.jpg", "AURORA/data/something/frames/176176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red crayon closer to blue crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107061", "images": ["AURORA/data/something/frames/97509/first.jpg", "AURORA/data/something/frames/97509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening filing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107062", "images": ["AURORA/data/something/frames/110581/first.jpg", "AURORA/data/something/frames/110581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spectacle box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107063", "images": ["AURORA/data/something/frames/14323/first.jpg", "AURORA/data/something/frames/14323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting hair ribbon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107064", "images": ["AURORA/data/something/frames/39718/first.jpg", "AURORA/data/something/frames/39718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crumbs off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107065", "images": ["AURORA/data/something/frames/220068/first.jpg", "AURORA/data/something/frames/220068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking car so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107066", "images": ["AURORA/data/something/frames/205413/first.jpg", "AURORA/data/something/frames/205413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107067", "images": ["AURORA/data/something/frames/25864/first.jpg", "AURORA/data/something/frames/25864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000107068", "images": ["AURORA/data/something/frames/204280/first.jpg", "AURORA/data/something/frames/204280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a pen on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107069", "images": ["AURORA/data/something/frames/188297/first.jpg", "AURORA/data/something/frames/188297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107070", "images": ["AURORA/data/something/frames/60121/first.jpg", "AURORA/data/something/frames/60121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car colliding with a toy car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000107071", "images": ["AURORA/data/something/frames/537/first.jpg", "AURORA/data/something/frames/537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107072", "images": ["AURORA/data/something/frames/146944/first.jpg", "AURORA/data/something/frames/146944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107073", "images": ["AURORA/data/something/frames/114127/first.jpg", "AURORA/data/something/frames/114127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107074", "images": ["AURORA/data/something/frames/181485/first.jpg", "AURORA/data/something/frames/181485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107075", "images": ["AURORA/data/something/frames/173900/first.jpg", "AURORA/data/something/frames/173900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle off of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107076", "images": ["AURORA/data/something/frames/132965/first.jpg", "AURORA/data/something/frames/132965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tshirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107077", "images": ["AURORA/data/something/frames/174184/first.jpg", "AURORA/data/something/frames/174184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107078", "images": ["AURORA/data/something/frames/64907/first.jpg", "AURORA/data/something/frames/64907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking notebook and pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107079", "images": ["AURORA/data/something/frames/165916/first.jpg", "AURORA/data/something/frames/165916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107080", "images": ["AURORA/data/something/frames/218228/first.jpg", "AURORA/data/something/frames/218228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107081", "images": ["AURORA/data/something/frames/48501/first.jpg", "AURORA/data/something/frames/48501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail clippers, remote and hole punch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107082", "images": ["AURORA/data/something/frames/90985/first.jpg", "AURORA/data/something/frames/90985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107083", "images": ["AURORA/data/something/frames/202336/first.jpg", "AURORA/data/something/frames/202336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107084", "images": ["AURORA/data/something/frames/33053/first.jpg", "AURORA/data/something/frames/33053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plant underneath a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107085", "images": ["AURORA/data/something/frames/99492/first.jpg", "AURORA/data/something/frames/99492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cookies up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107086", "images": ["AURORA/data/something/frames/72624/first.jpg", "AURORA/data/something/frames/72624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107087", "images": ["AURORA/data/something/frames/219431/first.jpg", "AURORA/data/something/frames/219431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing packet with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107088", "images": ["AURORA/data/something/frames/8867/first.jpg", "AURORA/data/something/frames/8867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107089", "images": ["AURORA/data/something/frames/29040/first.jpg", "AURORA/data/something/frames/29040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a pill bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107090", "images": ["AURORA/data/something/frames/18307/first.jpg", "AURORA/data/something/frames/18307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming dog"}, {"from": "gpt", "value": ""}]} +{"id": "000000107091", "images": ["AURORA/data/something/frames/195395/first.jpg", "AURORA/data/something/frames/195395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107092", "images": ["AURORA/data/something/frames/68082/first.jpg", "AURORA/data/something/frames/68082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle of juice on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107093", "images": ["AURORA/data/something/frames/5009/first.jpg", "AURORA/data/something/frames/5009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling zipper from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107094", "images": ["AURORA/data/something/frames/90784/first.jpg", "AURORA/data/something/frames/90784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a water bottle into a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107095", "images": ["AURORA/data/something/frames/48697/first.jpg", "AURORA/data/something/frames/48697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power supply into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107096", "images": ["AURORA/data/something/frames/42843/first.jpg", "AURORA/data/something/frames/42843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a fluorescent stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107097", "images": ["AURORA/data/something/frames/45429/first.jpg", "AURORA/data/something/frames/45429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107098", "images": ["AURORA/data/something/frames/159389/first.jpg", "AURORA/data/something/frames/159389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107099", "images": ["AURORA/data/something/frames/52509/first.jpg", "AURORA/data/something/frames/52509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107100", "images": ["AURORA/data/something/frames/142650/first.jpg", "AURORA/data/something/frames/142650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the wallet and the remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107101", "images": ["AURORA/data/something/frames/209669/first.jpg", "AURORA/data/something/frames/209669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107102", "images": ["AURORA/data/something/frames/18253/first.jpg", "AURORA/data/something/frames/18253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching ball with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107103", "images": ["AURORA/data/something/frames/21450/first.jpg", "AURORA/data/something/frames/21450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tissue box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107104", "images": ["AURORA/data/something/frames/181733/first.jpg", "AURORA/data/something/frames/181733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse onto binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107105", "images": ["AURORA/data/something/frames/105680/first.jpg", "AURORA/data/something/frames/105680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107106", "images": ["AURORA/data/something/frames/18642/first.jpg", "AURORA/data/something/frames/18642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking flashdrive out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107107", "images": ["AURORA/data/something/frames/201855/first.jpg", "AURORA/data/something/frames/201855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of chopsticks so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107108", "images": ["AURORA/data/something/frames/168646/first.jpg", "AURORA/data/something/frames/168646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000107109", "images": ["AURORA/data/something/frames/133879/first.jpg", "AURORA/data/something/frames/133879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cloth into cover phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107110", "images": ["AURORA/data/something/frames/95754/first.jpg", "AURORA/data/something/frames/95754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107111", "images": ["AURORA/data/something/frames/32351/first.jpg", "AURORA/data/something/frames/32351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107112", "images": ["AURORA/data/something/frames/202209/first.jpg", "AURORA/data/something/frames/202209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup next to coffee creamer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107113", "images": ["AURORA/data/something/frames/54497/first.jpg", "AURORA/data/something/frames/54497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107114", "images": ["AURORA/data/something/frames/3668/first.jpg", "AURORA/data/something/frames/3668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107115", "images": ["AURORA/data/something/frames/114025/first.jpg", "AURORA/data/something/frames/114025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107116", "images": ["AURORA/data/something/frames/10144/first.jpg", "AURORA/data/something/frames/10144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107117", "images": ["AURORA/data/something/frames/23763/first.jpg", "AURORA/data/something/frames/23763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking marker so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107118", "images": ["AURORA/data/something/frames/13276/first.jpg", "AURORA/data/something/frames/13276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a peg so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107119", "images": ["AURORA/data/something/frames/43891/first.jpg", "AURORA/data/something/frames/43891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000107120", "images": ["AURORA/data/something/frames/115824/first.jpg", "AURORA/data/something/frames/115824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box onto a ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107121", "images": ["AURORA/data/something/frames/177316/first.jpg", "AURORA/data/something/frames/177316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving medicines up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107122", "images": ["AURORA/data/something/frames/75505/first.jpg", "AURORA/data/something/frames/75505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking phone out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107123", "images": ["AURORA/data/something/frames/185053/first.jpg", "AURORA/data/something/frames/185053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and ear phones on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107124", "images": ["AURORA/data/something/frames/220730/first.jpg", "AURORA/data/something/frames/220730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a package with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107125", "images": ["AURORA/data/something/frames/145730/first.jpg", "AURORA/data/something/frames/145730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107126", "images": ["AURORA/data/something/frames/34506/first.jpg", "AURORA/data/something/frames/34506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 marker pens onto brown note"}, {"from": "gpt", "value": ""}]} +{"id": "000000107127", "images": ["AURORA/data/something/frames/170403/first.jpg", "AURORA/data/something/frames/170403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup onto text books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107128", "images": ["AURORA/data/something/frames/35818/first.jpg", "AURORA/data/something/frames/35818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding t shit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107129", "images": ["AURORA/data/something/frames/59764/first.jpg", "AURORA/data/something/frames/59764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing mini tripod into camera bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107130", "images": ["AURORA/data/something/frames/70846/first.jpg", "AURORA/data/something/frames/70846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000107131", "images": ["AURORA/data/something/frames/150484/first.jpg", "AURORA/data/something/frames/150484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging batteries out of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107132", "images": ["AURORA/data/something/frames/28803/first.jpg", "AURORA/data/something/frames/28803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sewing reel into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107133", "images": ["AURORA/data/something/frames/7655/first.jpg", "AURORA/data/something/frames/7655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green toy car onto yellow clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107134", "images": ["AURORA/data/something/frames/84237/first.jpg", "AURORA/data/something/frames/84237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107135", "images": ["AURORA/data/something/frames/104036/first.jpg", "AURORA/data/something/frames/104036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green purse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107136", "images": ["AURORA/data/something/frames/81183/first.jpg", "AURORA/data/something/frames/81183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup and candle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107137", "images": ["AURORA/data/something/frames/219735/first.jpg", "AURORA/data/something/frames/219735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candies on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107138", "images": ["AURORA/data/something/frames/173102/first.jpg", "AURORA/data/something/frames/173102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing key into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107139", "images": ["AURORA/data/something/frames/178220/first.jpg", "AURORA/data/something/frames/178220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107140", "images": ["AURORA/data/something/frames/52775/first.jpg", "AURORA/data/something/frames/52775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cellphone and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107141", "images": ["AURORA/data/something/frames/22017/first.jpg", "AURORA/data/something/frames/22017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107142", "images": ["AURORA/data/something/frames/45417/first.jpg", "AURORA/data/something/frames/45417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107143", "images": ["AURORA/data/something/frames/97377/first.jpg", "AURORA/data/something/frames/97377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a plastic bag off of a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107144", "images": ["AURORA/data/something/frames/33943/first.jpg", "AURORA/data/something/frames/33943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green headlight from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107145", "images": ["AURORA/data/something/frames/113011/first.jpg", "AURORA/data/something/frames/113011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107146", "images": ["AURORA/data/something/frames/209746/first.jpg", "AURORA/data/something/frames/209746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a comb off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107147", "images": ["AURORA/data/something/frames/40813/first.jpg", "AURORA/data/something/frames/40813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lotion bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107148", "images": ["AURORA/data/something/frames/39206/first.jpg", "AURORA/data/something/frames/39206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107149", "images": ["AURORA/data/something/frames/199250/first.jpg", "AURORA/data/something/frames/199250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107150", "images": ["AURORA/data/something/frames/118314/first.jpg", "AURORA/data/something/frames/118314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and stuffed toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107151", "images": ["AURORA/data/something/frames/217565/first.jpg", "AURORA/data/something/frames/217565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107152", "images": ["AURORA/data/something/frames/128187/first.jpg", "AURORA/data/something/frames/128187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bowl up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107153", "images": ["AURORA/data/something/frames/8828/first.jpg", "AURORA/data/something/frames/8828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses, a sticky note pad and dental floss on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107154", "images": ["AURORA/data/something/frames/33634/first.jpg", "AURORA/data/something/frames/33634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green toy car onto clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107155", "images": ["AURORA/data/something/frames/130427/first.jpg", "AURORA/data/something/frames/130427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tape onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107156", "images": ["AURORA/data/something/frames/201096/first.jpg", "AURORA/data/something/frames/201096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107157", "images": ["AURORA/data/something/frames/166839/first.jpg", "AURORA/data/something/frames/166839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering jar with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107158", "images": ["AURORA/data/something/frames/136838/first.jpg", "AURORA/data/something/frames/136838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000107159", "images": ["AURORA/data/something/frames/173321/first.jpg", "AURORA/data/something/frames/173321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107160", "images": ["AURORA/data/something/frames/155444/first.jpg", "AURORA/data/something/frames/155444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from keys with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107161", "images": ["AURORA/data/something/frames/138665/first.jpg", "AURORA/data/something/frames/138665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a plastic bottle cap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107162", "images": ["AURORA/data/something/frames/52683/first.jpg", "AURORA/data/something/frames/52683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box and handphone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107163", "images": ["AURORA/data/something/frames/81944/first.jpg", "AURORA/data/something/frames/81944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000107164", "images": ["AURORA/data/something/frames/98498/first.jpg", "AURORA/data/something/frames/98498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a notepad without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107165", "images": ["AURORA/data/something/frames/216823/first.jpg", "AURORA/data/something/frames/216823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000107166", "images": ["AURORA/data/something/frames/102837/first.jpg", "AURORA/data/something/frames/102837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candy next to magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000107167", "images": ["AURORA/data/something/frames/118865/first.jpg", "AURORA/data/something/frames/118865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting towel with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107168", "images": ["AURORA/data/something/frames/117360/first.jpg", "AURORA/data/something/frames/117360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107169", "images": ["AURORA/data/something/frames/59104/first.jpg", "AURORA/data/something/frames/59104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy and toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107170", "images": ["AURORA/data/something/frames/149632/first.jpg", "AURORA/data/something/frames/149632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto a sliced tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000107171", "images": ["AURORA/data/something/frames/123040/first.jpg", "AURORA/data/something/frames/123040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107172", "images": ["AURORA/data/something/frames/163721/first.jpg", "AURORA/data/something/frames/163721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen behind wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107173", "images": ["AURORA/data/something/frames/173998/first.jpg", "AURORA/data/something/frames/173998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107174", "images": ["AURORA/data/something/frames/166646/first.jpg", "AURORA/data/something/frames/166646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bangle, thread and key on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107175", "images": ["AURORA/data/something/frames/106562/first.jpg", "AURORA/data/something/frames/106562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into pc but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107176", "images": ["AURORA/data/something/frames/126014/first.jpg", "AURORA/data/something/frames/126014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking stone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107177", "images": ["AURORA/data/something/frames/202258/first.jpg", "AURORA/data/something/frames/202258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107178", "images": ["AURORA/data/something/frames/187462/first.jpg", "AURORA/data/something/frames/187462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000107179", "images": ["AURORA/data/something/frames/25654/first.jpg", "AURORA/data/something/frames/25654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green colour pen away from blue colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107180", "images": ["AURORA/data/something/frames/87997/first.jpg", "AURORA/data/something/frames/87997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy truck from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107181", "images": ["AURORA/data/something/frames/125918/first.jpg", "AURORA/data/something/frames/125918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107182", "images": ["AURORA/data/something/frames/203297/first.jpg", "AURORA/data/something/frames/203297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tissues so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107183", "images": ["AURORA/data/something/frames/55396/first.jpg", "AURORA/data/something/frames/55396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107184", "images": ["AURORA/data/something/frames/183205/first.jpg", "AURORA/data/something/frames/183205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting envelope in front of card"}, {"from": "gpt", "value": ""}]} +{"id": "000000107185", "images": ["AURORA/data/something/frames/166629/first.jpg", "AURORA/data/something/frames/166629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107186", "images": ["AURORA/data/something/frames/122999/first.jpg", "AURORA/data/something/frames/122999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107187", "images": ["AURORA/data/something/frames/115281/first.jpg", "AURORA/data/something/frames/115281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000107188", "images": ["AURORA/data/something/frames/196295/first.jpg", "AURORA/data/something/frames/196295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107189", "images": ["AURORA/data/something/frames/35459/first.jpg", "AURORA/data/something/frames/35459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering chair with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107190", "images": ["AURORA/data/something/frames/129865/first.jpg", "AURORA/data/something/frames/129865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107191", "images": ["AURORA/data/something/frames/66066/first.jpg", "AURORA/data/something/frames/66066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107192", "images": ["AURORA/data/something/frames/141983/first.jpg", "AURORA/data/something/frames/141983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tongue cleaner so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107193", "images": ["AURORA/data/something/frames/113628/first.jpg", "AURORA/data/something/frames/113628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107194", "images": ["AURORA/data/something/frames/131492/first.jpg", "AURORA/data/something/frames/131492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing scissor into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107195", "images": ["AURORA/data/something/frames/104274/first.jpg", "AURORA/data/something/frames/104274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting power bank and head charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107196", "images": ["AURORA/data/something/frames/104350/first.jpg", "AURORA/data/something/frames/104350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning inhaler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107197", "images": ["AURORA/data/something/frames/99245/first.jpg", "AURORA/data/something/frames/99245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107198", "images": ["AURORA/data/something/frames/41000/first.jpg", "AURORA/data/something/frames/41000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pan with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000107199", "images": ["AURORA/data/something/frames/179445/first.jpg", "AURORA/data/something/frames/179445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000107200", "images": ["AURORA/data/something/frames/140250/first.jpg", "AURORA/data/something/frames/140250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic tin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107201", "images": ["AURORA/data/something/frames/163441/first.jpg", "AURORA/data/something/frames/163441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107202", "images": ["AURORA/data/something/frames/213980/first.jpg", "AURORA/data/something/frames/213980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting tv with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107203", "images": ["AURORA/data/something/frames/84816/first.jpg", "AURORA/data/something/frames/84816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107204", "images": ["AURORA/data/something/frames/183188/first.jpg", "AURORA/data/something/frames/183188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107205", "images": ["AURORA/data/something/frames/144568/first.jpg", "AURORA/data/something/frames/144568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of wipe bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107206", "images": ["AURORA/data/something/frames/92333/first.jpg", "AURORA/data/something/frames/92333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107207", "images": ["AURORA/data/something/frames/76714/first.jpg", "AURORA/data/something/frames/76714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107208", "images": ["AURORA/data/something/frames/220300/first.jpg", "AURORA/data/something/frames/220300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107209", "images": ["AURORA/data/something/frames/18481/first.jpg", "AURORA/data/something/frames/18481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107210", "images": ["AURORA/data/something/frames/11639/first.jpg", "AURORA/data/something/frames/11639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffed animal being deflected from door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107211", "images": ["AURORA/data/something/frames/50697/first.jpg", "AURORA/data/something/frames/50697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000107212", "images": ["AURORA/data/something/frames/100880/first.jpg", "AURORA/data/something/frames/100880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking stone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107213", "images": ["AURORA/data/something/frames/109218/first.jpg", "AURORA/data/something/frames/109218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting specs next to wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000107214", "images": ["AURORA/data/something/frames/70147/first.jpg", "AURORA/data/something/frames/70147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000107215", "images": ["AURORA/data/something/frames/56969/first.jpg", "AURORA/data/something/frames/56969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000107216", "images": ["AURORA/data/something/frames/109945/first.jpg", "AURORA/data/something/frames/109945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy tiger and toy elephant so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107217", "images": ["AURORA/data/something/frames/199524/first.jpg", "AURORA/data/something/frames/199524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug into a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000107218", "images": ["AURORA/data/something/frames/79967/first.jpg", "AURORA/data/something/frames/79967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107219", "images": ["AURORA/data/something/frames/151522/first.jpg", "AURORA/data/something/frames/151522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107220", "images": ["AURORA/data/something/frames/188886/first.jpg", "AURORA/data/something/frames/188886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning green cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107221", "images": ["AURORA/data/something/frames/119020/first.jpg", "AURORA/data/something/frames/119020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107222", "images": ["AURORA/data/something/frames/87773/first.jpg", "AURORA/data/something/frames/87773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card"}, {"from": "gpt", "value": ""}]} +{"id": "000000107223", "images": ["AURORA/data/something/frames/33184/first.jpg", "AURORA/data/something/frames/33184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107224", "images": ["AURORA/data/something/frames/157192/first.jpg", "AURORA/data/something/frames/157192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting t shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107225", "images": ["AURORA/data/something/frames/49107/first.jpg", "AURORA/data/something/frames/49107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an object onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107226", "images": ["AURORA/data/something/frames/165705/first.jpg", "AURORA/data/something/frames/165705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107227", "images": ["AURORA/data/something/frames/134861/first.jpg", "AURORA/data/something/frames/134861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing selfie stick so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107228", "images": ["AURORA/data/something/frames/6911/first.jpg", "AURORA/data/something/frames/6911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car being deflected from a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107229", "images": ["AURORA/data/something/frames/7955/first.jpg", "AURORA/data/something/frames/7955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic tin out of plastic glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107230", "images": ["AURORA/data/something/frames/36285/first.jpg", "AURORA/data/something/frames/36285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling dish towels up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107231", "images": ["AURORA/data/something/frames/71858/first.jpg", "AURORA/data/something/frames/71858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bucket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107232", "images": ["AURORA/data/something/frames/140211/first.jpg", "AURORA/data/something/frames/140211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107233", "images": ["AURORA/data/something/frames/115778/first.jpg", "AURORA/data/something/frames/115778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting block onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107234", "images": ["AURORA/data/something/frames/51796/first.jpg", "AURORA/data/something/frames/51796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thimble down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107235", "images": ["AURORA/data/something/frames/107239/first.jpg", "AURORA/data/something/frames/107239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107236", "images": ["AURORA/data/something/frames/26033/first.jpg", "AURORA/data/something/frames/26033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into pocket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107237", "images": ["AURORA/data/something/frames/184604/first.jpg", "AURORA/data/something/frames/184604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into swicth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107238", "images": ["AURORA/data/something/frames/61572/first.jpg", "AURORA/data/something/frames/61572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107239", "images": ["AURORA/data/something/frames/106796/first.jpg", "AURORA/data/something/frames/106796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107240", "images": ["AURORA/data/something/frames/57524/first.jpg", "AURORA/data/something/frames/57524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of car"}, {"from": "gpt", "value": ""}]} +{"id": "000000107241", "images": ["AURORA/data/something/frames/59338/first.jpg", "AURORA/data/something/frames/59338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107242", "images": ["AURORA/data/something/frames/45734/first.jpg", "AURORA/data/something/frames/45734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scotch tape from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107243", "images": ["AURORA/data/something/frames/106844/first.jpg", "AURORA/data/something/frames/106844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pink toothbrush case upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107244", "images": ["AURORA/data/something/frames/201371/first.jpg", "AURORA/data/something/frames/201371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107245", "images": ["AURORA/data/something/frames/188230/first.jpg", "AURORA/data/something/frames/188230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107246", "images": ["AURORA/data/something/frames/48736/first.jpg", "AURORA/data/something/frames/48736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a rubiks cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000107247", "images": ["AURORA/data/something/frames/38513/first.jpg", "AURORA/data/something/frames/38513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white kercief from behind of diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000107248", "images": ["AURORA/data/something/frames/56237/first.jpg", "AURORA/data/something/frames/56237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a small bag over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107249", "images": ["AURORA/data/something/frames/29504/first.jpg", "AURORA/data/something/frames/29504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 shot glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107250", "images": ["AURORA/data/something/frames/111682/first.jpg", "AURORA/data/something/frames/111682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote control behind wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107251", "images": ["AURORA/data/something/frames/126279/first.jpg", "AURORA/data/something/frames/126279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107252", "images": ["AURORA/data/something/frames/54107/first.jpg", "AURORA/data/something/frames/54107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water bottle onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107253", "images": ["AURORA/data/something/frames/174342/first.jpg", "AURORA/data/something/frames/174342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of sponge"}, {"from": "gpt", "value": ""}]} +{"id": "000000107254", "images": ["AURORA/data/something/frames/178329/first.jpg", "AURORA/data/something/frames/178329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107255", "images": ["AURORA/data/something/frames/19756/first.jpg", "AURORA/data/something/frames/19756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107256", "images": ["AURORA/data/something/frames/116041/first.jpg", "AURORA/data/something/frames/116041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107257", "images": ["AURORA/data/something/frames/99070/first.jpg", "AURORA/data/something/frames/99070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107258", "images": ["AURORA/data/something/frames/205466/first.jpg", "AURORA/data/something/frames/205466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bangle closer to hard drive"}, {"from": "gpt", "value": ""}]} +{"id": "000000107259", "images": ["AURORA/data/something/frames/147217/first.jpg", "AURORA/data/something/frames/147217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box of juice onto a box of juice"}, {"from": "gpt", "value": ""}]} +{"id": "000000107260", "images": ["AURORA/data/something/frames/80743/first.jpg", "AURORA/data/something/frames/80743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bucket lid so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107261", "images": ["AURORA/data/something/frames/15710/first.jpg", "AURORA/data/something/frames/15710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ring from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107262", "images": ["AURORA/data/something/frames/92452/first.jpg", "AURORA/data/something/frames/92452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting black umbrella on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107263", "images": ["AURORA/data/something/frames/2791/first.jpg", "AURORA/data/something/frames/2791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one mobile of many other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107264", "images": ["AURORA/data/something/frames/158614/first.jpg", "AURORA/data/something/frames/158614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spray and bowl away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107265", "images": ["AURORA/data/something/frames/123898/first.jpg", "AURORA/data/something/frames/123898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the purse onto the towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107266", "images": ["AURORA/data/something/frames/47325/first.jpg", "AURORA/data/something/frames/47325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107267", "images": ["AURORA/data/something/frames/161313/first.jpg", "AURORA/data/something/frames/161313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening table drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107268", "images": ["AURORA/data/something/frames/99001/first.jpg", "AURORA/data/something/frames/99001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107269", "images": ["AURORA/data/something/frames/56258/first.jpg", "AURORA/data/something/frames/56258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending crayon until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107270", "images": ["AURORA/data/something/frames/210640/first.jpg", "AURORA/data/something/frames/210640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107271", "images": ["AURORA/data/something/frames/130772/first.jpg", "AURORA/data/something/frames/130772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling honey onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107272", "images": ["AURORA/data/something/frames/217772/first.jpg", "AURORA/data/something/frames/217772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107273", "images": ["AURORA/data/something/frames/47421/first.jpg", "AURORA/data/something/frames/47421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto a beanbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107274", "images": ["AURORA/data/something/frames/52415/first.jpg", "AURORA/data/something/frames/52415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container on the edge of a gle so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107275", "images": ["AURORA/data/something/frames/121949/first.jpg", "AURORA/data/something/frames/121949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste closer to a tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107276", "images": ["AURORA/data/something/frames/172650/first.jpg", "AURORA/data/something/frames/172650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107277", "images": ["AURORA/data/something/frames/133673/first.jpg", "AURORA/data/something/frames/133673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107278", "images": ["AURORA/data/something/frames/189636/first.jpg", "AURORA/data/something/frames/189636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper out of printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107279", "images": ["AURORA/data/something/frames/54897/first.jpg", "AURORA/data/something/frames/54897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107280", "images": ["AURORA/data/something/frames/190121/first.jpg", "AURORA/data/something/frames/190121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107281", "images": ["AURORA/data/something/frames/91326/first.jpg", "AURORA/data/something/frames/91326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107282", "images": ["AURORA/data/something/frames/128687/first.jpg", "AURORA/data/something/frames/128687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to wristwatch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107283", "images": ["AURORA/data/something/frames/51645/first.jpg", "AURORA/data/something/frames/51645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle with half onnion on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107284", "images": ["AURORA/data/something/frames/77290/first.jpg", "AURORA/data/something/frames/77290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging iphone cord into electric socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107285", "images": ["AURORA/data/something/frames/204269/first.jpg", "AURORA/data/something/frames/204269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering orange color pencil sharpner with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107286", "images": ["AURORA/data/something/frames/190947/first.jpg", "AURORA/data/something/frames/190947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with bread on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107287", "images": ["AURORA/data/something/frames/33117/first.jpg", "AURORA/data/something/frames/33117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping ashtray with cigarette butt over, so cigarette butt falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107288", "images": ["AURORA/data/something/frames/141757/first.jpg", "AURORA/data/something/frames/141757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and plastic bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107289", "images": ["AURORA/data/something/frames/139164/first.jpg", "AURORA/data/something/frames/139164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000107290", "images": ["AURORA/data/something/frames/72485/first.jpg", "AURORA/data/something/frames/72485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107291", "images": ["AURORA/data/something/frames/169313/first.jpg", "AURORA/data/something/frames/169313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wall charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107292", "images": ["AURORA/data/something/frames/104987/first.jpg", "AURORA/data/something/frames/104987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pair of socks into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000107293", "images": ["AURORA/data/something/frames/220644/first.jpg", "AURORA/data/something/frames/220644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sweatshirt into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107294", "images": ["AURORA/data/something/frames/126549/first.jpg", "AURORA/data/something/frames/126549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107295", "images": ["AURORA/data/something/frames/156357/first.jpg", "AURORA/data/something/frames/156357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clip onto container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107296", "images": ["AURORA/data/something/frames/156624/first.jpg", "AURORA/data/something/frames/156624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking photo from wardrobe"}, {"from": "gpt", "value": ""}]} +{"id": "000000107297", "images": ["AURORA/data/something/frames/124542/first.jpg", "AURORA/data/something/frames/124542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107298", "images": ["AURORA/data/something/frames/118632/first.jpg", "AURORA/data/something/frames/118632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping coffee up with scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107299", "images": ["AURORA/data/something/frames/3103/first.jpg", "AURORA/data/something/frames/3103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pebble out of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107300", "images": ["AURORA/data/something/frames/108021/first.jpg", "AURORA/data/something/frames/108021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sketch pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107301", "images": ["AURORA/data/something/frames/209960/first.jpg", "AURORA/data/something/frames/209960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107302", "images": ["AURORA/data/something/frames/91382/first.jpg", "AURORA/data/something/frames/91382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chocolate towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107303", "images": ["AURORA/data/something/frames/101440/first.jpg", "AURORA/data/something/frames/101440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107304", "images": ["AURORA/data/something/frames/95067/first.jpg", "AURORA/data/something/frames/95067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 punching machines onto blue note"}, {"from": "gpt", "value": ""}]} +{"id": "000000107305", "images": ["AURORA/data/something/frames/40810/first.jpg", "AURORA/data/something/frames/40810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon behind remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000107306", "images": ["AURORA/data/something/frames/121183/first.jpg", "AURORA/data/something/frames/121183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107307", "images": ["AURORA/data/something/frames/170725/first.jpg", "AURORA/data/something/frames/170725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107308", "images": ["AURORA/data/something/frames/210991/first.jpg", "AURORA/data/something/frames/210991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cable cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000107309", "images": ["AURORA/data/something/frames/174797/first.jpg", "AURORA/data/something/frames/174797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107310", "images": ["AURORA/data/something/frames/84919/first.jpg", "AURORA/data/something/frames/84919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing crayon into crayon box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107311", "images": ["AURORA/data/something/frames/132599/first.jpg", "AURORA/data/something/frames/132599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tree branch down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107312", "images": ["AURORA/data/something/frames/15944/first.jpg", "AURORA/data/something/frames/15944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107313", "images": ["AURORA/data/something/frames/140156/first.jpg", "AURORA/data/something/frames/140156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107314", "images": ["AURORA/data/something/frames/52789/first.jpg", "AURORA/data/something/frames/52789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107315", "images": ["AURORA/data/something/frames/125021/first.jpg", "AURORA/data/something/frames/125021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107316", "images": ["AURORA/data/something/frames/26111/first.jpg", "AURORA/data/something/frames/26111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107317", "images": ["AURORA/data/something/frames/197265/first.jpg", "AURORA/data/something/frames/197265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book similar to other books that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107318", "images": ["AURORA/data/something/frames/193353/first.jpg", "AURORA/data/something/frames/193353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pushpins"}, {"from": "gpt", "value": ""}]} +{"id": "000000107319", "images": ["AURORA/data/something/frames/68476/first.jpg", "AURORA/data/something/frames/68476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107320", "images": ["AURORA/data/something/frames/220420/first.jpg", "AURORA/data/something/frames/220420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon onto stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000107321", "images": ["AURORA/data/something/frames/220554/first.jpg", "AURORA/data/something/frames/220554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107322", "images": ["AURORA/data/something/frames/219646/first.jpg", "AURORA/data/something/frames/219646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107323", "images": ["AURORA/data/something/frames/127344/first.jpg", "AURORA/data/something/frames/127344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107324", "images": ["AURORA/data/something/frames/45657/first.jpg", "AURORA/data/something/frames/45657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plastic bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107325", "images": ["AURORA/data/something/frames/178448/first.jpg", "AURORA/data/something/frames/178448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ecig up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107326", "images": ["AURORA/data/something/frames/122733/first.jpg", "AURORA/data/something/frames/122733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cream cheese onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000107327", "images": ["AURORA/data/something/frames/118117/first.jpg", "AURORA/data/something/frames/118117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107328", "images": ["AURORA/data/something/frames/209276/first.jpg", "AURORA/data/something/frames/209276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107329", "images": ["AURORA/data/something/frames/189157/first.jpg", "AURORA/data/something/frames/189157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mouse pad with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107330", "images": ["AURORA/data/something/frames/101664/first.jpg", "AURORA/data/something/frames/101664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107331", "images": ["AURORA/data/something/frames/43682/first.jpg", "AURORA/data/something/frames/43682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107332", "images": ["AURORA/data/something/frames/48401/first.jpg", "AURORA/data/something/frames/48401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107333", "images": ["AURORA/data/something/frames/100011/first.jpg", "AURORA/data/something/frames/100011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothing up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107334", "images": ["AURORA/data/something/frames/101982/first.jpg", "AURORA/data/something/frames/101982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kaugummi-packung on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107335", "images": ["AURORA/data/something/frames/176593/first.jpg", "AURORA/data/something/frames/176593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107336", "images": ["AURORA/data/something/frames/98601/first.jpg", "AURORA/data/something/frames/98601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bowl with a book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107337", "images": ["AURORA/data/something/frames/42769/first.jpg", "AURORA/data/something/frames/42769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paint brush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107338", "images": ["AURORA/data/something/frames/61339/first.jpg", "AURORA/data/something/frames/61339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107339", "images": ["AURORA/data/something/frames/127289/first.jpg", "AURORA/data/something/frames/127289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papier into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107340", "images": ["AURORA/data/something/frames/159271/first.jpg", "AURORA/data/something/frames/159271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000107341", "images": ["AURORA/data/something/frames/187372/first.jpg", "AURORA/data/something/frames/187372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of something without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107342", "images": ["AURORA/data/something/frames/152106/first.jpg", "AURORA/data/something/frames/152106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box onto prayer book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107343", "images": ["AURORA/data/something/frames/3026/first.jpg", "AURORA/data/something/frames/3026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107344", "images": ["AURORA/data/something/frames/99784/first.jpg", "AURORA/data/something/frames/99784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to the other pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107345", "images": ["AURORA/data/something/frames/131363/first.jpg", "AURORA/data/something/frames/131363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ball with broom"}, {"from": "gpt", "value": ""}]} +{"id": "000000107346", "images": ["AURORA/data/something/frames/115961/first.jpg", "AURORA/data/something/frames/115961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107347", "images": ["AURORA/data/something/frames/37426/first.jpg", "AURORA/data/something/frames/37426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107348", "images": ["AURORA/data/something/frames/54932/first.jpg", "AURORA/data/something/frames/54932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107349", "images": ["AURORA/data/something/frames/103631/first.jpg", "AURORA/data/something/frames/103631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming landscaping"}, {"from": "gpt", "value": ""}]} +{"id": "000000107350", "images": ["AURORA/data/something/frames/159644/first.jpg", "AURORA/data/something/frames/159644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass with pens over, so pens falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107351", "images": ["AURORA/data/something/frames/40489/first.jpg", "AURORA/data/something/frames/40489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107352", "images": ["AURORA/data/something/frames/71001/first.jpg", "AURORA/data/something/frames/71001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107353", "images": ["AURORA/data/something/frames/166311/first.jpg", "AURORA/data/something/frames/166311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107354", "images": ["AURORA/data/something/frames/91655/first.jpg", "AURORA/data/something/frames/91655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107355", "images": ["AURORA/data/something/frames/24199/first.jpg", "AURORA/data/something/frames/24199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107356", "images": ["AURORA/data/something/frames/25490/first.jpg", "AURORA/data/something/frames/25490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box of tea"}, {"from": "gpt", "value": ""}]} +{"id": "000000107357", "images": ["AURORA/data/something/frames/108982/first.jpg", "AURORA/data/something/frames/108982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a banana onto a packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107358", "images": ["AURORA/data/something/frames/26614/first.jpg", "AURORA/data/something/frames/26614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lamp with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107359", "images": ["AURORA/data/something/frames/179122/first.jpg", "AURORA/data/something/frames/179122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of juicer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107360", "images": ["AURORA/data/something/frames/187901/first.jpg", "AURORA/data/something/frames/187901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing juicer cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107361", "images": ["AURORA/data/something/frames/46159/first.jpg", "AURORA/data/something/frames/46159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107362", "images": ["AURORA/data/something/frames/71529/first.jpg", "AURORA/data/something/frames/71529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107363", "images": ["AURORA/data/something/frames/129790/first.jpg", "AURORA/data/something/frames/129790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107364", "images": ["AURORA/data/something/frames/75918/first.jpg", "AURORA/data/something/frames/75918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000107365", "images": ["AURORA/data/something/frames/89329/first.jpg", "AURORA/data/something/frames/89329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pink paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107366", "images": ["AURORA/data/something/frames/168785/first.jpg", "AURORA/data/something/frames/168785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107367", "images": ["AURORA/data/something/frames/195901/first.jpg", "AURORA/data/something/frames/195901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a banana with baking tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000107368", "images": ["AURORA/data/something/frames/177797/first.jpg", "AURORA/data/something/frames/177797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107369", "images": ["AURORA/data/something/frames/127867/first.jpg", "AURORA/data/something/frames/127867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tablet computer from behind of speakers"}, {"from": "gpt", "value": ""}]} +{"id": "000000107370", "images": ["AURORA/data/something/frames/50957/first.jpg", "AURORA/data/something/frames/50957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencase closer to a calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107371", "images": ["AURORA/data/something/frames/149099/first.jpg", "AURORA/data/something/frames/149099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker next to nail file"}, {"from": "gpt", "value": ""}]} +{"id": "000000107372", "images": ["AURORA/data/something/frames/136341/first.jpg", "AURORA/data/something/frames/136341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pens onto a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000107373", "images": ["AURORA/data/something/frames/106434/first.jpg", "AURORA/data/something/frames/106434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator, paper weight and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107374", "images": ["AURORA/data/something/frames/77129/first.jpg", "AURORA/data/something/frames/77129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107375", "images": ["AURORA/data/something/frames/135839/first.jpg", "AURORA/data/something/frames/135839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cup into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107376", "images": ["AURORA/data/something/frames/187615/first.jpg", "AURORA/data/something/frames/187615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tube out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107377", "images": ["AURORA/data/something/frames/132531/first.jpg", "AURORA/data/something/frames/132531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring mike's hard lemonade out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107378", "images": ["AURORA/data/something/frames/27323/first.jpg", "AURORA/data/something/frames/27323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon underneath napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107379", "images": ["AURORA/data/something/frames/33894/first.jpg", "AURORA/data/something/frames/33894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000107380", "images": ["AURORA/data/something/frames/56852/first.jpg", "AURORA/data/something/frames/56852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000107381", "images": ["AURORA/data/something/frames/129978/first.jpg", "AURORA/data/something/frames/129978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cat and cube closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107382", "images": ["AURORA/data/something/frames/28913/first.jpg", "AURORA/data/something/frames/28913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ruler in front of socks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107383", "images": ["AURORA/data/something/frames/95929/first.jpg", "AURORA/data/something/frames/95929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor away from tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000107384", "images": ["AURORA/data/something/frames/129039/first.jpg", "AURORA/data/something/frames/129039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar container closer to tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000107385", "images": ["AURORA/data/something/frames/213177/first.jpg", "AURORA/data/something/frames/213177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive with other pendrives"}, {"from": "gpt", "value": ""}]} +{"id": "000000107386", "images": ["AURORA/data/something/frames/181013/first.jpg", "AURORA/data/something/frames/181013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning salt upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107387", "images": ["AURORA/data/something/frames/140540/first.jpg", "AURORA/data/something/frames/140540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting balm onto mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000107388", "images": ["AURORA/data/something/frames/87369/first.jpg", "AURORA/data/something/frames/87369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe box with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107389", "images": ["AURORA/data/something/frames/142111/first.jpg", "AURORA/data/something/frames/142111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter onto candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107390", "images": ["AURORA/data/something/frames/129889/first.jpg", "AURORA/data/something/frames/129889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107391", "images": ["AURORA/data/something/frames/89291/first.jpg", "AURORA/data/something/frames/89291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107392", "images": ["AURORA/data/something/frames/135982/first.jpg", "AURORA/data/something/frames/135982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107393", "images": ["AURORA/data/something/frames/83504/first.jpg", "AURORA/data/something/frames/83504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107394", "images": ["AURORA/data/something/frames/40718/first.jpg", "AURORA/data/something/frames/40718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lidded cup out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107395", "images": ["AURORA/data/something/frames/203120/first.jpg", "AURORA/data/something/frames/203120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mango, revealing dice behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107396", "images": ["AURORA/data/something/frames/174519/first.jpg", "AURORA/data/something/frames/174519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching soda can with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107397", "images": ["AURORA/data/something/frames/75587/first.jpg", "AURORA/data/something/frames/75587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107398", "images": ["AURORA/data/something/frames/183833/first.jpg", "AURORA/data/something/frames/183833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107399", "images": ["AURORA/data/something/frames/173098/first.jpg", "AURORA/data/something/frames/173098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wristlet, luggage tag and hat on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107400", "images": ["AURORA/data/something/frames/99514/first.jpg", "AURORA/data/something/frames/99514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000107401", "images": ["AURORA/data/something/frames/140929/first.jpg", "AURORA/data/something/frames/140929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107402", "images": ["AURORA/data/something/frames/61837/first.jpg", "AURORA/data/something/frames/61837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107403", "images": ["AURORA/data/something/frames/123134/first.jpg", "AURORA/data/something/frames/123134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger and pendrive away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107404", "images": ["AURORA/data/something/frames/149879/first.jpg", "AURORA/data/something/frames/149879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheat of plate wheat"}, {"from": "gpt", "value": ""}]} +{"id": "000000107405", "images": ["AURORA/data/something/frames/18343/first.jpg", "AURORA/data/something/frames/18343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder clip similar to other binder clips that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107406", "images": ["AURORA/data/something/frames/217420/first.jpg", "AURORA/data/something/frames/217420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107407", "images": ["AURORA/data/something/frames/143924/first.jpg", "AURORA/data/something/frames/143924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a napkin, a box and a charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107408", "images": ["AURORA/data/something/frames/174813/first.jpg", "AURORA/data/something/frames/174813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of something so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000107409", "images": ["AURORA/data/something/frames/112463/first.jpg", "AURORA/data/something/frames/112463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107410", "images": ["AURORA/data/something/frames/126450/first.jpg", "AURORA/data/something/frames/126450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving vape away from wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107411", "images": ["AURORA/data/something/frames/127505/first.jpg", "AURORA/data/something/frames/127505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107412", "images": ["AURORA/data/something/frames/112846/first.jpg", "AURORA/data/something/frames/112846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching calculator with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107413", "images": ["AURORA/data/something/frames/38394/first.jpg", "AURORA/data/something/frames/38394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lid onto a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107414", "images": ["AURORA/data/something/frames/63033/first.jpg", "AURORA/data/something/frames/63033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107415", "images": ["AURORA/data/something/frames/146621/first.jpg", "AURORA/data/something/frames/146621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107416", "images": ["AURORA/data/something/frames/132169/first.jpg", "AURORA/data/something/frames/132169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hand kercief out of pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107417", "images": ["AURORA/data/something/frames/195781/first.jpg", "AURORA/data/something/frames/195781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107418", "images": ["AURORA/data/something/frames/50173/first.jpg", "AURORA/data/something/frames/50173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming curtains"}, {"from": "gpt", "value": ""}]} +{"id": "000000107419", "images": ["AURORA/data/something/frames/127345/first.jpg", "AURORA/data/something/frames/127345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting headset with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107420", "images": ["AURORA/data/something/frames/48029/first.jpg", "AURORA/data/something/frames/48029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107421", "images": ["AURORA/data/something/frames/96691/first.jpg", "AURORA/data/something/frames/96691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cards so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107422", "images": ["AURORA/data/something/frames/165214/first.jpg", "AURORA/data/something/frames/165214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107423", "images": ["AURORA/data/something/frames/67898/first.jpg", "AURORA/data/something/frames/67898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107424", "images": ["AURORA/data/something/frames/176204/first.jpg", "AURORA/data/something/frames/176204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the glasses on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107425", "images": ["AURORA/data/something/frames/103655/first.jpg", "AURORA/data/something/frames/103655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107426", "images": ["AURORA/data/something/frames/20053/first.jpg", "AURORA/data/something/frames/20053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping juice off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107427", "images": ["AURORA/data/something/frames/185612/first.jpg", "AURORA/data/something/frames/185612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hat from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107428", "images": ["AURORA/data/something/frames/104918/first.jpg", "AURORA/data/something/frames/104918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding wool mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000107429", "images": ["AURORA/data/something/frames/81878/first.jpg", "AURORA/data/something/frames/81878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107430", "images": ["AURORA/data/something/frames/149475/first.jpg", "AURORA/data/something/frames/149475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a hanger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107431", "images": ["AURORA/data/something/frames/101214/first.jpg", "AURORA/data/something/frames/101214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000107432", "images": ["AURORA/data/something/frames/31145/first.jpg", "AURORA/data/something/frames/31145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdriver on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107433", "images": ["AURORA/data/something/frames/210816/first.jpg", "AURORA/data/something/frames/210816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a large plastic container over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107434", "images": ["AURORA/data/something/frames/112165/first.jpg", "AURORA/data/something/frames/112165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a plush with a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107435", "images": ["AURORA/data/something/frames/135493/first.jpg", "AURORA/data/something/frames/135493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying unopened drink on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107436", "images": ["AURORA/data/something/frames/148845/first.jpg", "AURORA/data/something/frames/148845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107437", "images": ["AURORA/data/something/frames/9928/first.jpg", "AURORA/data/something/frames/9928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing salt shaker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107438", "images": ["AURORA/data/something/frames/111451/first.jpg", "AURORA/data/something/frames/111451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning lipstick upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107439", "images": ["AURORA/data/something/frames/39402/first.jpg", "AURORA/data/something/frames/39402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a razor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107440", "images": ["AURORA/data/something/frames/27300/first.jpg", "AURORA/data/something/frames/27300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing hoodie into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107441", "images": ["AURORA/data/something/frames/65281/first.jpg", "AURORA/data/something/frames/65281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107442", "images": ["AURORA/data/something/frames/143328/first.jpg", "AURORA/data/something/frames/143328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jam-box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107443", "images": ["AURORA/data/something/frames/125400/first.jpg", "AURORA/data/something/frames/125400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107444", "images": ["AURORA/data/something/frames/149765/first.jpg", "AURORA/data/something/frames/149765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping red cup with paperwad over, so paperwad falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107445", "images": ["AURORA/data/something/frames/491/first.jpg", "AURORA/data/something/frames/491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening fridge door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107446", "images": ["AURORA/data/something/frames/95626/first.jpg", "AURORA/data/something/frames/95626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and highlighter away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107447", "images": ["AURORA/data/something/frames/102941/first.jpg", "AURORA/data/something/frames/102941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle away from candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107448", "images": ["AURORA/data/something/frames/13578/first.jpg", "AURORA/data/something/frames/13578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling grass out of soil ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000107449", "images": ["AURORA/data/something/frames/103941/first.jpg", "AURORA/data/something/frames/103941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoes into packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107450", "images": ["AURORA/data/something/frames/43636/first.jpg", "AURORA/data/something/frames/43636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107451", "images": ["AURORA/data/something/frames/177622/first.jpg", "AURORA/data/something/frames/177622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdiver, clip and thread on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107452", "images": ["AURORA/data/something/frames/67288/first.jpg", "AURORA/data/something/frames/67288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107453", "images": ["AURORA/data/something/frames/6903/first.jpg", "AURORA/data/something/frames/6903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107454", "images": ["AURORA/data/something/frames/125178/first.jpg", "AURORA/data/something/frames/125178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing magazine page into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107455", "images": ["AURORA/data/something/frames/108609/first.jpg", "AURORA/data/something/frames/108609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coffee from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107456", "images": ["AURORA/data/something/frames/216818/first.jpg", "AURORA/data/something/frames/216818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107457", "images": ["AURORA/data/something/frames/111036/first.jpg", "AURORA/data/something/frames/111036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107458", "images": ["AURORA/data/something/frames/133003/first.jpg", "AURORA/data/something/frames/133003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107459", "images": ["AURORA/data/something/frames/152234/first.jpg", "AURORA/data/something/frames/152234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blue colour pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107460", "images": ["AURORA/data/something/frames/47593/first.jpg", "AURORA/data/something/frames/47593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling tea onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000107461", "images": ["AURORA/data/something/frames/51121/first.jpg", "AURORA/data/something/frames/51121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a can upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107462", "images": ["AURORA/data/something/frames/124651/first.jpg", "AURORA/data/something/frames/124651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107463", "images": ["AURORA/data/something/frames/31723/first.jpg", "AURORA/data/something/frames/31723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lipstick tube onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107464", "images": ["AURORA/data/something/frames/182391/first.jpg", "AURORA/data/something/frames/182391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107465", "images": ["AURORA/data/something/frames/91072/first.jpg", "AURORA/data/something/frames/91072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107466", "images": ["AURORA/data/something/frames/70684/first.jpg", "AURORA/data/something/frames/70684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 bananas onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107467", "images": ["AURORA/data/something/frames/78979/first.jpg", "AURORA/data/something/frames/78979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into electrical plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107468", "images": ["AURORA/data/something/frames/66550/first.jpg", "AURORA/data/something/frames/66550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107469", "images": ["AURORA/data/something/frames/121410/first.jpg", "AURORA/data/something/frames/121410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of containers"}, {"from": "gpt", "value": ""}]} +{"id": "000000107470", "images": ["AURORA/data/something/frames/214725/first.jpg", "AURORA/data/something/frames/214725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107471", "images": ["AURORA/data/something/frames/44842/first.jpg", "AURORA/data/something/frames/44842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107472", "images": ["AURORA/data/something/frames/40536/first.jpg", "AURORA/data/something/frames/40536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting ecobag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107473", "images": ["AURORA/data/something/frames/184338/first.jpg", "AURORA/data/something/frames/184338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post it note to a map"}, {"from": "gpt", "value": ""}]} +{"id": "000000107474", "images": ["AURORA/data/something/frames/81114/first.jpg", "AURORA/data/something/frames/81114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden piece onto the top of a plant so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107475", "images": ["AURORA/data/something/frames/47599/first.jpg", "AURORA/data/something/frames/47599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a candle with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107476", "images": ["AURORA/data/something/frames/118955/first.jpg", "AURORA/data/something/frames/118955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a measuring tape on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107477", "images": ["AURORA/data/something/frames/182514/first.jpg", "AURORA/data/something/frames/182514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking flipflop up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107478", "images": ["AURORA/data/something/frames/188763/first.jpg", "AURORA/data/something/frames/188763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107479", "images": ["AURORA/data/something/frames/72022/first.jpg", "AURORA/data/something/frames/72022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scotch tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107480", "images": ["AURORA/data/something/frames/146427/first.jpg", "AURORA/data/something/frames/146427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering calculator with it's protective lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000107481", "images": ["AURORA/data/something/frames/14012/first.jpg", "AURORA/data/something/frames/14012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mouse with finger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107482", "images": ["AURORA/data/something/frames/16624/first.jpg", "AURORA/data/something/frames/16624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107483", "images": ["AURORA/data/something/frames/26785/first.jpg", "AURORA/data/something/frames/26785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy owl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107484", "images": ["AURORA/data/something/frames/197850/first.jpg", "AURORA/data/something/frames/197850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning smarthphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107485", "images": ["AURORA/data/something/frames/203861/first.jpg", "AURORA/data/something/frames/203861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107486", "images": ["AURORA/data/something/frames/45310/first.jpg", "AURORA/data/something/frames/45310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting skateboard with a powerbank"}, {"from": "gpt", "value": ""}]} +{"id": "000000107487", "images": ["AURORA/data/something/frames/212504/first.jpg", "AURORA/data/something/frames/212504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107488", "images": ["AURORA/data/something/frames/30751/first.jpg", "AURORA/data/something/frames/30751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt into cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000107489", "images": ["AURORA/data/something/frames/51426/first.jpg", "AURORA/data/something/frames/51426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107490", "images": ["AURORA/data/something/frames/135659/first.jpg", "AURORA/data/something/frames/135659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107491", "images": ["AURORA/data/something/frames/92832/first.jpg", "AURORA/data/something/frames/92832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with box on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107492", "images": ["AURORA/data/something/frames/132251/first.jpg", "AURORA/data/something/frames/132251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cell from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107493", "images": ["AURORA/data/something/frames/2733/first.jpg", "AURORA/data/something/frames/2733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tape dispenser upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107494", "images": ["AURORA/data/something/frames/94214/first.jpg", "AURORA/data/something/frames/94214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tray with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107495", "images": ["AURORA/data/something/frames/186411/first.jpg", "AURORA/data/something/frames/186411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork into a tea cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107496", "images": ["AURORA/data/something/frames/47303/first.jpg", "AURORA/data/something/frames/47303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening food container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107497", "images": ["AURORA/data/something/frames/101560/first.jpg", "AURORA/data/something/frames/101560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with tweezers on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107498", "images": ["AURORA/data/something/frames/25515/first.jpg", "AURORA/data/something/frames/25515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107499", "images": ["AURORA/data/something/frames/115683/first.jpg", "AURORA/data/something/frames/115683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107500", "images": ["AURORA/data/something/frames/158690/first.jpg", "AURORA/data/something/frames/158690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107501", "images": ["AURORA/data/something/frames/54443/first.jpg", "AURORA/data/something/frames/54443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107502", "images": ["AURORA/data/something/frames/100236/first.jpg", "AURORA/data/something/frames/100236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cable from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107503", "images": ["AURORA/data/something/frames/183623/first.jpg", "AURORA/data/something/frames/183623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000107504", "images": ["AURORA/data/something/frames/167482/first.jpg", "AURORA/data/something/frames/167482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107505", "images": ["AURORA/data/something/frames/24285/first.jpg", "AURORA/data/something/frames/24285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107506", "images": ["AURORA/data/something/frames/81790/first.jpg", "AURORA/data/something/frames/81790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107507", "images": ["AURORA/data/something/frames/152597/first.jpg", "AURORA/data/something/frames/152597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a shor with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107508", "images": ["AURORA/data/something/frames/49163/first.jpg", "AURORA/data/something/frames/49163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107509", "images": ["AURORA/data/something/frames/211484/first.jpg", "AURORA/data/something/frames/211484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107510", "images": ["AURORA/data/something/frames/188567/first.jpg", "AURORA/data/something/frames/188567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil behind a dumbbell"}, {"from": "gpt", "value": ""}]} +{"id": "000000107511", "images": ["AURORA/data/something/frames/54563/first.jpg", "AURORA/data/something/frames/54563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box next to trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000107512", "images": ["AURORA/data/something/frames/64597/first.jpg", "AURORA/data/something/frames/64597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping boot onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107513", "images": ["AURORA/data/something/frames/69778/first.jpg", "AURORA/data/something/frames/69778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107514", "images": ["AURORA/data/something/frames/176907/first.jpg", "AURORA/data/something/frames/176907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107515", "images": ["AURORA/data/something/frames/101895/first.jpg", "AURORA/data/something/frames/101895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a qtip onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107516", "images": ["AURORA/data/something/frames/52930/first.jpg", "AURORA/data/something/frames/52930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and a dvd closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107517", "images": ["AURORA/data/something/frames/155605/first.jpg", "AURORA/data/something/frames/155605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wristwatch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107518", "images": ["AURORA/data/something/frames/70316/first.jpg", "AURORA/data/something/frames/70316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107519", "images": ["AURORA/data/something/frames/122272/first.jpg", "AURORA/data/something/frames/122272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing spectacle box into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107520", "images": ["AURORA/data/something/frames/74370/first.jpg", "AURORA/data/something/frames/74370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107521", "images": ["AURORA/data/something/frames/164385/first.jpg", "AURORA/data/something/frames/164385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pink cologne on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107522", "images": ["AURORA/data/something/frames/195175/first.jpg", "AURORA/data/something/frames/195175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107523", "images": ["AURORA/data/something/frames/85889/first.jpg", "AURORA/data/something/frames/85889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing towel from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107524", "images": ["AURORA/data/something/frames/71965/first.jpg", "AURORA/data/something/frames/71965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing keys so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107525", "images": ["AURORA/data/something/frames/64951/first.jpg", "AURORA/data/something/frames/64951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107526", "images": ["AURORA/data/something/frames/8858/first.jpg", "AURORA/data/something/frames/8858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lid onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107527", "images": ["AURORA/data/something/frames/112949/first.jpg", "AURORA/data/something/frames/112949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107528", "images": ["AURORA/data/something/frames/24023/first.jpg", "AURORA/data/something/frames/24023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107529", "images": ["AURORA/data/something/frames/44803/first.jpg", "AURORA/data/something/frames/44803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107530", "images": ["AURORA/data/something/frames/198976/first.jpg", "AURORA/data/something/frames/198976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107531", "images": ["AURORA/data/something/frames/13820/first.jpg", "AURORA/data/something/frames/13820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tape away from sun glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107532", "images": ["AURORA/data/something/frames/211245/first.jpg", "AURORA/data/something/frames/211245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling phone from behind of camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107533", "images": ["AURORA/data/something/frames/201569/first.jpg", "AURORA/data/something/frames/201569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paint tube from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107534", "images": ["AURORA/data/something/frames/215016/first.jpg", "AURORA/data/something/frames/215016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107535", "images": ["AURORA/data/something/frames/128682/first.jpg", "AURORA/data/something/frames/128682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a chalk into a chalk box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107536", "images": ["AURORA/data/something/frames/112777/first.jpg", "AURORA/data/something/frames/112777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plag into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107537", "images": ["AURORA/data/something/frames/100595/first.jpg", "AURORA/data/something/frames/100595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping hand soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107538", "images": ["AURORA/data/something/frames/91913/first.jpg", "AURORA/data/something/frames/91913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107539", "images": ["AURORA/data/something/frames/130127/first.jpg", "AURORA/data/something/frames/130127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000107540", "images": ["AURORA/data/something/frames/218929/first.jpg", "AURORA/data/something/frames/218929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a snake ladder board so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107541", "images": ["AURORA/data/something/frames/21691/first.jpg", "AURORA/data/something/frames/21691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving milk closer to knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000107542", "images": ["AURORA/data/something/frames/60025/first.jpg", "AURORA/data/something/frames/60025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking newspaper from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107543", "images": ["AURORA/data/something/frames/112745/first.jpg", "AURORA/data/something/frames/112745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to plastic glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107544", "images": ["AURORA/data/something/frames/8503/first.jpg", "AURORA/data/something/frames/8503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 bag of rice onto a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107545", "images": ["AURORA/data/something/frames/6863/first.jpg", "AURORA/data/something/frames/6863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crumbs off of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107546", "images": ["AURORA/data/something/frames/116785/first.jpg", "AURORA/data/something/frames/116785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing orange paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107547", "images": ["AURORA/data/something/frames/33564/first.jpg", "AURORA/data/something/frames/33564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107548", "images": ["AURORA/data/something/frames/172634/first.jpg", "AURORA/data/something/frames/172634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107549", "images": ["AURORA/data/something/frames/199855/first.jpg", "AURORA/data/something/frames/199855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a piece of paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107550", "images": ["AURORA/data/something/frames/150892/first.jpg", "AURORA/data/something/frames/150892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107551", "images": ["AURORA/data/something/frames/49463/first.jpg", "AURORA/data/something/frames/49463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107552", "images": ["AURORA/data/something/frames/123288/first.jpg", "AURORA/data/something/frames/123288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pot with stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000107553", "images": ["AURORA/data/something/frames/202867/first.jpg", "AURORA/data/something/frames/202867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107554", "images": ["AURORA/data/something/frames/186768/first.jpg", "AURORA/data/something/frames/186768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden reeper until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107555", "images": ["AURORA/data/something/frames/94925/first.jpg", "AURORA/data/something/frames/94925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107556", "images": ["AURORA/data/something/frames/147099/first.jpg", "AURORA/data/something/frames/147099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107557", "images": ["AURORA/data/something/frames/77707/first.jpg", "AURORA/data/something/frames/77707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black hair tie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107558", "images": ["AURORA/data/something/frames/211101/first.jpg", "AURORA/data/something/frames/211101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mail"}, {"from": "gpt", "value": ""}]} +{"id": "000000107559", "images": ["AURORA/data/something/frames/169919/first.jpg", "AURORA/data/something/frames/169919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107560", "images": ["AURORA/data/something/frames/134050/first.jpg", "AURORA/data/something/frames/134050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking one cup onto a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000107561", "images": ["AURORA/data/something/frames/75323/first.jpg", "AURORA/data/something/frames/75323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding underwear"}, {"from": "gpt", "value": ""}]} +{"id": "000000107562", "images": ["AURORA/data/something/frames/38411/first.jpg", "AURORA/data/something/frames/38411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107563", "images": ["AURORA/data/something/frames/121585/first.jpg", "AURORA/data/something/frames/121585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a musical tabala onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107564", "images": ["AURORA/data/something/frames/129496/first.jpg", "AURORA/data/something/frames/129496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending carrot until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107565", "images": ["AURORA/data/something/frames/207166/first.jpg", "AURORA/data/something/frames/207166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107566", "images": ["AURORA/data/something/frames/192226/first.jpg", "AURORA/data/something/frames/192226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book underneath mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000107567", "images": ["AURORA/data/something/frames/82929/first.jpg", "AURORA/data/something/frames/82929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour soda into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107568", "images": ["AURORA/data/something/frames/37072/first.jpg", "AURORA/data/something/frames/37072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107569", "images": ["AURORA/data/something/frames/90253/first.jpg", "AURORA/data/something/frames/90253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107570", "images": ["AURORA/data/something/frames/138521/first.jpg", "AURORA/data/something/frames/138521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107571", "images": ["AURORA/data/something/frames/162338/first.jpg", "AURORA/data/something/frames/162338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing torch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107572", "images": ["AURORA/data/something/frames/67862/first.jpg", "AURORA/data/something/frames/67862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107573", "images": ["AURORA/data/something/frames/134947/first.jpg", "AURORA/data/something/frames/134947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming brown bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107574", "images": ["AURORA/data/something/frames/80228/first.jpg", "AURORA/data/something/frames/80228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pepper shaker over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107575", "images": ["AURORA/data/something/frames/124674/first.jpg", "AURORA/data/something/frames/124674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107576", "images": ["AURORA/data/something/frames/135976/first.jpg", "AURORA/data/something/frames/135976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ipad with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107577", "images": ["AURORA/data/something/frames/94872/first.jpg", "AURORA/data/something/frames/94872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tape in front of a coil of wires"}, {"from": "gpt", "value": ""}]} +{"id": "000000107578", "images": ["AURORA/data/something/frames/120936/first.jpg", "AURORA/data/something/frames/120936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and can away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107579", "images": ["AURORA/data/something/frames/121613/first.jpg", "AURORA/data/something/frames/121613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107580", "images": ["AURORA/data/something/frames/157241/first.jpg", "AURORA/data/something/frames/157241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107581", "images": ["AURORA/data/something/frames/108274/first.jpg", "AURORA/data/something/frames/108274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000107582", "images": ["AURORA/data/something/frames/215063/first.jpg", "AURORA/data/something/frames/215063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107583", "images": ["AURORA/data/something/frames/217781/first.jpg", "AURORA/data/something/frames/217781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper clips box into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107584", "images": ["AURORA/data/something/frames/191007/first.jpg", "AURORA/data/something/frames/191007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107585", "images": ["AURORA/data/something/frames/12888/first.jpg", "AURORA/data/something/frames/12888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107586", "images": ["AURORA/data/something/frames/154401/first.jpg", "AURORA/data/something/frames/154401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107587", "images": ["AURORA/data/something/frames/188573/first.jpg", "AURORA/data/something/frames/188573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107588", "images": ["AURORA/data/something/frames/4917/first.jpg", "AURORA/data/something/frames/4917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle out of refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107589", "images": ["AURORA/data/something/frames/157382/first.jpg", "AURORA/data/something/frames/157382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering plush doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000107590", "images": ["AURORA/data/something/frames/217900/first.jpg", "AURORA/data/something/frames/217900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107591", "images": ["AURORA/data/something/frames/167177/first.jpg", "AURORA/data/something/frames/167177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming violin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107592", "images": ["AURORA/data/something/frames/39397/first.jpg", "AURORA/data/something/frames/39397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cigarette lighter in front of black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107593", "images": ["AURORA/data/something/frames/18570/first.jpg", "AURORA/data/something/frames/18570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cleaner off of window"}, {"from": "gpt", "value": ""}]} +{"id": "000000107594", "images": ["AURORA/data/something/frames/112472/first.jpg", "AURORA/data/something/frames/112472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a compact disk up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107595", "images": ["AURORA/data/something/frames/32957/first.jpg", "AURORA/data/something/frames/32957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107596", "images": ["AURORA/data/something/frames/137786/first.jpg", "AURORA/data/something/frames/137786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107597", "images": ["AURORA/data/something/frames/8851/first.jpg", "AURORA/data/something/frames/8851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 sponges"}, {"from": "gpt", "value": ""}]} +{"id": "000000107598", "images": ["AURORA/data/something/frames/83163/first.jpg", "AURORA/data/something/frames/83163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glasses across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107599", "images": ["AURORA/data/something/frames/134233/first.jpg", "AURORA/data/something/frames/134233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107600", "images": ["AURORA/data/something/frames/32152/first.jpg", "AURORA/data/something/frames/32152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107601", "images": ["AURORA/data/something/frames/220758/first.jpg", "AURORA/data/something/frames/220758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mayo jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107602", "images": ["AURORA/data/something/frames/216825/first.jpg", "AURORA/data/something/frames/216825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107603", "images": ["AURORA/data/something/frames/203974/first.jpg", "AURORA/data/something/frames/203974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107604", "images": ["AURORA/data/something/frames/108285/first.jpg", "AURORA/data/something/frames/108285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107605", "images": ["AURORA/data/something/frames/31431/first.jpg", "AURORA/data/something/frames/31431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug in front of the stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000107606", "images": ["AURORA/data/something/frames/188843/first.jpg", "AURORA/data/something/frames/188843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107607", "images": ["AURORA/data/something/frames/51076/first.jpg", "AURORA/data/something/frames/51076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with kitchen scissors on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107608", "images": ["AURORA/data/something/frames/189818/first.jpg", "AURORA/data/something/frames/189818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107609", "images": ["AURORA/data/something/frames/135111/first.jpg", "AURORA/data/something/frames/135111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading sauce onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107610", "images": ["AURORA/data/something/frames/149224/first.jpg", "AURORA/data/something/frames/149224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle behind frame"}, {"from": "gpt", "value": ""}]} +{"id": "000000107611", "images": ["AURORA/data/something/frames/49283/first.jpg", "AURORA/data/something/frames/49283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107612", "images": ["AURORA/data/something/frames/160267/first.jpg", "AURORA/data/something/frames/160267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107613", "images": ["AURORA/data/something/frames/156782/first.jpg", "AURORA/data/something/frames/156782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107614", "images": ["AURORA/data/something/frames/55101/first.jpg", "AURORA/data/something/frames/55101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107615", "images": ["AURORA/data/something/frames/38820/first.jpg", "AURORA/data/something/frames/38820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107616", "images": ["AURORA/data/something/frames/204491/first.jpg", "AURORA/data/something/frames/204491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107617", "images": ["AURORA/data/something/frames/195002/first.jpg", "AURORA/data/something/frames/195002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping eraser over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107618", "images": ["AURORA/data/something/frames/121547/first.jpg", "AURORA/data/something/frames/121547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107619", "images": ["AURORA/data/something/frames/168721/first.jpg", "AURORA/data/something/frames/168721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup into a paper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107620", "images": ["AURORA/data/something/frames/40949/first.jpg", "AURORA/data/something/frames/40949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107621", "images": ["AURORA/data/something/frames/218509/first.jpg", "AURORA/data/something/frames/218509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107622", "images": ["AURORA/data/something/frames/85919/first.jpg", "AURORA/data/something/frames/85919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tyre of a bicycle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107623", "images": ["AURORA/data/something/frames/74013/first.jpg", "AURORA/data/something/frames/74013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000107624", "images": ["AURORA/data/something/frames/170548/first.jpg", "AURORA/data/something/frames/170548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107625", "images": ["AURORA/data/something/frames/169543/first.jpg", "AURORA/data/something/frames/169543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107626", "images": ["AURORA/data/something/frames/189993/first.jpg", "AURORA/data/something/frames/189993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter into a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107627", "images": ["AURORA/data/something/frames/58250/first.jpg", "AURORA/data/something/frames/58250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a mug on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107628", "images": ["AURORA/data/something/frames/145003/first.jpg", "AURORA/data/something/frames/145003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into sugar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107629", "images": ["AURORA/data/something/frames/192749/first.jpg", "AURORA/data/something/frames/192749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blowes"}, {"from": "gpt", "value": ""}]} +{"id": "000000107630", "images": ["AURORA/data/something/frames/10338/first.jpg", "AURORA/data/something/frames/10338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering twizzer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107631", "images": ["AURORA/data/something/frames/77834/first.jpg", "AURORA/data/something/frames/77834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a lighter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107632", "images": ["AURORA/data/something/frames/28479/first.jpg", "AURORA/data/something/frames/28479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mouse with a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107633", "images": ["AURORA/data/something/frames/176955/first.jpg", "AURORA/data/something/frames/176955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tea light candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107634", "images": ["AURORA/data/something/frames/215686/first.jpg", "AURORA/data/something/frames/215686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 ink bottles onto calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107635", "images": ["AURORA/data/something/frames/189438/first.jpg", "AURORA/data/something/frames/189438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming scent bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107636", "images": ["AURORA/data/something/frames/97139/first.jpg", "AURORA/data/something/frames/97139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a coin to a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107637", "images": ["AURORA/data/something/frames/188622/first.jpg", "AURORA/data/something/frames/188622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tissue box being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107638", "images": ["AURORA/data/something/frames/97822/first.jpg", "AURORA/data/something/frames/97822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a painting with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107639", "images": ["AURORA/data/something/frames/109085/first.jpg", "AURORA/data/something/frames/109085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a perfume next to lotion bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107640", "images": ["AURORA/data/something/frames/138243/first.jpg", "AURORA/data/something/frames/138243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving arm of stuffed bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000107641", "images": ["AURORA/data/something/frames/29941/first.jpg", "AURORA/data/something/frames/29941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tv remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107642", "images": ["AURORA/data/something/frames/171121/first.jpg", "AURORA/data/something/frames/171121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107643", "images": ["AURORA/data/something/frames/178377/first.jpg", "AURORA/data/something/frames/178377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107644", "images": ["AURORA/data/something/frames/100336/first.jpg", "AURORA/data/something/frames/100336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming orange notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000107645", "images": ["AURORA/data/something/frames/168150/first.jpg", "AURORA/data/something/frames/168150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing box into cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000107646", "images": ["AURORA/data/something/frames/139013/first.jpg", "AURORA/data/something/frames/139013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chalk into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107647", "images": ["AURORA/data/something/frames/131442/first.jpg", "AURORA/data/something/frames/131442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107648", "images": ["AURORA/data/something/frames/5249/first.jpg", "AURORA/data/something/frames/5249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107649", "images": ["AURORA/data/something/frames/146221/first.jpg", "AURORA/data/something/frames/146221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie into cupholder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107650", "images": ["AURORA/data/something/frames/1027/first.jpg", "AURORA/data/something/frames/1027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil into pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000107651", "images": ["AURORA/data/something/frames/15130/first.jpg", "AURORA/data/something/frames/15130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107652", "images": ["AURORA/data/something/frames/199966/first.jpg", "AURORA/data/something/frames/199966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting blouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000107653", "images": ["AURORA/data/something/frames/125581/first.jpg", "AURORA/data/something/frames/125581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink blush on from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107654", "images": ["AURORA/data/something/frames/168726/first.jpg", "AURORA/data/something/frames/168726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000107655", "images": ["AURORA/data/something/frames/84000/first.jpg", "AURORA/data/something/frames/84000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting match box with ointment tube on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107656", "images": ["AURORA/data/something/frames/205352/first.jpg", "AURORA/data/something/frames/205352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107657", "images": ["AURORA/data/something/frames/99398/first.jpg", "AURORA/data/something/frames/99398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sharpener from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107658", "images": ["AURORA/data/something/frames/90233/first.jpg", "AURORA/data/something/frames/90233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107659", "images": ["AURORA/data/something/frames/137165/first.jpg", "AURORA/data/something/frames/137165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107660", "images": ["AURORA/data/something/frames/194379/first.jpg", "AURORA/data/something/frames/194379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pepper grinder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107661", "images": ["AURORA/data/something/frames/186192/first.jpg", "AURORA/data/something/frames/186192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting drum with sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107662", "images": ["AURORA/data/something/frames/118939/first.jpg", "AURORA/data/something/frames/118939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping starburst up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107663", "images": ["AURORA/data/something/frames/104653/first.jpg", "AURORA/data/something/frames/104653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a hammer without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107664", "images": ["AURORA/data/something/frames/193607/first.jpg", "AURORA/data/something/frames/193607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin away from whiteboard marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107665", "images": ["AURORA/data/something/frames/143000/first.jpg", "AURORA/data/something/frames/143000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pair of sunglasses away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107666", "images": ["AURORA/data/something/frames/125443/first.jpg", "AURORA/data/something/frames/125443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 pill bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000107667", "images": ["AURORA/data/something/frames/113955/first.jpg", "AURORA/data/something/frames/113955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107668", "images": ["AURORA/data/something/frames/97768/first.jpg", "AURORA/data/something/frames/97768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can in front of keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000107669", "images": ["AURORA/data/something/frames/12211/first.jpg", "AURORA/data/something/frames/12211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000107670", "images": ["AURORA/data/something/frames/180612/first.jpg", "AURORA/data/something/frames/180612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a toy up with my hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107671", "images": ["AURORA/data/something/frames/95246/first.jpg", "AURORA/data/something/frames/95246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paperclip back"}, {"from": "gpt", "value": ""}]} +{"id": "000000107672", "images": ["AURORA/data/something/frames/167367/first.jpg", "AURORA/data/something/frames/167367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 wooden sticks onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107673", "images": ["AURORA/data/something/frames/68544/first.jpg", "AURORA/data/something/frames/68544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting gear wheel next to tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107674", "images": ["AURORA/data/something/frames/171359/first.jpg", "AURORA/data/something/frames/171359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107675", "images": ["AURORA/data/something/frames/108440/first.jpg", "AURORA/data/something/frames/108440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping glue in front of paper holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107676", "images": ["AURORA/data/something/frames/189513/first.jpg", "AURORA/data/something/frames/189513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy skull out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107677", "images": ["AURORA/data/something/frames/192278/first.jpg", "AURORA/data/something/frames/192278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging jack into speaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107678", "images": ["AURORA/data/something/frames/120747/first.jpg", "AURORA/data/something/frames/120747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone and computer mouse on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107679", "images": ["AURORA/data/something/frames/208064/first.jpg", "AURORA/data/something/frames/208064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pot holder upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107680", "images": ["AURORA/data/something/frames/121848/first.jpg", "AURORA/data/something/frames/121848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107681", "images": ["AURORA/data/something/frames/17700/first.jpg", "AURORA/data/something/frames/17700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass in front of the adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107682", "images": ["AURORA/data/something/frames/36063/first.jpg", "AURORA/data/something/frames/36063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107683", "images": ["AURORA/data/something/frames/143952/first.jpg", "AURORA/data/something/frames/143952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000107684", "images": ["AURORA/data/something/frames/82875/first.jpg", "AURORA/data/something/frames/82875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling sponge, converter, nail clipper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107685", "images": ["AURORA/data/something/frames/5469/first.jpg", "AURORA/data/something/frames/5469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping chocolate off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107686", "images": ["AURORA/data/something/frames/120977/first.jpg", "AURORA/data/something/frames/120977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and holder closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107687", "images": ["AURORA/data/something/frames/73986/first.jpg", "AURORA/data/something/frames/73986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a salt shaker upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107688", "images": ["AURORA/data/something/frames/83612/first.jpg", "AURORA/data/something/frames/83612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar away from a big jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107689", "images": ["AURORA/data/something/frames/14538/first.jpg", "AURORA/data/something/frames/14538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107690", "images": ["AURORA/data/something/frames/37067/first.jpg", "AURORA/data/something/frames/37067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107691", "images": ["AURORA/data/something/frames/197696/first.jpg", "AURORA/data/something/frames/197696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sneaker colliding with sneaker and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000107692", "images": ["AURORA/data/something/frames/33574/first.jpg", "AURORA/data/something/frames/33574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107693", "images": ["AURORA/data/something/frames/110649/first.jpg", "AURORA/data/something/frames/110649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying tablet box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107694", "images": ["AURORA/data/something/frames/84770/first.jpg", "AURORA/data/something/frames/84770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying black colour marker pen cap on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107695", "images": ["AURORA/data/something/frames/53748/first.jpg", "AURORA/data/something/frames/53748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keyboard down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107696", "images": ["AURORA/data/something/frames/50290/first.jpg", "AURORA/data/something/frames/50290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107697", "images": ["AURORA/data/something/frames/47558/first.jpg", "AURORA/data/something/frames/47558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing receipt into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107698", "images": ["AURORA/data/something/frames/72218/first.jpg", "AURORA/data/something/frames/72218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107699", "images": ["AURORA/data/something/frames/28905/first.jpg", "AURORA/data/something/frames/28905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper towel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107700", "images": ["AURORA/data/something/frames/120974/first.jpg", "AURORA/data/something/frames/120974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote and the mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107701", "images": ["AURORA/data/something/frames/177582/first.jpg", "AURORA/data/something/frames/177582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107702", "images": ["AURORA/data/something/frames/171192/first.jpg", "AURORA/data/something/frames/171192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107703", "images": ["AURORA/data/something/frames/172144/first.jpg", "AURORA/data/something/frames/172144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch, glass and doll on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107704", "images": ["AURORA/data/something/frames/193055/first.jpg", "AURORA/data/something/frames/193055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green colour toy car up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107705", "images": ["AURORA/data/something/frames/141828/first.jpg", "AURORA/data/something/frames/141828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting medicine on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107706", "images": ["AURORA/data/something/frames/180327/first.jpg", "AURORA/data/something/frames/180327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107707", "images": ["AURORA/data/something/frames/263/first.jpg", "AURORA/data/something/frames/263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping mark off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107708", "images": ["AURORA/data/something/frames/73406/first.jpg", "AURORA/data/something/frames/73406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107709", "images": ["AURORA/data/something/frames/189874/first.jpg", "AURORA/data/something/frames/189874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a can on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107710", "images": ["AURORA/data/something/frames/110162/first.jpg", "AURORA/data/something/frames/110162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stacking block upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107711", "images": ["AURORA/data/something/frames/12636/first.jpg", "AURORA/data/something/frames/12636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a building block into another building block but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107712", "images": ["AURORA/data/something/frames/181528/first.jpg", "AURORA/data/something/frames/181528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a booklet without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107713", "images": ["AURORA/data/something/frames/3016/first.jpg", "AURORA/data/something/frames/3016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pink water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107714", "images": ["AURORA/data/something/frames/185264/first.jpg", "AURORA/data/something/frames/185264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an empty water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107715", "images": ["AURORA/data/something/frames/179073/first.jpg", "AURORA/data/something/frames/179073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107716", "images": ["AURORA/data/something/frames/203213/first.jpg", "AURORA/data/something/frames/203213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107717", "images": ["AURORA/data/something/frames/212014/first.jpg", "AURORA/data/something/frames/212014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping news paper into ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000107718", "images": ["AURORA/data/something/frames/198138/first.jpg", "AURORA/data/something/frames/198138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107719", "images": ["AURORA/data/something/frames/162876/first.jpg", "AURORA/data/something/frames/162876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paint brush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107720", "images": ["AURORA/data/something/frames/125729/first.jpg", "AURORA/data/something/frames/125729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blue colour pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107721", "images": ["AURORA/data/something/frames/120135/first.jpg", "AURORA/data/something/frames/120135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107722", "images": ["AURORA/data/something/frames/78670/first.jpg", "AURORA/data/something/frames/78670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107723", "images": ["AURORA/data/something/frames/175517/first.jpg", "AURORA/data/something/frames/175517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107724", "images": ["AURORA/data/something/frames/38824/first.jpg", "AURORA/data/something/frames/38824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coffee behind canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000107725", "images": ["AURORA/data/something/frames/149517/first.jpg", "AURORA/data/something/frames/149517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting push pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107726", "images": ["AURORA/data/something/frames/172232/first.jpg", "AURORA/data/something/frames/172232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving water bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107727", "images": ["AURORA/data/something/frames/94104/first.jpg", "AURORA/data/something/frames/94104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming instruction board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107728", "images": ["AURORA/data/something/frames/164079/first.jpg", "AURORA/data/something/frames/164079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a brush, an eraser and a glass of water on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107729", "images": ["AURORA/data/something/frames/200318/first.jpg", "AURORA/data/something/frames/200318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107730", "images": ["AURORA/data/something/frames/77429/first.jpg", "AURORA/data/something/frames/77429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pillow in front of dog"}, {"from": "gpt", "value": ""}]} +{"id": "000000107731", "images": ["AURORA/data/something/frames/76993/first.jpg", "AURORA/data/something/frames/76993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hose head up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107732", "images": ["AURORA/data/something/frames/141069/first.jpg", "AURORA/data/something/frames/141069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car bonnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107733", "images": ["AURORA/data/something/frames/20424/first.jpg", "AURORA/data/something/frames/20424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy tiger in front of toy elephant"}, {"from": "gpt", "value": ""}]} +{"id": "000000107734", "images": ["AURORA/data/something/frames/137695/first.jpg", "AURORA/data/something/frames/137695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107735", "images": ["AURORA/data/something/frames/47388/first.jpg", "AURORA/data/something/frames/47388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothbrush over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107736", "images": ["AURORA/data/something/frames/103205/first.jpg", "AURORA/data/something/frames/103205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy idol from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107737", "images": ["AURORA/data/something/frames/8041/first.jpg", "AURORA/data/something/frames/8041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving branch across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107738", "images": ["AURORA/data/something/frames/140864/first.jpg", "AURORA/data/something/frames/140864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler next to digital stamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000107739", "images": ["AURORA/data/something/frames/18962/first.jpg", "AURORA/data/something/frames/18962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone behind pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000107740", "images": ["AURORA/data/something/frames/29666/first.jpg", "AURORA/data/something/frames/29666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking button"}, {"from": "gpt", "value": ""}]} +{"id": "000000107741", "images": ["AURORA/data/something/frames/40294/first.jpg", "AURORA/data/something/frames/40294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen out of bunch of pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000107742", "images": ["AURORA/data/something/frames/146736/first.jpg", "AURORA/data/something/frames/146736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107743", "images": ["AURORA/data/something/frames/14234/first.jpg", "AURORA/data/something/frames/14234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107744", "images": ["AURORA/data/something/frames/631/first.jpg", "AURORA/data/something/frames/631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107745", "images": ["AURORA/data/something/frames/125034/first.jpg", "AURORA/data/something/frames/125034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting small freshmints on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107746", "images": ["AURORA/data/something/frames/67138/first.jpg", "AURORA/data/something/frames/67138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping t.v tray over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107747", "images": ["AURORA/data/something/frames/28512/first.jpg", "AURORA/data/something/frames/28512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dental gel upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107748", "images": ["AURORA/data/something/frames/187241/first.jpg", "AURORA/data/something/frames/187241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing book, revealing book behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107749", "images": ["AURORA/data/something/frames/27320/first.jpg", "AURORA/data/something/frames/27320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug onto a mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000107750", "images": ["AURORA/data/something/frames/155143/first.jpg", "AURORA/data/something/frames/155143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cap with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107751", "images": ["AURORA/data/something/frames/53769/first.jpg", "AURORA/data/something/frames/53769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from something with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107752", "images": ["AURORA/data/something/frames/215853/first.jpg", "AURORA/data/something/frames/215853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering soda cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107753", "images": ["AURORA/data/something/frames/171309/first.jpg", "AURORA/data/something/frames/171309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping wooden doll over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107754", "images": ["AURORA/data/something/frames/169835/first.jpg", "AURORA/data/something/frames/169835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107755", "images": ["AURORA/data/something/frames/144500/first.jpg", "AURORA/data/something/frames/144500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 5 xbox games onto couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107756", "images": ["AURORA/data/something/frames/52401/first.jpg", "AURORA/data/something/frames/52401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding frock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107757", "images": ["AURORA/data/something/frames/79738/first.jpg", "AURORA/data/something/frames/79738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass behind teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107758", "images": ["AURORA/data/something/frames/78699/first.jpg", "AURORA/data/something/frames/78699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000107759", "images": ["AURORA/data/something/frames/169231/first.jpg", "AURORA/data/something/frames/169231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tinbox upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107760", "images": ["AURORA/data/something/frames/193451/first.jpg", "AURORA/data/something/frames/193451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bar soap up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107761", "images": ["AURORA/data/something/frames/184964/first.jpg", "AURORA/data/something/frames/184964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a broom on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107762", "images": ["AURORA/data/something/frames/103533/first.jpg", "AURORA/data/something/frames/103533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107763", "images": ["AURORA/data/something/frames/175214/first.jpg", "AURORA/data/something/frames/175214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with spanner"}, {"from": "gpt", "value": ""}]} +{"id": "000000107764", "images": ["AURORA/data/something/frames/54434/first.jpg", "AURORA/data/something/frames/54434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening ice cream freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107765", "images": ["AURORA/data/something/frames/134838/first.jpg", "AURORA/data/something/frames/134838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107766", "images": ["AURORA/data/something/frames/25910/first.jpg", "AURORA/data/something/frames/25910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107767", "images": ["AURORA/data/something/frames/44458/first.jpg", "AURORA/data/something/frames/44458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107768", "images": ["AURORA/data/something/frames/62270/first.jpg", "AURORA/data/something/frames/62270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and soap closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107769", "images": ["AURORA/data/something/frames/137207/first.jpg", "AURORA/data/something/frames/137207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107770", "images": ["AURORA/data/something/frames/194895/first.jpg", "AURORA/data/something/frames/194895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107771", "images": ["AURORA/data/something/frames/22463/first.jpg", "AURORA/data/something/frames/22463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107772", "images": ["AURORA/data/something/frames/3855/first.jpg", "AURORA/data/something/frames/3855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something being deflected from something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107773", "images": ["AURORA/data/something/frames/35306/first.jpg", "AURORA/data/something/frames/35306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key and padlock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107774", "images": ["AURORA/data/something/frames/208793/first.jpg", "AURORA/data/something/frames/208793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a stuffed animal out of a locker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107775", "images": ["AURORA/data/something/frames/111294/first.jpg", "AURORA/data/something/frames/111294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107776", "images": ["AURORA/data/something/frames/32444/first.jpg", "AURORA/data/something/frames/32444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper in half"}, {"from": "gpt", "value": ""}]} +{"id": "000000107777", "images": ["AURORA/data/something/frames/168467/first.jpg", "AURORA/data/something/frames/168467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto soil"}, {"from": "gpt", "value": ""}]} +{"id": "000000107778", "images": ["AURORA/data/something/frames/84702/first.jpg", "AURORA/data/something/frames/84702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming beer bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107779", "images": ["AURORA/data/something/frames/182461/first.jpg", "AURORA/data/something/frames/182461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a shoe colliding with filp flop and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107780", "images": ["AURORA/data/something/frames/45090/first.jpg", "AURORA/data/something/frames/45090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bird"}, {"from": "gpt", "value": ""}]} +{"id": "000000107781", "images": ["AURORA/data/something/frames/75372/first.jpg", "AURORA/data/something/frames/75372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bag with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107782", "images": ["AURORA/data/something/frames/47429/first.jpg", "AURORA/data/something/frames/47429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107783", "images": ["AURORA/data/something/frames/217360/first.jpg", "AURORA/data/something/frames/217360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering candies"}, {"from": "gpt", "value": ""}]} +{"id": "000000107784", "images": ["AURORA/data/something/frames/145308/first.jpg", "AURORA/data/something/frames/145308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107785", "images": ["AURORA/data/something/frames/205/first.jpg", "AURORA/data/something/frames/205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107786", "images": ["AURORA/data/something/frames/2882/first.jpg", "AURORA/data/something/frames/2882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoes underneath scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107787", "images": ["AURORA/data/something/frames/35693/first.jpg", "AURORA/data/something/frames/35693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107788", "images": ["AURORA/data/something/frames/154510/first.jpg", "AURORA/data/something/frames/154510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107789", "images": ["AURORA/data/something/frames/95587/first.jpg", "AURORA/data/something/frames/95587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping heart next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107790", "images": ["AURORA/data/something/frames/102446/first.jpg", "AURORA/data/something/frames/102446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a key into a door knob"}, {"from": "gpt", "value": ""}]} +{"id": "000000107791", "images": ["AURORA/data/something/frames/70336/first.jpg", "AURORA/data/something/frames/70336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pack of tissue upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107792", "images": ["AURORA/data/something/frames/15647/first.jpg", "AURORA/data/something/frames/15647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107793", "images": ["AURORA/data/something/frames/42534/first.jpg", "AURORA/data/something/frames/42534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107794", "images": ["AURORA/data/something/frames/26729/first.jpg", "AURORA/data/something/frames/26729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107795", "images": ["AURORA/data/something/frames/144166/first.jpg", "AURORA/data/something/frames/144166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming shoe rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000107796", "images": ["AURORA/data/something/frames/191965/first.jpg", "AURORA/data/something/frames/191965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a male plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107797", "images": ["AURORA/data/something/frames/7355/first.jpg", "AURORA/data/something/frames/7355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red dairy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107798", "images": ["AURORA/data/something/frames/218614/first.jpg", "AURORA/data/something/frames/218614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting canister with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107799", "images": ["AURORA/data/something/frames/99731/first.jpg", "AURORA/data/something/frames/99731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107800", "images": ["AURORA/data/something/frames/54669/first.jpg", "AURORA/data/something/frames/54669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107801", "images": ["AURORA/data/something/frames/67059/first.jpg", "AURORA/data/something/frames/67059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rock from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107802", "images": ["AURORA/data/something/frames/188393/first.jpg", "AURORA/data/something/frames/188393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdriver into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107803", "images": ["AURORA/data/something/frames/68542/first.jpg", "AURORA/data/something/frames/68542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cell phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107804", "images": ["AURORA/data/something/frames/159935/first.jpg", "AURORA/data/something/frames/159935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107805", "images": ["AURORA/data/something/frames/50512/first.jpg", "AURORA/data/something/frames/50512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping spilled water off of surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107806", "images": ["AURORA/data/something/frames/149170/first.jpg", "AURORA/data/something/frames/149170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a head"}, {"from": "gpt", "value": ""}]} +{"id": "000000107807", "images": ["AURORA/data/something/frames/59683/first.jpg", "AURORA/data/something/frames/59683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000107808", "images": ["AURORA/data/something/frames/17102/first.jpg", "AURORA/data/something/frames/17102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving markers closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107809", "images": ["AURORA/data/something/frames/93187/first.jpg", "AURORA/data/something/frames/93187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping chalk off of a mini chalkboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000107810", "images": ["AURORA/data/something/frames/157951/first.jpg", "AURORA/data/something/frames/157951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107811", "images": ["AURORA/data/something/frames/170930/first.jpg", "AURORA/data/something/frames/170930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107812", "images": ["AURORA/data/something/frames/73461/first.jpg", "AURORA/data/something/frames/73461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red spoon next to glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000107813", "images": ["AURORA/data/something/frames/157592/first.jpg", "AURORA/data/something/frames/157592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wallet into a boot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107814", "images": ["AURORA/data/something/frames/63784/first.jpg", "AURORA/data/something/frames/63784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying angel on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107815", "images": ["AURORA/data/something/frames/2831/first.jpg", "AURORA/data/something/frames/2831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tv remote next to pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107816", "images": ["AURORA/data/something/frames/179780/first.jpg", "AURORA/data/something/frames/179780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling oregano onto pasta salad"}, {"from": "gpt", "value": ""}]} +{"id": "000000107817", "images": ["AURORA/data/something/frames/158733/first.jpg", "AURORA/data/something/frames/158733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107818", "images": ["AURORA/data/something/frames/167310/first.jpg", "AURORA/data/something/frames/167310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle next to juicer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107819", "images": ["AURORA/data/something/frames/124639/first.jpg", "AURORA/data/something/frames/124639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening clamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000107820", "images": ["AURORA/data/something/frames/65174/first.jpg", "AURORA/data/something/frames/65174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shuttle cock into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107821", "images": ["AURORA/data/something/frames/207821/first.jpg", "AURORA/data/something/frames/207821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting belt onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107822", "images": ["AURORA/data/something/frames/63123/first.jpg", "AURORA/data/something/frames/63123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107823", "images": ["AURORA/data/something/frames/128313/first.jpg", "AURORA/data/something/frames/128313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle top behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107824", "images": ["AURORA/data/something/frames/200556/first.jpg", "AURORA/data/something/frames/200556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paintbrush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107825", "images": ["AURORA/data/something/frames/44580/first.jpg", "AURORA/data/something/frames/44580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a lid of tupper ware"}, {"from": "gpt", "value": ""}]} +{"id": "000000107826", "images": ["AURORA/data/something/frames/150213/first.jpg", "AURORA/data/something/frames/150213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening peanut butter jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107827", "images": ["AURORA/data/something/frames/153535/first.jpg", "AURORA/data/something/frames/153535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107828", "images": ["AURORA/data/something/frames/164486/first.jpg", "AURORA/data/something/frames/164486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107829", "images": ["AURORA/data/something/frames/150457/first.jpg", "AURORA/data/something/frames/150457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing white paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107830", "images": ["AURORA/data/something/frames/209309/first.jpg", "AURORA/data/something/frames/209309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107831", "images": ["AURORA/data/something/frames/95255/first.jpg", "AURORA/data/something/frames/95255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting chair with hairbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000107832", "images": ["AURORA/data/something/frames/37133/first.jpg", "AURORA/data/something/frames/37133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving part of match box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107833", "images": ["AURORA/data/something/frames/23995/first.jpg", "AURORA/data/something/frames/23995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107834", "images": ["AURORA/data/something/frames/71876/first.jpg", "AURORA/data/something/frames/71876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking flowers so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107835", "images": ["AURORA/data/something/frames/178006/first.jpg", "AURORA/data/something/frames/178006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107836", "images": ["AURORA/data/something/frames/135467/first.jpg", "AURORA/data/something/frames/135467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107837", "images": ["AURORA/data/something/frames/64706/first.jpg", "AURORA/data/something/frames/64706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bouncing reindeer toy, revealing a toy robot behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107838", "images": ["AURORA/data/something/frames/38349/first.jpg", "AURORA/data/something/frames/38349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawyer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107839", "images": ["AURORA/data/something/frames/122866/first.jpg", "AURORA/data/something/frames/122866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a knife next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000107840", "images": ["AURORA/data/something/frames/138191/first.jpg", "AURORA/data/something/frames/138191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling liptint from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107841", "images": ["AURORA/data/something/frames/9153/first.jpg", "AURORA/data/something/frames/9153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bike light from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107842", "images": ["AURORA/data/something/frames/103071/first.jpg", "AURORA/data/something/frames/103071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering fish"}, {"from": "gpt", "value": ""}]} +{"id": "000000107843", "images": ["AURORA/data/something/frames/41263/first.jpg", "AURORA/data/something/frames/41263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107844", "images": ["AURORA/data/something/frames/78020/first.jpg", "AURORA/data/something/frames/78020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery, pebble and toy idol on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107845", "images": ["AURORA/data/something/frames/213470/first.jpg", "AURORA/data/something/frames/213470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107846", "images": ["AURORA/data/something/frames/210496/first.jpg", "AURORA/data/something/frames/210496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mop into dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107847", "images": ["AURORA/data/something/frames/94678/first.jpg", "AURORA/data/something/frames/94678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107848", "images": ["AURORA/data/something/frames/61230/first.jpg", "AURORA/data/something/frames/61230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107849", "images": ["AURORA/data/something/frames/119356/first.jpg", "AURORA/data/something/frames/119356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a broom next to a trash shovel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107850", "images": ["AURORA/data/something/frames/121577/first.jpg", "AURORA/data/something/frames/121577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tape closer to sun glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107851", "images": ["AURORA/data/something/frames/25819/first.jpg", "AURORA/data/something/frames/25819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting chair with cushion on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107852", "images": ["AURORA/data/something/frames/1036/first.jpg", "AURORA/data/something/frames/1036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a donut out of a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107853", "images": ["AURORA/data/something/frames/23801/first.jpg", "AURORA/data/something/frames/23801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107854", "images": ["AURORA/data/something/frames/4121/first.jpg", "AURORA/data/something/frames/4121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107855", "images": ["AURORA/data/something/frames/26332/first.jpg", "AURORA/data/something/frames/26332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clip onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107856", "images": ["AURORA/data/something/frames/88299/first.jpg", "AURORA/data/something/frames/88299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a notebook upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107857", "images": ["AURORA/data/something/frames/119633/first.jpg", "AURORA/data/something/frames/119633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing makeup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107858", "images": ["AURORA/data/something/frames/180201/first.jpg", "AURORA/data/something/frames/180201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107859", "images": ["AURORA/data/something/frames/56585/first.jpg", "AURORA/data/something/frames/56585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding unfolding kerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107860", "images": ["AURORA/data/something/frames/150946/first.jpg", "AURORA/data/something/frames/150946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending meat stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107861", "images": ["AURORA/data/something/frames/23981/first.jpg", "AURORA/data/something/frames/23981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and can closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107862", "images": ["AURORA/data/something/frames/54046/first.jpg", "AURORA/data/something/frames/54046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107863", "images": ["AURORA/data/something/frames/159885/first.jpg", "AURORA/data/something/frames/159885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lotion container on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107864", "images": ["AURORA/data/something/frames/37269/first.jpg", "AURORA/data/something/frames/37269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple microfiber so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107865", "images": ["AURORA/data/something/frames/107976/first.jpg", "AURORA/data/something/frames/107976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107866", "images": ["AURORA/data/something/frames/125163/first.jpg", "AURORA/data/something/frames/125163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting straw upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107867", "images": ["AURORA/data/something/frames/218165/first.jpg", "AURORA/data/something/frames/218165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lime behind nectarine"}, {"from": "gpt", "value": ""}]} +{"id": "000000107868", "images": ["AURORA/data/something/frames/188778/first.jpg", "AURORA/data/something/frames/188778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107869", "images": ["AURORA/data/something/frames/83282/first.jpg", "AURORA/data/something/frames/83282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107870", "images": ["AURORA/data/something/frames/42536/first.jpg", "AURORA/data/something/frames/42536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a shoe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107871", "images": ["AURORA/data/something/frames/110820/first.jpg", "AURORA/data/something/frames/110820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup into a dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000107872", "images": ["AURORA/data/something/frames/128205/first.jpg", "AURORA/data/something/frames/128205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107873", "images": ["AURORA/data/something/frames/142505/first.jpg", "AURORA/data/something/frames/142505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting door glass with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107874", "images": ["AURORA/data/something/frames/110329/first.jpg", "AURORA/data/something/frames/110329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a plastic bottle into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107875", "images": ["AURORA/data/something/frames/216835/first.jpg", "AURORA/data/something/frames/216835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107876", "images": ["AURORA/data/something/frames/160220/first.jpg", "AURORA/data/something/frames/160220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107877", "images": ["AURORA/data/something/frames/148838/first.jpg", "AURORA/data/something/frames/148838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107878", "images": ["AURORA/data/something/frames/192355/first.jpg", "AURORA/data/something/frames/192355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bottled water, revealing nail cutter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107879", "images": ["AURORA/data/something/frames/125710/first.jpg", "AURORA/data/something/frames/125710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail polish from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107880", "images": ["AURORA/data/something/frames/197559/first.jpg", "AURORA/data/something/frames/197559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000107881", "images": ["AURORA/data/something/frames/149682/first.jpg", "AURORA/data/something/frames/149682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking diary from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107882", "images": ["AURORA/data/something/frames/116350/first.jpg", "AURORA/data/something/frames/116350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coconut shell from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107883", "images": ["AURORA/data/something/frames/43337/first.jpg", "AURORA/data/something/frames/43337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting compact po and bottle of water on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107884", "images": ["AURORA/data/something/frames/109704/first.jpg", "AURORA/data/something/frames/109704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107885", "images": ["AURORA/data/something/frames/214243/first.jpg", "AURORA/data/something/frames/214243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107886", "images": ["AURORA/data/something/frames/62250/first.jpg", "AURORA/data/something/frames/62250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107887", "images": ["AURORA/data/something/frames/42143/first.jpg", "AURORA/data/something/frames/42143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker from behind of automon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107888", "images": ["AURORA/data/something/frames/169671/first.jpg", "AURORA/data/something/frames/169671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107889", "images": ["AURORA/data/something/frames/211313/first.jpg", "AURORA/data/something/frames/211313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip magnet to refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107890", "images": ["AURORA/data/something/frames/41762/first.jpg", "AURORA/data/something/frames/41762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paint from similar items on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107891", "images": ["AURORA/data/something/frames/116306/first.jpg", "AURORA/data/something/frames/116306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling markets up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107892", "images": ["AURORA/data/something/frames/18288/first.jpg", "AURORA/data/something/frames/18288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tyre"}, {"from": "gpt", "value": ""}]} +{"id": "000000107893", "images": ["AURORA/data/something/frames/113411/first.jpg", "AURORA/data/something/frames/113411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107894", "images": ["AURORA/data/something/frames/90874/first.jpg", "AURORA/data/something/frames/90874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into notebook but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107895", "images": ["AURORA/data/something/frames/210488/first.jpg", "AURORA/data/something/frames/210488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing colorful advertisement paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107896", "images": ["AURORA/data/something/frames/153957/first.jpg", "AURORA/data/something/frames/153957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 plate onto stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107897", "images": ["AURORA/data/something/frames/44961/first.jpg", "AURORA/data/something/frames/44961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107898", "images": ["AURORA/data/something/frames/23626/first.jpg", "AURORA/data/something/frames/23626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a nonstick pan onto a portable stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000107899", "images": ["AURORA/data/something/frames/24384/first.jpg", "AURORA/data/something/frames/24384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107900", "images": ["AURORA/data/something/frames/72745/first.jpg", "AURORA/data/something/frames/72745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering blue spoon with white handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107901", "images": ["AURORA/data/something/frames/181837/first.jpg", "AURORA/data/something/frames/181837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scrap paper closer to scrap paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107902", "images": ["AURORA/data/something/frames/207899/first.jpg", "AURORA/data/something/frames/207899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing fluorescent lightbulb behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107903", "images": ["AURORA/data/something/frames/32641/first.jpg", "AURORA/data/something/frames/32641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a headphones with a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000107904", "images": ["AURORA/data/something/frames/175872/first.jpg", "AURORA/data/something/frames/175872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on the edge of box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107905", "images": ["AURORA/data/something/frames/163210/first.jpg", "AURORA/data/something/frames/163210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107906", "images": ["AURORA/data/something/frames/11020/first.jpg", "AURORA/data/something/frames/11020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107907", "images": ["AURORA/data/something/frames/57017/first.jpg", "AURORA/data/something/frames/57017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107908", "images": ["AURORA/data/something/frames/14426/first.jpg", "AURORA/data/something/frames/14426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107909", "images": ["AURORA/data/something/frames/201793/first.jpg", "AURORA/data/something/frames/201793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000107910", "images": ["AURORA/data/something/frames/90818/first.jpg", "AURORA/data/something/frames/90818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107911", "images": ["AURORA/data/something/frames/88774/first.jpg", "AURORA/data/something/frames/88774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying mug on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107912", "images": ["AURORA/data/something/frames/36523/first.jpg", "AURORA/data/something/frames/36523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107913", "images": ["AURORA/data/something/frames/214556/first.jpg", "AURORA/data/something/frames/214556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107914", "images": ["AURORA/data/something/frames/182148/first.jpg", "AURORA/data/something/frames/182148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking nail polish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107915", "images": ["AURORA/data/something/frames/94819/first.jpg", "AURORA/data/something/frames/94819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107916", "images": ["AURORA/data/something/frames/123886/first.jpg", "AURORA/data/something/frames/123886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000107917", "images": ["AURORA/data/something/frames/5315/first.jpg", "AURORA/data/something/frames/5315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107918", "images": ["AURORA/data/something/frames/50649/first.jpg", "AURORA/data/something/frames/50649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107919", "images": ["AURORA/data/something/frames/173269/first.jpg", "AURORA/data/something/frames/173269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107920", "images": ["AURORA/data/something/frames/79120/first.jpg", "AURORA/data/something/frames/79120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107921", "images": ["AURORA/data/something/frames/99449/first.jpg", "AURORA/data/something/frames/99449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing green coloured toy car into black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107922", "images": ["AURORA/data/something/frames/20675/first.jpg", "AURORA/data/something/frames/20675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a basket handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107923", "images": ["AURORA/data/something/frames/145487/first.jpg", "AURORA/data/something/frames/145487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purple balloon pump down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107924", "images": ["AURORA/data/something/frames/213083/first.jpg", "AURORA/data/something/frames/213083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000107925", "images": ["AURORA/data/something/frames/201968/first.jpg", "AURORA/data/something/frames/201968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107926", "images": ["AURORA/data/something/frames/18455/first.jpg", "AURORA/data/something/frames/18455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 laptop charger onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000107927", "images": ["AURORA/data/something/frames/80510/first.jpg", "AURORA/data/something/frames/80510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107928", "images": ["AURORA/data/something/frames/1153/first.jpg", "AURORA/data/something/frames/1153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107929", "images": ["AURORA/data/something/frames/12327/first.jpg", "AURORA/data/something/frames/12327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb similar to other combs that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107930", "images": ["AURORA/data/something/frames/28747/first.jpg", "AURORA/data/something/frames/28747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107931", "images": ["AURORA/data/something/frames/29152/first.jpg", "AURORA/data/something/frames/29152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107932", "images": ["AURORA/data/something/frames/35407/first.jpg", "AURORA/data/something/frames/35407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107933", "images": ["AURORA/data/something/frames/139004/first.jpg", "AURORA/data/something/frames/139004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking duster up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107934", "images": ["AURORA/data/something/frames/208933/first.jpg", "AURORA/data/something/frames/208933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107935", "images": ["AURORA/data/something/frames/96476/first.jpg", "AURORA/data/something/frames/96476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with highlighter on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107936", "images": ["AURORA/data/something/frames/218059/first.jpg", "AURORA/data/something/frames/218059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107937", "images": ["AURORA/data/something/frames/209512/first.jpg", "AURORA/data/something/frames/209512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking coffee cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107938", "images": ["AURORA/data/something/frames/16836/first.jpg", "AURORA/data/something/frames/16836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107939", "images": ["AURORA/data/something/frames/189231/first.jpg", "AURORA/data/something/frames/189231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vase on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107940", "images": ["AURORA/data/something/frames/95551/first.jpg", "AURORA/data/something/frames/95551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107941", "images": ["AURORA/data/something/frames/220548/first.jpg", "AURORA/data/something/frames/220548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107942", "images": ["AURORA/data/something/frames/126554/first.jpg", "AURORA/data/something/frames/126554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107943", "images": ["AURORA/data/something/frames/9501/first.jpg", "AURORA/data/something/frames/9501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107944", "images": ["AURORA/data/something/frames/93470/first.jpg", "AURORA/data/something/frames/93470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107945", "images": ["AURORA/data/something/frames/141483/first.jpg", "AURORA/data/something/frames/141483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair tie into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107946", "images": ["AURORA/data/something/frames/167275/first.jpg", "AURORA/data/something/frames/167275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107947", "images": ["AURORA/data/something/frames/32553/first.jpg", "AURORA/data/something/frames/32553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000107948", "images": ["AURORA/data/something/frames/217282/first.jpg", "AURORA/data/something/frames/217282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000107949", "images": ["AURORA/data/something/frames/3246/first.jpg", "AURORA/data/something/frames/3246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107950", "images": ["AURORA/data/something/frames/78749/first.jpg", "AURORA/data/something/frames/78749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lime so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107951", "images": ["AURORA/data/something/frames/13925/first.jpg", "AURORA/data/something/frames/13925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a refill so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107952", "images": ["AURORA/data/something/frames/25518/first.jpg", "AURORA/data/something/frames/25518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tennis ball and a tennis ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107953", "images": ["AURORA/data/something/frames/9602/first.jpg", "AURORA/data/something/frames/9602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107954", "images": ["AURORA/data/something/frames/125171/first.jpg", "AURORA/data/something/frames/125171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107955", "images": ["AURORA/data/something/frames/164029/first.jpg", "AURORA/data/something/frames/164029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ice cream up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107956", "images": ["AURORA/data/something/frames/87608/first.jpg", "AURORA/data/something/frames/87608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lid next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107957", "images": ["AURORA/data/something/frames/69740/first.jpg", "AURORA/data/something/frames/69740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000107958", "images": ["AURORA/data/something/frames/146825/first.jpg", "AURORA/data/something/frames/146825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a lamp into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107959", "images": ["AURORA/data/something/frames/100955/first.jpg", "AURORA/data/something/frames/100955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107960", "images": ["AURORA/data/something/frames/160887/first.jpg", "AURORA/data/something/frames/160887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purse and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107961", "images": ["AURORA/data/something/frames/69151/first.jpg", "AURORA/data/something/frames/69151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107962", "images": ["AURORA/data/something/frames/171353/first.jpg", "AURORA/data/something/frames/171353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar of peanut butter in front of bottle aspirin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107963", "images": ["AURORA/data/something/frames/205299/first.jpg", "AURORA/data/something/frames/205299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a hat upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107964", "images": ["AURORA/data/something/frames/149892/first.jpg", "AURORA/data/something/frames/149892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling spoon from behind of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000107965", "images": ["AURORA/data/something/frames/152514/first.jpg", "AURORA/data/something/frames/152514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107966", "images": ["AURORA/data/something/frames/27828/first.jpg", "AURORA/data/something/frames/27828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000107967", "images": ["AURORA/data/something/frames/109950/first.jpg", "AURORA/data/something/frames/109950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something in front of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107968", "images": ["AURORA/data/something/frames/165280/first.jpg", "AURORA/data/something/frames/165280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107969", "images": ["AURORA/data/something/frames/38896/first.jpg", "AURORA/data/something/frames/38896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000107970", "images": ["AURORA/data/something/frames/125973/first.jpg", "AURORA/data/something/frames/125973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette tape into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107971", "images": ["AURORA/data/something/frames/15545/first.jpg", "AURORA/data/something/frames/15545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting sand bag up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107972", "images": ["AURORA/data/something/frames/79760/first.jpg", "AURORA/data/something/frames/79760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying puzzle piece in middle of couch seat cushions"}, {"from": "gpt", "value": ""}]} +{"id": "000000107973", "images": ["AURORA/data/something/frames/119182/first.jpg", "AURORA/data/something/frames/119182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cushion onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107974", "images": ["AURORA/data/something/frames/129064/first.jpg", "AURORA/data/something/frames/129064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hammer on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107975", "images": ["AURORA/data/something/frames/118240/first.jpg", "AURORA/data/something/frames/118240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sponge just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107976", "images": ["AURORA/data/something/frames/16514/first.jpg", "AURORA/data/something/frames/16514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy with a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000107977", "images": ["AURORA/data/something/frames/52261/first.jpg", "AURORA/data/something/frames/52261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cushion with clock on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107978", "images": ["AURORA/data/something/frames/96092/first.jpg", "AURORA/data/something/frames/96092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stapler from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107979", "images": ["AURORA/data/something/frames/122474/first.jpg", "AURORA/data/something/frames/122474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding frock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107980", "images": ["AURORA/data/something/frames/195430/first.jpg", "AURORA/data/something/frames/195430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of paper without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107981", "images": ["AURORA/data/something/frames/140866/first.jpg", "AURORA/data/something/frames/140866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling flashlight onto laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107982", "images": ["AURORA/data/something/frames/101419/first.jpg", "AURORA/data/something/frames/101419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107983", "images": ["AURORA/data/something/frames/80166/first.jpg", "AURORA/data/something/frames/80166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a mouse from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107984", "images": ["AURORA/data/something/frames/34430/first.jpg", "AURORA/data/something/frames/34430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pot so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107985", "images": ["AURORA/data/something/frames/170397/first.jpg", "AURORA/data/something/frames/170397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000107986", "images": ["AURORA/data/something/frames/21630/first.jpg", "AURORA/data/something/frames/21630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening window"}, {"from": "gpt", "value": ""}]} +{"id": "000000107987", "images": ["AURORA/data/something/frames/109892/first.jpg", "AURORA/data/something/frames/109892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle closer to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000107988", "images": ["AURORA/data/something/frames/203487/first.jpg", "AURORA/data/something/frames/203487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107989", "images": ["AURORA/data/something/frames/92780/first.jpg", "AURORA/data/something/frames/92780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107990", "images": ["AURORA/data/something/frames/158296/first.jpg", "AURORA/data/something/frames/158296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107991", "images": ["AURORA/data/something/frames/38752/first.jpg", "AURORA/data/something/frames/38752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox on the edge of laptop so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107992", "images": ["AURORA/data/something/frames/32780/first.jpg", "AURORA/data/something/frames/32780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107993", "images": ["AURORA/data/something/frames/210732/first.jpg", "AURORA/data/something/frames/210732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing blue fabric into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107994", "images": ["AURORA/data/something/frames/110608/first.jpg", "AURORA/data/something/frames/110608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107995", "images": ["AURORA/data/something/frames/194341/first.jpg", "AURORA/data/something/frames/194341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107996", "images": ["AURORA/data/something/frames/154080/first.jpg", "AURORA/data/something/frames/154080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a fishing lure with a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000107997", "images": ["AURORA/data/something/frames/127560/first.jpg", "AURORA/data/something/frames/127560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cellphone with handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107998", "images": ["AURORA/data/something/frames/4049/first.jpg", "AURORA/data/something/frames/4049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jeep door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107999", "images": ["AURORA/data/something/frames/209537/first.jpg", "AURORA/data/something/frames/209537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108000", "images": ["AURORA/data/something/frames/66261/first.jpg", "AURORA/data/something/frames/66261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and white pebble on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108001", "images": ["AURORA/data/something/frames/80122/first.jpg", "AURORA/data/something/frames/80122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting red bottlecap up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108002", "images": ["AURORA/data/something/frames/195038/first.jpg", "AURORA/data/something/frames/195038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses, scissors and nail polish on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108003", "images": ["AURORA/data/something/frames/29686/first.jpg", "AURORA/data/something/frames/29686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning scotch tape upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108004", "images": ["AURORA/data/something/frames/109837/first.jpg", "AURORA/data/something/frames/109837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000108005", "images": ["AURORA/data/something/frames/211030/first.jpg", "AURORA/data/something/frames/211030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108006", "images": ["AURORA/data/something/frames/155499/first.jpg", "AURORA/data/something/frames/155499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000108007", "images": ["AURORA/data/something/frames/34040/first.jpg", "AURORA/data/something/frames/34040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving canister closer to paper towels"}, {"from": "gpt", "value": ""}]} +{"id": "000000108008", "images": ["AURORA/data/something/frames/173845/first.jpg", "AURORA/data/something/frames/173845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse away from watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108009", "images": ["AURORA/data/something/frames/108135/first.jpg", "AURORA/data/something/frames/108135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of chair without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108010", "images": ["AURORA/data/something/frames/181658/first.jpg", "AURORA/data/something/frames/181658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning air conditioner remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108011", "images": ["AURORA/data/something/frames/57662/first.jpg", "AURORA/data/something/frames/57662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000108012", "images": ["AURORA/data/something/frames/5690/first.jpg", "AURORA/data/something/frames/5690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108013", "images": ["AURORA/data/something/frames/79426/first.jpg", "AURORA/data/something/frames/79426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000108014", "images": ["AURORA/data/something/frames/4283/first.jpg", "AURORA/data/something/frames/4283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chord so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108015", "images": ["AURORA/data/something/frames/141599/first.jpg", "AURORA/data/something/frames/141599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108016", "images": ["AURORA/data/something/frames/216386/first.jpg", "AURORA/data/something/frames/216386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108017", "images": ["AURORA/data/something/frames/76041/first.jpg", "AURORA/data/something/frames/76041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108018", "images": ["AURORA/data/something/frames/191571/first.jpg", "AURORA/data/something/frames/191571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108019", "images": ["AURORA/data/something/frames/216370/first.jpg", "AURORA/data/something/frames/216370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108020", "images": ["AURORA/data/something/frames/149035/first.jpg", "AURORA/data/something/frames/149035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange being deflected from vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108021", "images": ["AURORA/data/something/frames/204335/first.jpg", "AURORA/data/something/frames/204335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108022", "images": ["AURORA/data/something/frames/164129/first.jpg", "AURORA/data/something/frames/164129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a leg of a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000108023", "images": ["AURORA/data/something/frames/91601/first.jpg", "AURORA/data/something/frames/91601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of slab"}, {"from": "gpt", "value": ""}]} +{"id": "000000108024", "images": ["AURORA/data/something/frames/5347/first.jpg", "AURORA/data/something/frames/5347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108025", "images": ["AURORA/data/something/frames/59796/first.jpg", "AURORA/data/something/frames/59796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108026", "images": ["AURORA/data/something/frames/164683/first.jpg", "AURORA/data/something/frames/164683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108027", "images": ["AURORA/data/something/frames/29540/first.jpg", "AURORA/data/something/frames/29540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108028", "images": ["AURORA/data/something/frames/125787/first.jpg", "AURORA/data/something/frames/125787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone behind a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108029", "images": ["AURORA/data/something/frames/214420/first.jpg", "AURORA/data/something/frames/214420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bag from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108030", "images": ["AURORA/data/something/frames/111521/first.jpg", "AURORA/data/something/frames/111521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening piller"}, {"from": "gpt", "value": ""}]} +{"id": "000000108031", "images": ["AURORA/data/something/frames/166184/first.jpg", "AURORA/data/something/frames/166184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108032", "images": ["AURORA/data/something/frames/36558/first.jpg", "AURORA/data/something/frames/36558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rock from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108033", "images": ["AURORA/data/something/frames/24375/first.jpg", "AURORA/data/something/frames/24375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sponge into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108034", "images": ["AURORA/data/something/frames/66399/first.jpg", "AURORA/data/something/frames/66399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hairband into green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108035", "images": ["AURORA/data/something/frames/26104/first.jpg", "AURORA/data/something/frames/26104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lighter behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108036", "images": ["AURORA/data/something/frames/123641/first.jpg", "AURORA/data/something/frames/123641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000108037", "images": ["AURORA/data/something/frames/130288/first.jpg", "AURORA/data/something/frames/130288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle holder upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108038", "images": ["AURORA/data/something/frames/191799/first.jpg", "AURORA/data/something/frames/191799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing briefcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108039", "images": ["AURORA/data/something/frames/73240/first.jpg", "AURORA/data/something/frames/73240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser closer to usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000108040", "images": ["AURORA/data/something/frames/125027/first.jpg", "AURORA/data/something/frames/125027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000108041", "images": ["AURORA/data/something/frames/214423/first.jpg", "AURORA/data/something/frames/214423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of bracelets holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000108042", "images": ["AURORA/data/something/frames/115639/first.jpg", "AURORA/data/something/frames/115639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet in front of coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000108043", "images": ["AURORA/data/something/frames/130683/first.jpg", "AURORA/data/something/frames/130683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting salt and pepper on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108044", "images": ["AURORA/data/something/frames/178102/first.jpg", "AURORA/data/something/frames/178102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108045", "images": ["AURORA/data/something/frames/64611/first.jpg", "AURORA/data/something/frames/64611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: glass colliding with tube and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108046", "images": ["AURORA/data/something/frames/84008/first.jpg", "AURORA/data/something/frames/84008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108047", "images": ["AURORA/data/something/frames/90925/first.jpg", "AURORA/data/something/frames/90925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red pot holder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108048", "images": ["AURORA/data/something/frames/50433/first.jpg", "AURORA/data/something/frames/50433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bangle colliding with another bangle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108049", "images": ["AURORA/data/something/frames/107327/first.jpg", "AURORA/data/something/frames/107327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108050", "images": ["AURORA/data/something/frames/136195/first.jpg", "AURORA/data/something/frames/136195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108051", "images": ["AURORA/data/something/frames/174437/first.jpg", "AURORA/data/something/frames/174437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108052", "images": ["AURORA/data/something/frames/81368/first.jpg", "AURORA/data/something/frames/81368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking jar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108053", "images": ["AURORA/data/something/frames/151814/first.jpg", "AURORA/data/something/frames/151814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108054", "images": ["AURORA/data/something/frames/141781/first.jpg", "AURORA/data/something/frames/141781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candlestick closer to candlestick"}, {"from": "gpt", "value": ""}]} +{"id": "000000108055", "images": ["AURORA/data/something/frames/165532/first.jpg", "AURORA/data/something/frames/165532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into water"}, {"from": "gpt", "value": ""}]} +{"id": "000000108056", "images": ["AURORA/data/something/frames/62593/first.jpg", "AURORA/data/something/frames/62593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red dairy from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108057", "images": ["AURORA/data/something/frames/54070/first.jpg", "AURORA/data/something/frames/54070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lipbam into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108058", "images": ["AURORA/data/something/frames/76942/first.jpg", "AURORA/data/something/frames/76942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick away from eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000108059", "images": ["AURORA/data/something/frames/101784/first.jpg", "AURORA/data/something/frames/101784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing polish remover, revealing moisturizer behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108060", "images": ["AURORA/data/something/frames/44725/first.jpg", "AURORA/data/something/frames/44725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of liitle red box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108061", "images": ["AURORA/data/something/frames/21829/first.jpg", "AURORA/data/something/frames/21829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108062", "images": ["AURORA/data/something/frames/203352/first.jpg", "AURORA/data/something/frames/203352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000108063", "images": ["AURORA/data/something/frames/58916/first.jpg", "AURORA/data/something/frames/58916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering the tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108064", "images": ["AURORA/data/something/frames/16369/first.jpg", "AURORA/data/something/frames/16369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108065", "images": ["AURORA/data/something/frames/156468/first.jpg", "AURORA/data/something/frames/156468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker pen next to tooth brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000108066", "images": ["AURORA/data/something/frames/37731/first.jpg", "AURORA/data/something/frames/37731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle holder with a dishcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108067", "images": ["AURORA/data/something/frames/135788/first.jpg", "AURORA/data/something/frames/135788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving well and fork closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108068", "images": ["AURORA/data/something/frames/198852/first.jpg", "AURORA/data/something/frames/198852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing comb with bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108069", "images": ["AURORA/data/something/frames/93864/first.jpg", "AURORA/data/something/frames/93864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming clouds"}, {"from": "gpt", "value": ""}]} +{"id": "000000108070", "images": ["AURORA/data/something/frames/142103/first.jpg", "AURORA/data/something/frames/142103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bolt with sky blue colour cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108071", "images": ["AURORA/data/something/frames/16840/first.jpg", "AURORA/data/something/frames/16840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brochure out of plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108072", "images": ["AURORA/data/something/frames/39556/first.jpg", "AURORA/data/something/frames/39556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108073", "images": ["AURORA/data/something/frames/166766/first.jpg", "AURORA/data/something/frames/166766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking green frog doll so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108074", "images": ["AURORA/data/something/frames/208107/first.jpg", "AURORA/data/something/frames/208107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yellow ball out of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108075", "images": ["AURORA/data/something/frames/58361/first.jpg", "AURORA/data/something/frames/58361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108076", "images": ["AURORA/data/something/frames/62648/first.jpg", "AURORA/data/something/frames/62648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon away from stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108077", "images": ["AURORA/data/something/frames/118021/first.jpg", "AURORA/data/something/frames/118021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108078", "images": ["AURORA/data/something/frames/96385/first.jpg", "AURORA/data/something/frames/96385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tub of coconut oil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108079", "images": ["AURORA/data/something/frames/14129/first.jpg", "AURORA/data/something/frames/14129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting powder bottle behind wood box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108080", "images": ["AURORA/data/something/frames/133520/first.jpg", "AURORA/data/something/frames/133520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into electric plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108081", "images": ["AURORA/data/something/frames/184798/first.jpg", "AURORA/data/something/frames/184798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying an onion in rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000108082", "images": ["AURORA/data/something/frames/193768/first.jpg", "AURORA/data/something/frames/193768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108083", "images": ["AURORA/data/something/frames/178486/first.jpg", "AURORA/data/something/frames/178486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108084", "images": ["AURORA/data/something/frames/207802/first.jpg", "AURORA/data/something/frames/207802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108085", "images": ["AURORA/data/something/frames/3227/first.jpg", "AURORA/data/something/frames/3227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108086", "images": ["AURORA/data/something/frames/13607/first.jpg", "AURORA/data/something/frames/13607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting trash bin with dustpan"}, {"from": "gpt", "value": ""}]} +{"id": "000000108087", "images": ["AURORA/data/something/frames/92938/first.jpg", "AURORA/data/something/frames/92938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lamp up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108088", "images": ["AURORA/data/something/frames/97587/first.jpg", "AURORA/data/something/frames/97587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheel of baby carriage"}, {"from": "gpt", "value": ""}]} +{"id": "000000108089", "images": ["AURORA/data/something/frames/152256/first.jpg", "AURORA/data/something/frames/152256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bowl from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108090", "images": ["AURORA/data/something/frames/18272/first.jpg", "AURORA/data/something/frames/18272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dinosaur into plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108091", "images": ["AURORA/data/something/frames/23699/first.jpg", "AURORA/data/something/frames/23699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cupcake onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108092", "images": ["AURORA/data/something/frames/9443/first.jpg", "AURORA/data/something/frames/9443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pint glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108093", "images": ["AURORA/data/something/frames/200743/first.jpg", "AURORA/data/something/frames/200743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108094", "images": ["AURORA/data/something/frames/80845/first.jpg", "AURORA/data/something/frames/80845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108095", "images": ["AURORA/data/something/frames/169572/first.jpg", "AURORA/data/something/frames/169572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108096", "images": ["AURORA/data/something/frames/7909/first.jpg", "AURORA/data/something/frames/7909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching white chalk piece with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108097", "images": ["AURORA/data/something/frames/134419/first.jpg", "AURORA/data/something/frames/134419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108098", "images": ["AURORA/data/something/frames/83261/first.jpg", "AURORA/data/something/frames/83261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108099", "images": ["AURORA/data/something/frames/17174/first.jpg", "AURORA/data/something/frames/17174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass behind bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108100", "images": ["AURORA/data/something/frames/124896/first.jpg", "AURORA/data/something/frames/124896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000108101", "images": ["AURORA/data/something/frames/219647/first.jpg", "AURORA/data/something/frames/219647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108102", "images": ["AURORA/data/something/frames/92437/first.jpg", "AURORA/data/something/frames/92437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a tooth-stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108103", "images": ["AURORA/data/something/frames/87247/first.jpg", "AURORA/data/something/frames/87247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108104", "images": ["AURORA/data/something/frames/56958/first.jpg", "AURORA/data/something/frames/56958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108105", "images": ["AURORA/data/something/frames/125207/first.jpg", "AURORA/data/something/frames/125207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a phone charger to a plug point"}, {"from": "gpt", "value": ""}]} +{"id": "000000108106", "images": ["AURORA/data/something/frames/140766/first.jpg", "AURORA/data/something/frames/140766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108107", "images": ["AURORA/data/something/frames/185634/first.jpg", "AURORA/data/something/frames/185634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108108", "images": ["AURORA/data/something/frames/148192/first.jpg", "AURORA/data/something/frames/148192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil box underneath a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108109", "images": ["AURORA/data/something/frames/65310/first.jpg", "AURORA/data/something/frames/65310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing knife into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108110", "images": ["AURORA/data/something/frames/34688/first.jpg", "AURORA/data/something/frames/34688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108111", "images": ["AURORA/data/something/frames/71786/first.jpg", "AURORA/data/something/frames/71786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000108112", "images": ["AURORA/data/something/frames/44513/first.jpg", "AURORA/data/something/frames/44513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cell phone with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108113", "images": ["AURORA/data/something/frames/206900/first.jpg", "AURORA/data/something/frames/206900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post-it to a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108114", "images": ["AURORA/data/something/frames/3109/first.jpg", "AURORA/data/something/frames/3109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108115", "images": ["AURORA/data/something/frames/21693/first.jpg", "AURORA/data/something/frames/21693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a phone with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108116", "images": ["AURORA/data/something/frames/4270/first.jpg", "AURORA/data/something/frames/4270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering garlic with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108117", "images": ["AURORA/data/something/frames/167385/first.jpg", "AURORA/data/something/frames/167385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108118", "images": ["AURORA/data/something/frames/15705/first.jpg", "AURORA/data/something/frames/15705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting coin up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108119", "images": ["AURORA/data/something/frames/87524/first.jpg", "AURORA/data/something/frames/87524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging flashcard into loptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108120", "images": ["AURORA/data/something/frames/15520/first.jpg", "AURORA/data/something/frames/15520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hair brush and a mirror on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108121", "images": ["AURORA/data/something/frames/125592/first.jpg", "AURORA/data/something/frames/125592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108122", "images": ["AURORA/data/something/frames/120839/first.jpg", "AURORA/data/something/frames/120839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000108123", "images": ["AURORA/data/something/frames/9935/first.jpg", "AURORA/data/something/frames/9935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108124", "images": ["AURORA/data/something/frames/184963/first.jpg", "AURORA/data/something/frames/184963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108125", "images": ["AURORA/data/something/frames/178990/first.jpg", "AURORA/data/something/frames/178990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108126", "images": ["AURORA/data/something/frames/220421/first.jpg", "AURORA/data/something/frames/220421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a penguin so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108127", "images": ["AURORA/data/something/frames/82703/first.jpg", "AURORA/data/something/frames/82703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe with a stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000108128", "images": ["AURORA/data/something/frames/131651/first.jpg", "AURORA/data/something/frames/131651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108129", "images": ["AURORA/data/something/frames/180698/first.jpg", "AURORA/data/something/frames/180698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a key and a battery closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108130", "images": ["AURORA/data/something/frames/133998/first.jpg", "AURORA/data/something/frames/133998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping nuts up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108131", "images": ["AURORA/data/something/frames/80260/first.jpg", "AURORA/data/something/frames/80260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108132", "images": ["AURORA/data/something/frames/107139/first.jpg", "AURORA/data/something/frames/107139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a receipt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108133", "images": ["AURORA/data/something/frames/59648/first.jpg", "AURORA/data/something/frames/59648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jam onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000108134", "images": ["AURORA/data/something/frames/133821/first.jpg", "AURORA/data/something/frames/133821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108135", "images": ["AURORA/data/something/frames/106558/first.jpg", "AURORA/data/something/frames/106558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip bam closer to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108136", "images": ["AURORA/data/something/frames/60961/first.jpg", "AURORA/data/something/frames/60961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cork so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108137", "images": ["AURORA/data/something/frames/93748/first.jpg", "AURORA/data/something/frames/93748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pick with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108138", "images": ["AURORA/data/something/frames/206727/first.jpg", "AURORA/data/something/frames/206727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108139", "images": ["AURORA/data/something/frames/129737/first.jpg", "AURORA/data/something/frames/129737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling colour onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108140", "images": ["AURORA/data/something/frames/181400/first.jpg", "AURORA/data/something/frames/181400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108141", "images": ["AURORA/data/something/frames/108687/first.jpg", "AURORA/data/something/frames/108687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108142", "images": ["AURORA/data/something/frames/29807/first.jpg", "AURORA/data/something/frames/29807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an apple out of a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108143", "images": ["AURORA/data/something/frames/80491/first.jpg", "AURORA/data/something/frames/80491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cat with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108144", "images": ["AURORA/data/something/frames/63879/first.jpg", "AURORA/data/something/frames/63879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip and cigarette lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108145", "images": ["AURORA/data/something/frames/116813/first.jpg", "AURORA/data/something/frames/116813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108146", "images": ["AURORA/data/something/frames/160716/first.jpg", "AURORA/data/something/frames/160716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108147", "images": ["AURORA/data/something/frames/34433/first.jpg", "AURORA/data/something/frames/34433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108148", "images": ["AURORA/data/something/frames/182311/first.jpg", "AURORA/data/something/frames/182311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting onion onto cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108149", "images": ["AURORA/data/something/frames/172608/first.jpg", "AURORA/data/something/frames/172608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108150", "images": ["AURORA/data/something/frames/139178/first.jpg", "AURORA/data/something/frames/139178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting waste paper into dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108151", "images": ["AURORA/data/something/frames/213128/first.jpg", "AURORA/data/something/frames/213128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink blush on from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108152", "images": ["AURORA/data/something/frames/25869/first.jpg", "AURORA/data/something/frames/25869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108153", "images": ["AURORA/data/something/frames/155105/first.jpg", "AURORA/data/something/frames/155105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108154", "images": ["AURORA/data/something/frames/213321/first.jpg", "AURORA/data/something/frames/213321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bracelet out of a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108155", "images": ["AURORA/data/something/frames/211726/first.jpg", "AURORA/data/something/frames/211726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a wipe wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108156", "images": ["AURORA/data/something/frames/99754/first.jpg", "AURORA/data/something/frames/99754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy in front of toy watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108157", "images": ["AURORA/data/something/frames/99490/first.jpg", "AURORA/data/something/frames/99490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a ukulele case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108158", "images": ["AURORA/data/something/frames/97159/first.jpg", "AURORA/data/something/frames/97159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper clip next to medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108159", "images": ["AURORA/data/something/frames/217863/first.jpg", "AURORA/data/something/frames/217863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108160", "images": ["AURORA/data/something/frames/159543/first.jpg", "AURORA/data/something/frames/159543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108161", "images": ["AURORA/data/something/frames/99669/first.jpg", "AURORA/data/something/frames/99669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting newspaper with hair brush on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108162", "images": ["AURORA/data/something/frames/37562/first.jpg", "AURORA/data/something/frames/37562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108163", "images": ["AURORA/data/something/frames/214675/first.jpg", "AURORA/data/something/frames/214675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a light switch down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108164", "images": ["AURORA/data/something/frames/1591/first.jpg", "AURORA/data/something/frames/1591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto saucer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108165", "images": ["AURORA/data/something/frames/207221/first.jpg", "AURORA/data/something/frames/207221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108166", "images": ["AURORA/data/something/frames/17637/first.jpg", "AURORA/data/something/frames/17637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into paper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108167", "images": ["AURORA/data/something/frames/12873/first.jpg", "AURORA/data/something/frames/12873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching washing machine with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108168", "images": ["AURORA/data/something/frames/76226/first.jpg", "AURORA/data/something/frames/76226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108169", "images": ["AURORA/data/something/frames/28953/first.jpg", "AURORA/data/something/frames/28953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108170", "images": ["AURORA/data/something/frames/73670/first.jpg", "AURORA/data/something/frames/73670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering baby"}, {"from": "gpt", "value": ""}]} +{"id": "000000108171", "images": ["AURORA/data/something/frames/64988/first.jpg", "AURORA/data/something/frames/64988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108172", "images": ["AURORA/data/something/frames/54977/first.jpg", "AURORA/data/something/frames/54977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108173", "images": ["AURORA/data/something/frames/40897/first.jpg", "AURORA/data/something/frames/40897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking divider on the bottom that is similar to other divider on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108174", "images": ["AURORA/data/something/frames/39559/first.jpg", "AURORA/data/something/frames/39559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a fork so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108175", "images": ["AURORA/data/something/frames/11606/first.jpg", "AURORA/data/something/frames/11606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy car across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108176", "images": ["AURORA/data/something/frames/148819/first.jpg", "AURORA/data/something/frames/148819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108177", "images": ["AURORA/data/something/frames/88484/first.jpg", "AURORA/data/something/frames/88484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hacksaw blade from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108178", "images": ["AURORA/data/something/frames/47769/first.jpg", "AURORA/data/something/frames/47769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bucket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108179", "images": ["AURORA/data/something/frames/140039/first.jpg", "AURORA/data/something/frames/140039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toilet paper away from inhaler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108180", "images": ["AURORA/data/something/frames/114265/first.jpg", "AURORA/data/something/frames/114265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with toy on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108181", "images": ["AURORA/data/something/frames/142623/first.jpg", "AURORA/data/something/frames/142623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cranberry off of the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000108182", "images": ["AURORA/data/something/frames/189410/first.jpg", "AURORA/data/something/frames/189410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sandpaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108183", "images": ["AURORA/data/something/frames/158967/first.jpg", "AURORA/data/something/frames/158967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lighter so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108184", "images": ["AURORA/data/something/frames/138147/first.jpg", "AURORA/data/something/frames/138147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000108185", "images": ["AURORA/data/something/frames/64795/first.jpg", "AURORA/data/something/frames/64795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pen holder upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108186", "images": ["AURORA/data/something/frames/125793/first.jpg", "AURORA/data/something/frames/125793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000108187", "images": ["AURORA/data/something/frames/62977/first.jpg", "AURORA/data/something/frames/62977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: milk jug being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108188", "images": ["AURORA/data/something/frames/87043/first.jpg", "AURORA/data/something/frames/87043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming me"}, {"from": "gpt", "value": ""}]} +{"id": "000000108189", "images": ["AURORA/data/something/frames/13372/first.jpg", "AURORA/data/something/frames/13372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching doorknob with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108190", "images": ["AURORA/data/something/frames/61091/first.jpg", "AURORA/data/something/frames/61091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping dhal up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108191", "images": ["AURORA/data/something/frames/107782/first.jpg", "AURORA/data/something/frames/107782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108192", "images": ["AURORA/data/something/frames/165840/first.jpg", "AURORA/data/something/frames/165840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rectangular box and ramekin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108193", "images": ["AURORA/data/something/frames/99316/first.jpg", "AURORA/data/something/frames/99316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning toy badge upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108194", "images": ["AURORA/data/something/frames/183969/first.jpg", "AURORA/data/something/frames/183969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dish with apple on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108195", "images": ["AURORA/data/something/frames/213404/first.jpg", "AURORA/data/something/frames/213404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108196", "images": ["AURORA/data/something/frames/131706/first.jpg", "AURORA/data/something/frames/131706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding childs shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108197", "images": ["AURORA/data/something/frames/19204/first.jpg", "AURORA/data/something/frames/19204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108198", "images": ["AURORA/data/something/frames/50646/first.jpg", "AURORA/data/something/frames/50646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving medicines down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108199", "images": ["AURORA/data/something/frames/11569/first.jpg", "AURORA/data/something/frames/11569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108200", "images": ["AURORA/data/something/frames/22129/first.jpg", "AURORA/data/something/frames/22129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching gate with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108201", "images": ["AURORA/data/something/frames/165593/first.jpg", "AURORA/data/something/frames/165593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric cord into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108202", "images": ["AURORA/data/something/frames/216210/first.jpg", "AURORA/data/something/frames/216210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108203", "images": ["AURORA/data/something/frames/118579/first.jpg", "AURORA/data/something/frames/118579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading kerchief onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000108204", "images": ["AURORA/data/something/frames/100908/first.jpg", "AURORA/data/something/frames/100908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108205", "images": ["AURORA/data/something/frames/208016/first.jpg", "AURORA/data/something/frames/208016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a magazine just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108206", "images": ["AURORA/data/something/frames/94529/first.jpg", "AURORA/data/something/frames/94529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spanner on the top similar to many spanners on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108207", "images": ["AURORA/data/something/frames/35652/first.jpg", "AURORA/data/something/frames/35652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108208", "images": ["AURORA/data/something/frames/181119/first.jpg", "AURORA/data/something/frames/181119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cell phone in front of a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000108209", "images": ["AURORA/data/something/frames/14805/first.jpg", "AURORA/data/something/frames/14805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108210", "images": ["AURORA/data/something/frames/211145/first.jpg", "AURORA/data/something/frames/211145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108211", "images": ["AURORA/data/something/frames/147873/first.jpg", "AURORA/data/something/frames/147873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bracelete into jeweler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108212", "images": ["AURORA/data/something/frames/97820/first.jpg", "AURORA/data/something/frames/97820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108213", "images": ["AURORA/data/something/frames/154629/first.jpg", "AURORA/data/something/frames/154629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering something"}, {"from": "gpt", "value": ""}]} +{"id": "000000108214", "images": ["AURORA/data/something/frames/207023/first.jpg", "AURORA/data/something/frames/207023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the window"}, {"from": "gpt", "value": ""}]} +{"id": "000000108215", "images": ["AURORA/data/something/frames/141132/first.jpg", "AURORA/data/something/frames/141132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lotion cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108216", "images": ["AURORA/data/something/frames/29362/first.jpg", "AURORA/data/something/frames/29362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into silver glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108217", "images": ["AURORA/data/something/frames/107908/first.jpg", "AURORA/data/something/frames/107908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon out of a coffee cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108218", "images": ["AURORA/data/something/frames/40910/first.jpg", "AURORA/data/something/frames/40910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108219", "images": ["AURORA/data/something/frames/55632/first.jpg", "AURORA/data/something/frames/55632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108220", "images": ["AURORA/data/something/frames/190506/first.jpg", "AURORA/data/something/frames/190506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108221", "images": ["AURORA/data/something/frames/64307/first.jpg", "AURORA/data/something/frames/64307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108222", "images": ["AURORA/data/something/frames/203882/first.jpg", "AURORA/data/something/frames/203882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108223", "images": ["AURORA/data/something/frames/149647/first.jpg", "AURORA/data/something/frames/149647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a washcloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108224", "images": ["AURORA/data/something/frames/38345/first.jpg", "AURORA/data/something/frames/38345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108225", "images": ["AURORA/data/something/frames/167308/first.jpg", "AURORA/data/something/frames/167308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a news paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108226", "images": ["AURORA/data/something/frames/122975/first.jpg", "AURORA/data/something/frames/122975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108227", "images": ["AURORA/data/something/frames/131583/first.jpg", "AURORA/data/something/frames/131583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dvds onto dvds"}, {"from": "gpt", "value": ""}]} +{"id": "000000108228", "images": ["AURORA/data/something/frames/26279/first.jpg", "AURORA/data/something/frames/26279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108229", "images": ["AURORA/data/something/frames/155092/first.jpg", "AURORA/data/something/frames/155092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop behind canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000108230", "images": ["AURORA/data/something/frames/35052/first.jpg", "AURORA/data/something/frames/35052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108231", "images": ["AURORA/data/something/frames/19350/first.jpg", "AURORA/data/something/frames/19350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plastic bag so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108232", "images": ["AURORA/data/something/frames/6482/first.jpg", "AURORA/data/something/frames/6482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108233", "images": ["AURORA/data/something/frames/103204/first.jpg", "AURORA/data/something/frames/103204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling tea next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108234", "images": ["AURORA/data/something/frames/215693/first.jpg", "AURORA/data/something/frames/215693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108235", "images": ["AURORA/data/something/frames/34235/first.jpg", "AURORA/data/something/frames/34235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108236", "images": ["AURORA/data/something/frames/31539/first.jpg", "AURORA/data/something/frames/31539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a ball colliding with a ball and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108237", "images": ["AURORA/data/something/frames/50282/first.jpg", "AURORA/data/something/frames/50282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into can"}, {"from": "gpt", "value": ""}]} +{"id": "000000108238", "images": ["AURORA/data/something/frames/26647/first.jpg", "AURORA/data/something/frames/26647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mirror and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108239", "images": ["AURORA/data/something/frames/215561/first.jpg", "AURORA/data/something/frames/215561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108240", "images": ["AURORA/data/something/frames/40013/first.jpg", "AURORA/data/something/frames/40013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving triangle and sun glasses away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108241", "images": ["AURORA/data/something/frames/167711/first.jpg", "AURORA/data/something/frames/167711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108242", "images": ["AURORA/data/something/frames/202558/first.jpg", "AURORA/data/something/frames/202558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108243", "images": ["AURORA/data/something/frames/156891/first.jpg", "AURORA/data/something/frames/156891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108244", "images": ["AURORA/data/something/frames/134845/first.jpg", "AURORA/data/something/frames/134845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an envelope behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108245", "images": ["AURORA/data/something/frames/90080/first.jpg", "AURORA/data/something/frames/90080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a knife so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108246", "images": ["AURORA/data/something/frames/134378/first.jpg", "AURORA/data/something/frames/134378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108247", "images": ["AURORA/data/something/frames/15840/first.jpg", "AURORA/data/something/frames/15840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pasta until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108248", "images": ["AURORA/data/something/frames/43859/first.jpg", "AURORA/data/something/frames/43859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shot glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108249", "images": ["AURORA/data/something/frames/32356/first.jpg", "AURORA/data/something/frames/32356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of packaging handkerchiefs so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000108250", "images": ["AURORA/data/something/frames/49839/first.jpg", "AURORA/data/something/frames/49839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108251", "images": ["AURORA/data/something/frames/189830/first.jpg", "AURORA/data/something/frames/189830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking betel nut up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108252", "images": ["AURORA/data/something/frames/207518/first.jpg", "AURORA/data/something/frames/207518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and usb cable away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108253", "images": ["AURORA/data/something/frames/125551/first.jpg", "AURORA/data/something/frames/125551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching paperclip to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108254", "images": ["AURORA/data/something/frames/183917/first.jpg", "AURORA/data/something/frames/183917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning fabric softener upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108255", "images": ["AURORA/data/something/frames/32345/first.jpg", "AURORA/data/something/frames/32345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108256", "images": ["AURORA/data/something/frames/171954/first.jpg", "AURORA/data/something/frames/171954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108257", "images": ["AURORA/data/something/frames/140503/first.jpg", "AURORA/data/something/frames/140503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting straw up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108258", "images": ["AURORA/data/something/frames/144156/first.jpg", "AURORA/data/something/frames/144156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108259", "images": ["AURORA/data/something/frames/126597/first.jpg", "AURORA/data/something/frames/126597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108260", "images": ["AURORA/data/something/frames/175187/first.jpg", "AURORA/data/something/frames/175187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000108261", "images": ["AURORA/data/something/frames/31907/first.jpg", "AURORA/data/something/frames/31907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing calculator into pen bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108262", "images": ["AURORA/data/something/frames/171538/first.jpg", "AURORA/data/something/frames/171538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting braclet onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108263", "images": ["AURORA/data/something/frames/1073/first.jpg", "AURORA/data/something/frames/1073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108264", "images": ["AURORA/data/something/frames/118066/first.jpg", "AURORA/data/something/frames/118066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toy onto the bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000108265", "images": ["AURORA/data/something/frames/76450/first.jpg", "AURORA/data/something/frames/76450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tangerine from group of tangerines"}, {"from": "gpt", "value": ""}]} +{"id": "000000108266", "images": ["AURORA/data/something/frames/148143/first.jpg", "AURORA/data/something/frames/148143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding receipt paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108267", "images": ["AURORA/data/something/frames/62897/first.jpg", "AURORA/data/something/frames/62897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a computer mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108268", "images": ["AURORA/data/something/frames/100338/first.jpg", "AURORA/data/something/frames/100338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game piece onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108269", "images": ["AURORA/data/something/frames/173735/first.jpg", "AURORA/data/something/frames/173735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white book marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108270", "images": ["AURORA/data/something/frames/160390/first.jpg", "AURORA/data/something/frames/160390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108271", "images": ["AURORA/data/something/frames/210405/first.jpg", "AURORA/data/something/frames/210405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108272", "images": ["AURORA/data/something/frames/130744/first.jpg", "AURORA/data/something/frames/130744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108273", "images": ["AURORA/data/something/frames/74720/first.jpg", "AURORA/data/something/frames/74720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108274", "images": ["AURORA/data/something/frames/10230/first.jpg", "AURORA/data/something/frames/10230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108275", "images": ["AURORA/data/something/frames/185570/first.jpg", "AURORA/data/something/frames/185570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle top onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108276", "images": ["AURORA/data/something/frames/186661/first.jpg", "AURORA/data/something/frames/186661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of comb without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108277", "images": ["AURORA/data/something/frames/56215/first.jpg", "AURORA/data/something/frames/56215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one tape dispenser onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108278", "images": ["AURORA/data/something/frames/135525/first.jpg", "AURORA/data/something/frames/135525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sugar jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108279", "images": ["AURORA/data/something/frames/164155/first.jpg", "AURORA/data/something/frames/164155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tailoring tap into plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108280", "images": ["AURORA/data/something/frames/153105/first.jpg", "AURORA/data/something/frames/153105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting telephone with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108281", "images": ["AURORA/data/something/frames/196227/first.jpg", "AURORA/data/something/frames/196227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108282", "images": ["AURORA/data/something/frames/173897/first.jpg", "AURORA/data/something/frames/173897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108283", "images": ["AURORA/data/something/frames/30680/first.jpg", "AURORA/data/something/frames/30680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108284", "images": ["AURORA/data/something/frames/207331/first.jpg", "AURORA/data/something/frames/207331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108285", "images": ["AURORA/data/something/frames/198269/first.jpg", "AURORA/data/something/frames/198269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plate next to plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108286", "images": ["AURORA/data/something/frames/149320/first.jpg", "AURORA/data/something/frames/149320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crochet needle into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108287", "images": ["AURORA/data/something/frames/90851/first.jpg", "AURORA/data/something/frames/90851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler closer to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000108288", "images": ["AURORA/data/something/frames/214007/first.jpg", "AURORA/data/something/frames/214007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of sock so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108289", "images": ["AURORA/data/something/frames/54805/first.jpg", "AURORA/data/something/frames/54805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108290", "images": ["AURORA/data/something/frames/13992/first.jpg", "AURORA/data/something/frames/13992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping calculator into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108291", "images": ["AURORA/data/something/frames/5143/first.jpg", "AURORA/data/something/frames/5143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with a piece of cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108292", "images": ["AURORA/data/something/frames/17629/first.jpg", "AURORA/data/something/frames/17629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108293", "images": ["AURORA/data/something/frames/21300/first.jpg", "AURORA/data/something/frames/21300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning hole puncher upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108294", "images": ["AURORA/data/something/frames/44586/first.jpg", "AURORA/data/something/frames/44586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108295", "images": ["AURORA/data/something/frames/10288/first.jpg", "AURORA/data/something/frames/10288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a flexo lamp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108296", "images": ["AURORA/data/something/frames/147119/first.jpg", "AURORA/data/something/frames/147119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108297", "images": ["AURORA/data/something/frames/129113/first.jpg", "AURORA/data/something/frames/129113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108298", "images": ["AURORA/data/something/frames/209706/first.jpg", "AURORA/data/something/frames/209706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tumbler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108299", "images": ["AURORA/data/something/frames/70116/first.jpg", "AURORA/data/something/frames/70116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a glove behind a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108300", "images": ["AURORA/data/something/frames/120673/first.jpg", "AURORA/data/something/frames/120673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 things"}, {"from": "gpt", "value": ""}]} +{"id": "000000108301", "images": ["AURORA/data/something/frames/192054/first.jpg", "AURORA/data/something/frames/192054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108302", "images": ["AURORA/data/something/frames/173596/first.jpg", "AURORA/data/something/frames/173596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108303", "images": ["AURORA/data/something/frames/109644/first.jpg", "AURORA/data/something/frames/109644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of plastic screwcap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108304", "images": ["AURORA/data/something/frames/190134/first.jpg", "AURORA/data/something/frames/190134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pillow onto sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000108305", "images": ["AURORA/data/something/frames/1143/first.jpg", "AURORA/data/something/frames/1143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000108306", "images": ["AURORA/data/something/frames/143109/first.jpg", "AURORA/data/something/frames/143109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108307", "images": ["AURORA/data/something/frames/156613/first.jpg", "AURORA/data/something/frames/156613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000108308", "images": ["AURORA/data/something/frames/27419/first.jpg", "AURORA/data/something/frames/27419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting thing in front of drawers"}, {"from": "gpt", "value": ""}]} +{"id": "000000108309", "images": ["AURORA/data/something/frames/119171/first.jpg", "AURORA/data/something/frames/119171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rack down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108310", "images": ["AURORA/data/something/frames/98538/first.jpg", "AURORA/data/something/frames/98538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wallet upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108311", "images": ["AURORA/data/something/frames/32914/first.jpg", "AURORA/data/something/frames/32914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering white chalk with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108312", "images": ["AURORA/data/something/frames/218471/first.jpg", "AURORA/data/something/frames/218471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting black brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108313", "images": ["AURORA/data/something/frames/131108/first.jpg", "AURORA/data/something/frames/131108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000108314", "images": ["AURORA/data/something/frames/22618/first.jpg", "AURORA/data/something/frames/22618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticky note to monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108315", "images": ["AURORA/data/something/frames/146962/first.jpg", "AURORA/data/something/frames/146962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering football"}, {"from": "gpt", "value": ""}]} +{"id": "000000108316", "images": ["AURORA/data/something/frames/135995/first.jpg", "AURORA/data/something/frames/135995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108317", "images": ["AURORA/data/something/frames/115389/first.jpg", "AURORA/data/something/frames/115389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wireless mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108318", "images": ["AURORA/data/something/frames/80659/first.jpg", "AURORA/data/something/frames/80659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000108319", "images": ["AURORA/data/something/frames/108589/first.jpg", "AURORA/data/something/frames/108589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shampoo bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108320", "images": ["AURORA/data/something/frames/77398/first.jpg", "AURORA/data/something/frames/77398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bulb syringe being deflected from dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000108321", "images": ["AURORA/data/something/frames/4770/first.jpg", "AURORA/data/something/frames/4770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108322", "images": ["AURORA/data/something/frames/191579/first.jpg", "AURORA/data/something/frames/191579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a matchstick from behind of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108323", "images": ["AURORA/data/something/frames/18648/first.jpg", "AURORA/data/something/frames/18648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the dollar out of purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000108324", "images": ["AURORA/data/something/frames/37659/first.jpg", "AURORA/data/something/frames/37659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bowl so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108325", "images": ["AURORA/data/something/frames/39846/first.jpg", "AURORA/data/something/frames/39846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sketch pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108326", "images": ["AURORA/data/something/frames/169464/first.jpg", "AURORA/data/something/frames/169464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 letters onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108327", "images": ["AURORA/data/something/frames/200932/first.jpg", "AURORA/data/something/frames/200932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108328", "images": ["AURORA/data/something/frames/137392/first.jpg", "AURORA/data/something/frames/137392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a rack shelf so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108329", "images": ["AURORA/data/something/frames/52628/first.jpg", "AURORA/data/something/frames/52628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote control down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108330", "images": ["AURORA/data/something/frames/118743/first.jpg", "AURORA/data/something/frames/118743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108331", "images": ["AURORA/data/something/frames/138027/first.jpg", "AURORA/data/something/frames/138027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ink off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108332", "images": ["AURORA/data/something/frames/118245/first.jpg", "AURORA/data/something/frames/118245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cotton swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108333", "images": ["AURORA/data/something/frames/50123/first.jpg", "AURORA/data/something/frames/50123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108334", "images": ["AURORA/data/something/frames/48590/first.jpg", "AURORA/data/something/frames/48590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber string so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108335", "images": ["AURORA/data/something/frames/180886/first.jpg", "AURORA/data/something/frames/180886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking block out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108336", "images": ["AURORA/data/something/frames/93301/first.jpg", "AURORA/data/something/frames/93301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt away from pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108337", "images": ["AURORA/data/something/frames/116978/first.jpg", "AURORA/data/something/frames/116978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming atm machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000108338", "images": ["AURORA/data/something/frames/93579/first.jpg", "AURORA/data/something/frames/93579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pages of note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108339", "images": ["AURORA/data/something/frames/5790/first.jpg", "AURORA/data/something/frames/5790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108340", "images": ["AURORA/data/something/frames/140727/first.jpg", "AURORA/data/something/frames/140727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108341", "images": ["AURORA/data/something/frames/93247/first.jpg", "AURORA/data/something/frames/93247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting the bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108342", "images": ["AURORA/data/something/frames/121095/first.jpg", "AURORA/data/something/frames/121095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spiral pad notebook with pencil on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108343", "images": ["AURORA/data/something/frames/212095/first.jpg", "AURORA/data/something/frames/212095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding tote bags"}, {"from": "gpt", "value": ""}]} +{"id": "000000108344", "images": ["AURORA/data/something/frames/156918/first.jpg", "AURORA/data/something/frames/156918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling squeezable strawberry jam from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108345", "images": ["AURORA/data/something/frames/190435/first.jpg", "AURORA/data/something/frames/190435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108346", "images": ["AURORA/data/something/frames/65470/first.jpg", "AURORA/data/something/frames/65470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108347", "images": ["AURORA/data/something/frames/80418/first.jpg", "AURORA/data/something/frames/80418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108348", "images": ["AURORA/data/something/frames/85952/first.jpg", "AURORA/data/something/frames/85952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papers into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108349", "images": ["AURORA/data/something/frames/128222/first.jpg", "AURORA/data/something/frames/128222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108350", "images": ["AURORA/data/something/frames/146559/first.jpg", "AURORA/data/something/frames/146559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading black pepper onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108351", "images": ["AURORA/data/something/frames/28957/first.jpg", "AURORA/data/something/frames/28957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bond paper out of mini cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108352", "images": ["AURORA/data/something/frames/69274/first.jpg", "AURORA/data/something/frames/69274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a hair brush out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108353", "images": ["AURORA/data/something/frames/132942/first.jpg", "AURORA/data/something/frames/132942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pens with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000108354", "images": ["AURORA/data/something/frames/49112/first.jpg", "AURORA/data/something/frames/49112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108355", "images": ["AURORA/data/something/frames/134120/first.jpg", "AURORA/data/something/frames/134120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker into pen holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000108356", "images": ["AURORA/data/something/frames/105591/first.jpg", "AURORA/data/something/frames/105591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108357", "images": ["AURORA/data/something/frames/39260/first.jpg", "AURORA/data/something/frames/39260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000108358", "images": ["AURORA/data/something/frames/119795/first.jpg", "AURORA/data/something/frames/119795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108359", "images": ["AURORA/data/something/frames/188868/first.jpg", "AURORA/data/something/frames/188868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy gun so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108360", "images": ["AURORA/data/something/frames/209768/first.jpg", "AURORA/data/something/frames/209768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug connector into double plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108361", "images": ["AURORA/data/something/frames/60260/first.jpg", "AURORA/data/something/frames/60260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108362", "images": ["AURORA/data/something/frames/214070/first.jpg", "AURORA/data/something/frames/214070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass ball and glass ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108363", "images": ["AURORA/data/something/frames/162613/first.jpg", "AURORA/data/something/frames/162613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hotbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000108364", "images": ["AURORA/data/something/frames/183206/first.jpg", "AURORA/data/something/frames/183206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108365", "images": ["AURORA/data/something/frames/69128/first.jpg", "AURORA/data/something/frames/69128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108366", "images": ["AURORA/data/something/frames/12121/first.jpg", "AURORA/data/something/frames/12121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108367", "images": ["AURORA/data/something/frames/8609/first.jpg", "AURORA/data/something/frames/8609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a plastic bottle so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108368", "images": ["AURORA/data/something/frames/127611/first.jpg", "AURORA/data/something/frames/127611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a stickey note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108369", "images": ["AURORA/data/something/frames/190978/first.jpg", "AURORA/data/something/frames/190978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108370", "images": ["AURORA/data/something/frames/1108/first.jpg", "AURORA/data/something/frames/1108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch next to tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108371", "images": ["AURORA/data/something/frames/195604/first.jpg", "AURORA/data/something/frames/195604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108372", "images": ["AURORA/data/something/frames/58221/first.jpg", "AURORA/data/something/frames/58221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108373", "images": ["AURORA/data/something/frames/173554/first.jpg", "AURORA/data/something/frames/173554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108374", "images": ["AURORA/data/something/frames/86574/first.jpg", "AURORA/data/something/frames/86574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing iphone adapter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108375", "images": ["AURORA/data/something/frames/203418/first.jpg", "AURORA/data/something/frames/203418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a jbl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108376", "images": ["AURORA/data/something/frames/8453/first.jpg", "AURORA/data/something/frames/8453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail varnish bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108377", "images": ["AURORA/data/something/frames/86177/first.jpg", "AURORA/data/something/frames/86177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy and toy puppy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108378", "images": ["AURORA/data/something/frames/185349/first.jpg", "AURORA/data/something/frames/185349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of mail into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108379", "images": ["AURORA/data/something/frames/65325/first.jpg", "AURORA/data/something/frames/65325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108380", "images": ["AURORA/data/something/frames/158981/first.jpg", "AURORA/data/something/frames/158981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sugar pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108381", "images": ["AURORA/data/something/frames/23199/first.jpg", "AURORA/data/something/frames/23199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000108382", "images": ["AURORA/data/something/frames/16210/first.jpg", "AURORA/data/something/frames/16210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108383", "images": ["AURORA/data/something/frames/96343/first.jpg", "AURORA/data/something/frames/96343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 red spoons onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108384", "images": ["AURORA/data/something/frames/109513/first.jpg", "AURORA/data/something/frames/109513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering dvd disk"}, {"from": "gpt", "value": ""}]} +{"id": "000000108385", "images": ["AURORA/data/something/frames/42623/first.jpg", "AURORA/data/something/frames/42623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108386", "images": ["AURORA/data/something/frames/218883/first.jpg", "AURORA/data/something/frames/218883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending raw turmeric until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108387", "images": ["AURORA/data/something/frames/150037/first.jpg", "AURORA/data/something/frames/150037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000108388", "images": ["AURORA/data/something/frames/47610/first.jpg", "AURORA/data/something/frames/47610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering sunglasses with a scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000108389", "images": ["AURORA/data/something/frames/62408/first.jpg", "AURORA/data/something/frames/62408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108390", "images": ["AURORA/data/something/frames/25345/first.jpg", "AURORA/data/something/frames/25345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee onto an overturned cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108391", "images": ["AURORA/data/something/frames/82095/first.jpg", "AURORA/data/something/frames/82095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a notebook in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108392", "images": ["AURORA/data/something/frames/16096/first.jpg", "AURORA/data/something/frames/16096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108393", "images": ["AURORA/data/something/frames/210291/first.jpg", "AURORA/data/something/frames/210291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108394", "images": ["AURORA/data/something/frames/143203/first.jpg", "AURORA/data/something/frames/143203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconunt down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108395", "images": ["AURORA/data/something/frames/85082/first.jpg", "AURORA/data/something/frames/85082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sewing reel onto plastic plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108396", "images": ["AURORA/data/something/frames/32948/first.jpg", "AURORA/data/something/frames/32948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick and scissor closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108397", "images": ["AURORA/data/something/frames/53502/first.jpg", "AURORA/data/something/frames/53502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a perfume so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108398", "images": ["AURORA/data/something/frames/47844/first.jpg", "AURORA/data/something/frames/47844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108399", "images": ["AURORA/data/something/frames/93819/first.jpg", "AURORA/data/something/frames/93819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying worms in wheat bran"}, {"from": "gpt", "value": ""}]} +{"id": "000000108400", "images": ["AURORA/data/something/frames/192125/first.jpg", "AURORA/data/something/frames/192125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, mug and ball on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108401", "images": ["AURORA/data/something/frames/51946/first.jpg", "AURORA/data/something/frames/51946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pistachio off of clementine"}, {"from": "gpt", "value": ""}]} +{"id": "000000108402", "images": ["AURORA/data/something/frames/10213/first.jpg", "AURORA/data/something/frames/10213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000108403", "images": ["AURORA/data/something/frames/218945/first.jpg", "AURORA/data/something/frames/218945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing make up from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108404", "images": ["AURORA/data/something/frames/121856/first.jpg", "AURORA/data/something/frames/121856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000108405", "images": ["AURORA/data/something/frames/160811/first.jpg", "AURORA/data/something/frames/160811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108406", "images": ["AURORA/data/something/frames/146213/first.jpg", "AURORA/data/something/frames/146213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lidded cup underneath container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108407", "images": ["AURORA/data/something/frames/140304/first.jpg", "AURORA/data/something/frames/140304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108408", "images": ["AURORA/data/something/frames/6490/first.jpg", "AURORA/data/something/frames/6490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of plastic cover so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108409", "images": ["AURORA/data/something/frames/41093/first.jpg", "AURORA/data/something/frames/41093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar and jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108410", "images": ["AURORA/data/something/frames/202709/first.jpg", "AURORA/data/something/frames/202709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wooden bowl in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108411", "images": ["AURORA/data/something/frames/103278/first.jpg", "AURORA/data/something/frames/103278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil next to spiral pad notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000108412", "images": ["AURORA/data/something/frames/33722/first.jpg", "AURORA/data/something/frames/33722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hat and shoe so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108413", "images": ["AURORA/data/something/frames/4088/first.jpg", "AURORA/data/something/frames/4088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching colorful, wooden toy chicken car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108414", "images": ["AURORA/data/something/frames/198607/first.jpg", "AURORA/data/something/frames/198607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108415", "images": ["AURORA/data/something/frames/106253/first.jpg", "AURORA/data/something/frames/106253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108416", "images": ["AURORA/data/something/frames/142733/first.jpg", "AURORA/data/something/frames/142733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108417", "images": ["AURORA/data/something/frames/3676/first.jpg", "AURORA/data/something/frames/3676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) box of left side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108418", "images": ["AURORA/data/something/frames/195646/first.jpg", "AURORA/data/something/frames/195646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy car in front of plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108419", "images": ["AURORA/data/something/frames/116845/first.jpg", "AURORA/data/something/frames/116845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tube on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108420", "images": ["AURORA/data/something/frames/104829/first.jpg", "AURORA/data/something/frames/104829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000108421", "images": ["AURORA/data/something/frames/106896/first.jpg", "AURORA/data/something/frames/106896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pedestal fan"}, {"from": "gpt", "value": ""}]} +{"id": "000000108422", "images": ["AURORA/data/something/frames/182388/first.jpg", "AURORA/data/something/frames/182388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108423", "images": ["AURORA/data/something/frames/136509/first.jpg", "AURORA/data/something/frames/136509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring pure water into into another cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108424", "images": ["AURORA/data/something/frames/32117/first.jpg", "AURORA/data/something/frames/32117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108425", "images": ["AURORA/data/something/frames/75825/first.jpg", "AURORA/data/something/frames/75825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping watch onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108426", "images": ["AURORA/data/something/frames/139346/first.jpg", "AURORA/data/something/frames/139346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000108427", "images": ["AURORA/data/something/frames/145073/first.jpg", "AURORA/data/something/frames/145073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a napkin onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108428", "images": ["AURORA/data/something/frames/43387/first.jpg", "AURORA/data/something/frames/43387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic screwcap behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108429", "images": ["AURORA/data/something/frames/169346/first.jpg", "AURORA/data/something/frames/169346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108430", "images": ["AURORA/data/something/frames/217321/first.jpg", "AURORA/data/something/frames/217321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking the soap so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108431", "images": ["AURORA/data/something/frames/64181/first.jpg", "AURORA/data/something/frames/64181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting saucer underneath teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108432", "images": ["AURORA/data/something/frames/63078/first.jpg", "AURORA/data/something/frames/63078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108433", "images": ["AURORA/data/something/frames/16756/first.jpg", "AURORA/data/something/frames/16756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108434", "images": ["AURORA/data/something/frames/98624/first.jpg", "AURORA/data/something/frames/98624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from behind of paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108435", "images": ["AURORA/data/something/frames/26625/first.jpg", "AURORA/data/something/frames/26625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108436", "images": ["AURORA/data/something/frames/124696/first.jpg", "AURORA/data/something/frames/124696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box closer to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108437", "images": ["AURORA/data/something/frames/20799/first.jpg", "AURORA/data/something/frames/20799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing legos from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108438", "images": ["AURORA/data/something/frames/151870/first.jpg", "AURORA/data/something/frames/151870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108439", "images": ["AURORA/data/something/frames/52755/first.jpg", "AURORA/data/something/frames/52755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000108440", "images": ["AURORA/data/something/frames/170363/first.jpg", "AURORA/data/something/frames/170363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a hat up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108441", "images": ["AURORA/data/something/frames/171435/first.jpg", "AURORA/data/something/frames/171435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking taking one of the monkeys from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108442", "images": ["AURORA/data/something/frames/89177/first.jpg", "AURORA/data/something/frames/89177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108443", "images": ["AURORA/data/something/frames/75123/first.jpg", "AURORA/data/something/frames/75123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding baby blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108444", "images": ["AURORA/data/something/frames/201325/first.jpg", "AURORA/data/something/frames/201325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108445", "images": ["AURORA/data/something/frames/68815/first.jpg", "AURORA/data/something/frames/68815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying candle in dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108446", "images": ["AURORA/data/something/frames/120309/first.jpg", "AURORA/data/something/frames/120309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108447", "images": ["AURORA/data/something/frames/209322/first.jpg", "AURORA/data/something/frames/209322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108448", "images": ["AURORA/data/something/frames/49066/first.jpg", "AURORA/data/something/frames/49066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a stuffed toy upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108449", "images": ["AURORA/data/something/frames/19173/first.jpg", "AURORA/data/something/frames/19173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000108450", "images": ["AURORA/data/something/frames/157988/first.jpg", "AURORA/data/something/frames/157988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink toothbrush case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108451", "images": ["AURORA/data/something/frames/184393/first.jpg", "AURORA/data/something/frames/184393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108452", "images": ["AURORA/data/something/frames/166206/first.jpg", "AURORA/data/something/frames/166206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108453", "images": ["AURORA/data/something/frames/178255/first.jpg", "AURORA/data/something/frames/178255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from block"}, {"from": "gpt", "value": ""}]} +{"id": "000000108454", "images": ["AURORA/data/something/frames/83026/first.jpg", "AURORA/data/something/frames/83026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sheets into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108455", "images": ["AURORA/data/something/frames/59986/first.jpg", "AURORA/data/something/frames/59986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote control from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108456", "images": ["AURORA/data/something/frames/157769/first.jpg", "AURORA/data/something/frames/157769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108457", "images": ["AURORA/data/something/frames/106014/first.jpg", "AURORA/data/something/frames/106014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting pocket up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108458", "images": ["AURORA/data/something/frames/6912/first.jpg", "AURORA/data/something/frames/6912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mirror with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108459", "images": ["AURORA/data/something/frames/86526/first.jpg", "AURORA/data/something/frames/86526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing board, revealing basket behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108460", "images": ["AURORA/data/something/frames/97759/first.jpg", "AURORA/data/something/frames/97759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pencil sharpners onto blue spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108461", "images": ["AURORA/data/something/frames/166814/first.jpg", "AURORA/data/something/frames/166814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white king and black king closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108462", "images": ["AURORA/data/something/frames/45656/first.jpg", "AURORA/data/something/frames/45656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108463", "images": ["AURORA/data/something/frames/157430/first.jpg", "AURORA/data/something/frames/157430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108464", "images": ["AURORA/data/something/frames/146834/first.jpg", "AURORA/data/something/frames/146834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108465", "images": ["AURORA/data/something/frames/182226/first.jpg", "AURORA/data/something/frames/182226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting silverware"}, {"from": "gpt", "value": ""}]} +{"id": "000000108466", "images": ["AURORA/data/something/frames/9352/first.jpg", "AURORA/data/something/frames/9352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading lotion onto a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108467", "images": ["AURORA/data/something/frames/120474/first.jpg", "AURORA/data/something/frames/120474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108468", "images": ["AURORA/data/something/frames/139430/first.jpg", "AURORA/data/something/frames/139430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108469", "images": ["AURORA/data/something/frames/110832/first.jpg", "AURORA/data/something/frames/110832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching dog collar to door handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108470", "images": ["AURORA/data/something/frames/139064/first.jpg", "AURORA/data/something/frames/139064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering wood piece with a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108471", "images": ["AURORA/data/something/frames/23367/first.jpg", "AURORA/data/something/frames/23367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108472", "images": ["AURORA/data/something/frames/219287/first.jpg", "AURORA/data/something/frames/219287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108473", "images": ["AURORA/data/something/frames/148960/first.jpg", "AURORA/data/something/frames/148960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pencil holder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108474", "images": ["AURORA/data/something/frames/65830/first.jpg", "AURORA/data/something/frames/65830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair tie, ruler and cutlery on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108475", "images": ["AURORA/data/something/frames/113592/first.jpg", "AURORA/data/something/frames/113592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108476", "images": ["AURORA/data/something/frames/66977/first.jpg", "AURORA/data/something/frames/66977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108477", "images": ["AURORA/data/something/frames/107115/first.jpg", "AURORA/data/something/frames/107115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lid onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108478", "images": ["AURORA/data/something/frames/76152/first.jpg", "AURORA/data/something/frames/76152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stuffed animal from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108479", "images": ["AURORA/data/something/frames/126874/first.jpg", "AURORA/data/something/frames/126874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing basket, revealing cellphone behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108480", "images": ["AURORA/data/something/frames/101623/first.jpg", "AURORA/data/something/frames/101623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy tractor across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108481", "images": ["AURORA/data/something/frames/121704/first.jpg", "AURORA/data/something/frames/121704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108482", "images": ["AURORA/data/something/frames/116310/first.jpg", "AURORA/data/something/frames/116310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108483", "images": ["AURORA/data/something/frames/163368/first.jpg", "AURORA/data/something/frames/163368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108484", "images": ["AURORA/data/something/frames/129811/first.jpg", "AURORA/data/something/frames/129811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ring from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108485", "images": ["AURORA/data/something/frames/24505/first.jpg", "AURORA/data/something/frames/24505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108486", "images": ["AURORA/data/something/frames/107521/first.jpg", "AURORA/data/something/frames/107521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108487", "images": ["AURORA/data/something/frames/189987/first.jpg", "AURORA/data/something/frames/189987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting punching machine, spectacle and cigarette lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108488", "images": ["AURORA/data/something/frames/184324/first.jpg", "AURORA/data/something/frames/184324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bear into chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108489", "images": ["AURORA/data/something/frames/91995/first.jpg", "AURORA/data/something/frames/91995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108490", "images": ["AURORA/data/something/frames/190833/first.jpg", "AURORA/data/something/frames/190833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plate out of pile"}, {"from": "gpt", "value": ""}]} +{"id": "000000108491", "images": ["AURORA/data/something/frames/52669/first.jpg", "AURORA/data/something/frames/52669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into plastic lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000108492", "images": ["AURORA/data/something/frames/199199/first.jpg", "AURORA/data/something/frames/199199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) an ear of a soft toy cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000108493", "images": ["AURORA/data/something/frames/10368/first.jpg", "AURORA/data/something/frames/10368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108494", "images": ["AURORA/data/something/frames/131257/first.jpg", "AURORA/data/something/frames/131257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108495", "images": ["AURORA/data/something/frames/182488/first.jpg", "AURORA/data/something/frames/182488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108496", "images": ["AURORA/data/something/frames/77942/first.jpg", "AURORA/data/something/frames/77942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108497", "images": ["AURORA/data/something/frames/186728/first.jpg", "AURORA/data/something/frames/186728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108498", "images": ["AURORA/data/something/frames/52541/first.jpg", "AURORA/data/something/frames/52541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair brush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108499", "images": ["AURORA/data/something/frames/182589/first.jpg", "AURORA/data/something/frames/182589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pencil box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108500", "images": ["AURORA/data/something/frames/134989/first.jpg", "AURORA/data/something/frames/134989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108501", "images": ["AURORA/data/something/frames/171828/first.jpg", "AURORA/data/something/frames/171828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bismuth with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108502", "images": ["AURORA/data/something/frames/63668/first.jpg", "AURORA/data/something/frames/63668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting handkerchief into front storage kneeroom"}, {"from": "gpt", "value": ""}]} +{"id": "000000108503", "images": ["AURORA/data/something/frames/151660/first.jpg", "AURORA/data/something/frames/151660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 rings"}, {"from": "gpt", "value": ""}]} +{"id": "000000108504", "images": ["AURORA/data/something/frames/153448/first.jpg", "AURORA/data/something/frames/153448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000108505", "images": ["AURORA/data/something/frames/88459/first.jpg", "AURORA/data/something/frames/88459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble, badge and toy white car on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108506", "images": ["AURORA/data/something/frames/68170/first.jpg", "AURORA/data/something/frames/68170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bucket with knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000108507", "images": ["AURORA/data/something/frames/3275/first.jpg", "AURORA/data/something/frames/3275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000108508", "images": ["AURORA/data/something/frames/25161/first.jpg", "AURORA/data/something/frames/25161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fruits into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108509", "images": ["AURORA/data/something/frames/15037/first.jpg", "AURORA/data/something/frames/15037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108510", "images": ["AURORA/data/something/frames/150935/first.jpg", "AURORA/data/something/frames/150935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108511", "images": ["AURORA/data/something/frames/92970/first.jpg", "AURORA/data/something/frames/92970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wallet with a coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108512", "images": ["AURORA/data/something/frames/28673/first.jpg", "AURORA/data/something/frames/28673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108513", "images": ["AURORA/data/something/frames/98959/first.jpg", "AURORA/data/something/frames/98959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108514", "images": ["AURORA/data/something/frames/208574/first.jpg", "AURORA/data/something/frames/208574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108515", "images": ["AURORA/data/something/frames/58865/first.jpg", "AURORA/data/something/frames/58865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling ipod from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108516", "images": ["AURORA/data/something/frames/37011/first.jpg", "AURORA/data/something/frames/37011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a smartphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108517", "images": ["AURORA/data/something/frames/159097/first.jpg", "AURORA/data/something/frames/159097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a plastic packaging on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108518", "images": ["AURORA/data/something/frames/208829/first.jpg", "AURORA/data/something/frames/208829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto worktop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108519", "images": ["AURORA/data/something/frames/20089/first.jpg", "AURORA/data/something/frames/20089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108520", "images": ["AURORA/data/something/frames/116066/first.jpg", "AURORA/data/something/frames/116066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a minion toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108521", "images": ["AURORA/data/something/frames/7629/first.jpg", "AURORA/data/something/frames/7629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cleaning wipes on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108522", "images": ["AURORA/data/something/frames/43206/first.jpg", "AURORA/data/something/frames/43206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a travel magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000108523", "images": ["AURORA/data/something/frames/150872/first.jpg", "AURORA/data/something/frames/150872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108524", "images": ["AURORA/data/something/frames/179908/first.jpg", "AURORA/data/something/frames/179908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting juice bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000108525", "images": ["AURORA/data/something/frames/52921/first.jpg", "AURORA/data/something/frames/52921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000108526", "images": ["AURORA/data/something/frames/40317/first.jpg", "AURORA/data/something/frames/40317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bucket with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108527", "images": ["AURORA/data/something/frames/135269/first.jpg", "AURORA/data/something/frames/135269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pasta out of plastic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108528", "images": ["AURORA/data/something/frames/114565/first.jpg", "AURORA/data/something/frames/114565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping glass bottle with liquid over, so liquid falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108529", "images": ["AURORA/data/something/frames/164250/first.jpg", "AURORA/data/something/frames/164250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108530", "images": ["AURORA/data/something/frames/153325/first.jpg", "AURORA/data/something/frames/153325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wallet behind a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108531", "images": ["AURORA/data/something/frames/73066/first.jpg", "AURORA/data/something/frames/73066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cable into a power bank but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108532", "images": ["AURORA/data/something/frames/87379/first.jpg", "AURORA/data/something/frames/87379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000108533", "images": ["AURORA/data/something/frames/40872/first.jpg", "AURORA/data/something/frames/40872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black pouch bag from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108534", "images": ["AURORA/data/something/frames/47805/first.jpg", "AURORA/data/something/frames/47805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108535", "images": ["AURORA/data/something/frames/36388/first.jpg", "AURORA/data/something/frames/36388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with letter on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108536", "images": ["AURORA/data/something/frames/196898/first.jpg", "AURORA/data/something/frames/196898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spectacles up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108537", "images": ["AURORA/data/something/frames/152638/first.jpg", "AURORA/data/something/frames/152638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red hair band and white toy car away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108538", "images": ["AURORA/data/something/frames/123285/first.jpg", "AURORA/data/something/frames/123285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108539", "images": ["AURORA/data/something/frames/60601/first.jpg", "AURORA/data/something/frames/60601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108540", "images": ["AURORA/data/something/frames/203627/first.jpg", "AURORA/data/something/frames/203627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda and box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108541", "images": ["AURORA/data/something/frames/78199/first.jpg", "AURORA/data/something/frames/78199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000108542", "images": ["AURORA/data/something/frames/195177/first.jpg", "AURORA/data/something/frames/195177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing battery from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108543", "images": ["AURORA/data/something/frames/87244/first.jpg", "AURORA/data/something/frames/87244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker and paper clip holder away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108544", "images": ["AURORA/data/something/frames/80557/first.jpg", "AURORA/data/something/frames/80557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108545", "images": ["AURORA/data/something/frames/207110/first.jpg", "AURORA/data/something/frames/207110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000108546", "images": ["AURORA/data/something/frames/85937/first.jpg", "AURORA/data/something/frames/85937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blushes in their makeup boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000108547", "images": ["AURORA/data/something/frames/40806/first.jpg", "AURORA/data/something/frames/40806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming adaptor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108548", "images": ["AURORA/data/something/frames/80824/first.jpg", "AURORA/data/something/frames/80824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plate upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108549", "images": ["AURORA/data/something/frames/118843/first.jpg", "AURORA/data/something/frames/118843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108550", "images": ["AURORA/data/something/frames/185213/first.jpg", "AURORA/data/something/frames/185213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading sauce onto roti"}, {"from": "gpt", "value": ""}]} +{"id": "000000108551", "images": ["AURORA/data/something/frames/57991/first.jpg", "AURORA/data/something/frames/57991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108552", "images": ["AURORA/data/something/frames/176810/first.jpg", "AURORA/data/something/frames/176810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108553", "images": ["AURORA/data/something/frames/157977/first.jpg", "AURORA/data/something/frames/157977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white board clip away from red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108554", "images": ["AURORA/data/something/frames/92003/first.jpg", "AURORA/data/something/frames/92003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glas and glas away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108555", "images": ["AURORA/data/something/frames/108541/first.jpg", "AURORA/data/something/frames/108541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cape to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108556", "images": ["AURORA/data/something/frames/166449/first.jpg", "AURORA/data/something/frames/166449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108557", "images": ["AURORA/data/something/frames/61946/first.jpg", "AURORA/data/something/frames/61946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000108558", "images": ["AURORA/data/something/frames/51951/first.jpg", "AURORA/data/something/frames/51951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching grill with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108559", "images": ["AURORA/data/something/frames/185560/first.jpg", "AURORA/data/something/frames/185560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108560", "images": ["AURORA/data/something/frames/170009/first.jpg", "AURORA/data/something/frames/170009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108561", "images": ["AURORA/data/something/frames/102140/first.jpg", "AURORA/data/something/frames/102140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108562", "images": ["AURORA/data/something/frames/98147/first.jpg", "AURORA/data/something/frames/98147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen away from a battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000108563", "images": ["AURORA/data/something/frames/157914/first.jpg", "AURORA/data/something/frames/157914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying plastic spoon in salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108564", "images": ["AURORA/data/something/frames/204297/first.jpg", "AURORA/data/something/frames/204297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a spoon to a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108565", "images": ["AURORA/data/something/frames/76590/first.jpg", "AURORA/data/something/frames/76590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pink water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108566", "images": ["AURORA/data/something/frames/15685/first.jpg", "AURORA/data/something/frames/15685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye kajal closer to pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000108567", "images": ["AURORA/data/something/frames/214573/first.jpg", "AURORA/data/something/frames/214573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108568", "images": ["AURORA/data/something/frames/173544/first.jpg", "AURORA/data/something/frames/173544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108569", "images": ["AURORA/data/something/frames/208792/first.jpg", "AURORA/data/something/frames/208792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000108570", "images": ["AURORA/data/something/frames/218594/first.jpg", "AURORA/data/something/frames/218594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pumpkin cookie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108571", "images": ["AURORA/data/something/frames/99929/first.jpg", "AURORA/data/something/frames/99929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking waterbottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108572", "images": ["AURORA/data/something/frames/172077/first.jpg", "AURORA/data/something/frames/172077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box behind trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000108573", "images": ["AURORA/data/something/frames/160784/first.jpg", "AURORA/data/something/frames/160784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000108574", "images": ["AURORA/data/something/frames/40758/first.jpg", "AURORA/data/something/frames/40758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108575", "images": ["AURORA/data/something/frames/211109/first.jpg", "AURORA/data/something/frames/211109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108576", "images": ["AURORA/data/something/frames/140946/first.jpg", "AURORA/data/something/frames/140946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning an espadrille upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108577", "images": ["AURORA/data/something/frames/29922/first.jpg", "AURORA/data/something/frames/29922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108578", "images": ["AURORA/data/something/frames/184373/first.jpg", "AURORA/data/something/frames/184373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming water tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108579", "images": ["AURORA/data/something/frames/131392/first.jpg", "AURORA/data/something/frames/131392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming brown bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108580", "images": ["AURORA/data/something/frames/208367/first.jpg", "AURORA/data/something/frames/208367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108581", "images": ["AURORA/data/something/frames/66213/first.jpg", "AURORA/data/something/frames/66213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paperclip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108582", "images": ["AURORA/data/something/frames/216525/first.jpg", "AURORA/data/something/frames/216525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108583", "images": ["AURORA/data/something/frames/86136/first.jpg", "AURORA/data/something/frames/86136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000108584", "images": ["AURORA/data/something/frames/158341/first.jpg", "AURORA/data/something/frames/158341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle of water from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108585", "images": ["AURORA/data/something/frames/159873/first.jpg", "AURORA/data/something/frames/159873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking battery so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108586", "images": ["AURORA/data/something/frames/48978/first.jpg", "AURORA/data/something/frames/48978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming induction cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000108587", "images": ["AURORA/data/something/frames/159309/first.jpg", "AURORA/data/something/frames/159309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108588", "images": ["AURORA/data/something/frames/61007/first.jpg", "AURORA/data/something/frames/61007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108589", "images": ["AURORA/data/something/frames/8561/first.jpg", "AURORA/data/something/frames/8561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing helmet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108590", "images": ["AURORA/data/something/frames/195644/first.jpg", "AURORA/data/something/frames/195644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108591", "images": ["AURORA/data/something/frames/48045/first.jpg", "AURORA/data/something/frames/48045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108592", "images": ["AURORA/data/something/frames/191905/first.jpg", "AURORA/data/something/frames/191905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into dough"}, {"from": "gpt", "value": ""}]} +{"id": "000000108593", "images": ["AURORA/data/something/frames/15634/first.jpg", "AURORA/data/something/frames/15634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108594", "images": ["AURORA/data/something/frames/108250/first.jpg", "AURORA/data/something/frames/108250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking picture so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108595", "images": ["AURORA/data/something/frames/135871/first.jpg", "AURORA/data/something/frames/135871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a tablet with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108596", "images": ["AURORA/data/something/frames/10514/first.jpg", "AURORA/data/something/frames/10514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sun glass from car seat"}, {"from": "gpt", "value": ""}]} +{"id": "000000108597", "images": ["AURORA/data/something/frames/175148/first.jpg", "AURORA/data/something/frames/175148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a doorknob of a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000108598", "images": ["AURORA/data/something/frames/148274/first.jpg", "AURORA/data/something/frames/148274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108599", "images": ["AURORA/data/something/frames/188343/first.jpg", "AURORA/data/something/frames/188343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling dirty clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108600", "images": ["AURORA/data/something/frames/54216/first.jpg", "AURORA/data/something/frames/54216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pen holder with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108601", "images": ["AURORA/data/something/frames/135409/first.jpg", "AURORA/data/something/frames/135409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108602", "images": ["AURORA/data/something/frames/133032/first.jpg", "AURORA/data/something/frames/133032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108603", "images": ["AURORA/data/something/frames/37393/first.jpg", "AURORA/data/something/frames/37393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lever of wine key"}, {"from": "gpt", "value": ""}]} +{"id": "000000108604", "images": ["AURORA/data/something/frames/3775/first.jpg", "AURORA/data/something/frames/3775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108605", "images": ["AURORA/data/something/frames/152407/first.jpg", "AURORA/data/something/frames/152407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cap and box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108606", "images": ["AURORA/data/something/frames/7232/first.jpg", "AURORA/data/something/frames/7232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108607", "images": ["AURORA/data/something/frames/188097/first.jpg", "AURORA/data/something/frames/188097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering dedorant with tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108608", "images": ["AURORA/data/something/frames/101083/first.jpg", "AURORA/data/something/frames/101083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108609", "images": ["AURORA/data/something/frames/64543/first.jpg", "AURORA/data/something/frames/64543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book closer to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108610", "images": ["AURORA/data/something/frames/141287/first.jpg", "AURORA/data/something/frames/141287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108611", "images": ["AURORA/data/something/frames/172379/first.jpg", "AURORA/data/something/frames/172379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip bam away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108612", "images": ["AURORA/data/something/frames/140845/first.jpg", "AURORA/data/something/frames/140845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming indoor plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108613", "images": ["AURORA/data/something/frames/51125/first.jpg", "AURORA/data/something/frames/51125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108614", "images": ["AURORA/data/something/frames/67849/first.jpg", "AURORA/data/something/frames/67849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108615", "images": ["AURORA/data/something/frames/153291/first.jpg", "AURORA/data/something/frames/153291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container lid from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108616", "images": ["AURORA/data/something/frames/123168/first.jpg", "AURORA/data/something/frames/123168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from ring with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108617", "images": ["AURORA/data/something/frames/40445/first.jpg", "AURORA/data/something/frames/40445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a perfume bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108618", "images": ["AURORA/data/something/frames/71971/first.jpg", "AURORA/data/something/frames/71971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a hairbrush with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108619", "images": ["AURORA/data/something/frames/144277/first.jpg", "AURORA/data/something/frames/144277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pencil without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108620", "images": ["AURORA/data/something/frames/58925/first.jpg", "AURORA/data/something/frames/58925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108621", "images": ["AURORA/data/something/frames/26080/first.jpg", "AURORA/data/something/frames/26080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108622", "images": ["AURORA/data/something/frames/184409/first.jpg", "AURORA/data/something/frames/184409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: car colliding with car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108623", "images": ["AURORA/data/something/frames/17491/first.jpg", "AURORA/data/something/frames/17491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cellphone cord into outlet strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000108624", "images": ["AURORA/data/something/frames/214465/first.jpg", "AURORA/data/something/frames/214465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting slime into tuperware"}, {"from": "gpt", "value": ""}]} +{"id": "000000108625", "images": ["AURORA/data/something/frames/73785/first.jpg", "AURORA/data/something/frames/73785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on the edge of counter so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108626", "images": ["AURORA/data/something/frames/151780/first.jpg", "AURORA/data/something/frames/151780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wooden piece onto leaf of a plant which cannot support it so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108627", "images": ["AURORA/data/something/frames/123895/first.jpg", "AURORA/data/something/frames/123895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from wall light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108628", "images": ["AURORA/data/something/frames/84718/first.jpg", "AURORA/data/something/frames/84718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108629", "images": ["AURORA/data/something/frames/97818/first.jpg", "AURORA/data/something/frames/97818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering plastic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108630", "images": ["AURORA/data/something/frames/48465/first.jpg", "AURORA/data/something/frames/48465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a compact disk with a remote on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108631", "images": ["AURORA/data/something/frames/188693/first.jpg", "AURORA/data/something/frames/188693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108632", "images": ["AURORA/data/something/frames/138150/first.jpg", "AURORA/data/something/frames/138150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108633", "images": ["AURORA/data/something/frames/200654/first.jpg", "AURORA/data/something/frames/200654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a phone behind a toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000108634", "images": ["AURORA/data/something/frames/52682/first.jpg", "AURORA/data/something/frames/52682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphone into earphone jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108635", "images": ["AURORA/data/something/frames/119450/first.jpg", "AURORA/data/something/frames/119450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108636", "images": ["AURORA/data/something/frames/65937/first.jpg", "AURORA/data/something/frames/65937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108637", "images": ["AURORA/data/something/frames/206241/first.jpg", "AURORA/data/something/frames/206241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cable into portable game device but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108638", "images": ["AURORA/data/something/frames/121646/first.jpg", "AURORA/data/something/frames/121646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic container onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108639", "images": ["AURORA/data/something/frames/49034/first.jpg", "AURORA/data/something/frames/49034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108640", "images": ["AURORA/data/something/frames/102863/first.jpg", "AURORA/data/something/frames/102863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching tape to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108641", "images": ["AURORA/data/something/frames/81053/first.jpg", "AURORA/data/something/frames/81053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse closer to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000108642", "images": ["AURORA/data/something/frames/217458/first.jpg", "AURORA/data/something/frames/217458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108643", "images": ["AURORA/data/something/frames/182704/first.jpg", "AURORA/data/something/frames/182704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000108644", "images": ["AURORA/data/something/frames/115924/first.jpg", "AURORA/data/something/frames/115924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108645", "images": ["AURORA/data/something/frames/172015/first.jpg", "AURORA/data/something/frames/172015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring gravy into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108646", "images": ["AURORA/data/something/frames/38158/first.jpg", "AURORA/data/something/frames/38158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling diper out of diper pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108647", "images": ["AURORA/data/something/frames/200020/first.jpg", "AURORA/data/something/frames/200020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing ropes into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108648", "images": ["AURORA/data/something/frames/183363/first.jpg", "AURORA/data/something/frames/183363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tissue until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108649", "images": ["AURORA/data/something/frames/210220/first.jpg", "AURORA/data/something/frames/210220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108650", "images": ["AURORA/data/something/frames/50664/first.jpg", "AURORA/data/something/frames/50664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping popcorn bucket over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108651", "images": ["AURORA/data/something/frames/58550/first.jpg", "AURORA/data/something/frames/58550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and snap off blade away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108652", "images": ["AURORA/data/something/frames/78326/first.jpg", "AURORA/data/something/frames/78326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a balloon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108653", "images": ["AURORA/data/something/frames/208749/first.jpg", "AURORA/data/something/frames/208749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lever of faucet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108654", "images": ["AURORA/data/something/frames/5871/first.jpg", "AURORA/data/something/frames/5871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000108655", "images": ["AURORA/data/something/frames/43923/first.jpg", "AURORA/data/something/frames/43923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108656", "images": ["AURORA/data/something/frames/176323/first.jpg", "AURORA/data/something/frames/176323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an audio cable into headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000108657", "images": ["AURORA/data/something/frames/69489/first.jpg", "AURORA/data/something/frames/69489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching brush to vacuum hose"}, {"from": "gpt", "value": ""}]} +{"id": "000000108658", "images": ["AURORA/data/something/frames/37495/first.jpg", "AURORA/data/something/frames/37495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108659", "images": ["AURORA/data/something/frames/116421/first.jpg", "AURORA/data/something/frames/116421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108660", "images": ["AURORA/data/something/frames/92362/first.jpg", "AURORA/data/something/frames/92362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wood onto paper so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108661", "images": ["AURORA/data/something/frames/147466/first.jpg", "AURORA/data/something/frames/147466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000108662", "images": ["AURORA/data/something/frames/179064/first.jpg", "AURORA/data/something/frames/179064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker into a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108663", "images": ["AURORA/data/something/frames/41130/first.jpg", "AURORA/data/something/frames/41130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stuffed rabbit with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108664", "images": ["AURORA/data/something/frames/103242/first.jpg", "AURORA/data/something/frames/103242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper ticket into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108665", "images": ["AURORA/data/something/frames/171245/first.jpg", "AURORA/data/something/frames/171245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000108666", "images": ["AURORA/data/something/frames/204515/first.jpg", "AURORA/data/something/frames/204515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting putting a figure of monkey to other monkey figures on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108667", "images": ["AURORA/data/something/frames/215766/first.jpg", "AURORA/data/something/frames/215766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tv table over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108668", "images": ["AURORA/data/something/frames/176005/first.jpg", "AURORA/data/something/frames/176005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108669", "images": ["AURORA/data/something/frames/150752/first.jpg", "AURORA/data/something/frames/150752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108670", "images": ["AURORA/data/something/frames/175664/first.jpg", "AURORA/data/something/frames/175664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a currency note"}, {"from": "gpt", "value": ""}]} +{"id": "000000108671", "images": ["AURORA/data/something/frames/216301/first.jpg", "AURORA/data/something/frames/216301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108672", "images": ["AURORA/data/something/frames/155568/first.jpg", "AURORA/data/something/frames/155568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cheese onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000108673", "images": ["AURORA/data/something/frames/202101/first.jpg", "AURORA/data/something/frames/202101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting drinking bottle behind plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108674", "images": ["AURORA/data/something/frames/83189/first.jpg", "AURORA/data/something/frames/83189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soda off of a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108675", "images": ["AURORA/data/something/frames/215220/first.jpg", "AURORA/data/something/frames/215220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding folding"}, {"from": "gpt", "value": ""}]} +{"id": "000000108676", "images": ["AURORA/data/something/frames/134534/first.jpg", "AURORA/data/something/frames/134534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pamphlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108677", "images": ["AURORA/data/something/frames/54664/first.jpg", "AURORA/data/something/frames/54664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108678", "images": ["AURORA/data/something/frames/7568/first.jpg", "AURORA/data/something/frames/7568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to bero"}, {"from": "gpt", "value": ""}]} +{"id": "000000108679", "images": ["AURORA/data/something/frames/130272/first.jpg", "AURORA/data/something/frames/130272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108680", "images": ["AURORA/data/something/frames/100157/first.jpg", "AURORA/data/something/frames/100157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108681", "images": ["AURORA/data/something/frames/37069/first.jpg", "AURORA/data/something/frames/37069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108682", "images": ["AURORA/data/something/frames/186085/first.jpg", "AURORA/data/something/frames/186085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pin so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108683", "images": ["AURORA/data/something/frames/207801/first.jpg", "AURORA/data/something/frames/207801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 staplers onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108684", "images": ["AURORA/data/something/frames/153165/first.jpg", "AURORA/data/something/frames/153165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108685", "images": ["AURORA/data/something/frames/42974/first.jpg", "AURORA/data/something/frames/42974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper-board just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108686", "images": ["AURORA/data/something/frames/126981/first.jpg", "AURORA/data/something/frames/126981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching earphones to mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000108687", "images": ["AURORA/data/something/frames/47711/first.jpg", "AURORA/data/something/frames/47711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108688", "images": ["AURORA/data/something/frames/46003/first.jpg", "AURORA/data/something/frames/46003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plastic jar with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108689", "images": ["AURORA/data/something/frames/173725/first.jpg", "AURORA/data/something/frames/173725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108690", "images": ["AURORA/data/something/frames/106827/first.jpg", "AURORA/data/something/frames/106827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108691", "images": ["AURORA/data/something/frames/204224/first.jpg", "AURORA/data/something/frames/204224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108692", "images": ["AURORA/data/something/frames/192777/first.jpg", "AURORA/data/something/frames/192777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into red bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108693", "images": ["AURORA/data/something/frames/6741/first.jpg", "AURORA/data/something/frames/6741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting salad dressing upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108694", "images": ["AURORA/data/something/frames/89893/first.jpg", "AURORA/data/something/frames/89893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108695", "images": ["AURORA/data/something/frames/33507/first.jpg", "AURORA/data/something/frames/33507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking phone so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108696", "images": ["AURORA/data/something/frames/214451/first.jpg", "AURORA/data/something/frames/214451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) corner of notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000108697", "images": ["AURORA/data/something/frames/57344/first.jpg", "AURORA/data/something/frames/57344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind gas stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000108698", "images": ["AURORA/data/something/frames/19021/first.jpg", "AURORA/data/something/frames/19021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000108699", "images": ["AURORA/data/something/frames/216098/first.jpg", "AURORA/data/something/frames/216098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring popcorn into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108700", "images": ["AURORA/data/something/frames/206705/first.jpg", "AURORA/data/something/frames/206705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108701", "images": ["AURORA/data/something/frames/118589/first.jpg", "AURORA/data/something/frames/118589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108702", "images": ["AURORA/data/something/frames/36787/first.jpg", "AURORA/data/something/frames/36787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108703", "images": ["AURORA/data/something/frames/92656/first.jpg", "AURORA/data/something/frames/92656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering notepad with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108704", "images": ["AURORA/data/something/frames/26842/first.jpg", "AURORA/data/something/frames/26842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108705", "images": ["AURORA/data/something/frames/138613/first.jpg", "AURORA/data/something/frames/138613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108706", "images": ["AURORA/data/something/frames/201591/first.jpg", "AURORA/data/something/frames/201591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bag with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108707", "images": ["AURORA/data/something/frames/44772/first.jpg", "AURORA/data/something/frames/44772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108708", "images": ["AURORA/data/something/frames/107594/first.jpg", "AURORA/data/something/frames/107594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening black plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108709", "images": ["AURORA/data/something/frames/177364/first.jpg", "AURORA/data/something/frames/177364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108710", "images": ["AURORA/data/something/frames/158990/first.jpg", "AURORA/data/something/frames/158990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toys out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108711", "images": ["AURORA/data/something/frames/29483/first.jpg", "AURORA/data/something/frames/29483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108712", "images": ["AURORA/data/something/frames/192250/first.jpg", "AURORA/data/something/frames/192250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing soap behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108713", "images": ["AURORA/data/something/frames/202407/first.jpg", "AURORA/data/something/frames/202407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108714", "images": ["AURORA/data/something/frames/12618/first.jpg", "AURORA/data/something/frames/12618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cd stack, revealing tennis ball behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108715", "images": ["AURORA/data/something/frames/43190/first.jpg", "AURORA/data/something/frames/43190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet off of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108716", "images": ["AURORA/data/something/frames/69918/first.jpg", "AURORA/data/something/frames/69918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108717", "images": ["AURORA/data/something/frames/101034/first.jpg", "AURORA/data/something/frames/101034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white board clip with white chalk"}, {"from": "gpt", "value": ""}]} +{"id": "000000108718", "images": ["AURORA/data/something/frames/174884/first.jpg", "AURORA/data/something/frames/174884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108719", "images": ["AURORA/data/something/frames/56185/first.jpg", "AURORA/data/something/frames/56185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into a plastic"}, {"from": "gpt", "value": ""}]} +{"id": "000000108720", "images": ["AURORA/data/something/frames/206230/first.jpg", "AURORA/data/something/frames/206230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108721", "images": ["AURORA/data/something/frames/141860/first.jpg", "AURORA/data/something/frames/141860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothe into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108722", "images": ["AURORA/data/something/frames/189243/first.jpg", "AURORA/data/something/frames/189243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky note to a cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108723", "images": ["AURORA/data/something/frames/14030/first.jpg", "AURORA/data/something/frames/14030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108724", "images": ["AURORA/data/something/frames/165254/first.jpg", "AURORA/data/something/frames/165254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108725", "images": ["AURORA/data/something/frames/134716/first.jpg", "AURORA/data/something/frames/134716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duct tape closer to vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108726", "images": ["AURORA/data/something/frames/159474/first.jpg", "AURORA/data/something/frames/159474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: paint bottle colliding with paint bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108727", "images": ["AURORA/data/something/frames/43291/first.jpg", "AURORA/data/something/frames/43291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108728", "images": ["AURORA/data/something/frames/195353/first.jpg", "AURORA/data/something/frames/195353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick onto a ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108729", "images": ["AURORA/data/something/frames/24293/first.jpg", "AURORA/data/something/frames/24293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting butterfly hairclip with fly swatter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108730", "images": ["AURORA/data/something/frames/88723/first.jpg", "AURORA/data/something/frames/88723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bag in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108731", "images": ["AURORA/data/something/frames/164497/first.jpg", "AURORA/data/something/frames/164497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000108732", "images": ["AURORA/data/something/frames/143761/first.jpg", "AURORA/data/something/frames/143761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108733", "images": ["AURORA/data/something/frames/94667/first.jpg", "AURORA/data/something/frames/94667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108734", "images": ["AURORA/data/something/frames/96574/first.jpg", "AURORA/data/something/frames/96574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a car out of a parking lot"}, {"from": "gpt", "value": ""}]} +{"id": "000000108735", "images": ["AURORA/data/something/frames/6036/first.jpg", "AURORA/data/something/frames/6036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into surge protector"}, {"from": "gpt", "value": ""}]} +{"id": "000000108736", "images": ["AURORA/data/something/frames/133163/first.jpg", "AURORA/data/something/frames/133163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jewellry out of a jewellry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108737", "images": ["AURORA/data/something/frames/165153/first.jpg", "AURORA/data/something/frames/165153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power adapter into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108738", "images": ["AURORA/data/something/frames/44689/first.jpg", "AURORA/data/something/frames/44689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000108739", "images": ["AURORA/data/something/frames/155316/first.jpg", "AURORA/data/something/frames/155316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug and marker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108740", "images": ["AURORA/data/something/frames/113477/first.jpg", "AURORA/data/something/frames/113477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind control"}, {"from": "gpt", "value": ""}]} +{"id": "000000108741", "images": ["AURORA/data/something/frames/113070/first.jpg", "AURORA/data/something/frames/113070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mask with jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108742", "images": ["AURORA/data/something/frames/125957/first.jpg", "AURORA/data/something/frames/125957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffe onto a glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108743", "images": ["AURORA/data/something/frames/78802/first.jpg", "AURORA/data/something/frames/78802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring creamer into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108744", "images": ["AURORA/data/something/frames/88356/first.jpg", "AURORA/data/something/frames/88356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass next to the book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108745", "images": ["AURORA/data/something/frames/158130/first.jpg", "AURORA/data/something/frames/158130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet next to mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000108746", "images": ["AURORA/data/something/frames/215657/first.jpg", "AURORA/data/something/frames/215657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108747", "images": ["AURORA/data/something/frames/38989/first.jpg", "AURORA/data/something/frames/38989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pink hair clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108748", "images": ["AURORA/data/something/frames/66606/first.jpg", "AURORA/data/something/frames/66606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108749", "images": ["AURORA/data/something/frames/158901/first.jpg", "AURORA/data/something/frames/158901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000108750", "images": ["AURORA/data/something/frames/95719/first.jpg", "AURORA/data/something/frames/95719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into balm"}, {"from": "gpt", "value": ""}]} +{"id": "000000108751", "images": ["AURORA/data/something/frames/83527/first.jpg", "AURORA/data/something/frames/83527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pencil crayon case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108752", "images": ["AURORA/data/something/frames/127850/first.jpg", "AURORA/data/something/frames/127850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a chappal on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108753", "images": ["AURORA/data/something/frames/801/first.jpg", "AURORA/data/something/frames/801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108754", "images": ["AURORA/data/something/frames/57857/first.jpg", "AURORA/data/something/frames/57857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering usb cable with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108755", "images": ["AURORA/data/something/frames/184845/first.jpg", "AURORA/data/something/frames/184845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting doll in front of idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000108756", "images": ["AURORA/data/something/frames/24018/first.jpg", "AURORA/data/something/frames/24018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a highlighter into a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108757", "images": ["AURORA/data/something/frames/2098/first.jpg", "AURORA/data/something/frames/2098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108758", "images": ["AURORA/data/something/frames/54936/first.jpg", "AURORA/data/something/frames/54936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108759", "images": ["AURORA/data/something/frames/185106/first.jpg", "AURORA/data/something/frames/185106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into block"}, {"from": "gpt", "value": ""}]} +{"id": "000000108760", "images": ["AURORA/data/something/frames/219476/first.jpg", "AURORA/data/something/frames/219476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bar soap on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108761", "images": ["AURORA/data/something/frames/207351/first.jpg", "AURORA/data/something/frames/207351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108762", "images": ["AURORA/data/something/frames/130703/first.jpg", "AURORA/data/something/frames/130703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108763", "images": ["AURORA/data/something/frames/136255/first.jpg", "AURORA/data/something/frames/136255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt into hamper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108764", "images": ["AURORA/data/something/frames/113882/first.jpg", "AURORA/data/something/frames/113882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108765", "images": ["AURORA/data/something/frames/75486/first.jpg", "AURORA/data/something/frames/75486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108766", "images": ["AURORA/data/something/frames/77092/first.jpg", "AURORA/data/something/frames/77092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108767", "images": ["AURORA/data/something/frames/137991/first.jpg", "AURORA/data/something/frames/137991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108768", "images": ["AURORA/data/something/frames/187789/first.jpg", "AURORA/data/something/frames/187789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108769", "images": ["AURORA/data/something/frames/52622/first.jpg", "AURORA/data/something/frames/52622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving can closer to can"}, {"from": "gpt", "value": ""}]} +{"id": "000000108770", "images": ["AURORA/data/something/frames/10471/first.jpg", "AURORA/data/something/frames/10471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a flashlight so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108771", "images": ["AURORA/data/something/frames/14490/first.jpg", "AURORA/data/something/frames/14490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108772", "images": ["AURORA/data/something/frames/123295/first.jpg", "AURORA/data/something/frames/123295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coaster with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108773", "images": ["AURORA/data/something/frames/24427/first.jpg", "AURORA/data/something/frames/24427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking rocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108774", "images": ["AURORA/data/something/frames/61404/first.jpg", "AURORA/data/something/frames/61404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box onto a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000108775", "images": ["AURORA/data/something/frames/14330/first.jpg", "AURORA/data/something/frames/14330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108776", "images": ["AURORA/data/something/frames/183863/first.jpg", "AURORA/data/something/frames/183863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108777", "images": ["AURORA/data/something/frames/142849/first.jpg", "AURORA/data/something/frames/142849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting doll on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108778", "images": ["AURORA/data/something/frames/37174/first.jpg", "AURORA/data/something/frames/37174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a towel without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108779", "images": ["AURORA/data/something/frames/103102/first.jpg", "AURORA/data/something/frames/103102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a knob of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108780", "images": ["AURORA/data/something/frames/154057/first.jpg", "AURORA/data/something/frames/154057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble closer to spanner"}, {"from": "gpt", "value": ""}]} +{"id": "000000108781", "images": ["AURORA/data/something/frames/35767/first.jpg", "AURORA/data/something/frames/35767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail clippers away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108782", "images": ["AURORA/data/something/frames/14206/first.jpg", "AURORA/data/something/frames/14206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108783", "images": ["AURORA/data/something/frames/26579/first.jpg", "AURORA/data/something/frames/26579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000108784", "images": ["AURORA/data/something/frames/78118/first.jpg", "AURORA/data/something/frames/78118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108785", "images": ["AURORA/data/something/frames/205422/first.jpg", "AURORA/data/something/frames/205422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting color paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000108786", "images": ["AURORA/data/something/frames/91018/first.jpg", "AURORA/data/something/frames/91018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling flour onto sausage"}, {"from": "gpt", "value": ""}]} +{"id": "000000108787", "images": ["AURORA/data/something/frames/212599/first.jpg", "AURORA/data/something/frames/212599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000108788", "images": ["AURORA/data/something/frames/173361/first.jpg", "AURORA/data/something/frames/173361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108789", "images": ["AURORA/data/something/frames/157925/first.jpg", "AURORA/data/something/frames/157925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000108790", "images": ["AURORA/data/something/frames/127436/first.jpg", "AURORA/data/something/frames/127436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108791", "images": ["AURORA/data/something/frames/203910/first.jpg", "AURORA/data/something/frames/203910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tea infuser into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108792", "images": ["AURORA/data/something/frames/147513/first.jpg", "AURORA/data/something/frames/147513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping dental floss over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108793", "images": ["AURORA/data/something/frames/167166/first.jpg", "AURORA/data/something/frames/167166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging nightlight into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108794", "images": ["AURORA/data/something/frames/116821/first.jpg", "AURORA/data/something/frames/116821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000108795", "images": ["AURORA/data/something/frames/107752/first.jpg", "AURORA/data/something/frames/107752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paper cilp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108796", "images": ["AURORA/data/something/frames/117867/first.jpg", "AURORA/data/something/frames/117867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108797", "images": ["AURORA/data/something/frames/144230/first.jpg", "AURORA/data/something/frames/144230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking snacks packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108798", "images": ["AURORA/data/something/frames/81228/first.jpg", "AURORA/data/something/frames/81228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a $20 bill onto a cigarette pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108799", "images": ["AURORA/data/something/frames/161987/first.jpg", "AURORA/data/something/frames/161987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of shelves"}, {"from": "gpt", "value": ""}]} +{"id": "000000108800", "images": ["AURORA/data/something/frames/93214/first.jpg", "AURORA/data/something/frames/93214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108801", "images": ["AURORA/data/something/frames/81620/first.jpg", "AURORA/data/something/frames/81620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy and cylinder so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108802", "images": ["AURORA/data/something/frames/76638/first.jpg", "AURORA/data/something/frames/76638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying egg in salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108803", "images": ["AURORA/data/something/frames/86966/first.jpg", "AURORA/data/something/frames/86966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle into glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000108804", "images": ["AURORA/data/something/frames/123821/first.jpg", "AURORA/data/something/frames/123821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000108805", "images": ["AURORA/data/something/frames/67477/first.jpg", "AURORA/data/something/frames/67477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping green bowl in front of red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108806", "images": ["AURORA/data/something/frames/174556/first.jpg", "AURORA/data/something/frames/174556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108807", "images": ["AURORA/data/something/frames/143298/first.jpg", "AURORA/data/something/frames/143298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with a pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108808", "images": ["AURORA/data/something/frames/74824/first.jpg", "AURORA/data/something/frames/74824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping onion onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108809", "images": ["AURORA/data/something/frames/149791/first.jpg", "AURORA/data/something/frames/149791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and another ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108810", "images": ["AURORA/data/something/frames/61119/first.jpg", "AURORA/data/something/frames/61119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a plug extender but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108811", "images": ["AURORA/data/something/frames/27550/first.jpg", "AURORA/data/something/frames/27550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108812", "images": ["AURORA/data/something/frames/60604/first.jpg", "AURORA/data/something/frames/60604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling dvds up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108813", "images": ["AURORA/data/something/frames/100780/first.jpg", "AURORA/data/something/frames/100780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108814", "images": ["AURORA/data/something/frames/122748/first.jpg", "AURORA/data/something/frames/122748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing dvd case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108815", "images": ["AURORA/data/something/frames/20245/first.jpg", "AURORA/data/something/frames/20245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108816", "images": ["AURORA/data/something/frames/103066/first.jpg", "AURORA/data/something/frames/103066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crayon off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000108817", "images": ["AURORA/data/something/frames/117558/first.jpg", "AURORA/data/something/frames/117558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cereal box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108818", "images": ["AURORA/data/something/frames/213468/first.jpg", "AURORA/data/something/frames/213468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108819", "images": ["AURORA/data/something/frames/21906/first.jpg", "AURORA/data/something/frames/21906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mineral water"}, {"from": "gpt", "value": ""}]} +{"id": "000000108820", "images": ["AURORA/data/something/frames/145729/first.jpg", "AURORA/data/something/frames/145729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108821", "images": ["AURORA/data/something/frames/185497/first.jpg", "AURORA/data/something/frames/185497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shampoo bottler onto paperboard so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108822", "images": ["AURORA/data/something/frames/142438/first.jpg", "AURORA/data/something/frames/142438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving backpack down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108823", "images": ["AURORA/data/something/frames/108718/first.jpg", "AURORA/data/something/frames/108718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing brown paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108824", "images": ["AURORA/data/something/frames/90272/first.jpg", "AURORA/data/something/frames/90272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cup up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108825", "images": ["AURORA/data/something/frames/94933/first.jpg", "AURORA/data/something/frames/94933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning spray bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108826", "images": ["AURORA/data/something/frames/211620/first.jpg", "AURORA/data/something/frames/211620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking strawberry out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108827", "images": ["AURORA/data/something/frames/70593/first.jpg", "AURORA/data/something/frames/70593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108828", "images": ["AURORA/data/something/frames/86949/first.jpg", "AURORA/data/something/frames/86949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108829", "images": ["AURORA/data/something/frames/1056/first.jpg", "AURORA/data/something/frames/1056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 toy cars"}, {"from": "gpt", "value": ""}]} +{"id": "000000108830", "images": ["AURORA/data/something/frames/133612/first.jpg", "AURORA/data/something/frames/133612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glue stick on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108831", "images": ["AURORA/data/something/frames/24388/first.jpg", "AURORA/data/something/frames/24388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and another mug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108832", "images": ["AURORA/data/something/frames/164578/first.jpg", "AURORA/data/something/frames/164578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108833", "images": ["AURORA/data/something/frames/96267/first.jpg", "AURORA/data/something/frames/96267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toffee eclairs from jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108834", "images": ["AURORA/data/something/frames/94783/first.jpg", "AURORA/data/something/frames/94783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108835", "images": ["AURORA/data/something/frames/171329/first.jpg", "AURORA/data/something/frames/171329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108836", "images": ["AURORA/data/something/frames/25252/first.jpg", "AURORA/data/something/frames/25252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming toothpaste tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000108837", "images": ["AURORA/data/something/frames/18971/first.jpg", "AURORA/data/something/frames/18971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000108838", "images": ["AURORA/data/something/frames/145061/first.jpg", "AURORA/data/something/frames/145061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling blinds from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108839", "images": ["AURORA/data/something/frames/131427/first.jpg", "AURORA/data/something/frames/131427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108840", "images": ["AURORA/data/something/frames/9462/first.jpg", "AURORA/data/something/frames/9462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an alarm clock onto a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000108841", "images": ["AURORA/data/something/frames/16212/first.jpg", "AURORA/data/something/frames/16212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses next to remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000108842", "images": ["AURORA/data/something/frames/40301/first.jpg", "AURORA/data/something/frames/40301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108843", "images": ["AURORA/data/something/frames/128199/first.jpg", "AURORA/data/something/frames/128199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a marker upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108844", "images": ["AURORA/data/something/frames/93339/first.jpg", "AURORA/data/something/frames/93339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108845", "images": ["AURORA/data/something/frames/101158/first.jpg", "AURORA/data/something/frames/101158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning red pot holder upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108846", "images": ["AURORA/data/something/frames/97002/first.jpg", "AURORA/data/something/frames/97002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming snacks packets"}, {"from": "gpt", "value": ""}]} +{"id": "000000108847", "images": ["AURORA/data/something/frames/49914/first.jpg", "AURORA/data/something/frames/49914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bulb syringe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108848", "images": ["AURORA/data/something/frames/207257/first.jpg", "AURORA/data/something/frames/207257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling soft elmo from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108849", "images": ["AURORA/data/something/frames/106257/first.jpg", "AURORA/data/something/frames/106257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cucumber next to lemon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108850", "images": ["AURORA/data/something/frames/43492/first.jpg", "AURORA/data/something/frames/43492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glue bottle closer to camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108851", "images": ["AURORA/data/something/frames/84175/first.jpg", "AURORA/data/something/frames/84175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108852", "images": ["AURORA/data/something/frames/165145/first.jpg", "AURORA/data/something/frames/165145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic jar onto stopper so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108853", "images": ["AURORA/data/something/frames/178022/first.jpg", "AURORA/data/something/frames/178022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108854", "images": ["AURORA/data/something/frames/43117/first.jpg", "AURORA/data/something/frames/43117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cloth out of plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108855", "images": ["AURORA/data/something/frames/143297/first.jpg", "AURORA/data/something/frames/143297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dvd away from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108856", "images": ["AURORA/data/something/frames/43849/first.jpg", "AURORA/data/something/frames/43849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000108857", "images": ["AURORA/data/something/frames/62853/first.jpg", "AURORA/data/something/frames/62853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging kettle into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108858", "images": ["AURORA/data/something/frames/4163/first.jpg", "AURORA/data/something/frames/4163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a polythene cover just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108859", "images": ["AURORA/data/something/frames/175597/first.jpg", "AURORA/data/something/frames/175597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar of vitamins"}, {"from": "gpt", "value": ""}]} +{"id": "000000108860", "images": ["AURORA/data/something/frames/28130/first.jpg", "AURORA/data/something/frames/28130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 ping pong balls"}, {"from": "gpt", "value": ""}]} +{"id": "000000108861", "images": ["AURORA/data/something/frames/38038/first.jpg", "AURORA/data/something/frames/38038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108862", "images": ["AURORA/data/something/frames/130097/first.jpg", "AURORA/data/something/frames/130097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108863", "images": ["AURORA/data/something/frames/16660/first.jpg", "AURORA/data/something/frames/16660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108864", "images": ["AURORA/data/something/frames/33392/first.jpg", "AURORA/data/something/frames/33392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding news paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108865", "images": ["AURORA/data/something/frames/94406/first.jpg", "AURORA/data/something/frames/94406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, box, bam..etc into table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108866", "images": ["AURORA/data/something/frames/83769/first.jpg", "AURORA/data/something/frames/83769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing supplement bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108867", "images": ["AURORA/data/something/frames/108787/first.jpg", "AURORA/data/something/frames/108787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling yellow container from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108868", "images": ["AURORA/data/something/frames/174198/first.jpg", "AURORA/data/something/frames/174198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108869", "images": ["AURORA/data/something/frames/142549/first.jpg", "AURORA/data/something/frames/142549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming colorful scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000108870", "images": ["AURORA/data/something/frames/173320/first.jpg", "AURORA/data/something/frames/173320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pink toothbrush case with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108871", "images": ["AURORA/data/something/frames/198240/first.jpg", "AURORA/data/something/frames/198240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cracker until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108872", "images": ["AURORA/data/something/frames/147919/first.jpg", "AURORA/data/something/frames/147919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sharpener into a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108873", "images": ["AURORA/data/something/frames/40642/first.jpg", "AURORA/data/something/frames/40642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering matchbox with box cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108874", "images": ["AURORA/data/something/frames/134574/first.jpg", "AURORA/data/something/frames/134574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108875", "images": ["AURORA/data/something/frames/213036/first.jpg", "AURORA/data/something/frames/213036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108876", "images": ["AURORA/data/something/frames/148805/first.jpg", "AURORA/data/something/frames/148805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108877", "images": ["AURORA/data/something/frames/24316/first.jpg", "AURORA/data/something/frames/24316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving card up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108878", "images": ["AURORA/data/something/frames/152618/first.jpg", "AURORA/data/something/frames/152618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water"}, {"from": "gpt", "value": ""}]} +{"id": "000000108879", "images": ["AURORA/data/something/frames/103796/first.jpg", "AURORA/data/something/frames/103796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book next to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108880", "images": ["AURORA/data/something/frames/193311/first.jpg", "AURORA/data/something/frames/193311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cucumber up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108881", "images": ["AURORA/data/something/frames/93270/first.jpg", "AURORA/data/something/frames/93270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar and a small jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108882", "images": ["AURORA/data/something/frames/164342/first.jpg", "AURORA/data/something/frames/164342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hand bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108883", "images": ["AURORA/data/something/frames/216550/first.jpg", "AURORA/data/something/frames/216550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black umbrella from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108884", "images": ["AURORA/data/something/frames/75233/first.jpg", "AURORA/data/something/frames/75233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108885", "images": ["AURORA/data/something/frames/161627/first.jpg", "AURORA/data/something/frames/161627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toothbrush onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000108886", "images": ["AURORA/data/something/frames/115503/first.jpg", "AURORA/data/something/frames/115503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108887", "images": ["AURORA/data/something/frames/102189/first.jpg", "AURORA/data/something/frames/102189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting striker coin next to white board clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000108888", "images": ["AURORA/data/something/frames/109858/first.jpg", "AURORA/data/something/frames/109858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy behind toy watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108889", "images": ["AURORA/data/something/frames/67581/first.jpg", "AURORA/data/something/frames/67581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen being deflected from calculator cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000108890", "images": ["AURORA/data/something/frames/42753/first.jpg", "AURORA/data/something/frames/42753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a scooter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108891", "images": ["AURORA/data/something/frames/243/first.jpg", "AURORA/data/something/frames/243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108892", "images": ["AURORA/data/something/frames/134896/first.jpg", "AURORA/data/something/frames/134896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108893", "images": ["AURORA/data/something/frames/135745/first.jpg", "AURORA/data/something/frames/135745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108894", "images": ["AURORA/data/something/frames/99866/first.jpg", "AURORA/data/something/frames/99866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108895", "images": ["AURORA/data/something/frames/68449/first.jpg", "AURORA/data/something/frames/68449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting usb cable on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108896", "images": ["AURORA/data/something/frames/77861/first.jpg", "AURORA/data/something/frames/77861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108897", "images": ["AURORA/data/something/frames/51251/first.jpg", "AURORA/data/something/frames/51251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108898", "images": ["AURORA/data/something/frames/132122/first.jpg", "AURORA/data/something/frames/132122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108899", "images": ["AURORA/data/something/frames/156573/first.jpg", "AURORA/data/something/frames/156573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping papertowel over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108900", "images": ["AURORA/data/something/frames/41003/first.jpg", "AURORA/data/something/frames/41003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108901", "images": ["AURORA/data/something/frames/133719/first.jpg", "AURORA/data/something/frames/133719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling a cup of water onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108902", "images": ["AURORA/data/something/frames/46610/first.jpg", "AURORA/data/something/frames/46610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy bar on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108903", "images": ["AURORA/data/something/frames/80272/first.jpg", "AURORA/data/something/frames/80272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass behind flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000108904", "images": ["AURORA/data/something/frames/174923/first.jpg", "AURORA/data/something/frames/174923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cups from a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108905", "images": ["AURORA/data/something/frames/135948/first.jpg", "AURORA/data/something/frames/135948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a key with a note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108906", "images": ["AURORA/data/something/frames/216965/first.jpg", "AURORA/data/something/frames/216965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000108907", "images": ["AURORA/data/something/frames/138102/first.jpg", "AURORA/data/something/frames/138102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting squeezable strawberry jam on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108908", "images": ["AURORA/data/something/frames/30162/first.jpg", "AURORA/data/something/frames/30162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108909", "images": ["AURORA/data/something/frames/210799/first.jpg", "AURORA/data/something/frames/210799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a sheet out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108910", "images": ["AURORA/data/something/frames/218522/first.jpg", "AURORA/data/something/frames/218522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000108911", "images": ["AURORA/data/something/frames/79291/first.jpg", "AURORA/data/something/frames/79291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108912", "images": ["AURORA/data/something/frames/97247/first.jpg", "AURORA/data/something/frames/97247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tumbler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108913", "images": ["AURORA/data/something/frames/38152/first.jpg", "AURORA/data/something/frames/38152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a peanut can with a pringles can on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108914", "images": ["AURORA/data/something/frames/12954/first.jpg", "AURORA/data/something/frames/12954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing gift cover just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108915", "images": ["AURORA/data/something/frames/142533/first.jpg", "AURORA/data/something/frames/142533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fridge magnet upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108916", "images": ["AURORA/data/something/frames/39937/first.jpg", "AURORA/data/something/frames/39937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin next to other coins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108917", "images": ["AURORA/data/something/frames/170459/first.jpg", "AURORA/data/something/frames/170459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin into pen stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108918", "images": ["AURORA/data/something/frames/34120/first.jpg", "AURORA/data/something/frames/34120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108919", "images": ["AURORA/data/something/frames/195933/first.jpg", "AURORA/data/something/frames/195933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108920", "images": ["AURORA/data/something/frames/42455/first.jpg", "AURORA/data/something/frames/42455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing yellow paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108921", "images": ["AURORA/data/something/frames/181183/first.jpg", "AURORA/data/something/frames/181183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lipstick out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108922", "images": ["AURORA/data/something/frames/172416/first.jpg", "AURORA/data/something/frames/172416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cable into a desktop microphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000108923", "images": ["AURORA/data/something/frames/22359/first.jpg", "AURORA/data/something/frames/22359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108924", "images": ["AURORA/data/something/frames/146754/first.jpg", "AURORA/data/something/frames/146754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108925", "images": ["AURORA/data/something/frames/160596/first.jpg", "AURORA/data/something/frames/160596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and hitting another cup so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108926", "images": ["AURORA/data/something/frames/200199/first.jpg", "AURORA/data/something/frames/200199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pants into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108927", "images": ["AURORA/data/something/frames/34833/first.jpg", "AURORA/data/something/frames/34833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108928", "images": ["AURORA/data/something/frames/152539/first.jpg", "AURORA/data/something/frames/152539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying globe toy on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108929", "images": ["AURORA/data/something/frames/44181/first.jpg", "AURORA/data/something/frames/44181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108930", "images": ["AURORA/data/something/frames/18454/first.jpg", "AURORA/data/something/frames/18454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108931", "images": ["AURORA/data/something/frames/193554/first.jpg", "AURORA/data/something/frames/193554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker from behind of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108932", "images": ["AURORA/data/something/frames/39486/first.jpg", "AURORA/data/something/frames/39486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108933", "images": ["AURORA/data/something/frames/171804/first.jpg", "AURORA/data/something/frames/171804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing packaging handkerchiefs off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108934", "images": ["AURORA/data/something/frames/59078/first.jpg", "AURORA/data/something/frames/59078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108935", "images": ["AURORA/data/something/frames/127072/first.jpg", "AURORA/data/something/frames/127072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending lid so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108936", "images": ["AURORA/data/something/frames/220290/first.jpg", "AURORA/data/something/frames/220290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000108937", "images": ["AURORA/data/something/frames/165011/first.jpg", "AURORA/data/something/frames/165011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting coffee cup with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108938", "images": ["AURORA/data/something/frames/45510/first.jpg", "AURORA/data/something/frames/45510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking eggs out of a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108939", "images": ["AURORA/data/something/frames/71980/first.jpg", "AURORA/data/something/frames/71980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108940", "images": ["AURORA/data/something/frames/163353/first.jpg", "AURORA/data/something/frames/163353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108941", "images": ["AURORA/data/something/frames/139447/first.jpg", "AURORA/data/something/frames/139447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing belt from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108942", "images": ["AURORA/data/something/frames/100279/first.jpg", "AURORA/data/something/frames/100279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108943", "images": ["AURORA/data/something/frames/199979/first.jpg", "AURORA/data/something/frames/199979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing glasses into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108944", "images": ["AURORA/data/something/frames/79793/first.jpg", "AURORA/data/something/frames/79793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108945", "images": ["AURORA/data/something/frames/57831/first.jpg", "AURORA/data/something/frames/57831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning aim toothpaste upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108946", "images": ["AURORA/data/something/frames/202308/first.jpg", "AURORA/data/something/frames/202308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen drive down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108947", "images": ["AURORA/data/something/frames/91037/first.jpg", "AURORA/data/something/frames/91037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108948", "images": ["AURORA/data/something/frames/132863/first.jpg", "AURORA/data/something/frames/132863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108949", "images": ["AURORA/data/something/frames/134426/first.jpg", "AURORA/data/something/frames/134426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cellphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108950", "images": ["AURORA/data/something/frames/157009/first.jpg", "AURORA/data/something/frames/157009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108951", "images": ["AURORA/data/something/frames/60951/first.jpg", "AURORA/data/something/frames/60951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cloth just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108952", "images": ["AURORA/data/something/frames/133456/first.jpg", "AURORA/data/something/frames/133456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108953", "images": ["AURORA/data/something/frames/43980/first.jpg", "AURORA/data/something/frames/43980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108954", "images": ["AURORA/data/something/frames/186794/first.jpg", "AURORA/data/something/frames/186794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing crayon with crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108955", "images": ["AURORA/data/something/frames/212126/first.jpg", "AURORA/data/something/frames/212126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a water bottle onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108956", "images": ["AURORA/data/something/frames/212147/first.jpg", "AURORA/data/something/frames/212147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book near other books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108957", "images": ["AURORA/data/something/frames/136541/first.jpg", "AURORA/data/something/frames/136541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108958", "images": ["AURORA/data/something/frames/163786/first.jpg", "AURORA/data/something/frames/163786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from sardine fishes with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108959", "images": ["AURORA/data/something/frames/184693/first.jpg", "AURORA/data/something/frames/184693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet in front of a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000108960", "images": ["AURORA/data/something/frames/198752/first.jpg", "AURORA/data/something/frames/198752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108961", "images": ["AURORA/data/something/frames/185685/first.jpg", "AURORA/data/something/frames/185685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping animal feed up with container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108962", "images": ["AURORA/data/something/frames/190654/first.jpg", "AURORA/data/something/frames/190654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108963", "images": ["AURORA/data/something/frames/137367/first.jpg", "AURORA/data/something/frames/137367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108964", "images": ["AURORA/data/something/frames/8727/first.jpg", "AURORA/data/something/frames/8727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108965", "images": ["AURORA/data/something/frames/121345/first.jpg", "AURORA/data/something/frames/121345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching water pipe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108966", "images": ["AURORA/data/something/frames/217024/first.jpg", "AURORA/data/something/frames/217024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cotton so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108967", "images": ["AURORA/data/something/frames/42680/first.jpg", "AURORA/data/something/frames/42680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting inhaler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108968", "images": ["AURORA/data/something/frames/8521/first.jpg", "AURORA/data/something/frames/8521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging lamp into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108969", "images": ["AURORA/data/something/frames/209341/first.jpg", "AURORA/data/something/frames/209341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108970", "images": ["AURORA/data/something/frames/98052/first.jpg", "AURORA/data/something/frames/98052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108971", "images": ["AURORA/data/something/frames/80258/first.jpg", "AURORA/data/something/frames/80258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108972", "images": ["AURORA/data/something/frames/51935/first.jpg", "AURORA/data/something/frames/51935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108973", "images": ["AURORA/data/something/frames/175806/first.jpg", "AURORA/data/something/frames/175806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000108974", "images": ["AURORA/data/something/frames/198351/first.jpg", "AURORA/data/something/frames/198351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil box colliding with anothe box and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108975", "images": ["AURORA/data/something/frames/149009/first.jpg", "AURORA/data/something/frames/149009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with box on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108976", "images": ["AURORA/data/something/frames/56887/first.jpg", "AURORA/data/something/frames/56887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white board clip away from green toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000108977", "images": ["AURORA/data/something/frames/180388/first.jpg", "AURORA/data/something/frames/180388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an extension cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000108978", "images": ["AURORA/data/something/frames/149450/first.jpg", "AURORA/data/something/frames/149450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping biscuit packet into plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108979", "images": ["AURORA/data/something/frames/8067/first.jpg", "AURORA/data/something/frames/8067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wallet colliding with wallet and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108980", "images": ["AURORA/data/something/frames/118461/first.jpg", "AURORA/data/something/frames/118461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing pendrive behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108981", "images": ["AURORA/data/something/frames/61093/first.jpg", "AURORA/data/something/frames/61093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cloth onto apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000108982", "images": ["AURORA/data/something/frames/102982/first.jpg", "AURORA/data/something/frames/102982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bowl with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108983", "images": ["AURORA/data/something/frames/84145/first.jpg", "AURORA/data/something/frames/84145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108984", "images": ["AURORA/data/something/frames/67640/first.jpg", "AURORA/data/something/frames/67640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hat from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108985", "images": ["AURORA/data/something/frames/66915/first.jpg", "AURORA/data/something/frames/66915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cupcake case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108986", "images": ["AURORA/data/something/frames/8806/first.jpg", "AURORA/data/something/frames/8806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a play block from a group of play blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108987", "images": ["AURORA/data/something/frames/119998/first.jpg", "AURORA/data/something/frames/119998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108988", "images": ["AURORA/data/something/frames/6216/first.jpg", "AURORA/data/something/frames/6216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wireless mouse with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108989", "images": ["AURORA/data/something/frames/200105/first.jpg", "AURORA/data/something/frames/200105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking yogurt so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108990", "images": ["AURORA/data/something/frames/169768/first.jpg", "AURORA/data/something/frames/169768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle and toy globe on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108991", "images": ["AURORA/data/something/frames/111483/first.jpg", "AURORA/data/something/frames/111483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving match box and a nail polish bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108992", "images": ["AURORA/data/something/frames/205828/first.jpg", "AURORA/data/something/frames/205828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tipex-maus up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108993", "images": ["AURORA/data/something/frames/218695/first.jpg", "AURORA/data/something/frames/218695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing one face mask from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108994", "images": ["AURORA/data/something/frames/5693/first.jpg", "AURORA/data/something/frames/5693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container and container so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108995", "images": ["AURORA/data/something/frames/187174/first.jpg", "AURORA/data/something/frames/187174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticky note to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108996", "images": ["AURORA/data/something/frames/188939/first.jpg", "AURORA/data/something/frames/188939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking onion"}, {"from": "gpt", "value": ""}]} +{"id": "000000108997", "images": ["AURORA/data/something/frames/90365/first.jpg", "AURORA/data/something/frames/90365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lemon out of the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108998", "images": ["AURORA/data/something/frames/131264/first.jpg", "AURORA/data/something/frames/131264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108999", "images": ["AURORA/data/something/frames/173234/first.jpg", "AURORA/data/something/frames/173234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109000", "images": ["AURORA/data/something/frames/220768/first.jpg", "AURORA/data/something/frames/220768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tumbler with water over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109001", "images": ["AURORA/data/something/frames/118320/first.jpg", "AURORA/data/something/frames/118320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109002", "images": ["AURORA/data/something/frames/93258/first.jpg", "AURORA/data/something/frames/93258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a drawer with a hanger"}, {"from": "gpt", "value": ""}]} +{"id": "000000109003", "images": ["AURORA/data/something/frames/162797/first.jpg", "AURORA/data/something/frames/162797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a matchbox closer to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109004", "images": ["AURORA/data/something/frames/156105/first.jpg", "AURORA/data/something/frames/156105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon onto lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109005", "images": ["AURORA/data/something/frames/174605/first.jpg", "AURORA/data/something/frames/174605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109006", "images": ["AURORA/data/something/frames/60238/first.jpg", "AURORA/data/something/frames/60238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling matches from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109007", "images": ["AURORA/data/something/frames/78492/first.jpg", "AURORA/data/something/frames/78492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into electric socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109008", "images": ["AURORA/data/something/frames/132348/first.jpg", "AURORA/data/something/frames/132348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109009", "images": ["AURORA/data/something/frames/43582/first.jpg", "AURORA/data/something/frames/43582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109010", "images": ["AURORA/data/something/frames/30540/first.jpg", "AURORA/data/something/frames/30540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a candle with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109011", "images": ["AURORA/data/something/frames/155260/first.jpg", "AURORA/data/something/frames/155260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000109012", "images": ["AURORA/data/something/frames/168107/first.jpg", "AURORA/data/something/frames/168107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109013", "images": ["AURORA/data/something/frames/47072/first.jpg", "AURORA/data/something/frames/47072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from behind of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109014", "images": ["AURORA/data/something/frames/101132/first.jpg", "AURORA/data/something/frames/101132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109015", "images": ["AURORA/data/something/frames/107128/first.jpg", "AURORA/data/something/frames/107128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pillow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109016", "images": ["AURORA/data/something/frames/79933/first.jpg", "AURORA/data/something/frames/79933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering baloon with beanie"}, {"from": "gpt", "value": ""}]} +{"id": "000000109017", "images": ["AURORA/data/something/frames/69479/first.jpg", "AURORA/data/something/frames/69479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting remote up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109018", "images": ["AURORA/data/something/frames/109579/first.jpg", "AURORA/data/something/frames/109579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000109019", "images": ["AURORA/data/something/frames/53410/first.jpg", "AURORA/data/something/frames/53410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto carpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109020", "images": ["AURORA/data/something/frames/19814/first.jpg", "AURORA/data/something/frames/19814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tissue out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109021", "images": ["AURORA/data/something/frames/174542/first.jpg", "AURORA/data/something/frames/174542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor, adapter and usb light on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109022", "images": ["AURORA/data/something/frames/62822/first.jpg", "AURORA/data/something/frames/62822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing ruler behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109023", "images": ["AURORA/data/something/frames/19690/first.jpg", "AURORA/data/something/frames/19690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109024", "images": ["AURORA/data/something/frames/3478/first.jpg", "AURORA/data/something/frames/3478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109025", "images": ["AURORA/data/something/frames/189646/first.jpg", "AURORA/data/something/frames/189646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tangerine to group of tangerines"}, {"from": "gpt", "value": ""}]} +{"id": "000000109026", "images": ["AURORA/data/something/frames/191791/first.jpg", "AURORA/data/something/frames/191791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109027", "images": ["AURORA/data/something/frames/44574/first.jpg", "AURORA/data/something/frames/44574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a lightning cable to a power adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109028", "images": ["AURORA/data/something/frames/146689/first.jpg", "AURORA/data/something/frames/146689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109029", "images": ["AURORA/data/something/frames/68053/first.jpg", "AURORA/data/something/frames/68053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle onto kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000109030", "images": ["AURORA/data/something/frames/100418/first.jpg", "AURORA/data/something/frames/100418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109031", "images": ["AURORA/data/something/frames/139190/first.jpg", "AURORA/data/something/frames/139190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109032", "images": ["AURORA/data/something/frames/128319/first.jpg", "AURORA/data/something/frames/128319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing usb cable into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109033", "images": ["AURORA/data/something/frames/169676/first.jpg", "AURORA/data/something/frames/169676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bin with a paper toilet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109034", "images": ["AURORA/data/something/frames/106347/first.jpg", "AURORA/data/something/frames/106347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109035", "images": ["AURORA/data/something/frames/38481/first.jpg", "AURORA/data/something/frames/38481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a book with another book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109036", "images": ["AURORA/data/something/frames/44366/first.jpg", "AURORA/data/something/frames/44366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of clock without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109037", "images": ["AURORA/data/something/frames/8414/first.jpg", "AURORA/data/something/frames/8414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109038", "images": ["AURORA/data/something/frames/142638/first.jpg", "AURORA/data/something/frames/142638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing can from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109039", "images": ["AURORA/data/something/frames/112031/first.jpg", "AURORA/data/something/frames/112031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering ball with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109040", "images": ["AURORA/data/something/frames/8518/first.jpg", "AURORA/data/something/frames/8518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing keys behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109041", "images": ["AURORA/data/something/frames/106711/first.jpg", "AURORA/data/something/frames/106711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000109042", "images": ["AURORA/data/something/frames/125726/first.jpg", "AURORA/data/something/frames/125726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109043", "images": ["AURORA/data/something/frames/77634/first.jpg", "AURORA/data/something/frames/77634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electrical plug into an electrical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109044", "images": ["AURORA/data/something/frames/164800/first.jpg", "AURORA/data/something/frames/164800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spatula next to pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000109045", "images": ["AURORA/data/something/frames/75034/first.jpg", "AURORA/data/something/frames/75034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109046", "images": ["AURORA/data/something/frames/37108/first.jpg", "AURORA/data/something/frames/37108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a pepper grinder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109047", "images": ["AURORA/data/something/frames/146281/first.jpg", "AURORA/data/something/frames/146281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109048", "images": ["AURORA/data/something/frames/23836/first.jpg", "AURORA/data/something/frames/23836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109049", "images": ["AURORA/data/something/frames/95340/first.jpg", "AURORA/data/something/frames/95340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying an egg on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109050", "images": ["AURORA/data/something/frames/44683/first.jpg", "AURORA/data/something/frames/44683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from battery with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109051", "images": ["AURORA/data/something/frames/162135/first.jpg", "AURORA/data/something/frames/162135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109052", "images": ["AURORA/data/something/frames/37190/first.jpg", "AURORA/data/something/frames/37190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109053", "images": ["AURORA/data/something/frames/203782/first.jpg", "AURORA/data/something/frames/203782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone next to pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000109054", "images": ["AURORA/data/something/frames/85675/first.jpg", "AURORA/data/something/frames/85675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with bowl on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109055", "images": ["AURORA/data/something/frames/194649/first.jpg", "AURORA/data/something/frames/194649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109056", "images": ["AURORA/data/something/frames/525/first.jpg", "AURORA/data/something/frames/525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candle in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109057", "images": ["AURORA/data/something/frames/49031/first.jpg", "AURORA/data/something/frames/49031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking apple corer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109058", "images": ["AURORA/data/something/frames/43075/first.jpg", "AURORA/data/something/frames/43075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109059", "images": ["AURORA/data/something/frames/93371/first.jpg", "AURORA/data/something/frames/93371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette into player"}, {"from": "gpt", "value": ""}]} +{"id": "000000109060", "images": ["AURORA/data/something/frames/25948/first.jpg", "AURORA/data/something/frames/25948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 books onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109061", "images": ["AURORA/data/something/frames/139468/first.jpg", "AURORA/data/something/frames/139468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging chwrger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109062", "images": ["AURORA/data/something/frames/27675/first.jpg", "AURORA/data/something/frames/27675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109063", "images": ["AURORA/data/something/frames/91942/first.jpg", "AURORA/data/something/frames/91942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109064", "images": ["AURORA/data/something/frames/66458/first.jpg", "AURORA/data/something/frames/66458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109065", "images": ["AURORA/data/something/frames/64664/first.jpg", "AURORA/data/something/frames/64664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109066", "images": ["AURORA/data/something/frames/110234/first.jpg", "AURORA/data/something/frames/110234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting green colour bowl up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109067", "images": ["AURORA/data/something/frames/35249/first.jpg", "AURORA/data/something/frames/35249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping torch next to shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109068", "images": ["AURORA/data/something/frames/71829/first.jpg", "AURORA/data/something/frames/71829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying 3d postit on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109069", "images": ["AURORA/data/something/frames/136244/first.jpg", "AURORA/data/something/frames/136244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper knot out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109070", "images": ["AURORA/data/something/frames/207204/first.jpg", "AURORA/data/something/frames/207204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving microscope and coin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109071", "images": ["AURORA/data/something/frames/67242/first.jpg", "AURORA/data/something/frames/67242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109072", "images": ["AURORA/data/something/frames/106378/first.jpg", "AURORA/data/something/frames/106378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109073", "images": ["AURORA/data/something/frames/134678/first.jpg", "AURORA/data/something/frames/134678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109074", "images": ["AURORA/data/something/frames/192168/first.jpg", "AURORA/data/something/frames/192168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109075", "images": ["AURORA/data/something/frames/100919/first.jpg", "AURORA/data/something/frames/100919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109076", "images": ["AURORA/data/something/frames/122743/first.jpg", "AURORA/data/something/frames/122743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cup with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109077", "images": ["AURORA/data/something/frames/97407/first.jpg", "AURORA/data/something/frames/97407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from water tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109078", "images": ["AURORA/data/something/frames/126852/first.jpg", "AURORA/data/something/frames/126852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a hairbrush from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109079", "images": ["AURORA/data/something/frames/201780/first.jpg", "AURORA/data/something/frames/201780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet away from magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109080", "images": ["AURORA/data/something/frames/179514/first.jpg", "AURORA/data/something/frames/179514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109081", "images": ["AURORA/data/something/frames/79288/first.jpg", "AURORA/data/something/frames/79288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting new papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000109082", "images": ["AURORA/data/something/frames/151453/first.jpg", "AURORA/data/something/frames/151453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hairbands onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000109083", "images": ["AURORA/data/something/frames/35222/first.jpg", "AURORA/data/something/frames/35222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an envelope onto a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109084", "images": ["AURORA/data/something/frames/3689/first.jpg", "AURORA/data/something/frames/3689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109085", "images": ["AURORA/data/something/frames/26199/first.jpg", "AURORA/data/something/frames/26199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling candy mints up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109086", "images": ["AURORA/data/something/frames/191525/first.jpg", "AURORA/data/something/frames/191525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109087", "images": ["AURORA/data/something/frames/118077/first.jpg", "AURORA/data/something/frames/118077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109088", "images": ["AURORA/data/something/frames/68425/first.jpg", "AURORA/data/something/frames/68425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109089", "images": ["AURORA/data/something/frames/215010/first.jpg", "AURORA/data/something/frames/215010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lemon behind doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000109090", "images": ["AURORA/data/something/frames/158485/first.jpg", "AURORA/data/something/frames/158485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109091", "images": ["AURORA/data/something/frames/210183/first.jpg", "AURORA/data/something/frames/210183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109092", "images": ["AURORA/data/something/frames/109456/first.jpg", "AURORA/data/something/frames/109456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109093", "images": ["AURORA/data/something/frames/61941/first.jpg", "AURORA/data/something/frames/61941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109094", "images": ["AURORA/data/something/frames/66776/first.jpg", "AURORA/data/something/frames/66776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109095", "images": ["AURORA/data/something/frames/86490/first.jpg", "AURORA/data/something/frames/86490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag away from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109096", "images": ["AURORA/data/something/frames/116195/first.jpg", "AURORA/data/something/frames/116195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glasses case so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109097", "images": ["AURORA/data/something/frames/197923/first.jpg", "AURORA/data/something/frames/197923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109098", "images": ["AURORA/data/something/frames/50709/first.jpg", "AURORA/data/something/frames/50709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109099", "images": ["AURORA/data/something/frames/77440/first.jpg", "AURORA/data/something/frames/77440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109100", "images": ["AURORA/data/something/frames/127304/first.jpg", "AURORA/data/something/frames/127304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting laptop with mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109101", "images": ["AURORA/data/something/frames/51233/first.jpg", "AURORA/data/something/frames/51233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading sugar onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109102", "images": ["AURORA/data/something/frames/55263/first.jpg", "AURORA/data/something/frames/55263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109103", "images": ["AURORA/data/something/frames/108444/first.jpg", "AURORA/data/something/frames/108444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109104", "images": ["AURORA/data/something/frames/35962/first.jpg", "AURORA/data/something/frames/35962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000109105", "images": ["AURORA/data/something/frames/188208/first.jpg", "AURORA/data/something/frames/188208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading choclate ice cream onto the bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000109106", "images": ["AURORA/data/something/frames/141123/first.jpg", "AURORA/data/something/frames/141123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109107", "images": ["AURORA/data/something/frames/7288/first.jpg", "AURORA/data/something/frames/7288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking stapler out of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109108", "images": ["AURORA/data/something/frames/27141/first.jpg", "AURORA/data/something/frames/27141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109109", "images": ["AURORA/data/something/frames/17649/first.jpg", "AURORA/data/something/frames/17649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109110", "images": ["AURORA/data/something/frames/124332/first.jpg", "AURORA/data/something/frames/124332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and pencil closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109111", "images": ["AURORA/data/something/frames/103213/first.jpg", "AURORA/data/something/frames/103213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109112", "images": ["AURORA/data/something/frames/76987/first.jpg", "AURORA/data/something/frames/76987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109113", "images": ["AURORA/data/something/frames/182605/first.jpg", "AURORA/data/something/frames/182605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ereaser into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109114", "images": ["AURORA/data/something/frames/26761/first.jpg", "AURORA/data/something/frames/26761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissue box onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109115", "images": ["AURORA/data/something/frames/216172/first.jpg", "AURORA/data/something/frames/216172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109116", "images": ["AURORA/data/something/frames/173729/first.jpg", "AURORA/data/something/frames/173729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teacup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109117", "images": ["AURORA/data/something/frames/59376/first.jpg", "AURORA/data/something/frames/59376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping card over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109118", "images": ["AURORA/data/something/frames/115882/first.jpg", "AURORA/data/something/frames/115882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving camera away from dry erase board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109119", "images": ["AURORA/data/something/frames/41439/first.jpg", "AURORA/data/something/frames/41439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109120", "images": ["AURORA/data/something/frames/142572/first.jpg", "AURORA/data/something/frames/142572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109121", "images": ["AURORA/data/something/frames/201755/first.jpg", "AURORA/data/something/frames/201755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing smarthphone into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109122", "images": ["AURORA/data/something/frames/76070/first.jpg", "AURORA/data/something/frames/76070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109123", "images": ["AURORA/data/something/frames/133389/first.jpg", "AURORA/data/something/frames/133389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a knife onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109124", "images": ["AURORA/data/something/frames/24815/first.jpg", "AURORA/data/something/frames/24815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109125", "images": ["AURORA/data/something/frames/202314/first.jpg", "AURORA/data/something/frames/202314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing aluminium foil into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109126", "images": ["AURORA/data/something/frames/39687/first.jpg", "AURORA/data/something/frames/39687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candle into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109127", "images": ["AURORA/data/something/frames/37129/first.jpg", "AURORA/data/something/frames/37129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb stick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109128", "images": ["AURORA/data/something/frames/28170/first.jpg", "AURORA/data/something/frames/28170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tv remote and baby spoon bottle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109129", "images": ["AURORA/data/something/frames/181345/first.jpg", "AURORA/data/something/frames/181345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a short out of a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000109130", "images": ["AURORA/data/something/frames/24929/first.jpg", "AURORA/data/something/frames/24929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109131", "images": ["AURORA/data/something/frames/63853/first.jpg", "AURORA/data/something/frames/63853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109132", "images": ["AURORA/data/something/frames/62102/first.jpg", "AURORA/data/something/frames/62102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a box from behind of a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109133", "images": ["AURORA/data/something/frames/11178/first.jpg", "AURORA/data/something/frames/11178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109134", "images": ["AURORA/data/something/frames/146986/first.jpg", "AURORA/data/something/frames/146986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000109135", "images": ["AURORA/data/something/frames/147122/first.jpg", "AURORA/data/something/frames/147122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109136", "images": ["AURORA/data/something/frames/112391/first.jpg", "AURORA/data/something/frames/112391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109137", "images": ["AURORA/data/something/frames/68567/first.jpg", "AURORA/data/something/frames/68567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from behind of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000109138", "images": ["AURORA/data/something/frames/63756/first.jpg", "AURORA/data/something/frames/63756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109139", "images": ["AURORA/data/something/frames/110656/first.jpg", "AURORA/data/something/frames/110656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109140", "images": ["AURORA/data/something/frames/14379/first.jpg", "AURORA/data/something/frames/14379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paper with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109141", "images": ["AURORA/data/something/frames/96438/first.jpg", "AURORA/data/something/frames/96438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a plug in a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109142", "images": ["AURORA/data/something/frames/47281/first.jpg", "AURORA/data/something/frames/47281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109143", "images": ["AURORA/data/something/frames/76735/first.jpg", "AURORA/data/something/frames/76735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hanger until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109144", "images": ["AURORA/data/something/frames/86224/first.jpg", "AURORA/data/something/frames/86224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109145", "images": ["AURORA/data/something/frames/132792/first.jpg", "AURORA/data/something/frames/132792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109146", "images": ["AURORA/data/something/frames/64157/first.jpg", "AURORA/data/something/frames/64157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109147", "images": ["AURORA/data/something/frames/87048/first.jpg", "AURORA/data/something/frames/87048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dish cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109148", "images": ["AURORA/data/something/frames/44374/first.jpg", "AURORA/data/something/frames/44374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109149", "images": ["AURORA/data/something/frames/37726/first.jpg", "AURORA/data/something/frames/37726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000109150", "images": ["AURORA/data/something/frames/126083/first.jpg", "AURORA/data/something/frames/126083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109151", "images": ["AURORA/data/something/frames/168990/first.jpg", "AURORA/data/something/frames/168990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving teddy bear and stuffed toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109152", "images": ["AURORA/data/something/frames/167011/first.jpg", "AURORA/data/something/frames/167011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109153", "images": ["AURORA/data/something/frames/58448/first.jpg", "AURORA/data/something/frames/58448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109154", "images": ["AURORA/data/something/frames/157099/first.jpg", "AURORA/data/something/frames/157099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109155", "images": ["AURORA/data/something/frames/203238/first.jpg", "AURORA/data/something/frames/203238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into battery but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109156", "images": ["AURORA/data/something/frames/165344/first.jpg", "AURORA/data/something/frames/165344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking blocks so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109157", "images": ["AURORA/data/something/frames/12301/first.jpg", "AURORA/data/something/frames/12301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109158", "images": ["AURORA/data/something/frames/30826/first.jpg", "AURORA/data/something/frames/30826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying black spectacle box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109159", "images": ["AURORA/data/something/frames/85113/first.jpg", "AURORA/data/something/frames/85113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping suitcase up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109160", "images": ["AURORA/data/something/frames/193316/first.jpg", "AURORA/data/something/frames/193316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a binder clip out of a drawstring bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109161", "images": ["AURORA/data/something/frames/22079/first.jpg", "AURORA/data/something/frames/22079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109162", "images": ["AURORA/data/something/frames/218666/first.jpg", "AURORA/data/something/frames/218666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109163", "images": ["AURORA/data/something/frames/16629/first.jpg", "AURORA/data/something/frames/16629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109164", "images": ["AURORA/data/something/frames/210804/first.jpg", "AURORA/data/something/frames/210804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencils"}, {"from": "gpt", "value": ""}]} +{"id": "000000109165", "images": ["AURORA/data/something/frames/173393/first.jpg", "AURORA/data/something/frames/173393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109166", "images": ["AURORA/data/something/frames/134329/first.jpg", "AURORA/data/something/frames/134329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a jewellry box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109167", "images": ["AURORA/data/something/frames/38583/first.jpg", "AURORA/data/something/frames/38583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking orange post-it up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109168", "images": ["AURORA/data/something/frames/198001/first.jpg", "AURORA/data/something/frames/198001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sellotape down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109169", "images": ["AURORA/data/something/frames/90311/first.jpg", "AURORA/data/something/frames/90311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning orange cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109170", "images": ["AURORA/data/something/frames/211788/first.jpg", "AURORA/data/something/frames/211788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a spoon with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109171", "images": ["AURORA/data/something/frames/147302/first.jpg", "AURORA/data/something/frames/147302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screwdriver with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109172", "images": ["AURORA/data/something/frames/12303/first.jpg", "AURORA/data/something/frames/12303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wood next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000109173", "images": ["AURORA/data/something/frames/94351/first.jpg", "AURORA/data/something/frames/94351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering plastic tin with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109174", "images": ["AURORA/data/something/frames/22863/first.jpg", "AURORA/data/something/frames/22863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mobile down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109175", "images": ["AURORA/data/something/frames/193773/first.jpg", "AURORA/data/something/frames/193773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109176", "images": ["AURORA/data/something/frames/66676/first.jpg", "AURORA/data/something/frames/66676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting granola bar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109177", "images": ["AURORA/data/something/frames/11960/first.jpg", "AURORA/data/something/frames/11960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mushroom lamp on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109178", "images": ["AURORA/data/something/frames/13824/first.jpg", "AURORA/data/something/frames/13824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109179", "images": ["AURORA/data/something/frames/19813/first.jpg", "AURORA/data/something/frames/19813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109180", "images": ["AURORA/data/something/frames/113149/first.jpg", "AURORA/data/something/frames/113149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of colour pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109181", "images": ["AURORA/data/something/frames/24998/first.jpg", "AURORA/data/something/frames/24998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting can with ball on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109182", "images": ["AURORA/data/something/frames/70639/first.jpg", "AURORA/data/something/frames/70639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109183", "images": ["AURORA/data/something/frames/38104/first.jpg", "AURORA/data/something/frames/38104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109184", "images": ["AURORA/data/something/frames/18512/first.jpg", "AURORA/data/something/frames/18512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 white board clips onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109185", "images": ["AURORA/data/something/frames/15688/first.jpg", "AURORA/data/something/frames/15688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into flask"}, {"from": "gpt", "value": ""}]} +{"id": "000000109186", "images": ["AURORA/data/something/frames/98583/first.jpg", "AURORA/data/something/frames/98583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109187", "images": ["AURORA/data/something/frames/90782/first.jpg", "AURORA/data/something/frames/90782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109188", "images": ["AURORA/data/something/frames/66960/first.jpg", "AURORA/data/something/frames/66960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109189", "images": ["AURORA/data/something/frames/111010/first.jpg", "AURORA/data/something/frames/111010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109190", "images": ["AURORA/data/something/frames/45257/first.jpg", "AURORA/data/something/frames/45257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tissue box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109191", "images": ["AURORA/data/something/frames/93930/first.jpg", "AURORA/data/something/frames/93930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109192", "images": ["AURORA/data/something/frames/177788/first.jpg", "AURORA/data/something/frames/177788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ruler and masking tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109193", "images": ["AURORA/data/something/frames/214382/first.jpg", "AURORA/data/something/frames/214382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lotion tube up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109194", "images": ["AURORA/data/something/frames/134760/first.jpg", "AURORA/data/something/frames/134760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting string into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109195", "images": ["AURORA/data/something/frames/28521/first.jpg", "AURORA/data/something/frames/28521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black usb and silver usb closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109196", "images": ["AURORA/data/something/frames/101339/first.jpg", "AURORA/data/something/frames/101339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109197", "images": ["AURORA/data/something/frames/131038/first.jpg", "AURORA/data/something/frames/131038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109198", "images": ["AURORA/data/something/frames/128519/first.jpg", "AURORA/data/something/frames/128519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109199", "images": ["AURORA/data/something/frames/116932/first.jpg", "AURORA/data/something/frames/116932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109200", "images": ["AURORA/data/something/frames/192259/first.jpg", "AURORA/data/something/frames/192259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109201", "images": ["AURORA/data/something/frames/18537/first.jpg", "AURORA/data/something/frames/18537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing garlic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109202", "images": ["AURORA/data/something/frames/127415/first.jpg", "AURORA/data/something/frames/127415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109203", "images": ["AURORA/data/something/frames/146324/first.jpg", "AURORA/data/something/frames/146324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109204", "images": ["AURORA/data/something/frames/6841/first.jpg", "AURORA/data/something/frames/6841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109205", "images": ["AURORA/data/something/frames/82588/first.jpg", "AURORA/data/something/frames/82588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting water bottle with mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109206", "images": ["AURORA/data/something/frames/14041/first.jpg", "AURORA/data/something/frames/14041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wicker basket upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109207", "images": ["AURORA/data/something/frames/217242/first.jpg", "AURORA/data/something/frames/217242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a battery from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109208", "images": ["AURORA/data/something/frames/106515/first.jpg", "AURORA/data/something/frames/106515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109209", "images": ["AURORA/data/something/frames/92375/first.jpg", "AURORA/data/something/frames/92375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109210", "images": ["AURORA/data/something/frames/54356/first.jpg", "AURORA/data/something/frames/54356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000109211", "images": ["AURORA/data/something/frames/4943/first.jpg", "AURORA/data/something/frames/4943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mobile with mobile on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109212", "images": ["AURORA/data/something/frames/14736/first.jpg", "AURORA/data/something/frames/14736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coasters up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109213", "images": ["AURORA/data/something/frames/198597/first.jpg", "AURORA/data/something/frames/198597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000109214", "images": ["AURORA/data/something/frames/211179/first.jpg", "AURORA/data/something/frames/211179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering smart watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109215", "images": ["AURORA/data/something/frames/103556/first.jpg", "AURORA/data/something/frames/103556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109216", "images": ["AURORA/data/something/frames/74367/first.jpg", "AURORA/data/something/frames/74367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a magnet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109217", "images": ["AURORA/data/something/frames/15225/first.jpg", "AURORA/data/something/frames/15225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109218", "images": ["AURORA/data/something/frames/105407/first.jpg", "AURORA/data/something/frames/105407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109219", "images": ["AURORA/data/something/frames/181923/first.jpg", "AURORA/data/something/frames/181923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109220", "images": ["AURORA/data/something/frames/150169/first.jpg", "AURORA/data/something/frames/150169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping orange juice off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109221", "images": ["AURORA/data/something/frames/144541/first.jpg", "AURORA/data/something/frames/144541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glas upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109222", "images": ["AURORA/data/something/frames/89133/first.jpg", "AURORA/data/something/frames/89133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109223", "images": ["AURORA/data/something/frames/148299/first.jpg", "AURORA/data/something/frames/148299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109224", "images": ["AURORA/data/something/frames/107330/first.jpg", "AURORA/data/something/frames/107330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothpick holder with toothpicks over, so toothpicks falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109225", "images": ["AURORA/data/something/frames/41456/first.jpg", "AURORA/data/something/frames/41456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from doors with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109226", "images": ["AURORA/data/something/frames/170517/first.jpg", "AURORA/data/something/frames/170517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109227", "images": ["AURORA/data/something/frames/116390/first.jpg", "AURORA/data/something/frames/116390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plate from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109228", "images": ["AURORA/data/something/frames/72436/first.jpg", "AURORA/data/something/frames/72436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shot glass in front of a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109229", "images": ["AURORA/data/something/frames/96769/first.jpg", "AURORA/data/something/frames/96769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card behind a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109230", "images": ["AURORA/data/something/frames/181022/first.jpg", "AURORA/data/something/frames/181022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000109231", "images": ["AURORA/data/something/frames/37559/first.jpg", "AURORA/data/something/frames/37559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork from holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109232", "images": ["AURORA/data/something/frames/70282/first.jpg", "AURORA/data/something/frames/70282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cup out of a cooler."}, {"from": "gpt", "value": ""}]} +{"id": "000000109233", "images": ["AURORA/data/something/frames/214528/first.jpg", "AURORA/data/something/frames/214528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109234", "images": ["AURORA/data/something/frames/143366/first.jpg", "AURORA/data/something/frames/143366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pasta out of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109235", "images": ["AURORA/data/something/frames/83680/first.jpg", "AURORA/data/something/frames/83680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109236", "images": ["AURORA/data/something/frames/9739/first.jpg", "AURORA/data/something/frames/9739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109237", "images": ["AURORA/data/something/frames/83875/first.jpg", "AURORA/data/something/frames/83875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109238", "images": ["AURORA/data/something/frames/143114/first.jpg", "AURORA/data/something/frames/143114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109239", "images": ["AURORA/data/something/frames/107951/first.jpg", "AURORA/data/something/frames/107951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109240", "images": ["AURORA/data/something/frames/21979/first.jpg", "AURORA/data/something/frames/21979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning paper upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109241", "images": ["AURORA/data/something/frames/213964/first.jpg", "AURORA/data/something/frames/213964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109242", "images": ["AURORA/data/something/frames/64096/first.jpg", "AURORA/data/something/frames/64096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dollar bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000109243", "images": ["AURORA/data/something/frames/130052/first.jpg", "AURORA/data/something/frames/130052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109244", "images": ["AURORA/data/something/frames/111220/first.jpg", "AURORA/data/something/frames/111220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109245", "images": ["AURORA/data/something/frames/165863/first.jpg", "AURORA/data/something/frames/165863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a peg upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109246", "images": ["AURORA/data/something/frames/80430/first.jpg", "AURORA/data/something/frames/80430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109247", "images": ["AURORA/data/something/frames/77222/first.jpg", "AURORA/data/something/frames/77222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling granola bar from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109248", "images": ["AURORA/data/something/frames/181804/first.jpg", "AURORA/data/something/frames/181804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109249", "images": ["AURORA/data/something/frames/32705/first.jpg", "AURORA/data/something/frames/32705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel closer to towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109250", "images": ["AURORA/data/something/frames/162583/first.jpg", "AURORA/data/something/frames/162583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109251", "images": ["AURORA/data/something/frames/34165/first.jpg", "AURORA/data/something/frames/34165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending comb so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109252", "images": ["AURORA/data/something/frames/172183/first.jpg", "AURORA/data/something/frames/172183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a polythene cover into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109253", "images": ["AURORA/data/something/frames/111829/first.jpg", "AURORA/data/something/frames/111829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109254", "images": ["AURORA/data/something/frames/68538/first.jpg", "AURORA/data/something/frames/68538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109255", "images": ["AURORA/data/something/frames/214284/first.jpg", "AURORA/data/something/frames/214284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubberband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109256", "images": ["AURORA/data/something/frames/16329/first.jpg", "AURORA/data/something/frames/16329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle similar to other bottles on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109257", "images": ["AURORA/data/something/frames/192372/first.jpg", "AURORA/data/something/frames/192372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109258", "images": ["AURORA/data/something/frames/205405/first.jpg", "AURORA/data/something/frames/205405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000109259", "images": ["AURORA/data/something/frames/28959/first.jpg", "AURORA/data/something/frames/28959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109260", "images": ["AURORA/data/something/frames/215517/first.jpg", "AURORA/data/something/frames/215517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a charger to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109261", "images": ["AURORA/data/something/frames/125352/first.jpg", "AURORA/data/something/frames/125352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109262", "images": ["AURORA/data/something/frames/59120/first.jpg", "AURORA/data/something/frames/59120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109263", "images": ["AURORA/data/something/frames/189326/first.jpg", "AURORA/data/something/frames/189326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting blender onto base"}, {"from": "gpt", "value": ""}]} +{"id": "000000109264", "images": ["AURORA/data/something/frames/146297/first.jpg", "AURORA/data/something/frames/146297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109265", "images": ["AURORA/data/something/frames/181908/first.jpg", "AURORA/data/something/frames/181908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109266", "images": ["AURORA/data/something/frames/82817/first.jpg", "AURORA/data/something/frames/82817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bear can, revealing a cup behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109267", "images": ["AURORA/data/something/frames/197725/first.jpg", "AURORA/data/something/frames/197725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chip until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109268", "images": ["AURORA/data/something/frames/162809/first.jpg", "AURORA/data/something/frames/162809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109269", "images": ["AURORA/data/something/frames/114357/first.jpg", "AURORA/data/something/frames/114357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle onto ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000109270", "images": ["AURORA/data/something/frames/86635/first.jpg", "AURORA/data/something/frames/86635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stepstool with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109271", "images": ["AURORA/data/something/frames/1967/first.jpg", "AURORA/data/something/frames/1967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109272", "images": ["AURORA/data/something/frames/12017/first.jpg", "AURORA/data/something/frames/12017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into silly putty"}, {"from": "gpt", "value": ""}]} +{"id": "000000109273", "images": ["AURORA/data/something/frames/80712/first.jpg", "AURORA/data/something/frames/80712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109274", "images": ["AURORA/data/something/frames/134047/first.jpg", "AURORA/data/something/frames/134047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109275", "images": ["AURORA/data/something/frames/23994/first.jpg", "AURORA/data/something/frames/23994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 juice boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109276", "images": ["AURORA/data/something/frames/78574/first.jpg", "AURORA/data/something/frames/78574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000109277", "images": ["AURORA/data/something/frames/56105/first.jpg", "AURORA/data/something/frames/56105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109278", "images": ["AURORA/data/something/frames/102477/first.jpg", "AURORA/data/something/frames/102477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109279", "images": ["AURORA/data/something/frames/172812/first.jpg", "AURORA/data/something/frames/172812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sandals from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109280", "images": ["AURORA/data/something/frames/84955/first.jpg", "AURORA/data/something/frames/84955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebook into bookbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109281", "images": ["AURORA/data/something/frames/86069/first.jpg", "AURORA/data/something/frames/86069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109282", "images": ["AURORA/data/something/frames/183503/first.jpg", "AURORA/data/something/frames/183503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking essential oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109283", "images": ["AURORA/data/something/frames/206654/first.jpg", "AURORA/data/something/frames/206654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000109284", "images": ["AURORA/data/something/frames/135618/first.jpg", "AURORA/data/something/frames/135618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of electric kettle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109285", "images": ["AURORA/data/something/frames/173949/first.jpg", "AURORA/data/something/frames/173949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109286", "images": ["AURORA/data/something/frames/12671/first.jpg", "AURORA/data/something/frames/12671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) knob of timer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109287", "images": ["AURORA/data/something/frames/157206/first.jpg", "AURORA/data/something/frames/157206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from wardrobe door"}, {"from": "gpt", "value": ""}]} +{"id": "000000109288", "images": ["AURORA/data/something/frames/99084/first.jpg", "AURORA/data/something/frames/99084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving newspaper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109289", "images": ["AURORA/data/something/frames/45447/first.jpg", "AURORA/data/something/frames/45447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109290", "images": ["AURORA/data/something/frames/140049/first.jpg", "AURORA/data/something/frames/140049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109291", "images": ["AURORA/data/something/frames/187821/first.jpg", "AURORA/data/something/frames/187821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109292", "images": ["AURORA/data/something/frames/134008/first.jpg", "AURORA/data/something/frames/134008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing perfume bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109293", "images": ["AURORA/data/something/frames/217460/first.jpg", "AURORA/data/something/frames/217460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109294", "images": ["AURORA/data/something/frames/155524/first.jpg", "AURORA/data/something/frames/155524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109295", "images": ["AURORA/data/something/frames/71437/first.jpg", "AURORA/data/something/frames/71437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109296", "images": ["AURORA/data/something/frames/76652/first.jpg", "AURORA/data/something/frames/76652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping chocolate candy off of sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000109297", "images": ["AURORA/data/something/frames/91726/first.jpg", "AURORA/data/something/frames/91726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a dish cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109298", "images": ["AURORA/data/something/frames/194012/first.jpg", "AURORA/data/something/frames/194012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a fork so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109299", "images": ["AURORA/data/something/frames/55138/first.jpg", "AURORA/data/something/frames/55138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109300", "images": ["AURORA/data/something/frames/26017/first.jpg", "AURORA/data/something/frames/26017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a keybound into a glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000109301", "images": ["AURORA/data/something/frames/104134/first.jpg", "AURORA/data/something/frames/104134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109302", "images": ["AURORA/data/something/frames/106042/first.jpg", "AURORA/data/something/frames/106042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering electronic component"}, {"from": "gpt", "value": ""}]} +{"id": "000000109303", "images": ["AURORA/data/something/frames/89774/first.jpg", "AURORA/data/something/frames/89774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming violin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109304", "images": ["AURORA/data/something/frames/55799/first.jpg", "AURORA/data/something/frames/55799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote control from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109305", "images": ["AURORA/data/something/frames/131321/first.jpg", "AURORA/data/something/frames/131321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toffee box away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109306", "images": ["AURORA/data/something/frames/213858/first.jpg", "AURORA/data/something/frames/213858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone wire into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109307", "images": ["AURORA/data/something/frames/109320/first.jpg", "AURORA/data/something/frames/109320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with peppermints over, so peppermints falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109308", "images": ["AURORA/data/something/frames/130117/first.jpg", "AURORA/data/something/frames/130117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a plastic can from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109309", "images": ["AURORA/data/something/frames/45141/first.jpg", "AURORA/data/something/frames/45141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pair of sunglasses with a large wooden spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109310", "images": ["AURORA/data/something/frames/34542/first.jpg", "AURORA/data/something/frames/34542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big marble and small marble so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109311", "images": ["AURORA/data/something/frames/68482/first.jpg", "AURORA/data/something/frames/68482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clips into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109312", "images": ["AURORA/data/something/frames/19268/first.jpg", "AURORA/data/something/frames/19268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109313", "images": ["AURORA/data/something/frames/51687/first.jpg", "AURORA/data/something/frames/51687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small pillow and iphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109314", "images": ["AURORA/data/something/frames/9995/first.jpg", "AURORA/data/something/frames/9995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109315", "images": ["AURORA/data/something/frames/85696/first.jpg", "AURORA/data/something/frames/85696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109316", "images": ["AURORA/data/something/frames/54662/first.jpg", "AURORA/data/something/frames/54662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109317", "images": ["AURORA/data/something/frames/110898/first.jpg", "AURORA/data/something/frames/110898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fragrance on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109318", "images": ["AURORA/data/something/frames/68808/first.jpg", "AURORA/data/something/frames/68808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the phone into the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109319", "images": ["AURORA/data/something/frames/204029/first.jpg", "AURORA/data/something/frames/204029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering battery with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109320", "images": ["AURORA/data/something/frames/74375/first.jpg", "AURORA/data/something/frames/74375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109321", "images": ["AURORA/data/something/frames/210088/first.jpg", "AURORA/data/something/frames/210088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cell phone onto blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109322", "images": ["AURORA/data/something/frames/153319/first.jpg", "AURORA/data/something/frames/153319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of toys so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109323", "images": ["AURORA/data/something/frames/96555/first.jpg", "AURORA/data/something/frames/96555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a cap to a bottle of perfume"}, {"from": "gpt", "value": ""}]} +{"id": "000000109324", "images": ["AURORA/data/something/frames/200667/first.jpg", "AURORA/data/something/frames/200667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white envelope from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109325", "images": ["AURORA/data/something/frames/11752/first.jpg", "AURORA/data/something/frames/11752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping paint can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109326", "images": ["AURORA/data/something/frames/83572/first.jpg", "AURORA/data/something/frames/83572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shoe onto a math book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109327", "images": ["AURORA/data/something/frames/18905/first.jpg", "AURORA/data/something/frames/18905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ladder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109328", "images": ["AURORA/data/something/frames/52036/first.jpg", "AURORA/data/something/frames/52036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser closer to sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000109329", "images": ["AURORA/data/something/frames/36265/first.jpg", "AURORA/data/something/frames/36265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109330", "images": ["AURORA/data/something/frames/63280/first.jpg", "AURORA/data/something/frames/63280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109331", "images": ["AURORA/data/something/frames/185128/first.jpg", "AURORA/data/something/frames/185128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting toy zelda with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109332", "images": ["AURORA/data/something/frames/47249/first.jpg", "AURORA/data/something/frames/47249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving food container away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109333", "images": ["AURORA/data/something/frames/188682/first.jpg", "AURORA/data/something/frames/188682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109334", "images": ["AURORA/data/something/frames/128743/first.jpg", "AURORA/data/something/frames/128743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook next to piggy bank"}, {"from": "gpt", "value": ""}]} +{"id": "000000109335", "images": ["AURORA/data/something/frames/31228/first.jpg", "AURORA/data/something/frames/31228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a match box towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109336", "images": ["AURORA/data/something/frames/147609/first.jpg", "AURORA/data/something/frames/147609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109337", "images": ["AURORA/data/something/frames/81115/first.jpg", "AURORA/data/something/frames/81115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109338", "images": ["AURORA/data/something/frames/99336/first.jpg", "AURORA/data/something/frames/99336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109339", "images": ["AURORA/data/something/frames/38120/first.jpg", "AURORA/data/something/frames/38120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000109340", "images": ["AURORA/data/something/frames/196133/first.jpg", "AURORA/data/something/frames/196133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of rubber"}, {"from": "gpt", "value": ""}]} +{"id": "000000109341", "images": ["AURORA/data/something/frames/24020/first.jpg", "AURORA/data/something/frames/24020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109342", "images": ["AURORA/data/something/frames/111253/first.jpg", "AURORA/data/something/frames/111253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109343", "images": ["AURORA/data/something/frames/206082/first.jpg", "AURORA/data/something/frames/206082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109344", "images": ["AURORA/data/something/frames/71283/first.jpg", "AURORA/data/something/frames/71283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending an ointment tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109345", "images": ["AURORA/data/something/frames/126955/first.jpg", "AURORA/data/something/frames/126955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109346", "images": ["AURORA/data/something/frames/194609/first.jpg", "AURORA/data/something/frames/194609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000109347", "images": ["AURORA/data/something/frames/114003/first.jpg", "AURORA/data/something/frames/114003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109348", "images": ["AURORA/data/something/frames/144789/first.jpg", "AURORA/data/something/frames/144789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000109349", "images": ["AURORA/data/something/frames/200621/first.jpg", "AURORA/data/something/frames/200621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a teddy bear with a bandanna"}, {"from": "gpt", "value": ""}]} +{"id": "000000109350", "images": ["AURORA/data/something/frames/183531/first.jpg", "AURORA/data/something/frames/183531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sheep bottom to sheep head"}, {"from": "gpt", "value": ""}]} +{"id": "000000109351", "images": ["AURORA/data/something/frames/220502/first.jpg", "AURORA/data/something/frames/220502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking packet from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109352", "images": ["AURORA/data/something/frames/206639/first.jpg", "AURORA/data/something/frames/206639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and lotion closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109353", "images": ["AURORA/data/something/frames/103427/first.jpg", "AURORA/data/something/frames/103427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a charger from behind of a teddy bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000109354", "images": ["AURORA/data/something/frames/22564/first.jpg", "AURORA/data/something/frames/22564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening new tab in web browser"}, {"from": "gpt", "value": ""}]} +{"id": "000000109355", "images": ["AURORA/data/something/frames/190590/first.jpg", "AURORA/data/something/frames/190590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109356", "images": ["AURORA/data/something/frames/149310/first.jpg", "AURORA/data/something/frames/149310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109357", "images": ["AURORA/data/something/frames/140548/first.jpg", "AURORA/data/something/frames/140548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109358", "images": ["AURORA/data/something/frames/94333/first.jpg", "AURORA/data/something/frames/94333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayons out of crayon box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109359", "images": ["AURORA/data/something/frames/115115/first.jpg", "AURORA/data/something/frames/115115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow colour marker pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109360", "images": ["AURORA/data/something/frames/146095/first.jpg", "AURORA/data/something/frames/146095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling nail varnish onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109361", "images": ["AURORA/data/something/frames/44710/first.jpg", "AURORA/data/something/frames/44710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109362", "images": ["AURORA/data/something/frames/212010/first.jpg", "AURORA/data/something/frames/212010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000109363", "images": ["AURORA/data/something/frames/102105/first.jpg", "AURORA/data/something/frames/102105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling nail cutter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109364", "images": ["AURORA/data/something/frames/34130/first.jpg", "AURORA/data/something/frames/34130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb charger into plug converter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109365", "images": ["AURORA/data/something/frames/78968/first.jpg", "AURORA/data/something/frames/78968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109366", "images": ["AURORA/data/something/frames/159158/first.jpg", "AURORA/data/something/frames/159158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a rubberband"}, {"from": "gpt", "value": ""}]} +{"id": "000000109367", "images": ["AURORA/data/something/frames/126929/first.jpg", "AURORA/data/something/frames/126929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109368", "images": ["AURORA/data/something/frames/124382/first.jpg", "AURORA/data/something/frames/124382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000109369", "images": ["AURORA/data/something/frames/64431/first.jpg", "AURORA/data/something/frames/64431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109370", "images": ["AURORA/data/something/frames/134169/first.jpg", "AURORA/data/something/frames/134169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe, pen bag and lipstick on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109371", "images": ["AURORA/data/something/frames/2456/first.jpg", "AURORA/data/something/frames/2456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109372", "images": ["AURORA/data/something/frames/216202/first.jpg", "AURORA/data/something/frames/216202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109373", "images": ["AURORA/data/something/frames/144417/first.jpg", "AURORA/data/something/frames/144417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109374", "images": ["AURORA/data/something/frames/124406/first.jpg", "AURORA/data/something/frames/124406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cellphone away from tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109375", "images": ["AURORA/data/something/frames/18508/first.jpg", "AURORA/data/something/frames/18508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109376", "images": ["AURORA/data/something/frames/129090/first.jpg", "AURORA/data/something/frames/129090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing laundry into a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109377", "images": ["AURORA/data/something/frames/98825/first.jpg", "AURORA/data/something/frames/98825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109378", "images": ["AURORA/data/something/frames/141570/first.jpg", "AURORA/data/something/frames/141570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000109379", "images": ["AURORA/data/something/frames/106638/first.jpg", "AURORA/data/something/frames/106638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109380", "images": ["AURORA/data/something/frames/197487/first.jpg", "AURORA/data/something/frames/197487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109381", "images": ["AURORA/data/something/frames/130587/first.jpg", "AURORA/data/something/frames/130587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen to pen cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000109382", "images": ["AURORA/data/something/frames/38879/first.jpg", "AURORA/data/something/frames/38879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109383", "images": ["AURORA/data/something/frames/14653/first.jpg", "AURORA/data/something/frames/14653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote control so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109384", "images": ["AURORA/data/something/frames/132617/first.jpg", "AURORA/data/something/frames/132617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving basket and computer mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109385", "images": ["AURORA/data/something/frames/71182/first.jpg", "AURORA/data/something/frames/71182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting quarter into lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109386", "images": ["AURORA/data/something/frames/150288/first.jpg", "AURORA/data/something/frames/150288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key into a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000109387", "images": ["AURORA/data/something/frames/44543/first.jpg", "AURORA/data/something/frames/44543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109388", "images": ["AURORA/data/something/frames/199515/first.jpg", "AURORA/data/something/frames/199515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling juice onto surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109389", "images": ["AURORA/data/something/frames/159628/first.jpg", "AURORA/data/something/frames/159628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109390", "images": ["AURORA/data/something/frames/36630/first.jpg", "AURORA/data/something/frames/36630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109391", "images": ["AURORA/data/something/frames/9705/first.jpg", "AURORA/data/something/frames/9705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rubix cube from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109392", "images": ["AURORA/data/something/frames/111459/first.jpg", "AURORA/data/something/frames/111459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flower, pen and watch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109393", "images": ["AURORA/data/something/frames/145045/first.jpg", "AURORA/data/something/frames/145045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lemon onto cutting board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109394", "images": ["AURORA/data/something/frames/220639/first.jpg", "AURORA/data/something/frames/220639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching adaptor with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109395", "images": ["AURORA/data/something/frames/170461/first.jpg", "AURORA/data/something/frames/170461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green headlight from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109396", "images": ["AURORA/data/something/frames/184917/first.jpg", "AURORA/data/something/frames/184917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and ballpen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109397", "images": ["AURORA/data/something/frames/84107/first.jpg", "AURORA/data/something/frames/84107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109398", "images": ["AURORA/data/something/frames/69936/first.jpg", "AURORA/data/something/frames/69936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a minion on the edge of a rubix cube so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109399", "images": ["AURORA/data/something/frames/106175/first.jpg", "AURORA/data/something/frames/106175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109400", "images": ["AURORA/data/something/frames/61198/first.jpg", "AURORA/data/something/frames/61198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bathing soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000109401", "images": ["AURORA/data/something/frames/13825/first.jpg", "AURORA/data/something/frames/13825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109402", "images": ["AURORA/data/something/frames/127219/first.jpg", "AURORA/data/something/frames/127219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109403", "images": ["AURORA/data/something/frames/43830/first.jpg", "AURORA/data/something/frames/43830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping chocolate powder up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109404", "images": ["AURORA/data/something/frames/192169/first.jpg", "AURORA/data/something/frames/192169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109405", "images": ["AURORA/data/something/frames/14702/first.jpg", "AURORA/data/something/frames/14702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging bulb into wall receptacle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109406", "images": ["AURORA/data/something/frames/12024/first.jpg", "AURORA/data/something/frames/12024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lime into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109407", "images": ["AURORA/data/something/frames/161659/first.jpg", "AURORA/data/something/frames/161659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109408", "images": ["AURORA/data/something/frames/113311/first.jpg", "AURORA/data/something/frames/113311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet to a fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000109409", "images": ["AURORA/data/something/frames/109098/first.jpg", "AURORA/data/something/frames/109098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000109410", "images": ["AURORA/data/something/frames/101228/first.jpg", "AURORA/data/something/frames/101228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spoon with cap on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109411", "images": ["AURORA/data/something/frames/30461/first.jpg", "AURORA/data/something/frames/30461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair tie so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109412", "images": ["AURORA/data/something/frames/11795/first.jpg", "AURORA/data/something/frames/11795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with scissors on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109413", "images": ["AURORA/data/something/frames/72925/first.jpg", "AURORA/data/something/frames/72925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a marker out of a pencil holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109414", "images": ["AURORA/data/something/frames/40411/first.jpg", "AURORA/data/something/frames/40411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109415", "images": ["AURORA/data/something/frames/212650/first.jpg", "AURORA/data/something/frames/212650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stone with hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109416", "images": ["AURORA/data/something/frames/185946/first.jpg", "AURORA/data/something/frames/185946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting thread on the edge of cardboard so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109417", "images": ["AURORA/data/something/frames/54087/first.jpg", "AURORA/data/something/frames/54087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 white spoons onto duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000109418", "images": ["AURORA/data/something/frames/153558/first.jpg", "AURORA/data/something/frames/153558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into block but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109419", "images": ["AURORA/data/something/frames/21755/first.jpg", "AURORA/data/something/frames/21755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pillow without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109420", "images": ["AURORA/data/something/frames/95118/first.jpg", "AURORA/data/something/frames/95118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000109421", "images": ["AURORA/data/something/frames/182000/first.jpg", "AURORA/data/something/frames/182000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of comb without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109422", "images": ["AURORA/data/something/frames/7266/first.jpg", "AURORA/data/something/frames/7266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jar and another jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109423", "images": ["AURORA/data/something/frames/55629/first.jpg", "AURORA/data/something/frames/55629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bobby pin upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109424", "images": ["AURORA/data/something/frames/183182/first.jpg", "AURORA/data/something/frames/183182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109425", "images": ["AURORA/data/something/frames/174766/first.jpg", "AURORA/data/something/frames/174766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy idol with black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109426", "images": ["AURORA/data/something/frames/109267/first.jpg", "AURORA/data/something/frames/109267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109427", "images": ["AURORA/data/something/frames/47665/first.jpg", "AURORA/data/something/frames/47665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109428", "images": ["AURORA/data/something/frames/208876/first.jpg", "AURORA/data/something/frames/208876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109429", "images": ["AURORA/data/something/frames/64518/first.jpg", "AURORA/data/something/frames/64518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109430", "images": ["AURORA/data/something/frames/134711/first.jpg", "AURORA/data/something/frames/134711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple, spoon and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109431", "images": ["AURORA/data/something/frames/25434/first.jpg", "AURORA/data/something/frames/25434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a ukelele so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109432", "images": ["AURORA/data/something/frames/118720/first.jpg", "AURORA/data/something/frames/118720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109433", "images": ["AURORA/data/something/frames/23720/first.jpg", "AURORA/data/something/frames/23720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109434", "images": ["AURORA/data/something/frames/25683/first.jpg", "AURORA/data/something/frames/25683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109435", "images": ["AURORA/data/something/frames/99815/first.jpg", "AURORA/data/something/frames/99815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish bottle and post it notes closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109436", "images": ["AURORA/data/something/frames/9668/first.jpg", "AURORA/data/something/frames/9668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing rice into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109437", "images": ["AURORA/data/something/frames/55227/first.jpg", "AURORA/data/something/frames/55227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a clear plastic cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109438", "images": ["AURORA/data/something/frames/98080/first.jpg", "AURORA/data/something/frames/98080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the cup behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109439", "images": ["AURORA/data/something/frames/149058/first.jpg", "AURORA/data/something/frames/149058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing advertisement into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109440", "images": ["AURORA/data/something/frames/71351/first.jpg", "AURORA/data/something/frames/71351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soy sauce into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109441", "images": ["AURORA/data/something/frames/165072/first.jpg", "AURORA/data/something/frames/165072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting hand sanitizer with straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000109442", "images": ["AURORA/data/something/frames/71321/first.jpg", "AURORA/data/something/frames/71321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a gait belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109443", "images": ["AURORA/data/something/frames/111063/first.jpg", "AURORA/data/something/frames/111063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109444", "images": ["AURORA/data/something/frames/209791/first.jpg", "AURORA/data/something/frames/209791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an electrical power strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000109445", "images": ["AURORA/data/something/frames/177715/first.jpg", "AURORA/data/something/frames/177715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera clamp onto white note"}, {"from": "gpt", "value": ""}]} +{"id": "000000109446", "images": ["AURORA/data/something/frames/163230/first.jpg", "AURORA/data/something/frames/163230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing trash can from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109447", "images": ["AURORA/data/something/frames/89019/first.jpg", "AURORA/data/something/frames/89019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109448", "images": ["AURORA/data/something/frames/189832/first.jpg", "AURORA/data/something/frames/189832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with glove on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109449", "images": ["AURORA/data/something/frames/135765/first.jpg", "AURORA/data/something/frames/135765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glas on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109450", "images": ["AURORA/data/something/frames/149651/first.jpg", "AURORA/data/something/frames/149651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109451", "images": ["AURORA/data/something/frames/47752/first.jpg", "AURORA/data/something/frames/47752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109452", "images": ["AURORA/data/something/frames/154635/first.jpg", "AURORA/data/something/frames/154635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109453", "images": ["AURORA/data/something/frames/121865/first.jpg", "AURORA/data/something/frames/121865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109454", "images": ["AURORA/data/something/frames/57161/first.jpg", "AURORA/data/something/frames/57161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000109455", "images": ["AURORA/data/something/frames/41760/first.jpg", "AURORA/data/something/frames/41760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109456", "images": ["AURORA/data/something/frames/25126/first.jpg", "AURORA/data/something/frames/25126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring onto auto toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000109457", "images": ["AURORA/data/something/frames/202338/first.jpg", "AURORA/data/something/frames/202338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber-sheet so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109458", "images": ["AURORA/data/something/frames/215820/first.jpg", "AURORA/data/something/frames/215820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109459", "images": ["AURORA/data/something/frames/83363/first.jpg", "AURORA/data/something/frames/83363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shorts"}, {"from": "gpt", "value": ""}]} +{"id": "000000109460", "images": ["AURORA/data/something/frames/130852/first.jpg", "AURORA/data/something/frames/130852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109461", "images": ["AURORA/data/something/frames/22721/first.jpg", "AURORA/data/something/frames/22721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109462", "images": ["AURORA/data/something/frames/114340/first.jpg", "AURORA/data/something/frames/114340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bandanna"}, {"from": "gpt", "value": ""}]} +{"id": "000000109463", "images": ["AURORA/data/something/frames/99616/first.jpg", "AURORA/data/something/frames/99616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cds into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109464", "images": ["AURORA/data/something/frames/187253/first.jpg", "AURORA/data/something/frames/187253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple and khaki on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109465", "images": ["AURORA/data/something/frames/202896/first.jpg", "AURORA/data/something/frames/202896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109466", "images": ["AURORA/data/something/frames/191100/first.jpg", "AURORA/data/something/frames/191100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109467", "images": ["AURORA/data/something/frames/147281/first.jpg", "AURORA/data/something/frames/147281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching generator set with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109468", "images": ["AURORA/data/something/frames/136471/first.jpg", "AURORA/data/something/frames/136471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000109469", "images": ["AURORA/data/something/frames/164742/first.jpg", "AURORA/data/something/frames/164742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109470", "images": ["AURORA/data/something/frames/1919/first.jpg", "AURORA/data/something/frames/1919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109471", "images": ["AURORA/data/something/frames/190624/first.jpg", "AURORA/data/something/frames/190624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000109472", "images": ["AURORA/data/something/frames/55537/first.jpg", "AURORA/data/something/frames/55537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading perfume onto air"}, {"from": "gpt", "value": ""}]} +{"id": "000000109473", "images": ["AURORA/data/something/frames/163986/first.jpg", "AURORA/data/something/frames/163986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto large bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109474", "images": ["AURORA/data/something/frames/158480/first.jpg", "AURORA/data/something/frames/158480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109475", "images": ["AURORA/data/something/frames/218067/first.jpg", "AURORA/data/something/frames/218067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109476", "images": ["AURORA/data/something/frames/128842/first.jpg", "AURORA/data/something/frames/128842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109477", "images": ["AURORA/data/something/frames/71831/first.jpg", "AURORA/data/something/frames/71831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109478", "images": ["AURORA/data/something/frames/67254/first.jpg", "AURORA/data/something/frames/67254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a keyset away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109479", "images": ["AURORA/data/something/frames/197960/first.jpg", "AURORA/data/something/frames/197960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109480", "images": ["AURORA/data/something/frames/137210/first.jpg", "AURORA/data/something/frames/137210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nailpolish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109481", "images": ["AURORA/data/something/frames/209024/first.jpg", "AURORA/data/something/frames/209024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sheild closer to drum"}, {"from": "gpt", "value": ""}]} +{"id": "000000109482", "images": ["AURORA/data/something/frames/15038/first.jpg", "AURORA/data/something/frames/15038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109483", "images": ["AURORA/data/something/frames/85816/first.jpg", "AURORA/data/something/frames/85816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a table with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109484", "images": ["AURORA/data/something/frames/77768/first.jpg", "AURORA/data/something/frames/77768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109485", "images": ["AURORA/data/something/frames/48172/first.jpg", "AURORA/data/something/frames/48172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109486", "images": ["AURORA/data/something/frames/87488/first.jpg", "AURORA/data/something/frames/87488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe polish brush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109487", "images": ["AURORA/data/something/frames/111424/first.jpg", "AURORA/data/something/frames/111424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lid across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109488", "images": ["AURORA/data/something/frames/146707/first.jpg", "AURORA/data/something/frames/146707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000109489", "images": ["AURORA/data/something/frames/80439/first.jpg", "AURORA/data/something/frames/80439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and water container away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109490", "images": ["AURORA/data/something/frames/192204/first.jpg", "AURORA/data/something/frames/192204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden block on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109491", "images": ["AURORA/data/something/frames/13208/first.jpg", "AURORA/data/something/frames/13208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109492", "images": ["AURORA/data/something/frames/38204/first.jpg", "AURORA/data/something/frames/38204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a glass with a tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109493", "images": ["AURORA/data/something/frames/191873/first.jpg", "AURORA/data/something/frames/191873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109494", "images": ["AURORA/data/something/frames/39759/first.jpg", "AURORA/data/something/frames/39759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of cone shape object without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109495", "images": ["AURORA/data/something/frames/9894/first.jpg", "AURORA/data/something/frames/9894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spirometer upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109496", "images": ["AURORA/data/something/frames/106604/first.jpg", "AURORA/data/something/frames/106604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109497", "images": ["AURORA/data/something/frames/165780/first.jpg", "AURORA/data/something/frames/165780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coin closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109498", "images": ["AURORA/data/something/frames/171792/first.jpg", "AURORA/data/something/frames/171792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap off pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109499", "images": ["AURORA/data/something/frames/219659/first.jpg", "AURORA/data/something/frames/219659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle beer with bottle water"}, {"from": "gpt", "value": ""}]} +{"id": "000000109500", "images": ["AURORA/data/something/frames/8161/first.jpg", "AURORA/data/something/frames/8161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bag so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109501", "images": ["AURORA/data/something/frames/164310/first.jpg", "AURORA/data/something/frames/164310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chair on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109502", "images": ["AURORA/data/something/frames/137252/first.jpg", "AURORA/data/something/frames/137252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109503", "images": ["AURORA/data/something/frames/71122/first.jpg", "AURORA/data/something/frames/71122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109504", "images": ["AURORA/data/something/frames/195341/first.jpg", "AURORA/data/something/frames/195341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109505", "images": ["AURORA/data/something/frames/45391/first.jpg", "AURORA/data/something/frames/45391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note and pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109506", "images": ["AURORA/data/something/frames/44533/first.jpg", "AURORA/data/something/frames/44533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering aerrings"}, {"from": "gpt", "value": ""}]} +{"id": "000000109507", "images": ["AURORA/data/something/frames/181379/first.jpg", "AURORA/data/something/frames/181379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109508", "images": ["AURORA/data/something/frames/107474/first.jpg", "AURORA/data/something/frames/107474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening white hand gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109509", "images": ["AURORA/data/something/frames/217520/first.jpg", "AURORA/data/something/frames/217520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magazine up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109510", "images": ["AURORA/data/something/frames/180604/first.jpg", "AURORA/data/something/frames/180604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb connector into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109511", "images": ["AURORA/data/something/frames/202934/first.jpg", "AURORA/data/something/frames/202934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an envelope so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109512", "images": ["AURORA/data/something/frames/167052/first.jpg", "AURORA/data/something/frames/167052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109513", "images": ["AURORA/data/something/frames/130873/first.jpg", "AURORA/data/something/frames/130873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109514", "images": ["AURORA/data/something/frames/88277/first.jpg", "AURORA/data/something/frames/88277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking calculator from slab"}, {"from": "gpt", "value": ""}]} +{"id": "000000109515", "images": ["AURORA/data/something/frames/111996/first.jpg", "AURORA/data/something/frames/111996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking journal books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109516", "images": ["AURORA/data/something/frames/204961/first.jpg", "AURORA/data/something/frames/204961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small game card from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109517", "images": ["AURORA/data/something/frames/189691/first.jpg", "AURORA/data/something/frames/189691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000109518", "images": ["AURORA/data/something/frames/10220/first.jpg", "AURORA/data/something/frames/10220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl of water"}, {"from": "gpt", "value": ""}]} +{"id": "000000109519", "images": ["AURORA/data/something/frames/122713/first.jpg", "AURORA/data/something/frames/122713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109520", "images": ["AURORA/data/something/frames/154214/first.jpg", "AURORA/data/something/frames/154214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting juicer, bowl and bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109521", "images": ["AURORA/data/something/frames/6155/first.jpg", "AURORA/data/something/frames/6155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a jug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109522", "images": ["AURORA/data/something/frames/153417/first.jpg", "AURORA/data/something/frames/153417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle into bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000109523", "images": ["AURORA/data/something/frames/90690/first.jpg", "AURORA/data/something/frames/90690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding socks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109524", "images": ["AURORA/data/something/frames/161223/first.jpg", "AURORA/data/something/frames/161223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: marble colliding with stationary marble and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000109525", "images": ["AURORA/data/something/frames/62711/first.jpg", "AURORA/data/something/frames/62711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109526", "images": ["AURORA/data/something/frames/23992/first.jpg", "AURORA/data/something/frames/23992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109527", "images": ["AURORA/data/something/frames/202524/first.jpg", "AURORA/data/something/frames/202524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending net so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109528", "images": ["AURORA/data/something/frames/213014/first.jpg", "AURORA/data/something/frames/213014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking towel so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109529", "images": ["AURORA/data/something/frames/177542/first.jpg", "AURORA/data/something/frames/177542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109530", "images": ["AURORA/data/something/frames/52845/first.jpg", "AURORA/data/something/frames/52845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a charger onto a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109531", "images": ["AURORA/data/something/frames/63735/first.jpg", "AURORA/data/something/frames/63735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of plastic comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000109532", "images": ["AURORA/data/something/frames/162309/first.jpg", "AURORA/data/something/frames/162309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109533", "images": ["AURORA/data/something/frames/96112/first.jpg", "AURORA/data/something/frames/96112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 board clips onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109534", "images": ["AURORA/data/something/frames/215085/first.jpg", "AURORA/data/something/frames/215085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying mug on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109535", "images": ["AURORA/data/something/frames/149904/first.jpg", "AURORA/data/something/frames/149904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109536", "images": ["AURORA/data/something/frames/52437/first.jpg", "AURORA/data/something/frames/52437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smartphone and smartphone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109537", "images": ["AURORA/data/something/frames/85676/first.jpg", "AURORA/data/something/frames/85676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109538", "images": ["AURORA/data/something/frames/106178/first.jpg", "AURORA/data/something/frames/106178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109539", "images": ["AURORA/data/something/frames/185654/first.jpg", "AURORA/data/something/frames/185654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of remote without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109540", "images": ["AURORA/data/something/frames/56785/first.jpg", "AURORA/data/something/frames/56785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000109541", "images": ["AURORA/data/something/frames/71461/first.jpg", "AURORA/data/something/frames/71461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle of water from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109542", "images": ["AURORA/data/something/frames/87962/first.jpg", "AURORA/data/something/frames/87962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy train from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109543", "images": ["AURORA/data/something/frames/197100/first.jpg", "AURORA/data/something/frames/197100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and soap away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109544", "images": ["AURORA/data/something/frames/65387/first.jpg", "AURORA/data/something/frames/65387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109545", "images": ["AURORA/data/something/frames/31358/first.jpg", "AURORA/data/something/frames/31358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen to cape"}, {"from": "gpt", "value": ""}]} +{"id": "000000109546", "images": ["AURORA/data/something/frames/105409/first.jpg", "AURORA/data/something/frames/105409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser away from sharpner"}, {"from": "gpt", "value": ""}]} +{"id": "000000109547", "images": ["AURORA/data/something/frames/80748/first.jpg", "AURORA/data/something/frames/80748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109548", "images": ["AURORA/data/something/frames/37611/first.jpg", "AURORA/data/something/frames/37611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109549", "images": ["AURORA/data/something/frames/74814/first.jpg", "AURORA/data/something/frames/74814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting more forks on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109550", "images": ["AURORA/data/something/frames/121973/first.jpg", "AURORA/data/something/frames/121973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109551", "images": ["AURORA/data/something/frames/18441/first.jpg", "AURORA/data/something/frames/18441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109552", "images": ["AURORA/data/something/frames/37124/first.jpg", "AURORA/data/something/frames/37124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109553", "images": ["AURORA/data/something/frames/144247/first.jpg", "AURORA/data/something/frames/144247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109554", "images": ["AURORA/data/something/frames/147102/first.jpg", "AURORA/data/something/frames/147102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a keychain out of a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109555", "images": ["AURORA/data/something/frames/191696/first.jpg", "AURORA/data/something/frames/191696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail polish bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109556", "images": ["AURORA/data/something/frames/100646/first.jpg", "AURORA/data/something/frames/100646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glue on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109557", "images": ["AURORA/data/something/frames/8493/first.jpg", "AURORA/data/something/frames/8493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109558", "images": ["AURORA/data/something/frames/83389/first.jpg", "AURORA/data/something/frames/83389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue ballpen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109559", "images": ["AURORA/data/something/frames/81941/first.jpg", "AURORA/data/something/frames/81941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109560", "images": ["AURORA/data/something/frames/117808/first.jpg", "AURORA/data/something/frames/117808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubik cube behind card"}, {"from": "gpt", "value": ""}]} +{"id": "000000109561", "images": ["AURORA/data/something/frames/90414/first.jpg", "AURORA/data/something/frames/90414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from smart phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109562", "images": ["AURORA/data/something/frames/91105/first.jpg", "AURORA/data/something/frames/91105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kindle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109563", "images": ["AURORA/data/something/frames/3033/first.jpg", "AURORA/data/something/frames/3033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming emergency lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000109564", "images": ["AURORA/data/something/frames/120093/first.jpg", "AURORA/data/something/frames/120093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109565", "images": ["AURORA/data/something/frames/150888/first.jpg", "AURORA/data/something/frames/150888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the car key into contact"}, {"from": "gpt", "value": ""}]} +{"id": "000000109566", "images": ["AURORA/data/something/frames/114663/first.jpg", "AURORA/data/something/frames/114663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red punching machine away from hairclip"}, {"from": "gpt", "value": ""}]} +{"id": "000000109567", "images": ["AURORA/data/something/frames/83218/first.jpg", "AURORA/data/something/frames/83218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brush from many brushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109568", "images": ["AURORA/data/something/frames/106375/first.jpg", "AURORA/data/something/frames/106375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109569", "images": ["AURORA/data/something/frames/160421/first.jpg", "AURORA/data/something/frames/160421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109570", "images": ["AURORA/data/something/frames/164596/first.jpg", "AURORA/data/something/frames/164596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109571", "images": ["AURORA/data/something/frames/151607/first.jpg", "AURORA/data/something/frames/151607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lady away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109572", "images": ["AURORA/data/something/frames/171917/first.jpg", "AURORA/data/something/frames/171917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse into mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000109573", "images": ["AURORA/data/something/frames/189265/first.jpg", "AURORA/data/something/frames/189265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving orange and orange so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109574", "images": ["AURORA/data/something/frames/128250/first.jpg", "AURORA/data/something/frames/128250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000109575", "images": ["AURORA/data/something/frames/135927/first.jpg", "AURORA/data/something/frames/135927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109576", "images": ["AURORA/data/something/frames/169971/first.jpg", "AURORA/data/something/frames/169971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109577", "images": ["AURORA/data/something/frames/217444/first.jpg", "AURORA/data/something/frames/217444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning lamp upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109578", "images": ["AURORA/data/something/frames/27612/first.jpg", "AURORA/data/something/frames/27612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a spoon with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109579", "images": ["AURORA/data/something/frames/201478/first.jpg", "AURORA/data/something/frames/201478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a wrist band"}, {"from": "gpt", "value": ""}]} +{"id": "000000109580", "images": ["AURORA/data/something/frames/149533/first.jpg", "AURORA/data/something/frames/149533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109581", "images": ["AURORA/data/something/frames/49887/first.jpg", "AURORA/data/something/frames/49887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: badminton bat colliding with another badminton bat and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000109582", "images": ["AURORA/data/something/frames/31856/first.jpg", "AURORA/data/something/frames/31856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) pencil of pencil holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109583", "images": ["AURORA/data/something/frames/18598/first.jpg", "AURORA/data/something/frames/18598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000109584", "images": ["AURORA/data/something/frames/15461/first.jpg", "AURORA/data/something/frames/15461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper weight and stapler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109585", "images": ["AURORA/data/something/frames/44330/first.jpg", "AURORA/data/something/frames/44330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one penny"}, {"from": "gpt", "value": ""}]} +{"id": "000000109586", "images": ["AURORA/data/something/frames/145576/first.jpg", "AURORA/data/something/frames/145576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching hammer to handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109587", "images": ["AURORA/data/something/frames/132936/first.jpg", "AURORA/data/something/frames/132936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109588", "images": ["AURORA/data/something/frames/75760/first.jpg", "AURORA/data/something/frames/75760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging flash drive into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109589", "images": ["AURORA/data/something/frames/43854/first.jpg", "AURORA/data/something/frames/43854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cream"}, {"from": "gpt", "value": ""}]} +{"id": "000000109590", "images": ["AURORA/data/something/frames/118706/first.jpg", "AURORA/data/something/frames/118706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109591", "images": ["AURORA/data/something/frames/90333/first.jpg", "AURORA/data/something/frames/90333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into a desk organizer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109592", "images": ["AURORA/data/something/frames/126565/first.jpg", "AURORA/data/something/frames/126565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying something on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109593", "images": ["AURORA/data/something/frames/62951/first.jpg", "AURORA/data/something/frames/62951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft glove towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109594", "images": ["AURORA/data/something/frames/150153/first.jpg", "AURORA/data/something/frames/150153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109595", "images": ["AURORA/data/something/frames/100503/first.jpg", "AURORA/data/something/frames/100503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109596", "images": ["AURORA/data/something/frames/66525/first.jpg", "AURORA/data/something/frames/66525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebook into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109597", "images": ["AURORA/data/something/frames/180887/first.jpg", "AURORA/data/something/frames/180887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key part of a keychain"}, {"from": "gpt", "value": ""}]} +{"id": "000000109598", "images": ["AURORA/data/something/frames/85305/first.jpg", "AURORA/data/something/frames/85305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109599", "images": ["AURORA/data/something/frames/207122/first.jpg", "AURORA/data/something/frames/207122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000109600", "images": ["AURORA/data/something/frames/205192/first.jpg", "AURORA/data/something/frames/205192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into laptop computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109601", "images": ["AURORA/data/something/frames/48323/first.jpg", "AURORA/data/something/frames/48323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a card out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109602", "images": ["AURORA/data/something/frames/135513/first.jpg", "AURORA/data/something/frames/135513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109603", "images": ["AURORA/data/something/frames/33649/first.jpg", "AURORA/data/something/frames/33649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toothbrush closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109604", "images": ["AURORA/data/something/frames/35162/first.jpg", "AURORA/data/something/frames/35162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wrist watch next to eyeglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109605", "images": ["AURORA/data/something/frames/74681/first.jpg", "AURORA/data/something/frames/74681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109606", "images": ["AURORA/data/something/frames/192273/first.jpg", "AURORA/data/something/frames/192273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a coin off of a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109607", "images": ["AURORA/data/something/frames/160092/first.jpg", "AURORA/data/something/frames/160092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hairbands onto pink note"}, {"from": "gpt", "value": ""}]} +{"id": "000000109608", "images": ["AURORA/data/something/frames/34475/first.jpg", "AURORA/data/something/frames/34475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a phone out of hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109609", "images": ["AURORA/data/something/frames/167714/first.jpg", "AURORA/data/something/frames/167714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pencil with a ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109610", "images": ["AURORA/data/something/frames/131096/first.jpg", "AURORA/data/something/frames/131096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three books onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109611", "images": ["AURORA/data/something/frames/66395/first.jpg", "AURORA/data/something/frames/66395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming waist basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109612", "images": ["AURORA/data/something/frames/60738/first.jpg", "AURORA/data/something/frames/60738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into mug, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109613", "images": ["AURORA/data/something/frames/6240/first.jpg", "AURORA/data/something/frames/6240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109614", "images": ["AURORA/data/something/frames/208346/first.jpg", "AURORA/data/something/frames/208346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109615", "images": ["AURORA/data/something/frames/58396/first.jpg", "AURORA/data/something/frames/58396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000109616", "images": ["AURORA/data/something/frames/44257/first.jpg", "AURORA/data/something/frames/44257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plant upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109617", "images": ["AURORA/data/something/frames/35525/first.jpg", "AURORA/data/something/frames/35525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying body cent bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109618", "images": ["AURORA/data/something/frames/151544/first.jpg", "AURORA/data/something/frames/151544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109619", "images": ["AURORA/data/something/frames/75025/first.jpg", "AURORA/data/something/frames/75025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keyboard in front of backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000109620", "images": ["AURORA/data/something/frames/166698/first.jpg", "AURORA/data/something/frames/166698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109621", "images": ["AURORA/data/something/frames/123998/first.jpg", "AURORA/data/something/frames/123998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering magnifying gless with black cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109622", "images": ["AURORA/data/something/frames/134697/first.jpg", "AURORA/data/something/frames/134697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109623", "images": ["AURORA/data/something/frames/105356/first.jpg", "AURORA/data/something/frames/105356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bangle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109624", "images": ["AURORA/data/something/frames/10342/first.jpg", "AURORA/data/something/frames/10342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109625", "images": ["AURORA/data/something/frames/74411/first.jpg", "AURORA/data/something/frames/74411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing knife behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109626", "images": ["AURORA/data/something/frames/47720/first.jpg", "AURORA/data/something/frames/47720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000109627", "images": ["AURORA/data/something/frames/167210/first.jpg", "AURORA/data/something/frames/167210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rubik's cube colliding with jbl speaker and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109628", "images": ["AURORA/data/something/frames/175776/first.jpg", "AURORA/data/something/frames/175776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toothpick container closer to a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000109629", "images": ["AURORA/data/something/frames/201684/first.jpg", "AURORA/data/something/frames/201684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a deck out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109630", "images": ["AURORA/data/something/frames/214941/first.jpg", "AURORA/data/something/frames/214941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pillow next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000109631", "images": ["AURORA/data/something/frames/103887/first.jpg", "AURORA/data/something/frames/103887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109632", "images": ["AURORA/data/something/frames/148897/first.jpg", "AURORA/data/something/frames/148897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109633", "images": ["AURORA/data/something/frames/22021/first.jpg", "AURORA/data/something/frames/22021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109634", "images": ["AURORA/data/something/frames/4113/first.jpg", "AURORA/data/something/frames/4113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109635", "images": ["AURORA/data/something/frames/151883/first.jpg", "AURORA/data/something/frames/151883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lighter and a phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109636", "images": ["AURORA/data/something/frames/43438/first.jpg", "AURORA/data/something/frames/43438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hairband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109637", "images": ["AURORA/data/something/frames/57933/first.jpg", "AURORA/data/something/frames/57933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000109638", "images": ["AURORA/data/something/frames/175849/first.jpg", "AURORA/data/something/frames/175849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109639", "images": ["AURORA/data/something/frames/153553/first.jpg", "AURORA/data/something/frames/153553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109640", "images": ["AURORA/data/something/frames/195131/first.jpg", "AURORA/data/something/frames/195131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an apple away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109641", "images": ["AURORA/data/something/frames/175113/first.jpg", "AURORA/data/something/frames/175113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plant away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109642", "images": ["AURORA/data/something/frames/69425/first.jpg", "AURORA/data/something/frames/69425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000109643", "images": ["AURORA/data/something/frames/155377/first.jpg", "AURORA/data/something/frames/155377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109644", "images": ["AURORA/data/something/frames/52761/first.jpg", "AURORA/data/something/frames/52761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000109645", "images": ["AURORA/data/something/frames/167435/first.jpg", "AURORA/data/something/frames/167435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy car into spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109646", "images": ["AURORA/data/something/frames/58934/first.jpg", "AURORA/data/something/frames/58934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail cutter away from toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000109647", "images": ["AURORA/data/something/frames/89321/first.jpg", "AURORA/data/something/frames/89321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cable out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109648", "images": ["AURORA/data/something/frames/35563/first.jpg", "AURORA/data/something/frames/35563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hairband into orange coloured cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109649", "images": ["AURORA/data/something/frames/151288/first.jpg", "AURORA/data/something/frames/151288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a paint brush out of a pen box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109650", "images": ["AURORA/data/something/frames/33399/first.jpg", "AURORA/data/something/frames/33399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109651", "images": ["AURORA/data/something/frames/115164/first.jpg", "AURORA/data/something/frames/115164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109652", "images": ["AURORA/data/something/frames/78091/first.jpg", "AURORA/data/something/frames/78091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000109653", "images": ["AURORA/data/something/frames/37715/first.jpg", "AURORA/data/something/frames/37715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flag down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109654", "images": ["AURORA/data/something/frames/203562/first.jpg", "AURORA/data/something/frames/203562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an apple from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109655", "images": ["AURORA/data/something/frames/10071/first.jpg", "AURORA/data/something/frames/10071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109656", "images": ["AURORA/data/something/frames/20861/first.jpg", "AURORA/data/something/frames/20861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking textbook from shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000109657", "images": ["AURORA/data/something/frames/85942/first.jpg", "AURORA/data/something/frames/85942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glass with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109658", "images": ["AURORA/data/something/frames/51445/first.jpg", "AURORA/data/something/frames/51445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109659", "images": ["AURORA/data/something/frames/127045/first.jpg", "AURORA/data/something/frames/127045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing crumpled paper into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109660", "images": ["AURORA/data/something/frames/64510/first.jpg", "AURORA/data/something/frames/64510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109661", "images": ["AURORA/data/something/frames/128394/first.jpg", "AURORA/data/something/frames/128394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 red spoon onto calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000109662", "images": ["AURORA/data/something/frames/113500/first.jpg", "AURORA/data/something/frames/113500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cologne upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109663", "images": ["AURORA/data/something/frames/84755/first.jpg", "AURORA/data/something/frames/84755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting oven mitt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109664", "images": ["AURORA/data/something/frames/121069/first.jpg", "AURORA/data/something/frames/121069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109665", "images": ["AURORA/data/something/frames/95734/first.jpg", "AURORA/data/something/frames/95734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving crayons and pencilbox away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109666", "images": ["AURORA/data/something/frames/77638/first.jpg", "AURORA/data/something/frames/77638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing gear with metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000109667", "images": ["AURORA/data/something/frames/200159/first.jpg", "AURORA/data/something/frames/200159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109668", "images": ["AURORA/data/something/frames/58800/first.jpg", "AURORA/data/something/frames/58800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of charger so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109669", "images": ["AURORA/data/something/frames/185453/first.jpg", "AURORA/data/something/frames/185453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109670", "images": ["AURORA/data/something/frames/67829/first.jpg", "AURORA/data/something/frames/67829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109671", "images": ["AURORA/data/something/frames/213845/first.jpg", "AURORA/data/something/frames/213845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109672", "images": ["AURORA/data/something/frames/26534/first.jpg", "AURORA/data/something/frames/26534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109673", "images": ["AURORA/data/something/frames/84309/first.jpg", "AURORA/data/something/frames/84309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting charger next to yellowbook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109674", "images": ["AURORA/data/something/frames/106553/first.jpg", "AURORA/data/something/frames/106553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from tv with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109675", "images": ["AURORA/data/something/frames/178973/first.jpg", "AURORA/data/something/frames/178973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109676", "images": ["AURORA/data/something/frames/100109/first.jpg", "AURORA/data/something/frames/100109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screw with aluminium foil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109677", "images": ["AURORA/data/something/frames/16688/first.jpg", "AURORA/data/something/frames/16688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending candy so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109678", "images": ["AURORA/data/something/frames/96026/first.jpg", "AURORA/data/something/frames/96026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car bonnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109679", "images": ["AURORA/data/something/frames/137174/first.jpg", "AURORA/data/something/frames/137174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109680", "images": ["AURORA/data/something/frames/98350/first.jpg", "AURORA/data/something/frames/98350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from dogs with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109681", "images": ["AURORA/data/something/frames/86755/first.jpg", "AURORA/data/something/frames/86755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000109682", "images": ["AURORA/data/something/frames/210019/first.jpg", "AURORA/data/something/frames/210019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109683", "images": ["AURORA/data/something/frames/110490/first.jpg", "AURORA/data/something/frames/110490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109684", "images": ["AURORA/data/something/frames/98552/first.jpg", "AURORA/data/something/frames/98552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring ping pong balls onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109685", "images": ["AURORA/data/something/frames/176629/first.jpg", "AURORA/data/something/frames/176629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109686", "images": ["AURORA/data/something/frames/153423/first.jpg", "AURORA/data/something/frames/153423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109687", "images": ["AURORA/data/something/frames/147743/first.jpg", "AURORA/data/something/frames/147743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109688", "images": ["AURORA/data/something/frames/169323/first.jpg", "AURORA/data/something/frames/169323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109689", "images": ["AURORA/data/something/frames/162794/first.jpg", "AURORA/data/something/frames/162794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109690", "images": ["AURORA/data/something/frames/131012/first.jpg", "AURORA/data/something/frames/131012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving moving something and close each other closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109691", "images": ["AURORA/data/something/frames/46325/first.jpg", "AURORA/data/something/frames/46325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109692", "images": ["AURORA/data/something/frames/17467/first.jpg", "AURORA/data/something/frames/17467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 pill bottles onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109693", "images": ["AURORA/data/something/frames/124740/first.jpg", "AURORA/data/something/frames/124740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening green paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109694", "images": ["AURORA/data/something/frames/66786/first.jpg", "AURORA/data/something/frames/66786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109695", "images": ["AURORA/data/something/frames/203571/first.jpg", "AURORA/data/something/frames/203571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109696", "images": ["AURORA/data/something/frames/197179/first.jpg", "AURORA/data/something/frames/197179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ruler and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109697", "images": ["AURORA/data/something/frames/183008/first.jpg", "AURORA/data/something/frames/183008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sunglasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109698", "images": ["AURORA/data/something/frames/106909/first.jpg", "AURORA/data/something/frames/106909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109699", "images": ["AURORA/data/something/frames/208322/first.jpg", "AURORA/data/something/frames/208322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109700", "images": ["AURORA/data/something/frames/53280/first.jpg", "AURORA/data/something/frames/53280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109701", "images": ["AURORA/data/something/frames/216694/first.jpg", "AURORA/data/something/frames/216694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109702", "images": ["AURORA/data/something/frames/26641/first.jpg", "AURORA/data/something/frames/26641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler closer to punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000109703", "images": ["AURORA/data/something/frames/218058/first.jpg", "AURORA/data/something/frames/218058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: shoe being deflected from tripod"}, {"from": "gpt", "value": ""}]} +{"id": "000000109704", "images": ["AURORA/data/something/frames/115373/first.jpg", "AURORA/data/something/frames/115373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pillows"}, {"from": "gpt", "value": ""}]} +{"id": "000000109705", "images": ["AURORA/data/something/frames/2387/first.jpg", "AURORA/data/something/frames/2387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting school bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109706", "images": ["AURORA/data/something/frames/220576/first.jpg", "AURORA/data/something/frames/220576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109707", "images": ["AURORA/data/something/frames/216078/first.jpg", "AURORA/data/something/frames/216078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109708", "images": ["AURORA/data/something/frames/172009/first.jpg", "AURORA/data/something/frames/172009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing movie ticket into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109709", "images": ["AURORA/data/something/frames/152599/first.jpg", "AURORA/data/something/frames/152599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden stick closer to battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000109710", "images": ["AURORA/data/something/frames/33301/first.jpg", "AURORA/data/something/frames/33301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a padlock over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109711", "images": ["AURORA/data/something/frames/206677/first.jpg", "AURORA/data/something/frames/206677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109712", "images": ["AURORA/data/something/frames/138977/first.jpg", "AURORA/data/something/frames/138977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the window"}, {"from": "gpt", "value": ""}]} +{"id": "000000109713", "images": ["AURORA/data/something/frames/19238/first.jpg", "AURORA/data/something/frames/19238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming green headlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000109714", "images": ["AURORA/data/something/frames/215832/first.jpg", "AURORA/data/something/frames/215832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109715", "images": ["AURORA/data/something/frames/13923/first.jpg", "AURORA/data/something/frames/13923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109716", "images": ["AURORA/data/something/frames/94601/first.jpg", "AURORA/data/something/frames/94601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cereal up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109717", "images": ["AURORA/data/something/frames/168837/first.jpg", "AURORA/data/something/frames/168837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving adaptor away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109718", "images": ["AURORA/data/something/frames/105705/first.jpg", "AURORA/data/something/frames/105705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000109719", "images": ["AURORA/data/something/frames/16323/first.jpg", "AURORA/data/something/frames/16323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a fork closer to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109720", "images": ["AURORA/data/something/frames/25917/first.jpg", "AURORA/data/something/frames/25917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black trash can closer to white trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000109721", "images": ["AURORA/data/something/frames/177878/first.jpg", "AURORA/data/something/frames/177878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping markings off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000109722", "images": ["AURORA/data/something/frames/64594/first.jpg", "AURORA/data/something/frames/64594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a car and a car so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109723", "images": ["AURORA/data/something/frames/175878/first.jpg", "AURORA/data/something/frames/175878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109724", "images": ["AURORA/data/something/frames/14377/first.jpg", "AURORA/data/something/frames/14377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000109725", "images": ["AURORA/data/something/frames/156532/first.jpg", "AURORA/data/something/frames/156532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener next to sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000109726", "images": ["AURORA/data/something/frames/177721/first.jpg", "AURORA/data/something/frames/177721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking usb cable out of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109727", "images": ["AURORA/data/something/frames/42618/first.jpg", "AURORA/data/something/frames/42618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109728", "images": ["AURORA/data/something/frames/25759/first.jpg", "AURORA/data/something/frames/25759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109729", "images": ["AURORA/data/something/frames/185141/first.jpg", "AURORA/data/something/frames/185141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper plate just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109730", "images": ["AURORA/data/something/frames/19953/first.jpg", "AURORA/data/something/frames/19953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pick"}, {"from": "gpt", "value": ""}]} +{"id": "000000109731", "images": ["AURORA/data/something/frames/17984/first.jpg", "AURORA/data/something/frames/17984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil out of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109732", "images": ["AURORA/data/something/frames/119378/first.jpg", "AURORA/data/something/frames/119378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109733", "images": ["AURORA/data/something/frames/102277/first.jpg", "AURORA/data/something/frames/102277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cat and cube away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109734", "images": ["AURORA/data/something/frames/128426/first.jpg", "AURORA/data/something/frames/128426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting receipts"}, {"from": "gpt", "value": ""}]} +{"id": "000000109735", "images": ["AURORA/data/something/frames/220555/first.jpg", "AURORA/data/something/frames/220555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109736", "images": ["AURORA/data/something/frames/206961/first.jpg", "AURORA/data/something/frames/206961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109737", "images": ["AURORA/data/something/frames/165387/first.jpg", "AURORA/data/something/frames/165387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto an eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000109738", "images": ["AURORA/data/something/frames/59558/first.jpg", "AURORA/data/something/frames/59558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109739", "images": ["AURORA/data/something/frames/219477/first.jpg", "AURORA/data/something/frames/219477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109740", "images": ["AURORA/data/something/frames/206562/first.jpg", "AURORA/data/something/frames/206562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000109741", "images": ["AURORA/data/something/frames/220117/first.jpg", "AURORA/data/something/frames/220117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming biscuit packets"}, {"from": "gpt", "value": ""}]} +{"id": "000000109742", "images": ["AURORA/data/something/frames/201202/first.jpg", "AURORA/data/something/frames/201202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing compact cassette behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109743", "images": ["AURORA/data/something/frames/81513/first.jpg", "AURORA/data/something/frames/81513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an orange highlighter and a pink highlighter away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109744", "images": ["AURORA/data/something/frames/152254/first.jpg", "AURORA/data/something/frames/152254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag next to table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109745", "images": ["AURORA/data/something/frames/57686/first.jpg", "AURORA/data/something/frames/57686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000109746", "images": ["AURORA/data/something/frames/77754/first.jpg", "AURORA/data/something/frames/77754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wipe into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109747", "images": ["AURORA/data/something/frames/42588/first.jpg", "AURORA/data/something/frames/42588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting plastic wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000109748", "images": ["AURORA/data/something/frames/117866/first.jpg", "AURORA/data/something/frames/117866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a penguin off of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109749", "images": ["AURORA/data/something/frames/88490/first.jpg", "AURORA/data/something/frames/88490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109750", "images": ["AURORA/data/something/frames/32140/first.jpg", "AURORA/data/something/frames/32140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tray with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109751", "images": ["AURORA/data/something/frames/50447/first.jpg", "AURORA/data/something/frames/50447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109752", "images": ["AURORA/data/something/frames/168974/first.jpg", "AURORA/data/something/frames/168974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109753", "images": ["AURORA/data/something/frames/171144/first.jpg", "AURORA/data/something/frames/171144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail polish bottle on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109754", "images": ["AURORA/data/something/frames/37100/first.jpg", "AURORA/data/something/frames/37100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109755", "images": ["AURORA/data/something/frames/178583/first.jpg", "AURORA/data/something/frames/178583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109756", "images": ["AURORA/data/something/frames/84028/first.jpg", "AURORA/data/something/frames/84028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: suitcase being deflected from sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000109757", "images": ["AURORA/data/something/frames/181859/first.jpg", "AURORA/data/something/frames/181859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser and pencil on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109758", "images": ["AURORA/data/something/frames/173218/first.jpg", "AURORA/data/something/frames/173218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a canister upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109759", "images": ["AURORA/data/something/frames/4736/first.jpg", "AURORA/data/something/frames/4736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bucket with a bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109760", "images": ["AURORA/data/something/frames/128016/first.jpg", "AURORA/data/something/frames/128016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring paper clip into plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109761", "images": ["AURORA/data/something/frames/112358/first.jpg", "AURORA/data/something/frames/112358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109762", "images": ["AURORA/data/something/frames/116605/first.jpg", "AURORA/data/something/frames/116605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding rexona deo lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000109763", "images": ["AURORA/data/something/frames/114326/first.jpg", "AURORA/data/something/frames/114326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109764", "images": ["AURORA/data/something/frames/159775/first.jpg", "AURORA/data/something/frames/159775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into hospots"}, {"from": "gpt", "value": ""}]} +{"id": "000000109765", "images": ["AURORA/data/something/frames/218215/first.jpg", "AURORA/data/something/frames/218215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109766", "images": ["AURORA/data/something/frames/27662/first.jpg", "AURORA/data/something/frames/27662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109767", "images": ["AURORA/data/something/frames/9368/first.jpg", "AURORA/data/something/frames/9368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking apple airpod out of apple airpods case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109768", "images": ["AURORA/data/something/frames/25859/first.jpg", "AURORA/data/something/frames/25859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109769", "images": ["AURORA/data/something/frames/215252/first.jpg", "AURORA/data/something/frames/215252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring oil into a measuring vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109770", "images": ["AURORA/data/something/frames/87227/first.jpg", "AURORA/data/something/frames/87227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling graims next to a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109771", "images": ["AURORA/data/something/frames/212793/first.jpg", "AURORA/data/something/frames/212793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a quarter onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109772", "images": ["AURORA/data/something/frames/99661/first.jpg", "AURORA/data/something/frames/99661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a clear plastic cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109773", "images": ["AURORA/data/something/frames/156377/first.jpg", "AURORA/data/something/frames/156377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a small cylinder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109774", "images": ["AURORA/data/something/frames/157959/first.jpg", "AURORA/data/something/frames/157959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming window"}, {"from": "gpt", "value": ""}]} +{"id": "000000109775", "images": ["AURORA/data/something/frames/93939/first.jpg", "AURORA/data/something/frames/93939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hairbrush up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109776", "images": ["AURORA/data/something/frames/13390/first.jpg", "AURORA/data/something/frames/13390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109777", "images": ["AURORA/data/something/frames/35775/first.jpg", "AURORA/data/something/frames/35775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving biscuit pack away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109778", "images": ["AURORA/data/something/frames/51932/first.jpg", "AURORA/data/something/frames/51932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a hamper with its lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109779", "images": ["AURORA/data/something/frames/76491/first.jpg", "AURORA/data/something/frames/76491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109780", "images": ["AURORA/data/something/frames/18477/first.jpg", "AURORA/data/something/frames/18477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains out of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109781", "images": ["AURORA/data/something/frames/219936/first.jpg", "AURORA/data/something/frames/219936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cap and grape away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109782", "images": ["AURORA/data/something/frames/124090/first.jpg", "AURORA/data/something/frames/124090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging red-chili out of shallots"}, {"from": "gpt", "value": ""}]} +{"id": "000000109783", "images": ["AURORA/data/something/frames/161748/first.jpg", "AURORA/data/something/frames/161748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic in front of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109784", "images": ["AURORA/data/something/frames/173460/first.jpg", "AURORA/data/something/frames/173460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109785", "images": ["AURORA/data/something/frames/26067/first.jpg", "AURORA/data/something/frames/26067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000109786", "images": ["AURORA/data/something/frames/30290/first.jpg", "AURORA/data/something/frames/30290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fish into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109787", "images": ["AURORA/data/something/frames/64909/first.jpg", "AURORA/data/something/frames/64909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass out of cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109788", "images": ["AURORA/data/something/frames/93306/first.jpg", "AURORA/data/something/frames/93306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lime next to egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000109789", "images": ["AURORA/data/something/frames/17840/first.jpg", "AURORA/data/something/frames/17840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109790", "images": ["AURORA/data/something/frames/99578/first.jpg", "AURORA/data/something/frames/99578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109791", "images": ["AURORA/data/something/frames/37631/first.jpg", "AURORA/data/something/frames/37631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler off of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109792", "images": ["AURORA/data/something/frames/148405/first.jpg", "AURORA/data/something/frames/148405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109793", "images": ["AURORA/data/something/frames/152135/first.jpg", "AURORA/data/something/frames/152135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the tab part of a soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000109794", "images": ["AURORA/data/something/frames/212616/first.jpg", "AURORA/data/something/frames/212616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the edge of a decorative \"k\" so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109795", "images": ["AURORA/data/something/frames/157854/first.jpg", "AURORA/data/something/frames/157854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109796", "images": ["AURORA/data/something/frames/136901/first.jpg", "AURORA/data/something/frames/136901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109797", "images": ["AURORA/data/something/frames/27587/first.jpg", "AURORA/data/something/frames/27587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cellphone with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109798", "images": ["AURORA/data/something/frames/187013/first.jpg", "AURORA/data/something/frames/187013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chalk piece up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109799", "images": ["AURORA/data/something/frames/205263/first.jpg", "AURORA/data/something/frames/205263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery, sharpner and pebble on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109800", "images": ["AURORA/data/something/frames/33692/first.jpg", "AURORA/data/something/frames/33692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109801", "images": ["AURORA/data/something/frames/212972/first.jpg", "AURORA/data/something/frames/212972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spoon from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109802", "images": ["AURORA/data/something/frames/92553/first.jpg", "AURORA/data/something/frames/92553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109803", "images": ["AURORA/data/something/frames/163152/first.jpg", "AURORA/data/something/frames/163152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109804", "images": ["AURORA/data/something/frames/135030/first.jpg", "AURORA/data/something/frames/135030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: remote being deflected from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109805", "images": ["AURORA/data/something/frames/171180/first.jpg", "AURORA/data/something/frames/171180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coconut shell onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109806", "images": ["AURORA/data/something/frames/64574/first.jpg", "AURORA/data/something/frames/64574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shoebox up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109807", "images": ["AURORA/data/something/frames/168289/first.jpg", "AURORA/data/something/frames/168289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 15 news papers onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109808", "images": ["AURORA/data/something/frames/86157/first.jpg", "AURORA/data/something/frames/86157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109809", "images": ["AURORA/data/something/frames/110823/first.jpg", "AURORA/data/something/frames/110823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109810", "images": ["AURORA/data/something/frames/100314/first.jpg", "AURORA/data/something/frames/100314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109811", "images": ["AURORA/data/something/frames/39511/first.jpg", "AURORA/data/something/frames/39511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a plank of wood over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109812", "images": ["AURORA/data/something/frames/145951/first.jpg", "AURORA/data/something/frames/145951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the botyle away from the pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109813", "images": ["AURORA/data/something/frames/218728/first.jpg", "AURORA/data/something/frames/218728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109814", "images": ["AURORA/data/something/frames/26992/first.jpg", "AURORA/data/something/frames/26992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bracelet up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109815", "images": ["AURORA/data/something/frames/3179/first.jpg", "AURORA/data/something/frames/3179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109816", "images": ["AURORA/data/something/frames/34400/first.jpg", "AURORA/data/something/frames/34400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109817", "images": ["AURORA/data/something/frames/49589/first.jpg", "AURORA/data/something/frames/49589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109818", "images": ["AURORA/data/something/frames/186011/first.jpg", "AURORA/data/something/frames/186011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving seat of rotating chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109819", "images": ["AURORA/data/something/frames/63590/first.jpg", "AURORA/data/something/frames/63590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000109820", "images": ["AURORA/data/something/frames/90847/first.jpg", "AURORA/data/something/frames/90847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109821", "images": ["AURORA/data/something/frames/5687/first.jpg", "AURORA/data/something/frames/5687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a power cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000109822", "images": ["AURORA/data/something/frames/158321/first.jpg", "AURORA/data/something/frames/158321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin similar to other coins that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109823", "images": ["AURORA/data/something/frames/45424/first.jpg", "AURORA/data/something/frames/45424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109824", "images": ["AURORA/data/something/frames/67850/first.jpg", "AURORA/data/something/frames/67850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109825", "images": ["AURORA/data/something/frames/131368/first.jpg", "AURORA/data/something/frames/131368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pink water bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109826", "images": ["AURORA/data/something/frames/94531/first.jpg", "AURORA/data/something/frames/94531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and car keys closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109827", "images": ["AURORA/data/something/frames/72753/first.jpg", "AURORA/data/something/frames/72753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting napkin and wooden bowl on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109828", "images": ["AURORA/data/something/frames/213887/first.jpg", "AURORA/data/something/frames/213887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from can"}, {"from": "gpt", "value": ""}]} +{"id": "000000109829", "images": ["AURORA/data/something/frames/158223/first.jpg", "AURORA/data/something/frames/158223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving button down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109830", "images": ["AURORA/data/something/frames/27560/first.jpg", "AURORA/data/something/frames/27560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109831", "images": ["AURORA/data/something/frames/185208/first.jpg", "AURORA/data/something/frames/185208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109832", "images": ["AURORA/data/something/frames/8712/first.jpg", "AURORA/data/something/frames/8712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109833", "images": ["AURORA/data/something/frames/22007/first.jpg", "AURORA/data/something/frames/22007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning nail polish bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109834", "images": ["AURORA/data/something/frames/201036/first.jpg", "AURORA/data/something/frames/201036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109835", "images": ["AURORA/data/something/frames/81534/first.jpg", "AURORA/data/something/frames/81534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109836", "images": ["AURORA/data/something/frames/206828/first.jpg", "AURORA/data/something/frames/206828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109837", "images": ["AURORA/data/something/frames/65958/first.jpg", "AURORA/data/something/frames/65958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tissue box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109838", "images": ["AURORA/data/something/frames/131506/first.jpg", "AURORA/data/something/frames/131506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticker note to notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109839", "images": ["AURORA/data/something/frames/94676/first.jpg", "AURORA/data/something/frames/94676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging heater into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109840", "images": ["AURORA/data/something/frames/190282/first.jpg", "AURORA/data/something/frames/190282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of box without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109841", "images": ["AURORA/data/something/frames/42804/first.jpg", "AURORA/data/something/frames/42804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109842", "images": ["AURORA/data/something/frames/209327/first.jpg", "AURORA/data/something/frames/209327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing playingcard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109843", "images": ["AURORA/data/something/frames/215286/first.jpg", "AURORA/data/something/frames/215286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a garbage bin from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109844", "images": ["AURORA/data/something/frames/52486/first.jpg", "AURORA/data/something/frames/52486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming my hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109845", "images": ["AURORA/data/something/frames/101591/first.jpg", "AURORA/data/something/frames/101591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000109846", "images": ["AURORA/data/something/frames/135799/first.jpg", "AURORA/data/something/frames/135799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109847", "images": ["AURORA/data/something/frames/34383/first.jpg", "AURORA/data/something/frames/34383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109848", "images": ["AURORA/data/something/frames/186984/first.jpg", "AURORA/data/something/frames/186984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pink toothbrush case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109849", "images": ["AURORA/data/something/frames/60622/first.jpg", "AURORA/data/something/frames/60622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cds"}, {"from": "gpt", "value": ""}]} +{"id": "000000109850", "images": ["AURORA/data/something/frames/130186/first.jpg", "AURORA/data/something/frames/130186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109851", "images": ["AURORA/data/something/frames/193548/first.jpg", "AURORA/data/something/frames/193548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup with pens over, so the pens falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109852", "images": ["AURORA/data/something/frames/92927/first.jpg", "AURORA/data/something/frames/92927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking ramekin so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109853", "images": ["AURORA/data/something/frames/40935/first.jpg", "AURORA/data/something/frames/40935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a flash drive into a port"}, {"from": "gpt", "value": ""}]} +{"id": "000000109854", "images": ["AURORA/data/something/frames/14358/first.jpg", "AURORA/data/something/frames/14358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109855", "images": ["AURORA/data/something/frames/174021/first.jpg", "AURORA/data/something/frames/174021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a banana upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109856", "images": ["AURORA/data/something/frames/6726/first.jpg", "AURORA/data/something/frames/6726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing peanut butter jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109857", "images": ["AURORA/data/something/frames/65726/first.jpg", "AURORA/data/something/frames/65726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stuffed toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109858", "images": ["AURORA/data/something/frames/176369/first.jpg", "AURORA/data/something/frames/176369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109859", "images": ["AURORA/data/something/frames/168611/first.jpg", "AURORA/data/something/frames/168611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109860", "images": ["AURORA/data/something/frames/30926/first.jpg", "AURORA/data/something/frames/30926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring medicine onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109861", "images": ["AURORA/data/something/frames/177176/first.jpg", "AURORA/data/something/frames/177176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone behind clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000109862", "images": ["AURORA/data/something/frames/110251/first.jpg", "AURORA/data/something/frames/110251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping power bank into shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109863", "images": ["AURORA/data/something/frames/136736/first.jpg", "AURORA/data/something/frames/136736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair brush onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109864", "images": ["AURORA/data/something/frames/168331/first.jpg", "AURORA/data/something/frames/168331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chewing gums on the edge of a jbl so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109865", "images": ["AURORA/data/something/frames/217219/first.jpg", "AURORA/data/something/frames/217219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cloth onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109866", "images": ["AURORA/data/something/frames/29804/first.jpg", "AURORA/data/something/frames/29804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle into bagback"}, {"from": "gpt", "value": ""}]} +{"id": "000000109867", "images": ["AURORA/data/something/frames/51600/first.jpg", "AURORA/data/something/frames/51600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000109868", "images": ["AURORA/data/something/frames/108924/first.jpg", "AURORA/data/something/frames/108924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a straw out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109869", "images": ["AURORA/data/something/frames/208297/first.jpg", "AURORA/data/something/frames/208297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle of rubbing alcohol upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109870", "images": ["AURORA/data/something/frames/183468/first.jpg", "AURORA/data/something/frames/183468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sugarpot with toothpic"}, {"from": "gpt", "value": ""}]} +{"id": "000000109871", "images": ["AURORA/data/something/frames/32184/first.jpg", "AURORA/data/something/frames/32184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a vacuum cleaner with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109872", "images": ["AURORA/data/something/frames/216847/first.jpg", "AURORA/data/something/frames/216847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109873", "images": ["AURORA/data/something/frames/157532/first.jpg", "AURORA/data/something/frames/157532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling ram up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109874", "images": ["AURORA/data/something/frames/114870/first.jpg", "AURORA/data/something/frames/114870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109875", "images": ["AURORA/data/something/frames/95419/first.jpg", "AURORA/data/something/frames/95419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a teaspoon out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109876", "images": ["AURORA/data/something/frames/73664/first.jpg", "AURORA/data/something/frames/73664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: small tube being deflected from jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109877", "images": ["AURORA/data/something/frames/169771/first.jpg", "AURORA/data/something/frames/169771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109878", "images": ["AURORA/data/something/frames/183987/first.jpg", "AURORA/data/something/frames/183987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into my mouth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109879", "images": ["AURORA/data/something/frames/147830/first.jpg", "AURORA/data/something/frames/147830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cord into smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109880", "images": ["AURORA/data/something/frames/73286/first.jpg", "AURORA/data/something/frames/73286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tube into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109881", "images": ["AURORA/data/something/frames/149552/first.jpg", "AURORA/data/something/frames/149552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking box from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109882", "images": ["AURORA/data/something/frames/166527/first.jpg", "AURORA/data/something/frames/166527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109883", "images": ["AURORA/data/something/frames/108028/first.jpg", "AURORA/data/something/frames/108028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate and banana away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109884", "images": ["AURORA/data/something/frames/99546/first.jpg", "AURORA/data/something/frames/99546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000109885", "images": ["AURORA/data/something/frames/122321/first.jpg", "AURORA/data/something/frames/122321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109886", "images": ["AURORA/data/something/frames/10622/first.jpg", "AURORA/data/something/frames/10622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bicycle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109887", "images": ["AURORA/data/something/frames/80770/first.jpg", "AURORA/data/something/frames/80770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109888", "images": ["AURORA/data/something/frames/126237/first.jpg", "AURORA/data/something/frames/126237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy truck from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109889", "images": ["AURORA/data/something/frames/6591/first.jpg", "AURORA/data/something/frames/6591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler next to glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000109890", "images": ["AURORA/data/something/frames/209007/first.jpg", "AURORA/data/something/frames/209007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing granola bar from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109891", "images": ["AURORA/data/something/frames/24070/first.jpg", "AURORA/data/something/frames/24070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pant zip"}, {"from": "gpt", "value": ""}]} +{"id": "000000109892", "images": ["AURORA/data/something/frames/19426/first.jpg", "AURORA/data/something/frames/19426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lid of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109893", "images": ["AURORA/data/something/frames/17011/first.jpg", "AURORA/data/something/frames/17011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109894", "images": ["AURORA/data/something/frames/184270/first.jpg", "AURORA/data/something/frames/184270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109895", "images": ["AURORA/data/something/frames/69091/first.jpg", "AURORA/data/something/frames/69091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000109896", "images": ["AURORA/data/something/frames/19163/first.jpg", "AURORA/data/something/frames/19163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109897", "images": ["AURORA/data/something/frames/110137/first.jpg", "AURORA/data/something/frames/110137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109898", "images": ["AURORA/data/something/frames/134905/first.jpg", "AURORA/data/something/frames/134905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with muffin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109899", "images": ["AURORA/data/something/frames/34102/first.jpg", "AURORA/data/something/frames/34102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109900", "images": ["AURORA/data/something/frames/171126/first.jpg", "AURORA/data/something/frames/171126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting essential oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109901", "images": ["AURORA/data/something/frames/1700/first.jpg", "AURORA/data/something/frames/1700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000109902", "images": ["AURORA/data/something/frames/210559/first.jpg", "AURORA/data/something/frames/210559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking purple balloon pump up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109903", "images": ["AURORA/data/something/frames/113300/first.jpg", "AURORA/data/something/frames/113300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109904", "images": ["AURORA/data/something/frames/166831/first.jpg", "AURORA/data/something/frames/166831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wash cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109905", "images": ["AURORA/data/something/frames/129391/first.jpg", "AURORA/data/something/frames/129391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape dispenser and mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109906", "images": ["AURORA/data/something/frames/8529/first.jpg", "AURORA/data/something/frames/8529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109907", "images": ["AURORA/data/something/frames/179626/first.jpg", "AURORA/data/something/frames/179626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109908", "images": ["AURORA/data/something/frames/154417/first.jpg", "AURORA/data/something/frames/154417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109909", "images": ["AURORA/data/something/frames/144787/first.jpg", "AURORA/data/something/frames/144787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing mobile into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109910", "images": ["AURORA/data/something/frames/47357/first.jpg", "AURORA/data/something/frames/47357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109911", "images": ["AURORA/data/something/frames/166452/first.jpg", "AURORA/data/something/frames/166452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109912", "images": ["AURORA/data/something/frames/218843/first.jpg", "AURORA/data/something/frames/218843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109913", "images": ["AURORA/data/something/frames/20462/first.jpg", "AURORA/data/something/frames/20462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy idol up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109914", "images": ["AURORA/data/something/frames/37158/first.jpg", "AURORA/data/something/frames/37158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109915", "images": ["AURORA/data/something/frames/67465/first.jpg", "AURORA/data/something/frames/67465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking hat so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109916", "images": ["AURORA/data/something/frames/172870/first.jpg", "AURORA/data/something/frames/172870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin next to handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000109917", "images": ["AURORA/data/something/frames/38332/first.jpg", "AURORA/data/something/frames/38332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cable into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109918", "images": ["AURORA/data/something/frames/143246/first.jpg", "AURORA/data/something/frames/143246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something similar on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109919", "images": ["AURORA/data/something/frames/105257/first.jpg", "AURORA/data/something/frames/105257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a jug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109920", "images": ["AURORA/data/something/frames/14341/first.jpg", "AURORA/data/something/frames/14341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pencil holder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109921", "images": ["AURORA/data/something/frames/29244/first.jpg", "AURORA/data/something/frames/29244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green water bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109922", "images": ["AURORA/data/something/frames/141353/first.jpg", "AURORA/data/something/frames/141353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109923", "images": ["AURORA/data/something/frames/209666/first.jpg", "AURORA/data/something/frames/209666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming ad board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109924", "images": ["AURORA/data/something/frames/171946/first.jpg", "AURORA/data/something/frames/171946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flash drive and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109925", "images": ["AURORA/data/something/frames/39485/first.jpg", "AURORA/data/something/frames/39485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109926", "images": ["AURORA/data/something/frames/216966/first.jpg", "AURORA/data/something/frames/216966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109927", "images": ["AURORA/data/something/frames/11416/first.jpg", "AURORA/data/something/frames/11416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of beaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000109928", "images": ["AURORA/data/something/frames/61575/first.jpg", "AURORA/data/something/frames/61575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000109929", "images": ["AURORA/data/something/frames/99989/first.jpg", "AURORA/data/something/frames/99989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking two small containers into a bigger one"}, {"from": "gpt", "value": ""}]} +{"id": "000000109930", "images": ["AURORA/data/something/frames/115014/first.jpg", "AURORA/data/something/frames/115014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109931", "images": ["AURORA/data/something/frames/148751/first.jpg", "AURORA/data/something/frames/148751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains onto small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109932", "images": ["AURORA/data/something/frames/46467/first.jpg", "AURORA/data/something/frames/46467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tin and tin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109933", "images": ["AURORA/data/something/frames/896/first.jpg", "AURORA/data/something/frames/896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, candle and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109934", "images": ["AURORA/data/something/frames/97293/first.jpg", "AURORA/data/something/frames/97293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping usb wall adapter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109935", "images": ["AURORA/data/something/frames/144730/first.jpg", "AURORA/data/something/frames/144730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109936", "images": ["AURORA/data/something/frames/116897/first.jpg", "AURORA/data/something/frames/116897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109937", "images": ["AURORA/data/something/frames/124638/first.jpg", "AURORA/data/something/frames/124638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109938", "images": ["AURORA/data/something/frames/191468/first.jpg", "AURORA/data/something/frames/191468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cord into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109939", "images": ["AURORA/data/something/frames/157786/first.jpg", "AURORA/data/something/frames/157786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109940", "images": ["AURORA/data/something/frames/183879/first.jpg", "AURORA/data/something/frames/183879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109941", "images": ["AURORA/data/something/frames/145627/first.jpg", "AURORA/data/something/frames/145627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into wall jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000109942", "images": ["AURORA/data/something/frames/197913/first.jpg", "AURORA/data/something/frames/197913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109943", "images": ["AURORA/data/something/frames/27545/first.jpg", "AURORA/data/something/frames/27545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving body spray bottle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109944", "images": ["AURORA/data/something/frames/193397/first.jpg", "AURORA/data/something/frames/193397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109945", "images": ["AURORA/data/something/frames/95575/first.jpg", "AURORA/data/something/frames/95575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar closer to a big jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109946", "images": ["AURORA/data/something/frames/60523/first.jpg", "AURORA/data/something/frames/60523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a padlock away from a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109947", "images": ["AURORA/data/something/frames/50992/first.jpg", "AURORA/data/something/frames/50992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking green water bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109948", "images": ["AURORA/data/something/frames/99441/first.jpg", "AURORA/data/something/frames/99441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pencil with sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109949", "images": ["AURORA/data/something/frames/44912/first.jpg", "AURORA/data/something/frames/44912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109950", "images": ["AURORA/data/something/frames/70174/first.jpg", "AURORA/data/something/frames/70174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a reusable grocery bag into its holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109951", "images": ["AURORA/data/something/frames/162511/first.jpg", "AURORA/data/something/frames/162511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jar from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109952", "images": ["AURORA/data/something/frames/74448/first.jpg", "AURORA/data/something/frames/74448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bear next to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109953", "images": ["AURORA/data/something/frames/58633/first.jpg", "AURORA/data/something/frames/58633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109954", "images": ["AURORA/data/something/frames/9172/first.jpg", "AURORA/data/something/frames/9172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109955", "images": ["AURORA/data/something/frames/28988/first.jpg", "AURORA/data/something/frames/28988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging speaker into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109956", "images": ["AURORA/data/something/frames/40467/first.jpg", "AURORA/data/something/frames/40467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109957", "images": ["AURORA/data/something/frames/99688/first.jpg", "AURORA/data/something/frames/99688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109958", "images": ["AURORA/data/something/frames/170835/first.jpg", "AURORA/data/something/frames/170835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109959", "images": ["AURORA/data/something/frames/214453/first.jpg", "AURORA/data/something/frames/214453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109960", "images": ["AURORA/data/something/frames/13332/first.jpg", "AURORA/data/something/frames/13332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109961", "images": ["AURORA/data/something/frames/20284/first.jpg", "AURORA/data/something/frames/20284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling poker chips up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109962", "images": ["AURORA/data/something/frames/189961/first.jpg", "AURORA/data/something/frames/189961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000109963", "images": ["AURORA/data/something/frames/55425/first.jpg", "AURORA/data/something/frames/55425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cleaning cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109964", "images": ["AURORA/data/something/frames/191/first.jpg", "AURORA/data/something/frames/191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bucket, revealing thread behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109965", "images": ["AURORA/data/something/frames/40084/first.jpg", "AURORA/data/something/frames/40084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling towels up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109966", "images": ["AURORA/data/something/frames/158456/first.jpg", "AURORA/data/something/frames/158456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109967", "images": ["AURORA/data/something/frames/59578/first.jpg", "AURORA/data/something/frames/59578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a tv remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109968", "images": ["AURORA/data/something/frames/185684/first.jpg", "AURORA/data/something/frames/185684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109969", "images": ["AURORA/data/something/frames/167440/first.jpg", "AURORA/data/something/frames/167440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with a magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000109970", "images": ["AURORA/data/something/frames/37272/first.jpg", "AURORA/data/something/frames/37272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109971", "images": ["AURORA/data/something/frames/67293/first.jpg", "AURORA/data/something/frames/67293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vegetable peeler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109972", "images": ["AURORA/data/something/frames/77730/first.jpg", "AURORA/data/something/frames/77730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pencil case with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109973", "images": ["AURORA/data/something/frames/51253/first.jpg", "AURORA/data/something/frames/51253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a can of soda up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109974", "images": ["AURORA/data/something/frames/118118/first.jpg", "AURORA/data/something/frames/118118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shoe brush onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109975", "images": ["AURORA/data/something/frames/159354/first.jpg", "AURORA/data/something/frames/159354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pistachio being deflected from mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109976", "images": ["AURORA/data/something/frames/116499/first.jpg", "AURORA/data/something/frames/116499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109977", "images": ["AURORA/data/something/frames/151473/first.jpg", "AURORA/data/something/frames/151473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109978", "images": ["AURORA/data/something/frames/52704/first.jpg", "AURORA/data/something/frames/52704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling something from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109979", "images": ["AURORA/data/something/frames/215808/first.jpg", "AURORA/data/something/frames/215808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109980", "images": ["AURORA/data/something/frames/36216/first.jpg", "AURORA/data/something/frames/36216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109981", "images": ["AURORA/data/something/frames/214631/first.jpg", "AURORA/data/something/frames/214631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling tea onto napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109982", "images": ["AURORA/data/something/frames/38907/first.jpg", "AURORA/data/something/frames/38907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with hat on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109983", "images": ["AURORA/data/something/frames/82000/first.jpg", "AURORA/data/something/frames/82000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing battery with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109984", "images": ["AURORA/data/something/frames/103694/first.jpg", "AURORA/data/something/frames/103694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109985", "images": ["AURORA/data/something/frames/13224/first.jpg", "AURORA/data/something/frames/13224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paint brush on the edge of a table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109986", "images": ["AURORA/data/something/frames/82410/first.jpg", "AURORA/data/something/frames/82410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with plastic scope"}, {"from": "gpt", "value": ""}]} +{"id": "000000109987", "images": ["AURORA/data/something/frames/60535/first.jpg", "AURORA/data/something/frames/60535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109988", "images": ["AURORA/data/something/frames/65278/first.jpg", "AURORA/data/something/frames/65278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging guitar cable into amplifier"}, {"from": "gpt", "value": ""}]} +{"id": "000000109989", "images": ["AURORA/data/something/frames/141363/first.jpg", "AURORA/data/something/frames/141363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and wristwatch away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109990", "images": ["AURORA/data/something/frames/146434/first.jpg", "AURORA/data/something/frames/146434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109991", "images": ["AURORA/data/something/frames/134313/first.jpg", "AURORA/data/something/frames/134313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and can so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109992", "images": ["AURORA/data/something/frames/87489/first.jpg", "AURORA/data/something/frames/87489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming boay"}, {"from": "gpt", "value": ""}]} +{"id": "000000109993", "images": ["AURORA/data/something/frames/106988/first.jpg", "AURORA/data/something/frames/106988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a spray bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109994", "images": ["AURORA/data/something/frames/151140/first.jpg", "AURORA/data/something/frames/151140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling thermal cup from behind of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109995", "images": ["AURORA/data/something/frames/72890/first.jpg", "AURORA/data/something/frames/72890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109996", "images": ["AURORA/data/something/frames/114754/first.jpg", "AURORA/data/something/frames/114754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cardboard so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109997", "images": ["AURORA/data/something/frames/159461/first.jpg", "AURORA/data/something/frames/159461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109998", "images": ["AURORA/data/something/frames/108710/first.jpg", "AURORA/data/something/frames/108710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring oil onto crust of bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000109999", "images": ["AURORA/data/something/frames/33285/first.jpg", "AURORA/data/something/frames/33285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110000", "images": ["AURORA/data/something/frames/196239/first.jpg", "AURORA/data/something/frames/196239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling keys out of a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000110001", "images": ["AURORA/data/something/frames/182342/first.jpg", "AURORA/data/something/frames/182342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a case so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110002", "images": ["AURORA/data/something/frames/139047/first.jpg", "AURORA/data/something/frames/139047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110003", "images": ["AURORA/data/something/frames/110024/first.jpg", "AURORA/data/something/frames/110024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming radiator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110004", "images": ["AURORA/data/something/frames/133827/first.jpg", "AURORA/data/something/frames/133827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with sandwich on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110005", "images": ["AURORA/data/something/frames/68610/first.jpg", "AURORA/data/something/frames/68610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110006", "images": ["AURORA/data/something/frames/138183/first.jpg", "AURORA/data/something/frames/138183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cd case on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110007", "images": ["AURORA/data/something/frames/84890/first.jpg", "AURORA/data/something/frames/84890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110008", "images": ["AURORA/data/something/frames/16715/first.jpg", "AURORA/data/something/frames/16715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering garlic"}, {"from": "gpt", "value": ""}]} +{"id": "000000110009", "images": ["AURORA/data/something/frames/124861/first.jpg", "AURORA/data/something/frames/124861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil away from a salt shaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000110010", "images": ["AURORA/data/something/frames/23384/first.jpg", "AURORA/data/something/frames/23384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing reciept into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110011", "images": ["AURORA/data/something/frames/59942/first.jpg", "AURORA/data/something/frames/59942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110012", "images": ["AURORA/data/something/frames/204806/first.jpg", "AURORA/data/something/frames/204806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110013", "images": ["AURORA/data/something/frames/24244/first.jpg", "AURORA/data/something/frames/24244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting white wall with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110014", "images": ["AURORA/data/something/frames/120997/first.jpg", "AURORA/data/something/frames/120997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mug from jeep bonnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110015", "images": ["AURORA/data/something/frames/90675/first.jpg", "AURORA/data/something/frames/90675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of eraser putty so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110016", "images": ["AURORA/data/something/frames/176452/first.jpg", "AURORA/data/something/frames/176452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sharpener out of pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110017", "images": ["AURORA/data/something/frames/70567/first.jpg", "AURORA/data/something/frames/70567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110018", "images": ["AURORA/data/something/frames/123505/first.jpg", "AURORA/data/something/frames/123505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110019", "images": ["AURORA/data/something/frames/92206/first.jpg", "AURORA/data/something/frames/92206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cups so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110020", "images": ["AURORA/data/something/frames/81169/first.jpg", "AURORA/data/something/frames/81169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110021", "images": ["AURORA/data/something/frames/16561/first.jpg", "AURORA/data/something/frames/16561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tray with a glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110022", "images": ["AURORA/data/something/frames/178029/first.jpg", "AURORA/data/something/frames/178029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting passport on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110023", "images": ["AURORA/data/something/frames/40232/first.jpg", "AURORA/data/something/frames/40232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling battery from behind of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110024", "images": ["AURORA/data/something/frames/181729/first.jpg", "AURORA/data/something/frames/181729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pencil holder with a yo-yo over, so the yo-yo falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110025", "images": ["AURORA/data/something/frames/150002/first.jpg", "AURORA/data/something/frames/150002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110026", "images": ["AURORA/data/something/frames/121116/first.jpg", "AURORA/data/something/frames/121116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110027", "images": ["AURORA/data/something/frames/165618/first.jpg", "AURORA/data/something/frames/165618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) keyboard of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110028", "images": ["AURORA/data/something/frames/198297/first.jpg", "AURORA/data/something/frames/198297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching violin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110029", "images": ["AURORA/data/something/frames/188257/first.jpg", "AURORA/data/something/frames/188257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing punching machine from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110030", "images": ["AURORA/data/something/frames/5720/first.jpg", "AURORA/data/something/frames/5720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming green headlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000110031", "images": ["AURORA/data/something/frames/46974/first.jpg", "AURORA/data/something/frames/46974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a drawing on paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110032", "images": ["AURORA/data/something/frames/123773/first.jpg", "AURORA/data/something/frames/123773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110033", "images": ["AURORA/data/something/frames/167461/first.jpg", "AURORA/data/something/frames/167461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110034", "images": ["AURORA/data/something/frames/45220/first.jpg", "AURORA/data/something/frames/45220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110035", "images": ["AURORA/data/something/frames/64759/first.jpg", "AURORA/data/something/frames/64759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) purple sock wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110036", "images": ["AURORA/data/something/frames/143387/first.jpg", "AURORA/data/something/frames/143387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110037", "images": ["AURORA/data/something/frames/105081/first.jpg", "AURORA/data/something/frames/105081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110038", "images": ["AURORA/data/something/frames/187165/first.jpg", "AURORA/data/something/frames/187165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 envelopes onto tables"}, {"from": "gpt", "value": ""}]} +{"id": "000000110039", "images": ["AURORA/data/something/frames/13564/first.jpg", "AURORA/data/something/frames/13564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto an absorbent cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110040", "images": ["AURORA/data/something/frames/142592/first.jpg", "AURORA/data/something/frames/142592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bag of gum upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110041", "images": ["AURORA/data/something/frames/35146/first.jpg", "AURORA/data/something/frames/35146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110042", "images": ["AURORA/data/something/frames/66803/first.jpg", "AURORA/data/something/frames/66803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110043", "images": ["AURORA/data/something/frames/131951/first.jpg", "AURORA/data/something/frames/131951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch, keys and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110044", "images": ["AURORA/data/something/frames/217791/first.jpg", "AURORA/data/something/frames/217791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of bricks so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110045", "images": ["AURORA/data/something/frames/45123/first.jpg", "AURORA/data/something/frames/45123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing white sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110046", "images": ["AURORA/data/something/frames/52129/first.jpg", "AURORA/data/something/frames/52129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110047", "images": ["AURORA/data/something/frames/26164/first.jpg", "AURORA/data/something/frames/26164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110048", "images": ["AURORA/data/something/frames/216700/first.jpg", "AURORA/data/something/frames/216700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glasses with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000110049", "images": ["AURORA/data/something/frames/102120/first.jpg", "AURORA/data/something/frames/102120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a drill on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110050", "images": ["AURORA/data/something/frames/157184/first.jpg", "AURORA/data/something/frames/157184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting helmet behind a flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000110051", "images": ["AURORA/data/something/frames/204754/first.jpg", "AURORA/data/something/frames/204754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110052", "images": ["AURORA/data/something/frames/194603/first.jpg", "AURORA/data/something/frames/194603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a wire out of many wire looking like objects"}, {"from": "gpt", "value": ""}]} +{"id": "000000110053", "images": ["AURORA/data/something/frames/108781/first.jpg", "AURORA/data/something/frames/108781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with glass tumbler on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110054", "images": ["AURORA/data/something/frames/18688/first.jpg", "AURORA/data/something/frames/18688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cart so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110055", "images": ["AURORA/data/something/frames/161635/first.jpg", "AURORA/data/something/frames/161635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110056", "images": ["AURORA/data/something/frames/106819/first.jpg", "AURORA/data/something/frames/106819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110057", "images": ["AURORA/data/something/frames/26652/first.jpg", "AURORA/data/something/frames/26652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a book into a bookshelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000110058", "images": ["AURORA/data/something/frames/215715/first.jpg", "AURORA/data/something/frames/215715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a perfume bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110059", "images": ["AURORA/data/something/frames/143023/first.jpg", "AURORA/data/something/frames/143023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000110060", "images": ["AURORA/data/something/frames/64203/first.jpg", "AURORA/data/something/frames/64203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bangle from a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110061", "images": ["AURORA/data/something/frames/133886/first.jpg", "AURORA/data/something/frames/133886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keyboard onto backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110062", "images": ["AURORA/data/something/frames/144827/first.jpg", "AURORA/data/something/frames/144827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching scotch tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110063", "images": ["AURORA/data/something/frames/109244/first.jpg", "AURORA/data/something/frames/109244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing sunglasses, revealing microscope behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110064", "images": ["AURORA/data/something/frames/147797/first.jpg", "AURORA/data/something/frames/147797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110065", "images": ["AURORA/data/something/frames/92107/first.jpg", "AURORA/data/something/frames/92107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering legs"}, {"from": "gpt", "value": ""}]} +{"id": "000000110066", "images": ["AURORA/data/something/frames/149504/first.jpg", "AURORA/data/something/frames/149504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110067", "images": ["AURORA/data/something/frames/86593/first.jpg", "AURORA/data/something/frames/86593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110068", "images": ["AURORA/data/something/frames/134585/first.jpg", "AURORA/data/something/frames/134585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110069", "images": ["AURORA/data/something/frames/83119/first.jpg", "AURORA/data/something/frames/83119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pink sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110070", "images": ["AURORA/data/something/frames/19923/first.jpg", "AURORA/data/something/frames/19923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 books onto couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000110071", "images": ["AURORA/data/something/frames/48521/first.jpg", "AURORA/data/something/frames/48521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110072", "images": ["AURORA/data/something/frames/204109/first.jpg", "AURORA/data/something/frames/204109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into adaptor but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110073", "images": ["AURORA/data/something/frames/210262/first.jpg", "AURORA/data/something/frames/210262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) paper wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110074", "images": ["AURORA/data/something/frames/150840/first.jpg", "AURORA/data/something/frames/150840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110075", "images": ["AURORA/data/something/frames/38197/first.jpg", "AURORA/data/something/frames/38197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110076", "images": ["AURORA/data/something/frames/70903/first.jpg", "AURORA/data/something/frames/70903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching receipt to card"}, {"from": "gpt", "value": ""}]} +{"id": "000000110077", "images": ["AURORA/data/something/frames/45943/first.jpg", "AURORA/data/something/frames/45943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110078", "images": ["AURORA/data/something/frames/141189/first.jpg", "AURORA/data/something/frames/141189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a box from behind of a stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110079", "images": ["AURORA/data/something/frames/172124/first.jpg", "AURORA/data/something/frames/172124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil and a pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110080", "images": ["AURORA/data/something/frames/197794/first.jpg", "AURORA/data/something/frames/197794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponze, purse and plate on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110081", "images": ["AURORA/data/something/frames/93989/first.jpg", "AURORA/data/something/frames/93989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothes peg next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110082", "images": ["AURORA/data/something/frames/172139/first.jpg", "AURORA/data/something/frames/172139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container away from another one"}, {"from": "gpt", "value": ""}]} +{"id": "000000110083", "images": ["AURORA/data/something/frames/127048/first.jpg", "AURORA/data/something/frames/127048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110084", "images": ["AURORA/data/something/frames/141557/first.jpg", "AURORA/data/something/frames/141557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy bullet pack and toy bullet pack closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110085", "images": ["AURORA/data/something/frames/183995/first.jpg", "AURORA/data/something/frames/183995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tube from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110086", "images": ["AURORA/data/something/frames/164903/first.jpg", "AURORA/data/something/frames/164903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110087", "images": ["AURORA/data/something/frames/137162/first.jpg", "AURORA/data/something/frames/137162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of clothe"}, {"from": "gpt", "value": ""}]} +{"id": "000000110088", "images": ["AURORA/data/something/frames/208864/first.jpg", "AURORA/data/something/frames/208864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching iron with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110089", "images": ["AURORA/data/something/frames/75149/first.jpg", "AURORA/data/something/frames/75149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water from cup into a glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110090", "images": ["AURORA/data/something/frames/97970/first.jpg", "AURORA/data/something/frames/97970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110091", "images": ["AURORA/data/something/frames/19248/first.jpg", "AURORA/data/something/frames/19248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110092", "images": ["AURORA/data/something/frames/95029/first.jpg", "AURORA/data/something/frames/95029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding unfolding tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000110093", "images": ["AURORA/data/something/frames/26526/first.jpg", "AURORA/data/something/frames/26526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110094", "images": ["AURORA/data/something/frames/219923/first.jpg", "AURORA/data/something/frames/219923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a painting brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110095", "images": ["AURORA/data/something/frames/137577/first.jpg", "AURORA/data/something/frames/137577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing car so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110096", "images": ["AURORA/data/something/frames/89751/first.jpg", "AURORA/data/something/frames/89751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110097", "images": ["AURORA/data/something/frames/141632/first.jpg", "AURORA/data/something/frames/141632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110098", "images": ["AURORA/data/something/frames/186663/first.jpg", "AURORA/data/something/frames/186663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110099", "images": ["AURORA/data/something/frames/177999/first.jpg", "AURORA/data/something/frames/177999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000110100", "images": ["AURORA/data/something/frames/185813/first.jpg", "AURORA/data/something/frames/185813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hanger so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110101", "images": ["AURORA/data/something/frames/102812/first.jpg", "AURORA/data/something/frames/102812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving helmet and helmet so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110102", "images": ["AURORA/data/something/frames/67800/first.jpg", "AURORA/data/something/frames/67800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering fan with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110103", "images": ["AURORA/data/something/frames/52309/first.jpg", "AURORA/data/something/frames/52309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110104", "images": ["AURORA/data/something/frames/146501/first.jpg", "AURORA/data/something/frames/146501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110105", "images": ["AURORA/data/something/frames/41043/first.jpg", "AURORA/data/something/frames/41043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110106", "images": ["AURORA/data/something/frames/68709/first.jpg", "AURORA/data/something/frames/68709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110107", "images": ["AURORA/data/something/frames/156198/first.jpg", "AURORA/data/something/frames/156198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a side of a pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000110108", "images": ["AURORA/data/something/frames/207720/first.jpg", "AURORA/data/something/frames/207720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink toothbrush case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110109", "images": ["AURORA/data/something/frames/108212/first.jpg", "AURORA/data/something/frames/108212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a comb away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110110", "images": ["AURORA/data/something/frames/210620/first.jpg", "AURORA/data/something/frames/210620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110111", "images": ["AURORA/data/something/frames/41278/first.jpg", "AURORA/data/something/frames/41278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110112", "images": ["AURORA/data/something/frames/9586/first.jpg", "AURORA/data/something/frames/9586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking watch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110113", "images": ["AURORA/data/something/frames/212950/first.jpg", "AURORA/data/something/frames/212950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110114", "images": ["AURORA/data/something/frames/111262/first.jpg", "AURORA/data/something/frames/111262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black umbrella from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110115", "images": ["AURORA/data/something/frames/92734/first.jpg", "AURORA/data/something/frames/92734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener behind sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110116", "images": ["AURORA/data/something/frames/168058/first.jpg", "AURORA/data/something/frames/168058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110117", "images": ["AURORA/data/something/frames/180443/first.jpg", "AURORA/data/something/frames/180443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending sheet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110118", "images": ["AURORA/data/something/frames/122055/first.jpg", "AURORA/data/something/frames/122055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a calculator out of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110119", "images": ["AURORA/data/something/frames/143655/first.jpg", "AURORA/data/something/frames/143655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110120", "images": ["AURORA/data/something/frames/41637/first.jpg", "AURORA/data/something/frames/41637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bunny doll in front of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110121", "images": ["AURORA/data/something/frames/141956/first.jpg", "AURORA/data/something/frames/141956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110122", "images": ["AURORA/data/something/frames/213817/first.jpg", "AURORA/data/something/frames/213817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000110123", "images": ["AURORA/data/something/frames/183166/first.jpg", "AURORA/data/something/frames/183166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chopstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110124", "images": ["AURORA/data/something/frames/27147/first.jpg", "AURORA/data/something/frames/27147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving potato and potato closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110125", "images": ["AURORA/data/something/frames/47782/first.jpg", "AURORA/data/something/frames/47782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a plugging but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110126", "images": ["AURORA/data/something/frames/152540/first.jpg", "AURORA/data/something/frames/152540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110127", "images": ["AURORA/data/something/frames/1602/first.jpg", "AURORA/data/something/frames/1602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110128", "images": ["AURORA/data/something/frames/162322/first.jpg", "AURORA/data/something/frames/162322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fish into bowl of water"}, {"from": "gpt", "value": ""}]} +{"id": "000000110129", "images": ["AURORA/data/something/frames/15258/first.jpg", "AURORA/data/something/frames/15258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110130", "images": ["AURORA/data/something/frames/140639/first.jpg", "AURORA/data/something/frames/140639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the keys out of the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110131", "images": ["AURORA/data/something/frames/170734/first.jpg", "AURORA/data/something/frames/170734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110132", "images": ["AURORA/data/something/frames/138140/first.jpg", "AURORA/data/something/frames/138140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cleaner off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110133", "images": ["AURORA/data/something/frames/175186/first.jpg", "AURORA/data/something/frames/175186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling one tealight candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110134", "images": ["AURORA/data/something/frames/124705/first.jpg", "AURORA/data/something/frames/124705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bear doll with toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110135", "images": ["AURORA/data/something/frames/42/first.jpg", "AURORA/data/something/frames/42/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin underneath a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000110136", "images": ["AURORA/data/something/frames/134668/first.jpg", "AURORA/data/something/frames/134668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110137", "images": ["AURORA/data/something/frames/154686/first.jpg", "AURORA/data/something/frames/154686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 dice onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110138", "images": ["AURORA/data/something/frames/142506/first.jpg", "AURORA/data/something/frames/142506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110139", "images": ["AURORA/data/something/frames/24859/first.jpg", "AURORA/data/something/frames/24859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110140", "images": ["AURORA/data/something/frames/148983/first.jpg", "AURORA/data/something/frames/148983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110141", "images": ["AURORA/data/something/frames/51677/first.jpg", "AURORA/data/something/frames/51677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110142", "images": ["AURORA/data/something/frames/85848/first.jpg", "AURORA/data/something/frames/85848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen to other pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000110143", "images": ["AURORA/data/something/frames/96872/first.jpg", "AURORA/data/something/frames/96872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110144", "images": ["AURORA/data/something/frames/126312/first.jpg", "AURORA/data/something/frames/126312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110145", "images": ["AURORA/data/something/frames/139250/first.jpg", "AURORA/data/something/frames/139250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mail box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110146", "images": ["AURORA/data/something/frames/17480/first.jpg", "AURORA/data/something/frames/17480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110147", "images": ["AURORA/data/something/frames/7963/first.jpg", "AURORA/data/something/frames/7963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110148", "images": ["AURORA/data/something/frames/13421/first.jpg", "AURORA/data/something/frames/13421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110149", "images": ["AURORA/data/something/frames/115954/first.jpg", "AURORA/data/something/frames/115954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110150", "images": ["AURORA/data/something/frames/140496/first.jpg", "AURORA/data/something/frames/140496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000110151", "images": ["AURORA/data/something/frames/17537/first.jpg", "AURORA/data/something/frames/17537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110152", "images": ["AURORA/data/something/frames/91544/first.jpg", "AURORA/data/something/frames/91544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing torch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110153", "images": ["AURORA/data/something/frames/96366/first.jpg", "AURORA/data/something/frames/96366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110154", "images": ["AURORA/data/something/frames/150592/first.jpg", "AURORA/data/something/frames/150592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110155", "images": ["AURORA/data/something/frames/171980/first.jpg", "AURORA/data/something/frames/171980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110156", "images": ["AURORA/data/something/frames/180603/first.jpg", "AURORA/data/something/frames/180603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling powder onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110157", "images": ["AURORA/data/something/frames/124791/first.jpg", "AURORA/data/something/frames/124791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110158", "images": ["AURORA/data/something/frames/9680/first.jpg", "AURORA/data/something/frames/9680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110159", "images": ["AURORA/data/something/frames/25891/first.jpg", "AURORA/data/something/frames/25891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sofa chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110160", "images": ["AURORA/data/something/frames/186803/first.jpg", "AURORA/data/something/frames/186803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a lid with a paper heart"}, {"from": "gpt", "value": ""}]} +{"id": "000000110161", "images": ["AURORA/data/something/frames/191939/first.jpg", "AURORA/data/something/frames/191939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card with other cards on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110162", "images": ["AURORA/data/something/frames/9398/first.jpg", "AURORA/data/something/frames/9398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering rc with cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000110163", "images": ["AURORA/data/something/frames/184837/first.jpg", "AURORA/data/something/frames/184837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pouch on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110164", "images": ["AURORA/data/something/frames/40204/first.jpg", "AURORA/data/something/frames/40204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter closer to lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110165", "images": ["AURORA/data/something/frames/212411/first.jpg", "AURORA/data/something/frames/212411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110166", "images": ["AURORA/data/something/frames/146539/first.jpg", "AURORA/data/something/frames/146539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and a box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110167", "images": ["AURORA/data/something/frames/111489/first.jpg", "AURORA/data/something/frames/111489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stappler with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110168", "images": ["AURORA/data/something/frames/10436/first.jpg", "AURORA/data/something/frames/10436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pencil from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110169", "images": ["AURORA/data/something/frames/1736/first.jpg", "AURORA/data/something/frames/1736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an ipad with a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110170", "images": ["AURORA/data/something/frames/43158/first.jpg", "AURORA/data/something/frames/43158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto letters"}, {"from": "gpt", "value": ""}]} +{"id": "000000110171", "images": ["AURORA/data/something/frames/85527/first.jpg", "AURORA/data/something/frames/85527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110172", "images": ["AURORA/data/something/frames/149932/first.jpg", "AURORA/data/something/frames/149932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting binder with calculator on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110173", "images": ["AURORA/data/something/frames/24411/first.jpg", "AURORA/data/something/frames/24411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110174", "images": ["AURORA/data/something/frames/73583/first.jpg", "AURORA/data/something/frames/73583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup behind text books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110175", "images": ["AURORA/data/something/frames/138650/first.jpg", "AURORA/data/something/frames/138650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eye drops onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110176", "images": ["AURORA/data/something/frames/60678/first.jpg", "AURORA/data/something/frames/60678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110177", "images": ["AURORA/data/something/frames/91685/first.jpg", "AURORA/data/something/frames/91685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110178", "images": ["AURORA/data/something/frames/204731/first.jpg", "AURORA/data/something/frames/204731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000110179", "images": ["AURORA/data/something/frames/218259/first.jpg", "AURORA/data/something/frames/218259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking black play cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110180", "images": ["AURORA/data/something/frames/169155/first.jpg", "AURORA/data/something/frames/169155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something behind something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110181", "images": ["AURORA/data/something/frames/111239/first.jpg", "AURORA/data/something/frames/111239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping chocolate onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110182", "images": ["AURORA/data/something/frames/54671/first.jpg", "AURORA/data/something/frames/54671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning empty cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110183", "images": ["AURORA/data/something/frames/136553/first.jpg", "AURORA/data/something/frames/136553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into power socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110184", "images": ["AURORA/data/something/frames/26326/first.jpg", "AURORA/data/something/frames/26326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110185", "images": ["AURORA/data/something/frames/170618/first.jpg", "AURORA/data/something/frames/170618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110186", "images": ["AURORA/data/something/frames/72604/first.jpg", "AURORA/data/something/frames/72604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110187", "images": ["AURORA/data/something/frames/36607/first.jpg", "AURORA/data/something/frames/36607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110188", "images": ["AURORA/data/something/frames/140413/first.jpg", "AURORA/data/something/frames/140413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox behind mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000110189", "images": ["AURORA/data/something/frames/75462/first.jpg", "AURORA/data/something/frames/75462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt in front of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110190", "images": ["AURORA/data/something/frames/6339/first.jpg", "AURORA/data/something/frames/6339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green purse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110191", "images": ["AURORA/data/something/frames/26800/first.jpg", "AURORA/data/something/frames/26800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring wine into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110192", "images": ["AURORA/data/something/frames/12679/first.jpg", "AURORA/data/something/frames/12679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving belt down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110193", "images": ["AURORA/data/something/frames/92034/first.jpg", "AURORA/data/something/frames/92034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110194", "images": ["AURORA/data/something/frames/194392/first.jpg", "AURORA/data/something/frames/194392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug, marker and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110195", "images": ["AURORA/data/something/frames/70931/first.jpg", "AURORA/data/something/frames/70931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110196", "images": ["AURORA/data/something/frames/166303/first.jpg", "AURORA/data/something/frames/166303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup next to a salt shaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000110197", "images": ["AURORA/data/something/frames/26649/first.jpg", "AURORA/data/something/frames/26649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110198", "images": ["AURORA/data/something/frames/30935/first.jpg", "AURORA/data/something/frames/30935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a post it note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110199", "images": ["AURORA/data/something/frames/6750/first.jpg", "AURORA/data/something/frames/6750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110200", "images": ["AURORA/data/something/frames/203631/first.jpg", "AURORA/data/something/frames/203631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a teddy panda bear upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110201", "images": ["AURORA/data/something/frames/191790/first.jpg", "AURORA/data/something/frames/191790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110202", "images": ["AURORA/data/something/frames/77534/first.jpg", "AURORA/data/something/frames/77534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110203", "images": ["AURORA/data/something/frames/44432/first.jpg", "AURORA/data/something/frames/44432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a soda can of many soda cans on a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110204", "images": ["AURORA/data/something/frames/200285/first.jpg", "AURORA/data/something/frames/200285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending torch so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110205", "images": ["AURORA/data/something/frames/162979/first.jpg", "AURORA/data/something/frames/162979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a page of a dictionary"}, {"from": "gpt", "value": ""}]} +{"id": "000000110206", "images": ["AURORA/data/something/frames/208496/first.jpg", "AURORA/data/something/frames/208496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110207", "images": ["AURORA/data/something/frames/154456/first.jpg", "AURORA/data/something/frames/154456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet closer to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110208", "images": ["AURORA/data/something/frames/165393/first.jpg", "AURORA/data/something/frames/165393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tv remote with plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110209", "images": ["AURORA/data/something/frames/12868/first.jpg", "AURORA/data/something/frames/12868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110210", "images": ["AURORA/data/something/frames/172134/first.jpg", "AURORA/data/something/frames/172134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110211", "images": ["AURORA/data/something/frames/150548/first.jpg", "AURORA/data/something/frames/150548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into tablet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110212", "images": ["AURORA/data/something/frames/140238/first.jpg", "AURORA/data/something/frames/140238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110213", "images": ["AURORA/data/something/frames/179067/first.jpg", "AURORA/data/something/frames/179067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking flower up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110214", "images": ["AURORA/data/something/frames/177104/first.jpg", "AURORA/data/something/frames/177104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coaster in front of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110215", "images": ["AURORA/data/something/frames/22739/first.jpg", "AURORA/data/something/frames/22739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel away from towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110216", "images": ["AURORA/data/something/frames/74748/first.jpg", "AURORA/data/something/frames/74748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) washcloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110217", "images": ["AURORA/data/something/frames/104278/first.jpg", "AURORA/data/something/frames/104278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110218", "images": ["AURORA/data/something/frames/98030/first.jpg", "AURORA/data/something/frames/98030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a marker being deflected from a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110219", "images": ["AURORA/data/something/frames/57815/first.jpg", "AURORA/data/something/frames/57815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110220", "images": ["AURORA/data/something/frames/89640/first.jpg", "AURORA/data/something/frames/89640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110221", "images": ["AURORA/data/something/frames/76888/first.jpg", "AURORA/data/something/frames/76888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from chapstick with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110222", "images": ["AURORA/data/something/frames/93317/first.jpg", "AURORA/data/something/frames/93317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a notecard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110223", "images": ["AURORA/data/something/frames/143119/first.jpg", "AURORA/data/something/frames/143119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissue box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110224", "images": ["AURORA/data/something/frames/70751/first.jpg", "AURORA/data/something/frames/70751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a notbook up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110225", "images": ["AURORA/data/something/frames/64503/first.jpg", "AURORA/data/something/frames/64503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling notebooks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110226", "images": ["AURORA/data/something/frames/26498/first.jpg", "AURORA/data/something/frames/26498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a bean bag so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110227", "images": ["AURORA/data/something/frames/17636/first.jpg", "AURORA/data/something/frames/17636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110228", "images": ["AURORA/data/something/frames/118132/first.jpg", "AURORA/data/something/frames/118132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking an apple so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110229", "images": ["AURORA/data/something/frames/61276/first.jpg", "AURORA/data/something/frames/61276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking towel so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110230", "images": ["AURORA/data/something/frames/29304/first.jpg", "AURORA/data/something/frames/29304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110231", "images": ["AURORA/data/something/frames/155006/first.jpg", "AURORA/data/something/frames/155006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110232", "images": ["AURORA/data/something/frames/136227/first.jpg", "AURORA/data/something/frames/136227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting carom coin onto powder tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110233", "images": ["AURORA/data/something/frames/180950/first.jpg", "AURORA/data/something/frames/180950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110234", "images": ["AURORA/data/something/frames/5082/first.jpg", "AURORA/data/something/frames/5082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paper clip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110235", "images": ["AURORA/data/something/frames/65210/first.jpg", "AURORA/data/something/frames/65210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking something so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110236", "images": ["AURORA/data/something/frames/180227/first.jpg", "AURORA/data/something/frames/180227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110237", "images": ["AURORA/data/something/frames/191201/first.jpg", "AURORA/data/something/frames/191201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tourch next to rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000110238", "images": ["AURORA/data/something/frames/93640/first.jpg", "AURORA/data/something/frames/93640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110239", "images": ["AURORA/data/something/frames/166061/first.jpg", "AURORA/data/something/frames/166061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone behind pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110240", "images": ["AURORA/data/something/frames/116084/first.jpg", "AURORA/data/something/frames/116084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending something until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110241", "images": ["AURORA/data/something/frames/163174/first.jpg", "AURORA/data/something/frames/163174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking screw out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110242", "images": ["AURORA/data/something/frames/57433/first.jpg", "AURORA/data/something/frames/57433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110243", "images": ["AURORA/data/something/frames/63108/first.jpg", "AURORA/data/something/frames/63108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110244", "images": ["AURORA/data/something/frames/186252/first.jpg", "AURORA/data/something/frames/186252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup into cup holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000110245", "images": ["AURORA/data/something/frames/32312/first.jpg", "AURORA/data/something/frames/32312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110246", "images": ["AURORA/data/something/frames/25513/first.jpg", "AURORA/data/something/frames/25513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110247", "images": ["AURORA/data/something/frames/189910/first.jpg", "AURORA/data/something/frames/189910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110248", "images": ["AURORA/data/something/frames/50968/first.jpg", "AURORA/data/something/frames/50968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110249", "images": ["AURORA/data/something/frames/115399/first.jpg", "AURORA/data/something/frames/115399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator in front of the pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110250", "images": ["AURORA/data/something/frames/135479/first.jpg", "AURORA/data/something/frames/135479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cream off of furniture"}, {"from": "gpt", "value": ""}]} +{"id": "000000110251", "images": ["AURORA/data/something/frames/119565/first.jpg", "AURORA/data/something/frames/119565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110252", "images": ["AURORA/data/something/frames/116330/first.jpg", "AURORA/data/something/frames/116330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110253", "images": ["AURORA/data/something/frames/51527/first.jpg", "AURORA/data/something/frames/51527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000110254", "images": ["AURORA/data/something/frames/123522/first.jpg", "AURORA/data/something/frames/123522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110255", "images": ["AURORA/data/something/frames/179843/first.jpg", "AURORA/data/something/frames/179843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110256", "images": ["AURORA/data/something/frames/183079/first.jpg", "AURORA/data/something/frames/183079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110257", "images": ["AURORA/data/something/frames/67977/first.jpg", "AURORA/data/something/frames/67977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book in front of a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110258", "images": ["AURORA/data/something/frames/122018/first.jpg", "AURORA/data/something/frames/122018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sharpener into rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110259", "images": ["AURORA/data/something/frames/155915/first.jpg", "AURORA/data/something/frames/155915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a covered bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110260", "images": ["AURORA/data/something/frames/197391/first.jpg", "AURORA/data/something/frames/197391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110261", "images": ["AURORA/data/something/frames/201350/first.jpg", "AURORA/data/something/frames/201350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping piece into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110262", "images": ["AURORA/data/something/frames/110104/first.jpg", "AURORA/data/something/frames/110104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pan from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110263", "images": ["AURORA/data/something/frames/198243/first.jpg", "AURORA/data/something/frames/198243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110264", "images": ["AURORA/data/something/frames/96049/first.jpg", "AURORA/data/something/frames/96049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110265", "images": ["AURORA/data/something/frames/181428/first.jpg", "AURORA/data/something/frames/181428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric cord into power outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110266", "images": ["AURORA/data/something/frames/213934/first.jpg", "AURORA/data/something/frames/213934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching plug to machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000110267", "images": ["AURORA/data/something/frames/74596/first.jpg", "AURORA/data/something/frames/74596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110268", "images": ["AURORA/data/something/frames/171227/first.jpg", "AURORA/data/something/frames/171227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000110269", "images": ["AURORA/data/something/frames/152197/first.jpg", "AURORA/data/something/frames/152197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110270", "images": ["AURORA/data/something/frames/175715/first.jpg", "AURORA/data/something/frames/175715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110271", "images": ["AURORA/data/something/frames/211485/first.jpg", "AURORA/data/something/frames/211485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110272", "images": ["AURORA/data/something/frames/23379/first.jpg", "AURORA/data/something/frames/23379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: crayon colliding with crayon and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110273", "images": ["AURORA/data/something/frames/53038/first.jpg", "AURORA/data/something/frames/53038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110274", "images": ["AURORA/data/something/frames/125681/first.jpg", "AURORA/data/something/frames/125681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy idol with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110275", "images": ["AURORA/data/something/frames/94633/first.jpg", "AURORA/data/something/frames/94633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110276", "images": ["AURORA/data/something/frames/114056/first.jpg", "AURORA/data/something/frames/114056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110277", "images": ["AURORA/data/something/frames/92923/first.jpg", "AURORA/data/something/frames/92923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110278", "images": ["AURORA/data/something/frames/153645/first.jpg", "AURORA/data/something/frames/153645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110279", "images": ["AURORA/data/something/frames/67430/first.jpg", "AURORA/data/something/frames/67430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of plastic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110280", "images": ["AURORA/data/something/frames/70696/first.jpg", "AURORA/data/something/frames/70696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping chocolate in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110281", "images": ["AURORA/data/something/frames/107291/first.jpg", "AURORA/data/something/frames/107291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110282", "images": ["AURORA/data/something/frames/33666/first.jpg", "AURORA/data/something/frames/33666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110283", "images": ["AURORA/data/something/frames/192925/first.jpg", "AURORA/data/something/frames/192925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting canned food on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110284", "images": ["AURORA/data/something/frames/19618/first.jpg", "AURORA/data/something/frames/19618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110285", "images": ["AURORA/data/something/frames/152476/first.jpg", "AURORA/data/something/frames/152476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto rice cake"}, {"from": "gpt", "value": ""}]} +{"id": "000000110286", "images": ["AURORA/data/something/frames/123620/first.jpg", "AURORA/data/something/frames/123620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping salsa up with chip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110287", "images": ["AURORA/data/something/frames/133624/first.jpg", "AURORA/data/something/frames/133624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110288", "images": ["AURORA/data/something/frames/41547/first.jpg", "AURORA/data/something/frames/41547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three pieces of paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110289", "images": ["AURORA/data/something/frames/162652/first.jpg", "AURORA/data/something/frames/162652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a battery with a letter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110290", "images": ["AURORA/data/something/frames/28203/first.jpg", "AURORA/data/something/frames/28203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting thread spool behind jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110291", "images": ["AURORA/data/something/frames/55035/first.jpg", "AURORA/data/something/frames/55035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deo behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110292", "images": ["AURORA/data/something/frames/100492/first.jpg", "AURORA/data/something/frames/100492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tape into candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110293", "images": ["AURORA/data/something/frames/95811/first.jpg", "AURORA/data/something/frames/95811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling chord out of vacuum cleaner"}, {"from": "gpt", "value": ""}]} +{"id": "000000110294", "images": ["AURORA/data/something/frames/87284/first.jpg", "AURORA/data/something/frames/87284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping plastic cup with table tennis balls over, so table tennis balls falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110295", "images": ["AURORA/data/something/frames/200106/first.jpg", "AURORA/data/something/frames/200106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into switch but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110296", "images": ["AURORA/data/something/frames/3752/first.jpg", "AURORA/data/something/frames/3752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110297", "images": ["AURORA/data/something/frames/74763/first.jpg", "AURORA/data/something/frames/74763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting table with paperweight"}, {"from": "gpt", "value": ""}]} +{"id": "000000110298", "images": ["AURORA/data/something/frames/68127/first.jpg", "AURORA/data/something/frames/68127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing metal box with highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110299", "images": ["AURORA/data/something/frames/86174/first.jpg", "AURORA/data/something/frames/86174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110300", "images": ["AURORA/data/something/frames/177367/first.jpg", "AURORA/data/something/frames/177367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110301", "images": ["AURORA/data/something/frames/82861/first.jpg", "AURORA/data/something/frames/82861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110302", "images": ["AURORA/data/something/frames/163187/first.jpg", "AURORA/data/something/frames/163187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box away from the spray bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110303", "images": ["AURORA/data/something/frames/58794/first.jpg", "AURORA/data/something/frames/58794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a balloon into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110304", "images": ["AURORA/data/something/frames/143700/first.jpg", "AURORA/data/something/frames/143700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110305", "images": ["AURORA/data/something/frames/202503/first.jpg", "AURORA/data/something/frames/202503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110306", "images": ["AURORA/data/something/frames/102746/first.jpg", "AURORA/data/something/frames/102746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet, luggage tag and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110307", "images": ["AURORA/data/something/frames/54813/first.jpg", "AURORA/data/something/frames/54813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110308", "images": ["AURORA/data/something/frames/4205/first.jpg", "AURORA/data/something/frames/4205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110309", "images": ["AURORA/data/something/frames/207296/first.jpg", "AURORA/data/something/frames/207296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110310", "images": ["AURORA/data/something/frames/214030/first.jpg", "AURORA/data/something/frames/214030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110311", "images": ["AURORA/data/something/frames/177027/first.jpg", "AURORA/data/something/frames/177027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110312", "images": ["AURORA/data/something/frames/65710/first.jpg", "AURORA/data/something/frames/65710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a smiley face off of a whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110313", "images": ["AURORA/data/something/frames/203633/first.jpg", "AURORA/data/something/frames/203633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an ecig onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110314", "images": ["AURORA/data/something/frames/130699/first.jpg", "AURORA/data/something/frames/130699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a thermos on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110315", "images": ["AURORA/data/something/frames/152272/first.jpg", "AURORA/data/something/frames/152272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110316", "images": ["AURORA/data/something/frames/152698/first.jpg", "AURORA/data/something/frames/152698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking an orange up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110317", "images": ["AURORA/data/something/frames/113865/first.jpg", "AURORA/data/something/frames/113865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110318", "images": ["AURORA/data/something/frames/218954/first.jpg", "AURORA/data/something/frames/218954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a highlighter out of a pencil-case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110319", "images": ["AURORA/data/something/frames/75649/first.jpg", "AURORA/data/something/frames/75649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting slipper underneath chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000110320", "images": ["AURORA/data/something/frames/126698/first.jpg", "AURORA/data/something/frames/126698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stapler from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110321", "images": ["AURORA/data/something/frames/59470/first.jpg", "AURORA/data/something/frames/59470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping container with coffee grounds over, so coffee falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110322", "images": ["AURORA/data/something/frames/196117/first.jpg", "AURORA/data/something/frames/196117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110323", "images": ["AURORA/data/something/frames/186862/first.jpg", "AURORA/data/something/frames/186862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110324", "images": ["AURORA/data/something/frames/166344/first.jpg", "AURORA/data/something/frames/166344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping flour off of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110325", "images": ["AURORA/data/something/frames/52922/first.jpg", "AURORA/data/something/frames/52922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110326", "images": ["AURORA/data/something/frames/163835/first.jpg", "AURORA/data/something/frames/163835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110327", "images": ["AURORA/data/something/frames/53320/first.jpg", "AURORA/data/something/frames/53320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristwatch and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110328", "images": ["AURORA/data/something/frames/79758/first.jpg", "AURORA/data/something/frames/79758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000110329", "images": ["AURORA/data/something/frames/113782/first.jpg", "AURORA/data/something/frames/113782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110330", "images": ["AURORA/data/something/frames/81621/first.jpg", "AURORA/data/something/frames/81621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening container"}, {"from": "gpt", "value": ""}]} +{"id": "000000110331", "images": ["AURORA/data/something/frames/120367/first.jpg", "AURORA/data/something/frames/120367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red toy car onto battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000110332", "images": ["AURORA/data/something/frames/122669/first.jpg", "AURORA/data/something/frames/122669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110333", "images": ["AURORA/data/something/frames/202652/first.jpg", "AURORA/data/something/frames/202652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110334", "images": ["AURORA/data/something/frames/82961/first.jpg", "AURORA/data/something/frames/82961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cards and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110335", "images": ["AURORA/data/something/frames/101934/first.jpg", "AURORA/data/something/frames/101934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110336", "images": ["AURORA/data/something/frames/209071/first.jpg", "AURORA/data/something/frames/209071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking water bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110337", "images": ["AURORA/data/something/frames/37797/first.jpg", "AURORA/data/something/frames/37797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a banana and a pomengranate closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110338", "images": ["AURORA/data/something/frames/183666/first.jpg", "AURORA/data/something/frames/183666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110339", "images": ["AURORA/data/something/frames/87956/first.jpg", "AURORA/data/something/frames/87956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottled water in front of nail cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110340", "images": ["AURORA/data/something/frames/39021/first.jpg", "AURORA/data/something/frames/39021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110341", "images": ["AURORA/data/something/frames/13646/first.jpg", "AURORA/data/something/frames/13646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving little jar and little jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110342", "images": ["AURORA/data/something/frames/76647/first.jpg", "AURORA/data/something/frames/76647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle, toy and perfume bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110343", "images": ["AURORA/data/something/frames/5853/first.jpg", "AURORA/data/something/frames/5853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a card so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110344", "images": ["AURORA/data/something/frames/1425/first.jpg", "AURORA/data/something/frames/1425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering light bulb with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110345", "images": ["AURORA/data/something/frames/143589/first.jpg", "AURORA/data/something/frames/143589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110346", "images": ["AURORA/data/something/frames/217149/first.jpg", "AURORA/data/something/frames/217149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cereal off of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000110347", "images": ["AURORA/data/something/frames/146248/first.jpg", "AURORA/data/something/frames/146248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an envelope in front of a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110348", "images": ["AURORA/data/something/frames/102218/first.jpg", "AURORA/data/something/frames/102218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110349", "images": ["AURORA/data/something/frames/153067/first.jpg", "AURORA/data/something/frames/153067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110350", "images": ["AURORA/data/something/frames/44152/first.jpg", "AURORA/data/something/frames/44152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a fork on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110351", "images": ["AURORA/data/something/frames/4427/first.jpg", "AURORA/data/something/frames/4427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110352", "images": ["AURORA/data/something/frames/87208/first.jpg", "AURORA/data/something/frames/87208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ear plug carrying case in front of a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110353", "images": ["AURORA/data/something/frames/69702/first.jpg", "AURORA/data/something/frames/69702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown bracelet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110354", "images": ["AURORA/data/something/frames/93814/first.jpg", "AURORA/data/something/frames/93814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote away from coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110355", "images": ["AURORA/data/something/frames/20649/first.jpg", "AURORA/data/something/frames/20649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering comb with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110356", "images": ["AURORA/data/something/frames/24451/first.jpg", "AURORA/data/something/frames/24451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing glass, revealing highlighter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110357", "images": ["AURORA/data/something/frames/89805/first.jpg", "AURORA/data/something/frames/89805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110358", "images": ["AURORA/data/something/frames/183051/first.jpg", "AURORA/data/something/frames/183051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110359", "images": ["AURORA/data/something/frames/193487/first.jpg", "AURORA/data/something/frames/193487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adapter into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110360", "images": ["AURORA/data/something/frames/166475/first.jpg", "AURORA/data/something/frames/166475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching dogs with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110361", "images": ["AURORA/data/something/frames/127108/first.jpg", "AURORA/data/something/frames/127108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110362", "images": ["AURORA/data/something/frames/43079/first.jpg", "AURORA/data/something/frames/43079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lotion upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110363", "images": ["AURORA/data/something/frames/17878/first.jpg", "AURORA/data/something/frames/17878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110364", "images": ["AURORA/data/something/frames/20824/first.jpg", "AURORA/data/something/frames/20824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110365", "images": ["AURORA/data/something/frames/107292/first.jpg", "AURORA/data/something/frames/107292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000110366", "images": ["AURORA/data/something/frames/81792/first.jpg", "AURORA/data/something/frames/81792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto alovera shrub"}, {"from": "gpt", "value": ""}]} +{"id": "000000110367", "images": ["AURORA/data/something/frames/187032/first.jpg", "AURORA/data/something/frames/187032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110368", "images": ["AURORA/data/something/frames/169730/first.jpg", "AURORA/data/something/frames/169730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110369", "images": ["AURORA/data/something/frames/77230/first.jpg", "AURORA/data/something/frames/77230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a container with soap in it over, so soap falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110370", "images": ["AURORA/data/something/frames/94882/first.jpg", "AURORA/data/something/frames/94882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubix cube into cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110371", "images": ["AURORA/data/something/frames/111202/first.jpg", "AURORA/data/something/frames/111202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110372", "images": ["AURORA/data/something/frames/169328/first.jpg", "AURORA/data/something/frames/169328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing empty treat bar wrap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110373", "images": ["AURORA/data/something/frames/112554/first.jpg", "AURORA/data/something/frames/112554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cell from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110374", "images": ["AURORA/data/something/frames/80963/first.jpg", "AURORA/data/something/frames/80963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110375", "images": ["AURORA/data/something/frames/106417/first.jpg", "AURORA/data/something/frames/106417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin into a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110376", "images": ["AURORA/data/something/frames/216066/first.jpg", "AURORA/data/something/frames/216066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mobile phone from car dashboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110377", "images": ["AURORA/data/something/frames/61773/first.jpg", "AURORA/data/something/frames/61773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110378", "images": ["AURORA/data/something/frames/120935/first.jpg", "AURORA/data/something/frames/120935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green headlight from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110379", "images": ["AURORA/data/something/frames/211963/first.jpg", "AURORA/data/something/frames/211963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cat litter up with a scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110380", "images": ["AURORA/data/something/frames/18322/first.jpg", "AURORA/data/something/frames/18322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wipe onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110381", "images": ["AURORA/data/something/frames/52138/first.jpg", "AURORA/data/something/frames/52138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110382", "images": ["AURORA/data/something/frames/142509/first.jpg", "AURORA/data/something/frames/142509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110383", "images": ["AURORA/data/something/frames/161170/first.jpg", "AURORA/data/something/frames/161170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110384", "images": ["AURORA/data/something/frames/139218/first.jpg", "AURORA/data/something/frames/139218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling pens behind a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110385", "images": ["AURORA/data/something/frames/178579/first.jpg", "AURORA/data/something/frames/178579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110386", "images": ["AURORA/data/something/frames/106135/first.jpg", "AURORA/data/something/frames/106135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110387", "images": ["AURORA/data/something/frames/117714/first.jpg", "AURORA/data/something/frames/117714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110388", "images": ["AURORA/data/something/frames/99519/first.jpg", "AURORA/data/something/frames/99519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder clips next to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110389", "images": ["AURORA/data/something/frames/113585/first.jpg", "AURORA/data/something/frames/113585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110390", "images": ["AURORA/data/something/frames/127897/first.jpg", "AURORA/data/something/frames/127897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110391", "images": ["AURORA/data/something/frames/72452/first.jpg", "AURORA/data/something/frames/72452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toothpaste from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110392", "images": ["AURORA/data/something/frames/69441/first.jpg", "AURORA/data/something/frames/69441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding drawstring bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110393", "images": ["AURORA/data/something/frames/5746/first.jpg", "AURORA/data/something/frames/5746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton filling into pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110394", "images": ["AURORA/data/something/frames/120180/first.jpg", "AURORA/data/something/frames/120180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110395", "images": ["AURORA/data/something/frames/155415/first.jpg", "AURORA/data/something/frames/155415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle into paper bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110396", "images": ["AURORA/data/something/frames/21664/first.jpg", "AURORA/data/something/frames/21664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110397", "images": ["AURORA/data/something/frames/20588/first.jpg", "AURORA/data/something/frames/20588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dictionary on the edge of pencil box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110398", "images": ["AURORA/data/something/frames/6127/first.jpg", "AURORA/data/something/frames/6127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110399", "images": ["AURORA/data/something/frames/74828/first.jpg", "AURORA/data/something/frames/74828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting charger adapter on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110400", "images": ["AURORA/data/something/frames/29569/first.jpg", "AURORA/data/something/frames/29569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming audio sistem"}, {"from": "gpt", "value": ""}]} +{"id": "000000110401", "images": ["AURORA/data/something/frames/67146/first.jpg", "AURORA/data/something/frames/67146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chopstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110402", "images": ["AURORA/data/something/frames/79814/first.jpg", "AURORA/data/something/frames/79814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a matchstick onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000110403", "images": ["AURORA/data/something/frames/59723/first.jpg", "AURORA/data/something/frames/59723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000110404", "images": ["AURORA/data/something/frames/162736/first.jpg", "AURORA/data/something/frames/162736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110405", "images": ["AURORA/data/something/frames/112291/first.jpg", "AURORA/data/something/frames/112291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glass up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110406", "images": ["AURORA/data/something/frames/110025/first.jpg", "AURORA/data/something/frames/110025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching tape to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110407", "images": ["AURORA/data/something/frames/204475/first.jpg", "AURORA/data/something/frames/204475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging pocket bible out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110408", "images": ["AURORA/data/something/frames/20620/first.jpg", "AURORA/data/something/frames/20620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110409", "images": ["AURORA/data/something/frames/169138/first.jpg", "AURORA/data/something/frames/169138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup away from a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110410", "images": ["AURORA/data/something/frames/36087/first.jpg", "AURORA/data/something/frames/36087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110411", "images": ["AURORA/data/something/frames/56259/first.jpg", "AURORA/data/something/frames/56259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue colour spectacle box with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110412", "images": ["AURORA/data/something/frames/151271/first.jpg", "AURORA/data/something/frames/151271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging pendrive into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000110413", "images": ["AURORA/data/something/frames/150758/first.jpg", "AURORA/data/something/frames/150758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl into plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110414", "images": ["AURORA/data/something/frames/115040/first.jpg", "AURORA/data/something/frames/115040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubix cube in front of battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000110415", "images": ["AURORA/data/something/frames/54423/first.jpg", "AURORA/data/something/frames/54423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110416", "images": ["AURORA/data/something/frames/99450/first.jpg", "AURORA/data/something/frames/99450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 black toy wheels onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110417", "images": ["AURORA/data/something/frames/108469/first.jpg", "AURORA/data/something/frames/108469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white badge from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110418", "images": ["AURORA/data/something/frames/174209/first.jpg", "AURORA/data/something/frames/174209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging pendrive into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110419", "images": ["AURORA/data/something/frames/162798/first.jpg", "AURORA/data/something/frames/162798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda and box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110420", "images": ["AURORA/data/something/frames/148462/first.jpg", "AURORA/data/something/frames/148462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lotion closer to flask"}, {"from": "gpt", "value": ""}]} +{"id": "000000110421", "images": ["AURORA/data/something/frames/73284/first.jpg", "AURORA/data/something/frames/73284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking chalk out of box of chalk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110422", "images": ["AURORA/data/something/frames/204524/first.jpg", "AURORA/data/something/frames/204524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110423", "images": ["AURORA/data/something/frames/100896/first.jpg", "AURORA/data/something/frames/100896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110424", "images": ["AURORA/data/something/frames/156235/first.jpg", "AURORA/data/something/frames/156235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wooden pice colliding with other wooden piece and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110425", "images": ["AURORA/data/something/frames/59778/first.jpg", "AURORA/data/something/frames/59778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tamper over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110426", "images": ["AURORA/data/something/frames/55394/first.jpg", "AURORA/data/something/frames/55394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small statue away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110427", "images": ["AURORA/data/something/frames/180028/first.jpg", "AURORA/data/something/frames/180028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110428", "images": ["AURORA/data/something/frames/123240/first.jpg", "AURORA/data/something/frames/123240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 bowls"}, {"from": "gpt", "value": ""}]} +{"id": "000000110429", "images": ["AURORA/data/something/frames/209640/first.jpg", "AURORA/data/something/frames/209640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110430", "images": ["AURORA/data/something/frames/210932/first.jpg", "AURORA/data/something/frames/210932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110431", "images": ["AURORA/data/something/frames/115545/first.jpg", "AURORA/data/something/frames/115545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110432", "images": ["AURORA/data/something/frames/144689/first.jpg", "AURORA/data/something/frames/144689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110433", "images": ["AURORA/data/something/frames/83822/first.jpg", "AURORA/data/something/frames/83822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purple container down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110434", "images": ["AURORA/data/something/frames/152813/first.jpg", "AURORA/data/something/frames/152813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110435", "images": ["AURORA/data/something/frames/90056/first.jpg", "AURORA/data/something/frames/90056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110436", "images": ["AURORA/data/something/frames/46853/first.jpg", "AURORA/data/something/frames/46853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bangles with leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000110437", "images": ["AURORA/data/something/frames/77924/first.jpg", "AURORA/data/something/frames/77924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110438", "images": ["AURORA/data/something/frames/76627/first.jpg", "AURORA/data/something/frames/76627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling shirt out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110439", "images": ["AURORA/data/something/frames/171064/first.jpg", "AURORA/data/something/frames/171064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pen into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110440", "images": ["AURORA/data/something/frames/123377/first.jpg", "AURORA/data/something/frames/123377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a dishcloth into a small cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110441", "images": ["AURORA/data/something/frames/7635/first.jpg", "AURORA/data/something/frames/7635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110442", "images": ["AURORA/data/something/frames/168143/first.jpg", "AURORA/data/something/frames/168143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors closer to hair brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110443", "images": ["AURORA/data/something/frames/211216/first.jpg", "AURORA/data/something/frames/211216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110444", "images": ["AURORA/data/something/frames/88503/first.jpg", "AURORA/data/something/frames/88503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour something into something, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110445", "images": ["AURORA/data/something/frames/191932/first.jpg", "AURORA/data/something/frames/191932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110446", "images": ["AURORA/data/something/frames/149435/first.jpg", "AURORA/data/something/frames/149435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110447", "images": ["AURORA/data/something/frames/15177/first.jpg", "AURORA/data/something/frames/15177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting white cup and red cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110448", "images": ["AURORA/data/something/frames/81202/first.jpg", "AURORA/data/something/frames/81202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glass with pinecone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110449", "images": ["AURORA/data/something/frames/134958/first.jpg", "AURORA/data/something/frames/134958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling containers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110450", "images": ["AURORA/data/something/frames/67876/first.jpg", "AURORA/data/something/frames/67876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110451", "images": ["AURORA/data/something/frames/86392/first.jpg", "AURORA/data/something/frames/86392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110452", "images": ["AURORA/data/something/frames/180793/first.jpg", "AURORA/data/something/frames/180793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110453", "images": ["AURORA/data/something/frames/14401/first.jpg", "AURORA/data/something/frames/14401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a sticky notes pad so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110454", "images": ["AURORA/data/something/frames/131943/first.jpg", "AURORA/data/something/frames/131943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110455", "images": ["AURORA/data/something/frames/189978/first.jpg", "AURORA/data/something/frames/189978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000110456", "images": ["AURORA/data/something/frames/133625/first.jpg", "AURORA/data/something/frames/133625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with onion on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110457", "images": ["AURORA/data/something/frames/92838/first.jpg", "AURORA/data/something/frames/92838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler next to calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110458", "images": ["AURORA/data/something/frames/197302/first.jpg", "AURORA/data/something/frames/197302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering apple tv remote with coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110459", "images": ["AURORA/data/something/frames/106892/first.jpg", "AURORA/data/something/frames/106892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110460", "images": ["AURORA/data/something/frames/125199/first.jpg", "AURORA/data/something/frames/125199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000110461", "images": ["AURORA/data/something/frames/63988/first.jpg", "AURORA/data/something/frames/63988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plastic bag from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110462", "images": ["AURORA/data/something/frames/78377/first.jpg", "AURORA/data/something/frames/78377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing supplement bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110463", "images": ["AURORA/data/something/frames/139489/first.jpg", "AURORA/data/something/frames/139489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler off of rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000110464", "images": ["AURORA/data/something/frames/195652/first.jpg", "AURORA/data/something/frames/195652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar crayons"}, {"from": "gpt", "value": ""}]} +{"id": "000000110465", "images": ["AURORA/data/something/frames/155983/first.jpg", "AURORA/data/something/frames/155983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a remote into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110466", "images": ["AURORA/data/something/frames/174516/first.jpg", "AURORA/data/something/frames/174516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into a cell phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110467", "images": ["AURORA/data/something/frames/96422/first.jpg", "AURORA/data/something/frames/96422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet away from deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000110468", "images": ["AURORA/data/something/frames/185635/first.jpg", "AURORA/data/something/frames/185635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110469", "images": ["AURORA/data/something/frames/105170/first.jpg", "AURORA/data/something/frames/105170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000110470", "images": ["AURORA/data/something/frames/140339/first.jpg", "AURORA/data/something/frames/140339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching keyring to a clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110471", "images": ["AURORA/data/something/frames/27536/first.jpg", "AURORA/data/something/frames/27536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110472", "images": ["AURORA/data/something/frames/155607/first.jpg", "AURORA/data/something/frames/155607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110473", "images": ["AURORA/data/something/frames/138958/first.jpg", "AURORA/data/something/frames/138958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on the edge of bowl so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110474", "images": ["AURORA/data/something/frames/147014/first.jpg", "AURORA/data/something/frames/147014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110475", "images": ["AURORA/data/something/frames/201428/first.jpg", "AURORA/data/something/frames/201428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110476", "images": ["AURORA/data/something/frames/17312/first.jpg", "AURORA/data/something/frames/17312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour coffee into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110477", "images": ["AURORA/data/something/frames/13508/first.jpg", "AURORA/data/something/frames/13508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from rubber band packets with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110478", "images": ["AURORA/data/something/frames/208773/first.jpg", "AURORA/data/something/frames/208773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding coat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110479", "images": ["AURORA/data/something/frames/65251/first.jpg", "AURORA/data/something/frames/65251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000110480", "images": ["AURORA/data/something/frames/199300/first.jpg", "AURORA/data/something/frames/199300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda can away from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110481", "images": ["AURORA/data/something/frames/37066/first.jpg", "AURORA/data/something/frames/37066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110482", "images": ["AURORA/data/something/frames/153343/first.jpg", "AURORA/data/something/frames/153343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pink ball onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110483", "images": ["AURORA/data/something/frames/189654/first.jpg", "AURORA/data/something/frames/189654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with tape on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110484", "images": ["AURORA/data/something/frames/154181/first.jpg", "AURORA/data/something/frames/154181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming rubiks cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000110485", "images": ["AURORA/data/something/frames/59222/first.jpg", "AURORA/data/something/frames/59222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pencil sharpners"}, {"from": "gpt", "value": ""}]} +{"id": "000000110486", "images": ["AURORA/data/something/frames/95695/first.jpg", "AURORA/data/something/frames/95695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into powdered grain"}, {"from": "gpt", "value": ""}]} +{"id": "000000110487", "images": ["AURORA/data/something/frames/135245/first.jpg", "AURORA/data/something/frames/135245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110488", "images": ["AURORA/data/something/frames/202806/first.jpg", "AURORA/data/something/frames/202806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110489", "images": ["AURORA/data/something/frames/64669/first.jpg", "AURORA/data/something/frames/64669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110490", "images": ["AURORA/data/something/frames/199369/first.jpg", "AURORA/data/something/frames/199369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a little piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110491", "images": ["AURORA/data/something/frames/207044/first.jpg", "AURORA/data/something/frames/207044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red booklet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110492", "images": ["AURORA/data/something/frames/10996/first.jpg", "AURORA/data/something/frames/10996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110493", "images": ["AURORA/data/something/frames/53390/first.jpg", "AURORA/data/something/frames/53390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110494", "images": ["AURORA/data/something/frames/75325/first.jpg", "AURORA/data/something/frames/75325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000110495", "images": ["AURORA/data/something/frames/46447/first.jpg", "AURORA/data/something/frames/46447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a pen in buttons"}, {"from": "gpt", "value": ""}]} +{"id": "000000110496", "images": ["AURORA/data/something/frames/110345/first.jpg", "AURORA/data/something/frames/110345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a thermocol away from the clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110497", "images": ["AURORA/data/something/frames/217790/first.jpg", "AURORA/data/something/frames/217790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a balloon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110498", "images": ["AURORA/data/something/frames/31027/first.jpg", "AURORA/data/something/frames/31027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour cold water into a water glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110499", "images": ["AURORA/data/something/frames/88925/first.jpg", "AURORA/data/something/frames/88925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching vacuum cleaner with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110500", "images": ["AURORA/data/something/frames/26293/first.jpg", "AURORA/data/something/frames/26293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110501", "images": ["AURORA/data/something/frames/135265/first.jpg", "AURORA/data/something/frames/135265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 rings"}, {"from": "gpt", "value": ""}]} +{"id": "000000110502", "images": ["AURORA/data/something/frames/141245/first.jpg", "AURORA/data/something/frames/141245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110503", "images": ["AURORA/data/something/frames/12521/first.jpg", "AURORA/data/something/frames/12521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dvd onto a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110504", "images": ["AURORA/data/something/frames/85087/first.jpg", "AURORA/data/something/frames/85087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a water bottle out of a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110505", "images": ["AURORA/data/something/frames/54104/first.jpg", "AURORA/data/something/frames/54104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bolt with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110506", "images": ["AURORA/data/something/frames/15729/first.jpg", "AURORA/data/something/frames/15729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pretzel until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110507", "images": ["AURORA/data/something/frames/61876/first.jpg", "AURORA/data/something/frames/61876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook and pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110508", "images": ["AURORA/data/something/frames/84403/first.jpg", "AURORA/data/something/frames/84403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wood with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110509", "images": ["AURORA/data/something/frames/200795/first.jpg", "AURORA/data/something/frames/200795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110510", "images": ["AURORA/data/something/frames/92546/first.jpg", "AURORA/data/something/frames/92546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glass with marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000110511", "images": ["AURORA/data/something/frames/113492/first.jpg", "AURORA/data/something/frames/113492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cloth so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110512", "images": ["AURORA/data/something/frames/137219/first.jpg", "AURORA/data/something/frames/137219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tennis ball with cd stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110513", "images": ["AURORA/data/something/frames/6317/first.jpg", "AURORA/data/something/frames/6317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling lock handle from behind of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110514", "images": ["AURORA/data/something/frames/201135/first.jpg", "AURORA/data/something/frames/201135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a brush onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110515", "images": ["AURORA/data/something/frames/65177/first.jpg", "AURORA/data/something/frames/65177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110516", "images": ["AURORA/data/something/frames/164069/first.jpg", "AURORA/data/something/frames/164069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tooth brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110517", "images": ["AURORA/data/something/frames/144614/first.jpg", "AURORA/data/something/frames/144614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110518", "images": ["AURORA/data/something/frames/93125/first.jpg", "AURORA/data/something/frames/93125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing meter box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110519", "images": ["AURORA/data/something/frames/55783/first.jpg", "AURORA/data/something/frames/55783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping coffee up with scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110520", "images": ["AURORA/data/something/frames/98800/first.jpg", "AURORA/data/something/frames/98800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black lipstick from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110521", "images": ["AURORA/data/something/frames/182935/first.jpg", "AURORA/data/something/frames/182935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110522", "images": ["AURORA/data/something/frames/50850/first.jpg", "AURORA/data/something/frames/50850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a cell phone case so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110523", "images": ["AURORA/data/something/frames/3125/first.jpg", "AURORA/data/something/frames/3125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coke onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110524", "images": ["AURORA/data/something/frames/97643/first.jpg", "AURORA/data/something/frames/97643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking chair so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110525", "images": ["AURORA/data/something/frames/128275/first.jpg", "AURORA/data/something/frames/128275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy train from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110526", "images": ["AURORA/data/something/frames/143136/first.jpg", "AURORA/data/something/frames/143136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110527", "images": ["AURORA/data/something/frames/120164/first.jpg", "AURORA/data/something/frames/120164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving accelarator of scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110528", "images": ["AURORA/data/something/frames/10928/first.jpg", "AURORA/data/something/frames/10928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110529", "images": ["AURORA/data/something/frames/200972/first.jpg", "AURORA/data/something/frames/200972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110530", "images": ["AURORA/data/something/frames/61889/first.jpg", "AURORA/data/something/frames/61889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a rubiks cube with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110531", "images": ["AURORA/data/something/frames/103292/first.jpg", "AURORA/data/something/frames/103292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting liner next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110532", "images": ["AURORA/data/something/frames/158793/first.jpg", "AURORA/data/something/frames/158793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping perfume over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110533", "images": ["AURORA/data/something/frames/134268/first.jpg", "AURORA/data/something/frames/134268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading rice onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110534", "images": ["AURORA/data/something/frames/185976/first.jpg", "AURORA/data/something/frames/185976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black play cards down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110535", "images": ["AURORA/data/something/frames/204130/first.jpg", "AURORA/data/something/frames/204130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing teddy bear, revealing a bottle behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110536", "images": ["AURORA/data/something/frames/5017/first.jpg", "AURORA/data/something/frames/5017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring ground coffee into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110537", "images": ["AURORA/data/something/frames/177818/first.jpg", "AURORA/data/something/frames/177818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen onto a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000110538", "images": ["AURORA/data/something/frames/213709/first.jpg", "AURORA/data/something/frames/213709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin from behind of cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000110539", "images": ["AURORA/data/something/frames/204395/first.jpg", "AURORA/data/something/frames/204395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110540", "images": ["AURORA/data/something/frames/116256/first.jpg", "AURORA/data/something/frames/116256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110541", "images": ["AURORA/data/something/frames/9605/first.jpg", "AURORA/data/something/frames/9605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110542", "images": ["AURORA/data/something/frames/647/first.jpg", "AURORA/data/something/frames/647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000110543", "images": ["AURORA/data/something/frames/85571/first.jpg", "AURORA/data/something/frames/85571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pink water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110544", "images": ["AURORA/data/something/frames/173807/first.jpg", "AURORA/data/something/frames/173807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a ketchup bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110545", "images": ["AURORA/data/something/frames/9025/first.jpg", "AURORA/data/something/frames/9025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 sandal"}, {"from": "gpt", "value": ""}]} +{"id": "000000110546", "images": ["AURORA/data/something/frames/179518/first.jpg", "AURORA/data/something/frames/179518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper piece so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110547", "images": ["AURORA/data/something/frames/67070/first.jpg", "AURORA/data/something/frames/67070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toiletpaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110548", "images": ["AURORA/data/something/frames/51923/first.jpg", "AURORA/data/something/frames/51923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110549", "images": ["AURORA/data/something/frames/140210/first.jpg", "AURORA/data/something/frames/140210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110550", "images": ["AURORA/data/something/frames/96217/first.jpg", "AURORA/data/something/frames/96217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading rice onto spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110551", "images": ["AURORA/data/something/frames/177113/first.jpg", "AURORA/data/something/frames/177113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110552", "images": ["AURORA/data/something/frames/39883/first.jpg", "AURORA/data/something/frames/39883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110553", "images": ["AURORA/data/something/frames/159264/first.jpg", "AURORA/data/something/frames/159264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110554", "images": ["AURORA/data/something/frames/195315/first.jpg", "AURORA/data/something/frames/195315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110555", "images": ["AURORA/data/something/frames/104832/first.jpg", "AURORA/data/something/frames/104832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110556", "images": ["AURORA/data/something/frames/72826/first.jpg", "AURORA/data/something/frames/72826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spanner on the right among many spanners on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110557", "images": ["AURORA/data/something/frames/188732/first.jpg", "AURORA/data/something/frames/188732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ketchup bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110558", "images": ["AURORA/data/something/frames/9789/first.jpg", "AURORA/data/something/frames/9789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110559", "images": ["AURORA/data/something/frames/160208/first.jpg", "AURORA/data/something/frames/160208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110560", "images": ["AURORA/data/something/frames/196535/first.jpg", "AURORA/data/something/frames/196535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110561", "images": ["AURORA/data/something/frames/154077/first.jpg", "AURORA/data/something/frames/154077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110562", "images": ["AURORA/data/something/frames/154981/first.jpg", "AURORA/data/something/frames/154981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110563", "images": ["AURORA/data/something/frames/165629/first.jpg", "AURORA/data/something/frames/165629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 containers"}, {"from": "gpt", "value": ""}]} +{"id": "000000110564", "images": ["AURORA/data/something/frames/138697/first.jpg", "AURORA/data/something/frames/138697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110565", "images": ["AURORA/data/something/frames/13947/first.jpg", "AURORA/data/something/frames/13947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging coin out of flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000110566", "images": ["AURORA/data/something/frames/31268/first.jpg", "AURORA/data/something/frames/31268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one pen from the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110567", "images": ["AURORA/data/something/frames/182600/first.jpg", "AURORA/data/something/frames/182600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110568", "images": ["AURORA/data/something/frames/189850/first.jpg", "AURORA/data/something/frames/189850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110569", "images": ["AURORA/data/something/frames/206028/first.jpg", "AURORA/data/something/frames/206028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pear into the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110570", "images": ["AURORA/data/something/frames/182462/first.jpg", "AURORA/data/something/frames/182462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110571", "images": ["AURORA/data/something/frames/16248/first.jpg", "AURORA/data/something/frames/16248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping white spoon into glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110572", "images": ["AURORA/data/something/frames/101335/first.jpg", "AURORA/data/something/frames/101335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into a laptop usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000110573", "images": ["AURORA/data/something/frames/108172/first.jpg", "AURORA/data/something/frames/108172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110574", "images": ["AURORA/data/something/frames/66982/first.jpg", "AURORA/data/something/frames/66982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110575", "images": ["AURORA/data/something/frames/155594/first.jpg", "AURORA/data/something/frames/155594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screen of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110576", "images": ["AURORA/data/something/frames/91984/first.jpg", "AURORA/data/something/frames/91984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ring out of jewelry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110577", "images": ["AURORA/data/something/frames/13269/first.jpg", "AURORA/data/something/frames/13269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110578", "images": ["AURORA/data/something/frames/176845/first.jpg", "AURORA/data/something/frames/176845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering rock with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110579", "images": ["AURORA/data/something/frames/125532/first.jpg", "AURORA/data/something/frames/125532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving water bottle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110580", "images": ["AURORA/data/something/frames/20974/first.jpg", "AURORA/data/something/frames/20974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a clock over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110581", "images": ["AURORA/data/something/frames/23465/first.jpg", "AURORA/data/something/frames/23465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning birthday card upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110582", "images": ["AURORA/data/something/frames/203451/first.jpg", "AURORA/data/something/frames/203451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110583", "images": ["AURORA/data/something/frames/31589/first.jpg", "AURORA/data/something/frames/31589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game behind paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110584", "images": ["AURORA/data/something/frames/95537/first.jpg", "AURORA/data/something/frames/95537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cube onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110585", "images": ["AURORA/data/something/frames/37291/first.jpg", "AURORA/data/something/frames/37291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notepad paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110586", "images": ["AURORA/data/something/frames/144888/first.jpg", "AURORA/data/something/frames/144888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying remote in blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110587", "images": ["AURORA/data/something/frames/28082/first.jpg", "AURORA/data/something/frames/28082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110588", "images": ["AURORA/data/something/frames/114333/first.jpg", "AURORA/data/something/frames/114333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110589", "images": ["AURORA/data/something/frames/214567/first.jpg", "AURORA/data/something/frames/214567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110590", "images": ["AURORA/data/something/frames/94575/first.jpg", "AURORA/data/something/frames/94575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110591", "images": ["AURORA/data/something/frames/156285/first.jpg", "AURORA/data/something/frames/156285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) paper of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110592", "images": ["AURORA/data/something/frames/1422/first.jpg", "AURORA/data/something/frames/1422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110593", "images": ["AURORA/data/something/frames/27595/first.jpg", "AURORA/data/something/frames/27595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110594", "images": ["AURORA/data/something/frames/177507/first.jpg", "AURORA/data/something/frames/177507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110595", "images": ["AURORA/data/something/frames/34509/first.jpg", "AURORA/data/something/frames/34509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving body spray can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110596", "images": ["AURORA/data/something/frames/121323/first.jpg", "AURORA/data/something/frames/121323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending thick paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110597", "images": ["AURORA/data/something/frames/84915/first.jpg", "AURORA/data/something/frames/84915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clip closer to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110598", "images": ["AURORA/data/something/frames/183374/first.jpg", "AURORA/data/something/frames/183374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy plane from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110599", "images": ["AURORA/data/something/frames/123364/first.jpg", "AURORA/data/something/frames/123364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tissue box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110600", "images": ["AURORA/data/something/frames/187215/first.jpg", "AURORA/data/something/frames/187215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red bottlecap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110601", "images": ["AURORA/data/something/frames/216111/first.jpg", "AURORA/data/something/frames/216111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110602", "images": ["AURORA/data/something/frames/155531/first.jpg", "AURORA/data/something/frames/155531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the slipper with the foot"}, {"from": "gpt", "value": ""}]} +{"id": "000000110603", "images": ["AURORA/data/something/frames/63161/first.jpg", "AURORA/data/something/frames/63161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a paper clip behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110604", "images": ["AURORA/data/something/frames/157400/first.jpg", "AURORA/data/something/frames/157400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110605", "images": ["AURORA/data/something/frames/145113/first.jpg", "AURORA/data/something/frames/145113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110606", "images": ["AURORA/data/something/frames/150774/first.jpg", "AURORA/data/something/frames/150774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110607", "images": ["AURORA/data/something/frames/38377/first.jpg", "AURORA/data/something/frames/38377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bus"}, {"from": "gpt", "value": ""}]} +{"id": "000000110608", "images": ["AURORA/data/something/frames/211126/first.jpg", "AURORA/data/something/frames/211126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car colliding with a marble ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110609", "images": ["AURORA/data/something/frames/73799/first.jpg", "AURORA/data/something/frames/73799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110610", "images": ["AURORA/data/something/frames/24164/first.jpg", "AURORA/data/something/frames/24164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110611", "images": ["AURORA/data/something/frames/7292/first.jpg", "AURORA/data/something/frames/7292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic bottle into bucket water"}, {"from": "gpt", "value": ""}]} +{"id": "000000110612", "images": ["AURORA/data/something/frames/159371/first.jpg", "AURORA/data/something/frames/159371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110613", "images": ["AURORA/data/something/frames/166456/first.jpg", "AURORA/data/something/frames/166456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bottle cap with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110614", "images": ["AURORA/data/something/frames/196775/first.jpg", "AURORA/data/something/frames/196775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110615", "images": ["AURORA/data/something/frames/215056/first.jpg", "AURORA/data/something/frames/215056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an airwick scent into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110616", "images": ["AURORA/data/something/frames/201589/first.jpg", "AURORA/data/something/frames/201589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing black plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110617", "images": ["AURORA/data/something/frames/213462/first.jpg", "AURORA/data/something/frames/213462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb next to the laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110618", "images": ["AURORA/data/something/frames/203405/first.jpg", "AURORA/data/something/frames/203405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying pitcher on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110619", "images": ["AURORA/data/something/frames/162121/first.jpg", "AURORA/data/something/frames/162121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110620", "images": ["AURORA/data/something/frames/116624/first.jpg", "AURORA/data/something/frames/116624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy idol into blue colour spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110621", "images": ["AURORA/data/something/frames/117244/first.jpg", "AURORA/data/something/frames/117244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110622", "images": ["AURORA/data/something/frames/92374/first.jpg", "AURORA/data/something/frames/92374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110623", "images": ["AURORA/data/something/frames/209319/first.jpg", "AURORA/data/something/frames/209319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock and rock away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110624", "images": ["AURORA/data/something/frames/52371/first.jpg", "AURORA/data/something/frames/52371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb cable to adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110625", "images": ["AURORA/data/something/frames/89533/first.jpg", "AURORA/data/something/frames/89533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one bottle from similar bottles on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110626", "images": ["AURORA/data/something/frames/120228/first.jpg", "AURORA/data/something/frames/120228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jelly onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000110627", "images": ["AURORA/data/something/frames/93839/first.jpg", "AURORA/data/something/frames/93839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing watch so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110628", "images": ["AURORA/data/something/frames/67019/first.jpg", "AURORA/data/something/frames/67019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110629", "images": ["AURORA/data/something/frames/196321/first.jpg", "AURORA/data/something/frames/196321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cube onto battery so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110630", "images": ["AURORA/data/something/frames/190023/first.jpg", "AURORA/data/something/frames/190023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110631", "images": ["AURORA/data/something/frames/193760/first.jpg", "AURORA/data/something/frames/193760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110632", "images": ["AURORA/data/something/frames/36121/first.jpg", "AURORA/data/something/frames/36121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110633", "images": ["AURORA/data/something/frames/24175/first.jpg", "AURORA/data/something/frames/24175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110634", "images": ["AURORA/data/something/frames/33232/first.jpg", "AURORA/data/something/frames/33232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110635", "images": ["AURORA/data/something/frames/137833/first.jpg", "AURORA/data/something/frames/137833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing something into two pieces into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110636", "images": ["AURORA/data/something/frames/166000/first.jpg", "AURORA/data/something/frames/166000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110637", "images": ["AURORA/data/something/frames/143762/first.jpg", "AURORA/data/something/frames/143762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving baby toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110638", "images": ["AURORA/data/something/frames/97541/first.jpg", "AURORA/data/something/frames/97541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110639", "images": ["AURORA/data/something/frames/115567/first.jpg", "AURORA/data/something/frames/115567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of button"}, {"from": "gpt", "value": ""}]} +{"id": "000000110640", "images": ["AURORA/data/something/frames/174407/first.jpg", "AURORA/data/something/frames/174407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil box behind globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000110641", "images": ["AURORA/data/something/frames/89126/first.jpg", "AURORA/data/something/frames/89126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110642", "images": ["AURORA/data/something/frames/7636/first.jpg", "AURORA/data/something/frames/7636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110643", "images": ["AURORA/data/something/frames/166031/first.jpg", "AURORA/data/something/frames/166031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen refill tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110644", "images": ["AURORA/data/something/frames/105371/first.jpg", "AURORA/data/something/frames/105371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush and toothpaste closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110645", "images": ["AURORA/data/something/frames/66000/first.jpg", "AURORA/data/something/frames/66000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper punch from slab"}, {"from": "gpt", "value": ""}]} +{"id": "000000110646", "images": ["AURORA/data/something/frames/109353/first.jpg", "AURORA/data/something/frames/109353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening lip balm"}, {"from": "gpt", "value": ""}]} +{"id": "000000110647", "images": ["AURORA/data/something/frames/49894/first.jpg", "AURORA/data/something/frames/49894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable closer to eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000110648", "images": ["AURORA/data/something/frames/4074/first.jpg", "AURORA/data/something/frames/4074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spray bottle, book and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110649", "images": ["AURORA/data/something/frames/118355/first.jpg", "AURORA/data/something/frames/118355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000110650", "images": ["AURORA/data/something/frames/127511/first.jpg", "AURORA/data/something/frames/127511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pencil onto a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110651", "images": ["AURORA/data/something/frames/116514/first.jpg", "AURORA/data/something/frames/116514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a groundnut next to keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000110652", "images": ["AURORA/data/something/frames/113441/first.jpg", "AURORA/data/something/frames/113441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper closer to the computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110653", "images": ["AURORA/data/something/frames/86130/first.jpg", "AURORA/data/something/frames/86130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110654", "images": ["AURORA/data/something/frames/106391/first.jpg", "AURORA/data/something/frames/106391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 containers of tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000110655", "images": ["AURORA/data/something/frames/153466/first.jpg", "AURORA/data/something/frames/153466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock closer to lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110656", "images": ["AURORA/data/something/frames/170727/first.jpg", "AURORA/data/something/frames/170727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scotch tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110657", "images": ["AURORA/data/something/frames/34562/first.jpg", "AURORA/data/something/frames/34562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thermocol and comb closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110658", "images": ["AURORA/data/something/frames/13504/first.jpg", "AURORA/data/something/frames/13504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a glasses box onto a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110659", "images": ["AURORA/data/something/frames/21063/first.jpg", "AURORA/data/something/frames/21063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110660", "images": ["AURORA/data/something/frames/18893/first.jpg", "AURORA/data/something/frames/18893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wine bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110661", "images": ["AURORA/data/something/frames/77021/first.jpg", "AURORA/data/something/frames/77021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110662", "images": ["AURORA/data/something/frames/157052/first.jpg", "AURORA/data/something/frames/157052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil in front of tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000110663", "images": ["AURORA/data/something/frames/112478/first.jpg", "AURORA/data/something/frames/112478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into pen case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110664", "images": ["AURORA/data/something/frames/168928/first.jpg", "AURORA/data/something/frames/168928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110665", "images": ["AURORA/data/something/frames/166578/first.jpg", "AURORA/data/something/frames/166578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110666", "images": ["AURORA/data/something/frames/92842/first.jpg", "AURORA/data/something/frames/92842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small shot glass and big shot glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110667", "images": ["AURORA/data/something/frames/133692/first.jpg", "AURORA/data/something/frames/133692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110668", "images": ["AURORA/data/something/frames/144528/first.jpg", "AURORA/data/something/frames/144528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pebble from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110669", "images": ["AURORA/data/something/frames/185531/first.jpg", "AURORA/data/something/frames/185531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110670", "images": ["AURORA/data/something/frames/217346/first.jpg", "AURORA/data/something/frames/217346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jeans pant"}, {"from": "gpt", "value": ""}]} +{"id": "000000110671", "images": ["AURORA/data/something/frames/117784/first.jpg", "AURORA/data/something/frames/117784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a computer mouse so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110672", "images": ["AURORA/data/something/frames/54056/first.jpg", "AURORA/data/something/frames/54056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toothbrushes with hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110673", "images": ["AURORA/data/something/frames/1750/first.jpg", "AURORA/data/something/frames/1750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with nail varnish on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110674", "images": ["AURORA/data/something/frames/143934/first.jpg", "AURORA/data/something/frames/143934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110675", "images": ["AURORA/data/something/frames/129582/first.jpg", "AURORA/data/something/frames/129582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paer into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110676", "images": ["AURORA/data/something/frames/206035/first.jpg", "AURORA/data/something/frames/206035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering hair clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110677", "images": ["AURORA/data/something/frames/114625/first.jpg", "AURORA/data/something/frames/114625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110678", "images": ["AURORA/data/something/frames/173110/first.jpg", "AURORA/data/something/frames/173110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming chick"}, {"from": "gpt", "value": ""}]} +{"id": "000000110679", "images": ["AURORA/data/something/frames/150924/first.jpg", "AURORA/data/something/frames/150924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110680", "images": ["AURORA/data/something/frames/133009/first.jpg", "AURORA/data/something/frames/133009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wrist watch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110681", "images": ["AURORA/data/something/frames/52094/first.jpg", "AURORA/data/something/frames/52094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110682", "images": ["AURORA/data/something/frames/112313/first.jpg", "AURORA/data/something/frames/112313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110683", "images": ["AURORA/data/something/frames/219062/first.jpg", "AURORA/data/something/frames/219062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110684", "images": ["AURORA/data/something/frames/217069/first.jpg", "AURORA/data/something/frames/217069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving razor down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110685", "images": ["AURORA/data/something/frames/108226/first.jpg", "AURORA/data/something/frames/108226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110686", "images": ["AURORA/data/something/frames/205678/first.jpg", "AURORA/data/something/frames/205678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110687", "images": ["AURORA/data/something/frames/216977/first.jpg", "AURORA/data/something/frames/216977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110688", "images": ["AURORA/data/something/frames/106730/first.jpg", "AURORA/data/something/frames/106730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a banana into a packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110689", "images": ["AURORA/data/something/frames/116602/first.jpg", "AURORA/data/something/frames/116602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110690", "images": ["AURORA/data/something/frames/205154/first.jpg", "AURORA/data/something/frames/205154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling zipper from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110691", "images": ["AURORA/data/something/frames/18580/first.jpg", "AURORA/data/something/frames/18580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chalk piece up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110692", "images": ["AURORA/data/something/frames/103337/first.jpg", "AURORA/data/something/frames/103337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110693", "images": ["AURORA/data/something/frames/76434/first.jpg", "AURORA/data/something/frames/76434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an ipad with a cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110694", "images": ["AURORA/data/something/frames/19198/first.jpg", "AURORA/data/something/frames/19198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tables and chairs with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110695", "images": ["AURORA/data/something/frames/138001/first.jpg", "AURORA/data/something/frames/138001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a keybound on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110696", "images": ["AURORA/data/something/frames/65666/first.jpg", "AURORA/data/something/frames/65666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000110697", "images": ["AURORA/data/something/frames/36268/first.jpg", "AURORA/data/something/frames/36268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle next to water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110698", "images": ["AURORA/data/something/frames/199668/first.jpg", "AURORA/data/something/frames/199668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110699", "images": ["AURORA/data/something/frames/40880/first.jpg", "AURORA/data/something/frames/40880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting rectanglular box with keys on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110700", "images": ["AURORA/data/something/frames/214093/first.jpg", "AURORA/data/something/frames/214093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110701", "images": ["AURORA/data/something/frames/113042/first.jpg", "AURORA/data/something/frames/113042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110702", "images": ["AURORA/data/something/frames/187396/first.jpg", "AURORA/data/something/frames/187396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110703", "images": ["AURORA/data/something/frames/15646/first.jpg", "AURORA/data/something/frames/15646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing dirty clothes into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110704", "images": ["AURORA/data/something/frames/76689/first.jpg", "AURORA/data/something/frames/76689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110705", "images": ["AURORA/data/something/frames/54224/first.jpg", "AURORA/data/something/frames/54224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110706", "images": ["AURORA/data/something/frames/10122/first.jpg", "AURORA/data/something/frames/10122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hair pin so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110707", "images": ["AURORA/data/something/frames/182027/first.jpg", "AURORA/data/something/frames/182027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into a laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110708", "images": ["AURORA/data/something/frames/139449/first.jpg", "AURORA/data/something/frames/139449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110709", "images": ["AURORA/data/something/frames/68803/first.jpg", "AURORA/data/something/frames/68803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 dvds"}, {"from": "gpt", "value": ""}]} +{"id": "000000110710", "images": ["AURORA/data/something/frames/33547/first.jpg", "AURORA/data/something/frames/33547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing remote, revealing a pen behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110711", "images": ["AURORA/data/something/frames/158343/first.jpg", "AURORA/data/something/frames/158343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110712", "images": ["AURORA/data/something/frames/177451/first.jpg", "AURORA/data/something/frames/177451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110713", "images": ["AURORA/data/something/frames/93985/first.jpg", "AURORA/data/something/frames/93985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clear plastic pot onto windowsill"}, {"from": "gpt", "value": ""}]} +{"id": "000000110714", "images": ["AURORA/data/something/frames/50886/first.jpg", "AURORA/data/something/frames/50886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110715", "images": ["AURORA/data/something/frames/30223/first.jpg", "AURORA/data/something/frames/30223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coins into coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110716", "images": ["AURORA/data/something/frames/109252/first.jpg", "AURORA/data/something/frames/109252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110717", "images": ["AURORA/data/something/frames/39182/first.jpg", "AURORA/data/something/frames/39182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic clothes hangar into couch cushion opening"}, {"from": "gpt", "value": ""}]} +{"id": "000000110718", "images": ["AURORA/data/something/frames/94613/first.jpg", "AURORA/data/something/frames/94613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillows with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110719", "images": ["AURORA/data/something/frames/23704/first.jpg", "AURORA/data/something/frames/23704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stuffed animal into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110720", "images": ["AURORA/data/something/frames/58947/first.jpg", "AURORA/data/something/frames/58947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle closer to lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000110721", "images": ["AURORA/data/something/frames/19805/first.jpg", "AURORA/data/something/frames/19805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110722", "images": ["AURORA/data/something/frames/110797/first.jpg", "AURORA/data/something/frames/110797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box of juice onto plastic cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000110723", "images": ["AURORA/data/something/frames/80980/first.jpg", "AURORA/data/something/frames/80980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering sunglasses with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110724", "images": ["AURORA/data/something/frames/32833/first.jpg", "AURORA/data/something/frames/32833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing duster with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110725", "images": ["AURORA/data/something/frames/220688/first.jpg", "AURORA/data/something/frames/220688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jar out of pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000110726", "images": ["AURORA/data/something/frames/7902/first.jpg", "AURORA/data/something/frames/7902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110727", "images": ["AURORA/data/something/frames/123627/first.jpg", "AURORA/data/something/frames/123627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping screw driver onto marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110728", "images": ["AURORA/data/something/frames/176988/first.jpg", "AURORA/data/something/frames/176988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into duffel bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110729", "images": ["AURORA/data/something/frames/62149/first.jpg", "AURORA/data/something/frames/62149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110730", "images": ["AURORA/data/something/frames/18398/first.jpg", "AURORA/data/something/frames/18398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief in front of a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000110731", "images": ["AURORA/data/something/frames/162960/first.jpg", "AURORA/data/something/frames/162960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hair clip closer to white toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110732", "images": ["AURORA/data/something/frames/182059/first.jpg", "AURORA/data/something/frames/182059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crystal"}, {"from": "gpt", "value": ""}]} +{"id": "000000110733", "images": ["AURORA/data/something/frames/33375/first.jpg", "AURORA/data/something/frames/33375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with candy on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110734", "images": ["AURORA/data/something/frames/160050/first.jpg", "AURORA/data/something/frames/160050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110735", "images": ["AURORA/data/something/frames/216360/first.jpg", "AURORA/data/something/frames/216360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping paper towels over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110736", "images": ["AURORA/data/something/frames/136037/first.jpg", "AURORA/data/something/frames/136037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000110737", "images": ["AURORA/data/something/frames/35790/first.jpg", "AURORA/data/something/frames/35790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110738", "images": ["AURORA/data/something/frames/43088/first.jpg", "AURORA/data/something/frames/43088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping block next to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110739", "images": ["AURORA/data/something/frames/186734/first.jpg", "AURORA/data/something/frames/186734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling orange post-it from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110740", "images": ["AURORA/data/something/frames/40969/first.jpg", "AURORA/data/something/frames/40969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple into a fruit basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110741", "images": ["AURORA/data/something/frames/50441/first.jpg", "AURORA/data/something/frames/50441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pillow so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110742", "images": ["AURORA/data/something/frames/97640/first.jpg", "AURORA/data/something/frames/97640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting an index card with a quarter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110743", "images": ["AURORA/data/something/frames/64552/first.jpg", "AURORA/data/something/frames/64552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow colour marker on the top similar to other markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110744", "images": ["AURORA/data/something/frames/108641/first.jpg", "AURORA/data/something/frames/108641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming violin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110745", "images": ["AURORA/data/something/frames/214642/first.jpg", "AURORA/data/something/frames/214642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something in front of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110746", "images": ["AURORA/data/something/frames/177318/first.jpg", "AURORA/data/something/frames/177318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110747", "images": ["AURORA/data/something/frames/61746/first.jpg", "AURORA/data/something/frames/61746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing perfume"}, {"from": "gpt", "value": ""}]} +{"id": "000000110748", "images": ["AURORA/data/something/frames/212841/first.jpg", "AURORA/data/something/frames/212841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of elastic band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110749", "images": ["AURORA/data/something/frames/74133/first.jpg", "AURORA/data/something/frames/74133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110750", "images": ["AURORA/data/something/frames/46326/first.jpg", "AURORA/data/something/frames/46326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with keys on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110751", "images": ["AURORA/data/something/frames/150004/first.jpg", "AURORA/data/something/frames/150004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110752", "images": ["AURORA/data/something/frames/117615/first.jpg", "AURORA/data/something/frames/117615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and remote away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110753", "images": ["AURORA/data/something/frames/92805/first.jpg", "AURORA/data/something/frames/92805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110754", "images": ["AURORA/data/something/frames/13617/first.jpg", "AURORA/data/something/frames/13617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110755", "images": ["AURORA/data/something/frames/162949/first.jpg", "AURORA/data/something/frames/162949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110756", "images": ["AURORA/data/something/frames/10446/first.jpg", "AURORA/data/something/frames/10446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rubix cube closer to spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110757", "images": ["AURORA/data/something/frames/159181/first.jpg", "AURORA/data/something/frames/159181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the body of the mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000110758", "images": ["AURORA/data/something/frames/136266/first.jpg", "AURORA/data/something/frames/136266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging inlet into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110759", "images": ["AURORA/data/something/frames/136601/first.jpg", "AURORA/data/something/frames/136601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000110760", "images": ["AURORA/data/something/frames/170626/first.jpg", "AURORA/data/something/frames/170626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a woodenbox with a plastic plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110761", "images": ["AURORA/data/something/frames/124122/first.jpg", "AURORA/data/something/frames/124122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a card towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110762", "images": ["AURORA/data/something/frames/96665/first.jpg", "AURORA/data/something/frames/96665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110763", "images": ["AURORA/data/something/frames/185357/first.jpg", "AURORA/data/something/frames/185357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping canister with lemon over, so lemon falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110764", "images": ["AURORA/data/something/frames/205944/first.jpg", "AURORA/data/something/frames/205944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rack up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110765", "images": ["AURORA/data/something/frames/82829/first.jpg", "AURORA/data/something/frames/82829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110766", "images": ["AURORA/data/something/frames/85075/first.jpg", "AURORA/data/something/frames/85075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker out of a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110767", "images": ["AURORA/data/something/frames/106669/first.jpg", "AURORA/data/something/frames/106669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting envelope on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110768", "images": ["AURORA/data/something/frames/178603/first.jpg", "AURORA/data/something/frames/178603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110769", "images": ["AURORA/data/something/frames/121737/first.jpg", "AURORA/data/something/frames/121737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin into a piggy bank"}, {"from": "gpt", "value": ""}]} +{"id": "000000110770", "images": ["AURORA/data/something/frames/57055/first.jpg", "AURORA/data/something/frames/57055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110771", "images": ["AURORA/data/something/frames/51198/first.jpg", "AURORA/data/something/frames/51198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glue stick on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110772", "images": ["AURORA/data/something/frames/84967/first.jpg", "AURORA/data/something/frames/84967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110773", "images": ["AURORA/data/something/frames/185860/first.jpg", "AURORA/data/something/frames/185860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of envelopes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000110774", "images": ["AURORA/data/something/frames/97057/first.jpg", "AURORA/data/something/frames/97057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass onto a matt/coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110775", "images": ["AURORA/data/something/frames/101761/first.jpg", "AURORA/data/something/frames/101761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming krishna idole"}, {"from": "gpt", "value": ""}]} +{"id": "000000110776", "images": ["AURORA/data/something/frames/138230/first.jpg", "AURORA/data/something/frames/138230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and wristwatch closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110777", "images": ["AURORA/data/something/frames/133810/first.jpg", "AURORA/data/something/frames/133810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a banana out of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110778", "images": ["AURORA/data/something/frames/81709/first.jpg", "AURORA/data/something/frames/81709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering eye of stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000110779", "images": ["AURORA/data/something/frames/220691/first.jpg", "AURORA/data/something/frames/220691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming the mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000110780", "images": ["AURORA/data/something/frames/94509/first.jpg", "AURORA/data/something/frames/94509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling food packet out of plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000110781", "images": ["AURORA/data/something/frames/200656/first.jpg", "AURORA/data/something/frames/200656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball closer to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110782", "images": ["AURORA/data/something/frames/205033/first.jpg", "AURORA/data/something/frames/205033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110783", "images": ["AURORA/data/something/frames/204186/first.jpg", "AURORA/data/something/frames/204186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110784", "images": ["AURORA/data/something/frames/100872/first.jpg", "AURORA/data/something/frames/100872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing laundry into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110785", "images": ["AURORA/data/something/frames/176564/first.jpg", "AURORA/data/something/frames/176564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator, pen and wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110786", "images": ["AURORA/data/something/frames/173923/first.jpg", "AURORA/data/something/frames/173923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cup to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110787", "images": ["AURORA/data/something/frames/6199/first.jpg", "AURORA/data/something/frames/6199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an immersion blender base upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110788", "images": ["AURORA/data/something/frames/208085/first.jpg", "AURORA/data/something/frames/208085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting blue spoon into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110789", "images": ["AURORA/data/something/frames/166604/first.jpg", "AURORA/data/something/frames/166604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pan onto a stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000110790", "images": ["AURORA/data/something/frames/38895/first.jpg", "AURORA/data/something/frames/38895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110791", "images": ["AURORA/data/something/frames/72820/first.jpg", "AURORA/data/something/frames/72820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a glass container, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110792", "images": ["AURORA/data/something/frames/131185/first.jpg", "AURORA/data/something/frames/131185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a tv into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110793", "images": ["AURORA/data/something/frames/122382/first.jpg", "AURORA/data/something/frames/122382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying drinking bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110794", "images": ["AURORA/data/something/frames/56621/first.jpg", "AURORA/data/something/frames/56621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110795", "images": ["AURORA/data/something/frames/15581/first.jpg", "AURORA/data/something/frames/15581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pop can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110796", "images": ["AURORA/data/something/frames/44551/first.jpg", "AURORA/data/something/frames/44551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glasses and perfum closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110797", "images": ["AURORA/data/something/frames/54103/first.jpg", "AURORA/data/something/frames/54103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110798", "images": ["AURORA/data/something/frames/97299/first.jpg", "AURORA/data/something/frames/97299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending key chain so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110799", "images": ["AURORA/data/something/frames/86545/first.jpg", "AURORA/data/something/frames/86545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000110800", "images": ["AURORA/data/something/frames/18951/first.jpg", "AURORA/data/something/frames/18951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110801", "images": ["AURORA/data/something/frames/121954/first.jpg", "AURORA/data/something/frames/121954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110802", "images": ["AURORA/data/something/frames/42838/first.jpg", "AURORA/data/something/frames/42838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading mayonase onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000110803", "images": ["AURORA/data/something/frames/138809/first.jpg", "AURORA/data/something/frames/138809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110804", "images": ["AURORA/data/something/frames/98914/first.jpg", "AURORA/data/something/frames/98914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110805", "images": ["AURORA/data/something/frames/106402/first.jpg", "AURORA/data/something/frames/106402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can opener, toy ambulance and a lemon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110806", "images": ["AURORA/data/something/frames/156256/first.jpg", "AURORA/data/something/frames/156256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cigaret out of marlboro pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110807", "images": ["AURORA/data/something/frames/81300/first.jpg", "AURORA/data/something/frames/81300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching soda bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110808", "images": ["AURORA/data/something/frames/119096/first.jpg", "AURORA/data/something/frames/119096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting khaki into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110809", "images": ["AURORA/data/something/frames/95465/first.jpg", "AURORA/data/something/frames/95465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of sugar cubes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110810", "images": ["AURORA/data/something/frames/76867/first.jpg", "AURORA/data/something/frames/76867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110811", "images": ["AURORA/data/something/frames/152145/first.jpg", "AURORA/data/something/frames/152145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into a cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000110812", "images": ["AURORA/data/something/frames/76988/first.jpg", "AURORA/data/something/frames/76988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bag into drinking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110813", "images": ["AURORA/data/something/frames/206586/first.jpg", "AURORA/data/something/frames/206586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an eraser onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110814", "images": ["AURORA/data/something/frames/195304/first.jpg", "AURORA/data/something/frames/195304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110815", "images": ["AURORA/data/something/frames/44347/first.jpg", "AURORA/data/something/frames/44347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110816", "images": ["AURORA/data/something/frames/28772/first.jpg", "AURORA/data/something/frames/28772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) head of toys"}, {"from": "gpt", "value": ""}]} +{"id": "000000110817", "images": ["AURORA/data/something/frames/127384/first.jpg", "AURORA/data/something/frames/127384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing teabag into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110818", "images": ["AURORA/data/something/frames/188245/first.jpg", "AURORA/data/something/frames/188245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a dvd"}, {"from": "gpt", "value": ""}]} +{"id": "000000110819", "images": ["AURORA/data/something/frames/20628/first.jpg", "AURORA/data/something/frames/20628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee grounds behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110820", "images": ["AURORA/data/something/frames/568/first.jpg", "AURORA/data/something/frames/568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a trophy across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110821", "images": ["AURORA/data/something/frames/44850/first.jpg", "AURORA/data/something/frames/44850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110822", "images": ["AURORA/data/something/frames/51559/first.jpg", "AURORA/data/something/frames/51559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering humidifier with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110823", "images": ["AURORA/data/something/frames/108368/first.jpg", "AURORA/data/something/frames/108368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110824", "images": ["AURORA/data/something/frames/218971/first.jpg", "AURORA/data/something/frames/218971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deo into bagback"}, {"from": "gpt", "value": ""}]} +{"id": "000000110825", "images": ["AURORA/data/something/frames/208801/first.jpg", "AURORA/data/something/frames/208801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a smartphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110826", "images": ["AURORA/data/something/frames/184986/first.jpg", "AURORA/data/something/frames/184986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110827", "images": ["AURORA/data/something/frames/82772/first.jpg", "AURORA/data/something/frames/82772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a chinese food box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110828", "images": ["AURORA/data/something/frames/161053/first.jpg", "AURORA/data/something/frames/161053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and another mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110829", "images": ["AURORA/data/something/frames/180805/first.jpg", "AURORA/data/something/frames/180805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shoe and a purse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110830", "images": ["AURORA/data/something/frames/30829/first.jpg", "AURORA/data/something/frames/30829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110831", "images": ["AURORA/data/something/frames/156666/first.jpg", "AURORA/data/something/frames/156666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto table mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110832", "images": ["AURORA/data/something/frames/85985/first.jpg", "AURORA/data/something/frames/85985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil into floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110833", "images": ["AURORA/data/something/frames/63141/first.jpg", "AURORA/data/something/frames/63141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting silicone onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110834", "images": ["AURORA/data/something/frames/114784/first.jpg", "AURORA/data/something/frames/114784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110835", "images": ["AURORA/data/something/frames/171169/first.jpg", "AURORA/data/something/frames/171169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110836", "images": ["AURORA/data/something/frames/132553/first.jpg", "AURORA/data/something/frames/132553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110837", "images": ["AURORA/data/something/frames/14438/first.jpg", "AURORA/data/something/frames/14438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dish soap off of a laundry machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000110838", "images": ["AURORA/data/something/frames/6300/first.jpg", "AURORA/data/something/frames/6300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a large ball and a small ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110839", "images": ["AURORA/data/something/frames/4071/first.jpg", "AURORA/data/something/frames/4071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming white toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110840", "images": ["AURORA/data/something/frames/64032/first.jpg", "AURORA/data/something/frames/64032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110841", "images": ["AURORA/data/something/frames/10201/first.jpg", "AURORA/data/something/frames/10201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of bottle without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110842", "images": ["AURORA/data/something/frames/5767/first.jpg", "AURORA/data/something/frames/5767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110843", "images": ["AURORA/data/something/frames/199838/first.jpg", "AURORA/data/something/frames/199838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a beaker with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110844", "images": ["AURORA/data/something/frames/111604/first.jpg", "AURORA/data/something/frames/111604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110845", "images": ["AURORA/data/something/frames/191802/first.jpg", "AURORA/data/something/frames/191802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110846", "images": ["AURORA/data/something/frames/30178/first.jpg", "AURORA/data/something/frames/30178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a piece of plastic so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110847", "images": ["AURORA/data/something/frames/117331/first.jpg", "AURORA/data/something/frames/117331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110848", "images": ["AURORA/data/something/frames/15812/first.jpg", "AURORA/data/something/frames/15812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110849", "images": ["AURORA/data/something/frames/97201/first.jpg", "AURORA/data/something/frames/97201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a bangle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110850", "images": ["AURORA/data/something/frames/113132/first.jpg", "AURORA/data/something/frames/113132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pot on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110851", "images": ["AURORA/data/something/frames/177809/first.jpg", "AURORA/data/something/frames/177809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto rug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110852", "images": ["AURORA/data/something/frames/85067/first.jpg", "AURORA/data/something/frames/85067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubix cube in front of toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110853", "images": ["AURORA/data/something/frames/182165/first.jpg", "AURORA/data/something/frames/182165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000110854", "images": ["AURORA/data/something/frames/55178/first.jpg", "AURORA/data/something/frames/55178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle of glue over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110855", "images": ["AURORA/data/something/frames/93638/first.jpg", "AURORA/data/something/frames/93638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110856", "images": ["AURORA/data/something/frames/9675/first.jpg", "AURORA/data/something/frames/9675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into phone charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000110857", "images": ["AURORA/data/something/frames/171477/first.jpg", "AURORA/data/something/frames/171477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing kitchen cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110858", "images": ["AURORA/data/something/frames/104808/first.jpg", "AURORA/data/something/frames/104808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110859", "images": ["AURORA/data/something/frames/144970/first.jpg", "AURORA/data/something/frames/144970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000110860", "images": ["AURORA/data/something/frames/6368/first.jpg", "AURORA/data/something/frames/6368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110861", "images": ["AURORA/data/something/frames/56841/first.jpg", "AURORA/data/something/frames/56841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning milk mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110862", "images": ["AURORA/data/something/frames/174723/first.jpg", "AURORA/data/something/frames/174723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sock, book and glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110863", "images": ["AURORA/data/something/frames/22875/first.jpg", "AURORA/data/something/frames/22875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a tissue box colliding with another tissue box and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110864", "images": ["AURORA/data/something/frames/128681/first.jpg", "AURORA/data/something/frames/128681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with crackers over, so cracker falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110865", "images": ["AURORA/data/something/frames/18596/first.jpg", "AURORA/data/something/frames/18596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110866", "images": ["AURORA/data/something/frames/15034/first.jpg", "AURORA/data/something/frames/15034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging baby monitor cord into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110867", "images": ["AURORA/data/something/frames/49969/first.jpg", "AURORA/data/something/frames/49969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110868", "images": ["AURORA/data/something/frames/27155/first.jpg", "AURORA/data/something/frames/27155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stul upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110869", "images": ["AURORA/data/something/frames/45621/first.jpg", "AURORA/data/something/frames/45621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110870", "images": ["AURORA/data/something/frames/210229/first.jpg", "AURORA/data/something/frames/210229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110871", "images": ["AURORA/data/something/frames/129620/first.jpg", "AURORA/data/something/frames/129620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball pump upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110872", "images": ["AURORA/data/something/frames/21759/first.jpg", "AURORA/data/something/frames/21759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000110873", "images": ["AURORA/data/something/frames/112885/first.jpg", "AURORA/data/something/frames/112885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110874", "images": ["AURORA/data/something/frames/4829/first.jpg", "AURORA/data/something/frames/4829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cover into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110875", "images": ["AURORA/data/something/frames/179592/first.jpg", "AURORA/data/something/frames/179592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110876", "images": ["AURORA/data/something/frames/20807/first.jpg", "AURORA/data/something/frames/20807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of putty so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110877", "images": ["AURORA/data/something/frames/136522/first.jpg", "AURORA/data/something/frames/136522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a stappler"}, {"from": "gpt", "value": ""}]} +{"id": "000000110878", "images": ["AURORA/data/something/frames/89049/first.jpg", "AURORA/data/something/frames/89049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bottle, revealing marker behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110879", "images": ["AURORA/data/something/frames/206131/first.jpg", "AURORA/data/something/frames/206131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110880", "images": ["AURORA/data/something/frames/37250/first.jpg", "AURORA/data/something/frames/37250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a marmalade jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110881", "images": ["AURORA/data/something/frames/67389/first.jpg", "AURORA/data/something/frames/67389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110882", "images": ["AURORA/data/something/frames/128225/first.jpg", "AURORA/data/something/frames/128225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tea light candle on the table with other candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000110883", "images": ["AURORA/data/something/frames/111103/first.jpg", "AURORA/data/something/frames/111103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pencil case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110884", "images": ["AURORA/data/something/frames/61437/first.jpg", "AURORA/data/something/frames/61437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110885", "images": ["AURORA/data/something/frames/218641/first.jpg", "AURORA/data/something/frames/218641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling curtain from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110886", "images": ["AURORA/data/something/frames/11044/first.jpg", "AURORA/data/something/frames/11044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110887", "images": ["AURORA/data/something/frames/50758/first.jpg", "AURORA/data/something/frames/50758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming chandelier"}, {"from": "gpt", "value": ""}]} +{"id": "000000110888", "images": ["AURORA/data/something/frames/43684/first.jpg", "AURORA/data/something/frames/43684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming krishna idole"}, {"from": "gpt", "value": ""}]} +{"id": "000000110889", "images": ["AURORA/data/something/frames/106598/first.jpg", "AURORA/data/something/frames/106598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stuffed animal with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110890", "images": ["AURORA/data/something/frames/164488/first.jpg", "AURORA/data/something/frames/164488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110891", "images": ["AURORA/data/something/frames/209475/first.jpg", "AURORA/data/something/frames/209475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting body spray bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110892", "images": ["AURORA/data/something/frames/94778/first.jpg", "AURORA/data/something/frames/94778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110893", "images": ["AURORA/data/something/frames/112873/first.jpg", "AURORA/data/something/frames/112873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110894", "images": ["AURORA/data/something/frames/212885/first.jpg", "AURORA/data/something/frames/212885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening marker pen cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110895", "images": ["AURORA/data/something/frames/181204/first.jpg", "AURORA/data/something/frames/181204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110896", "images": ["AURORA/data/something/frames/191550/first.jpg", "AURORA/data/something/frames/191550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110897", "images": ["AURORA/data/something/frames/178176/first.jpg", "AURORA/data/something/frames/178176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 pens onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000110898", "images": ["AURORA/data/something/frames/65026/first.jpg", "AURORA/data/something/frames/65026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110899", "images": ["AURORA/data/something/frames/25372/first.jpg", "AURORA/data/something/frames/25372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110900", "images": ["AURORA/data/something/frames/103369/first.jpg", "AURORA/data/something/frames/103369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110901", "images": ["AURORA/data/something/frames/47061/first.jpg", "AURORA/data/something/frames/47061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110902", "images": ["AURORA/data/something/frames/183991/first.jpg", "AURORA/data/something/frames/183991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one domino token"}, {"from": "gpt", "value": ""}]} +{"id": "000000110903", "images": ["AURORA/data/something/frames/192140/first.jpg", "AURORA/data/something/frames/192140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic comb behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110904", "images": ["AURORA/data/something/frames/191918/first.jpg", "AURORA/data/something/frames/191918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shoe behind bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110905", "images": ["AURORA/data/something/frames/94273/first.jpg", "AURORA/data/something/frames/94273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting videogame underneath bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000110906", "images": ["AURORA/data/something/frames/202432/first.jpg", "AURORA/data/something/frames/202432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110907", "images": ["AURORA/data/something/frames/13123/first.jpg", "AURORA/data/something/frames/13123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a picture with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110908", "images": ["AURORA/data/something/frames/190235/first.jpg", "AURORA/data/something/frames/190235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming motor bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000110909", "images": ["AURORA/data/something/frames/154968/first.jpg", "AURORA/data/something/frames/154968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110910", "images": ["AURORA/data/something/frames/139204/first.jpg", "AURORA/data/something/frames/139204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into soft doh"}, {"from": "gpt", "value": ""}]} +{"id": "000000110911", "images": ["AURORA/data/something/frames/40879/first.jpg", "AURORA/data/something/frames/40879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing iphone into a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000110912", "images": ["AURORA/data/something/frames/146657/first.jpg", "AURORA/data/something/frames/146657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plate in front of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110913", "images": ["AURORA/data/something/frames/51014/first.jpg", "AURORA/data/something/frames/51014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing letter into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110914", "images": ["AURORA/data/something/frames/35831/first.jpg", "AURORA/data/something/frames/35831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 laptop onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110915", "images": ["AURORA/data/something/frames/179280/first.jpg", "AURORA/data/something/frames/179280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110916", "images": ["AURORA/data/something/frames/149231/first.jpg", "AURORA/data/something/frames/149231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110917", "images": ["AURORA/data/something/frames/138344/first.jpg", "AURORA/data/something/frames/138344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110918", "images": ["AURORA/data/something/frames/144626/first.jpg", "AURORA/data/something/frames/144626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earth of globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000110919", "images": ["AURORA/data/something/frames/72913/first.jpg", "AURORA/data/something/frames/72913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110920", "images": ["AURORA/data/something/frames/164457/first.jpg", "AURORA/data/something/frames/164457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and box so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110921", "images": ["AURORA/data/something/frames/218044/first.jpg", "AURORA/data/something/frames/218044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110922", "images": ["AURORA/data/something/frames/196821/first.jpg", "AURORA/data/something/frames/196821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a peg from behind of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110923", "images": ["AURORA/data/something/frames/29049/first.jpg", "AURORA/data/something/frames/29049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of a soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110924", "images": ["AURORA/data/something/frames/171101/first.jpg", "AURORA/data/something/frames/171101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sweatshirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110925", "images": ["AURORA/data/something/frames/153712/first.jpg", "AURORA/data/something/frames/153712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110926", "images": ["AURORA/data/something/frames/177899/first.jpg", "AURORA/data/something/frames/177899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adapter into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110927", "images": ["AURORA/data/something/frames/123173/first.jpg", "AURORA/data/something/frames/123173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bag next to cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110928", "images": ["AURORA/data/something/frames/116822/first.jpg", "AURORA/data/something/frames/116822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting book with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110929", "images": ["AURORA/data/something/frames/47343/first.jpg", "AURORA/data/something/frames/47343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110930", "images": ["AURORA/data/something/frames/2963/first.jpg", "AURORA/data/something/frames/2963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet to refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110931", "images": ["AURORA/data/something/frames/194192/first.jpg", "AURORA/data/something/frames/194192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110932", "images": ["AURORA/data/something/frames/4784/first.jpg", "AURORA/data/something/frames/4784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pepper so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110933", "images": ["AURORA/data/something/frames/220781/first.jpg", "AURORA/data/something/frames/220781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110934", "images": ["AURORA/data/something/frames/87111/first.jpg", "AURORA/data/something/frames/87111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stone with lemon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110935", "images": ["AURORA/data/something/frames/6079/first.jpg", "AURORA/data/something/frames/6079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000110936", "images": ["AURORA/data/something/frames/173943/first.jpg", "AURORA/data/something/frames/173943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a bottle into a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110937", "images": ["AURORA/data/something/frames/105890/first.jpg", "AURORA/data/something/frames/105890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a hanger so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110938", "images": ["AURORA/data/something/frames/197315/first.jpg", "AURORA/data/something/frames/197315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal pipe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110939", "images": ["AURORA/data/something/frames/124981/first.jpg", "AURORA/data/something/frames/124981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bearings and speaker away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110940", "images": ["AURORA/data/something/frames/173323/first.jpg", "AURORA/data/something/frames/173323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting tumbler with glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110941", "images": ["AURORA/data/something/frames/17248/first.jpg", "AURORA/data/something/frames/17248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110942", "images": ["AURORA/data/something/frames/199252/first.jpg", "AURORA/data/something/frames/199252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sunscreen lotion from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110943", "images": ["AURORA/data/something/frames/135609/first.jpg", "AURORA/data/something/frames/135609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting can with knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000110944", "images": ["AURORA/data/something/frames/164623/first.jpg", "AURORA/data/something/frames/164623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110945", "images": ["AURORA/data/something/frames/106256/first.jpg", "AURORA/data/something/frames/106256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110946", "images": ["AURORA/data/something/frames/152453/first.jpg", "AURORA/data/something/frames/152453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110947", "images": ["AURORA/data/something/frames/84242/first.jpg", "AURORA/data/something/frames/84242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange post-it from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110948", "images": ["AURORA/data/something/frames/45228/first.jpg", "AURORA/data/something/frames/45228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and another bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110949", "images": ["AURORA/data/something/frames/115528/first.jpg", "AURORA/data/something/frames/115528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110950", "images": ["AURORA/data/something/frames/218718/first.jpg", "AURORA/data/something/frames/218718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing plastik bag, revealing vase behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110951", "images": ["AURORA/data/something/frames/69235/first.jpg", "AURORA/data/something/frames/69235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110952", "images": ["AURORA/data/something/frames/73037/first.jpg", "AURORA/data/something/frames/73037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) pull part of light"}, {"from": "gpt", "value": ""}]} +{"id": "000000110953", "images": ["AURORA/data/something/frames/171852/first.jpg", "AURORA/data/something/frames/171852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering earring with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110954", "images": ["AURORA/data/something/frames/179411/first.jpg", "AURORA/data/something/frames/179411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail varnish from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110955", "images": ["AURORA/data/something/frames/86141/first.jpg", "AURORA/data/something/frames/86141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cellphone charge plug into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110956", "images": ["AURORA/data/something/frames/42148/first.jpg", "AURORA/data/something/frames/42148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110957", "images": ["AURORA/data/something/frames/184809/first.jpg", "AURORA/data/something/frames/184809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel away from towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110958", "images": ["AURORA/data/something/frames/154749/first.jpg", "AURORA/data/something/frames/154749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110959", "images": ["AURORA/data/something/frames/120158/first.jpg", "AURORA/data/something/frames/120158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: gum colliding with gum and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110960", "images": ["AURORA/data/something/frames/30805/first.jpg", "AURORA/data/something/frames/30805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110961", "images": ["AURORA/data/something/frames/168325/first.jpg", "AURORA/data/something/frames/168325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000110962", "images": ["AURORA/data/something/frames/120960/first.jpg", "AURORA/data/something/frames/120960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering goggles"}, {"from": "gpt", "value": ""}]} +{"id": "000000110963", "images": ["AURORA/data/something/frames/151101/first.jpg", "AURORA/data/something/frames/151101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tape measure from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110964", "images": ["AURORA/data/something/frames/208689/first.jpg", "AURORA/data/something/frames/208689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger and pendrive closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110965", "images": ["AURORA/data/something/frames/80735/first.jpg", "AURORA/data/something/frames/80735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic comb into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110966", "images": ["AURORA/data/something/frames/26512/first.jpg", "AURORA/data/something/frames/26512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110967", "images": ["AURORA/data/something/frames/145153/first.jpg", "AURORA/data/something/frames/145153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110968", "images": ["AURORA/data/something/frames/105925/first.jpg", "AURORA/data/something/frames/105925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking measuring tape from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000110969", "images": ["AURORA/data/something/frames/61495/first.jpg", "AURORA/data/something/frames/61495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a hairspray can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110970", "images": ["AURORA/data/something/frames/59264/first.jpg", "AURORA/data/something/frames/59264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter onto sunglasses so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110971", "images": ["AURORA/data/something/frames/78843/first.jpg", "AURORA/data/something/frames/78843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one more glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110972", "images": ["AURORA/data/something/frames/84412/first.jpg", "AURORA/data/something/frames/84412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting brush up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110973", "images": ["AURORA/data/something/frames/190334/first.jpg", "AURORA/data/something/frames/190334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110974", "images": ["AURORA/data/something/frames/78716/first.jpg", "AURORA/data/something/frames/78716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110975", "images": ["AURORA/data/something/frames/112723/first.jpg", "AURORA/data/something/frames/112723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote control with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110976", "images": ["AURORA/data/something/frames/30118/first.jpg", "AURORA/data/something/frames/30118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110977", "images": ["AURORA/data/something/frames/97604/first.jpg", "AURORA/data/something/frames/97604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cream behind knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000110978", "images": ["AURORA/data/something/frames/36352/first.jpg", "AURORA/data/something/frames/36352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ketchup bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110979", "images": ["AURORA/data/something/frames/218826/first.jpg", "AURORA/data/something/frames/218826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug adapter into a wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110980", "images": ["AURORA/data/something/frames/40863/first.jpg", "AURORA/data/something/frames/40863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one poker chip into a group with many poker chips"}, {"from": "gpt", "value": ""}]} +{"id": "000000110981", "images": ["AURORA/data/something/frames/41780/first.jpg", "AURORA/data/something/frames/41780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110982", "images": ["AURORA/data/something/frames/12931/first.jpg", "AURORA/data/something/frames/12931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110983", "images": ["AURORA/data/something/frames/62879/first.jpg", "AURORA/data/something/frames/62879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an envelop on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110984", "images": ["AURORA/data/something/frames/124982/first.jpg", "AURORA/data/something/frames/124982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a perfume bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110985", "images": ["AURORA/data/something/frames/85446/first.jpg", "AURORA/data/something/frames/85446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple balloon pump from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110986", "images": ["AURORA/data/something/frames/69359/first.jpg", "AURORA/data/something/frames/69359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110987", "images": ["AURORA/data/something/frames/31878/first.jpg", "AURORA/data/something/frames/31878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110988", "images": ["AURORA/data/something/frames/149428/first.jpg", "AURORA/data/something/frames/149428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000110989", "images": ["AURORA/data/something/frames/85017/first.jpg", "AURORA/data/something/frames/85017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging ball out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110990", "images": ["AURORA/data/something/frames/147799/first.jpg", "AURORA/data/something/frames/147799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering notebook with hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110991", "images": ["AURORA/data/something/frames/128532/first.jpg", "AURORA/data/something/frames/128532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110992", "images": ["AURORA/data/something/frames/45107/first.jpg", "AURORA/data/something/frames/45107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile on to a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110993", "images": ["AURORA/data/something/frames/26192/first.jpg", "AURORA/data/something/frames/26192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000110994", "images": ["AURORA/data/something/frames/95706/first.jpg", "AURORA/data/something/frames/95706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000110995", "images": ["AURORA/data/something/frames/160763/first.jpg", "AURORA/data/something/frames/160763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110996", "images": ["AURORA/data/something/frames/122822/first.jpg", "AURORA/data/something/frames/122822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110997", "images": ["AURORA/data/something/frames/73137/first.jpg", "AURORA/data/something/frames/73137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110998", "images": ["AURORA/data/something/frames/116149/first.jpg", "AURORA/data/something/frames/116149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car and book on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110999", "images": ["AURORA/data/something/frames/193529/first.jpg", "AURORA/data/something/frames/193529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tin from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111000", "images": ["AURORA/data/something/frames/26734/first.jpg", "AURORA/data/something/frames/26734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box of tissues upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111001", "images": ["AURORA/data/something/frames/17315/first.jpg", "AURORA/data/something/frames/17315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111002", "images": ["AURORA/data/something/frames/110918/first.jpg", "AURORA/data/something/frames/110918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000111003", "images": ["AURORA/data/something/frames/140933/first.jpg", "AURORA/data/something/frames/140933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111004", "images": ["AURORA/data/something/frames/55125/first.jpg", "AURORA/data/something/frames/55125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying boot on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111005", "images": ["AURORA/data/something/frames/172395/first.jpg", "AURORA/data/something/frames/172395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking white chalk from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111006", "images": ["AURORA/data/something/frames/105481/first.jpg", "AURORA/data/something/frames/105481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the bowl in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111007", "images": ["AURORA/data/something/frames/20374/first.jpg", "AURORA/data/something/frames/20374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111008", "images": ["AURORA/data/something/frames/153961/first.jpg", "AURORA/data/something/frames/153961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting carbon paper into the bill book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111009", "images": ["AURORA/data/something/frames/26327/first.jpg", "AURORA/data/something/frames/26327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a small bottle and a fidget cube on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111010", "images": ["AURORA/data/something/frames/115694/first.jpg", "AURORA/data/something/frames/115694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering round case with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111011", "images": ["AURORA/data/something/frames/95285/first.jpg", "AURORA/data/something/frames/95285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving night light and fig closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111012", "images": ["AURORA/data/something/frames/218361/first.jpg", "AURORA/data/something/frames/218361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming fruits"}, {"from": "gpt", "value": ""}]} +{"id": "000000111013", "images": ["AURORA/data/something/frames/112088/first.jpg", "AURORA/data/something/frames/112088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hand cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111014", "images": ["AURORA/data/something/frames/3871/first.jpg", "AURORA/data/something/frames/3871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coloured pen into pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000111015", "images": ["AURORA/data/something/frames/24498/first.jpg", "AURORA/data/something/frames/24498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cat with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111016", "images": ["AURORA/data/something/frames/197549/first.jpg", "AURORA/data/something/frames/197549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming small green ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111017", "images": ["AURORA/data/something/frames/134653/first.jpg", "AURORA/data/something/frames/134653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111018", "images": ["AURORA/data/something/frames/150075/first.jpg", "AURORA/data/something/frames/150075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb connector into charging port"}, {"from": "gpt", "value": ""}]} +{"id": "000000111019", "images": ["AURORA/data/something/frames/85616/first.jpg", "AURORA/data/something/frames/85616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into surge protector but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111020", "images": ["AURORA/data/something/frames/130469/first.jpg", "AURORA/data/something/frames/130469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy wheel with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111021", "images": ["AURORA/data/something/frames/9578/first.jpg", "AURORA/data/something/frames/9578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ruler onto a notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000111022", "images": ["AURORA/data/something/frames/121804/first.jpg", "AURORA/data/something/frames/121804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111023", "images": ["AURORA/data/something/frames/196406/first.jpg", "AURORA/data/something/frames/196406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with power bank on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111024", "images": ["AURORA/data/something/frames/178551/first.jpg", "AURORA/data/something/frames/178551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bolt screw, gear wheel and pencil sharpner on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111025", "images": ["AURORA/data/something/frames/138067/first.jpg", "AURORA/data/something/frames/138067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel away from towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111026", "images": ["AURORA/data/something/frames/83306/first.jpg", "AURORA/data/something/frames/83306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sun glass towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111027", "images": ["AURORA/data/something/frames/65009/first.jpg", "AURORA/data/something/frames/65009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111028", "images": ["AURORA/data/something/frames/107100/first.jpg", "AURORA/data/something/frames/107100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile phone similar to other mobile phones that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111029", "images": ["AURORA/data/something/frames/9186/first.jpg", "AURORA/data/something/frames/9186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111030", "images": ["AURORA/data/something/frames/218347/first.jpg", "AURORA/data/something/frames/218347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111031", "images": ["AURORA/data/something/frames/62906/first.jpg", "AURORA/data/something/frames/62906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111032", "images": ["AURORA/data/something/frames/14541/first.jpg", "AURORA/data/something/frames/14541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111033", "images": ["AURORA/data/something/frames/36725/first.jpg", "AURORA/data/something/frames/36725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111034", "images": ["AURORA/data/something/frames/97520/first.jpg", "AURORA/data/something/frames/97520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111035", "images": ["AURORA/data/something/frames/200714/first.jpg", "AURORA/data/something/frames/200714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000111036", "images": ["AURORA/data/something/frames/68421/first.jpg", "AURORA/data/something/frames/68421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass of water on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111037", "images": ["AURORA/data/something/frames/135565/first.jpg", "AURORA/data/something/frames/135565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking board clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111038", "images": ["AURORA/data/something/frames/54579/first.jpg", "AURORA/data/something/frames/54579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111039", "images": ["AURORA/data/something/frames/121659/first.jpg", "AURORA/data/something/frames/121659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111040", "images": ["AURORA/data/something/frames/156130/first.jpg", "AURORA/data/something/frames/156130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000111041", "images": ["AURORA/data/something/frames/78306/first.jpg", "AURORA/data/something/frames/78306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111042", "images": ["AURORA/data/something/frames/64595/first.jpg", "AURORA/data/something/frames/64595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) kerchief wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111043", "images": ["AURORA/data/something/frames/153575/first.jpg", "AURORA/data/something/frames/153575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111044", "images": ["AURORA/data/something/frames/90266/first.jpg", "AURORA/data/something/frames/90266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bulb syringe into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111045", "images": ["AURORA/data/something/frames/88927/first.jpg", "AURORA/data/something/frames/88927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111046", "images": ["AURORA/data/something/frames/73975/first.jpg", "AURORA/data/something/frames/73975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111047", "images": ["AURORA/data/something/frames/175308/first.jpg", "AURORA/data/something/frames/175308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111048", "images": ["AURORA/data/something/frames/66669/first.jpg", "AURORA/data/something/frames/66669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111049", "images": ["AURORA/data/something/frames/109760/first.jpg", "AURORA/data/something/frames/109760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy puppy closer to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111050", "images": ["AURORA/data/something/frames/212833/first.jpg", "AURORA/data/something/frames/212833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car colliding with a toy car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111051", "images": ["AURORA/data/something/frames/84939/first.jpg", "AURORA/data/something/frames/84939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into telephone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111052", "images": ["AURORA/data/something/frames/59719/first.jpg", "AURORA/data/something/frames/59719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brush from purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111053", "images": ["AURORA/data/something/frames/168300/first.jpg", "AURORA/data/something/frames/168300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111054", "images": ["AURORA/data/something/frames/203829/first.jpg", "AURORA/data/something/frames/203829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something underneath something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111055", "images": ["AURORA/data/something/frames/69340/first.jpg", "AURORA/data/something/frames/69340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111056", "images": ["AURORA/data/something/frames/94264/first.jpg", "AURORA/data/something/frames/94264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keyring of airpod case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111057", "images": ["AURORA/data/something/frames/211564/first.jpg", "AURORA/data/something/frames/211564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111058", "images": ["AURORA/data/something/frames/1322/first.jpg", "AURORA/data/something/frames/1322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubberband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111059", "images": ["AURORA/data/something/frames/144633/first.jpg", "AURORA/data/something/frames/144633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pink toothbrush case on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111060", "images": ["AURORA/data/something/frames/79206/first.jpg", "AURORA/data/something/frames/79206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving my phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111061", "images": ["AURORA/data/something/frames/117431/first.jpg", "AURORA/data/something/frames/117431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111062", "images": ["AURORA/data/something/frames/159874/first.jpg", "AURORA/data/something/frames/159874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111063", "images": ["AURORA/data/something/frames/153594/first.jpg", "AURORA/data/something/frames/153594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111064", "images": ["AURORA/data/something/frames/30495/first.jpg", "AURORA/data/something/frames/30495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111065", "images": ["AURORA/data/something/frames/87632/first.jpg", "AURORA/data/something/frames/87632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111066", "images": ["AURORA/data/something/frames/213899/first.jpg", "AURORA/data/something/frames/213899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111067", "images": ["AURORA/data/something/frames/49683/first.jpg", "AURORA/data/something/frames/49683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube behind a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111068", "images": ["AURORA/data/something/frames/62582/first.jpg", "AURORA/data/something/frames/62582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111069", "images": ["AURORA/data/something/frames/6426/first.jpg", "AURORA/data/something/frames/6426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000111070", "images": ["AURORA/data/something/frames/85360/first.jpg", "AURORA/data/something/frames/85360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000111071", "images": ["AURORA/data/something/frames/106452/first.jpg", "AURORA/data/something/frames/106452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tin with tea leaves over, so tea leaves falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111072", "images": ["AURORA/data/something/frames/157675/first.jpg", "AURORA/data/something/frames/157675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000111073", "images": ["AURORA/data/something/frames/168324/first.jpg", "AURORA/data/something/frames/168324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111074", "images": ["AURORA/data/something/frames/98847/first.jpg", "AURORA/data/something/frames/98847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111075", "images": ["AURORA/data/something/frames/161657/first.jpg", "AURORA/data/something/frames/161657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111076", "images": ["AURORA/data/something/frames/134584/first.jpg", "AURORA/data/something/frames/134584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111077", "images": ["AURORA/data/something/frames/79910/first.jpg", "AURORA/data/something/frames/79910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair elastic so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111078", "images": ["AURORA/data/something/frames/101859/first.jpg", "AURORA/data/something/frames/101859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111079", "images": ["AURORA/data/something/frames/85702/first.jpg", "AURORA/data/something/frames/85702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cereal up with measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111080", "images": ["AURORA/data/something/frames/98076/first.jpg", "AURORA/data/something/frames/98076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 cups"}, {"from": "gpt", "value": ""}]} +{"id": "000000111081", "images": ["AURORA/data/something/frames/77722/first.jpg", "AURORA/data/something/frames/77722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plugg into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111082", "images": ["AURORA/data/something/frames/7632/first.jpg", "AURORA/data/something/frames/7632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving envelopes across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111083", "images": ["AURORA/data/something/frames/109978/first.jpg", "AURORA/data/something/frames/109978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving table up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111084", "images": ["AURORA/data/something/frames/204882/first.jpg", "AURORA/data/something/frames/204882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching bottle to cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111085", "images": ["AURORA/data/something/frames/194332/first.jpg", "AURORA/data/something/frames/194332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering headphones with clothing"}, {"from": "gpt", "value": ""}]} +{"id": "000000111086", "images": ["AURORA/data/something/frames/196047/first.jpg", "AURORA/data/something/frames/196047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000111087", "images": ["AURORA/data/something/frames/219940/first.jpg", "AURORA/data/something/frames/219940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spaghetti until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111088", "images": ["AURORA/data/something/frames/161706/first.jpg", "AURORA/data/something/frames/161706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a measuring tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111089", "images": ["AURORA/data/something/frames/112895/first.jpg", "AURORA/data/something/frames/112895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring animal feed out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111090", "images": ["AURORA/data/something/frames/42130/first.jpg", "AURORA/data/something/frames/42130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111091", "images": ["AURORA/data/something/frames/16007/first.jpg", "AURORA/data/something/frames/16007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111092", "images": ["AURORA/data/something/frames/108784/first.jpg", "AURORA/data/something/frames/108784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111093", "images": ["AURORA/data/something/frames/196269/first.jpg", "AURORA/data/something/frames/196269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning soup bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111094", "images": ["AURORA/data/something/frames/21651/first.jpg", "AURORA/data/something/frames/21651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111095", "images": ["AURORA/data/something/frames/103077/first.jpg", "AURORA/data/something/frames/103077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111096", "images": ["AURORA/data/something/frames/181261/first.jpg", "AURORA/data/something/frames/181261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111097", "images": ["AURORA/data/something/frames/140527/first.jpg", "AURORA/data/something/frames/140527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from water tap with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111098", "images": ["AURORA/data/something/frames/186245/first.jpg", "AURORA/data/something/frames/186245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a beaker so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111099", "images": ["AURORA/data/something/frames/218202/first.jpg", "AURORA/data/something/frames/218202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching stopper to vial"}, {"from": "gpt", "value": ""}]} +{"id": "000000111100", "images": ["AURORA/data/something/frames/49005/first.jpg", "AURORA/data/something/frames/49005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000111101", "images": ["AURORA/data/something/frames/189104/first.jpg", "AURORA/data/something/frames/189104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 6 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000111102", "images": ["AURORA/data/something/frames/85240/first.jpg", "AURORA/data/something/frames/85240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding banana leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000111103", "images": ["AURORA/data/something/frames/181583/first.jpg", "AURORA/data/something/frames/181583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a green box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111104", "images": ["AURORA/data/something/frames/48363/first.jpg", "AURORA/data/something/frames/48363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting charger adapter into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111105", "images": ["AURORA/data/something/frames/37282/first.jpg", "AURORA/data/something/frames/37282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notecard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111106", "images": ["AURORA/data/something/frames/19069/first.jpg", "AURORA/data/something/frames/19069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening empty clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111107", "images": ["AURORA/data/something/frames/37052/first.jpg", "AURORA/data/something/frames/37052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111108", "images": ["AURORA/data/something/frames/4138/first.jpg", "AURORA/data/something/frames/4138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111109", "images": ["AURORA/data/something/frames/203569/first.jpg", "AURORA/data/something/frames/203569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pad lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000111110", "images": ["AURORA/data/something/frames/72108/first.jpg", "AURORA/data/something/frames/72108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111111", "images": ["AURORA/data/something/frames/181944/first.jpg", "AURORA/data/something/frames/181944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111112", "images": ["AURORA/data/something/frames/129223/first.jpg", "AURORA/data/something/frames/129223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111113", "images": ["AURORA/data/something/frames/192296/first.jpg", "AURORA/data/something/frames/192296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111114", "images": ["AURORA/data/something/frames/53036/first.jpg", "AURORA/data/something/frames/53036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a notebook on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111115", "images": ["AURORA/data/something/frames/43527/first.jpg", "AURORA/data/something/frames/43527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping lighter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111116", "images": ["AURORA/data/something/frames/92215/first.jpg", "AURORA/data/something/frames/92215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the keys into the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111117", "images": ["AURORA/data/something/frames/32149/first.jpg", "AURORA/data/something/frames/32149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mains plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111118", "images": ["AURORA/data/something/frames/76243/first.jpg", "AURORA/data/something/frames/76243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111119", "images": ["AURORA/data/something/frames/184572/first.jpg", "AURORA/data/something/frames/184572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111120", "images": ["AURORA/data/something/frames/197719/first.jpg", "AURORA/data/something/frames/197719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into notebook paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111121", "images": ["AURORA/data/something/frames/72712/first.jpg", "AURORA/data/something/frames/72712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111122", "images": ["AURORA/data/something/frames/55391/first.jpg", "AURORA/data/something/frames/55391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111123", "images": ["AURORA/data/something/frames/81358/first.jpg", "AURORA/data/something/frames/81358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111124", "images": ["AURORA/data/something/frames/17995/first.jpg", "AURORA/data/something/frames/17995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box closer to a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111125", "images": ["AURORA/data/something/frames/184121/first.jpg", "AURORA/data/something/frames/184121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of thread so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111126", "images": ["AURORA/data/something/frames/142440/first.jpg", "AURORA/data/something/frames/142440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111127", "images": ["AURORA/data/something/frames/152357/first.jpg", "AURORA/data/something/frames/152357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling binders up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111128", "images": ["AURORA/data/something/frames/42628/first.jpg", "AURORA/data/something/frames/42628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ice cream scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000111129", "images": ["AURORA/data/something/frames/96619/first.jpg", "AURORA/data/something/frames/96619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111130", "images": ["AURORA/data/something/frames/93549/first.jpg", "AURORA/data/something/frames/93549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming water tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111131", "images": ["AURORA/data/something/frames/212356/first.jpg", "AURORA/data/something/frames/212356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cashew with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111132", "images": ["AURORA/data/something/frames/141934/first.jpg", "AURORA/data/something/frames/141934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111133", "images": ["AURORA/data/something/frames/33766/first.jpg", "AURORA/data/something/frames/33766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving headphones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111134", "images": ["AURORA/data/something/frames/209994/first.jpg", "AURORA/data/something/frames/209994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pill bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111135", "images": ["AURORA/data/something/frames/185502/first.jpg", "AURORA/data/something/frames/185502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111136", "images": ["AURORA/data/something/frames/198062/first.jpg", "AURORA/data/something/frames/198062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting coconut tree with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111137", "images": ["AURORA/data/something/frames/24566/first.jpg", "AURORA/data/something/frames/24566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111138", "images": ["AURORA/data/something/frames/86039/first.jpg", "AURORA/data/something/frames/86039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb pin into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000111139", "images": ["AURORA/data/something/frames/166132/first.jpg", "AURORA/data/something/frames/166132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda can closer to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111140", "images": ["AURORA/data/something/frames/28021/first.jpg", "AURORA/data/something/frames/28021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111141", "images": ["AURORA/data/something/frames/37110/first.jpg", "AURORA/data/something/frames/37110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with avocado on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111142", "images": ["AURORA/data/something/frames/63041/first.jpg", "AURORA/data/something/frames/63041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111143", "images": ["AURORA/data/something/frames/132062/first.jpg", "AURORA/data/something/frames/132062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote with comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111144", "images": ["AURORA/data/something/frames/75383/first.jpg", "AURORA/data/something/frames/75383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111145", "images": ["AURORA/data/something/frames/176777/first.jpg", "AURORA/data/something/frames/176777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rule up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111146", "images": ["AURORA/data/something/frames/188301/first.jpg", "AURORA/data/something/frames/188301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses, marker and gift card on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111147", "images": ["AURORA/data/something/frames/215219/first.jpg", "AURORA/data/something/frames/215219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brick next to brick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111148", "images": ["AURORA/data/something/frames/30105/first.jpg", "AURORA/data/something/frames/30105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking alcohol bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111149", "images": ["AURORA/data/something/frames/37442/first.jpg", "AURORA/data/something/frames/37442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111150", "images": ["AURORA/data/something/frames/6342/first.jpg", "AURORA/data/something/frames/6342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a lotion tube so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111151", "images": ["AURORA/data/something/frames/111853/first.jpg", "AURORA/data/something/frames/111853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111152", "images": ["AURORA/data/something/frames/193535/first.jpg", "AURORA/data/something/frames/193535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111153", "images": ["AURORA/data/something/frames/137883/first.jpg", "AURORA/data/something/frames/137883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring rubbing alcohol out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111154", "images": ["AURORA/data/something/frames/66036/first.jpg", "AURORA/data/something/frames/66036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 white board clips"}, {"from": "gpt", "value": ""}]} +{"id": "000000111155", "images": ["AURORA/data/something/frames/45462/first.jpg", "AURORA/data/something/frames/45462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of lavandin container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111156", "images": ["AURORA/data/something/frames/20106/first.jpg", "AURORA/data/something/frames/20106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding folded paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111157", "images": ["AURORA/data/something/frames/111818/first.jpg", "AURORA/data/something/frames/111818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a towel up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111158", "images": ["AURORA/data/something/frames/198462/first.jpg", "AURORA/data/something/frames/198462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: adapter colliding with rock and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111159", "images": ["AURORA/data/something/frames/140161/first.jpg", "AURORA/data/something/frames/140161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111160", "images": ["AURORA/data/something/frames/1464/first.jpg", "AURORA/data/something/frames/1464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing kitchen cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111161", "images": ["AURORA/data/something/frames/26984/first.jpg", "AURORA/data/something/frames/26984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving game down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111162", "images": ["AURORA/data/something/frames/33327/first.jpg", "AURORA/data/something/frames/33327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mobile phone cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000111163", "images": ["AURORA/data/something/frames/198111/first.jpg", "AURORA/data/something/frames/198111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a hard disk drive"}, {"from": "gpt", "value": ""}]} +{"id": "000000111164", "images": ["AURORA/data/something/frames/136876/first.jpg", "AURORA/data/something/frames/136876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping orange colour sharpner in front of duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111165", "images": ["AURORA/data/something/frames/22881/first.jpg", "AURORA/data/something/frames/22881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tie across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111166", "images": ["AURORA/data/something/frames/70548/first.jpg", "AURORA/data/something/frames/70548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring dr.pepper into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111167", "images": ["AURORA/data/something/frames/45995/first.jpg", "AURORA/data/something/frames/45995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glass with tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000111168", "images": ["AURORA/data/something/frames/201692/first.jpg", "AURORA/data/something/frames/201692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue lighter from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111169", "images": ["AURORA/data/something/frames/68659/first.jpg", "AURORA/data/something/frames/68659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000111170", "images": ["AURORA/data/something/frames/192369/first.jpg", "AURORA/data/something/frames/192369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cub up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111171", "images": ["AURORA/data/something/frames/128259/first.jpg", "AURORA/data/something/frames/128259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111172", "images": ["AURORA/data/something/frames/18100/first.jpg", "AURORA/data/something/frames/18100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stapler from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111173", "images": ["AURORA/data/something/frames/161875/first.jpg", "AURORA/data/something/frames/161875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000111174", "images": ["AURORA/data/something/frames/184687/first.jpg", "AURORA/data/something/frames/184687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cord into a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000111175", "images": ["AURORA/data/something/frames/168365/first.jpg", "AURORA/data/something/frames/168365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving computer case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111176", "images": ["AURORA/data/something/frames/146732/first.jpg", "AURORA/data/something/frames/146732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111177", "images": ["AURORA/data/something/frames/105994/first.jpg", "AURORA/data/something/frames/105994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111178", "images": ["AURORA/data/something/frames/87458/first.jpg", "AURORA/data/something/frames/87458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111179", "images": ["AURORA/data/something/frames/116983/first.jpg", "AURORA/data/something/frames/116983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111180", "images": ["AURORA/data/something/frames/89502/first.jpg", "AURORA/data/something/frames/89502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111181", "images": ["AURORA/data/something/frames/75639/first.jpg", "AURORA/data/something/frames/75639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling notebook out of bookbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111182", "images": ["AURORA/data/something/frames/98888/first.jpg", "AURORA/data/something/frames/98888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111183", "images": ["AURORA/data/something/frames/997/first.jpg", "AURORA/data/something/frames/997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil, sharpener and eraser on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111184", "images": ["AURORA/data/something/frames/86352/first.jpg", "AURORA/data/something/frames/86352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111185", "images": ["AURORA/data/something/frames/143225/first.jpg", "AURORA/data/something/frames/143225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pot holder into vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000111186", "images": ["AURORA/data/something/frames/88589/first.jpg", "AURORA/data/something/frames/88589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork away from spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111187", "images": ["AURORA/data/something/frames/188708/first.jpg", "AURORA/data/something/frames/188708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote away from the mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111188", "images": ["AURORA/data/something/frames/152774/first.jpg", "AURORA/data/something/frames/152774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111189", "images": ["AURORA/data/something/frames/175153/first.jpg", "AURORA/data/something/frames/175153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111190", "images": ["AURORA/data/something/frames/65798/first.jpg", "AURORA/data/something/frames/65798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from iron with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111191", "images": ["AURORA/data/something/frames/57220/first.jpg", "AURORA/data/something/frames/57220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111192", "images": ["AURORA/data/something/frames/182807/first.jpg", "AURORA/data/something/frames/182807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a different label skateboard next to another skateboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000111193", "images": ["AURORA/data/something/frames/147448/first.jpg", "AURORA/data/something/frames/147448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111194", "images": ["AURORA/data/something/frames/217201/first.jpg", "AURORA/data/something/frames/217201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping small box into medium tupperware container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111195", "images": ["AURORA/data/something/frames/85753/first.jpg", "AURORA/data/something/frames/85753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coke into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111196", "images": ["AURORA/data/something/frames/69661/first.jpg", "AURORA/data/something/frames/69661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111197", "images": ["AURORA/data/something/frames/184007/first.jpg", "AURORA/data/something/frames/184007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a folder so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111198", "images": ["AURORA/data/something/frames/86955/first.jpg", "AURORA/data/something/frames/86955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toilette paper and toilette paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111199", "images": ["AURORA/data/something/frames/158425/first.jpg", "AURORA/data/something/frames/158425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt shaker and pepper mill closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111200", "images": ["AURORA/data/something/frames/35267/first.jpg", "AURORA/data/something/frames/35267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111201", "images": ["AURORA/data/something/frames/78872/first.jpg", "AURORA/data/something/frames/78872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111202", "images": ["AURORA/data/something/frames/48034/first.jpg", "AURORA/data/something/frames/48034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of nail polish so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000111203", "images": ["AURORA/data/something/frames/181879/first.jpg", "AURORA/data/something/frames/181879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coffee into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111204", "images": ["AURORA/data/something/frames/5576/first.jpg", "AURORA/data/something/frames/5576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111205", "images": ["AURORA/data/something/frames/36459/first.jpg", "AURORA/data/something/frames/36459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking shoe polish container from piller"}, {"from": "gpt", "value": ""}]} +{"id": "000000111206", "images": ["AURORA/data/something/frames/141650/first.jpg", "AURORA/data/something/frames/141650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111207", "images": ["AURORA/data/something/frames/162418/first.jpg", "AURORA/data/something/frames/162418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking nail polish so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111208", "images": ["AURORA/data/something/frames/180580/first.jpg", "AURORA/data/something/frames/180580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing compassbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000111209", "images": ["AURORA/data/something/frames/31139/first.jpg", "AURORA/data/something/frames/31139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a plug on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111210", "images": ["AURORA/data/something/frames/95803/first.jpg", "AURORA/data/something/frames/95803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000111211", "images": ["AURORA/data/something/frames/84344/first.jpg", "AURORA/data/something/frames/84344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111212", "images": ["AURORA/data/something/frames/65011/first.jpg", "AURORA/data/something/frames/65011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a book on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111213", "images": ["AURORA/data/something/frames/102101/first.jpg", "AURORA/data/something/frames/102101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting feeding bottle into pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111214", "images": ["AURORA/data/something/frames/105837/first.jpg", "AURORA/data/something/frames/105837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111215", "images": ["AURORA/data/something/frames/29488/first.jpg", "AURORA/data/something/frames/29488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling potholders up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111216", "images": ["AURORA/data/something/frames/177211/first.jpg", "AURORA/data/something/frames/177211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sesame seeds onto an oven tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000111217", "images": ["AURORA/data/something/frames/195673/first.jpg", "AURORA/data/something/frames/195673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobile phone with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111218", "images": ["AURORA/data/something/frames/40597/first.jpg", "AURORA/data/something/frames/40597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blinds up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111219", "images": ["AURORA/data/something/frames/116200/first.jpg", "AURORA/data/something/frames/116200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eraser onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000111220", "images": ["AURORA/data/something/frames/110093/first.jpg", "AURORA/data/something/frames/110093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111221", "images": ["AURORA/data/something/frames/71758/first.jpg", "AURORA/data/something/frames/71758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000111222", "images": ["AURORA/data/something/frames/29538/first.jpg", "AURORA/data/something/frames/29538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candy towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111223", "images": ["AURORA/data/something/frames/128173/first.jpg", "AURORA/data/something/frames/128173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding receipt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111224", "images": ["AURORA/data/something/frames/140514/first.jpg", "AURORA/data/something/frames/140514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cufflinks onto a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000111225", "images": ["AURORA/data/something/frames/6452/first.jpg", "AURORA/data/something/frames/6452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111226", "images": ["AURORA/data/something/frames/89036/first.jpg", "AURORA/data/something/frames/89036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000111227", "images": ["AURORA/data/something/frames/154955/first.jpg", "AURORA/data/something/frames/154955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111228", "images": ["AURORA/data/something/frames/128343/first.jpg", "AURORA/data/something/frames/128343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111229", "images": ["AURORA/data/something/frames/194338/first.jpg", "AURORA/data/something/frames/194338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cd into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111230", "images": ["AURORA/data/something/frames/17120/first.jpg", "AURORA/data/something/frames/17120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking sellotape so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111231", "images": ["AURORA/data/something/frames/174589/first.jpg", "AURORA/data/something/frames/174589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111232", "images": ["AURORA/data/something/frames/125487/first.jpg", "AURORA/data/something/frames/125487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a water bottle onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111233", "images": ["AURORA/data/something/frames/191021/first.jpg", "AURORA/data/something/frames/191021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111234", "images": ["AURORA/data/something/frames/148067/first.jpg", "AURORA/data/something/frames/148067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000111235", "images": ["AURORA/data/something/frames/25653/first.jpg", "AURORA/data/something/frames/25653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief in front of a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000111236", "images": ["AURORA/data/something/frames/37595/first.jpg", "AURORA/data/something/frames/37595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and tuperware away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111237", "images": ["AURORA/data/something/frames/204942/first.jpg", "AURORA/data/something/frames/204942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and another bottle so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111238", "images": ["AURORA/data/something/frames/204713/first.jpg", "AURORA/data/something/frames/204713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from mirror with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111239", "images": ["AURORA/data/something/frames/17064/first.jpg", "AURORA/data/something/frames/17064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111240", "images": ["AURORA/data/something/frames/148407/first.jpg", "AURORA/data/something/frames/148407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering stuffed animal"}, {"from": "gpt", "value": ""}]} +{"id": "000000111241", "images": ["AURORA/data/something/frames/30654/first.jpg", "AURORA/data/something/frames/30654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering teacup with saucer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111242", "images": ["AURORA/data/something/frames/159068/first.jpg", "AURORA/data/something/frames/159068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic flower away from toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000111243", "images": ["AURORA/data/something/frames/157815/first.jpg", "AURORA/data/something/frames/157815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000111244", "images": ["AURORA/data/something/frames/82891/first.jpg", "AURORA/data/something/frames/82891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candy out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111245", "images": ["AURORA/data/something/frames/19283/first.jpg", "AURORA/data/something/frames/19283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111246", "images": ["AURORA/data/something/frames/133927/first.jpg", "AURORA/data/something/frames/133927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yogurt out of freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111247", "images": ["AURORA/data/something/frames/89079/first.jpg", "AURORA/data/something/frames/89079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000111248", "images": ["AURORA/data/something/frames/108992/first.jpg", "AURORA/data/something/frames/108992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending twist ties so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111249", "images": ["AURORA/data/something/frames/105734/first.jpg", "AURORA/data/something/frames/105734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork with other forks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111250", "images": ["AURORA/data/something/frames/12462/first.jpg", "AURORA/data/something/frames/12462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000111251", "images": ["AURORA/data/something/frames/64810/first.jpg", "AURORA/data/something/frames/64810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111252", "images": ["AURORA/data/something/frames/190983/first.jpg", "AURORA/data/something/frames/190983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottled water"}, {"from": "gpt", "value": ""}]} +{"id": "000000111253", "images": ["AURORA/data/something/frames/136860/first.jpg", "AURORA/data/something/frames/136860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tool away from scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111254", "images": ["AURORA/data/something/frames/21538/first.jpg", "AURORA/data/something/frames/21538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111255", "images": ["AURORA/data/something/frames/181248/first.jpg", "AURORA/data/something/frames/181248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing aluminum foil into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111256", "images": ["AURORA/data/something/frames/176048/first.jpg", "AURORA/data/something/frames/176048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a screw from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111257", "images": ["AURORA/data/something/frames/8164/first.jpg", "AURORA/data/something/frames/8164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000111258", "images": ["AURORA/data/something/frames/105386/first.jpg", "AURORA/data/something/frames/105386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming green water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111259", "images": ["AURORA/data/something/frames/218476/first.jpg", "AURORA/data/something/frames/218476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flower with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111260", "images": ["AURORA/data/something/frames/208894/first.jpg", "AURORA/data/something/frames/208894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111261", "images": ["AURORA/data/something/frames/112295/first.jpg", "AURORA/data/something/frames/112295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting belt into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111262", "images": ["AURORA/data/something/frames/96898/first.jpg", "AURORA/data/something/frames/96898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111263", "images": ["AURORA/data/something/frames/153682/first.jpg", "AURORA/data/something/frames/153682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white book marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111264", "images": ["AURORA/data/something/frames/107878/first.jpg", "AURORA/data/something/frames/107878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111265", "images": ["AURORA/data/something/frames/36858/first.jpg", "AURORA/data/something/frames/36858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000111266", "images": ["AURORA/data/something/frames/30133/first.jpg", "AURORA/data/something/frames/30133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying net in dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111267", "images": ["AURORA/data/something/frames/46363/first.jpg", "AURORA/data/something/frames/46363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting id card on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111268", "images": ["AURORA/data/something/frames/211992/first.jpg", "AURORA/data/something/frames/211992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping block onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111269", "images": ["AURORA/data/something/frames/210656/first.jpg", "AURORA/data/something/frames/210656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil away from a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111270", "images": ["AURORA/data/something/frames/123891/first.jpg", "AURORA/data/something/frames/123891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering eye of stove with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111271", "images": ["AURORA/data/something/frames/3571/first.jpg", "AURORA/data/something/frames/3571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111272", "images": ["AURORA/data/something/frames/205653/first.jpg", "AURORA/data/something/frames/205653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy in front of goggles"}, {"from": "gpt", "value": ""}]} +{"id": "000000111273", "images": ["AURORA/data/something/frames/133223/first.jpg", "AURORA/data/something/frames/133223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111274", "images": ["AURORA/data/something/frames/19680/first.jpg", "AURORA/data/something/frames/19680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red colour pen similar to other colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111275", "images": ["AURORA/data/something/frames/63680/first.jpg", "AURORA/data/something/frames/63680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pink water bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111276", "images": ["AURORA/data/something/frames/116311/first.jpg", "AURORA/data/something/frames/116311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pair of spectacles onto a dashboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000111277", "images": ["AURORA/data/something/frames/126356/first.jpg", "AURORA/data/something/frames/126356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wire into power bank"}, {"from": "gpt", "value": ""}]} +{"id": "000000111278", "images": ["AURORA/data/something/frames/195261/first.jpg", "AURORA/data/something/frames/195261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111279", "images": ["AURORA/data/something/frames/106798/first.jpg", "AURORA/data/something/frames/106798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111280", "images": ["AURORA/data/something/frames/146965/first.jpg", "AURORA/data/something/frames/146965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111281", "images": ["AURORA/data/something/frames/165861/first.jpg", "AURORA/data/something/frames/165861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering baby doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000111282", "images": ["AURORA/data/something/frames/188500/first.jpg", "AURORA/data/something/frames/188500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111283", "images": ["AURORA/data/something/frames/113826/first.jpg", "AURORA/data/something/frames/113826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111284", "images": ["AURORA/data/something/frames/172022/first.jpg", "AURORA/data/something/frames/172022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking rubber glow out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111285", "images": ["AURORA/data/something/frames/73442/first.jpg", "AURORA/data/something/frames/73442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111286", "images": ["AURORA/data/something/frames/164609/first.jpg", "AURORA/data/something/frames/164609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plushie with charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000111287", "images": ["AURORA/data/something/frames/56888/first.jpg", "AURORA/data/something/frames/56888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming generator set"}, {"from": "gpt", "value": ""}]} +{"id": "000000111288", "images": ["AURORA/data/something/frames/125282/first.jpg", "AURORA/data/something/frames/125282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111289", "images": ["AURORA/data/something/frames/13716/first.jpg", "AURORA/data/something/frames/13716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 notebooks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111290", "images": ["AURORA/data/something/frames/178987/first.jpg", "AURORA/data/something/frames/178987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting block with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111291", "images": ["AURORA/data/something/frames/195519/first.jpg", "AURORA/data/something/frames/195519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rocks on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111292", "images": ["AURORA/data/something/frames/190611/first.jpg", "AURORA/data/something/frames/190611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote off of coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111293", "images": ["AURORA/data/something/frames/114204/first.jpg", "AURORA/data/something/frames/114204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bolt away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111294", "images": ["AURORA/data/something/frames/185287/first.jpg", "AURORA/data/something/frames/185287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111295", "images": ["AURORA/data/something/frames/168244/first.jpg", "AURORA/data/something/frames/168244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000111296", "images": ["AURORA/data/something/frames/42272/first.jpg", "AURORA/data/something/frames/42272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111297", "images": ["AURORA/data/something/frames/178364/first.jpg", "AURORA/data/something/frames/178364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111298", "images": ["AURORA/data/something/frames/198200/first.jpg", "AURORA/data/something/frames/198200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111299", "images": ["AURORA/data/something/frames/91387/first.jpg", "AURORA/data/something/frames/91387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hammer with sponge on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111300", "images": ["AURORA/data/something/frames/133407/first.jpg", "AURORA/data/something/frames/133407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of rectangular box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111301", "images": ["AURORA/data/something/frames/148038/first.jpg", "AURORA/data/something/frames/148038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111302", "images": ["AURORA/data/something/frames/94525/first.jpg", "AURORA/data/something/frames/94525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111303", "images": ["AURORA/data/something/frames/142863/first.jpg", "AURORA/data/something/frames/142863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling game console from behind of carry case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111304", "images": ["AURORA/data/something/frames/160229/first.jpg", "AURORA/data/something/frames/160229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111305", "images": ["AURORA/data/something/frames/78455/first.jpg", "AURORA/data/something/frames/78455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange notebook from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111306", "images": ["AURORA/data/something/frames/79242/first.jpg", "AURORA/data/something/frames/79242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111307", "images": ["AURORA/data/something/frames/95143/first.jpg", "AURORA/data/something/frames/95143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chop stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111308", "images": ["AURORA/data/something/frames/78438/first.jpg", "AURORA/data/something/frames/78438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a pickle jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111309", "images": ["AURORA/data/something/frames/196308/first.jpg", "AURORA/data/something/frames/196308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and book closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111310", "images": ["AURORA/data/something/frames/6968/first.jpg", "AURORA/data/something/frames/6968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green chalk towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111311", "images": ["AURORA/data/something/frames/103392/first.jpg", "AURORA/data/something/frames/103392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pencil into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111312", "images": ["AURORA/data/something/frames/85212/first.jpg", "AURORA/data/something/frames/85212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving star away from square"}, {"from": "gpt", "value": ""}]} +{"id": "000000111313", "images": ["AURORA/data/something/frames/12054/first.jpg", "AURORA/data/something/frames/12054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111314", "images": ["AURORA/data/something/frames/134888/first.jpg", "AURORA/data/something/frames/134888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111315", "images": ["AURORA/data/something/frames/65817/first.jpg", "AURORA/data/something/frames/65817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111316", "images": ["AURORA/data/something/frames/4522/first.jpg", "AURORA/data/something/frames/4522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111317", "images": ["AURORA/data/something/frames/86705/first.jpg", "AURORA/data/something/frames/86705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mouse mat with card on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111318", "images": ["AURORA/data/something/frames/15658/first.jpg", "AURORA/data/something/frames/15658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111319", "images": ["AURORA/data/something/frames/210603/first.jpg", "AURORA/data/something/frames/210603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111320", "images": ["AURORA/data/something/frames/152767/first.jpg", "AURORA/data/something/frames/152767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and wallet so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111321", "images": ["AURORA/data/something/frames/123289/first.jpg", "AURORA/data/something/frames/123289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling oil onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111322", "images": ["AURORA/data/something/frames/136072/first.jpg", "AURORA/data/something/frames/136072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111323", "images": ["AURORA/data/something/frames/18645/first.jpg", "AURORA/data/something/frames/18645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111324", "images": ["AURORA/data/something/frames/157798/first.jpg", "AURORA/data/something/frames/157798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume bottle behind hairclip"}, {"from": "gpt", "value": ""}]} +{"id": "000000111325", "images": ["AURORA/data/something/frames/18125/first.jpg", "AURORA/data/something/frames/18125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming slippers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111326", "images": ["AURORA/data/something/frames/190823/first.jpg", "AURORA/data/something/frames/190823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting knife with bowl on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111327", "images": ["AURORA/data/something/frames/36871/first.jpg", "AURORA/data/something/frames/36871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111328", "images": ["AURORA/data/something/frames/178515/first.jpg", "AURORA/data/something/frames/178515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a tupperware container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111329", "images": ["AURORA/data/something/frames/166678/first.jpg", "AURORA/data/something/frames/166678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111330", "images": ["AURORA/data/something/frames/64604/first.jpg", "AURORA/data/something/frames/64604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tape so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111331", "images": ["AURORA/data/something/frames/60125/first.jpg", "AURORA/data/something/frames/60125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a wallet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111332", "images": ["AURORA/data/something/frames/51138/first.jpg", "AURORA/data/something/frames/51138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding pillow case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111333", "images": ["AURORA/data/something/frames/207877/first.jpg", "AURORA/data/something/frames/207877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111334", "images": ["AURORA/data/something/frames/179557/first.jpg", "AURORA/data/something/frames/179557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a pen cap to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111335", "images": ["AURORA/data/something/frames/162605/first.jpg", "AURORA/data/something/frames/162605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111336", "images": ["AURORA/data/something/frames/24441/first.jpg", "AURORA/data/something/frames/24441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111337", "images": ["AURORA/data/something/frames/84417/first.jpg", "AURORA/data/something/frames/84417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111338", "images": ["AURORA/data/something/frames/24300/first.jpg", "AURORA/data/something/frames/24300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet box with red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111339", "images": ["AURORA/data/something/frames/59277/first.jpg", "AURORA/data/something/frames/59277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) case of a mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111340", "images": ["AURORA/data/something/frames/132691/first.jpg", "AURORA/data/something/frames/132691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paperboard with a wallet on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111341", "images": ["AURORA/data/something/frames/106999/first.jpg", "AURORA/data/something/frames/106999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a wooden block into a soft lunchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000111342", "images": ["AURORA/data/something/frames/86300/first.jpg", "AURORA/data/something/frames/86300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting medicine bottle upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111343", "images": ["AURORA/data/something/frames/218413/first.jpg", "AURORA/data/something/frames/218413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111344", "images": ["AURORA/data/something/frames/203322/first.jpg", "AURORA/data/something/frames/203322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111345", "images": ["AURORA/data/something/frames/197103/first.jpg", "AURORA/data/something/frames/197103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111346", "images": ["AURORA/data/something/frames/185083/first.jpg", "AURORA/data/something/frames/185083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111347", "images": ["AURORA/data/something/frames/47038/first.jpg", "AURORA/data/something/frames/47038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111348", "images": ["AURORA/data/something/frames/172490/first.jpg", "AURORA/data/something/frames/172490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111349", "images": ["AURORA/data/something/frames/22417/first.jpg", "AURORA/data/something/frames/22417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering marker with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111350", "images": ["AURORA/data/something/frames/116638/first.jpg", "AURORA/data/something/frames/116638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a charger onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111351", "images": ["AURORA/data/something/frames/165710/first.jpg", "AURORA/data/something/frames/165710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111352", "images": ["AURORA/data/something/frames/3385/first.jpg", "AURORA/data/something/frames/3385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111353", "images": ["AURORA/data/something/frames/57315/first.jpg", "AURORA/data/something/frames/57315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111354", "images": ["AURORA/data/something/frames/214520/first.jpg", "AURORA/data/something/frames/214520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting necklace next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000111355", "images": ["AURORA/data/something/frames/6460/first.jpg", "AURORA/data/something/frames/6460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one coin of many similar coins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111356", "images": ["AURORA/data/something/frames/103001/first.jpg", "AURORA/data/something/frames/103001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster with coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111357", "images": ["AURORA/data/something/frames/218050/first.jpg", "AURORA/data/something/frames/218050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding one dollar bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000111358", "images": ["AURORA/data/something/frames/5730/first.jpg", "AURORA/data/something/frames/5730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111359", "images": ["AURORA/data/something/frames/71222/first.jpg", "AURORA/data/something/frames/71222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111360", "images": ["AURORA/data/something/frames/205253/first.jpg", "AURORA/data/something/frames/205253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tube of toothpaste in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000111361", "images": ["AURORA/data/something/frames/48744/first.jpg", "AURORA/data/something/frames/48744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000111362", "images": ["AURORA/data/something/frames/105509/first.jpg", "AURORA/data/something/frames/105509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111363", "images": ["AURORA/data/something/frames/7158/first.jpg", "AURORA/data/something/frames/7158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111364", "images": ["AURORA/data/something/frames/142617/first.jpg", "AURORA/data/something/frames/142617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping leaves off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111365", "images": ["AURORA/data/something/frames/200378/first.jpg", "AURORA/data/something/frames/200378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashdrive next to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111366", "images": ["AURORA/data/something/frames/84327/first.jpg", "AURORA/data/something/frames/84327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111367", "images": ["AURORA/data/something/frames/1657/first.jpg", "AURORA/data/something/frames/1657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000111368", "images": ["AURORA/data/something/frames/162068/first.jpg", "AURORA/data/something/frames/162068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111369", "images": ["AURORA/data/something/frames/182579/first.jpg", "AURORA/data/something/frames/182579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair with my hands"}, {"from": "gpt", "value": ""}]} +{"id": "000000111370", "images": ["AURORA/data/something/frames/138709/first.jpg", "AURORA/data/something/frames/138709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chip clip, chip clip and chocolate on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111371", "images": ["AURORA/data/something/frames/24327/first.jpg", "AURORA/data/something/frames/24327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping torch in front of shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111372", "images": ["AURORA/data/something/frames/210319/first.jpg", "AURORA/data/something/frames/210319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving music player up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111373", "images": ["AURORA/data/something/frames/113913/first.jpg", "AURORA/data/something/frames/113913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic twist tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000111374", "images": ["AURORA/data/something/frames/123684/first.jpg", "AURORA/data/something/frames/123684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sandals with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111375", "images": ["AURORA/data/something/frames/109636/first.jpg", "AURORA/data/something/frames/109636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a kettle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111376", "images": ["AURORA/data/something/frames/87386/first.jpg", "AURORA/data/something/frames/87386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lipstick so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111377", "images": ["AURORA/data/something/frames/160955/first.jpg", "AURORA/data/something/frames/160955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving razor up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111378", "images": ["AURORA/data/something/frames/85924/first.jpg", "AURORA/data/something/frames/85924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111379", "images": ["AURORA/data/something/frames/210649/first.jpg", "AURORA/data/something/frames/210649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush in front of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111380", "images": ["AURORA/data/something/frames/173576/first.jpg", "AURORA/data/something/frames/173576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 books on 3"}, {"from": "gpt", "value": ""}]} +{"id": "000000111381", "images": ["AURORA/data/something/frames/192585/first.jpg", "AURORA/data/something/frames/192585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tennis ball into its plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111382", "images": ["AURORA/data/something/frames/13037/first.jpg", "AURORA/data/something/frames/13037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lens closer to camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111383", "images": ["AURORA/data/something/frames/38331/first.jpg", "AURORA/data/something/frames/38331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111384", "images": ["AURORA/data/something/frames/77332/first.jpg", "AURORA/data/something/frames/77332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending notebook so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111385", "images": ["AURORA/data/something/frames/28237/first.jpg", "AURORA/data/something/frames/28237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair tie so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111386", "images": ["AURORA/data/something/frames/45172/first.jpg", "AURORA/data/something/frames/45172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting teddy with remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000111387", "images": ["AURORA/data/something/frames/62735/first.jpg", "AURORA/data/something/frames/62735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111388", "images": ["AURORA/data/something/frames/75866/first.jpg", "AURORA/data/something/frames/75866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111389", "images": ["AURORA/data/something/frames/97399/first.jpg", "AURORA/data/something/frames/97399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a dolar bill out of a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111390", "images": ["AURORA/data/something/frames/161099/first.jpg", "AURORA/data/something/frames/161099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping headphones onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111391", "images": ["AURORA/data/something/frames/149515/first.jpg", "AURORA/data/something/frames/149515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper, pen and rubber band on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111392", "images": ["AURORA/data/something/frames/30520/first.jpg", "AURORA/data/something/frames/30520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111393", "images": ["AURORA/data/something/frames/150672/first.jpg", "AURORA/data/something/frames/150672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111394", "images": ["AURORA/data/something/frames/80339/first.jpg", "AURORA/data/something/frames/80339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toothbrush from bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111395", "images": ["AURORA/data/something/frames/41873/first.jpg", "AURORA/data/something/frames/41873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111396", "images": ["AURORA/data/something/frames/217205/first.jpg", "AURORA/data/something/frames/217205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tomato up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111397", "images": ["AURORA/data/something/frames/132652/first.jpg", "AURORA/data/something/frames/132652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111398", "images": ["AURORA/data/something/frames/55484/first.jpg", "AURORA/data/something/frames/55484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111399", "images": ["AURORA/data/something/frames/147929/first.jpg", "AURORA/data/something/frames/147929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block and toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111400", "images": ["AURORA/data/something/frames/18445/first.jpg", "AURORA/data/something/frames/18445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111401", "images": ["AURORA/data/something/frames/210621/first.jpg", "AURORA/data/something/frames/210621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sandwich into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111402", "images": ["AURORA/data/something/frames/211903/first.jpg", "AURORA/data/something/frames/211903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000111403", "images": ["AURORA/data/something/frames/102540/first.jpg", "AURORA/data/something/frames/102540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111404", "images": ["AURORA/data/something/frames/14077/first.jpg", "AURORA/data/something/frames/14077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111405", "images": ["AURORA/data/something/frames/106833/first.jpg", "AURORA/data/something/frames/106833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book behind a screen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111406", "images": ["AURORA/data/something/frames/62486/first.jpg", "AURORA/data/something/frames/62486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking matchstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111407", "images": ["AURORA/data/something/frames/43695/first.jpg", "AURORA/data/something/frames/43695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111408", "images": ["AURORA/data/something/frames/19764/first.jpg", "AURORA/data/something/frames/19764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming jeep"}, {"from": "gpt", "value": ""}]} +{"id": "000000111409", "images": ["AURORA/data/something/frames/180485/first.jpg", "AURORA/data/something/frames/180485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111410", "images": ["AURORA/data/something/frames/36824/first.jpg", "AURORA/data/something/frames/36824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping water up with mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111411", "images": ["AURORA/data/something/frames/187399/first.jpg", "AURORA/data/something/frames/187399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111412", "images": ["AURORA/data/something/frames/74525/first.jpg", "AURORA/data/something/frames/74525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111413", "images": ["AURORA/data/something/frames/187928/first.jpg", "AURORA/data/something/frames/187928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111414", "images": ["AURORA/data/something/frames/214597/first.jpg", "AURORA/data/something/frames/214597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111415", "images": ["AURORA/data/something/frames/207835/first.jpg", "AURORA/data/something/frames/207835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening stove oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000111416", "images": ["AURORA/data/something/frames/136817/first.jpg", "AURORA/data/something/frames/136817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000111417", "images": ["AURORA/data/something/frames/37252/first.jpg", "AURORA/data/something/frames/37252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling turmeric behind hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111418", "images": ["AURORA/data/something/frames/94982/first.jpg", "AURORA/data/something/frames/94982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111419", "images": ["AURORA/data/something/frames/10353/first.jpg", "AURORA/data/something/frames/10353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tube behind bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000111420", "images": ["AURORA/data/something/frames/38642/first.jpg", "AURORA/data/something/frames/38642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stuffed toy out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111421", "images": ["AURORA/data/something/frames/90320/first.jpg", "AURORA/data/something/frames/90320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a flower pot from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111422", "images": ["AURORA/data/something/frames/58832/first.jpg", "AURORA/data/something/frames/58832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111423", "images": ["AURORA/data/something/frames/175920/first.jpg", "AURORA/data/something/frames/175920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111424", "images": ["AURORA/data/something/frames/186512/first.jpg", "AURORA/data/something/frames/186512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking green toy car up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111425", "images": ["AURORA/data/something/frames/87101/first.jpg", "AURORA/data/something/frames/87101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111426", "images": ["AURORA/data/something/frames/17494/first.jpg", "AURORA/data/something/frames/17494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from shampoo bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111427", "images": ["AURORA/data/something/frames/20636/first.jpg", "AURORA/data/something/frames/20636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cotton rounds over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111428", "images": ["AURORA/data/something/frames/174387/first.jpg", "AURORA/data/something/frames/174387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup of soda so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111429", "images": ["AURORA/data/something/frames/67808/first.jpg", "AURORA/data/something/frames/67808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toothpaste tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111430", "images": ["AURORA/data/something/frames/179265/first.jpg", "AURORA/data/something/frames/179265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111431", "images": ["AURORA/data/something/frames/171592/first.jpg", "AURORA/data/something/frames/171592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111432", "images": ["AURORA/data/something/frames/207966/first.jpg", "AURORA/data/something/frames/207966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111433", "images": ["AURORA/data/something/frames/93756/first.jpg", "AURORA/data/something/frames/93756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111434", "images": ["AURORA/data/something/frames/129077/first.jpg", "AURORA/data/something/frames/129077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111435", "images": ["AURORA/data/something/frames/113792/first.jpg", "AURORA/data/something/frames/113792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111436", "images": ["AURORA/data/something/frames/13704/first.jpg", "AURORA/data/something/frames/13704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111437", "images": ["AURORA/data/something/frames/207156/first.jpg", "AURORA/data/something/frames/207156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111438", "images": ["AURORA/data/something/frames/139074/first.jpg", "AURORA/data/something/frames/139074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111439", "images": ["AURORA/data/something/frames/195860/first.jpg", "AURORA/data/something/frames/195860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a badminton bat colliding with another bat and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111440", "images": ["AURORA/data/something/frames/207436/first.jpg", "AURORA/data/something/frames/207436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing leaflet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111441", "images": ["AURORA/data/something/frames/62750/first.jpg", "AURORA/data/something/frames/62750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111442", "images": ["AURORA/data/something/frames/195332/first.jpg", "AURORA/data/something/frames/195332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending an envolope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111443", "images": ["AURORA/data/something/frames/167384/first.jpg", "AURORA/data/something/frames/167384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111444", "images": ["AURORA/data/something/frames/219937/first.jpg", "AURORA/data/something/frames/219937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring boiling water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111445", "images": ["AURORA/data/something/frames/174735/first.jpg", "AURORA/data/something/frames/174735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111446", "images": ["AURORA/data/something/frames/2571/first.jpg", "AURORA/data/something/frames/2571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stamps, perfume and a pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111447", "images": ["AURORA/data/something/frames/132470/first.jpg", "AURORA/data/something/frames/132470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking laundry pods so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111448", "images": ["AURORA/data/something/frames/104531/first.jpg", "AURORA/data/something/frames/104531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pencil with cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111449", "images": ["AURORA/data/something/frames/3881/first.jpg", "AURORA/data/something/frames/3881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111450", "images": ["AURORA/data/something/frames/118897/first.jpg", "AURORA/data/something/frames/118897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111451", "images": ["AURORA/data/something/frames/9235/first.jpg", "AURORA/data/something/frames/9235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111452", "images": ["AURORA/data/something/frames/133353/first.jpg", "AURORA/data/something/frames/133353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bangle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111453", "images": ["AURORA/data/something/frames/45193/first.jpg", "AURORA/data/something/frames/45193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book of other books"}, {"from": "gpt", "value": ""}]} +{"id": "000000111454", "images": ["AURORA/data/something/frames/61754/first.jpg", "AURORA/data/something/frames/61754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111455", "images": ["AURORA/data/something/frames/149740/first.jpg", "AURORA/data/something/frames/149740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a little box next to the bread packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111456", "images": ["AURORA/data/something/frames/83569/first.jpg", "AURORA/data/something/frames/83569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111457", "images": ["AURORA/data/something/frames/32690/first.jpg", "AURORA/data/something/frames/32690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cufflinks onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000111458", "images": ["AURORA/data/something/frames/30427/first.jpg", "AURORA/data/something/frames/30427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a wrist watch on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111459", "images": ["AURORA/data/something/frames/171933/first.jpg", "AURORA/data/something/frames/171933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling vasmol bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111460", "images": ["AURORA/data/something/frames/43946/first.jpg", "AURORA/data/something/frames/43946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111461", "images": ["AURORA/data/something/frames/91990/first.jpg", "AURORA/data/something/frames/91990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil into stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000111462", "images": ["AURORA/data/something/frames/124693/first.jpg", "AURORA/data/something/frames/124693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending (opening) closed book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111463", "images": ["AURORA/data/something/frames/127394/first.jpg", "AURORA/data/something/frames/127394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking remote control up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111464", "images": ["AURORA/data/something/frames/21181/first.jpg", "AURORA/data/something/frames/21181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristband down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111465", "images": ["AURORA/data/something/frames/37890/first.jpg", "AURORA/data/something/frames/37890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing a piece of paper just a little bit just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111466", "images": ["AURORA/data/something/frames/167706/first.jpg", "AURORA/data/something/frames/167706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thread and cell phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111467", "images": ["AURORA/data/something/frames/144160/first.jpg", "AURORA/data/something/frames/144160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving belt up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111468", "images": ["AURORA/data/something/frames/49772/first.jpg", "AURORA/data/something/frames/49772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111469", "images": ["AURORA/data/something/frames/118439/first.jpg", "AURORA/data/something/frames/118439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111470", "images": ["AURORA/data/something/frames/15589/first.jpg", "AURORA/data/something/frames/15589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing white hand gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111471", "images": ["AURORA/data/something/frames/114686/first.jpg", "AURORA/data/something/frames/114686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mp3 across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111472", "images": ["AURORA/data/something/frames/25335/first.jpg", "AURORA/data/something/frames/25335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111473", "images": ["AURORA/data/something/frames/199953/first.jpg", "AURORA/data/something/frames/199953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black hair tie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111474", "images": ["AURORA/data/something/frames/137843/first.jpg", "AURORA/data/something/frames/137843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111475", "images": ["AURORA/data/something/frames/186986/first.jpg", "AURORA/data/something/frames/186986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111476", "images": ["AURORA/data/something/frames/59587/first.jpg", "AURORA/data/something/frames/59587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111477", "images": ["AURORA/data/something/frames/191702/first.jpg", "AURORA/data/something/frames/191702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing clothes peg behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111478", "images": ["AURORA/data/something/frames/55356/first.jpg", "AURORA/data/something/frames/55356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111479", "images": ["AURORA/data/something/frames/117030/first.jpg", "AURORA/data/something/frames/117030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111480", "images": ["AURORA/data/something/frames/68006/first.jpg", "AURORA/data/something/frames/68006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can next to beer mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111481", "images": ["AURORA/data/something/frames/780/first.jpg", "AURORA/data/something/frames/780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a lamp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111482", "images": ["AURORA/data/something/frames/164001/first.jpg", "AURORA/data/something/frames/164001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking box from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111483", "images": ["AURORA/data/something/frames/215403/first.jpg", "AURORA/data/something/frames/215403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111484", "images": ["AURORA/data/something/frames/48290/first.jpg", "AURORA/data/something/frames/48290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000111485", "images": ["AURORA/data/something/frames/64058/first.jpg", "AURORA/data/something/frames/64058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a clip so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111486", "images": ["AURORA/data/something/frames/203770/first.jpg", "AURORA/data/something/frames/203770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering striker coin with blue spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111487", "images": ["AURORA/data/something/frames/44815/first.jpg", "AURORA/data/something/frames/44815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111488", "images": ["AURORA/data/something/frames/127151/first.jpg", "AURORA/data/something/frames/127151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bailer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111489", "images": ["AURORA/data/something/frames/204628/first.jpg", "AURORA/data/something/frames/204628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a ribbon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111490", "images": ["AURORA/data/something/frames/174913/first.jpg", "AURORA/data/something/frames/174913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111491", "images": ["AURORA/data/something/frames/94935/first.jpg", "AURORA/data/something/frames/94935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111492", "images": ["AURORA/data/something/frames/219858/first.jpg", "AURORA/data/something/frames/219858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing nail clipper into rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000111493", "images": ["AURORA/data/something/frames/16445/first.jpg", "AURORA/data/something/frames/16445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching stone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111494", "images": ["AURORA/data/something/frames/106337/first.jpg", "AURORA/data/something/frames/106337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sugar into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111495", "images": ["AURORA/data/something/frames/65607/first.jpg", "AURORA/data/something/frames/65607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111496", "images": ["AURORA/data/something/frames/157238/first.jpg", "AURORA/data/something/frames/157238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a jbl, revealing a card behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111497", "images": ["AURORA/data/something/frames/48360/first.jpg", "AURORA/data/something/frames/48360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote closer to the mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111498", "images": ["AURORA/data/something/frames/161008/first.jpg", "AURORA/data/something/frames/161008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111499", "images": ["AURORA/data/something/frames/193937/first.jpg", "AURORA/data/something/frames/193937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111500", "images": ["AURORA/data/something/frames/182296/first.jpg", "AURORA/data/something/frames/182296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111501", "images": ["AURORA/data/something/frames/171983/first.jpg", "AURORA/data/something/frames/171983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending can so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111502", "images": ["AURORA/data/something/frames/47392/first.jpg", "AURORA/data/something/frames/47392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111503", "images": ["AURORA/data/something/frames/163401/first.jpg", "AURORA/data/something/frames/163401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring pasta into trophy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111504", "images": ["AURORA/data/something/frames/39249/first.jpg", "AURORA/data/something/frames/39249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a coaster with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111505", "images": ["AURORA/data/something/frames/43631/first.jpg", "AURORA/data/something/frames/43631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing eggs so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111506", "images": ["AURORA/data/something/frames/58664/first.jpg", "AURORA/data/something/frames/58664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a coffee cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111507", "images": ["AURORA/data/something/frames/193791/first.jpg", "AURORA/data/something/frames/193791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling chocolate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111508", "images": ["AURORA/data/something/frames/19730/first.jpg", "AURORA/data/something/frames/19730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener underneath calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000111509", "images": ["AURORA/data/something/frames/193177/first.jpg", "AURORA/data/something/frames/193177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb stick into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111510", "images": ["AURORA/data/something/frames/92505/first.jpg", "AURORA/data/something/frames/92505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111511", "images": ["AURORA/data/something/frames/36900/first.jpg", "AURORA/data/something/frames/36900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111512", "images": ["AURORA/data/something/frames/68841/first.jpg", "AURORA/data/something/frames/68841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111513", "images": ["AURORA/data/something/frames/166093/first.jpg", "AURORA/data/something/frames/166093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking something so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111514", "images": ["AURORA/data/something/frames/22518/first.jpg", "AURORA/data/something/frames/22518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111515", "images": ["AURORA/data/something/frames/30393/first.jpg", "AURORA/data/something/frames/30393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000111516", "images": ["AURORA/data/something/frames/86780/first.jpg", "AURORA/data/something/frames/86780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111517", "images": ["AURORA/data/something/frames/83167/first.jpg", "AURORA/data/something/frames/83167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy mouse and block away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111518", "images": ["AURORA/data/something/frames/1286/first.jpg", "AURORA/data/something/frames/1286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111519", "images": ["AURORA/data/something/frames/127033/first.jpg", "AURORA/data/something/frames/127033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spatula out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111520", "images": ["AURORA/data/something/frames/26925/first.jpg", "AURORA/data/something/frames/26925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming brown case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111521", "images": ["AURORA/data/something/frames/58205/first.jpg", "AURORA/data/something/frames/58205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111522", "images": ["AURORA/data/something/frames/211294/first.jpg", "AURORA/data/something/frames/211294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping carton box onto plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111523", "images": ["AURORA/data/something/frames/156718/first.jpg", "AURORA/data/something/frames/156718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker and marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111524", "images": ["AURORA/data/something/frames/220337/first.jpg", "AURORA/data/something/frames/220337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a comb away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111525", "images": ["AURORA/data/something/frames/41499/first.jpg", "AURORA/data/something/frames/41499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wrist watch upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111526", "images": ["AURORA/data/something/frames/86175/first.jpg", "AURORA/data/something/frames/86175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111527", "images": ["AURORA/data/something/frames/135258/first.jpg", "AURORA/data/something/frames/135258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a figurine so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111528", "images": ["AURORA/data/something/frames/158554/first.jpg", "AURORA/data/something/frames/158554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111529", "images": ["AURORA/data/something/frames/154377/first.jpg", "AURORA/data/something/frames/154377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111530", "images": ["AURORA/data/something/frames/100085/first.jpg", "AURORA/data/something/frames/100085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping envelope next to hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111531", "images": ["AURORA/data/something/frames/104313/first.jpg", "AURORA/data/something/frames/104313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111532", "images": ["AURORA/data/something/frames/12027/first.jpg", "AURORA/data/something/frames/12027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candlestick away from candlestick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111533", "images": ["AURORA/data/something/frames/21773/first.jpg", "AURORA/data/something/frames/21773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111534", "images": ["AURORA/data/something/frames/44938/first.jpg", "AURORA/data/something/frames/44938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cookies box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111535", "images": ["AURORA/data/something/frames/169189/first.jpg", "AURORA/data/something/frames/169189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white colour marker pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111536", "images": ["AURORA/data/something/frames/38281/first.jpg", "AURORA/data/something/frames/38281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111537", "images": ["AURORA/data/something/frames/48944/first.jpg", "AURORA/data/something/frames/48944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting face wash upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111538", "images": ["AURORA/data/something/frames/140171/first.jpg", "AURORA/data/something/frames/140171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111539", "images": ["AURORA/data/something/frames/150756/first.jpg", "AURORA/data/something/frames/150756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a placemat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111540", "images": ["AURORA/data/something/frames/40726/first.jpg", "AURORA/data/something/frames/40726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cable into cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111541", "images": ["AURORA/data/something/frames/195308/first.jpg", "AURORA/data/something/frames/195308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging inlet into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111542", "images": ["AURORA/data/something/frames/1234/first.jpg", "AURORA/data/something/frames/1234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a sock so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111543", "images": ["AURORA/data/something/frames/93809/first.jpg", "AURORA/data/something/frames/93809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming baby diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111544", "images": ["AURORA/data/something/frames/128055/first.jpg", "AURORA/data/something/frames/128055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting limon into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111545", "images": ["AURORA/data/something/frames/134413/first.jpg", "AURORA/data/something/frames/134413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering scissors with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000111546", "images": ["AURORA/data/something/frames/5822/first.jpg", "AURORA/data/something/frames/5822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111547", "images": ["AURORA/data/something/frames/136480/first.jpg", "AURORA/data/something/frames/136480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering dice"}, {"from": "gpt", "value": ""}]} +{"id": "000000111548", "images": ["AURORA/data/something/frames/211356/first.jpg", "AURORA/data/something/frames/211356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111549", "images": ["AURORA/data/something/frames/122022/first.jpg", "AURORA/data/something/frames/122022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111550", "images": ["AURORA/data/something/frames/123131/first.jpg", "AURORA/data/something/frames/123131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000111551", "images": ["AURORA/data/something/frames/95946/first.jpg", "AURORA/data/something/frames/95946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a basket with a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000111552", "images": ["AURORA/data/something/frames/194537/first.jpg", "AURORA/data/something/frames/194537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching mobile charger to plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111553", "images": ["AURORA/data/something/frames/188056/first.jpg", "AURORA/data/something/frames/188056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111554", "images": ["AURORA/data/something/frames/213838/first.jpg", "AURORA/data/something/frames/213838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car, small tin and baloon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111555", "images": ["AURORA/data/something/frames/125394/first.jpg", "AURORA/data/something/frames/125394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111556", "images": ["AURORA/data/something/frames/11080/first.jpg", "AURORA/data/something/frames/11080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rice up with a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111557", "images": ["AURORA/data/something/frames/218511/first.jpg", "AURORA/data/something/frames/218511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a folder on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111558", "images": ["AURORA/data/something/frames/114334/first.jpg", "AURORA/data/something/frames/114334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting onion into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111559", "images": ["AURORA/data/something/frames/107715/first.jpg", "AURORA/data/something/frames/107715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming kitchen platform"}, {"from": "gpt", "value": ""}]} +{"id": "000000111560", "images": ["AURORA/data/something/frames/80502/first.jpg", "AURORA/data/something/frames/80502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb away from basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111561", "images": ["AURORA/data/something/frames/49434/first.jpg", "AURORA/data/something/frames/49434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111562", "images": ["AURORA/data/something/frames/115452/first.jpg", "AURORA/data/something/frames/115452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a clip to a bag of sugar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111563", "images": ["AURORA/data/something/frames/97360/first.jpg", "AURORA/data/something/frames/97360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111564", "images": ["AURORA/data/something/frames/5423/first.jpg", "AURORA/data/something/frames/5423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111565", "images": ["AURORA/data/something/frames/96542/first.jpg", "AURORA/data/something/frames/96542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111566", "images": ["AURORA/data/something/frames/23132/first.jpg", "AURORA/data/something/frames/23132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing smarthphone with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111567", "images": ["AURORA/data/something/frames/73968/first.jpg", "AURORA/data/something/frames/73968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111568", "images": ["AURORA/data/something/frames/143969/first.jpg", "AURORA/data/something/frames/143969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening red dairy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111569", "images": ["AURORA/data/something/frames/190339/first.jpg", "AURORA/data/something/frames/190339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a shoe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111570", "images": ["AURORA/data/something/frames/61114/first.jpg", "AURORA/data/something/frames/61114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bag upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111571", "images": ["AURORA/data/something/frames/94754/first.jpg", "AURORA/data/something/frames/94754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000111572", "images": ["AURORA/data/something/frames/54431/first.jpg", "AURORA/data/something/frames/54431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming elephant statue"}, {"from": "gpt", "value": ""}]} +{"id": "000000111573", "images": ["AURORA/data/something/frames/32313/first.jpg", "AURORA/data/something/frames/32313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111574", "images": ["AURORA/data/something/frames/115429/first.jpg", "AURORA/data/something/frames/115429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111575", "images": ["AURORA/data/something/frames/209940/first.jpg", "AURORA/data/something/frames/209940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111576", "images": ["AURORA/data/something/frames/116685/first.jpg", "AURORA/data/something/frames/116685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting paper punch with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111577", "images": ["AURORA/data/something/frames/162644/first.jpg", "AURORA/data/something/frames/162644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) something wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111578", "images": ["AURORA/data/something/frames/113316/first.jpg", "AURORA/data/something/frames/113316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111579", "images": ["AURORA/data/something/frames/209678/first.jpg", "AURORA/data/something/frames/209678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111580", "images": ["AURORA/data/something/frames/20800/first.jpg", "AURORA/data/something/frames/20800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing almara"}, {"from": "gpt", "value": ""}]} +{"id": "000000111581", "images": ["AURORA/data/something/frames/35824/first.jpg", "AURORA/data/something/frames/35824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111582", "images": ["AURORA/data/something/frames/91096/first.jpg", "AURORA/data/something/frames/91096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hand cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111583", "images": ["AURORA/data/something/frames/204176/first.jpg", "AURORA/data/something/frames/204176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plastic casing colliding with plastic cover and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111584", "images": ["AURORA/data/something/frames/89034/first.jpg", "AURORA/data/something/frames/89034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111585", "images": ["AURORA/data/something/frames/101669/first.jpg", "AURORA/data/something/frames/101669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping grape into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111586", "images": ["AURORA/data/something/frames/156825/first.jpg", "AURORA/data/something/frames/156825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111587", "images": ["AURORA/data/something/frames/132699/first.jpg", "AURORA/data/something/frames/132699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from computer screen with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111588", "images": ["AURORA/data/something/frames/200763/first.jpg", "AURORA/data/something/frames/200763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and usb cable away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111589", "images": ["AURORA/data/something/frames/208509/first.jpg", "AURORA/data/something/frames/208509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into paper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111590", "images": ["AURORA/data/something/frames/134085/first.jpg", "AURORA/data/something/frames/134085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small stone and large stone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111591", "images": ["AURORA/data/something/frames/187359/first.jpg", "AURORA/data/something/frames/187359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pennies on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111592", "images": ["AURORA/data/something/frames/39852/first.jpg", "AURORA/data/something/frames/39852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111593", "images": ["AURORA/data/something/frames/143821/first.jpg", "AURORA/data/something/frames/143821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111594", "images": ["AURORA/data/something/frames/105544/first.jpg", "AURORA/data/something/frames/105544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a banana on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111595", "images": ["AURORA/data/something/frames/218487/first.jpg", "AURORA/data/something/frames/218487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle with figurine"}, {"from": "gpt", "value": ""}]} +{"id": "000000111596", "images": ["AURORA/data/something/frames/218162/first.jpg", "AURORA/data/something/frames/218162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) wheat of plate wheat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111597", "images": ["AURORA/data/something/frames/49823/first.jpg", "AURORA/data/something/frames/49823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111598", "images": ["AURORA/data/something/frames/51630/first.jpg", "AURORA/data/something/frames/51630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glass with spoon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111599", "images": ["AURORA/data/something/frames/186413/first.jpg", "AURORA/data/something/frames/186413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111600", "images": ["AURORA/data/something/frames/56771/first.jpg", "AURORA/data/something/frames/56771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, pen and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111601", "images": ["AURORA/data/something/frames/116401/first.jpg", "AURORA/data/something/frames/116401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teabag into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111602", "images": ["AURORA/data/something/frames/182258/first.jpg", "AURORA/data/something/frames/182258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking comb from window sill"}, {"from": "gpt", "value": ""}]} +{"id": "000000111603", "images": ["AURORA/data/something/frames/157721/first.jpg", "AURORA/data/something/frames/157721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: block being deflected from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000111604", "images": ["AURORA/data/something/frames/206242/first.jpg", "AURORA/data/something/frames/206242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking an apple so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111605", "images": ["AURORA/data/something/frames/83120/first.jpg", "AURORA/data/something/frames/83120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pod out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111606", "images": ["AURORA/data/something/frames/188339/first.jpg", "AURORA/data/something/frames/188339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening card folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111607", "images": ["AURORA/data/something/frames/76344/first.jpg", "AURORA/data/something/frames/76344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power board but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111608", "images": ["AURORA/data/something/frames/146294/first.jpg", "AURORA/data/something/frames/146294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111609", "images": ["AURORA/data/something/frames/4941/first.jpg", "AURORA/data/something/frames/4941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tennis ball behind cd stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000111610", "images": ["AURORA/data/something/frames/129897/first.jpg", "AURORA/data/something/frames/129897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting package on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111611", "images": ["AURORA/data/something/frames/80533/first.jpg", "AURORA/data/something/frames/80533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing small box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111612", "images": ["AURORA/data/something/frames/202213/first.jpg", "AURORA/data/something/frames/202213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111613", "images": ["AURORA/data/something/frames/199173/first.jpg", "AURORA/data/something/frames/199173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of water on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111614", "images": ["AURORA/data/something/frames/65274/first.jpg", "AURORA/data/something/frames/65274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 spanners onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000111615", "images": ["AURORA/data/something/frames/25340/first.jpg", "AURORA/data/something/frames/25340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111616", "images": ["AURORA/data/something/frames/170631/first.jpg", "AURORA/data/something/frames/170631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a mug out of a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111617", "images": ["AURORA/data/something/frames/58144/first.jpg", "AURORA/data/something/frames/58144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a straw into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111618", "images": ["AURORA/data/something/frames/31317/first.jpg", "AURORA/data/something/frames/31317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a glass so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111619", "images": ["AURORA/data/something/frames/175678/first.jpg", "AURORA/data/something/frames/175678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet in front of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111620", "images": ["AURORA/data/something/frames/212276/first.jpg", "AURORA/data/something/frames/212276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111621", "images": ["AURORA/data/something/frames/118689/first.jpg", "AURORA/data/something/frames/118689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a camera lens upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111622", "images": ["AURORA/data/something/frames/95424/first.jpg", "AURORA/data/something/frames/95424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding plastic"}, {"from": "gpt", "value": ""}]} +{"id": "000000111623", "images": ["AURORA/data/something/frames/165434/first.jpg", "AURORA/data/something/frames/165434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a puzzle cube with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111624", "images": ["AURORA/data/something/frames/133644/first.jpg", "AURORA/data/something/frames/133644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing box into christmas stocking"}, {"from": "gpt", "value": ""}]} +{"id": "000000111625", "images": ["AURORA/data/something/frames/198536/first.jpg", "AURORA/data/something/frames/198536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into can"}, {"from": "gpt", "value": ""}]} +{"id": "000000111626", "images": ["AURORA/data/something/frames/156853/first.jpg", "AURORA/data/something/frames/156853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking eyeglasses out of eyeglass case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111627", "images": ["AURORA/data/something/frames/97810/first.jpg", "AURORA/data/something/frames/97810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111628", "images": ["AURORA/data/something/frames/67822/first.jpg", "AURORA/data/something/frames/67822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming swiffer sweeper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111629", "images": ["AURORA/data/something/frames/204864/first.jpg", "AURORA/data/something/frames/204864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming person"}, {"from": "gpt", "value": ""}]} +{"id": "000000111630", "images": ["AURORA/data/something/frames/198712/first.jpg", "AURORA/data/something/frames/198712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass and highlighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111631", "images": ["AURORA/data/something/frames/35432/first.jpg", "AURORA/data/something/frames/35432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111632", "images": ["AURORA/data/something/frames/170820/first.jpg", "AURORA/data/something/frames/170820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending lamp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111633", "images": ["AURORA/data/something/frames/129736/first.jpg", "AURORA/data/something/frames/129736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoulder straps"}, {"from": "gpt", "value": ""}]} +{"id": "000000111634", "images": ["AURORA/data/something/frames/10869/first.jpg", "AURORA/data/something/frames/10869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor closer to pick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111635", "images": ["AURORA/data/something/frames/7519/first.jpg", "AURORA/data/something/frames/7519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111636", "images": ["AURORA/data/something/frames/106070/first.jpg", "AURORA/data/something/frames/106070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling plug out of socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111637", "images": ["AURORA/data/something/frames/12560/first.jpg", "AURORA/data/something/frames/12560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000111638", "images": ["AURORA/data/something/frames/144885/first.jpg", "AURORA/data/something/frames/144885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000111639", "images": ["AURORA/data/something/frames/129678/first.jpg", "AURORA/data/something/frames/129678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel closer to towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111640", "images": ["AURORA/data/something/frames/110353/first.jpg", "AURORA/data/something/frames/110353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with highlighter on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111641", "images": ["AURORA/data/something/frames/50260/first.jpg", "AURORA/data/something/frames/50260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lipstick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111642", "images": ["AURORA/data/something/frames/136214/first.jpg", "AURORA/data/something/frames/136214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle next to plantpot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111643", "images": ["AURORA/data/something/frames/62085/first.jpg", "AURORA/data/something/frames/62085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a matchbox closer to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000111644", "images": ["AURORA/data/something/frames/205364/first.jpg", "AURORA/data/something/frames/205364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111645", "images": ["AURORA/data/something/frames/123799/first.jpg", "AURORA/data/something/frames/123799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000111646", "images": ["AURORA/data/something/frames/81915/first.jpg", "AURORA/data/something/frames/81915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing knife from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111647", "images": ["AURORA/data/something/frames/14408/first.jpg", "AURORA/data/something/frames/14408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning small fresh mint upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111648", "images": ["AURORA/data/something/frames/199081/first.jpg", "AURORA/data/something/frames/199081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting polythene bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111649", "images": ["AURORA/data/something/frames/20708/first.jpg", "AURORA/data/something/frames/20708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden puppet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111650", "images": ["AURORA/data/something/frames/9450/first.jpg", "AURORA/data/something/frames/9450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pillow and another pillow so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111651", "images": ["AURORA/data/something/frames/19546/first.jpg", "AURORA/data/something/frames/19546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coin and another coin closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111652", "images": ["AURORA/data/something/frames/198667/first.jpg", "AURORA/data/something/frames/198667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book out of plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111653", "images": ["AURORA/data/something/frames/115382/first.jpg", "AURORA/data/something/frames/115382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening sunglasses case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111654", "images": ["AURORA/data/something/frames/72653/first.jpg", "AURORA/data/something/frames/72653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wallet with tac case on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111655", "images": ["AURORA/data/something/frames/53504/first.jpg", "AURORA/data/something/frames/53504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bracelet so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111656", "images": ["AURORA/data/something/frames/209912/first.jpg", "AURORA/data/something/frames/209912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111657", "images": ["AURORA/data/something/frames/153754/first.jpg", "AURORA/data/something/frames/153754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 remotes"}, {"from": "gpt", "value": ""}]} +{"id": "000000111658", "images": ["AURORA/data/something/frames/15754/first.jpg", "AURORA/data/something/frames/15754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111659", "images": ["AURORA/data/something/frames/44380/first.jpg", "AURORA/data/something/frames/44380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111660", "images": ["AURORA/data/something/frames/58273/first.jpg", "AURORA/data/something/frames/58273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111661", "images": ["AURORA/data/something/frames/81065/first.jpg", "AURORA/data/something/frames/81065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a glue, revealing a container behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111662", "images": ["AURORA/data/something/frames/81154/first.jpg", "AURORA/data/something/frames/81154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111663", "images": ["AURORA/data/something/frames/112155/first.jpg", "AURORA/data/something/frames/112155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a tissu so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111664", "images": ["AURORA/data/something/frames/123010/first.jpg", "AURORA/data/something/frames/123010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar away from jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111665", "images": ["AURORA/data/something/frames/180475/first.jpg", "AURORA/data/something/frames/180475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000111666", "images": ["AURORA/data/something/frames/153451/first.jpg", "AURORA/data/something/frames/153451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking purse so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111667", "images": ["AURORA/data/something/frames/70642/first.jpg", "AURORA/data/something/frames/70642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking dvd case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111668", "images": ["AURORA/data/something/frames/215794/first.jpg", "AURORA/data/something/frames/215794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111669", "images": ["AURORA/data/something/frames/179427/first.jpg", "AURORA/data/something/frames/179427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pill"}, {"from": "gpt", "value": ""}]} +{"id": "000000111670", "images": ["AURORA/data/something/frames/70533/first.jpg", "AURORA/data/something/frames/70533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111671", "images": ["AURORA/data/something/frames/470/first.jpg", "AURORA/data/something/frames/470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a power converter but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111672", "images": ["AURORA/data/something/frames/114099/first.jpg", "AURORA/data/something/frames/114099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111673", "images": ["AURORA/data/something/frames/181572/first.jpg", "AURORA/data/something/frames/181572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone handset away from a ring with keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000111674", "images": ["AURORA/data/something/frames/32321/first.jpg", "AURORA/data/something/frames/32321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pebble with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111675", "images": ["AURORA/data/something/frames/212626/first.jpg", "AURORA/data/something/frames/212626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111676", "images": ["AURORA/data/something/frames/33924/first.jpg", "AURORA/data/something/frames/33924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111677", "images": ["AURORA/data/something/frames/15313/first.jpg", "AURORA/data/something/frames/15313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spice out of spices"}, {"from": "gpt", "value": ""}]} +{"id": "000000111678", "images": ["AURORA/data/something/frames/103095/first.jpg", "AURORA/data/something/frames/103095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from behind of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111679", "images": ["AURORA/data/something/frames/41598/first.jpg", "AURORA/data/something/frames/41598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111680", "images": ["AURORA/data/something/frames/168003/first.jpg", "AURORA/data/something/frames/168003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111681", "images": ["AURORA/data/something/frames/58849/first.jpg", "AURORA/data/something/frames/58849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111682", "images": ["AURORA/data/something/frames/112509/first.jpg", "AURORA/data/something/frames/112509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cereal box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111683", "images": ["AURORA/data/something/frames/103345/first.jpg", "AURORA/data/something/frames/103345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shampoo bottle into hole"}, {"from": "gpt", "value": ""}]} +{"id": "000000111684", "images": ["AURORA/data/something/frames/167306/first.jpg", "AURORA/data/something/frames/167306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip, jar and toy on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111685", "images": ["AURORA/data/something/frames/188576/first.jpg", "AURORA/data/something/frames/188576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning peanut butter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111686", "images": ["AURORA/data/something/frames/117272/first.jpg", "AURORA/data/something/frames/117272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a clip with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000111687", "images": ["AURORA/data/something/frames/30392/first.jpg", "AURORA/data/something/frames/30392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mouse with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111688", "images": ["AURORA/data/something/frames/8007/first.jpg", "AURORA/data/something/frames/8007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111689", "images": ["AURORA/data/something/frames/123034/first.jpg", "AURORA/data/something/frames/123034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon onto box so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111690", "images": ["AURORA/data/something/frames/109310/first.jpg", "AURORA/data/something/frames/109310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting envelope with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111691", "images": ["AURORA/data/something/frames/53765/first.jpg", "AURORA/data/something/frames/53765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming cigarette lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111692", "images": ["AURORA/data/something/frames/4970/first.jpg", "AURORA/data/something/frames/4970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111693", "images": ["AURORA/data/something/frames/110988/first.jpg", "AURORA/data/something/frames/110988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a coffee carafe upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111694", "images": ["AURORA/data/something/frames/165287/first.jpg", "AURORA/data/something/frames/165287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a battery closer to a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111695", "images": ["AURORA/data/something/frames/89503/first.jpg", "AURORA/data/something/frames/89503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bobby pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111696", "images": ["AURORA/data/something/frames/53049/first.jpg", "AURORA/data/something/frames/53049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container lid from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111697", "images": ["AURORA/data/something/frames/87512/first.jpg", "AURORA/data/something/frames/87512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bottle so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111698", "images": ["AURORA/data/something/frames/63998/first.jpg", "AURORA/data/something/frames/63998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111699", "images": ["AURORA/data/something/frames/36460/first.jpg", "AURORA/data/something/frames/36460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the purse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111700", "images": ["AURORA/data/something/frames/205403/first.jpg", "AURORA/data/something/frames/205403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting milk into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111701", "images": ["AURORA/data/something/frames/4820/first.jpg", "AURORA/data/something/frames/4820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111702", "images": ["AURORA/data/something/frames/148362/first.jpg", "AURORA/data/something/frames/148362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: envelope being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111703", "images": ["AURORA/data/something/frames/43004/first.jpg", "AURORA/data/something/frames/43004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000111704", "images": ["AURORA/data/something/frames/152249/first.jpg", "AURORA/data/something/frames/152249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cigarette pack over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111705", "images": ["AURORA/data/something/frames/165274/first.jpg", "AURORA/data/something/frames/165274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111706", "images": ["AURORA/data/something/frames/37437/first.jpg", "AURORA/data/something/frames/37437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green chalk down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111707", "images": ["AURORA/data/something/frames/173133/first.jpg", "AURORA/data/something/frames/173133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111708", "images": ["AURORA/data/something/frames/14136/first.jpg", "AURORA/data/something/frames/14136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111709", "images": ["AURORA/data/something/frames/213173/first.jpg", "AURORA/data/something/frames/213173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000111710", "images": ["AURORA/data/something/frames/212080/first.jpg", "AURORA/data/something/frames/212080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111711", "images": ["AURORA/data/something/frames/78559/first.jpg", "AURORA/data/something/frames/78559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111712", "images": ["AURORA/data/something/frames/139370/first.jpg", "AURORA/data/something/frames/139370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111713", "images": ["AURORA/data/something/frames/58029/first.jpg", "AURORA/data/something/frames/58029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fruit into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111714", "images": ["AURORA/data/something/frames/192432/first.jpg", "AURORA/data/something/frames/192432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a paper ball into the trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000111715", "images": ["AURORA/data/something/frames/61839/first.jpg", "AURORA/data/something/frames/61839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 containers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111716", "images": ["AURORA/data/something/frames/169271/first.jpg", "AURORA/data/something/frames/169271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the signal lever down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111717", "images": ["AURORA/data/something/frames/146232/first.jpg", "AURORA/data/something/frames/146232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111718", "images": ["AURORA/data/something/frames/79981/first.jpg", "AURORA/data/something/frames/79981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tapeline from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111719", "images": ["AURORA/data/something/frames/48010/first.jpg", "AURORA/data/something/frames/48010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency from car seat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111720", "images": ["AURORA/data/something/frames/29554/first.jpg", "AURORA/data/something/frames/29554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111721", "images": ["AURORA/data/something/frames/196623/first.jpg", "AURORA/data/something/frames/196623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black brush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111722", "images": ["AURORA/data/something/frames/80967/first.jpg", "AURORA/data/something/frames/80967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111723", "images": ["AURORA/data/something/frames/45094/first.jpg", "AURORA/data/something/frames/45094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking paint tube so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111724", "images": ["AURORA/data/something/frames/13210/first.jpg", "AURORA/data/something/frames/13210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 hair bands onto cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111725", "images": ["AURORA/data/something/frames/55428/first.jpg", "AURORA/data/something/frames/55428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111726", "images": ["AURORA/data/something/frames/183730/first.jpg", "AURORA/data/something/frames/183730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing granola bar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111727", "images": ["AURORA/data/something/frames/59771/first.jpg", "AURORA/data/something/frames/59771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pencil box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111728", "images": ["AURORA/data/something/frames/109189/first.jpg", "AURORA/data/something/frames/109189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming steam cake"}, {"from": "gpt", "value": ""}]} +{"id": "000000111729", "images": ["AURORA/data/something/frames/50997/first.jpg", "AURORA/data/something/frames/50997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of note book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111730", "images": ["AURORA/data/something/frames/130322/first.jpg", "AURORA/data/something/frames/130322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111731", "images": ["AURORA/data/something/frames/128520/first.jpg", "AURORA/data/something/frames/128520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into the socket to the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000111732", "images": ["AURORA/data/something/frames/129725/first.jpg", "AURORA/data/something/frames/129725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with banana on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111733", "images": ["AURORA/data/something/frames/54869/first.jpg", "AURORA/data/something/frames/54869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111734", "images": ["AURORA/data/something/frames/133121/first.jpg", "AURORA/data/something/frames/133121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111735", "images": ["AURORA/data/something/frames/15132/first.jpg", "AURORA/data/something/frames/15132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111736", "images": ["AURORA/data/something/frames/101107/first.jpg", "AURORA/data/something/frames/101107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spray bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111737", "images": ["AURORA/data/something/frames/38220/first.jpg", "AURORA/data/something/frames/38220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111738", "images": ["AURORA/data/something/frames/199410/first.jpg", "AURORA/data/something/frames/199410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing compass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111739", "images": ["AURORA/data/something/frames/54980/first.jpg", "AURORA/data/something/frames/54980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a phone in front of a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111740", "images": ["AURORA/data/something/frames/172718/first.jpg", "AURORA/data/something/frames/172718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone handset closer to a ring with keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000111741", "images": ["AURORA/data/something/frames/127755/first.jpg", "AURORA/data/something/frames/127755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and water bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111742", "images": ["AURORA/data/something/frames/16566/first.jpg", "AURORA/data/something/frames/16566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass behind a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111743", "images": ["AURORA/data/something/frames/50577/first.jpg", "AURORA/data/something/frames/50577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sandal for men with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111744", "images": ["AURORA/data/something/frames/112148/first.jpg", "AURORA/data/something/frames/112148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a plastic bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111745", "images": ["AURORA/data/something/frames/204838/first.jpg", "AURORA/data/something/frames/204838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil closer to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000111746", "images": ["AURORA/data/something/frames/137612/first.jpg", "AURORA/data/something/frames/137612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111747", "images": ["AURORA/data/something/frames/6735/first.jpg", "AURORA/data/something/frames/6735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing face wash so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111748", "images": ["AURORA/data/something/frames/208139/first.jpg", "AURORA/data/something/frames/208139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy tiger and toy elephant so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111749", "images": ["AURORA/data/something/frames/89763/first.jpg", "AURORA/data/something/frames/89763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering earphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000111750", "images": ["AURORA/data/something/frames/134532/first.jpg", "AURORA/data/something/frames/134532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000111751", "images": ["AURORA/data/something/frames/24301/first.jpg", "AURORA/data/something/frames/24301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stick out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111752", "images": ["AURORA/data/something/frames/173026/first.jpg", "AURORA/data/something/frames/173026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with handphone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111753", "images": ["AURORA/data/something/frames/117183/first.jpg", "AURORA/data/something/frames/117183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111754", "images": ["AURORA/data/something/frames/177010/first.jpg", "AURORA/data/something/frames/177010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissue into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111755", "images": ["AURORA/data/something/frames/100491/first.jpg", "AURORA/data/something/frames/100491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding tote bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111756", "images": ["AURORA/data/something/frames/189337/first.jpg", "AURORA/data/something/frames/189337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from behind of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111757", "images": ["AURORA/data/something/frames/4024/first.jpg", "AURORA/data/something/frames/4024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111758", "images": ["AURORA/data/something/frames/117556/first.jpg", "AURORA/data/something/frames/117556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cup of mineral water on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111759", "images": ["AURORA/data/something/frames/74839/first.jpg", "AURORA/data/something/frames/74839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111760", "images": ["AURORA/data/something/frames/84992/first.jpg", "AURORA/data/something/frames/84992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a kleenex box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111761", "images": ["AURORA/data/something/frames/180656/first.jpg", "AURORA/data/something/frames/180656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111762", "images": ["AURORA/data/something/frames/184150/first.jpg", "AURORA/data/something/frames/184150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111763", "images": ["AURORA/data/something/frames/157974/first.jpg", "AURORA/data/something/frames/157974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching nail cutter with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111764", "images": ["AURORA/data/something/frames/208627/first.jpg", "AURORA/data/something/frames/208627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111765", "images": ["AURORA/data/something/frames/14747/first.jpg", "AURORA/data/something/frames/14747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000111766", "images": ["AURORA/data/something/frames/99143/first.jpg", "AURORA/data/something/frames/99143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clementines up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111767", "images": ["AURORA/data/something/frames/58874/first.jpg", "AURORA/data/something/frames/58874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying candy mint in blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111768", "images": ["AURORA/data/something/frames/136441/first.jpg", "AURORA/data/something/frames/136441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111769", "images": ["AURORA/data/something/frames/207945/first.jpg", "AURORA/data/something/frames/207945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111770", "images": ["AURORA/data/something/frames/180211/first.jpg", "AURORA/data/something/frames/180211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small end of phone cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000111771", "images": ["AURORA/data/something/frames/104418/first.jpg", "AURORA/data/something/frames/104418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and jug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111772", "images": ["AURORA/data/something/frames/23746/first.jpg", "AURORA/data/something/frames/23746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen behind a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111773", "images": ["AURORA/data/something/frames/156201/first.jpg", "AURORA/data/something/frames/156201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, candle and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111774", "images": ["AURORA/data/something/frames/113404/first.jpg", "AURORA/data/something/frames/113404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111775", "images": ["AURORA/data/something/frames/156245/first.jpg", "AURORA/data/something/frames/156245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting usb-stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111776", "images": ["AURORA/data/something/frames/84431/first.jpg", "AURORA/data/something/frames/84431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 nail polish"}, {"from": "gpt", "value": ""}]} +{"id": "000000111777", "images": ["AURORA/data/something/frames/105351/first.jpg", "AURORA/data/something/frames/105351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000111778", "images": ["AURORA/data/something/frames/72270/first.jpg", "AURORA/data/something/frames/72270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111779", "images": ["AURORA/data/something/frames/116592/first.jpg", "AURORA/data/something/frames/116592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling binoculars from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111780", "images": ["AURORA/data/something/frames/165248/first.jpg", "AURORA/data/something/frames/165248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting keys up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111781", "images": ["AURORA/data/something/frames/185918/first.jpg", "AURORA/data/something/frames/185918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111782", "images": ["AURORA/data/something/frames/126892/first.jpg", "AURORA/data/something/frames/126892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111783", "images": ["AURORA/data/something/frames/166637/first.jpg", "AURORA/data/something/frames/166637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening sandwichera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111784", "images": ["AURORA/data/something/frames/154598/first.jpg", "AURORA/data/something/frames/154598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111785", "images": ["AURORA/data/something/frames/200978/first.jpg", "AURORA/data/something/frames/200978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a bottle of water"}, {"from": "gpt", "value": ""}]} +{"id": "000000111786", "images": ["AURORA/data/something/frames/146789/first.jpg", "AURORA/data/something/frames/146789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111787", "images": ["AURORA/data/something/frames/207528/first.jpg", "AURORA/data/something/frames/207528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting envelope with coins on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111788", "images": ["AURORA/data/something/frames/170966/first.jpg", "AURORA/data/something/frames/170966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping red hairband next to tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111789", "images": ["AURORA/data/something/frames/43724/first.jpg", "AURORA/data/something/frames/43724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000111790", "images": ["AURORA/data/something/frames/157613/first.jpg", "AURORA/data/something/frames/157613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into pluge but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111791", "images": ["AURORA/data/something/frames/166636/first.jpg", "AURORA/data/something/frames/166636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111792", "images": ["AURORA/data/something/frames/72169/first.jpg", "AURORA/data/something/frames/72169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen drive closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111793", "images": ["AURORA/data/something/frames/37606/first.jpg", "AURORA/data/something/frames/37606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111794", "images": ["AURORA/data/something/frames/19390/first.jpg", "AURORA/data/something/frames/19390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from notebook with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111795", "images": ["AURORA/data/something/frames/87931/first.jpg", "AURORA/data/something/frames/87931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111796", "images": ["AURORA/data/something/frames/200999/first.jpg", "AURORA/data/something/frames/200999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111797", "images": ["AURORA/data/something/frames/27476/first.jpg", "AURORA/data/something/frames/27476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111798", "images": ["AURORA/data/something/frames/25838/first.jpg", "AURORA/data/something/frames/25838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of setsquare"}, {"from": "gpt", "value": ""}]} +{"id": "000000111799", "images": ["AURORA/data/something/frames/2519/first.jpg", "AURORA/data/something/frames/2519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting candy with candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111800", "images": ["AURORA/data/something/frames/69213/first.jpg", "AURORA/data/something/frames/69213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxs without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000111801", "images": ["AURORA/data/something/frames/95516/first.jpg", "AURORA/data/something/frames/95516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111802", "images": ["AURORA/data/something/frames/85733/first.jpg", "AURORA/data/something/frames/85733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into washbasin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111803", "images": ["AURORA/data/something/frames/92139/first.jpg", "AURORA/data/something/frames/92139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with ball over, so ball falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111804", "images": ["AURORA/data/something/frames/9344/first.jpg", "AURORA/data/something/frames/9344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering duster with scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000111805", "images": ["AURORA/data/something/frames/150669/first.jpg", "AURORA/data/something/frames/150669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a glass from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111806", "images": ["AURORA/data/something/frames/66584/first.jpg", "AURORA/data/something/frames/66584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111807", "images": ["AURORA/data/something/frames/60109/first.jpg", "AURORA/data/something/frames/60109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a straw into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111808", "images": ["AURORA/data/something/frames/173288/first.jpg", "AURORA/data/something/frames/173288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand cream tube on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111809", "images": ["AURORA/data/something/frames/77175/first.jpg", "AURORA/data/something/frames/77175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000111810", "images": ["AURORA/data/something/frames/91196/first.jpg", "AURORA/data/something/frames/91196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111811", "images": ["AURORA/data/something/frames/67965/first.jpg", "AURORA/data/something/frames/67965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a glue stick on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111812", "images": ["AURORA/data/something/frames/162086/first.jpg", "AURORA/data/something/frames/162086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111813", "images": ["AURORA/data/something/frames/132146/first.jpg", "AURORA/data/something/frames/132146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111814", "images": ["AURORA/data/something/frames/209739/first.jpg", "AURORA/data/something/frames/209739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111815", "images": ["AURORA/data/something/frames/122248/first.jpg", "AURORA/data/something/frames/122248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug behind a pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000111816", "images": ["AURORA/data/something/frames/87361/first.jpg", "AURORA/data/something/frames/87361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of headphones so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111817", "images": ["AURORA/data/something/frames/52945/first.jpg", "AURORA/data/something/frames/52945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111818", "images": ["AURORA/data/something/frames/39702/first.jpg", "AURORA/data/something/frames/39702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111819", "images": ["AURORA/data/something/frames/115030/first.jpg", "AURORA/data/something/frames/115030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111820", "images": ["AURORA/data/something/frames/215414/first.jpg", "AURORA/data/something/frames/215414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111821", "images": ["AURORA/data/something/frames/55141/first.jpg", "AURORA/data/something/frames/55141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eraser into blue glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111822", "images": ["AURORA/data/something/frames/203725/first.jpg", "AURORA/data/something/frames/203725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with phone on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111823", "images": ["AURORA/data/something/frames/89670/first.jpg", "AURORA/data/something/frames/89670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111824", "images": ["AURORA/data/something/frames/84335/first.jpg", "AURORA/data/something/frames/84335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111825", "images": ["AURORA/data/something/frames/194203/first.jpg", "AURORA/data/something/frames/194203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting drum with lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111826", "images": ["AURORA/data/something/frames/146631/first.jpg", "AURORA/data/something/frames/146631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111827", "images": ["AURORA/data/something/frames/95729/first.jpg", "AURORA/data/something/frames/95729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111828", "images": ["AURORA/data/something/frames/18697/first.jpg", "AURORA/data/something/frames/18697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111829", "images": ["AURORA/data/something/frames/124099/first.jpg", "AURORA/data/something/frames/124099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container with screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000111830", "images": ["AURORA/data/something/frames/76952/first.jpg", "AURORA/data/something/frames/76952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing card folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111831", "images": ["AURORA/data/something/frames/145229/first.jpg", "AURORA/data/something/frames/145229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111832", "images": ["AURORA/data/something/frames/50232/first.jpg", "AURORA/data/something/frames/50232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111833", "images": ["AURORA/data/something/frames/41463/first.jpg", "AURORA/data/something/frames/41463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying container on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111834", "images": ["AURORA/data/something/frames/68822/first.jpg", "AURORA/data/something/frames/68822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000111835", "images": ["AURORA/data/something/frames/31678/first.jpg", "AURORA/data/something/frames/31678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bowl over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111836", "images": ["AURORA/data/something/frames/65041/first.jpg", "AURORA/data/something/frames/65041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111837", "images": ["AURORA/data/something/frames/201177/first.jpg", "AURORA/data/something/frames/201177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cookies into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111838", "images": ["AURORA/data/something/frames/162464/first.jpg", "AURORA/data/something/frames/162464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting speaker with gum bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111839", "images": ["AURORA/data/something/frames/84572/first.jpg", "AURORA/data/something/frames/84572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming telephone junction box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111840", "images": ["AURORA/data/something/frames/104873/first.jpg", "AURORA/data/something/frames/104873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing index card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111841", "images": ["AURORA/data/something/frames/35817/first.jpg", "AURORA/data/something/frames/35817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111842", "images": ["AURORA/data/something/frames/149098/first.jpg", "AURORA/data/something/frames/149098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111843", "images": ["AURORA/data/something/frames/195085/first.jpg", "AURORA/data/something/frames/195085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shorts into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111844", "images": ["AURORA/data/something/frames/170900/first.jpg", "AURORA/data/something/frames/170900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111845", "images": ["AURORA/data/something/frames/3899/first.jpg", "AURORA/data/something/frames/3899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111846", "images": ["AURORA/data/something/frames/112588/first.jpg", "AURORA/data/something/frames/112588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white pebble down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111847", "images": ["AURORA/data/something/frames/150245/first.jpg", "AURORA/data/something/frames/150245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone in front of pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000111848", "images": ["AURORA/data/something/frames/119819/first.jpg", "AURORA/data/something/frames/119819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking timepiece out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111849", "images": ["AURORA/data/something/frames/146762/first.jpg", "AURORA/data/something/frames/146762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a beer can, revealing a teaspoon behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111850", "images": ["AURORA/data/something/frames/46281/first.jpg", "AURORA/data/something/frames/46281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111851", "images": ["AURORA/data/something/frames/129298/first.jpg", "AURORA/data/something/frames/129298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111852", "images": ["AURORA/data/something/frames/44523/first.jpg", "AURORA/data/something/frames/44523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tin can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111853", "images": ["AURORA/data/something/frames/13998/first.jpg", "AURORA/data/something/frames/13998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy car with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111854", "images": ["AURORA/data/something/frames/31664/first.jpg", "AURORA/data/something/frames/31664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hand up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111855", "images": ["AURORA/data/something/frames/142521/first.jpg", "AURORA/data/something/frames/142521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111856", "images": ["AURORA/data/something/frames/31098/first.jpg", "AURORA/data/something/frames/31098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair band from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111857", "images": ["AURORA/data/something/frames/93868/first.jpg", "AURORA/data/something/frames/93868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling dvd case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111858", "images": ["AURORA/data/something/frames/83323/first.jpg", "AURORA/data/something/frames/83323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing calculator, revealing eraser behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111859", "images": ["AURORA/data/something/frames/79785/first.jpg", "AURORA/data/something/frames/79785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000111860", "images": ["AURORA/data/something/frames/145090/first.jpg", "AURORA/data/something/frames/145090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting stencil with wooden stick on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111861", "images": ["AURORA/data/something/frames/69587/first.jpg", "AURORA/data/something/frames/69587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111862", "images": ["AURORA/data/something/frames/110273/first.jpg", "AURORA/data/something/frames/110273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with grape over, so grape falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111863", "images": ["AURORA/data/something/frames/17519/first.jpg", "AURORA/data/something/frames/17519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111864", "images": ["AURORA/data/something/frames/136269/first.jpg", "AURORA/data/something/frames/136269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red pot holder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111865", "images": ["AURORA/data/something/frames/171333/first.jpg", "AURORA/data/something/frames/171333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil case underneath a sweater"}, {"from": "gpt", "value": ""}]} +{"id": "000000111866", "images": ["AURORA/data/something/frames/67859/first.jpg", "AURORA/data/something/frames/67859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000111867", "images": ["AURORA/data/something/frames/66909/first.jpg", "AURORA/data/something/frames/66909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lip balm lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000111868", "images": ["AURORA/data/something/frames/180303/first.jpg", "AURORA/data/something/frames/180303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen stand from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111869", "images": ["AURORA/data/something/frames/162039/first.jpg", "AURORA/data/something/frames/162039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111870", "images": ["AURORA/data/something/frames/779/first.jpg", "AURORA/data/something/frames/779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111871", "images": ["AURORA/data/something/frames/25303/first.jpg", "AURORA/data/something/frames/25303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111872", "images": ["AURORA/data/something/frames/9821/first.jpg", "AURORA/data/something/frames/9821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet closer to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111873", "images": ["AURORA/data/something/frames/143249/first.jpg", "AURORA/data/something/frames/143249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111874", "images": ["AURORA/data/something/frames/151722/first.jpg", "AURORA/data/something/frames/151722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111875", "images": ["AURORA/data/something/frames/153194/first.jpg", "AURORA/data/something/frames/153194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: car colliding with train and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111876", "images": ["AURORA/data/something/frames/70542/first.jpg", "AURORA/data/something/frames/70542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a car out of parking lot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111877", "images": ["AURORA/data/something/frames/132740/first.jpg", "AURORA/data/something/frames/132740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering flashlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000111878", "images": ["AURORA/data/something/frames/57240/first.jpg", "AURORA/data/something/frames/57240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling diaper wipes out of the bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111879", "images": ["AURORA/data/something/frames/139833/first.jpg", "AURORA/data/something/frames/139833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111880", "images": ["AURORA/data/something/frames/76727/first.jpg", "AURORA/data/something/frames/76727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111881", "images": ["AURORA/data/something/frames/77019/first.jpg", "AURORA/data/something/frames/77019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pillow with clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000111882", "images": ["AURORA/data/something/frames/114961/first.jpg", "AURORA/data/something/frames/114961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste tube and toothpaste tube so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111883", "images": ["AURORA/data/something/frames/84300/first.jpg", "AURORA/data/something/frames/84300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter from behind of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111884", "images": ["AURORA/data/something/frames/87969/first.jpg", "AURORA/data/something/frames/87969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into watering can, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111885", "images": ["AURORA/data/something/frames/105359/first.jpg", "AURORA/data/something/frames/105359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111886", "images": ["AURORA/data/something/frames/6848/first.jpg", "AURORA/data/something/frames/6848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111887", "images": ["AURORA/data/something/frames/175887/first.jpg", "AURORA/data/something/frames/175887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming wastebin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111888", "images": ["AURORA/data/something/frames/151807/first.jpg", "AURORA/data/something/frames/151807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spects into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111889", "images": ["AURORA/data/something/frames/34339/first.jpg", "AURORA/data/something/frames/34339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting table with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111890", "images": ["AURORA/data/something/frames/79890/first.jpg", "AURORA/data/something/frames/79890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111891", "images": ["AURORA/data/something/frames/200068/first.jpg", "AURORA/data/something/frames/200068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111892", "images": ["AURORA/data/something/frames/174784/first.jpg", "AURORA/data/something/frames/174784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping toothpaste off of a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000111893", "images": ["AURORA/data/something/frames/220342/first.jpg", "AURORA/data/something/frames/220342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen out of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111894", "images": ["AURORA/data/something/frames/196818/first.jpg", "AURORA/data/something/frames/196818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging black cord into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111895", "images": ["AURORA/data/something/frames/129545/first.jpg", "AURORA/data/something/frames/129545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow hairband down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111896", "images": ["AURORA/data/something/frames/220382/first.jpg", "AURORA/data/something/frames/220382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking calculator so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111897", "images": ["AURORA/data/something/frames/149823/first.jpg", "AURORA/data/something/frames/149823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb behind wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111898", "images": ["AURORA/data/something/frames/143540/first.jpg", "AURORA/data/something/frames/143540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111899", "images": ["AURORA/data/something/frames/73287/first.jpg", "AURORA/data/something/frames/73287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of keurig"}, {"from": "gpt", "value": ""}]} +{"id": "000000111900", "images": ["AURORA/data/something/frames/57287/first.jpg", "AURORA/data/something/frames/57287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111901", "images": ["AURORA/data/something/frames/128019/first.jpg", "AURORA/data/something/frames/128019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a adapter but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111902", "images": ["AURORA/data/something/frames/96844/first.jpg", "AURORA/data/something/frames/96844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a ceramic frog"}, {"from": "gpt", "value": ""}]} +{"id": "000000111903", "images": ["AURORA/data/something/frames/106398/first.jpg", "AURORA/data/something/frames/106398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing chapati just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111904", "images": ["AURORA/data/something/frames/104108/first.jpg", "AURORA/data/something/frames/104108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111905", "images": ["AURORA/data/something/frames/46578/first.jpg", "AURORA/data/something/frames/46578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111906", "images": ["AURORA/data/something/frames/98201/first.jpg", "AURORA/data/something/frames/98201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting muffin and bulb syringe on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111907", "images": ["AURORA/data/something/frames/2872/first.jpg", "AURORA/data/something/frames/2872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into smarthphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111908", "images": ["AURORA/data/something/frames/57770/first.jpg", "AURORA/data/something/frames/57770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of mason jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111909", "images": ["AURORA/data/something/frames/132932/first.jpg", "AURORA/data/something/frames/132932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111910", "images": ["AURORA/data/something/frames/128124/first.jpg", "AURORA/data/something/frames/128124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111911", "images": ["AURORA/data/something/frames/188678/first.jpg", "AURORA/data/something/frames/188678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111912", "images": ["AURORA/data/something/frames/205218/first.jpg", "AURORA/data/something/frames/205218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a trophy next to a speaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000111913", "images": ["AURORA/data/something/frames/83441/first.jpg", "AURORA/data/something/frames/83441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stick upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111914", "images": ["AURORA/data/something/frames/32984/first.jpg", "AURORA/data/something/frames/32984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop onto a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111915", "images": ["AURORA/data/something/frames/153707/first.jpg", "AURORA/data/something/frames/153707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a can of mints with an aerosol can on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111916", "images": ["AURORA/data/something/frames/39175/first.jpg", "AURORA/data/something/frames/39175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tissue out of tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111917", "images": ["AURORA/data/something/frames/28395/first.jpg", "AURORA/data/something/frames/28395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing vanity bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111918", "images": ["AURORA/data/something/frames/202780/first.jpg", "AURORA/data/something/frames/202780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ashtray down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111919", "images": ["AURORA/data/something/frames/193456/first.jpg", "AURORA/data/something/frames/193456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading salt onto raw chicken meat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111920", "images": ["AURORA/data/something/frames/19087/first.jpg", "AURORA/data/something/frames/19087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting gum"}, {"from": "gpt", "value": ""}]} +{"id": "000000111921", "images": ["AURORA/data/something/frames/194319/first.jpg", "AURORA/data/something/frames/194319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111922", "images": ["AURORA/data/something/frames/87076/first.jpg", "AURORA/data/something/frames/87076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking poking drawer so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111923", "images": ["AURORA/data/something/frames/19474/first.jpg", "AURORA/data/something/frames/19474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a necklace out of a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111924", "images": ["AURORA/data/something/frames/201781/first.jpg", "AURORA/data/something/frames/201781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111925", "images": ["AURORA/data/something/frames/95371/first.jpg", "AURORA/data/something/frames/95371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with remote on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111926", "images": ["AURORA/data/something/frames/30947/first.jpg", "AURORA/data/something/frames/30947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111927", "images": ["AURORA/data/something/frames/65947/first.jpg", "AURORA/data/something/frames/65947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a toy brick to a toy brick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111928", "images": ["AURORA/data/something/frames/29234/first.jpg", "AURORA/data/something/frames/29234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering doll with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111929", "images": ["AURORA/data/something/frames/127410/first.jpg", "AURORA/data/something/frames/127410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111930", "images": ["AURORA/data/something/frames/56251/first.jpg", "AURORA/data/something/frames/56251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle closer to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111931", "images": ["AURORA/data/something/frames/84827/first.jpg", "AURORA/data/something/frames/84827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111932", "images": ["AURORA/data/something/frames/171376/first.jpg", "AURORA/data/something/frames/171376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing advertising brochure just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111933", "images": ["AURORA/data/something/frames/79193/first.jpg", "AURORA/data/something/frames/79193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111934", "images": ["AURORA/data/something/frames/188377/first.jpg", "AURORA/data/something/frames/188377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto buttered toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000111935", "images": ["AURORA/data/something/frames/55149/first.jpg", "AURORA/data/something/frames/55149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubber into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111936", "images": ["AURORA/data/something/frames/31509/first.jpg", "AURORA/data/something/frames/31509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000111937", "images": ["AURORA/data/something/frames/38951/first.jpg", "AURORA/data/something/frames/38951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000111938", "images": ["AURORA/data/something/frames/155301/first.jpg", "AURORA/data/something/frames/155301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111939", "images": ["AURORA/data/something/frames/95328/first.jpg", "AURORA/data/something/frames/95328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle and pocket knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111940", "images": ["AURORA/data/something/frames/89434/first.jpg", "AURORA/data/something/frames/89434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a phone so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111941", "images": ["AURORA/data/something/frames/128502/first.jpg", "AURORA/data/something/frames/128502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111942", "images": ["AURORA/data/something/frames/118229/first.jpg", "AURORA/data/something/frames/118229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 red spoons onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111943", "images": ["AURORA/data/something/frames/85939/first.jpg", "AURORA/data/something/frames/85939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy onto spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111944", "images": ["AURORA/data/something/frames/33170/first.jpg", "AURORA/data/something/frames/33170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a chest"}, {"from": "gpt", "value": ""}]} +{"id": "000000111945", "images": ["AURORA/data/something/frames/134849/first.jpg", "AURORA/data/something/frames/134849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111946", "images": ["AURORA/data/something/frames/80555/first.jpg", "AURORA/data/something/frames/80555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving matchbox and cellphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111947", "images": ["AURORA/data/something/frames/7414/first.jpg", "AURORA/data/something/frames/7414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a pacifier up with my hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111948", "images": ["AURORA/data/something/frames/100117/first.jpg", "AURORA/data/something/frames/100117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111949", "images": ["AURORA/data/something/frames/17320/first.jpg", "AURORA/data/something/frames/17320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111950", "images": ["AURORA/data/something/frames/83295/first.jpg", "AURORA/data/something/frames/83295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass away from bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111951", "images": ["AURORA/data/something/frames/43503/first.jpg", "AURORA/data/something/frames/43503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug closer to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111952", "images": ["AURORA/data/something/frames/192879/first.jpg", "AURORA/data/something/frames/192879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111953", "images": ["AURORA/data/something/frames/211134/first.jpg", "AURORA/data/something/frames/211134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a label so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111954", "images": ["AURORA/data/something/frames/185728/first.jpg", "AURORA/data/something/frames/185728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 spools of thread onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111955", "images": ["AURORA/data/something/frames/35487/first.jpg", "AURORA/data/something/frames/35487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111956", "images": ["AURORA/data/something/frames/29715/first.jpg", "AURORA/data/something/frames/29715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a stuffed bird over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111957", "images": ["AURORA/data/something/frames/18271/first.jpg", "AURORA/data/something/frames/18271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111958", "images": ["AURORA/data/something/frames/220583/first.jpg", "AURORA/data/something/frames/220583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111959", "images": ["AURORA/data/something/frames/35716/first.jpg", "AURORA/data/something/frames/35716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending an envelope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111960", "images": ["AURORA/data/something/frames/84570/first.jpg", "AURORA/data/something/frames/84570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111961", "images": ["AURORA/data/something/frames/216857/first.jpg", "AURORA/data/something/frames/216857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111962", "images": ["AURORA/data/something/frames/205243/first.jpg", "AURORA/data/something/frames/205243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card"}, {"from": "gpt", "value": ""}]} +{"id": "000000111963", "images": ["AURORA/data/something/frames/14384/first.jpg", "AURORA/data/something/frames/14384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping candle with bubblegum over, so bubblegum falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111964", "images": ["AURORA/data/something/frames/127956/first.jpg", "AURORA/data/something/frames/127956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette tape next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111965", "images": ["AURORA/data/something/frames/35074/first.jpg", "AURORA/data/something/frames/35074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming world globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111966", "images": ["AURORA/data/something/frames/199935/first.jpg", "AURORA/data/something/frames/199935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111967", "images": ["AURORA/data/something/frames/186888/first.jpg", "AURORA/data/something/frames/186888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111968", "images": ["AURORA/data/something/frames/172333/first.jpg", "AURORA/data/something/frames/172333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111969", "images": ["AURORA/data/something/frames/22118/first.jpg", "AURORA/data/something/frames/22118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a cloth into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111970", "images": ["AURORA/data/something/frames/4048/first.jpg", "AURORA/data/something/frames/4048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toy cars onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000111971", "images": ["AURORA/data/something/frames/183231/first.jpg", "AURORA/data/something/frames/183231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111972", "images": ["AURORA/data/something/frames/78911/first.jpg", "AURORA/data/something/frames/78911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into electric socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111973", "images": ["AURORA/data/something/frames/203254/first.jpg", "AURORA/data/something/frames/203254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111974", "images": ["AURORA/data/something/frames/217276/first.jpg", "AURORA/data/something/frames/217276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: marble colliding with marble and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111975", "images": ["AURORA/data/something/frames/143703/first.jpg", "AURORA/data/something/frames/143703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a note"}, {"from": "gpt", "value": ""}]} +{"id": "000000111976", "images": ["AURORA/data/something/frames/208629/first.jpg", "AURORA/data/something/frames/208629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000111977", "images": ["AURORA/data/something/frames/122032/first.jpg", "AURORA/data/something/frames/122032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111978", "images": ["AURORA/data/something/frames/194840/first.jpg", "AURORA/data/something/frames/194840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering foldable knife with punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000111979", "images": ["AURORA/data/something/frames/567/first.jpg", "AURORA/data/something/frames/567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000111980", "images": ["AURORA/data/something/frames/21688/first.jpg", "AURORA/data/something/frames/21688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111981", "images": ["AURORA/data/something/frames/166776/first.jpg", "AURORA/data/something/frames/166776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111982", "images": ["AURORA/data/something/frames/119800/first.jpg", "AURORA/data/something/frames/119800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering ballpen with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111983", "images": ["AURORA/data/something/frames/186406/first.jpg", "AURORA/data/something/frames/186406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a container with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111984", "images": ["AURORA/data/something/frames/182911/first.jpg", "AURORA/data/something/frames/182911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering decoration box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111985", "images": ["AURORA/data/something/frames/49824/first.jpg", "AURORA/data/something/frames/49824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111986", "images": ["AURORA/data/something/frames/4946/first.jpg", "AURORA/data/something/frames/4946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissues on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111987", "images": ["AURORA/data/something/frames/201373/first.jpg", "AURORA/data/something/frames/201373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing yellow clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111988", "images": ["AURORA/data/something/frames/175473/first.jpg", "AURORA/data/something/frames/175473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a watch on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111989", "images": ["AURORA/data/something/frames/58820/first.jpg", "AURORA/data/something/frames/58820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag into the drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111990", "images": ["AURORA/data/something/frames/156977/first.jpg", "AURORA/data/something/frames/156977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) title of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111991", "images": ["AURORA/data/something/frames/93294/first.jpg", "AURORA/data/something/frames/93294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000111992", "images": ["AURORA/data/something/frames/136767/first.jpg", "AURORA/data/something/frames/136767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving aroma diffuser and trophie closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111993", "images": ["AURORA/data/something/frames/142225/first.jpg", "AURORA/data/something/frames/142225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111994", "images": ["AURORA/data/something/frames/82359/first.jpg", "AURORA/data/something/frames/82359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000111995", "images": ["AURORA/data/something/frames/196119/first.jpg", "AURORA/data/something/frames/196119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111996", "images": ["AURORA/data/something/frames/56653/first.jpg", "AURORA/data/something/frames/56653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111997", "images": ["AURORA/data/something/frames/169837/first.jpg", "AURORA/data/something/frames/169837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding wrag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111998", "images": ["AURORA/data/something/frames/124242/first.jpg", "AURORA/data/something/frames/124242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111999", "images": ["AURORA/data/something/frames/191109/first.jpg", "AURORA/data/something/frames/191109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112000", "images": ["AURORA/data/something/frames/5950/first.jpg", "AURORA/data/something/frames/5950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112001", "images": ["AURORA/data/something/frames/22370/first.jpg", "AURORA/data/something/frames/22370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ruler onto mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112002", "images": ["AURORA/data/something/frames/117370/first.jpg", "AURORA/data/something/frames/117370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glass bottle on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112003", "images": ["AURORA/data/something/frames/57930/first.jpg", "AURORA/data/something/frames/57930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112004", "images": ["AURORA/data/something/frames/182133/first.jpg", "AURORA/data/something/frames/182133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding reciept"}, {"from": "gpt", "value": ""}]} +{"id": "000000112005", "images": ["AURORA/data/something/frames/129977/first.jpg", "AURORA/data/something/frames/129977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112006", "images": ["AURORA/data/something/frames/164624/first.jpg", "AURORA/data/something/frames/164624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112007", "images": ["AURORA/data/something/frames/65413/first.jpg", "AURORA/data/something/frames/65413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plushie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112008", "images": ["AURORA/data/something/frames/124947/first.jpg", "AURORA/data/something/frames/124947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a computer mouse with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112009", "images": ["AURORA/data/something/frames/80884/first.jpg", "AURORA/data/something/frames/80884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112010", "images": ["AURORA/data/something/frames/133449/first.jpg", "AURORA/data/something/frames/133449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pillow upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112011", "images": ["AURORA/data/something/frames/39635/first.jpg", "AURORA/data/something/frames/39635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping soda pop can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112012", "images": ["AURORA/data/something/frames/115541/first.jpg", "AURORA/data/something/frames/115541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112013", "images": ["AURORA/data/something/frames/92691/first.jpg", "AURORA/data/something/frames/92691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112014", "images": ["AURORA/data/something/frames/22562/first.jpg", "AURORA/data/something/frames/22562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ceramic ball and mug so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112015", "images": ["AURORA/data/something/frames/200357/first.jpg", "AURORA/data/something/frames/200357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair clip next to green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112016", "images": ["AURORA/data/something/frames/35707/first.jpg", "AURORA/data/something/frames/35707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chalk on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112017", "images": ["AURORA/data/something/frames/97493/first.jpg", "AURORA/data/something/frames/97493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a can, revealing a pair of tweezers behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000112018", "images": ["AURORA/data/something/frames/200484/first.jpg", "AURORA/data/something/frames/200484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing magnet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112019", "images": ["AURORA/data/something/frames/64132/first.jpg", "AURORA/data/something/frames/64132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112020", "images": ["AURORA/data/something/frames/91683/first.jpg", "AURORA/data/something/frames/91683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112021", "images": ["AURORA/data/something/frames/202680/first.jpg", "AURORA/data/something/frames/202680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112022", "images": ["AURORA/data/something/frames/26928/first.jpg", "AURORA/data/something/frames/26928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mobile with mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000112023", "images": ["AURORA/data/something/frames/43192/first.jpg", "AURORA/data/something/frames/43192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with cards on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112024", "images": ["AURORA/data/something/frames/209558/first.jpg", "AURORA/data/something/frames/209558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pencil so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112025", "images": ["AURORA/data/something/frames/216243/first.jpg", "AURORA/data/something/frames/216243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112026", "images": ["AURORA/data/something/frames/38096/first.jpg", "AURORA/data/something/frames/38096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking indian almond up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112027", "images": ["AURORA/data/something/frames/93249/first.jpg", "AURORA/data/something/frames/93249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112028", "images": ["AURORA/data/something/frames/160988/first.jpg", "AURORA/data/something/frames/160988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bike closer to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112029", "images": ["AURORA/data/something/frames/153090/first.jpg", "AURORA/data/something/frames/153090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112030", "images": ["AURORA/data/something/frames/208350/first.jpg", "AURORA/data/something/frames/208350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into usb hub"}, {"from": "gpt", "value": ""}]} +{"id": "000000112031", "images": ["AURORA/data/something/frames/83063/first.jpg", "AURORA/data/something/frames/83063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112032", "images": ["AURORA/data/something/frames/52198/first.jpg", "AURORA/data/something/frames/52198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112033", "images": ["AURORA/data/something/frames/189788/first.jpg", "AURORA/data/something/frames/189788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape measure down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112034", "images": ["AURORA/data/something/frames/200578/first.jpg", "AURORA/data/something/frames/200578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112035", "images": ["AURORA/data/something/frames/17838/first.jpg", "AURORA/data/something/frames/17838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112036", "images": ["AURORA/data/something/frames/139308/first.jpg", "AURORA/data/something/frames/139308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112037", "images": ["AURORA/data/something/frames/208063/first.jpg", "AURORA/data/something/frames/208063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112038", "images": ["AURORA/data/something/frames/5804/first.jpg", "AURORA/data/something/frames/5804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a card away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112039", "images": ["AURORA/data/something/frames/81430/first.jpg", "AURORA/data/something/frames/81430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 book/dvd case/booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112040", "images": ["AURORA/data/something/frames/75240/first.jpg", "AURORA/data/something/frames/75240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112041", "images": ["AURORA/data/something/frames/189373/first.jpg", "AURORA/data/something/frames/189373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112042", "images": ["AURORA/data/something/frames/53528/first.jpg", "AURORA/data/something/frames/53528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112043", "images": ["AURORA/data/something/frames/54973/first.jpg", "AURORA/data/something/frames/54973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair clips onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000112044", "images": ["AURORA/data/something/frames/71770/first.jpg", "AURORA/data/something/frames/71770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tape with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112045", "images": ["AURORA/data/something/frames/65609/first.jpg", "AURORA/data/something/frames/65609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000112046", "images": ["AURORA/data/something/frames/108186/first.jpg", "AURORA/data/something/frames/108186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112047", "images": ["AURORA/data/something/frames/211943/first.jpg", "AURORA/data/something/frames/211943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour tea into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112048", "images": ["AURORA/data/something/frames/140875/first.jpg", "AURORA/data/something/frames/140875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden reeper until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112049", "images": ["AURORA/data/something/frames/81113/first.jpg", "AURORA/data/something/frames/81113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112050", "images": ["AURORA/data/something/frames/67285/first.jpg", "AURORA/data/something/frames/67285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sheild away from drum"}, {"from": "gpt", "value": ""}]} +{"id": "000000112051", "images": ["AURORA/data/something/frames/187888/first.jpg", "AURORA/data/something/frames/187888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112052", "images": ["AURORA/data/something/frames/47014/first.jpg", "AURORA/data/something/frames/47014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112053", "images": ["AURORA/data/something/frames/39894/first.jpg", "AURORA/data/something/frames/39894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112054", "images": ["AURORA/data/something/frames/142895/first.jpg", "AURORA/data/something/frames/142895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wood down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112055", "images": ["AURORA/data/something/frames/182882/first.jpg", "AURORA/data/something/frames/182882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an eraser and a bottlecap closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112056", "images": ["AURORA/data/something/frames/111961/first.jpg", "AURORA/data/something/frames/111961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112057", "images": ["AURORA/data/something/frames/50040/first.jpg", "AURORA/data/something/frames/50040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting orange bowl up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112058", "images": ["AURORA/data/something/frames/200050/first.jpg", "AURORA/data/something/frames/200050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112059", "images": ["AURORA/data/something/frames/23522/first.jpg", "AURORA/data/something/frames/23522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a q-tip upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112060", "images": ["AURORA/data/something/frames/187563/first.jpg", "AURORA/data/something/frames/187563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: package colliding with package and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112061", "images": ["AURORA/data/something/frames/193659/first.jpg", "AURORA/data/something/frames/193659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a card out of the bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112062", "images": ["AURORA/data/something/frames/69608/first.jpg", "AURORA/data/something/frames/69608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112063", "images": ["AURORA/data/something/frames/75340/first.jpg", "AURORA/data/something/frames/75340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112064", "images": ["AURORA/data/something/frames/128828/first.jpg", "AURORA/data/something/frames/128828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding documents"}, {"from": "gpt", "value": ""}]} +{"id": "000000112065", "images": ["AURORA/data/something/frames/54941/first.jpg", "AURORA/data/something/frames/54941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving potato and potato away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112066", "images": ["AURORA/data/something/frames/91684/first.jpg", "AURORA/data/something/frames/91684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pipes"}, {"from": "gpt", "value": ""}]} +{"id": "000000112067", "images": ["AURORA/data/something/frames/185482/first.jpg", "AURORA/data/something/frames/185482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112068", "images": ["AURORA/data/something/frames/90490/first.jpg", "AURORA/data/something/frames/90490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cabel into switch but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112069", "images": ["AURORA/data/something/frames/96671/first.jpg", "AURORA/data/something/frames/96671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tea tumbler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112070", "images": ["AURORA/data/something/frames/91637/first.jpg", "AURORA/data/something/frames/91637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a rag into canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000112071", "images": ["AURORA/data/something/frames/35234/first.jpg", "AURORA/data/something/frames/35234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112072", "images": ["AURORA/data/something/frames/27892/first.jpg", "AURORA/data/something/frames/27892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112073", "images": ["AURORA/data/something/frames/102171/first.jpg", "AURORA/data/something/frames/102171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading books onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112074", "images": ["AURORA/data/something/frames/120079/first.jpg", "AURORA/data/something/frames/120079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112075", "images": ["AURORA/data/something/frames/112090/first.jpg", "AURORA/data/something/frames/112090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath books"}, {"from": "gpt", "value": ""}]} +{"id": "000000112076", "images": ["AURORA/data/something/frames/59546/first.jpg", "AURORA/data/something/frames/59546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small freshmints from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112077", "images": ["AURORA/data/something/frames/129519/first.jpg", "AURORA/data/something/frames/129519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cylindrical box in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112078", "images": ["AURORA/data/something/frames/156515/first.jpg", "AURORA/data/something/frames/156515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cushions up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112079", "images": ["AURORA/data/something/frames/90357/first.jpg", "AURORA/data/something/frames/90357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112080", "images": ["AURORA/data/something/frames/3866/first.jpg", "AURORA/data/something/frames/3866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112081", "images": ["AURORA/data/something/frames/179739/first.jpg", "AURORA/data/something/frames/179739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping magazine onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112082", "images": ["AURORA/data/something/frames/117781/first.jpg", "AURORA/data/something/frames/117781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone next to a key ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000112083", "images": ["AURORA/data/something/frames/196568/first.jpg", "AURORA/data/something/frames/196568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending matchstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112084", "images": ["AURORA/data/something/frames/114772/first.jpg", "AURORA/data/something/frames/114772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112085", "images": ["AURORA/data/something/frames/90916/first.jpg", "AURORA/data/something/frames/90916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112086", "images": ["AURORA/data/something/frames/87616/first.jpg", "AURORA/data/something/frames/87616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden puppet down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112087", "images": ["AURORA/data/something/frames/98227/first.jpg", "AURORA/data/something/frames/98227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting leather bag underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112088", "images": ["AURORA/data/something/frames/79154/first.jpg", "AURORA/data/something/frames/79154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112089", "images": ["AURORA/data/something/frames/69499/first.jpg", "AURORA/data/something/frames/69499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spanner up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112090", "images": ["AURORA/data/something/frames/186044/first.jpg", "AURORA/data/something/frames/186044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bulb underneath scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000112091", "images": ["AURORA/data/something/frames/177523/first.jpg", "AURORA/data/something/frames/177523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112092", "images": ["AURORA/data/something/frames/41553/first.jpg", "AURORA/data/something/frames/41553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea from glass onto a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112093", "images": ["AURORA/data/something/frames/73306/first.jpg", "AURORA/data/something/frames/73306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling packet out of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112094", "images": ["AURORA/data/something/frames/89190/first.jpg", "AURORA/data/something/frames/89190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stuffed animal with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112095", "images": ["AURORA/data/something/frames/203848/first.jpg", "AURORA/data/something/frames/203848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a book with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112096", "images": ["AURORA/data/something/frames/93475/first.jpg", "AURORA/data/something/frames/93475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering eraser with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112097", "images": ["AURORA/data/something/frames/62508/first.jpg", "AURORA/data/something/frames/62508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping watch onto carpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112098", "images": ["AURORA/data/something/frames/80026/first.jpg", "AURORA/data/something/frames/80026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling baby powder onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000112099", "images": ["AURORA/data/something/frames/128538/first.jpg", "AURORA/data/something/frames/128538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking straightner from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112100", "images": ["AURORA/data/something/frames/98593/first.jpg", "AURORA/data/something/frames/98593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook next to flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000112101", "images": ["AURORA/data/something/frames/129654/first.jpg", "AURORA/data/something/frames/129654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112102", "images": ["AURORA/data/something/frames/43323/first.jpg", "AURORA/data/something/frames/43323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming boat"}, {"from": "gpt", "value": ""}]} +{"id": "000000112103", "images": ["AURORA/data/something/frames/31877/first.jpg", "AURORA/data/something/frames/31877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112104", "images": ["AURORA/data/something/frames/19983/first.jpg", "AURORA/data/something/frames/19983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a thermometer into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112105", "images": ["AURORA/data/something/frames/219481/first.jpg", "AURORA/data/something/frames/219481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a trimmer on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112106", "images": ["AURORA/data/something/frames/137747/first.jpg", "AURORA/data/something/frames/137747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, flower and key on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112107", "images": ["AURORA/data/something/frames/128243/first.jpg", "AURORA/data/something/frames/128243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of wood table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112108", "images": ["AURORA/data/something/frames/76129/first.jpg", "AURORA/data/something/frames/76129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112109", "images": ["AURORA/data/something/frames/34028/first.jpg", "AURORA/data/something/frames/34028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and stapler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112110", "images": ["AURORA/data/something/frames/174854/first.jpg", "AURORA/data/something/frames/174854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the cover of a paperback book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112111", "images": ["AURORA/data/something/frames/123926/first.jpg", "AURORA/data/something/frames/123926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a glass jar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112112", "images": ["AURORA/data/something/frames/52630/first.jpg", "AURORA/data/something/frames/52630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112113", "images": ["AURORA/data/something/frames/207782/first.jpg", "AURORA/data/something/frames/207782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112114", "images": ["AURORA/data/something/frames/199509/first.jpg", "AURORA/data/something/frames/199509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112115", "images": ["AURORA/data/something/frames/167392/first.jpg", "AURORA/data/something/frames/167392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sweatshirt into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112116", "images": ["AURORA/data/something/frames/51768/first.jpg", "AURORA/data/something/frames/51768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coaster and remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112117", "images": ["AURORA/data/something/frames/8956/first.jpg", "AURORA/data/something/frames/8956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112118", "images": ["AURORA/data/something/frames/184905/first.jpg", "AURORA/data/something/frames/184905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112119", "images": ["AURORA/data/something/frames/157090/first.jpg", "AURORA/data/something/frames/157090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112120", "images": ["AURORA/data/something/frames/74973/first.jpg", "AURORA/data/something/frames/74973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cigarette pack with cigarette over, so cigarette falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112121", "images": ["AURORA/data/something/frames/19175/first.jpg", "AURORA/data/something/frames/19175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112122", "images": ["AURORA/data/something/frames/79595/first.jpg", "AURORA/data/something/frames/79595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a scarf so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112123", "images": ["AURORA/data/something/frames/135641/first.jpg", "AURORA/data/something/frames/135641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cellphone cord into outlet strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112124", "images": ["AURORA/data/something/frames/119177/first.jpg", "AURORA/data/something/frames/119177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coins into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112125", "images": ["AURORA/data/something/frames/215591/first.jpg", "AURORA/data/something/frames/215591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112126", "images": ["AURORA/data/something/frames/65550/first.jpg", "AURORA/data/something/frames/65550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glasses upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112127", "images": ["AURORA/data/something/frames/87257/first.jpg", "AURORA/data/something/frames/87257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112128", "images": ["AURORA/data/something/frames/128892/first.jpg", "AURORA/data/something/frames/128892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mobile phone cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000112129", "images": ["AURORA/data/something/frames/15179/first.jpg", "AURORA/data/something/frames/15179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting books into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112130", "images": ["AURORA/data/something/frames/25922/first.jpg", "AURORA/data/something/frames/25922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112131", "images": ["AURORA/data/something/frames/61424/first.jpg", "AURORA/data/something/frames/61424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the container of a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112132", "images": ["AURORA/data/something/frames/196340/first.jpg", "AURORA/data/something/frames/196340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin next to pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112133", "images": ["AURORA/data/something/frames/209619/first.jpg", "AURORA/data/something/frames/209619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000112134", "images": ["AURORA/data/something/frames/76217/first.jpg", "AURORA/data/something/frames/76217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000112135", "images": ["AURORA/data/something/frames/23480/first.jpg", "AURORA/data/something/frames/23480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle with a plastic lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112136", "images": ["AURORA/data/something/frames/209363/first.jpg", "AURORA/data/something/frames/209363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112137", "images": ["AURORA/data/something/frames/19620/first.jpg", "AURORA/data/something/frames/19620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a post-it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112138", "images": ["AURORA/data/something/frames/209686/first.jpg", "AURORA/data/something/frames/209686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving teddy bear and stuffed toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112139", "images": ["AURORA/data/something/frames/218248/first.jpg", "AURORA/data/something/frames/218248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling water bottle from behind of television"}, {"from": "gpt", "value": ""}]} +{"id": "000000112140", "images": ["AURORA/data/something/frames/62503/first.jpg", "AURORA/data/something/frames/62503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112141", "images": ["AURORA/data/something/frames/106326/first.jpg", "AURORA/data/something/frames/106326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112142", "images": ["AURORA/data/something/frames/65086/first.jpg", "AURORA/data/something/frames/65086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking discount cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000112143", "images": ["AURORA/data/something/frames/65220/first.jpg", "AURORA/data/something/frames/65220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening kitchen cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112144", "images": ["AURORA/data/something/frames/99106/first.jpg", "AURORA/data/something/frames/99106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pomegranate peel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112145", "images": ["AURORA/data/something/frames/121709/first.jpg", "AURORA/data/something/frames/121709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112146", "images": ["AURORA/data/something/frames/38160/first.jpg", "AURORA/data/something/frames/38160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112147", "images": ["AURORA/data/something/frames/122604/first.jpg", "AURORA/data/something/frames/122604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy idol next to hair band"}, {"from": "gpt", "value": ""}]} +{"id": "000000112148", "images": ["AURORA/data/something/frames/15724/first.jpg", "AURORA/data/something/frames/15724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering slippers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112149", "images": ["AURORA/data/something/frames/67525/first.jpg", "AURORA/data/something/frames/67525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange notebook from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112150", "images": ["AURORA/data/something/frames/214485/first.jpg", "AURORA/data/something/frames/214485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shampoo bottle and tumbler closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112151", "images": ["AURORA/data/something/frames/55951/first.jpg", "AURORA/data/something/frames/55951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cutting board with lid on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112152", "images": ["AURORA/data/something/frames/114957/first.jpg", "AURORA/data/something/frames/114957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112153", "images": ["AURORA/data/something/frames/212195/first.jpg", "AURORA/data/something/frames/212195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112154", "images": ["AURORA/data/something/frames/46965/first.jpg", "AURORA/data/something/frames/46965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000112155", "images": ["AURORA/data/something/frames/69508/first.jpg", "AURORA/data/something/frames/69508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112156", "images": ["AURORA/data/something/frames/73388/first.jpg", "AURORA/data/something/frames/73388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a hairclip next to a keybound"}, {"from": "gpt", "value": ""}]} +{"id": "000000112157", "images": ["AURORA/data/something/frames/150709/first.jpg", "AURORA/data/something/frames/150709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112158", "images": ["AURORA/data/something/frames/35063/first.jpg", "AURORA/data/something/frames/35063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blankets up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112159", "images": ["AURORA/data/something/frames/173258/first.jpg", "AURORA/data/something/frames/173258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cloth and cup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112160", "images": ["AURORA/data/something/frames/172225/first.jpg", "AURORA/data/something/frames/172225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into powerbank"}, {"from": "gpt", "value": ""}]} +{"id": "000000112161", "images": ["AURORA/data/something/frames/121085/first.jpg", "AURORA/data/something/frames/121085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112162", "images": ["AURORA/data/something/frames/188196/first.jpg", "AURORA/data/something/frames/188196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112163", "images": ["AURORA/data/something/frames/179063/first.jpg", "AURORA/data/something/frames/179063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000112164", "images": ["AURORA/data/something/frames/202040/first.jpg", "AURORA/data/something/frames/202040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112165", "images": ["AURORA/data/something/frames/191667/first.jpg", "AURORA/data/something/frames/191667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112166", "images": ["AURORA/data/something/frames/22216/first.jpg", "AURORA/data/something/frames/22216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting something up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112167", "images": ["AURORA/data/something/frames/136018/first.jpg", "AURORA/data/something/frames/136018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112168", "images": ["AURORA/data/something/frames/55635/first.jpg", "AURORA/data/something/frames/55635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112169", "images": ["AURORA/data/something/frames/18160/first.jpg", "AURORA/data/something/frames/18160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 sticky notes"}, {"from": "gpt", "value": ""}]} +{"id": "000000112170", "images": ["AURORA/data/something/frames/159330/first.jpg", "AURORA/data/something/frames/159330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping salt off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112171", "images": ["AURORA/data/something/frames/25499/first.jpg", "AURORA/data/something/frames/25499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a glasses case up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112172", "images": ["AURORA/data/something/frames/205981/first.jpg", "AURORA/data/something/frames/205981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering red spoon with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112173", "images": ["AURORA/data/something/frames/141930/first.jpg", "AURORA/data/something/frames/141930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mic and speaker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112174", "images": ["AURORA/data/something/frames/117960/first.jpg", "AURORA/data/something/frames/117960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking iron box from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112175", "images": ["AURORA/data/something/frames/128034/first.jpg", "AURORA/data/something/frames/128034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112176", "images": ["AURORA/data/something/frames/207810/first.jpg", "AURORA/data/something/frames/207810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112177", "images": ["AURORA/data/something/frames/131120/first.jpg", "AURORA/data/something/frames/131120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass next to other already on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112178", "images": ["AURORA/data/something/frames/55552/first.jpg", "AURORA/data/something/frames/55552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle into a vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000112179", "images": ["AURORA/data/something/frames/210371/first.jpg", "AURORA/data/something/frames/210371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112180", "images": ["AURORA/data/something/frames/134767/first.jpg", "AURORA/data/something/frames/134767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and ruler closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112181", "images": ["AURORA/data/something/frames/84729/first.jpg", "AURORA/data/something/frames/84729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a body pillow and a smaller pillow away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112182", "images": ["AURORA/data/something/frames/108841/first.jpg", "AURORA/data/something/frames/108841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wooden stick up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112183", "images": ["AURORA/data/something/frames/177590/first.jpg", "AURORA/data/something/frames/177590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112184", "images": ["AURORA/data/something/frames/98251/first.jpg", "AURORA/data/something/frames/98251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112185", "images": ["AURORA/data/something/frames/169292/first.jpg", "AURORA/data/something/frames/169292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000112186", "images": ["AURORA/data/something/frames/128494/first.jpg", "AURORA/data/something/frames/128494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112187", "images": ["AURORA/data/something/frames/209485/first.jpg", "AURORA/data/something/frames/209485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112188", "images": ["AURORA/data/something/frames/74815/first.jpg", "AURORA/data/something/frames/74815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112189", "images": ["AURORA/data/something/frames/91484/first.jpg", "AURORA/data/something/frames/91484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cigarette lighter in front of battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000112190", "images": ["AURORA/data/something/frames/67171/first.jpg", "AURORA/data/something/frames/67171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with bowl on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112191", "images": ["AURORA/data/something/frames/200433/first.jpg", "AURORA/data/something/frames/200433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving badge down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112192", "images": ["AURORA/data/something/frames/186285/first.jpg", "AURORA/data/something/frames/186285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cutting board upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112193", "images": ["AURORA/data/something/frames/71966/first.jpg", "AURORA/data/something/frames/71966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112194", "images": ["AURORA/data/something/frames/44816/first.jpg", "AURORA/data/something/frames/44816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can behind a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112195", "images": ["AURORA/data/something/frames/125234/first.jpg", "AURORA/data/something/frames/125234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone changer into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112196", "images": ["AURORA/data/something/frames/72541/first.jpg", "AURORA/data/something/frames/72541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112197", "images": ["AURORA/data/something/frames/195830/first.jpg", "AURORA/data/something/frames/195830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and notebook closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112198", "images": ["AURORA/data/something/frames/113707/first.jpg", "AURORA/data/something/frames/113707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering goggles with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112199", "images": ["AURORA/data/something/frames/218616/first.jpg", "AURORA/data/something/frames/218616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting coin with coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112200", "images": ["AURORA/data/something/frames/10101/first.jpg", "AURORA/data/something/frames/10101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cord into a bluetooth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112201", "images": ["AURORA/data/something/frames/217049/first.jpg", "AURORA/data/something/frames/217049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lime colliding with lime and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112202", "images": ["AURORA/data/something/frames/169945/first.jpg", "AURORA/data/something/frames/169945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting button"}, {"from": "gpt", "value": ""}]} +{"id": "000000112203", "images": ["AURORA/data/something/frames/47164/first.jpg", "AURORA/data/something/frames/47164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112204", "images": ["AURORA/data/something/frames/130407/first.jpg", "AURORA/data/something/frames/130407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking comb up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112205", "images": ["AURORA/data/something/frames/47739/first.jpg", "AURORA/data/something/frames/47739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112206", "images": ["AURORA/data/something/frames/134701/first.jpg", "AURORA/data/something/frames/134701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle and clip box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112207", "images": ["AURORA/data/something/frames/201473/first.jpg", "AURORA/data/something/frames/201473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into block"}, {"from": "gpt", "value": ""}]} +{"id": "000000112208", "images": ["AURORA/data/something/frames/46193/first.jpg", "AURORA/data/something/frames/46193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112209", "images": ["AURORA/data/something/frames/104061/first.jpg", "AURORA/data/something/frames/104061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mouse into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112210", "images": ["AURORA/data/something/frames/13680/first.jpg", "AURORA/data/something/frames/13680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook and pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112211", "images": ["AURORA/data/something/frames/136695/first.jpg", "AURORA/data/something/frames/136695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112212", "images": ["AURORA/data/something/frames/196329/first.jpg", "AURORA/data/something/frames/196329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112213", "images": ["AURORA/data/something/frames/157167/first.jpg", "AURORA/data/something/frames/157167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112214", "images": ["AURORA/data/something/frames/27048/first.jpg", "AURORA/data/something/frames/27048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112215", "images": ["AURORA/data/something/frames/202463/first.jpg", "AURORA/data/something/frames/202463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lipbalm off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112216", "images": ["AURORA/data/something/frames/188913/first.jpg", "AURORA/data/something/frames/188913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy wheel in front of rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112217", "images": ["AURORA/data/something/frames/161711/first.jpg", "AURORA/data/something/frames/161711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112218", "images": ["AURORA/data/something/frames/126217/first.jpg", "AURORA/data/something/frames/126217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and glass so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112219", "images": ["AURORA/data/something/frames/184814/first.jpg", "AURORA/data/something/frames/184814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112220", "images": ["AURORA/data/something/frames/208684/first.jpg", "AURORA/data/something/frames/208684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112221", "images": ["AURORA/data/something/frames/82785/first.jpg", "AURORA/data/something/frames/82785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112222", "images": ["AURORA/data/something/frames/68032/first.jpg", "AURORA/data/something/frames/68032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112223", "images": ["AURORA/data/something/frames/139515/first.jpg", "AURORA/data/something/frames/139515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112224", "images": ["AURORA/data/something/frames/144694/first.jpg", "AURORA/data/something/frames/144694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112225", "images": ["AURORA/data/something/frames/156446/first.jpg", "AURORA/data/something/frames/156446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching mega block to mega block"}, {"from": "gpt", "value": ""}]} +{"id": "000000112226", "images": ["AURORA/data/something/frames/134501/first.jpg", "AURORA/data/something/frames/134501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of shoes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112227", "images": ["AURORA/data/something/frames/192841/first.jpg", "AURORA/data/something/frames/192841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping trash can with trash over, so trash falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112228", "images": ["AURORA/data/something/frames/205853/first.jpg", "AURORA/data/something/frames/205853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse with mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112229", "images": ["AURORA/data/something/frames/169931/first.jpg", "AURORA/data/something/frames/169931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of blocks without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112230", "images": ["AURORA/data/something/frames/36593/first.jpg", "AURORA/data/something/frames/36593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ramekin closer to ramekin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112231", "images": ["AURORA/data/something/frames/189126/first.jpg", "AURORA/data/something/frames/189126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping candle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112232", "images": ["AURORA/data/something/frames/123552/first.jpg", "AURORA/data/something/frames/123552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into modelling clay"}, {"from": "gpt", "value": ""}]} +{"id": "000000112233", "images": ["AURORA/data/something/frames/211871/first.jpg", "AURORA/data/something/frames/211871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112234", "images": ["AURORA/data/something/frames/31012/first.jpg", "AURORA/data/something/frames/31012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillow off of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112235", "images": ["AURORA/data/something/frames/22782/first.jpg", "AURORA/data/something/frames/22782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112236", "images": ["AURORA/data/something/frames/30489/first.jpg", "AURORA/data/something/frames/30489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112237", "images": ["AURORA/data/something/frames/28285/first.jpg", "AURORA/data/something/frames/28285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112238", "images": ["AURORA/data/something/frames/80475/first.jpg", "AURORA/data/something/frames/80475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000112239", "images": ["AURORA/data/something/frames/120157/first.jpg", "AURORA/data/something/frames/120157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking salt shaker so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112240", "images": ["AURORA/data/something/frames/28041/first.jpg", "AURORA/data/something/frames/28041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000112241", "images": ["AURORA/data/something/frames/217373/first.jpg", "AURORA/data/something/frames/217373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing red dairy"}, {"from": "gpt", "value": ""}]} +{"id": "000000112242", "images": ["AURORA/data/something/frames/69584/first.jpg", "AURORA/data/something/frames/69584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stapler next to rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112243", "images": ["AURORA/data/something/frames/26489/first.jpg", "AURORA/data/something/frames/26489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering smartphone with recipe book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112244", "images": ["AURORA/data/something/frames/72400/first.jpg", "AURORA/data/something/frames/72400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a bowl, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112245", "images": ["AURORA/data/something/frames/152222/first.jpg", "AURORA/data/something/frames/152222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting radio up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112246", "images": ["AURORA/data/something/frames/137772/first.jpg", "AURORA/data/something/frames/137772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail polish from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112247", "images": ["AURORA/data/something/frames/130173/first.jpg", "AURORA/data/something/frames/130173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112248", "images": ["AURORA/data/something/frames/119812/first.jpg", "AURORA/data/something/frames/119812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112249", "images": ["AURORA/data/something/frames/168638/first.jpg", "AURORA/data/something/frames/168638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112250", "images": ["AURORA/data/something/frames/140274/first.jpg", "AURORA/data/something/frames/140274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000112251", "images": ["AURORA/data/something/frames/73957/first.jpg", "AURORA/data/something/frames/73957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112252", "images": ["AURORA/data/something/frames/66739/first.jpg", "AURORA/data/something/frames/66739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112253", "images": ["AURORA/data/something/frames/99234/first.jpg", "AURORA/data/something/frames/99234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling diaper from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112254", "images": ["AURORA/data/something/frames/142212/first.jpg", "AURORA/data/something/frames/142212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black pencil sharpner with screw driver"}, {"from": "gpt", "value": ""}]} +{"id": "000000112255", "images": ["AURORA/data/something/frames/133665/first.jpg", "AURORA/data/something/frames/133665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling can from behind of sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000112256", "images": ["AURORA/data/something/frames/27009/first.jpg", "AURORA/data/something/frames/27009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112257", "images": ["AURORA/data/something/frames/105273/first.jpg", "AURORA/data/something/frames/105273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keyboard up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112258", "images": ["AURORA/data/something/frames/122910/first.jpg", "AURORA/data/something/frames/122910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112259", "images": ["AURORA/data/something/frames/201889/first.jpg", "AURORA/data/something/frames/201889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112260", "images": ["AURORA/data/something/frames/132413/first.jpg", "AURORA/data/something/frames/132413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112261", "images": ["AURORA/data/something/frames/83984/first.jpg", "AURORA/data/something/frames/83984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112262", "images": ["AURORA/data/something/frames/69393/first.jpg", "AURORA/data/something/frames/69393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a onion from a cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000112263", "images": ["AURORA/data/something/frames/308/first.jpg", "AURORA/data/something/frames/308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112264", "images": ["AURORA/data/something/frames/103563/first.jpg", "AURORA/data/something/frames/103563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112265", "images": ["AURORA/data/something/frames/888/first.jpg", "AURORA/data/something/frames/888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading honey onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112266", "images": ["AURORA/data/something/frames/158964/first.jpg", "AURORA/data/something/frames/158964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112267", "images": ["AURORA/data/something/frames/103136/first.jpg", "AURORA/data/something/frames/103136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning body spray upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112268", "images": ["AURORA/data/something/frames/43350/first.jpg", "AURORA/data/something/frames/43350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112269", "images": ["AURORA/data/something/frames/186632/first.jpg", "AURORA/data/something/frames/186632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000112270", "images": ["AURORA/data/something/frames/153174/first.jpg", "AURORA/data/something/frames/153174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a feeding bottle in front of camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112271", "images": ["AURORA/data/something/frames/148014/first.jpg", "AURORA/data/something/frames/148014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spring and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112272", "images": ["AURORA/data/something/frames/178554/first.jpg", "AURORA/data/something/frames/178554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hairbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000112273", "images": ["AURORA/data/something/frames/180728/first.jpg", "AURORA/data/something/frames/180728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112274", "images": ["AURORA/data/something/frames/97039/first.jpg", "AURORA/data/something/frames/97039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000112275", "images": ["AURORA/data/something/frames/154372/first.jpg", "AURORA/data/something/frames/154372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting divide into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112276", "images": ["AURORA/data/something/frames/196092/first.jpg", "AURORA/data/something/frames/196092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112277", "images": ["AURORA/data/something/frames/179523/first.jpg", "AURORA/data/something/frames/179523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tube so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112278", "images": ["AURORA/data/something/frames/31045/first.jpg", "AURORA/data/something/frames/31045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a red pencil with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112279", "images": ["AURORA/data/something/frames/119257/first.jpg", "AURORA/data/something/frames/119257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the lipstick out of the purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112280", "images": ["AURORA/data/something/frames/98917/first.jpg", "AURORA/data/something/frames/98917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112281", "images": ["AURORA/data/something/frames/158789/first.jpg", "AURORA/data/something/frames/158789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into mug, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112282", "images": ["AURORA/data/something/frames/105173/first.jpg", "AURORA/data/something/frames/105173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112283", "images": ["AURORA/data/something/frames/91241/first.jpg", "AURORA/data/something/frames/91241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112284", "images": ["AURORA/data/something/frames/200417/first.jpg", "AURORA/data/something/frames/200417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a fan from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112285", "images": ["AURORA/data/something/frames/133738/first.jpg", "AURORA/data/something/frames/133738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black play cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112286", "images": ["AURORA/data/something/frames/182118/first.jpg", "AURORA/data/something/frames/182118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112287", "images": ["AURORA/data/something/frames/25013/first.jpg", "AURORA/data/something/frames/25013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three blocks onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112288", "images": ["AURORA/data/something/frames/154714/first.jpg", "AURORA/data/something/frames/154714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112289", "images": ["AURORA/data/something/frames/200099/first.jpg", "AURORA/data/something/frames/200099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lid behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112290", "images": ["AURORA/data/something/frames/82959/first.jpg", "AURORA/data/something/frames/82959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112291", "images": ["AURORA/data/something/frames/126933/first.jpg", "AURORA/data/something/frames/126933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pen upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112292", "images": ["AURORA/data/something/frames/210563/first.jpg", "AURORA/data/something/frames/210563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112293", "images": ["AURORA/data/something/frames/196448/first.jpg", "AURORA/data/something/frames/196448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail paint remover from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112294", "images": ["AURORA/data/something/frames/18814/first.jpg", "AURORA/data/something/frames/18814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coin with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112295", "images": ["AURORA/data/something/frames/47838/first.jpg", "AURORA/data/something/frames/47838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg next to an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000112296", "images": ["AURORA/data/something/frames/80909/first.jpg", "AURORA/data/something/frames/80909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hammer behind couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112297", "images": ["AURORA/data/something/frames/174093/first.jpg", "AURORA/data/something/frames/174093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and spoon closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112298", "images": ["AURORA/data/something/frames/145648/first.jpg", "AURORA/data/something/frames/145648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming books"}, {"from": "gpt", "value": ""}]} +{"id": "000000112299", "images": ["AURORA/data/something/frames/67036/first.jpg", "AURORA/data/something/frames/67036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mug with cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000112300", "images": ["AURORA/data/something/frames/60895/first.jpg", "AURORA/data/something/frames/60895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a stuffed animal off of a couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112301", "images": ["AURORA/data/something/frames/47614/first.jpg", "AURORA/data/something/frames/47614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112302", "images": ["AURORA/data/something/frames/219934/first.jpg", "AURORA/data/something/frames/219934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rice up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112303", "images": ["AURORA/data/something/frames/83595/first.jpg", "AURORA/data/something/frames/83595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking muffin out of bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112304", "images": ["AURORA/data/something/frames/99298/first.jpg", "AURORA/data/something/frames/99298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112305", "images": ["AURORA/data/something/frames/87436/first.jpg", "AURORA/data/something/frames/87436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spoon from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112306", "images": ["AURORA/data/something/frames/42282/first.jpg", "AURORA/data/something/frames/42282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112307", "images": ["AURORA/data/something/frames/169352/first.jpg", "AURORA/data/something/frames/169352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112308", "images": ["AURORA/data/something/frames/194764/first.jpg", "AURORA/data/something/frames/194764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112309", "images": ["AURORA/data/something/frames/34597/first.jpg", "AURORA/data/something/frames/34597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming black hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000112310", "images": ["AURORA/data/something/frames/195603/first.jpg", "AURORA/data/something/frames/195603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of ceramic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112311", "images": ["AURORA/data/something/frames/13187/first.jpg", "AURORA/data/something/frames/13187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112312", "images": ["AURORA/data/something/frames/196741/first.jpg", "AURORA/data/something/frames/196741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling wine onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112313", "images": ["AURORA/data/something/frames/65035/first.jpg", "AURORA/data/something/frames/65035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting peeler, keychain and mobile on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112314", "images": ["AURORA/data/something/frames/103776/first.jpg", "AURORA/data/something/frames/103776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112315", "images": ["AURORA/data/something/frames/195531/first.jpg", "AURORA/data/something/frames/195531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car onto ramp"}, {"from": "gpt", "value": ""}]} +{"id": "000000112316", "images": ["AURORA/data/something/frames/19011/first.jpg", "AURORA/data/something/frames/19011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of tablet without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112317", "images": ["AURORA/data/something/frames/54567/first.jpg", "AURORA/data/something/frames/54567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a paper to a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112318", "images": ["AURORA/data/something/frames/59030/first.jpg", "AURORA/data/something/frames/59030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112319", "images": ["AURORA/data/something/frames/103475/first.jpg", "AURORA/data/something/frames/103475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112320", "images": ["AURORA/data/something/frames/195913/first.jpg", "AURORA/data/something/frames/195913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a small container from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112321", "images": ["AURORA/data/something/frames/128896/first.jpg", "AURORA/data/something/frames/128896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling dessert sprinkles onto a piece of pie."}, {"from": "gpt", "value": ""}]} +{"id": "000000112322", "images": ["AURORA/data/something/frames/91013/first.jpg", "AURORA/data/something/frames/91013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112323", "images": ["AURORA/data/something/frames/113236/first.jpg", "AURORA/data/something/frames/113236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112324", "images": ["AURORA/data/something/frames/204394/first.jpg", "AURORA/data/something/frames/204394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mobile phone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112325", "images": ["AURORA/data/something/frames/110208/first.jpg", "AURORA/data/something/frames/110208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying lamp on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112326", "images": ["AURORA/data/something/frames/33688/first.jpg", "AURORA/data/something/frames/33688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control, wallet and mechanical pencil on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112327", "images": ["AURORA/data/something/frames/51970/first.jpg", "AURORA/data/something/frames/51970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening water tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000112328", "images": ["AURORA/data/something/frames/5226/first.jpg", "AURORA/data/something/frames/5226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wood spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112329", "images": ["AURORA/data/something/frames/59701/first.jpg", "AURORA/data/something/frames/59701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smarthphone and book closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112330", "images": ["AURORA/data/something/frames/55716/first.jpg", "AURORA/data/something/frames/55716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112331", "images": ["AURORA/data/something/frames/143265/first.jpg", "AURORA/data/something/frames/143265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112332", "images": ["AURORA/data/something/frames/204770/first.jpg", "AURORA/data/something/frames/204770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112333", "images": ["AURORA/data/something/frames/4761/first.jpg", "AURORA/data/something/frames/4761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112334", "images": ["AURORA/data/something/frames/152138/first.jpg", "AURORA/data/something/frames/152138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubber onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112335", "images": ["AURORA/data/something/frames/207247/first.jpg", "AURORA/data/something/frames/207247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112336", "images": ["AURORA/data/something/frames/214128/first.jpg", "AURORA/data/something/frames/214128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112337", "images": ["AURORA/data/something/frames/134649/first.jpg", "AURORA/data/something/frames/134649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lotion tube with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112338", "images": ["AURORA/data/something/frames/72451/first.jpg", "AURORA/data/something/frames/72451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging auxiliary cord into speaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000112339", "images": ["AURORA/data/something/frames/122071/first.jpg", "AURORA/data/something/frames/122071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112340", "images": ["AURORA/data/something/frames/55781/first.jpg", "AURORA/data/something/frames/55781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white book marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112341", "images": ["AURORA/data/something/frames/94975/first.jpg", "AURORA/data/something/frames/94975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the purse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112342", "images": ["AURORA/data/something/frames/218589/first.jpg", "AURORA/data/something/frames/218589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112343", "images": ["AURORA/data/something/frames/114783/first.jpg", "AURORA/data/something/frames/114783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book in front of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112344", "images": ["AURORA/data/something/frames/6039/first.jpg", "AURORA/data/something/frames/6039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112345", "images": ["AURORA/data/something/frames/15065/first.jpg", "AURORA/data/something/frames/15065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112346", "images": ["AURORA/data/something/frames/174755/first.jpg", "AURORA/data/something/frames/174755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tie so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112347", "images": ["AURORA/data/something/frames/180180/first.jpg", "AURORA/data/something/frames/180180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with cutter and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112348", "images": ["AURORA/data/something/frames/143971/first.jpg", "AURORA/data/something/frames/143971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112349", "images": ["AURORA/data/something/frames/65016/first.jpg", "AURORA/data/something/frames/65016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112350", "images": ["AURORA/data/something/frames/90817/first.jpg", "AURORA/data/something/frames/90817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tyre with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112351", "images": ["AURORA/data/something/frames/123961/first.jpg", "AURORA/data/something/frames/123961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil onto stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000112352", "images": ["AURORA/data/something/frames/74258/first.jpg", "AURORA/data/something/frames/74258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112353", "images": ["AURORA/data/something/frames/88816/first.jpg", "AURORA/data/something/frames/88816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112354", "images": ["AURORA/data/something/frames/202337/first.jpg", "AURORA/data/something/frames/202337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112355", "images": ["AURORA/data/something/frames/92833/first.jpg", "AURORA/data/something/frames/92833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing telephone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112356", "images": ["AURORA/data/something/frames/8959/first.jpg", "AURORA/data/something/frames/8959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112357", "images": ["AURORA/data/something/frames/63719/first.jpg", "AURORA/data/something/frames/63719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking sunglasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112358", "images": ["AURORA/data/something/frames/158781/first.jpg", "AURORA/data/something/frames/158781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wrapper into the garbage"}, {"from": "gpt", "value": ""}]} +{"id": "000000112359", "images": ["AURORA/data/something/frames/220773/first.jpg", "AURORA/data/something/frames/220773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000112360", "images": ["AURORA/data/something/frames/164036/first.jpg", "AURORA/data/something/frames/164036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lipstick from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112361", "images": ["AURORA/data/something/frames/161282/first.jpg", "AURORA/data/something/frames/161282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000112362", "images": ["AURORA/data/something/frames/67333/first.jpg", "AURORA/data/something/frames/67333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112363", "images": ["AURORA/data/something/frames/153746/first.jpg", "AURORA/data/something/frames/153746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping lotion tube over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112364", "images": ["AURORA/data/something/frames/16654/first.jpg", "AURORA/data/something/frames/16654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a scrunchie off of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112365", "images": ["AURORA/data/something/frames/69817/first.jpg", "AURORA/data/something/frames/69817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000112366", "images": ["AURORA/data/something/frames/207574/first.jpg", "AURORA/data/something/frames/207574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting down another clementine"}, {"from": "gpt", "value": ""}]} +{"id": "000000112367", "images": ["AURORA/data/something/frames/207000/first.jpg", "AURORA/data/something/frames/207000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the body of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112368", "images": ["AURORA/data/something/frames/13717/first.jpg", "AURORA/data/something/frames/13717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping formula up with measuring scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112369", "images": ["AURORA/data/something/frames/62126/first.jpg", "AURORA/data/something/frames/62126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a closed disposable water bottle with a can of beans"}, {"from": "gpt", "value": ""}]} +{"id": "000000112370", "images": ["AURORA/data/something/frames/94398/first.jpg", "AURORA/data/something/frames/94398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screw down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112371", "images": ["AURORA/data/something/frames/86407/first.jpg", "AURORA/data/something/frames/86407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112372", "images": ["AURORA/data/something/frames/123478/first.jpg", "AURORA/data/something/frames/123478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair clip, toy idol and battery on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112373", "images": ["AURORA/data/something/frames/211586/first.jpg", "AURORA/data/something/frames/211586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon closer to stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000112374", "images": ["AURORA/data/something/frames/55874/first.jpg", "AURORA/data/something/frames/55874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the back cover of a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000112375", "images": ["AURORA/data/something/frames/77668/first.jpg", "AURORA/data/something/frames/77668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000112376", "images": ["AURORA/data/something/frames/79321/first.jpg", "AURORA/data/something/frames/79321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112377", "images": ["AURORA/data/something/frames/16665/first.jpg", "AURORA/data/something/frames/16665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a penny with a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000112378", "images": ["AURORA/data/something/frames/70008/first.jpg", "AURORA/data/something/frames/70008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing joystick with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112379", "images": ["AURORA/data/something/frames/182537/first.jpg", "AURORA/data/something/frames/182537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112380", "images": ["AURORA/data/something/frames/90592/first.jpg", "AURORA/data/something/frames/90592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112381", "images": ["AURORA/data/something/frames/54649/first.jpg", "AURORA/data/something/frames/54649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book onto a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112382", "images": ["AURORA/data/something/frames/69453/first.jpg", "AURORA/data/something/frames/69453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping die up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112383", "images": ["AURORA/data/something/frames/99183/first.jpg", "AURORA/data/something/frames/99183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler and puncher closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112384", "images": ["AURORA/data/something/frames/92536/first.jpg", "AURORA/data/something/frames/92536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112385", "images": ["AURORA/data/something/frames/161588/first.jpg", "AURORA/data/something/frames/161588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112386", "images": ["AURORA/data/something/frames/7474/first.jpg", "AURORA/data/something/frames/7474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup from coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000112387", "images": ["AURORA/data/something/frames/165846/first.jpg", "AURORA/data/something/frames/165846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112388", "images": ["AURORA/data/something/frames/193958/first.jpg", "AURORA/data/something/frames/193958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: red marker colliding with blue marker and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112389", "images": ["AURORA/data/something/frames/27512/first.jpg", "AURORA/data/something/frames/27512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112390", "images": ["AURORA/data/something/frames/188276/first.jpg", "AURORA/data/something/frames/188276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cigarette lighter with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112391", "images": ["AURORA/data/something/frames/204623/first.jpg", "AURORA/data/something/frames/204623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of tennis ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000112392", "images": ["AURORA/data/something/frames/68903/first.jpg", "AURORA/data/something/frames/68903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending candle until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112393", "images": ["AURORA/data/something/frames/75628/first.jpg", "AURORA/data/something/frames/75628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112394", "images": ["AURORA/data/something/frames/81852/first.jpg", "AURORA/data/something/frames/81852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing receipt into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112395", "images": ["AURORA/data/something/frames/157454/first.jpg", "AURORA/data/something/frames/157454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a pillow in a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112396", "images": ["AURORA/data/something/frames/22937/first.jpg", "AURORA/data/something/frames/22937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 books onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112397", "images": ["AURORA/data/something/frames/198806/first.jpg", "AURORA/data/something/frames/198806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112398", "images": ["AURORA/data/something/frames/135586/first.jpg", "AURORA/data/something/frames/135586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass and keys on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112399", "images": ["AURORA/data/something/frames/69392/first.jpg", "AURORA/data/something/frames/69392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000112400", "images": ["AURORA/data/something/frames/149338/first.jpg", "AURORA/data/something/frames/149338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112401", "images": ["AURORA/data/something/frames/201811/first.jpg", "AURORA/data/something/frames/201811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112402", "images": ["AURORA/data/something/frames/199206/first.jpg", "AURORA/data/something/frames/199206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black disc case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112403", "images": ["AURORA/data/something/frames/110594/first.jpg", "AURORA/data/something/frames/110594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shaver from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112404", "images": ["AURORA/data/something/frames/24623/first.jpg", "AURORA/data/something/frames/24623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cufflinks with a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112405", "images": ["AURORA/data/something/frames/64267/first.jpg", "AURORA/data/something/frames/64267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book onto can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112406", "images": ["AURORA/data/something/frames/32654/first.jpg", "AURORA/data/something/frames/32654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving figurine across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112407", "images": ["AURORA/data/something/frames/217678/first.jpg", "AURORA/data/something/frames/217678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112408", "images": ["AURORA/data/something/frames/71008/first.jpg", "AURORA/data/something/frames/71008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking nail polish so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112409", "images": ["AURORA/data/something/frames/94380/first.jpg", "AURORA/data/something/frames/94380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112410", "images": ["AURORA/data/something/frames/77208/first.jpg", "AURORA/data/something/frames/77208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112411", "images": ["AURORA/data/something/frames/136909/first.jpg", "AURORA/data/something/frames/136909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112412", "images": ["AURORA/data/something/frames/174077/first.jpg", "AURORA/data/something/frames/174077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112413", "images": ["AURORA/data/something/frames/28931/first.jpg", "AURORA/data/something/frames/28931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking fan pole so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112414", "images": ["AURORA/data/something/frames/161387/first.jpg", "AURORA/data/something/frames/161387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112415", "images": ["AURORA/data/something/frames/46164/first.jpg", "AURORA/data/something/frames/46164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sun glasses into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000112416", "images": ["AURORA/data/something/frames/204706/first.jpg", "AURORA/data/something/frames/204706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112417", "images": ["AURORA/data/something/frames/42068/first.jpg", "AURORA/data/something/frames/42068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112418", "images": ["AURORA/data/something/frames/5709/first.jpg", "AURORA/data/something/frames/5709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112419", "images": ["AURORA/data/something/frames/153520/first.jpg", "AURORA/data/something/frames/153520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112420", "images": ["AURORA/data/something/frames/175280/first.jpg", "AURORA/data/something/frames/175280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on the edge of box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112421", "images": ["AURORA/data/something/frames/1489/first.jpg", "AURORA/data/something/frames/1489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a candle with a key"}, {"from": "gpt", "value": ""}]} +{"id": "000000112422", "images": ["AURORA/data/something/frames/208897/first.jpg", "AURORA/data/something/frames/208897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112423", "images": ["AURORA/data/something/frames/173377/first.jpg", "AURORA/data/something/frames/173377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112424", "images": ["AURORA/data/something/frames/12565/first.jpg", "AURORA/data/something/frames/12565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112425", "images": ["AURORA/data/something/frames/201860/first.jpg", "AURORA/data/something/frames/201860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a speaker over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112426", "images": ["AURORA/data/something/frames/69324/first.jpg", "AURORA/data/something/frames/69324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112427", "images": ["AURORA/data/something/frames/147227/first.jpg", "AURORA/data/something/frames/147227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000112428", "images": ["AURORA/data/something/frames/128777/first.jpg", "AURORA/data/something/frames/128777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming small book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112429", "images": ["AURORA/data/something/frames/180703/first.jpg", "AURORA/data/something/frames/180703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112430", "images": ["AURORA/data/something/frames/199977/first.jpg", "AURORA/data/something/frames/199977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112431", "images": ["AURORA/data/something/frames/133702/first.jpg", "AURORA/data/something/frames/133702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking nailpolish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112432", "images": ["AURORA/data/something/frames/46397/first.jpg", "AURORA/data/something/frames/46397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112433", "images": ["AURORA/data/something/frames/159589/first.jpg", "AURORA/data/something/frames/159589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming small book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112434", "images": ["AURORA/data/something/frames/23170/first.jpg", "AURORA/data/something/frames/23170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lever of hole punch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112435", "images": ["AURORA/data/something/frames/190404/first.jpg", "AURORA/data/something/frames/190404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting calculator with pink coloured hair clip on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112436", "images": ["AURORA/data/something/frames/155078/first.jpg", "AURORA/data/something/frames/155078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle and a candle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112437", "images": ["AURORA/data/something/frames/51959/first.jpg", "AURORA/data/something/frames/51959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling toothbrushes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112438", "images": ["AURORA/data/something/frames/17226/first.jpg", "AURORA/data/something/frames/17226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 napkins"}, {"from": "gpt", "value": ""}]} +{"id": "000000112439", "images": ["AURORA/data/something/frames/175036/first.jpg", "AURORA/data/something/frames/175036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112440", "images": ["AURORA/data/something/frames/72216/first.jpg", "AURORA/data/something/frames/72216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bag so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112441", "images": ["AURORA/data/something/frames/74960/first.jpg", "AURORA/data/something/frames/74960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling gymnastic bands from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112442", "images": ["AURORA/data/something/frames/117452/first.jpg", "AURORA/data/something/frames/117452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112443", "images": ["AURORA/data/something/frames/203338/first.jpg", "AURORA/data/something/frames/203338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112444", "images": ["AURORA/data/something/frames/131553/first.jpg", "AURORA/data/something/frames/131553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112445", "images": ["AURORA/data/something/frames/61122/first.jpg", "AURORA/data/something/frames/61122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112446", "images": ["AURORA/data/something/frames/102724/first.jpg", "AURORA/data/something/frames/102724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112447", "images": ["AURORA/data/something/frames/62808/first.jpg", "AURORA/data/something/frames/62808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112448", "images": ["AURORA/data/something/frames/156897/first.jpg", "AURORA/data/something/frames/156897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000112449", "images": ["AURORA/data/something/frames/70876/first.jpg", "AURORA/data/something/frames/70876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange being deflected from wascher"}, {"from": "gpt", "value": ""}]} +{"id": "000000112450", "images": ["AURORA/data/something/frames/125341/first.jpg", "AURORA/data/something/frames/125341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pencil case over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112451", "images": ["AURORA/data/something/frames/51349/first.jpg", "AURORA/data/something/frames/51349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112452", "images": ["AURORA/data/something/frames/179941/first.jpg", "AURORA/data/something/frames/179941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting four screws onto magnetic tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000112453", "images": ["AURORA/data/something/frames/114937/first.jpg", "AURORA/data/something/frames/114937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving can away from funnel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112454", "images": ["AURORA/data/something/frames/127517/first.jpg", "AURORA/data/something/frames/127517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a bowl with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112455", "images": ["AURORA/data/something/frames/207800/first.jpg", "AURORA/data/something/frames/207800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112456", "images": ["AURORA/data/something/frames/30972/first.jpg", "AURORA/data/something/frames/30972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112457", "images": ["AURORA/data/something/frames/101032/first.jpg", "AURORA/data/something/frames/101032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass underneath a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000112458", "images": ["AURORA/data/something/frames/45776/first.jpg", "AURORA/data/something/frames/45776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a chair with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112459", "images": ["AURORA/data/something/frames/196334/first.jpg", "AURORA/data/something/frames/196334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair band next to tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112460", "images": ["AURORA/data/something/frames/99863/first.jpg", "AURORA/data/something/frames/99863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112461", "images": ["AURORA/data/something/frames/13168/first.jpg", "AURORA/data/something/frames/13168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing colorful scarf from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112462", "images": ["AURORA/data/something/frames/78718/first.jpg", "AURORA/data/something/frames/78718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wipe out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112463", "images": ["AURORA/data/something/frames/80006/first.jpg", "AURORA/data/something/frames/80006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping bottle cap off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112464", "images": ["AURORA/data/something/frames/89840/first.jpg", "AURORA/data/something/frames/89840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112465", "images": ["AURORA/data/something/frames/134316/first.jpg", "AURORA/data/something/frames/134316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) body of stethescope"}, {"from": "gpt", "value": ""}]} +{"id": "000000112466", "images": ["AURORA/data/something/frames/182267/first.jpg", "AURORA/data/something/frames/182267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112467", "images": ["AURORA/data/something/frames/132986/first.jpg", "AURORA/data/something/frames/132986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from person with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112468", "images": ["AURORA/data/something/frames/158027/first.jpg", "AURORA/data/something/frames/158027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding calendar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112469", "images": ["AURORA/data/something/frames/216706/first.jpg", "AURORA/data/something/frames/216706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat, box and glasses on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112470", "images": ["AURORA/data/something/frames/154658/first.jpg", "AURORA/data/something/frames/154658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000112471", "images": ["AURORA/data/something/frames/145892/first.jpg", "AURORA/data/something/frames/145892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the arm of a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000112472", "images": ["AURORA/data/something/frames/180510/first.jpg", "AURORA/data/something/frames/180510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen away from a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112473", "images": ["AURORA/data/something/frames/47351/first.jpg", "AURORA/data/something/frames/47351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112474", "images": ["AURORA/data/something/frames/125602/first.jpg", "AURORA/data/something/frames/125602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairclip on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112475", "images": ["AURORA/data/something/frames/192997/first.jpg", "AURORA/data/something/frames/192997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112476", "images": ["AURORA/data/something/frames/79647/first.jpg", "AURORA/data/something/frames/79647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112477", "images": ["AURORA/data/something/frames/199158/first.jpg", "AURORA/data/something/frames/199158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening clothes dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112478", "images": ["AURORA/data/something/frames/10647/first.jpg", "AURORA/data/something/frames/10647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic tin, watch and clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112479", "images": ["AURORA/data/something/frames/115444/first.jpg", "AURORA/data/something/frames/115444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wallet with a medicine bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112480", "images": ["AURORA/data/something/frames/200114/first.jpg", "AURORA/data/something/frames/200114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from painting with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112481", "images": ["AURORA/data/something/frames/109434/first.jpg", "AURORA/data/something/frames/109434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler away from duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000112482", "images": ["AURORA/data/something/frames/42322/first.jpg", "AURORA/data/something/frames/42322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissue box off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112483", "images": ["AURORA/data/something/frames/141962/first.jpg", "AURORA/data/something/frames/141962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet closer to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112484", "images": ["AURORA/data/something/frames/165808/first.jpg", "AURORA/data/something/frames/165808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic case up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112485", "images": ["AURORA/data/something/frames/19406/first.jpg", "AURORA/data/something/frames/19406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a glove up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112486", "images": ["AURORA/data/something/frames/175215/first.jpg", "AURORA/data/something/frames/175215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tailoring tap with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112487", "images": ["AURORA/data/something/frames/105727/first.jpg", "AURORA/data/something/frames/105727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen cap onto pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112488", "images": ["AURORA/data/something/frames/153038/first.jpg", "AURORA/data/something/frames/153038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112489", "images": ["AURORA/data/something/frames/32836/first.jpg", "AURORA/data/something/frames/32836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112490", "images": ["AURORA/data/something/frames/63388/first.jpg", "AURORA/data/something/frames/63388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112491", "images": ["AURORA/data/something/frames/215516/first.jpg", "AURORA/data/something/frames/215516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lotion into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112492", "images": ["AURORA/data/something/frames/1268/first.jpg", "AURORA/data/something/frames/1268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112493", "images": ["AURORA/data/something/frames/48774/first.jpg", "AURORA/data/something/frames/48774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming colorful scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000112494", "images": ["AURORA/data/something/frames/86665/first.jpg", "AURORA/data/something/frames/86665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil colliding with a pack of tissu and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112495", "images": ["AURORA/data/something/frames/40673/first.jpg", "AURORA/data/something/frames/40673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into bedsheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112496", "images": ["AURORA/data/something/frames/190378/first.jpg", "AURORA/data/something/frames/190378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112497", "images": ["AURORA/data/something/frames/9701/first.jpg", "AURORA/data/something/frames/9701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112498", "images": ["AURORA/data/something/frames/187933/first.jpg", "AURORA/data/something/frames/187933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristband up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112499", "images": ["AURORA/data/something/frames/123812/first.jpg", "AURORA/data/something/frames/123812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112500", "images": ["AURORA/data/something/frames/24965/first.jpg", "AURORA/data/something/frames/24965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a doll out of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112501", "images": ["AURORA/data/something/frames/15579/first.jpg", "AURORA/data/something/frames/15579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a snowman so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112502", "images": ["AURORA/data/something/frames/67970/first.jpg", "AURORA/data/something/frames/67970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container and container so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112503", "images": ["AURORA/data/something/frames/132151/first.jpg", "AURORA/data/something/frames/132151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing advent calendar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112504", "images": ["AURORA/data/something/frames/74431/first.jpg", "AURORA/data/something/frames/74431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into phone charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000112505", "images": ["AURORA/data/something/frames/101676/first.jpg", "AURORA/data/something/frames/101676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable of charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000112506", "images": ["AURORA/data/something/frames/133130/first.jpg", "AURORA/data/something/frames/133130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a banana onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112507", "images": ["AURORA/data/something/frames/81505/first.jpg", "AURORA/data/something/frames/81505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying dental floss on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112508", "images": ["AURORA/data/something/frames/156153/first.jpg", "AURORA/data/something/frames/156153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112509", "images": ["AURORA/data/something/frames/11134/first.jpg", "AURORA/data/something/frames/11134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112510", "images": ["AURORA/data/something/frames/185387/first.jpg", "AURORA/data/something/frames/185387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112511", "images": ["AURORA/data/something/frames/149200/first.jpg", "AURORA/data/something/frames/149200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112512", "images": ["AURORA/data/something/frames/52832/first.jpg", "AURORA/data/something/frames/52832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lamp knob"}, {"from": "gpt", "value": ""}]} +{"id": "000000112513", "images": ["AURORA/data/something/frames/27728/first.jpg", "AURORA/data/something/frames/27728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into extension cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112514", "images": ["AURORA/data/something/frames/215000/first.jpg", "AURORA/data/something/frames/215000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112515", "images": ["AURORA/data/something/frames/17337/first.jpg", "AURORA/data/something/frames/17337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a skateboard colliding with a toy car and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112516", "images": ["AURORA/data/something/frames/150712/first.jpg", "AURORA/data/something/frames/150712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112517", "images": ["AURORA/data/something/frames/172411/first.jpg", "AURORA/data/something/frames/172411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112518", "images": ["AURORA/data/something/frames/154959/first.jpg", "AURORA/data/something/frames/154959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching coconuts with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112519", "images": ["AURORA/data/something/frames/144629/first.jpg", "AURORA/data/something/frames/144629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112520", "images": ["AURORA/data/something/frames/210725/first.jpg", "AURORA/data/something/frames/210725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup onto the television"}, {"from": "gpt", "value": ""}]} +{"id": "000000112521", "images": ["AURORA/data/something/frames/3797/first.jpg", "AURORA/data/something/frames/3797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112522", "images": ["AURORA/data/something/frames/52720/first.jpg", "AURORA/data/something/frames/52720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass onto a tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000112523", "images": ["AURORA/data/something/frames/48888/first.jpg", "AURORA/data/something/frames/48888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking mobile up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112524", "images": ["AURORA/data/something/frames/180149/first.jpg", "AURORA/data/something/frames/180149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112525", "images": ["AURORA/data/something/frames/146836/first.jpg", "AURORA/data/something/frames/146836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112526", "images": ["AURORA/data/something/frames/161271/first.jpg", "AURORA/data/something/frames/161271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cleaning fluid off of goggles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112527", "images": ["AURORA/data/something/frames/158283/first.jpg", "AURORA/data/something/frames/158283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter and scissors away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112528", "images": ["AURORA/data/something/frames/53727/first.jpg", "AURORA/data/something/frames/53727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lid, saucepan and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112529", "images": ["AURORA/data/something/frames/73175/first.jpg", "AURORA/data/something/frames/73175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging the usb cable into the laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112530", "images": ["AURORA/data/something/frames/106928/first.jpg", "AURORA/data/something/frames/106928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ice tray colliding with thermocol and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112531", "images": ["AURORA/data/something/frames/139391/first.jpg", "AURORA/data/something/frames/139391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a matchbox away from a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000112532", "images": ["AURORA/data/something/frames/164792/first.jpg", "AURORA/data/something/frames/164792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yellow colour pen among the many colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112533", "images": ["AURORA/data/something/frames/144262/first.jpg", "AURORA/data/something/frames/144262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112534", "images": ["AURORA/data/something/frames/207471/first.jpg", "AURORA/data/something/frames/207471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling colony onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112535", "images": ["AURORA/data/something/frames/158786/first.jpg", "AURORA/data/something/frames/158786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112536", "images": ["AURORA/data/something/frames/216472/first.jpg", "AURORA/data/something/frames/216472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking red pot holder up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112537", "images": ["AURORA/data/something/frames/100180/first.jpg", "AURORA/data/something/frames/100180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 toy wheels"}, {"from": "gpt", "value": ""}]} +{"id": "000000112538", "images": ["AURORA/data/something/frames/33185/first.jpg", "AURORA/data/something/frames/33185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading matches onto the freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112539", "images": ["AURORA/data/something/frames/18622/first.jpg", "AURORA/data/something/frames/18622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112540", "images": ["AURORA/data/something/frames/130939/first.jpg", "AURORA/data/something/frames/130939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing 4 layers of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112541", "images": ["AURORA/data/something/frames/38014/first.jpg", "AURORA/data/something/frames/38014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying guitar pick in rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000112542", "images": ["AURORA/data/something/frames/151203/first.jpg", "AURORA/data/something/frames/151203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wipe wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112543", "images": ["AURORA/data/something/frames/69177/first.jpg", "AURORA/data/something/frames/69177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000112544", "images": ["AURORA/data/something/frames/108191/first.jpg", "AURORA/data/something/frames/108191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112545", "images": ["AURORA/data/something/frames/122550/first.jpg", "AURORA/data/something/frames/122550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dental floss and nail clippers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112546", "images": ["AURORA/data/something/frames/99048/first.jpg", "AURORA/data/something/frames/99048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112547", "images": ["AURORA/data/something/frames/38477/first.jpg", "AURORA/data/something/frames/38477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112548", "images": ["AURORA/data/something/frames/112316/first.jpg", "AURORA/data/something/frames/112316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting digger with car"}, {"from": "gpt", "value": ""}]} +{"id": "000000112549", "images": ["AURORA/data/something/frames/188672/first.jpg", "AURORA/data/something/frames/188672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112550", "images": ["AURORA/data/something/frames/57530/first.jpg", "AURORA/data/something/frames/57530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tissue out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112551", "images": ["AURORA/data/something/frames/60990/first.jpg", "AURORA/data/something/frames/60990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clay box into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112552", "images": ["AURORA/data/something/frames/30233/first.jpg", "AURORA/data/something/frames/30233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112553", "images": ["AURORA/data/something/frames/186133/first.jpg", "AURORA/data/something/frames/186133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 smoothie, ashtray, paper, monster"}, {"from": "gpt", "value": ""}]} +{"id": "000000112554", "images": ["AURORA/data/something/frames/211653/first.jpg", "AURORA/data/something/frames/211653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112555", "images": ["AURORA/data/something/frames/208741/first.jpg", "AURORA/data/something/frames/208741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing water tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112556", "images": ["AURORA/data/something/frames/178202/first.jpg", "AURORA/data/something/frames/178202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112557", "images": ["AURORA/data/something/frames/116810/first.jpg", "AURORA/data/something/frames/116810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112558", "images": ["AURORA/data/something/frames/106519/first.jpg", "AURORA/data/something/frames/106519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lid into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112559", "images": ["AURORA/data/something/frames/66165/first.jpg", "AURORA/data/something/frames/66165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking magnifying glass from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112560", "images": ["AURORA/data/something/frames/91110/first.jpg", "AURORA/data/something/frames/91110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sharpie so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112561", "images": ["AURORA/data/something/frames/207558/first.jpg", "AURORA/data/something/frames/207558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a stick up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112562", "images": ["AURORA/data/something/frames/41845/first.jpg", "AURORA/data/something/frames/41845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112563", "images": ["AURORA/data/something/frames/145994/first.jpg", "AURORA/data/something/frames/145994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000112564", "images": ["AURORA/data/something/frames/144449/first.jpg", "AURORA/data/something/frames/144449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112565", "images": ["AURORA/data/something/frames/83759/first.jpg", "AURORA/data/something/frames/83759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112566", "images": ["AURORA/data/something/frames/218125/first.jpg", "AURORA/data/something/frames/218125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112567", "images": ["AURORA/data/something/frames/58427/first.jpg", "AURORA/data/something/frames/58427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into a group of pen like objects"}, {"from": "gpt", "value": ""}]} +{"id": "000000112568", "images": ["AURORA/data/something/frames/72951/first.jpg", "AURORA/data/something/frames/72951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112569", "images": ["AURORA/data/something/frames/2583/first.jpg", "AURORA/data/something/frames/2583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tennis ball being deflected from bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112570", "images": ["AURORA/data/something/frames/49346/first.jpg", "AURORA/data/something/frames/49346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112571", "images": ["AURORA/data/something/frames/29848/first.jpg", "AURORA/data/something/frames/29848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112572", "images": ["AURORA/data/something/frames/72618/first.jpg", "AURORA/data/something/frames/72618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling spoon from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112573", "images": ["AURORA/data/something/frames/16026/first.jpg", "AURORA/data/something/frames/16026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering onion with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112574", "images": ["AURORA/data/something/frames/179309/first.jpg", "AURORA/data/something/frames/179309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dish towel next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112575", "images": ["AURORA/data/something/frames/106441/first.jpg", "AURORA/data/something/frames/106441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a water bottle out of a refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000112576", "images": ["AURORA/data/something/frames/75293/first.jpg", "AURORA/data/something/frames/75293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of marker without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112577", "images": ["AURORA/data/something/frames/116568/first.jpg", "AURORA/data/something/frames/116568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112578", "images": ["AURORA/data/something/frames/81817/first.jpg", "AURORA/data/something/frames/81817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jam-box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112579", "images": ["AURORA/data/something/frames/148506/first.jpg", "AURORA/data/something/frames/148506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112580", "images": ["AURORA/data/something/frames/163289/first.jpg", "AURORA/data/something/frames/163289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112581", "images": ["AURORA/data/something/frames/134957/first.jpg", "AURORA/data/something/frames/134957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112582", "images": ["AURORA/data/something/frames/161868/first.jpg", "AURORA/data/something/frames/161868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking glasses so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112583", "images": ["AURORA/data/something/frames/2034/first.jpg", "AURORA/data/something/frames/2034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into laundry basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112584", "images": ["AURORA/data/something/frames/74302/first.jpg", "AURORA/data/something/frames/74302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112585", "images": ["AURORA/data/something/frames/10033/first.jpg", "AURORA/data/something/frames/10033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning perfume upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112586", "images": ["AURORA/data/something/frames/199365/first.jpg", "AURORA/data/something/frames/199365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from rice cooker with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112587", "images": ["AURORA/data/something/frames/140635/first.jpg", "AURORA/data/something/frames/140635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112588", "images": ["AURORA/data/something/frames/19044/first.jpg", "AURORA/data/something/frames/19044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter next to other lighters"}, {"from": "gpt", "value": ""}]} +{"id": "000000112589", "images": ["AURORA/data/something/frames/31255/first.jpg", "AURORA/data/something/frames/31255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112590", "images": ["AURORA/data/something/frames/203858/first.jpg", "AURORA/data/something/frames/203858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mail box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112591", "images": ["AURORA/data/something/frames/2774/first.jpg", "AURORA/data/something/frames/2774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dishcloth upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112592", "images": ["AURORA/data/something/frames/128480/first.jpg", "AURORA/data/something/frames/128480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing zipper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112593", "images": ["AURORA/data/something/frames/143448/first.jpg", "AURORA/data/something/frames/143448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112594", "images": ["AURORA/data/something/frames/182735/first.jpg", "AURORA/data/something/frames/182735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112595", "images": ["AURORA/data/something/frames/91157/first.jpg", "AURORA/data/something/frames/91157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112596", "images": ["AURORA/data/something/frames/107791/first.jpg", "AURORA/data/something/frames/107791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tv remote with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112597", "images": ["AURORA/data/something/frames/97856/first.jpg", "AURORA/data/something/frames/97856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plastic bag into glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112598", "images": ["AURORA/data/something/frames/18746/first.jpg", "AURORA/data/something/frames/18746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with a canister on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112599", "images": ["AURORA/data/something/frames/153947/first.jpg", "AURORA/data/something/frames/153947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112600", "images": ["AURORA/data/something/frames/203147/first.jpg", "AURORA/data/something/frames/203147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors out of sewing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112601", "images": ["AURORA/data/something/frames/112864/first.jpg", "AURORA/data/something/frames/112864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting forks together on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112602", "images": ["AURORA/data/something/frames/98666/first.jpg", "AURORA/data/something/frames/98666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can next to a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112603", "images": ["AURORA/data/something/frames/9250/first.jpg", "AURORA/data/something/frames/9250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soap on the edge of the table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112604", "images": ["AURORA/data/something/frames/163803/first.jpg", "AURORA/data/something/frames/163803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book with metal strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000112605", "images": ["AURORA/data/something/frames/22039/first.jpg", "AURORA/data/something/frames/22039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red hair band with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112606", "images": ["AURORA/data/something/frames/88256/first.jpg", "AURORA/data/something/frames/88256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with apple on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112607", "images": ["AURORA/data/something/frames/30020/first.jpg", "AURORA/data/something/frames/30020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a rubbik cube and rubbik cube closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112608", "images": ["AURORA/data/something/frames/12895/first.jpg", "AURORA/data/something/frames/12895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112609", "images": ["AURORA/data/something/frames/175162/first.jpg", "AURORA/data/something/frames/175162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shell into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112610", "images": ["AURORA/data/something/frames/48438/first.jpg", "AURORA/data/something/frames/48438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000112611", "images": ["AURORA/data/something/frames/59950/first.jpg", "AURORA/data/something/frames/59950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112612", "images": ["AURORA/data/something/frames/120144/first.jpg", "AURORA/data/something/frames/120144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking timepiece from well wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112613", "images": ["AURORA/data/something/frames/70779/first.jpg", "AURORA/data/something/frames/70779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112614", "images": ["AURORA/data/something/frames/120745/first.jpg", "AURORA/data/something/frames/120745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000112615", "images": ["AURORA/data/something/frames/215878/first.jpg", "AURORA/data/something/frames/215878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112616", "images": ["AURORA/data/something/frames/174279/first.jpg", "AURORA/data/something/frames/174279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pulling power bank from left to right from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112617", "images": ["AURORA/data/something/frames/69501/first.jpg", "AURORA/data/something/frames/69501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112618", "images": ["AURORA/data/something/frames/209979/first.jpg", "AURORA/data/something/frames/209979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a figutine into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112619", "images": ["AURORA/data/something/frames/81972/first.jpg", "AURORA/data/something/frames/81972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112620", "images": ["AURORA/data/something/frames/65444/first.jpg", "AURORA/data/something/frames/65444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning something upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112621", "images": ["AURORA/data/something/frames/113588/first.jpg", "AURORA/data/something/frames/113588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112622", "images": ["AURORA/data/something/frames/102796/first.jpg", "AURORA/data/something/frames/102796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112623", "images": ["AURORA/data/something/frames/115530/first.jpg", "AURORA/data/something/frames/115530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pen and blue pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112624", "images": ["AURORA/data/something/frames/200339/first.jpg", "AURORA/data/something/frames/200339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing white paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112625", "images": ["AURORA/data/something/frames/56093/first.jpg", "AURORA/data/something/frames/56093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering the watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112626", "images": ["AURORA/data/something/frames/86998/first.jpg", "AURORA/data/something/frames/86998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy-car and toy-car so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112627", "images": ["AURORA/data/something/frames/147771/first.jpg", "AURORA/data/something/frames/147771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112628", "images": ["AURORA/data/something/frames/57640/first.jpg", "AURORA/data/something/frames/57640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a lid in salad"}, {"from": "gpt", "value": ""}]} +{"id": "000000112629", "images": ["AURORA/data/something/frames/141476/first.jpg", "AURORA/data/something/frames/141476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box of juice so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112630", "images": ["AURORA/data/something/frames/208285/first.jpg", "AURORA/data/something/frames/208285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112631", "images": ["AURORA/data/something/frames/166583/first.jpg", "AURORA/data/something/frames/166583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112632", "images": ["AURORA/data/something/frames/22037/first.jpg", "AURORA/data/something/frames/22037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lid off of iid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112633", "images": ["AURORA/data/something/frames/44955/first.jpg", "AURORA/data/something/frames/44955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a plank of wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000112634", "images": ["AURORA/data/something/frames/89116/first.jpg", "AURORA/data/something/frames/89116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112635", "images": ["AURORA/data/something/frames/46733/first.jpg", "AURORA/data/something/frames/46733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning empty coffee mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112636", "images": ["AURORA/data/something/frames/136527/first.jpg", "AURORA/data/something/frames/136527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112637", "images": ["AURORA/data/something/frames/125325/first.jpg", "AURORA/data/something/frames/125325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000112638", "images": ["AURORA/data/something/frames/3921/first.jpg", "AURORA/data/something/frames/3921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering apple tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112639", "images": ["AURORA/data/something/frames/113793/first.jpg", "AURORA/data/something/frames/113793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching back to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112640", "images": ["AURORA/data/something/frames/64064/first.jpg", "AURORA/data/something/frames/64064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112641", "images": ["AURORA/data/something/frames/80326/first.jpg", "AURORA/data/something/frames/80326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112642", "images": ["AURORA/data/something/frames/161298/first.jpg", "AURORA/data/something/frames/161298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass closer to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112643", "images": ["AURORA/data/something/frames/170836/first.jpg", "AURORA/data/something/frames/170836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112644", "images": ["AURORA/data/something/frames/88869/first.jpg", "AURORA/data/something/frames/88869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112645", "images": ["AURORA/data/something/frames/90888/first.jpg", "AURORA/data/something/frames/90888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving microscope and coin closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112646", "images": ["AURORA/data/something/frames/47113/first.jpg", "AURORA/data/something/frames/47113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glass with cotton towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112647", "images": ["AURORA/data/something/frames/100990/first.jpg", "AURORA/data/something/frames/100990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from small green ball with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112648", "images": ["AURORA/data/something/frames/76109/first.jpg", "AURORA/data/something/frames/76109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112649", "images": ["AURORA/data/something/frames/106076/first.jpg", "AURORA/data/something/frames/106076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 6 pen onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112650", "images": ["AURORA/data/something/frames/97551/first.jpg", "AURORA/data/something/frames/97551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a vase upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112651", "images": ["AURORA/data/something/frames/188053/first.jpg", "AURORA/data/something/frames/188053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stick into small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112652", "images": ["AURORA/data/something/frames/198413/first.jpg", "AURORA/data/something/frames/198413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching charger adapter to charging socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112653", "images": ["AURORA/data/something/frames/54495/first.jpg", "AURORA/data/something/frames/54495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112654", "images": ["AURORA/data/something/frames/200580/first.jpg", "AURORA/data/something/frames/200580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112655", "images": ["AURORA/data/something/frames/157374/first.jpg", "AURORA/data/something/frames/157374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a wire into an electrical outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112656", "images": ["AURORA/data/something/frames/215970/first.jpg", "AURORA/data/something/frames/215970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112657", "images": ["AURORA/data/something/frames/68279/first.jpg", "AURORA/data/something/frames/68279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing socks into cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000112658", "images": ["AURORA/data/something/frames/189074/first.jpg", "AURORA/data/something/frames/189074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112659", "images": ["AURORA/data/something/frames/115728/first.jpg", "AURORA/data/something/frames/115728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) pull part of blinds"}, {"from": "gpt", "value": ""}]} +{"id": "000000112660", "images": ["AURORA/data/something/frames/69581/first.jpg", "AURORA/data/something/frames/69581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying peanut butter on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112661", "images": ["AURORA/data/something/frames/213919/first.jpg", "AURORA/data/something/frames/213919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112662", "images": ["AURORA/data/something/frames/117326/first.jpg", "AURORA/data/something/frames/117326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112663", "images": ["AURORA/data/something/frames/139795/first.jpg", "AURORA/data/something/frames/139795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cap onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112664", "images": ["AURORA/data/something/frames/201087/first.jpg", "AURORA/data/something/frames/201087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book of many books"}, {"from": "gpt", "value": ""}]} +{"id": "000000112665", "images": ["AURORA/data/something/frames/69208/first.jpg", "AURORA/data/something/frames/69208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble underneath glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112666", "images": ["AURORA/data/something/frames/145448/first.jpg", "AURORA/data/something/frames/145448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping container next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112667", "images": ["AURORA/data/something/frames/167180/first.jpg", "AURORA/data/something/frames/167180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sunglasses and keys closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112668", "images": ["AURORA/data/something/frames/47117/first.jpg", "AURORA/data/something/frames/47117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dvd closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112669", "images": ["AURORA/data/something/frames/122692/first.jpg", "AURORA/data/something/frames/122692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112670", "images": ["AURORA/data/something/frames/212311/first.jpg", "AURORA/data/something/frames/212311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112671", "images": ["AURORA/data/something/frames/168904/first.jpg", "AURORA/data/something/frames/168904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000112672", "images": ["AURORA/data/something/frames/210447/first.jpg", "AURORA/data/something/frames/210447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an adapter into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112673", "images": ["AURORA/data/something/frames/31674/first.jpg", "AURORA/data/something/frames/31674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112674", "images": ["AURORA/data/something/frames/28027/first.jpg", "AURORA/data/something/frames/28027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping glass bottle onto waste basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112675", "images": ["AURORA/data/something/frames/2767/first.jpg", "AURORA/data/something/frames/2767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cassette out of player"}, {"from": "gpt", "value": ""}]} +{"id": "000000112676", "images": ["AURORA/data/something/frames/47816/first.jpg", "AURORA/data/something/frames/47816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000112677", "images": ["AURORA/data/something/frames/192407/first.jpg", "AURORA/data/something/frames/192407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass container until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000112678", "images": ["AURORA/data/something/frames/97396/first.jpg", "AURORA/data/something/frames/97396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112679", "images": ["AURORA/data/something/frames/112970/first.jpg", "AURORA/data/something/frames/112970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a battery and powerbank on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112680", "images": ["AURORA/data/something/frames/144676/first.jpg", "AURORA/data/something/frames/144676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone cover so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112681", "images": ["AURORA/data/something/frames/53686/first.jpg", "AURORA/data/something/frames/53686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112682", "images": ["AURORA/data/something/frames/182121/first.jpg", "AURORA/data/something/frames/182121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112683", "images": ["AURORA/data/something/frames/106494/first.jpg", "AURORA/data/something/frames/106494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container and cigarettes away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112684", "images": ["AURORA/data/something/frames/33094/first.jpg", "AURORA/data/something/frames/33094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112685", "images": ["AURORA/data/something/frames/49891/first.jpg", "AURORA/data/something/frames/49891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stapler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112686", "images": ["AURORA/data/something/frames/212064/first.jpg", "AURORA/data/something/frames/212064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112687", "images": ["AURORA/data/something/frames/102661/first.jpg", "AURORA/data/something/frames/102661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin onto face wash"}, {"from": "gpt", "value": ""}]} +{"id": "000000112688", "images": ["AURORA/data/something/frames/17789/first.jpg", "AURORA/data/something/frames/17789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112689", "images": ["AURORA/data/something/frames/12033/first.jpg", "AURORA/data/something/frames/12033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112690", "images": ["AURORA/data/something/frames/153193/first.jpg", "AURORA/data/something/frames/153193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112691", "images": ["AURORA/data/something/frames/88000/first.jpg", "AURORA/data/something/frames/88000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting coconut leaf with stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000112692", "images": ["AURORA/data/something/frames/75848/first.jpg", "AURORA/data/something/frames/75848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a shoe polish on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112693", "images": ["AURORA/data/something/frames/18016/first.jpg", "AURORA/data/something/frames/18016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting christmas tree upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112694", "images": ["AURORA/data/something/frames/41422/first.jpg", "AURORA/data/something/frames/41422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cooked vegetables into pepers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112695", "images": ["AURORA/data/something/frames/219238/first.jpg", "AURORA/data/something/frames/219238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tiger on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112696", "images": ["AURORA/data/something/frames/54658/first.jpg", "AURORA/data/something/frames/54658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors and marker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112697", "images": ["AURORA/data/something/frames/181663/first.jpg", "AURORA/data/something/frames/181663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bed with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112698", "images": ["AURORA/data/something/frames/161906/first.jpg", "AURORA/data/something/frames/161906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of kitchen board"}, {"from": "gpt", "value": ""}]} +{"id": "000000112699", "images": ["AURORA/data/something/frames/69880/first.jpg", "AURORA/data/something/frames/69880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending microphone so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112700", "images": ["AURORA/data/something/frames/145175/first.jpg", "AURORA/data/something/frames/145175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112701", "images": ["AURORA/data/something/frames/20995/first.jpg", "AURORA/data/something/frames/20995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000112702", "images": ["AURORA/data/something/frames/40871/first.jpg", "AURORA/data/something/frames/40871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112703", "images": ["AURORA/data/something/frames/27941/first.jpg", "AURORA/data/something/frames/27941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 board clips"}, {"from": "gpt", "value": ""}]} +{"id": "000000112704", "images": ["AURORA/data/something/frames/75949/first.jpg", "AURORA/data/something/frames/75949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112705", "images": ["AURORA/data/something/frames/143961/first.jpg", "AURORA/data/something/frames/143961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000112706", "images": ["AURORA/data/something/frames/143325/first.jpg", "AURORA/data/something/frames/143325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112707", "images": ["AURORA/data/something/frames/126930/first.jpg", "AURORA/data/something/frames/126930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112708", "images": ["AURORA/data/something/frames/18744/first.jpg", "AURORA/data/something/frames/18744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box of juice behind a box of juice"}, {"from": "gpt", "value": ""}]} +{"id": "000000112709", "images": ["AURORA/data/something/frames/36015/first.jpg", "AURORA/data/something/frames/36015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bag into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112710", "images": ["AURORA/data/something/frames/186572/first.jpg", "AURORA/data/something/frames/186572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112711", "images": ["AURORA/data/something/frames/111926/first.jpg", "AURORA/data/something/frames/111926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112712", "images": ["AURORA/data/something/frames/78533/first.jpg", "AURORA/data/something/frames/78533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpaste so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112713", "images": ["AURORA/data/something/frames/29860/first.jpg", "AURORA/data/something/frames/29860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching wire to adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000112714", "images": ["AURORA/data/something/frames/154433/first.jpg", "AURORA/data/something/frames/154433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112715", "images": ["AURORA/data/something/frames/213734/first.jpg", "AURORA/data/something/frames/213734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000112716", "images": ["AURORA/data/something/frames/27084/first.jpg", "AURORA/data/something/frames/27084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming radiator"}, {"from": "gpt", "value": ""}]} +{"id": "000000112717", "images": ["AURORA/data/something/frames/154533/first.jpg", "AURORA/data/something/frames/154533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to cardreader"}, {"from": "gpt", "value": ""}]} +{"id": "000000112718", "images": ["AURORA/data/something/frames/10430/first.jpg", "AURORA/data/something/frames/10430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching green water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112719", "images": ["AURORA/data/something/frames/157723/first.jpg", "AURORA/data/something/frames/157723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pin and tube closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112720", "images": ["AURORA/data/something/frames/185616/first.jpg", "AURORA/data/something/frames/185616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming a panorama"}, {"from": "gpt", "value": ""}]} +{"id": "000000112721", "images": ["AURORA/data/something/frames/197574/first.jpg", "AURORA/data/something/frames/197574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bar soap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112722", "images": ["AURORA/data/something/frames/177854/first.jpg", "AURORA/data/something/frames/177854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a notebook off of a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112723", "images": ["AURORA/data/something/frames/194035/first.jpg", "AURORA/data/something/frames/194035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lamp on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112724", "images": ["AURORA/data/something/frames/48476/first.jpg", "AURORA/data/something/frames/48476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112725", "images": ["AURORA/data/something/frames/159574/first.jpg", "AURORA/data/something/frames/159574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112726", "images": ["AURORA/data/something/frames/39211/first.jpg", "AURORA/data/something/frames/39211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112727", "images": ["AURORA/data/something/frames/79730/first.jpg", "AURORA/data/something/frames/79730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a plastic tube so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112728", "images": ["AURORA/data/something/frames/110930/first.jpg", "AURORA/data/something/frames/110930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cover of notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000112729", "images": ["AURORA/data/something/frames/9075/first.jpg", "AURORA/data/something/frames/9075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112730", "images": ["AURORA/data/something/frames/41500/first.jpg", "AURORA/data/something/frames/41500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a kettle plug into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112731", "images": ["AURORA/data/something/frames/151158/first.jpg", "AURORA/data/something/frames/151158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking game from shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000112732", "images": ["AURORA/data/something/frames/9665/first.jpg", "AURORA/data/something/frames/9665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 white colour board clips onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112733", "images": ["AURORA/data/something/frames/145867/first.jpg", "AURORA/data/something/frames/145867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping mousse over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112734", "images": ["AURORA/data/something/frames/45321/first.jpg", "AURORA/data/something/frames/45321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging male plug into female plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112735", "images": ["AURORA/data/something/frames/117618/first.jpg", "AURORA/data/something/frames/117618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112736", "images": ["AURORA/data/something/frames/212164/first.jpg", "AURORA/data/something/frames/212164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white deodorant from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112737", "images": ["AURORA/data/something/frames/153589/first.jpg", "AURORA/data/something/frames/153589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112738", "images": ["AURORA/data/something/frames/175464/first.jpg", "AURORA/data/something/frames/175464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming switches"}, {"from": "gpt", "value": ""}]} +{"id": "000000112739", "images": ["AURORA/data/something/frames/169110/first.jpg", "AURORA/data/something/frames/169110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112740", "images": ["AURORA/data/something/frames/185336/first.jpg", "AURORA/data/something/frames/185336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112741", "images": ["AURORA/data/something/frames/168952/first.jpg", "AURORA/data/something/frames/168952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112742", "images": ["AURORA/data/something/frames/185955/first.jpg", "AURORA/data/something/frames/185955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting scissors with sharpener on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112743", "images": ["AURORA/data/something/frames/136034/first.jpg", "AURORA/data/something/frames/136034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112744", "images": ["AURORA/data/something/frames/32192/first.jpg", "AURORA/data/something/frames/32192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bracelet out of jewelry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112745", "images": ["AURORA/data/something/frames/28710/first.jpg", "AURORA/data/something/frames/28710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112746", "images": ["AURORA/data/something/frames/215824/first.jpg", "AURORA/data/something/frames/215824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper plate just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112747", "images": ["AURORA/data/something/frames/18381/first.jpg", "AURORA/data/something/frames/18381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from earphone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112748", "images": ["AURORA/data/something/frames/57972/first.jpg", "AURORA/data/something/frames/57972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering frog statue"}, {"from": "gpt", "value": ""}]} +{"id": "000000112749", "images": ["AURORA/data/something/frames/144557/first.jpg", "AURORA/data/something/frames/144557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cloths onto carry bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112750", "images": ["AURORA/data/something/frames/175609/first.jpg", "AURORA/data/something/frames/175609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000112751", "images": ["AURORA/data/something/frames/8111/first.jpg", "AURORA/data/something/frames/8111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote from stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000112752", "images": ["AURORA/data/something/frames/159361/first.jpg", "AURORA/data/something/frames/159361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a balloon onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112753", "images": ["AURORA/data/something/frames/157340/first.jpg", "AURORA/data/something/frames/157340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup off of a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000112754", "images": ["AURORA/data/something/frames/54143/first.jpg", "AURORA/data/something/frames/54143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 sticky notepads"}, {"from": "gpt", "value": ""}]} +{"id": "000000112755", "images": ["AURORA/data/something/frames/23849/first.jpg", "AURORA/data/something/frames/23849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112756", "images": ["AURORA/data/something/frames/197920/first.jpg", "AURORA/data/something/frames/197920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking red colour pen out of many colour pens on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112757", "images": ["AURORA/data/something/frames/162669/first.jpg", "AURORA/data/something/frames/162669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112758", "images": ["AURORA/data/something/frames/132397/first.jpg", "AURORA/data/something/frames/132397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ice cream container towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112759", "images": ["AURORA/data/something/frames/213042/first.jpg", "AURORA/data/something/frames/213042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112760", "images": ["AURORA/data/something/frames/93895/first.jpg", "AURORA/data/something/frames/93895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112761", "images": ["AURORA/data/something/frames/119510/first.jpg", "AURORA/data/something/frames/119510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112762", "images": ["AURORA/data/something/frames/122993/first.jpg", "AURORA/data/something/frames/122993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a comb without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112763", "images": ["AURORA/data/something/frames/174952/first.jpg", "AURORA/data/something/frames/174952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tin into a handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112764", "images": ["AURORA/data/something/frames/48716/first.jpg", "AURORA/data/something/frames/48716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000112765", "images": ["AURORA/data/something/frames/185586/first.jpg", "AURORA/data/something/frames/185586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112766", "images": ["AURORA/data/something/frames/205616/first.jpg", "AURORA/data/something/frames/205616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112767", "images": ["AURORA/data/something/frames/127205/first.jpg", "AURORA/data/something/frames/127205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow car and white car away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112768", "images": ["AURORA/data/something/frames/81136/first.jpg", "AURORA/data/something/frames/81136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book in front of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112769", "images": ["AURORA/data/something/frames/2069/first.jpg", "AURORA/data/something/frames/2069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton into tote bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112770", "images": ["AURORA/data/something/frames/167159/first.jpg", "AURORA/data/something/frames/167159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112771", "images": ["AURORA/data/something/frames/109167/first.jpg", "AURORA/data/something/frames/109167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one die to group of dice"}, {"from": "gpt", "value": ""}]} +{"id": "000000112772", "images": ["AURORA/data/something/frames/91078/first.jpg", "AURORA/data/something/frames/91078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wardrobe key with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112773", "images": ["AURORA/data/something/frames/146664/first.jpg", "AURORA/data/something/frames/146664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jeep door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112774", "images": ["AURORA/data/something/frames/901/first.jpg", "AURORA/data/something/frames/901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112775", "images": ["AURORA/data/something/frames/216381/first.jpg", "AURORA/data/something/frames/216381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something with something in it over, so something in it falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112776", "images": ["AURORA/data/something/frames/209343/first.jpg", "AURORA/data/something/frames/209343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into sheath"}, {"from": "gpt", "value": ""}]} +{"id": "000000112777", "images": ["AURORA/data/something/frames/52409/first.jpg", "AURORA/data/something/frames/52409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112778", "images": ["AURORA/data/something/frames/193606/first.jpg", "AURORA/data/something/frames/193606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a yellow marker next to other markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112779", "images": ["AURORA/data/something/frames/171439/first.jpg", "AURORA/data/something/frames/171439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scrap paper away from scrap paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112780", "images": ["AURORA/data/something/frames/160038/first.jpg", "AURORA/data/something/frames/160038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone in front of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112781", "images": ["AURORA/data/something/frames/9094/first.jpg", "AURORA/data/something/frames/9094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping container in front of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112782", "images": ["AURORA/data/something/frames/162986/first.jpg", "AURORA/data/something/frames/162986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112783", "images": ["AURORA/data/something/frames/206768/first.jpg", "AURORA/data/something/frames/206768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112784", "images": ["AURORA/data/something/frames/22865/first.jpg", "AURORA/data/something/frames/22865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112785", "images": ["AURORA/data/something/frames/165580/first.jpg", "AURORA/data/something/frames/165580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stick of deodorant off of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112786", "images": ["AURORA/data/something/frames/181683/first.jpg", "AURORA/data/something/frames/181683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112787", "images": ["AURORA/data/something/frames/184961/first.jpg", "AURORA/data/something/frames/184961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking dinosaur figure so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112788", "images": ["AURORA/data/something/frames/150311/first.jpg", "AURORA/data/something/frames/150311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112789", "images": ["AURORA/data/something/frames/171602/first.jpg", "AURORA/data/something/frames/171602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112790", "images": ["AURORA/data/something/frames/5472/first.jpg", "AURORA/data/something/frames/5472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen, an eraser and a glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112791", "images": ["AURORA/data/something/frames/197841/first.jpg", "AURORA/data/something/frames/197841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking silver plate out of sugar bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112792", "images": ["AURORA/data/something/frames/99266/first.jpg", "AURORA/data/something/frames/99266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling casio from behind of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112793", "images": ["AURORA/data/something/frames/87845/first.jpg", "AURORA/data/something/frames/87845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tv control upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112794", "images": ["AURORA/data/something/frames/80406/first.jpg", "AURORA/data/something/frames/80406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112795", "images": ["AURORA/data/something/frames/129687/first.jpg", "AURORA/data/something/frames/129687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cap of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112796", "images": ["AURORA/data/something/frames/150220/first.jpg", "AURORA/data/something/frames/150220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hammer upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112797", "images": ["AURORA/data/something/frames/191641/first.jpg", "AURORA/data/something/frames/191641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a large carrot until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112798", "images": ["AURORA/data/something/frames/146933/first.jpg", "AURORA/data/something/frames/146933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112799", "images": ["AURORA/data/something/frames/60455/first.jpg", "AURORA/data/something/frames/60455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112800", "images": ["AURORA/data/something/frames/36074/first.jpg", "AURORA/data/something/frames/36074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112801", "images": ["AURORA/data/something/frames/19832/first.jpg", "AURORA/data/something/frames/19832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112802", "images": ["AURORA/data/something/frames/142512/first.jpg", "AURORA/data/something/frames/142512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into headset"}, {"from": "gpt", "value": ""}]} +{"id": "000000112803", "images": ["AURORA/data/something/frames/98864/first.jpg", "AURORA/data/something/frames/98864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dinosaur model"}, {"from": "gpt", "value": ""}]} +{"id": "000000112804", "images": ["AURORA/data/something/frames/115386/first.jpg", "AURORA/data/something/frames/115386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hand towel being deflected from cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112805", "images": ["AURORA/data/something/frames/216410/first.jpg", "AURORA/data/something/frames/216410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into measuring jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112806", "images": ["AURORA/data/something/frames/210811/first.jpg", "AURORA/data/something/frames/210811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wrist-watch onto plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112807", "images": ["AURORA/data/something/frames/160418/first.jpg", "AURORA/data/something/frames/160418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112808", "images": ["AURORA/data/something/frames/179295/first.jpg", "AURORA/data/something/frames/179295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112809", "images": ["AURORA/data/something/frames/72269/first.jpg", "AURORA/data/something/frames/72269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dvd next to a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112810", "images": ["AURORA/data/something/frames/122492/first.jpg", "AURORA/data/something/frames/122492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting something"}, {"from": "gpt", "value": ""}]} +{"id": "000000112811", "images": ["AURORA/data/something/frames/70959/first.jpg", "AURORA/data/something/frames/70959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stuffed animal upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112812", "images": ["AURORA/data/something/frames/129834/first.jpg", "AURORA/data/something/frames/129834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112813", "images": ["AURORA/data/something/frames/108361/first.jpg", "AURORA/data/something/frames/108361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paint brush down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112814", "images": ["AURORA/data/something/frames/197975/first.jpg", "AURORA/data/something/frames/197975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing specs with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112815", "images": ["AURORA/data/something/frames/81258/first.jpg", "AURORA/data/something/frames/81258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling one tealight candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112816", "images": ["AURORA/data/something/frames/190267/first.jpg", "AURORA/data/something/frames/190267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a round glass paperweight with other paperweights on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112817", "images": ["AURORA/data/something/frames/164059/first.jpg", "AURORA/data/something/frames/164059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extension plug into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112818", "images": ["AURORA/data/something/frames/215894/first.jpg", "AURORA/data/something/frames/215894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a lightbulb to a candlewarmer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112819", "images": ["AURORA/data/something/frames/110358/first.jpg", "AURORA/data/something/frames/110358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar bowl up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112820", "images": ["AURORA/data/something/frames/155599/first.jpg", "AURORA/data/something/frames/155599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching black microwave with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112821", "images": ["AURORA/data/something/frames/217895/first.jpg", "AURORA/data/something/frames/217895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112822", "images": ["AURORA/data/something/frames/52805/first.jpg", "AURORA/data/something/frames/52805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112823", "images": ["AURORA/data/something/frames/196030/first.jpg", "AURORA/data/something/frames/196030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tomato behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112824", "images": ["AURORA/data/something/frames/70956/first.jpg", "AURORA/data/something/frames/70956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairband on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112825", "images": ["AURORA/data/something/frames/62553/first.jpg", "AURORA/data/something/frames/62553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112826", "images": ["AURORA/data/something/frames/82165/first.jpg", "AURORA/data/something/frames/82165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112827", "images": ["AURORA/data/something/frames/99908/first.jpg", "AURORA/data/something/frames/99908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a microwave oven door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112828", "images": ["AURORA/data/something/frames/70283/first.jpg", "AURORA/data/something/frames/70283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000112829", "images": ["AURORA/data/something/frames/9991/first.jpg", "AURORA/data/something/frames/9991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112830", "images": ["AURORA/data/something/frames/149591/first.jpg", "AURORA/data/something/frames/149591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a painting upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112831", "images": ["AURORA/data/something/frames/43819/first.jpg", "AURORA/data/something/frames/43819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112832", "images": ["AURORA/data/something/frames/193292/first.jpg", "AURORA/data/something/frames/193292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a candle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112833", "images": ["AURORA/data/something/frames/68527/first.jpg", "AURORA/data/something/frames/68527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jalebi sweet from packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112834", "images": ["AURORA/data/something/frames/204105/first.jpg", "AURORA/data/something/frames/204105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cat with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112835", "images": ["AURORA/data/something/frames/198082/first.jpg", "AURORA/data/something/frames/198082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar closer to a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112836", "images": ["AURORA/data/something/frames/198342/first.jpg", "AURORA/data/something/frames/198342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wax jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112837", "images": ["AURORA/data/something/frames/168278/first.jpg", "AURORA/data/something/frames/168278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112838", "images": ["AURORA/data/something/frames/116516/first.jpg", "AURORA/data/something/frames/116516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking paper towels so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112839", "images": ["AURORA/data/something/frames/40616/first.jpg", "AURORA/data/something/frames/40616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112840", "images": ["AURORA/data/something/frames/199151/first.jpg", "AURORA/data/something/frames/199151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112841", "images": ["AURORA/data/something/frames/211066/first.jpg", "AURORA/data/something/frames/211066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a box just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112842", "images": ["AURORA/data/something/frames/186388/first.jpg", "AURORA/data/something/frames/186388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lunchbox on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112843", "images": ["AURORA/data/something/frames/81419/first.jpg", "AURORA/data/something/frames/81419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bittle with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112844", "images": ["AURORA/data/something/frames/56041/first.jpg", "AURORA/data/something/frames/56041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112845", "images": ["AURORA/data/something/frames/112470/first.jpg", "AURORA/data/something/frames/112470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112846", "images": ["AURORA/data/something/frames/191867/first.jpg", "AURORA/data/something/frames/191867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a tissue off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112847", "images": ["AURORA/data/something/frames/97274/first.jpg", "AURORA/data/something/frames/97274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy car and a fridge magnet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112848", "images": ["AURORA/data/something/frames/14662/first.jpg", "AURORA/data/something/frames/14662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dice into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112849", "images": ["AURORA/data/something/frames/39097/first.jpg", "AURORA/data/something/frames/39097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112850", "images": ["AURORA/data/something/frames/41384/first.jpg", "AURORA/data/something/frames/41384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112851", "images": ["AURORA/data/something/frames/119534/first.jpg", "AURORA/data/something/frames/119534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a strawberry candy and a lemon candy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112852", "images": ["AURORA/data/something/frames/143401/first.jpg", "AURORA/data/something/frames/143401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112853", "images": ["AURORA/data/something/frames/88599/first.jpg", "AURORA/data/something/frames/88599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112854", "images": ["AURORA/data/something/frames/54280/first.jpg", "AURORA/data/something/frames/54280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112855", "images": ["AURORA/data/something/frames/173817/first.jpg", "AURORA/data/something/frames/173817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tin upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112856", "images": ["AURORA/data/something/frames/32343/first.jpg", "AURORA/data/something/frames/32343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning an ipad upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112857", "images": ["AURORA/data/something/frames/85892/first.jpg", "AURORA/data/something/frames/85892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112858", "images": ["AURORA/data/something/frames/54331/first.jpg", "AURORA/data/something/frames/54331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of metal can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112859", "images": ["AURORA/data/something/frames/141576/first.jpg", "AURORA/data/something/frames/141576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112860", "images": ["AURORA/data/something/frames/35901/first.jpg", "AURORA/data/something/frames/35901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a box with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112861", "images": ["AURORA/data/something/frames/135188/first.jpg", "AURORA/data/something/frames/135188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112862", "images": ["AURORA/data/something/frames/159829/first.jpg", "AURORA/data/something/frames/159829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing geometric compass with marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112863", "images": ["AURORA/data/something/frames/190482/first.jpg", "AURORA/data/something/frames/190482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pebble"}, {"from": "gpt", "value": ""}]} +{"id": "000000112864", "images": ["AURORA/data/something/frames/23814/first.jpg", "AURORA/data/something/frames/23814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112865", "images": ["AURORA/data/something/frames/63671/first.jpg", "AURORA/data/something/frames/63671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet behind the cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112866", "images": ["AURORA/data/something/frames/32896/first.jpg", "AURORA/data/something/frames/32896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112867", "images": ["AURORA/data/something/frames/31938/first.jpg", "AURORA/data/something/frames/31938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112868", "images": ["AURORA/data/something/frames/29287/first.jpg", "AURORA/data/something/frames/29287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lantern with jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112869", "images": ["AURORA/data/something/frames/62954/first.jpg", "AURORA/data/something/frames/62954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mop bucket with a mop stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000112870", "images": ["AURORA/data/something/frames/178047/first.jpg", "AURORA/data/something/frames/178047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112871", "images": ["AURORA/data/something/frames/199457/first.jpg", "AURORA/data/something/frames/199457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a bun into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112872", "images": ["AURORA/data/something/frames/144207/first.jpg", "AURORA/data/something/frames/144207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from lighter with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112873", "images": ["AURORA/data/something/frames/12315/first.jpg", "AURORA/data/something/frames/12315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume bottle in front of clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000112874", "images": ["AURORA/data/something/frames/5216/first.jpg", "AURORA/data/something/frames/5216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112875", "images": ["AURORA/data/something/frames/33274/first.jpg", "AURORA/data/something/frames/33274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hairclip upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112876", "images": ["AURORA/data/something/frames/176842/first.jpg", "AURORA/data/something/frames/176842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending text book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112877", "images": ["AURORA/data/something/frames/184866/first.jpg", "AURORA/data/something/frames/184866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112878", "images": ["AURORA/data/something/frames/126691/first.jpg", "AURORA/data/something/frames/126691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a washclothe"}, {"from": "gpt", "value": ""}]} +{"id": "000000112879", "images": ["AURORA/data/something/frames/145754/first.jpg", "AURORA/data/something/frames/145754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a plastic cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112880", "images": ["AURORA/data/something/frames/215765/first.jpg", "AURORA/data/something/frames/215765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112881", "images": ["AURORA/data/something/frames/213619/first.jpg", "AURORA/data/something/frames/213619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112882", "images": ["AURORA/data/something/frames/25965/first.jpg", "AURORA/data/something/frames/25965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen behind a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112883", "images": ["AURORA/data/something/frames/5532/first.jpg", "AURORA/data/something/frames/5532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paper clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112884", "images": ["AURORA/data/something/frames/27494/first.jpg", "AURORA/data/something/frames/27494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112885", "images": ["AURORA/data/something/frames/181820/first.jpg", "AURORA/data/something/frames/181820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a phone charger into the wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112886", "images": ["AURORA/data/something/frames/16943/first.jpg", "AURORA/data/something/frames/16943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet behind couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112887", "images": ["AURORA/data/something/frames/27861/first.jpg", "AURORA/data/something/frames/27861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping skateboard in front of robot"}, {"from": "gpt", "value": ""}]} +{"id": "000000112888", "images": ["AURORA/data/something/frames/131429/first.jpg", "AURORA/data/something/frames/131429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112889", "images": ["AURORA/data/something/frames/43241/first.jpg", "AURORA/data/something/frames/43241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cap of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112890", "images": ["AURORA/data/something/frames/56826/first.jpg", "AURORA/data/something/frames/56826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112891", "images": ["AURORA/data/something/frames/211749/first.jpg", "AURORA/data/something/frames/211749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy car colliding with another toy car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112892", "images": ["AURORA/data/something/frames/25768/first.jpg", "AURORA/data/something/frames/25768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper behind wineglass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112893", "images": ["AURORA/data/something/frames/38421/first.jpg", "AURORA/data/something/frames/38421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bed with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112894", "images": ["AURORA/data/something/frames/183980/first.jpg", "AURORA/data/something/frames/183980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glas from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112895", "images": ["AURORA/data/something/frames/201372/first.jpg", "AURORA/data/something/frames/201372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box next to a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112896", "images": ["AURORA/data/something/frames/87844/first.jpg", "AURORA/data/something/frames/87844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112897", "images": ["AURORA/data/something/frames/187685/first.jpg", "AURORA/data/something/frames/187685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112898", "images": ["AURORA/data/something/frames/50485/first.jpg", "AURORA/data/something/frames/50485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112899", "images": ["AURORA/data/something/frames/114460/first.jpg", "AURORA/data/something/frames/114460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112900", "images": ["AURORA/data/something/frames/187315/first.jpg", "AURORA/data/something/frames/187315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting powerbank with airpods case on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112901", "images": ["AURORA/data/something/frames/94733/first.jpg", "AURORA/data/something/frames/94733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering the bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112902", "images": ["AURORA/data/something/frames/110579/first.jpg", "AURORA/data/something/frames/110579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending notebook so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112903", "images": ["AURORA/data/something/frames/55230/first.jpg", "AURORA/data/something/frames/55230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming wastebin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112904", "images": ["AURORA/data/something/frames/116279/first.jpg", "AURORA/data/something/frames/116279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112905", "images": ["AURORA/data/something/frames/199373/first.jpg", "AURORA/data/something/frames/199373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hairclip onto a deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000112906", "images": ["AURORA/data/something/frames/93854/first.jpg", "AURORA/data/something/frames/93854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112907", "images": ["AURORA/data/something/frames/124044/first.jpg", "AURORA/data/something/frames/124044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112908", "images": ["AURORA/data/something/frames/167347/first.jpg", "AURORA/data/something/frames/167347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting napkins in front of shakers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112909", "images": ["AURORA/data/something/frames/137733/first.jpg", "AURORA/data/something/frames/137733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112910", "images": ["AURORA/data/something/frames/72697/first.jpg", "AURORA/data/something/frames/72697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking battleship game so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112911", "images": ["AURORA/data/something/frames/152269/first.jpg", "AURORA/data/something/frames/152269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112912", "images": ["AURORA/data/something/frames/192654/first.jpg", "AURORA/data/something/frames/192654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bowl out of microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000112913", "images": ["AURORA/data/something/frames/60963/first.jpg", "AURORA/data/something/frames/60963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring orange juice out of jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112914", "images": ["AURORA/data/something/frames/34674/first.jpg", "AURORA/data/something/frames/34674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112915", "images": ["AURORA/data/something/frames/178932/first.jpg", "AURORA/data/something/frames/178932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112916", "images": ["AURORA/data/something/frames/176411/first.jpg", "AURORA/data/something/frames/176411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112917", "images": ["AURORA/data/something/frames/195783/first.jpg", "AURORA/data/something/frames/195783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping block over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112918", "images": ["AURORA/data/something/frames/66462/first.jpg", "AURORA/data/something/frames/66462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink water bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112919", "images": ["AURORA/data/something/frames/102693/first.jpg", "AURORA/data/something/frames/102693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many chocolates"}, {"from": "gpt", "value": ""}]} +{"id": "000000112920", "images": ["AURORA/data/something/frames/2329/first.jpg", "AURORA/data/something/frames/2329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fork onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112921", "images": ["AURORA/data/something/frames/105135/first.jpg", "AURORA/data/something/frames/105135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 spanners"}, {"from": "gpt", "value": ""}]} +{"id": "000000112922", "images": ["AURORA/data/something/frames/69602/first.jpg", "AURORA/data/something/frames/69602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000112923", "images": ["AURORA/data/something/frames/166902/first.jpg", "AURORA/data/something/frames/166902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pencil so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112924", "images": ["AURORA/data/something/frames/43134/first.jpg", "AURORA/data/something/frames/43134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a travel mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112925", "images": ["AURORA/data/something/frames/34617/first.jpg", "AURORA/data/something/frames/34617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112926", "images": ["AURORA/data/something/frames/120443/first.jpg", "AURORA/data/something/frames/120443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying jar on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112927", "images": ["AURORA/data/something/frames/70556/first.jpg", "AURORA/data/something/frames/70556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering key with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000112928", "images": ["AURORA/data/something/frames/220229/first.jpg", "AURORA/data/something/frames/220229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the tip of scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000112929", "images": ["AURORA/data/something/frames/89830/first.jpg", "AURORA/data/something/frames/89830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing compact disc from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112930", "images": ["AURORA/data/something/frames/73397/first.jpg", "AURORA/data/something/frames/73397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112931", "images": ["AURORA/data/something/frames/19853/first.jpg", "AURORA/data/something/frames/19853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, lighter and charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112932", "images": ["AURORA/data/something/frames/22364/first.jpg", "AURORA/data/something/frames/22364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112933", "images": ["AURORA/data/something/frames/88480/first.jpg", "AURORA/data/something/frames/88480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112934", "images": ["AURORA/data/something/frames/84867/first.jpg", "AURORA/data/something/frames/84867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112935", "images": ["AURORA/data/something/frames/194686/first.jpg", "AURORA/data/something/frames/194686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping glass bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112936", "images": ["AURORA/data/something/frames/27267/first.jpg", "AURORA/data/something/frames/27267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thimble up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112937", "images": ["AURORA/data/something/frames/175022/first.jpg", "AURORA/data/something/frames/175022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112938", "images": ["AURORA/data/something/frames/165834/first.jpg", "AURORA/data/something/frames/165834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112939", "images": ["AURORA/data/something/frames/213060/first.jpg", "AURORA/data/something/frames/213060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112940", "images": ["AURORA/data/something/frames/67399/first.jpg", "AURORA/data/something/frames/67399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key chain down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112941", "images": ["AURORA/data/something/frames/16328/first.jpg", "AURORA/data/something/frames/16328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000112942", "images": ["AURORA/data/something/frames/46538/first.jpg", "AURORA/data/something/frames/46538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking basket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112943", "images": ["AURORA/data/something/frames/156677/first.jpg", "AURORA/data/something/frames/156677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112944", "images": ["AURORA/data/something/frames/55153/first.jpg", "AURORA/data/something/frames/55153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of potty"}, {"from": "gpt", "value": ""}]} +{"id": "000000112945", "images": ["AURORA/data/something/frames/7379/first.jpg", "AURORA/data/something/frames/7379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil and brown colour sketch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112946", "images": ["AURORA/data/something/frames/161366/first.jpg", "AURORA/data/something/frames/161366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112947", "images": ["AURORA/data/something/frames/99812/first.jpg", "AURORA/data/something/frames/99812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle and a candle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112948", "images": ["AURORA/data/something/frames/120556/first.jpg", "AURORA/data/something/frames/120556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe and shoe away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112949", "images": ["AURORA/data/something/frames/68128/first.jpg", "AURORA/data/something/frames/68128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112950", "images": ["AURORA/data/something/frames/151431/first.jpg", "AURORA/data/something/frames/151431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cleaning cloth onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112951", "images": ["AURORA/data/something/frames/2104/first.jpg", "AURORA/data/something/frames/2104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112952", "images": ["AURORA/data/something/frames/179990/first.jpg", "AURORA/data/something/frames/179990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small freshmints from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112953", "images": ["AURORA/data/something/frames/108088/first.jpg", "AURORA/data/something/frames/108088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping an owl over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112954", "images": ["AURORA/data/something/frames/186221/first.jpg", "AURORA/data/something/frames/186221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112955", "images": ["AURORA/data/something/frames/104455/first.jpg", "AURORA/data/something/frames/104455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb next to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000112956", "images": ["AURORA/data/something/frames/108280/first.jpg", "AURORA/data/something/frames/108280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112957", "images": ["AURORA/data/something/frames/183649/first.jpg", "AURORA/data/something/frames/183649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112958", "images": ["AURORA/data/something/frames/181094/first.jpg", "AURORA/data/something/frames/181094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112959", "images": ["AURORA/data/something/frames/140150/first.jpg", "AURORA/data/something/frames/140150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box out of christmas stocking"}, {"from": "gpt", "value": ""}]} +{"id": "000000112960", "images": ["AURORA/data/something/frames/141696/first.jpg", "AURORA/data/something/frames/141696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tv remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112961", "images": ["AURORA/data/something/frames/98615/first.jpg", "AURORA/data/something/frames/98615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a vape upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112962", "images": ["AURORA/data/something/frames/64687/first.jpg", "AURORA/data/something/frames/64687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112963", "images": ["AURORA/data/something/frames/192123/first.jpg", "AURORA/data/something/frames/192123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112964", "images": ["AURORA/data/something/frames/43954/first.jpg", "AURORA/data/something/frames/43954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green face powder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112965", "images": ["AURORA/data/something/frames/143508/first.jpg", "AURORA/data/something/frames/143508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a peg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112966", "images": ["AURORA/data/something/frames/5492/first.jpg", "AURORA/data/something/frames/5492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on the edge of a counter so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112967", "images": ["AURORA/data/something/frames/55360/first.jpg", "AURORA/data/something/frames/55360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000112968", "images": ["AURORA/data/something/frames/161722/first.jpg", "AURORA/data/something/frames/161722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112969", "images": ["AURORA/data/something/frames/67939/first.jpg", "AURORA/data/something/frames/67939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking the remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112970", "images": ["AURORA/data/something/frames/203413/first.jpg", "AURORA/data/something/frames/203413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hanger so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112971", "images": ["AURORA/data/something/frames/159326/first.jpg", "AURORA/data/something/frames/159326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112972", "images": ["AURORA/data/something/frames/98127/first.jpg", "AURORA/data/something/frames/98127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching jeep with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112973", "images": ["AURORA/data/something/frames/164183/first.jpg", "AURORA/data/something/frames/164183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cards upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112974", "images": ["AURORA/data/something/frames/199215/first.jpg", "AURORA/data/something/frames/199215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting books with bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112975", "images": ["AURORA/data/something/frames/166239/first.jpg", "AURORA/data/something/frames/166239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissues from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112976", "images": ["AURORA/data/something/frames/197669/first.jpg", "AURORA/data/something/frames/197669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112977", "images": ["AURORA/data/something/frames/150869/first.jpg", "AURORA/data/something/frames/150869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting water bottle lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112978", "images": ["AURORA/data/something/frames/174709/first.jpg", "AURORA/data/something/frames/174709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto dishes"}, {"from": "gpt", "value": ""}]} +{"id": "000000112979", "images": ["AURORA/data/something/frames/19122/first.jpg", "AURORA/data/something/frames/19122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112980", "images": ["AURORA/data/something/frames/75793/first.jpg", "AURORA/data/something/frames/75793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112981", "images": ["AURORA/data/something/frames/220183/first.jpg", "AURORA/data/something/frames/220183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tape being deflected from cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000112982", "images": ["AURORA/data/something/frames/183432/first.jpg", "AURORA/data/something/frames/183432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112983", "images": ["AURORA/data/something/frames/103091/first.jpg", "AURORA/data/something/frames/103091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112984", "images": ["AURORA/data/something/frames/6161/first.jpg", "AURORA/data/something/frames/6161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking five notebooks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112985", "images": ["AURORA/data/something/frames/10335/first.jpg", "AURORA/data/something/frames/10335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000112986", "images": ["AURORA/data/something/frames/9614/first.jpg", "AURORA/data/something/frames/9614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen in pile of pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000112987", "images": ["AURORA/data/something/frames/180022/first.jpg", "AURORA/data/something/frames/180022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000112988", "images": ["AURORA/data/something/frames/72196/first.jpg", "AURORA/data/something/frames/72196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a biro out of a plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112989", "images": ["AURORA/data/something/frames/62430/first.jpg", "AURORA/data/something/frames/62430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving powerbank and airpods case closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112990", "images": ["AURORA/data/something/frames/161302/first.jpg", "AURORA/data/something/frames/161302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112991", "images": ["AURORA/data/something/frames/80906/first.jpg", "AURORA/data/something/frames/80906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000112992", "images": ["AURORA/data/something/frames/170918/first.jpg", "AURORA/data/something/frames/170918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112993", "images": ["AURORA/data/something/frames/126159/first.jpg", "AURORA/data/something/frames/126159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing baby pram with plastic bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112994", "images": ["AURORA/data/something/frames/3082/first.jpg", "AURORA/data/something/frames/3082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112995", "images": ["AURORA/data/something/frames/36255/first.jpg", "AURORA/data/something/frames/36255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tomato into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112996", "images": ["AURORA/data/something/frames/208560/first.jpg", "AURORA/data/something/frames/208560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112997", "images": ["AURORA/data/something/frames/96878/first.jpg", "AURORA/data/something/frames/96878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teabag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112998", "images": ["AURORA/data/something/frames/43428/first.jpg", "AURORA/data/something/frames/43428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from measuring tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112999", "images": ["AURORA/data/something/frames/212/first.jpg", "AURORA/data/something/frames/212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint tube next to cactus"}, {"from": "gpt", "value": ""}]} +{"id": "000000113000", "images": ["AURORA/data/something/frames/85066/first.jpg", "AURORA/data/something/frames/85066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cable into a desktop microphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113001", "images": ["AURORA/data/something/frames/73131/first.jpg", "AURORA/data/something/frames/73131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113002", "images": ["AURORA/data/something/frames/71103/first.jpg", "AURORA/data/something/frames/71103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a pencil without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113003", "images": ["AURORA/data/something/frames/66545/first.jpg", "AURORA/data/something/frames/66545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113004", "images": ["AURORA/data/something/frames/60960/first.jpg", "AURORA/data/something/frames/60960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000113005", "images": ["AURORA/data/something/frames/59884/first.jpg", "AURORA/data/something/frames/59884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113006", "images": ["AURORA/data/something/frames/203473/first.jpg", "AURORA/data/something/frames/203473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113007", "images": ["AURORA/data/something/frames/114096/first.jpg", "AURORA/data/something/frames/114096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113008", "images": ["AURORA/data/something/frames/10411/first.jpg", "AURORA/data/something/frames/10411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bag over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113009", "images": ["AURORA/data/something/frames/200490/first.jpg", "AURORA/data/something/frames/200490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of cream container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113010", "images": ["AURORA/data/something/frames/67325/first.jpg", "AURORA/data/something/frames/67325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toothpick container closer to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113011", "images": ["AURORA/data/something/frames/12499/first.jpg", "AURORA/data/something/frames/12499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113012", "images": ["AURORA/data/something/frames/115061/first.jpg", "AURORA/data/something/frames/115061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113013", "images": ["AURORA/data/something/frames/146601/first.jpg", "AURORA/data/something/frames/146601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113014", "images": ["AURORA/data/something/frames/72315/first.jpg", "AURORA/data/something/frames/72315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a chair in front of the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113015", "images": ["AURORA/data/something/frames/93845/first.jpg", "AURORA/data/something/frames/93845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113016", "images": ["AURORA/data/something/frames/186786/first.jpg", "AURORA/data/something/frames/186786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shoe and another shoe so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113017", "images": ["AURORA/data/something/frames/48705/first.jpg", "AURORA/data/something/frames/48705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into electrical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113018", "images": ["AURORA/data/something/frames/143243/first.jpg", "AURORA/data/something/frames/143243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113019", "images": ["AURORA/data/something/frames/170105/first.jpg", "AURORA/data/something/frames/170105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a calculator with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113020", "images": ["AURORA/data/something/frames/188811/first.jpg", "AURORA/data/something/frames/188811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113021", "images": ["AURORA/data/something/frames/75635/first.jpg", "AURORA/data/something/frames/75635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy gun off of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113022", "images": ["AURORA/data/something/frames/217074/first.jpg", "AURORA/data/something/frames/217074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113023", "images": ["AURORA/data/something/frames/29086/first.jpg", "AURORA/data/something/frames/29086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handout"}, {"from": "gpt", "value": ""}]} +{"id": "000000113024", "images": ["AURORA/data/something/frames/184198/first.jpg", "AURORA/data/something/frames/184198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking notebook so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113025", "images": ["AURORA/data/something/frames/28327/first.jpg", "AURORA/data/something/frames/28327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic container onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113026", "images": ["AURORA/data/something/frames/179892/first.jpg", "AURORA/data/something/frames/179892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113027", "images": ["AURORA/data/something/frames/36298/first.jpg", "AURORA/data/something/frames/36298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the table near pencils"}, {"from": "gpt", "value": ""}]} +{"id": "000000113028", "images": ["AURORA/data/something/frames/17014/first.jpg", "AURORA/data/something/frames/17014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing take-out menu into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113029", "images": ["AURORA/data/something/frames/16724/first.jpg", "AURORA/data/something/frames/16724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113030", "images": ["AURORA/data/something/frames/50807/first.jpg", "AURORA/data/something/frames/50807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving basketball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113031", "images": ["AURORA/data/something/frames/139524/first.jpg", "AURORA/data/something/frames/139524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor away from pick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113032", "images": ["AURORA/data/something/frames/53121/first.jpg", "AURORA/data/something/frames/53121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing water bottle, revealing a container behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113033", "images": ["AURORA/data/something/frames/186952/first.jpg", "AURORA/data/something/frames/186952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip bam and pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113034", "images": ["AURORA/data/something/frames/157010/first.jpg", "AURORA/data/something/frames/157010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup, stapler and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113035", "images": ["AURORA/data/something/frames/57794/first.jpg", "AURORA/data/something/frames/57794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing aim toothpaste so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113036", "images": ["AURORA/data/something/frames/177002/first.jpg", "AURORA/data/something/frames/177002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb onto toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113037", "images": ["AURORA/data/something/frames/217026/first.jpg", "AURORA/data/something/frames/217026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113038", "images": ["AURORA/data/something/frames/31627/first.jpg", "AURORA/data/something/frames/31627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tab of soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000113039", "images": ["AURORA/data/something/frames/191966/first.jpg", "AURORA/data/something/frames/191966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into phone charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113040", "images": ["AURORA/data/something/frames/12454/first.jpg", "AURORA/data/something/frames/12454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering spoon with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113041", "images": ["AURORA/data/something/frames/89232/first.jpg", "AURORA/data/something/frames/89232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soap and nail cutter so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113042", "images": ["AURORA/data/something/frames/92825/first.jpg", "AURORA/data/something/frames/92825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting remote up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113043", "images": ["AURORA/data/something/frames/634/first.jpg", "AURORA/data/something/frames/634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113044", "images": ["AURORA/data/something/frames/29503/first.jpg", "AURORA/data/something/frames/29503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from hair dryer with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113045", "images": ["AURORA/data/something/frames/155826/first.jpg", "AURORA/data/something/frames/155826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113046", "images": ["AURORA/data/something/frames/13933/first.jpg", "AURORA/data/something/frames/13933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching lid to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113047", "images": ["AURORA/data/something/frames/171834/first.jpg", "AURORA/data/something/frames/171834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ashtray underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113048", "images": ["AURORA/data/something/frames/125162/first.jpg", "AURORA/data/something/frames/125162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000113049", "images": ["AURORA/data/something/frames/87024/first.jpg", "AURORA/data/something/frames/87024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing clip behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113050", "images": ["AURORA/data/something/frames/153049/first.jpg", "AURORA/data/something/frames/153049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tape measurer so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113051", "images": ["AURORA/data/something/frames/85694/first.jpg", "AURORA/data/something/frames/85694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cup with a rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113052", "images": ["AURORA/data/something/frames/97259/first.jpg", "AURORA/data/something/frames/97259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto headlight of scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113053", "images": ["AURORA/data/something/frames/89405/first.jpg", "AURORA/data/something/frames/89405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000113054", "images": ["AURORA/data/something/frames/65007/first.jpg", "AURORA/data/something/frames/65007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000113055", "images": ["AURORA/data/something/frames/163756/first.jpg", "AURORA/data/something/frames/163756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a mug with paper towel on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113056", "images": ["AURORA/data/something/frames/197580/first.jpg", "AURORA/data/something/frames/197580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113057", "images": ["AURORA/data/something/frames/68400/first.jpg", "AURORA/data/something/frames/68400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a lighter so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113058", "images": ["AURORA/data/something/frames/53492/first.jpg", "AURORA/data/something/frames/53492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113059", "images": ["AURORA/data/something/frames/141300/first.jpg", "AURORA/data/something/frames/141300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113060", "images": ["AURORA/data/something/frames/133777/first.jpg", "AURORA/data/something/frames/133777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113061", "images": ["AURORA/data/something/frames/84130/first.jpg", "AURORA/data/something/frames/84130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cooking plane off of dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113062", "images": ["AURORA/data/something/frames/79298/first.jpg", "AURORA/data/something/frames/79298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling shoe from behind of wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000113063", "images": ["AURORA/data/something/frames/130879/first.jpg", "AURORA/data/something/frames/130879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113064", "images": ["AURORA/data/something/frames/99704/first.jpg", "AURORA/data/something/frames/99704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from traffic light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113065", "images": ["AURORA/data/something/frames/75609/first.jpg", "AURORA/data/something/frames/75609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113066", "images": ["AURORA/data/something/frames/56001/first.jpg", "AURORA/data/something/frames/56001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pair of mens boxers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113067", "images": ["AURORA/data/something/frames/7729/first.jpg", "AURORA/data/something/frames/7729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113068", "images": ["AURORA/data/something/frames/161729/first.jpg", "AURORA/data/something/frames/161729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting earphone onto keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113069", "images": ["AURORA/data/something/frames/75763/first.jpg", "AURORA/data/something/frames/75763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tablet box into coffe cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113070", "images": ["AURORA/data/something/frames/154344/first.jpg", "AURORA/data/something/frames/154344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting top in front of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113071", "images": ["AURORA/data/something/frames/190961/first.jpg", "AURORA/data/something/frames/190961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113072", "images": ["AURORA/data/something/frames/75375/first.jpg", "AURORA/data/something/frames/75375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113073", "images": ["AURORA/data/something/frames/27243/first.jpg", "AURORA/data/something/frames/27243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from fence with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113074", "images": ["AURORA/data/something/frames/76726/first.jpg", "AURORA/data/something/frames/76726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113075", "images": ["AURORA/data/something/frames/36913/first.jpg", "AURORA/data/something/frames/36913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering rock"}, {"from": "gpt", "value": ""}]} +{"id": "000000113076", "images": ["AURORA/data/something/frames/51007/first.jpg", "AURORA/data/something/frames/51007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113077", "images": ["AURORA/data/something/frames/211829/first.jpg", "AURORA/data/something/frames/211829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113078", "images": ["AURORA/data/something/frames/4581/first.jpg", "AURORA/data/something/frames/4581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy off of the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113079", "images": ["AURORA/data/something/frames/99072/first.jpg", "AURORA/data/something/frames/99072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the cube onto the fan so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113080", "images": ["AURORA/data/something/frames/200198/first.jpg", "AURORA/data/something/frames/200198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113081", "images": ["AURORA/data/something/frames/197052/first.jpg", "AURORA/data/something/frames/197052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113082", "images": ["AURORA/data/something/frames/186266/first.jpg", "AURORA/data/something/frames/186266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113083", "images": ["AURORA/data/something/frames/15490/first.jpg", "AURORA/data/something/frames/15490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power supply cord into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113084", "images": ["AURORA/data/something/frames/146728/first.jpg", "AURORA/data/something/frames/146728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113085", "images": ["AURORA/data/something/frames/163959/first.jpg", "AURORA/data/something/frames/163959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pencil case so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113086", "images": ["AURORA/data/something/frames/111838/first.jpg", "AURORA/data/something/frames/111838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking dustpan up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113087", "images": ["AURORA/data/something/frames/160927/first.jpg", "AURORA/data/something/frames/160927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto countertop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113088", "images": ["AURORA/data/something/frames/203624/first.jpg", "AURORA/data/something/frames/203624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113089", "images": ["AURORA/data/something/frames/131954/first.jpg", "AURORA/data/something/frames/131954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing booklet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113090", "images": ["AURORA/data/something/frames/102754/first.jpg", "AURORA/data/something/frames/102754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113091", "images": ["AURORA/data/something/frames/202448/first.jpg", "AURORA/data/something/frames/202448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000113092", "images": ["AURORA/data/something/frames/130876/first.jpg", "AURORA/data/something/frames/130876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113093", "images": ["AURORA/data/something/frames/14594/first.jpg", "AURORA/data/something/frames/14594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sneaker away from a backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113094", "images": ["AURORA/data/something/frames/69683/first.jpg", "AURORA/data/something/frames/69683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into amp but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113095", "images": ["AURORA/data/something/frames/96210/first.jpg", "AURORA/data/something/frames/96210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from safety helmet with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113096", "images": ["AURORA/data/something/frames/63696/first.jpg", "AURORA/data/something/frames/63696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113097", "images": ["AURORA/data/something/frames/94286/first.jpg", "AURORA/data/something/frames/94286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobile with tissue paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113098", "images": ["AURORA/data/something/frames/146684/first.jpg", "AURORA/data/something/frames/146684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000113099", "images": ["AURORA/data/something/frames/150496/first.jpg", "AURORA/data/something/frames/150496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flat box closer to flat box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113100", "images": ["AURORA/data/something/frames/50882/first.jpg", "AURORA/data/something/frames/50882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ruler with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113101", "images": ["AURORA/data/something/frames/10285/first.jpg", "AURORA/data/something/frames/10285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113102", "images": ["AURORA/data/something/frames/64755/first.jpg", "AURORA/data/something/frames/64755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping drop something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113103", "images": ["AURORA/data/something/frames/129543/first.jpg", "AURORA/data/something/frames/129543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000113104", "images": ["AURORA/data/something/frames/86025/first.jpg", "AURORA/data/something/frames/86025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cashew"}, {"from": "gpt", "value": ""}]} +{"id": "000000113105", "images": ["AURORA/data/something/frames/77368/first.jpg", "AURORA/data/something/frames/77368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting computer mouse with ios usb charger adaptor on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113106", "images": ["AURORA/data/something/frames/83716/first.jpg", "AURORA/data/something/frames/83716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tea infuser out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113107", "images": ["AURORA/data/something/frames/16284/first.jpg", "AURORA/data/something/frames/16284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bag so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113108", "images": ["AURORA/data/something/frames/203449/first.jpg", "AURORA/data/something/frames/203449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky note to the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000113109", "images": ["AURORA/data/something/frames/150483/first.jpg", "AURORA/data/something/frames/150483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ipad upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113110", "images": ["AURORA/data/something/frames/41116/first.jpg", "AURORA/data/something/frames/41116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toothpick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113111", "images": ["AURORA/data/something/frames/73342/first.jpg", "AURORA/data/something/frames/73342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113112", "images": ["AURORA/data/something/frames/123179/first.jpg", "AURORA/data/something/frames/123179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubber band similar to other rubber bands that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113113", "images": ["AURORA/data/something/frames/193901/first.jpg", "AURORA/data/something/frames/193901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wristwatch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113114", "images": ["AURORA/data/something/frames/13497/first.jpg", "AURORA/data/something/frames/13497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wristwatch next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113115", "images": ["AURORA/data/something/frames/182501/first.jpg", "AURORA/data/something/frames/182501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening window"}, {"from": "gpt", "value": ""}]} +{"id": "000000113116", "images": ["AURORA/data/something/frames/131389/first.jpg", "AURORA/data/something/frames/131389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bobby pin next to pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113117", "images": ["AURORA/data/something/frames/106485/first.jpg", "AURORA/data/something/frames/106485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113118", "images": ["AURORA/data/something/frames/199741/first.jpg", "AURORA/data/something/frames/199741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113119", "images": ["AURORA/data/something/frames/143420/first.jpg", "AURORA/data/something/frames/143420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113120", "images": ["AURORA/data/something/frames/10154/first.jpg", "AURORA/data/something/frames/10154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming mosquito repellent"}, {"from": "gpt", "value": ""}]} +{"id": "000000113121", "images": ["AURORA/data/something/frames/201342/first.jpg", "AURORA/data/something/frames/201342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113122", "images": ["AURORA/data/something/frames/52497/first.jpg", "AURORA/data/something/frames/52497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113123", "images": ["AURORA/data/something/frames/88701/first.jpg", "AURORA/data/something/frames/88701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113124", "images": ["AURORA/data/something/frames/168954/first.jpg", "AURORA/data/something/frames/168954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113125", "images": ["AURORA/data/something/frames/17545/first.jpg", "AURORA/data/something/frames/17545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a lighter up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113126", "images": ["AURORA/data/something/frames/59511/first.jpg", "AURORA/data/something/frames/59511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tissus from tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113127", "images": ["AURORA/data/something/frames/172216/first.jpg", "AURORA/data/something/frames/172216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113128", "images": ["AURORA/data/something/frames/211857/first.jpg", "AURORA/data/something/frames/211857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113129", "images": ["AURORA/data/something/frames/161435/first.jpg", "AURORA/data/something/frames/161435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an adaptor but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113130", "images": ["AURORA/data/something/frames/146574/first.jpg", "AURORA/data/something/frames/146574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a coffee mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113131", "images": ["AURORA/data/something/frames/160612/first.jpg", "AURORA/data/something/frames/160612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair bows onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113132", "images": ["AURORA/data/something/frames/124448/first.jpg", "AURORA/data/something/frames/124448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging hdmi cable into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113133", "images": ["AURORA/data/something/frames/29178/first.jpg", "AURORA/data/something/frames/29178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar with tripod"}, {"from": "gpt", "value": ""}]} +{"id": "000000113134", "images": ["AURORA/data/something/frames/76465/first.jpg", "AURORA/data/something/frames/76465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113135", "images": ["AURORA/data/something/frames/44716/first.jpg", "AURORA/data/something/frames/44716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a wooden stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113136", "images": ["AURORA/data/something/frames/157934/first.jpg", "AURORA/data/something/frames/157934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a cooking pot with a chopstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113137", "images": ["AURORA/data/something/frames/142200/first.jpg", "AURORA/data/something/frames/142200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000113138", "images": ["AURORA/data/something/frames/186609/first.jpg", "AURORA/data/something/frames/186609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it notes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113139", "images": ["AURORA/data/something/frames/57197/first.jpg", "AURORA/data/something/frames/57197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113140", "images": ["AURORA/data/something/frames/153182/first.jpg", "AURORA/data/something/frames/153182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113141", "images": ["AURORA/data/something/frames/4411/first.jpg", "AURORA/data/something/frames/4411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113142", "images": ["AURORA/data/something/frames/212727/first.jpg", "AURORA/data/something/frames/212727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming me"}, {"from": "gpt", "value": ""}]} +{"id": "000000113143", "images": ["AURORA/data/something/frames/78984/first.jpg", "AURORA/data/something/frames/78984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113144", "images": ["AURORA/data/something/frames/36339/first.jpg", "AURORA/data/something/frames/36339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dining room"}, {"from": "gpt", "value": ""}]} +{"id": "000000113145", "images": ["AURORA/data/something/frames/165413/first.jpg", "AURORA/data/something/frames/165413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a yogurt container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113146", "images": ["AURORA/data/something/frames/20598/first.jpg", "AURORA/data/something/frames/20598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tablet computer upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113147", "images": ["AURORA/data/something/frames/160896/first.jpg", "AURORA/data/something/frames/160896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113148", "images": ["AURORA/data/something/frames/17149/first.jpg", "AURORA/data/something/frames/17149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113149", "images": ["AURORA/data/something/frames/119546/first.jpg", "AURORA/data/something/frames/119546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113150", "images": ["AURORA/data/something/frames/197445/first.jpg", "AURORA/data/something/frames/197445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000113151", "images": ["AURORA/data/something/frames/171693/first.jpg", "AURORA/data/something/frames/171693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile phone upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113152", "images": ["AURORA/data/something/frames/164346/first.jpg", "AURORA/data/something/frames/164346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113153", "images": ["AURORA/data/something/frames/20243/first.jpg", "AURORA/data/something/frames/20243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging two pin into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113154", "images": ["AURORA/data/something/frames/10207/first.jpg", "AURORA/data/something/frames/10207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a flashlight up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113155", "images": ["AURORA/data/something/frames/22418/first.jpg", "AURORA/data/something/frames/22418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113156", "images": ["AURORA/data/something/frames/185982/first.jpg", "AURORA/data/something/frames/185982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113157", "images": ["AURORA/data/something/frames/183706/first.jpg", "AURORA/data/something/frames/183706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pink toothbrush case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113158", "images": ["AURORA/data/something/frames/122582/first.jpg", "AURORA/data/something/frames/122582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113159", "images": ["AURORA/data/something/frames/101197/first.jpg", "AURORA/data/something/frames/101197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mix cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113160", "images": ["AURORA/data/something/frames/91630/first.jpg", "AURORA/data/something/frames/91630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113161", "images": ["AURORA/data/something/frames/55310/first.jpg", "AURORA/data/something/frames/55310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with pennies over, so pennies falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113162", "images": ["AURORA/data/something/frames/49667/first.jpg", "AURORA/data/something/frames/49667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching peg to usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000113163", "images": ["AURORA/data/something/frames/77990/first.jpg", "AURORA/data/something/frames/77990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of blocks so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113164", "images": ["AURORA/data/something/frames/123585/first.jpg", "AURORA/data/something/frames/123585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113165", "images": ["AURORA/data/something/frames/50906/first.jpg", "AURORA/data/something/frames/50906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic container on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113166", "images": ["AURORA/data/something/frames/178084/first.jpg", "AURORA/data/something/frames/178084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into extension cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113167", "images": ["AURORA/data/something/frames/2426/first.jpg", "AURORA/data/something/frames/2426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113168", "images": ["AURORA/data/something/frames/209649/first.jpg", "AURORA/data/something/frames/209649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pebble with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113169", "images": ["AURORA/data/something/frames/30467/first.jpg", "AURORA/data/something/frames/30467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113170", "images": ["AURORA/data/something/frames/92639/first.jpg", "AURORA/data/something/frames/92639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cereal into mouth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113171", "images": ["AURORA/data/something/frames/151044/first.jpg", "AURORA/data/something/frames/151044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113172", "images": ["AURORA/data/something/frames/78618/first.jpg", "AURORA/data/something/frames/78618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113173", "images": ["AURORA/data/something/frames/205149/first.jpg", "AURORA/data/something/frames/205149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113174", "images": ["AURORA/data/something/frames/176086/first.jpg", "AURORA/data/something/frames/176086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113175", "images": ["AURORA/data/something/frames/52130/first.jpg", "AURORA/data/something/frames/52130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking silverware"}, {"from": "gpt", "value": ""}]} +{"id": "000000113176", "images": ["AURORA/data/something/frames/152091/first.jpg", "AURORA/data/something/frames/152091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from old mobile phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113177", "images": ["AURORA/data/something/frames/53788/first.jpg", "AURORA/data/something/frames/53788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting red toy car with marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113178", "images": ["AURORA/data/something/frames/171374/first.jpg", "AURORA/data/something/frames/171374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113179", "images": ["AURORA/data/something/frames/67153/first.jpg", "AURORA/data/something/frames/67153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming brown case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113180", "images": ["AURORA/data/something/frames/62193/first.jpg", "AURORA/data/something/frames/62193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113181", "images": ["AURORA/data/something/frames/30509/first.jpg", "AURORA/data/something/frames/30509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113182", "images": ["AURORA/data/something/frames/119930/first.jpg", "AURORA/data/something/frames/119930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of banana without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113183", "images": ["AURORA/data/something/frames/124878/first.jpg", "AURORA/data/something/frames/124878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113184", "images": ["AURORA/data/something/frames/49099/first.jpg", "AURORA/data/something/frames/49099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching granola bar with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113185", "images": ["AURORA/data/something/frames/131557/first.jpg", "AURORA/data/something/frames/131557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lime and lime away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113186", "images": ["AURORA/data/something/frames/144615/first.jpg", "AURORA/data/something/frames/144615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000113187", "images": ["AURORA/data/something/frames/23907/first.jpg", "AURORA/data/something/frames/23907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a container on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113188", "images": ["AURORA/data/something/frames/126582/first.jpg", "AURORA/data/something/frames/126582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113189", "images": ["AURORA/data/something/frames/185757/first.jpg", "AURORA/data/something/frames/185757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with another coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113190", "images": ["AURORA/data/something/frames/3793/first.jpg", "AURORA/data/something/frames/3793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a yellow pen in front of a screen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113191", "images": ["AURORA/data/something/frames/92489/first.jpg", "AURORA/data/something/frames/92489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug adapter into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113192", "images": ["AURORA/data/something/frames/149612/first.jpg", "AURORA/data/something/frames/149612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113193", "images": ["AURORA/data/something/frames/135355/first.jpg", "AURORA/data/something/frames/135355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wine key and chapstick on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113194", "images": ["AURORA/data/something/frames/174956/first.jpg", "AURORA/data/something/frames/174956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113195", "images": ["AURORA/data/something/frames/28601/first.jpg", "AURORA/data/something/frames/28601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rocks and rocks away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113196", "images": ["AURORA/data/something/frames/26971/first.jpg", "AURORA/data/something/frames/26971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) keys of keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113197", "images": ["AURORA/data/something/frames/199245/first.jpg", "AURORA/data/something/frames/199245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hairclip and ice tray closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113198", "images": ["AURORA/data/something/frames/167436/first.jpg", "AURORA/data/something/frames/167436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing printer paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113199", "images": ["AURORA/data/something/frames/184772/first.jpg", "AURORA/data/something/frames/184772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113200", "images": ["AURORA/data/something/frames/142357/first.jpg", "AURORA/data/something/frames/142357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113201", "images": ["AURORA/data/something/frames/109948/first.jpg", "AURORA/data/something/frames/109948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking car out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113202", "images": ["AURORA/data/something/frames/212394/first.jpg", "AURORA/data/something/frames/212394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper clip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113203", "images": ["AURORA/data/something/frames/86565/first.jpg", "AURORA/data/something/frames/86565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white badge with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113204", "images": ["AURORA/data/something/frames/24659/first.jpg", "AURORA/data/something/frames/24659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113205", "images": ["AURORA/data/something/frames/99273/first.jpg", "AURORA/data/something/frames/99273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113206", "images": ["AURORA/data/something/frames/182096/first.jpg", "AURORA/data/something/frames/182096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink blush on from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113207", "images": ["AURORA/data/something/frames/74983/first.jpg", "AURORA/data/something/frames/74983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113208", "images": ["AURORA/data/something/frames/185777/first.jpg", "AURORA/data/something/frames/185777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing play-doh behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113209", "images": ["AURORA/data/something/frames/150301/first.jpg", "AURORA/data/something/frames/150301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113210", "images": ["AURORA/data/something/frames/191701/first.jpg", "AURORA/data/something/frames/191701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting marker pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113211", "images": ["AURORA/data/something/frames/30315/first.jpg", "AURORA/data/something/frames/30315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plate from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113212", "images": ["AURORA/data/something/frames/93580/first.jpg", "AURORA/data/something/frames/93580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cigarrete butt so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113213", "images": ["AURORA/data/something/frames/62813/first.jpg", "AURORA/data/something/frames/62813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cards on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113214", "images": ["AURORA/data/something/frames/11687/first.jpg", "AURORA/data/something/frames/11687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113215", "images": ["AURORA/data/something/frames/77265/first.jpg", "AURORA/data/something/frames/77265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113216", "images": ["AURORA/data/something/frames/108595/first.jpg", "AURORA/data/something/frames/108595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113217", "images": ["AURORA/data/something/frames/476/first.jpg", "AURORA/data/something/frames/476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green bowl with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113218", "images": ["AURORA/data/something/frames/142530/first.jpg", "AURORA/data/something/frames/142530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering smartphone with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113219", "images": ["AURORA/data/something/frames/159882/first.jpg", "AURORA/data/something/frames/159882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an adapter from an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113220", "images": ["AURORA/data/something/frames/31914/first.jpg", "AURORA/data/something/frames/31914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000113221", "images": ["AURORA/data/something/frames/184108/first.jpg", "AURORA/data/something/frames/184108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shirt into a laundry basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113222", "images": ["AURORA/data/something/frames/106813/first.jpg", "AURORA/data/something/frames/106813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping knife next to fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113223", "images": ["AURORA/data/something/frames/156401/first.jpg", "AURORA/data/something/frames/156401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113224", "images": ["AURORA/data/something/frames/204017/first.jpg", "AURORA/data/something/frames/204017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one button from many buttons"}, {"from": "gpt", "value": ""}]} +{"id": "000000113225", "images": ["AURORA/data/something/frames/5916/first.jpg", "AURORA/data/something/frames/5916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking game piece out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113226", "images": ["AURORA/data/something/frames/88381/first.jpg", "AURORA/data/something/frames/88381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113227", "images": ["AURORA/data/something/frames/112174/first.jpg", "AURORA/data/something/frames/112174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic screwcap next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113228", "images": ["AURORA/data/something/frames/1568/first.jpg", "AURORA/data/something/frames/1568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key away from comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000113229", "images": ["AURORA/data/something/frames/218533/first.jpg", "AURORA/data/something/frames/218533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113230", "images": ["AURORA/data/something/frames/202332/first.jpg", "AURORA/data/something/frames/202332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113231", "images": ["AURORA/data/something/frames/115579/first.jpg", "AURORA/data/something/frames/115579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113232", "images": ["AURORA/data/something/frames/26673/first.jpg", "AURORA/data/something/frames/26673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113233", "images": ["AURORA/data/something/frames/167701/first.jpg", "AURORA/data/something/frames/167701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113234", "images": ["AURORA/data/something/frames/183125/first.jpg", "AURORA/data/something/frames/183125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113235", "images": ["AURORA/data/something/frames/183767/first.jpg", "AURORA/data/something/frames/183767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: nail clipper colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113236", "images": ["AURORA/data/something/frames/106625/first.jpg", "AURORA/data/something/frames/106625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113237", "images": ["AURORA/data/something/frames/169574/first.jpg", "AURORA/data/something/frames/169574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting laptop similar to other laptops that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113238", "images": ["AURORA/data/something/frames/69312/first.jpg", "AURORA/data/something/frames/69312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tube underneath bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113239", "images": ["AURORA/data/something/frames/51695/first.jpg", "AURORA/data/something/frames/51695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a rock from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113240", "images": ["AURORA/data/something/frames/66923/first.jpg", "AURORA/data/something/frames/66923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a powder tin towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113241", "images": ["AURORA/data/something/frames/202803/first.jpg", "AURORA/data/something/frames/202803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113242", "images": ["AURORA/data/something/frames/63313/first.jpg", "AURORA/data/something/frames/63313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster underneath cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113243", "images": ["AURORA/data/something/frames/183775/first.jpg", "AURORA/data/something/frames/183775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mouse from pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000113244", "images": ["AURORA/data/something/frames/109557/first.jpg", "AURORA/data/something/frames/109557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint tube behind cactus"}, {"from": "gpt", "value": ""}]} +{"id": "000000113245", "images": ["AURORA/data/something/frames/140935/first.jpg", "AURORA/data/something/frames/140935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bucket with a toy bulldozer on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113246", "images": ["AURORA/data/something/frames/81367/first.jpg", "AURORA/data/something/frames/81367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling toy cars up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113247", "images": ["AURORA/data/something/frames/199182/first.jpg", "AURORA/data/something/frames/199182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a baby doll with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113248", "images": ["AURORA/data/something/frames/134500/first.jpg", "AURORA/data/something/frames/134500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable away from usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000113249", "images": ["AURORA/data/something/frames/159131/first.jpg", "AURORA/data/something/frames/159131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coin with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113250", "images": ["AURORA/data/something/frames/182806/first.jpg", "AURORA/data/something/frames/182806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113251", "images": ["AURORA/data/something/frames/39048/first.jpg", "AURORA/data/something/frames/39048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bag with a door hook"}, {"from": "gpt", "value": ""}]} +{"id": "000000113252", "images": ["AURORA/data/something/frames/69470/first.jpg", "AURORA/data/something/frames/69470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113253", "images": ["AURORA/data/something/frames/63365/first.jpg", "AURORA/data/something/frames/63365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113254", "images": ["AURORA/data/something/frames/156240/first.jpg", "AURORA/data/something/frames/156240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113255", "images": ["AURORA/data/something/frames/21438/first.jpg", "AURORA/data/something/frames/21438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening small freshmints"}, {"from": "gpt", "value": ""}]} +{"id": "000000113256", "images": ["AURORA/data/something/frames/84277/first.jpg", "AURORA/data/something/frames/84277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000113257", "images": ["AURORA/data/something/frames/70659/first.jpg", "AURORA/data/something/frames/70659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle behind kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000113258", "images": ["AURORA/data/something/frames/190154/first.jpg", "AURORA/data/something/frames/190154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dinosaur model"}, {"from": "gpt", "value": ""}]} +{"id": "000000113259", "images": ["AURORA/data/something/frames/92150/first.jpg", "AURORA/data/something/frames/92150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113260", "images": ["AURORA/data/something/frames/92925/first.jpg", "AURORA/data/something/frames/92925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mouse into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113261", "images": ["AURORA/data/something/frames/25736/first.jpg", "AURORA/data/something/frames/25736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toothbrush with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113262", "images": ["AURORA/data/something/frames/6879/first.jpg", "AURORA/data/something/frames/6879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113263", "images": ["AURORA/data/something/frames/172284/first.jpg", "AURORA/data/something/frames/172284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug hole"}, {"from": "gpt", "value": ""}]} +{"id": "000000113264", "images": ["AURORA/data/something/frames/101856/first.jpg", "AURORA/data/something/frames/101856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113265", "images": ["AURORA/data/something/frames/107303/first.jpg", "AURORA/data/something/frames/107303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pumpkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113266", "images": ["AURORA/data/something/frames/10773/first.jpg", "AURORA/data/something/frames/10773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a hair accessoire up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113267", "images": ["AURORA/data/something/frames/170634/first.jpg", "AURORA/data/something/frames/170634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nailpolish down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113268", "images": ["AURORA/data/something/frames/25393/first.jpg", "AURORA/data/something/frames/25393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring syrup into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113269", "images": ["AURORA/data/something/frames/140620/first.jpg", "AURORA/data/something/frames/140620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113270", "images": ["AURORA/data/something/frames/144126/first.jpg", "AURORA/data/something/frames/144126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil of school materials"}, {"from": "gpt", "value": ""}]} +{"id": "000000113271", "images": ["AURORA/data/something/frames/92056/first.jpg", "AURORA/data/something/frames/92056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113272", "images": ["AURORA/data/something/frames/104601/first.jpg", "AURORA/data/something/frames/104601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tea out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113273", "images": ["AURORA/data/something/frames/83133/first.jpg", "AURORA/data/something/frames/83133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113274", "images": ["AURORA/data/something/frames/78437/first.jpg", "AURORA/data/something/frames/78437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a lotion off of the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113275", "images": ["AURORA/data/something/frames/122884/first.jpg", "AURORA/data/something/frames/122884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113276", "images": ["AURORA/data/something/frames/124792/first.jpg", "AURORA/data/something/frames/124792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding ipad cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000113277", "images": ["AURORA/data/something/frames/135026/first.jpg", "AURORA/data/something/frames/135026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing computer mouse, revealing key behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113278", "images": ["AURORA/data/something/frames/5058/first.jpg", "AURORA/data/something/frames/5058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a piece of paper and a glass of cordial on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113279", "images": ["AURORA/data/something/frames/41496/first.jpg", "AURORA/data/something/frames/41496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a wallet with a textsurfer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113280", "images": ["AURORA/data/something/frames/54764/first.jpg", "AURORA/data/something/frames/54764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113281", "images": ["AURORA/data/something/frames/168948/first.jpg", "AURORA/data/something/frames/168948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a deck of cards off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113282", "images": ["AURORA/data/something/frames/208698/first.jpg", "AURORA/data/something/frames/208698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113283", "images": ["AURORA/data/something/frames/120142/first.jpg", "AURORA/data/something/frames/120142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113284", "images": ["AURORA/data/something/frames/26966/first.jpg", "AURORA/data/something/frames/26966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cut tomatoes into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113285", "images": ["AURORA/data/something/frames/64506/first.jpg", "AURORA/data/something/frames/64506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yellow highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113286", "images": ["AURORA/data/something/frames/52769/first.jpg", "AURORA/data/something/frames/52769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scotch tape from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113287", "images": ["AURORA/data/something/frames/169085/first.jpg", "AURORA/data/something/frames/169085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming fan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113288", "images": ["AURORA/data/something/frames/120364/first.jpg", "AURORA/data/something/frames/120364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming readymade dresses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113289", "images": ["AURORA/data/something/frames/147269/first.jpg", "AURORA/data/something/frames/147269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing felt pen with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113290", "images": ["AURORA/data/something/frames/98879/first.jpg", "AURORA/data/something/frames/98879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113291", "images": ["AURORA/data/something/frames/9317/first.jpg", "AURORA/data/something/frames/9317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000113292", "images": ["AURORA/data/something/frames/152262/first.jpg", "AURORA/data/something/frames/152262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113293", "images": ["AURORA/data/something/frames/36254/first.jpg", "AURORA/data/something/frames/36254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into glue"}, {"from": "gpt", "value": ""}]} +{"id": "000000113294", "images": ["AURORA/data/something/frames/11334/first.jpg", "AURORA/data/something/frames/11334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113295", "images": ["AURORA/data/something/frames/83541/first.jpg", "AURORA/data/something/frames/83541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113296", "images": ["AURORA/data/something/frames/8590/first.jpg", "AURORA/data/something/frames/8590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113297", "images": ["AURORA/data/something/frames/135962/first.jpg", "AURORA/data/something/frames/135962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000113298", "images": ["AURORA/data/something/frames/1168/first.jpg", "AURORA/data/something/frames/1168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113299", "images": ["AURORA/data/something/frames/56795/first.jpg", "AURORA/data/something/frames/56795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning remote control upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113300", "images": ["AURORA/data/something/frames/137973/first.jpg", "AURORA/data/something/frames/137973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with tissue paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113301", "images": ["AURORA/data/something/frames/193333/first.jpg", "AURORA/data/something/frames/193333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113302", "images": ["AURORA/data/something/frames/20396/first.jpg", "AURORA/data/something/frames/20396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and fruit away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113303", "images": ["AURORA/data/something/frames/75384/first.jpg", "AURORA/data/something/frames/75384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto frying pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113304", "images": ["AURORA/data/something/frames/4995/first.jpg", "AURORA/data/something/frames/4995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113305", "images": ["AURORA/data/something/frames/214017/first.jpg", "AURORA/data/something/frames/214017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging sunglass out of clothes bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113306", "images": ["AURORA/data/something/frames/75685/first.jpg", "AURORA/data/something/frames/75685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000113307", "images": ["AURORA/data/something/frames/75766/first.jpg", "AURORA/data/something/frames/75766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking six books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113308", "images": ["AURORA/data/something/frames/108425/first.jpg", "AURORA/data/something/frames/108425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wallet up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113309", "images": ["AURORA/data/something/frames/6954/first.jpg", "AURORA/data/something/frames/6954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113310", "images": ["AURORA/data/something/frames/167356/first.jpg", "AURORA/data/something/frames/167356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a monkey figure and a monkey figure away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113311", "images": ["AURORA/data/something/frames/9497/first.jpg", "AURORA/data/something/frames/9497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with nail cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113312", "images": ["AURORA/data/something/frames/50256/first.jpg", "AURORA/data/something/frames/50256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113313", "images": ["AURORA/data/something/frames/217306/first.jpg", "AURORA/data/something/frames/217306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113314", "images": ["AURORA/data/something/frames/68391/first.jpg", "AURORA/data/something/frames/68391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a toy robot on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113315", "images": ["AURORA/data/something/frames/191006/first.jpg", "AURORA/data/something/frames/191006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a wok"}, {"from": "gpt", "value": ""}]} +{"id": "000000113316", "images": ["AURORA/data/something/frames/162881/first.jpg", "AURORA/data/something/frames/162881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin next to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113317", "images": ["AURORA/data/something/frames/207417/first.jpg", "AURORA/data/something/frames/207417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000113318", "images": ["AURORA/data/something/frames/151614/first.jpg", "AURORA/data/something/frames/151614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113319", "images": ["AURORA/data/something/frames/25704/first.jpg", "AURORA/data/something/frames/25704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113320", "images": ["AURORA/data/something/frames/114986/first.jpg", "AURORA/data/something/frames/114986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping flour up with measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113321", "images": ["AURORA/data/something/frames/128956/first.jpg", "AURORA/data/something/frames/128956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113322", "images": ["AURORA/data/something/frames/129615/first.jpg", "AURORA/data/something/frames/129615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113323", "images": ["AURORA/data/something/frames/104368/first.jpg", "AURORA/data/something/frames/104368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113324", "images": ["AURORA/data/something/frames/218377/first.jpg", "AURORA/data/something/frames/218377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113325", "images": ["AURORA/data/something/frames/102782/first.jpg", "AURORA/data/something/frames/102782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purple balloon pump from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113326", "images": ["AURORA/data/something/frames/46169/first.jpg", "AURORA/data/something/frames/46169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113327", "images": ["AURORA/data/something/frames/206987/first.jpg", "AURORA/data/something/frames/206987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113328", "images": ["AURORA/data/something/frames/145492/first.jpg", "AURORA/data/something/frames/145492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a glue stick behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113329", "images": ["AURORA/data/something/frames/15498/first.jpg", "AURORA/data/something/frames/15498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mouse from behind of a helmet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113330", "images": ["AURORA/data/something/frames/31540/first.jpg", "AURORA/data/something/frames/31540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand sanitizer upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113331", "images": ["AURORA/data/something/frames/24321/first.jpg", "AURORA/data/something/frames/24321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming shampoo bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113332", "images": ["AURORA/data/something/frames/23230/first.jpg", "AURORA/data/something/frames/23230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, book and gum on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113333", "images": ["AURORA/data/something/frames/200080/first.jpg", "AURORA/data/something/frames/200080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a face towel into a small bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113334", "images": ["AURORA/data/something/frames/107441/first.jpg", "AURORA/data/something/frames/107441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hairclip into a glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000113335", "images": ["AURORA/data/something/frames/134541/first.jpg", "AURORA/data/something/frames/134541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving head charger and head charger away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113336", "images": ["AURORA/data/something/frames/91418/first.jpg", "AURORA/data/something/frames/91418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113337", "images": ["AURORA/data/something/frames/194218/first.jpg", "AURORA/data/something/frames/194218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113338", "images": ["AURORA/data/something/frames/4114/first.jpg", "AURORA/data/something/frames/4114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113339", "images": ["AURORA/data/something/frames/135837/first.jpg", "AURORA/data/something/frames/135837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tissues over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113340", "images": ["AURORA/data/something/frames/23147/first.jpg", "AURORA/data/something/frames/23147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging candy mint out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113341", "images": ["AURORA/data/something/frames/155310/first.jpg", "AURORA/data/something/frames/155310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113342", "images": ["AURORA/data/something/frames/185280/first.jpg", "AURORA/data/something/frames/185280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote control with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113343", "images": ["AURORA/data/something/frames/44303/first.jpg", "AURORA/data/something/frames/44303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plant on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113344", "images": ["AURORA/data/something/frames/143793/first.jpg", "AURORA/data/something/frames/143793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113345", "images": ["AURORA/data/something/frames/31560/first.jpg", "AURORA/data/something/frames/31560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) switch of light"}, {"from": "gpt", "value": ""}]} +{"id": "000000113346", "images": ["AURORA/data/something/frames/146870/first.jpg", "AURORA/data/something/frames/146870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 striker coins onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113347", "images": ["AURORA/data/something/frames/36641/first.jpg", "AURORA/data/something/frames/36641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spaghetti until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113348", "images": ["AURORA/data/something/frames/26281/first.jpg", "AURORA/data/something/frames/26281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113349", "images": ["AURORA/data/something/frames/8252/first.jpg", "AURORA/data/something/frames/8252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113350", "images": ["AURORA/data/something/frames/195007/first.jpg", "AURORA/data/something/frames/195007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113351", "images": ["AURORA/data/something/frames/50765/first.jpg", "AURORA/data/something/frames/50765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebooks into eco bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113352", "images": ["AURORA/data/something/frames/92475/first.jpg", "AURORA/data/something/frames/92475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mixer-jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113353", "images": ["AURORA/data/something/frames/164584/first.jpg", "AURORA/data/something/frames/164584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113354", "images": ["AURORA/data/something/frames/87170/first.jpg", "AURORA/data/something/frames/87170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113355", "images": ["AURORA/data/something/frames/62930/first.jpg", "AURORA/data/something/frames/62930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electric plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113356", "images": ["AURORA/data/something/frames/218360/first.jpg", "AURORA/data/something/frames/218360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one book of many similar books on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113357", "images": ["AURORA/data/something/frames/95927/first.jpg", "AURORA/data/something/frames/95927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113358", "images": ["AURORA/data/something/frames/64862/first.jpg", "AURORA/data/something/frames/64862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113359", "images": ["AURORA/data/something/frames/16767/first.jpg", "AURORA/data/something/frames/16767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy out of a toy box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113360", "images": ["AURORA/data/something/frames/8461/first.jpg", "AURORA/data/something/frames/8461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting hair band"}, {"from": "gpt", "value": ""}]} +{"id": "000000113361", "images": ["AURORA/data/something/frames/124081/first.jpg", "AURORA/data/something/frames/124081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 11 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000113362", "images": ["AURORA/data/something/frames/71827/first.jpg", "AURORA/data/something/frames/71827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush next to smart phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113363", "images": ["AURORA/data/something/frames/22668/first.jpg", "AURORA/data/something/frames/22668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113364", "images": ["AURORA/data/something/frames/164031/first.jpg", "AURORA/data/something/frames/164031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse in front of keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113365", "images": ["AURORA/data/something/frames/47958/first.jpg", "AURORA/data/something/frames/47958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse away from keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113366", "images": ["AURORA/data/something/frames/124125/first.jpg", "AURORA/data/something/frames/124125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bags into a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113367", "images": ["AURORA/data/something/frames/45017/first.jpg", "AURORA/data/something/frames/45017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rubber being deflected from pencil sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000113368", "images": ["AURORA/data/something/frames/55733/first.jpg", "AURORA/data/something/frames/55733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113369", "images": ["AURORA/data/something/frames/68900/first.jpg", "AURORA/data/something/frames/68900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil closer to spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113370", "images": ["AURORA/data/something/frames/110845/first.jpg", "AURORA/data/something/frames/110845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb drive into an adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113371", "images": ["AURORA/data/something/frames/157672/first.jpg", "AURORA/data/something/frames/157672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113372", "images": ["AURORA/data/something/frames/83920/first.jpg", "AURORA/data/something/frames/83920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113373", "images": ["AURORA/data/something/frames/180173/first.jpg", "AURORA/data/something/frames/180173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000113374", "images": ["AURORA/data/something/frames/29894/first.jpg", "AURORA/data/something/frames/29894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lid off"}, {"from": "gpt", "value": ""}]} +{"id": "000000113375", "images": ["AURORA/data/something/frames/145462/first.jpg", "AURORA/data/something/frames/145462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a fork away from a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113376", "images": ["AURORA/data/something/frames/145653/first.jpg", "AURORA/data/something/frames/145653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000113377", "images": ["AURORA/data/something/frames/77223/first.jpg", "AURORA/data/something/frames/77223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering scissor with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113378", "images": ["AURORA/data/something/frames/77592/first.jpg", "AURORA/data/something/frames/77592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: remote being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113379", "images": ["AURORA/data/something/frames/209593/first.jpg", "AURORA/data/something/frames/209593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tumblers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113380", "images": ["AURORA/data/something/frames/57897/first.jpg", "AURORA/data/something/frames/57897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a glass so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113381", "images": ["AURORA/data/something/frames/93723/first.jpg", "AURORA/data/something/frames/93723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering coupon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113382", "images": ["AURORA/data/something/frames/63586/first.jpg", "AURORA/data/something/frames/63586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: clip colliding with bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113383", "images": ["AURORA/data/something/frames/73270/first.jpg", "AURORA/data/something/frames/73270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113384", "images": ["AURORA/data/something/frames/80680/first.jpg", "AURORA/data/something/frames/80680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113385", "images": ["AURORA/data/something/frames/101156/first.jpg", "AURORA/data/something/frames/101156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113386", "images": ["AURORA/data/something/frames/23152/first.jpg", "AURORA/data/something/frames/23152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering gear wheel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113387", "images": ["AURORA/data/something/frames/29127/first.jpg", "AURORA/data/something/frames/29127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113388", "images": ["AURORA/data/something/frames/145347/first.jpg", "AURORA/data/something/frames/145347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling soda pop can from behind of coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000113389", "images": ["AURORA/data/something/frames/118293/first.jpg", "AURORA/data/something/frames/118293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and earphones on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113390", "images": ["AURORA/data/something/frames/109533/first.jpg", "AURORA/data/something/frames/109533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming audio sistem"}, {"from": "gpt", "value": ""}]} +{"id": "000000113391", "images": ["AURORA/data/something/frames/209224/first.jpg", "AURORA/data/something/frames/209224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bleacher with hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000113392", "images": ["AURORA/data/something/frames/133812/first.jpg", "AURORA/data/something/frames/133812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling folders up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113393", "images": ["AURORA/data/something/frames/179656/first.jpg", "AURORA/data/something/frames/179656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cards so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113394", "images": ["AURORA/data/something/frames/44055/first.jpg", "AURORA/data/something/frames/44055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into box but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113395", "images": ["AURORA/data/something/frames/95071/first.jpg", "AURORA/data/something/frames/95071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113396", "images": ["AURORA/data/something/frames/14001/first.jpg", "AURORA/data/something/frames/14001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tissue out of tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113397", "images": ["AURORA/data/something/frames/181666/first.jpg", "AURORA/data/something/frames/181666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a hockey stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113398", "images": ["AURORA/data/something/frames/2684/first.jpg", "AURORA/data/something/frames/2684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box wood underneath heart wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000113399", "images": ["AURORA/data/something/frames/58306/first.jpg", "AURORA/data/something/frames/58306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113400", "images": ["AURORA/data/something/frames/60831/first.jpg", "AURORA/data/something/frames/60831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving gear wheel closer to battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000113401", "images": ["AURORA/data/something/frames/41824/first.jpg", "AURORA/data/something/frames/41824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter away from lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113402", "images": ["AURORA/data/something/frames/217388/first.jpg", "AURORA/data/something/frames/217388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tablet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113403", "images": ["AURORA/data/something/frames/37928/first.jpg", "AURORA/data/something/frames/37928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling colorful scarf from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113404", "images": ["AURORA/data/something/frames/122169/first.jpg", "AURORA/data/something/frames/122169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle behind another bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113405", "images": ["AURORA/data/something/frames/107226/first.jpg", "AURORA/data/something/frames/107226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into adaptor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113406", "images": ["AURORA/data/something/frames/183179/first.jpg", "AURORA/data/something/frames/183179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawyer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113407", "images": ["AURORA/data/something/frames/217671/first.jpg", "AURORA/data/something/frames/217671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113408", "images": ["AURORA/data/something/frames/94366/first.jpg", "AURORA/data/something/frames/94366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottlecap"}, {"from": "gpt", "value": ""}]} +{"id": "000000113409", "images": ["AURORA/data/something/frames/198126/first.jpg", "AURORA/data/something/frames/198126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bottle, revealing key chain behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113410", "images": ["AURORA/data/something/frames/151270/first.jpg", "AURORA/data/something/frames/151270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113411", "images": ["AURORA/data/something/frames/44821/first.jpg", "AURORA/data/something/frames/44821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from toothpaste tube with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113412", "images": ["AURORA/data/something/frames/178023/first.jpg", "AURORA/data/something/frames/178023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113413", "images": ["AURORA/data/something/frames/48015/first.jpg", "AURORA/data/something/frames/48015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of match box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113414", "images": ["AURORA/data/something/frames/5455/first.jpg", "AURORA/data/something/frames/5455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bangles"}, {"from": "gpt", "value": ""}]} +{"id": "000000113415", "images": ["AURORA/data/something/frames/62410/first.jpg", "AURORA/data/something/frames/62410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) flower of plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113416", "images": ["AURORA/data/something/frames/117031/first.jpg", "AURORA/data/something/frames/117031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red pot holder on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113417", "images": ["AURORA/data/something/frames/83901/first.jpg", "AURORA/data/something/frames/83901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113418", "images": ["AURORA/data/something/frames/48432/first.jpg", "AURORA/data/something/frames/48432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113419", "images": ["AURORA/data/something/frames/161595/first.jpg", "AURORA/data/something/frames/161595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering red chili with small box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113420", "images": ["AURORA/data/something/frames/24305/first.jpg", "AURORA/data/something/frames/24305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse closer to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113421", "images": ["AURORA/data/something/frames/83961/first.jpg", "AURORA/data/something/frames/83961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy truck colliding with cup and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113422", "images": ["AURORA/data/something/frames/55458/first.jpg", "AURORA/data/something/frames/55458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113423", "images": ["AURORA/data/something/frames/641/first.jpg", "AURORA/data/something/frames/641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113424", "images": ["AURORA/data/something/frames/213166/first.jpg", "AURORA/data/something/frames/213166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pitcher upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113425", "images": ["AURORA/data/something/frames/103953/first.jpg", "AURORA/data/something/frames/103953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a flask cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000113426", "images": ["AURORA/data/something/frames/148093/first.jpg", "AURORA/data/something/frames/148093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113427", "images": ["AURORA/data/something/frames/201181/first.jpg", "AURORA/data/something/frames/201181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113428", "images": ["AURORA/data/something/frames/62458/first.jpg", "AURORA/data/something/frames/62458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bell pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113429", "images": ["AURORA/data/something/frames/104517/first.jpg", "AURORA/data/something/frames/104517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb and calculator closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113430", "images": ["AURORA/data/something/frames/45078/first.jpg", "AURORA/data/something/frames/45078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113431", "images": ["AURORA/data/something/frames/197634/first.jpg", "AURORA/data/something/frames/197634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding coversheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113432", "images": ["AURORA/data/something/frames/82134/first.jpg", "AURORA/data/something/frames/82134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a deodorant and a glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113433", "images": ["AURORA/data/something/frames/90043/first.jpg", "AURORA/data/something/frames/90043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering blue colour pen with white sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113434", "images": ["AURORA/data/something/frames/104162/first.jpg", "AURORA/data/something/frames/104162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113435", "images": ["AURORA/data/something/frames/86694/first.jpg", "AURORA/data/something/frames/86694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113436", "images": ["AURORA/data/something/frames/84304/first.jpg", "AURORA/data/something/frames/84304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) arm of action figure"}, {"from": "gpt", "value": ""}]} +{"id": "000000113437", "images": ["AURORA/data/something/frames/49586/first.jpg", "AURORA/data/something/frames/49586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113438", "images": ["AURORA/data/something/frames/186424/first.jpg", "AURORA/data/something/frames/186424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113439", "images": ["AURORA/data/something/frames/143524/first.jpg", "AURORA/data/something/frames/143524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) hand rest of chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000113440", "images": ["AURORA/data/something/frames/86489/first.jpg", "AURORA/data/something/frames/86489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sugar into sugar container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113441", "images": ["AURORA/data/something/frames/141375/first.jpg", "AURORA/data/something/frames/141375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113442", "images": ["AURORA/data/something/frames/206796/first.jpg", "AURORA/data/something/frames/206796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113443", "images": ["AURORA/data/something/frames/104298/first.jpg", "AURORA/data/something/frames/104298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113444", "images": ["AURORA/data/something/frames/62796/first.jpg", "AURORA/data/something/frames/62796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing letter just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113445", "images": ["AURORA/data/something/frames/116520/first.jpg", "AURORA/data/something/frames/116520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rocks up with trowel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113446", "images": ["AURORA/data/something/frames/166665/first.jpg", "AURORA/data/something/frames/166665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000113447", "images": ["AURORA/data/something/frames/80699/first.jpg", "AURORA/data/something/frames/80699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming red watch box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113448", "images": ["AURORA/data/something/frames/156641/first.jpg", "AURORA/data/something/frames/156641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113449", "images": ["AURORA/data/something/frames/193371/first.jpg", "AURORA/data/something/frames/193371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113450", "images": ["AURORA/data/something/frames/83781/first.jpg", "AURORA/data/something/frames/83781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113451", "images": ["AURORA/data/something/frames/37985/first.jpg", "AURORA/data/something/frames/37985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113452", "images": ["AURORA/data/something/frames/177883/first.jpg", "AURORA/data/something/frames/177883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing keys from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113453", "images": ["AURORA/data/something/frames/161130/first.jpg", "AURORA/data/something/frames/161130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113454", "images": ["AURORA/data/something/frames/132360/first.jpg", "AURORA/data/something/frames/132360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113455", "images": ["AURORA/data/something/frames/24706/first.jpg", "AURORA/data/something/frames/24706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tree branch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113456", "images": ["AURORA/data/something/frames/65519/first.jpg", "AURORA/data/something/frames/65519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping picture off of white board"}, {"from": "gpt", "value": ""}]} +{"id": "000000113457", "images": ["AURORA/data/something/frames/133262/first.jpg", "AURORA/data/something/frames/133262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113458", "images": ["AURORA/data/something/frames/153985/first.jpg", "AURORA/data/something/frames/153985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a mobile phone into the socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113459", "images": ["AURORA/data/something/frames/33257/first.jpg", "AURORA/data/something/frames/33257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113460", "images": ["AURORA/data/something/frames/185578/first.jpg", "AURORA/data/something/frames/185578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113461", "images": ["AURORA/data/something/frames/29727/first.jpg", "AURORA/data/something/frames/29727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse onto keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113462", "images": ["AURORA/data/something/frames/179922/first.jpg", "AURORA/data/something/frames/179922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113463", "images": ["AURORA/data/something/frames/141102/first.jpg", "AURORA/data/something/frames/141102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving canister away from paper towels"}, {"from": "gpt", "value": ""}]} +{"id": "000000113464", "images": ["AURORA/data/something/frames/14731/first.jpg", "AURORA/data/something/frames/14731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling speaker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113465", "images": ["AURORA/data/something/frames/168796/first.jpg", "AURORA/data/something/frames/168796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening opening a manicure set"}, {"from": "gpt", "value": ""}]} +{"id": "000000113466", "images": ["AURORA/data/something/frames/74305/first.jpg", "AURORA/data/something/frames/74305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling ketchup onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000113467", "images": ["AURORA/data/something/frames/190447/first.jpg", "AURORA/data/something/frames/190447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching mobile to charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000113468", "images": ["AURORA/data/something/frames/36022/first.jpg", "AURORA/data/something/frames/36022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113469", "images": ["AURORA/data/something/frames/160396/first.jpg", "AURORA/data/something/frames/160396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000113470", "images": ["AURORA/data/something/frames/81061/first.jpg", "AURORA/data/something/frames/81061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113471", "images": ["AURORA/data/something/frames/72101/first.jpg", "AURORA/data/something/frames/72101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush and toothpaste so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113472", "images": ["AURORA/data/something/frames/147306/first.jpg", "AURORA/data/something/frames/147306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113473", "images": ["AURORA/data/something/frames/181523/first.jpg", "AURORA/data/something/frames/181523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113474", "images": ["AURORA/data/something/frames/153109/first.jpg", "AURORA/data/something/frames/153109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the water container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113475", "images": ["AURORA/data/something/frames/210125/first.jpg", "AURORA/data/something/frames/210125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping jelly off of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113476", "images": ["AURORA/data/something/frames/15035/first.jpg", "AURORA/data/something/frames/15035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming vanity bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113477", "images": ["AURORA/data/something/frames/155358/first.jpg", "AURORA/data/something/frames/155358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113478", "images": ["AURORA/data/something/frames/131001/first.jpg", "AURORA/data/something/frames/131001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cloth clip on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113479", "images": ["AURORA/data/something/frames/73884/first.jpg", "AURORA/data/something/frames/73884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a helmet with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113480", "images": ["AURORA/data/something/frames/216559/first.jpg", "AURORA/data/something/frames/216559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a soda can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113481", "images": ["AURORA/data/something/frames/113950/first.jpg", "AURORA/data/something/frames/113950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wallet upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113482", "images": ["AURORA/data/something/frames/91798/first.jpg", "AURORA/data/something/frames/91798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy truck from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113483", "images": ["AURORA/data/something/frames/101552/first.jpg", "AURORA/data/something/frames/101552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113484", "images": ["AURORA/data/something/frames/148219/first.jpg", "AURORA/data/something/frames/148219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113485", "images": ["AURORA/data/something/frames/34894/first.jpg", "AURORA/data/something/frames/34894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving brush and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113486", "images": ["AURORA/data/something/frames/123711/first.jpg", "AURORA/data/something/frames/123711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown bracelet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113487", "images": ["AURORA/data/something/frames/111006/first.jpg", "AURORA/data/something/frames/111006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) clasp of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113488", "images": ["AURORA/data/something/frames/63640/first.jpg", "AURORA/data/something/frames/63640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toothbrush with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113489", "images": ["AURORA/data/something/frames/81503/first.jpg", "AURORA/data/something/frames/81503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tortilla until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113490", "images": ["AURORA/data/something/frames/211835/first.jpg", "AURORA/data/something/frames/211835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mug with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113491", "images": ["AURORA/data/something/frames/92079/first.jpg", "AURORA/data/something/frames/92079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing spoon into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113492", "images": ["AURORA/data/something/frames/166754/first.jpg", "AURORA/data/something/frames/166754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000113493", "images": ["AURORA/data/something/frames/85036/first.jpg", "AURORA/data/something/frames/85036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: adhesive can colliding with candle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113494", "images": ["AURORA/data/something/frames/118902/first.jpg", "AURORA/data/something/frames/118902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113495", "images": ["AURORA/data/something/frames/129492/first.jpg", "AURORA/data/something/frames/129492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113496", "images": ["AURORA/data/something/frames/164395/first.jpg", "AURORA/data/something/frames/164395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000113497", "images": ["AURORA/data/something/frames/9858/first.jpg", "AURORA/data/something/frames/9858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup off of the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113498", "images": ["AURORA/data/something/frames/141498/first.jpg", "AURORA/data/something/frames/141498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening body lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000113499", "images": ["AURORA/data/something/frames/206775/first.jpg", "AURORA/data/something/frames/206775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113500", "images": ["AURORA/data/something/frames/149756/first.jpg", "AURORA/data/something/frames/149756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113501", "images": ["AURORA/data/something/frames/16537/first.jpg", "AURORA/data/something/frames/16537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113502", "images": ["AURORA/data/something/frames/213417/first.jpg", "AURORA/data/something/frames/213417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113503", "images": ["AURORA/data/something/frames/100536/first.jpg", "AURORA/data/something/frames/100536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping case onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113504", "images": ["AURORA/data/something/frames/63823/first.jpg", "AURORA/data/something/frames/63823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113505", "images": ["AURORA/data/something/frames/171619/first.jpg", "AURORA/data/something/frames/171619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113506", "images": ["AURORA/data/something/frames/127296/first.jpg", "AURORA/data/something/frames/127296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113507", "images": ["AURORA/data/something/frames/1682/first.jpg", "AURORA/data/something/frames/1682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 pens onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113508", "images": ["AURORA/data/something/frames/46544/first.jpg", "AURORA/data/something/frames/46544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening toilet lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000113509", "images": ["AURORA/data/something/frames/85418/first.jpg", "AURORA/data/something/frames/85418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys in front of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113510", "images": ["AURORA/data/something/frames/68639/first.jpg", "AURORA/data/something/frames/68639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a small vacuum with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113511", "images": ["AURORA/data/something/frames/13167/first.jpg", "AURORA/data/something/frames/13167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping badminton bat behind a pair of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000113512", "images": ["AURORA/data/something/frames/182155/first.jpg", "AURORA/data/something/frames/182155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113513", "images": ["AURORA/data/something/frames/166768/first.jpg", "AURORA/data/something/frames/166768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113514", "images": ["AURORA/data/something/frames/196350/first.jpg", "AURORA/data/something/frames/196350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a coin from a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113515", "images": ["AURORA/data/something/frames/159740/first.jpg", "AURORA/data/something/frames/159740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113516", "images": ["AURORA/data/something/frames/152533/first.jpg", "AURORA/data/something/frames/152533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging microphone into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113517", "images": ["AURORA/data/something/frames/1475/first.jpg", "AURORA/data/something/frames/1475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113518", "images": ["AURORA/data/something/frames/204701/first.jpg", "AURORA/data/something/frames/204701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113519", "images": ["AURORA/data/something/frames/178838/first.jpg", "AURORA/data/something/frames/178838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking notebook out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113520", "images": ["AURORA/data/something/frames/179450/first.jpg", "AURORA/data/something/frames/179450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113521", "images": ["AURORA/data/something/frames/77820/first.jpg", "AURORA/data/something/frames/77820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 5 markers onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113522", "images": ["AURORA/data/something/frames/114852/first.jpg", "AURORA/data/something/frames/114852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading almond butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000113523", "images": ["AURORA/data/something/frames/38462/first.jpg", "AURORA/data/something/frames/38462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip gloss and coffee mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113524", "images": ["AURORA/data/something/frames/11769/first.jpg", "AURORA/data/something/frames/11769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113525", "images": ["AURORA/data/something/frames/114347/first.jpg", "AURORA/data/something/frames/114347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking belt out of duffel bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113526", "images": ["AURORA/data/something/frames/1915/first.jpg", "AURORA/data/something/frames/1915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113527", "images": ["AURORA/data/something/frames/190758/first.jpg", "AURORA/data/something/frames/190758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113528", "images": ["AURORA/data/something/frames/97523/first.jpg", "AURORA/data/something/frames/97523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb slot"}, {"from": "gpt", "value": ""}]} +{"id": "000000113529", "images": ["AURORA/data/something/frames/191184/first.jpg", "AURORA/data/something/frames/191184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen in front of scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000113530", "images": ["AURORA/data/something/frames/100087/first.jpg", "AURORA/data/something/frames/100087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113531", "images": ["AURORA/data/something/frames/77812/first.jpg", "AURORA/data/something/frames/77812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jar and another jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113532", "images": ["AURORA/data/something/frames/149818/first.jpg", "AURORA/data/something/frames/149818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking flower so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113533", "images": ["AURORA/data/something/frames/82661/first.jpg", "AURORA/data/something/frames/82661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113534", "images": ["AURORA/data/something/frames/194380/first.jpg", "AURORA/data/something/frames/194380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113535", "images": ["AURORA/data/something/frames/73814/first.jpg", "AURORA/data/something/frames/73814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of marker so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113536", "images": ["AURORA/data/something/frames/198863/first.jpg", "AURORA/data/something/frames/198863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming green water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113537", "images": ["AURORA/data/something/frames/174376/first.jpg", "AURORA/data/something/frames/174376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113538", "images": ["AURORA/data/something/frames/175160/first.jpg", "AURORA/data/something/frames/175160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing usb stick with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000113539", "images": ["AURORA/data/something/frames/32811/first.jpg", "AURORA/data/something/frames/32811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a wine glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113540", "images": ["AURORA/data/something/frames/106955/first.jpg", "AURORA/data/something/frames/106955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving powerbank closer to radio"}, {"from": "gpt", "value": ""}]} +{"id": "000000113541", "images": ["AURORA/data/something/frames/188988/first.jpg", "AURORA/data/something/frames/188988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle with candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113542", "images": ["AURORA/data/something/frames/92158/first.jpg", "AURORA/data/something/frames/92158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling key from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113543", "images": ["AURORA/data/something/frames/212818/first.jpg", "AURORA/data/something/frames/212818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb away from usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000113544", "images": ["AURORA/data/something/frames/146384/first.jpg", "AURORA/data/something/frames/146384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paint tube from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113545", "images": ["AURORA/data/something/frames/188983/first.jpg", "AURORA/data/something/frames/188983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113546", "images": ["AURORA/data/something/frames/207940/first.jpg", "AURORA/data/something/frames/207940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping torch into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000113547", "images": ["AURORA/data/something/frames/144130/first.jpg", "AURORA/data/something/frames/144130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extension plug into wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113548", "images": ["AURORA/data/something/frames/217331/first.jpg", "AURORA/data/something/frames/217331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113549", "images": ["AURORA/data/something/frames/95586/first.jpg", "AURORA/data/something/frames/95586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing calculator into envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113550", "images": ["AURORA/data/something/frames/125449/first.jpg", "AURORA/data/something/frames/125449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a tissue paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113551", "images": ["AURORA/data/something/frames/87390/first.jpg", "AURORA/data/something/frames/87390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113552", "images": ["AURORA/data/something/frames/196386/first.jpg", "AURORA/data/something/frames/196386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113553", "images": ["AURORA/data/something/frames/178125/first.jpg", "AURORA/data/something/frames/178125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering wallet with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113554", "images": ["AURORA/data/something/frames/100400/first.jpg", "AURORA/data/something/frames/100400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ground coffee up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113555", "images": ["AURORA/data/something/frames/100764/first.jpg", "AURORA/data/something/frames/100764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a paper from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113556", "images": ["AURORA/data/something/frames/144710/first.jpg", "AURORA/data/something/frames/144710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking vape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113557", "images": ["AURORA/data/something/frames/153348/first.jpg", "AURORA/data/something/frames/153348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking small, clockwork wolverine toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113558", "images": ["AURORA/data/something/frames/7092/first.jpg", "AURORA/data/something/frames/7092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113559", "images": ["AURORA/data/something/frames/143998/first.jpg", "AURORA/data/something/frames/143998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking toothpick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113560", "images": ["AURORA/data/something/frames/214951/first.jpg", "AURORA/data/something/frames/214951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pepper in front of a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113561", "images": ["AURORA/data/something/frames/69353/first.jpg", "AURORA/data/something/frames/69353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113562", "images": ["AURORA/data/something/frames/220677/first.jpg", "AURORA/data/something/frames/220677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113563", "images": ["AURORA/data/something/frames/136192/first.jpg", "AURORA/data/something/frames/136192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pressure cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113564", "images": ["AURORA/data/something/frames/135643/first.jpg", "AURORA/data/something/frames/135643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy car and toy wheel so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113565", "images": ["AURORA/data/something/frames/216532/first.jpg", "AURORA/data/something/frames/216532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing apple from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113566", "images": ["AURORA/data/something/frames/219868/first.jpg", "AURORA/data/something/frames/219868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113567", "images": ["AURORA/data/something/frames/121115/first.jpg", "AURORA/data/something/frames/121115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113568", "images": ["AURORA/data/something/frames/196487/first.jpg", "AURORA/data/something/frames/196487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red watch case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113569", "images": ["AURORA/data/something/frames/157894/first.jpg", "AURORA/data/something/frames/157894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paperclip holder with paperclips on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113570", "images": ["AURORA/data/something/frames/21553/first.jpg", "AURORA/data/something/frames/21553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113571", "images": ["AURORA/data/something/frames/14278/first.jpg", "AURORA/data/something/frames/14278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000113572", "images": ["AURORA/data/something/frames/35493/first.jpg", "AURORA/data/something/frames/35493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000113573", "images": ["AURORA/data/something/frames/42521/first.jpg", "AURORA/data/something/frames/42521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113574", "images": ["AURORA/data/something/frames/137436/first.jpg", "AURORA/data/something/frames/137436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a banana on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113575", "images": ["AURORA/data/something/frames/119481/first.jpg", "AURORA/data/something/frames/119481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing something, revealing something behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113576", "images": ["AURORA/data/something/frames/159180/first.jpg", "AURORA/data/something/frames/159180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113577", "images": ["AURORA/data/something/frames/187854/first.jpg", "AURORA/data/something/frames/187854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a binder onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113578", "images": ["AURORA/data/something/frames/99597/first.jpg", "AURORA/data/something/frames/99597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113579", "images": ["AURORA/data/something/frames/162918/first.jpg", "AURORA/data/something/frames/162918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113580", "images": ["AURORA/data/something/frames/23764/first.jpg", "AURORA/data/something/frames/23764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113581", "images": ["AURORA/data/something/frames/36097/first.jpg", "AURORA/data/something/frames/36097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a glass of water up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113582", "images": ["AURORA/data/something/frames/125849/first.jpg", "AURORA/data/something/frames/125849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113583", "images": ["AURORA/data/something/frames/18710/first.jpg", "AURORA/data/something/frames/18710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote behind jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113584", "images": ["AURORA/data/something/frames/72554/first.jpg", "AURORA/data/something/frames/72554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113585", "images": ["AURORA/data/something/frames/59656/first.jpg", "AURORA/data/something/frames/59656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113586", "images": ["AURORA/data/something/frames/220065/first.jpg", "AURORA/data/something/frames/220065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing flowers into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113587", "images": ["AURORA/data/something/frames/100653/first.jpg", "AURORA/data/something/frames/100653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and packet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113588", "images": ["AURORA/data/something/frames/9219/first.jpg", "AURORA/data/something/frames/9219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113589", "images": ["AURORA/data/something/frames/214942/first.jpg", "AURORA/data/something/frames/214942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with another ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113590", "images": ["AURORA/data/something/frames/66183/first.jpg", "AURORA/data/something/frames/66183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113591", "images": ["AURORA/data/something/frames/103529/first.jpg", "AURORA/data/something/frames/103529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling seeds onto vegetables"}, {"from": "gpt", "value": ""}]} +{"id": "000000113592", "images": ["AURORA/data/something/frames/9653/first.jpg", "AURORA/data/something/frames/9653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mirror behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113593", "images": ["AURORA/data/something/frames/16575/first.jpg", "AURORA/data/something/frames/16575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113594", "images": ["AURORA/data/something/frames/67650/first.jpg", "AURORA/data/something/frames/67650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113595", "images": ["AURORA/data/something/frames/110595/first.jpg", "AURORA/data/something/frames/110595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote control in front of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113596", "images": ["AURORA/data/something/frames/122023/first.jpg", "AURORA/data/something/frames/122023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cotton buds"}, {"from": "gpt", "value": ""}]} +{"id": "000000113597", "images": ["AURORA/data/something/frames/166038/first.jpg", "AURORA/data/something/frames/166038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000113598", "images": ["AURORA/data/something/frames/67240/first.jpg", "AURORA/data/something/frames/67240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cookie until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113599", "images": ["AURORA/data/something/frames/132160/first.jpg", "AURORA/data/something/frames/132160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bag pin so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113600", "images": ["AURORA/data/something/frames/79214/first.jpg", "AURORA/data/something/frames/79214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113601", "images": ["AURORA/data/something/frames/177209/first.jpg", "AURORA/data/something/frames/177209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a teddy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113602", "images": ["AURORA/data/something/frames/110683/first.jpg", "AURORA/data/something/frames/110683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy in front of tv stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113603", "images": ["AURORA/data/something/frames/207926/first.jpg", "AURORA/data/something/frames/207926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening small box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113604", "images": ["AURORA/data/something/frames/20796/first.jpg", "AURORA/data/something/frames/20796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000113605", "images": ["AURORA/data/something/frames/45189/first.jpg", "AURORA/data/something/frames/45189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking hat up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113606", "images": ["AURORA/data/something/frames/179769/first.jpg", "AURORA/data/something/frames/179769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses case upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113607", "images": ["AURORA/data/something/frames/142139/first.jpg", "AURORA/data/something/frames/142139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping remote over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113608", "images": ["AURORA/data/something/frames/60258/first.jpg", "AURORA/data/something/frames/60258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into plastic case until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000113609", "images": ["AURORA/data/something/frames/38673/first.jpg", "AURORA/data/something/frames/38673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113610", "images": ["AURORA/data/something/frames/175725/first.jpg", "AURORA/data/something/frames/175725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113611", "images": ["AURORA/data/something/frames/163217/first.jpg", "AURORA/data/something/frames/163217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113612", "images": ["AURORA/data/something/frames/166562/first.jpg", "AURORA/data/something/frames/166562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange bowl from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113613", "images": ["AURORA/data/something/frames/152094/first.jpg", "AURORA/data/something/frames/152094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113614", "images": ["AURORA/data/something/frames/124217/first.jpg", "AURORA/data/something/frames/124217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from something with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113615", "images": ["AURORA/data/something/frames/220461/first.jpg", "AURORA/data/something/frames/220461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113616", "images": ["AURORA/data/something/frames/1452/first.jpg", "AURORA/data/something/frames/1452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113617", "images": ["AURORA/data/something/frames/163893/first.jpg", "AURORA/data/something/frames/163893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white mug closer to black mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113618", "images": ["AURORA/data/something/frames/12582/first.jpg", "AURORA/data/something/frames/12582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113619", "images": ["AURORA/data/something/frames/217115/first.jpg", "AURORA/data/something/frames/217115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 phone onto papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113620", "images": ["AURORA/data/something/frames/201633/first.jpg", "AURORA/data/something/frames/201633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into an ipod"}, {"from": "gpt", "value": ""}]} +{"id": "000000113621", "images": ["AURORA/data/something/frames/121071/first.jpg", "AURORA/data/something/frames/121071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass closer to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113622", "images": ["AURORA/data/something/frames/80757/first.jpg", "AURORA/data/something/frames/80757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissues from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113623", "images": ["AURORA/data/something/frames/5157/first.jpg", "AURORA/data/something/frames/5157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chickpea"}, {"from": "gpt", "value": ""}]} +{"id": "000000113624", "images": ["AURORA/data/something/frames/199203/first.jpg", "AURORA/data/something/frames/199203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking blue colour pen among the many colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113625", "images": ["AURORA/data/something/frames/163711/first.jpg", "AURORA/data/something/frames/163711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000113626", "images": ["AURORA/data/something/frames/88048/first.jpg", "AURORA/data/something/frames/88048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113627", "images": ["AURORA/data/something/frames/197873/first.jpg", "AURORA/data/something/frames/197873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting money into wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113628", "images": ["AURORA/data/something/frames/9737/first.jpg", "AURORA/data/something/frames/9737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with a coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000113629", "images": ["AURORA/data/something/frames/64380/first.jpg", "AURORA/data/something/frames/64380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113630", "images": ["AURORA/data/something/frames/204739/first.jpg", "AURORA/data/something/frames/204739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin underneath bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113631", "images": ["AURORA/data/something/frames/125435/first.jpg", "AURORA/data/something/frames/125435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113632", "images": ["AURORA/data/something/frames/195366/first.jpg", "AURORA/data/something/frames/195366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pink golf ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113633", "images": ["AURORA/data/something/frames/207591/first.jpg", "AURORA/data/something/frames/207591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping apple into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113634", "images": ["AURORA/data/something/frames/83767/first.jpg", "AURORA/data/something/frames/83767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113635", "images": ["AURORA/data/something/frames/18086/first.jpg", "AURORA/data/something/frames/18086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with coffee cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113636", "images": ["AURORA/data/something/frames/182229/first.jpg", "AURORA/data/something/frames/182229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113637", "images": ["AURORA/data/something/frames/191590/first.jpg", "AURORA/data/something/frames/191590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ring and ring closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113638", "images": ["AURORA/data/something/frames/189745/first.jpg", "AURORA/data/something/frames/189745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing action camera from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113639", "images": ["AURORA/data/something/frames/93526/first.jpg", "AURORA/data/something/frames/93526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113640", "images": ["AURORA/data/something/frames/151843/first.jpg", "AURORA/data/something/frames/151843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113641", "images": ["AURORA/data/something/frames/50519/first.jpg", "AURORA/data/something/frames/50519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting shoe with torch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113642", "images": ["AURORA/data/something/frames/176333/first.jpg", "AURORA/data/something/frames/176333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113643", "images": ["AURORA/data/something/frames/13736/first.jpg", "AURORA/data/something/frames/13736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113644", "images": ["AURORA/data/something/frames/91142/first.jpg", "AURORA/data/something/frames/91142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113645", "images": ["AURORA/data/something/frames/111350/first.jpg", "AURORA/data/something/frames/111350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113646", "images": ["AURORA/data/something/frames/125356/first.jpg", "AURORA/data/something/frames/125356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113647", "images": ["AURORA/data/something/frames/191250/first.jpg", "AURORA/data/something/frames/191250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113648", "images": ["AURORA/data/something/frames/176222/first.jpg", "AURORA/data/something/frames/176222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113649", "images": ["AURORA/data/something/frames/39041/first.jpg", "AURORA/data/something/frames/39041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of spring so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000113650", "images": ["AURORA/data/something/frames/187076/first.jpg", "AURORA/data/something/frames/187076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from sapodilla with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113651", "images": ["AURORA/data/something/frames/189780/first.jpg", "AURORA/data/something/frames/189780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tea"}, {"from": "gpt", "value": ""}]} +{"id": "000000113652", "images": ["AURORA/data/something/frames/45106/first.jpg", "AURORA/data/something/frames/45106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange colliding with orange and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113653", "images": ["AURORA/data/something/frames/111944/first.jpg", "AURORA/data/something/frames/111944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113654", "images": ["AURORA/data/something/frames/65448/first.jpg", "AURORA/data/something/frames/65448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113655", "images": ["AURORA/data/something/frames/148145/first.jpg", "AURORA/data/something/frames/148145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113656", "images": ["AURORA/data/something/frames/86009/first.jpg", "AURORA/data/something/frames/86009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a ball so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113657", "images": ["AURORA/data/something/frames/95893/first.jpg", "AURORA/data/something/frames/95893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113658", "images": ["AURORA/data/something/frames/176719/first.jpg", "AURORA/data/something/frames/176719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spoon into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113659", "images": ["AURORA/data/something/frames/125286/first.jpg", "AURORA/data/something/frames/125286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ice tray away from the cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113660", "images": ["AURORA/data/something/frames/193439/first.jpg", "AURORA/data/something/frames/193439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000113661", "images": ["AURORA/data/something/frames/124061/first.jpg", "AURORA/data/something/frames/124061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler and a bracelet closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113662", "images": ["AURORA/data/something/frames/99760/first.jpg", "AURORA/data/something/frames/99760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling punch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113663", "images": ["AURORA/data/something/frames/187079/first.jpg", "AURORA/data/something/frames/187079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking packet out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113664", "images": ["AURORA/data/something/frames/161608/first.jpg", "AURORA/data/something/frames/161608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming white candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113665", "images": ["AURORA/data/something/frames/204619/first.jpg", "AURORA/data/something/frames/204619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from cup with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113666", "images": ["AURORA/data/something/frames/179423/first.jpg", "AURORA/data/something/frames/179423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking car key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113667", "images": ["AURORA/data/something/frames/80618/first.jpg", "AURORA/data/something/frames/80618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering comb with wipes"}, {"from": "gpt", "value": ""}]} +{"id": "000000113668", "images": ["AURORA/data/something/frames/35565/first.jpg", "AURORA/data/something/frames/35565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the pencil case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113669", "images": ["AURORA/data/something/frames/49883/first.jpg", "AURORA/data/something/frames/49883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pocket knife, a container and a hand bag on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113670", "images": ["AURORA/data/something/frames/121079/first.jpg", "AURORA/data/something/frames/121079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading perfume onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113671", "images": ["AURORA/data/something/frames/111422/first.jpg", "AURORA/data/something/frames/111422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113672", "images": ["AURORA/data/something/frames/14732/first.jpg", "AURORA/data/something/frames/14732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate and glove away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113673", "images": ["AURORA/data/something/frames/25776/first.jpg", "AURORA/data/something/frames/25776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking envelope out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113674", "images": ["AURORA/data/something/frames/209616/first.jpg", "AURORA/data/something/frames/209616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cd into a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113675", "images": ["AURORA/data/something/frames/39127/first.jpg", "AURORA/data/something/frames/39127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113676", "images": ["AURORA/data/something/frames/69776/first.jpg", "AURORA/data/something/frames/69776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113677", "images": ["AURORA/data/something/frames/82168/first.jpg", "AURORA/data/something/frames/82168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113678", "images": ["AURORA/data/something/frames/166057/first.jpg", "AURORA/data/something/frames/166057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking books on sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000113679", "images": ["AURORA/data/something/frames/72766/first.jpg", "AURORA/data/something/frames/72766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling magnifying glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113680", "images": ["AURORA/data/something/frames/16867/first.jpg", "AURORA/data/something/frames/16867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113681", "images": ["AURORA/data/something/frames/24038/first.jpg", "AURORA/data/something/frames/24038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113682", "images": ["AURORA/data/something/frames/152114/first.jpg", "AURORA/data/something/frames/152114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113683", "images": ["AURORA/data/something/frames/62624/first.jpg", "AURORA/data/something/frames/62624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113684", "images": ["AURORA/data/something/frames/41714/first.jpg", "AURORA/data/something/frames/41714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking an apple so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113685", "images": ["AURORA/data/something/frames/135008/first.jpg", "AURORA/data/something/frames/135008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning can upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113686", "images": ["AURORA/data/something/frames/128477/first.jpg", "AURORA/data/something/frames/128477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113687", "images": ["AURORA/data/something/frames/27730/first.jpg", "AURORA/data/something/frames/27730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000113688", "images": ["AURORA/data/something/frames/61246/first.jpg", "AURORA/data/something/frames/61246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tennis ball from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113689", "images": ["AURORA/data/something/frames/83948/first.jpg", "AURORA/data/something/frames/83948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook closer to plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113690", "images": ["AURORA/data/something/frames/43071/first.jpg", "AURORA/data/something/frames/43071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113691", "images": ["AURORA/data/something/frames/107257/first.jpg", "AURORA/data/something/frames/107257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113692", "images": ["AURORA/data/something/frames/18001/first.jpg", "AURORA/data/something/frames/18001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ice cube into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113693", "images": ["AURORA/data/something/frames/2560/first.jpg", "AURORA/data/something/frames/2560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottletop so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113694", "images": ["AURORA/data/something/frames/60981/first.jpg", "AURORA/data/something/frames/60981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stick on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113695", "images": ["AURORA/data/something/frames/19162/first.jpg", "AURORA/data/something/frames/19162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113696", "images": ["AURORA/data/something/frames/160839/first.jpg", "AURORA/data/something/frames/160839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113697", "images": ["AURORA/data/something/frames/158046/first.jpg", "AURORA/data/something/frames/158046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113698", "images": ["AURORA/data/something/frames/47059/first.jpg", "AURORA/data/something/frames/47059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging nail polish out of pile of nail polish"}, {"from": "gpt", "value": ""}]} +{"id": "000000113699", "images": ["AURORA/data/something/frames/94544/first.jpg", "AURORA/data/something/frames/94544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000113700", "images": ["AURORA/data/something/frames/184037/first.jpg", "AURORA/data/something/frames/184037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bin with a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113701", "images": ["AURORA/data/something/frames/139238/first.jpg", "AURORA/data/something/frames/139238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113702", "images": ["AURORA/data/something/frames/51655/first.jpg", "AURORA/data/something/frames/51655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting modem onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113703", "images": ["AURORA/data/something/frames/156041/first.jpg", "AURORA/data/something/frames/156041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113704", "images": ["AURORA/data/something/frames/132234/first.jpg", "AURORA/data/something/frames/132234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lid off nail polish"}, {"from": "gpt", "value": ""}]} +{"id": "000000113705", "images": ["AURORA/data/something/frames/32538/first.jpg", "AURORA/data/something/frames/32538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and bottle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113706", "images": ["AURORA/data/something/frames/24034/first.jpg", "AURORA/data/something/frames/24034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a smartphone so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113707", "images": ["AURORA/data/something/frames/16016/first.jpg", "AURORA/data/something/frames/16016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy car and toy car so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113708", "images": ["AURORA/data/something/frames/200229/first.jpg", "AURORA/data/something/frames/200229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pepper shaker so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113709", "images": ["AURORA/data/something/frames/178407/first.jpg", "AURORA/data/something/frames/178407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113710", "images": ["AURORA/data/something/frames/204382/first.jpg", "AURORA/data/something/frames/204382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape dispenser and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113711", "images": ["AURORA/data/something/frames/22140/first.jpg", "AURORA/data/something/frames/22140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stone with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000113712", "images": ["AURORA/data/something/frames/201467/first.jpg", "AURORA/data/something/frames/201467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plant towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113713", "images": ["AURORA/data/something/frames/56299/first.jpg", "AURORA/data/something/frames/56299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113714", "images": ["AURORA/data/something/frames/118572/first.jpg", "AURORA/data/something/frames/118572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses underneath desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000113715", "images": ["AURORA/data/something/frames/143643/first.jpg", "AURORA/data/something/frames/143643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113716", "images": ["AURORA/data/something/frames/183535/first.jpg", "AURORA/data/something/frames/183535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling torch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113717", "images": ["AURORA/data/something/frames/39980/first.jpg", "AURORA/data/something/frames/39980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113718", "images": ["AURORA/data/something/frames/123133/first.jpg", "AURORA/data/something/frames/123133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing note paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113719", "images": ["AURORA/data/something/frames/163062/first.jpg", "AURORA/data/something/frames/163062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000113720", "images": ["AURORA/data/something/frames/193868/first.jpg", "AURORA/data/something/frames/193868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a brochure"}, {"from": "gpt", "value": ""}]} +{"id": "000000113721", "images": ["AURORA/data/something/frames/35883/first.jpg", "AURORA/data/something/frames/35883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113722", "images": ["AURORA/data/something/frames/82004/first.jpg", "AURORA/data/something/frames/82004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113723", "images": ["AURORA/data/something/frames/145242/first.jpg", "AURORA/data/something/frames/145242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of mustard on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113724", "images": ["AURORA/data/something/frames/138104/first.jpg", "AURORA/data/something/frames/138104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking screwdriver out of toolbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000113725", "images": ["AURORA/data/something/frames/58085/first.jpg", "AURORA/data/something/frames/58085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113726", "images": ["AURORA/data/something/frames/29139/first.jpg", "AURORA/data/something/frames/29139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into cup holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113727", "images": ["AURORA/data/something/frames/1886/first.jpg", "AURORA/data/something/frames/1886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113728", "images": ["AURORA/data/something/frames/198465/first.jpg", "AURORA/data/something/frames/198465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113729", "images": ["AURORA/data/something/frames/135394/first.jpg", "AURORA/data/something/frames/135394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery cell onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000113730", "images": ["AURORA/data/something/frames/202300/first.jpg", "AURORA/data/something/frames/202300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113731", "images": ["AURORA/data/something/frames/157868/first.jpg", "AURORA/data/something/frames/157868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy wheel with red colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113732", "images": ["AURORA/data/something/frames/140163/first.jpg", "AURORA/data/something/frames/140163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113733", "images": ["AURORA/data/something/frames/197146/first.jpg", "AURORA/data/something/frames/197146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000113734", "images": ["AURORA/data/something/frames/77770/first.jpg", "AURORA/data/something/frames/77770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stuffed animal so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113735", "images": ["AURORA/data/something/frames/41579/first.jpg", "AURORA/data/something/frames/41579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113736", "images": ["AURORA/data/something/frames/117500/first.jpg", "AURORA/data/something/frames/117500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pen into a pencase"}, {"from": "gpt", "value": ""}]} +{"id": "000000113737", "images": ["AURORA/data/something/frames/59557/first.jpg", "AURORA/data/something/frames/59557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving control away from vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000113738", "images": ["AURORA/data/something/frames/18485/first.jpg", "AURORA/data/something/frames/18485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener onto sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000113739", "images": ["AURORA/data/something/frames/218305/first.jpg", "AURORA/data/something/frames/218305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sock into a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000113740", "images": ["AURORA/data/something/frames/138355/first.jpg", "AURORA/data/something/frames/138355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113741", "images": ["AURORA/data/something/frames/157981/first.jpg", "AURORA/data/something/frames/157981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113742", "images": ["AURORA/data/something/frames/199464/first.jpg", "AURORA/data/something/frames/199464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pom poms out of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113743", "images": ["AURORA/data/something/frames/148753/first.jpg", "AURORA/data/something/frames/148753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping slipper in front of handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113744", "images": ["AURORA/data/something/frames/50966/first.jpg", "AURORA/data/something/frames/50966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pet bottle in front of feet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113745", "images": ["AURORA/data/something/frames/7716/first.jpg", "AURORA/data/something/frames/7716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ink bottle with spring"}, {"from": "gpt", "value": ""}]} +{"id": "000000113746", "images": ["AURORA/data/something/frames/24408/first.jpg", "AURORA/data/something/frames/24408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping sauce off of hummus container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113747", "images": ["AURORA/data/something/frames/86525/first.jpg", "AURORA/data/something/frames/86525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113748", "images": ["AURORA/data/something/frames/73513/first.jpg", "AURORA/data/something/frames/73513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113749", "images": ["AURORA/data/something/frames/155721/first.jpg", "AURORA/data/something/frames/155721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plastic tub upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113750", "images": ["AURORA/data/something/frames/198635/first.jpg", "AURORA/data/something/frames/198635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113751", "images": ["AURORA/data/something/frames/180596/first.jpg", "AURORA/data/something/frames/180596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag behind a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113752", "images": ["AURORA/data/something/frames/136835/first.jpg", "AURORA/data/something/frames/136835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113753", "images": ["AURORA/data/something/frames/5270/first.jpg", "AURORA/data/something/frames/5270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113754", "images": ["AURORA/data/something/frames/10295/first.jpg", "AURORA/data/something/frames/10295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113755", "images": ["AURORA/data/something/frames/176249/first.jpg", "AURORA/data/something/frames/176249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencile up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113756", "images": ["AURORA/data/something/frames/92699/first.jpg", "AURORA/data/something/frames/92699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113757", "images": ["AURORA/data/something/frames/55519/first.jpg", "AURORA/data/something/frames/55519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113758", "images": ["AURORA/data/something/frames/157253/first.jpg", "AURORA/data/something/frames/157253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113759", "images": ["AURORA/data/something/frames/215310/first.jpg", "AURORA/data/something/frames/215310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping block in front of candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113760", "images": ["AURORA/data/something/frames/144305/first.jpg", "AURORA/data/something/frames/144305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113761", "images": ["AURORA/data/something/frames/167135/first.jpg", "AURORA/data/something/frames/167135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113762", "images": ["AURORA/data/something/frames/215855/first.jpg", "AURORA/data/something/frames/215855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle of nail varnish so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113763", "images": ["AURORA/data/something/frames/38684/first.jpg", "AURORA/data/something/frames/38684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping salsa jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113764", "images": ["AURORA/data/something/frames/142966/first.jpg", "AURORA/data/something/frames/142966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purple container up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113765", "images": ["AURORA/data/something/frames/81665/first.jpg", "AURORA/data/something/frames/81665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113766", "images": ["AURORA/data/something/frames/182144/first.jpg", "AURORA/data/something/frames/182144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to a ballpen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113767", "images": ["AURORA/data/something/frames/177140/first.jpg", "AURORA/data/something/frames/177140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving moving stone up up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113768", "images": ["AURORA/data/something/frames/87220/first.jpg", "AURORA/data/something/frames/87220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening face cream pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113769", "images": ["AURORA/data/something/frames/187302/first.jpg", "AURORA/data/something/frames/187302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113770", "images": ["AURORA/data/something/frames/87493/first.jpg", "AURORA/data/something/frames/87493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting laundry into a washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000113771", "images": ["AURORA/data/something/frames/34571/first.jpg", "AURORA/data/something/frames/34571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting skipping rope, scale and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113772", "images": ["AURORA/data/something/frames/30163/first.jpg", "AURORA/data/something/frames/30163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113773", "images": ["AURORA/data/something/frames/204298/first.jpg", "AURORA/data/something/frames/204298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pendrive from computer table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113774", "images": ["AURORA/data/something/frames/71944/first.jpg", "AURORA/data/something/frames/71944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toilet paper closer to inhaler"}, {"from": "gpt", "value": ""}]} +{"id": "000000113775", "images": ["AURORA/data/something/frames/173478/first.jpg", "AURORA/data/something/frames/173478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shorts"}, {"from": "gpt", "value": ""}]} +{"id": "000000113776", "images": ["AURORA/data/something/frames/204343/first.jpg", "AURORA/data/something/frames/204343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113777", "images": ["AURORA/data/something/frames/137288/first.jpg", "AURORA/data/something/frames/137288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing clip onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113778", "images": ["AURORA/data/something/frames/64948/first.jpg", "AURORA/data/something/frames/64948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking lever up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113779", "images": ["AURORA/data/something/frames/24109/first.jpg", "AURORA/data/something/frames/24109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113780", "images": ["AURORA/data/something/frames/60442/first.jpg", "AURORA/data/something/frames/60442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothbrush stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113781", "images": ["AURORA/data/something/frames/34166/first.jpg", "AURORA/data/something/frames/34166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113782", "images": ["AURORA/data/something/frames/14116/first.jpg", "AURORA/data/something/frames/14116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pig over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113783", "images": ["AURORA/data/something/frames/7613/first.jpg", "AURORA/data/something/frames/7613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping case in front of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113784", "images": ["AURORA/data/something/frames/64412/first.jpg", "AURORA/data/something/frames/64412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting jar with glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113785", "images": ["AURORA/data/something/frames/183136/first.jpg", "AURORA/data/something/frames/183136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paperclip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113786", "images": ["AURORA/data/something/frames/37062/first.jpg", "AURORA/data/something/frames/37062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging ring out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113787", "images": ["AURORA/data/something/frames/64905/first.jpg", "AURORA/data/something/frames/64905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, watch and remote on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113788", "images": ["AURORA/data/something/frames/152358/first.jpg", "AURORA/data/something/frames/152358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113789", "images": ["AURORA/data/something/frames/129927/first.jpg", "AURORA/data/something/frames/129927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and can away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113790", "images": ["AURORA/data/something/frames/47482/first.jpg", "AURORA/data/something/frames/47482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping iced tea mix up with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113791", "images": ["AURORA/data/something/frames/212279/first.jpg", "AURORA/data/something/frames/212279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113792", "images": ["AURORA/data/something/frames/157166/first.jpg", "AURORA/data/something/frames/157166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with tooth brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000113793", "images": ["AURORA/data/something/frames/102311/first.jpg", "AURORA/data/something/frames/102311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into multi-plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113794", "images": ["AURORA/data/something/frames/42411/first.jpg", "AURORA/data/something/frames/42411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar closer to coffee"}, {"from": "gpt", "value": ""}]} +{"id": "000000113795", "images": ["AURORA/data/something/frames/88253/first.jpg", "AURORA/data/something/frames/88253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113796", "images": ["AURORA/data/something/frames/99838/first.jpg", "AURORA/data/something/frames/99838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cellphone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113797", "images": ["AURORA/data/something/frames/197154/first.jpg", "AURORA/data/something/frames/197154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ruler behind a flowerpot"}, {"from": "gpt", "value": ""}]} +{"id": "000000113798", "images": ["AURORA/data/something/frames/5646/first.jpg", "AURORA/data/something/frames/5646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and wax jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113799", "images": ["AURORA/data/something/frames/165368/first.jpg", "AURORA/data/something/frames/165368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113800", "images": ["AURORA/data/something/frames/131606/first.jpg", "AURORA/data/something/frames/131606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving carom coin closer to rubber band"}, {"from": "gpt", "value": ""}]} +{"id": "000000113801", "images": ["AURORA/data/something/frames/62189/first.jpg", "AURORA/data/something/frames/62189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing one tealight candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113802", "images": ["AURORA/data/something/frames/87468/first.jpg", "AURORA/data/something/frames/87468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113803", "images": ["AURORA/data/something/frames/40842/first.jpg", "AURORA/data/something/frames/40842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying screw in flowerpot"}, {"from": "gpt", "value": ""}]} +{"id": "000000113804", "images": ["AURORA/data/something/frames/188772/first.jpg", "AURORA/data/something/frames/188772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113805", "images": ["AURORA/data/something/frames/98413/first.jpg", "AURORA/data/something/frames/98413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113806", "images": ["AURORA/data/something/frames/33342/first.jpg", "AURORA/data/something/frames/33342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113807", "images": ["AURORA/data/something/frames/190483/first.jpg", "AURORA/data/something/frames/190483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a ball with another ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113808", "images": ["AURORA/data/something/frames/17384/first.jpg", "AURORA/data/something/frames/17384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113809", "images": ["AURORA/data/something/frames/112997/first.jpg", "AURORA/data/something/frames/112997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains into a glass jar until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000113810", "images": ["AURORA/data/something/frames/16498/first.jpg", "AURORA/data/something/frames/16498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113811", "images": ["AURORA/data/something/frames/11775/first.jpg", "AURORA/data/something/frames/11775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into switch board"}, {"from": "gpt", "value": ""}]} +{"id": "000000113812", "images": ["AURORA/data/something/frames/172524/first.jpg", "AURORA/data/something/frames/172524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bubble wrap into an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113813", "images": ["AURORA/data/something/frames/32443/first.jpg", "AURORA/data/something/frames/32443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toys onto can"}, {"from": "gpt", "value": ""}]} +{"id": "000000113814", "images": ["AURORA/data/something/frames/199115/first.jpg", "AURORA/data/something/frames/199115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000113815", "images": ["AURORA/data/something/frames/136157/first.jpg", "AURORA/data/something/frames/136157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup with coffee beans over, so coffee beans falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113816", "images": ["AURORA/data/something/frames/152384/first.jpg", "AURORA/data/something/frames/152384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113817", "images": ["AURORA/data/something/frames/218744/first.jpg", "AURORA/data/something/frames/218744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113818", "images": ["AURORA/data/something/frames/209032/first.jpg", "AURORA/data/something/frames/209032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pin to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113819", "images": ["AURORA/data/something/frames/212856/first.jpg", "AURORA/data/something/frames/212856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy, block and comb on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113820", "images": ["AURORA/data/something/frames/48416/first.jpg", "AURORA/data/something/frames/48416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113821", "images": ["AURORA/data/something/frames/76809/first.jpg", "AURORA/data/something/frames/76809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113822", "images": ["AURORA/data/something/frames/85020/first.jpg", "AURORA/data/something/frames/85020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and can closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113823", "images": ["AURORA/data/something/frames/171814/first.jpg", "AURORA/data/something/frames/171814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing rose paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113824", "images": ["AURORA/data/something/frames/156230/first.jpg", "AURORA/data/something/frames/156230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking rubber duck so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113825", "images": ["AURORA/data/something/frames/74608/first.jpg", "AURORA/data/something/frames/74608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113826", "images": ["AURORA/data/something/frames/192818/first.jpg", "AURORA/data/something/frames/192818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming family"}, {"from": "gpt", "value": ""}]} +{"id": "000000113827", "images": ["AURORA/data/something/frames/113302/first.jpg", "AURORA/data/something/frames/113302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: potato colliding with potato and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113828", "images": ["AURORA/data/something/frames/130824/first.jpg", "AURORA/data/something/frames/130824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpaste so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113829", "images": ["AURORA/data/something/frames/58049/first.jpg", "AURORA/data/something/frames/58049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113830", "images": ["AURORA/data/something/frames/100820/first.jpg", "AURORA/data/something/frames/100820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a writing implement"}, {"from": "gpt", "value": ""}]} +{"id": "000000113831", "images": ["AURORA/data/something/frames/140340/first.jpg", "AURORA/data/something/frames/140340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing colorful scarf from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113832", "images": ["AURORA/data/something/frames/63757/first.jpg", "AURORA/data/something/frames/63757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving light lamp up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113833", "images": ["AURORA/data/something/frames/44959/first.jpg", "AURORA/data/something/frames/44959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pasta until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113834", "images": ["AURORA/data/something/frames/145865/first.jpg", "AURORA/data/something/frames/145865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113835", "images": ["AURORA/data/something/frames/70714/first.jpg", "AURORA/data/something/frames/70714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse closer to watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113836", "images": ["AURORA/data/something/frames/109125/first.jpg", "AURORA/data/something/frames/109125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113837", "images": ["AURORA/data/something/frames/181356/first.jpg", "AURORA/data/something/frames/181356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing baking powder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113838", "images": ["AURORA/data/something/frames/197104/first.jpg", "AURORA/data/something/frames/197104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending instruction booklet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113839", "images": ["AURORA/data/something/frames/106143/first.jpg", "AURORA/data/something/frames/106143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid closer to straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000113840", "images": ["AURORA/data/something/frames/104402/first.jpg", "AURORA/data/something/frames/104402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113841", "images": ["AURORA/data/something/frames/137033/first.jpg", "AURORA/data/something/frames/137033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113842", "images": ["AURORA/data/something/frames/43560/first.jpg", "AURORA/data/something/frames/43560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking aa battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000113843", "images": ["AURORA/data/something/frames/14152/first.jpg", "AURORA/data/something/frames/14152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113844", "images": ["AURORA/data/something/frames/135778/first.jpg", "AURORA/data/something/frames/135778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113845", "images": ["AURORA/data/something/frames/77546/first.jpg", "AURORA/data/something/frames/77546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pendrive with green coloured cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113846", "images": ["AURORA/data/something/frames/25186/first.jpg", "AURORA/data/something/frames/25186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113847", "images": ["AURORA/data/something/frames/23358/first.jpg", "AURORA/data/something/frames/23358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113848", "images": ["AURORA/data/something/frames/71022/first.jpg", "AURORA/data/something/frames/71022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pencil sharpners"}, {"from": "gpt", "value": ""}]} +{"id": "000000113849", "images": ["AURORA/data/something/frames/220247/first.jpg", "AURORA/data/something/frames/220247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113850", "images": ["AURORA/data/something/frames/157617/first.jpg", "AURORA/data/something/frames/157617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keyboard next to backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113851", "images": ["AURORA/data/something/frames/150705/first.jpg", "AURORA/data/something/frames/150705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pill box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113852", "images": ["AURORA/data/something/frames/89877/first.jpg", "AURORA/data/something/frames/89877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding folding kerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000113853", "images": ["AURORA/data/something/frames/150511/first.jpg", "AURORA/data/something/frames/150511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113854", "images": ["AURORA/data/something/frames/10124/first.jpg", "AURORA/data/something/frames/10124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113855", "images": ["AURORA/data/something/frames/179875/first.jpg", "AURORA/data/something/frames/179875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smart phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113856", "images": ["AURORA/data/something/frames/160186/first.jpg", "AURORA/data/something/frames/160186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113857", "images": ["AURORA/data/something/frames/82448/first.jpg", "AURORA/data/something/frames/82448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113858", "images": ["AURORA/data/something/frames/213579/first.jpg", "AURORA/data/something/frames/213579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000113859", "images": ["AURORA/data/something/frames/45416/first.jpg", "AURORA/data/something/frames/45416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming green water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113860", "images": ["AURORA/data/something/frames/109307/first.jpg", "AURORA/data/something/frames/109307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling orange post-it from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113861", "images": ["AURORA/data/something/frames/127994/first.jpg", "AURORA/data/something/frames/127994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113862", "images": ["AURORA/data/something/frames/179725/first.jpg", "AURORA/data/something/frames/179725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of coaster without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113863", "images": ["AURORA/data/something/frames/48706/first.jpg", "AURORA/data/something/frames/48706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil, a pen and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113864", "images": ["AURORA/data/something/frames/40962/first.jpg", "AURORA/data/something/frames/40962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113865", "images": ["AURORA/data/something/frames/200180/first.jpg", "AURORA/data/something/frames/200180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113866", "images": ["AURORA/data/something/frames/90522/first.jpg", "AURORA/data/something/frames/90522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113867", "images": ["AURORA/data/something/frames/182237/first.jpg", "AURORA/data/something/frames/182237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113868", "images": ["AURORA/data/something/frames/166398/first.jpg", "AURORA/data/something/frames/166398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113869", "images": ["AURORA/data/something/frames/26972/first.jpg", "AURORA/data/something/frames/26972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000113870", "images": ["AURORA/data/something/frames/124781/first.jpg", "AURORA/data/something/frames/124781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour milk into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113871", "images": ["AURORA/data/something/frames/156369/first.jpg", "AURORA/data/something/frames/156369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113872", "images": ["AURORA/data/something/frames/29717/first.jpg", "AURORA/data/something/frames/29717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block and toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113873", "images": ["AURORA/data/something/frames/70290/first.jpg", "AURORA/data/something/frames/70290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen with other pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000113874", "images": ["AURORA/data/something/frames/76510/first.jpg", "AURORA/data/something/frames/76510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113875", "images": ["AURORA/data/something/frames/1317/first.jpg", "AURORA/data/something/frames/1317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of duster without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113876", "images": ["AURORA/data/something/frames/84961/first.jpg", "AURORA/data/something/frames/84961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping newspaper behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113877", "images": ["AURORA/data/something/frames/52267/first.jpg", "AURORA/data/something/frames/52267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000113878", "images": ["AURORA/data/something/frames/153371/first.jpg", "AURORA/data/something/frames/153371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking magnet clip so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113879", "images": ["AURORA/data/something/frames/180197/first.jpg", "AURORA/data/something/frames/180197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote control from bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113880", "images": ["AURORA/data/something/frames/191570/first.jpg", "AURORA/data/something/frames/191570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car keys on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113881", "images": ["AURORA/data/something/frames/65762/first.jpg", "AURORA/data/something/frames/65762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113882", "images": ["AURORA/data/something/frames/150143/first.jpg", "AURORA/data/something/frames/150143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping tea off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113883", "images": ["AURORA/data/something/frames/55675/first.jpg", "AURORA/data/something/frames/55675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113884", "images": ["AURORA/data/something/frames/1488/first.jpg", "AURORA/data/something/frames/1488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler in front of ointment"}, {"from": "gpt", "value": ""}]} +{"id": "000000113885", "images": ["AURORA/data/something/frames/217361/first.jpg", "AURORA/data/something/frames/217361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering key"}, {"from": "gpt", "value": ""}]} +{"id": "000000113886", "images": ["AURORA/data/something/frames/220191/first.jpg", "AURORA/data/something/frames/220191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big rock up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113887", "images": ["AURORA/data/something/frames/150085/first.jpg", "AURORA/data/something/frames/150085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glue bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000113888", "images": ["AURORA/data/something/frames/39589/first.jpg", "AURORA/data/something/frames/39589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mouse with a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113889", "images": ["AURORA/data/something/frames/158329/first.jpg", "AURORA/data/something/frames/158329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a can down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113890", "images": ["AURORA/data/something/frames/77020/first.jpg", "AURORA/data/something/frames/77020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 remotes onto tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000113891", "images": ["AURORA/data/something/frames/39134/first.jpg", "AURORA/data/something/frames/39134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting headphones underneath a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113892", "images": ["AURORA/data/something/frames/117763/first.jpg", "AURORA/data/something/frames/117763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113893", "images": ["AURORA/data/something/frames/99550/first.jpg", "AURORA/data/something/frames/99550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing chapati into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113894", "images": ["AURORA/data/something/frames/102275/first.jpg", "AURORA/data/something/frames/102275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a box with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113895", "images": ["AURORA/data/something/frames/154564/first.jpg", "AURORA/data/something/frames/154564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113896", "images": ["AURORA/data/something/frames/86353/first.jpg", "AURORA/data/something/frames/86353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into the socket to the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113897", "images": ["AURORA/data/something/frames/135077/first.jpg", "AURORA/data/something/frames/135077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113898", "images": ["AURORA/data/something/frames/207303/first.jpg", "AURORA/data/something/frames/207303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113899", "images": ["AURORA/data/something/frames/211430/first.jpg", "AURORA/data/something/frames/211430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000113900", "images": ["AURORA/data/something/frames/164427/first.jpg", "AURORA/data/something/frames/164427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle with vitamins over, so vitamins falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113901", "images": ["AURORA/data/something/frames/71368/first.jpg", "AURORA/data/something/frames/71368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113902", "images": ["AURORA/data/something/frames/8562/first.jpg", "AURORA/data/something/frames/8562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box away from a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000113903", "images": ["AURORA/data/something/frames/11244/first.jpg", "AURORA/data/something/frames/11244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shoe brush upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113904", "images": ["AURORA/data/something/frames/74229/first.jpg", "AURORA/data/something/frames/74229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113905", "images": ["AURORA/data/something/frames/78247/first.jpg", "AURORA/data/something/frames/78247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113906", "images": ["AURORA/data/something/frames/29580/first.jpg", "AURORA/data/something/frames/29580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pot holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113907", "images": ["AURORA/data/something/frames/3651/first.jpg", "AURORA/data/something/frames/3651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shaving brush onto box so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113908", "images": ["AURORA/data/something/frames/162833/first.jpg", "AURORA/data/something/frames/162833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113909", "images": ["AURORA/data/something/frames/108670/first.jpg", "AURORA/data/something/frames/108670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a spoon with an apple on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113910", "images": ["AURORA/data/something/frames/141032/first.jpg", "AURORA/data/something/frames/141032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting baking powder on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113911", "images": ["AURORA/data/something/frames/179648/first.jpg", "AURORA/data/something/frames/179648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113912", "images": ["AURORA/data/something/frames/192817/first.jpg", "AURORA/data/something/frames/192817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113913", "images": ["AURORA/data/something/frames/217921/first.jpg", "AURORA/data/something/frames/217921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hat and shoe so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113914", "images": ["AURORA/data/something/frames/155438/first.jpg", "AURORA/data/something/frames/155438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle next to an iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000113915", "images": ["AURORA/data/something/frames/60638/first.jpg", "AURORA/data/something/frames/60638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass jar from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113916", "images": ["AURORA/data/something/frames/20096/first.jpg", "AURORA/data/something/frames/20096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wooden stick, battery and striker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113917", "images": ["AURORA/data/something/frames/93987/first.jpg", "AURORA/data/something/frames/93987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113918", "images": ["AURORA/data/something/frames/161930/first.jpg", "AURORA/data/something/frames/161930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stuffed animal from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113919", "images": ["AURORA/data/something/frames/46571/first.jpg", "AURORA/data/something/frames/46571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113920", "images": ["AURORA/data/something/frames/122043/first.jpg", "AURORA/data/something/frames/122043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113921", "images": ["AURORA/data/something/frames/62533/first.jpg", "AURORA/data/something/frames/62533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bandaids into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113922", "images": ["AURORA/data/something/frames/122847/first.jpg", "AURORA/data/something/frames/122847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: batery colliding with batery and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113923", "images": ["AURORA/data/something/frames/212378/first.jpg", "AURORA/data/something/frames/212378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glas and glas closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113924", "images": ["AURORA/data/something/frames/150617/first.jpg", "AURORA/data/something/frames/150617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking string so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113925", "images": ["AURORA/data/something/frames/64089/first.jpg", "AURORA/data/something/frames/64089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113926", "images": ["AURORA/data/something/frames/204778/first.jpg", "AURORA/data/something/frames/204778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113927", "images": ["AURORA/data/something/frames/130956/first.jpg", "AURORA/data/something/frames/130956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113928", "images": ["AURORA/data/something/frames/84056/first.jpg", "AURORA/data/something/frames/84056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pack of gum onto a notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000113929", "images": ["AURORA/data/something/frames/67015/first.jpg", "AURORA/data/something/frames/67015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113930", "images": ["AURORA/data/something/frames/59375/first.jpg", "AURORA/data/something/frames/59375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of envelopes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113931", "images": ["AURORA/data/something/frames/140370/first.jpg", "AURORA/data/something/frames/140370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113932", "images": ["AURORA/data/something/frames/4651/first.jpg", "AURORA/data/something/frames/4651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing tumbler cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000113933", "images": ["AURORA/data/something/frames/213960/first.jpg", "AURORA/data/something/frames/213960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mug so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113934", "images": ["AURORA/data/something/frames/138200/first.jpg", "AURORA/data/something/frames/138200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113935", "images": ["AURORA/data/something/frames/134949/first.jpg", "AURORA/data/something/frames/134949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink toothbrush case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113936", "images": ["AURORA/data/something/frames/73891/first.jpg", "AURORA/data/something/frames/73891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113937", "images": ["AURORA/data/something/frames/81960/first.jpg", "AURORA/data/something/frames/81960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissues and block on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113938", "images": ["AURORA/data/something/frames/72154/first.jpg", "AURORA/data/something/frames/72154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging key into lock but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113939", "images": ["AURORA/data/something/frames/131016/first.jpg", "AURORA/data/something/frames/131016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113940", "images": ["AURORA/data/something/frames/132836/first.jpg", "AURORA/data/something/frames/132836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113941", "images": ["AURORA/data/something/frames/137811/first.jpg", "AURORA/data/something/frames/137811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ac outlet off of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113942", "images": ["AURORA/data/something/frames/182920/first.jpg", "AURORA/data/something/frames/182920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000113943", "images": ["AURORA/data/something/frames/91634/first.jpg", "AURORA/data/something/frames/91634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shoe brush into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113944", "images": ["AURORA/data/something/frames/154652/first.jpg", "AURORA/data/something/frames/154652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113945", "images": ["AURORA/data/something/frames/117190/first.jpg", "AURORA/data/something/frames/117190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113946", "images": ["AURORA/data/something/frames/106432/first.jpg", "AURORA/data/something/frames/106432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing battery from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113947", "images": ["AURORA/data/something/frames/7609/first.jpg", "AURORA/data/something/frames/7609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dvd box with scotch tape on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113948", "images": ["AURORA/data/something/frames/214306/first.jpg", "AURORA/data/something/frames/214306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000113949", "images": ["AURORA/data/something/frames/213207/first.jpg", "AURORA/data/something/frames/213207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a plate with a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113950", "images": ["AURORA/data/something/frames/118121/first.jpg", "AURORA/data/something/frames/118121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cd"}, {"from": "gpt", "value": ""}]} +{"id": "000000113951", "images": ["AURORA/data/something/frames/58136/first.jpg", "AURORA/data/something/frames/58136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses next to a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113952", "images": ["AURORA/data/something/frames/102030/first.jpg", "AURORA/data/something/frames/102030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bam box away from the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113953", "images": ["AURORA/data/something/frames/50015/first.jpg", "AURORA/data/something/frames/50015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a jar out of a shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000113954", "images": ["AURORA/data/something/frames/187387/first.jpg", "AURORA/data/something/frames/187387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spectacle box next to orange cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113955", "images": ["AURORA/data/something/frames/71913/first.jpg", "AURORA/data/something/frames/71913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113956", "images": ["AURORA/data/something/frames/47709/first.jpg", "AURORA/data/something/frames/47709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113957", "images": ["AURORA/data/something/frames/217226/first.jpg", "AURORA/data/something/frames/217226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113958", "images": ["AURORA/data/something/frames/24902/first.jpg", "AURORA/data/something/frames/24902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a watch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113959", "images": ["AURORA/data/something/frames/72854/first.jpg", "AURORA/data/something/frames/72854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113960", "images": ["AURORA/data/something/frames/106474/first.jpg", "AURORA/data/something/frames/106474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into electrical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113961", "images": ["AURORA/data/something/frames/49120/first.jpg", "AURORA/data/something/frames/49120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into adapter but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113962", "images": ["AURORA/data/something/frames/123776/first.jpg", "AURORA/data/something/frames/123776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113963", "images": ["AURORA/data/something/frames/140576/first.jpg", "AURORA/data/something/frames/140576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113964", "images": ["AURORA/data/something/frames/140936/first.jpg", "AURORA/data/something/frames/140936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting can with lemon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113965", "images": ["AURORA/data/something/frames/61766/first.jpg", "AURORA/data/something/frames/61766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cloth just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113966", "images": ["AURORA/data/something/frames/78960/first.jpg", "AURORA/data/something/frames/78960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113967", "images": ["AURORA/data/something/frames/205377/first.jpg", "AURORA/data/something/frames/205377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cord into a charging base"}, {"from": "gpt", "value": ""}]} +{"id": "000000113968", "images": ["AURORA/data/something/frames/4391/first.jpg", "AURORA/data/something/frames/4391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a charger from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113969", "images": ["AURORA/data/something/frames/83045/first.jpg", "AURORA/data/something/frames/83045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching top to kettle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113970", "images": ["AURORA/data/something/frames/76654/first.jpg", "AURORA/data/something/frames/76654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tool into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113971", "images": ["AURORA/data/something/frames/128734/first.jpg", "AURORA/data/something/frames/128734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairpin on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113972", "images": ["AURORA/data/something/frames/143947/first.jpg", "AURORA/data/something/frames/143947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113973", "images": ["AURORA/data/something/frames/86087/first.jpg", "AURORA/data/something/frames/86087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113974", "images": ["AURORA/data/something/frames/199944/first.jpg", "AURORA/data/something/frames/199944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113975", "images": ["AURORA/data/something/frames/15603/first.jpg", "AURORA/data/something/frames/15603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a spoon with an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113976", "images": ["AURORA/data/something/frames/11123/first.jpg", "AURORA/data/something/frames/11123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring cream onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113977", "images": ["AURORA/data/something/frames/206039/first.jpg", "AURORA/data/something/frames/206039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113978", "images": ["AURORA/data/something/frames/114408/first.jpg", "AURORA/data/something/frames/114408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cigarettes so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113979", "images": ["AURORA/data/something/frames/94943/first.jpg", "AURORA/data/something/frames/94943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending magnet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113980", "images": ["AURORA/data/something/frames/74338/first.jpg", "AURORA/data/something/frames/74338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pen into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000113981", "images": ["AURORA/data/something/frames/61042/first.jpg", "AURORA/data/something/frames/61042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a cardboard bit just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113982", "images": ["AURORA/data/something/frames/18041/first.jpg", "AURORA/data/something/frames/18041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113983", "images": ["AURORA/data/something/frames/155147/first.jpg", "AURORA/data/something/frames/155147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113984", "images": ["AURORA/data/something/frames/192972/first.jpg", "AURORA/data/something/frames/192972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113985", "images": ["AURORA/data/something/frames/174259/first.jpg", "AURORA/data/something/frames/174259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113986", "images": ["AURORA/data/something/frames/94238/first.jpg", "AURORA/data/something/frames/94238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113987", "images": ["AURORA/data/something/frames/7440/first.jpg", "AURORA/data/something/frames/7440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113988", "images": ["AURORA/data/something/frames/39528/first.jpg", "AURORA/data/something/frames/39528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113989", "images": ["AURORA/data/something/frames/215426/first.jpg", "AURORA/data/something/frames/215426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye drops across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113990", "images": ["AURORA/data/something/frames/72727/first.jpg", "AURORA/data/something/frames/72727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip, bolt and chalk on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113991", "images": ["AURORA/data/something/frames/75045/first.jpg", "AURORA/data/something/frames/75045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a stone onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113992", "images": ["AURORA/data/something/frames/12605/first.jpg", "AURORA/data/something/frames/12605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113993", "images": ["AURORA/data/something/frames/73923/first.jpg", "AURORA/data/something/frames/73923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet and harmonica on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113994", "images": ["AURORA/data/something/frames/125802/first.jpg", "AURORA/data/something/frames/125802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering hair band with black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113995", "images": ["AURORA/data/something/frames/81501/first.jpg", "AURORA/data/something/frames/81501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stuffed animal next to stuffed animal"}, {"from": "gpt", "value": ""}]} +{"id": "000000113996", "images": ["AURORA/data/something/frames/215647/first.jpg", "AURORA/data/something/frames/215647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113997", "images": ["AURORA/data/something/frames/79253/first.jpg", "AURORA/data/something/frames/79253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113998", "images": ["AURORA/data/something/frames/91162/first.jpg", "AURORA/data/something/frames/91162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper into a folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113999", "images": ["AURORA/data/something/frames/23873/first.jpg", "AURORA/data/something/frames/23873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming carton box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114000", "images": ["AURORA/data/something/frames/4387/first.jpg", "AURORA/data/something/frames/4387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114001", "images": ["AURORA/data/something/frames/62731/first.jpg", "AURORA/data/something/frames/62731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy horse underneath a coffee table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114002", "images": ["AURORA/data/something/frames/220085/first.jpg", "AURORA/data/something/frames/220085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving laptop up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114003", "images": ["AURORA/data/something/frames/138177/first.jpg", "AURORA/data/something/frames/138177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye kajal away from pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000114004", "images": ["AURORA/data/something/frames/28464/first.jpg", "AURORA/data/something/frames/28464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pizza cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114005", "images": ["AURORA/data/something/frames/86548/first.jpg", "AURORA/data/something/frames/86548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114006", "images": ["AURORA/data/something/frames/188726/first.jpg", "AURORA/data/something/frames/188726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of pen drive"}, {"from": "gpt", "value": ""}]} +{"id": "000000114007", "images": ["AURORA/data/something/frames/38073/first.jpg", "AURORA/data/something/frames/38073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling novels up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114008", "images": ["AURORA/data/something/frames/116615/first.jpg", "AURORA/data/something/frames/116615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114009", "images": ["AURORA/data/something/frames/150023/first.jpg", "AURORA/data/something/frames/150023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy from behind of the couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114010", "images": ["AURORA/data/something/frames/29279/first.jpg", "AURORA/data/something/frames/29279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving left foot and right foot so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114011", "images": ["AURORA/data/something/frames/2059/first.jpg", "AURORA/data/something/frames/2059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: red crayon colliding with blue crayon and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114012", "images": ["AURORA/data/something/frames/143113/first.jpg", "AURORA/data/something/frames/143113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lighter on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114013", "images": ["AURORA/data/something/frames/130068/first.jpg", "AURORA/data/something/frames/130068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114014", "images": ["AURORA/data/something/frames/64480/first.jpg", "AURORA/data/something/frames/64480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging chord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114015", "images": ["AURORA/data/something/frames/103583/first.jpg", "AURORA/data/something/frames/103583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114016", "images": ["AURORA/data/something/frames/120106/first.jpg", "AURORA/data/something/frames/120106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114017", "images": ["AURORA/data/something/frames/150329/first.jpg", "AURORA/data/something/frames/150329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marble"}, {"from": "gpt", "value": ""}]} +{"id": "000000114018", "images": ["AURORA/data/something/frames/73312/first.jpg", "AURORA/data/something/frames/73312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114019", "images": ["AURORA/data/something/frames/55572/first.jpg", "AURORA/data/something/frames/55572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying toy on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114020", "images": ["AURORA/data/something/frames/28328/first.jpg", "AURORA/data/something/frames/28328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dvd with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114021", "images": ["AURORA/data/something/frames/66067/first.jpg", "AURORA/data/something/frames/66067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114022", "images": ["AURORA/data/something/frames/112419/first.jpg", "AURORA/data/something/frames/112419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114023", "images": ["AURORA/data/something/frames/188022/first.jpg", "AURORA/data/something/frames/188022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing granola bar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114024", "images": ["AURORA/data/something/frames/140180/first.jpg", "AURORA/data/something/frames/140180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114025", "images": ["AURORA/data/something/frames/130831/first.jpg", "AURORA/data/something/frames/130831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114026", "images": ["AURORA/data/something/frames/86510/first.jpg", "AURORA/data/something/frames/86510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114027", "images": ["AURORA/data/something/frames/205685/first.jpg", "AURORA/data/something/frames/205685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114028", "images": ["AURORA/data/something/frames/69019/first.jpg", "AURORA/data/something/frames/69019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting belt, calculator and lock on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114029", "images": ["AURORA/data/something/frames/40101/first.jpg", "AURORA/data/something/frames/40101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114030", "images": ["AURORA/data/something/frames/48077/first.jpg", "AURORA/data/something/frames/48077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mugs"}, {"from": "gpt", "value": ""}]} +{"id": "000000114031", "images": ["AURORA/data/something/frames/16482/first.jpg", "AURORA/data/something/frames/16482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114032", "images": ["AURORA/data/something/frames/95431/first.jpg", "AURORA/data/something/frames/95431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into penstand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114033", "images": ["AURORA/data/something/frames/102620/first.jpg", "AURORA/data/something/frames/102620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote away from a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114034", "images": ["AURORA/data/something/frames/187808/first.jpg", "AURORA/data/something/frames/187808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tape measure so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114035", "images": ["AURORA/data/something/frames/175742/first.jpg", "AURORA/data/something/frames/175742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a battery from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114036", "images": ["AURORA/data/something/frames/187496/first.jpg", "AURORA/data/something/frames/187496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114037", "images": ["AURORA/data/something/frames/79237/first.jpg", "AURORA/data/something/frames/79237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114038", "images": ["AURORA/data/something/frames/75216/first.jpg", "AURORA/data/something/frames/75216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar things on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114039", "images": ["AURORA/data/something/frames/125290/first.jpg", "AURORA/data/something/frames/125290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading lentiles onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114040", "images": ["AURORA/data/something/frames/116099/first.jpg", "AURORA/data/something/frames/116099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114041", "images": ["AURORA/data/something/frames/210441/first.jpg", "AURORA/data/something/frames/210441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black pouch bag from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114042", "images": ["AURORA/data/something/frames/174303/first.jpg", "AURORA/data/something/frames/174303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114043", "images": ["AURORA/data/something/frames/67096/first.jpg", "AURORA/data/something/frames/67096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hairspray down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114044", "images": ["AURORA/data/something/frames/183763/first.jpg", "AURORA/data/something/frames/183763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a water bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114045", "images": ["AURORA/data/something/frames/82867/first.jpg", "AURORA/data/something/frames/82867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle of tool oil on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114046", "images": ["AURORA/data/something/frames/60095/first.jpg", "AURORA/data/something/frames/60095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114047", "images": ["AURORA/data/something/frames/211224/first.jpg", "AURORA/data/something/frames/211224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114048", "images": ["AURORA/data/something/frames/12331/first.jpg", "AURORA/data/something/frames/12331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking measurement spoon out of cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000114049", "images": ["AURORA/data/something/frames/15266/first.jpg", "AURORA/data/something/frames/15266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114050", "images": ["AURORA/data/something/frames/182527/first.jpg", "AURORA/data/something/frames/182527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114051", "images": ["AURORA/data/something/frames/111236/first.jpg", "AURORA/data/something/frames/111236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bay leaves upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114052", "images": ["AURORA/data/something/frames/78583/first.jpg", "AURORA/data/something/frames/78583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading pens onto flat surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114053", "images": ["AURORA/data/something/frames/67103/first.jpg", "AURORA/data/something/frames/67103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114054", "images": ["AURORA/data/something/frames/213741/first.jpg", "AURORA/data/something/frames/213741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114055", "images": ["AURORA/data/something/frames/27206/first.jpg", "AURORA/data/something/frames/27206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114056", "images": ["AURORA/data/something/frames/72889/first.jpg", "AURORA/data/something/frames/72889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papper into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114057", "images": ["AURORA/data/something/frames/3413/first.jpg", "AURORA/data/something/frames/3413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a power plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114058", "images": ["AURORA/data/something/frames/71778/first.jpg", "AURORA/data/something/frames/71778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114059", "images": ["AURORA/data/something/frames/55513/first.jpg", "AURORA/data/something/frames/55513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lighter into a beach bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114060", "images": ["AURORA/data/something/frames/82026/first.jpg", "AURORA/data/something/frames/82026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling baking soda onto ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000114061", "images": ["AURORA/data/something/frames/69755/first.jpg", "AURORA/data/something/frames/69755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000114062", "images": ["AURORA/data/something/frames/5173/first.jpg", "AURORA/data/something/frames/5173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tiger toy colliding with elephant toy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114063", "images": ["AURORA/data/something/frames/105144/first.jpg", "AURORA/data/something/frames/105144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114064", "images": ["AURORA/data/something/frames/91388/first.jpg", "AURORA/data/something/frames/91388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper towel so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114065", "images": ["AURORA/data/something/frames/201366/first.jpg", "AURORA/data/something/frames/201366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000114066", "images": ["AURORA/data/something/frames/86145/first.jpg", "AURORA/data/something/frames/86145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a spectacle case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114067", "images": ["AURORA/data/something/frames/69735/first.jpg", "AURORA/data/something/frames/69735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) something wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114068", "images": ["AURORA/data/something/frames/65130/first.jpg", "AURORA/data/something/frames/65130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114069", "images": ["AURORA/data/something/frames/105110/first.jpg", "AURORA/data/something/frames/105110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling knife from behind of monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114070", "images": ["AURORA/data/something/frames/77274/first.jpg", "AURORA/data/something/frames/77274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ball off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114071", "images": ["AURORA/data/something/frames/151324/first.jpg", "AURORA/data/something/frames/151324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114072", "images": ["AURORA/data/something/frames/27177/first.jpg", "AURORA/data/something/frames/27177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pumpkin so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114073", "images": ["AURORA/data/something/frames/25430/first.jpg", "AURORA/data/something/frames/25430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114074", "images": ["AURORA/data/something/frames/109237/first.jpg", "AURORA/data/something/frames/109237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extension cord into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114075", "images": ["AURORA/data/something/frames/10977/first.jpg", "AURORA/data/something/frames/10977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting stopper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114076", "images": ["AURORA/data/something/frames/158936/first.jpg", "AURORA/data/something/frames/158936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pulling power bank from right to left from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114077", "images": ["AURORA/data/something/frames/149424/first.jpg", "AURORA/data/something/frames/149424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thread down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114078", "images": ["AURORA/data/something/frames/101862/first.jpg", "AURORA/data/something/frames/101862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114079", "images": ["AURORA/data/something/frames/182755/first.jpg", "AURORA/data/something/frames/182755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sports water bottle and green water bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114080", "images": ["AURORA/data/something/frames/30209/first.jpg", "AURORA/data/something/frames/30209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a chair across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114081", "images": ["AURORA/data/something/frames/185144/first.jpg", "AURORA/data/something/frames/185144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114082", "images": ["AURORA/data/something/frames/38566/first.jpg", "AURORA/data/something/frames/38566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping q-tips into a coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000114083", "images": ["AURORA/data/something/frames/5875/first.jpg", "AURORA/data/something/frames/5875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mug with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114084", "images": ["AURORA/data/something/frames/92349/first.jpg", "AURORA/data/something/frames/92349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114085", "images": ["AURORA/data/something/frames/188722/first.jpg", "AURORA/data/something/frames/188722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to other battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000114086", "images": ["AURORA/data/something/frames/68762/first.jpg", "AURORA/data/something/frames/68762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jeep away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114087", "images": ["AURORA/data/something/frames/112521/first.jpg", "AURORA/data/something/frames/112521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114088", "images": ["AURORA/data/something/frames/74764/first.jpg", "AURORA/data/something/frames/74764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a speaker colliding with a shirt and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114089", "images": ["AURORA/data/something/frames/8642/first.jpg", "AURORA/data/something/frames/8642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a battery from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114090", "images": ["AURORA/data/something/frames/102916/first.jpg", "AURORA/data/something/frames/102916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114091", "images": ["AURORA/data/something/frames/110111/first.jpg", "AURORA/data/something/frames/110111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114092", "images": ["AURORA/data/something/frames/219234/first.jpg", "AURORA/data/something/frames/219234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering shoe with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114093", "images": ["AURORA/data/something/frames/125277/first.jpg", "AURORA/data/something/frames/125277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114094", "images": ["AURORA/data/something/frames/128760/first.jpg", "AURORA/data/something/frames/128760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 cd onto laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114095", "images": ["AURORA/data/something/frames/22577/first.jpg", "AURORA/data/something/frames/22577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114096", "images": ["AURORA/data/something/frames/84160/first.jpg", "AURORA/data/something/frames/84160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lemon into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114097", "images": ["AURORA/data/something/frames/78000/first.jpg", "AURORA/data/something/frames/78000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114098", "images": ["AURORA/data/something/frames/67207/first.jpg", "AURORA/data/something/frames/67207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114099", "images": ["AURORA/data/something/frames/159921/first.jpg", "AURORA/data/something/frames/159921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping badminton bat in front of a pair of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000114100", "images": ["AURORA/data/something/frames/26291/first.jpg", "AURORA/data/something/frames/26291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hair gel bottle with nail paint remover"}, {"from": "gpt", "value": ""}]} +{"id": "000000114101", "images": ["AURORA/data/something/frames/120363/first.jpg", "AURORA/data/something/frames/120363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notebook page into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114102", "images": ["AURORA/data/something/frames/186913/first.jpg", "AURORA/data/something/frames/186913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114103", "images": ["AURORA/data/something/frames/182928/first.jpg", "AURORA/data/something/frames/182928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114104", "images": ["AURORA/data/something/frames/218510/first.jpg", "AURORA/data/something/frames/218510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114105", "images": ["AURORA/data/something/frames/169915/first.jpg", "AURORA/data/something/frames/169915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ipad with water bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114106", "images": ["AURORA/data/something/frames/65950/first.jpg", "AURORA/data/something/frames/65950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114107", "images": ["AURORA/data/something/frames/147533/first.jpg", "AURORA/data/something/frames/147533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114108", "images": ["AURORA/data/something/frames/129181/first.jpg", "AURORA/data/something/frames/129181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup behind canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000114109", "images": ["AURORA/data/something/frames/178550/first.jpg", "AURORA/data/something/frames/178550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving match box down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114110", "images": ["AURORA/data/something/frames/157759/first.jpg", "AURORA/data/something/frames/157759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding reciept"}, {"from": "gpt", "value": ""}]} +{"id": "000000114111", "images": ["AURORA/data/something/frames/86401/first.jpg", "AURORA/data/something/frames/86401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114112", "images": ["AURORA/data/something/frames/144404/first.jpg", "AURORA/data/something/frames/144404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scotch tape so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114113", "images": ["AURORA/data/something/frames/198150/first.jpg", "AURORA/data/something/frames/198150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy duck and plastic flower away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114114", "images": ["AURORA/data/something/frames/89166/first.jpg", "AURORA/data/something/frames/89166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114115", "images": ["AURORA/data/something/frames/5248/first.jpg", "AURORA/data/something/frames/5248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a candle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114116", "images": ["AURORA/data/something/frames/208314/first.jpg", "AURORA/data/something/frames/208314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling felt pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114117", "images": ["AURORA/data/something/frames/81098/first.jpg", "AURORA/data/something/frames/81098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114118", "images": ["AURORA/data/something/frames/171081/first.jpg", "AURORA/data/something/frames/171081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clock in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114119", "images": ["AURORA/data/something/frames/121504/first.jpg", "AURORA/data/something/frames/121504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114120", "images": ["AURORA/data/something/frames/101681/first.jpg", "AURORA/data/something/frames/101681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 6 dog treats onto chopping board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114121", "images": ["AURORA/data/something/frames/213334/first.jpg", "AURORA/data/something/frames/213334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114122", "images": ["AURORA/data/something/frames/184423/first.jpg", "AURORA/data/something/frames/184423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000114123", "images": ["AURORA/data/something/frames/55398/first.jpg", "AURORA/data/something/frames/55398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of clementines without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000114124", "images": ["AURORA/data/something/frames/196954/first.jpg", "AURORA/data/something/frames/196954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toy out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114125", "images": ["AURORA/data/something/frames/14270/first.jpg", "AURORA/data/something/frames/14270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114126", "images": ["AURORA/data/something/frames/18366/first.jpg", "AURORA/data/something/frames/18366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending envelope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114127", "images": ["AURORA/data/something/frames/167596/first.jpg", "AURORA/data/something/frames/167596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114128", "images": ["AURORA/data/something/frames/41450/first.jpg", "AURORA/data/something/frames/41450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114129", "images": ["AURORA/data/something/frames/134471/first.jpg", "AURORA/data/something/frames/134471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114130", "images": ["AURORA/data/something/frames/89099/first.jpg", "AURORA/data/something/frames/89099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling chopsticks out of package"}, {"from": "gpt", "value": ""}]} +{"id": "000000114131", "images": ["AURORA/data/something/frames/88732/first.jpg", "AURORA/data/something/frames/88732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114132", "images": ["AURORA/data/something/frames/24394/first.jpg", "AURORA/data/something/frames/24394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114133", "images": ["AURORA/data/something/frames/81255/first.jpg", "AURORA/data/something/frames/81255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a charger so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114134", "images": ["AURORA/data/something/frames/143509/first.jpg", "AURORA/data/something/frames/143509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring koolaid into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114135", "images": ["AURORA/data/something/frames/29472/first.jpg", "AURORA/data/something/frames/29472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting felt pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114136", "images": ["AURORA/data/something/frames/25938/first.jpg", "AURORA/data/something/frames/25938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notepad across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114137", "images": ["AURORA/data/something/frames/85169/first.jpg", "AURORA/data/something/frames/85169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a woollen yarn into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114138", "images": ["AURORA/data/something/frames/161027/first.jpg", "AURORA/data/something/frames/161027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114139", "images": ["AURORA/data/something/frames/100458/first.jpg", "AURORA/data/something/frames/100458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plate from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000114140", "images": ["AURORA/data/something/frames/129432/first.jpg", "AURORA/data/something/frames/129432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114141", "images": ["AURORA/data/something/frames/195005/first.jpg", "AURORA/data/something/frames/195005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114142", "images": ["AURORA/data/something/frames/176329/first.jpg", "AURORA/data/something/frames/176329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114143", "images": ["AURORA/data/something/frames/79168/first.jpg", "AURORA/data/something/frames/79168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a key away from a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114144", "images": ["AURORA/data/something/frames/155824/first.jpg", "AURORA/data/something/frames/155824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114145", "images": ["AURORA/data/something/frames/83895/first.jpg", "AURORA/data/something/frames/83895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114146", "images": ["AURORA/data/something/frames/214793/first.jpg", "AURORA/data/something/frames/214793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114147", "images": ["AURORA/data/something/frames/130837/first.jpg", "AURORA/data/something/frames/130837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box closer to can"}, {"from": "gpt", "value": ""}]} +{"id": "000000114148", "images": ["AURORA/data/something/frames/35183/first.jpg", "AURORA/data/something/frames/35183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tv remote with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114149", "images": ["AURORA/data/something/frames/127248/first.jpg", "AURORA/data/something/frames/127248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a card upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114150", "images": ["AURORA/data/something/frames/64912/first.jpg", "AURORA/data/something/frames/64912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114151", "images": ["AURORA/data/something/frames/99945/first.jpg", "AURORA/data/something/frames/99945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114152", "images": ["AURORA/data/something/frames/208950/first.jpg", "AURORA/data/something/frames/208950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging toaster into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114153", "images": ["AURORA/data/something/frames/158909/first.jpg", "AURORA/data/something/frames/158909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power cord into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114154", "images": ["AURORA/data/something/frames/124393/first.jpg", "AURORA/data/something/frames/124393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking documents out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114155", "images": ["AURORA/data/something/frames/10473/first.jpg", "AURORA/data/something/frames/10473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000114156", "images": ["AURORA/data/something/frames/45522/first.jpg", "AURORA/data/something/frames/45522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red spoon away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114157", "images": ["AURORA/data/something/frames/60361/first.jpg", "AURORA/data/something/frames/60361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of cloth without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114158", "images": ["AURORA/data/something/frames/74604/first.jpg", "AURORA/data/something/frames/74604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114159", "images": ["AURORA/data/something/frames/107990/first.jpg", "AURORA/data/something/frames/107990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying red cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114160", "images": ["AURORA/data/something/frames/34047/first.jpg", "AURORA/data/something/frames/34047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toothbrush with notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114161", "images": ["AURORA/data/something/frames/121487/first.jpg", "AURORA/data/something/frames/121487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000114162", "images": ["AURORA/data/something/frames/101117/first.jpg", "AURORA/data/something/frames/101117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114163", "images": ["AURORA/data/something/frames/214149/first.jpg", "AURORA/data/something/frames/214149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissue box on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114164", "images": ["AURORA/data/something/frames/203721/first.jpg", "AURORA/data/something/frames/203721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle next to kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000114165", "images": ["AURORA/data/something/frames/69439/first.jpg", "AURORA/data/something/frames/69439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000114166", "images": ["AURORA/data/something/frames/32741/first.jpg", "AURORA/data/something/frames/32741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114167", "images": ["AURORA/data/something/frames/53592/first.jpg", "AURORA/data/something/frames/53592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving basketball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114168", "images": ["AURORA/data/something/frames/113329/first.jpg", "AURORA/data/something/frames/113329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book from a pile of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114169", "images": ["AURORA/data/something/frames/109268/first.jpg", "AURORA/data/something/frames/109268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting brush with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114170", "images": ["AURORA/data/something/frames/16749/first.jpg", "AURORA/data/something/frames/16749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114171", "images": ["AURORA/data/something/frames/193403/first.jpg", "AURORA/data/something/frames/193403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lunchbox behind a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114172", "images": ["AURORA/data/something/frames/39205/first.jpg", "AURORA/data/something/frames/39205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114173", "images": ["AURORA/data/something/frames/179673/first.jpg", "AURORA/data/something/frames/179673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114174", "images": ["AURORA/data/something/frames/162861/first.jpg", "AURORA/data/something/frames/162861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114175", "images": ["AURORA/data/something/frames/173426/first.jpg", "AURORA/data/something/frames/173426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting selfie stick behind wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114176", "images": ["AURORA/data/something/frames/100579/first.jpg", "AURORA/data/something/frames/100579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of play-doh"}, {"from": "gpt", "value": ""}]} +{"id": "000000114177", "images": ["AURORA/data/something/frames/213168/first.jpg", "AURORA/data/something/frames/213168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote control with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114178", "images": ["AURORA/data/something/frames/36308/first.jpg", "AURORA/data/something/frames/36308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pant into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114179", "images": ["AURORA/data/something/frames/195136/first.jpg", "AURORA/data/something/frames/195136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114180", "images": ["AURORA/data/something/frames/145503/first.jpg", "AURORA/data/something/frames/145503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114181", "images": ["AURORA/data/something/frames/184810/first.jpg", "AURORA/data/something/frames/184810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lid of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114182", "images": ["AURORA/data/something/frames/139652/first.jpg", "AURORA/data/something/frames/139652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114183", "images": ["AURORA/data/something/frames/99304/first.jpg", "AURORA/data/something/frames/99304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114184", "images": ["AURORA/data/something/frames/157086/first.jpg", "AURORA/data/something/frames/157086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114185", "images": ["AURORA/data/something/frames/64685/first.jpg", "AURORA/data/something/frames/64685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup in front of a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000114186", "images": ["AURORA/data/something/frames/129940/first.jpg", "AURORA/data/something/frames/129940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pillow upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114187", "images": ["AURORA/data/something/frames/43904/first.jpg", "AURORA/data/something/frames/43904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000114188", "images": ["AURORA/data/something/frames/49552/first.jpg", "AURORA/data/something/frames/49552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling envelopes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114189", "images": ["AURORA/data/something/frames/211632/first.jpg", "AURORA/data/something/frames/211632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114190", "images": ["AURORA/data/something/frames/22700/first.jpg", "AURORA/data/something/frames/22700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a thread so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114191", "images": ["AURORA/data/something/frames/28815/first.jpg", "AURORA/data/something/frames/28815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one spoon from many spoons on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114192", "images": ["AURORA/data/something/frames/46642/first.jpg", "AURORA/data/something/frames/46642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114193", "images": ["AURORA/data/something/frames/98886/first.jpg", "AURORA/data/something/frames/98886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114194", "images": ["AURORA/data/something/frames/72298/first.jpg", "AURORA/data/something/frames/72298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking shoes from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114195", "images": ["AURORA/data/something/frames/52971/first.jpg", "AURORA/data/something/frames/52971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing aim toothpaste from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114196", "images": ["AURORA/data/something/frames/155511/first.jpg", "AURORA/data/something/frames/155511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an electric fan with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114197", "images": ["AURORA/data/something/frames/193863/first.jpg", "AURORA/data/something/frames/193863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a can with a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114198", "images": ["AURORA/data/something/frames/211354/first.jpg", "AURORA/data/something/frames/211354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lipstick colliding with another lipstick and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114199", "images": ["AURORA/data/something/frames/64794/first.jpg", "AURORA/data/something/frames/64794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114200", "images": ["AURORA/data/something/frames/56120/first.jpg", "AURORA/data/something/frames/56120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114201", "images": ["AURORA/data/something/frames/107138/first.jpg", "AURORA/data/something/frames/107138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114202", "images": ["AURORA/data/something/frames/131342/first.jpg", "AURORA/data/something/frames/131342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with teatowel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114203", "images": ["AURORA/data/something/frames/192642/first.jpg", "AURORA/data/something/frames/192642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jar out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114204", "images": ["AURORA/data/something/frames/146799/first.jpg", "AURORA/data/something/frames/146799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114205", "images": ["AURORA/data/something/frames/90618/first.jpg", "AURORA/data/something/frames/90618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114206", "images": ["AURORA/data/something/frames/112522/first.jpg", "AURORA/data/something/frames/112522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting remote control up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114207", "images": ["AURORA/data/something/frames/130003/first.jpg", "AURORA/data/something/frames/130003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114208", "images": ["AURORA/data/something/frames/121225/first.jpg", "AURORA/data/something/frames/121225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill bottle into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114209", "images": ["AURORA/data/something/frames/24132/first.jpg", "AURORA/data/something/frames/24132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cups up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114210", "images": ["AURORA/data/something/frames/183163/first.jpg", "AURORA/data/something/frames/183163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cork with hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114211", "images": ["AURORA/data/something/frames/65191/first.jpg", "AURORA/data/something/frames/65191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114212", "images": ["AURORA/data/something/frames/42556/first.jpg", "AURORA/data/something/frames/42556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling door from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114213", "images": ["AURORA/data/something/frames/157256/first.jpg", "AURORA/data/something/frames/157256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114214", "images": ["AURORA/data/something/frames/196501/first.jpg", "AURORA/data/something/frames/196501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114215", "images": ["AURORA/data/something/frames/126786/first.jpg", "AURORA/data/something/frames/126786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting writing pad with papers on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114216", "images": ["AURORA/data/something/frames/44812/first.jpg", "AURORA/data/something/frames/44812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114217", "images": ["AURORA/data/something/frames/209457/first.jpg", "AURORA/data/something/frames/209457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114218", "images": ["AURORA/data/something/frames/124435/first.jpg", "AURORA/data/something/frames/124435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glue from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114219", "images": ["AURORA/data/something/frames/88126/first.jpg", "AURORA/data/something/frames/88126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114220", "images": ["AURORA/data/something/frames/75125/first.jpg", "AURORA/data/something/frames/75125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114221", "images": ["AURORA/data/something/frames/8210/first.jpg", "AURORA/data/something/frames/8210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 envelope onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114222", "images": ["AURORA/data/something/frames/79932/first.jpg", "AURORA/data/something/frames/79932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle in front of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000114223", "images": ["AURORA/data/something/frames/124285/first.jpg", "AURORA/data/something/frames/124285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting an apple up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114224", "images": ["AURORA/data/something/frames/166428/first.jpg", "AURORA/data/something/frames/166428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a book into a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000114225", "images": ["AURORA/data/something/frames/2123/first.jpg", "AURORA/data/something/frames/2123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sandals towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114226", "images": ["AURORA/data/something/frames/199577/first.jpg", "AURORA/data/something/frames/199577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114227", "images": ["AURORA/data/something/frames/166634/first.jpg", "AURORA/data/something/frames/166634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing canned food from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114228", "images": ["AURORA/data/something/frames/72016/first.jpg", "AURORA/data/something/frames/72016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114229", "images": ["AURORA/data/something/frames/209928/first.jpg", "AURORA/data/something/frames/209928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching charger to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114230", "images": ["AURORA/data/something/frames/94199/first.jpg", "AURORA/data/something/frames/94199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114231", "images": ["AURORA/data/something/frames/205741/first.jpg", "AURORA/data/something/frames/205741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114232", "images": ["AURORA/data/something/frames/188398/first.jpg", "AURORA/data/something/frames/188398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pencil case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114233", "images": ["AURORA/data/something/frames/131451/first.jpg", "AURORA/data/something/frames/131451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114234", "images": ["AURORA/data/something/frames/115564/first.jpg", "AURORA/data/something/frames/115564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of cloves organizer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114235", "images": ["AURORA/data/something/frames/61998/first.jpg", "AURORA/data/something/frames/61998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping gallon jug over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114236", "images": ["AURORA/data/something/frames/174255/first.jpg", "AURORA/data/something/frames/174255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114237", "images": ["AURORA/data/something/frames/162332/first.jpg", "AURORA/data/something/frames/162332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a coin upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114238", "images": ["AURORA/data/something/frames/106715/first.jpg", "AURORA/data/something/frames/106715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114239", "images": ["AURORA/data/something/frames/220483/first.jpg", "AURORA/data/something/frames/220483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) phone of the folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114240", "images": ["AURORA/data/something/frames/5417/first.jpg", "AURORA/data/something/frames/5417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114241", "images": ["AURORA/data/something/frames/190898/first.jpg", "AURORA/data/something/frames/190898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging a mallet out of stack of gravel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114242", "images": ["AURORA/data/something/frames/58097/first.jpg", "AURORA/data/something/frames/58097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114243", "images": ["AURORA/data/something/frames/177885/first.jpg", "AURORA/data/something/frames/177885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fluorescent light bulb behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114244", "images": ["AURORA/data/something/frames/73758/first.jpg", "AURORA/data/something/frames/73758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a screw away from many screws"}, {"from": "gpt", "value": ""}]} +{"id": "000000114245", "images": ["AURORA/data/something/frames/74408/first.jpg", "AURORA/data/something/frames/74408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of envelope without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114246", "images": ["AURORA/data/something/frames/216489/first.jpg", "AURORA/data/something/frames/216489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting figurine up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114247", "images": ["AURORA/data/something/frames/178399/first.jpg", "AURORA/data/something/frames/178399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into mobilephone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114248", "images": ["AURORA/data/something/frames/129562/first.jpg", "AURORA/data/something/frames/129562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cell phone with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114249", "images": ["AURORA/data/something/frames/106483/first.jpg", "AURORA/data/something/frames/106483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ground tea off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114250", "images": ["AURORA/data/something/frames/75967/first.jpg", "AURORA/data/something/frames/75967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sticky note in front of sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000114251", "images": ["AURORA/data/something/frames/187835/first.jpg", "AURORA/data/something/frames/187835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging guitar cable into amplifier but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114252", "images": ["AURORA/data/something/frames/167391/first.jpg", "AURORA/data/something/frames/167391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of paper without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114253", "images": ["AURORA/data/something/frames/106134/first.jpg", "AURORA/data/something/frames/106134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114254", "images": ["AURORA/data/something/frames/192714/first.jpg", "AURORA/data/something/frames/192714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting knife with soap on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114255", "images": ["AURORA/data/something/frames/37976/first.jpg", "AURORA/data/something/frames/37976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving vape closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114256", "images": ["AURORA/data/something/frames/171527/first.jpg", "AURORA/data/something/frames/171527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114257", "images": ["AURORA/data/something/frames/32578/first.jpg", "AURORA/data/something/frames/32578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping puzzle piece up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114258", "images": ["AURORA/data/something/frames/84921/first.jpg", "AURORA/data/something/frames/84921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a usb stick into a plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114259", "images": ["AURORA/data/something/frames/25072/first.jpg", "AURORA/data/something/frames/25072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114260", "images": ["AURORA/data/something/frames/61220/first.jpg", "AURORA/data/something/frames/61220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping charger behind watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114261", "images": ["AURORA/data/something/frames/173043/first.jpg", "AURORA/data/something/frames/173043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114262", "images": ["AURORA/data/something/frames/33742/first.jpg", "AURORA/data/something/frames/33742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114263", "images": ["AURORA/data/something/frames/2355/first.jpg", "AURORA/data/something/frames/2355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114264", "images": ["AURORA/data/something/frames/74509/first.jpg", "AURORA/data/something/frames/74509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cleaning powder onto a bathtub"}, {"from": "gpt", "value": ""}]} +{"id": "000000114265", "images": ["AURORA/data/something/frames/58958/first.jpg", "AURORA/data/something/frames/58958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spice with spices"}, {"from": "gpt", "value": ""}]} +{"id": "000000114266", "images": ["AURORA/data/something/frames/32629/first.jpg", "AURORA/data/something/frames/32629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pineapple up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114267", "images": ["AURORA/data/something/frames/84116/first.jpg", "AURORA/data/something/frames/84116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114268", "images": ["AURORA/data/something/frames/40159/first.jpg", "AURORA/data/something/frames/40159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114269", "images": ["AURORA/data/something/frames/127307/first.jpg", "AURORA/data/something/frames/127307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red booklet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114270", "images": ["AURORA/data/something/frames/208090/first.jpg", "AURORA/data/something/frames/208090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a grape out of a small bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114271", "images": ["AURORA/data/something/frames/177716/first.jpg", "AURORA/data/something/frames/177716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick and scissor away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114272", "images": ["AURORA/data/something/frames/12128/first.jpg", "AURORA/data/something/frames/12128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil beetween others"}, {"from": "gpt", "value": ""}]} +{"id": "000000114273", "images": ["AURORA/data/something/frames/75489/first.jpg", "AURORA/data/something/frames/75489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing jacket into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114274", "images": ["AURORA/data/something/frames/138952/first.jpg", "AURORA/data/something/frames/138952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tape so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114275", "images": ["AURORA/data/something/frames/108023/first.jpg", "AURORA/data/something/frames/108023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting the lid on a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114276", "images": ["AURORA/data/something/frames/115590/first.jpg", "AURORA/data/something/frames/115590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: glasses box colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114277", "images": ["AURORA/data/something/frames/137925/first.jpg", "AURORA/data/something/frames/137925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000114278", "images": ["AURORA/data/something/frames/204696/first.jpg", "AURORA/data/something/frames/204696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114279", "images": ["AURORA/data/something/frames/3506/first.jpg", "AURORA/data/something/frames/3506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114280", "images": ["AURORA/data/something/frames/148378/first.jpg", "AURORA/data/something/frames/148378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114281", "images": ["AURORA/data/something/frames/2533/first.jpg", "AURORA/data/something/frames/2533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book closer to remotes"}, {"from": "gpt", "value": ""}]} +{"id": "000000114282", "images": ["AURORA/data/something/frames/5756/first.jpg", "AURORA/data/something/frames/5756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing an encyclopedia into a shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000114283", "images": ["AURORA/data/something/frames/30622/first.jpg", "AURORA/data/something/frames/30622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 colour chalks onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000114284", "images": ["AURORA/data/something/frames/104891/first.jpg", "AURORA/data/something/frames/104891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000114285", "images": ["AURORA/data/something/frames/131678/first.jpg", "AURORA/data/something/frames/131678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pens together"}, {"from": "gpt", "value": ""}]} +{"id": "000000114286", "images": ["AURORA/data/something/frames/138321/first.jpg", "AURORA/data/something/frames/138321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black disc case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114287", "images": ["AURORA/data/something/frames/41513/first.jpg", "AURORA/data/something/frames/41513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing tablecloth, revealing comb behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114288", "images": ["AURORA/data/something/frames/196654/first.jpg", "AURORA/data/something/frames/196654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114289", "images": ["AURORA/data/something/frames/167326/first.jpg", "AURORA/data/something/frames/167326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lipstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000114290", "images": ["AURORA/data/something/frames/187530/first.jpg", "AURORA/data/something/frames/187530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114291", "images": ["AURORA/data/something/frames/89223/first.jpg", "AURORA/data/something/frames/89223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a coffee cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114292", "images": ["AURORA/data/something/frames/52438/first.jpg", "AURORA/data/something/frames/52438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl closer to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000114293", "images": ["AURORA/data/something/frames/152718/first.jpg", "AURORA/data/something/frames/152718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114294", "images": ["AURORA/data/something/frames/63350/first.jpg", "AURORA/data/something/frames/63350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lid and wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114295", "images": ["AURORA/data/something/frames/219489/first.jpg", "AURORA/data/something/frames/219489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening letter envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114296", "images": ["AURORA/data/something/frames/75316/first.jpg", "AURORA/data/something/frames/75316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114297", "images": ["AURORA/data/something/frames/150304/first.jpg", "AURORA/data/something/frames/150304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electrical adaptor into electrical socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114298", "images": ["AURORA/data/something/frames/69583/first.jpg", "AURORA/data/something/frames/69583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114299", "images": ["AURORA/data/something/frames/78191/first.jpg", "AURORA/data/something/frames/78191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toys into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114300", "images": ["AURORA/data/something/frames/43065/first.jpg", "AURORA/data/something/frames/43065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting black play cards on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114301", "images": ["AURORA/data/something/frames/138974/first.jpg", "AURORA/data/something/frames/138974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114302", "images": ["AURORA/data/something/frames/213679/first.jpg", "AURORA/data/something/frames/213679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114303", "images": ["AURORA/data/something/frames/75252/first.jpg", "AURORA/data/something/frames/75252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cablle into a laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114304", "images": ["AURORA/data/something/frames/109198/first.jpg", "AURORA/data/something/frames/109198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tube in front of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000114305", "images": ["AURORA/data/something/frames/24335/first.jpg", "AURORA/data/something/frames/24335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114306", "images": ["AURORA/data/something/frames/4077/first.jpg", "AURORA/data/something/frames/4077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000114307", "images": ["AURORA/data/something/frames/15970/first.jpg", "AURORA/data/something/frames/15970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wallet upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114308", "images": ["AURORA/data/something/frames/18531/first.jpg", "AURORA/data/something/frames/18531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114309", "images": ["AURORA/data/something/frames/126702/first.jpg", "AURORA/data/something/frames/126702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and pen so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114310", "images": ["AURORA/data/something/frames/113120/first.jpg", "AURORA/data/something/frames/113120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red teacup and white teacup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114311", "images": ["AURORA/data/something/frames/161450/first.jpg", "AURORA/data/something/frames/161450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114312", "images": ["AURORA/data/something/frames/32018/first.jpg", "AURORA/data/something/frames/32018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pen with marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114313", "images": ["AURORA/data/something/frames/108464/first.jpg", "AURORA/data/something/frames/108464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling blanket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114314", "images": ["AURORA/data/something/frames/34343/first.jpg", "AURORA/data/something/frames/34343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114315", "images": ["AURORA/data/something/frames/170087/first.jpg", "AURORA/data/something/frames/170087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 small bowls"}, {"from": "gpt", "value": ""}]} +{"id": "000000114316", "images": ["AURORA/data/something/frames/56827/first.jpg", "AURORA/data/something/frames/56827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling puzzle piece out of plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114317", "images": ["AURORA/data/something/frames/109524/first.jpg", "AURORA/data/something/frames/109524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing flowers into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114318", "images": ["AURORA/data/something/frames/4372/first.jpg", "AURORA/data/something/frames/4372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000114319", "images": ["AURORA/data/something/frames/197847/first.jpg", "AURORA/data/something/frames/197847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jumpdrive away from a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000114320", "images": ["AURORA/data/something/frames/62873/first.jpg", "AURORA/data/something/frames/62873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114321", "images": ["AURORA/data/something/frames/128044/first.jpg", "AURORA/data/something/frames/128044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cufflinks so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114322", "images": ["AURORA/data/something/frames/111792/first.jpg", "AURORA/data/something/frames/111792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000114323", "images": ["AURORA/data/something/frames/206137/first.jpg", "AURORA/data/something/frames/206137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114324", "images": ["AURORA/data/something/frames/21113/first.jpg", "AURORA/data/something/frames/21113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cleaning sponge into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114325", "images": ["AURORA/data/something/frames/69694/first.jpg", "AURORA/data/something/frames/69694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a doll and a doll so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114326", "images": ["AURORA/data/something/frames/24012/first.jpg", "AURORA/data/something/frames/24012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pencil so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114327", "images": ["AURORA/data/something/frames/73438/first.jpg", "AURORA/data/something/frames/73438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cup, revealing lighter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114328", "images": ["AURORA/data/something/frames/37037/first.jpg", "AURORA/data/something/frames/37037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting chair up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114329", "images": ["AURORA/data/something/frames/86435/first.jpg", "AURORA/data/something/frames/86435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an extension chord"}, {"from": "gpt", "value": ""}]} +{"id": "000000114330", "images": ["AURORA/data/something/frames/48695/first.jpg", "AURORA/data/something/frames/48695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tool closer to scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114331", "images": ["AURORA/data/something/frames/28981/first.jpg", "AURORA/data/something/frames/28981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse and notebook closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114332", "images": ["AURORA/data/something/frames/112179/first.jpg", "AURORA/data/something/frames/112179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114333", "images": ["AURORA/data/something/frames/26064/first.jpg", "AURORA/data/something/frames/26064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a cup with a chopstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000114334", "images": ["AURORA/data/something/frames/190032/first.jpg", "AURORA/data/something/frames/190032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking glasses with glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000114335", "images": ["AURORA/data/something/frames/162581/first.jpg", "AURORA/data/something/frames/162581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114336", "images": ["AURORA/data/something/frames/32442/first.jpg", "AURORA/data/something/frames/32442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big white color ball and small orange color ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114337", "images": ["AURORA/data/something/frames/3216/first.jpg", "AURORA/data/something/frames/3216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114338", "images": ["AURORA/data/something/frames/106390/first.jpg", "AURORA/data/something/frames/106390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sunglass and sunglass so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114339", "images": ["AURORA/data/something/frames/4386/first.jpg", "AURORA/data/something/frames/4386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera case in front of speedlite"}, {"from": "gpt", "value": ""}]} +{"id": "000000114340", "images": ["AURORA/data/something/frames/98438/first.jpg", "AURORA/data/something/frames/98438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114341", "images": ["AURORA/data/something/frames/38004/first.jpg", "AURORA/data/something/frames/38004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spray bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114342", "images": ["AURORA/data/something/frames/8361/first.jpg", "AURORA/data/something/frames/8361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into power socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114343", "images": ["AURORA/data/something/frames/111337/first.jpg", "AURORA/data/something/frames/111337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114344", "images": ["AURORA/data/something/frames/27593/first.jpg", "AURORA/data/something/frames/27593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114345", "images": ["AURORA/data/something/frames/138953/first.jpg", "AURORA/data/something/frames/138953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wristwatch and charger away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114346", "images": ["AURORA/data/something/frames/117117/first.jpg", "AURORA/data/something/frames/117117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114347", "images": ["AURORA/data/something/frames/69636/first.jpg", "AURORA/data/something/frames/69636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a hairbrush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114348", "images": ["AURORA/data/something/frames/41013/first.jpg", "AURORA/data/something/frames/41013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a styrofoam block"}, {"from": "gpt", "value": ""}]} +{"id": "000000114349", "images": ["AURORA/data/something/frames/211938/first.jpg", "AURORA/data/something/frames/211938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114350", "images": ["AURORA/data/something/frames/199277/first.jpg", "AURORA/data/something/frames/199277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114351", "images": ["AURORA/data/something/frames/89648/first.jpg", "AURORA/data/something/frames/89648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 coasters"}, {"from": "gpt", "value": ""}]} +{"id": "000000114352", "images": ["AURORA/data/something/frames/120818/first.jpg", "AURORA/data/something/frames/120818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114353", "images": ["AURORA/data/something/frames/180850/first.jpg", "AURORA/data/something/frames/180850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bucket with bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114354", "images": ["AURORA/data/something/frames/214599/first.jpg", "AURORA/data/something/frames/214599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000114355", "images": ["AURORA/data/something/frames/97391/first.jpg", "AURORA/data/something/frames/97391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a measuring cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114356", "images": ["AURORA/data/something/frames/209243/first.jpg", "AURORA/data/something/frames/209243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114357", "images": ["AURORA/data/something/frames/88787/first.jpg", "AURORA/data/something/frames/88787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending chopsticks until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114358", "images": ["AURORA/data/something/frames/99177/first.jpg", "AURORA/data/something/frames/99177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a spray can with a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114359", "images": ["AURORA/data/something/frames/21329/first.jpg", "AURORA/data/something/frames/21329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114360", "images": ["AURORA/data/something/frames/216505/first.jpg", "AURORA/data/something/frames/216505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114361", "images": ["AURORA/data/something/frames/46201/first.jpg", "AURORA/data/something/frames/46201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting toy car with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114362", "images": ["AURORA/data/something/frames/183742/first.jpg", "AURORA/data/something/frames/183742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114363", "images": ["AURORA/data/something/frames/34675/first.jpg", "AURORA/data/something/frames/34675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet away from a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114364", "images": ["AURORA/data/something/frames/33067/first.jpg", "AURORA/data/something/frames/33067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114365", "images": ["AURORA/data/something/frames/96143/first.jpg", "AURORA/data/something/frames/96143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail polish, bottle and tube on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114366", "images": ["AURORA/data/something/frames/205141/first.jpg", "AURORA/data/something/frames/205141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning orange bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114367", "images": ["AURORA/data/something/frames/128572/first.jpg", "AURORA/data/something/frames/128572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soap and nail cutter so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114368", "images": ["AURORA/data/something/frames/52879/first.jpg", "AURORA/data/something/frames/52879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114369", "images": ["AURORA/data/something/frames/150441/first.jpg", "AURORA/data/something/frames/150441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling small blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114370", "images": ["AURORA/data/something/frames/12763/first.jpg", "AURORA/data/something/frames/12763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cardboard tube until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114371", "images": ["AURORA/data/something/frames/88815/first.jpg", "AURORA/data/something/frames/88815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy next to toy watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114372", "images": ["AURORA/data/something/frames/181807/first.jpg", "AURORA/data/something/frames/181807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and box so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114373", "images": ["AURORA/data/something/frames/28230/first.jpg", "AURORA/data/something/frames/28230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching carabinier hook to a keyring"}, {"from": "gpt", "value": ""}]} +{"id": "000000114374", "images": ["AURORA/data/something/frames/145132/first.jpg", "AURORA/data/something/frames/145132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending chenille stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114375", "images": ["AURORA/data/something/frames/58953/first.jpg", "AURORA/data/something/frames/58953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting sliper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114376", "images": ["AURORA/data/something/frames/63960/first.jpg", "AURORA/data/something/frames/63960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristwatch and phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114377", "images": ["AURORA/data/something/frames/155928/first.jpg", "AURORA/data/something/frames/155928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow container next to blue spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114378", "images": ["AURORA/data/something/frames/36703/first.jpg", "AURORA/data/something/frames/36703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning dvd case upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114379", "images": ["AURORA/data/something/frames/45066/first.jpg", "AURORA/data/something/frames/45066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tissue box next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114380", "images": ["AURORA/data/something/frames/124682/first.jpg", "AURORA/data/something/frames/124682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and holder away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114381", "images": ["AURORA/data/something/frames/12129/first.jpg", "AURORA/data/something/frames/12129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a face cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114382", "images": ["AURORA/data/something/frames/161541/first.jpg", "AURORA/data/something/frames/161541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114383", "images": ["AURORA/data/something/frames/47160/first.jpg", "AURORA/data/something/frames/47160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing grape off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114384", "images": ["AURORA/data/something/frames/99174/first.jpg", "AURORA/data/something/frames/99174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114385", "images": ["AURORA/data/something/frames/5435/first.jpg", "AURORA/data/something/frames/5435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114386", "images": ["AURORA/data/something/frames/208455/first.jpg", "AURORA/data/something/frames/208455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug cable into plug holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114387", "images": ["AURORA/data/something/frames/138510/first.jpg", "AURORA/data/something/frames/138510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114388", "images": ["AURORA/data/something/frames/86882/first.jpg", "AURORA/data/something/frames/86882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114389", "images": ["AURORA/data/something/frames/197066/first.jpg", "AURORA/data/something/frames/197066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114390", "images": ["AURORA/data/something/frames/79026/first.jpg", "AURORA/data/something/frames/79026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic cup behind a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114391", "images": ["AURORA/data/something/frames/140400/first.jpg", "AURORA/data/something/frames/140400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114392", "images": ["AURORA/data/something/frames/218881/first.jpg", "AURORA/data/something/frames/218881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dishcloth being deflected from cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114393", "images": ["AURORA/data/something/frames/44133/first.jpg", "AURORA/data/something/frames/44133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114394", "images": ["AURORA/data/something/frames/152502/first.jpg", "AURORA/data/something/frames/152502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114395", "images": ["AURORA/data/something/frames/115418/first.jpg", "AURORA/data/something/frames/115418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114396", "images": ["AURORA/data/something/frames/45091/first.jpg", "AURORA/data/something/frames/45091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into electical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114397", "images": ["AURORA/data/something/frames/159442/first.jpg", "AURORA/data/something/frames/159442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle of mustard on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114398", "images": ["AURORA/data/something/frames/105308/first.jpg", "AURORA/data/something/frames/105308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114399", "images": ["AURORA/data/something/frames/20519/first.jpg", "AURORA/data/something/frames/20519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling soda onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114400", "images": ["AURORA/data/something/frames/176966/first.jpg", "AURORA/data/something/frames/176966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pot in front of a bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114401", "images": ["AURORA/data/something/frames/27803/first.jpg", "AURORA/data/something/frames/27803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into thermocol"}, {"from": "gpt", "value": ""}]} +{"id": "000000114402", "images": ["AURORA/data/something/frames/188665/first.jpg", "AURORA/data/something/frames/188665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling aim toothpaste from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114403", "images": ["AURORA/data/something/frames/60845/first.jpg", "AURORA/data/something/frames/60845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a bandana"}, {"from": "gpt", "value": ""}]} +{"id": "000000114404", "images": ["AURORA/data/something/frames/98297/first.jpg", "AURORA/data/something/frames/98297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114405", "images": ["AURORA/data/something/frames/23998/first.jpg", "AURORA/data/something/frames/23998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114406", "images": ["AURORA/data/something/frames/31706/first.jpg", "AURORA/data/something/frames/31706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114407", "images": ["AURORA/data/something/frames/90617/first.jpg", "AURORA/data/something/frames/90617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114408", "images": ["AURORA/data/something/frames/151706/first.jpg", "AURORA/data/something/frames/151706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing notebook from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114409", "images": ["AURORA/data/something/frames/102321/first.jpg", "AURORA/data/something/frames/102321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114410", "images": ["AURORA/data/something/frames/98828/first.jpg", "AURORA/data/something/frames/98828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying sketch pen in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114411", "images": ["AURORA/data/something/frames/114264/first.jpg", "AURORA/data/something/frames/114264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114412", "images": ["AURORA/data/something/frames/81162/first.jpg", "AURORA/data/something/frames/81162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114413", "images": ["AURORA/data/something/frames/9895/first.jpg", "AURORA/data/something/frames/9895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114414", "images": ["AURORA/data/something/frames/75835/first.jpg", "AURORA/data/something/frames/75835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote on the edge of mug so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114415", "images": ["AURORA/data/something/frames/19106/first.jpg", "AURORA/data/something/frames/19106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114416", "images": ["AURORA/data/something/frames/219046/first.jpg", "AURORA/data/something/frames/219046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a book with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114417", "images": ["AURORA/data/something/frames/10186/first.jpg", "AURORA/data/something/frames/10186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keychain onto basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114418", "images": ["AURORA/data/something/frames/22283/first.jpg", "AURORA/data/something/frames/22283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping towel onto toilet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114419", "images": ["AURORA/data/something/frames/114842/first.jpg", "AURORA/data/something/frames/114842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and hat closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114420", "images": ["AURORA/data/something/frames/11386/first.jpg", "AURORA/data/something/frames/11386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ice cream up with an ice-cream scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114421", "images": ["AURORA/data/something/frames/14117/first.jpg", "AURORA/data/something/frames/14117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking number of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000114422", "images": ["AURORA/data/something/frames/44811/first.jpg", "AURORA/data/something/frames/44811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange bowl from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114423", "images": ["AURORA/data/something/frames/100240/first.jpg", "AURORA/data/something/frames/100240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into smarthphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114424", "images": ["AURORA/data/something/frames/106488/first.jpg", "AURORA/data/something/frames/106488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purple microfiber from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114425", "images": ["AURORA/data/something/frames/79991/first.jpg", "AURORA/data/something/frames/79991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and flower away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114426", "images": ["AURORA/data/something/frames/54766/first.jpg", "AURORA/data/something/frames/54766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking audio helmet so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114427", "images": ["AURORA/data/something/frames/17486/first.jpg", "AURORA/data/something/frames/17486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114428", "images": ["AURORA/data/something/frames/84373/first.jpg", "AURORA/data/something/frames/84373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with paper ball on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114429", "images": ["AURORA/data/something/frames/48351/first.jpg", "AURORA/data/something/frames/48351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114430", "images": ["AURORA/data/something/frames/33617/first.jpg", "AURORA/data/something/frames/33617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading crunchy peanut butter onto a cracker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114431", "images": ["AURORA/data/something/frames/16741/first.jpg", "AURORA/data/something/frames/16741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114432", "images": ["AURORA/data/something/frames/162607/first.jpg", "AURORA/data/something/frames/162607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling notecard out of purple container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114433", "images": ["AURORA/data/something/frames/218394/first.jpg", "AURORA/data/something/frames/218394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning flashlight upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114434", "images": ["AURORA/data/something/frames/12124/first.jpg", "AURORA/data/something/frames/12124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming eggplant"}, {"from": "gpt", "value": ""}]} +{"id": "000000114435", "images": ["AURORA/data/something/frames/106359/first.jpg", "AURORA/data/something/frames/106359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter and glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114436", "images": ["AURORA/data/something/frames/217625/first.jpg", "AURORA/data/something/frames/217625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a book so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114437", "images": ["AURORA/data/something/frames/138617/first.jpg", "AURORA/data/something/frames/138617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114438", "images": ["AURORA/data/something/frames/149864/first.jpg", "AURORA/data/something/frames/149864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spring up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114439", "images": ["AURORA/data/something/frames/201066/first.jpg", "AURORA/data/something/frames/201066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning marker pen upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114440", "images": ["AURORA/data/something/frames/85103/first.jpg", "AURORA/data/something/frames/85103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving one extreme of fan"}, {"from": "gpt", "value": ""}]} +{"id": "000000114441", "images": ["AURORA/data/something/frames/155980/first.jpg", "AURORA/data/something/frames/155980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114442", "images": ["AURORA/data/something/frames/218735/first.jpg", "AURORA/data/something/frames/218735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114443", "images": ["AURORA/data/something/frames/123665/first.jpg", "AURORA/data/something/frames/123665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand sanitizer, dental floss and nail polish on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114444", "images": ["AURORA/data/something/frames/113141/first.jpg", "AURORA/data/something/frames/113141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable and smarthphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114445", "images": ["AURORA/data/something/frames/93147/first.jpg", "AURORA/data/something/frames/93147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball behind chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114446", "images": ["AURORA/data/something/frames/27034/first.jpg", "AURORA/data/something/frames/27034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114447", "images": ["AURORA/data/something/frames/104677/first.jpg", "AURORA/data/something/frames/104677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottled pesto sauce from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114448", "images": ["AURORA/data/something/frames/209410/first.jpg", "AURORA/data/something/frames/209410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing striker coin into black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114449", "images": ["AURORA/data/something/frames/37244/first.jpg", "AURORA/data/something/frames/37244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of scrunchie so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000114450", "images": ["AURORA/data/something/frames/206488/first.jpg", "AURORA/data/something/frames/206488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114451", "images": ["AURORA/data/something/frames/182263/first.jpg", "AURORA/data/something/frames/182263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114452", "images": ["AURORA/data/something/frames/35323/first.jpg", "AURORA/data/something/frames/35323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114453", "images": ["AURORA/data/something/frames/191681/first.jpg", "AURORA/data/something/frames/191681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114454", "images": ["AURORA/data/something/frames/119331/first.jpg", "AURORA/data/something/frames/119331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000114455", "images": ["AURORA/data/something/frames/96407/first.jpg", "AURORA/data/something/frames/96407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114456", "images": ["AURORA/data/something/frames/174164/first.jpg", "AURORA/data/something/frames/174164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking camera from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114457", "images": ["AURORA/data/something/frames/39343/first.jpg", "AURORA/data/something/frames/39343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy with bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114458", "images": ["AURORA/data/something/frames/46569/first.jpg", "AURORA/data/something/frames/46569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a container of rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000114459", "images": ["AURORA/data/something/frames/193729/first.jpg", "AURORA/data/something/frames/193729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114460", "images": ["AURORA/data/something/frames/32364/first.jpg", "AURORA/data/something/frames/32364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone on the edge of a tissue box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114461", "images": ["AURORA/data/something/frames/192360/first.jpg", "AURORA/data/something/frames/192360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone closer to tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114462", "images": ["AURORA/data/something/frames/90565/first.jpg", "AURORA/data/something/frames/90565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pots"}, {"from": "gpt", "value": ""}]} +{"id": "000000114463", "images": ["AURORA/data/something/frames/98360/first.jpg", "AURORA/data/something/frames/98360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000114464", "images": ["AURORA/data/something/frames/150588/first.jpg", "AURORA/data/something/frames/150588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000114465", "images": ["AURORA/data/something/frames/179463/first.jpg", "AURORA/data/something/frames/179463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114466", "images": ["AURORA/data/something/frames/59662/first.jpg", "AURORA/data/something/frames/59662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing face wash so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114467", "images": ["AURORA/data/something/frames/89976/first.jpg", "AURORA/data/something/frames/89976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114468", "images": ["AURORA/data/something/frames/127957/first.jpg", "AURORA/data/something/frames/127957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114469", "images": ["AURORA/data/something/frames/34605/first.jpg", "AURORA/data/something/frames/34605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sock colliding with book and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114470", "images": ["AURORA/data/something/frames/178167/first.jpg", "AURORA/data/something/frames/178167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the glass so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114471", "images": ["AURORA/data/something/frames/45016/first.jpg", "AURORA/data/something/frames/45016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114472", "images": ["AURORA/data/something/frames/95252/first.jpg", "AURORA/data/something/frames/95252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar with candy over, so candy falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114473", "images": ["AURORA/data/something/frames/99389/first.jpg", "AURORA/data/something/frames/99389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114474", "images": ["AURORA/data/something/frames/77689/first.jpg", "AURORA/data/something/frames/77689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114475", "images": ["AURORA/data/something/frames/73338/first.jpg", "AURORA/data/something/frames/73338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114476", "images": ["AURORA/data/something/frames/107831/first.jpg", "AURORA/data/something/frames/107831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000114477", "images": ["AURORA/data/something/frames/27283/first.jpg", "AURORA/data/something/frames/27283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114478", "images": ["AURORA/data/something/frames/142880/first.jpg", "AURORA/data/something/frames/142880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114479", "images": ["AURORA/data/something/frames/168348/first.jpg", "AURORA/data/something/frames/168348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a mason jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114480", "images": ["AURORA/data/something/frames/202045/first.jpg", "AURORA/data/something/frames/202045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114481", "images": ["AURORA/data/something/frames/12985/first.jpg", "AURORA/data/something/frames/12985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clasp of charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000114482", "images": ["AURORA/data/something/frames/53836/first.jpg", "AURORA/data/something/frames/53836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a sock out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114483", "images": ["AURORA/data/something/frames/211095/first.jpg", "AURORA/data/something/frames/211095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a stuffed bob-omb up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114484", "images": ["AURORA/data/something/frames/17710/first.jpg", "AURORA/data/something/frames/17710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114485", "images": ["AURORA/data/something/frames/182063/first.jpg", "AURORA/data/something/frames/182063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114486", "images": ["AURORA/data/something/frames/34760/first.jpg", "AURORA/data/something/frames/34760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114487", "images": ["AURORA/data/something/frames/10243/first.jpg", "AURORA/data/something/frames/10243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing hat, revealing remote behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114488", "images": ["AURORA/data/something/frames/39742/first.jpg", "AURORA/data/something/frames/39742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114489", "images": ["AURORA/data/something/frames/161347/first.jpg", "AURORA/data/something/frames/161347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114490", "images": ["AURORA/data/something/frames/219147/first.jpg", "AURORA/data/something/frames/219147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning peanut butter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114491", "images": ["AURORA/data/something/frames/90324/first.jpg", "AURORA/data/something/frames/90324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dial of a telephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114492", "images": ["AURORA/data/something/frames/220446/first.jpg", "AURORA/data/something/frames/220446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114493", "images": ["AURORA/data/something/frames/28022/first.jpg", "AURORA/data/something/frames/28022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ring up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114494", "images": ["AURORA/data/something/frames/107399/first.jpg", "AURORA/data/something/frames/107399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114495", "images": ["AURORA/data/something/frames/173063/first.jpg", "AURORA/data/something/frames/173063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114496", "images": ["AURORA/data/something/frames/212832/first.jpg", "AURORA/data/something/frames/212832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114497", "images": ["AURORA/data/something/frames/126184/first.jpg", "AURORA/data/something/frames/126184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw nail upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114498", "images": ["AURORA/data/something/frames/23005/first.jpg", "AURORA/data/something/frames/23005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote in front of seal pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000114499", "images": ["AURORA/data/something/frames/179370/first.jpg", "AURORA/data/something/frames/179370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114500", "images": ["AURORA/data/something/frames/120436/first.jpg", "AURORA/data/something/frames/120436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an adapter into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114501", "images": ["AURORA/data/something/frames/170068/first.jpg", "AURORA/data/something/frames/170068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114502", "images": ["AURORA/data/something/frames/97562/first.jpg", "AURORA/data/something/frames/97562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a table with more pens on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114503", "images": ["AURORA/data/something/frames/66519/first.jpg", "AURORA/data/something/frames/66519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114504", "images": ["AURORA/data/something/frames/71457/first.jpg", "AURORA/data/something/frames/71457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tub upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114505", "images": ["AURORA/data/something/frames/84869/first.jpg", "AURORA/data/something/frames/84869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping duster onto cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114506", "images": ["AURORA/data/something/frames/70226/first.jpg", "AURORA/data/something/frames/70226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114507", "images": ["AURORA/data/something/frames/147043/first.jpg", "AURORA/data/something/frames/147043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tuperware with playdoh on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114508", "images": ["AURORA/data/something/frames/57470/first.jpg", "AURORA/data/something/frames/57470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing table lamp so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114509", "images": ["AURORA/data/something/frames/103915/first.jpg", "AURORA/data/something/frames/103915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors, glasses and phone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114510", "images": ["AURORA/data/something/frames/159492/first.jpg", "AURORA/data/something/frames/159492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114511", "images": ["AURORA/data/something/frames/51057/first.jpg", "AURORA/data/something/frames/51057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114512", "images": ["AURORA/data/something/frames/148642/first.jpg", "AURORA/data/something/frames/148642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yarn out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114513", "images": ["AURORA/data/something/frames/88064/first.jpg", "AURORA/data/something/frames/88064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wallet with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114514", "images": ["AURORA/data/something/frames/32417/first.jpg", "AURORA/data/something/frames/32417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying lotion on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114515", "images": ["AURORA/data/something/frames/41929/first.jpg", "AURORA/data/something/frames/41929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cufflinks closer to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114516", "images": ["AURORA/data/something/frames/186552/first.jpg", "AURORA/data/something/frames/186552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: somethimg with colliding with something and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114517", "images": ["AURORA/data/something/frames/179178/first.jpg", "AURORA/data/something/frames/179178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the top of a block"}, {"from": "gpt", "value": ""}]} +{"id": "000000114518", "images": ["AURORA/data/something/frames/38318/first.jpg", "AURORA/data/something/frames/38318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a smartphone with a hoodie"}, {"from": "gpt", "value": ""}]} +{"id": "000000114519", "images": ["AURORA/data/something/frames/30636/first.jpg", "AURORA/data/something/frames/30636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking receipts from a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114520", "images": ["AURORA/data/something/frames/24744/first.jpg", "AURORA/data/something/frames/24744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114521", "images": ["AURORA/data/something/frames/47530/first.jpg", "AURORA/data/something/frames/47530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114522", "images": ["AURORA/data/something/frames/157057/first.jpg", "AURORA/data/something/frames/157057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a doll upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114523", "images": ["AURORA/data/something/frames/162969/first.jpg", "AURORA/data/something/frames/162969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging glade plugin into electrical wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114524", "images": ["AURORA/data/something/frames/4516/first.jpg", "AURORA/data/something/frames/4516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114525", "images": ["AURORA/data/something/frames/151103/first.jpg", "AURORA/data/something/frames/151103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stopper of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114526", "images": ["AURORA/data/something/frames/91945/first.jpg", "AURORA/data/something/frames/91945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tissue out of a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114527", "images": ["AURORA/data/something/frames/82216/first.jpg", "AURORA/data/something/frames/82216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into ballone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114528", "images": ["AURORA/data/something/frames/35803/first.jpg", "AURORA/data/something/frames/35803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car closer to duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000114529", "images": ["AURORA/data/something/frames/214571/first.jpg", "AURORA/data/something/frames/214571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting paper with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114530", "images": ["AURORA/data/something/frames/166004/first.jpg", "AURORA/data/something/frames/166004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering popcorn"}, {"from": "gpt", "value": ""}]} +{"id": "000000114531", "images": ["AURORA/data/something/frames/166506/first.jpg", "AURORA/data/something/frames/166506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a ribbon"}, {"from": "gpt", "value": ""}]} +{"id": "000000114532", "images": ["AURORA/data/something/frames/125224/first.jpg", "AURORA/data/something/frames/125224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114533", "images": ["AURORA/data/something/frames/70178/first.jpg", "AURORA/data/something/frames/70178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar underneath box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114534", "images": ["AURORA/data/something/frames/81605/first.jpg", "AURORA/data/something/frames/81605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114535", "images": ["AURORA/data/something/frames/202634/first.jpg", "AURORA/data/something/frames/202634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114536", "images": ["AURORA/data/something/frames/36498/first.jpg", "AURORA/data/something/frames/36498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114537", "images": ["AURORA/data/something/frames/95347/first.jpg", "AURORA/data/something/frames/95347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving orange colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114538", "images": ["AURORA/data/something/frames/141921/first.jpg", "AURORA/data/something/frames/141921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114539", "images": ["AURORA/data/something/frames/157421/first.jpg", "AURORA/data/something/frames/157421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and flashlight away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114540", "images": ["AURORA/data/something/frames/136438/first.jpg", "AURORA/data/something/frames/136438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing letter into envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114541", "images": ["AURORA/data/something/frames/69106/first.jpg", "AURORA/data/something/frames/69106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000114542", "images": ["AURORA/data/something/frames/89927/first.jpg", "AURORA/data/something/frames/89927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bolt closer to white badge"}, {"from": "gpt", "value": ""}]} +{"id": "000000114543", "images": ["AURORA/data/something/frames/18055/first.jpg", "AURORA/data/something/frames/18055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting two seashells onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114544", "images": ["AURORA/data/something/frames/54459/first.jpg", "AURORA/data/something/frames/54459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000114545", "images": ["AURORA/data/something/frames/156966/first.jpg", "AURORA/data/something/frames/156966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a smartphone with a tissu"}, {"from": "gpt", "value": ""}]} +{"id": "000000114546", "images": ["AURORA/data/something/frames/51754/first.jpg", "AURORA/data/something/frames/51754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114547", "images": ["AURORA/data/something/frames/169306/first.jpg", "AURORA/data/something/frames/169306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wipes into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114548", "images": ["AURORA/data/something/frames/35963/first.jpg", "AURORA/data/something/frames/35963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114549", "images": ["AURORA/data/something/frames/27926/first.jpg", "AURORA/data/something/frames/27926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging microwave into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114550", "images": ["AURORA/data/something/frames/88984/first.jpg", "AURORA/data/something/frames/88984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg next to a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114551", "images": ["AURORA/data/something/frames/67762/first.jpg", "AURORA/data/something/frames/67762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling piece of paper onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114552", "images": ["AURORA/data/something/frames/14715/first.jpg", "AURORA/data/something/frames/14715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a notebook from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114553", "images": ["AURORA/data/something/frames/190769/first.jpg", "AURORA/data/something/frames/190769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kolleg block on the edge of table edge so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114554", "images": ["AURORA/data/something/frames/180630/first.jpg", "AURORA/data/something/frames/180630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114555", "images": ["AURORA/data/something/frames/50391/first.jpg", "AURORA/data/something/frames/50391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notebook page just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114556", "images": ["AURORA/data/something/frames/181556/first.jpg", "AURORA/data/something/frames/181556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114557", "images": ["AURORA/data/something/frames/82674/first.jpg", "AURORA/data/something/frames/82674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114558", "images": ["AURORA/data/something/frames/114865/first.jpg", "AURORA/data/something/frames/114865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000114559", "images": ["AURORA/data/something/frames/99808/first.jpg", "AURORA/data/something/frames/99808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow ball into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114560", "images": ["AURORA/data/something/frames/55871/first.jpg", "AURORA/data/something/frames/55871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing chair with leg"}, {"from": "gpt", "value": ""}]} +{"id": "000000114561", "images": ["AURORA/data/something/frames/181882/first.jpg", "AURORA/data/something/frames/181882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114562", "images": ["AURORA/data/something/frames/79534/first.jpg", "AURORA/data/something/frames/79534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing world globe from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114563", "images": ["AURORA/data/something/frames/10049/first.jpg", "AURORA/data/something/frames/10049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a ring being deflected from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114564", "images": ["AURORA/data/something/frames/73207/first.jpg", "AURORA/data/something/frames/73207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering vicks vapourb with bedsheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114565", "images": ["AURORA/data/something/frames/17914/first.jpg", "AURORA/data/something/frames/17914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cooking pot with its cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000114566", "images": ["AURORA/data/something/frames/146642/first.jpg", "AURORA/data/something/frames/146642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000114567", "images": ["AURORA/data/something/frames/19431/first.jpg", "AURORA/data/something/frames/19431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing crayon behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114568", "images": ["AURORA/data/something/frames/23541/first.jpg", "AURORA/data/something/frames/23541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114569", "images": ["AURORA/data/something/frames/92682/first.jpg", "AURORA/data/something/frames/92682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a container with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000114570", "images": ["AURORA/data/something/frames/149208/first.jpg", "AURORA/data/something/frames/149208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114571", "images": ["AURORA/data/something/frames/31880/first.jpg", "AURORA/data/something/frames/31880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book closer to light switch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114572", "images": ["AURORA/data/something/frames/67044/first.jpg", "AURORA/data/something/frames/67044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114573", "images": ["AURORA/data/something/frames/162803/first.jpg", "AURORA/data/something/frames/162803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114574", "images": ["AURORA/data/something/frames/81991/first.jpg", "AURORA/data/something/frames/81991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114575", "images": ["AURORA/data/something/frames/173301/first.jpg", "AURORA/data/something/frames/173301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114576", "images": ["AURORA/data/something/frames/40471/first.jpg", "AURORA/data/something/frames/40471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114577", "images": ["AURORA/data/something/frames/148120/first.jpg", "AURORA/data/something/frames/148120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing laminated paper mat just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114578", "images": ["AURORA/data/something/frames/17198/first.jpg", "AURORA/data/something/frames/17198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114579", "images": ["AURORA/data/something/frames/91199/first.jpg", "AURORA/data/something/frames/91199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duct tape and duct tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114580", "images": ["AURORA/data/something/frames/108163/first.jpg", "AURORA/data/something/frames/108163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114581", "images": ["AURORA/data/something/frames/167457/first.jpg", "AURORA/data/something/frames/167457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spring onto wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114582", "images": ["AURORA/data/something/frames/125741/first.jpg", "AURORA/data/something/frames/125741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling aim toothpaste from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114583", "images": ["AURORA/data/something/frames/47229/first.jpg", "AURORA/data/something/frames/47229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 children's books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114584", "images": ["AURORA/data/something/frames/44824/first.jpg", "AURORA/data/something/frames/44824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114585", "images": ["AURORA/data/something/frames/2528/first.jpg", "AURORA/data/something/frames/2528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114586", "images": ["AURORA/data/something/frames/100049/first.jpg", "AURORA/data/something/frames/100049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114587", "images": ["AURORA/data/something/frames/154011/first.jpg", "AURORA/data/something/frames/154011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jbl onto chewing gums so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114588", "images": ["AURORA/data/something/frames/218064/first.jpg", "AURORA/data/something/frames/218064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into steel glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114589", "images": ["AURORA/data/something/frames/147548/first.jpg", "AURORA/data/something/frames/147548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving medicine up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114590", "images": ["AURORA/data/something/frames/126970/first.jpg", "AURORA/data/something/frames/126970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114591", "images": ["AURORA/data/something/frames/184282/first.jpg", "AURORA/data/something/frames/184282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering gear wheel with red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114592", "images": ["AURORA/data/something/frames/21639/first.jpg", "AURORA/data/something/frames/21639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114593", "images": ["AURORA/data/something/frames/130777/first.jpg", "AURORA/data/something/frames/130777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114594", "images": ["AURORA/data/something/frames/83348/first.jpg", "AURORA/data/something/frames/83348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114595", "images": ["AURORA/data/something/frames/102659/first.jpg", "AURORA/data/something/frames/102659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pink toothbrush case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114596", "images": ["AURORA/data/something/frames/151821/first.jpg", "AURORA/data/something/frames/151821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114597", "images": ["AURORA/data/something/frames/18963/first.jpg", "AURORA/data/something/frames/18963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114598", "images": ["AURORA/data/something/frames/158112/first.jpg", "AURORA/data/something/frames/158112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving display of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114599", "images": ["AURORA/data/something/frames/107539/first.jpg", "AURORA/data/something/frames/107539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114600", "images": ["AURORA/data/something/frames/61772/first.jpg", "AURORA/data/something/frames/61772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic-cover into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114601", "images": ["AURORA/data/something/frames/168176/first.jpg", "AURORA/data/something/frames/168176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114602", "images": ["AURORA/data/something/frames/138772/first.jpg", "AURORA/data/something/frames/138772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114603", "images": ["AURORA/data/something/frames/188691/first.jpg", "AURORA/data/something/frames/188691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000114604", "images": ["AURORA/data/something/frames/104364/first.jpg", "AURORA/data/something/frames/104364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114605", "images": ["AURORA/data/something/frames/48691/first.jpg", "AURORA/data/something/frames/48691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking buttons"}, {"from": "gpt", "value": ""}]} +{"id": "000000114606", "images": ["AURORA/data/something/frames/128053/first.jpg", "AURORA/data/something/frames/128053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sandal behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114607", "images": ["AURORA/data/something/frames/180082/first.jpg", "AURORA/data/something/frames/180082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114608", "images": ["AURORA/data/something/frames/203884/first.jpg", "AURORA/data/something/frames/203884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking deoderant so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114609", "images": ["AURORA/data/something/frames/142226/first.jpg", "AURORA/data/something/frames/142226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying videotape on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114610", "images": ["AURORA/data/something/frames/116507/first.jpg", "AURORA/data/something/frames/116507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114611", "images": ["AURORA/data/something/frames/48879/first.jpg", "AURORA/data/something/frames/48879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching credit card to black box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114612", "images": ["AURORA/data/something/frames/168268/first.jpg", "AURORA/data/something/frames/168268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114613", "images": ["AURORA/data/something/frames/99986/first.jpg", "AURORA/data/something/frames/99986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing one tealight candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114614", "images": ["AURORA/data/something/frames/95507/first.jpg", "AURORA/data/something/frames/95507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sponge out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114615", "images": ["AURORA/data/something/frames/127081/first.jpg", "AURORA/data/something/frames/127081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114616", "images": ["AURORA/data/something/frames/58717/first.jpg", "AURORA/data/something/frames/58717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000114617", "images": ["AURORA/data/something/frames/10070/first.jpg", "AURORA/data/something/frames/10070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an usb from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114618", "images": ["AURORA/data/something/frames/132053/first.jpg", "AURORA/data/something/frames/132053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bag, revealing a hair brush behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114619", "images": ["AURORA/data/something/frames/209637/first.jpg", "AURORA/data/something/frames/209637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning metal box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114620", "images": ["AURORA/data/something/frames/161288/first.jpg", "AURORA/data/something/frames/161288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lead out of a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114621", "images": ["AURORA/data/something/frames/199341/first.jpg", "AURORA/data/something/frames/199341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000114622", "images": ["AURORA/data/something/frames/197866/first.jpg", "AURORA/data/something/frames/197866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a salt shaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114623", "images": ["AURORA/data/something/frames/7216/first.jpg", "AURORA/data/something/frames/7216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three pin plug onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114624", "images": ["AURORA/data/something/frames/46385/first.jpg", "AURORA/data/something/frames/46385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking gum"}, {"from": "gpt", "value": ""}]} +{"id": "000000114625", "images": ["AURORA/data/something/frames/20889/first.jpg", "AURORA/data/something/frames/20889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cooler in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114626", "images": ["AURORA/data/something/frames/51590/first.jpg", "AURORA/data/something/frames/51590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114627", "images": ["AURORA/data/something/frames/93983/first.jpg", "AURORA/data/something/frames/93983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114628", "images": ["AURORA/data/something/frames/74260/first.jpg", "AURORA/data/something/frames/74260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a paper without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114629", "images": ["AURORA/data/something/frames/70608/first.jpg", "AURORA/data/something/frames/70608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting letter into envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114630", "images": ["AURORA/data/something/frames/129255/first.jpg", "AURORA/data/something/frames/129255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying plastic cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114631", "images": ["AURORA/data/something/frames/113920/first.jpg", "AURORA/data/something/frames/113920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bear behind chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114632", "images": ["AURORA/data/something/frames/140058/first.jpg", "AURORA/data/something/frames/140058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle behind dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114633", "images": ["AURORA/data/something/frames/30588/first.jpg", "AURORA/data/something/frames/30588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking water bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114634", "images": ["AURORA/data/something/frames/9632/first.jpg", "AURORA/data/something/frames/9632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning snack cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114635", "images": ["AURORA/data/something/frames/145219/first.jpg", "AURORA/data/something/frames/145219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering air conditioner and window from blinds"}, {"from": "gpt", "value": ""}]} +{"id": "000000114636", "images": ["AURORA/data/something/frames/127300/first.jpg", "AURORA/data/something/frames/127300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114637", "images": ["AURORA/data/something/frames/117154/first.jpg", "AURORA/data/something/frames/117154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching toothbrush to toothbrush handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114638", "images": ["AURORA/data/something/frames/198125/first.jpg", "AURORA/data/something/frames/198125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping black cloth into cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114639", "images": ["AURORA/data/something/frames/148848/first.jpg", "AURORA/data/something/frames/148848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114640", "images": ["AURORA/data/something/frames/59360/first.jpg", "AURORA/data/something/frames/59360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottled ponzu sauce on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114641", "images": ["AURORA/data/something/frames/154998/first.jpg", "AURORA/data/something/frames/154998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114642", "images": ["AURORA/data/something/frames/98224/first.jpg", "AURORA/data/something/frames/98224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114643", "images": ["AURORA/data/something/frames/105459/first.jpg", "AURORA/data/something/frames/105459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling tomatoes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114644", "images": ["AURORA/data/something/frames/129939/first.jpg", "AURORA/data/something/frames/129939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114645", "images": ["AURORA/data/something/frames/152678/first.jpg", "AURORA/data/something/frames/152678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking biscuit pack up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114646", "images": ["AURORA/data/something/frames/171440/first.jpg", "AURORA/data/something/frames/171440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000114647", "images": ["AURORA/data/something/frames/75832/first.jpg", "AURORA/data/something/frames/75832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114648", "images": ["AURORA/data/something/frames/216150/first.jpg", "AURORA/data/something/frames/216150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114649", "images": ["AURORA/data/something/frames/173/first.jpg", "AURORA/data/something/frames/173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cup, revealing little cup behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114650", "images": ["AURORA/data/something/frames/142710/first.jpg", "AURORA/data/something/frames/142710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114651", "images": ["AURORA/data/something/frames/177390/first.jpg", "AURORA/data/something/frames/177390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sandal from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114652", "images": ["AURORA/data/something/frames/180417/first.jpg", "AURORA/data/something/frames/180417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114653", "images": ["AURORA/data/something/frames/133190/first.jpg", "AURORA/data/something/frames/133190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending canela until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114654", "images": ["AURORA/data/something/frames/129845/first.jpg", "AURORA/data/something/frames/129845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a car toy colliding with a car toy and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114655", "images": ["AURORA/data/something/frames/4150/first.jpg", "AURORA/data/something/frames/4150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cough drop closer to cough drop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114656", "images": ["AURORA/data/something/frames/168946/first.jpg", "AURORA/data/something/frames/168946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 pens onto a black file"}, {"from": "gpt", "value": ""}]} +{"id": "000000114657", "images": ["AURORA/data/something/frames/153198/first.jpg", "AURORA/data/something/frames/153198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote control from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114658", "images": ["AURORA/data/something/frames/15914/first.jpg", "AURORA/data/something/frames/15914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a microphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114659", "images": ["AURORA/data/something/frames/24959/first.jpg", "AURORA/data/something/frames/24959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into slime"}, {"from": "gpt", "value": ""}]} +{"id": "000000114660", "images": ["AURORA/data/something/frames/22313/first.jpg", "AURORA/data/something/frames/22313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114661", "images": ["AURORA/data/something/frames/85601/first.jpg", "AURORA/data/something/frames/85601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker among other markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114662", "images": ["AURORA/data/something/frames/12584/first.jpg", "AURORA/data/something/frames/12584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting raw chicken meat into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114663", "images": ["AURORA/data/something/frames/112614/first.jpg", "AURORA/data/something/frames/112614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a fake flower so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114664", "images": ["AURORA/data/something/frames/53979/first.jpg", "AURORA/data/something/frames/53979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging egg out of salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114665", "images": ["AURORA/data/something/frames/122190/first.jpg", "AURORA/data/something/frames/122190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114666", "images": ["AURORA/data/something/frames/72519/first.jpg", "AURORA/data/something/frames/72519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114667", "images": ["AURORA/data/something/frames/44385/first.jpg", "AURORA/data/something/frames/44385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114668", "images": ["AURORA/data/something/frames/209009/first.jpg", "AURORA/data/something/frames/209009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000114669", "images": ["AURORA/data/something/frames/197171/first.jpg", "AURORA/data/something/frames/197171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper note"}, {"from": "gpt", "value": ""}]} +{"id": "000000114670", "images": ["AURORA/data/something/frames/138590/first.jpg", "AURORA/data/something/frames/138590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting washing machine nob"}, {"from": "gpt", "value": ""}]} +{"id": "000000114671", "images": ["AURORA/data/something/frames/160183/first.jpg", "AURORA/data/something/frames/160183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000114672", "images": ["AURORA/data/something/frames/208727/first.jpg", "AURORA/data/something/frames/208727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scissors colliding with a book and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114673", "images": ["AURORA/data/something/frames/167036/first.jpg", "AURORA/data/something/frames/167036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000114674", "images": ["AURORA/data/something/frames/132274/first.jpg", "AURORA/data/something/frames/132274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping purse onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114675", "images": ["AURORA/data/something/frames/186560/first.jpg", "AURORA/data/something/frames/186560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114676", "images": ["AURORA/data/something/frames/205127/first.jpg", "AURORA/data/something/frames/205127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114677", "images": ["AURORA/data/something/frames/41075/first.jpg", "AURORA/data/something/frames/41075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114678", "images": ["AURORA/data/something/frames/141065/first.jpg", "AURORA/data/something/frames/141065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114679", "images": ["AURORA/data/something/frames/122659/first.jpg", "AURORA/data/something/frames/122659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sponge into a plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114680", "images": ["AURORA/data/something/frames/149624/first.jpg", "AURORA/data/something/frames/149624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball next to airplane"}, {"from": "gpt", "value": ""}]} +{"id": "000000114681", "images": ["AURORA/data/something/frames/52276/first.jpg", "AURORA/data/something/frames/52276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 plastic bags onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114682", "images": ["AURORA/data/something/frames/52698/first.jpg", "AURORA/data/something/frames/52698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of a board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114683", "images": ["AURORA/data/something/frames/197127/first.jpg", "AURORA/data/something/frames/197127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork onto napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114684", "images": ["AURORA/data/something/frames/35637/first.jpg", "AURORA/data/something/frames/35637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling plates up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114685", "images": ["AURORA/data/something/frames/3362/first.jpg", "AURORA/data/something/frames/3362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the bottle next to the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114686", "images": ["AURORA/data/something/frames/59046/first.jpg", "AURORA/data/something/frames/59046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114687", "images": ["AURORA/data/something/frames/72309/first.jpg", "AURORA/data/something/frames/72309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming red watch box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114688", "images": ["AURORA/data/something/frames/180295/first.jpg", "AURORA/data/something/frames/180295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ruler and masking tape away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114689", "images": ["AURORA/data/something/frames/119434/first.jpg", "AURORA/data/something/frames/119434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114690", "images": ["AURORA/data/something/frames/218468/first.jpg", "AURORA/data/something/frames/218468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114691", "images": ["AURORA/data/something/frames/113071/first.jpg", "AURORA/data/something/frames/113071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114692", "images": ["AURORA/data/something/frames/74976/first.jpg", "AURORA/data/something/frames/74976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cloth onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000114693", "images": ["AURORA/data/something/frames/70912/first.jpg", "AURORA/data/something/frames/70912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with water over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114694", "images": ["AURORA/data/something/frames/192731/first.jpg", "AURORA/data/something/frames/192731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with watermelon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114695", "images": ["AURORA/data/something/frames/185188/first.jpg", "AURORA/data/something/frames/185188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a table tennis ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000114696", "images": ["AURORA/data/something/frames/165202/first.jpg", "AURORA/data/something/frames/165202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114697", "images": ["AURORA/data/something/frames/45688/first.jpg", "AURORA/data/something/frames/45688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vessel onto mixer grinder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114698", "images": ["AURORA/data/something/frames/131064/first.jpg", "AURORA/data/something/frames/131064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering books with bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114699", "images": ["AURORA/data/something/frames/208718/first.jpg", "AURORA/data/something/frames/208718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling headphones from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114700", "images": ["AURORA/data/something/frames/166394/first.jpg", "AURORA/data/something/frames/166394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000114701", "images": ["AURORA/data/something/frames/119685/first.jpg", "AURORA/data/something/frames/119685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000114702", "images": ["AURORA/data/something/frames/120454/first.jpg", "AURORA/data/something/frames/120454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114703", "images": ["AURORA/data/something/frames/106705/first.jpg", "AURORA/data/something/frames/106705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tubes into glass beaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114704", "images": ["AURORA/data/something/frames/135039/first.jpg", "AURORA/data/something/frames/135039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing aim toothpaste from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114705", "images": ["AURORA/data/something/frames/92076/first.jpg", "AURORA/data/something/frames/92076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dry cells towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114706", "images": ["AURORA/data/something/frames/72066/first.jpg", "AURORA/data/something/frames/72066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114707", "images": ["AURORA/data/something/frames/77203/first.jpg", "AURORA/data/something/frames/77203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114708", "images": ["AURORA/data/something/frames/168603/first.jpg", "AURORA/data/something/frames/168603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wallet with eraser on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114709", "images": ["AURORA/data/something/frames/117094/first.jpg", "AURORA/data/something/frames/117094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114710", "images": ["AURORA/data/something/frames/196391/first.jpg", "AURORA/data/something/frames/196391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of spoon without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114711", "images": ["AURORA/data/something/frames/48582/first.jpg", "AURORA/data/something/frames/48582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114712", "images": ["AURORA/data/something/frames/206735/first.jpg", "AURORA/data/something/frames/206735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bottle, revealing sharpener behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114713", "images": ["AURORA/data/something/frames/58090/first.jpg", "AURORA/data/something/frames/58090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging ethernet cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114714", "images": ["AURORA/data/something/frames/159174/first.jpg", "AURORA/data/something/frames/159174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114715", "images": ["AURORA/data/something/frames/20592/first.jpg", "AURORA/data/something/frames/20592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a sweet next to the other sweets"}, {"from": "gpt", "value": ""}]} +{"id": "000000114716", "images": ["AURORA/data/something/frames/105884/first.jpg", "AURORA/data/something/frames/105884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cardigan into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114717", "images": ["AURORA/data/something/frames/52424/first.jpg", "AURORA/data/something/frames/52424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000114718", "images": ["AURORA/data/something/frames/119087/first.jpg", "AURORA/data/something/frames/119087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pet food bowl with a flipflop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114719", "images": ["AURORA/data/something/frames/128515/first.jpg", "AURORA/data/something/frames/128515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a small container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114720", "images": ["AURORA/data/something/frames/90824/first.jpg", "AURORA/data/something/frames/90824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114721", "images": ["AURORA/data/something/frames/1369/first.jpg", "AURORA/data/something/frames/1369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114722", "images": ["AURORA/data/something/frames/176552/first.jpg", "AURORA/data/something/frames/176552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114723", "images": ["AURORA/data/something/frames/220724/first.jpg", "AURORA/data/something/frames/220724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114724", "images": ["AURORA/data/something/frames/212092/first.jpg", "AURORA/data/something/frames/212092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming hair comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114725", "images": ["AURORA/data/something/frames/10812/first.jpg", "AURORA/data/something/frames/10812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching head of pen to body of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114726", "images": ["AURORA/data/something/frames/35758/first.jpg", "AURORA/data/something/frames/35758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114727", "images": ["AURORA/data/something/frames/180205/first.jpg", "AURORA/data/something/frames/180205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000114728", "images": ["AURORA/data/something/frames/191949/first.jpg", "AURORA/data/something/frames/191949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114729", "images": ["AURORA/data/something/frames/72263/first.jpg", "AURORA/data/something/frames/72263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a polythene bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114730", "images": ["AURORA/data/something/frames/213956/first.jpg", "AURORA/data/something/frames/213956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stapler next to pink hairclip"}, {"from": "gpt", "value": ""}]} +{"id": "000000114731", "images": ["AURORA/data/something/frames/170676/first.jpg", "AURORA/data/something/frames/170676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 sets of coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000114732", "images": ["AURORA/data/something/frames/188634/first.jpg", "AURORA/data/something/frames/188634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconut towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114733", "images": ["AURORA/data/something/frames/150744/first.jpg", "AURORA/data/something/frames/150744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000114734", "images": ["AURORA/data/something/frames/139784/first.jpg", "AURORA/data/something/frames/139784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting spoon with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114735", "images": ["AURORA/data/something/frames/81322/first.jpg", "AURORA/data/something/frames/81322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a textsurfer from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114736", "images": ["AURORA/data/something/frames/1152/first.jpg", "AURORA/data/something/frames/1152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000114737", "images": ["AURORA/data/something/frames/156929/first.jpg", "AURORA/data/something/frames/156929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one plastic cover of many similar plastic covers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114738", "images": ["AURORA/data/something/frames/208363/first.jpg", "AURORA/data/something/frames/208363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto coffee table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114739", "images": ["AURORA/data/something/frames/136579/first.jpg", "AURORA/data/something/frames/136579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114740", "images": ["AURORA/data/something/frames/55300/first.jpg", "AURORA/data/something/frames/55300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plate from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114741", "images": ["AURORA/data/something/frames/213541/first.jpg", "AURORA/data/something/frames/213541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114742", "images": ["AURORA/data/something/frames/77709/first.jpg", "AURORA/data/something/frames/77709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning notebook upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114743", "images": ["AURORA/data/something/frames/213228/first.jpg", "AURORA/data/something/frames/213228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114744", "images": ["AURORA/data/something/frames/77606/first.jpg", "AURORA/data/something/frames/77606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing dvd case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114745", "images": ["AURORA/data/something/frames/111708/first.jpg", "AURORA/data/something/frames/111708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114746", "images": ["AURORA/data/something/frames/135254/first.jpg", "AURORA/data/something/frames/135254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothes peg into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114747", "images": ["AURORA/data/something/frames/118193/first.jpg", "AURORA/data/something/frames/118193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114748", "images": ["AURORA/data/something/frames/69206/first.jpg", "AURORA/data/something/frames/69206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking twine out of vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000114749", "images": ["AURORA/data/something/frames/138392/first.jpg", "AURORA/data/something/frames/138392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning paint bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114750", "images": ["AURORA/data/something/frames/164587/first.jpg", "AURORA/data/something/frames/164587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114751", "images": ["AURORA/data/something/frames/112340/first.jpg", "AURORA/data/something/frames/112340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114752", "images": ["AURORA/data/something/frames/82514/first.jpg", "AURORA/data/something/frames/82514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000114753", "images": ["AURORA/data/something/frames/65790/first.jpg", "AURORA/data/something/frames/65790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114754", "images": ["AURORA/data/something/frames/213545/first.jpg", "AURORA/data/something/frames/213545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bus and box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114755", "images": ["AURORA/data/something/frames/168262/first.jpg", "AURORA/data/something/frames/168262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a small bear next to a large bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000114756", "images": ["AURORA/data/something/frames/209459/first.jpg", "AURORA/data/something/frames/209459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing plastic spay so that it almost falls off but doesn't so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114757", "images": ["AURORA/data/something/frames/116945/first.jpg", "AURORA/data/something/frames/116945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cow with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000114758", "images": ["AURORA/data/something/frames/149395/first.jpg", "AURORA/data/something/frames/149395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114759", "images": ["AURORA/data/something/frames/175228/first.jpg", "AURORA/data/something/frames/175228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a tape with scissors on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114760", "images": ["AURORA/data/something/frames/206947/first.jpg", "AURORA/data/something/frames/206947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000114761", "images": ["AURORA/data/something/frames/187799/first.jpg", "AURORA/data/something/frames/187799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb closer to usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000114762", "images": ["AURORA/data/something/frames/36529/first.jpg", "AURORA/data/something/frames/36529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking orange of many similar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114763", "images": ["AURORA/data/something/frames/217557/first.jpg", "AURORA/data/something/frames/217557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114764", "images": ["AURORA/data/something/frames/101365/first.jpg", "AURORA/data/something/frames/101365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114765", "images": ["AURORA/data/something/frames/117328/first.jpg", "AURORA/data/something/frames/117328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114766", "images": ["AURORA/data/something/frames/29999/first.jpg", "AURORA/data/something/frames/29999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114767", "images": ["AURORA/data/something/frames/197762/first.jpg", "AURORA/data/something/frames/197762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114768", "images": ["AURORA/data/something/frames/190494/first.jpg", "AURORA/data/something/frames/190494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a clothes hanger behind a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114769", "images": ["AURORA/data/something/frames/210975/first.jpg", "AURORA/data/something/frames/210975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the hand of a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000114770", "images": ["AURORA/data/something/frames/152209/first.jpg", "AURORA/data/something/frames/152209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114771", "images": ["AURORA/data/something/frames/186123/first.jpg", "AURORA/data/something/frames/186123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114772", "images": ["AURORA/data/something/frames/160477/first.jpg", "AURORA/data/something/frames/160477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000114773", "images": ["AURORA/data/something/frames/54893/first.jpg", "AURORA/data/something/frames/54893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling apple from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114774", "images": ["AURORA/data/something/frames/24879/first.jpg", "AURORA/data/something/frames/24879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sunscreen lotion from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114775", "images": ["AURORA/data/something/frames/209566/first.jpg", "AURORA/data/something/frames/209566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114776", "images": ["AURORA/data/something/frames/68946/first.jpg", "AURORA/data/something/frames/68946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing playdoh into its container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114777", "images": ["AURORA/data/something/frames/71563/first.jpg", "AURORA/data/something/frames/71563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange bowl from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114778", "images": ["AURORA/data/something/frames/17103/first.jpg", "AURORA/data/something/frames/17103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cup so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114779", "images": ["AURORA/data/something/frames/130178/first.jpg", "AURORA/data/something/frames/130178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114780", "images": ["AURORA/data/something/frames/40302/first.jpg", "AURORA/data/something/frames/40302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114781", "images": ["AURORA/data/something/frames/22114/first.jpg", "AURORA/data/something/frames/22114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114782", "images": ["AURORA/data/something/frames/149937/first.jpg", "AURORA/data/something/frames/149937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114783", "images": ["AURORA/data/something/frames/137056/first.jpg", "AURORA/data/something/frames/137056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114784", "images": ["AURORA/data/something/frames/134687/first.jpg", "AURORA/data/something/frames/134687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114785", "images": ["AURORA/data/something/frames/216143/first.jpg", "AURORA/data/something/frames/216143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting big bottle in front of small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114786", "images": ["AURORA/data/something/frames/111536/first.jpg", "AURORA/data/something/frames/111536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching lid to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114787", "images": ["AURORA/data/something/frames/139019/first.jpg", "AURORA/data/something/frames/139019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling torch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114788", "images": ["AURORA/data/something/frames/184666/first.jpg", "AURORA/data/something/frames/184666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114789", "images": ["AURORA/data/something/frames/161732/first.jpg", "AURORA/data/something/frames/161732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114790", "images": ["AURORA/data/something/frames/135024/first.jpg", "AURORA/data/something/frames/135024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a window with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114791", "images": ["AURORA/data/something/frames/55380/first.jpg", "AURORA/data/something/frames/55380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving one leg of the doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000114792", "images": ["AURORA/data/something/frames/23536/first.jpg", "AURORA/data/something/frames/23536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air freshener into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114793", "images": ["AURORA/data/something/frames/169687/first.jpg", "AURORA/data/something/frames/169687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114794", "images": ["AURORA/data/something/frames/197143/first.jpg", "AURORA/data/something/frames/197143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball point pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114795", "images": ["AURORA/data/something/frames/33250/first.jpg", "AURORA/data/something/frames/33250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114796", "images": ["AURORA/data/something/frames/60656/first.jpg", "AURORA/data/something/frames/60656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114797", "images": ["AURORA/data/something/frames/60129/first.jpg", "AURORA/data/something/frames/60129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping blocks over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114798", "images": ["AURORA/data/something/frames/132850/first.jpg", "AURORA/data/something/frames/132850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114799", "images": ["AURORA/data/something/frames/104025/first.jpg", "AURORA/data/something/frames/104025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000114800", "images": ["AURORA/data/something/frames/111120/first.jpg", "AURORA/data/something/frames/111120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a battery on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114801", "images": ["AURORA/data/something/frames/3020/first.jpg", "AURORA/data/something/frames/3020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning duster upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114802", "images": ["AURORA/data/something/frames/174759/first.jpg", "AURORA/data/something/frames/174759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114803", "images": ["AURORA/data/something/frames/214066/first.jpg", "AURORA/data/something/frames/214066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming motorbike"}, {"from": "gpt", "value": ""}]} +{"id": "000000114804", "images": ["AURORA/data/something/frames/4804/first.jpg", "AURORA/data/something/frames/4804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red marker pen off of blue marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114805", "images": ["AURORA/data/something/frames/91009/first.jpg", "AURORA/data/something/frames/91009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing knife from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114806", "images": ["AURORA/data/something/frames/33831/first.jpg", "AURORA/data/something/frames/33831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and spool of thread on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114807", "images": ["AURORA/data/something/frames/14097/first.jpg", "AURORA/data/something/frames/14097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114808", "images": ["AURORA/data/something/frames/104073/first.jpg", "AURORA/data/something/frames/104073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114809", "images": ["AURORA/data/something/frames/195051/first.jpg", "AURORA/data/something/frames/195051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114810", "images": ["AURORA/data/something/frames/50872/first.jpg", "AURORA/data/something/frames/50872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling powdered sugar onto a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114811", "images": ["AURORA/data/something/frames/152479/first.jpg", "AURORA/data/something/frames/152479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling beaker onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114812", "images": ["AURORA/data/something/frames/77221/first.jpg", "AURORA/data/something/frames/77221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114813", "images": ["AURORA/data/something/frames/83168/first.jpg", "AURORA/data/something/frames/83168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000114814", "images": ["AURORA/data/something/frames/5294/first.jpg", "AURORA/data/something/frames/5294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving opener of water tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114815", "images": ["AURORA/data/something/frames/122810/first.jpg", "AURORA/data/something/frames/122810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114816", "images": ["AURORA/data/something/frames/78056/first.jpg", "AURORA/data/something/frames/78056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pizza cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114817", "images": ["AURORA/data/something/frames/172666/first.jpg", "AURORA/data/something/frames/172666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000114818", "images": ["AURORA/data/something/frames/77125/first.jpg", "AURORA/data/something/frames/77125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cushion across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114819", "images": ["AURORA/data/something/frames/109443/first.jpg", "AURORA/data/something/frames/109443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking peanut butter jar from cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114820", "images": ["AURORA/data/something/frames/99271/first.jpg", "AURORA/data/something/frames/99271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto concrete"}, {"from": "gpt", "value": ""}]} +{"id": "000000114821", "images": ["AURORA/data/something/frames/9119/first.jpg", "AURORA/data/something/frames/9119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing powerbank so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114822", "images": ["AURORA/data/something/frames/15657/first.jpg", "AURORA/data/something/frames/15657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114823", "images": ["AURORA/data/something/frames/177671/first.jpg", "AURORA/data/something/frames/177671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114824", "images": ["AURORA/data/something/frames/137138/first.jpg", "AURORA/data/something/frames/137138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking waterbottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114825", "images": ["AURORA/data/something/frames/149534/first.jpg", "AURORA/data/something/frames/149534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114826", "images": ["AURORA/data/something/frames/107036/first.jpg", "AURORA/data/something/frames/107036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting memory card reader and memory card on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114827", "images": ["AURORA/data/something/frames/94632/first.jpg", "AURORA/data/something/frames/94632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black hairclip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114828", "images": ["AURORA/data/something/frames/51607/first.jpg", "AURORA/data/something/frames/51607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling blocks onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114829", "images": ["AURORA/data/something/frames/77531/first.jpg", "AURORA/data/something/frames/77531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114830", "images": ["AURORA/data/something/frames/37029/first.jpg", "AURORA/data/something/frames/37029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114831", "images": ["AURORA/data/something/frames/5705/first.jpg", "AURORA/data/something/frames/5705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114832", "images": ["AURORA/data/something/frames/69854/first.jpg", "AURORA/data/something/frames/69854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic screwcap into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114833", "images": ["AURORA/data/something/frames/98419/first.jpg", "AURORA/data/something/frames/98419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000114834", "images": ["AURORA/data/something/frames/122060/first.jpg", "AURORA/data/something/frames/122060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shoulder bag onto a globe which cant support it so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114835", "images": ["AURORA/data/something/frames/142936/first.jpg", "AURORA/data/something/frames/142936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cell phone with water bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114836", "images": ["AURORA/data/something/frames/154128/first.jpg", "AURORA/data/something/frames/154128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming phone case"}, {"from": "gpt", "value": ""}]} +{"id": "000000114837", "images": ["AURORA/data/something/frames/203286/first.jpg", "AURORA/data/something/frames/203286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114838", "images": ["AURORA/data/something/frames/130446/first.jpg", "AURORA/data/something/frames/130446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking leaves out of tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000114839", "images": ["AURORA/data/something/frames/8713/first.jpg", "AURORA/data/something/frames/8713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging light into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114840", "images": ["AURORA/data/something/frames/29583/first.jpg", "AURORA/data/something/frames/29583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114841", "images": ["AURORA/data/something/frames/114907/first.jpg", "AURORA/data/something/frames/114907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) face cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114842", "images": ["AURORA/data/something/frames/122534/first.jpg", "AURORA/data/something/frames/122534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000114843", "images": ["AURORA/data/something/frames/178054/first.jpg", "AURORA/data/something/frames/178054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jacket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114844", "images": ["AURORA/data/something/frames/88039/first.jpg", "AURORA/data/something/frames/88039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping orange juice off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114845", "images": ["AURORA/data/something/frames/26289/first.jpg", "AURORA/data/something/frames/26289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and knife closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114846", "images": ["AURORA/data/something/frames/42581/first.jpg", "AURORA/data/something/frames/42581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing torch with dvd case"}, {"from": "gpt", "value": ""}]} +{"id": "000000114847", "images": ["AURORA/data/something/frames/189936/first.jpg", "AURORA/data/something/frames/189936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114848", "images": ["AURORA/data/something/frames/190899/first.jpg", "AURORA/data/something/frames/190899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114849", "images": ["AURORA/data/something/frames/198683/first.jpg", "AURORA/data/something/frames/198683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114850", "images": ["AURORA/data/something/frames/121290/first.jpg", "AURORA/data/something/frames/121290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tape measure up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114851", "images": ["AURORA/data/something/frames/172087/first.jpg", "AURORA/data/something/frames/172087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hairband from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114852", "images": ["AURORA/data/something/frames/102830/first.jpg", "AURORA/data/something/frames/102830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping hand soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114853", "images": ["AURORA/data/something/frames/192399/first.jpg", "AURORA/data/something/frames/192399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on the edge of glass so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114854", "images": ["AURORA/data/something/frames/60988/first.jpg", "AURORA/data/something/frames/60988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114855", "images": ["AURORA/data/something/frames/202588/first.jpg", "AURORA/data/something/frames/202588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114856", "images": ["AURORA/data/something/frames/123956/first.jpg", "AURORA/data/something/frames/123956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000114857", "images": ["AURORA/data/something/frames/21338/first.jpg", "AURORA/data/something/frames/21338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000114858", "images": ["AURORA/data/something/frames/177974/first.jpg", "AURORA/data/something/frames/177974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and remote away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114859", "images": ["AURORA/data/something/frames/212414/first.jpg", "AURORA/data/something/frames/212414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bucket until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114860", "images": ["AURORA/data/something/frames/114562/first.jpg", "AURORA/data/something/frames/114562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup closer to a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114861", "images": ["AURORA/data/something/frames/13902/first.jpg", "AURORA/data/something/frames/13902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming soft drink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114862", "images": ["AURORA/data/something/frames/112743/first.jpg", "AURORA/data/something/frames/112743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting toys"}, {"from": "gpt", "value": ""}]} +{"id": "000000114863", "images": ["AURORA/data/something/frames/204602/first.jpg", "AURORA/data/something/frames/204602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cellphone behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114864", "images": ["AURORA/data/something/frames/192223/first.jpg", "AURORA/data/something/frames/192223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and glass sheaker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114865", "images": ["AURORA/data/something/frames/215032/first.jpg", "AURORA/data/something/frames/215032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering the ball with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114866", "images": ["AURORA/data/something/frames/139586/first.jpg", "AURORA/data/something/frames/139586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114867", "images": ["AURORA/data/something/frames/34302/first.jpg", "AURORA/data/something/frames/34302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114868", "images": ["AURORA/data/something/frames/5465/first.jpg", "AURORA/data/something/frames/5465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving led of thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000114869", "images": ["AURORA/data/something/frames/26587/first.jpg", "AURORA/data/something/frames/26587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114870", "images": ["AURORA/data/something/frames/191023/first.jpg", "AURORA/data/something/frames/191023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting usb cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114871", "images": ["AURORA/data/something/frames/213594/first.jpg", "AURORA/data/something/frames/213594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering headphones with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114872", "images": ["AURORA/data/something/frames/182632/first.jpg", "AURORA/data/something/frames/182632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toothpick upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114873", "images": ["AURORA/data/something/frames/106342/first.jpg", "AURORA/data/something/frames/106342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 board clips"}, {"from": "gpt", "value": ""}]} +{"id": "000000114874", "images": ["AURORA/data/something/frames/30918/first.jpg", "AURORA/data/something/frames/30918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tote bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114875", "images": ["AURORA/data/something/frames/122497/first.jpg", "AURORA/data/something/frames/122497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a top off a drink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114876", "images": ["AURORA/data/something/frames/212046/first.jpg", "AURORA/data/something/frames/212046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114877", "images": ["AURORA/data/something/frames/163305/first.jpg", "AURORA/data/something/frames/163305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114878", "images": ["AURORA/data/something/frames/145268/first.jpg", "AURORA/data/something/frames/145268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114879", "images": ["AURORA/data/something/frames/205521/first.jpg", "AURORA/data/something/frames/205521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery onto rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000114880", "images": ["AURORA/data/something/frames/4377/first.jpg", "AURORA/data/something/frames/4377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114881", "images": ["AURORA/data/something/frames/94528/first.jpg", "AURORA/data/something/frames/94528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming red booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114882", "images": ["AURORA/data/something/frames/27664/first.jpg", "AURORA/data/something/frames/27664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114883", "images": ["AURORA/data/something/frames/178765/first.jpg", "AURORA/data/something/frames/178765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114884", "images": ["AURORA/data/something/frames/5186/first.jpg", "AURORA/data/something/frames/5186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114885", "images": ["AURORA/data/something/frames/92574/first.jpg", "AURORA/data/something/frames/92574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114886", "images": ["AURORA/data/something/frames/39009/first.jpg", "AURORA/data/something/frames/39009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting lamp with finger"}, {"from": "gpt", "value": ""}]} +{"id": "000000114887", "images": ["AURORA/data/something/frames/131779/first.jpg", "AURORA/data/something/frames/131779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114888", "images": ["AURORA/data/something/frames/12095/first.jpg", "AURORA/data/something/frames/12095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114889", "images": ["AURORA/data/something/frames/204548/first.jpg", "AURORA/data/something/frames/204548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stapler with red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114890", "images": ["AURORA/data/something/frames/63816/first.jpg", "AURORA/data/something/frames/63816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114891", "images": ["AURORA/data/something/frames/149000/first.jpg", "AURORA/data/something/frames/149000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pc mouse closer to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000114892", "images": ["AURORA/data/something/frames/16293/first.jpg", "AURORA/data/something/frames/16293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into mobile but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114893", "images": ["AURORA/data/something/frames/13939/first.jpg", "AURORA/data/something/frames/13939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting globe and unicorn on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114894", "images": ["AURORA/data/something/frames/58579/first.jpg", "AURORA/data/something/frames/58579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick and usb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114895", "images": ["AURORA/data/something/frames/173824/first.jpg", "AURORA/data/something/frames/173824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a sieve"}, {"from": "gpt", "value": ""}]} +{"id": "000000114896", "images": ["AURORA/data/something/frames/210365/first.jpg", "AURORA/data/something/frames/210365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a shoe with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114897", "images": ["AURORA/data/something/frames/134457/first.jpg", "AURORA/data/something/frames/134457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114898", "images": ["AURORA/data/something/frames/134626/first.jpg", "AURORA/data/something/frames/134626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup away from a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114899", "images": ["AURORA/data/something/frames/60521/first.jpg", "AURORA/data/something/frames/60521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114900", "images": ["AURORA/data/something/frames/34095/first.jpg", "AURORA/data/something/frames/34095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking teddy bear up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114901", "images": ["AURORA/data/something/frames/194852/first.jpg", "AURORA/data/something/frames/194852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker onto santa hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114902", "images": ["AURORA/data/something/frames/37956/first.jpg", "AURORA/data/something/frames/37956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glasses with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114903", "images": ["AURORA/data/something/frames/188086/first.jpg", "AURORA/data/something/frames/188086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114904", "images": ["AURORA/data/something/frames/142969/first.jpg", "AURORA/data/something/frames/142969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114905", "images": ["AURORA/data/something/frames/186642/first.jpg", "AURORA/data/something/frames/186642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114906", "images": ["AURORA/data/something/frames/155756/first.jpg", "AURORA/data/something/frames/155756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114907", "images": ["AURORA/data/something/frames/146395/first.jpg", "AURORA/data/something/frames/146395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114908", "images": ["AURORA/data/something/frames/133166/first.jpg", "AURORA/data/something/frames/133166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000114909", "images": ["AURORA/data/something/frames/104764/first.jpg", "AURORA/data/something/frames/104764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114910", "images": ["AURORA/data/something/frames/163103/first.jpg", "AURORA/data/something/frames/163103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing casual hat from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114911", "images": ["AURORA/data/something/frames/31361/first.jpg", "AURORA/data/something/frames/31361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cd's up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114912", "images": ["AURORA/data/something/frames/36772/first.jpg", "AURORA/data/something/frames/36772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube in front of a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000114913", "images": ["AURORA/data/something/frames/94505/first.jpg", "AURORA/data/something/frames/94505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting the towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114914", "images": ["AURORA/data/something/frames/145907/first.jpg", "AURORA/data/something/frames/145907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bracelet out of a jewelry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114915", "images": ["AURORA/data/something/frames/23892/first.jpg", "AURORA/data/something/frames/23892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114916", "images": ["AURORA/data/something/frames/101018/first.jpg", "AURORA/data/something/frames/101018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000114917", "images": ["AURORA/data/something/frames/132411/first.jpg", "AURORA/data/something/frames/132411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114918", "images": ["AURORA/data/something/frames/111472/first.jpg", "AURORA/data/something/frames/111472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114919", "images": ["AURORA/data/something/frames/99350/first.jpg", "AURORA/data/something/frames/99350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114920", "images": ["AURORA/data/something/frames/12152/first.jpg", "AURORA/data/something/frames/12152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a nailpolish bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114921", "images": ["AURORA/data/something/frames/156254/first.jpg", "AURORA/data/something/frames/156254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114922", "images": ["AURORA/data/something/frames/10914/first.jpg", "AURORA/data/something/frames/10914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle-bottle and candle-bottle so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114923", "images": ["AURORA/data/something/frames/155132/first.jpg", "AURORA/data/something/frames/155132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery and battery closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114924", "images": ["AURORA/data/something/frames/188158/first.jpg", "AURORA/data/something/frames/188158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a strip of paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114925", "images": ["AURORA/data/something/frames/15636/first.jpg", "AURORA/data/something/frames/15636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114926", "images": ["AURORA/data/something/frames/156616/first.jpg", "AURORA/data/something/frames/156616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114927", "images": ["AURORA/data/something/frames/43591/first.jpg", "AURORA/data/something/frames/43591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a book on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114928", "images": ["AURORA/data/something/frames/181564/first.jpg", "AURORA/data/something/frames/181564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a teddy with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114929", "images": ["AURORA/data/something/frames/29133/first.jpg", "AURORA/data/something/frames/29133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114930", "images": ["AURORA/data/something/frames/121011/first.jpg", "AURORA/data/something/frames/121011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114931", "images": ["AURORA/data/something/frames/98735/first.jpg", "AURORA/data/something/frames/98735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving little spray of container box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114932", "images": ["AURORA/data/something/frames/87855/first.jpg", "AURORA/data/something/frames/87855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering key with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114933", "images": ["AURORA/data/something/frames/156905/first.jpg", "AURORA/data/something/frames/156905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing thread from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114934", "images": ["AURORA/data/something/frames/74683/first.jpg", "AURORA/data/something/frames/74683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching t shirts with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114935", "images": ["AURORA/data/something/frames/92799/first.jpg", "AURORA/data/something/frames/92799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing printer paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114936", "images": ["AURORA/data/something/frames/127983/first.jpg", "AURORA/data/something/frames/127983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet next to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114937", "images": ["AURORA/data/something/frames/33400/first.jpg", "AURORA/data/something/frames/33400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114938", "images": ["AURORA/data/something/frames/171824/first.jpg", "AURORA/data/something/frames/171824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glue with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114939", "images": ["AURORA/data/something/frames/189615/first.jpg", "AURORA/data/something/frames/189615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a matchbox from behind of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114940", "images": ["AURORA/data/something/frames/115190/first.jpg", "AURORA/data/something/frames/115190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bottle into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114941", "images": ["AURORA/data/something/frames/120423/first.jpg", "AURORA/data/something/frames/120423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a water container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114942", "images": ["AURORA/data/something/frames/132485/first.jpg", "AURORA/data/something/frames/132485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair with the arms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114943", "images": ["AURORA/data/something/frames/77814/first.jpg", "AURORA/data/something/frames/77814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) sensor of lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000114944", "images": ["AURORA/data/something/frames/217964/first.jpg", "AURORA/data/something/frames/217964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114945", "images": ["AURORA/data/something/frames/63425/first.jpg", "AURORA/data/something/frames/63425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a container onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114946", "images": ["AURORA/data/something/frames/87011/first.jpg", "AURORA/data/something/frames/87011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114947", "images": ["AURORA/data/something/frames/13017/first.jpg", "AURORA/data/something/frames/13017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing the paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114948", "images": ["AURORA/data/something/frames/30245/first.jpg", "AURORA/data/something/frames/30245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bag so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114949", "images": ["AURORA/data/something/frames/200057/first.jpg", "AURORA/data/something/frames/200057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114950", "images": ["AURORA/data/something/frames/150347/first.jpg", "AURORA/data/something/frames/150347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114951", "images": ["AURORA/data/something/frames/199138/first.jpg", "AURORA/data/something/frames/199138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic comb next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114952", "images": ["AURORA/data/something/frames/114553/first.jpg", "AURORA/data/something/frames/114553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114953", "images": ["AURORA/data/something/frames/67788/first.jpg", "AURORA/data/something/frames/67788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114954", "images": ["AURORA/data/something/frames/88218/first.jpg", "AURORA/data/something/frames/88218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) back camera of smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114955", "images": ["AURORA/data/something/frames/115613/first.jpg", "AURORA/data/something/frames/115613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing window"}, {"from": "gpt", "value": ""}]} +{"id": "000000114956", "images": ["AURORA/data/something/frames/96298/first.jpg", "AURORA/data/something/frames/96298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key closer to comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114957", "images": ["AURORA/data/something/frames/157432/first.jpg", "AURORA/data/something/frames/157432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a cup with a card on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114958", "images": ["AURORA/data/something/frames/212349/first.jpg", "AURORA/data/something/frames/212349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon from plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114959", "images": ["AURORA/data/something/frames/160945/first.jpg", "AURORA/data/something/frames/160945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering popcorn with lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000114960", "images": ["AURORA/data/something/frames/188433/first.jpg", "AURORA/data/something/frames/188433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottled ponzu sauce from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114961", "images": ["AURORA/data/something/frames/210710/first.jpg", "AURORA/data/something/frames/210710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming posters"}, {"from": "gpt", "value": ""}]} +{"id": "000000114962", "images": ["AURORA/data/something/frames/155526/first.jpg", "AURORA/data/something/frames/155526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114963", "images": ["AURORA/data/something/frames/121735/first.jpg", "AURORA/data/something/frames/121735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114964", "images": ["AURORA/data/something/frames/16552/first.jpg", "AURORA/data/something/frames/16552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114965", "images": ["AURORA/data/something/frames/128589/first.jpg", "AURORA/data/something/frames/128589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 water bottles onto wooden board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114966", "images": ["AURORA/data/something/frames/176219/first.jpg", "AURORA/data/something/frames/176219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114967", "images": ["AURORA/data/something/frames/122075/first.jpg", "AURORA/data/something/frames/122075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of flashlight without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114968", "images": ["AURORA/data/something/frames/145759/first.jpg", "AURORA/data/something/frames/145759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into wine glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114969", "images": ["AURORA/data/something/frames/174374/first.jpg", "AURORA/data/something/frames/174374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a memory stick into a usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000114970", "images": ["AURORA/data/something/frames/166365/first.jpg", "AURORA/data/something/frames/166365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an orange basket ball and a black basket ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114971", "images": ["AURORA/data/something/frames/117195/first.jpg", "AURORA/data/something/frames/117195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114972", "images": ["AURORA/data/something/frames/39264/first.jpg", "AURORA/data/something/frames/39264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114973", "images": ["AURORA/data/something/frames/209856/first.jpg", "AURORA/data/something/frames/209856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114974", "images": ["AURORA/data/something/frames/163449/first.jpg", "AURORA/data/something/frames/163449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114975", "images": ["AURORA/data/something/frames/150689/first.jpg", "AURORA/data/something/frames/150689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with bowl and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114976", "images": ["AURORA/data/something/frames/121193/first.jpg", "AURORA/data/something/frames/121193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114977", "images": ["AURORA/data/something/frames/43987/first.jpg", "AURORA/data/something/frames/43987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a sponge with a straw on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114978", "images": ["AURORA/data/something/frames/152938/first.jpg", "AURORA/data/something/frames/152938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bag strap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114979", "images": ["AURORA/data/something/frames/112404/first.jpg", "AURORA/data/something/frames/112404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114980", "images": ["AURORA/data/something/frames/5926/first.jpg", "AURORA/data/something/frames/5926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114981", "images": ["AURORA/data/something/frames/53331/first.jpg", "AURORA/data/something/frames/53331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book onto the bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000114982", "images": ["AURORA/data/something/frames/199487/first.jpg", "AURORA/data/something/frames/199487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114983", "images": ["AURORA/data/something/frames/48393/first.jpg", "AURORA/data/something/frames/48393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking board clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114984", "images": ["AURORA/data/something/frames/71544/first.jpg", "AURORA/data/something/frames/71544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114985", "images": ["AURORA/data/something/frames/44655/first.jpg", "AURORA/data/something/frames/44655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candle out of glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000114986", "images": ["AURORA/data/something/frames/122400/first.jpg", "AURORA/data/something/frames/122400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vitamin into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114987", "images": ["AURORA/data/something/frames/158724/first.jpg", "AURORA/data/something/frames/158724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a plant on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114988", "images": ["AURORA/data/something/frames/11859/first.jpg", "AURORA/data/something/frames/11859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a mobile on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114989", "images": ["AURORA/data/something/frames/155680/first.jpg", "AURORA/data/something/frames/155680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a fan with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000114990", "images": ["AURORA/data/something/frames/88889/first.jpg", "AURORA/data/something/frames/88889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon, fork and knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114991", "images": ["AURORA/data/something/frames/131090/first.jpg", "AURORA/data/something/frames/131090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a nail polish upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114992", "images": ["AURORA/data/something/frames/35281/first.jpg", "AURORA/data/something/frames/35281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a plastic bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000114993", "images": ["AURORA/data/something/frames/44395/first.jpg", "AURORA/data/something/frames/44395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on the edge of something so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114994", "images": ["AURORA/data/something/frames/198861/first.jpg", "AURORA/data/something/frames/198861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ligher into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114995", "images": ["AURORA/data/something/frames/115934/first.jpg", "AURORA/data/something/frames/115934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000114996", "images": ["AURORA/data/something/frames/135498/first.jpg", "AURORA/data/something/frames/135498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coin with scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114997", "images": ["AURORA/data/something/frames/99170/first.jpg", "AURORA/data/something/frames/99170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114998", "images": ["AURORA/data/something/frames/30763/first.jpg", "AURORA/data/something/frames/30763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114999", "images": ["AURORA/data/something/frames/146009/first.jpg", "AURORA/data/something/frames/146009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting metal pencil case with wrist watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000115000", "images": ["AURORA/data/something/frames/55860/first.jpg", "AURORA/data/something/frames/55860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115001", "images": ["AURORA/data/something/frames/9254/first.jpg", "AURORA/data/something/frames/9254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115002", "images": ["AURORA/data/something/frames/154626/first.jpg", "AURORA/data/something/frames/154626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115003", "images": ["AURORA/data/something/frames/13122/first.jpg", "AURORA/data/something/frames/13122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115004", "images": ["AURORA/data/something/frames/67720/first.jpg", "AURORA/data/something/frames/67720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115005", "images": ["AURORA/data/something/frames/160604/first.jpg", "AURORA/data/something/frames/160604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pens into pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115006", "images": ["AURORA/data/something/frames/65600/first.jpg", "AURORA/data/something/frames/65600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour soda into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115007", "images": ["AURORA/data/something/frames/49599/first.jpg", "AURORA/data/something/frames/49599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115008", "images": ["AURORA/data/something/frames/15966/first.jpg", "AURORA/data/something/frames/15966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115009", "images": ["AURORA/data/something/frames/138967/first.jpg", "AURORA/data/something/frames/138967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115010", "images": ["AURORA/data/something/frames/149268/first.jpg", "AURORA/data/something/frames/149268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115011", "images": ["AURORA/data/something/frames/24760/first.jpg", "AURORA/data/something/frames/24760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and xbox game closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115012", "images": ["AURORA/data/something/frames/177238/first.jpg", "AURORA/data/something/frames/177238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115013", "images": ["AURORA/data/something/frames/15451/first.jpg", "AURORA/data/something/frames/15451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tea light candle away from a group of candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000115014", "images": ["AURORA/data/something/frames/62083/first.jpg", "AURORA/data/something/frames/62083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of sock so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115015", "images": ["AURORA/data/something/frames/118091/first.jpg", "AURORA/data/something/frames/118091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115016", "images": ["AURORA/data/something/frames/2970/first.jpg", "AURORA/data/something/frames/2970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet with handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000115017", "images": ["AURORA/data/something/frames/147131/first.jpg", "AURORA/data/something/frames/147131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from pen with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115018", "images": ["AURORA/data/something/frames/93652/first.jpg", "AURORA/data/something/frames/93652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting black spectacles up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115019", "images": ["AURORA/data/something/frames/11248/first.jpg", "AURORA/data/something/frames/11248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting blue colour spectacle box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115020", "images": ["AURORA/data/something/frames/103661/first.jpg", "AURORA/data/something/frames/103661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115021", "images": ["AURORA/data/something/frames/130147/first.jpg", "AURORA/data/something/frames/130147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting play-doh into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115022", "images": ["AURORA/data/something/frames/218479/first.jpg", "AURORA/data/something/frames/218479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000115023", "images": ["AURORA/data/something/frames/104468/first.jpg", "AURORA/data/something/frames/104468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink blush on from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115024", "images": ["AURORA/data/something/frames/17535/first.jpg", "AURORA/data/something/frames/17535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115025", "images": ["AURORA/data/something/frames/2324/first.jpg", "AURORA/data/something/frames/2324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a rubix cube with a hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115026", "images": ["AURORA/data/something/frames/189371/first.jpg", "AURORA/data/something/frames/189371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115027", "images": ["AURORA/data/something/frames/92373/first.jpg", "AURORA/data/something/frames/92373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115028", "images": ["AURORA/data/something/frames/196364/first.jpg", "AURORA/data/something/frames/196364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy wheel into green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115029", "images": ["AURORA/data/something/frames/120000/first.jpg", "AURORA/data/something/frames/120000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115030", "images": ["AURORA/data/something/frames/200662/first.jpg", "AURORA/data/something/frames/200662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115031", "images": ["AURORA/data/something/frames/126386/first.jpg", "AURORA/data/something/frames/126386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115032", "images": ["AURORA/data/something/frames/133641/first.jpg", "AURORA/data/something/frames/133641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glass with brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115033", "images": ["AURORA/data/something/frames/130669/first.jpg", "AURORA/data/something/frames/130669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000115034", "images": ["AURORA/data/something/frames/173220/first.jpg", "AURORA/data/something/frames/173220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker and jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115035", "images": ["AURORA/data/something/frames/30537/first.jpg", "AURORA/data/something/frames/30537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115036", "images": ["AURORA/data/something/frames/201987/first.jpg", "AURORA/data/something/frames/201987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115037", "images": ["AURORA/data/something/frames/23835/first.jpg", "AURORA/data/something/frames/23835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115038", "images": ["AURORA/data/something/frames/119903/first.jpg", "AURORA/data/something/frames/119903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115039", "images": ["AURORA/data/something/frames/25846/first.jpg", "AURORA/data/something/frames/25846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayons, pencilbox and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115040", "images": ["AURORA/data/something/frames/203953/first.jpg", "AURORA/data/something/frames/203953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse onto a mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000115041", "images": ["AURORA/data/something/frames/133030/first.jpg", "AURORA/data/something/frames/133030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a shoe colliding with another shoe and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115042", "images": ["AURORA/data/something/frames/164547/first.jpg", "AURORA/data/something/frames/164547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning canned food upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115043", "images": ["AURORA/data/something/frames/207893/first.jpg", "AURORA/data/something/frames/207893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115044", "images": ["AURORA/data/something/frames/170043/first.jpg", "AURORA/data/something/frames/170043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a usb so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115045", "images": ["AURORA/data/something/frames/39583/first.jpg", "AURORA/data/something/frames/39583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a [pen amongst other pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000115046", "images": ["AURORA/data/something/frames/132966/first.jpg", "AURORA/data/something/frames/132966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115047", "images": ["AURORA/data/something/frames/196314/first.jpg", "AURORA/data/something/frames/196314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid hand soap off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000115048", "images": ["AURORA/data/something/frames/122981/first.jpg", "AURORA/data/something/frames/122981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) tissue wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115049", "images": ["AURORA/data/something/frames/89367/first.jpg", "AURORA/data/something/frames/89367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115050", "images": ["AURORA/data/something/frames/4689/first.jpg", "AURORA/data/something/frames/4689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yo-yo and marble so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115051", "images": ["AURORA/data/something/frames/127592/first.jpg", "AURORA/data/something/frames/127592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pipe cleaner so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115052", "images": ["AURORA/data/something/frames/27792/first.jpg", "AURORA/data/something/frames/27792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring vodka into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115053", "images": ["AURORA/data/something/frames/71417/first.jpg", "AURORA/data/something/frames/71417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tiger toy on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115054", "images": ["AURORA/data/something/frames/32992/first.jpg", "AURORA/data/something/frames/32992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115055", "images": ["AURORA/data/something/frames/67810/first.jpg", "AURORA/data/something/frames/67810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115056", "images": ["AURORA/data/something/frames/196076/first.jpg", "AURORA/data/something/frames/196076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a plate with mexican dip container on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115057", "images": ["AURORA/data/something/frames/219708/first.jpg", "AURORA/data/something/frames/219708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115058", "images": ["AURORA/data/something/frames/33456/first.jpg", "AURORA/data/something/frames/33456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115059", "images": ["AURORA/data/something/frames/145001/first.jpg", "AURORA/data/something/frames/145001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser on the edge of window so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115060", "images": ["AURORA/data/something/frames/184846/first.jpg", "AURORA/data/something/frames/184846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking table salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115061", "images": ["AURORA/data/something/frames/195091/first.jpg", "AURORA/data/something/frames/195091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardstock just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115062", "images": ["AURORA/data/something/frames/66930/first.jpg", "AURORA/data/something/frames/66930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115063", "images": ["AURORA/data/something/frames/155059/first.jpg", "AURORA/data/something/frames/155059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wire onto tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115064", "images": ["AURORA/data/something/frames/1705/first.jpg", "AURORA/data/something/frames/1705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing waste bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115065", "images": ["AURORA/data/something/frames/29729/first.jpg", "AURORA/data/something/frames/29729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115066", "images": ["AURORA/data/something/frames/1521/first.jpg", "AURORA/data/something/frames/1521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and banana closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115067", "images": ["AURORA/data/something/frames/129914/first.jpg", "AURORA/data/something/frames/129914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothpaste onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115068", "images": ["AURORA/data/something/frames/191134/first.jpg", "AURORA/data/something/frames/191134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115069", "images": ["AURORA/data/something/frames/173712/first.jpg", "AURORA/data/something/frames/173712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a thermometer out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115070", "images": ["AURORA/data/something/frames/149222/first.jpg", "AURORA/data/something/frames/149222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spatula onto stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000115071", "images": ["AURORA/data/something/frames/111809/first.jpg", "AURORA/data/something/frames/111809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115072", "images": ["AURORA/data/something/frames/193078/first.jpg", "AURORA/data/something/frames/193078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115073", "images": ["AURORA/data/something/frames/123531/first.jpg", "AURORA/data/something/frames/123531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bus ticket so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115074", "images": ["AURORA/data/something/frames/32267/first.jpg", "AURORA/data/something/frames/32267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115075", "images": ["AURORA/data/something/frames/9679/first.jpg", "AURORA/data/something/frames/9679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator in front of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000115076", "images": ["AURORA/data/something/frames/8739/first.jpg", "AURORA/data/something/frames/8739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple balloon pump from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115077", "images": ["AURORA/data/something/frames/220641/first.jpg", "AURORA/data/something/frames/220641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115078", "images": ["AURORA/data/something/frames/142853/first.jpg", "AURORA/data/something/frames/142853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking water bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115079", "images": ["AURORA/data/something/frames/130937/first.jpg", "AURORA/data/something/frames/130937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and cup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115080", "images": ["AURORA/data/something/frames/171127/first.jpg", "AURORA/data/something/frames/171127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil next to a magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000115081", "images": ["AURORA/data/something/frames/16733/first.jpg", "AURORA/data/something/frames/16733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power supply cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115082", "images": ["AURORA/data/something/frames/99996/first.jpg", "AURORA/data/something/frames/99996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling seltzer onto grape juice"}, {"from": "gpt", "value": ""}]} +{"id": "000000115083", "images": ["AURORA/data/something/frames/14859/first.jpg", "AURORA/data/something/frames/14859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking box from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115084", "images": ["AURORA/data/something/frames/132868/first.jpg", "AURORA/data/something/frames/132868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering green toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000115085", "images": ["AURORA/data/something/frames/74719/first.jpg", "AURORA/data/something/frames/74719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling towel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115086", "images": ["AURORA/data/something/frames/117865/first.jpg", "AURORA/data/something/frames/117865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow ball into glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115087", "images": ["AURORA/data/something/frames/167671/first.jpg", "AURORA/data/something/frames/167671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering teething ring with bib"}, {"from": "gpt", "value": ""}]} +{"id": "000000115088", "images": ["AURORA/data/something/frames/8283/first.jpg", "AURORA/data/something/frames/8283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bobby pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115089", "images": ["AURORA/data/something/frames/44585/first.jpg", "AURORA/data/something/frames/44585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into jar until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115090", "images": ["AURORA/data/something/frames/33311/first.jpg", "AURORA/data/something/frames/33311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tablet upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115091", "images": ["AURORA/data/something/frames/32532/first.jpg", "AURORA/data/something/frames/32532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen and a bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115092", "images": ["AURORA/data/something/frames/174635/first.jpg", "AURORA/data/something/frames/174635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pencil up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115093", "images": ["AURORA/data/something/frames/151592/first.jpg", "AURORA/data/something/frames/151592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen similar to the other pens that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115094", "images": ["AURORA/data/something/frames/97094/first.jpg", "AURORA/data/something/frames/97094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chair towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115095", "images": ["AURORA/data/something/frames/141825/first.jpg", "AURORA/data/something/frames/141825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vial on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115096", "images": ["AURORA/data/something/frames/50750/first.jpg", "AURORA/data/something/frames/50750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115097", "images": ["AURORA/data/something/frames/201173/first.jpg", "AURORA/data/something/frames/201173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a steel piece on the edge of steel stick so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115098", "images": ["AURORA/data/something/frames/4818/first.jpg", "AURORA/data/something/frames/4818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork among forks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115099", "images": ["AURORA/data/something/frames/163869/first.jpg", "AURORA/data/something/frames/163869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a fork closer to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000115100", "images": ["AURORA/data/something/frames/52979/first.jpg", "AURORA/data/something/frames/52979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115101", "images": ["AURORA/data/something/frames/69679/first.jpg", "AURORA/data/something/frames/69679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115102", "images": ["AURORA/data/something/frames/81376/first.jpg", "AURORA/data/something/frames/81376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving action figure across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115103", "images": ["AURORA/data/something/frames/4752/first.jpg", "AURORA/data/something/frames/4752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115104", "images": ["AURORA/data/something/frames/73507/first.jpg", "AURORA/data/something/frames/73507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000115105", "images": ["AURORA/data/something/frames/114030/first.jpg", "AURORA/data/something/frames/114030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115106", "images": ["AURORA/data/something/frames/143570/first.jpg", "AURORA/data/something/frames/143570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning salt shaker upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115107", "images": ["AURORA/data/something/frames/189482/first.jpg", "AURORA/data/something/frames/189482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115108", "images": ["AURORA/data/something/frames/4143/first.jpg", "AURORA/data/something/frames/4143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115109", "images": ["AURORA/data/something/frames/163521/first.jpg", "AURORA/data/something/frames/163521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork next to knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000115110", "images": ["AURORA/data/something/frames/14257/first.jpg", "AURORA/data/something/frames/14257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pan with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115111", "images": ["AURORA/data/something/frames/193707/first.jpg", "AURORA/data/something/frames/193707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000115112", "images": ["AURORA/data/something/frames/204125/first.jpg", "AURORA/data/something/frames/204125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115113", "images": ["AURORA/data/something/frames/16809/first.jpg", "AURORA/data/something/frames/16809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sugarpot so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115114", "images": ["AURORA/data/something/frames/69064/first.jpg", "AURORA/data/something/frames/69064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115115", "images": ["AURORA/data/something/frames/46846/first.jpg", "AURORA/data/something/frames/46846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a water tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000115116", "images": ["AURORA/data/something/frames/112347/first.jpg", "AURORA/data/something/frames/112347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115117", "images": ["AURORA/data/something/frames/133411/first.jpg", "AURORA/data/something/frames/133411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering luggage tag with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115118", "images": ["AURORA/data/something/frames/192810/first.jpg", "AURORA/data/something/frames/192810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115119", "images": ["AURORA/data/something/frames/94638/first.jpg", "AURORA/data/something/frames/94638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of napkin so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115120", "images": ["AURORA/data/something/frames/138117/first.jpg", "AURORA/data/something/frames/138117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115121", "images": ["AURORA/data/something/frames/50773/first.jpg", "AURORA/data/something/frames/50773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking the water recipient so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115122", "images": ["AURORA/data/something/frames/193163/first.jpg", "AURORA/data/something/frames/193163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115123", "images": ["AURORA/data/something/frames/153593/first.jpg", "AURORA/data/something/frames/153593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115124", "images": ["AURORA/data/something/frames/144926/first.jpg", "AURORA/data/something/frames/144926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bunch of keys with pencil on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115125", "images": ["AURORA/data/something/frames/85931/first.jpg", "AURORA/data/something/frames/85931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading coins onto mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000115126", "images": ["AURORA/data/something/frames/40860/first.jpg", "AURORA/data/something/frames/40860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115127", "images": ["AURORA/data/something/frames/155109/first.jpg", "AURORA/data/something/frames/155109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dice on table of similar items"}, {"from": "gpt", "value": ""}]} +{"id": "000000115128", "images": ["AURORA/data/something/frames/178899/first.jpg", "AURORA/data/something/frames/178899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115129", "images": ["AURORA/data/something/frames/217301/first.jpg", "AURORA/data/something/frames/217301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115130", "images": ["AURORA/data/something/frames/51858/first.jpg", "AURORA/data/something/frames/51858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115131", "images": ["AURORA/data/something/frames/187867/first.jpg", "AURORA/data/something/frames/187867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a screwdriver off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115132", "images": ["AURORA/data/something/frames/145237/first.jpg", "AURORA/data/something/frames/145237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000115133", "images": ["AURORA/data/something/frames/144798/first.jpg", "AURORA/data/something/frames/144798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000115134", "images": ["AURORA/data/something/frames/129314/first.jpg", "AURORA/data/something/frames/129314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115135", "images": ["AURORA/data/something/frames/146809/first.jpg", "AURORA/data/something/frames/146809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and wallet closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115136", "images": ["AURORA/data/something/frames/115794/first.jpg", "AURORA/data/something/frames/115794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115137", "images": ["AURORA/data/something/frames/54990/first.jpg", "AURORA/data/something/frames/54990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of onion so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115138", "images": ["AURORA/data/something/frames/135935/first.jpg", "AURORA/data/something/frames/135935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115139", "images": ["AURORA/data/something/frames/44608/first.jpg", "AURORA/data/something/frames/44608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of exercise band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115140", "images": ["AURORA/data/something/frames/66100/first.jpg", "AURORA/data/something/frames/66100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mouse with a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000115141", "images": ["AURORA/data/something/frames/180067/first.jpg", "AURORA/data/something/frames/180067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115142", "images": ["AURORA/data/something/frames/53968/first.jpg", "AURORA/data/something/frames/53968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sandal on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115143", "images": ["AURORA/data/something/frames/47953/first.jpg", "AURORA/data/something/frames/47953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000115144", "images": ["AURORA/data/something/frames/81261/first.jpg", "AURORA/data/something/frames/81261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115145", "images": ["AURORA/data/something/frames/77390/first.jpg", "AURORA/data/something/frames/77390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red bottlecap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115146", "images": ["AURORA/data/something/frames/42720/first.jpg", "AURORA/data/something/frames/42720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115147", "images": ["AURORA/data/something/frames/43950/first.jpg", "AURORA/data/something/frames/43950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a tub without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115148", "images": ["AURORA/data/something/frames/59142/first.jpg", "AURORA/data/something/frames/59142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scotch tape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115149", "images": ["AURORA/data/something/frames/134311/first.jpg", "AURORA/data/something/frames/134311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cufflinks closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115150", "images": ["AURORA/data/something/frames/42956/first.jpg", "AURORA/data/something/frames/42956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching keys with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115151", "images": ["AURORA/data/something/frames/73045/first.jpg", "AURORA/data/something/frames/73045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115152", "images": ["AURORA/data/something/frames/175372/first.jpg", "AURORA/data/something/frames/175372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115153", "images": ["AURORA/data/something/frames/202114/first.jpg", "AURORA/data/something/frames/202114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin and watch away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115154", "images": ["AURORA/data/something/frames/170639/first.jpg", "AURORA/data/something/frames/170639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil next to wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000115155", "images": ["AURORA/data/something/frames/154512/first.jpg", "AURORA/data/something/frames/154512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ink bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115156", "images": ["AURORA/data/something/frames/71643/first.jpg", "AURORA/data/something/frames/71643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping butter off of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000115157", "images": ["AURORA/data/something/frames/186949/first.jpg", "AURORA/data/something/frames/186949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden reeper until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115158", "images": ["AURORA/data/something/frames/201445/first.jpg", "AURORA/data/something/frames/201445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115159", "images": ["AURORA/data/something/frames/115277/first.jpg", "AURORA/data/something/frames/115277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping popcorn up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115160", "images": ["AURORA/data/something/frames/19766/first.jpg", "AURORA/data/something/frames/19766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115161", "images": ["AURORA/data/something/frames/71978/first.jpg", "AURORA/data/something/frames/71978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pot holder being deflected from chalkboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000115162", "images": ["AURORA/data/something/frames/76768/first.jpg", "AURORA/data/something/frames/76768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115163", "images": ["AURORA/data/something/frames/140369/first.jpg", "AURORA/data/something/frames/140369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a container next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115164", "images": ["AURORA/data/something/frames/104152/first.jpg", "AURORA/data/something/frames/104152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115165", "images": ["AURORA/data/something/frames/4288/first.jpg", "AURORA/data/something/frames/4288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking green colour pen among many colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115166", "images": ["AURORA/data/something/frames/137064/first.jpg", "AURORA/data/something/frames/137064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wafer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115167", "images": ["AURORA/data/something/frames/124255/first.jpg", "AURORA/data/something/frames/124255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115168", "images": ["AURORA/data/something/frames/209151/first.jpg", "AURORA/data/something/frames/209151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing canderelbox so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115169", "images": ["AURORA/data/something/frames/129580/first.jpg", "AURORA/data/something/frames/129580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115170", "images": ["AURORA/data/something/frames/16505/first.jpg", "AURORA/data/something/frames/16505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the bottle and the pencil case closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115171", "images": ["AURORA/data/something/frames/220825/first.jpg", "AURORA/data/something/frames/220825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115172", "images": ["AURORA/data/something/frames/475/first.jpg", "AURORA/data/something/frames/475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115173", "images": ["AURORA/data/something/frames/143765/first.jpg", "AURORA/data/something/frames/143765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting folder underneath desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000115174", "images": ["AURORA/data/something/frames/33956/first.jpg", "AURORA/data/something/frames/33956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour coconut water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115175", "images": ["AURORA/data/something/frames/125041/first.jpg", "AURORA/data/something/frames/125041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115176", "images": ["AURORA/data/something/frames/93454/first.jpg", "AURORA/data/something/frames/93454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic ball and plastic ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115177", "images": ["AURORA/data/something/frames/168282/first.jpg", "AURORA/data/something/frames/168282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lipstick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115178", "images": ["AURORA/data/something/frames/81223/first.jpg", "AURORA/data/something/frames/81223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115179", "images": ["AURORA/data/something/frames/44930/first.jpg", "AURORA/data/something/frames/44930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000115180", "images": ["AURORA/data/something/frames/39318/first.jpg", "AURORA/data/something/frames/39318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115181", "images": ["AURORA/data/something/frames/169724/first.jpg", "AURORA/data/something/frames/169724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115182", "images": ["AURORA/data/something/frames/103685/first.jpg", "AURORA/data/something/frames/103685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115183", "images": ["AURORA/data/something/frames/17657/first.jpg", "AURORA/data/something/frames/17657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil next to other similar objects on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115184", "images": ["AURORA/data/something/frames/44451/first.jpg", "AURORA/data/something/frames/44451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115185", "images": ["AURORA/data/something/frames/17532/first.jpg", "AURORA/data/something/frames/17532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115186", "images": ["AURORA/data/something/frames/54391/first.jpg", "AURORA/data/something/frames/54391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving elf closer to buddha"}, {"from": "gpt", "value": ""}]} +{"id": "000000115187", "images": ["AURORA/data/something/frames/10652/first.jpg", "AURORA/data/something/frames/10652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping canister over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115188", "images": ["AURORA/data/something/frames/127806/first.jpg", "AURORA/data/something/frames/127806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cycle away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115189", "images": ["AURORA/data/something/frames/16589/first.jpg", "AURORA/data/something/frames/16589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) part of towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115190", "images": ["AURORA/data/something/frames/73888/first.jpg", "AURORA/data/something/frames/73888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle away from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115191", "images": ["AURORA/data/something/frames/179039/first.jpg", "AURORA/data/something/frames/179039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a figurine from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115192", "images": ["AURORA/data/something/frames/36639/first.jpg", "AURORA/data/something/frames/36639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing battery compartment of tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115193", "images": ["AURORA/data/something/frames/46778/first.jpg", "AURORA/data/something/frames/46778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115194", "images": ["AURORA/data/something/frames/195729/first.jpg", "AURORA/data/something/frames/195729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green cup onto duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115195", "images": ["AURORA/data/something/frames/217109/first.jpg", "AURORA/data/something/frames/217109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger cable into cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115196", "images": ["AURORA/data/something/frames/177650/first.jpg", "AURORA/data/something/frames/177650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching the wall with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115197", "images": ["AURORA/data/something/frames/11944/first.jpg", "AURORA/data/something/frames/11944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding bed sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115198", "images": ["AURORA/data/something/frames/4903/first.jpg", "AURORA/data/something/frames/4903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging vga 9 pin plug into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115199", "images": ["AURORA/data/something/frames/16215/first.jpg", "AURORA/data/something/frames/16215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pulling plastic spray from right to left from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115200", "images": ["AURORA/data/something/frames/36238/first.jpg", "AURORA/data/something/frames/36238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115201", "images": ["AURORA/data/something/frames/46141/first.jpg", "AURORA/data/something/frames/46141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing glass, revealing scissor behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115202", "images": ["AURORA/data/something/frames/137966/first.jpg", "AURORA/data/something/frames/137966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115203", "images": ["AURORA/data/something/frames/181899/first.jpg", "AURORA/data/something/frames/181899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115204", "images": ["AURORA/data/something/frames/142940/first.jpg", "AURORA/data/something/frames/142940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug and canister on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115205", "images": ["AURORA/data/something/frames/159005/first.jpg", "AURORA/data/something/frames/159005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking jacket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115206", "images": ["AURORA/data/something/frames/149508/first.jpg", "AURORA/data/something/frames/149508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and glasses closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115207", "images": ["AURORA/data/something/frames/131887/first.jpg", "AURORA/data/something/frames/131887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115208", "images": ["AURORA/data/something/frames/220496/first.jpg", "AURORA/data/something/frames/220496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115209", "images": ["AURORA/data/something/frames/118392/first.jpg", "AURORA/data/something/frames/118392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115210", "images": ["AURORA/data/something/frames/27776/first.jpg", "AURORA/data/something/frames/27776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric plug into an electric outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115211", "images": ["AURORA/data/something/frames/154500/first.jpg", "AURORA/data/something/frames/154500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking chocolate bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115212", "images": ["AURORA/data/something/frames/178117/first.jpg", "AURORA/data/something/frames/178117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115213", "images": ["AURORA/data/something/frames/151772/first.jpg", "AURORA/data/something/frames/151772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115214", "images": ["AURORA/data/something/frames/122617/first.jpg", "AURORA/data/something/frames/122617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking medicine from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115215", "images": ["AURORA/data/something/frames/13057/first.jpg", "AURORA/data/something/frames/13057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coaster with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115216", "images": ["AURORA/data/something/frames/149363/first.jpg", "AURORA/data/something/frames/149363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the mate onto helmet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115217", "images": ["AURORA/data/something/frames/101819/first.jpg", "AURORA/data/something/frames/101819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into extension cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000115218", "images": ["AURORA/data/something/frames/22355/first.jpg", "AURORA/data/something/frames/22355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115219", "images": ["AURORA/data/something/frames/89400/first.jpg", "AURORA/data/something/frames/89400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking padlock from glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115220", "images": ["AURORA/data/something/frames/138804/first.jpg", "AURORA/data/something/frames/138804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115221", "images": ["AURORA/data/something/frames/152916/first.jpg", "AURORA/data/something/frames/152916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt and pepper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115222", "images": ["AURORA/data/something/frames/43061/first.jpg", "AURORA/data/something/frames/43061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115223", "images": ["AURORA/data/something/frames/86277/first.jpg", "AURORA/data/something/frames/86277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115224", "images": ["AURORA/data/something/frames/210726/first.jpg", "AURORA/data/something/frames/210726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115225", "images": ["AURORA/data/something/frames/117638/first.jpg", "AURORA/data/something/frames/117638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115226", "images": ["AURORA/data/something/frames/55099/first.jpg", "AURORA/data/something/frames/55099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and usb cable closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115227", "images": ["AURORA/data/something/frames/12055/first.jpg", "AURORA/data/something/frames/12055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115228", "images": ["AURORA/data/something/frames/157717/first.jpg", "AURORA/data/something/frames/157717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115229", "images": ["AURORA/data/something/frames/122816/first.jpg", "AURORA/data/something/frames/122816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an eyeglass case towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115230", "images": ["AURORA/data/something/frames/93555/first.jpg", "AURORA/data/something/frames/93555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115231", "images": ["AURORA/data/something/frames/91902/first.jpg", "AURORA/data/something/frames/91902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115232", "images": ["AURORA/data/something/frames/121078/first.jpg", "AURORA/data/something/frames/121078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching glasses with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115233", "images": ["AURORA/data/something/frames/92119/first.jpg", "AURORA/data/something/frames/92119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering plastic knife with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115234", "images": ["AURORA/data/something/frames/219665/first.jpg", "AURORA/data/something/frames/219665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto the little globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115235", "images": ["AURORA/data/something/frames/94090/first.jpg", "AURORA/data/something/frames/94090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115236", "images": ["AURORA/data/something/frames/213998/first.jpg", "AURORA/data/something/frames/213998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000115237", "images": ["AURORA/data/something/frames/207295/first.jpg", "AURORA/data/something/frames/207295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115238", "images": ["AURORA/data/something/frames/175726/first.jpg", "AURORA/data/something/frames/175726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115239", "images": ["AURORA/data/something/frames/87607/first.jpg", "AURORA/data/something/frames/87607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an egg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115240", "images": ["AURORA/data/something/frames/220318/first.jpg", "AURORA/data/something/frames/220318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soft ball into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115241", "images": ["AURORA/data/something/frames/212353/first.jpg", "AURORA/data/something/frames/212353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle onto wooden ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115242", "images": ["AURORA/data/something/frames/69911/first.jpg", "AURORA/data/something/frames/69911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115243", "images": ["AURORA/data/something/frames/104745/first.jpg", "AURORA/data/something/frames/104745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115244", "images": ["AURORA/data/something/frames/27809/first.jpg", "AURORA/data/something/frames/27809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a bird cage"}, {"from": "gpt", "value": ""}]} +{"id": "000000115245", "images": ["AURORA/data/something/frames/1484/first.jpg", "AURORA/data/something/frames/1484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of fluorescent light bulb"}, {"from": "gpt", "value": ""}]} +{"id": "000000115246", "images": ["AURORA/data/something/frames/129210/first.jpg", "AURORA/data/something/frames/129210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115247", "images": ["AURORA/data/something/frames/64254/first.jpg", "AURORA/data/something/frames/64254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115248", "images": ["AURORA/data/something/frames/212253/first.jpg", "AURORA/data/something/frames/212253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black hair tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000115249", "images": ["AURORA/data/something/frames/152333/first.jpg", "AURORA/data/something/frames/152333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting banana leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000115250", "images": ["AURORA/data/something/frames/120110/first.jpg", "AURORA/data/something/frames/120110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the frame of sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115251", "images": ["AURORA/data/something/frames/126004/first.jpg", "AURORA/data/something/frames/126004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a coin with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115252", "images": ["AURORA/data/something/frames/114711/first.jpg", "AURORA/data/something/frames/114711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handout"}, {"from": "gpt", "value": ""}]} +{"id": "000000115253", "images": ["AURORA/data/something/frames/86740/first.jpg", "AURORA/data/something/frames/86740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115254", "images": ["AURORA/data/something/frames/160106/first.jpg", "AURORA/data/something/frames/160106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pencil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115255", "images": ["AURORA/data/something/frames/25815/first.jpg", "AURORA/data/something/frames/25815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115256", "images": ["AURORA/data/something/frames/175654/first.jpg", "AURORA/data/something/frames/175654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115257", "images": ["AURORA/data/something/frames/191030/first.jpg", "AURORA/data/something/frames/191030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115258", "images": ["AURORA/data/something/frames/7818/first.jpg", "AURORA/data/something/frames/7818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cleaner, revealing glass behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115259", "images": ["AURORA/data/something/frames/24715/first.jpg", "AURORA/data/something/frames/24715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping balls into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115260", "images": ["AURORA/data/something/frames/72239/first.jpg", "AURORA/data/something/frames/72239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork similar to many forks on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115261", "images": ["AURORA/data/something/frames/42754/first.jpg", "AURORA/data/something/frames/42754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and usb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115262", "images": ["AURORA/data/something/frames/213488/first.jpg", "AURORA/data/something/frames/213488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: candy colliding with candy and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115263", "images": ["AURORA/data/something/frames/188112/first.jpg", "AURORA/data/something/frames/188112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy truck from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115264", "images": ["AURORA/data/something/frames/13022/first.jpg", "AURORA/data/something/frames/13022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting the counter with a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000115265", "images": ["AURORA/data/something/frames/50618/first.jpg", "AURORA/data/something/frames/50618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115266", "images": ["AURORA/data/something/frames/34745/first.jpg", "AURORA/data/something/frames/34745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging jack into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115267", "images": ["AURORA/data/something/frames/175746/first.jpg", "AURORA/data/something/frames/175746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115268", "images": ["AURORA/data/something/frames/67117/first.jpg", "AURORA/data/something/frames/67117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115269", "images": ["AURORA/data/something/frames/140874/first.jpg", "AURORA/data/something/frames/140874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115270", "images": ["AURORA/data/something/frames/211453/first.jpg", "AURORA/data/something/frames/211453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115271", "images": ["AURORA/data/something/frames/184891/first.jpg", "AURORA/data/something/frames/184891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone underneath a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115272", "images": ["AURORA/data/something/frames/12107/first.jpg", "AURORA/data/something/frames/12107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soda pop can behind coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000115273", "images": ["AURORA/data/something/frames/184538/first.jpg", "AURORA/data/something/frames/184538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115274", "images": ["AURORA/data/something/frames/145150/first.jpg", "AURORA/data/something/frames/145150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering case with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115275", "images": ["AURORA/data/something/frames/5085/first.jpg", "AURORA/data/something/frames/5085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115276", "images": ["AURORA/data/something/frames/85258/first.jpg", "AURORA/data/something/frames/85258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue lighter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115277", "images": ["AURORA/data/something/frames/38117/first.jpg", "AURORA/data/something/frames/38117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pack of tissues closer to a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115278", "images": ["AURORA/data/something/frames/178214/first.jpg", "AURORA/data/something/frames/178214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115279", "images": ["AURORA/data/something/frames/192867/first.jpg", "AURORA/data/something/frames/192867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115280", "images": ["AURORA/data/something/frames/42903/first.jpg", "AURORA/data/something/frames/42903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115281", "images": ["AURORA/data/something/frames/54227/first.jpg", "AURORA/data/something/frames/54227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cord into a charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115282", "images": ["AURORA/data/something/frames/94498/first.jpg", "AURORA/data/something/frames/94498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000115283", "images": ["AURORA/data/something/frames/206954/first.jpg", "AURORA/data/something/frames/206954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting sachet with chopstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000115284", "images": ["AURORA/data/something/frames/42610/first.jpg", "AURORA/data/something/frames/42610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115285", "images": ["AURORA/data/something/frames/191903/first.jpg", "AURORA/data/something/frames/191903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping red hair band in front of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115286", "images": ["AURORA/data/something/frames/33797/first.jpg", "AURORA/data/something/frames/33797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger cable into ipod"}, {"from": "gpt", "value": ""}]} +{"id": "000000115287", "images": ["AURORA/data/something/frames/13583/first.jpg", "AURORA/data/something/frames/13583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing dog toy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115288", "images": ["AURORA/data/something/frames/102948/first.jpg", "AURORA/data/something/frames/102948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115289", "images": ["AURORA/data/something/frames/90011/first.jpg", "AURORA/data/something/frames/90011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cards and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115290", "images": ["AURORA/data/something/frames/56620/first.jpg", "AURORA/data/something/frames/56620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencils onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115291", "images": ["AURORA/data/something/frames/72564/first.jpg", "AURORA/data/something/frames/72564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling bags of cookies up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115292", "images": ["AURORA/data/something/frames/205079/first.jpg", "AURORA/data/something/frames/205079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing ripping napkin in half into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115293", "images": ["AURORA/data/something/frames/138504/first.jpg", "AURORA/data/something/frames/138504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000115294", "images": ["AURORA/data/something/frames/191560/first.jpg", "AURORA/data/something/frames/191560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115295", "images": ["AURORA/data/something/frames/139585/first.jpg", "AURORA/data/something/frames/139585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing change into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115296", "images": ["AURORA/data/something/frames/33353/first.jpg", "AURORA/data/something/frames/33353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pink bunny closer to a carrot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115297", "images": ["AURORA/data/something/frames/72063/first.jpg", "AURORA/data/something/frames/72063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115298", "images": ["AURORA/data/something/frames/185483/first.jpg", "AURORA/data/something/frames/185483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and statue closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115299", "images": ["AURORA/data/something/frames/42742/first.jpg", "AURORA/data/something/frames/42742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tea light candle onto ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115300", "images": ["AURORA/data/something/frames/218443/first.jpg", "AURORA/data/something/frames/218443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115301", "images": ["AURORA/data/something/frames/60164/first.jpg", "AURORA/data/something/frames/60164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115302", "images": ["AURORA/data/something/frames/113944/first.jpg", "AURORA/data/something/frames/113944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste tube and toothpaste tube so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115303", "images": ["AURORA/data/something/frames/35022/first.jpg", "AURORA/data/something/frames/35022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton into pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115304", "images": ["AURORA/data/something/frames/35569/first.jpg", "AURORA/data/something/frames/35569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a plastic pipe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115305", "images": ["AURORA/data/something/frames/218482/first.jpg", "AURORA/data/something/frames/218482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115306", "images": ["AURORA/data/something/frames/49888/first.jpg", "AURORA/data/something/frames/49888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115307", "images": ["AURORA/data/something/frames/48861/first.jpg", "AURORA/data/something/frames/48861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115308", "images": ["AURORA/data/something/frames/78129/first.jpg", "AURORA/data/something/frames/78129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sharpner next to white colour board clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000115309", "images": ["AURORA/data/something/frames/10018/first.jpg", "AURORA/data/something/frames/10018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to flower pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115310", "images": ["AURORA/data/something/frames/70685/first.jpg", "AURORA/data/something/frames/70685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper heart into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115311", "images": ["AURORA/data/something/frames/124924/first.jpg", "AURORA/data/something/frames/124924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115312", "images": ["AURORA/data/something/frames/191646/first.jpg", "AURORA/data/something/frames/191646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pear onto the book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115313", "images": ["AURORA/data/something/frames/181561/first.jpg", "AURORA/data/something/frames/181561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115314", "images": ["AURORA/data/something/frames/52295/first.jpg", "AURORA/data/something/frames/52295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sphere and a stone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115315", "images": ["AURORA/data/something/frames/206638/first.jpg", "AURORA/data/something/frames/206638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving binoculars away from bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115316", "images": ["AURORA/data/something/frames/174814/first.jpg", "AURORA/data/something/frames/174814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115317", "images": ["AURORA/data/something/frames/104635/first.jpg", "AURORA/data/something/frames/104635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115318", "images": ["AURORA/data/something/frames/127683/first.jpg", "AURORA/data/something/frames/127683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen from a desk drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115319", "images": ["AURORA/data/something/frames/212644/first.jpg", "AURORA/data/something/frames/212644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115320", "images": ["AURORA/data/something/frames/2322/first.jpg", "AURORA/data/something/frames/2322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chess board from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115321", "images": ["AURORA/data/something/frames/179755/first.jpg", "AURORA/data/something/frames/179755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tablet into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115322", "images": ["AURORA/data/something/frames/206826/first.jpg", "AURORA/data/something/frames/206826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115323", "images": ["AURORA/data/something/frames/216913/first.jpg", "AURORA/data/something/frames/216913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000115324", "images": ["AURORA/data/something/frames/72089/first.jpg", "AURORA/data/something/frames/72089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip to handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115325", "images": ["AURORA/data/something/frames/150265/first.jpg", "AURORA/data/something/frames/150265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a matchbox so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115326", "images": ["AURORA/data/something/frames/188857/first.jpg", "AURORA/data/something/frames/188857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter closer to tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115327", "images": ["AURORA/data/something/frames/159804/first.jpg", "AURORA/data/something/frames/159804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping wallet over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115328", "images": ["AURORA/data/something/frames/111066/first.jpg", "AURORA/data/something/frames/111066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coin away from a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115329", "images": ["AURORA/data/something/frames/218135/first.jpg", "AURORA/data/something/frames/218135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115330", "images": ["AURORA/data/something/frames/195877/first.jpg", "AURORA/data/something/frames/195877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115331", "images": ["AURORA/data/something/frames/12828/first.jpg", "AURORA/data/something/frames/12828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a card reader so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115332", "images": ["AURORA/data/something/frames/152224/first.jpg", "AURORA/data/something/frames/152224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115333", "images": ["AURORA/data/something/frames/114314/first.jpg", "AURORA/data/something/frames/114314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil from educational kits"}, {"from": "gpt", "value": ""}]} +{"id": "000000115334", "images": ["AURORA/data/something/frames/72576/first.jpg", "AURORA/data/something/frames/72576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115335", "images": ["AURORA/data/something/frames/53650/first.jpg", "AURORA/data/something/frames/53650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy car being deflected from mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115336", "images": ["AURORA/data/something/frames/94371/first.jpg", "AURORA/data/something/frames/94371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl in front of pencil sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000115337", "images": ["AURORA/data/something/frames/177656/first.jpg", "AURORA/data/something/frames/177656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115338", "images": ["AURORA/data/something/frames/30481/first.jpg", "AURORA/data/something/frames/30481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115339", "images": ["AURORA/data/something/frames/43477/first.jpg", "AURORA/data/something/frames/43477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing table from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115340", "images": ["AURORA/data/something/frames/144859/first.jpg", "AURORA/data/something/frames/144859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000115341", "images": ["AURORA/data/something/frames/71054/first.jpg", "AURORA/data/something/frames/71054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115342", "images": ["AURORA/data/something/frames/12503/first.jpg", "AURORA/data/something/frames/12503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115343", "images": ["AURORA/data/something/frames/154348/first.jpg", "AURORA/data/something/frames/154348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cigarette into a pack of cigarettes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115344", "images": ["AURORA/data/something/frames/74125/first.jpg", "AURORA/data/something/frames/74125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000115345", "images": ["AURORA/data/something/frames/63204/first.jpg", "AURORA/data/something/frames/63204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a stapler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115346", "images": ["AURORA/data/something/frames/23126/first.jpg", "AURORA/data/something/frames/23126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming love birds"}, {"from": "gpt", "value": ""}]} +{"id": "000000115347", "images": ["AURORA/data/something/frames/111388/first.jpg", "AURORA/data/something/frames/111388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115348", "images": ["AURORA/data/something/frames/138537/first.jpg", "AURORA/data/something/frames/138537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying electronic cigarette on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115349", "images": ["AURORA/data/something/frames/171868/first.jpg", "AURORA/data/something/frames/171868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting jarlid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115350", "images": ["AURORA/data/something/frames/114543/first.jpg", "AURORA/data/something/frames/114543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and remote control away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115351", "images": ["AURORA/data/something/frames/55927/first.jpg", "AURORA/data/something/frames/55927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115352", "images": ["AURORA/data/something/frames/151631/first.jpg", "AURORA/data/something/frames/151631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000115353", "images": ["AURORA/data/something/frames/205567/first.jpg", "AURORA/data/something/frames/205567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle, spanner and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115354", "images": ["AURORA/data/something/frames/47916/first.jpg", "AURORA/data/something/frames/47916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a sharpener with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115355", "images": ["AURORA/data/something/frames/19508/first.jpg", "AURORA/data/something/frames/19508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000115356", "images": ["AURORA/data/something/frames/100122/first.jpg", "AURORA/data/something/frames/100122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wiimote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115357", "images": ["AURORA/data/something/frames/60486/first.jpg", "AURORA/data/something/frames/60486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading soap onto cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115358", "images": ["AURORA/data/something/frames/100819/first.jpg", "AURORA/data/something/frames/100819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115359", "images": ["AURORA/data/something/frames/160246/first.jpg", "AURORA/data/something/frames/160246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a steel glass colliding with another steel glass and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115360", "images": ["AURORA/data/something/frames/115764/first.jpg", "AURORA/data/something/frames/115764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115361", "images": ["AURORA/data/something/frames/181866/first.jpg", "AURORA/data/something/frames/181866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115362", "images": ["AURORA/data/something/frames/84385/first.jpg", "AURORA/data/something/frames/84385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115363", "images": ["AURORA/data/something/frames/10025/first.jpg", "AURORA/data/something/frames/10025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115364", "images": ["AURORA/data/something/frames/107887/first.jpg", "AURORA/data/something/frames/107887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of wood log without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115365", "images": ["AURORA/data/something/frames/28043/first.jpg", "AURORA/data/something/frames/28043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bag upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115366", "images": ["AURORA/data/something/frames/28140/first.jpg", "AURORA/data/something/frames/28140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mice from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115367", "images": ["AURORA/data/something/frames/169163/first.jpg", "AURORA/data/something/frames/169163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping duster next to green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115368", "images": ["AURORA/data/something/frames/166717/first.jpg", "AURORA/data/something/frames/166717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop in front of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000115369", "images": ["AURORA/data/something/frames/108720/first.jpg", "AURORA/data/something/frames/108720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wifi pod"}, {"from": "gpt", "value": ""}]} +{"id": "000000115370", "images": ["AURORA/data/something/frames/56254/first.jpg", "AURORA/data/something/frames/56254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115371", "images": ["AURORA/data/something/frames/84500/first.jpg", "AURORA/data/something/frames/84500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115372", "images": ["AURORA/data/something/frames/190818/first.jpg", "AURORA/data/something/frames/190818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking mobile battery so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115373", "images": ["AURORA/data/something/frames/98897/first.jpg", "AURORA/data/something/frames/98897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking flowers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115374", "images": ["AURORA/data/something/frames/212171/first.jpg", "AURORA/data/something/frames/212171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paint brush behind paper holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115375", "images": ["AURORA/data/something/frames/199147/first.jpg", "AURORA/data/something/frames/199147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging a piece of garlic out of rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000115376", "images": ["AURORA/data/something/frames/54508/first.jpg", "AURORA/data/something/frames/54508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115377", "images": ["AURORA/data/something/frames/21482/first.jpg", "AURORA/data/something/frames/21482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting food container with sandal"}, {"from": "gpt", "value": ""}]} +{"id": "000000115378", "images": ["AURORA/data/something/frames/203/first.jpg", "AURORA/data/something/frames/203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bowl on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115379", "images": ["AURORA/data/something/frames/156106/first.jpg", "AURORA/data/something/frames/156106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000115380", "images": ["AURORA/data/something/frames/126638/first.jpg", "AURORA/data/something/frames/126638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cloth from behind of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115381", "images": ["AURORA/data/something/frames/32235/first.jpg", "AURORA/data/something/frames/32235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and wallet so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115382", "images": ["AURORA/data/something/frames/174895/first.jpg", "AURORA/data/something/frames/174895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting water jug up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115383", "images": ["AURORA/data/something/frames/156949/first.jpg", "AURORA/data/something/frames/156949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115384", "images": ["AURORA/data/something/frames/155958/first.jpg", "AURORA/data/something/frames/155958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white book marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115385", "images": ["AURORA/data/something/frames/81282/first.jpg", "AURORA/data/something/frames/81282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a green container with a yellow saucer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115386", "images": ["AURORA/data/something/frames/189851/first.jpg", "AURORA/data/something/frames/189851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering book with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115387", "images": ["AURORA/data/something/frames/56007/first.jpg", "AURORA/data/something/frames/56007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115388", "images": ["AURORA/data/something/frames/66668/first.jpg", "AURORA/data/something/frames/66668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle away from toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000115389", "images": ["AURORA/data/something/frames/51263/first.jpg", "AURORA/data/something/frames/51263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping snus into snusdisk"}, {"from": "gpt", "value": ""}]} +{"id": "000000115390", "images": ["AURORA/data/something/frames/213148/first.jpg", "AURORA/data/something/frames/213148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115391", "images": ["AURORA/data/something/frames/220735/first.jpg", "AURORA/data/something/frames/220735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair with a foot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115392", "images": ["AURORA/data/something/frames/112775/first.jpg", "AURORA/data/something/frames/112775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000115393", "images": ["AURORA/data/something/frames/167567/first.jpg", "AURORA/data/something/frames/167567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115394", "images": ["AURORA/data/something/frames/141791/first.jpg", "AURORA/data/something/frames/141791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something out of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115395", "images": ["AURORA/data/something/frames/152602/first.jpg", "AURORA/data/something/frames/152602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring orange juice into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115396", "images": ["AURORA/data/something/frames/178922/first.jpg", "AURORA/data/something/frames/178922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending flexible microphone so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115397", "images": ["AURORA/data/something/frames/108814/first.jpg", "AURORA/data/something/frames/108814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115398", "images": ["AURORA/data/something/frames/77633/first.jpg", "AURORA/data/something/frames/77633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115399", "images": ["AURORA/data/something/frames/82500/first.jpg", "AURORA/data/something/frames/82500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115400", "images": ["AURORA/data/something/frames/78404/first.jpg", "AURORA/data/something/frames/78404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting iphone with sock on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115401", "images": ["AURORA/data/something/frames/93635/first.jpg", "AURORA/data/something/frames/93635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering plush doll with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115402", "images": ["AURORA/data/something/frames/11436/first.jpg", "AURORA/data/something/frames/11436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an apple with a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115403", "images": ["AURORA/data/something/frames/164404/first.jpg", "AURORA/data/something/frames/164404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115404", "images": ["AURORA/data/something/frames/158423/first.jpg", "AURORA/data/something/frames/158423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cd and cd away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115405", "images": ["AURORA/data/something/frames/166600/first.jpg", "AURORA/data/something/frames/166600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing compressed fuel can so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115406", "images": ["AURORA/data/something/frames/62634/first.jpg", "AURORA/data/something/frames/62634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small sharpener from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115407", "images": ["AURORA/data/something/frames/144516/first.jpg", "AURORA/data/something/frames/144516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a light plug into a standard socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115408", "images": ["AURORA/data/something/frames/107143/first.jpg", "AURORA/data/something/frames/107143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115409", "images": ["AURORA/data/something/frames/186059/first.jpg", "AURORA/data/something/frames/186059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115410", "images": ["AURORA/data/something/frames/168735/first.jpg", "AURORA/data/something/frames/168735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115411", "images": ["AURORA/data/something/frames/136630/first.jpg", "AURORA/data/something/frames/136630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a deodorant next to a glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000115412", "images": ["AURORA/data/something/frames/202946/first.jpg", "AURORA/data/something/frames/202946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a color into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115413", "images": ["AURORA/data/something/frames/130936/first.jpg", "AURORA/data/something/frames/130936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115414", "images": ["AURORA/data/something/frames/145467/first.jpg", "AURORA/data/something/frames/145467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115415", "images": ["AURORA/data/something/frames/70828/first.jpg", "AURORA/data/something/frames/70828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving compass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115416", "images": ["AURORA/data/something/frames/149101/first.jpg", "AURORA/data/something/frames/149101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing piller"}, {"from": "gpt", "value": ""}]} +{"id": "000000115417", "images": ["AURORA/data/something/frames/44324/first.jpg", "AURORA/data/something/frames/44324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000115418", "images": ["AURORA/data/something/frames/94411/first.jpg", "AURORA/data/something/frames/94411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) computermaus of computermaus"}, {"from": "gpt", "value": ""}]} +{"id": "000000115419", "images": ["AURORA/data/something/frames/26824/first.jpg", "AURORA/data/something/frames/26824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bowl with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115420", "images": ["AURORA/data/something/frames/201048/first.jpg", "AURORA/data/something/frames/201048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet closer to coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115421", "images": ["AURORA/data/something/frames/91016/first.jpg", "AURORA/data/something/frames/91016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car and white toy car so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115422", "images": ["AURORA/data/something/frames/116414/first.jpg", "AURORA/data/something/frames/116414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bags into another plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115423", "images": ["AURORA/data/something/frames/153581/first.jpg", "AURORA/data/something/frames/153581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brush from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115424", "images": ["AURORA/data/something/frames/185793/first.jpg", "AURORA/data/something/frames/185793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000115425", "images": ["AURORA/data/something/frames/22957/first.jpg", "AURORA/data/something/frames/22957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with chalk on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115426", "images": ["AURORA/data/something/frames/149075/first.jpg", "AURORA/data/something/frames/149075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115427", "images": ["AURORA/data/something/frames/6597/first.jpg", "AURORA/data/something/frames/6597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115428", "images": ["AURORA/data/something/frames/220074/first.jpg", "AURORA/data/something/frames/220074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115429", "images": ["AURORA/data/something/frames/97455/first.jpg", "AURORA/data/something/frames/97455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a screwdriver behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115430", "images": ["AURORA/data/something/frames/181038/first.jpg", "AURORA/data/something/frames/181038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a piece of cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115431", "images": ["AURORA/data/something/frames/145321/first.jpg", "AURORA/data/something/frames/145321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115432", "images": ["AURORA/data/something/frames/60451/first.jpg", "AURORA/data/something/frames/60451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115433", "images": ["AURORA/data/something/frames/13950/first.jpg", "AURORA/data/something/frames/13950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115434", "images": ["AURORA/data/something/frames/109339/first.jpg", "AURORA/data/something/frames/109339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothbrush in front of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115435", "images": ["AURORA/data/something/frames/1942/first.jpg", "AURORA/data/something/frames/1942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tobacco into packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115436", "images": ["AURORA/data/something/frames/179153/first.jpg", "AURORA/data/something/frames/179153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup behind the mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115437", "images": ["AURORA/data/something/frames/159183/first.jpg", "AURORA/data/something/frames/159183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and candle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115438", "images": ["AURORA/data/something/frames/214331/first.jpg", "AURORA/data/something/frames/214331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and stand away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115439", "images": ["AURORA/data/something/frames/2196/first.jpg", "AURORA/data/something/frames/2196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pink water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115440", "images": ["AURORA/data/something/frames/59886/first.jpg", "AURORA/data/something/frames/59886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115441", "images": ["AURORA/data/something/frames/153874/first.jpg", "AURORA/data/something/frames/153874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming bulb light"}, {"from": "gpt", "value": ""}]} +{"id": "000000115442", "images": ["AURORA/data/something/frames/210486/first.jpg", "AURORA/data/something/frames/210486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115443", "images": ["AURORA/data/something/frames/127756/first.jpg", "AURORA/data/something/frames/127756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 violet colour pocket foldable knives onto white container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115444", "images": ["AURORA/data/something/frames/164854/first.jpg", "AURORA/data/something/frames/164854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar closer to jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115445", "images": ["AURORA/data/something/frames/178974/first.jpg", "AURORA/data/something/frames/178974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a board game"}, {"from": "gpt", "value": ""}]} +{"id": "000000115446", "images": ["AURORA/data/something/frames/228/first.jpg", "AURORA/data/something/frames/228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115447", "images": ["AURORA/data/something/frames/65596/first.jpg", "AURORA/data/something/frames/65596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115448", "images": ["AURORA/data/something/frames/138651/first.jpg", "AURORA/data/something/frames/138651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking card out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115449", "images": ["AURORA/data/something/frames/129907/first.jpg", "AURORA/data/something/frames/129907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115450", "images": ["AURORA/data/something/frames/115971/first.jpg", "AURORA/data/something/frames/115971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115451", "images": ["AURORA/data/something/frames/120937/first.jpg", "AURORA/data/something/frames/120937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing orange paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115452", "images": ["AURORA/data/something/frames/33763/first.jpg", "AURORA/data/something/frames/33763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pebbles onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115453", "images": ["AURORA/data/something/frames/183965/first.jpg", "AURORA/data/something/frames/183965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pillow upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115454", "images": ["AURORA/data/something/frames/126010/first.jpg", "AURORA/data/something/frames/126010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115455", "images": ["AURORA/data/something/frames/12383/first.jpg", "AURORA/data/something/frames/12383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto rug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115456", "images": ["AURORA/data/something/frames/95303/first.jpg", "AURORA/data/something/frames/95303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tree so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115457", "images": ["AURORA/data/something/frames/58143/first.jpg", "AURORA/data/something/frames/58143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone next to a glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000115458", "images": ["AURORA/data/something/frames/90590/first.jpg", "AURORA/data/something/frames/90590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball point pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115459", "images": ["AURORA/data/something/frames/141045/first.jpg", "AURORA/data/something/frames/141045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen next to a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115460", "images": ["AURORA/data/something/frames/26724/first.jpg", "AURORA/data/something/frames/26724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dvds with dvds"}, {"from": "gpt", "value": ""}]} +{"id": "000000115461", "images": ["AURORA/data/something/frames/139278/first.jpg", "AURORA/data/something/frames/139278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000115462", "images": ["AURORA/data/something/frames/207594/first.jpg", "AURORA/data/something/frames/207594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdriver into the case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115463", "images": ["AURORA/data/something/frames/218761/first.jpg", "AURORA/data/something/frames/218761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water canteen upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115464", "images": ["AURORA/data/something/frames/140002/first.jpg", "AURORA/data/something/frames/140002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115465", "images": ["AURORA/data/something/frames/7408/first.jpg", "AURORA/data/something/frames/7408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a small bottle colliding with another bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115466", "images": ["AURORA/data/something/frames/213560/first.jpg", "AURORA/data/something/frames/213560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wine key upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115467", "images": ["AURORA/data/something/frames/193921/first.jpg", "AURORA/data/something/frames/193921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115468", "images": ["AURORA/data/something/frames/86333/first.jpg", "AURORA/data/something/frames/86333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115469", "images": ["AURORA/data/something/frames/74428/first.jpg", "AURORA/data/something/frames/74428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115470", "images": ["AURORA/data/something/frames/65522/first.jpg", "AURORA/data/something/frames/65522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing money into wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115471", "images": ["AURORA/data/something/frames/148962/first.jpg", "AURORA/data/something/frames/148962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping key onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115472", "images": ["AURORA/data/something/frames/141286/first.jpg", "AURORA/data/something/frames/141286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting power bank, rubix cube and a musical tabala on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115473", "images": ["AURORA/data/something/frames/127861/first.jpg", "AURORA/data/something/frames/127861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115474", "images": ["AURORA/data/something/frames/185672/first.jpg", "AURORA/data/something/frames/185672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115475", "images": ["AURORA/data/something/frames/55129/first.jpg", "AURORA/data/something/frames/55129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling lime juice onto a bowl of tomatoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115476", "images": ["AURORA/data/something/frames/104299/first.jpg", "AURORA/data/something/frames/104299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle next to folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115477", "images": ["AURORA/data/something/frames/114782/first.jpg", "AURORA/data/something/frames/114782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tv dish antenna with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115478", "images": ["AURORA/data/something/frames/132977/first.jpg", "AURORA/data/something/frames/132977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dry erase marker off of a marker board"}, {"from": "gpt", "value": ""}]} +{"id": "000000115479", "images": ["AURORA/data/something/frames/208059/first.jpg", "AURORA/data/something/frames/208059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping wallet up with hands"}, {"from": "gpt", "value": ""}]} +{"id": "000000115480", "images": ["AURORA/data/something/frames/105848/first.jpg", "AURORA/data/something/frames/105848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115481", "images": ["AURORA/data/something/frames/16831/first.jpg", "AURORA/data/something/frames/16831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115482", "images": ["AURORA/data/something/frames/146444/first.jpg", "AURORA/data/something/frames/146444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coaster down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115483", "images": ["AURORA/data/something/frames/93316/first.jpg", "AURORA/data/something/frames/93316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stopper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115484", "images": ["AURORA/data/something/frames/201441/first.jpg", "AURORA/data/something/frames/201441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coconut water onto placemat"}, {"from": "gpt", "value": ""}]} +{"id": "000000115485", "images": ["AURORA/data/something/frames/64881/first.jpg", "AURORA/data/something/frames/64881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115486", "images": ["AURORA/data/something/frames/184721/first.jpg", "AURORA/data/something/frames/184721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black pouch bag from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115487", "images": ["AURORA/data/something/frames/52185/first.jpg", "AURORA/data/something/frames/52185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering briefcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000115488", "images": ["AURORA/data/something/frames/189592/first.jpg", "AURORA/data/something/frames/189592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing candle tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115489", "images": ["AURORA/data/something/frames/191302/first.jpg", "AURORA/data/something/frames/191302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115490", "images": ["AURORA/data/something/frames/195493/first.jpg", "AURORA/data/something/frames/195493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending folder so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115491", "images": ["AURORA/data/something/frames/138069/first.jpg", "AURORA/data/something/frames/138069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white deodorant from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115492", "images": ["AURORA/data/something/frames/36982/first.jpg", "AURORA/data/something/frames/36982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bicycle-bell next to door-bell"}, {"from": "gpt", "value": ""}]} +{"id": "000000115493", "images": ["AURORA/data/something/frames/33186/first.jpg", "AURORA/data/something/frames/33186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling towel from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115494", "images": ["AURORA/data/something/frames/143902/first.jpg", "AURORA/data/something/frames/143902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115495", "images": ["AURORA/data/something/frames/153769/first.jpg", "AURORA/data/something/frames/153769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing earring from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115496", "images": ["AURORA/data/something/frames/80552/first.jpg", "AURORA/data/something/frames/80552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cycle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115497", "images": ["AURORA/data/something/frames/14875/first.jpg", "AURORA/data/something/frames/14875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching something to something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115498", "images": ["AURORA/data/something/frames/61770/first.jpg", "AURORA/data/something/frames/61770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sharpener next to an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000115499", "images": ["AURORA/data/something/frames/89328/first.jpg", "AURORA/data/something/frames/89328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening piano"}, {"from": "gpt", "value": ""}]} +{"id": "000000115500", "images": ["AURORA/data/something/frames/15441/first.jpg", "AURORA/data/something/frames/15441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a pendrive to a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115501", "images": ["AURORA/data/something/frames/82952/first.jpg", "AURORA/data/something/frames/82952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115502", "images": ["AURORA/data/something/frames/154002/first.jpg", "AURORA/data/something/frames/154002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115503", "images": ["AURORA/data/something/frames/122108/first.jpg", "AURORA/data/something/frames/122108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the key out of the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115504", "images": ["AURORA/data/something/frames/203130/first.jpg", "AURORA/data/something/frames/203130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a toy frog to a white board"}, {"from": "gpt", "value": ""}]} +{"id": "000000115505", "images": ["AURORA/data/something/frames/207937/first.jpg", "AURORA/data/something/frames/207937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen out of a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115506", "images": ["AURORA/data/something/frames/119827/first.jpg", "AURORA/data/something/frames/119827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a coupon into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115507", "images": ["AURORA/data/something/frames/92486/first.jpg", "AURORA/data/something/frames/92486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115508", "images": ["AURORA/data/something/frames/86284/first.jpg", "AURORA/data/something/frames/86284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tube into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115509", "images": ["AURORA/data/something/frames/15031/first.jpg", "AURORA/data/something/frames/15031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115510", "images": ["AURORA/data/something/frames/147276/first.jpg", "AURORA/data/something/frames/147276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy car and a fridge magnet closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115511", "images": ["AURORA/data/something/frames/182162/first.jpg", "AURORA/data/something/frames/182162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bra onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000115512", "images": ["AURORA/data/something/frames/126188/first.jpg", "AURORA/data/something/frames/126188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000115513", "images": ["AURORA/data/something/frames/19571/first.jpg", "AURORA/data/something/frames/19571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000115514", "images": ["AURORA/data/something/frames/202641/first.jpg", "AURORA/data/something/frames/202641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green bowl from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115515", "images": ["AURORA/data/something/frames/53427/first.jpg", "AURORA/data/something/frames/53427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115516", "images": ["AURORA/data/something/frames/120525/first.jpg", "AURORA/data/something/frames/120525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115517", "images": ["AURORA/data/something/frames/124082/first.jpg", "AURORA/data/something/frames/124082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000115518", "images": ["AURORA/data/something/frames/155379/first.jpg", "AURORA/data/something/frames/155379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling plates up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115519", "images": ["AURORA/data/something/frames/83394/first.jpg", "AURORA/data/something/frames/83394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115520", "images": ["AURORA/data/something/frames/138819/first.jpg", "AURORA/data/something/frames/138819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000115521", "images": ["AURORA/data/something/frames/156724/first.jpg", "AURORA/data/something/frames/156724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bags into plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115522", "images": ["AURORA/data/something/frames/28235/first.jpg", "AURORA/data/something/frames/28235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115523", "images": ["AURORA/data/something/frames/209702/first.jpg", "AURORA/data/something/frames/209702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and jug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115524", "images": ["AURORA/data/something/frames/40175/first.jpg", "AURORA/data/something/frames/40175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a screwdriver on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115525", "images": ["AURORA/data/something/frames/181958/first.jpg", "AURORA/data/something/frames/181958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching rice cooker with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115526", "images": ["AURORA/data/something/frames/152807/first.jpg", "AURORA/data/something/frames/152807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115527", "images": ["AURORA/data/something/frames/43069/first.jpg", "AURORA/data/something/frames/43069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115528", "images": ["AURORA/data/something/frames/219576/first.jpg", "AURORA/data/something/frames/219576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115529", "images": ["AURORA/data/something/frames/142086/first.jpg", "AURORA/data/something/frames/142086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115530", "images": ["AURORA/data/something/frames/68409/first.jpg", "AURORA/data/something/frames/68409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring orange juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115531", "images": ["AURORA/data/something/frames/35727/first.jpg", "AURORA/data/something/frames/35727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening refridgerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000115532", "images": ["AURORA/data/something/frames/56453/first.jpg", "AURORA/data/something/frames/56453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115533", "images": ["AURORA/data/something/frames/179758/first.jpg", "AURORA/data/something/frames/179758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000115534", "images": ["AURORA/data/something/frames/110654/first.jpg", "AURORA/data/something/frames/110654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stopper onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000115535", "images": ["AURORA/data/something/frames/128039/first.jpg", "AURORA/data/something/frames/128039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a table fan with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115536", "images": ["AURORA/data/something/frames/52285/first.jpg", "AURORA/data/something/frames/52285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking five xbox games"}, {"from": "gpt", "value": ""}]} +{"id": "000000115537", "images": ["AURORA/data/something/frames/23695/first.jpg", "AURORA/data/something/frames/23695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115538", "images": ["AURORA/data/something/frames/15445/first.jpg", "AURORA/data/something/frames/15445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pepper grinder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115539", "images": ["AURORA/data/something/frames/209176/first.jpg", "AURORA/data/something/frames/209176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting punching machine up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115540", "images": ["AURORA/data/something/frames/199029/first.jpg", "AURORA/data/something/frames/199029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115541", "images": ["AURORA/data/something/frames/81777/first.jpg", "AURORA/data/something/frames/81777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a peg being deflected from a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115542", "images": ["AURORA/data/something/frames/179093/first.jpg", "AURORA/data/something/frames/179093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115543", "images": ["AURORA/data/something/frames/16914/first.jpg", "AURORA/data/something/frames/16914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115544", "images": ["AURORA/data/something/frames/117126/first.jpg", "AURORA/data/something/frames/117126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000115545", "images": ["AURORA/data/something/frames/9634/first.jpg", "AURORA/data/something/frames/9634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a peg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115546", "images": ["AURORA/data/something/frames/99700/first.jpg", "AURORA/data/something/frames/99700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting punching machine and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115547", "images": ["AURORA/data/something/frames/196678/first.jpg", "AURORA/data/something/frames/196678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shot glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115548", "images": ["AURORA/data/something/frames/94289/first.jpg", "AURORA/data/something/frames/94289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115549", "images": ["AURORA/data/something/frames/169728/first.jpg", "AURORA/data/something/frames/169728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115550", "images": ["AURORA/data/something/frames/218384/first.jpg", "AURORA/data/something/frames/218384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115551", "images": ["AURORA/data/something/frames/66505/first.jpg", "AURORA/data/something/frames/66505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000115552", "images": ["AURORA/data/something/frames/13689/first.jpg", "AURORA/data/something/frames/13689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115553", "images": ["AURORA/data/something/frames/44104/first.jpg", "AURORA/data/something/frames/44104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115554", "images": ["AURORA/data/something/frames/87459/first.jpg", "AURORA/data/something/frames/87459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and comb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115555", "images": ["AURORA/data/something/frames/62501/first.jpg", "AURORA/data/something/frames/62501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the side of a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000115556", "images": ["AURORA/data/something/frames/166231/first.jpg", "AURORA/data/something/frames/166231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing tennisball behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115557", "images": ["AURORA/data/something/frames/3552/first.jpg", "AURORA/data/something/frames/3552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000115558", "images": ["AURORA/data/something/frames/91176/first.jpg", "AURORA/data/something/frames/91176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle cap until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115559", "images": ["AURORA/data/something/frames/18048/first.jpg", "AURORA/data/something/frames/18048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping tea up with teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115560", "images": ["AURORA/data/something/frames/148294/first.jpg", "AURORA/data/something/frames/148294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic cover similar to other plastic covers that are already on the table]"}, {"from": "gpt", "value": ""}]} +{"id": "000000115561", "images": ["AURORA/data/something/frames/100516/first.jpg", "AURORA/data/something/frames/100516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red watch case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115562", "images": ["AURORA/data/something/frames/57505/first.jpg", "AURORA/data/something/frames/57505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115563", "images": ["AURORA/data/something/frames/84387/first.jpg", "AURORA/data/something/frames/84387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking broom from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115564", "images": ["AURORA/data/something/frames/20005/first.jpg", "AURORA/data/something/frames/20005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115565", "images": ["AURORA/data/something/frames/177365/first.jpg", "AURORA/data/something/frames/177365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000115566", "images": ["AURORA/data/something/frames/153539/first.jpg", "AURORA/data/something/frames/153539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115567", "images": ["AURORA/data/something/frames/88175/first.jpg", "AURORA/data/something/frames/88175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sweet packet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115568", "images": ["AURORA/data/something/frames/210714/first.jpg", "AURORA/data/something/frames/210714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115569", "images": ["AURORA/data/something/frames/33539/first.jpg", "AURORA/data/something/frames/33539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling swab out of pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115570", "images": ["AURORA/data/something/frames/11755/first.jpg", "AURORA/data/something/frames/11755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115571", "images": ["AURORA/data/something/frames/73395/first.jpg", "AURORA/data/something/frames/73395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming house"}, {"from": "gpt", "value": ""}]} +{"id": "000000115572", "images": ["AURORA/data/something/frames/194882/first.jpg", "AURORA/data/something/frames/194882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting table with bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000115573", "images": ["AURORA/data/something/frames/92283/first.jpg", "AURORA/data/something/frames/92283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115574", "images": ["AURORA/data/something/frames/129145/first.jpg", "AURORA/data/something/frames/129145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115575", "images": ["AURORA/data/something/frames/6565/first.jpg", "AURORA/data/something/frames/6565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a plastic bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115576", "images": ["AURORA/data/something/frames/2799/first.jpg", "AURORA/data/something/frames/2799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115577", "images": ["AURORA/data/something/frames/37952/first.jpg", "AURORA/data/something/frames/37952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sleeping bag into its storage pocket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115578", "images": ["AURORA/data/something/frames/166890/first.jpg", "AURORA/data/something/frames/166890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115579", "images": ["AURORA/data/something/frames/173179/first.jpg", "AURORA/data/something/frames/173179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115580", "images": ["AURORA/data/something/frames/132594/first.jpg", "AURORA/data/something/frames/132594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering apple with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115581", "images": ["AURORA/data/something/frames/6921/first.jpg", "AURORA/data/something/frames/6921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115582", "images": ["AURORA/data/something/frames/119790/first.jpg", "AURORA/data/something/frames/119790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper next to headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000115583", "images": ["AURORA/data/something/frames/71761/first.jpg", "AURORA/data/something/frames/71761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115584", "images": ["AURORA/data/something/frames/154864/first.jpg", "AURORA/data/something/frames/154864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115585", "images": ["AURORA/data/something/frames/127334/first.jpg", "AURORA/data/something/frames/127334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon out of a saucepan"}, {"from": "gpt", "value": ""}]} +{"id": "000000115586", "images": ["AURORA/data/something/frames/12693/first.jpg", "AURORA/data/something/frames/12693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115587", "images": ["AURORA/data/something/frames/203203/first.jpg", "AURORA/data/something/frames/203203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into switchboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000115588", "images": ["AURORA/data/something/frames/158053/first.jpg", "AURORA/data/something/frames/158053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate and glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115589", "images": ["AURORA/data/something/frames/32060/first.jpg", "AURORA/data/something/frames/32060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a part of post it notes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115590", "images": ["AURORA/data/something/frames/86680/first.jpg", "AURORA/data/something/frames/86680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115591", "images": ["AURORA/data/something/frames/151454/first.jpg", "AURORA/data/something/frames/151454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink water bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115592", "images": ["AURORA/data/something/frames/164180/first.jpg", "AURORA/data/something/frames/164180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ruler and a wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115593", "images": ["AURORA/data/something/frames/162925/first.jpg", "AURORA/data/something/frames/162925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115594", "images": ["AURORA/data/something/frames/65371/first.jpg", "AURORA/data/something/frames/65371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000115595", "images": ["AURORA/data/something/frames/97459/first.jpg", "AURORA/data/something/frames/97459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000115596", "images": ["AURORA/data/something/frames/106405/first.jpg", "AURORA/data/something/frames/106405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115597", "images": ["AURORA/data/something/frames/176052/first.jpg", "AURORA/data/something/frames/176052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable closer to usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000115598", "images": ["AURORA/data/something/frames/473/first.jpg", "AURORA/data/something/frames/473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115599", "images": ["AURORA/data/something/frames/150353/first.jpg", "AURORA/data/something/frames/150353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping coffee grounds up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115600", "images": ["AURORA/data/something/frames/69578/first.jpg", "AURORA/data/something/frames/69578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a lid so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115601", "images": ["AURORA/data/something/frames/6977/first.jpg", "AURORA/data/something/frames/6977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a phone onto a folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115602", "images": ["AURORA/data/something/frames/62609/first.jpg", "AURORA/data/something/frames/62609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mouthwash bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115603", "images": ["AURORA/data/something/frames/32167/first.jpg", "AURORA/data/something/frames/32167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottlecap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115604", "images": ["AURORA/data/something/frames/42331/first.jpg", "AURORA/data/something/frames/42331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring behind pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115605", "images": ["AURORA/data/something/frames/144820/first.jpg", "AURORA/data/something/frames/144820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spanner down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115606", "images": ["AURORA/data/something/frames/79557/first.jpg", "AURORA/data/something/frames/79557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a computer charger into a wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115607", "images": ["AURORA/data/something/frames/132080/first.jpg", "AURORA/data/something/frames/132080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jam behind peanut butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000115608", "images": ["AURORA/data/something/frames/220647/first.jpg", "AURORA/data/something/frames/220647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115609", "images": ["AURORA/data/something/frames/29625/first.jpg", "AURORA/data/something/frames/29625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking poking chapstick so it falls so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115610", "images": ["AURORA/data/something/frames/14227/first.jpg", "AURORA/data/something/frames/14227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115611", "images": ["AURORA/data/something/frames/51220/first.jpg", "AURORA/data/something/frames/51220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of shoe without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115612", "images": ["AURORA/data/something/frames/89639/first.jpg", "AURORA/data/something/frames/89639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115613", "images": ["AURORA/data/something/frames/203224/first.jpg", "AURORA/data/something/frames/203224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone cover with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115614", "images": ["AURORA/data/something/frames/74945/first.jpg", "AURORA/data/something/frames/74945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115615", "images": ["AURORA/data/something/frames/71501/first.jpg", "AURORA/data/something/frames/71501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering board clip with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115616", "images": ["AURORA/data/something/frames/119103/first.jpg", "AURORA/data/something/frames/119103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115617", "images": ["AURORA/data/something/frames/194513/first.jpg", "AURORA/data/something/frames/194513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of lotion on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115618", "images": ["AURORA/data/something/frames/4570/first.jpg", "AURORA/data/something/frames/4570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a picture underneath a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115619", "images": ["AURORA/data/something/frames/12724/first.jpg", "AURORA/data/something/frames/12724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving garlic presser away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115620", "images": ["AURORA/data/something/frames/100007/first.jpg", "AURORA/data/something/frames/100007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming park"}, {"from": "gpt", "value": ""}]} +{"id": "000000115621", "images": ["AURORA/data/something/frames/60290/first.jpg", "AURORA/data/something/frames/60290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115622", "images": ["AURORA/data/something/frames/218804/first.jpg", "AURORA/data/something/frames/218804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screwdriver with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115623", "images": ["AURORA/data/something/frames/16999/first.jpg", "AURORA/data/something/frames/16999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115624", "images": ["AURORA/data/something/frames/26996/first.jpg", "AURORA/data/something/frames/26996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into the dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115625", "images": ["AURORA/data/something/frames/57327/first.jpg", "AURORA/data/something/frames/57327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115626", "images": ["AURORA/data/something/frames/85782/first.jpg", "AURORA/data/something/frames/85782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something similar to color tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000115627", "images": ["AURORA/data/something/frames/128292/first.jpg", "AURORA/data/something/frames/128292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning toy link upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115628", "images": ["AURORA/data/something/frames/4367/first.jpg", "AURORA/data/something/frames/4367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115629", "images": ["AURORA/data/something/frames/159419/first.jpg", "AURORA/data/something/frames/159419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a hard drive of a server"}, {"from": "gpt", "value": ""}]} +{"id": "000000115630", "images": ["AURORA/data/something/frames/126580/first.jpg", "AURORA/data/something/frames/126580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a coin from a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115631", "images": ["AURORA/data/something/frames/73787/first.jpg", "AURORA/data/something/frames/73787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting firm plastic up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115632", "images": ["AURORA/data/something/frames/207565/first.jpg", "AURORA/data/something/frames/207565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000115633", "images": ["AURORA/data/something/frames/120453/first.jpg", "AURORA/data/something/frames/120453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a watering pipe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115634", "images": ["AURORA/data/something/frames/91402/first.jpg", "AURORA/data/something/frames/91402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bowl away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115635", "images": ["AURORA/data/something/frames/187794/first.jpg", "AURORA/data/something/frames/187794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cloth, battery and packing tape on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115636", "images": ["AURORA/data/something/frames/115479/first.jpg", "AURORA/data/something/frames/115479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into hair gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115637", "images": ["AURORA/data/something/frames/109472/first.jpg", "AURORA/data/something/frames/109472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115638", "images": ["AURORA/data/something/frames/217753/first.jpg", "AURORA/data/something/frames/217753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000115639", "images": ["AURORA/data/something/frames/209716/first.jpg", "AURORA/data/something/frames/209716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115640", "images": ["AURORA/data/something/frames/156164/first.jpg", "AURORA/data/something/frames/156164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a cardboard container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115641", "images": ["AURORA/data/something/frames/146236/first.jpg", "AURORA/data/something/frames/146236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115642", "images": ["AURORA/data/something/frames/64277/first.jpg", "AURORA/data/something/frames/64277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115643", "images": ["AURORA/data/something/frames/28699/first.jpg", "AURORA/data/something/frames/28699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a ball colliding with a ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115644", "images": ["AURORA/data/something/frames/45515/first.jpg", "AURORA/data/something/frames/45515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping envelopes next to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115645", "images": ["AURORA/data/something/frames/218831/first.jpg", "AURORA/data/something/frames/218831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115646", "images": ["AURORA/data/something/frames/218317/first.jpg", "AURORA/data/something/frames/218317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115647", "images": ["AURORA/data/something/frames/81964/first.jpg", "AURORA/data/something/frames/81964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a head phones cable into an ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000115648", "images": ["AURORA/data/something/frames/152011/first.jpg", "AURORA/data/something/frames/152011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115649", "images": ["AURORA/data/something/frames/50154/first.jpg", "AURORA/data/something/frames/50154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115650", "images": ["AURORA/data/something/frames/115762/first.jpg", "AURORA/data/something/frames/115762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000115651", "images": ["AURORA/data/something/frames/47975/first.jpg", "AURORA/data/something/frames/47975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115652", "images": ["AURORA/data/something/frames/27192/first.jpg", "AURORA/data/something/frames/27192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton into toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000115653", "images": ["AURORA/data/something/frames/1077/first.jpg", "AURORA/data/something/frames/1077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115654", "images": ["AURORA/data/something/frames/57796/first.jpg", "AURORA/data/something/frames/57796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115655", "images": ["AURORA/data/something/frames/132509/first.jpg", "AURORA/data/something/frames/132509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115656", "images": ["AURORA/data/something/frames/197582/first.jpg", "AURORA/data/something/frames/197582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing window"}, {"from": "gpt", "value": ""}]} +{"id": "000000115657", "images": ["AURORA/data/something/frames/20943/first.jpg", "AURORA/data/something/frames/20943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning small book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115658", "images": ["AURORA/data/something/frames/58339/first.jpg", "AURORA/data/something/frames/58339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115659", "images": ["AURORA/data/something/frames/133154/first.jpg", "AURORA/data/something/frames/133154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning water botle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115660", "images": ["AURORA/data/something/frames/194291/first.jpg", "AURORA/data/something/frames/194291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115661", "images": ["AURORA/data/something/frames/156292/first.jpg", "AURORA/data/something/frames/156292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling emblem from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115662", "images": ["AURORA/data/something/frames/23209/first.jpg", "AURORA/data/something/frames/23209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115663", "images": ["AURORA/data/something/frames/132011/first.jpg", "AURORA/data/something/frames/132011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115664", "images": ["AURORA/data/something/frames/161610/first.jpg", "AURORA/data/something/frames/161610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000115665", "images": ["AURORA/data/something/frames/103127/first.jpg", "AURORA/data/something/frames/103127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115666", "images": ["AURORA/data/something/frames/127812/first.jpg", "AURORA/data/something/frames/127812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115667", "images": ["AURORA/data/something/frames/123079/first.jpg", "AURORA/data/something/frames/123079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115668", "images": ["AURORA/data/something/frames/184347/first.jpg", "AURORA/data/something/frames/184347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000115669", "images": ["AURORA/data/something/frames/42048/first.jpg", "AURORA/data/something/frames/42048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115670", "images": ["AURORA/data/something/frames/127270/first.jpg", "AURORA/data/something/frames/127270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115671", "images": ["AURORA/data/something/frames/217193/first.jpg", "AURORA/data/something/frames/217193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115672", "images": ["AURORA/data/something/frames/145526/first.jpg", "AURORA/data/something/frames/145526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spoon colliding with spoon and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115673", "images": ["AURORA/data/something/frames/214510/first.jpg", "AURORA/data/something/frames/214510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging toaster into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115674", "images": ["AURORA/data/something/frames/76799/first.jpg", "AURORA/data/something/frames/76799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding 50 peso bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000115675", "images": ["AURORA/data/something/frames/212740/first.jpg", "AURORA/data/something/frames/212740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote, cream tube and candle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115676", "images": ["AURORA/data/something/frames/135075/first.jpg", "AURORA/data/something/frames/135075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115677", "images": ["AURORA/data/something/frames/159132/first.jpg", "AURORA/data/something/frames/159132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000115678", "images": ["AURORA/data/something/frames/28397/first.jpg", "AURORA/data/something/frames/28397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving game up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115679", "images": ["AURORA/data/something/frames/80494/first.jpg", "AURORA/data/something/frames/80494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115680", "images": ["AURORA/data/something/frames/129306/first.jpg", "AURORA/data/something/frames/129306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker off of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115681", "images": ["AURORA/data/something/frames/130688/first.jpg", "AURORA/data/something/frames/130688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115682", "images": ["AURORA/data/something/frames/166547/first.jpg", "AURORA/data/something/frames/166547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into bowl, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115683", "images": ["AURORA/data/something/frames/91042/first.jpg", "AURORA/data/something/frames/91042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115684", "images": ["AURORA/data/something/frames/215601/first.jpg", "AURORA/data/something/frames/215601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dishwashing liquid and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115685", "images": ["AURORA/data/something/frames/67672/first.jpg", "AURORA/data/something/frames/67672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming sugar container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115686", "images": ["AURORA/data/something/frames/148768/first.jpg", "AURORA/data/something/frames/148768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wet towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115687", "images": ["AURORA/data/something/frames/196781/first.jpg", "AURORA/data/something/frames/196781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000115688", "images": ["AURORA/data/something/frames/206019/first.jpg", "AURORA/data/something/frames/206019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a sweet on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115689", "images": ["AURORA/data/something/frames/130384/first.jpg", "AURORA/data/something/frames/130384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115690", "images": ["AURORA/data/something/frames/29278/first.jpg", "AURORA/data/something/frames/29278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mousepad underneath mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000115691", "images": ["AURORA/data/something/frames/26322/first.jpg", "AURORA/data/something/frames/26322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of remote without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115692", "images": ["AURORA/data/something/frames/171717/first.jpg", "AURORA/data/something/frames/171717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a notecard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115693", "images": ["AURORA/data/something/frames/67039/first.jpg", "AURORA/data/something/frames/67039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115694", "images": ["AURORA/data/something/frames/193838/first.jpg", "AURORA/data/something/frames/193838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing newspaper into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115695", "images": ["AURORA/data/something/frames/108777/first.jpg", "AURORA/data/something/frames/108777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a notecard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115696", "images": ["AURORA/data/something/frames/93233/first.jpg", "AURORA/data/something/frames/93233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115697", "images": ["AURORA/data/something/frames/45293/first.jpg", "AURORA/data/something/frames/45293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a nickle with a coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115698", "images": ["AURORA/data/something/frames/160093/first.jpg", "AURORA/data/something/frames/160093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115699", "images": ["AURORA/data/something/frames/148517/first.jpg", "AURORA/data/something/frames/148517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling containers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115700", "images": ["AURORA/data/something/frames/49748/first.jpg", "AURORA/data/something/frames/49748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115701", "images": ["AURORA/data/something/frames/136949/first.jpg", "AURORA/data/something/frames/136949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing plastic cap, revealing pebble behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115702", "images": ["AURORA/data/something/frames/188756/first.jpg", "AURORA/data/something/frames/188756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock and rock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115703", "images": ["AURORA/data/something/frames/144837/first.jpg", "AURORA/data/something/frames/144837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a toothbrus so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115704", "images": ["AURORA/data/something/frames/72793/first.jpg", "AURORA/data/something/frames/72793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jacket out of rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000115705", "images": ["AURORA/data/something/frames/204292/first.jpg", "AURORA/data/something/frames/204292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115706", "images": ["AURORA/data/something/frames/163019/first.jpg", "AURORA/data/something/frames/163019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering table with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115707", "images": ["AURORA/data/something/frames/24103/first.jpg", "AURORA/data/something/frames/24103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deodorant next to cream"}, {"from": "gpt", "value": ""}]} +{"id": "000000115708", "images": ["AURORA/data/something/frames/105930/first.jpg", "AURORA/data/something/frames/105930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115709", "images": ["AURORA/data/something/frames/125617/first.jpg", "AURORA/data/something/frames/125617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115710", "images": ["AURORA/data/something/frames/113188/first.jpg", "AURORA/data/something/frames/113188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115711", "images": ["AURORA/data/something/frames/35636/first.jpg", "AURORA/data/something/frames/35636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115712", "images": ["AURORA/data/something/frames/29216/first.jpg", "AURORA/data/something/frames/29216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup stains off of a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115713", "images": ["AURORA/data/something/frames/20742/first.jpg", "AURORA/data/something/frames/20742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle with movie on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115714", "images": ["AURORA/data/something/frames/165008/first.jpg", "AURORA/data/something/frames/165008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a cup colliding with an apple and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115715", "images": ["AURORA/data/something/frames/74289/first.jpg", "AURORA/data/something/frames/74289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toothpick upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115716", "images": ["AURORA/data/something/frames/179471/first.jpg", "AURORA/data/something/frames/179471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring toothpaste onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115717", "images": ["AURORA/data/something/frames/142250/first.jpg", "AURORA/data/something/frames/142250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a plastic knife until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115718", "images": ["AURORA/data/something/frames/77214/first.jpg", "AURORA/data/something/frames/77214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115719", "images": ["AURORA/data/something/frames/111958/first.jpg", "AURORA/data/something/frames/111958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115720", "images": ["AURORA/data/something/frames/46420/first.jpg", "AURORA/data/something/frames/46420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter away from book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115721", "images": ["AURORA/data/something/frames/159237/first.jpg", "AURORA/data/something/frames/159237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet to a refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000115722", "images": ["AURORA/data/something/frames/107674/first.jpg", "AURORA/data/something/frames/107674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing flowers into woodbowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115723", "images": ["AURORA/data/something/frames/168093/first.jpg", "AURORA/data/something/frames/168093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115724", "images": ["AURORA/data/something/frames/51127/first.jpg", "AURORA/data/something/frames/51127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glass from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115725", "images": ["AURORA/data/something/frames/107744/first.jpg", "AURORA/data/something/frames/107744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115726", "images": ["AURORA/data/something/frames/157451/first.jpg", "AURORA/data/something/frames/157451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil sharpener in front of scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000115727", "images": ["AURORA/data/something/frames/42363/first.jpg", "AURORA/data/something/frames/42363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping groundnuts into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115728", "images": ["AURORA/data/something/frames/177864/first.jpg", "AURORA/data/something/frames/177864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting white badge and black toy wheel on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115729", "images": ["AURORA/data/something/frames/3396/first.jpg", "AURORA/data/something/frames/3396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping chapstick over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115730", "images": ["AURORA/data/something/frames/27116/first.jpg", "AURORA/data/something/frames/27116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging rocks out of towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115731", "images": ["AURORA/data/something/frames/83751/first.jpg", "AURORA/data/something/frames/83751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115732", "images": ["AURORA/data/something/frames/114135/first.jpg", "AURORA/data/something/frames/114135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115733", "images": ["AURORA/data/something/frames/8778/first.jpg", "AURORA/data/something/frames/8778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a soap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115734", "images": ["AURORA/data/something/frames/218205/first.jpg", "AURORA/data/something/frames/218205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115735", "images": ["AURORA/data/something/frames/60410/first.jpg", "AURORA/data/something/frames/60410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many forks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115736", "images": ["AURORA/data/something/frames/171095/first.jpg", "AURORA/data/something/frames/171095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cube behind dish"}, {"from": "gpt", "value": ""}]} +{"id": "000000115737", "images": ["AURORA/data/something/frames/18582/first.jpg", "AURORA/data/something/frames/18582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115738", "images": ["AURORA/data/something/frames/138429/first.jpg", "AURORA/data/something/frames/138429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115739", "images": ["AURORA/data/something/frames/111038/first.jpg", "AURORA/data/something/frames/111038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering the tulips with a magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000115740", "images": ["AURORA/data/something/frames/82480/first.jpg", "AURORA/data/something/frames/82480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115741", "images": ["AURORA/data/something/frames/179688/first.jpg", "AURORA/data/something/frames/179688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pen colliding with another pen and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115742", "images": ["AURORA/data/something/frames/54234/first.jpg", "AURORA/data/something/frames/54234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cloth into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115743", "images": ["AURORA/data/something/frames/86103/first.jpg", "AURORA/data/something/frames/86103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencile out of glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000115744", "images": ["AURORA/data/something/frames/12898/first.jpg", "AURORA/data/something/frames/12898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white chalk away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115745", "images": ["AURORA/data/something/frames/208486/first.jpg", "AURORA/data/something/frames/208486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle into a bougeoir"}, {"from": "gpt", "value": ""}]} +{"id": "000000115746", "images": ["AURORA/data/something/frames/106214/first.jpg", "AURORA/data/something/frames/106214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115747", "images": ["AURORA/data/something/frames/140784/first.jpg", "AURORA/data/something/frames/140784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping litter up with shovel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115748", "images": ["AURORA/data/something/frames/31438/first.jpg", "AURORA/data/something/frames/31438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115749", "images": ["AURORA/data/something/frames/128636/first.jpg", "AURORA/data/something/frames/128636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115750", "images": ["AURORA/data/something/frames/1183/first.jpg", "AURORA/data/something/frames/1183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pillow into a backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000115751", "images": ["AURORA/data/something/frames/94296/first.jpg", "AURORA/data/something/frames/94296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115752", "images": ["AURORA/data/something/frames/132094/first.jpg", "AURORA/data/something/frames/132094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching paper to wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000115753", "images": ["AURORA/data/something/frames/23517/first.jpg", "AURORA/data/something/frames/23517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing orange, revealing coin behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115754", "images": ["AURORA/data/something/frames/81051/first.jpg", "AURORA/data/something/frames/81051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cigarette lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115755", "images": ["AURORA/data/something/frames/217225/first.jpg", "AURORA/data/something/frames/217225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115756", "images": ["AURORA/data/something/frames/128688/first.jpg", "AURORA/data/something/frames/128688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115757", "images": ["AURORA/data/something/frames/82454/first.jpg", "AURORA/data/something/frames/82454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming advertisment board"}, {"from": "gpt", "value": ""}]} +{"id": "000000115758", "images": ["AURORA/data/something/frames/212224/first.jpg", "AURORA/data/something/frames/212224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115759", "images": ["AURORA/data/something/frames/172789/first.jpg", "AURORA/data/something/frames/172789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115760", "images": ["AURORA/data/something/frames/31715/first.jpg", "AURORA/data/something/frames/31715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillow case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115761", "images": ["AURORA/data/something/frames/123758/first.jpg", "AURORA/data/something/frames/123758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting sticky note with sharpener on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115762", "images": ["AURORA/data/something/frames/146024/first.jpg", "AURORA/data/something/frames/146024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spoon from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115763", "images": ["AURORA/data/something/frames/123028/first.jpg", "AURORA/data/something/frames/123028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115764", "images": ["AURORA/data/something/frames/183416/first.jpg", "AURORA/data/something/frames/183416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning plastic cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115765", "images": ["AURORA/data/something/frames/69903/first.jpg", "AURORA/data/something/frames/69903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air freshener into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115766", "images": ["AURORA/data/something/frames/62678/first.jpg", "AURORA/data/something/frames/62678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earring down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115767", "images": ["AURORA/data/something/frames/208126/first.jpg", "AURORA/data/something/frames/208126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a mug up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115768", "images": ["AURORA/data/something/frames/177640/first.jpg", "AURORA/data/something/frames/177640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering broom"}, {"from": "gpt", "value": ""}]} +{"id": "000000115769", "images": ["AURORA/data/something/frames/177713/first.jpg", "AURORA/data/something/frames/177713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting setquare behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115770", "images": ["AURORA/data/something/frames/145491/first.jpg", "AURORA/data/something/frames/145491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115771", "images": ["AURORA/data/something/frames/157681/first.jpg", "AURORA/data/something/frames/157681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115772", "images": ["AURORA/data/something/frames/91917/first.jpg", "AURORA/data/something/frames/91917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soap on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115773", "images": ["AURORA/data/something/frames/148184/first.jpg", "AURORA/data/something/frames/148184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a white cup next to a black cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115774", "images": ["AURORA/data/something/frames/209254/first.jpg", "AURORA/data/something/frames/209254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green hair comb from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115775", "images": ["AURORA/data/something/frames/7805/first.jpg", "AURORA/data/something/frames/7805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving staple down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115776", "images": ["AURORA/data/something/frames/138714/first.jpg", "AURORA/data/something/frames/138714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet behind pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115777", "images": ["AURORA/data/something/frames/204752/first.jpg", "AURORA/data/something/frames/204752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115778", "images": ["AURORA/data/something/frames/205071/first.jpg", "AURORA/data/something/frames/205071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000115779", "images": ["AURORA/data/something/frames/121337/first.jpg", "AURORA/data/something/frames/121337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115780", "images": ["AURORA/data/something/frames/108716/first.jpg", "AURORA/data/something/frames/108716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting laptop with charger on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115781", "images": ["AURORA/data/something/frames/71532/first.jpg", "AURORA/data/something/frames/71532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing waste cloth just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115782", "images": ["AURORA/data/something/frames/96389/first.jpg", "AURORA/data/something/frames/96389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115783", "images": ["AURORA/data/something/frames/55854/first.jpg", "AURORA/data/something/frames/55854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115784", "images": ["AURORA/data/something/frames/46256/first.jpg", "AURORA/data/something/frames/46256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting newspaper on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115785", "images": ["AURORA/data/something/frames/28806/first.jpg", "AURORA/data/something/frames/28806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115786", "images": ["AURORA/data/something/frames/37516/first.jpg", "AURORA/data/something/frames/37516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a wrap wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115787", "images": ["AURORA/data/something/frames/128150/first.jpg", "AURORA/data/something/frames/128150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tennis ball being deflected from cd stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000115788", "images": ["AURORA/data/something/frames/21472/first.jpg", "AURORA/data/something/frames/21472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying rock in dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115789", "images": ["AURORA/data/something/frames/799/first.jpg", "AURORA/data/something/frames/799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000115790", "images": ["AURORA/data/something/frames/70598/first.jpg", "AURORA/data/something/frames/70598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115791", "images": ["AURORA/data/something/frames/97487/first.jpg", "AURORA/data/something/frames/97487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115792", "images": ["AURORA/data/something/frames/170007/first.jpg", "AURORA/data/something/frames/170007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115793", "images": ["AURORA/data/something/frames/184507/first.jpg", "AURORA/data/something/frames/184507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115794", "images": ["AURORA/data/something/frames/84085/first.jpg", "AURORA/data/something/frames/84085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissues into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115795", "images": ["AURORA/data/something/frames/51984/first.jpg", "AURORA/data/something/frames/51984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a notebook across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115796", "images": ["AURORA/data/something/frames/108352/first.jpg", "AURORA/data/something/frames/108352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing brochure into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115797", "images": ["AURORA/data/something/frames/212936/first.jpg", "AURORA/data/something/frames/212936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115798", "images": ["AURORA/data/something/frames/171027/first.jpg", "AURORA/data/something/frames/171027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing a child's water bottle top across kitchen counter from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115799", "images": ["AURORA/data/something/frames/82117/first.jpg", "AURORA/data/something/frames/82117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a pack of gum on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115800", "images": ["AURORA/data/something/frames/132832/first.jpg", "AURORA/data/something/frames/132832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115801", "images": ["AURORA/data/something/frames/21376/first.jpg", "AURORA/data/something/frames/21376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting block with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115802", "images": ["AURORA/data/something/frames/126968/first.jpg", "AURORA/data/something/frames/126968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115803", "images": ["AURORA/data/something/frames/214697/first.jpg", "AURORA/data/something/frames/214697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle and a mug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115804", "images": ["AURORA/data/something/frames/195096/first.jpg", "AURORA/data/something/frames/195096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115805", "images": ["AURORA/data/something/frames/45963/first.jpg", "AURORA/data/something/frames/45963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting adapter in front of key"}, {"from": "gpt", "value": ""}]} +{"id": "000000115806", "images": ["AURORA/data/something/frames/63496/first.jpg", "AURORA/data/something/frames/63496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming rubber"}, {"from": "gpt", "value": ""}]} +{"id": "000000115807", "images": ["AURORA/data/something/frames/168997/first.jpg", "AURORA/data/something/frames/168997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115808", "images": ["AURORA/data/something/frames/206979/first.jpg", "AURORA/data/something/frames/206979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115809", "images": ["AURORA/data/something/frames/93879/first.jpg", "AURORA/data/something/frames/93879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting carton lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115810", "images": ["AURORA/data/something/frames/50783/first.jpg", "AURORA/data/something/frames/50783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115811", "images": ["AURORA/data/something/frames/3011/first.jpg", "AURORA/data/something/frames/3011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand towel on the edge of counter so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115812", "images": ["AURORA/data/something/frames/123911/first.jpg", "AURORA/data/something/frames/123911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stapler with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115813", "images": ["AURORA/data/something/frames/50091/first.jpg", "AURORA/data/something/frames/50091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wet cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115814", "images": ["AURORA/data/something/frames/195032/first.jpg", "AURORA/data/something/frames/195032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white envelope from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115815", "images": ["AURORA/data/something/frames/180159/first.jpg", "AURORA/data/something/frames/180159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bag from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115816", "images": ["AURORA/data/something/frames/62119/first.jpg", "AURORA/data/something/frames/62119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping towel onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115817", "images": ["AURORA/data/something/frames/129999/first.jpg", "AURORA/data/something/frames/129999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching an electronic portier to its base"}, {"from": "gpt", "value": ""}]} +{"id": "000000115818", "images": ["AURORA/data/something/frames/127152/first.jpg", "AURORA/data/something/frames/127152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115819", "images": ["AURORA/data/something/frames/79405/first.jpg", "AURORA/data/something/frames/79405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115820", "images": ["AURORA/data/something/frames/209055/first.jpg", "AURORA/data/something/frames/209055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115821", "images": ["AURORA/data/something/frames/8378/first.jpg", "AURORA/data/something/frames/8378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000115822", "images": ["AURORA/data/something/frames/54709/first.jpg", "AURORA/data/something/frames/54709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster, remote and tissue box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115823", "images": ["AURORA/data/something/frames/28142/first.jpg", "AURORA/data/something/frames/28142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115824", "images": ["AURORA/data/something/frames/91618/first.jpg", "AURORA/data/something/frames/91618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and lid away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115825", "images": ["AURORA/data/something/frames/192775/first.jpg", "AURORA/data/something/frames/192775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green toy car and toy wheel on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115826", "images": ["AURORA/data/something/frames/18316/first.jpg", "AURORA/data/something/frames/18316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115827", "images": ["AURORA/data/something/frames/196757/first.jpg", "AURORA/data/something/frames/196757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning playdough upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115828", "images": ["AURORA/data/something/frames/146940/first.jpg", "AURORA/data/something/frames/146940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle with a pen over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115829", "images": ["AURORA/data/something/frames/175251/first.jpg", "AURORA/data/something/frames/175251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of egg carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000115830", "images": ["AURORA/data/something/frames/117704/first.jpg", "AURORA/data/something/frames/117704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115831", "images": ["AURORA/data/something/frames/109889/first.jpg", "AURORA/data/something/frames/109889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115832", "images": ["AURORA/data/something/frames/210652/first.jpg", "AURORA/data/something/frames/210652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yogurt and butter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115833", "images": ["AURORA/data/something/frames/16997/first.jpg", "AURORA/data/something/frames/16997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115834", "images": ["AURORA/data/something/frames/71474/first.jpg", "AURORA/data/something/frames/71474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purse onto sponze"}, {"from": "gpt", "value": ""}]} +{"id": "000000115835", "images": ["AURORA/data/something/frames/78475/first.jpg", "AURORA/data/something/frames/78475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bed with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115836", "images": ["AURORA/data/something/frames/29205/first.jpg", "AURORA/data/something/frames/29205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen with marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115837", "images": ["AURORA/data/something/frames/131856/first.jpg", "AURORA/data/something/frames/131856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000115838", "images": ["AURORA/data/something/frames/11531/first.jpg", "AURORA/data/something/frames/11531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye kajal and pendrive closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115839", "images": ["AURORA/data/something/frames/119750/first.jpg", "AURORA/data/something/frames/119750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tape being deflected from deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000115840", "images": ["AURORA/data/something/frames/181358/first.jpg", "AURORA/data/something/frames/181358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from usb with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115841", "images": ["AURORA/data/something/frames/195387/first.jpg", "AURORA/data/something/frames/195387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into extension cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000115842", "images": ["AURORA/data/something/frames/173422/first.jpg", "AURORA/data/something/frames/173422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115843", "images": ["AURORA/data/something/frames/213158/first.jpg", "AURORA/data/something/frames/213158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping paperclip holder with finger over, so paperclips falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115844", "images": ["AURORA/data/something/frames/40161/first.jpg", "AURORA/data/something/frames/40161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cups"}, {"from": "gpt", "value": ""}]} +{"id": "000000115845", "images": ["AURORA/data/something/frames/137038/first.jpg", "AURORA/data/something/frames/137038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a speaker on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115846", "images": ["AURORA/data/something/frames/25709/first.jpg", "AURORA/data/something/frames/25709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115847", "images": ["AURORA/data/something/frames/175508/first.jpg", "AURORA/data/something/frames/175508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a train from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115848", "images": ["AURORA/data/something/frames/15201/first.jpg", "AURORA/data/something/frames/15201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering branch"}, {"from": "gpt", "value": ""}]} +{"id": "000000115849", "images": ["AURORA/data/something/frames/146020/first.jpg", "AURORA/data/something/frames/146020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115850", "images": ["AURORA/data/something/frames/75502/first.jpg", "AURORA/data/something/frames/75502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115851", "images": ["AURORA/data/something/frames/69297/first.jpg", "AURORA/data/something/frames/69297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a candle jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115852", "images": ["AURORA/data/something/frames/103052/first.jpg", "AURORA/data/something/frames/103052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lemon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115853", "images": ["AURORA/data/something/frames/180921/first.jpg", "AURORA/data/something/frames/180921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115854", "images": ["AURORA/data/something/frames/171674/first.jpg", "AURORA/data/something/frames/171674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a deck of cards behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115855", "images": ["AURORA/data/something/frames/75455/first.jpg", "AURORA/data/something/frames/75455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115856", "images": ["AURORA/data/something/frames/56891/first.jpg", "AURORA/data/something/frames/56891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillow so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115857", "images": ["AURORA/data/something/frames/107137/first.jpg", "AURORA/data/something/frames/107137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000115858", "images": ["AURORA/data/something/frames/5231/first.jpg", "AURORA/data/something/frames/5231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a bowl colliding with a bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115859", "images": ["AURORA/data/something/frames/583/first.jpg", "AURORA/data/something/frames/583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115860", "images": ["AURORA/data/something/frames/64853/first.jpg", "AURORA/data/something/frames/64853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smartphone across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115861", "images": ["AURORA/data/something/frames/144552/first.jpg", "AURORA/data/something/frames/144552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from flower with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115862", "images": ["AURORA/data/something/frames/211186/first.jpg", "AURORA/data/something/frames/211186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115863", "images": ["AURORA/data/something/frames/209947/first.jpg", "AURORA/data/something/frames/209947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving steel glass towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115864", "images": ["AURORA/data/something/frames/159542/first.jpg", "AURORA/data/something/frames/159542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cloth, revealing hairband behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115865", "images": ["AURORA/data/something/frames/220316/first.jpg", "AURORA/data/something/frames/220316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ribbon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115866", "images": ["AURORA/data/something/frames/27436/first.jpg", "AURORA/data/something/frames/27436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115867", "images": ["AURORA/data/something/frames/90121/first.jpg", "AURORA/data/something/frames/90121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bolt with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115868", "images": ["AURORA/data/something/frames/185472/first.jpg", "AURORA/data/something/frames/185472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115869", "images": ["AURORA/data/something/frames/197161/first.jpg", "AURORA/data/something/frames/197161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115870", "images": ["AURORA/data/something/frames/142705/first.jpg", "AURORA/data/something/frames/142705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115871", "images": ["AURORA/data/something/frames/121328/first.jpg", "AURORA/data/something/frames/121328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairbrush into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115872", "images": ["AURORA/data/something/frames/87312/first.jpg", "AURORA/data/something/frames/87312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bread into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115873", "images": ["AURORA/data/something/frames/123652/first.jpg", "AURORA/data/something/frames/123652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pumpkin with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115874", "images": ["AURORA/data/something/frames/137771/first.jpg", "AURORA/data/something/frames/137771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling chip crumbs onto paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115875", "images": ["AURORA/data/something/frames/115957/first.jpg", "AURORA/data/something/frames/115957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000115876", "images": ["AURORA/data/something/frames/169894/first.jpg", "AURORA/data/something/frames/169894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115877", "images": ["AURORA/data/something/frames/69895/first.jpg", "AURORA/data/something/frames/69895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115878", "images": ["AURORA/data/something/frames/33082/first.jpg", "AURORA/data/something/frames/33082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soup can"}, {"from": "gpt", "value": ""}]} +{"id": "000000115879", "images": ["AURORA/data/something/frames/63494/first.jpg", "AURORA/data/something/frames/63494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving brush and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115880", "images": ["AURORA/data/something/frames/99109/first.jpg", "AURORA/data/something/frames/99109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115881", "images": ["AURORA/data/something/frames/44140/first.jpg", "AURORA/data/something/frames/44140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115882", "images": ["AURORA/data/something/frames/102422/first.jpg", "AURORA/data/something/frames/102422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115883", "images": ["AURORA/data/something/frames/138364/first.jpg", "AURORA/data/something/frames/138364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashlight on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115884", "images": ["AURORA/data/something/frames/80256/first.jpg", "AURORA/data/something/frames/80256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairpins"}, {"from": "gpt", "value": ""}]} +{"id": "000000115885", "images": ["AURORA/data/something/frames/139261/first.jpg", "AURORA/data/something/frames/139261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging stone out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115886", "images": ["AURORA/data/something/frames/29911/first.jpg", "AURORA/data/something/frames/29911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000115887", "images": ["AURORA/data/something/frames/69008/first.jpg", "AURORA/data/something/frames/69008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000115888", "images": ["AURORA/data/something/frames/143248/first.jpg", "AURORA/data/something/frames/143248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a bottle of perfume on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115889", "images": ["AURORA/data/something/frames/217737/first.jpg", "AURORA/data/something/frames/217737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cup with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115890", "images": ["AURORA/data/something/frames/154702/first.jpg", "AURORA/data/something/frames/154702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a coffee cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115891", "images": ["AURORA/data/something/frames/66523/first.jpg", "AURORA/data/something/frames/66523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle cap with black cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115892", "images": ["AURORA/data/something/frames/183181/first.jpg", "AURORA/data/something/frames/183181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a marker so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115893", "images": ["AURORA/data/something/frames/143303/first.jpg", "AURORA/data/something/frames/143303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115894", "images": ["AURORA/data/something/frames/135947/first.jpg", "AURORA/data/something/frames/135947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115895", "images": ["AURORA/data/something/frames/106200/first.jpg", "AURORA/data/something/frames/106200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toothbrush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115896", "images": ["AURORA/data/something/frames/131223/first.jpg", "AURORA/data/something/frames/131223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red pencil sharpner from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115897", "images": ["AURORA/data/something/frames/102606/first.jpg", "AURORA/data/something/frames/102606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000115898", "images": ["AURORA/data/something/frames/45726/first.jpg", "AURORA/data/something/frames/45726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pendrive down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115899", "images": ["AURORA/data/something/frames/94488/first.jpg", "AURORA/data/something/frames/94488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mason jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115900", "images": ["AURORA/data/something/frames/152430/first.jpg", "AURORA/data/something/frames/152430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115901", "images": ["AURORA/data/something/frames/177289/first.jpg", "AURORA/data/something/frames/177289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115902", "images": ["AURORA/data/something/frames/56444/first.jpg", "AURORA/data/something/frames/56444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115903", "images": ["AURORA/data/something/frames/189496/first.jpg", "AURORA/data/something/frames/189496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening juicer cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000115904", "images": ["AURORA/data/something/frames/164586/first.jpg", "AURORA/data/something/frames/164586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115905", "images": ["AURORA/data/something/frames/41786/first.jpg", "AURORA/data/something/frames/41786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115906", "images": ["AURORA/data/something/frames/117853/first.jpg", "AURORA/data/something/frames/117853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair band out of green cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115907", "images": ["AURORA/data/something/frames/167586/first.jpg", "AURORA/data/something/frames/167586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115908", "images": ["AURORA/data/something/frames/4004/first.jpg", "AURORA/data/something/frames/4004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115909", "images": ["AURORA/data/something/frames/180648/first.jpg", "AURORA/data/something/frames/180648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spectacles case upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115910", "images": ["AURORA/data/something/frames/114296/first.jpg", "AURORA/data/something/frames/114296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115911", "images": ["AURORA/data/something/frames/20414/first.jpg", "AURORA/data/something/frames/20414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115912", "images": ["AURORA/data/something/frames/104143/first.jpg", "AURORA/data/something/frames/104143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon, marble and sponge on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115913", "images": ["AURORA/data/something/frames/74053/first.jpg", "AURORA/data/something/frames/74053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scissors behind tape dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000115914", "images": ["AURORA/data/something/frames/190246/first.jpg", "AURORA/data/something/frames/190246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dog plush towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115915", "images": ["AURORA/data/something/frames/124015/first.jpg", "AURORA/data/something/frames/124015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing heater component from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115916", "images": ["AURORA/data/something/frames/185398/first.jpg", "AURORA/data/something/frames/185398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115917", "images": ["AURORA/data/something/frames/181765/first.jpg", "AURORA/data/something/frames/181765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115918", "images": ["AURORA/data/something/frames/99861/first.jpg", "AURORA/data/something/frames/99861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115919", "images": ["AURORA/data/something/frames/13592/first.jpg", "AURORA/data/something/frames/13592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115920", "images": ["AURORA/data/something/frames/119635/first.jpg", "AURORA/data/something/frames/119635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming person"}, {"from": "gpt", "value": ""}]} +{"id": "000000115921", "images": ["AURORA/data/something/frames/102044/first.jpg", "AURORA/data/something/frames/102044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tin foil so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115922", "images": ["AURORA/data/something/frames/22465/first.jpg", "AURORA/data/something/frames/22465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115923", "images": ["AURORA/data/something/frames/150279/first.jpg", "AURORA/data/something/frames/150279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115924", "images": ["AURORA/data/something/frames/167677/first.jpg", "AURORA/data/something/frames/167677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box of special k cereals next to a box of krave cereals"}, {"from": "gpt", "value": ""}]} +{"id": "000000115925", "images": ["AURORA/data/something/frames/9424/first.jpg", "AURORA/data/something/frames/9424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hairband with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115926", "images": ["AURORA/data/something/frames/4634/first.jpg", "AURORA/data/something/frames/4634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting clothe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115927", "images": ["AURORA/data/something/frames/172716/first.jpg", "AURORA/data/something/frames/172716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lid off of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115928", "images": ["AURORA/data/something/frames/144680/first.jpg", "AURORA/data/something/frames/144680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a piece of cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115929", "images": ["AURORA/data/something/frames/171605/first.jpg", "AURORA/data/something/frames/171605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sweet out of sweetbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115930", "images": ["AURORA/data/something/frames/126129/first.jpg", "AURORA/data/something/frames/126129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000115931", "images": ["AURORA/data/something/frames/97982/first.jpg", "AURORA/data/something/frames/97982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pincer from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115932", "images": ["AURORA/data/something/frames/8793/first.jpg", "AURORA/data/something/frames/8793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three gift cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000115933", "images": ["AURORA/data/something/frames/112536/first.jpg", "AURORA/data/something/frames/112536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: cow being deflected from door"}, {"from": "gpt", "value": ""}]} +{"id": "000000115934", "images": ["AURORA/data/something/frames/166599/first.jpg", "AURORA/data/something/frames/166599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the compact disc into the compact disc case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115935", "images": ["AURORA/data/something/frames/212129/first.jpg", "AURORA/data/something/frames/212129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115936", "images": ["AURORA/data/something/frames/153859/first.jpg", "AURORA/data/something/frames/153859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar container away from tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000115937", "images": ["AURORA/data/something/frames/172201/first.jpg", "AURORA/data/something/frames/172201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115938", "images": ["AURORA/data/something/frames/125766/first.jpg", "AURORA/data/something/frames/125766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115939", "images": ["AURORA/data/something/frames/159460/first.jpg", "AURORA/data/something/frames/159460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115940", "images": ["AURORA/data/something/frames/85701/first.jpg", "AURORA/data/something/frames/85701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming sign post"}, {"from": "gpt", "value": ""}]} +{"id": "000000115941", "images": ["AURORA/data/something/frames/215254/first.jpg", "AURORA/data/something/frames/215254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering soap with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115942", "images": ["AURORA/data/something/frames/26337/first.jpg", "AURORA/data/something/frames/26337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mouse with a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115943", "images": ["AURORA/data/something/frames/62208/first.jpg", "AURORA/data/something/frames/62208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a gift card to a bandage box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115944", "images": ["AURORA/data/something/frames/70330/first.jpg", "AURORA/data/something/frames/70330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115945", "images": ["AURORA/data/something/frames/103985/first.jpg", "AURORA/data/something/frames/103985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000115946", "images": ["AURORA/data/something/frames/58565/first.jpg", "AURORA/data/something/frames/58565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115947", "images": ["AURORA/data/something/frames/161676/first.jpg", "AURORA/data/something/frames/161676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115948", "images": ["AURORA/data/something/frames/177827/first.jpg", "AURORA/data/something/frames/177827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaves so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115949", "images": ["AURORA/data/something/frames/212417/first.jpg", "AURORA/data/something/frames/212417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115950", "images": ["AURORA/data/something/frames/81516/first.jpg", "AURORA/data/something/frames/81516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with match box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115951", "images": ["AURORA/data/something/frames/186012/first.jpg", "AURORA/data/something/frames/186012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing hard paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115952", "images": ["AURORA/data/something/frames/163038/first.jpg", "AURORA/data/something/frames/163038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving part of dvd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000115953", "images": ["AURORA/data/something/frames/180231/first.jpg", "AURORA/data/something/frames/180231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115954", "images": ["AURORA/data/something/frames/119376/first.jpg", "AURORA/data/something/frames/119376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin in front of a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115955", "images": ["AURORA/data/something/frames/197680/first.jpg", "AURORA/data/something/frames/197680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115956", "images": ["AURORA/data/something/frames/46375/first.jpg", "AURORA/data/something/frames/46375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115957", "images": ["AURORA/data/something/frames/136257/first.jpg", "AURORA/data/something/frames/136257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115958", "images": ["AURORA/data/something/frames/46811/first.jpg", "AURORA/data/something/frames/46811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000115959", "images": ["AURORA/data/something/frames/17162/first.jpg", "AURORA/data/something/frames/17162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toothpaste box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115960", "images": ["AURORA/data/something/frames/146415/first.jpg", "AURORA/data/something/frames/146415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a twig until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115961", "images": ["AURORA/data/something/frames/12942/first.jpg", "AURORA/data/something/frames/12942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115962", "images": ["AURORA/data/something/frames/118525/first.jpg", "AURORA/data/something/frames/118525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115963", "images": ["AURORA/data/something/frames/180779/first.jpg", "AURORA/data/something/frames/180779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle onto table edge so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115964", "images": ["AURORA/data/something/frames/151963/first.jpg", "AURORA/data/something/frames/151963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rule down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115965", "images": ["AURORA/data/something/frames/194101/first.jpg", "AURORA/data/something/frames/194101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115966", "images": ["AURORA/data/something/frames/7703/first.jpg", "AURORA/data/something/frames/7703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sand up with shovel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115967", "images": ["AURORA/data/something/frames/165080/first.jpg", "AURORA/data/something/frames/165080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubik cube next to card"}, {"from": "gpt", "value": ""}]} +{"id": "000000115968", "images": ["AURORA/data/something/frames/377/first.jpg", "AURORA/data/something/frames/377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cookie box lid with green toy car on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115969", "images": ["AURORA/data/something/frames/142837/first.jpg", "AURORA/data/something/frames/142837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115970", "images": ["AURORA/data/something/frames/7496/first.jpg", "AURORA/data/something/frames/7496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping an empty ice cream cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115971", "images": ["AURORA/data/something/frames/151509/first.jpg", "AURORA/data/something/frames/151509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115972", "images": ["AURORA/data/something/frames/140857/first.jpg", "AURORA/data/something/frames/140857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator next to a pencase"}, {"from": "gpt", "value": ""}]} +{"id": "000000115973", "images": ["AURORA/data/something/frames/161514/first.jpg", "AURORA/data/something/frames/161514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming sunset"}, {"from": "gpt", "value": ""}]} +{"id": "000000115974", "images": ["AURORA/data/something/frames/202253/first.jpg", "AURORA/data/something/frames/202253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting lamp with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115975", "images": ["AURORA/data/something/frames/167415/first.jpg", "AURORA/data/something/frames/167415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115976", "images": ["AURORA/data/something/frames/30414/first.jpg", "AURORA/data/something/frames/30414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a block of paper on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115977", "images": ["AURORA/data/something/frames/36094/first.jpg", "AURORA/data/something/frames/36094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling tissue boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115978", "images": ["AURORA/data/something/frames/62874/first.jpg", "AURORA/data/something/frames/62874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115979", "images": ["AURORA/data/something/frames/1694/first.jpg", "AURORA/data/something/frames/1694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115980", "images": ["AURORA/data/something/frames/168854/first.jpg", "AURORA/data/something/frames/168854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with rubber duck on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115981", "images": ["AURORA/data/something/frames/19081/first.jpg", "AURORA/data/something/frames/19081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a plate with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115982", "images": ["AURORA/data/something/frames/75788/first.jpg", "AURORA/data/something/frames/75788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something that cannot upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115983", "images": ["AURORA/data/something/frames/153026/first.jpg", "AURORA/data/something/frames/153026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing gate with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115984", "images": ["AURORA/data/something/frames/179551/first.jpg", "AURORA/data/something/frames/179551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green chalk from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115985", "images": ["AURORA/data/something/frames/100751/first.jpg", "AURORA/data/something/frames/100751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115986", "images": ["AURORA/data/something/frames/196829/first.jpg", "AURORA/data/something/frames/196829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towels into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115987", "images": ["AURORA/data/something/frames/185313/first.jpg", "AURORA/data/something/frames/185313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115988", "images": ["AURORA/data/something/frames/146053/first.jpg", "AURORA/data/something/frames/146053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115989", "images": ["AURORA/data/something/frames/36584/first.jpg", "AURORA/data/something/frames/36584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115990", "images": ["AURORA/data/something/frames/133961/first.jpg", "AURORA/data/something/frames/133961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115991", "images": ["AURORA/data/something/frames/152215/first.jpg", "AURORA/data/something/frames/152215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading red chillies onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000115992", "images": ["AURORA/data/something/frames/33523/first.jpg", "AURORA/data/something/frames/33523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch next to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000115993", "images": ["AURORA/data/something/frames/71988/first.jpg", "AURORA/data/something/frames/71988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring gems out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115994", "images": ["AURORA/data/something/frames/68888/first.jpg", "AURORA/data/something/frames/68888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115995", "images": ["AURORA/data/something/frames/183751/first.jpg", "AURORA/data/something/frames/183751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000115996", "images": ["AURORA/data/something/frames/116234/first.jpg", "AURORA/data/something/frames/116234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping ketchup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115997", "images": ["AURORA/data/something/frames/152261/first.jpg", "AURORA/data/something/frames/152261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000115998", "images": ["AURORA/data/something/frames/81390/first.jpg", "AURORA/data/something/frames/81390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to more pens, pencils."}, {"from": "gpt", "value": ""}]} +{"id": "000000115999", "images": ["AURORA/data/something/frames/205883/first.jpg", "AURORA/data/something/frames/205883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key next to a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116000", "images": ["AURORA/data/something/frames/3226/first.jpg", "AURORA/data/something/frames/3226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116001", "images": ["AURORA/data/something/frames/206345/first.jpg", "AURORA/data/something/frames/206345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb stick to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116002", "images": ["AURORA/data/something/frames/128081/first.jpg", "AURORA/data/something/frames/128081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many candles on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116003", "images": ["AURORA/data/something/frames/40435/first.jpg", "AURORA/data/something/frames/40435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying lotion on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116004", "images": ["AURORA/data/something/frames/42075/first.jpg", "AURORA/data/something/frames/42075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a brush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116005", "images": ["AURORA/data/something/frames/106607/first.jpg", "AURORA/data/something/frames/106607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116006", "images": ["AURORA/data/something/frames/9381/first.jpg", "AURORA/data/something/frames/9381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glass onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116007", "images": ["AURORA/data/something/frames/82049/first.jpg", "AURORA/data/something/frames/82049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping books onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116008", "images": ["AURORA/data/something/frames/141411/first.jpg", "AURORA/data/something/frames/141411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116009", "images": ["AURORA/data/something/frames/165031/first.jpg", "AURORA/data/something/frames/165031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electrical plug into a plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116010", "images": ["AURORA/data/something/frames/163769/first.jpg", "AURORA/data/something/frames/163769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming white book marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000116011", "images": ["AURORA/data/something/frames/139906/first.jpg", "AURORA/data/something/frames/139906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116012", "images": ["AURORA/data/something/frames/51538/first.jpg", "AURORA/data/something/frames/51538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching refill to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116013", "images": ["AURORA/data/something/frames/182093/first.jpg", "AURORA/data/something/frames/182093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of straw without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116014", "images": ["AURORA/data/something/frames/159555/first.jpg", "AURORA/data/something/frames/159555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000116015", "images": ["AURORA/data/something/frames/100029/first.jpg", "AURORA/data/something/frames/100029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116016", "images": ["AURORA/data/something/frames/179801/first.jpg", "AURORA/data/something/frames/179801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a notebook so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116017", "images": ["AURORA/data/something/frames/42602/first.jpg", "AURORA/data/something/frames/42602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching old mobile phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116018", "images": ["AURORA/data/something/frames/136093/first.jpg", "AURORA/data/something/frames/136093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116019", "images": ["AURORA/data/something/frames/94070/first.jpg", "AURORA/data/something/frames/94070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a nightlight into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116020", "images": ["AURORA/data/something/frames/193966/first.jpg", "AURORA/data/something/frames/193966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon from a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116021", "images": ["AURORA/data/something/frames/28841/first.jpg", "AURORA/data/something/frames/28841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book onto pen stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116022", "images": ["AURORA/data/something/frames/60717/first.jpg", "AURORA/data/something/frames/60717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting seasor, tailoring tap and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116023", "images": ["AURORA/data/something/frames/4971/first.jpg", "AURORA/data/something/frames/4971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into mobile but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116024", "images": ["AURORA/data/something/frames/70841/first.jpg", "AURORA/data/something/frames/70841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116025", "images": ["AURORA/data/something/frames/3002/first.jpg", "AURORA/data/something/frames/3002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming audio sistem"}, {"from": "gpt", "value": ""}]} +{"id": "000000116026", "images": ["AURORA/data/something/frames/101206/first.jpg", "AURORA/data/something/frames/101206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116027", "images": ["AURORA/data/something/frames/171783/first.jpg", "AURORA/data/something/frames/171783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping matchbox into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116028", "images": ["AURORA/data/something/frames/213305/first.jpg", "AURORA/data/something/frames/213305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116029", "images": ["AURORA/data/something/frames/216736/first.jpg", "AURORA/data/something/frames/216736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bracelet behind hand bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116030", "images": ["AURORA/data/something/frames/217783/first.jpg", "AURORA/data/something/frames/217783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116031", "images": ["AURORA/data/something/frames/204721/first.jpg", "AURORA/data/something/frames/204721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag of bread onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116032", "images": ["AURORA/data/something/frames/217909/first.jpg", "AURORA/data/something/frames/217909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing plastic spray from left to right from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116033", "images": ["AURORA/data/something/frames/153183/first.jpg", "AURORA/data/something/frames/153183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000116034", "images": ["AURORA/data/something/frames/118265/first.jpg", "AURORA/data/something/frames/118265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116035", "images": ["AURORA/data/something/frames/18632/first.jpg", "AURORA/data/something/frames/18632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering sunglasses with cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116036", "images": ["AURORA/data/something/frames/34137/first.jpg", "AURORA/data/something/frames/34137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116037", "images": ["AURORA/data/something/frames/110058/first.jpg", "AURORA/data/something/frames/110058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving seal pad down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116038", "images": ["AURORA/data/something/frames/173175/first.jpg", "AURORA/data/something/frames/173175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto soil ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000116039", "images": ["AURORA/data/something/frames/213040/first.jpg", "AURORA/data/something/frames/213040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coin with sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000116040", "images": ["AURORA/data/something/frames/11548/first.jpg", "AURORA/data/something/frames/11548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116041", "images": ["AURORA/data/something/frames/70471/first.jpg", "AURORA/data/something/frames/70471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one mobile phone of many similar mobile phones on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116042", "images": ["AURORA/data/something/frames/214369/first.jpg", "AURORA/data/something/frames/214369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116043", "images": ["AURORA/data/something/frames/170919/first.jpg", "AURORA/data/something/frames/170919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116044", "images": ["AURORA/data/something/frames/54925/first.jpg", "AURORA/data/something/frames/54925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a spider with my fist"}, {"from": "gpt", "value": ""}]} +{"id": "000000116045", "images": ["AURORA/data/something/frames/31379/first.jpg", "AURORA/data/something/frames/31379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black hair tie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116046", "images": ["AURORA/data/something/frames/159346/first.jpg", "AURORA/data/something/frames/159346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000116047", "images": ["AURORA/data/something/frames/213476/first.jpg", "AURORA/data/something/frames/213476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling beans onto hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116048", "images": ["AURORA/data/something/frames/132955/first.jpg", "AURORA/data/something/frames/132955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a screw on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116049", "images": ["AURORA/data/something/frames/125775/first.jpg", "AURORA/data/something/frames/125775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar next to saltshaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000116050", "images": ["AURORA/data/something/frames/126925/first.jpg", "AURORA/data/something/frames/126925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen cap so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116051", "images": ["AURORA/data/something/frames/70337/first.jpg", "AURORA/data/something/frames/70337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching lid to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116052", "images": ["AURORA/data/something/frames/110661/first.jpg", "AURORA/data/something/frames/110661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) nose of my face"}, {"from": "gpt", "value": ""}]} +{"id": "000000116053", "images": ["AURORA/data/something/frames/172563/first.jpg", "AURORA/data/something/frames/172563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116054", "images": ["AURORA/data/something/frames/174764/first.jpg", "AURORA/data/something/frames/174764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116055", "images": ["AURORA/data/something/frames/51547/first.jpg", "AURORA/data/something/frames/51547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cable into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116056", "images": ["AURORA/data/something/frames/145057/first.jpg", "AURORA/data/something/frames/145057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116057", "images": ["AURORA/data/something/frames/20237/first.jpg", "AURORA/data/something/frames/20237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil from cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000116058", "images": ["AURORA/data/something/frames/124637/first.jpg", "AURORA/data/something/frames/124637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from window with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116059", "images": ["AURORA/data/something/frames/78995/first.jpg", "AURORA/data/something/frames/78995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting copo with mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116060", "images": ["AURORA/data/something/frames/55969/first.jpg", "AURORA/data/something/frames/55969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000116061", "images": ["AURORA/data/something/frames/169808/first.jpg", "AURORA/data/something/frames/169808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into iphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116062", "images": ["AURORA/data/something/frames/200682/first.jpg", "AURORA/data/something/frames/200682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting whisk up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116063", "images": ["AURORA/data/something/frames/189399/first.jpg", "AURORA/data/something/frames/189399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116064", "images": ["AURORA/data/something/frames/137851/first.jpg", "AURORA/data/something/frames/137851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116065", "images": ["AURORA/data/something/frames/84343/first.jpg", "AURORA/data/something/frames/84343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling duster from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116066", "images": ["AURORA/data/something/frames/219973/first.jpg", "AURORA/data/something/frames/219973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116067", "images": ["AURORA/data/something/frames/136669/first.jpg", "AURORA/data/something/frames/136669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging baby monitor cord into power outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116068", "images": ["AURORA/data/something/frames/196736/first.jpg", "AURORA/data/something/frames/196736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black brush from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116069", "images": ["AURORA/data/something/frames/56558/first.jpg", "AURORA/data/something/frames/56558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116070", "images": ["AURORA/data/something/frames/171874/first.jpg", "AURORA/data/something/frames/171874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wine glas and cup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116071", "images": ["AURORA/data/something/frames/43299/first.jpg", "AURORA/data/something/frames/43299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116072", "images": ["AURORA/data/something/frames/161832/first.jpg", "AURORA/data/something/frames/161832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping napkin behind dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116073", "images": ["AURORA/data/something/frames/73196/first.jpg", "AURORA/data/something/frames/73196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116074", "images": ["AURORA/data/something/frames/192310/first.jpg", "AURORA/data/something/frames/192310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brake pedal onto hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116075", "images": ["AURORA/data/something/frames/165723/first.jpg", "AURORA/data/something/frames/165723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lotion in front of small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116076", "images": ["AURORA/data/something/frames/112899/first.jpg", "AURORA/data/something/frames/112899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil sharpener onto cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116077", "images": ["AURORA/data/something/frames/203036/first.jpg", "AURORA/data/something/frames/203036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116078", "images": ["AURORA/data/something/frames/79626/first.jpg", "AURORA/data/something/frames/79626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116079", "images": ["AURORA/data/something/frames/98494/first.jpg", "AURORA/data/something/frames/98494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming baby play mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116080", "images": ["AURORA/data/something/frames/133384/first.jpg", "AURORA/data/something/frames/133384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering small bottle with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116081", "images": ["AURORA/data/something/frames/26702/first.jpg", "AURORA/data/something/frames/26702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spanner away from magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116082", "images": ["AURORA/data/something/frames/97329/first.jpg", "AURORA/data/something/frames/97329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sock down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116083", "images": ["AURORA/data/something/frames/39075/first.jpg", "AURORA/data/something/frames/39075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing soap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116084", "images": ["AURORA/data/something/frames/196824/first.jpg", "AURORA/data/something/frames/196824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116085", "images": ["AURORA/data/something/frames/109685/first.jpg", "AURORA/data/something/frames/109685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting can into can holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116086", "images": ["AURORA/data/something/frames/133477/first.jpg", "AURORA/data/something/frames/133477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116087", "images": ["AURORA/data/something/frames/218426/first.jpg", "AURORA/data/something/frames/218426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor closer to tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000116088", "images": ["AURORA/data/something/frames/102272/first.jpg", "AURORA/data/something/frames/102272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116089", "images": ["AURORA/data/something/frames/190613/first.jpg", "AURORA/data/something/frames/190613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116090", "images": ["AURORA/data/something/frames/34319/first.jpg", "AURORA/data/something/frames/34319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tissue box in front of a dvd"}, {"from": "gpt", "value": ""}]} +{"id": "000000116091", "images": ["AURORA/data/something/frames/57569/first.jpg", "AURORA/data/something/frames/57569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116092", "images": ["AURORA/data/something/frames/67480/first.jpg", "AURORA/data/something/frames/67480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116093", "images": ["AURORA/data/something/frames/30303/first.jpg", "AURORA/data/something/frames/30303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116094", "images": ["AURORA/data/something/frames/59108/first.jpg", "AURORA/data/something/frames/59108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pillow with a book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116095", "images": ["AURORA/data/something/frames/43816/first.jpg", "AURORA/data/something/frames/43816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen off of bench"}, {"from": "gpt", "value": ""}]} +{"id": "000000116096", "images": ["AURORA/data/something/frames/19932/first.jpg", "AURORA/data/something/frames/19932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet keyholder to the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116097", "images": ["AURORA/data/something/frames/43675/first.jpg", "AURORA/data/something/frames/43675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116098", "images": ["AURORA/data/something/frames/22215/first.jpg", "AURORA/data/something/frames/22215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching measuring tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116099", "images": ["AURORA/data/something/frames/147707/first.jpg", "AURORA/data/something/frames/147707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from newspaper with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116100", "images": ["AURORA/data/something/frames/209302/first.jpg", "AURORA/data/something/frames/209302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116101", "images": ["AURORA/data/something/frames/208012/first.jpg", "AURORA/data/something/frames/208012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle behind laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116102", "images": ["AURORA/data/something/frames/68767/first.jpg", "AURORA/data/something/frames/68767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116103", "images": ["AURORA/data/something/frames/21304/first.jpg", "AURORA/data/something/frames/21304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hair brush next to a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116104", "images": ["AURORA/data/something/frames/67659/first.jpg", "AURORA/data/something/frames/67659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116105", "images": ["AURORA/data/something/frames/90235/first.jpg", "AURORA/data/something/frames/90235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116106", "images": ["AURORA/data/something/frames/195230/first.jpg", "AURORA/data/something/frames/195230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116107", "images": ["AURORA/data/something/frames/156392/first.jpg", "AURORA/data/something/frames/156392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116108", "images": ["AURORA/data/something/frames/20107/first.jpg", "AURORA/data/something/frames/20107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116109", "images": ["AURORA/data/something/frames/22094/first.jpg", "AURORA/data/something/frames/22094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116110", "images": ["AURORA/data/something/frames/104158/first.jpg", "AURORA/data/something/frames/104158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000116111", "images": ["AURORA/data/something/frames/94134/first.jpg", "AURORA/data/something/frames/94134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a smart phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116112", "images": ["AURORA/data/something/frames/209521/first.jpg", "AURORA/data/something/frames/209521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116113", "images": ["AURORA/data/something/frames/29792/first.jpg", "AURORA/data/something/frames/29792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking feet deodorant so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116114", "images": ["AURORA/data/something/frames/156299/first.jpg", "AURORA/data/something/frames/156299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting clothing"}, {"from": "gpt", "value": ""}]} +{"id": "000000116115", "images": ["AURORA/data/something/frames/62862/first.jpg", "AURORA/data/something/frames/62862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116116", "images": ["AURORA/data/something/frames/50831/first.jpg", "AURORA/data/something/frames/50831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116117", "images": ["AURORA/data/something/frames/171067/first.jpg", "AURORA/data/something/frames/171067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116118", "images": ["AURORA/data/something/frames/57406/first.jpg", "AURORA/data/something/frames/57406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116119", "images": ["AURORA/data/something/frames/47457/first.jpg", "AURORA/data/something/frames/47457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116120", "images": ["AURORA/data/something/frames/77643/first.jpg", "AURORA/data/something/frames/77643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking joystick so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116121", "images": ["AURORA/data/something/frames/40640/first.jpg", "AURORA/data/something/frames/40640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping gloves into a carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000116122", "images": ["AURORA/data/something/frames/123823/first.jpg", "AURORA/data/something/frames/123823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116123", "images": ["AURORA/data/something/frames/214020/first.jpg", "AURORA/data/something/frames/214020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a plastic pineapple on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116124", "images": ["AURORA/data/something/frames/105033/first.jpg", "AURORA/data/something/frames/105033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting metal into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116125", "images": ["AURORA/data/something/frames/208685/first.jpg", "AURORA/data/something/frames/208685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving package up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116126", "images": ["AURORA/data/something/frames/156188/first.jpg", "AURORA/data/something/frames/156188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116127", "images": ["AURORA/data/something/frames/205729/first.jpg", "AURORA/data/something/frames/205729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000116128", "images": ["AURORA/data/something/frames/24798/first.jpg", "AURORA/data/something/frames/24798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ice-cream up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116129", "images": ["AURORA/data/something/frames/68428/first.jpg", "AURORA/data/something/frames/68428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116130", "images": ["AURORA/data/something/frames/206020/first.jpg", "AURORA/data/something/frames/206020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending can so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116131", "images": ["AURORA/data/something/frames/12399/first.jpg", "AURORA/data/something/frames/12399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116132", "images": ["AURORA/data/something/frames/218703/first.jpg", "AURORA/data/something/frames/218703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching umbrella with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116133", "images": ["AURORA/data/something/frames/213412/first.jpg", "AURORA/data/something/frames/213412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116134", "images": ["AURORA/data/something/frames/149393/first.jpg", "AURORA/data/something/frames/149393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116135", "images": ["AURORA/data/something/frames/204894/first.jpg", "AURORA/data/something/frames/204894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000116136", "images": ["AURORA/data/something/frames/133652/first.jpg", "AURORA/data/something/frames/133652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116137", "images": ["AURORA/data/something/frames/21190/first.jpg", "AURORA/data/something/frames/21190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000116138", "images": ["AURORA/data/something/frames/16977/first.jpg", "AURORA/data/something/frames/16977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116139", "images": ["AURORA/data/something/frames/144403/first.jpg", "AURORA/data/something/frames/144403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering canister with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116140", "images": ["AURORA/data/something/frames/43893/first.jpg", "AURORA/data/something/frames/43893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 nail polish bottles onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116141", "images": ["AURORA/data/something/frames/1181/first.jpg", "AURORA/data/something/frames/1181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116142", "images": ["AURORA/data/something/frames/170175/first.jpg", "AURORA/data/something/frames/170175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116143", "images": ["AURORA/data/something/frames/69025/first.jpg", "AURORA/data/something/frames/69025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a domino and a toy figurine closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116144", "images": ["AURORA/data/something/frames/157315/first.jpg", "AURORA/data/something/frames/157315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting soft, braun slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116145", "images": ["AURORA/data/something/frames/96620/first.jpg", "AURORA/data/something/frames/96620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paper clip with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116146", "images": ["AURORA/data/something/frames/20485/first.jpg", "AURORA/data/something/frames/20485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a vase from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116147", "images": ["AURORA/data/something/frames/193479/first.jpg", "AURORA/data/something/frames/193479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning orange post-it upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116148", "images": ["AURORA/data/something/frames/59817/first.jpg", "AURORA/data/something/frames/59817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticker to the fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000116149", "images": ["AURORA/data/something/frames/177638/first.jpg", "AURORA/data/something/frames/177638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116150", "images": ["AURORA/data/something/frames/30596/first.jpg", "AURORA/data/something/frames/30596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing banana onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116151", "images": ["AURORA/data/something/frames/182733/first.jpg", "AURORA/data/something/frames/182733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending skewer stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116152", "images": ["AURORA/data/something/frames/68326/first.jpg", "AURORA/data/something/frames/68326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing window"}, {"from": "gpt", "value": ""}]} +{"id": "000000116153", "images": ["AURORA/data/something/frames/219561/first.jpg", "AURORA/data/something/frames/219561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 containers onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116154", "images": ["AURORA/data/something/frames/88206/first.jpg", "AURORA/data/something/frames/88206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and keys on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116155", "images": ["AURORA/data/something/frames/56948/first.jpg", "AURORA/data/something/frames/56948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with pencil and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116156", "images": ["AURORA/data/something/frames/114426/first.jpg", "AURORA/data/something/frames/114426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning small tv set upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116157", "images": ["AURORA/data/something/frames/139521/first.jpg", "AURORA/data/something/frames/139521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of remote control without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116158", "images": ["AURORA/data/something/frames/59748/first.jpg", "AURORA/data/something/frames/59748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116159", "images": ["AURORA/data/something/frames/136469/first.jpg", "AURORA/data/something/frames/136469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116160", "images": ["AURORA/data/something/frames/211799/first.jpg", "AURORA/data/something/frames/211799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000116161", "images": ["AURORA/data/something/frames/202604/first.jpg", "AURORA/data/something/frames/202604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plastic bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116162", "images": ["AURORA/data/something/frames/54844/first.jpg", "AURORA/data/something/frames/54844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a potatoe with a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116163", "images": ["AURORA/data/something/frames/107735/first.jpg", "AURORA/data/something/frames/107735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116164", "images": ["AURORA/data/something/frames/144987/first.jpg", "AURORA/data/something/frames/144987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116165", "images": ["AURORA/data/something/frames/191621/first.jpg", "AURORA/data/something/frames/191621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting charger cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000116166", "images": ["AURORA/data/something/frames/123953/first.jpg", "AURORA/data/something/frames/123953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a groundnut so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116167", "images": ["AURORA/data/something/frames/31662/first.jpg", "AURORA/data/something/frames/31662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from sign post with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116168", "images": ["AURORA/data/something/frames/35073/first.jpg", "AURORA/data/something/frames/35073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a handkerchief so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000116169", "images": ["AURORA/data/something/frames/86575/first.jpg", "AURORA/data/something/frames/86575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116170", "images": ["AURORA/data/something/frames/18227/first.jpg", "AURORA/data/something/frames/18227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping drink up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116171", "images": ["AURORA/data/something/frames/51801/first.jpg", "AURORA/data/something/frames/51801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cloth onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116172", "images": ["AURORA/data/something/frames/166779/first.jpg", "AURORA/data/something/frames/166779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hair clip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116173", "images": ["AURORA/data/something/frames/93264/first.jpg", "AURORA/data/something/frames/93264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a stuffed animal dog with a yard stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000116174", "images": ["AURORA/data/something/frames/78164/first.jpg", "AURORA/data/something/frames/78164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pair of pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116175", "images": ["AURORA/data/something/frames/60020/first.jpg", "AURORA/data/something/frames/60020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116176", "images": ["AURORA/data/something/frames/73537/first.jpg", "AURORA/data/something/frames/73537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116177", "images": ["AURORA/data/something/frames/47243/first.jpg", "AURORA/data/something/frames/47243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a planner with scissors on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116178", "images": ["AURORA/data/something/frames/141484/first.jpg", "AURORA/data/something/frames/141484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000116179", "images": ["AURORA/data/something/frames/40838/first.jpg", "AURORA/data/something/frames/40838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116180", "images": ["AURORA/data/something/frames/90563/first.jpg", "AURORA/data/something/frames/90563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116181", "images": ["AURORA/data/something/frames/23780/first.jpg", "AURORA/data/something/frames/23780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116182", "images": ["AURORA/data/something/frames/177572/first.jpg", "AURORA/data/something/frames/177572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key into a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000116183", "images": ["AURORA/data/something/frames/135517/first.jpg", "AURORA/data/something/frames/135517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pot with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116184", "images": ["AURORA/data/something/frames/21637/first.jpg", "AURORA/data/something/frames/21637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: nail clipper being deflected from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116185", "images": ["AURORA/data/something/frames/179459/first.jpg", "AURORA/data/something/frames/179459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bottle, revealing a charger behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116186", "images": ["AURORA/data/something/frames/122159/first.jpg", "AURORA/data/something/frames/122159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging loader into jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000116187", "images": ["AURORA/data/something/frames/73565/first.jpg", "AURORA/data/something/frames/73565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116188", "images": ["AURORA/data/something/frames/181455/first.jpg", "AURORA/data/something/frames/181455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming dinosaur model"}, {"from": "gpt", "value": ""}]} +{"id": "000000116189", "images": ["AURORA/data/something/frames/168976/first.jpg", "AURORA/data/something/frames/168976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116190", "images": ["AURORA/data/something/frames/161910/first.jpg", "AURORA/data/something/frames/161910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone with camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116191", "images": ["AURORA/data/something/frames/207873/first.jpg", "AURORA/data/something/frames/207873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116192", "images": ["AURORA/data/something/frames/18846/first.jpg", "AURORA/data/something/frames/18846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116193", "images": ["AURORA/data/something/frames/78061/first.jpg", "AURORA/data/something/frames/78061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting something up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116194", "images": ["AURORA/data/something/frames/50281/first.jpg", "AURORA/data/something/frames/50281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tele-commander and a plastic pot so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116195", "images": ["AURORA/data/something/frames/155859/first.jpg", "AURORA/data/something/frames/155859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic bottle, a water bottle and a glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116196", "images": ["AURORA/data/something/frames/84519/first.jpg", "AURORA/data/something/frames/84519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cds so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116197", "images": ["AURORA/data/something/frames/180920/first.jpg", "AURORA/data/something/frames/180920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting notebook with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116198", "images": ["AURORA/data/something/frames/117118/first.jpg", "AURORA/data/something/frames/117118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116199", "images": ["AURORA/data/something/frames/144159/first.jpg", "AURORA/data/something/frames/144159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116200", "images": ["AURORA/data/something/frames/68721/first.jpg", "AURORA/data/something/frames/68721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116201", "images": ["AURORA/data/something/frames/38845/first.jpg", "AURORA/data/something/frames/38845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and marker away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116202", "images": ["AURORA/data/something/frames/139432/first.jpg", "AURORA/data/something/frames/139432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto foot"}, {"from": "gpt", "value": ""}]} +{"id": "000000116203", "images": ["AURORA/data/something/frames/67128/first.jpg", "AURORA/data/something/frames/67128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116204", "images": ["AURORA/data/something/frames/82217/first.jpg", "AURORA/data/something/frames/82217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ipad in front of bananas"}, {"from": "gpt", "value": ""}]} +{"id": "000000116205", "images": ["AURORA/data/something/frames/140433/first.jpg", "AURORA/data/something/frames/140433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto zink"}, {"from": "gpt", "value": ""}]} +{"id": "000000116206", "images": ["AURORA/data/something/frames/198964/first.jpg", "AURORA/data/something/frames/198964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116207", "images": ["AURORA/data/something/frames/3469/first.jpg", "AURORA/data/something/frames/3469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy, toy watch and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116208", "images": ["AURORA/data/something/frames/34942/first.jpg", "AURORA/data/something/frames/34942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses, a beer bottle and a wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116209", "images": ["AURORA/data/something/frames/55605/first.jpg", "AURORA/data/something/frames/55605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116210", "images": ["AURORA/data/something/frames/56029/first.jpg", "AURORA/data/something/frames/56029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notepad paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116211", "images": ["AURORA/data/something/frames/218865/first.jpg", "AURORA/data/something/frames/218865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote with scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000116212", "images": ["AURORA/data/something/frames/175060/first.jpg", "AURORA/data/something/frames/175060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wire out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116213", "images": ["AURORA/data/something/frames/181926/first.jpg", "AURORA/data/something/frames/181926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler onto red toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000116214", "images": ["AURORA/data/something/frames/187001/first.jpg", "AURORA/data/something/frames/187001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping tea off of a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116215", "images": ["AURORA/data/something/frames/114149/first.jpg", "AURORA/data/something/frames/114149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mobile and another mobile so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116216", "images": ["AURORA/data/something/frames/108259/first.jpg", "AURORA/data/something/frames/108259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116217", "images": ["AURORA/data/something/frames/139566/first.jpg", "AURORA/data/something/frames/139566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marble"}, {"from": "gpt", "value": ""}]} +{"id": "000000116218", "images": ["AURORA/data/something/frames/200260/first.jpg", "AURORA/data/something/frames/200260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116219", "images": ["AURORA/data/something/frames/46206/first.jpg", "AURORA/data/something/frames/46206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen behind sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116220", "images": ["AURORA/data/something/frames/168612/first.jpg", "AURORA/data/something/frames/168612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop into canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000116221", "images": ["AURORA/data/something/frames/117574/first.jpg", "AURORA/data/something/frames/117574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy into a bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116222", "images": ["AURORA/data/something/frames/116894/first.jpg", "AURORA/data/something/frames/116894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting rubik's cube up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116223", "images": ["AURORA/data/something/frames/142594/first.jpg", "AURORA/data/something/frames/142594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching waste bin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116224", "images": ["AURORA/data/something/frames/49057/first.jpg", "AURORA/data/something/frames/49057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup off of counter top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116225", "images": ["AURORA/data/something/frames/51109/first.jpg", "AURORA/data/something/frames/51109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116226", "images": ["AURORA/data/something/frames/159168/first.jpg", "AURORA/data/something/frames/159168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116227", "images": ["AURORA/data/something/frames/147379/first.jpg", "AURORA/data/something/frames/147379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116228", "images": ["AURORA/data/something/frames/208136/first.jpg", "AURORA/data/something/frames/208136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116229", "images": ["AURORA/data/something/frames/25872/first.jpg", "AURORA/data/something/frames/25872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife next to fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116230", "images": ["AURORA/data/something/frames/63681/first.jpg", "AURORA/data/something/frames/63681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glove and cell phone so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116231", "images": ["AURORA/data/something/frames/189969/first.jpg", "AURORA/data/something/frames/189969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116232", "images": ["AURORA/data/something/frames/128468/first.jpg", "AURORA/data/something/frames/128468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing jar into fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000116233", "images": ["AURORA/data/something/frames/180577/first.jpg", "AURORA/data/something/frames/180577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116234", "images": ["AURORA/data/something/frames/217102/first.jpg", "AURORA/data/something/frames/217102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging battery charger into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116235", "images": ["AURORA/data/something/frames/54347/first.jpg", "AURORA/data/something/frames/54347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116236", "images": ["AURORA/data/something/frames/213041/first.jpg", "AURORA/data/something/frames/213041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dvd behind a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116237", "images": ["AURORA/data/something/frames/97076/first.jpg", "AURORA/data/something/frames/97076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000116238", "images": ["AURORA/data/something/frames/131354/first.jpg", "AURORA/data/something/frames/131354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116239", "images": ["AURORA/data/something/frames/55934/first.jpg", "AURORA/data/something/frames/55934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116240", "images": ["AURORA/data/something/frames/219161/first.jpg", "AURORA/data/something/frames/219161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116241", "images": ["AURORA/data/something/frames/138291/first.jpg", "AURORA/data/something/frames/138291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying battery in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116242", "images": ["AURORA/data/something/frames/2099/first.jpg", "AURORA/data/something/frames/2099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking toy wheel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116243", "images": ["AURORA/data/something/frames/155973/first.jpg", "AURORA/data/something/frames/155973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116244", "images": ["AURORA/data/something/frames/7247/first.jpg", "AURORA/data/something/frames/7247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cube so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116245", "images": ["AURORA/data/something/frames/55276/first.jpg", "AURORA/data/something/frames/55276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil into a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116246", "images": ["AURORA/data/something/frames/135322/first.jpg", "AURORA/data/something/frames/135322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red toy car on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116247", "images": ["AURORA/data/something/frames/47589/first.jpg", "AURORA/data/something/frames/47589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling water canteen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116248", "images": ["AURORA/data/something/frames/134434/first.jpg", "AURORA/data/something/frames/134434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging spoon out of hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116249", "images": ["AURORA/data/something/frames/176308/first.jpg", "AURORA/data/something/frames/176308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and cellphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116250", "images": ["AURORA/data/something/frames/152428/first.jpg", "AURORA/data/something/frames/152428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen being deflected from binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116251", "images": ["AURORA/data/something/frames/99563/first.jpg", "AURORA/data/something/frames/99563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116252", "images": ["AURORA/data/something/frames/197717/first.jpg", "AURORA/data/something/frames/197717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen to wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116253", "images": ["AURORA/data/something/frames/74759/first.jpg", "AURORA/data/something/frames/74759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116254", "images": ["AURORA/data/something/frames/122389/first.jpg", "AURORA/data/something/frames/122389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pink golf ball colliding with pink golf ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116255", "images": ["AURORA/data/something/frames/170580/first.jpg", "AURORA/data/something/frames/170580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling mobiles up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116256", "images": ["AURORA/data/something/frames/37580/first.jpg", "AURORA/data/something/frames/37580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116257", "images": ["AURORA/data/something/frames/138317/first.jpg", "AURORA/data/something/frames/138317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116258", "images": ["AURORA/data/something/frames/215316/first.jpg", "AURORA/data/something/frames/215316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into swicth but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116259", "images": ["AURORA/data/something/frames/107214/first.jpg", "AURORA/data/something/frames/107214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming black hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116260", "images": ["AURORA/data/something/frames/36364/first.jpg", "AURORA/data/something/frames/36364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a remote with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116261", "images": ["AURORA/data/something/frames/186404/first.jpg", "AURORA/data/something/frames/186404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a wallet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116262", "images": ["AURORA/data/something/frames/56629/first.jpg", "AURORA/data/something/frames/56629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of plate without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116263", "images": ["AURORA/data/something/frames/75187/first.jpg", "AURORA/data/something/frames/75187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spun onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000116264", "images": ["AURORA/data/something/frames/106583/first.jpg", "AURORA/data/something/frames/106583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling napkin onto laptop screen top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116265", "images": ["AURORA/data/something/frames/66116/first.jpg", "AURORA/data/something/frames/66116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116266", "images": ["AURORA/data/something/frames/28586/first.jpg", "AURORA/data/something/frames/28586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging sketch pen out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116267", "images": ["AURORA/data/something/frames/175684/first.jpg", "AURORA/data/something/frames/175684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116268", "images": ["AURORA/data/something/frames/106771/first.jpg", "AURORA/data/something/frames/106771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teddy bear onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000116269", "images": ["AURORA/data/something/frames/42931/first.jpg", "AURORA/data/something/frames/42931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning lighter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116270", "images": ["AURORA/data/something/frames/110027/first.jpg", "AURORA/data/something/frames/110027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116271", "images": ["AURORA/data/something/frames/164301/first.jpg", "AURORA/data/something/frames/164301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic plate so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116272", "images": ["AURORA/data/something/frames/105901/first.jpg", "AURORA/data/something/frames/105901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116273", "images": ["AURORA/data/something/frames/56270/first.jpg", "AURORA/data/something/frames/56270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black disc case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116274", "images": ["AURORA/data/something/frames/178347/first.jpg", "AURORA/data/something/frames/178347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 board clips onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000116275", "images": ["AURORA/data/something/frames/38828/first.jpg", "AURORA/data/something/frames/38828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting eye glasses up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116276", "images": ["AURORA/data/something/frames/50727/first.jpg", "AURORA/data/something/frames/50727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from pen with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116277", "images": ["AURORA/data/something/frames/138978/first.jpg", "AURORA/data/something/frames/138978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting towel up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116278", "images": ["AURORA/data/something/frames/55332/first.jpg", "AURORA/data/something/frames/55332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending incense stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116279", "images": ["AURORA/data/something/frames/220813/first.jpg", "AURORA/data/something/frames/220813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116280", "images": ["AURORA/data/something/frames/126215/first.jpg", "AURORA/data/something/frames/126215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four underpants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116281", "images": ["AURORA/data/something/frames/57816/first.jpg", "AURORA/data/something/frames/57816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil sharpener behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116282", "images": ["AURORA/data/something/frames/159172/first.jpg", "AURORA/data/something/frames/159172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys closer to a camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116283", "images": ["AURORA/data/something/frames/15390/first.jpg", "AURORA/data/something/frames/15390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116284", "images": ["AURORA/data/something/frames/190253/first.jpg", "AURORA/data/something/frames/190253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shaker towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116285", "images": ["AURORA/data/something/frames/211478/first.jpg", "AURORA/data/something/frames/211478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hangar into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116286", "images": ["AURORA/data/something/frames/125349/first.jpg", "AURORA/data/something/frames/125349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116287", "images": ["AURORA/data/something/frames/93619/first.jpg", "AURORA/data/something/frames/93619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paint tube from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116288", "images": ["AURORA/data/something/frames/198645/first.jpg", "AURORA/data/something/frames/198645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candy onto notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000116289", "images": ["AURORA/data/something/frames/35241/first.jpg", "AURORA/data/something/frames/35241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding childs shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116290", "images": ["AURORA/data/something/frames/146617/first.jpg", "AURORA/data/something/frames/146617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) stopper of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116291", "images": ["AURORA/data/something/frames/183412/first.jpg", "AURORA/data/something/frames/183412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116292", "images": ["AURORA/data/something/frames/7011/first.jpg", "AURORA/data/something/frames/7011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching tape to couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116293", "images": ["AURORA/data/something/frames/118107/first.jpg", "AURORA/data/something/frames/118107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a paper clip off the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116294", "images": ["AURORA/data/something/frames/198878/first.jpg", "AURORA/data/something/frames/198878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white sheet out of magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000116295", "images": ["AURORA/data/something/frames/63422/first.jpg", "AURORA/data/something/frames/63422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116296", "images": ["AURORA/data/something/frames/154791/first.jpg", "AURORA/data/something/frames/154791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pen into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116297", "images": ["AURORA/data/something/frames/178368/first.jpg", "AURORA/data/something/frames/178368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116298", "images": ["AURORA/data/something/frames/100590/first.jpg", "AURORA/data/something/frames/100590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering my face"}, {"from": "gpt", "value": ""}]} +{"id": "000000116299", "images": ["AURORA/data/something/frames/68381/first.jpg", "AURORA/data/something/frames/68381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tea mug in front of candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000116300", "images": ["AURORA/data/something/frames/170884/first.jpg", "AURORA/data/something/frames/170884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling curry leaves onto cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116301", "images": ["AURORA/data/something/frames/12061/first.jpg", "AURORA/data/something/frames/12061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of duster without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116302", "images": ["AURORA/data/something/frames/80449/first.jpg", "AURORA/data/something/frames/80449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116303", "images": ["AURORA/data/something/frames/134089/first.jpg", "AURORA/data/something/frames/134089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116304", "images": ["AURORA/data/something/frames/80706/first.jpg", "AURORA/data/something/frames/80706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cotton swabs so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116305", "images": ["AURORA/data/something/frames/113748/first.jpg", "AURORA/data/something/frames/113748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pepper behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116306", "images": ["AURORA/data/something/frames/134893/first.jpg", "AURORA/data/something/frames/134893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping poker chip into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116307", "images": ["AURORA/data/something/frames/139163/first.jpg", "AURORA/data/something/frames/139163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116308", "images": ["AURORA/data/something/frames/148321/first.jpg", "AURORA/data/something/frames/148321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116309", "images": ["AURORA/data/something/frames/68792/first.jpg", "AURORA/data/something/frames/68792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116310", "images": ["AURORA/data/something/frames/62/first.jpg", "AURORA/data/something/frames/62/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116311", "images": ["AURORA/data/something/frames/20726/first.jpg", "AURORA/data/something/frames/20726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116312", "images": ["AURORA/data/something/frames/12581/first.jpg", "AURORA/data/something/frames/12581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a block closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116313", "images": ["AURORA/data/something/frames/73864/first.jpg", "AURORA/data/something/frames/73864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000116314", "images": ["AURORA/data/something/frames/58539/first.jpg", "AURORA/data/something/frames/58539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a light bulb onto a cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116315", "images": ["AURORA/data/something/frames/53688/first.jpg", "AURORA/data/something/frames/53688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116316", "images": ["AURORA/data/something/frames/193755/first.jpg", "AURORA/data/something/frames/193755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking make-up out of toiletry bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116317", "images": ["AURORA/data/something/frames/171937/first.jpg", "AURORA/data/something/frames/171937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pen into a pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000116318", "images": ["AURORA/data/something/frames/217387/first.jpg", "AURORA/data/something/frames/217387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116319", "images": ["AURORA/data/something/frames/65252/first.jpg", "AURORA/data/something/frames/65252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coke onto post it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116320", "images": ["AURORA/data/something/frames/112374/first.jpg", "AURORA/data/something/frames/112374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three coins onto lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000116321", "images": ["AURORA/data/something/frames/50492/first.jpg", "AURORA/data/something/frames/50492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching usb with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116322", "images": ["AURORA/data/something/frames/201002/first.jpg", "AURORA/data/something/frames/201002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116323", "images": ["AURORA/data/something/frames/53329/first.jpg", "AURORA/data/something/frames/53329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116324", "images": ["AURORA/data/something/frames/6551/first.jpg", "AURORA/data/something/frames/6551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling ipod from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116325", "images": ["AURORA/data/something/frames/151908/first.jpg", "AURORA/data/something/frames/151908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting camera lens"}, {"from": "gpt", "value": ""}]} +{"id": "000000116326", "images": ["AURORA/data/something/frames/23884/first.jpg", "AURORA/data/something/frames/23884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116327", "images": ["AURORA/data/something/frames/111777/first.jpg", "AURORA/data/something/frames/111777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116328", "images": ["AURORA/data/something/frames/139284/first.jpg", "AURORA/data/something/frames/139284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screwdriver across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116329", "images": ["AURORA/data/something/frames/76144/first.jpg", "AURORA/data/something/frames/76144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming a bottle of lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116330", "images": ["AURORA/data/something/frames/189275/first.jpg", "AURORA/data/something/frames/189275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116331", "images": ["AURORA/data/something/frames/183053/first.jpg", "AURORA/data/something/frames/183053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening an oven door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116332", "images": ["AURORA/data/something/frames/52578/first.jpg", "AURORA/data/something/frames/52578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a comb so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116333", "images": ["AURORA/data/something/frames/163473/first.jpg", "AURORA/data/something/frames/163473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000116334", "images": ["AURORA/data/something/frames/8726/first.jpg", "AURORA/data/something/frames/8726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116335", "images": ["AURORA/data/something/frames/139118/first.jpg", "AURORA/data/something/frames/139118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a socket plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116336", "images": ["AURORA/data/something/frames/121046/first.jpg", "AURORA/data/something/frames/121046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a match box and a lighter so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116337", "images": ["AURORA/data/something/frames/115108/first.jpg", "AURORA/data/something/frames/115108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming advertisement board"}, {"from": "gpt", "value": ""}]} +{"id": "000000116338", "images": ["AURORA/data/something/frames/122979/first.jpg", "AURORA/data/something/frames/122979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconut shell towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116339", "images": ["AURORA/data/something/frames/33807/first.jpg", "AURORA/data/something/frames/33807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116340", "images": ["AURORA/data/something/frames/37196/first.jpg", "AURORA/data/something/frames/37196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking food container from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116341", "images": ["AURORA/data/something/frames/118373/first.jpg", "AURORA/data/something/frames/118373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto grass yard"}, {"from": "gpt", "value": ""}]} +{"id": "000000116342", "images": ["AURORA/data/something/frames/198004/first.jpg", "AURORA/data/something/frames/198004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116343", "images": ["AURORA/data/something/frames/143382/first.jpg", "AURORA/data/something/frames/143382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pills into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116344", "images": ["AURORA/data/something/frames/173289/first.jpg", "AURORA/data/something/frames/173289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000116345", "images": ["AURORA/data/something/frames/11131/first.jpg", "AURORA/data/something/frames/11131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ashtray up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116346", "images": ["AURORA/data/something/frames/70193/first.jpg", "AURORA/data/something/frames/70193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a washcloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116347", "images": ["AURORA/data/something/frames/31481/first.jpg", "AURORA/data/something/frames/31481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116348", "images": ["AURORA/data/something/frames/50331/first.jpg", "AURORA/data/something/frames/50331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting puzzle dice on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116349", "images": ["AURORA/data/something/frames/122249/first.jpg", "AURORA/data/something/frames/122249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling toy figures up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116350", "images": ["AURORA/data/something/frames/180461/first.jpg", "AURORA/data/something/frames/180461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116351", "images": ["AURORA/data/something/frames/8789/first.jpg", "AURORA/data/something/frames/8789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting flash drive with ballpen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116352", "images": ["AURORA/data/something/frames/192334/first.jpg", "AURORA/data/something/frames/192334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardstock into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116353", "images": ["AURORA/data/something/frames/43140/first.jpg", "AURORA/data/something/frames/43140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sugar pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000116354", "images": ["AURORA/data/something/frames/25903/first.jpg", "AURORA/data/something/frames/25903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling mobile phones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116355", "images": ["AURORA/data/something/frames/1858/first.jpg", "AURORA/data/something/frames/1858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy-car and toy-car so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116356", "images": ["AURORA/data/something/frames/7538/first.jpg", "AURORA/data/something/frames/7538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116357", "images": ["AURORA/data/something/frames/50660/first.jpg", "AURORA/data/something/frames/50660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116358", "images": ["AURORA/data/something/frames/185715/first.jpg", "AURORA/data/something/frames/185715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116359", "images": ["AURORA/data/something/frames/149631/first.jpg", "AURORA/data/something/frames/149631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking scotch tape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116360", "images": ["AURORA/data/something/frames/60672/first.jpg", "AURORA/data/something/frames/60672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shampoo bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116361", "images": ["AURORA/data/something/frames/198092/first.jpg", "AURORA/data/something/frames/198092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching hair dryer with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116362", "images": ["AURORA/data/something/frames/192115/first.jpg", "AURORA/data/something/frames/192115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116363", "images": ["AURORA/data/something/frames/36471/first.jpg", "AURORA/data/something/frames/36471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into bottle, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116364", "images": ["AURORA/data/something/frames/118911/first.jpg", "AURORA/data/something/frames/118911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container closer to another one"}, {"from": "gpt", "value": ""}]} +{"id": "000000116365", "images": ["AURORA/data/something/frames/144068/first.jpg", "AURORA/data/something/frames/144068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116366", "images": ["AURORA/data/something/frames/104609/first.jpg", "AURORA/data/something/frames/104609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door stopper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116367", "images": ["AURORA/data/something/frames/187312/first.jpg", "AURORA/data/something/frames/187312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green headlight from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116368", "images": ["AURORA/data/something/frames/57635/first.jpg", "AURORA/data/something/frames/57635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116369", "images": ["AURORA/data/something/frames/87660/first.jpg", "AURORA/data/something/frames/87660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116370", "images": ["AURORA/data/something/frames/105758/first.jpg", "AURORA/data/something/frames/105758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116371", "images": ["AURORA/data/something/frames/194669/first.jpg", "AURORA/data/something/frames/194669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a notebook upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116372", "images": ["AURORA/data/something/frames/200687/first.jpg", "AURORA/data/something/frames/200687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116373", "images": ["AURORA/data/something/frames/62820/first.jpg", "AURORA/data/something/frames/62820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pillow so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116374", "images": ["AURORA/data/something/frames/154557/first.jpg", "AURORA/data/something/frames/154557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors underneath dishwasher door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116375", "images": ["AURORA/data/something/frames/48674/first.jpg", "AURORA/data/something/frames/48674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a matchbox over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116376", "images": ["AURORA/data/something/frames/50424/first.jpg", "AURORA/data/something/frames/50424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116377", "images": ["AURORA/data/something/frames/39791/first.jpg", "AURORA/data/something/frames/39791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116378", "images": ["AURORA/data/something/frames/2635/first.jpg", "AURORA/data/something/frames/2635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116379", "images": ["AURORA/data/something/frames/87133/first.jpg", "AURORA/data/something/frames/87133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning drink upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116380", "images": ["AURORA/data/something/frames/84982/first.jpg", "AURORA/data/something/frames/84982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching banana bunch with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116381", "images": ["AURORA/data/something/frames/140355/first.jpg", "AURORA/data/something/frames/140355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116382", "images": ["AURORA/data/something/frames/74717/first.jpg", "AURORA/data/something/frames/74717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116383", "images": ["AURORA/data/something/frames/213467/first.jpg", "AURORA/data/something/frames/213467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming white candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116384", "images": ["AURORA/data/something/frames/189193/first.jpg", "AURORA/data/something/frames/189193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116385", "images": ["AURORA/data/something/frames/21284/first.jpg", "AURORA/data/something/frames/21284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming jackfruit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116386", "images": ["AURORA/data/something/frames/158153/first.jpg", "AURORA/data/something/frames/158153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a portable charger into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116387", "images": ["AURORA/data/something/frames/78318/first.jpg", "AURORA/data/something/frames/78318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into surge protector"}, {"from": "gpt", "value": ""}]} +{"id": "000000116388", "images": ["AURORA/data/something/frames/109272/first.jpg", "AURORA/data/something/frames/109272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving my phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116389", "images": ["AURORA/data/something/frames/87848/first.jpg", "AURORA/data/something/frames/87848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116390", "images": ["AURORA/data/something/frames/66832/first.jpg", "AURORA/data/something/frames/66832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping board clip into glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116391", "images": ["AURORA/data/something/frames/50781/first.jpg", "AURORA/data/something/frames/50781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116392", "images": ["AURORA/data/something/frames/55006/first.jpg", "AURORA/data/something/frames/55006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116393", "images": ["AURORA/data/something/frames/175876/first.jpg", "AURORA/data/something/frames/175876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with sheets of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116394", "images": ["AURORA/data/something/frames/147906/first.jpg", "AURORA/data/something/frames/147906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil colliding with a pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116395", "images": ["AURORA/data/something/frames/47960/first.jpg", "AURORA/data/something/frames/47960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116396", "images": ["AURORA/data/something/frames/177267/first.jpg", "AURORA/data/something/frames/177267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into power outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116397", "images": ["AURORA/data/something/frames/86235/first.jpg", "AURORA/data/something/frames/86235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cd player and usb closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116398", "images": ["AURORA/data/something/frames/53565/first.jpg", "AURORA/data/something/frames/53565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marble"}, {"from": "gpt", "value": ""}]} +{"id": "000000116399", "images": ["AURORA/data/something/frames/4473/first.jpg", "AURORA/data/something/frames/4473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a facial wash up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116400", "images": ["AURORA/data/something/frames/76320/first.jpg", "AURORA/data/something/frames/76320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116401", "images": ["AURORA/data/something/frames/104554/first.jpg", "AURORA/data/something/frames/104554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling magazines up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116402", "images": ["AURORA/data/something/frames/77100/first.jpg", "AURORA/data/something/frames/77100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116403", "images": ["AURORA/data/something/frames/5279/first.jpg", "AURORA/data/something/frames/5279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip balm and lip gloss so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116404", "images": ["AURORA/data/something/frames/24802/first.jpg", "AURORA/data/something/frames/24802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a shot glass with nails in it over, so nails in it falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116405", "images": ["AURORA/data/something/frames/62007/first.jpg", "AURORA/data/something/frames/62007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mirror into a pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116406", "images": ["AURORA/data/something/frames/120802/first.jpg", "AURORA/data/something/frames/120802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a can with a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116407", "images": ["AURORA/data/something/frames/14378/first.jpg", "AURORA/data/something/frames/14378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crumbs off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116408", "images": ["AURORA/data/something/frames/179024/first.jpg", "AURORA/data/something/frames/179024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wadded up papertowel off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116409", "images": ["AURORA/data/something/frames/70543/first.jpg", "AURORA/data/something/frames/70543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116410", "images": ["AURORA/data/something/frames/140987/first.jpg", "AURORA/data/something/frames/140987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116411", "images": ["AURORA/data/something/frames/144761/first.jpg", "AURORA/data/something/frames/144761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white toy car away from hair clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000116412", "images": ["AURORA/data/something/frames/3306/first.jpg", "AURORA/data/something/frames/3306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116413", "images": ["AURORA/data/something/frames/95557/first.jpg", "AURORA/data/something/frames/95557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116414", "images": ["AURORA/data/something/frames/106838/first.jpg", "AURORA/data/something/frames/106838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: salt shaker colliding with pepper shaker and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116415", "images": ["AURORA/data/something/frames/104884/first.jpg", "AURORA/data/something/frames/104884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a comb upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116416", "images": ["AURORA/data/something/frames/104415/first.jpg", "AURORA/data/something/frames/104415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning waterbottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116417", "images": ["AURORA/data/something/frames/96992/first.jpg", "AURORA/data/something/frames/96992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116418", "images": ["AURORA/data/something/frames/176652/first.jpg", "AURORA/data/something/frames/176652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116419", "images": ["AURORA/data/something/frames/175814/first.jpg", "AURORA/data/something/frames/175814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something away from something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116420", "images": ["AURORA/data/something/frames/79863/first.jpg", "AURORA/data/something/frames/79863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116421", "images": ["AURORA/data/something/frames/119614/first.jpg", "AURORA/data/something/frames/119614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting big filter with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116422", "images": ["AURORA/data/something/frames/116708/first.jpg", "AURORA/data/something/frames/116708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug head into an extension lead"}, {"from": "gpt", "value": ""}]} +{"id": "000000116423", "images": ["AURORA/data/something/frames/127312/first.jpg", "AURORA/data/something/frames/127312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a phone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116424", "images": ["AURORA/data/something/frames/157768/first.jpg", "AURORA/data/something/frames/157768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116425", "images": ["AURORA/data/something/frames/23174/first.jpg", "AURORA/data/something/frames/23174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of shot glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116426", "images": ["AURORA/data/something/frames/98142/first.jpg", "AURORA/data/something/frames/98142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116427", "images": ["AURORA/data/something/frames/6200/first.jpg", "AURORA/data/something/frames/6200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping drinking glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116428", "images": ["AURORA/data/something/frames/163292/first.jpg", "AURORA/data/something/frames/163292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail varnish from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116429", "images": ["AURORA/data/something/frames/187730/first.jpg", "AURORA/data/something/frames/187730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116430", "images": ["AURORA/data/something/frames/177838/first.jpg", "AURORA/data/something/frames/177838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an electric juicer in front of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116431", "images": ["AURORA/data/something/frames/116079/first.jpg", "AURORA/data/something/frames/116079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking discs so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116432", "images": ["AURORA/data/something/frames/86532/first.jpg", "AURORA/data/something/frames/86532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lip gloss in a pile of other lip glosses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116433", "images": ["AURORA/data/something/frames/126784/first.jpg", "AURORA/data/something/frames/126784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116434", "images": ["AURORA/data/something/frames/62463/first.jpg", "AURORA/data/something/frames/62463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer into a wash basin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116435", "images": ["AURORA/data/something/frames/115216/first.jpg", "AURORA/data/something/frames/115216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting highlighter in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116436", "images": ["AURORA/data/something/frames/76862/first.jpg", "AURORA/data/something/frames/76862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging ipad out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116437", "images": ["AURORA/data/something/frames/169663/first.jpg", "AURORA/data/something/frames/169663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting blinds"}, {"from": "gpt", "value": ""}]} +{"id": "000000116438", "images": ["AURORA/data/something/frames/108564/first.jpg", "AURORA/data/something/frames/108564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of scotch tape so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116439", "images": ["AURORA/data/something/frames/132760/first.jpg", "AURORA/data/something/frames/132760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a razor on the edge of a desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116440", "images": ["AURORA/data/something/frames/159824/first.jpg", "AURORA/data/something/frames/159824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tub with plastic bricks over, so some of the plastic bricks falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116441", "images": ["AURORA/data/something/frames/111463/first.jpg", "AURORA/data/something/frames/111463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tablet on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116442", "images": ["AURORA/data/something/frames/184524/first.jpg", "AURORA/data/something/frames/184524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 toy cars"}, {"from": "gpt", "value": ""}]} +{"id": "000000116443", "images": ["AURORA/data/something/frames/50659/first.jpg", "AURORA/data/something/frames/50659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug extender into the wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116444", "images": ["AURORA/data/something/frames/167525/first.jpg", "AURORA/data/something/frames/167525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116445", "images": ["AURORA/data/something/frames/88721/first.jpg", "AURORA/data/something/frames/88721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling carriage clip from behind of a bicycle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116446", "images": ["AURORA/data/something/frames/49754/first.jpg", "AURORA/data/something/frames/49754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116447", "images": ["AURORA/data/something/frames/14467/first.jpg", "AURORA/data/something/frames/14467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a beer can from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116448", "images": ["AURORA/data/something/frames/85070/first.jpg", "AURORA/data/something/frames/85070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking balpoint"}, {"from": "gpt", "value": ""}]} +{"id": "000000116449", "images": ["AURORA/data/something/frames/57146/first.jpg", "AURORA/data/something/frames/57146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting setsquare into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116450", "images": ["AURORA/data/something/frames/149633/first.jpg", "AURORA/data/something/frames/149633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116451", "images": ["AURORA/data/something/frames/206013/first.jpg", "AURORA/data/something/frames/206013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116452", "images": ["AURORA/data/something/frames/105752/first.jpg", "AURORA/data/something/frames/105752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116453", "images": ["AURORA/data/something/frames/170547/first.jpg", "AURORA/data/something/frames/170547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116454", "images": ["AURORA/data/something/frames/136873/first.jpg", "AURORA/data/something/frames/136873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116455", "images": ["AURORA/data/something/frames/219599/first.jpg", "AURORA/data/something/frames/219599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116456", "images": ["AURORA/data/something/frames/197721/first.jpg", "AURORA/data/something/frames/197721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116457", "images": ["AURORA/data/something/frames/105668/first.jpg", "AURORA/data/something/frames/105668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a kid so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116458", "images": ["AURORA/data/something/frames/195639/first.jpg", "AURORA/data/something/frames/195639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing scarves into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116459", "images": ["AURORA/data/something/frames/94139/first.jpg", "AURORA/data/something/frames/94139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116460", "images": ["AURORA/data/something/frames/182580/first.jpg", "AURORA/data/something/frames/182580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothpaste over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116461", "images": ["AURORA/data/something/frames/211127/first.jpg", "AURORA/data/something/frames/211127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116462", "images": ["AURORA/data/something/frames/176346/first.jpg", "AURORA/data/something/frames/176346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending fork so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116463", "images": ["AURORA/data/something/frames/48989/first.jpg", "AURORA/data/something/frames/48989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000116464", "images": ["AURORA/data/something/frames/121481/first.jpg", "AURORA/data/something/frames/121481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stone and ring closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116465", "images": ["AURORA/data/something/frames/37627/first.jpg", "AURORA/data/something/frames/37627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a container, revealing adapter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116466", "images": ["AURORA/data/something/frames/17036/first.jpg", "AURORA/data/something/frames/17036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000116467", "images": ["AURORA/data/something/frames/72855/first.jpg", "AURORA/data/something/frames/72855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hammer on the edge of a desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116468", "images": ["AURORA/data/something/frames/121844/first.jpg", "AURORA/data/something/frames/121844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116469", "images": ["AURORA/data/something/frames/31757/first.jpg", "AURORA/data/something/frames/31757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stick down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116470", "images": ["AURORA/data/something/frames/209003/first.jpg", "AURORA/data/something/frames/209003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116471", "images": ["AURORA/data/something/frames/155471/first.jpg", "AURORA/data/something/frames/155471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with cereal over, so cereal falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116472", "images": ["AURORA/data/something/frames/219213/first.jpg", "AURORA/data/something/frames/219213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one shoe off a table of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000116473", "images": ["AURORA/data/something/frames/3172/first.jpg", "AURORA/data/something/frames/3172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116474", "images": ["AURORA/data/something/frames/1788/first.jpg", "AURORA/data/something/frames/1788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116475", "images": ["AURORA/data/something/frames/39595/first.jpg", "AURORA/data/something/frames/39595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cub down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116476", "images": ["AURORA/data/something/frames/116416/first.jpg", "AURORA/data/something/frames/116416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container away from a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000116477", "images": ["AURORA/data/something/frames/149040/first.jpg", "AURORA/data/something/frames/149040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 of laundry buckle onto a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116478", "images": ["AURORA/data/something/frames/50679/first.jpg", "AURORA/data/something/frames/50679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pencil with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116479", "images": ["AURORA/data/something/frames/188407/first.jpg", "AURORA/data/something/frames/188407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116480", "images": ["AURORA/data/something/frames/162102/first.jpg", "AURORA/data/something/frames/162102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116481", "images": ["AURORA/data/something/frames/211849/first.jpg", "AURORA/data/something/frames/211849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing green face powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116482", "images": ["AURORA/data/something/frames/205695/first.jpg", "AURORA/data/something/frames/205695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cookies and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116483", "images": ["AURORA/data/something/frames/29474/first.jpg", "AURORA/data/something/frames/29474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000116484", "images": ["AURORA/data/something/frames/165549/first.jpg", "AURORA/data/something/frames/165549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116485", "images": ["AURORA/data/something/frames/7490/first.jpg", "AURORA/data/something/frames/7490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of notebook without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116486", "images": ["AURORA/data/something/frames/185094/first.jpg", "AURORA/data/something/frames/185094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tuner"}, {"from": "gpt", "value": ""}]} +{"id": "000000116487", "images": ["AURORA/data/something/frames/97295/first.jpg", "AURORA/data/something/frames/97295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick closer to eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116488", "images": ["AURORA/data/something/frames/111079/first.jpg", "AURORA/data/something/frames/111079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116489", "images": ["AURORA/data/something/frames/387/first.jpg", "AURORA/data/something/frames/387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116490", "images": ["AURORA/data/something/frames/200991/first.jpg", "AURORA/data/something/frames/200991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116491", "images": ["AURORA/data/something/frames/160372/first.jpg", "AURORA/data/something/frames/160372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper clip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116492", "images": ["AURORA/data/something/frames/203523/first.jpg", "AURORA/data/something/frames/203523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116493", "images": ["AURORA/data/something/frames/146957/first.jpg", "AURORA/data/something/frames/146957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a hat from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116494", "images": ["AURORA/data/something/frames/56578/first.jpg", "AURORA/data/something/frames/56578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116495", "images": ["AURORA/data/something/frames/62479/first.jpg", "AURORA/data/something/frames/62479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116496", "images": ["AURORA/data/something/frames/32293/first.jpg", "AURORA/data/something/frames/32293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with rock on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116497", "images": ["AURORA/data/something/frames/103900/first.jpg", "AURORA/data/something/frames/103900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a plastic bottle closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116498", "images": ["AURORA/data/something/frames/197985/first.jpg", "AURORA/data/something/frames/197985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of toys so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116499", "images": ["AURORA/data/something/frames/44616/first.jpg", "AURORA/data/something/frames/44616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116500", "images": ["AURORA/data/something/frames/17765/first.jpg", "AURORA/data/something/frames/17765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a flashlight from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116501", "images": ["AURORA/data/something/frames/163383/first.jpg", "AURORA/data/something/frames/163383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key and comb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116502", "images": ["AURORA/data/something/frames/93698/first.jpg", "AURORA/data/something/frames/93698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paper punch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116503", "images": ["AURORA/data/something/frames/5736/first.jpg", "AURORA/data/something/frames/5736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling liquid onto kitchen counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116504", "images": ["AURORA/data/something/frames/140301/first.jpg", "AURORA/data/something/frames/140301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116505", "images": ["AURORA/data/something/frames/52613/first.jpg", "AURORA/data/something/frames/52613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a cardboard with a helmet on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116506", "images": ["AURORA/data/something/frames/214236/first.jpg", "AURORA/data/something/frames/214236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a knife into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116507", "images": ["AURORA/data/something/frames/9641/first.jpg", "AURORA/data/something/frames/9641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000116508", "images": ["AURORA/data/something/frames/8445/first.jpg", "AURORA/data/something/frames/8445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring green liquid into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116509", "images": ["AURORA/data/something/frames/139431/first.jpg", "AURORA/data/something/frames/139431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116510", "images": ["AURORA/data/something/frames/118550/first.jpg", "AURORA/data/something/frames/118550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116511", "images": ["AURORA/data/something/frames/180540/first.jpg", "AURORA/data/something/frames/180540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000116512", "images": ["AURORA/data/something/frames/17886/first.jpg", "AURORA/data/something/frames/17886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a brush closer to a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116513", "images": ["AURORA/data/something/frames/100225/first.jpg", "AURORA/data/something/frames/100225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming orange sharpner"}, {"from": "gpt", "value": ""}]} +{"id": "000000116514", "images": ["AURORA/data/something/frames/195448/first.jpg", "AURORA/data/something/frames/195448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling coffee mug from behind of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116515", "images": ["AURORA/data/something/frames/197908/first.jpg", "AURORA/data/something/frames/197908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116516", "images": ["AURORA/data/something/frames/203775/first.jpg", "AURORA/data/something/frames/203775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a stuffed bird onto the ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000116517", "images": ["AURORA/data/something/frames/6253/first.jpg", "AURORA/data/something/frames/6253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116518", "images": ["AURORA/data/something/frames/174280/first.jpg", "AURORA/data/something/frames/174280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tablet away from a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116519", "images": ["AURORA/data/something/frames/141406/first.jpg", "AURORA/data/something/frames/141406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a purse in a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116520", "images": ["AURORA/data/something/frames/74309/first.jpg", "AURORA/data/something/frames/74309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000116521", "images": ["AURORA/data/something/frames/12195/first.jpg", "AURORA/data/something/frames/12195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116522", "images": ["AURORA/data/something/frames/108061/first.jpg", "AURORA/data/something/frames/108061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brick"}, {"from": "gpt", "value": ""}]} +{"id": "000000116523", "images": ["AURORA/data/something/frames/18492/first.jpg", "AURORA/data/something/frames/18492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paper with phone case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116524", "images": ["AURORA/data/something/frames/97237/first.jpg", "AURORA/data/something/frames/97237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting microscope behind mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116525", "images": ["AURORA/data/something/frames/44635/first.jpg", "AURORA/data/something/frames/44635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white board clip with metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000116526", "images": ["AURORA/data/something/frames/220026/first.jpg", "AURORA/data/something/frames/220026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116527", "images": ["AURORA/data/something/frames/58567/first.jpg", "AURORA/data/something/frames/58567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chess piece on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116528", "images": ["AURORA/data/something/frames/42860/first.jpg", "AURORA/data/something/frames/42860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116529", "images": ["AURORA/data/something/frames/105228/first.jpg", "AURORA/data/something/frames/105228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116530", "images": ["AURORA/data/something/frames/75201/first.jpg", "AURORA/data/something/frames/75201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116531", "images": ["AURORA/data/something/frames/80767/first.jpg", "AURORA/data/something/frames/80767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a chess board from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116532", "images": ["AURORA/data/something/frames/50632/first.jpg", "AURORA/data/something/frames/50632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116533", "images": ["AURORA/data/something/frames/14048/first.jpg", "AURORA/data/something/frames/14048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116534", "images": ["AURORA/data/something/frames/39568/first.jpg", "AURORA/data/something/frames/39568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116535", "images": ["AURORA/data/something/frames/53799/first.jpg", "AURORA/data/something/frames/53799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chess board with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116536", "images": ["AURORA/data/something/frames/23151/first.jpg", "AURORA/data/something/frames/23151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking firm plastic up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116537", "images": ["AURORA/data/something/frames/40327/first.jpg", "AURORA/data/something/frames/40327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: water bottle colliding with water bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116538", "images": ["AURORA/data/something/frames/96935/first.jpg", "AURORA/data/something/frames/96935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116539", "images": ["AURORA/data/something/frames/25211/first.jpg", "AURORA/data/something/frames/25211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug away from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116540", "images": ["AURORA/data/something/frames/6570/first.jpg", "AURORA/data/something/frames/6570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering wallet with bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116541", "images": ["AURORA/data/something/frames/188132/first.jpg", "AURORA/data/something/frames/188132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116542", "images": ["AURORA/data/something/frames/6268/first.jpg", "AURORA/data/something/frames/6268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending comb so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116543", "images": ["AURORA/data/something/frames/5877/first.jpg", "AURORA/data/something/frames/5877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spray bottle on the edge of sofa so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116544", "images": ["AURORA/data/something/frames/87109/first.jpg", "AURORA/data/something/frames/87109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking clothes peg out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116545", "images": ["AURORA/data/something/frames/127420/first.jpg", "AURORA/data/something/frames/127420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bag out of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116546", "images": ["AURORA/data/something/frames/96021/first.jpg", "AURORA/data/something/frames/96021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking paper so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116547", "images": ["AURORA/data/something/frames/6303/first.jpg", "AURORA/data/something/frames/6303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116548", "images": ["AURORA/data/something/frames/117395/first.jpg", "AURORA/data/something/frames/117395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into giftbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116549", "images": ["AURORA/data/something/frames/70671/first.jpg", "AURORA/data/something/frames/70671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stamp pad with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116550", "images": ["AURORA/data/something/frames/29972/first.jpg", "AURORA/data/something/frames/29972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching earphone to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116551", "images": ["AURORA/data/something/frames/56039/first.jpg", "AURORA/data/something/frames/56039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with rule on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116552", "images": ["AURORA/data/something/frames/33598/first.jpg", "AURORA/data/something/frames/33598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting trash bags upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116553", "images": ["AURORA/data/something/frames/163471/first.jpg", "AURORA/data/something/frames/163471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cd box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116554", "images": ["AURORA/data/something/frames/100623/first.jpg", "AURORA/data/something/frames/100623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ring down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116555", "images": ["AURORA/data/something/frames/63058/first.jpg", "AURORA/data/something/frames/63058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a reusable grocery bag out of its holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116556", "images": ["AURORA/data/something/frames/15547/first.jpg", "AURORA/data/something/frames/15547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116557", "images": ["AURORA/data/something/frames/157680/first.jpg", "AURORA/data/something/frames/157680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000116558", "images": ["AURORA/data/something/frames/134377/first.jpg", "AURORA/data/something/frames/134377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116559", "images": ["AURORA/data/something/frames/155848/first.jpg", "AURORA/data/something/frames/155848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a doll so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116560", "images": ["AURORA/data/something/frames/82439/first.jpg", "AURORA/data/something/frames/82439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glass so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116561", "images": ["AURORA/data/something/frames/132952/first.jpg", "AURORA/data/something/frames/132952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calendar away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116562", "images": ["AURORA/data/something/frames/141049/first.jpg", "AURORA/data/something/frames/141049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116563", "images": ["AURORA/data/something/frames/212483/first.jpg", "AURORA/data/something/frames/212483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116564", "images": ["AURORA/data/something/frames/82991/first.jpg", "AURORA/data/something/frames/82991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116565", "images": ["AURORA/data/something/frames/154239/first.jpg", "AURORA/data/something/frames/154239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116566", "images": ["AURORA/data/something/frames/613/first.jpg", "AURORA/data/something/frames/613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116567", "images": ["AURORA/data/something/frames/181975/first.jpg", "AURORA/data/something/frames/181975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116568", "images": ["AURORA/data/something/frames/14965/first.jpg", "AURORA/data/something/frames/14965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116569", "images": ["AURORA/data/something/frames/40049/first.jpg", "AURORA/data/something/frames/40049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116570", "images": ["AURORA/data/something/frames/45673/first.jpg", "AURORA/data/something/frames/45673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116571", "images": ["AURORA/data/something/frames/22367/first.jpg", "AURORA/data/something/frames/22367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116572", "images": ["AURORA/data/something/frames/88167/first.jpg", "AURORA/data/something/frames/88167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping food off of stove top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116573", "images": ["AURORA/data/something/frames/56433/first.jpg", "AURORA/data/something/frames/56433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the cover of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116574", "images": ["AURORA/data/something/frames/81130/first.jpg", "AURORA/data/something/frames/81130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle cap upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116575", "images": ["AURORA/data/something/frames/6948/first.jpg", "AURORA/data/something/frames/6948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coasters without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000116576", "images": ["AURORA/data/something/frames/203294/first.jpg", "AURORA/data/something/frames/203294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) flusher of toilet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116577", "images": ["AURORA/data/something/frames/20338/first.jpg", "AURORA/data/something/frames/20338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toy out of plastic egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000116578", "images": ["AURORA/data/something/frames/146868/first.jpg", "AURORA/data/something/frames/146868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116579", "images": ["AURORA/data/something/frames/51370/first.jpg", "AURORA/data/something/frames/51370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin next to belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116580", "images": ["AURORA/data/something/frames/192785/first.jpg", "AURORA/data/something/frames/192785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sunglasses into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116581", "images": ["AURORA/data/something/frames/30605/first.jpg", "AURORA/data/something/frames/30605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading water onto stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000116582", "images": ["AURORA/data/something/frames/10443/first.jpg", "AURORA/data/something/frames/10443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000116583", "images": ["AURORA/data/something/frames/72320/first.jpg", "AURORA/data/something/frames/72320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116584", "images": ["AURORA/data/something/frames/136523/first.jpg", "AURORA/data/something/frames/136523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116585", "images": ["AURORA/data/something/frames/21596/first.jpg", "AURORA/data/something/frames/21596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116586", "images": ["AURORA/data/something/frames/185991/first.jpg", "AURORA/data/something/frames/185991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116587", "images": ["AURORA/data/something/frames/122737/first.jpg", "AURORA/data/something/frames/122737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116588", "images": ["AURORA/data/something/frames/117448/first.jpg", "AURORA/data/something/frames/117448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116589", "images": ["AURORA/data/something/frames/190268/first.jpg", "AURORA/data/something/frames/190268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tanktop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116590", "images": ["AURORA/data/something/frames/56980/first.jpg", "AURORA/data/something/frames/56980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116591", "images": ["AURORA/data/something/frames/38891/first.jpg", "AURORA/data/something/frames/38891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug closer to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116592", "images": ["AURORA/data/something/frames/125555/first.jpg", "AURORA/data/something/frames/125555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting napkin on the edge of wooden bowl so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116593", "images": ["AURORA/data/something/frames/72851/first.jpg", "AURORA/data/something/frames/72851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pig so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116594", "images": ["AURORA/data/something/frames/16038/first.jpg", "AURORA/data/something/frames/16038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cd case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116595", "images": ["AURORA/data/something/frames/123399/first.jpg", "AURORA/data/something/frames/123399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a rubber pig with lint brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116596", "images": ["AURORA/data/something/frames/103003/first.jpg", "AURORA/data/something/frames/103003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking glass of water so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116597", "images": ["AURORA/data/something/frames/40719/first.jpg", "AURORA/data/something/frames/40719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116598", "images": ["AURORA/data/something/frames/116562/first.jpg", "AURORA/data/something/frames/116562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling yarn out of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000116599", "images": ["AURORA/data/something/frames/97193/first.jpg", "AURORA/data/something/frames/97193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116600", "images": ["AURORA/data/something/frames/148490/first.jpg", "AURORA/data/something/frames/148490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116601", "images": ["AURORA/data/something/frames/19786/first.jpg", "AURORA/data/something/frames/19786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing duster with metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000116602", "images": ["AURORA/data/something/frames/110402/first.jpg", "AURORA/data/something/frames/110402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116603", "images": ["AURORA/data/something/frames/71506/first.jpg", "AURORA/data/something/frames/71506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116604", "images": ["AURORA/data/something/frames/43875/first.jpg", "AURORA/data/something/frames/43875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering calculator with a piece or paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116605", "images": ["AURORA/data/something/frames/122955/first.jpg", "AURORA/data/something/frames/122955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming split air conditioner outdoor unit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116606", "images": ["AURORA/data/something/frames/110138/first.jpg", "AURORA/data/something/frames/110138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book with smarthphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116607", "images": ["AURORA/data/something/frames/83978/first.jpg", "AURORA/data/something/frames/83978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a wallet so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116608", "images": ["AURORA/data/something/frames/132395/first.jpg", "AURORA/data/something/frames/132395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing faucet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116609", "images": ["AURORA/data/something/frames/185895/first.jpg", "AURORA/data/something/frames/185895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sun glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116610", "images": ["AURORA/data/something/frames/3137/first.jpg", "AURORA/data/something/frames/3137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors onto tape dispenser so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116611", "images": ["AURORA/data/something/frames/61892/first.jpg", "AURORA/data/something/frames/61892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000116612", "images": ["AURORA/data/something/frames/182007/first.jpg", "AURORA/data/something/frames/182007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116613", "images": ["AURORA/data/something/frames/50661/first.jpg", "AURORA/data/something/frames/50661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming soft drink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000116614", "images": ["AURORA/data/something/frames/173777/first.jpg", "AURORA/data/something/frames/173777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116615", "images": ["AURORA/data/something/frames/124864/first.jpg", "AURORA/data/something/frames/124864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping dish soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116616", "images": ["AURORA/data/something/frames/11200/first.jpg", "AURORA/data/something/frames/11200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116617", "images": ["AURORA/data/something/frames/120231/first.jpg", "AURORA/data/something/frames/120231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening petrol tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000116618", "images": ["AURORA/data/something/frames/79688/first.jpg", "AURORA/data/something/frames/79688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116619", "images": ["AURORA/data/something/frames/92635/first.jpg", "AURORA/data/something/frames/92635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a water pipe"}, {"from": "gpt", "value": ""}]} +{"id": "000000116620", "images": ["AURORA/data/something/frames/61840/first.jpg", "AURORA/data/something/frames/61840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) part of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116621", "images": ["AURORA/data/something/frames/6803/first.jpg", "AURORA/data/something/frames/6803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116622", "images": ["AURORA/data/something/frames/45089/first.jpg", "AURORA/data/something/frames/45089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116623", "images": ["AURORA/data/something/frames/62389/first.jpg", "AURORA/data/something/frames/62389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toaster so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116624", "images": ["AURORA/data/something/frames/104454/first.jpg", "AURORA/data/something/frames/104454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116625", "images": ["AURORA/data/something/frames/74493/first.jpg", "AURORA/data/something/frames/74493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cd drive across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116626", "images": ["AURORA/data/something/frames/29389/first.jpg", "AURORA/data/something/frames/29389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning red spoon upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116627", "images": ["AURORA/data/something/frames/173496/first.jpg", "AURORA/data/something/frames/173496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000116628", "images": ["AURORA/data/something/frames/40018/first.jpg", "AURORA/data/something/frames/40018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto glass so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116629", "images": ["AURORA/data/something/frames/39683/first.jpg", "AURORA/data/something/frames/39683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing closing a manicure set"}, {"from": "gpt", "value": ""}]} +{"id": "000000116630", "images": ["AURORA/data/something/frames/33098/first.jpg", "AURORA/data/something/frames/33098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116631", "images": ["AURORA/data/something/frames/213392/first.jpg", "AURORA/data/something/frames/213392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116632", "images": ["AURORA/data/something/frames/7940/first.jpg", "AURORA/data/something/frames/7940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116633", "images": ["AURORA/data/something/frames/115573/first.jpg", "AURORA/data/something/frames/115573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116634", "images": ["AURORA/data/something/frames/145382/first.jpg", "AURORA/data/something/frames/145382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending matchstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116635", "images": ["AURORA/data/something/frames/24130/first.jpg", "AURORA/data/something/frames/24130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116636", "images": ["AURORA/data/something/frames/127063/first.jpg", "AURORA/data/something/frames/127063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw driver"}, {"from": "gpt", "value": ""}]} +{"id": "000000116637", "images": ["AURORA/data/something/frames/8110/first.jpg", "AURORA/data/something/frames/8110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a piece of cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116638", "images": ["AURORA/data/something/frames/75757/first.jpg", "AURORA/data/something/frames/75757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glue stick on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116639", "images": ["AURORA/data/something/frames/102177/first.jpg", "AURORA/data/something/frames/102177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116640", "images": ["AURORA/data/something/frames/40280/first.jpg", "AURORA/data/something/frames/40280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116641", "images": ["AURORA/data/something/frames/89404/first.jpg", "AURORA/data/something/frames/89404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116642", "images": ["AURORA/data/something/frames/82892/first.jpg", "AURORA/data/something/frames/82892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hanger and screwdriver closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116643", "images": ["AURORA/data/something/frames/130671/first.jpg", "AURORA/data/something/frames/130671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mug with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116644", "images": ["AURORA/data/something/frames/60599/first.jpg", "AURORA/data/something/frames/60599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toothbrush from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116645", "images": ["AURORA/data/something/frames/88131/first.jpg", "AURORA/data/something/frames/88131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper towels into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116646", "images": ["AURORA/data/something/frames/7177/first.jpg", "AURORA/data/something/frames/7177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116647", "images": ["AURORA/data/something/frames/167661/first.jpg", "AURORA/data/something/frames/167661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116648", "images": ["AURORA/data/something/frames/83628/first.jpg", "AURORA/data/something/frames/83628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling broom from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116649", "images": ["AURORA/data/something/frames/91358/first.jpg", "AURORA/data/something/frames/91358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses and toothbrush on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116650", "images": ["AURORA/data/something/frames/98332/first.jpg", "AURORA/data/something/frames/98332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging lead into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116651", "images": ["AURORA/data/something/frames/123583/first.jpg", "AURORA/data/something/frames/123583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming poster"}, {"from": "gpt", "value": ""}]} +{"id": "000000116652", "images": ["AURORA/data/something/frames/53324/first.jpg", "AURORA/data/something/frames/53324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a packaging up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116653", "images": ["AURORA/data/something/frames/168601/first.jpg", "AURORA/data/something/frames/168601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116654", "images": ["AURORA/data/something/frames/118498/first.jpg", "AURORA/data/something/frames/118498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116655", "images": ["AURORA/data/something/frames/163847/first.jpg", "AURORA/data/something/frames/163847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116656", "images": ["AURORA/data/something/frames/205330/first.jpg", "AURORA/data/something/frames/205330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116657", "images": ["AURORA/data/something/frames/21923/first.jpg", "AURORA/data/something/frames/21923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116658", "images": ["AURORA/data/something/frames/8092/first.jpg", "AURORA/data/something/frames/8092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming black hair tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000116659", "images": ["AURORA/data/something/frames/164331/first.jpg", "AURORA/data/something/frames/164331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from mouse with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116660", "images": ["AURORA/data/something/frames/122279/first.jpg", "AURORA/data/something/frames/122279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000116661", "images": ["AURORA/data/something/frames/142888/first.jpg", "AURORA/data/something/frames/142888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116662", "images": ["AURORA/data/something/frames/7870/first.jpg", "AURORA/data/something/frames/7870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring liquid into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116663", "images": ["AURORA/data/something/frames/151214/first.jpg", "AURORA/data/something/frames/151214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116664", "images": ["AURORA/data/something/frames/19981/first.jpg", "AURORA/data/something/frames/19981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116665", "images": ["AURORA/data/something/frames/185471/first.jpg", "AURORA/data/something/frames/185471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116666", "images": ["AURORA/data/something/frames/45410/first.jpg", "AURORA/data/something/frames/45410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116667", "images": ["AURORA/data/something/frames/33247/first.jpg", "AURORA/data/something/frames/33247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden fork upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116668", "images": ["AURORA/data/something/frames/91910/first.jpg", "AURORA/data/something/frames/91910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the arm of plush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116669", "images": ["AURORA/data/something/frames/150963/first.jpg", "AURORA/data/something/frames/150963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping container behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116670", "images": ["AURORA/data/something/frames/13843/first.jpg", "AURORA/data/something/frames/13843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering striker coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116671", "images": ["AURORA/data/something/frames/172786/first.jpg", "AURORA/data/something/frames/172786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116672", "images": ["AURORA/data/something/frames/136685/first.jpg", "AURORA/data/something/frames/136685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116673", "images": ["AURORA/data/something/frames/201763/first.jpg", "AURORA/data/something/frames/201763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116674", "images": ["AURORA/data/something/frames/196602/first.jpg", "AURORA/data/something/frames/196602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116675", "images": ["AURORA/data/something/frames/44263/first.jpg", "AURORA/data/something/frames/44263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing casual hat from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116676", "images": ["AURORA/data/something/frames/165984/first.jpg", "AURORA/data/something/frames/165984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116677", "images": ["AURORA/data/something/frames/162628/first.jpg", "AURORA/data/something/frames/162628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116678", "images": ["AURORA/data/something/frames/170243/first.jpg", "AURORA/data/something/frames/170243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling plushie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116679", "images": ["AURORA/data/something/frames/108988/first.jpg", "AURORA/data/something/frames/108988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116680", "images": ["AURORA/data/something/frames/138471/first.jpg", "AURORA/data/something/frames/138471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a ball into a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116681", "images": ["AURORA/data/something/frames/64640/first.jpg", "AURORA/data/something/frames/64640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching smart phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116682", "images": ["AURORA/data/something/frames/1105/first.jpg", "AURORA/data/something/frames/1105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mug with big pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116683", "images": ["AURORA/data/something/frames/106243/first.jpg", "AURORA/data/something/frames/106243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cross over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116684", "images": ["AURORA/data/something/frames/26012/first.jpg", "AURORA/data/something/frames/26012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116685", "images": ["AURORA/data/something/frames/25674/first.jpg", "AURORA/data/something/frames/25674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking belt from bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000116686", "images": ["AURORA/data/something/frames/198898/first.jpg", "AURORA/data/something/frames/198898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a plastic bag, revealing a coin behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116687", "images": ["AURORA/data/something/frames/81215/first.jpg", "AURORA/data/something/frames/81215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin onto blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116688", "images": ["AURORA/data/something/frames/219401/first.jpg", "AURORA/data/something/frames/219401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cigarette"}, {"from": "gpt", "value": ""}]} +{"id": "000000116689", "images": ["AURORA/data/something/frames/206292/first.jpg", "AURORA/data/something/frames/206292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116690", "images": ["AURORA/data/something/frames/65987/first.jpg", "AURORA/data/something/frames/65987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116691", "images": ["AURORA/data/something/frames/14551/first.jpg", "AURORA/data/something/frames/14551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116692", "images": ["AURORA/data/something/frames/80828/first.jpg", "AURORA/data/something/frames/80828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking medicine bottle out of a prescription bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116693", "images": ["AURORA/data/something/frames/142894/first.jpg", "AURORA/data/something/frames/142894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plastic ognions colliding with plastic choux and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116694", "images": ["AURORA/data/something/frames/137582/first.jpg", "AURORA/data/something/frames/137582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon next to sponze"}, {"from": "gpt", "value": ""}]} +{"id": "000000116695", "images": ["AURORA/data/something/frames/219248/first.jpg", "AURORA/data/something/frames/219248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a plastic box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116696", "images": ["AURORA/data/something/frames/83801/first.jpg", "AURORA/data/something/frames/83801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering key with cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116697", "images": ["AURORA/data/something/frames/140387/first.jpg", "AURORA/data/something/frames/140387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stool with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116698", "images": ["AURORA/data/something/frames/52914/first.jpg", "AURORA/data/something/frames/52914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116699", "images": ["AURORA/data/something/frames/194953/first.jpg", "AURORA/data/something/frames/194953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116700", "images": ["AURORA/data/something/frames/94288/first.jpg", "AURORA/data/something/frames/94288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000116701", "images": ["AURORA/data/something/frames/35677/first.jpg", "AURORA/data/something/frames/35677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lotion bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116702", "images": ["AURORA/data/something/frames/178165/first.jpg", "AURORA/data/something/frames/178165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116703", "images": ["AURORA/data/something/frames/126421/first.jpg", "AURORA/data/something/frames/126421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching girl statue with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116704", "images": ["AURORA/data/something/frames/56512/first.jpg", "AURORA/data/something/frames/56512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume and cream away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116705", "images": ["AURORA/data/something/frames/158875/first.jpg", "AURORA/data/something/frames/158875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116706", "images": ["AURORA/data/something/frames/99214/first.jpg", "AURORA/data/something/frames/99214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116707", "images": ["AURORA/data/something/frames/23681/first.jpg", "AURORA/data/something/frames/23681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116708", "images": ["AURORA/data/something/frames/93576/first.jpg", "AURORA/data/something/frames/93576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cigarette lighter with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000116709", "images": ["AURORA/data/something/frames/152243/first.jpg", "AURORA/data/something/frames/152243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116710", "images": ["AURORA/data/something/frames/110663/first.jpg", "AURORA/data/something/frames/110663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bar soap upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116711", "images": ["AURORA/data/something/frames/208019/first.jpg", "AURORA/data/something/frames/208019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116712", "images": ["AURORA/data/something/frames/69401/first.jpg", "AURORA/data/something/frames/69401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116713", "images": ["AURORA/data/something/frames/48371/first.jpg", "AURORA/data/something/frames/48371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering lantern"}, {"from": "gpt", "value": ""}]} +{"id": "000000116714", "images": ["AURORA/data/something/frames/14784/first.jpg", "AURORA/data/something/frames/14784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116715", "images": ["AURORA/data/something/frames/190079/first.jpg", "AURORA/data/something/frames/190079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a hammer and a nail away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116716", "images": ["AURORA/data/something/frames/2819/first.jpg", "AURORA/data/something/frames/2819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering goggles with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116717", "images": ["AURORA/data/something/frames/87683/first.jpg", "AURORA/data/something/frames/87683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping souce off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000116718", "images": ["AURORA/data/something/frames/93704/first.jpg", "AURORA/data/something/frames/93704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling plushie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116719", "images": ["AURORA/data/something/frames/186916/first.jpg", "AURORA/data/something/frames/186916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116720", "images": ["AURORA/data/something/frames/166257/first.jpg", "AURORA/data/something/frames/166257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon and a cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116721", "images": ["AURORA/data/something/frames/46884/first.jpg", "AURORA/data/something/frames/46884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing blankets into a fabric bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116722", "images": ["AURORA/data/something/frames/45040/first.jpg", "AURORA/data/something/frames/45040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling dish onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116723", "images": ["AURORA/data/something/frames/195577/first.jpg", "AURORA/data/something/frames/195577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a teddy bear upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116724", "images": ["AURORA/data/something/frames/15504/first.jpg", "AURORA/data/something/frames/15504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116725", "images": ["AURORA/data/something/frames/27690/first.jpg", "AURORA/data/something/frames/27690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116726", "images": ["AURORA/data/something/frames/117774/first.jpg", "AURORA/data/something/frames/117774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pear with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116727", "images": ["AURORA/data/something/frames/93275/first.jpg", "AURORA/data/something/frames/93275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116728", "images": ["AURORA/data/something/frames/89853/first.jpg", "AURORA/data/something/frames/89853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116729", "images": ["AURORA/data/something/frames/46001/first.jpg", "AURORA/data/something/frames/46001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chalk, magnet and marker pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116730", "images": ["AURORA/data/something/frames/33775/first.jpg", "AURORA/data/something/frames/33775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116731", "images": ["AURORA/data/something/frames/14215/first.jpg", "AURORA/data/something/frames/14215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116732", "images": ["AURORA/data/something/frames/75613/first.jpg", "AURORA/data/something/frames/75613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000116733", "images": ["AURORA/data/something/frames/136128/first.jpg", "AURORA/data/something/frames/136128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116734", "images": ["AURORA/data/something/frames/71799/first.jpg", "AURORA/data/something/frames/71799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116735", "images": ["AURORA/data/something/frames/72232/first.jpg", "AURORA/data/something/frames/72232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116736", "images": ["AURORA/data/something/frames/72462/first.jpg", "AURORA/data/something/frames/72462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116737", "images": ["AURORA/data/something/frames/195073/first.jpg", "AURORA/data/something/frames/195073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116738", "images": ["AURORA/data/something/frames/115800/first.jpg", "AURORA/data/something/frames/115800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cloth into a cardboard box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116739", "images": ["AURORA/data/something/frames/203165/first.jpg", "AURORA/data/something/frames/203165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116740", "images": ["AURORA/data/something/frames/87870/first.jpg", "AURORA/data/something/frames/87870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a penny so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116741", "images": ["AURORA/data/something/frames/111888/first.jpg", "AURORA/data/something/frames/111888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116742", "images": ["AURORA/data/something/frames/187748/first.jpg", "AURORA/data/something/frames/187748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring drink into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116743", "images": ["AURORA/data/something/frames/207682/first.jpg", "AURORA/data/something/frames/207682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking can so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116744", "images": ["AURORA/data/something/frames/150504/first.jpg", "AURORA/data/something/frames/150504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving domino and domino closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116745", "images": ["AURORA/data/something/frames/35613/first.jpg", "AURORA/data/something/frames/35613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116746", "images": ["AURORA/data/something/frames/78671/first.jpg", "AURORA/data/something/frames/78671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an usb into pc"}, {"from": "gpt", "value": ""}]} +{"id": "000000116747", "images": ["AURORA/data/something/frames/82024/first.jpg", "AURORA/data/something/frames/82024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a computer charger into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116748", "images": ["AURORA/data/something/frames/23718/first.jpg", "AURORA/data/something/frames/23718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116749", "images": ["AURORA/data/something/frames/204703/first.jpg", "AURORA/data/something/frames/204703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cat in front of cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116750", "images": ["AURORA/data/something/frames/171502/first.jpg", "AURORA/data/something/frames/171502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a badminton bat next to a pair of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000116751", "images": ["AURORA/data/something/frames/4548/first.jpg", "AURORA/data/something/frames/4548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering vitamin with hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116752", "images": ["AURORA/data/something/frames/128498/first.jpg", "AURORA/data/something/frames/128498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cart"}, {"from": "gpt", "value": ""}]} +{"id": "000000116753", "images": ["AURORA/data/something/frames/166244/first.jpg", "AURORA/data/something/frames/166244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with thread"}, {"from": "gpt", "value": ""}]} +{"id": "000000116754", "images": ["AURORA/data/something/frames/105814/first.jpg", "AURORA/data/something/frames/105814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116755", "images": ["AURORA/data/something/frames/32373/first.jpg", "AURORA/data/something/frames/32373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar and a small jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116756", "images": ["AURORA/data/something/frames/113525/first.jpg", "AURORA/data/something/frames/113525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000116757", "images": ["AURORA/data/something/frames/151079/first.jpg", "AURORA/data/something/frames/151079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116758", "images": ["AURORA/data/something/frames/118544/first.jpg", "AURORA/data/something/frames/118544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding pamphlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116759", "images": ["AURORA/data/something/frames/51413/first.jpg", "AURORA/data/something/frames/51413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking dog toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116760", "images": ["AURORA/data/something/frames/65224/first.jpg", "AURORA/data/something/frames/65224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116761", "images": ["AURORA/data/something/frames/210275/first.jpg", "AURORA/data/something/frames/210275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many travel magazines"}, {"from": "gpt", "value": ""}]} +{"id": "000000116762", "images": ["AURORA/data/something/frames/174660/first.jpg", "AURORA/data/something/frames/174660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife out of knife holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116763", "images": ["AURORA/data/something/frames/9719/first.jpg", "AURORA/data/something/frames/9719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving laptop up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116764", "images": ["AURORA/data/something/frames/117848/first.jpg", "AURORA/data/something/frames/117848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red crayon away from blue crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116765", "images": ["AURORA/data/something/frames/220410/first.jpg", "AURORA/data/something/frames/220410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sfety helmet from beam"}, {"from": "gpt", "value": ""}]} +{"id": "000000116766", "images": ["AURORA/data/something/frames/6519/first.jpg", "AURORA/data/something/frames/6519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of tin foil so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116767", "images": ["AURORA/data/something/frames/11322/first.jpg", "AURORA/data/something/frames/11322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116768", "images": ["AURORA/data/something/frames/188741/first.jpg", "AURORA/data/something/frames/188741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116769", "images": ["AURORA/data/something/frames/57471/first.jpg", "AURORA/data/something/frames/57471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116770", "images": ["AURORA/data/something/frames/166383/first.jpg", "AURORA/data/something/frames/166383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116771", "images": ["AURORA/data/something/frames/89422/first.jpg", "AURORA/data/something/frames/89422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticker to wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116772", "images": ["AURORA/data/something/frames/4170/first.jpg", "AURORA/data/something/frames/4170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a necklace next to chewing gums"}, {"from": "gpt", "value": ""}]} +{"id": "000000116773", "images": ["AURORA/data/something/frames/25481/first.jpg", "AURORA/data/something/frames/25481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting beer can with crayon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116774", "images": ["AURORA/data/something/frames/94055/first.jpg", "AURORA/data/something/frames/94055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116775", "images": ["AURORA/data/something/frames/166441/first.jpg", "AURORA/data/something/frames/166441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116776", "images": ["AURORA/data/something/frames/87834/first.jpg", "AURORA/data/something/frames/87834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tag, bangle and clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116777", "images": ["AURORA/data/something/frames/210701/first.jpg", "AURORA/data/something/frames/210701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning body spray upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116778", "images": ["AURORA/data/something/frames/45676/first.jpg", "AURORA/data/something/frames/45676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid away from straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000116779", "images": ["AURORA/data/something/frames/164740/first.jpg", "AURORA/data/something/frames/164740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116780", "images": ["AURORA/data/something/frames/155015/first.jpg", "AURORA/data/something/frames/155015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116781", "images": ["AURORA/data/something/frames/212610/first.jpg", "AURORA/data/something/frames/212610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing packet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116782", "images": ["AURORA/data/something/frames/119661/first.jpg", "AURORA/data/something/frames/119661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into a wall adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116783", "images": ["AURORA/data/something/frames/108927/first.jpg", "AURORA/data/something/frames/108927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pear"}, {"from": "gpt", "value": ""}]} +{"id": "000000116784", "images": ["AURORA/data/something/frames/122484/first.jpg", "AURORA/data/something/frames/122484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116785", "images": ["AURORA/data/something/frames/27911/first.jpg", "AURORA/data/something/frames/27911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of headband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000116786", "images": ["AURORA/data/something/frames/141628/first.jpg", "AURORA/data/something/frames/141628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing patterned paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116787", "images": ["AURORA/data/something/frames/191283/first.jpg", "AURORA/data/something/frames/191283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000116788", "images": ["AURORA/data/something/frames/99415/first.jpg", "AURORA/data/something/frames/99415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallete and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116789", "images": ["AURORA/data/something/frames/30183/first.jpg", "AURORA/data/something/frames/30183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000116790", "images": ["AURORA/data/something/frames/124163/first.jpg", "AURORA/data/something/frames/124163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of stick so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116791", "images": ["AURORA/data/something/frames/139629/first.jpg", "AURORA/data/something/frames/139629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a measuring tape so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116792", "images": ["AURORA/data/something/frames/24493/first.jpg", "AURORA/data/something/frames/24493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into storage"}, {"from": "gpt", "value": ""}]} +{"id": "000000116793", "images": ["AURORA/data/something/frames/111625/first.jpg", "AURORA/data/something/frames/111625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hair brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116794", "images": ["AURORA/data/something/frames/172496/first.jpg", "AURORA/data/something/frames/172496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116795", "images": ["AURORA/data/something/frames/22709/first.jpg", "AURORA/data/something/frames/22709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stamp ink upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116796", "images": ["AURORA/data/something/frames/129665/first.jpg", "AURORA/data/something/frames/129665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bottle of shampoo"}, {"from": "gpt", "value": ""}]} +{"id": "000000116797", "images": ["AURORA/data/something/frames/30668/first.jpg", "AURORA/data/something/frames/30668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to horse statue"}, {"from": "gpt", "value": ""}]} +{"id": "000000116798", "images": ["AURORA/data/something/frames/74414/first.jpg", "AURORA/data/something/frames/74414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small sharpener from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116799", "images": ["AURORA/data/something/frames/119678/first.jpg", "AURORA/data/something/frames/119678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116800", "images": ["AURORA/data/something/frames/211547/first.jpg", "AURORA/data/something/frames/211547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cups"}, {"from": "gpt", "value": ""}]} +{"id": "000000116801", "images": ["AURORA/data/something/frames/60716/first.jpg", "AURORA/data/something/frames/60716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping coffee off of the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116802", "images": ["AURORA/data/something/frames/5679/first.jpg", "AURORA/data/something/frames/5679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116803", "images": ["AURORA/data/something/frames/96088/first.jpg", "AURORA/data/something/frames/96088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000116804", "images": ["AURORA/data/something/frames/220131/first.jpg", "AURORA/data/something/frames/220131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116805", "images": ["AURORA/data/something/frames/113076/first.jpg", "AURORA/data/something/frames/113076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a golf ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000116806", "images": ["AURORA/data/something/frames/130900/first.jpg", "AURORA/data/something/frames/130900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cover just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116807", "images": ["AURORA/data/something/frames/114944/first.jpg", "AURORA/data/something/frames/114944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball closer to a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000116808", "images": ["AURORA/data/something/frames/193811/first.jpg", "AURORA/data/something/frames/193811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting timepiece and toy on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116809", "images": ["AURORA/data/something/frames/205565/first.jpg", "AURORA/data/something/frames/205565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116810", "images": ["AURORA/data/something/frames/66765/first.jpg", "AURORA/data/something/frames/66765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116811", "images": ["AURORA/data/something/frames/212065/first.jpg", "AURORA/data/something/frames/212065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser behind calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000116812", "images": ["AURORA/data/something/frames/85329/first.jpg", "AURORA/data/something/frames/85329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cover up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116813", "images": ["AURORA/data/something/frames/140125/first.jpg", "AURORA/data/something/frames/140125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116814", "images": ["AURORA/data/something/frames/117768/first.jpg", "AURORA/data/something/frames/117768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet computer with dust mask on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116815", "images": ["AURORA/data/something/frames/190864/first.jpg", "AURORA/data/something/frames/190864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pump of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116816", "images": ["AURORA/data/something/frames/35158/first.jpg", "AURORA/data/something/frames/35158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping biscuit packet in front of water-bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116817", "images": ["AURORA/data/something/frames/80758/first.jpg", "AURORA/data/something/frames/80758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sun glass towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116818", "images": ["AURORA/data/something/frames/20616/first.jpg", "AURORA/data/something/frames/20616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116819", "images": ["AURORA/data/something/frames/147010/first.jpg", "AURORA/data/something/frames/147010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book in front of a bandana"}, {"from": "gpt", "value": ""}]} +{"id": "000000116820", "images": ["AURORA/data/something/frames/53854/first.jpg", "AURORA/data/something/frames/53854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tea bag upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116821", "images": ["AURORA/data/something/frames/59860/first.jpg", "AURORA/data/something/frames/59860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting iron plate with toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000116822", "images": ["AURORA/data/something/frames/152010/first.jpg", "AURORA/data/something/frames/152010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screwdriver with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116823", "images": ["AURORA/data/something/frames/78383/first.jpg", "AURORA/data/something/frames/78383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: match box colliding with match box and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116824", "images": ["AURORA/data/something/frames/111106/first.jpg", "AURORA/data/something/frames/111106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a padlock from behind of a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116825", "images": ["AURORA/data/something/frames/83155/first.jpg", "AURORA/data/something/frames/83155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116826", "images": ["AURORA/data/something/frames/135149/first.jpg", "AURORA/data/something/frames/135149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking black pouch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116827", "images": ["AURORA/data/something/frames/149753/first.jpg", "AURORA/data/something/frames/149753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb adaptor to a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116828", "images": ["AURORA/data/something/frames/143698/first.jpg", "AURORA/data/something/frames/143698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing white paper, revealing memory card behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116829", "images": ["AURORA/data/something/frames/23791/first.jpg", "AURORA/data/something/frames/23791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering quarter with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116830", "images": ["AURORA/data/something/frames/188038/first.jpg", "AURORA/data/something/frames/188038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring wtaer into the cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000116831", "images": ["AURORA/data/something/frames/125313/first.jpg", "AURORA/data/something/frames/125313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000116832", "images": ["AURORA/data/something/frames/89241/first.jpg", "AURORA/data/something/frames/89241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass similar to"}, {"from": "gpt", "value": ""}]} +{"id": "000000116833", "images": ["AURORA/data/something/frames/200491/first.jpg", "AURORA/data/something/frames/200491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116834", "images": ["AURORA/data/something/frames/72143/first.jpg", "AURORA/data/something/frames/72143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a remote control with a paper sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116835", "images": ["AURORA/data/something/frames/121526/first.jpg", "AURORA/data/something/frames/121526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116836", "images": ["AURORA/data/something/frames/157356/first.jpg", "AURORA/data/something/frames/157356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116837", "images": ["AURORA/data/something/frames/72106/first.jpg", "AURORA/data/something/frames/72106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming vacuum cleaner"}, {"from": "gpt", "value": ""}]} +{"id": "000000116838", "images": ["AURORA/data/something/frames/112372/first.jpg", "AURORA/data/something/frames/112372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb charger into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116839", "images": ["AURORA/data/something/frames/210163/first.jpg", "AURORA/data/something/frames/210163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a banana onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116840", "images": ["AURORA/data/something/frames/64265/first.jpg", "AURORA/data/something/frames/64265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116841", "images": ["AURORA/data/something/frames/182546/first.jpg", "AURORA/data/something/frames/182546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116842", "images": ["AURORA/data/something/frames/134331/first.jpg", "AURORA/data/something/frames/134331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116843", "images": ["AURORA/data/something/frames/11239/first.jpg", "AURORA/data/something/frames/11239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a rag up with a spatula"}, {"from": "gpt", "value": ""}]} +{"id": "000000116844", "images": ["AURORA/data/something/frames/51929/first.jpg", "AURORA/data/something/frames/51929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stone and a stone so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116845", "images": ["AURORA/data/something/frames/118536/first.jpg", "AURORA/data/something/frames/118536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting textbook upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116846", "images": ["AURORA/data/something/frames/14873/first.jpg", "AURORA/data/something/frames/14873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116847", "images": ["AURORA/data/something/frames/201513/first.jpg", "AURORA/data/something/frames/201513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116848", "images": ["AURORA/data/something/frames/94994/first.jpg", "AURORA/data/something/frames/94994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering earphones with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116849", "images": ["AURORA/data/something/frames/104087/first.jpg", "AURORA/data/something/frames/104087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plush into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116850", "images": ["AURORA/data/something/frames/19777/first.jpg", "AURORA/data/something/frames/19777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a sunglasses case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116851", "images": ["AURORA/data/something/frames/156867/first.jpg", "AURORA/data/something/frames/156867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming green toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000116852", "images": ["AURORA/data/something/frames/76379/first.jpg", "AURORA/data/something/frames/76379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116853", "images": ["AURORA/data/something/frames/197621/first.jpg", "AURORA/data/something/frames/197621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ipad being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116854", "images": ["AURORA/data/something/frames/56440/first.jpg", "AURORA/data/something/frames/56440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116855", "images": ["AURORA/data/something/frames/80371/first.jpg", "AURORA/data/something/frames/80371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a jewellry box with jewellry over, so jewellry falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116856", "images": ["AURORA/data/something/frames/149054/first.jpg", "AURORA/data/something/frames/149054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking black umbrella up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116857", "images": ["AURORA/data/something/frames/145663/first.jpg", "AURORA/data/something/frames/145663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000116858", "images": ["AURORA/data/something/frames/62631/first.jpg", "AURORA/data/something/frames/62631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116859", "images": ["AURORA/data/something/frames/220213/first.jpg", "AURORA/data/something/frames/220213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coins out of a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116860", "images": ["AURORA/data/something/frames/105779/first.jpg", "AURORA/data/something/frames/105779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tshirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116861", "images": ["AURORA/data/something/frames/110791/first.jpg", "AURORA/data/something/frames/110791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116862", "images": ["AURORA/data/something/frames/158145/first.jpg", "AURORA/data/something/frames/158145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116863", "images": ["AURORA/data/something/frames/46597/first.jpg", "AURORA/data/something/frames/46597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue hair clip with white spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116864", "images": ["AURORA/data/something/frames/168864/first.jpg", "AURORA/data/something/frames/168864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000116865", "images": ["AURORA/data/something/frames/159733/first.jpg", "AURORA/data/something/frames/159733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering onion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116866", "images": ["AURORA/data/something/frames/60178/first.jpg", "AURORA/data/something/frames/60178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pants into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116867", "images": ["AURORA/data/something/frames/16862/first.jpg", "AURORA/data/something/frames/16862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and knife closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116868", "images": ["AURORA/data/something/frames/171615/first.jpg", "AURORA/data/something/frames/171615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000116869", "images": ["AURORA/data/something/frames/194709/first.jpg", "AURORA/data/something/frames/194709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching adhesive tape to a cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116870", "images": ["AURORA/data/something/frames/111890/first.jpg", "AURORA/data/something/frames/111890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a marker so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116871", "images": ["AURORA/data/something/frames/110362/first.jpg", "AURORA/data/something/frames/110362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116872", "images": ["AURORA/data/something/frames/44127/first.jpg", "AURORA/data/something/frames/44127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling computer mouse from behind of thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000116873", "images": ["AURORA/data/something/frames/85081/first.jpg", "AURORA/data/something/frames/85081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116874", "images": ["AURORA/data/something/frames/54792/first.jpg", "AURORA/data/something/frames/54792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a sock with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116875", "images": ["AURORA/data/something/frames/114635/first.jpg", "AURORA/data/something/frames/114635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pencil with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116876", "images": ["AURORA/data/something/frames/211312/first.jpg", "AURORA/data/something/frames/211312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip magnet to lamp stand joint"}, {"from": "gpt", "value": ""}]} +{"id": "000000116877", "images": ["AURORA/data/something/frames/150668/first.jpg", "AURORA/data/something/frames/150668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying lid in butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116878", "images": ["AURORA/data/something/frames/52114/first.jpg", "AURORA/data/something/frames/52114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116879", "images": ["AURORA/data/something/frames/17126/first.jpg", "AURORA/data/something/frames/17126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three juice boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000116880", "images": ["AURORA/data/something/frames/138792/first.jpg", "AURORA/data/something/frames/138792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116881", "images": ["AURORA/data/something/frames/27110/first.jpg", "AURORA/data/something/frames/27110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker in front of tape dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116882", "images": ["AURORA/data/something/frames/40045/first.jpg", "AURORA/data/something/frames/40045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116883", "images": ["AURORA/data/something/frames/36570/first.jpg", "AURORA/data/something/frames/36570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching earphone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116884", "images": ["AURORA/data/something/frames/154204/first.jpg", "AURORA/data/something/frames/154204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116885", "images": ["AURORA/data/something/frames/203267/first.jpg", "AURORA/data/something/frames/203267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116886", "images": ["AURORA/data/something/frames/97986/first.jpg", "AURORA/data/something/frames/97986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching an aligator clip to wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000116887", "images": ["AURORA/data/something/frames/142395/first.jpg", "AURORA/data/something/frames/142395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116888", "images": ["AURORA/data/something/frames/29861/first.jpg", "AURORA/data/something/frames/29861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116889", "images": ["AURORA/data/something/frames/169190/first.jpg", "AURORA/data/something/frames/169190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116890", "images": ["AURORA/data/something/frames/183675/first.jpg", "AURORA/data/something/frames/183675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cream container off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116891", "images": ["AURORA/data/something/frames/82223/first.jpg", "AURORA/data/something/frames/82223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle closer to a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000116892", "images": ["AURORA/data/something/frames/19579/first.jpg", "AURORA/data/something/frames/19579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116893", "images": ["AURORA/data/something/frames/209230/first.jpg", "AURORA/data/something/frames/209230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116894", "images": ["AURORA/data/something/frames/217607/first.jpg", "AURORA/data/something/frames/217607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116895", "images": ["AURORA/data/something/frames/62818/first.jpg", "AURORA/data/something/frames/62818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging nightlight into powerpoint"}, {"from": "gpt", "value": ""}]} +{"id": "000000116896", "images": ["AURORA/data/something/frames/110884/first.jpg", "AURORA/data/something/frames/110884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116897", "images": ["AURORA/data/something/frames/199768/first.jpg", "AURORA/data/something/frames/199768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pot in front of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116898", "images": ["AURORA/data/something/frames/218994/first.jpg", "AURORA/data/something/frames/218994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a thumb drive next to a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116899", "images": ["AURORA/data/something/frames/77584/first.jpg", "AURORA/data/something/frames/77584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching battery cover to tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116900", "images": ["AURORA/data/something/frames/201576/first.jpg", "AURORA/data/something/frames/201576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000116901", "images": ["AURORA/data/something/frames/67147/first.jpg", "AURORA/data/something/frames/67147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink cologne from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116902", "images": ["AURORA/data/something/frames/34782/first.jpg", "AURORA/data/something/frames/34782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116903", "images": ["AURORA/data/something/frames/173407/first.jpg", "AURORA/data/something/frames/173407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stapler with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116904", "images": ["AURORA/data/something/frames/33635/first.jpg", "AURORA/data/something/frames/33635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling an electric pencil sharpener out of a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116905", "images": ["AURORA/data/something/frames/192554/first.jpg", "AURORA/data/something/frames/192554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pot so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116906", "images": ["AURORA/data/something/frames/101885/first.jpg", "AURORA/data/something/frames/101885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116907", "images": ["AURORA/data/something/frames/187934/first.jpg", "AURORA/data/something/frames/187934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging water into mouth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116908", "images": ["AURORA/data/something/frames/138398/first.jpg", "AURORA/data/something/frames/138398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116909", "images": ["AURORA/data/something/frames/106600/first.jpg", "AURORA/data/something/frames/106600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116910", "images": ["AURORA/data/something/frames/108588/first.jpg", "AURORA/data/something/frames/108588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cover off of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116911", "images": ["AURORA/data/something/frames/184312/first.jpg", "AURORA/data/something/frames/184312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116912", "images": ["AURORA/data/something/frames/130515/first.jpg", "AURORA/data/something/frames/130515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116913", "images": ["AURORA/data/something/frames/123884/first.jpg", "AURORA/data/something/frames/123884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116914", "images": ["AURORA/data/something/frames/171294/first.jpg", "AURORA/data/something/frames/171294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rubber ball colliding with rubber ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116915", "images": ["AURORA/data/something/frames/192406/first.jpg", "AURORA/data/something/frames/192406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116916", "images": ["AURORA/data/something/frames/146953/first.jpg", "AURORA/data/something/frames/146953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming wireless mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116917", "images": ["AURORA/data/something/frames/216134/first.jpg", "AURORA/data/something/frames/216134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming step up transformer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116918", "images": ["AURORA/data/something/frames/52443/first.jpg", "AURORA/data/something/frames/52443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy onto a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116919", "images": ["AURORA/data/something/frames/112653/first.jpg", "AURORA/data/something/frames/112653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning plastic cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116920", "images": ["AURORA/data/something/frames/86731/first.jpg", "AURORA/data/something/frames/86731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000116921", "images": ["AURORA/data/something/frames/106735/first.jpg", "AURORA/data/something/frames/106735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle closer to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116922", "images": ["AURORA/data/something/frames/81087/first.jpg", "AURORA/data/something/frames/81087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tissue from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116923", "images": ["AURORA/data/something/frames/125899/first.jpg", "AURORA/data/something/frames/125899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glass on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116924", "images": ["AURORA/data/something/frames/198296/first.jpg", "AURORA/data/something/frames/198296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a small container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116925", "images": ["AURORA/data/something/frames/197047/first.jpg", "AURORA/data/something/frames/197047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116926", "images": ["AURORA/data/something/frames/186343/first.jpg", "AURORA/data/something/frames/186343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pyramid on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116927", "images": ["AURORA/data/something/frames/42454/first.jpg", "AURORA/data/something/frames/42454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting laptop with cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000116928", "images": ["AURORA/data/something/frames/192045/first.jpg", "AURORA/data/something/frames/192045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a leaflet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116929", "images": ["AURORA/data/something/frames/137281/first.jpg", "AURORA/data/something/frames/137281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116930", "images": ["AURORA/data/something/frames/135383/first.jpg", "AURORA/data/something/frames/135383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116931", "images": ["AURORA/data/something/frames/23889/first.jpg", "AURORA/data/something/frames/23889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116932", "images": ["AURORA/data/something/frames/131879/first.jpg", "AURORA/data/something/frames/131879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116933", "images": ["AURORA/data/something/frames/1810/first.jpg", "AURORA/data/something/frames/1810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116934", "images": ["AURORA/data/something/frames/2661/first.jpg", "AURORA/data/something/frames/2661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116935", "images": ["AURORA/data/something/frames/11432/first.jpg", "AURORA/data/something/frames/11432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dvd and a mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116936", "images": ["AURORA/data/something/frames/174633/first.jpg", "AURORA/data/something/frames/174633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plastic bag from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116937", "images": ["AURORA/data/something/frames/85262/first.jpg", "AURORA/data/something/frames/85262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging night light into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116938", "images": ["AURORA/data/something/frames/179478/first.jpg", "AURORA/data/something/frames/179478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 shirts"}, {"from": "gpt", "value": ""}]} +{"id": "000000116939", "images": ["AURORA/data/something/frames/39685/first.jpg", "AURORA/data/something/frames/39685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving radio away from powerbank"}, {"from": "gpt", "value": ""}]} +{"id": "000000116940", "images": ["AURORA/data/something/frames/168185/first.jpg", "AURORA/data/something/frames/168185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000116941", "images": ["AURORA/data/something/frames/206597/first.jpg", "AURORA/data/something/frames/206597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle closer to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116942", "images": ["AURORA/data/something/frames/43287/first.jpg", "AURORA/data/something/frames/43287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000116943", "images": ["AURORA/data/something/frames/216359/first.jpg", "AURORA/data/something/frames/216359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching small book with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116944", "images": ["AURORA/data/something/frames/124045/first.jpg", "AURORA/data/something/frames/124045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into beaker until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000116945", "images": ["AURORA/data/something/frames/74115/first.jpg", "AURORA/data/something/frames/74115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the fan from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116946", "images": ["AURORA/data/something/frames/68019/first.jpg", "AURORA/data/something/frames/68019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coaster from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116947", "images": ["AURORA/data/something/frames/63956/first.jpg", "AURORA/data/something/frames/63956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116948", "images": ["AURORA/data/something/frames/77562/first.jpg", "AURORA/data/something/frames/77562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000116949", "images": ["AURORA/data/something/frames/98797/first.jpg", "AURORA/data/something/frames/98797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stapler with highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116950", "images": ["AURORA/data/something/frames/27501/first.jpg", "AURORA/data/something/frames/27501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000116951", "images": ["AURORA/data/something/frames/128037/first.jpg", "AURORA/data/something/frames/128037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pens next to a desk organizer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116952", "images": ["AURORA/data/something/frames/54968/first.jpg", "AURORA/data/something/frames/54968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116953", "images": ["AURORA/data/something/frames/31984/first.jpg", "AURORA/data/something/frames/31984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116954", "images": ["AURORA/data/something/frames/140157/first.jpg", "AURORA/data/something/frames/140157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a mug on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116955", "images": ["AURORA/data/something/frames/117056/first.jpg", "AURORA/data/something/frames/117056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with paper on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116956", "images": ["AURORA/data/something/frames/180859/first.jpg", "AURORA/data/something/frames/180859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116957", "images": ["AURORA/data/something/frames/210300/first.jpg", "AURORA/data/something/frames/210300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching fireplace with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116958", "images": ["AURORA/data/something/frames/144836/first.jpg", "AURORA/data/something/frames/144836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning hair gel bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116959", "images": ["AURORA/data/something/frames/89283/first.jpg", "AURORA/data/something/frames/89283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000116960", "images": ["AURORA/data/something/frames/215308/first.jpg", "AURORA/data/something/frames/215308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116961", "images": ["AURORA/data/something/frames/120532/first.jpg", "AURORA/data/something/frames/120532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting desk with highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116962", "images": ["AURORA/data/something/frames/53011/first.jpg", "AURORA/data/something/frames/53011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting videotape upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116963", "images": ["AURORA/data/something/frames/196594/first.jpg", "AURORA/data/something/frames/196594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cereal onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116964", "images": ["AURORA/data/something/frames/65842/first.jpg", "AURORA/data/something/frames/65842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a remote control onto a couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116965", "images": ["AURORA/data/something/frames/118523/first.jpg", "AURORA/data/something/frames/118523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning snow globe upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116966", "images": ["AURORA/data/something/frames/139161/first.jpg", "AURORA/data/something/frames/139161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116967", "images": ["AURORA/data/something/frames/127456/first.jpg", "AURORA/data/something/frames/127456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying waterbottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116968", "images": ["AURORA/data/something/frames/152367/first.jpg", "AURORA/data/something/frames/152367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116969", "images": ["AURORA/data/something/frames/51893/first.jpg", "AURORA/data/something/frames/51893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flavor juice in front of coffee pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000116970", "images": ["AURORA/data/something/frames/167538/first.jpg", "AURORA/data/something/frames/167538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116971", "images": ["AURORA/data/something/frames/185166/first.jpg", "AURORA/data/something/frames/185166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mixer grinder behind the vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116972", "images": ["AURORA/data/something/frames/149131/first.jpg", "AURORA/data/something/frames/149131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a piece of paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116973", "images": ["AURORA/data/something/frames/111300/first.jpg", "AURORA/data/something/frames/111300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pack of cards and a box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116974", "images": ["AURORA/data/something/frames/212418/first.jpg", "AURORA/data/something/frames/212418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving metal weight and metal weight closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116975", "images": ["AURORA/data/something/frames/11379/first.jpg", "AURORA/data/something/frames/11379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow coloured hair band next to charger adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116976", "images": ["AURORA/data/something/frames/151180/first.jpg", "AURORA/data/something/frames/151180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pencil boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116977", "images": ["AURORA/data/something/frames/13136/first.jpg", "AURORA/data/something/frames/13136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting headphones and a book on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116978", "images": ["AURORA/data/something/frames/127210/first.jpg", "AURORA/data/something/frames/127210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116979", "images": ["AURORA/data/something/frames/107899/first.jpg", "AURORA/data/something/frames/107899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle with pills in it over, so pills falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116980", "images": ["AURORA/data/something/frames/86673/first.jpg", "AURORA/data/something/frames/86673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening brown covered note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116981", "images": ["AURORA/data/something/frames/78582/first.jpg", "AURORA/data/something/frames/78582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 notebooks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116982", "images": ["AURORA/data/something/frames/199813/first.jpg", "AURORA/data/something/frames/199813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116983", "images": ["AURORA/data/something/frames/130887/first.jpg", "AURORA/data/something/frames/130887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116984", "images": ["AURORA/data/something/frames/140535/first.jpg", "AURORA/data/something/frames/140535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sticky note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116985", "images": ["AURORA/data/something/frames/145107/first.jpg", "AURORA/data/something/frames/145107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping shampoo bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116986", "images": ["AURORA/data/something/frames/35502/first.jpg", "AURORA/data/something/frames/35502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting book with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000116987", "images": ["AURORA/data/something/frames/138448/first.jpg", "AURORA/data/something/frames/138448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purple colour foldable pocket knife into spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116988", "images": ["AURORA/data/something/frames/86118/first.jpg", "AURORA/data/something/frames/86118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box of tissues upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116989", "images": ["AURORA/data/something/frames/112712/first.jpg", "AURORA/data/something/frames/112712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116990", "images": ["AURORA/data/something/frames/75052/first.jpg", "AURORA/data/something/frames/75052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116991", "images": ["AURORA/data/something/frames/205305/first.jpg", "AURORA/data/something/frames/205305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: small plates colliding with small plates and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116992", "images": ["AURORA/data/something/frames/84184/first.jpg", "AURORA/data/something/frames/84184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: paper ball being deflected from water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116993", "images": ["AURORA/data/something/frames/216434/first.jpg", "AURORA/data/something/frames/216434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116994", "images": ["AURORA/data/something/frames/78428/first.jpg", "AURORA/data/something/frames/78428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mobile up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116995", "images": ["AURORA/data/something/frames/27222/first.jpg", "AURORA/data/something/frames/27222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116996", "images": ["AURORA/data/something/frames/157449/first.jpg", "AURORA/data/something/frames/157449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116997", "images": ["AURORA/data/something/frames/57131/first.jpg", "AURORA/data/something/frames/57131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping earing into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116998", "images": ["AURORA/data/something/frames/207818/first.jpg", "AURORA/data/something/frames/207818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging guitar pick out of rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000116999", "images": ["AURORA/data/something/frames/169385/first.jpg", "AURORA/data/something/frames/169385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking seven gooseberry"}, {"from": "gpt", "value": ""}]} +{"id": "000000117000", "images": ["AURORA/data/something/frames/91758/first.jpg", "AURORA/data/something/frames/91758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117001", "images": ["AURORA/data/something/frames/173075/first.jpg", "AURORA/data/something/frames/173075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117002", "images": ["AURORA/data/something/frames/37836/first.jpg", "AURORA/data/something/frames/37836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117003", "images": ["AURORA/data/something/frames/27722/first.jpg", "AURORA/data/something/frames/27722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting stool with laptop on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117004", "images": ["AURORA/data/something/frames/140054/first.jpg", "AURORA/data/something/frames/140054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117005", "images": ["AURORA/data/something/frames/189909/first.jpg", "AURORA/data/something/frames/189909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one spice out of may"}, {"from": "gpt", "value": ""}]} +{"id": "000000117006", "images": ["AURORA/data/something/frames/163313/first.jpg", "AURORA/data/something/frames/163313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking five slices of bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117007", "images": ["AURORA/data/something/frames/145466/first.jpg", "AURORA/data/something/frames/145466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117008", "images": ["AURORA/data/something/frames/119102/first.jpg", "AURORA/data/something/frames/119102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a padlock so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117009", "images": ["AURORA/data/something/frames/73540/first.jpg", "AURORA/data/something/frames/73540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117010", "images": ["AURORA/data/something/frames/119573/first.jpg", "AURORA/data/something/frames/119573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing avocado off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117011", "images": ["AURORA/data/something/frames/28864/first.jpg", "AURORA/data/something/frames/28864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000117012", "images": ["AURORA/data/something/frames/28865/first.jpg", "AURORA/data/something/frames/28865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117013", "images": ["AURORA/data/something/frames/55877/first.jpg", "AURORA/data/something/frames/55877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toothpaste"}, {"from": "gpt", "value": ""}]} +{"id": "000000117014", "images": ["AURORA/data/something/frames/184070/first.jpg", "AURORA/data/something/frames/184070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto cup so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117015", "images": ["AURORA/data/something/frames/72326/first.jpg", "AURORA/data/something/frames/72326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117016", "images": ["AURORA/data/something/frames/168061/first.jpg", "AURORA/data/something/frames/168061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting salt shaker onto matchbox so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117017", "images": ["AURORA/data/something/frames/5741/first.jpg", "AURORA/data/something/frames/5741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117018", "images": ["AURORA/data/something/frames/7773/first.jpg", "AURORA/data/something/frames/7773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117019", "images": ["AURORA/data/something/frames/134076/first.jpg", "AURORA/data/something/frames/134076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pen colliding with another pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117020", "images": ["AURORA/data/something/frames/2693/first.jpg", "AURORA/data/something/frames/2693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bench with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117021", "images": ["AURORA/data/something/frames/181760/first.jpg", "AURORA/data/something/frames/181760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117022", "images": ["AURORA/data/something/frames/87289/first.jpg", "AURORA/data/something/frames/87289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117023", "images": ["AURORA/data/something/frames/33041/first.jpg", "AURORA/data/something/frames/33041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117024", "images": ["AURORA/data/something/frames/19837/first.jpg", "AURORA/data/something/frames/19837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pills into pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117025", "images": ["AURORA/data/something/frames/192463/first.jpg", "AURORA/data/something/frames/192463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring, bangle and chain on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117026", "images": ["AURORA/data/something/frames/147266/first.jpg", "AURORA/data/something/frames/147266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117027", "images": ["AURORA/data/something/frames/179668/first.jpg", "AURORA/data/something/frames/179668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pennies onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117028", "images": ["AURORA/data/something/frames/23920/first.jpg", "AURORA/data/something/frames/23920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting debit card, rular and marker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117029", "images": ["AURORA/data/something/frames/219060/first.jpg", "AURORA/data/something/frames/219060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117030", "images": ["AURORA/data/something/frames/88992/first.jpg", "AURORA/data/something/frames/88992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork out of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117031", "images": ["AURORA/data/something/frames/197774/first.jpg", "AURORA/data/something/frames/197774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117032", "images": ["AURORA/data/something/frames/177327/first.jpg", "AURORA/data/something/frames/177327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming rubber"}, {"from": "gpt", "value": ""}]} +{"id": "000000117033", "images": ["AURORA/data/something/frames/185036/first.jpg", "AURORA/data/something/frames/185036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000117034", "images": ["AURORA/data/something/frames/156118/first.jpg", "AURORA/data/something/frames/156118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117035", "images": ["AURORA/data/something/frames/195660/first.jpg", "AURORA/data/something/frames/195660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 plate onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117036", "images": ["AURORA/data/something/frames/86475/first.jpg", "AURORA/data/something/frames/86475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117037", "images": ["AURORA/data/something/frames/67222/first.jpg", "AURORA/data/something/frames/67222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper next to person"}, {"from": "gpt", "value": ""}]} +{"id": "000000117038", "images": ["AURORA/data/something/frames/98259/first.jpg", "AURORA/data/something/frames/98259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping coffee spills off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117039", "images": ["AURORA/data/something/frames/133158/first.jpg", "AURORA/data/something/frames/133158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming pink toothbrush case"}, {"from": "gpt", "value": ""}]} +{"id": "000000117040", "images": ["AURORA/data/something/frames/39317/first.jpg", "AURORA/data/something/frames/39317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with clip on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117041", "images": ["AURORA/data/something/frames/200298/first.jpg", "AURORA/data/something/frames/200298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117042", "images": ["AURORA/data/something/frames/183843/first.jpg", "AURORA/data/something/frames/183843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117043", "images": ["AURORA/data/something/frames/220750/first.jpg", "AURORA/data/something/frames/220750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117044", "images": ["AURORA/data/something/frames/201527/first.jpg", "AURORA/data/something/frames/201527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117045", "images": ["AURORA/data/something/frames/32942/first.jpg", "AURORA/data/something/frames/32942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117046", "images": ["AURORA/data/something/frames/192632/first.jpg", "AURORA/data/something/frames/192632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glas on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117047", "images": ["AURORA/data/something/frames/134848/first.jpg", "AURORA/data/something/frames/134848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117048", "images": ["AURORA/data/something/frames/135768/first.jpg", "AURORA/data/something/frames/135768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 plates"}, {"from": "gpt", "value": ""}]} +{"id": "000000117049", "images": ["AURORA/data/something/frames/123057/first.jpg", "AURORA/data/something/frames/123057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117050", "images": ["AURORA/data/something/frames/114017/first.jpg", "AURORA/data/something/frames/114017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117051", "images": ["AURORA/data/something/frames/187074/first.jpg", "AURORA/data/something/frames/187074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air freshener into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117052", "images": ["AURORA/data/something/frames/146477/first.jpg", "AURORA/data/something/frames/146477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117053", "images": ["AURORA/data/something/frames/4810/first.jpg", "AURORA/data/something/frames/4810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a lighter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117054", "images": ["AURORA/data/something/frames/142577/first.jpg", "AURORA/data/something/frames/142577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairband, pendrive and hair clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117055", "images": ["AURORA/data/something/frames/140189/first.jpg", "AURORA/data/something/frames/140189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillow off of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117056", "images": ["AURORA/data/something/frames/81100/first.jpg", "AURORA/data/something/frames/81100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117057", "images": ["AURORA/data/something/frames/48381/first.jpg", "AURORA/data/something/frames/48381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and smarthphone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117058", "images": ["AURORA/data/something/frames/113381/first.jpg", "AURORA/data/something/frames/113381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117059", "images": ["AURORA/data/something/frames/107646/first.jpg", "AURORA/data/something/frames/107646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117060", "images": ["AURORA/data/something/frames/134918/first.jpg", "AURORA/data/something/frames/134918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a telephone so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117061", "images": ["AURORA/data/something/frames/85424/first.jpg", "AURORA/data/something/frames/85424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117062", "images": ["AURORA/data/something/frames/138854/first.jpg", "AURORA/data/something/frames/138854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117063", "images": ["AURORA/data/something/frames/161289/first.jpg", "AURORA/data/something/frames/161289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving crayon closer to doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000117064", "images": ["AURORA/data/something/frames/17223/first.jpg", "AURORA/data/something/frames/17223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping card over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117065", "images": ["AURORA/data/something/frames/27351/first.jpg", "AURORA/data/something/frames/27351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117066", "images": ["AURORA/data/something/frames/106189/first.jpg", "AURORA/data/something/frames/106189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117067", "images": ["AURORA/data/something/frames/98792/first.jpg", "AURORA/data/something/frames/98792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117068", "images": ["AURORA/data/something/frames/126789/first.jpg", "AURORA/data/something/frames/126789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wallet being deflected from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117069", "images": ["AURORA/data/something/frames/80714/first.jpg", "AURORA/data/something/frames/80714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a head with a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117070", "images": ["AURORA/data/something/frames/190272/first.jpg", "AURORA/data/something/frames/190272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117071", "images": ["AURORA/data/something/frames/79372/first.jpg", "AURORA/data/something/frames/79372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000117072", "images": ["AURORA/data/something/frames/194908/first.jpg", "AURORA/data/something/frames/194908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking sponge so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117073", "images": ["AURORA/data/something/frames/175034/first.jpg", "AURORA/data/something/frames/175034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117074", "images": ["AURORA/data/something/frames/31762/first.jpg", "AURORA/data/something/frames/31762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking something out of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117075", "images": ["AURORA/data/something/frames/10012/first.jpg", "AURORA/data/something/frames/10012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stamp pad from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117076", "images": ["AURORA/data/something/frames/143712/first.jpg", "AURORA/data/something/frames/143712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling stuff onto a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117077", "images": ["AURORA/data/something/frames/2699/first.jpg", "AURORA/data/something/frames/2699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a wire into a telephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117078", "images": ["AURORA/data/something/frames/12747/first.jpg", "AURORA/data/something/frames/12747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117079", "images": ["AURORA/data/something/frames/209388/first.jpg", "AURORA/data/something/frames/209388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a coin to a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117080", "images": ["AURORA/data/something/frames/135379/first.jpg", "AURORA/data/something/frames/135379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000117081", "images": ["AURORA/data/something/frames/87993/first.jpg", "AURORA/data/something/frames/87993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a charger next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117082", "images": ["AURORA/data/something/frames/202902/first.jpg", "AURORA/data/something/frames/202902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a perfume bottle onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117083", "images": ["AURORA/data/something/frames/81108/first.jpg", "AURORA/data/something/frames/81108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000117084", "images": ["AURORA/data/something/frames/108041/first.jpg", "AURORA/data/something/frames/108041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117085", "images": ["AURORA/data/something/frames/62681/first.jpg", "AURORA/data/something/frames/62681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rice up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117086", "images": ["AURORA/data/something/frames/65280/first.jpg", "AURORA/data/something/frames/65280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117087", "images": ["AURORA/data/something/frames/64118/first.jpg", "AURORA/data/something/frames/64118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117088", "images": ["AURORA/data/something/frames/130172/first.jpg", "AURORA/data/something/frames/130172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000117089", "images": ["AURORA/data/something/frames/115799/first.jpg", "AURORA/data/something/frames/115799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117090", "images": ["AURORA/data/something/frames/48561/first.jpg", "AURORA/data/something/frames/48561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117091", "images": ["AURORA/data/something/frames/30297/first.jpg", "AURORA/data/something/frames/30297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding bed sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117092", "images": ["AURORA/data/something/frames/186219/first.jpg", "AURORA/data/something/frames/186219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin from behind of a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117093", "images": ["AURORA/data/something/frames/206244/first.jpg", "AURORA/data/something/frames/206244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cloth into a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000117094", "images": ["AURORA/data/something/frames/106801/first.jpg", "AURORA/data/something/frames/106801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering purse with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117095", "images": ["AURORA/data/something/frames/178569/first.jpg", "AURORA/data/something/frames/178569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a computer mouse so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117096", "images": ["AURORA/data/something/frames/108579/first.jpg", "AURORA/data/something/frames/108579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117097", "images": ["AURORA/data/something/frames/33760/first.jpg", "AURORA/data/something/frames/33760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000117098", "images": ["AURORA/data/something/frames/194422/first.jpg", "AURORA/data/something/frames/194422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117099", "images": ["AURORA/data/something/frames/21373/first.jpg", "AURORA/data/something/frames/21373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117100", "images": ["AURORA/data/something/frames/30749/first.jpg", "AURORA/data/something/frames/30749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117101", "images": ["AURORA/data/something/frames/51343/first.jpg", "AURORA/data/something/frames/51343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117102", "images": ["AURORA/data/something/frames/4725/first.jpg", "AURORA/data/something/frames/4725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto a shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000117103", "images": ["AURORA/data/something/frames/93493/first.jpg", "AURORA/data/something/frames/93493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blocks across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117104", "images": ["AURORA/data/something/frames/132010/first.jpg", "AURORA/data/something/frames/132010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117105", "images": ["AURORA/data/something/frames/143904/first.jpg", "AURORA/data/something/frames/143904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117106", "images": ["AURORA/data/something/frames/173782/first.jpg", "AURORA/data/something/frames/173782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117107", "images": ["AURORA/data/something/frames/206696/first.jpg", "AURORA/data/something/frames/206696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117108", "images": ["AURORA/data/something/frames/40414/first.jpg", "AURORA/data/something/frames/40414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lip balm so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117109", "images": ["AURORA/data/something/frames/99901/first.jpg", "AURORA/data/something/frames/99901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117110", "images": ["AURORA/data/something/frames/134252/first.jpg", "AURORA/data/something/frames/134252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting buttons and coaster on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117111", "images": ["AURORA/data/something/frames/154717/first.jpg", "AURORA/data/something/frames/154717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117112", "images": ["AURORA/data/something/frames/103938/first.jpg", "AURORA/data/something/frames/103938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery onto small tin so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117113", "images": ["AURORA/data/something/frames/113764/first.jpg", "AURORA/data/something/frames/113764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding invitation letter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117114", "images": ["AURORA/data/something/frames/73936/first.jpg", "AURORA/data/something/frames/73936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117115", "images": ["AURORA/data/something/frames/16441/first.jpg", "AURORA/data/something/frames/16441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000117116", "images": ["AURORA/data/something/frames/171973/first.jpg", "AURORA/data/something/frames/171973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming red booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117117", "images": ["AURORA/data/something/frames/92995/first.jpg", "AURORA/data/something/frames/92995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting hand with rainboot"}, {"from": "gpt", "value": ""}]} +{"id": "000000117118", "images": ["AURORA/data/something/frames/18745/first.jpg", "AURORA/data/something/frames/18745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching glass with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117119", "images": ["AURORA/data/something/frames/50740/first.jpg", "AURORA/data/something/frames/50740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip to ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000117120", "images": ["AURORA/data/something/frames/62372/first.jpg", "AURORA/data/something/frames/62372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a bandage so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117121", "images": ["AURORA/data/something/frames/118678/first.jpg", "AURORA/data/something/frames/118678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117122", "images": ["AURORA/data/something/frames/173941/first.jpg", "AURORA/data/something/frames/173941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a sofa with a cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000117123", "images": ["AURORA/data/something/frames/120687/first.jpg", "AURORA/data/something/frames/120687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from vacuum cleaner with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117124", "images": ["AURORA/data/something/frames/15449/first.jpg", "AURORA/data/something/frames/15449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 bibles"}, {"from": "gpt", "value": ""}]} +{"id": "000000117125", "images": ["AURORA/data/something/frames/54110/first.jpg", "AURORA/data/something/frames/54110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117126", "images": ["AURORA/data/something/frames/190897/first.jpg", "AURORA/data/something/frames/190897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117127", "images": ["AURORA/data/something/frames/110340/first.jpg", "AURORA/data/something/frames/110340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of sprayer so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117128", "images": ["AURORA/data/something/frames/188137/first.jpg", "AURORA/data/something/frames/188137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117129", "images": ["AURORA/data/something/frames/218823/first.jpg", "AURORA/data/something/frames/218823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117130", "images": ["AURORA/data/something/frames/34291/first.jpg", "AURORA/data/something/frames/34291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117131", "images": ["AURORA/data/something/frames/81009/first.jpg", "AURORA/data/something/frames/81009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117132", "images": ["AURORA/data/something/frames/214380/first.jpg", "AURORA/data/something/frames/214380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a vessel with a thermocol box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117133", "images": ["AURORA/data/something/frames/44325/first.jpg", "AURORA/data/something/frames/44325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117134", "images": ["AURORA/data/something/frames/143775/first.jpg", "AURORA/data/something/frames/143775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117135", "images": ["AURORA/data/something/frames/10509/first.jpg", "AURORA/data/something/frames/10509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic package up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117136", "images": ["AURORA/data/something/frames/216213/first.jpg", "AURORA/data/something/frames/216213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) earth of globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117137", "images": ["AURORA/data/something/frames/182111/first.jpg", "AURORA/data/something/frames/182111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117138", "images": ["AURORA/data/something/frames/9965/first.jpg", "AURORA/data/something/frames/9965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving iphone and small pillow away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117139", "images": ["AURORA/data/something/frames/206214/first.jpg", "AURORA/data/something/frames/206214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paperweight away from coffee cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117140", "images": ["AURORA/data/something/frames/189956/first.jpg", "AURORA/data/something/frames/189956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117141", "images": ["AURORA/data/something/frames/18178/first.jpg", "AURORA/data/something/frames/18178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to cufflinks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117142", "images": ["AURORA/data/something/frames/198357/first.jpg", "AURORA/data/something/frames/198357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117143", "images": ["AURORA/data/something/frames/167055/first.jpg", "AURORA/data/something/frames/167055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering watch with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000117144", "images": ["AURORA/data/something/frames/98603/first.jpg", "AURORA/data/something/frames/98603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117145", "images": ["AURORA/data/something/frames/200865/first.jpg", "AURORA/data/something/frames/200865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117146", "images": ["AURORA/data/something/frames/156231/first.jpg", "AURORA/data/something/frames/156231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hanger towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117147", "images": ["AURORA/data/something/frames/202907/first.jpg", "AURORA/data/something/frames/202907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000117148", "images": ["AURORA/data/something/frames/215928/first.jpg", "AURORA/data/something/frames/215928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sticky notes, a pen and a candle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117149", "images": ["AURORA/data/something/frames/48378/first.jpg", "AURORA/data/something/frames/48378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of blocks so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117150", "images": ["AURORA/data/something/frames/6476/first.jpg", "AURORA/data/something/frames/6476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting water bottle with comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000117151", "images": ["AURORA/data/something/frames/186556/first.jpg", "AURORA/data/something/frames/186556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117152", "images": ["AURORA/data/something/frames/95870/first.jpg", "AURORA/data/something/frames/95870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117153", "images": ["AURORA/data/something/frames/133202/first.jpg", "AURORA/data/something/frames/133202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening green face powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000117154", "images": ["AURORA/data/something/frames/170488/first.jpg", "AURORA/data/something/frames/170488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing alcohol from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117155", "images": ["AURORA/data/something/frames/107377/first.jpg", "AURORA/data/something/frames/107377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble, battery and key on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117156", "images": ["AURORA/data/something/frames/186777/first.jpg", "AURORA/data/something/frames/186777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tissue out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117157", "images": ["AURORA/data/something/frames/149112/first.jpg", "AURORA/data/something/frames/149112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117158", "images": ["AURORA/data/something/frames/184391/first.jpg", "AURORA/data/something/frames/184391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117159", "images": ["AURORA/data/something/frames/163597/first.jpg", "AURORA/data/something/frames/163597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping soda bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117160", "images": ["AURORA/data/something/frames/208134/first.jpg", "AURORA/data/something/frames/208134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117161", "images": ["AURORA/data/something/frames/199968/first.jpg", "AURORA/data/something/frames/199968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117162", "images": ["AURORA/data/something/frames/43510/first.jpg", "AURORA/data/something/frames/43510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cell phone charging cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000117163", "images": ["AURORA/data/something/frames/142070/first.jpg", "AURORA/data/something/frames/142070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four articles of clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117164", "images": ["AURORA/data/something/frames/142266/first.jpg", "AURORA/data/something/frames/142266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117165", "images": ["AURORA/data/something/frames/43853/first.jpg", "AURORA/data/something/frames/43853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pieces of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117166", "images": ["AURORA/data/something/frames/194028/first.jpg", "AURORA/data/something/frames/194028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) edge of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117167", "images": ["AURORA/data/something/frames/17331/first.jpg", "AURORA/data/something/frames/17331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117168", "images": ["AURORA/data/something/frames/164600/first.jpg", "AURORA/data/something/frames/164600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117169", "images": ["AURORA/data/something/frames/108453/first.jpg", "AURORA/data/something/frames/108453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117170", "images": ["AURORA/data/something/frames/131701/first.jpg", "AURORA/data/something/frames/131701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glue bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117171", "images": ["AURORA/data/something/frames/115400/first.jpg", "AURORA/data/something/frames/115400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling things up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117172", "images": ["AURORA/data/something/frames/219321/first.jpg", "AURORA/data/something/frames/219321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic fork until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117173", "images": ["AURORA/data/something/frames/63936/first.jpg", "AURORA/data/something/frames/63936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shell up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117174", "images": ["AURORA/data/something/frames/213085/first.jpg", "AURORA/data/something/frames/213085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with deodorant on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117175", "images": ["AURORA/data/something/frames/165666/first.jpg", "AURORA/data/something/frames/165666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wood and binder clip closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117176", "images": ["AURORA/data/something/frames/82682/first.jpg", "AURORA/data/something/frames/82682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cd player and usb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117177", "images": ["AURORA/data/something/frames/53264/first.jpg", "AURORA/data/something/frames/53264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from front of"}, {"from": "gpt", "value": ""}]} +{"id": "000000117178", "images": ["AURORA/data/something/frames/178520/first.jpg", "AURORA/data/something/frames/178520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping salt off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117179", "images": ["AURORA/data/something/frames/182184/first.jpg", "AURORA/data/something/frames/182184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117180", "images": ["AURORA/data/something/frames/5588/first.jpg", "AURORA/data/something/frames/5588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000117181", "images": ["AURORA/data/something/frames/65162/first.jpg", "AURORA/data/something/frames/65162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toiletpaper over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117182", "images": ["AURORA/data/something/frames/160061/first.jpg", "AURORA/data/something/frames/160061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117183", "images": ["AURORA/data/something/frames/182876/first.jpg", "AURORA/data/something/frames/182876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117184", "images": ["AURORA/data/something/frames/50140/first.jpg", "AURORA/data/something/frames/50140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117185", "images": ["AURORA/data/something/frames/19300/first.jpg", "AURORA/data/something/frames/19300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117186", "images": ["AURORA/data/something/frames/124893/first.jpg", "AURORA/data/something/frames/124893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin in front of a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000117187", "images": ["AURORA/data/something/frames/149011/first.jpg", "AURORA/data/something/frames/149011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching recorder piece to recorder end piece"}, {"from": "gpt", "value": ""}]} +{"id": "000000117188", "images": ["AURORA/data/something/frames/171659/first.jpg", "AURORA/data/something/frames/171659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pear with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117189", "images": ["AURORA/data/something/frames/148520/first.jpg", "AURORA/data/something/frames/148520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden figure upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117190", "images": ["AURORA/data/something/frames/124093/first.jpg", "AURORA/data/something/frames/124093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117191", "images": ["AURORA/data/something/frames/161519/first.jpg", "AURORA/data/something/frames/161519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117192", "images": ["AURORA/data/something/frames/142326/first.jpg", "AURORA/data/something/frames/142326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of tissue paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117193", "images": ["AURORA/data/something/frames/149882/first.jpg", "AURORA/data/something/frames/149882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging night light into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117194", "images": ["AURORA/data/something/frames/140448/first.jpg", "AURORA/data/something/frames/140448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending branch until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117195", "images": ["AURORA/data/something/frames/95522/first.jpg", "AURORA/data/something/frames/95522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soft drink pack on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117196", "images": ["AURORA/data/something/frames/134065/first.jpg", "AURORA/data/something/frames/134065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000117197", "images": ["AURORA/data/something/frames/195142/first.jpg", "AURORA/data/something/frames/195142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the bottle and the box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117198", "images": ["AURORA/data/something/frames/41436/first.jpg", "AURORA/data/something/frames/41436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving canister and cup so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117199", "images": ["AURORA/data/something/frames/87127/first.jpg", "AURORA/data/something/frames/87127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something onto something else that so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117200", "images": ["AURORA/data/something/frames/122971/first.jpg", "AURORA/data/something/frames/122971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: book colliding with book and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117201", "images": ["AURORA/data/something/frames/134790/first.jpg", "AURORA/data/something/frames/134790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117202", "images": ["AURORA/data/something/frames/179768/first.jpg", "AURORA/data/something/frames/179768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000117203", "images": ["AURORA/data/something/frames/195322/first.jpg", "AURORA/data/something/frames/195322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fork onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117204", "images": ["AURORA/data/something/frames/201604/first.jpg", "AURORA/data/something/frames/201604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117205", "images": ["AURORA/data/something/frames/148911/first.jpg", "AURORA/data/something/frames/148911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip onto cream tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117206", "images": ["AURORA/data/something/frames/185525/first.jpg", "AURORA/data/something/frames/185525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117207", "images": ["AURORA/data/something/frames/107619/first.jpg", "AURORA/data/something/frames/107619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair clip similar to other hairclips that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117208", "images": ["AURORA/data/something/frames/2800/first.jpg", "AURORA/data/something/frames/2800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a charger next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117209", "images": ["AURORA/data/something/frames/192618/first.jpg", "AURORA/data/something/frames/192618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117210", "images": ["AURORA/data/something/frames/206836/first.jpg", "AURORA/data/something/frames/206836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117211", "images": ["AURORA/data/something/frames/86148/first.jpg", "AURORA/data/something/frames/86148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a beaker so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117212", "images": ["AURORA/data/something/frames/150124/first.jpg", "AURORA/data/something/frames/150124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) paper towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000117213", "images": ["AURORA/data/something/frames/156862/first.jpg", "AURORA/data/something/frames/156862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117214", "images": ["AURORA/data/something/frames/79825/first.jpg", "AURORA/data/something/frames/79825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117215", "images": ["AURORA/data/something/frames/32165/first.jpg", "AURORA/data/something/frames/32165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching crystal candle holder with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117216", "images": ["AURORA/data/something/frames/76786/first.jpg", "AURORA/data/something/frames/76786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117217", "images": ["AURORA/data/something/frames/195135/first.jpg", "AURORA/data/something/frames/195135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117218", "images": ["AURORA/data/something/frames/195976/first.jpg", "AURORA/data/something/frames/195976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring behind matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000117219", "images": ["AURORA/data/something/frames/162311/first.jpg", "AURORA/data/something/frames/162311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117220", "images": ["AURORA/data/something/frames/174074/first.jpg", "AURORA/data/something/frames/174074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117221", "images": ["AURORA/data/something/frames/59220/first.jpg", "AURORA/data/something/frames/59220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117222", "images": ["AURORA/data/something/frames/85689/first.jpg", "AURORA/data/something/frames/85689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic spoon closer to orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000117223", "images": ["AURORA/data/something/frames/99643/first.jpg", "AURORA/data/something/frames/99643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117224", "images": ["AURORA/data/something/frames/25829/first.jpg", "AURORA/data/something/frames/25829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking purse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117225", "images": ["AURORA/data/something/frames/214590/first.jpg", "AURORA/data/something/frames/214590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000117226", "images": ["AURORA/data/something/frames/148858/first.jpg", "AURORA/data/something/frames/148858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a brass casing up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117227", "images": ["AURORA/data/something/frames/178283/first.jpg", "AURORA/data/something/frames/178283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sponge"}, {"from": "gpt", "value": ""}]} +{"id": "000000117228", "images": ["AURORA/data/something/frames/73456/first.jpg", "AURORA/data/something/frames/73456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000117229", "images": ["AURORA/data/something/frames/187735/first.jpg", "AURORA/data/something/frames/187735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine closer to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117230", "images": ["AURORA/data/something/frames/110509/first.jpg", "AURORA/data/something/frames/110509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117231", "images": ["AURORA/data/something/frames/86492/first.jpg", "AURORA/data/something/frames/86492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wheel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117232", "images": ["AURORA/data/something/frames/177260/first.jpg", "AURORA/data/something/frames/177260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fruit next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117233", "images": ["AURORA/data/something/frames/189756/first.jpg", "AURORA/data/something/frames/189756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117234", "images": ["AURORA/data/something/frames/134519/first.jpg", "AURORA/data/something/frames/134519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting jar cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117235", "images": ["AURORA/data/something/frames/199520/first.jpg", "AURORA/data/something/frames/199520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117236", "images": ["AURORA/data/something/frames/6510/first.jpg", "AURORA/data/something/frames/6510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pack of gum behind a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117237", "images": ["AURORA/data/something/frames/141187/first.jpg", "AURORA/data/something/frames/141187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000117238", "images": ["AURORA/data/something/frames/54809/first.jpg", "AURORA/data/something/frames/54809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117239", "images": ["AURORA/data/something/frames/200151/first.jpg", "AURORA/data/something/frames/200151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one vase from three."}, {"from": "gpt", "value": ""}]} +{"id": "000000117240", "images": ["AURORA/data/something/frames/194702/first.jpg", "AURORA/data/something/frames/194702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto a mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000117241", "images": ["AURORA/data/something/frames/196688/first.jpg", "AURORA/data/something/frames/196688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117242", "images": ["AURORA/data/something/frames/12545/first.jpg", "AURORA/data/something/frames/12545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) knob of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117243", "images": ["AURORA/data/something/frames/177229/first.jpg", "AURORA/data/something/frames/177229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hair gel with chapstick on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117244", "images": ["AURORA/data/something/frames/91290/first.jpg", "AURORA/data/something/frames/91290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jam onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117245", "images": ["AURORA/data/something/frames/66663/first.jpg", "AURORA/data/something/frames/66663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117246", "images": ["AURORA/data/something/frames/123431/first.jpg", "AURORA/data/something/frames/123431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphone into cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117247", "images": ["AURORA/data/something/frames/71267/first.jpg", "AURORA/data/something/frames/71267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117248", "images": ["AURORA/data/something/frames/98329/first.jpg", "AURORA/data/something/frames/98329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing shirt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117249", "images": ["AURORA/data/something/frames/96190/first.jpg", "AURORA/data/something/frames/96190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117250", "images": ["AURORA/data/something/frames/95108/first.jpg", "AURORA/data/something/frames/95108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117251", "images": ["AURORA/data/something/frames/124583/first.jpg", "AURORA/data/something/frames/124583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: truck colliding with car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117252", "images": ["AURORA/data/something/frames/68702/first.jpg", "AURORA/data/something/frames/68702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117253", "images": ["AURORA/data/something/frames/120653/first.jpg", "AURORA/data/something/frames/120653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a zipper on a make up bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117254", "images": ["AURORA/data/something/frames/114501/first.jpg", "AURORA/data/something/frames/114501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117255", "images": ["AURORA/data/something/frames/124327/first.jpg", "AURORA/data/something/frames/124327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming teacups"}, {"from": "gpt", "value": ""}]} +{"id": "000000117256", "images": ["AURORA/data/something/frames/36695/first.jpg", "AURORA/data/something/frames/36695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a tin with a nail"}, {"from": "gpt", "value": ""}]} +{"id": "000000117257", "images": ["AURORA/data/something/frames/42709/first.jpg", "AURORA/data/something/frames/42709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote away from two other remotes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117258", "images": ["AURORA/data/something/frames/169063/first.jpg", "AURORA/data/something/frames/169063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000117259", "images": ["AURORA/data/something/frames/2917/first.jpg", "AURORA/data/something/frames/2917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb and key closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117260", "images": ["AURORA/data/something/frames/12276/first.jpg", "AURORA/data/something/frames/12276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a teddy bear up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117261", "images": ["AURORA/data/something/frames/32175/first.jpg", "AURORA/data/something/frames/32175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with plate on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117262", "images": ["AURORA/data/something/frames/148667/first.jpg", "AURORA/data/something/frames/148667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing kitchen paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117263", "images": ["AURORA/data/something/frames/36536/first.jpg", "AURORA/data/something/frames/36536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and sock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117264", "images": ["AURORA/data/something/frames/112147/first.jpg", "AURORA/data/something/frames/112147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange post-it from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117265", "images": ["AURORA/data/something/frames/93104/first.jpg", "AURORA/data/something/frames/93104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117266", "images": ["AURORA/data/something/frames/80240/first.jpg", "AURORA/data/something/frames/80240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117267", "images": ["AURORA/data/something/frames/41820/first.jpg", "AURORA/data/something/frames/41820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117268", "images": ["AURORA/data/something/frames/82259/first.jpg", "AURORA/data/something/frames/82259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting lotion with lipgloss"}, {"from": "gpt", "value": ""}]} +{"id": "000000117269", "images": ["AURORA/data/something/frames/190556/first.jpg", "AURORA/data/something/frames/190556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key away from cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117270", "images": ["AURORA/data/something/frames/110225/first.jpg", "AURORA/data/something/frames/110225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie next to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117271", "images": ["AURORA/data/something/frames/180885/first.jpg", "AURORA/data/something/frames/180885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting two brushes onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117272", "images": ["AURORA/data/something/frames/20909/first.jpg", "AURORA/data/something/frames/20909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a stapler onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117273", "images": ["AURORA/data/something/frames/177531/first.jpg", "AURORA/data/something/frames/177531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000117274", "images": ["AURORA/data/something/frames/123615/first.jpg", "AURORA/data/something/frames/123615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing steel glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117275", "images": ["AURORA/data/something/frames/14811/first.jpg", "AURORA/data/something/frames/14811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 compass onto blue note"}, {"from": "gpt", "value": ""}]} +{"id": "000000117276", "images": ["AURORA/data/something/frames/86801/first.jpg", "AURORA/data/something/frames/86801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cookies"}, {"from": "gpt", "value": ""}]} +{"id": "000000117277", "images": ["AURORA/data/something/frames/12718/first.jpg", "AURORA/data/something/frames/12718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors closer to a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000117278", "images": ["AURORA/data/something/frames/21763/first.jpg", "AURORA/data/something/frames/21763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117279", "images": ["AURORA/data/something/frames/77236/first.jpg", "AURORA/data/something/frames/77236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of plastic so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117280", "images": ["AURORA/data/something/frames/176212/first.jpg", "AURORA/data/something/frames/176212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117281", "images": ["AURORA/data/something/frames/22852/first.jpg", "AURORA/data/something/frames/22852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping golf ball into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117282", "images": ["AURORA/data/something/frames/114673/first.jpg", "AURORA/data/something/frames/114673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117283", "images": ["AURORA/data/something/frames/687/first.jpg", "AURORA/data/something/frames/687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117284", "images": ["AURORA/data/something/frames/47212/first.jpg", "AURORA/data/something/frames/47212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle next to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117285", "images": ["AURORA/data/something/frames/66733/first.jpg", "AURORA/data/something/frames/66733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117286", "images": ["AURORA/data/something/frames/205630/first.jpg", "AURORA/data/something/frames/205630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117287", "images": ["AURORA/data/something/frames/81277/first.jpg", "AURORA/data/something/frames/81277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117288", "images": ["AURORA/data/something/frames/13268/first.jpg", "AURORA/data/something/frames/13268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging plastic spoon out of salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117289", "images": ["AURORA/data/something/frames/77626/first.jpg", "AURORA/data/something/frames/77626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle behind decorative pear"}, {"from": "gpt", "value": ""}]} +{"id": "000000117290", "images": ["AURORA/data/something/frames/70181/first.jpg", "AURORA/data/something/frames/70181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sweater into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000117291", "images": ["AURORA/data/something/frames/7024/first.jpg", "AURORA/data/something/frames/7024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117292", "images": ["AURORA/data/something/frames/203752/first.jpg", "AURORA/data/something/frames/203752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lighter so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117293", "images": ["AURORA/data/something/frames/106643/first.jpg", "AURORA/data/something/frames/106643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding unfolding"}, {"from": "gpt", "value": ""}]} +{"id": "000000117294", "images": ["AURORA/data/something/frames/73040/first.jpg", "AURORA/data/something/frames/73040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of bath cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117295", "images": ["AURORA/data/something/frames/100836/first.jpg", "AURORA/data/something/frames/100836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book into a bookshelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000117296", "images": ["AURORA/data/something/frames/179575/first.jpg", "AURORA/data/something/frames/179575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a flashlight from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117297", "images": ["AURORA/data/something/frames/27733/first.jpg", "AURORA/data/something/frames/27733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a telephone with a telephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117298", "images": ["AURORA/data/something/frames/149339/first.jpg", "AURORA/data/something/frames/149339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117299", "images": ["AURORA/data/something/frames/167958/first.jpg", "AURORA/data/something/frames/167958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117300", "images": ["AURORA/data/something/frames/177145/first.jpg", "AURORA/data/something/frames/177145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting calculator with rule on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117301", "images": ["AURORA/data/something/frames/142943/first.jpg", "AURORA/data/something/frames/142943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117302", "images": ["AURORA/data/something/frames/73813/first.jpg", "AURORA/data/something/frames/73813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling chips onto a high tray tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000117303", "images": ["AURORA/data/something/frames/112867/first.jpg", "AURORA/data/something/frames/112867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping deodorant can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117304", "images": ["AURORA/data/something/frames/66211/first.jpg", "AURORA/data/something/frames/66211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a stapler and a pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117305", "images": ["AURORA/data/something/frames/161029/first.jpg", "AURORA/data/something/frames/161029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing a child's water bottle top across kitchen counter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117306", "images": ["AURORA/data/something/frames/207003/first.jpg", "AURORA/data/something/frames/207003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117307", "images": ["AURORA/data/something/frames/93898/first.jpg", "AURORA/data/something/frames/93898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purple microfiber from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117308", "images": ["AURORA/data/something/frames/34875/first.jpg", "AURORA/data/something/frames/34875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117309", "images": ["AURORA/data/something/frames/151488/first.jpg", "AURORA/data/something/frames/151488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping onion onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117310", "images": ["AURORA/data/something/frames/96014/first.jpg", "AURORA/data/something/frames/96014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117311", "images": ["AURORA/data/something/frames/148651/first.jpg", "AURORA/data/something/frames/148651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) \\\"toaster of \\\"grab\\\"plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117312", "images": ["AURORA/data/something/frames/45691/first.jpg", "AURORA/data/something/frames/45691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117313", "images": ["AURORA/data/something/frames/156054/first.jpg", "AURORA/data/something/frames/156054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000117314", "images": ["AURORA/data/something/frames/45131/first.jpg", "AURORA/data/something/frames/45131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117315", "images": ["AURORA/data/something/frames/146235/first.jpg", "AURORA/data/something/frames/146235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking sunglasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117316", "images": ["AURORA/data/something/frames/118907/first.jpg", "AURORA/data/something/frames/118907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a business card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000117317", "images": ["AURORA/data/something/frames/33419/first.jpg", "AURORA/data/something/frames/33419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117318", "images": ["AURORA/data/something/frames/126106/first.jpg", "AURORA/data/something/frames/126106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000117319", "images": ["AURORA/data/something/frames/153882/first.jpg", "AURORA/data/something/frames/153882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117320", "images": ["AURORA/data/something/frames/125593/first.jpg", "AURORA/data/something/frames/125593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bracelet so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117321", "images": ["AURORA/data/something/frames/161664/first.jpg", "AURORA/data/something/frames/161664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000117322", "images": ["AURORA/data/something/frames/198726/first.jpg", "AURORA/data/something/frames/198726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117323", "images": ["AURORA/data/something/frames/219178/first.jpg", "AURORA/data/something/frames/219178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring pop into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117324", "images": ["AURORA/data/something/frames/155650/first.jpg", "AURORA/data/something/frames/155650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117325", "images": ["AURORA/data/something/frames/62513/first.jpg", "AURORA/data/something/frames/62513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117326", "images": ["AURORA/data/something/frames/200154/first.jpg", "AURORA/data/something/frames/200154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: crackers colliding with crackers and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117327", "images": ["AURORA/data/something/frames/204733/first.jpg", "AURORA/data/something/frames/204733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keyd next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117328", "images": ["AURORA/data/something/frames/75060/first.jpg", "AURORA/data/something/frames/75060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000117329", "images": ["AURORA/data/something/frames/83521/first.jpg", "AURORA/data/something/frames/83521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000117330", "images": ["AURORA/data/something/frames/48198/first.jpg", "AURORA/data/something/frames/48198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post it to the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117331", "images": ["AURORA/data/something/frames/4103/first.jpg", "AURORA/data/something/frames/4103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fluorescent colour pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117332", "images": ["AURORA/data/something/frames/220138/first.jpg", "AURORA/data/something/frames/220138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping towel next to handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117333", "images": ["AURORA/data/something/frames/27026/first.jpg", "AURORA/data/something/frames/27026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering key"}, {"from": "gpt", "value": ""}]} +{"id": "000000117334", "images": ["AURORA/data/something/frames/133808/first.jpg", "AURORA/data/something/frames/133808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lid in front of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117335", "images": ["AURORA/data/something/frames/136129/first.jpg", "AURORA/data/something/frames/136129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching bag to hangar nail"}, {"from": "gpt", "value": ""}]} +{"id": "000000117336", "images": ["AURORA/data/something/frames/55727/first.jpg", "AURORA/data/something/frames/55727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a doll on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117337", "images": ["AURORA/data/something/frames/75656/first.jpg", "AURORA/data/something/frames/75656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping blocks over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117338", "images": ["AURORA/data/something/frames/121746/first.jpg", "AURORA/data/something/frames/121746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jam onto a biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117339", "images": ["AURORA/data/something/frames/80983/first.jpg", "AURORA/data/something/frames/80983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nozzle of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117340", "images": ["AURORA/data/something/frames/88024/first.jpg", "AURORA/data/something/frames/88024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dvd case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117341", "images": ["AURORA/data/something/frames/166689/first.jpg", "AURORA/data/something/frames/166689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117342", "images": ["AURORA/data/something/frames/16781/first.jpg", "AURORA/data/something/frames/16781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117343", "images": ["AURORA/data/something/frames/79210/first.jpg", "AURORA/data/something/frames/79210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching lcd monitor with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117344", "images": ["AURORA/data/something/frames/188660/first.jpg", "AURORA/data/something/frames/188660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lid onto a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117345", "images": ["AURORA/data/something/frames/5800/first.jpg", "AURORA/data/something/frames/5800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117346", "images": ["AURORA/data/something/frames/6934/first.jpg", "AURORA/data/something/frames/6934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117347", "images": ["AURORA/data/something/frames/191385/first.jpg", "AURORA/data/something/frames/191385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book onto a water jug so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117348", "images": ["AURORA/data/something/frames/106723/first.jpg", "AURORA/data/something/frames/106723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen cap out of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117349", "images": ["AURORA/data/something/frames/62401/first.jpg", "AURORA/data/something/frames/62401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving can and glass so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117350", "images": ["AURORA/data/something/frames/106139/first.jpg", "AURORA/data/something/frames/106139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: flip flops colliding with flip flops and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117351", "images": ["AURORA/data/something/frames/82528/first.jpg", "AURORA/data/something/frames/82528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering briefcase with shall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117352", "images": ["AURORA/data/something/frames/98896/first.jpg", "AURORA/data/something/frames/98896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000117353", "images": ["AURORA/data/something/frames/179671/first.jpg", "AURORA/data/something/frames/179671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117354", "images": ["AURORA/data/something/frames/78066/first.jpg", "AURORA/data/something/frames/78066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117355", "images": ["AURORA/data/something/frames/24005/first.jpg", "AURORA/data/something/frames/24005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117356", "images": ["AURORA/data/something/frames/140798/first.jpg", "AURORA/data/something/frames/140798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering baby boy with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117357", "images": ["AURORA/data/something/frames/33183/first.jpg", "AURORA/data/something/frames/33183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white colour board clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117358", "images": ["AURORA/data/something/frames/196955/first.jpg", "AURORA/data/something/frames/196955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117359", "images": ["AURORA/data/something/frames/65480/first.jpg", "AURORA/data/something/frames/65480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box closer to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117360", "images": ["AURORA/data/something/frames/57711/first.jpg", "AURORA/data/something/frames/57711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen in front of sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117361", "images": ["AURORA/data/something/frames/122116/first.jpg", "AURORA/data/something/frames/122116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one marker out of many"}, {"from": "gpt", "value": ""}]} +{"id": "000000117362", "images": ["AURORA/data/something/frames/54534/first.jpg", "AURORA/data/something/frames/54534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a helmet and another helmet so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117363", "images": ["AURORA/data/something/frames/108114/first.jpg", "AURORA/data/something/frames/108114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cheese onto rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000117364", "images": ["AURORA/data/something/frames/194130/first.jpg", "AURORA/data/something/frames/194130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bracelet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117365", "images": ["AURORA/data/something/frames/138481/first.jpg", "AURORA/data/something/frames/138481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117366", "images": ["AURORA/data/something/frames/196748/first.jpg", "AURORA/data/something/frames/196748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117367", "images": ["AURORA/data/something/frames/72660/first.jpg", "AURORA/data/something/frames/72660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117368", "images": ["AURORA/data/something/frames/91824/first.jpg", "AURORA/data/something/frames/91824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117369", "images": ["AURORA/data/something/frames/25707/first.jpg", "AURORA/data/something/frames/25707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging hands-free into mobile phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117370", "images": ["AURORA/data/something/frames/156246/first.jpg", "AURORA/data/something/frames/156246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing glass, revealing match box behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117371", "images": ["AURORA/data/something/frames/69663/first.jpg", "AURORA/data/something/frames/69663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117372", "images": ["AURORA/data/something/frames/128840/first.jpg", "AURORA/data/something/frames/128840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117373", "images": ["AURORA/data/something/frames/197325/first.jpg", "AURORA/data/something/frames/197325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117374", "images": ["AURORA/data/something/frames/64910/first.jpg", "AURORA/data/something/frames/64910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117375", "images": ["AURORA/data/something/frames/151345/first.jpg", "AURORA/data/something/frames/151345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117376", "images": ["AURORA/data/something/frames/35356/first.jpg", "AURORA/data/something/frames/35356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117377", "images": ["AURORA/data/something/frames/36568/first.jpg", "AURORA/data/something/frames/36568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117378", "images": ["AURORA/data/something/frames/133144/first.jpg", "AURORA/data/something/frames/133144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117379", "images": ["AURORA/data/something/frames/92018/first.jpg", "AURORA/data/something/frames/92018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117380", "images": ["AURORA/data/something/frames/219349/first.jpg", "AURORA/data/something/frames/219349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking blocks so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117381", "images": ["AURORA/data/something/frames/218299/first.jpg", "AURORA/data/something/frames/218299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting green fabric clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000117382", "images": ["AURORA/data/something/frames/104101/first.jpg", "AURORA/data/something/frames/104101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with bed cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000117383", "images": ["AURORA/data/something/frames/174616/first.jpg", "AURORA/data/something/frames/174616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing ruber behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117384", "images": ["AURORA/data/something/frames/151836/first.jpg", "AURORA/data/something/frames/151836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into extension cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117385", "images": ["AURORA/data/something/frames/104255/first.jpg", "AURORA/data/something/frames/104255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keyboard behind monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117386", "images": ["AURORA/data/something/frames/29075/first.jpg", "AURORA/data/something/frames/29075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117387", "images": ["AURORA/data/something/frames/64499/first.jpg", "AURORA/data/something/frames/64499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000117388", "images": ["AURORA/data/something/frames/197131/first.jpg", "AURORA/data/something/frames/197131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl, comb and camera on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117389", "images": ["AURORA/data/something/frames/5938/first.jpg", "AURORA/data/something/frames/5938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind urn"}, {"from": "gpt", "value": ""}]} +{"id": "000000117390", "images": ["AURORA/data/something/frames/207607/first.jpg", "AURORA/data/something/frames/207607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering my face with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117391", "images": ["AURORA/data/something/frames/57062/first.jpg", "AURORA/data/something/frames/57062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117392", "images": ["AURORA/data/something/frames/68624/first.jpg", "AURORA/data/something/frames/68624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tv remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117393", "images": ["AURORA/data/something/frames/218197/first.jpg", "AURORA/data/something/frames/218197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag in front of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117394", "images": ["AURORA/data/something/frames/213033/first.jpg", "AURORA/data/something/frames/213033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000117395", "images": ["AURORA/data/something/frames/108264/first.jpg", "AURORA/data/something/frames/108264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen top to pen bottom"}, {"from": "gpt", "value": ""}]} +{"id": "000000117396", "images": ["AURORA/data/something/frames/1439/first.jpg", "AURORA/data/something/frames/1439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a doll from behind of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117397", "images": ["AURORA/data/something/frames/12940/first.jpg", "AURORA/data/something/frames/12940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing playingcard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117398", "images": ["AURORA/data/something/frames/187845/first.jpg", "AURORA/data/something/frames/187845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser away from usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000117399", "images": ["AURORA/data/something/frames/115374/first.jpg", "AURORA/data/something/frames/115374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking juice bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000117400", "images": ["AURORA/data/something/frames/165346/first.jpg", "AURORA/data/something/frames/165346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming caution board"}, {"from": "gpt", "value": ""}]} +{"id": "000000117401", "images": ["AURORA/data/something/frames/28059/first.jpg", "AURORA/data/something/frames/28059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117402", "images": ["AURORA/data/something/frames/202117/first.jpg", "AURORA/data/something/frames/202117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cd case with nail polish on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117403", "images": ["AURORA/data/something/frames/31650/first.jpg", "AURORA/data/something/frames/31650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papier just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117404", "images": ["AURORA/data/something/frames/214959/first.jpg", "AURORA/data/something/frames/214959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117405", "images": ["AURORA/data/something/frames/61353/first.jpg", "AURORA/data/something/frames/61353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying can on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117406", "images": ["AURORA/data/something/frames/186060/first.jpg", "AURORA/data/something/frames/186060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117407", "images": ["AURORA/data/something/frames/23416/first.jpg", "AURORA/data/something/frames/23416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117408", "images": ["AURORA/data/something/frames/36892/first.jpg", "AURORA/data/something/frames/36892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering eraser with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117409", "images": ["AURORA/data/something/frames/24220/first.jpg", "AURORA/data/something/frames/24220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sock into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117410", "images": ["AURORA/data/something/frames/43780/first.jpg", "AURORA/data/something/frames/43780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on the edge of card board so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117411", "images": ["AURORA/data/something/frames/10412/first.jpg", "AURORA/data/something/frames/10412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle into buckets"}, {"from": "gpt", "value": ""}]} +{"id": "000000117412", "images": ["AURORA/data/something/frames/75469/first.jpg", "AURORA/data/something/frames/75469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing trash into chip bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117413", "images": ["AURORA/data/something/frames/177565/first.jpg", "AURORA/data/something/frames/177565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000117414", "images": ["AURORA/data/something/frames/37038/first.jpg", "AURORA/data/something/frames/37038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching attaching paper to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000117415", "images": ["AURORA/data/something/frames/93510/first.jpg", "AURORA/data/something/frames/93510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip onto toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000117416", "images": ["AURORA/data/something/frames/163752/first.jpg", "AURORA/data/something/frames/163752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000117417", "images": ["AURORA/data/something/frames/175024/first.jpg", "AURORA/data/something/frames/175024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming sugar container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117418", "images": ["AURORA/data/something/frames/111230/first.jpg", "AURORA/data/something/frames/111230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cigarette lighter towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117419", "images": ["AURORA/data/something/frames/123709/first.jpg", "AURORA/data/something/frames/123709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebook into briefcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117420", "images": ["AURORA/data/something/frames/195222/first.jpg", "AURORA/data/something/frames/195222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117421", "images": ["AURORA/data/something/frames/33321/first.jpg", "AURORA/data/something/frames/33321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117422", "images": ["AURORA/data/something/frames/128511/first.jpg", "AURORA/data/something/frames/128511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a sieve"}, {"from": "gpt", "value": ""}]} +{"id": "000000117423", "images": ["AURORA/data/something/frames/156939/first.jpg", "AURORA/data/something/frames/156939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting game case with wallet on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117424", "images": ["AURORA/data/something/frames/121693/first.jpg", "AURORA/data/something/frames/121693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green face powder from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117425", "images": ["AURORA/data/something/frames/90367/first.jpg", "AURORA/data/something/frames/90367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering calculator with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117426", "images": ["AURORA/data/something/frames/73616/first.jpg", "AURORA/data/something/frames/73616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic twist tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000117427", "images": ["AURORA/data/something/frames/109608/first.jpg", "AURORA/data/something/frames/109608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming white book marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000117428", "images": ["AURORA/data/something/frames/94197/first.jpg", "AURORA/data/something/frames/94197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117429", "images": ["AURORA/data/something/frames/153785/first.jpg", "AURORA/data/something/frames/153785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117430", "images": ["AURORA/data/something/frames/195811/first.jpg", "AURORA/data/something/frames/195811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000117431", "images": ["AURORA/data/something/frames/72743/first.jpg", "AURORA/data/something/frames/72743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a knife next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117432", "images": ["AURORA/data/something/frames/103559/first.jpg", "AURORA/data/something/frames/103559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin off of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117433", "images": ["AURORA/data/something/frames/22030/first.jpg", "AURORA/data/something/frames/22030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lipstick next to a cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117434", "images": ["AURORA/data/something/frames/166989/first.jpg", "AURORA/data/something/frames/166989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000117435", "images": ["AURORA/data/something/frames/133186/first.jpg", "AURORA/data/something/frames/133186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117436", "images": ["AURORA/data/something/frames/142282/first.jpg", "AURORA/data/something/frames/142282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cue cards onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117437", "images": ["AURORA/data/something/frames/98035/first.jpg", "AURORA/data/something/frames/98035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cell phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117438", "images": ["AURORA/data/something/frames/152052/first.jpg", "AURORA/data/something/frames/152052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book underneath another book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117439", "images": ["AURORA/data/something/frames/68246/first.jpg", "AURORA/data/something/frames/68246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000117440", "images": ["AURORA/data/something/frames/35833/first.jpg", "AURORA/data/something/frames/35833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117441", "images": ["AURORA/data/something/frames/112826/first.jpg", "AURORA/data/something/frames/112826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000117442", "images": ["AURORA/data/something/frames/83592/first.jpg", "AURORA/data/something/frames/83592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000117443", "images": ["AURORA/data/something/frames/92891/first.jpg", "AURORA/data/something/frames/92891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing candy bag into waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117444", "images": ["AURORA/data/something/frames/78839/first.jpg", "AURORA/data/something/frames/78839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117445", "images": ["AURORA/data/something/frames/171848/first.jpg", "AURORA/data/something/frames/171848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hook out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117446", "images": ["AURORA/data/something/frames/70911/first.jpg", "AURORA/data/something/frames/70911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft drink can towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117447", "images": ["AURORA/data/something/frames/147142/first.jpg", "AURORA/data/something/frames/147142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117448", "images": ["AURORA/data/something/frames/158269/first.jpg", "AURORA/data/something/frames/158269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000117449", "images": ["AURORA/data/something/frames/19374/first.jpg", "AURORA/data/something/frames/19374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering scissors with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117450", "images": ["AURORA/data/something/frames/110623/first.jpg", "AURORA/data/something/frames/110623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling small bottles up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117451", "images": ["AURORA/data/something/frames/102857/first.jpg", "AURORA/data/something/frames/102857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a block of paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117452", "images": ["AURORA/data/something/frames/188928/first.jpg", "AURORA/data/something/frames/188928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tip of hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117453", "images": ["AURORA/data/something/frames/819/first.jpg", "AURORA/data/something/frames/819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117454", "images": ["AURORA/data/something/frames/102026/first.jpg", "AURORA/data/something/frames/102026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sign post"}, {"from": "gpt", "value": ""}]} +{"id": "000000117455", "images": ["AURORA/data/something/frames/105503/first.jpg", "AURORA/data/something/frames/105503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a beer botle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117456", "images": ["AURORA/data/something/frames/53648/first.jpg", "AURORA/data/something/frames/53648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117457", "images": ["AURORA/data/something/frames/168163/first.jpg", "AURORA/data/something/frames/168163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sharpener out of tumbler"}, {"from": "gpt", "value": ""}]} +{"id": "000000117458", "images": ["AURORA/data/something/frames/159040/first.jpg", "AURORA/data/something/frames/159040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117459", "images": ["AURORA/data/something/frames/14279/first.jpg", "AURORA/data/something/frames/14279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117460", "images": ["AURORA/data/something/frames/10559/first.jpg", "AURORA/data/something/frames/10559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange colour bottle cap onto black wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117461", "images": ["AURORA/data/something/frames/5139/first.jpg", "AURORA/data/something/frames/5139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117462", "images": ["AURORA/data/something/frames/128531/first.jpg", "AURORA/data/something/frames/128531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117463", "images": ["AURORA/data/something/frames/82203/first.jpg", "AURORA/data/something/frames/82203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding floormat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117464", "images": ["AURORA/data/something/frames/211304/first.jpg", "AURORA/data/something/frames/211304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117465", "images": ["AURORA/data/something/frames/91308/first.jpg", "AURORA/data/something/frames/91308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117466", "images": ["AURORA/data/something/frames/138918/first.jpg", "AURORA/data/something/frames/138918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117467", "images": ["AURORA/data/something/frames/169802/first.jpg", "AURORA/data/something/frames/169802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117468", "images": ["AURORA/data/something/frames/70601/first.jpg", "AURORA/data/something/frames/70601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering spoon with paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117469", "images": ["AURORA/data/something/frames/172977/first.jpg", "AURORA/data/something/frames/172977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wristwatch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117470", "images": ["AURORA/data/something/frames/93164/first.jpg", "AURORA/data/something/frames/93164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117471", "images": ["AURORA/data/something/frames/113630/first.jpg", "AURORA/data/something/frames/113630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching charger to socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117472", "images": ["AURORA/data/something/frames/22830/first.jpg", "AURORA/data/something/frames/22830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: clip colliding with clip and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117473", "images": ["AURORA/data/something/frames/198107/first.jpg", "AURORA/data/something/frames/198107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117474", "images": ["AURORA/data/something/frames/95937/first.jpg", "AURORA/data/something/frames/95937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping potato into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117475", "images": ["AURORA/data/something/frames/134098/first.jpg", "AURORA/data/something/frames/134098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117476", "images": ["AURORA/data/something/frames/20539/first.jpg", "AURORA/data/something/frames/20539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into clay"}, {"from": "gpt", "value": ""}]} +{"id": "000000117477", "images": ["AURORA/data/something/frames/99508/first.jpg", "AURORA/data/something/frames/99508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000117478", "images": ["AURORA/data/something/frames/219464/first.jpg", "AURORA/data/something/frames/219464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117479", "images": ["AURORA/data/something/frames/103279/first.jpg", "AURORA/data/something/frames/103279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117480", "images": ["AURORA/data/something/frames/89735/first.jpg", "AURORA/data/something/frames/89735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117481", "images": ["AURORA/data/something/frames/58444/first.jpg", "AURORA/data/something/frames/58444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117482", "images": ["AURORA/data/something/frames/167575/first.jpg", "AURORA/data/something/frames/167575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and stapler closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117483", "images": ["AURORA/data/something/frames/196559/first.jpg", "AURORA/data/something/frames/196559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone onto charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000117484", "images": ["AURORA/data/something/frames/124156/first.jpg", "AURORA/data/something/frames/124156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting button on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117485", "images": ["AURORA/data/something/frames/107013/first.jpg", "AURORA/data/something/frames/107013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plastic pot upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117486", "images": ["AURORA/data/something/frames/119550/first.jpg", "AURORA/data/something/frames/119550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping block tower over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117487", "images": ["AURORA/data/something/frames/77839/first.jpg", "AURORA/data/something/frames/77839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tape next to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000117488", "images": ["AURORA/data/something/frames/38565/first.jpg", "AURORA/data/something/frames/38565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electrical cord into an electrical extension"}, {"from": "gpt", "value": ""}]} +{"id": "000000117489", "images": ["AURORA/data/something/frames/171368/first.jpg", "AURORA/data/something/frames/171368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117490", "images": ["AURORA/data/something/frames/183380/first.jpg", "AURORA/data/something/frames/183380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chopping board on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117491", "images": ["AURORA/data/something/frames/45604/first.jpg", "AURORA/data/something/frames/45604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000117492", "images": ["AURORA/data/something/frames/83151/first.jpg", "AURORA/data/something/frames/83151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving motorbike away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117493", "images": ["AURORA/data/something/frames/123974/first.jpg", "AURORA/data/something/frames/123974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker pen out of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117494", "images": ["AURORA/data/something/frames/42154/first.jpg", "AURORA/data/something/frames/42154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging rca plug into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117495", "images": ["AURORA/data/something/frames/197136/first.jpg", "AURORA/data/something/frames/197136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking something out of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117496", "images": ["AURORA/data/something/frames/112948/first.jpg", "AURORA/data/something/frames/112948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming balloons"}, {"from": "gpt", "value": ""}]} +{"id": "000000117497", "images": ["AURORA/data/something/frames/68038/first.jpg", "AURORA/data/something/frames/68038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging dryer into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117498", "images": ["AURORA/data/something/frames/191061/first.jpg", "AURORA/data/something/frames/191061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of jar without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000117499", "images": ["AURORA/data/something/frames/122623/first.jpg", "AURORA/data/something/frames/122623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coin from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117500", "images": ["AURORA/data/something/frames/9019/first.jpg", "AURORA/data/something/frames/9019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding duppatta"}, {"from": "gpt", "value": ""}]} +{"id": "000000117501", "images": ["AURORA/data/something/frames/57803/first.jpg", "AURORA/data/something/frames/57803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117502", "images": ["AURORA/data/something/frames/160769/first.jpg", "AURORA/data/something/frames/160769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a comb into glass mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117503", "images": ["AURORA/data/something/frames/1323/first.jpg", "AURORA/data/something/frames/1323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins into the bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117504", "images": ["AURORA/data/something/frames/203154/first.jpg", "AURORA/data/something/frames/203154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117505", "images": ["AURORA/data/something/frames/56676/first.jpg", "AURORA/data/something/frames/56676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering garlic with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117506", "images": ["AURORA/data/something/frames/134550/first.jpg", "AURORA/data/something/frames/134550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping handkerchief next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117507", "images": ["AURORA/data/something/frames/64592/first.jpg", "AURORA/data/something/frames/64592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000117508", "images": ["AURORA/data/something/frames/203000/first.jpg", "AURORA/data/something/frames/203000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and fork closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117509", "images": ["AURORA/data/something/frames/110413/first.jpg", "AURORA/data/something/frames/110413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paper off of a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117510", "images": ["AURORA/data/something/frames/218711/first.jpg", "AURORA/data/something/frames/218711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117511", "images": ["AURORA/data/something/frames/151114/first.jpg", "AURORA/data/something/frames/151114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting doll upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117512", "images": ["AURORA/data/something/frames/3040/first.jpg", "AURORA/data/something/frames/3040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt and pepper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117513", "images": ["AURORA/data/something/frames/16849/first.jpg", "AURORA/data/something/frames/16849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving apple and apple away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117514", "images": ["AURORA/data/something/frames/82227/first.jpg", "AURORA/data/something/frames/82227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117515", "images": ["AURORA/data/something/frames/171255/first.jpg", "AURORA/data/something/frames/171255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117516", "images": ["AURORA/data/something/frames/104855/first.jpg", "AURORA/data/something/frames/104855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117517", "images": ["AURORA/data/something/frames/62283/first.jpg", "AURORA/data/something/frames/62283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb flash drive away from cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000117518", "images": ["AURORA/data/something/frames/4274/first.jpg", "AURORA/data/something/frames/4274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117519", "images": ["AURORA/data/something/frames/131162/first.jpg", "AURORA/data/something/frames/131162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a knife so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117520", "images": ["AURORA/data/something/frames/100142/first.jpg", "AURORA/data/something/frames/100142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117521", "images": ["AURORA/data/something/frames/7192/first.jpg", "AURORA/data/something/frames/7192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a can, revealing an eraser behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117522", "images": ["AURORA/data/something/frames/218112/first.jpg", "AURORA/data/something/frames/218112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning salsa upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117523", "images": ["AURORA/data/something/frames/96603/first.jpg", "AURORA/data/something/frames/96603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing striker coin with battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000117524", "images": ["AURORA/data/something/frames/121989/first.jpg", "AURORA/data/something/frames/121989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming hair comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000117525", "images": ["AURORA/data/something/frames/116035/first.jpg", "AURORA/data/something/frames/116035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling duster from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117526", "images": ["AURORA/data/something/frames/53667/first.jpg", "AURORA/data/something/frames/53667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117527", "images": ["AURORA/data/something/frames/209202/first.jpg", "AURORA/data/something/frames/209202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117528", "images": ["AURORA/data/something/frames/186295/first.jpg", "AURORA/data/something/frames/186295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape onto box surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117529", "images": ["AURORA/data/something/frames/69527/first.jpg", "AURORA/data/something/frames/69527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117530", "images": ["AURORA/data/something/frames/43664/first.jpg", "AURORA/data/something/frames/43664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toothbrush into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117531", "images": ["AURORA/data/something/frames/2350/first.jpg", "AURORA/data/something/frames/2350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lighter off of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117532", "images": ["AURORA/data/something/frames/42850/first.jpg", "AURORA/data/something/frames/42850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sandal away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117533", "images": ["AURORA/data/something/frames/42129/first.jpg", "AURORA/data/something/frames/42129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candy into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117534", "images": ["AURORA/data/something/frames/69469/first.jpg", "AURORA/data/something/frames/69469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duster away from punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117535", "images": ["AURORA/data/something/frames/25945/first.jpg", "AURORA/data/something/frames/25945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117536", "images": ["AURORA/data/something/frames/210843/first.jpg", "AURORA/data/something/frames/210843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117537", "images": ["AURORA/data/something/frames/32915/first.jpg", "AURORA/data/something/frames/32915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble closer to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117538", "images": ["AURORA/data/something/frames/185283/first.jpg", "AURORA/data/something/frames/185283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117539", "images": ["AURORA/data/something/frames/90775/first.jpg", "AURORA/data/something/frames/90775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a remote so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117540", "images": ["AURORA/data/something/frames/55758/first.jpg", "AURORA/data/something/frames/55758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117541", "images": ["AURORA/data/something/frames/33231/first.jpg", "AURORA/data/something/frames/33231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117542", "images": ["AURORA/data/something/frames/173550/first.jpg", "AURORA/data/something/frames/173550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a coffee mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117543", "images": ["AURORA/data/something/frames/60417/first.jpg", "AURORA/data/something/frames/60417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box into trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117544", "images": ["AURORA/data/something/frames/5873/first.jpg", "AURORA/data/something/frames/5873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering dog"}, {"from": "gpt", "value": ""}]} +{"id": "000000117545", "images": ["AURORA/data/something/frames/3030/first.jpg", "AURORA/data/something/frames/3030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117546", "images": ["AURORA/data/something/frames/161085/first.jpg", "AURORA/data/something/frames/161085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy next to spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117547", "images": ["AURORA/data/something/frames/92502/first.jpg", "AURORA/data/something/frames/92502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bolt up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117548", "images": ["AURORA/data/something/frames/47144/first.jpg", "AURORA/data/something/frames/47144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sandal"}, {"from": "gpt", "value": ""}]} +{"id": "000000117549", "images": ["AURORA/data/something/frames/87449/first.jpg", "AURORA/data/something/frames/87449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pens onto a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117550", "images": ["AURORA/data/something/frames/122853/first.jpg", "AURORA/data/something/frames/122853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fan next to sandals"}, {"from": "gpt", "value": ""}]} +{"id": "000000117551", "images": ["AURORA/data/something/frames/162638/first.jpg", "AURORA/data/something/frames/162638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a paperclip with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117552", "images": ["AURORA/data/something/frames/185520/first.jpg", "AURORA/data/something/frames/185520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a box of pins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117553", "images": ["AURORA/data/something/frames/23507/first.jpg", "AURORA/data/something/frames/23507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tape onto a plank of wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000117554", "images": ["AURORA/data/something/frames/38381/first.jpg", "AURORA/data/something/frames/38381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking vitamin out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117555", "images": ["AURORA/data/something/frames/19416/first.jpg", "AURORA/data/something/frames/19416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117556", "images": ["AURORA/data/something/frames/199390/first.jpg", "AURORA/data/something/frames/199390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117557", "images": ["AURORA/data/something/frames/22922/first.jpg", "AURORA/data/something/frames/22922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117558", "images": ["AURORA/data/something/frames/172947/first.jpg", "AURORA/data/something/frames/172947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting suitcase up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117559", "images": ["AURORA/data/something/frames/64851/first.jpg", "AURORA/data/something/frames/64851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117560", "images": ["AURORA/data/something/frames/99247/first.jpg", "AURORA/data/something/frames/99247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117561", "images": ["AURORA/data/something/frames/3215/first.jpg", "AURORA/data/something/frames/3215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into bucket, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117562", "images": ["AURORA/data/something/frames/88615/first.jpg", "AURORA/data/something/frames/88615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair clips onto blue note"}, {"from": "gpt", "value": ""}]} +{"id": "000000117563", "images": ["AURORA/data/something/frames/80446/first.jpg", "AURORA/data/something/frames/80446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000117564", "images": ["AURORA/data/something/frames/178983/first.jpg", "AURORA/data/something/frames/178983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117565", "images": ["AURORA/data/something/frames/178224/first.jpg", "AURORA/data/something/frames/178224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and a cup so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117566", "images": ["AURORA/data/something/frames/151541/first.jpg", "AURORA/data/something/frames/151541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117567", "images": ["AURORA/data/something/frames/206958/first.jpg", "AURORA/data/something/frames/206958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117568", "images": ["AURORA/data/something/frames/128234/first.jpg", "AURORA/data/something/frames/128234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: air hockey puck colliding with air hockey puck and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117569", "images": ["AURORA/data/something/frames/169776/first.jpg", "AURORA/data/something/frames/169776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile from behind of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117570", "images": ["AURORA/data/something/frames/34792/first.jpg", "AURORA/data/something/frames/34792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling towel from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117571", "images": ["AURORA/data/something/frames/104869/first.jpg", "AURORA/data/something/frames/104869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117572", "images": ["AURORA/data/something/frames/22657/first.jpg", "AURORA/data/something/frames/22657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking padlock so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117573", "images": ["AURORA/data/something/frames/76721/first.jpg", "AURORA/data/something/frames/76721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fruit out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117574", "images": ["AURORA/data/something/frames/72455/first.jpg", "AURORA/data/something/frames/72455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117575", "images": ["AURORA/data/something/frames/118879/first.jpg", "AURORA/data/something/frames/118879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cream on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117576", "images": ["AURORA/data/something/frames/133862/first.jpg", "AURORA/data/something/frames/133862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming small green ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000117577", "images": ["AURORA/data/something/frames/71176/first.jpg", "AURORA/data/something/frames/71176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling zipper from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117578", "images": ["AURORA/data/something/frames/192597/first.jpg", "AURORA/data/something/frames/192597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cups on a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117579", "images": ["AURORA/data/something/frames/27474/first.jpg", "AURORA/data/something/frames/27474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen drive, a lipstick and a lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117580", "images": ["AURORA/data/something/frames/129458/first.jpg", "AURORA/data/something/frames/129458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a towel from behind of napkin holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000117581", "images": ["AURORA/data/something/frames/199113/first.jpg", "AURORA/data/something/frames/199113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic cap into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117582", "images": ["AURORA/data/something/frames/86299/first.jpg", "AURORA/data/something/frames/86299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging plastic round out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117583", "images": ["AURORA/data/something/frames/143727/first.jpg", "AURORA/data/something/frames/143727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and xbox game away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117584", "images": ["AURORA/data/something/frames/178201/first.jpg", "AURORA/data/something/frames/178201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe onto corner"}, {"from": "gpt", "value": ""}]} +{"id": "000000117585", "images": ["AURORA/data/something/frames/72009/first.jpg", "AURORA/data/something/frames/72009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000117586", "images": ["AURORA/data/something/frames/94463/first.jpg", "AURORA/data/something/frames/94463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117587", "images": ["AURORA/data/something/frames/195323/first.jpg", "AURORA/data/something/frames/195323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a deodorant bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117588", "images": ["AURORA/data/something/frames/55493/first.jpg", "AURORA/data/something/frames/55493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching prown fishes with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117589", "images": ["AURORA/data/something/frames/137269/first.jpg", "AURORA/data/something/frames/137269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117590", "images": ["AURORA/data/something/frames/92000/first.jpg", "AURORA/data/something/frames/92000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an apple with a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000117591", "images": ["AURORA/data/something/frames/52540/first.jpg", "AURORA/data/something/frames/52540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet on the edge of desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117592", "images": ["AURORA/data/something/frames/124199/first.jpg", "AURORA/data/something/frames/124199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of carousel box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117593", "images": ["AURORA/data/something/frames/110169/first.jpg", "AURORA/data/something/frames/110169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117594", "images": ["AURORA/data/something/frames/123936/first.jpg", "AURORA/data/something/frames/123936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117595", "images": ["AURORA/data/something/frames/151776/first.jpg", "AURORA/data/something/frames/151776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117596", "images": ["AURORA/data/something/frames/207618/first.jpg", "AURORA/data/something/frames/207618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117597", "images": ["AURORA/data/something/frames/88272/first.jpg", "AURORA/data/something/frames/88272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading white kerchief onto cutting plier"}, {"from": "gpt", "value": ""}]} +{"id": "000000117598", "images": ["AURORA/data/something/frames/60718/first.jpg", "AURORA/data/something/frames/60718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and wax jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117599", "images": ["AURORA/data/something/frames/95562/first.jpg", "AURORA/data/something/frames/95562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117600", "images": ["AURORA/data/something/frames/152676/first.jpg", "AURORA/data/something/frames/152676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pan upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117601", "images": ["AURORA/data/something/frames/153468/first.jpg", "AURORA/data/something/frames/153468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking remote control up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117602", "images": ["AURORA/data/something/frames/173384/first.jpg", "AURORA/data/something/frames/173384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from tea box with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117603", "images": ["AURORA/data/something/frames/29995/first.jpg", "AURORA/data/something/frames/29995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117604", "images": ["AURORA/data/something/frames/18781/first.jpg", "AURORA/data/something/frames/18781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering dvd disk with dvd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000117605", "images": ["AURORA/data/something/frames/159317/first.jpg", "AURORA/data/something/frames/159317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a keyset towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117606", "images": ["AURORA/data/something/frames/9684/first.jpg", "AURORA/data/something/frames/9684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117607", "images": ["AURORA/data/something/frames/177183/first.jpg", "AURORA/data/something/frames/177183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging moblie charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117608", "images": ["AURORA/data/something/frames/190214/first.jpg", "AURORA/data/something/frames/190214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cans with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117609", "images": ["AURORA/data/something/frames/50067/first.jpg", "AURORA/data/something/frames/50067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electrical plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117610", "images": ["AURORA/data/something/frames/51288/first.jpg", "AURORA/data/something/frames/51288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pomegranate peel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117611", "images": ["AURORA/data/something/frames/189302/first.jpg", "AURORA/data/something/frames/189302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending gift card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000117612", "images": ["AURORA/data/something/frames/214386/first.jpg", "AURORA/data/something/frames/214386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and other mobile phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117613", "images": ["AURORA/data/something/frames/54238/first.jpg", "AURORA/data/something/frames/54238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a purse on the edge of the table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117614", "images": ["AURORA/data/something/frames/137299/first.jpg", "AURORA/data/something/frames/137299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling ground cinnamon onto peanut butter bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117615", "images": ["AURORA/data/something/frames/190123/first.jpg", "AURORA/data/something/frames/190123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117616", "images": ["AURORA/data/something/frames/98322/first.jpg", "AURORA/data/something/frames/98322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book, a candle and a lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117617", "images": ["AURORA/data/something/frames/177935/first.jpg", "AURORA/data/something/frames/177935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pair of sunglasses closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117618", "images": ["AURORA/data/something/frames/15326/first.jpg", "AURORA/data/something/frames/15326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping powder up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117619", "images": ["AURORA/data/something/frames/68743/first.jpg", "AURORA/data/something/frames/68743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117620", "images": ["AURORA/data/something/frames/191793/first.jpg", "AURORA/data/something/frames/191793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy lion and toy pig closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117621", "images": ["AURORA/data/something/frames/191139/first.jpg", "AURORA/data/something/frames/191139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117622", "images": ["AURORA/data/something/frames/193087/first.jpg", "AURORA/data/something/frames/193087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ring into a ceramic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117623", "images": ["AURORA/data/something/frames/192351/first.jpg", "AURORA/data/something/frames/192351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117624", "images": ["AURORA/data/something/frames/173008/first.jpg", "AURORA/data/something/frames/173008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117625", "images": ["AURORA/data/something/frames/30728/first.jpg", "AURORA/data/something/frames/30728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117626", "images": ["AURORA/data/something/frames/164262/first.jpg", "AURORA/data/something/frames/164262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying tablet box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117627", "images": ["AURORA/data/something/frames/206570/first.jpg", "AURORA/data/something/frames/206570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning postcard upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117628", "images": ["AURORA/data/something/frames/206935/first.jpg", "AURORA/data/something/frames/206935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bag with sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117629", "images": ["AURORA/data/something/frames/157042/first.jpg", "AURORA/data/something/frames/157042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117630", "images": ["AURORA/data/something/frames/122241/first.jpg", "AURORA/data/something/frames/122241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red colour clip box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117631", "images": ["AURORA/data/something/frames/118801/first.jpg", "AURORA/data/something/frames/118801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting computer mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117632", "images": ["AURORA/data/something/frames/149115/first.jpg", "AURORA/data/something/frames/149115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a feather until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117633", "images": ["AURORA/data/something/frames/100134/first.jpg", "AURORA/data/something/frames/100134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking laptop so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117634", "images": ["AURORA/data/something/frames/21992/first.jpg", "AURORA/data/something/frames/21992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming light"}, {"from": "gpt", "value": ""}]} +{"id": "000000117635", "images": ["AURORA/data/something/frames/215803/first.jpg", "AURORA/data/something/frames/215803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, bottle and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117636", "images": ["AURORA/data/something/frames/213685/first.jpg", "AURORA/data/something/frames/213685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117637", "images": ["AURORA/data/something/frames/118508/first.jpg", "AURORA/data/something/frames/118508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117638", "images": ["AURORA/data/something/frames/213902/first.jpg", "AURORA/data/something/frames/213902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening file"}, {"from": "gpt", "value": ""}]} +{"id": "000000117639", "images": ["AURORA/data/something/frames/188681/first.jpg", "AURORA/data/something/frames/188681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spoon with coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117640", "images": ["AURORA/data/something/frames/37638/first.jpg", "AURORA/data/something/frames/37638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting colorful scarf on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117641", "images": ["AURORA/data/something/frames/113337/first.jpg", "AURORA/data/something/frames/113337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117642", "images": ["AURORA/data/something/frames/190006/first.jpg", "AURORA/data/something/frames/190006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117643", "images": ["AURORA/data/something/frames/45713/first.jpg", "AURORA/data/something/frames/45713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping peanut butter up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117644", "images": ["AURORA/data/something/frames/70210/first.jpg", "AURORA/data/something/frames/70210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an envelope underneath a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117645", "images": ["AURORA/data/something/frames/198293/first.jpg", "AURORA/data/something/frames/198293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117646", "images": ["AURORA/data/something/frames/194462/first.jpg", "AURORA/data/something/frames/194462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning granola bar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117647", "images": ["AURORA/data/something/frames/33762/first.jpg", "AURORA/data/something/frames/33762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a salt grinder closer to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117648", "images": ["AURORA/data/something/frames/206713/first.jpg", "AURORA/data/something/frames/206713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hand colliding with hand and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117649", "images": ["AURORA/data/something/frames/28259/first.jpg", "AURORA/data/something/frames/28259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving violin closer to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117650", "images": ["AURORA/data/something/frames/87865/first.jpg", "AURORA/data/something/frames/87865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the phone out of the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117651", "images": ["AURORA/data/something/frames/95686/first.jpg", "AURORA/data/something/frames/95686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping thermal cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117652", "images": ["AURORA/data/something/frames/186979/first.jpg", "AURORA/data/something/frames/186979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117653", "images": ["AURORA/data/something/frames/177118/first.jpg", "AURORA/data/something/frames/177118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering travel iron-box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117654", "images": ["AURORA/data/something/frames/78602/first.jpg", "AURORA/data/something/frames/78602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purple microfiber on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117655", "images": ["AURORA/data/something/frames/134468/first.jpg", "AURORA/data/something/frames/134468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pepper onto pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000117656", "images": ["AURORA/data/something/frames/23512/first.jpg", "AURORA/data/something/frames/23512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117657", "images": ["AURORA/data/something/frames/157520/first.jpg", "AURORA/data/something/frames/157520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117658", "images": ["AURORA/data/something/frames/82742/first.jpg", "AURORA/data/something/frames/82742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117659", "images": ["AURORA/data/something/frames/42929/first.jpg", "AURORA/data/something/frames/42929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping spice over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117660", "images": ["AURORA/data/something/frames/155021/first.jpg", "AURORA/data/something/frames/155021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game in front of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117661", "images": ["AURORA/data/something/frames/99830/first.jpg", "AURORA/data/something/frames/99830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117662", "images": ["AURORA/data/something/frames/41303/first.jpg", "AURORA/data/something/frames/41303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pliers closer to a key"}, {"from": "gpt", "value": ""}]} +{"id": "000000117663", "images": ["AURORA/data/something/frames/41267/first.jpg", "AURORA/data/something/frames/41267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper in front of orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000117664", "images": ["AURORA/data/something/frames/216661/first.jpg", "AURORA/data/something/frames/216661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a towel onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117665", "images": ["AURORA/data/something/frames/54132/first.jpg", "AURORA/data/something/frames/54132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toothbrush behind container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117666", "images": ["AURORA/data/something/frames/101774/first.jpg", "AURORA/data/something/frames/101774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117667", "images": ["AURORA/data/something/frames/190352/first.jpg", "AURORA/data/something/frames/190352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing plate, revealing trivet behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117668", "images": ["AURORA/data/something/frames/155802/first.jpg", "AURORA/data/something/frames/155802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117669", "images": ["AURORA/data/something/frames/207741/first.jpg", "AURORA/data/something/frames/207741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a stapler on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117670", "images": ["AURORA/data/something/frames/173280/first.jpg", "AURORA/data/something/frames/173280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking blanket so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117671", "images": ["AURORA/data/something/frames/13240/first.jpg", "AURORA/data/something/frames/13240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117672", "images": ["AURORA/data/something/frames/208362/first.jpg", "AURORA/data/something/frames/208362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a champagne glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117673", "images": ["AURORA/data/something/frames/183897/first.jpg", "AURORA/data/something/frames/183897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hollow pipe, that cannot stand upright upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117674", "images": ["AURORA/data/something/frames/96417/first.jpg", "AURORA/data/something/frames/96417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coaster from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117675", "images": ["AURORA/data/something/frames/152632/first.jpg", "AURORA/data/something/frames/152632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water bottle onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117676", "images": ["AURORA/data/something/frames/149187/first.jpg", "AURORA/data/something/frames/149187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book away from pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117677", "images": ["AURORA/data/something/frames/191338/first.jpg", "AURORA/data/something/frames/191338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117678", "images": ["AURORA/data/something/frames/96436/first.jpg", "AURORA/data/something/frames/96436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and lego man closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117679", "images": ["AURORA/data/something/frames/44514/first.jpg", "AURORA/data/something/frames/44514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117680", "images": ["AURORA/data/something/frames/156116/first.jpg", "AURORA/data/something/frames/156116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117681", "images": ["AURORA/data/something/frames/205949/first.jpg", "AURORA/data/something/frames/205949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117682", "images": ["AURORA/data/something/frames/191583/first.jpg", "AURORA/data/something/frames/191583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117683", "images": ["AURORA/data/something/frames/95194/first.jpg", "AURORA/data/something/frames/95194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117684", "images": ["AURORA/data/something/frames/48387/first.jpg", "AURORA/data/something/frames/48387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117685", "images": ["AURORA/data/something/frames/126583/first.jpg", "AURORA/data/something/frames/126583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117686", "images": ["AURORA/data/something/frames/94947/first.jpg", "AURORA/data/something/frames/94947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a napkin behind a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117687", "images": ["AURORA/data/something/frames/47349/first.jpg", "AURORA/data/something/frames/47349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calendar in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117688", "images": ["AURORA/data/something/frames/87568/first.jpg", "AURORA/data/something/frames/87568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white chalk away from battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000117689", "images": ["AURORA/data/something/frames/82433/first.jpg", "AURORA/data/something/frames/82433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117690", "images": ["AURORA/data/something/frames/88319/first.jpg", "AURORA/data/something/frames/88319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117691", "images": ["AURORA/data/something/frames/6920/first.jpg", "AURORA/data/something/frames/6920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 spectacle boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117692", "images": ["AURORA/data/something/frames/174768/first.jpg", "AURORA/data/something/frames/174768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117693", "images": ["AURORA/data/something/frames/200312/first.jpg", "AURORA/data/something/frames/200312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spoon up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117694", "images": ["AURORA/data/something/frames/65630/first.jpg", "AURORA/data/something/frames/65630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mixer-jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117695", "images": ["AURORA/data/something/frames/21313/first.jpg", "AURORA/data/something/frames/21313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117696", "images": ["AURORA/data/something/frames/32943/first.jpg", "AURORA/data/something/frames/32943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117697", "images": ["AURORA/data/something/frames/60896/first.jpg", "AURORA/data/something/frames/60896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117698", "images": ["AURORA/data/something/frames/14397/first.jpg", "AURORA/data/something/frames/14397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup into a cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117699", "images": ["AURORA/data/something/frames/182728/first.jpg", "AURORA/data/something/frames/182728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117700", "images": ["AURORA/data/something/frames/60867/first.jpg", "AURORA/data/something/frames/60867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching block to block"}, {"from": "gpt", "value": ""}]} +{"id": "000000117701", "images": ["AURORA/data/something/frames/41597/first.jpg", "AURORA/data/something/frames/41597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shoe upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117702", "images": ["AURORA/data/something/frames/13099/first.jpg", "AURORA/data/something/frames/13099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000117703", "images": ["AURORA/data/something/frames/127774/first.jpg", "AURORA/data/something/frames/127774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a vase with a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000117704", "images": ["AURORA/data/something/frames/196379/first.jpg", "AURORA/data/something/frames/196379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117705", "images": ["AURORA/data/something/frames/73738/first.jpg", "AURORA/data/something/frames/73738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soap out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117706", "images": ["AURORA/data/something/frames/189828/first.jpg", "AURORA/data/something/frames/189828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a knife upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117707", "images": ["AURORA/data/something/frames/139411/first.jpg", "AURORA/data/something/frames/139411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed animal so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117708", "images": ["AURORA/data/something/frames/15522/first.jpg", "AURORA/data/something/frames/15522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box and a charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117709", "images": ["AURORA/data/something/frames/108542/first.jpg", "AURORA/data/something/frames/108542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling slipper onto carpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117710", "images": ["AURORA/data/something/frames/198417/first.jpg", "AURORA/data/something/frames/198417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117711", "images": ["AURORA/data/something/frames/198157/first.jpg", "AURORA/data/something/frames/198157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing white towel into wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117712", "images": ["AURORA/data/something/frames/104885/first.jpg", "AURORA/data/something/frames/104885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117713", "images": ["AURORA/data/something/frames/158824/first.jpg", "AURORA/data/something/frames/158824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping crayon into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117714", "images": ["AURORA/data/something/frames/45500/first.jpg", "AURORA/data/something/frames/45500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000117715", "images": ["AURORA/data/something/frames/204531/first.jpg", "AURORA/data/something/frames/204531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bin with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117716", "images": ["AURORA/data/something/frames/12227/first.jpg", "AURORA/data/something/frames/12227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000117717", "images": ["AURORA/data/something/frames/201861/first.jpg", "AURORA/data/something/frames/201861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117718", "images": ["AURORA/data/something/frames/126759/first.jpg", "AURORA/data/something/frames/126759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117719", "images": ["AURORA/data/something/frames/185952/first.jpg", "AURORA/data/something/frames/185952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe brush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117720", "images": ["AURORA/data/something/frames/163872/first.jpg", "AURORA/data/something/frames/163872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117721", "images": ["AURORA/data/something/frames/58815/first.jpg", "AURORA/data/something/frames/58815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117722", "images": ["AURORA/data/something/frames/99163/first.jpg", "AURORA/data/something/frames/99163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 puzzle pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117723", "images": ["AURORA/data/something/frames/178424/first.jpg", "AURORA/data/something/frames/178424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117724", "images": ["AURORA/data/something/frames/119715/first.jpg", "AURORA/data/something/frames/119715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling baking soda onto a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117725", "images": ["AURORA/data/something/frames/144302/first.jpg", "AURORA/data/something/frames/144302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and leadbox closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117726", "images": ["AURORA/data/something/frames/42620/first.jpg", "AURORA/data/something/frames/42620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting measuring tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117727", "images": ["AURORA/data/something/frames/105458/first.jpg", "AURORA/data/something/frames/105458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hat and wallet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117728", "images": ["AURORA/data/something/frames/143141/first.jpg", "AURORA/data/something/frames/143141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notecard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117729", "images": ["AURORA/data/something/frames/217265/first.jpg", "AURORA/data/something/frames/217265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking selfie stick from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117730", "images": ["AURORA/data/something/frames/17366/first.jpg", "AURORA/data/something/frames/17366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter behind candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117731", "images": ["AURORA/data/something/frames/154244/first.jpg", "AURORA/data/something/frames/154244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117732", "images": ["AURORA/data/something/frames/88835/first.jpg", "AURORA/data/something/frames/88835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coins so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117733", "images": ["AURORA/data/something/frames/134721/first.jpg", "AURORA/data/something/frames/134721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shampoo upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117734", "images": ["AURORA/data/something/frames/201134/first.jpg", "AURORA/data/something/frames/201134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117735", "images": ["AURORA/data/something/frames/49845/first.jpg", "AURORA/data/something/frames/49845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering milk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117736", "images": ["AURORA/data/something/frames/25657/first.jpg", "AURORA/data/something/frames/25657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing duster from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117737", "images": ["AURORA/data/something/frames/160129/first.jpg", "AURORA/data/something/frames/160129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117738", "images": ["AURORA/data/something/frames/211352/first.jpg", "AURORA/data/something/frames/211352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking gift packs from a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117739", "images": ["AURORA/data/something/frames/189290/first.jpg", "AURORA/data/something/frames/189290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping matchbox in front of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117740", "images": ["AURORA/data/something/frames/159318/first.jpg", "AURORA/data/something/frames/159318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring cereals into a glass container until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117741", "images": ["AURORA/data/something/frames/100091/first.jpg", "AURORA/data/something/frames/100091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117742", "images": ["AURORA/data/something/frames/174047/first.jpg", "AURORA/data/something/frames/174047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching glass tumbler with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117743", "images": ["AURORA/data/something/frames/45905/first.jpg", "AURORA/data/something/frames/45905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117744", "images": ["AURORA/data/something/frames/43365/first.jpg", "AURORA/data/something/frames/43365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming window view"}, {"from": "gpt", "value": ""}]} +{"id": "000000117745", "images": ["AURORA/data/something/frames/43765/first.jpg", "AURORA/data/something/frames/43765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking seven cookies"}, {"from": "gpt", "value": ""}]} +{"id": "000000117746", "images": ["AURORA/data/something/frames/52242/first.jpg", "AURORA/data/something/frames/52242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117747", "images": ["AURORA/data/something/frames/103484/first.jpg", "AURORA/data/something/frames/103484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117748", "images": ["AURORA/data/something/frames/60628/first.jpg", "AURORA/data/something/frames/60628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book, a container and a milk carton on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117749", "images": ["AURORA/data/something/frames/54037/first.jpg", "AURORA/data/something/frames/54037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bag of bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117750", "images": ["AURORA/data/something/frames/18874/first.jpg", "AURORA/data/something/frames/18874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to board"}, {"from": "gpt", "value": ""}]} +{"id": "000000117751", "images": ["AURORA/data/something/frames/65996/first.jpg", "AURORA/data/something/frames/65996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheel of train"}, {"from": "gpt", "value": ""}]} +{"id": "000000117752", "images": ["AURORA/data/something/frames/128624/first.jpg", "AURORA/data/something/frames/128624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117753", "images": ["AURORA/data/something/frames/142889/first.jpg", "AURORA/data/something/frames/142889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117754", "images": ["AURORA/data/something/frames/93763/first.jpg", "AURORA/data/something/frames/93763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117755", "images": ["AURORA/data/something/frames/7213/first.jpg", "AURORA/data/something/frames/7213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a sandal from behind of a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117756", "images": ["AURORA/data/something/frames/13046/first.jpg", "AURORA/data/something/frames/13046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117757", "images": ["AURORA/data/something/frames/56042/first.jpg", "AURORA/data/something/frames/56042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box onto a notebook so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117758", "images": ["AURORA/data/something/frames/31338/first.jpg", "AURORA/data/something/frames/31338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing socks into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117759", "images": ["AURORA/data/something/frames/214847/first.jpg", "AURORA/data/something/frames/214847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117760", "images": ["AURORA/data/something/frames/126363/first.jpg", "AURORA/data/something/frames/126363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cloth so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117761", "images": ["AURORA/data/something/frames/158449/first.jpg", "AURORA/data/something/frames/158449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000117762", "images": ["AURORA/data/something/frames/173389/first.jpg", "AURORA/data/something/frames/173389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cover from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117763", "images": ["AURORA/data/something/frames/183310/first.jpg", "AURORA/data/something/frames/183310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a paper to a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117764", "images": ["AURORA/data/something/frames/19741/first.jpg", "AURORA/data/something/frames/19741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117765", "images": ["AURORA/data/something/frames/137277/first.jpg", "AURORA/data/something/frames/137277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving doll and lipstick away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117766", "images": ["AURORA/data/something/frames/213552/first.jpg", "AURORA/data/something/frames/213552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117767", "images": ["AURORA/data/something/frames/217376/first.jpg", "AURORA/data/something/frames/217376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail paint remover from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117768", "images": ["AURORA/data/something/frames/161039/first.jpg", "AURORA/data/something/frames/161039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into mp4"}, {"from": "gpt", "value": ""}]} +{"id": "000000117769", "images": ["AURORA/data/something/frames/68969/first.jpg", "AURORA/data/something/frames/68969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a robot with cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117770", "images": ["AURORA/data/something/frames/90542/first.jpg", "AURORA/data/something/frames/90542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117771", "images": ["AURORA/data/something/frames/15160/first.jpg", "AURORA/data/something/frames/15160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000117772", "images": ["AURORA/data/something/frames/83910/first.jpg", "AURORA/data/something/frames/83910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling flowers onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117773", "images": ["AURORA/data/something/frames/130962/first.jpg", "AURORA/data/something/frames/130962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving juice away from coffee"}, {"from": "gpt", "value": ""}]} +{"id": "000000117774", "images": ["AURORA/data/something/frames/59029/first.jpg", "AURORA/data/something/frames/59029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of plastic boxes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000117775", "images": ["AURORA/data/something/frames/201456/first.jpg", "AURORA/data/something/frames/201456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle away from pink notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000117776", "images": ["AURORA/data/something/frames/94731/first.jpg", "AURORA/data/something/frames/94731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tissue box in front of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117777", "images": ["AURORA/data/something/frames/143649/first.jpg", "AURORA/data/something/frames/143649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dvd away from keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117778", "images": ["AURORA/data/something/frames/148055/first.jpg", "AURORA/data/something/frames/148055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car colliding with book and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117779", "images": ["AURORA/data/something/frames/121135/first.jpg", "AURORA/data/something/frames/121135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117780", "images": ["AURORA/data/something/frames/67183/first.jpg", "AURORA/data/something/frames/67183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bicycle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117781", "images": ["AURORA/data/something/frames/4210/first.jpg", "AURORA/data/something/frames/4210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking teabags out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117782", "images": ["AURORA/data/something/frames/133541/first.jpg", "AURORA/data/something/frames/133541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117783", "images": ["AURORA/data/something/frames/206332/first.jpg", "AURORA/data/something/frames/206332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000117784", "images": ["AURORA/data/something/frames/20087/first.jpg", "AURORA/data/something/frames/20087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading vegetables onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117785", "images": ["AURORA/data/something/frames/88989/first.jpg", "AURORA/data/something/frames/88989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117786", "images": ["AURORA/data/something/frames/62343/first.jpg", "AURORA/data/something/frames/62343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a calculator away from a pencase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117787", "images": ["AURORA/data/something/frames/157804/first.jpg", "AURORA/data/something/frames/157804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117788", "images": ["AURORA/data/something/frames/152337/first.jpg", "AURORA/data/something/frames/152337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a doll, a pen and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117789", "images": ["AURORA/data/something/frames/18906/first.jpg", "AURORA/data/something/frames/18906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117790", "images": ["AURORA/data/something/frames/159717/first.jpg", "AURORA/data/something/frames/159717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117791", "images": ["AURORA/data/something/frames/130860/first.jpg", "AURORA/data/something/frames/130860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stapler pin so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000117792", "images": ["AURORA/data/something/frames/214188/first.jpg", "AURORA/data/something/frames/214188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a videocamera up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117793", "images": ["AURORA/data/something/frames/48562/first.jpg", "AURORA/data/something/frames/48562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candy cane upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117794", "images": ["AURORA/data/something/frames/42170/first.jpg", "AURORA/data/something/frames/42170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cloth into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117795", "images": ["AURORA/data/something/frames/201645/first.jpg", "AURORA/data/something/frames/201645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117796", "images": ["AURORA/data/something/frames/128047/first.jpg", "AURORA/data/something/frames/128047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking eraser out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117797", "images": ["AURORA/data/something/frames/112815/first.jpg", "AURORA/data/something/frames/112815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spects from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117798", "images": ["AURORA/data/something/frames/204679/first.jpg", "AURORA/data/something/frames/204679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117799", "images": ["AURORA/data/something/frames/141984/first.jpg", "AURORA/data/something/frames/141984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000117800", "images": ["AURORA/data/something/frames/17410/first.jpg", "AURORA/data/something/frames/17410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an energy drink can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117801", "images": ["AURORA/data/something/frames/48218/first.jpg", "AURORA/data/something/frames/48218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vitamins and medication on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117802", "images": ["AURORA/data/something/frames/45362/first.jpg", "AURORA/data/something/frames/45362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ice tray and mobile phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117803", "images": ["AURORA/data/something/frames/213371/first.jpg", "AURORA/data/something/frames/213371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wound"}, {"from": "gpt", "value": ""}]} +{"id": "000000117804", "images": ["AURORA/data/something/frames/49722/first.jpg", "AURORA/data/something/frames/49722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117805", "images": ["AURORA/data/something/frames/180382/first.jpg", "AURORA/data/something/frames/180382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117806", "images": ["AURORA/data/something/frames/162448/first.jpg", "AURORA/data/something/frames/162448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of pennies so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117807", "images": ["AURORA/data/something/frames/144555/first.jpg", "AURORA/data/something/frames/144555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117808", "images": ["AURORA/data/something/frames/210207/first.jpg", "AURORA/data/something/frames/210207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117809", "images": ["AURORA/data/something/frames/195056/first.jpg", "AURORA/data/something/frames/195056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a textsurfer upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117810", "images": ["AURORA/data/something/frames/120395/first.jpg", "AURORA/data/something/frames/120395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000117811", "images": ["AURORA/data/something/frames/42849/first.jpg", "AURORA/data/something/frames/42849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 spanners onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000117812", "images": ["AURORA/data/something/frames/151668/first.jpg", "AURORA/data/something/frames/151668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117813", "images": ["AURORA/data/something/frames/57299/first.jpg", "AURORA/data/something/frames/57299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117814", "images": ["AURORA/data/something/frames/214602/first.jpg", "AURORA/data/something/frames/214602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing face wash with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000117815", "images": ["AURORA/data/something/frames/115717/first.jpg", "AURORA/data/something/frames/115717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling spoon from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117816", "images": ["AURORA/data/something/frames/39709/first.jpg", "AURORA/data/something/frames/39709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tea cup to tea set"}, {"from": "gpt", "value": ""}]} +{"id": "000000117817", "images": ["AURORA/data/something/frames/129445/first.jpg", "AURORA/data/something/frames/129445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cover into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117818", "images": ["AURORA/data/something/frames/216606/first.jpg", "AURORA/data/something/frames/216606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming frame"}, {"from": "gpt", "value": ""}]} +{"id": "000000117819", "images": ["AURORA/data/something/frames/167013/first.jpg", "AURORA/data/something/frames/167013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117820", "images": ["AURORA/data/something/frames/198677/first.jpg", "AURORA/data/something/frames/198677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black brush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117821", "images": ["AURORA/data/something/frames/153097/first.jpg", "AURORA/data/something/frames/153097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cloth, revealing phone behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117822", "images": ["AURORA/data/something/frames/16429/first.jpg", "AURORA/data/something/frames/16429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117823", "images": ["AURORA/data/something/frames/3292/first.jpg", "AURORA/data/something/frames/3292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117824", "images": ["AURORA/data/something/frames/45055/first.jpg", "AURORA/data/something/frames/45055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117825", "images": ["AURORA/data/something/frames/23572/first.jpg", "AURORA/data/something/frames/23572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of bottle cap so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117826", "images": ["AURORA/data/something/frames/131243/first.jpg", "AURORA/data/something/frames/131243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117827", "images": ["AURORA/data/something/frames/121738/first.jpg", "AURORA/data/something/frames/121738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117828", "images": ["AURORA/data/something/frames/131456/first.jpg", "AURORA/data/something/frames/131456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cushion on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117829", "images": ["AURORA/data/something/frames/73703/first.jpg", "AURORA/data/something/frames/73703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a key next to a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000117830", "images": ["AURORA/data/something/frames/161088/first.jpg", "AURORA/data/something/frames/161088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wastebin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117831", "images": ["AURORA/data/something/frames/59938/first.jpg", "AURORA/data/something/frames/59938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a smartphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117832", "images": ["AURORA/data/something/frames/121561/first.jpg", "AURORA/data/something/frames/121561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117833", "images": ["AURORA/data/something/frames/77808/first.jpg", "AURORA/data/something/frames/77808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: metal ball colliding with metal ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117834", "images": ["AURORA/data/something/frames/67469/first.jpg", "AURORA/data/something/frames/67469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117835", "images": ["AURORA/data/something/frames/195318/first.jpg", "AURORA/data/something/frames/195318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cap with hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117836", "images": ["AURORA/data/something/frames/146598/first.jpg", "AURORA/data/something/frames/146598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117837", "images": ["AURORA/data/something/frames/115894/first.jpg", "AURORA/data/something/frames/115894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping nail clippers into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117838", "images": ["AURORA/data/something/frames/168036/first.jpg", "AURORA/data/something/frames/168036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping pepper off of the counter top"}, {"from": "gpt", "value": ""}]} +{"id": "000000117839", "images": ["AURORA/data/something/frames/154294/first.jpg", "AURORA/data/something/frames/154294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper clip holder and marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117840", "images": ["AURORA/data/something/frames/148142/first.jpg", "AURORA/data/something/frames/148142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning coffee cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117841", "images": ["AURORA/data/something/frames/3879/first.jpg", "AURORA/data/something/frames/3879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117842", "images": ["AURORA/data/something/frames/179545/first.jpg", "AURORA/data/something/frames/179545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coins so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117843", "images": ["AURORA/data/something/frames/143558/first.jpg", "AURORA/data/something/frames/143558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a remote control next to a headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000117844", "images": ["AURORA/data/something/frames/155670/first.jpg", "AURORA/data/something/frames/155670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug, an eraser and a coin on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117845", "images": ["AURORA/data/something/frames/77945/first.jpg", "AURORA/data/something/frames/77945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117846", "images": ["AURORA/data/something/frames/70341/first.jpg", "AURORA/data/something/frames/70341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117847", "images": ["AURORA/data/something/frames/151715/first.jpg", "AURORA/data/something/frames/151715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pad lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000117848", "images": ["AURORA/data/something/frames/177461/first.jpg", "AURORA/data/something/frames/177461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming smart phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117849", "images": ["AURORA/data/something/frames/47486/first.jpg", "AURORA/data/something/frames/47486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117850", "images": ["AURORA/data/something/frames/135790/first.jpg", "AURORA/data/something/frames/135790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117851", "images": ["AURORA/data/something/frames/215596/first.jpg", "AURORA/data/something/frames/215596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: candy being deflected from clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000117852", "images": ["AURORA/data/something/frames/34170/first.jpg", "AURORA/data/something/frames/34170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming traffic signboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117853", "images": ["AURORA/data/something/frames/32510/first.jpg", "AURORA/data/something/frames/32510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117854", "images": ["AURORA/data/something/frames/212969/first.jpg", "AURORA/data/something/frames/212969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117855", "images": ["AURORA/data/something/frames/181651/first.jpg", "AURORA/data/something/frames/181651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000117856", "images": ["AURORA/data/something/frames/211973/first.jpg", "AURORA/data/something/frames/211973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117857", "images": ["AURORA/data/something/frames/43544/first.jpg", "AURORA/data/something/frames/43544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mouse with a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117858", "images": ["AURORA/data/something/frames/12235/first.jpg", "AURORA/data/something/frames/12235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen off of ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000117859", "images": ["AURORA/data/something/frames/141750/first.jpg", "AURORA/data/something/frames/141750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117860", "images": ["AURORA/data/something/frames/51775/first.jpg", "AURORA/data/something/frames/51775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper in front of candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117861", "images": ["AURORA/data/something/frames/1751/first.jpg", "AURORA/data/something/frames/1751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117862", "images": ["AURORA/data/something/frames/38738/first.jpg", "AURORA/data/something/frames/38738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117863", "images": ["AURORA/data/something/frames/179232/first.jpg", "AURORA/data/something/frames/179232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping push in onto push in"}, {"from": "gpt", "value": ""}]} +{"id": "000000117864", "images": ["AURORA/data/something/frames/102701/first.jpg", "AURORA/data/something/frames/102701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a crayon into a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000117865", "images": ["AURORA/data/something/frames/119552/first.jpg", "AURORA/data/something/frames/119552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a remote so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117866", "images": ["AURORA/data/something/frames/184511/first.jpg", "AURORA/data/something/frames/184511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117867", "images": ["AURORA/data/something/frames/114930/first.jpg", "AURORA/data/something/frames/114930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117868", "images": ["AURORA/data/something/frames/175789/first.jpg", "AURORA/data/something/frames/175789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a letter into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117869", "images": ["AURORA/data/something/frames/63424/first.jpg", "AURORA/data/something/frames/63424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117870", "images": ["AURORA/data/something/frames/128894/first.jpg", "AURORA/data/something/frames/128894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117871", "images": ["AURORA/data/something/frames/136310/first.jpg", "AURORA/data/something/frames/136310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117872", "images": ["AURORA/data/something/frames/18534/first.jpg", "AURORA/data/something/frames/18534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing medicine into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117873", "images": ["AURORA/data/something/frames/21421/first.jpg", "AURORA/data/something/frames/21421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117874", "images": ["AURORA/data/something/frames/105836/first.jpg", "AURORA/data/something/frames/105836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency"}, {"from": "gpt", "value": ""}]} +{"id": "000000117875", "images": ["AURORA/data/something/frames/63452/first.jpg", "AURORA/data/something/frames/63452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a plug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117876", "images": ["AURORA/data/something/frames/2683/first.jpg", "AURORA/data/something/frames/2683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a cigarette out of the pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000117877", "images": ["AURORA/data/something/frames/173702/first.jpg", "AURORA/data/something/frames/173702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000117878", "images": ["AURORA/data/something/frames/156258/first.jpg", "AURORA/data/something/frames/156258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117879", "images": ["AURORA/data/something/frames/68678/first.jpg", "AURORA/data/something/frames/68678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117880", "images": ["AURORA/data/something/frames/123792/first.jpg", "AURORA/data/something/frames/123792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117881", "images": ["AURORA/data/something/frames/153427/first.jpg", "AURORA/data/something/frames/153427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117882", "images": ["AURORA/data/something/frames/220119/first.jpg", "AURORA/data/something/frames/220119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil being deflected from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117883", "images": ["AURORA/data/something/frames/74665/first.jpg", "AURORA/data/something/frames/74665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power chord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117884", "images": ["AURORA/data/something/frames/27016/first.jpg", "AURORA/data/something/frames/27016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping paper off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117885", "images": ["AURORA/data/something/frames/116144/first.jpg", "AURORA/data/something/frames/116144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter onto a metal box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117886", "images": ["AURORA/data/something/frames/211585/first.jpg", "AURORA/data/something/frames/211585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange post-it on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117887", "images": ["AURORA/data/something/frames/166927/first.jpg", "AURORA/data/something/frames/166927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: remote being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117888", "images": ["AURORA/data/something/frames/130392/first.jpg", "AURORA/data/something/frames/130392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117889", "images": ["AURORA/data/something/frames/198965/first.jpg", "AURORA/data/something/frames/198965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117890", "images": ["AURORA/data/something/frames/88011/first.jpg", "AURORA/data/something/frames/88011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering plastic knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000117891", "images": ["AURORA/data/something/frames/50874/first.jpg", "AURORA/data/something/frames/50874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cereal up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117892", "images": ["AURORA/data/something/frames/82524/first.jpg", "AURORA/data/something/frames/82524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pen onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117893", "images": ["AURORA/data/something/frames/168508/first.jpg", "AURORA/data/something/frames/168508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117894", "images": ["AURORA/data/something/frames/220335/first.jpg", "AURORA/data/something/frames/220335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching battery cover to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117895", "images": ["AURORA/data/something/frames/28598/first.jpg", "AURORA/data/something/frames/28598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117896", "images": ["AURORA/data/something/frames/178788/first.jpg", "AURORA/data/something/frames/178788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000117897", "images": ["AURORA/data/something/frames/186015/first.jpg", "AURORA/data/something/frames/186015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sticky note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117898", "images": ["AURORA/data/something/frames/110396/first.jpg", "AURORA/data/something/frames/110396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117899", "images": ["AURORA/data/something/frames/56775/first.jpg", "AURORA/data/something/frames/56775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000117900", "images": ["AURORA/data/something/frames/4940/first.jpg", "AURORA/data/something/frames/4940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving antenas of antena set"}, {"from": "gpt", "value": ""}]} +{"id": "000000117901", "images": ["AURORA/data/something/frames/74512/first.jpg", "AURORA/data/something/frames/74512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea bags out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117902", "images": ["AURORA/data/something/frames/76349/first.jpg", "AURORA/data/something/frames/76349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill bottle into coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117903", "images": ["AURORA/data/something/frames/131843/first.jpg", "AURORA/data/something/frames/131843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowel underneath gas stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000117904", "images": ["AURORA/data/something/frames/78898/first.jpg", "AURORA/data/something/frames/78898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117905", "images": ["AURORA/data/something/frames/98916/first.jpg", "AURORA/data/something/frames/98916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117906", "images": ["AURORA/data/something/frames/168896/first.jpg", "AURORA/data/something/frames/168896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117907", "images": ["AURORA/data/something/frames/16055/first.jpg", "AURORA/data/something/frames/16055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117908", "images": ["AURORA/data/something/frames/39000/first.jpg", "AURORA/data/something/frames/39000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg next to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117909", "images": ["AURORA/data/something/frames/39745/first.jpg", "AURORA/data/something/frames/39745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117910", "images": ["AURORA/data/something/frames/84546/first.jpg", "AURORA/data/something/frames/84546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering orange colour bottle cap with white sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117911", "images": ["AURORA/data/something/frames/168876/first.jpg", "AURORA/data/something/frames/168876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cigarette boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117912", "images": ["AURORA/data/something/frames/95309/first.jpg", "AURORA/data/something/frames/95309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117913", "images": ["AURORA/data/something/frames/15514/first.jpg", "AURORA/data/something/frames/15514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing case, revealing pc behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117914", "images": ["AURORA/data/something/frames/117674/first.jpg", "AURORA/data/something/frames/117674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning chair upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117915", "images": ["AURORA/data/something/frames/127213/first.jpg", "AURORA/data/something/frames/127213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117916", "images": ["AURORA/data/something/frames/167865/first.jpg", "AURORA/data/something/frames/167865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117917", "images": ["AURORA/data/something/frames/80518/first.jpg", "AURORA/data/something/frames/80518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117918", "images": ["AURORA/data/something/frames/112348/first.jpg", "AURORA/data/something/frames/112348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing foldable knife from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117919", "images": ["AURORA/data/something/frames/167431/first.jpg", "AURORA/data/something/frames/167431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117920", "images": ["AURORA/data/something/frames/163099/first.jpg", "AURORA/data/something/frames/163099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker pen in front of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117921", "images": ["AURORA/data/something/frames/174688/first.jpg", "AURORA/data/something/frames/174688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117922", "images": ["AURORA/data/something/frames/53898/first.jpg", "AURORA/data/something/frames/53898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing package from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117923", "images": ["AURORA/data/something/frames/203070/first.jpg", "AURORA/data/something/frames/203070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup and orange on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117924", "images": ["AURORA/data/something/frames/194108/first.jpg", "AURORA/data/something/frames/194108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117925", "images": ["AURORA/data/something/frames/75548/first.jpg", "AURORA/data/something/frames/75548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117926", "images": ["AURORA/data/something/frames/55373/first.jpg", "AURORA/data/something/frames/55373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117927", "images": ["AURORA/data/something/frames/122602/first.jpg", "AURORA/data/something/frames/122602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spone to other spones that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117928", "images": ["AURORA/data/something/frames/12008/first.jpg", "AURORA/data/something/frames/12008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117929", "images": ["AURORA/data/something/frames/130674/first.jpg", "AURORA/data/something/frames/130674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black umbrella from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117930", "images": ["AURORA/data/something/frames/140022/first.jpg", "AURORA/data/something/frames/140022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cover so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117931", "images": ["AURORA/data/something/frames/97477/first.jpg", "AURORA/data/something/frames/97477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning breath mint container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117932", "images": ["AURORA/data/something/frames/74711/first.jpg", "AURORA/data/something/frames/74711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117933", "images": ["AURORA/data/something/frames/35443/first.jpg", "AURORA/data/something/frames/35443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117934", "images": ["AURORA/data/something/frames/209621/first.jpg", "AURORA/data/something/frames/209621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lamp and coasters away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117935", "images": ["AURORA/data/something/frames/3021/first.jpg", "AURORA/data/something/frames/3021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a packet on the edge of the chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117936", "images": ["AURORA/data/something/frames/96771/first.jpg", "AURORA/data/something/frames/96771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a knife so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117937", "images": ["AURORA/data/something/frames/5903/first.jpg", "AURORA/data/something/frames/5903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a fragrance diffuser into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117938", "images": ["AURORA/data/something/frames/39506/first.jpg", "AURORA/data/something/frames/39506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117939", "images": ["AURORA/data/something/frames/129375/first.jpg", "AURORA/data/something/frames/129375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading kerchief onto rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000117940", "images": ["AURORA/data/something/frames/32619/first.jpg", "AURORA/data/something/frames/32619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber strip so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117941", "images": ["AURORA/data/something/frames/33910/first.jpg", "AURORA/data/something/frames/33910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117942", "images": ["AURORA/data/something/frames/204133/first.jpg", "AURORA/data/something/frames/204133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117943", "images": ["AURORA/data/something/frames/142245/first.jpg", "AURORA/data/something/frames/142245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking small stone from pile of stones"}, {"from": "gpt", "value": ""}]} +{"id": "000000117944", "images": ["AURORA/data/something/frames/13922/first.jpg", "AURORA/data/something/frames/13922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sandal in front of a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117945", "images": ["AURORA/data/something/frames/53813/first.jpg", "AURORA/data/something/frames/53813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving feeding bottle and plastic bottel closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117946", "images": ["AURORA/data/something/frames/138954/first.jpg", "AURORA/data/something/frames/138954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green hair comb from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117947", "images": ["AURORA/data/something/frames/53225/first.jpg", "AURORA/data/something/frames/53225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117948", "images": ["AURORA/data/something/frames/37891/first.jpg", "AURORA/data/something/frames/37891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117949", "images": ["AURORA/data/something/frames/41260/first.jpg", "AURORA/data/something/frames/41260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a remote with a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000117950", "images": ["AURORA/data/something/frames/125029/first.jpg", "AURORA/data/something/frames/125029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shirt in front of shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117951", "images": ["AURORA/data/something/frames/115127/first.jpg", "AURORA/data/something/frames/115127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming indian weight machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117952", "images": ["AURORA/data/something/frames/44321/first.jpg", "AURORA/data/something/frames/44321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117953", "images": ["AURORA/data/something/frames/36852/first.jpg", "AURORA/data/something/frames/36852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking magnifying glass out of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117954", "images": ["AURORA/data/something/frames/108574/first.jpg", "AURORA/data/something/frames/108574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking liner out of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117955", "images": ["AURORA/data/something/frames/40602/first.jpg", "AURORA/data/something/frames/40602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117956", "images": ["AURORA/data/something/frames/206632/first.jpg", "AURORA/data/something/frames/206632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill behind bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117957", "images": ["AURORA/data/something/frames/184038/first.jpg", "AURORA/data/something/frames/184038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pot holder down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117958", "images": ["AURORA/data/something/frames/204588/first.jpg", "AURORA/data/something/frames/204588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cell phone with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117959", "images": ["AURORA/data/something/frames/138084/first.jpg", "AURORA/data/something/frames/138084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117960", "images": ["AURORA/data/something/frames/39430/first.jpg", "AURORA/data/something/frames/39430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a lipstick lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000117961", "images": ["AURORA/data/something/frames/182381/first.jpg", "AURORA/data/something/frames/182381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lollipop with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000117962", "images": ["AURORA/data/something/frames/197012/first.jpg", "AURORA/data/something/frames/197012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soda can next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117963", "images": ["AURORA/data/something/frames/170934/first.jpg", "AURORA/data/something/frames/170934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117964", "images": ["AURORA/data/something/frames/21720/first.jpg", "AURORA/data/something/frames/21720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117965", "images": ["AURORA/data/something/frames/123334/first.jpg", "AURORA/data/something/frames/123334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117966", "images": ["AURORA/data/something/frames/194897/first.jpg", "AURORA/data/something/frames/194897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container and another one away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117967", "images": ["AURORA/data/something/frames/26464/first.jpg", "AURORA/data/something/frames/26464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117968", "images": ["AURORA/data/something/frames/206093/first.jpg", "AURORA/data/something/frames/206093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000117969", "images": ["AURORA/data/something/frames/126255/first.jpg", "AURORA/data/something/frames/126255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching block to block"}, {"from": "gpt", "value": ""}]} +{"id": "000000117970", "images": ["AURORA/data/something/frames/60729/first.jpg", "AURORA/data/something/frames/60729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming fishes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117971", "images": ["AURORA/data/something/frames/182132/first.jpg", "AURORA/data/something/frames/182132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking silver pen among other pens on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117972", "images": ["AURORA/data/something/frames/41420/first.jpg", "AURORA/data/something/frames/41420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117973", "images": ["AURORA/data/something/frames/14263/first.jpg", "AURORA/data/something/frames/14263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb to charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000117974", "images": ["AURORA/data/something/frames/219524/first.jpg", "AURORA/data/something/frames/219524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair bands onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117975", "images": ["AURORA/data/something/frames/153239/first.jpg", "AURORA/data/something/frames/153239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto wood box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117976", "images": ["AURORA/data/something/frames/220375/first.jpg", "AURORA/data/something/frames/220375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plant away from phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117977", "images": ["AURORA/data/something/frames/108246/first.jpg", "AURORA/data/something/frames/108246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle in front of a rubbish bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117978", "images": ["AURORA/data/something/frames/118752/first.jpg", "AURORA/data/something/frames/118752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notepad with remote on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117979", "images": ["AURORA/data/something/frames/112658/first.jpg", "AURORA/data/something/frames/112658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sauce bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117980", "images": ["AURORA/data/something/frames/96317/first.jpg", "AURORA/data/something/frames/96317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something next to something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117981", "images": ["AURORA/data/something/frames/117165/first.jpg", "AURORA/data/something/frames/117165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000117982", "images": ["AURORA/data/something/frames/209914/first.jpg", "AURORA/data/something/frames/209914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) ball of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000117983", "images": ["AURORA/data/something/frames/128332/first.jpg", "AURORA/data/something/frames/128332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117984", "images": ["AURORA/data/something/frames/219850/first.jpg", "AURORA/data/something/frames/219850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a comb from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117985", "images": ["AURORA/data/something/frames/98789/first.jpg", "AURORA/data/something/frames/98789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paint with phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117986", "images": ["AURORA/data/something/frames/52025/first.jpg", "AURORA/data/something/frames/52025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a children's book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117987", "images": ["AURORA/data/something/frames/156752/first.jpg", "AURORA/data/something/frames/156752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying battery on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117988", "images": ["AURORA/data/something/frames/104547/first.jpg", "AURORA/data/something/frames/104547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cover into lipstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000117989", "images": ["AURORA/data/something/frames/131497/first.jpg", "AURORA/data/something/frames/131497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a box with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117990", "images": ["AURORA/data/something/frames/145929/first.jpg", "AURORA/data/something/frames/145929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tape dispenser from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117991", "images": ["AURORA/data/something/frames/88041/first.jpg", "AURORA/data/something/frames/88041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse in front of cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117992", "images": ["AURORA/data/something/frames/207568/first.jpg", "AURORA/data/something/frames/207568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashdisk next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117993", "images": ["AURORA/data/something/frames/219773/first.jpg", "AURORA/data/something/frames/219773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000117994", "images": ["AURORA/data/something/frames/37854/first.jpg", "AURORA/data/something/frames/37854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117995", "images": ["AURORA/data/something/frames/64031/first.jpg", "AURORA/data/something/frames/64031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117996", "images": ["AURORA/data/something/frames/70031/first.jpg", "AURORA/data/something/frames/70031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing double-sided adhesive tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117997", "images": ["AURORA/data/something/frames/139884/first.jpg", "AURORA/data/something/frames/139884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hair comb down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117998", "images": ["AURORA/data/something/frames/15588/first.jpg", "AURORA/data/something/frames/15588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117999", "images": ["AURORA/data/something/frames/151923/first.jpg", "AURORA/data/something/frames/151923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118000", "images": ["AURORA/data/something/frames/149720/first.jpg", "AURORA/data/something/frames/149720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water botle into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118001", "images": ["AURORA/data/something/frames/112335/first.jpg", "AURORA/data/something/frames/112335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving inline skate wheel and inline skate wheel away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118002", "images": ["AURORA/data/something/frames/112154/first.jpg", "AURORA/data/something/frames/112154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000118003", "images": ["AURORA/data/something/frames/111998/first.jpg", "AURORA/data/something/frames/111998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118004", "images": ["AURORA/data/something/frames/62715/first.jpg", "AURORA/data/something/frames/62715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a ticket just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118005", "images": ["AURORA/data/something/frames/97620/first.jpg", "AURORA/data/something/frames/97620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting dollar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118006", "images": ["AURORA/data/something/frames/67297/first.jpg", "AURORA/data/something/frames/67297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dish cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118007", "images": ["AURORA/data/something/frames/172290/first.jpg", "AURORA/data/something/frames/172290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118008", "images": ["AURORA/data/something/frames/176020/first.jpg", "AURORA/data/something/frames/176020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papers into trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118009", "images": ["AURORA/data/something/frames/118112/first.jpg", "AURORA/data/something/frames/118112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fuel can towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118010", "images": ["AURORA/data/something/frames/6458/first.jpg", "AURORA/data/something/frames/6458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting pencil up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118011", "images": ["AURORA/data/something/frames/61244/first.jpg", "AURORA/data/something/frames/61244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into a mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000118012", "images": ["AURORA/data/something/frames/190516/first.jpg", "AURORA/data/something/frames/190516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of tool oil upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118013", "images": ["AURORA/data/something/frames/188239/first.jpg", "AURORA/data/something/frames/188239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118014", "images": ["AURORA/data/something/frames/16820/first.jpg", "AURORA/data/something/frames/16820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking deo out of bagback"}, {"from": "gpt", "value": ""}]} +{"id": "000000118015", "images": ["AURORA/data/something/frames/103125/first.jpg", "AURORA/data/something/frames/103125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting milk jug upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118016", "images": ["AURORA/data/something/frames/64019/first.jpg", "AURORA/data/something/frames/64019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118017", "images": ["AURORA/data/something/frames/53642/first.jpg", "AURORA/data/something/frames/53642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118018", "images": ["AURORA/data/something/frames/46575/first.jpg", "AURORA/data/something/frames/46575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a wine glass with a penny"}, {"from": "gpt", "value": ""}]} +{"id": "000000118019", "images": ["AURORA/data/something/frames/135321/first.jpg", "AURORA/data/something/frames/135321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118020", "images": ["AURORA/data/something/frames/87604/first.jpg", "AURORA/data/something/frames/87604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118021", "images": ["AURORA/data/something/frames/181382/first.jpg", "AURORA/data/something/frames/181382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spaghetti noodle until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118022", "images": ["AURORA/data/something/frames/201535/first.jpg", "AURORA/data/something/frames/201535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118023", "images": ["AURORA/data/something/frames/69849/first.jpg", "AURORA/data/something/frames/69849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking teddy bear so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118024", "images": ["AURORA/data/something/frames/72304/first.jpg", "AURORA/data/something/frames/72304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118025", "images": ["AURORA/data/something/frames/188518/first.jpg", "AURORA/data/something/frames/188518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118026", "images": ["AURORA/data/something/frames/113332/first.jpg", "AURORA/data/something/frames/113332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving horse and cow closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118027", "images": ["AURORA/data/something/frames/147059/first.jpg", "AURORA/data/something/frames/147059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118028", "images": ["AURORA/data/something/frames/155024/first.jpg", "AURORA/data/something/frames/155024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble away from metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000118029", "images": ["AURORA/data/something/frames/166273/first.jpg", "AURORA/data/something/frames/166273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cap into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000118030", "images": ["AURORA/data/something/frames/195086/first.jpg", "AURORA/data/something/frames/195086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming sunset"}, {"from": "gpt", "value": ""}]} +{"id": "000000118031", "images": ["AURORA/data/something/frames/176821/first.jpg", "AURORA/data/something/frames/176821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118032", "images": ["AURORA/data/something/frames/129367/first.jpg", "AURORA/data/something/frames/129367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting two coasters onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118033", "images": ["AURORA/data/something/frames/143253/first.jpg", "AURORA/data/something/frames/143253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118034", "images": ["AURORA/data/something/frames/178787/first.jpg", "AURORA/data/something/frames/178787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118035", "images": ["AURORA/data/something/frames/212642/first.jpg", "AURORA/data/something/frames/212642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hammer next to a child toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000118036", "images": ["AURORA/data/something/frames/142963/first.jpg", "AURORA/data/something/frames/142963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle with a cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000118037", "images": ["AURORA/data/something/frames/114255/first.jpg", "AURORA/data/something/frames/114255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic container with plastic container on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118038", "images": ["AURORA/data/something/frames/110453/first.jpg", "AURORA/data/something/frames/110453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118039", "images": ["AURORA/data/something/frames/118971/first.jpg", "AURORA/data/something/frames/118971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading old tree leaves onto small tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000118040", "images": ["AURORA/data/something/frames/132707/first.jpg", "AURORA/data/something/frames/132707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy car being deflected from another toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000118041", "images": ["AURORA/data/something/frames/9304/first.jpg", "AURORA/data/something/frames/9304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy colliding with toy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118042", "images": ["AURORA/data/something/frames/10747/first.jpg", "AURORA/data/something/frames/10747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118043", "images": ["AURORA/data/something/frames/48836/first.jpg", "AURORA/data/something/frames/48836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plush stitch onto mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118044", "images": ["AURORA/data/something/frames/21147/first.jpg", "AURORA/data/something/frames/21147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118045", "images": ["AURORA/data/something/frames/17062/first.jpg", "AURORA/data/something/frames/17062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a saucepan with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000118046", "images": ["AURORA/data/something/frames/145084/first.jpg", "AURORA/data/something/frames/145084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle of water upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118047", "images": ["AURORA/data/something/frames/65206/first.jpg", "AURORA/data/something/frames/65206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118048", "images": ["AURORA/data/something/frames/185722/first.jpg", "AURORA/data/something/frames/185722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming beach"}, {"from": "gpt", "value": ""}]} +{"id": "000000118049", "images": ["AURORA/data/something/frames/58520/first.jpg", "AURORA/data/something/frames/58520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spectacle box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118050", "images": ["AURORA/data/something/frames/65968/first.jpg", "AURORA/data/something/frames/65968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wardrobe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118051", "images": ["AURORA/data/something/frames/42650/first.jpg", "AURORA/data/something/frames/42650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118052", "images": ["AURORA/data/something/frames/135620/first.jpg", "AURORA/data/something/frames/135620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118053", "images": ["AURORA/data/something/frames/117888/first.jpg", "AURORA/data/something/frames/117888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting hair"}, {"from": "gpt", "value": ""}]} +{"id": "000000118054", "images": ["AURORA/data/something/frames/24299/first.jpg", "AURORA/data/something/frames/24299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a lighter with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118055", "images": ["AURORA/data/something/frames/204259/first.jpg", "AURORA/data/something/frames/204259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red spoon away from blue spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118056", "images": ["AURORA/data/something/frames/180556/first.jpg", "AURORA/data/something/frames/180556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting blue colour bottle cap into spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118057", "images": ["AURORA/data/something/frames/84296/first.jpg", "AURORA/data/something/frames/84296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging iphone cord into electric socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118058", "images": ["AURORA/data/something/frames/42077/first.jpg", "AURORA/data/something/frames/42077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and diary away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118059", "images": ["AURORA/data/something/frames/219134/first.jpg", "AURORA/data/something/frames/219134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a deodorant up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118060", "images": ["AURORA/data/something/frames/40319/first.jpg", "AURORA/data/something/frames/40319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118061", "images": ["AURORA/data/something/frames/69566/first.jpg", "AURORA/data/something/frames/69566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118062", "images": ["AURORA/data/something/frames/136722/first.jpg", "AURORA/data/something/frames/136722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a plate with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118063", "images": ["AURORA/data/something/frames/135893/first.jpg", "AURORA/data/something/frames/135893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a nail with a hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118064", "images": ["AURORA/data/something/frames/124037/first.jpg", "AURORA/data/something/frames/124037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118065", "images": ["AURORA/data/something/frames/68466/first.jpg", "AURORA/data/something/frames/68466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping the squeeze over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118066", "images": ["AURORA/data/something/frames/201017/first.jpg", "AURORA/data/something/frames/201017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cleansing pad with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118067", "images": ["AURORA/data/something/frames/196516/first.jpg", "AURORA/data/something/frames/196516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing muug, revealing coin behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118068", "images": ["AURORA/data/something/frames/64651/first.jpg", "AURORA/data/something/frames/64651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing water bottle onto another water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118069", "images": ["AURORA/data/something/frames/35530/first.jpg", "AURORA/data/something/frames/35530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118070", "images": ["AURORA/data/something/frames/62866/first.jpg", "AURORA/data/something/frames/62866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wardrobe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118071", "images": ["AURORA/data/something/frames/29155/first.jpg", "AURORA/data/something/frames/29155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a deodorant upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118072", "images": ["AURORA/data/something/frames/105526/first.jpg", "AURORA/data/something/frames/105526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118073", "images": ["AURORA/data/something/frames/208112/first.jpg", "AURORA/data/something/frames/208112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000118074", "images": ["AURORA/data/something/frames/12891/first.jpg", "AURORA/data/something/frames/12891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scotch tape down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118075", "images": ["AURORA/data/something/frames/13096/first.jpg", "AURORA/data/something/frames/13096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shot glass from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118076", "images": ["AURORA/data/something/frames/195109/first.jpg", "AURORA/data/something/frames/195109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy in front of spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118077", "images": ["AURORA/data/something/frames/68373/first.jpg", "AURORA/data/something/frames/68373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pin upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118078", "images": ["AURORA/data/something/frames/18320/first.jpg", "AURORA/data/something/frames/18320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clasp to bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118079", "images": ["AURORA/data/something/frames/104854/first.jpg", "AURORA/data/something/frames/104854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping apple into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118080", "images": ["AURORA/data/something/frames/57009/first.jpg", "AURORA/data/something/frames/57009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking taking adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118081", "images": ["AURORA/data/something/frames/171004/first.jpg", "AURORA/data/something/frames/171004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118082", "images": ["AURORA/data/something/frames/114475/first.jpg", "AURORA/data/something/frames/114475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paint bottle into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118083", "images": ["AURORA/data/something/frames/203731/first.jpg", "AURORA/data/something/frames/203731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118084", "images": ["AURORA/data/something/frames/77785/first.jpg", "AURORA/data/something/frames/77785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118085", "images": ["AURORA/data/something/frames/152051/first.jpg", "AURORA/data/something/frames/152051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning green water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118086", "images": ["AURORA/data/something/frames/118298/first.jpg", "AURORA/data/something/frames/118298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle next to bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118087", "images": ["AURORA/data/something/frames/65824/first.jpg", "AURORA/data/something/frames/65824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118088", "images": ["AURORA/data/something/frames/189640/first.jpg", "AURORA/data/something/frames/189640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118089", "images": ["AURORA/data/something/frames/28289/first.jpg", "AURORA/data/something/frames/28289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a crayon out of a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118090", "images": ["AURORA/data/something/frames/175432/first.jpg", "AURORA/data/something/frames/175432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118091", "images": ["AURORA/data/something/frames/95354/first.jpg", "AURORA/data/something/frames/95354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tablet box upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118092", "images": ["AURORA/data/something/frames/126781/first.jpg", "AURORA/data/something/frames/126781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, keychain and pouch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118093", "images": ["AURORA/data/something/frames/157197/first.jpg", "AURORA/data/something/frames/157197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extention into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118094", "images": ["AURORA/data/something/frames/29703/first.jpg", "AURORA/data/something/frames/29703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118095", "images": ["AURORA/data/something/frames/158134/first.jpg", "AURORA/data/something/frames/158134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mineral water"}, {"from": "gpt", "value": ""}]} +{"id": "000000118096", "images": ["AURORA/data/something/frames/210344/first.jpg", "AURORA/data/something/frames/210344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118097", "images": ["AURORA/data/something/frames/187254/first.jpg", "AURORA/data/something/frames/187254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118098", "images": ["AURORA/data/something/frames/99414/first.jpg", "AURORA/data/something/frames/99414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118099", "images": ["AURORA/data/something/frames/104492/first.jpg", "AURORA/data/something/frames/104492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering clock with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118100", "images": ["AURORA/data/something/frames/37528/first.jpg", "AURORA/data/something/frames/37528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black hair tie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118101", "images": ["AURORA/data/something/frames/171614/first.jpg", "AURORA/data/something/frames/171614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118102", "images": ["AURORA/data/something/frames/127761/first.jpg", "AURORA/data/something/frames/127761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toast into toaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000118103", "images": ["AURORA/data/something/frames/102637/first.jpg", "AURORA/data/something/frames/102637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cofee cup onto a backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000118104", "images": ["AURORA/data/something/frames/169770/first.jpg", "AURORA/data/something/frames/169770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering flashlight with paper bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118105", "images": ["AURORA/data/something/frames/83315/first.jpg", "AURORA/data/something/frames/83315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118106", "images": ["AURORA/data/something/frames/150634/first.jpg", "AURORA/data/something/frames/150634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking vegetable ice cream scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118107", "images": ["AURORA/data/something/frames/210861/first.jpg", "AURORA/data/something/frames/210861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118108", "images": ["AURORA/data/something/frames/39257/first.jpg", "AURORA/data/something/frames/39257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118109", "images": ["AURORA/data/something/frames/50546/first.jpg", "AURORA/data/something/frames/50546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118110", "images": ["AURORA/data/something/frames/168423/first.jpg", "AURORA/data/something/frames/168423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118111", "images": ["AURORA/data/something/frames/130921/first.jpg", "AURORA/data/something/frames/130921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118112", "images": ["AURORA/data/something/frames/148827/first.jpg", "AURORA/data/something/frames/148827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup in front of text books"}, {"from": "gpt", "value": ""}]} +{"id": "000000118113", "images": ["AURORA/data/something/frames/22486/first.jpg", "AURORA/data/something/frames/22486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 pennies"}, {"from": "gpt", "value": ""}]} +{"id": "000000118114", "images": ["AURORA/data/something/frames/14393/first.jpg", "AURORA/data/something/frames/14393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118115", "images": ["AURORA/data/something/frames/193856/first.jpg", "AURORA/data/something/frames/193856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup and saucer from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118116", "images": ["AURORA/data/something/frames/88019/first.jpg", "AURORA/data/something/frames/88019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pancile with sheed of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118117", "images": ["AURORA/data/something/frames/96829/first.jpg", "AURORA/data/something/frames/96829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing phone into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118118", "images": ["AURORA/data/something/frames/76081/first.jpg", "AURORA/data/something/frames/76081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118119", "images": ["AURORA/data/something/frames/124013/first.jpg", "AURORA/data/something/frames/124013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass closer to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118120", "images": ["AURORA/data/something/frames/205598/first.jpg", "AURORA/data/something/frames/205598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118121", "images": ["AURORA/data/something/frames/65069/first.jpg", "AURORA/data/something/frames/65069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118122", "images": ["AURORA/data/something/frames/191875/first.jpg", "AURORA/data/something/frames/191875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118123", "images": ["AURORA/data/something/frames/63808/first.jpg", "AURORA/data/something/frames/63808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118124", "images": ["AURORA/data/something/frames/108199/first.jpg", "AURORA/data/something/frames/108199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118125", "images": ["AURORA/data/something/frames/194486/first.jpg", "AURORA/data/something/frames/194486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118126", "images": ["AURORA/data/something/frames/27217/first.jpg", "AURORA/data/something/frames/27217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000118127", "images": ["AURORA/data/something/frames/111193/first.jpg", "AURORA/data/something/frames/111193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster underneath cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118128", "images": ["AURORA/data/something/frames/120989/first.jpg", "AURORA/data/something/frames/120989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lime and lime closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118129", "images": ["AURORA/data/something/frames/115880/first.jpg", "AURORA/data/something/frames/115880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118130", "images": ["AURORA/data/something/frames/185664/first.jpg", "AURORA/data/something/frames/185664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a kiwi being deflected from a litter bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118131", "images": ["AURORA/data/something/frames/190265/first.jpg", "AURORA/data/something/frames/190265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a card with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118132", "images": ["AURORA/data/something/frames/12682/first.jpg", "AURORA/data/something/frames/12682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pomegranate so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118133", "images": ["AURORA/data/something/frames/35391/first.jpg", "AURORA/data/something/frames/35391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118134", "images": ["AURORA/data/something/frames/165539/first.jpg", "AURORA/data/something/frames/165539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with plastic container on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118135", "images": ["AURORA/data/something/frames/111954/first.jpg", "AURORA/data/something/frames/111954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118136", "images": ["AURORA/data/something/frames/168084/first.jpg", "AURORA/data/something/frames/168084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking headphones out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118137", "images": ["AURORA/data/something/frames/166205/first.jpg", "AURORA/data/something/frames/166205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red watch case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118138", "images": ["AURORA/data/something/frames/29050/first.jpg", "AURORA/data/something/frames/29050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a colored pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118139", "images": ["AURORA/data/something/frames/17810/first.jpg", "AURORA/data/something/frames/17810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe with clothes peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000118140", "images": ["AURORA/data/something/frames/18610/first.jpg", "AURORA/data/something/frames/18610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto holder so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118141", "images": ["AURORA/data/something/frames/103589/first.jpg", "AURORA/data/something/frames/103589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lipstick so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118142", "images": ["AURORA/data/something/frames/183915/first.jpg", "AURORA/data/something/frames/183915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118143", "images": ["AURORA/data/something/frames/23486/first.jpg", "AURORA/data/something/frames/23486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118144", "images": ["AURORA/data/something/frames/197377/first.jpg", "AURORA/data/something/frames/197377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118145", "images": ["AURORA/data/something/frames/220755/first.jpg", "AURORA/data/something/frames/220755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118146", "images": ["AURORA/data/something/frames/42290/first.jpg", "AURORA/data/something/frames/42290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lighter behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118147", "images": ["AURORA/data/something/frames/146104/first.jpg", "AURORA/data/something/frames/146104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118148", "images": ["AURORA/data/something/frames/175393/first.jpg", "AURORA/data/something/frames/175393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed cat so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118149", "images": ["AURORA/data/something/frames/21781/first.jpg", "AURORA/data/something/frames/21781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking chair case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118150", "images": ["AURORA/data/something/frames/56489/first.jpg", "AURORA/data/something/frames/56489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118151", "images": ["AURORA/data/something/frames/55421/first.jpg", "AURORA/data/something/frames/55421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118152", "images": ["AURORA/data/something/frames/101471/first.jpg", "AURORA/data/something/frames/101471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging computer cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118153", "images": ["AURORA/data/something/frames/162318/first.jpg", "AURORA/data/something/frames/162318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering jar with lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000118154", "images": ["AURORA/data/something/frames/182698/first.jpg", "AURORA/data/something/frames/182698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting knee with paintbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000118155", "images": ["AURORA/data/something/frames/74252/first.jpg", "AURORA/data/something/frames/74252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wrapper into yogurt cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118156", "images": ["AURORA/data/something/frames/79857/first.jpg", "AURORA/data/something/frames/79857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cereal on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118157", "images": ["AURORA/data/something/frames/201866/first.jpg", "AURORA/data/something/frames/201866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118158", "images": ["AURORA/data/something/frames/15848/first.jpg", "AURORA/data/something/frames/15848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118159", "images": ["AURORA/data/something/frames/107747/first.jpg", "AURORA/data/something/frames/107747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching microphone to stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118160", "images": ["AURORA/data/something/frames/8318/first.jpg", "AURORA/data/something/frames/8318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118161", "images": ["AURORA/data/something/frames/54318/first.jpg", "AURORA/data/something/frames/54318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118162", "images": ["AURORA/data/something/frames/136539/first.jpg", "AURORA/data/something/frames/136539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming fire extinguisher"}, {"from": "gpt", "value": ""}]} +{"id": "000000118163", "images": ["AURORA/data/something/frames/4963/first.jpg", "AURORA/data/something/frames/4963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a hand with a pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118164", "images": ["AURORA/data/something/frames/24550/first.jpg", "AURORA/data/something/frames/24550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118165", "images": ["AURORA/data/something/frames/201800/first.jpg", "AURORA/data/something/frames/201800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tablet box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118166", "images": ["AURORA/data/something/frames/204053/first.jpg", "AURORA/data/something/frames/204053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball in front of car"}, {"from": "gpt", "value": ""}]} +{"id": "000000118167", "images": ["AURORA/data/something/frames/55788/first.jpg", "AURORA/data/something/frames/55788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring gems into small bottle until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000118168", "images": ["AURORA/data/something/frames/159537/first.jpg", "AURORA/data/something/frames/159537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spray bottle behind the packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118169", "images": ["AURORA/data/something/frames/42966/first.jpg", "AURORA/data/something/frames/42966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hanger being deflected from moving car"}, {"from": "gpt", "value": ""}]} +{"id": "000000118170", "images": ["AURORA/data/something/frames/128952/first.jpg", "AURORA/data/something/frames/128952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a can with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118171", "images": ["AURORA/data/something/frames/32201/first.jpg", "AURORA/data/something/frames/32201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118172", "images": ["AURORA/data/something/frames/180070/first.jpg", "AURORA/data/something/frames/180070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hotpot from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118173", "images": ["AURORA/data/something/frames/103229/first.jpg", "AURORA/data/something/frames/103229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118174", "images": ["AURORA/data/something/frames/68376/first.jpg", "AURORA/data/something/frames/68376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118175", "images": ["AURORA/data/something/frames/215114/first.jpg", "AURORA/data/something/frames/215114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toffee container towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118176", "images": ["AURORA/data/something/frames/169002/first.jpg", "AURORA/data/something/frames/169002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending comb so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118177", "images": ["AURORA/data/something/frames/136745/first.jpg", "AURORA/data/something/frames/136745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cell phone with notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118178", "images": ["AURORA/data/something/frames/126058/first.jpg", "AURORA/data/something/frames/126058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a die on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118179", "images": ["AURORA/data/something/frames/110120/first.jpg", "AURORA/data/something/frames/110120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118180", "images": ["AURORA/data/something/frames/33495/first.jpg", "AURORA/data/something/frames/33495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging stopper into drain but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118181", "images": ["AURORA/data/something/frames/127667/first.jpg", "AURORA/data/something/frames/127667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118182", "images": ["AURORA/data/something/frames/72811/first.jpg", "AURORA/data/something/frames/72811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving button up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118183", "images": ["AURORA/data/something/frames/27358/first.jpg", "AURORA/data/something/frames/27358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118184", "images": ["AURORA/data/something/frames/196426/first.jpg", "AURORA/data/something/frames/196426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of wood blocks without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000118185", "images": ["AURORA/data/something/frames/213105/first.jpg", "AURORA/data/something/frames/213105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118186", "images": ["AURORA/data/something/frames/66122/first.jpg", "AURORA/data/something/frames/66122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118187", "images": ["AURORA/data/something/frames/167007/first.jpg", "AURORA/data/something/frames/167007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118188", "images": ["AURORA/data/something/frames/85935/first.jpg", "AURORA/data/something/frames/85935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cufflinks behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118189", "images": ["AURORA/data/something/frames/146051/first.jpg", "AURORA/data/something/frames/146051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet behind mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118190", "images": ["AURORA/data/something/frames/107289/first.jpg", "AURORA/data/something/frames/107289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118191", "images": ["AURORA/data/something/frames/213727/first.jpg", "AURORA/data/something/frames/213727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking smart phone out of handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118192", "images": ["AURORA/data/something/frames/8800/first.jpg", "AURORA/data/something/frames/8800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming poster"}, {"from": "gpt", "value": ""}]} +{"id": "000000118193", "images": ["AURORA/data/something/frames/101989/first.jpg", "AURORA/data/something/frames/101989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118194", "images": ["AURORA/data/something/frames/187743/first.jpg", "AURORA/data/something/frames/187743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of something so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000118195", "images": ["AURORA/data/something/frames/15112/first.jpg", "AURORA/data/something/frames/15112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118196", "images": ["AURORA/data/something/frames/20051/first.jpg", "AURORA/data/something/frames/20051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000118197", "images": ["AURORA/data/something/frames/123467/first.jpg", "AURORA/data/something/frames/123467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car key on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118198", "images": ["AURORA/data/something/frames/117874/first.jpg", "AURORA/data/something/frames/117874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a water container closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118199", "images": ["AURORA/data/something/frames/91295/first.jpg", "AURORA/data/something/frames/91295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet in front of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118200", "images": ["AURORA/data/something/frames/129123/first.jpg", "AURORA/data/something/frames/129123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118201", "images": ["AURORA/data/something/frames/20609/first.jpg", "AURORA/data/something/frames/20609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster and remote on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118202", "images": ["AURORA/data/something/frames/139085/first.jpg", "AURORA/data/something/frames/139085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hair gum from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118203", "images": ["AURORA/data/something/frames/26381/first.jpg", "AURORA/data/something/frames/26381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118204", "images": ["AURORA/data/something/frames/166275/first.jpg", "AURORA/data/something/frames/166275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a water can colliding with another water can and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118205", "images": ["AURORA/data/something/frames/38302/first.jpg", "AURORA/data/something/frames/38302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118206", "images": ["AURORA/data/something/frames/10873/first.jpg", "AURORA/data/something/frames/10873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118207", "images": ["AURORA/data/something/frames/75268/first.jpg", "AURORA/data/something/frames/75268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118208", "images": ["AURORA/data/something/frames/104999/first.jpg", "AURORA/data/something/frames/104999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper from behind of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118209", "images": ["AURORA/data/something/frames/192155/first.jpg", "AURORA/data/something/frames/192155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering water bottle with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118210", "images": ["AURORA/data/something/frames/197702/first.jpg", "AURORA/data/something/frames/197702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118211", "images": ["AURORA/data/something/frames/94224/first.jpg", "AURORA/data/something/frames/94224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118212", "images": ["AURORA/data/something/frames/103119/first.jpg", "AURORA/data/something/frames/103119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator and paper weight on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118213", "images": ["AURORA/data/something/frames/192546/first.jpg", "AURORA/data/something/frames/192546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil out of pencil holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000118214", "images": ["AURORA/data/something/frames/32233/first.jpg", "AURORA/data/something/frames/32233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toothpaste tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000118215", "images": ["AURORA/data/something/frames/175533/first.jpg", "AURORA/data/something/frames/175533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118216", "images": ["AURORA/data/something/frames/55164/first.jpg", "AURORA/data/something/frames/55164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118217", "images": ["AURORA/data/something/frames/123498/first.jpg", "AURORA/data/something/frames/123498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pink hat in front of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118218", "images": ["AURORA/data/something/frames/167192/first.jpg", "AURORA/data/something/frames/167192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering handy"}, {"from": "gpt", "value": ""}]} +{"id": "000000118219", "images": ["AURORA/data/something/frames/40166/first.jpg", "AURORA/data/something/frames/40166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118220", "images": ["AURORA/data/something/frames/194342/first.jpg", "AURORA/data/something/frames/194342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118221", "images": ["AURORA/data/something/frames/9633/first.jpg", "AURORA/data/something/frames/9633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eraser in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118222", "images": ["AURORA/data/something/frames/72135/first.jpg", "AURORA/data/something/frames/72135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118223", "images": ["AURORA/data/something/frames/54075/first.jpg", "AURORA/data/something/frames/54075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118224", "images": ["AURORA/data/something/frames/218168/first.jpg", "AURORA/data/something/frames/218168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering onion"}, {"from": "gpt", "value": ""}]} +{"id": "000000118225", "images": ["AURORA/data/something/frames/12696/first.jpg", "AURORA/data/something/frames/12696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118226", "images": ["AURORA/data/something/frames/4521/first.jpg", "AURORA/data/something/frames/4521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118227", "images": ["AURORA/data/something/frames/165610/first.jpg", "AURORA/data/something/frames/165610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a jar of peanutbutter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118228", "images": ["AURORA/data/something/frames/123768/first.jpg", "AURORA/data/something/frames/123768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil colliding with a bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118229", "images": ["AURORA/data/something/frames/187347/first.jpg", "AURORA/data/something/frames/187347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118230", "images": ["AURORA/data/something/frames/50341/first.jpg", "AURORA/data/something/frames/50341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping air freshener over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118231", "images": ["AURORA/data/something/frames/19292/first.jpg", "AURORA/data/something/frames/19292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000118232", "images": ["AURORA/data/something/frames/58713/first.jpg", "AURORA/data/something/frames/58713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying nail polish bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118233", "images": ["AURORA/data/something/frames/61566/first.jpg", "AURORA/data/something/frames/61566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118234", "images": ["AURORA/data/something/frames/22712/first.jpg", "AURORA/data/something/frames/22712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118235", "images": ["AURORA/data/something/frames/213513/first.jpg", "AURORA/data/something/frames/213513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118236", "images": ["AURORA/data/something/frames/42866/first.jpg", "AURORA/data/something/frames/42866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118237", "images": ["AURORA/data/something/frames/38794/first.jpg", "AURORA/data/something/frames/38794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000118238", "images": ["AURORA/data/something/frames/75781/first.jpg", "AURORA/data/something/frames/75781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a football up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118239", "images": ["AURORA/data/something/frames/111254/first.jpg", "AURORA/data/something/frames/111254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screw down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118240", "images": ["AURORA/data/something/frames/84984/first.jpg", "AURORA/data/something/frames/84984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something away from something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118241", "images": ["AURORA/data/something/frames/31477/first.jpg", "AURORA/data/something/frames/31477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming post box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118242", "images": ["AURORA/data/something/frames/217536/first.jpg", "AURORA/data/something/frames/217536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118243", "images": ["AURORA/data/something/frames/61693/first.jpg", "AURORA/data/something/frames/61693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of leptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118244", "images": ["AURORA/data/something/frames/201468/first.jpg", "AURORA/data/something/frames/201468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming radiator"}, {"from": "gpt", "value": ""}]} +{"id": "000000118245", "images": ["AURORA/data/something/frames/114233/first.jpg", "AURORA/data/something/frames/114233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118246", "images": ["AURORA/data/something/frames/124829/first.jpg", "AURORA/data/something/frames/124829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118247", "images": ["AURORA/data/something/frames/108665/first.jpg", "AURORA/data/something/frames/108665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting piggy bank onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118248", "images": ["AURORA/data/something/frames/219318/first.jpg", "AURORA/data/something/frames/219318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118249", "images": ["AURORA/data/something/frames/139331/first.jpg", "AURORA/data/something/frames/139331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118250", "images": ["AURORA/data/something/frames/5571/first.jpg", "AURORA/data/something/frames/5571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a key behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118251", "images": ["AURORA/data/something/frames/50413/first.jpg", "AURORA/data/something/frames/50413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118252", "images": ["AURORA/data/something/frames/193713/first.jpg", "AURORA/data/something/frames/193713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118253", "images": ["AURORA/data/something/frames/188485/first.jpg", "AURORA/data/something/frames/188485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118254", "images": ["AURORA/data/something/frames/130735/first.jpg", "AURORA/data/something/frames/130735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118255", "images": ["AURORA/data/something/frames/55368/first.jpg", "AURORA/data/something/frames/55368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering can with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118256", "images": ["AURORA/data/something/frames/127452/first.jpg", "AURORA/data/something/frames/127452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118257", "images": ["AURORA/data/something/frames/7255/first.jpg", "AURORA/data/something/frames/7255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000118258", "images": ["AURORA/data/something/frames/82271/first.jpg", "AURORA/data/something/frames/82271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming squeezable strawberry jam"}, {"from": "gpt", "value": ""}]} +{"id": "000000118259", "images": ["AURORA/data/something/frames/59605/first.jpg", "AURORA/data/something/frames/59605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering spring"}, {"from": "gpt", "value": ""}]} +{"id": "000000118260", "images": ["AURORA/data/something/frames/145719/first.jpg", "AURORA/data/something/frames/145719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118261", "images": ["AURORA/data/something/frames/122885/first.jpg", "AURORA/data/something/frames/122885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118262", "images": ["AURORA/data/something/frames/54069/first.jpg", "AURORA/data/something/frames/54069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming jackfruits"}, {"from": "gpt", "value": ""}]} +{"id": "000000118263", "images": ["AURORA/data/something/frames/148151/first.jpg", "AURORA/data/something/frames/148151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118264", "images": ["AURORA/data/something/frames/32776/first.jpg", "AURORA/data/something/frames/32776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book underneath notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118265", "images": ["AURORA/data/something/frames/54506/first.jpg", "AURORA/data/something/frames/54506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118266", "images": ["AURORA/data/something/frames/162700/first.jpg", "AURORA/data/something/frames/162700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping dirt up with dustpan"}, {"from": "gpt", "value": ""}]} +{"id": "000000118267", "images": ["AURORA/data/something/frames/54445/first.jpg", "AURORA/data/something/frames/54445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning computer mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118268", "images": ["AURORA/data/something/frames/21603/first.jpg", "AURORA/data/something/frames/21603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118269", "images": ["AURORA/data/something/frames/11508/first.jpg", "AURORA/data/something/frames/11508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118270", "images": ["AURORA/data/something/frames/182217/first.jpg", "AURORA/data/something/frames/182217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118271", "images": ["AURORA/data/something/frames/13996/first.jpg", "AURORA/data/something/frames/13996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118272", "images": ["AURORA/data/something/frames/180326/first.jpg", "AURORA/data/something/frames/180326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000118273", "images": ["AURORA/data/something/frames/83878/first.jpg", "AURORA/data/something/frames/83878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118274", "images": ["AURORA/data/something/frames/78710/first.jpg", "AURORA/data/something/frames/78710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118275", "images": ["AURORA/data/something/frames/138149/first.jpg", "AURORA/data/something/frames/138149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118276", "images": ["AURORA/data/something/frames/192829/first.jpg", "AURORA/data/something/frames/192829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cotton swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118277", "images": ["AURORA/data/something/frames/31701/first.jpg", "AURORA/data/something/frames/31701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118278", "images": ["AURORA/data/something/frames/33946/first.jpg", "AURORA/data/something/frames/33946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling phone from behind of camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118279", "images": ["AURORA/data/something/frames/23867/first.jpg", "AURORA/data/something/frames/23867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118280", "images": ["AURORA/data/something/frames/108248/first.jpg", "AURORA/data/something/frames/108248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 screw drivers onto brown note"}, {"from": "gpt", "value": ""}]} +{"id": "000000118281", "images": ["AURORA/data/something/frames/107551/first.jpg", "AURORA/data/something/frames/107551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118282", "images": ["AURORA/data/something/frames/34837/first.jpg", "AURORA/data/something/frames/34837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shampoo onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118283", "images": ["AURORA/data/something/frames/65116/first.jpg", "AURORA/data/something/frames/65116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting laptop with notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118284", "images": ["AURORA/data/something/frames/209951/first.jpg", "AURORA/data/something/frames/209951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: box colliding with box and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118285", "images": ["AURORA/data/something/frames/29092/first.jpg", "AURORA/data/something/frames/29092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with spoon over, so spoon falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118286", "images": ["AURORA/data/something/frames/83762/first.jpg", "AURORA/data/something/frames/83762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118287", "images": ["AURORA/data/something/frames/49072/first.jpg", "AURORA/data/something/frames/49072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a plate with cutlery on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118288", "images": ["AURORA/data/something/frames/134048/first.jpg", "AURORA/data/something/frames/134048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118289", "images": ["AURORA/data/something/frames/181524/first.jpg", "AURORA/data/something/frames/181524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and flower closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118290", "images": ["AURORA/data/something/frames/188126/first.jpg", "AURORA/data/something/frames/188126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118291", "images": ["AURORA/data/something/frames/152050/first.jpg", "AURORA/data/something/frames/152050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking clips out of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118292", "images": ["AURORA/data/something/frames/47566/first.jpg", "AURORA/data/something/frames/47566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118293", "images": ["AURORA/data/something/frames/208855/first.jpg", "AURORA/data/something/frames/208855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000118294", "images": ["AURORA/data/something/frames/3159/first.jpg", "AURORA/data/something/frames/3159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118295", "images": ["AURORA/data/something/frames/1255/first.jpg", "AURORA/data/something/frames/1255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug head into an extension lead but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118296", "images": ["AURORA/data/something/frames/141073/first.jpg", "AURORA/data/something/frames/141073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending coat hanger so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118297", "images": ["AURORA/data/something/frames/7113/first.jpg", "AURORA/data/something/frames/7113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a glass figure away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118298", "images": ["AURORA/data/something/frames/187696/first.jpg", "AURORA/data/something/frames/187696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle with other bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118299", "images": ["AURORA/data/something/frames/101044/first.jpg", "AURORA/data/something/frames/101044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming a dream catcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000118300", "images": ["AURORA/data/something/frames/205240/first.jpg", "AURORA/data/something/frames/205240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto a dinner plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118301", "images": ["AURORA/data/something/frames/27779/first.jpg", "AURORA/data/something/frames/27779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing jacket into handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118302", "images": ["AURORA/data/something/frames/42787/first.jpg", "AURORA/data/something/frames/42787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy bar upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118303", "images": ["AURORA/data/something/frames/112659/first.jpg", "AURORA/data/something/frames/112659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118304", "images": ["AURORA/data/something/frames/99268/first.jpg", "AURORA/data/something/frames/99268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging allout into plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118305", "images": ["AURORA/data/something/frames/185040/first.jpg", "AURORA/data/something/frames/185040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of bread into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118306", "images": ["AURORA/data/something/frames/25491/first.jpg", "AURORA/data/something/frames/25491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering torch lighter with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118307", "images": ["AURORA/data/something/frames/40681/first.jpg", "AURORA/data/something/frames/40681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something with something in it over, so something in it falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118308", "images": ["AURORA/data/something/frames/30014/first.jpg", "AURORA/data/something/frames/30014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) leaves of a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118309", "images": ["AURORA/data/something/frames/57631/first.jpg", "AURORA/data/something/frames/57631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118310", "images": ["AURORA/data/something/frames/22699/first.jpg", "AURORA/data/something/frames/22699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vase on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118311", "images": ["AURORA/data/something/frames/84851/first.jpg", "AURORA/data/something/frames/84851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118312", "images": ["AURORA/data/something/frames/84109/first.jpg", "AURORA/data/something/frames/84109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bottle with a box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118313", "images": ["AURORA/data/something/frames/160082/first.jpg", "AURORA/data/something/frames/160082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic bottle on the edge of a stool so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118314", "images": ["AURORA/data/something/frames/181873/first.jpg", "AURORA/data/something/frames/181873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup with a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000118315", "images": ["AURORA/data/something/frames/59866/first.jpg", "AURORA/data/something/frames/59866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a disc out of a paper sleeve"}, {"from": "gpt", "value": ""}]} +{"id": "000000118316", "images": ["AURORA/data/something/frames/144407/first.jpg", "AURORA/data/something/frames/144407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118317", "images": ["AURORA/data/something/frames/214289/first.jpg", "AURORA/data/something/frames/214289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purple balloon pump on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118318", "images": ["AURORA/data/something/frames/76625/first.jpg", "AURORA/data/something/frames/76625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118319", "images": ["AURORA/data/something/frames/85534/first.jpg", "AURORA/data/something/frames/85534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring peanuts into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118320", "images": ["AURORA/data/something/frames/105278/first.jpg", "AURORA/data/something/frames/105278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pikachu plush with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118321", "images": ["AURORA/data/something/frames/177502/first.jpg", "AURORA/data/something/frames/177502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118322", "images": ["AURORA/data/something/frames/205583/first.jpg", "AURORA/data/something/frames/205583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118323", "images": ["AURORA/data/something/frames/126834/first.jpg", "AURORA/data/something/frames/126834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118324", "images": ["AURORA/data/something/frames/119483/first.jpg", "AURORA/data/something/frames/119483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118325", "images": ["AURORA/data/something/frames/217531/first.jpg", "AURORA/data/something/frames/217531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking two plates"}, {"from": "gpt", "value": ""}]} +{"id": "000000118326", "images": ["AURORA/data/something/frames/177943/first.jpg", "AURORA/data/something/frames/177943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118327", "images": ["AURORA/data/something/frames/83008/first.jpg", "AURORA/data/something/frames/83008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000118328", "images": ["AURORA/data/something/frames/116888/first.jpg", "AURORA/data/something/frames/116888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small fresh mint"}, {"from": "gpt", "value": ""}]} +{"id": "000000118329", "images": ["AURORA/data/something/frames/448/first.jpg", "AURORA/data/something/frames/448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118330", "images": ["AURORA/data/something/frames/110423/first.jpg", "AURORA/data/something/frames/110423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118331", "images": ["AURORA/data/something/frames/115435/first.jpg", "AURORA/data/something/frames/115435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118332", "images": ["AURORA/data/something/frames/7068/first.jpg", "AURORA/data/something/frames/7068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb device into usb port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118333", "images": ["AURORA/data/something/frames/52685/first.jpg", "AURORA/data/something/frames/52685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118334", "images": ["AURORA/data/something/frames/153335/first.jpg", "AURORA/data/something/frames/153335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118335", "images": ["AURORA/data/something/frames/170390/first.jpg", "AURORA/data/something/frames/170390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118336", "images": ["AURORA/data/something/frames/145160/first.jpg", "AURORA/data/something/frames/145160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping silver container into plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118337", "images": ["AURORA/data/something/frames/64581/first.jpg", "AURORA/data/something/frames/64581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118338", "images": ["AURORA/data/something/frames/36279/first.jpg", "AURORA/data/something/frames/36279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle of lotion over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118339", "images": ["AURORA/data/something/frames/24255/first.jpg", "AURORA/data/something/frames/24255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching cucumber with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118340", "images": ["AURORA/data/something/frames/10768/first.jpg", "AURORA/data/something/frames/10768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118341", "images": ["AURORA/data/something/frames/174868/first.jpg", "AURORA/data/something/frames/174868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming red booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118342", "images": ["AURORA/data/something/frames/78012/first.jpg", "AURORA/data/something/frames/78012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tissue onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118343", "images": ["AURORA/data/something/frames/19362/first.jpg", "AURORA/data/something/frames/19362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cigarette lighter off of note bok"}, {"from": "gpt", "value": ""}]} +{"id": "000000118344", "images": ["AURORA/data/something/frames/115006/first.jpg", "AURORA/data/something/frames/115006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a mirror with a comb on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118345", "images": ["AURORA/data/something/frames/94027/first.jpg", "AURORA/data/something/frames/94027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sticky note onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118346", "images": ["AURORA/data/something/frames/145501/first.jpg", "AURORA/data/something/frames/145501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping mug with clementine over, so clementine falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118347", "images": ["AURORA/data/something/frames/174612/first.jpg", "AURORA/data/something/frames/174612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000118348", "images": ["AURORA/data/something/frames/151021/first.jpg", "AURORA/data/something/frames/151021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an earring"}, {"from": "gpt", "value": ""}]} +{"id": "000000118349", "images": ["AURORA/data/something/frames/100101/first.jpg", "AURORA/data/something/frames/100101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118350", "images": ["AURORA/data/something/frames/146345/first.jpg", "AURORA/data/something/frames/146345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: video game case colliding with a box and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118351", "images": ["AURORA/data/something/frames/4208/first.jpg", "AURORA/data/something/frames/4208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling spray onto glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000118352", "images": ["AURORA/data/something/frames/141201/first.jpg", "AURORA/data/something/frames/141201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing keys so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118353", "images": ["AURORA/data/something/frames/7601/first.jpg", "AURORA/data/something/frames/7601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a cotton swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118354", "images": ["AURORA/data/something/frames/125118/first.jpg", "AURORA/data/something/frames/125118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000118355", "images": ["AURORA/data/something/frames/4477/first.jpg", "AURORA/data/something/frames/4477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118356", "images": ["AURORA/data/something/frames/195255/first.jpg", "AURORA/data/something/frames/195255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to coffee mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118357", "images": ["AURORA/data/something/frames/11344/first.jpg", "AURORA/data/something/frames/11344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blanket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118358", "images": ["AURORA/data/something/frames/57849/first.jpg", "AURORA/data/something/frames/57849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118359", "images": ["AURORA/data/something/frames/140410/first.jpg", "AURORA/data/something/frames/140410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wristwatch and a ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118360", "images": ["AURORA/data/something/frames/98534/first.jpg", "AURORA/data/something/frames/98534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118361", "images": ["AURORA/data/something/frames/78928/first.jpg", "AURORA/data/something/frames/78928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118362", "images": ["AURORA/data/something/frames/126365/first.jpg", "AURORA/data/something/frames/126365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tumbler cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118363", "images": ["AURORA/data/something/frames/1282/first.jpg", "AURORA/data/something/frames/1282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving aim toothpaste down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118364", "images": ["AURORA/data/something/frames/175755/first.jpg", "AURORA/data/something/frames/175755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118365", "images": ["AURORA/data/something/frames/15968/first.jpg", "AURORA/data/something/frames/15968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lipbalm and nailpolish closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118366", "images": ["AURORA/data/something/frames/149914/first.jpg", "AURORA/data/something/frames/149914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118367", "images": ["AURORA/data/something/frames/130543/first.jpg", "AURORA/data/something/frames/130543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118368", "images": ["AURORA/data/something/frames/43964/first.jpg", "AURORA/data/something/frames/43964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plank of wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000118369", "images": ["AURORA/data/something/frames/192096/first.jpg", "AURORA/data/something/frames/192096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118370", "images": ["AURORA/data/something/frames/170660/first.jpg", "AURORA/data/something/frames/170660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118371", "images": ["AURORA/data/something/frames/644/first.jpg", "AURORA/data/something/frames/644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118372", "images": ["AURORA/data/something/frames/55208/first.jpg", "AURORA/data/something/frames/55208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118373", "images": ["AURORA/data/something/frames/18353/first.jpg", "AURORA/data/something/frames/18353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118374", "images": ["AURORA/data/something/frames/46275/first.jpg", "AURORA/data/something/frames/46275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a laptop into a plug extender"}, {"from": "gpt", "value": ""}]} +{"id": "000000118375", "images": ["AURORA/data/something/frames/104511/first.jpg", "AURORA/data/something/frames/104511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118376", "images": ["AURORA/data/something/frames/142046/first.jpg", "AURORA/data/something/frames/142046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a wallet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118377", "images": ["AURORA/data/something/frames/92383/first.jpg", "AURORA/data/something/frames/92383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pencil sharpener upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118378", "images": ["AURORA/data/something/frames/128381/first.jpg", "AURORA/data/something/frames/128381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering chalk"}, {"from": "gpt", "value": ""}]} +{"id": "000000118379", "images": ["AURORA/data/something/frames/110203/first.jpg", "AURORA/data/something/frames/110203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding news paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118380", "images": ["AURORA/data/something/frames/93097/first.jpg", "AURORA/data/something/frames/93097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118381", "images": ["AURORA/data/something/frames/136045/first.jpg", "AURORA/data/something/frames/136045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white hand gel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118382", "images": ["AURORA/data/something/frames/145333/first.jpg", "AURORA/data/something/frames/145333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking controler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118383", "images": ["AURORA/data/something/frames/143695/first.jpg", "AURORA/data/something/frames/143695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping raw egg into the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118384", "images": ["AURORA/data/something/frames/128710/first.jpg", "AURORA/data/something/frames/128710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb bluetooth into usb port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118385", "images": ["AURORA/data/something/frames/56993/first.jpg", "AURORA/data/something/frames/56993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting globe toy upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118386", "images": ["AURORA/data/something/frames/81577/first.jpg", "AURORA/data/something/frames/81577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118387", "images": ["AURORA/data/something/frames/6209/first.jpg", "AURORA/data/something/frames/6209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving umbrella up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118388", "images": ["AURORA/data/something/frames/55953/first.jpg", "AURORA/data/something/frames/55953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork and a knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118389", "images": ["AURORA/data/something/frames/36954/first.jpg", "AURORA/data/something/frames/36954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tea filter so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118390", "images": ["AURORA/data/something/frames/174355/first.jpg", "AURORA/data/something/frames/174355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118391", "images": ["AURORA/data/something/frames/212751/first.jpg", "AURORA/data/something/frames/212751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the book and the magazine away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118392", "images": ["AURORA/data/something/frames/131596/first.jpg", "AURORA/data/something/frames/131596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118393", "images": ["AURORA/data/something/frames/82479/first.jpg", "AURORA/data/something/frames/82479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118394", "images": ["AURORA/data/something/frames/141955/first.jpg", "AURORA/data/something/frames/141955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000118395", "images": ["AURORA/data/something/frames/4951/first.jpg", "AURORA/data/something/frames/4951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a watch into a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118396", "images": ["AURORA/data/something/frames/134493/first.jpg", "AURORA/data/something/frames/134493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sieve closer to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118397", "images": ["AURORA/data/something/frames/198902/first.jpg", "AURORA/data/something/frames/198902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000118398", "images": ["AURORA/data/something/frames/77468/first.jpg", "AURORA/data/something/frames/77468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118399", "images": ["AURORA/data/something/frames/98935/first.jpg", "AURORA/data/something/frames/98935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour cereals into a glass container, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118400", "images": ["AURORA/data/something/frames/61752/first.jpg", "AURORA/data/something/frames/61752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing lotion, revealing deodorant behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118401", "images": ["AURORA/data/something/frames/62523/first.jpg", "AURORA/data/something/frames/62523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a play block with a group of play blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118402", "images": ["AURORA/data/something/frames/53883/first.jpg", "AURORA/data/something/frames/53883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000118403", "images": ["AURORA/data/something/frames/2167/first.jpg", "AURORA/data/something/frames/2167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118404", "images": ["AURORA/data/something/frames/192984/first.jpg", "AURORA/data/something/frames/192984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sunglasses out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118405", "images": ["AURORA/data/something/frames/213465/first.jpg", "AURORA/data/something/frames/213465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118406", "images": ["AURORA/data/something/frames/28567/first.jpg", "AURORA/data/something/frames/28567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling jam onto a biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118407", "images": ["AURORA/data/something/frames/43520/first.jpg", "AURORA/data/something/frames/43520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118408", "images": ["AURORA/data/something/frames/66140/first.jpg", "AURORA/data/something/frames/66140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip balm and nail polish away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118409", "images": ["AURORA/data/something/frames/49021/first.jpg", "AURORA/data/something/frames/49021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling oil next to bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118410", "images": ["AURORA/data/something/frames/5107/first.jpg", "AURORA/data/something/frames/5107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118411", "images": ["AURORA/data/something/frames/29115/first.jpg", "AURORA/data/something/frames/29115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a meat thermometer upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118412", "images": ["AURORA/data/something/frames/107347/first.jpg", "AURORA/data/something/frames/107347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glove and cell phone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118413", "images": ["AURORA/data/something/frames/37054/first.jpg", "AURORA/data/something/frames/37054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse onto mousepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000118414", "images": ["AURORA/data/something/frames/183323/first.jpg", "AURORA/data/something/frames/183323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with a hairbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000118415", "images": ["AURORA/data/something/frames/1092/first.jpg", "AURORA/data/something/frames/1092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving laptop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118416", "images": ["AURORA/data/something/frames/124462/first.jpg", "AURORA/data/something/frames/124462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting wall with flashlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000118417", "images": ["AURORA/data/something/frames/95659/first.jpg", "AURORA/data/something/frames/95659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding receipt paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118418", "images": ["AURORA/data/something/frames/168781/first.jpg", "AURORA/data/something/frames/168781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118419", "images": ["AURORA/data/something/frames/125278/first.jpg", "AURORA/data/something/frames/125278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118420", "images": ["AURORA/data/something/frames/212728/first.jpg", "AURORA/data/something/frames/212728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118421", "images": ["AURORA/data/something/frames/181664/first.jpg", "AURORA/data/something/frames/181664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning chocolate upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118422", "images": ["AURORA/data/something/frames/63822/first.jpg", "AURORA/data/something/frames/63822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a phone charger into a multi-socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118423", "images": ["AURORA/data/something/frames/193566/first.jpg", "AURORA/data/something/frames/193566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding quiz paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118424", "images": ["AURORA/data/something/frames/171781/first.jpg", "AURORA/data/something/frames/171781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable away from eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118425", "images": ["AURORA/data/something/frames/22635/first.jpg", "AURORA/data/something/frames/22635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118426", "images": ["AURORA/data/something/frames/199666/first.jpg", "AURORA/data/something/frames/199666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118427", "images": ["AURORA/data/something/frames/4814/first.jpg", "AURORA/data/something/frames/4814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toothbrush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118428", "images": ["AURORA/data/something/frames/129217/first.jpg", "AURORA/data/something/frames/129217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing folded paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118429", "images": ["AURORA/data/something/frames/7905/first.jpg", "AURORA/data/something/frames/7905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of cylinder without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118430", "images": ["AURORA/data/something/frames/5398/first.jpg", "AURORA/data/something/frames/5398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118431", "images": ["AURORA/data/something/frames/10832/first.jpg", "AURORA/data/something/frames/10832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a baking tray with pens on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118432", "images": ["AURORA/data/something/frames/161067/first.jpg", "AURORA/data/something/frames/161067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black disc case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118433", "images": ["AURORA/data/something/frames/188267/first.jpg", "AURORA/data/something/frames/188267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118434", "images": ["AURORA/data/something/frames/82586/first.jpg", "AURORA/data/something/frames/82586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a notebook from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118435", "images": ["AURORA/data/something/frames/152500/first.jpg", "AURORA/data/something/frames/152500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red colour pencil sharpener away from wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000118436", "images": ["AURORA/data/something/frames/91046/first.jpg", "AURORA/data/something/frames/91046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tiolet paper closer to tiolet paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118437", "images": ["AURORA/data/something/frames/195196/first.jpg", "AURORA/data/something/frames/195196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tissue into a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118438", "images": ["AURORA/data/something/frames/30936/first.jpg", "AURORA/data/something/frames/30936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118439", "images": ["AURORA/data/something/frames/70385/first.jpg", "AURORA/data/something/frames/70385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a pencil on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118440", "images": ["AURORA/data/something/frames/69360/first.jpg", "AURORA/data/something/frames/69360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118441", "images": ["AURORA/data/something/frames/186713/first.jpg", "AURORA/data/something/frames/186713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lemon into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118442", "images": ["AURORA/data/something/frames/188976/first.jpg", "AURORA/data/something/frames/188976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teaspoon and lime on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118443", "images": ["AURORA/data/something/frames/75490/first.jpg", "AURORA/data/something/frames/75490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cd with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118444", "images": ["AURORA/data/something/frames/144328/first.jpg", "AURORA/data/something/frames/144328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118445", "images": ["AURORA/data/something/frames/44255/first.jpg", "AURORA/data/something/frames/44255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118446", "images": ["AURORA/data/something/frames/53775/first.jpg", "AURORA/data/something/frames/53775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bicycle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118447", "images": ["AURORA/data/something/frames/95402/first.jpg", "AURORA/data/something/frames/95402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control in front of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118448", "images": ["AURORA/data/something/frames/201241/first.jpg", "AURORA/data/something/frames/201241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a sofa so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118449", "images": ["AURORA/data/something/frames/168812/first.jpg", "AURORA/data/something/frames/168812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sandwich into lunchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000118450", "images": ["AURORA/data/something/frames/193859/first.jpg", "AURORA/data/something/frames/193859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mobilephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118451", "images": ["AURORA/data/something/frames/23186/first.jpg", "AURORA/data/something/frames/23186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118452", "images": ["AURORA/data/something/frames/29263/first.jpg", "AURORA/data/something/frames/29263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118453", "images": ["AURORA/data/something/frames/22290/first.jpg", "AURORA/data/something/frames/22290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching calculator with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118454", "images": ["AURORA/data/something/frames/35156/first.jpg", "AURORA/data/something/frames/35156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red pot holder from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118455", "images": ["AURORA/data/something/frames/35541/first.jpg", "AURORA/data/something/frames/35541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a match box with a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118456", "images": ["AURORA/data/something/frames/28403/first.jpg", "AURORA/data/something/frames/28403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000118457", "images": ["AURORA/data/something/frames/123846/first.jpg", "AURORA/data/something/frames/123846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mint onto laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118458", "images": ["AURORA/data/something/frames/75747/first.jpg", "AURORA/data/something/frames/75747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ice tray on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118459", "images": ["AURORA/data/something/frames/217273/first.jpg", "AURORA/data/something/frames/217273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a green cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118460", "images": ["AURORA/data/something/frames/15524/first.jpg", "AURORA/data/something/frames/15524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a vase with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118461", "images": ["AURORA/data/something/frames/109781/first.jpg", "AURORA/data/something/frames/109781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sharpener from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118462", "images": ["AURORA/data/something/frames/22001/first.jpg", "AURORA/data/something/frames/22001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering television remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118463", "images": ["AURORA/data/something/frames/83447/first.jpg", "AURORA/data/something/frames/83447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pole with a fly swatter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118464", "images": ["AURORA/data/something/frames/38270/first.jpg", "AURORA/data/something/frames/38270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118465", "images": ["AURORA/data/something/frames/110987/first.jpg", "AURORA/data/something/frames/110987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118466", "images": ["AURORA/data/something/frames/186785/first.jpg", "AURORA/data/something/frames/186785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with block"}, {"from": "gpt", "value": ""}]} +{"id": "000000118467", "images": ["AURORA/data/something/frames/171560/first.jpg", "AURORA/data/something/frames/171560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118468", "images": ["AURORA/data/something/frames/86420/first.jpg", "AURORA/data/something/frames/86420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118469", "images": ["AURORA/data/something/frames/111223/first.jpg", "AURORA/data/something/frames/111223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118470", "images": ["AURORA/data/something/frames/179304/first.jpg", "AURORA/data/something/frames/179304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar of sugar upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118471", "images": ["AURORA/data/something/frames/198728/first.jpg", "AURORA/data/something/frames/198728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottletop over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118472", "images": ["AURORA/data/something/frames/95063/first.jpg", "AURORA/data/something/frames/95063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting coaster with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118473", "images": ["AURORA/data/something/frames/143197/first.jpg", "AURORA/data/something/frames/143197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spanner from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118474", "images": ["AURORA/data/something/frames/95036/first.jpg", "AURORA/data/something/frames/95036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching board with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118475", "images": ["AURORA/data/something/frames/27414/first.jpg", "AURORA/data/something/frames/27414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of mirror without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118476", "images": ["AURORA/data/something/frames/64711/first.jpg", "AURORA/data/something/frames/64711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a screw on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118477", "images": ["AURORA/data/something/frames/51847/first.jpg", "AURORA/data/something/frames/51847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118478", "images": ["AURORA/data/something/frames/15387/first.jpg", "AURORA/data/something/frames/15387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bread into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118479", "images": ["AURORA/data/something/frames/30468/first.jpg", "AURORA/data/something/frames/30468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118480", "images": ["AURORA/data/something/frames/18865/first.jpg", "AURORA/data/something/frames/18865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug cage but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118481", "images": ["AURORA/data/something/frames/149043/first.jpg", "AURORA/data/something/frames/149043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a medicine bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118482", "images": ["AURORA/data/something/frames/132250/first.jpg", "AURORA/data/something/frames/132250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a flying disc underneath a child's chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000118483", "images": ["AURORA/data/something/frames/158769/first.jpg", "AURORA/data/something/frames/158769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118484", "images": ["AURORA/data/something/frames/26605/first.jpg", "AURORA/data/something/frames/26605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a marker away from a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118485", "images": ["AURORA/data/something/frames/76139/first.jpg", "AURORA/data/something/frames/76139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle, clip box and charger adapter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118486", "images": ["AURORA/data/something/frames/11951/first.jpg", "AURORA/data/something/frames/11951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and spoon closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118487", "images": ["AURORA/data/something/frames/63299/first.jpg", "AURORA/data/something/frames/63299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118488", "images": ["AURORA/data/something/frames/204859/first.jpg", "AURORA/data/something/frames/204859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat onto shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000118489", "images": ["AURORA/data/something/frames/66570/first.jpg", "AURORA/data/something/frames/66570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118490", "images": ["AURORA/data/something/frames/175503/first.jpg", "AURORA/data/something/frames/175503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118491", "images": ["AURORA/data/something/frames/145595/first.jpg", "AURORA/data/something/frames/145595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairbrush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118492", "images": ["AURORA/data/something/frames/140323/first.jpg", "AURORA/data/something/frames/140323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118493", "images": ["AURORA/data/something/frames/21852/first.jpg", "AURORA/data/something/frames/21852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting stress"}, {"from": "gpt", "value": ""}]} +{"id": "000000118494", "images": ["AURORA/data/something/frames/19580/first.jpg", "AURORA/data/something/frames/19580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118495", "images": ["AURORA/data/something/frames/130719/first.jpg", "AURORA/data/something/frames/130719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000118496", "images": ["AURORA/data/something/frames/132623/first.jpg", "AURORA/data/something/frames/132623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting diaper wipes into a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118497", "images": ["AURORA/data/something/frames/87053/first.jpg", "AURORA/data/something/frames/87053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118498", "images": ["AURORA/data/something/frames/21549/first.jpg", "AURORA/data/something/frames/21549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hairband with white colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118499", "images": ["AURORA/data/something/frames/106141/first.jpg", "AURORA/data/something/frames/106141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118500", "images": ["AURORA/data/something/frames/105469/first.jpg", "AURORA/data/something/frames/105469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving water bottle and water bottle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118501", "images": ["AURORA/data/something/frames/14807/first.jpg", "AURORA/data/something/frames/14807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape measure up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118502", "images": ["AURORA/data/something/frames/220710/first.jpg", "AURORA/data/something/frames/220710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118503", "images": ["AURORA/data/something/frames/188061/first.jpg", "AURORA/data/something/frames/188061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000118504", "images": ["AURORA/data/something/frames/165623/first.jpg", "AURORA/data/something/frames/165623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118505", "images": ["AURORA/data/something/frames/15143/first.jpg", "AURORA/data/something/frames/15143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil sharpener, a pot and a shoe on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118506", "images": ["AURORA/data/something/frames/175082/first.jpg", "AURORA/data/something/frames/175082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cellphone and mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118507", "images": ["AURORA/data/something/frames/109836/first.jpg", "AURORA/data/something/frames/109836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of four similar lighters"}, {"from": "gpt", "value": ""}]} +{"id": "000000118508", "images": ["AURORA/data/something/frames/144645/first.jpg", "AURORA/data/something/frames/144645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118509", "images": ["AURORA/data/something/frames/139494/first.jpg", "AURORA/data/something/frames/139494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118510", "images": ["AURORA/data/something/frames/137135/first.jpg", "AURORA/data/something/frames/137135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a colored pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118511", "images": ["AURORA/data/something/frames/91255/first.jpg", "AURORA/data/something/frames/91255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and duct tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118512", "images": ["AURORA/data/something/frames/42217/first.jpg", "AURORA/data/something/frames/42217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pencil so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118513", "images": ["AURORA/data/something/frames/203916/first.jpg", "AURORA/data/something/frames/203916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking water bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118514", "images": ["AURORA/data/something/frames/15819/first.jpg", "AURORA/data/something/frames/15819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bread, cup and cellphone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118515", "images": ["AURORA/data/something/frames/195600/first.jpg", "AURORA/data/something/frames/195600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000118516", "images": ["AURORA/data/something/frames/78566/first.jpg", "AURORA/data/something/frames/78566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a charger with a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000118517", "images": ["AURORA/data/something/frames/180050/first.jpg", "AURORA/data/something/frames/180050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000118518", "images": ["AURORA/data/something/frames/73431/first.jpg", "AURORA/data/something/frames/73431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000118519", "images": ["AURORA/data/something/frames/208954/first.jpg", "AURORA/data/something/frames/208954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118520", "images": ["AURORA/data/something/frames/25730/first.jpg", "AURORA/data/something/frames/25730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a phone with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118521", "images": ["AURORA/data/something/frames/128861/first.jpg", "AURORA/data/something/frames/128861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip magnet to stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000118522", "images": ["AURORA/data/something/frames/57628/first.jpg", "AURORA/data/something/frames/57628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000118523", "images": ["AURORA/data/something/frames/144213/first.jpg", "AURORA/data/something/frames/144213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pink golf ball being deflected from white plug adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118524", "images": ["AURORA/data/something/frames/135393/first.jpg", "AURORA/data/something/frames/135393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118525", "images": ["AURORA/data/something/frames/181328/first.jpg", "AURORA/data/something/frames/181328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118526", "images": ["AURORA/data/something/frames/139387/first.jpg", "AURORA/data/something/frames/139387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping dispenser over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118527", "images": ["AURORA/data/something/frames/76915/first.jpg", "AURORA/data/something/frames/76915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118528", "images": ["AURORA/data/something/frames/163592/first.jpg", "AURORA/data/something/frames/163592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118529", "images": ["AURORA/data/something/frames/125145/first.jpg", "AURORA/data/something/frames/125145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118530", "images": ["AURORA/data/something/frames/187284/first.jpg", "AURORA/data/something/frames/187284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring detergent into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000118531", "images": ["AURORA/data/something/frames/188040/first.jpg", "AURORA/data/something/frames/188040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with mobile on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118532", "images": ["AURORA/data/something/frames/65437/first.jpg", "AURORA/data/something/frames/65437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting soft, light yellow cooking glove"}, {"from": "gpt", "value": ""}]} +{"id": "000000118533", "images": ["AURORA/data/something/frames/49387/first.jpg", "AURORA/data/something/frames/49387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 wooden sticks onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118534", "images": ["AURORA/data/something/frames/101323/first.jpg", "AURORA/data/something/frames/101323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118535", "images": ["AURORA/data/something/frames/71155/first.jpg", "AURORA/data/something/frames/71155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging a worm out of wheat bran"}, {"from": "gpt", "value": ""}]} +{"id": "000000118536", "images": ["AURORA/data/something/frames/210387/first.jpg", "AURORA/data/something/frames/210387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118537", "images": ["AURORA/data/something/frames/62617/first.jpg", "AURORA/data/something/frames/62617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118538", "images": ["AURORA/data/something/frames/43790/first.jpg", "AURORA/data/something/frames/43790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118539", "images": ["AURORA/data/something/frames/197983/first.jpg", "AURORA/data/something/frames/197983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning starbucks cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118540", "images": ["AURORA/data/something/frames/102853/first.jpg", "AURORA/data/something/frames/102853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe and shoe closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118541", "images": ["AURORA/data/something/frames/144706/first.jpg", "AURORA/data/something/frames/144706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a computer mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118542", "images": ["AURORA/data/something/frames/6658/first.jpg", "AURORA/data/something/frames/6658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118543", "images": ["AURORA/data/something/frames/186837/first.jpg", "AURORA/data/something/frames/186837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting something with something on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118544", "images": ["AURORA/data/something/frames/109239/first.jpg", "AURORA/data/something/frames/109239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118545", "images": ["AURORA/data/something/frames/181557/first.jpg", "AURORA/data/something/frames/181557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys and pensil away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118546", "images": ["AURORA/data/something/frames/166887/first.jpg", "AURORA/data/something/frames/166887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking card"}, {"from": "gpt", "value": ""}]} +{"id": "000000118547", "images": ["AURORA/data/something/frames/29783/first.jpg", "AURORA/data/something/frames/29783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118548", "images": ["AURORA/data/something/frames/215967/first.jpg", "AURORA/data/something/frames/215967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with paint brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000118549", "images": ["AURORA/data/something/frames/97105/first.jpg", "AURORA/data/something/frames/97105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purse towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118550", "images": ["AURORA/data/something/frames/152949/first.jpg", "AURORA/data/something/frames/152949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118551", "images": ["AURORA/data/something/frames/193434/first.jpg", "AURORA/data/something/frames/193434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118552", "images": ["AURORA/data/something/frames/72427/first.jpg", "AURORA/data/something/frames/72427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading pate onto biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118553", "images": ["AURORA/data/something/frames/126314/first.jpg", "AURORA/data/something/frames/126314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping deoderant into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118554", "images": ["AURORA/data/something/frames/107242/first.jpg", "AURORA/data/something/frames/107242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tomato with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118555", "images": ["AURORA/data/something/frames/80543/first.jpg", "AURORA/data/something/frames/80543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118556", "images": ["AURORA/data/something/frames/201629/first.jpg", "AURORA/data/something/frames/201629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118557", "images": ["AURORA/data/something/frames/146002/first.jpg", "AURORA/data/something/frames/146002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118558", "images": ["AURORA/data/something/frames/153870/first.jpg", "AURORA/data/something/frames/153870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118559", "images": ["AURORA/data/something/frames/217459/first.jpg", "AURORA/data/something/frames/217459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a calculator onto a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000118560", "images": ["AURORA/data/something/frames/213573/first.jpg", "AURORA/data/something/frames/213573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler onto calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000118561", "images": ["AURORA/data/something/frames/56271/first.jpg", "AURORA/data/something/frames/56271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118562", "images": ["AURORA/data/something/frames/109857/first.jpg", "AURORA/data/something/frames/109857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118563", "images": ["AURORA/data/something/frames/188449/first.jpg", "AURORA/data/something/frames/188449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping marbles up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118564", "images": ["AURORA/data/something/frames/102319/first.jpg", "AURORA/data/something/frames/102319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118565", "images": ["AURORA/data/something/frames/193105/first.jpg", "AURORA/data/something/frames/193105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dish with dummy on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118566", "images": ["AURORA/data/something/frames/75027/first.jpg", "AURORA/data/something/frames/75027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a makeup brush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118567", "images": ["AURORA/data/something/frames/18022/first.jpg", "AURORA/data/something/frames/18022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with notebook on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118568", "images": ["AURORA/data/something/frames/162291/first.jpg", "AURORA/data/something/frames/162291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118569", "images": ["AURORA/data/something/frames/149465/first.jpg", "AURORA/data/something/frames/149465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pill bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118570", "images": ["AURORA/data/something/frames/69033/first.jpg", "AURORA/data/something/frames/69033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118571", "images": ["AURORA/data/something/frames/140292/first.jpg", "AURORA/data/something/frames/140292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering nail cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118572", "images": ["AURORA/data/something/frames/30271/first.jpg", "AURORA/data/something/frames/30271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a placemat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118573", "images": ["AURORA/data/something/frames/163541/first.jpg", "AURORA/data/something/frames/163541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching painting with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118574", "images": ["AURORA/data/something/frames/69142/first.jpg", "AURORA/data/something/frames/69142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) plunger of dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118575", "images": ["AURORA/data/something/frames/107629/first.jpg", "AURORA/data/something/frames/107629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118576", "images": ["AURORA/data/something/frames/10073/first.jpg", "AURORA/data/something/frames/10073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tangerine and tangerine closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118577", "images": ["AURORA/data/something/frames/70183/first.jpg", "AURORA/data/something/frames/70183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stone with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118578", "images": ["AURORA/data/something/frames/144971/first.jpg", "AURORA/data/something/frames/144971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote and the mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118579", "images": ["AURORA/data/something/frames/127516/first.jpg", "AURORA/data/something/frames/127516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118580", "images": ["AURORA/data/something/frames/122012/first.jpg", "AURORA/data/something/frames/122012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ink bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118581", "images": ["AURORA/data/something/frames/151732/first.jpg", "AURORA/data/something/frames/151732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118582", "images": ["AURORA/data/something/frames/209656/first.jpg", "AURORA/data/something/frames/209656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tin out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118583", "images": ["AURORA/data/something/frames/219597/first.jpg", "AURORA/data/something/frames/219597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118584", "images": ["AURORA/data/something/frames/151673/first.jpg", "AURORA/data/something/frames/151673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail clipper behind wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118585", "images": ["AURORA/data/something/frames/198264/first.jpg", "AURORA/data/something/frames/198264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar away from coffee"}, {"from": "gpt", "value": ""}]} +{"id": "000000118586", "images": ["AURORA/data/something/frames/100719/first.jpg", "AURORA/data/something/frames/100719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming brown bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118587", "images": ["AURORA/data/something/frames/132392/first.jpg", "AURORA/data/something/frames/132392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a bottle of honey on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118588", "images": ["AURORA/data/something/frames/150362/first.jpg", "AURORA/data/something/frames/150362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple microfiber from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118589", "images": ["AURORA/data/something/frames/48412/first.jpg", "AURORA/data/something/frames/48412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting scissors with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118590", "images": ["AURORA/data/something/frames/43072/first.jpg", "AURORA/data/something/frames/43072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118591", "images": ["AURORA/data/something/frames/110204/first.jpg", "AURORA/data/something/frames/110204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118592", "images": ["AURORA/data/something/frames/133470/first.jpg", "AURORA/data/something/frames/133470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000118593", "images": ["AURORA/data/something/frames/50203/first.jpg", "AURORA/data/something/frames/50203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118594", "images": ["AURORA/data/something/frames/100480/first.jpg", "AURORA/data/something/frames/100480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118595", "images": ["AURORA/data/something/frames/85414/first.jpg", "AURORA/data/something/frames/85414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pencil box without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118596", "images": ["AURORA/data/something/frames/217807/first.jpg", "AURORA/data/something/frames/217807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jbl in front of candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000118597", "images": ["AURORA/data/something/frames/192457/first.jpg", "AURORA/data/something/frames/192457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking footwear up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118598", "images": ["AURORA/data/something/frames/71259/first.jpg", "AURORA/data/something/frames/71259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118599", "images": ["AURORA/data/something/frames/12993/first.jpg", "AURORA/data/something/frames/12993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cube and a box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118600", "images": ["AURORA/data/something/frames/59710/first.jpg", "AURORA/data/something/frames/59710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup in front of fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000118601", "images": ["AURORA/data/something/frames/115996/first.jpg", "AURORA/data/something/frames/115996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118602", "images": ["AURORA/data/something/frames/104990/first.jpg", "AURORA/data/something/frames/104990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fluorescent light bulb into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118603", "images": ["AURORA/data/something/frames/26196/first.jpg", "AURORA/data/something/frames/26196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending diary so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118604", "images": ["AURORA/data/something/frames/189723/first.jpg", "AURORA/data/something/frames/189723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a bottletop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118605", "images": ["AURORA/data/something/frames/95277/first.jpg", "AURORA/data/something/frames/95277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a vase on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118606", "images": ["AURORA/data/something/frames/95473/first.jpg", "AURORA/data/something/frames/95473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118607", "images": ["AURORA/data/something/frames/134207/first.jpg", "AURORA/data/something/frames/134207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118608", "images": ["AURORA/data/something/frames/55333/first.jpg", "AURORA/data/something/frames/55333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118609", "images": ["AURORA/data/something/frames/48386/first.jpg", "AURORA/data/something/frames/48386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting charger with a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000118610", "images": ["AURORA/data/something/frames/213646/first.jpg", "AURORA/data/something/frames/213646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the signal lever up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118611", "images": ["AURORA/data/something/frames/217091/first.jpg", "AURORA/data/something/frames/217091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118612", "images": ["AURORA/data/something/frames/14440/first.jpg", "AURORA/data/something/frames/14440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto wheat bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118613", "images": ["AURORA/data/something/frames/81521/first.jpg", "AURORA/data/something/frames/81521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something that cannot actually stand upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118614", "images": ["AURORA/data/something/frames/203266/first.jpg", "AURORA/data/something/frames/203266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118615", "images": ["AURORA/data/something/frames/174724/first.jpg", "AURORA/data/something/frames/174724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto peanut butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118616", "images": ["AURORA/data/something/frames/60550/first.jpg", "AURORA/data/something/frames/60550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring bell on the edge of stand of stone so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118617", "images": ["AURORA/data/something/frames/65678/first.jpg", "AURORA/data/something/frames/65678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118618", "images": ["AURORA/data/something/frames/142355/first.jpg", "AURORA/data/something/frames/142355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading matxhboxes onto newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118619", "images": ["AURORA/data/something/frames/103922/first.jpg", "AURORA/data/something/frames/103922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dvd case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118620", "images": ["AURORA/data/something/frames/78730/first.jpg", "AURORA/data/something/frames/78730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a safety pin onto a slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118621", "images": ["AURORA/data/something/frames/98700/first.jpg", "AURORA/data/something/frames/98700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118622", "images": ["AURORA/data/something/frames/76262/first.jpg", "AURORA/data/something/frames/76262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting dog with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118623", "images": ["AURORA/data/something/frames/76188/first.jpg", "AURORA/data/something/frames/76188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lid in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118624", "images": ["AURORA/data/something/frames/42061/first.jpg", "AURORA/data/something/frames/42061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118625", "images": ["AURORA/data/something/frames/29459/first.jpg", "AURORA/data/something/frames/29459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118626", "images": ["AURORA/data/something/frames/26482/first.jpg", "AURORA/data/something/frames/26482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a tissue box, revealing a dvd behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118627", "images": ["AURORA/data/something/frames/92852/first.jpg", "AURORA/data/something/frames/92852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading chocolate onto waffel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118628", "images": ["AURORA/data/something/frames/88513/first.jpg", "AURORA/data/something/frames/88513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking red colour sharpner out of yellow container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118629", "images": ["AURORA/data/something/frames/180544/first.jpg", "AURORA/data/something/frames/180544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pool"}, {"from": "gpt", "value": ""}]} +{"id": "000000118630", "images": ["AURORA/data/something/frames/43177/first.jpg", "AURORA/data/something/frames/43177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting block into hole"}, {"from": "gpt", "value": ""}]} +{"id": "000000118631", "images": ["AURORA/data/something/frames/49025/first.jpg", "AURORA/data/something/frames/49025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing note pad from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118632", "images": ["AURORA/data/something/frames/191117/first.jpg", "AURORA/data/something/frames/191117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118633", "images": ["AURORA/data/something/frames/161576/first.jpg", "AURORA/data/something/frames/161576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toys into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118634", "images": ["AURORA/data/something/frames/126093/first.jpg", "AURORA/data/something/frames/126093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming motorbike"}, {"from": "gpt", "value": ""}]} +{"id": "000000118635", "images": ["AURORA/data/something/frames/1754/first.jpg", "AURORA/data/something/frames/1754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto karpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118636", "images": ["AURORA/data/something/frames/180372/first.jpg", "AURORA/data/something/frames/180372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing tape behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118637", "images": ["AURORA/data/something/frames/55067/first.jpg", "AURORA/data/something/frames/55067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a soda can on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118638", "images": ["AURORA/data/something/frames/15242/first.jpg", "AURORA/data/something/frames/15242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking color paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000118639", "images": ["AURORA/data/something/frames/143311/first.jpg", "AURORA/data/something/frames/143311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green chalk from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118640", "images": ["AURORA/data/something/frames/23934/first.jpg", "AURORA/data/something/frames/23934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cardboard box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118641", "images": ["AURORA/data/something/frames/87684/first.jpg", "AURORA/data/something/frames/87684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking highlighter out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118642", "images": ["AURORA/data/something/frames/163119/first.jpg", "AURORA/data/something/frames/163119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping container with pennies over, so pennies falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118643", "images": ["AURORA/data/something/frames/15512/first.jpg", "AURORA/data/something/frames/15512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118644", "images": ["AURORA/data/something/frames/149908/first.jpg", "AURORA/data/something/frames/149908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin in front of a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000118645", "images": ["AURORA/data/something/frames/10888/first.jpg", "AURORA/data/something/frames/10888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000118646", "images": ["AURORA/data/something/frames/26635/first.jpg", "AURORA/data/something/frames/26635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118647", "images": ["AURORA/data/something/frames/89783/first.jpg", "AURORA/data/something/frames/89783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paper heart up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118648", "images": ["AURORA/data/something/frames/6731/first.jpg", "AURORA/data/something/frames/6731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118649", "images": ["AURORA/data/something/frames/149607/first.jpg", "AURORA/data/something/frames/149607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pepper onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118650", "images": ["AURORA/data/something/frames/41645/first.jpg", "AURORA/data/something/frames/41645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an earphone into a mobile gadget"}, {"from": "gpt", "value": ""}]} +{"id": "000000118651", "images": ["AURORA/data/something/frames/89568/first.jpg", "AURORA/data/something/frames/89568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar onto another jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118652", "images": ["AURORA/data/something/frames/66638/first.jpg", "AURORA/data/something/frames/66638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118653", "images": ["AURORA/data/something/frames/216578/first.jpg", "AURORA/data/something/frames/216578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone next to yellowbook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118654", "images": ["AURORA/data/something/frames/125701/first.jpg", "AURORA/data/something/frames/125701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from behind of blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118655", "images": ["AURORA/data/something/frames/204496/first.jpg", "AURORA/data/something/frames/204496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118656", "images": ["AURORA/data/something/frames/9166/first.jpg", "AURORA/data/something/frames/9166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning deodorant upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118657", "images": ["AURORA/data/something/frames/54551/first.jpg", "AURORA/data/something/frames/54551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118658", "images": ["AURORA/data/something/frames/50514/first.jpg", "AURORA/data/something/frames/50514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118659", "images": ["AURORA/data/something/frames/174626/first.jpg", "AURORA/data/something/frames/174626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118660", "images": ["AURORA/data/something/frames/56964/first.jpg", "AURORA/data/something/frames/56964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118661", "images": ["AURORA/data/something/frames/156566/first.jpg", "AURORA/data/something/frames/156566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118662", "images": ["AURORA/data/something/frames/181782/first.jpg", "AURORA/data/something/frames/181782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spoon into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118663", "images": ["AURORA/data/something/frames/220513/first.jpg", "AURORA/data/something/frames/220513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking phone out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118664", "images": ["AURORA/data/something/frames/32068/first.jpg", "AURORA/data/something/frames/32068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting keys with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118665", "images": ["AURORA/data/something/frames/137808/first.jpg", "AURORA/data/something/frames/137808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000118666", "images": ["AURORA/data/something/frames/12388/first.jpg", "AURORA/data/something/frames/12388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118667", "images": ["AURORA/data/something/frames/142652/first.jpg", "AURORA/data/something/frames/142652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118668", "images": ["AURORA/data/something/frames/209892/first.jpg", "AURORA/data/something/frames/209892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118669", "images": ["AURORA/data/something/frames/150031/first.jpg", "AURORA/data/something/frames/150031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting usb cable upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118670", "images": ["AURORA/data/something/frames/171877/first.jpg", "AURORA/data/something/frames/171877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118671", "images": ["AURORA/data/something/frames/99513/first.jpg", "AURORA/data/something/frames/99513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000118672", "images": ["AURORA/data/something/frames/158318/first.jpg", "AURORA/data/something/frames/158318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle being deflected from carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000118673", "images": ["AURORA/data/something/frames/98211/first.jpg", "AURORA/data/something/frames/98211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into power bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118674", "images": ["AURORA/data/something/frames/169659/first.jpg", "AURORA/data/something/frames/169659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic knife until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118675", "images": ["AURORA/data/something/frames/137213/first.jpg", "AURORA/data/something/frames/137213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118676", "images": ["AURORA/data/something/frames/168973/first.jpg", "AURORA/data/something/frames/168973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin to other coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000118677", "images": ["AURORA/data/something/frames/110156/first.jpg", "AURORA/data/something/frames/110156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cookie upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118678", "images": ["AURORA/data/something/frames/201910/first.jpg", "AURORA/data/something/frames/201910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118679", "images": ["AURORA/data/something/frames/60555/first.jpg", "AURORA/data/something/frames/60555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming krishna idole"}, {"from": "gpt", "value": ""}]} +{"id": "000000118680", "images": ["AURORA/data/something/frames/217121/first.jpg", "AURORA/data/something/frames/217121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming lorry"}, {"from": "gpt", "value": ""}]} +{"id": "000000118681", "images": ["AURORA/data/something/frames/123565/first.jpg", "AURORA/data/something/frames/123565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118682", "images": ["AURORA/data/something/frames/143289/first.jpg", "AURORA/data/something/frames/143289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118683", "images": ["AURORA/data/something/frames/51701/first.jpg", "AURORA/data/something/frames/51701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118684", "images": ["AURORA/data/something/frames/145214/first.jpg", "AURORA/data/something/frames/145214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118685", "images": ["AURORA/data/something/frames/174245/first.jpg", "AURORA/data/something/frames/174245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fluorescent light bulb next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118686", "images": ["AURORA/data/something/frames/122370/first.jpg", "AURORA/data/something/frames/122370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000118687", "images": ["AURORA/data/something/frames/68062/first.jpg", "AURORA/data/something/frames/68062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: paper box colliding with another paper box and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118688", "images": ["AURORA/data/something/frames/181326/first.jpg", "AURORA/data/something/frames/181326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting placemat with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118689", "images": ["AURORA/data/something/frames/199111/first.jpg", "AURORA/data/something/frames/199111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of shampoo container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118690", "images": ["AURORA/data/something/frames/96588/first.jpg", "AURORA/data/something/frames/96588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending steel spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118691", "images": ["AURORA/data/something/frames/180398/first.jpg", "AURORA/data/something/frames/180398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of a door lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118692", "images": ["AURORA/data/something/frames/67732/first.jpg", "AURORA/data/something/frames/67732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118693", "images": ["AURORA/data/something/frames/104179/first.jpg", "AURORA/data/something/frames/104179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118694", "images": ["AURORA/data/something/frames/166450/first.jpg", "AURORA/data/something/frames/166450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118695", "images": ["AURORA/data/something/frames/167779/first.jpg", "AURORA/data/something/frames/167779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118696", "images": ["AURORA/data/something/frames/119934/first.jpg", "AURORA/data/something/frames/119934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange underneath notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118697", "images": ["AURORA/data/something/frames/32587/first.jpg", "AURORA/data/something/frames/32587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing thread into a coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118698", "images": ["AURORA/data/something/frames/156523/first.jpg", "AURORA/data/something/frames/156523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118699", "images": ["AURORA/data/something/frames/67306/first.jpg", "AURORA/data/something/frames/67306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chocolate onto tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000118700", "images": ["AURORA/data/something/frames/146990/first.jpg", "AURORA/data/something/frames/146990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118701", "images": ["AURORA/data/something/frames/133314/first.jpg", "AURORA/data/something/frames/133314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a plate on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118702", "images": ["AURORA/data/something/frames/152550/first.jpg", "AURORA/data/something/frames/152550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a flashlight away from a smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118703", "images": ["AURORA/data/something/frames/10449/first.jpg", "AURORA/data/something/frames/10449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying clock on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118704", "images": ["AURORA/data/something/frames/200684/first.jpg", "AURORA/data/something/frames/200684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip box onto stencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118705", "images": ["AURORA/data/something/frames/30690/first.jpg", "AURORA/data/something/frames/30690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lotion container on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118706", "images": ["AURORA/data/something/frames/207410/first.jpg", "AURORA/data/something/frames/207410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118707", "images": ["AURORA/data/something/frames/185504/first.jpg", "AURORA/data/something/frames/185504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118708", "images": ["AURORA/data/something/frames/17367/first.jpg", "AURORA/data/something/frames/17367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000118709", "images": ["AURORA/data/something/frames/63938/first.jpg", "AURORA/data/something/frames/63938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118710", "images": ["AURORA/data/something/frames/182551/first.jpg", "AURORA/data/something/frames/182551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smart phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118711", "images": ["AURORA/data/something/frames/49208/first.jpg", "AURORA/data/something/frames/49208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118712", "images": ["AURORA/data/something/frames/43615/first.jpg", "AURORA/data/something/frames/43615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118713", "images": ["AURORA/data/something/frames/56562/first.jpg", "AURORA/data/something/frames/56562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a hairdryer into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118714", "images": ["AURORA/data/something/frames/219444/first.jpg", "AURORA/data/something/frames/219444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone onto lotion container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118715", "images": ["AURORA/data/something/frames/21830/first.jpg", "AURORA/data/something/frames/21830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000118716", "images": ["AURORA/data/something/frames/76136/first.jpg", "AURORA/data/something/frames/76136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking piece of garbage"}, {"from": "gpt", "value": ""}]} +{"id": "000000118717", "images": ["AURORA/data/something/frames/63783/first.jpg", "AURORA/data/something/frames/63783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow behind basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118718", "images": ["AURORA/data/something/frames/45444/first.jpg", "AURORA/data/something/frames/45444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118719", "images": ["AURORA/data/something/frames/76426/first.jpg", "AURORA/data/something/frames/76426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118720", "images": ["AURORA/data/something/frames/67492/first.jpg", "AURORA/data/something/frames/67492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking red toy car from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118721", "images": ["AURORA/data/something/frames/188907/first.jpg", "AURORA/data/something/frames/188907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118722", "images": ["AURORA/data/something/frames/17284/first.jpg", "AURORA/data/something/frames/17284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118723", "images": ["AURORA/data/something/frames/195590/first.jpg", "AURORA/data/something/frames/195590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mircowave"}, {"from": "gpt", "value": ""}]} +{"id": "000000118724", "images": ["AURORA/data/something/frames/206602/first.jpg", "AURORA/data/something/frames/206602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote, lipbalm and keychain on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118725", "images": ["AURORA/data/something/frames/53473/first.jpg", "AURORA/data/something/frames/53473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000118726", "images": ["AURORA/data/something/frames/146187/first.jpg", "AURORA/data/something/frames/146187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118727", "images": ["AURORA/data/something/frames/212416/first.jpg", "AURORA/data/something/frames/212416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118728", "images": ["AURORA/data/something/frames/116582/first.jpg", "AURORA/data/something/frames/116582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118729", "images": ["AURORA/data/something/frames/79740/first.jpg", "AURORA/data/something/frames/79740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118730", "images": ["AURORA/data/something/frames/91964/first.jpg", "AURORA/data/something/frames/91964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing handle onto door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118731", "images": ["AURORA/data/something/frames/13540/first.jpg", "AURORA/data/something/frames/13540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into a pen case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118732", "images": ["AURORA/data/something/frames/78494/first.jpg", "AURORA/data/something/frames/78494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118733", "images": ["AURORA/data/something/frames/177586/first.jpg", "AURORA/data/something/frames/177586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118734", "images": ["AURORA/data/something/frames/60110/first.jpg", "AURORA/data/something/frames/60110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118735", "images": ["AURORA/data/something/frames/96030/first.jpg", "AURORA/data/something/frames/96030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy car away from toy man"}, {"from": "gpt", "value": ""}]} +{"id": "000000118736", "images": ["AURORA/data/something/frames/188482/first.jpg", "AURORA/data/something/frames/188482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118737", "images": ["AURORA/data/something/frames/35314/first.jpg", "AURORA/data/something/frames/35314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden stick closer to red hair band"}, {"from": "gpt", "value": ""}]} +{"id": "000000118738", "images": ["AURORA/data/something/frames/55511/first.jpg", "AURORA/data/something/frames/55511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118739", "images": ["AURORA/data/something/frames/210836/first.jpg", "AURORA/data/something/frames/210836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118740", "images": ["AURORA/data/something/frames/119936/first.jpg", "AURORA/data/something/frames/119936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a notebook upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118741", "images": ["AURORA/data/something/frames/166187/first.jpg", "AURORA/data/something/frames/166187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118742", "images": ["AURORA/data/something/frames/84316/first.jpg", "AURORA/data/something/frames/84316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glue with screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000118743", "images": ["AURORA/data/something/frames/65684/first.jpg", "AURORA/data/something/frames/65684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118744", "images": ["AURORA/data/something/frames/20379/first.jpg", "AURORA/data/something/frames/20379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118745", "images": ["AURORA/data/something/frames/123713/first.jpg", "AURORA/data/something/frames/123713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118746", "images": ["AURORA/data/something/frames/118950/first.jpg", "AURORA/data/something/frames/118950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a nail-brush on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118747", "images": ["AURORA/data/something/frames/178115/first.jpg", "AURORA/data/something/frames/178115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a wallet upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118748", "images": ["AURORA/data/something/frames/132440/first.jpg", "AURORA/data/something/frames/132440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mobile phone from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118749", "images": ["AURORA/data/something/frames/31658/first.jpg", "AURORA/data/something/frames/31658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coffee from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118750", "images": ["AURORA/data/something/frames/121668/first.jpg", "AURORA/data/something/frames/121668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming waist basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118751", "images": ["AURORA/data/something/frames/207651/first.jpg", "AURORA/data/something/frames/207651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera into hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118752", "images": ["AURORA/data/something/frames/17176/first.jpg", "AURORA/data/something/frames/17176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118753", "images": ["AURORA/data/something/frames/56889/first.jpg", "AURORA/data/something/frames/56889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118754", "images": ["AURORA/data/something/frames/116863/first.jpg", "AURORA/data/something/frames/116863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling watch out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118755", "images": ["AURORA/data/something/frames/111677/first.jpg", "AURORA/data/something/frames/111677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118756", "images": ["AURORA/data/something/frames/97085/first.jpg", "AURORA/data/something/frames/97085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118757", "images": ["AURORA/data/something/frames/51243/first.jpg", "AURORA/data/something/frames/51243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto coffee table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118758", "images": ["AURORA/data/something/frames/55773/first.jpg", "AURORA/data/something/frames/55773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting orange cup with key"}, {"from": "gpt", "value": ""}]} +{"id": "000000118759", "images": ["AURORA/data/something/frames/27382/first.jpg", "AURORA/data/something/frames/27382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an accumulator so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118760", "images": ["AURORA/data/something/frames/190022/first.jpg", "AURORA/data/something/frames/190022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a big ball with cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000118761", "images": ["AURORA/data/something/frames/150551/first.jpg", "AURORA/data/something/frames/150551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into beaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000118762", "images": ["AURORA/data/something/frames/210684/first.jpg", "AURORA/data/something/frames/210684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending something so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118763", "images": ["AURORA/data/something/frames/134399/first.jpg", "AURORA/data/something/frames/134399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with clip on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118764", "images": ["AURORA/data/something/frames/52343/first.jpg", "AURORA/data/something/frames/52343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118765", "images": ["AURORA/data/something/frames/81318/first.jpg", "AURORA/data/something/frames/81318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118766", "images": ["AURORA/data/something/frames/121756/first.jpg", "AURORA/data/something/frames/121756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cigarette pack behind a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118767", "images": ["AURORA/data/something/frames/84104/first.jpg", "AURORA/data/something/frames/84104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling lipstick from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118768", "images": ["AURORA/data/something/frames/168294/first.jpg", "AURORA/data/something/frames/168294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching paper to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118769", "images": ["AURORA/data/something/frames/181154/first.jpg", "AURORA/data/something/frames/181154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping banana up with cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118770", "images": ["AURORA/data/something/frames/83090/first.jpg", "AURORA/data/something/frames/83090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118771", "images": ["AURORA/data/something/frames/174788/first.jpg", "AURORA/data/something/frames/174788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118772", "images": ["AURORA/data/something/frames/52026/first.jpg", "AURORA/data/something/frames/52026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone wire into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118773", "images": ["AURORA/data/something/frames/76639/first.jpg", "AURORA/data/something/frames/76639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cookie jar and glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118774", "images": ["AURORA/data/something/frames/82090/first.jpg", "AURORA/data/something/frames/82090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming red watch box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118775", "images": ["AURORA/data/something/frames/11477/first.jpg", "AURORA/data/something/frames/11477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cylindrical battery and a pocket watch so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118776", "images": ["AURORA/data/something/frames/149237/first.jpg", "AURORA/data/something/frames/149237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing a sheet of paper into two pieces into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118777", "images": ["AURORA/data/something/frames/193251/first.jpg", "AURORA/data/something/frames/193251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118778", "images": ["AURORA/data/something/frames/201420/first.jpg", "AURORA/data/something/frames/201420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming eggplant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118779", "images": ["AURORA/data/something/frames/136563/first.jpg", "AURORA/data/something/frames/136563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glue in front of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118780", "images": ["AURORA/data/something/frames/167239/first.jpg", "AURORA/data/something/frames/167239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bead into an organizer box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118781", "images": ["AURORA/data/something/frames/4319/first.jpg", "AURORA/data/something/frames/4319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 coasters onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118782", "images": ["AURORA/data/something/frames/67155/first.jpg", "AURORA/data/something/frames/67155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cigarette down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118783", "images": ["AURORA/data/something/frames/106098/first.jpg", "AURORA/data/something/frames/106098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air conditioning unit into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118784", "images": ["AURORA/data/something/frames/219037/first.jpg", "AURORA/data/something/frames/219037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a stuffed bear off of a dresser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118785", "images": ["AURORA/data/something/frames/204551/first.jpg", "AURORA/data/something/frames/204551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a can with a pencil on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118786", "images": ["AURORA/data/something/frames/127585/first.jpg", "AURORA/data/something/frames/127585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping small canister over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118787", "images": ["AURORA/data/something/frames/98819/first.jpg", "AURORA/data/something/frames/98819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cellphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118788", "images": ["AURORA/data/something/frames/206689/first.jpg", "AURORA/data/something/frames/206689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nailpolish on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118789", "images": ["AURORA/data/something/frames/158643/first.jpg", "AURORA/data/something/frames/158643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118790", "images": ["AURORA/data/something/frames/41828/first.jpg", "AURORA/data/something/frames/41828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118791", "images": ["AURORA/data/something/frames/87145/first.jpg", "AURORA/data/something/frames/87145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one spray bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118792", "images": ["AURORA/data/something/frames/207200/first.jpg", "AURORA/data/something/frames/207200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tail from behind of a cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118793", "images": ["AURORA/data/something/frames/208045/first.jpg", "AURORA/data/something/frames/208045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hair brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118794", "images": ["AURORA/data/something/frames/110143/first.jpg", "AURORA/data/something/frames/110143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118795", "images": ["AURORA/data/something/frames/39831/first.jpg", "AURORA/data/something/frames/39831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118796", "images": ["AURORA/data/something/frames/171488/first.jpg", "AURORA/data/something/frames/171488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plush doll so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118797", "images": ["AURORA/data/something/frames/130325/first.jpg", "AURORA/data/something/frames/130325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118798", "images": ["AURORA/data/something/frames/39672/first.jpg", "AURORA/data/something/frames/39672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottles with bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118799", "images": ["AURORA/data/something/frames/70940/first.jpg", "AURORA/data/something/frames/70940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing chip bag into bigger bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118800", "images": ["AURORA/data/something/frames/91488/first.jpg", "AURORA/data/something/frames/91488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box behind a stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000118801", "images": ["AURORA/data/something/frames/114641/first.jpg", "AURORA/data/something/frames/114641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clock and pill bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118802", "images": ["AURORA/data/something/frames/81012/first.jpg", "AURORA/data/something/frames/81012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118803", "images": ["AURORA/data/something/frames/39756/first.jpg", "AURORA/data/something/frames/39756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118804", "images": ["AURORA/data/something/frames/117524/first.jpg", "AURORA/data/something/frames/117524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic flower closer to toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000118805", "images": ["AURORA/data/something/frames/145532/first.jpg", "AURORA/data/something/frames/145532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy onto tile"}, {"from": "gpt", "value": ""}]} +{"id": "000000118806", "images": ["AURORA/data/something/frames/33671/first.jpg", "AURORA/data/something/frames/33671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sheet into can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118807", "images": ["AURORA/data/something/frames/3839/first.jpg", "AURORA/data/something/frames/3839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush, scissors and comb on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118808", "images": ["AURORA/data/something/frames/22200/first.jpg", "AURORA/data/something/frames/22200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle opener and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118809", "images": ["AURORA/data/something/frames/100026/first.jpg", "AURORA/data/something/frames/100026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting airscrew"}, {"from": "gpt", "value": ""}]} +{"id": "000000118810", "images": ["AURORA/data/something/frames/68862/first.jpg", "AURORA/data/something/frames/68862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a wrist band with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118811", "images": ["AURORA/data/something/frames/195082/first.jpg", "AURORA/data/something/frames/195082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a beer can away from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118812", "images": ["AURORA/data/something/frames/57070/first.jpg", "AURORA/data/something/frames/57070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118813", "images": ["AURORA/data/something/frames/177266/first.jpg", "AURORA/data/something/frames/177266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into power socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118814", "images": ["AURORA/data/something/frames/118082/first.jpg", "AURORA/data/something/frames/118082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a book page"}, {"from": "gpt", "value": ""}]} +{"id": "000000118815", "images": ["AURORA/data/something/frames/220761/first.jpg", "AURORA/data/something/frames/220761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an apple next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118816", "images": ["AURORA/data/something/frames/67092/first.jpg", "AURORA/data/something/frames/67092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat behind shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000118817", "images": ["AURORA/data/something/frames/45135/first.jpg", "AURORA/data/something/frames/45135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118818", "images": ["AURORA/data/something/frames/139001/first.jpg", "AURORA/data/something/frames/139001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118819", "images": ["AURORA/data/something/frames/55424/first.jpg", "AURORA/data/something/frames/55424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lightningbulb of lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000118820", "images": ["AURORA/data/something/frames/176239/first.jpg", "AURORA/data/something/frames/176239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118821", "images": ["AURORA/data/something/frames/169723/first.jpg", "AURORA/data/something/frames/169723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into connector"}, {"from": "gpt", "value": ""}]} +{"id": "000000118822", "images": ["AURORA/data/something/frames/15622/first.jpg", "AURORA/data/something/frames/15622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118823", "images": ["AURORA/data/something/frames/9407/first.jpg", "AURORA/data/something/frames/9407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000118824", "images": ["AURORA/data/something/frames/114693/first.jpg", "AURORA/data/something/frames/114693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a collar up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118825", "images": ["AURORA/data/something/frames/34767/first.jpg", "AURORA/data/something/frames/34767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming purple microfiber"}, {"from": "gpt", "value": ""}]} +{"id": "000000118826", "images": ["AURORA/data/something/frames/196675/first.jpg", "AURORA/data/something/frames/196675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering snail shell with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118827", "images": ["AURORA/data/something/frames/196305/first.jpg", "AURORA/data/something/frames/196305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118828", "images": ["AURORA/data/something/frames/160835/first.jpg", "AURORA/data/something/frames/160835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chalk up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118829", "images": ["AURORA/data/something/frames/65088/first.jpg", "AURORA/data/something/frames/65088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118830", "images": ["AURORA/data/something/frames/10126/first.jpg", "AURORA/data/something/frames/10126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting magnifying glass up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118831", "images": ["AURORA/data/something/frames/171030/first.jpg", "AURORA/data/something/frames/171030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118832", "images": ["AURORA/data/something/frames/216565/first.jpg", "AURORA/data/something/frames/216565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000118833", "images": ["AURORA/data/something/frames/174835/first.jpg", "AURORA/data/something/frames/174835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: gummy ball being deflected from tennis ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000118834", "images": ["AURORA/data/something/frames/193046/first.jpg", "AURORA/data/something/frames/193046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving crayon closer to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118835", "images": ["AURORA/data/something/frames/83949/first.jpg", "AURORA/data/something/frames/83949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pepper shaker on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118836", "images": ["AURORA/data/something/frames/131836/first.jpg", "AURORA/data/something/frames/131836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118837", "images": ["AURORA/data/something/frames/171174/first.jpg", "AURORA/data/something/frames/171174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming the tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000118838", "images": ["AURORA/data/something/frames/44142/first.jpg", "AURORA/data/something/frames/44142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting chair with racket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118839", "images": ["AURORA/data/something/frames/150212/first.jpg", "AURORA/data/something/frames/150212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118840", "images": ["AURORA/data/something/frames/5589/first.jpg", "AURORA/data/something/frames/5589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pompom"}, {"from": "gpt", "value": ""}]} +{"id": "000000118841", "images": ["AURORA/data/something/frames/97560/first.jpg", "AURORA/data/something/frames/97560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting laptop onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118842", "images": ["AURORA/data/something/frames/49392/first.jpg", "AURORA/data/something/frames/49392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keyd"}, {"from": "gpt", "value": ""}]} +{"id": "000000118843", "images": ["AURORA/data/something/frames/171871/first.jpg", "AURORA/data/something/frames/171871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118844", "images": ["AURORA/data/something/frames/6949/first.jpg", "AURORA/data/something/frames/6949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white colour board clip down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118845", "images": ["AURORA/data/something/frames/34330/first.jpg", "AURORA/data/something/frames/34330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118846", "images": ["AURORA/data/something/frames/213968/first.jpg", "AURORA/data/something/frames/213968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118847", "images": ["AURORA/data/something/frames/43497/first.jpg", "AURORA/data/something/frames/43497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118848", "images": ["AURORA/data/something/frames/125910/first.jpg", "AURORA/data/something/frames/125910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118849", "images": ["AURORA/data/something/frames/214327/first.jpg", "AURORA/data/something/frames/214327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118850", "images": ["AURORA/data/something/frames/154473/first.jpg", "AURORA/data/something/frames/154473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118851", "images": ["AURORA/data/something/frames/194086/first.jpg", "AURORA/data/something/frames/194086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118852", "images": ["AURORA/data/something/frames/24813/first.jpg", "AURORA/data/something/frames/24813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching light bulb to socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118853", "images": ["AURORA/data/something/frames/34431/first.jpg", "AURORA/data/something/frames/34431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pair of socks into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118854", "images": ["AURORA/data/something/frames/171534/first.jpg", "AURORA/data/something/frames/171534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaves of plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118855", "images": ["AURORA/data/something/frames/1014/first.jpg", "AURORA/data/something/frames/1014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering fossil with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000118856", "images": ["AURORA/data/something/frames/139649/first.jpg", "AURORA/data/something/frames/139649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soda bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118857", "images": ["AURORA/data/something/frames/39518/first.jpg", "AURORA/data/something/frames/39518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering white colour board clip with duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000118858", "images": ["AURORA/data/something/frames/112252/first.jpg", "AURORA/data/something/frames/112252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118859", "images": ["AURORA/data/something/frames/187802/first.jpg", "AURORA/data/something/frames/187802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing feeding bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118860", "images": ["AURORA/data/something/frames/163771/first.jpg", "AURORA/data/something/frames/163771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bell pepper with a group of bell peppers"}, {"from": "gpt", "value": ""}]} +{"id": "000000118861", "images": ["AURORA/data/something/frames/24489/first.jpg", "AURORA/data/something/frames/24489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing flowers from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118862", "images": ["AURORA/data/something/frames/50186/first.jpg", "AURORA/data/something/frames/50186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine away from stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000118863", "images": ["AURORA/data/something/frames/146714/first.jpg", "AURORA/data/something/frames/146714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118864", "images": ["AURORA/data/something/frames/188755/first.jpg", "AURORA/data/something/frames/188755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plant with coffin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118865", "images": ["AURORA/data/something/frames/209027/first.jpg", "AURORA/data/something/frames/209027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118866", "images": ["AURORA/data/something/frames/118434/first.jpg", "AURORA/data/something/frames/118434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping necklace in front of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118867", "images": ["AURORA/data/something/frames/141432/first.jpg", "AURORA/data/something/frames/141432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to faucet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118868", "images": ["AURORA/data/something/frames/110590/first.jpg", "AURORA/data/something/frames/110590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting xbox game with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118869", "images": ["AURORA/data/something/frames/13962/first.jpg", "AURORA/data/something/frames/13962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling flour onto mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118870", "images": ["AURORA/data/something/frames/201315/first.jpg", "AURORA/data/something/frames/201315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118871", "images": ["AURORA/data/something/frames/152835/first.jpg", "AURORA/data/something/frames/152835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000118872", "images": ["AURORA/data/something/frames/112050/first.jpg", "AURORA/data/something/frames/112050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118873", "images": ["AURORA/data/something/frames/86588/first.jpg", "AURORA/data/something/frames/86588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118874", "images": ["AURORA/data/something/frames/51920/first.jpg", "AURORA/data/something/frames/51920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118875", "images": ["AURORA/data/something/frames/163685/first.jpg", "AURORA/data/something/frames/163685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the glass bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118876", "images": ["AURORA/data/something/frames/13339/first.jpg", "AURORA/data/something/frames/13339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting mascara tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000118877", "images": ["AURORA/data/something/frames/91775/first.jpg", "AURORA/data/something/frames/91775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a picture upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118878", "images": ["AURORA/data/something/frames/154735/first.jpg", "AURORA/data/something/frames/154735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000118879", "images": ["AURORA/data/something/frames/43685/first.jpg", "AURORA/data/something/frames/43685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118880", "images": ["AURORA/data/something/frames/191149/first.jpg", "AURORA/data/something/frames/191149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118881", "images": ["AURORA/data/something/frames/205805/first.jpg", "AURORA/data/something/frames/205805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big ball and small ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118882", "images": ["AURORA/data/something/frames/109420/first.jpg", "AURORA/data/something/frames/109420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a lid up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118883", "images": ["AURORA/data/something/frames/208158/first.jpg", "AURORA/data/something/frames/208158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into pc"}, {"from": "gpt", "value": ""}]} +{"id": "000000118884", "images": ["AURORA/data/something/frames/110495/first.jpg", "AURORA/data/something/frames/110495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup with milk over, so milk falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118885", "images": ["AURORA/data/something/frames/161643/first.jpg", "AURORA/data/something/frames/161643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with tissue paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118886", "images": ["AURORA/data/something/frames/66961/first.jpg", "AURORA/data/something/frames/66961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118887", "images": ["AURORA/data/something/frames/167687/first.jpg", "AURORA/data/something/frames/167687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118888", "images": ["AURORA/data/something/frames/136015/first.jpg", "AURORA/data/something/frames/136015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an iron from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118889", "images": ["AURORA/data/something/frames/103594/first.jpg", "AURORA/data/something/frames/103594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118890", "images": ["AURORA/data/something/frames/34012/first.jpg", "AURORA/data/something/frames/34012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118891", "images": ["AURORA/data/something/frames/195629/first.jpg", "AURORA/data/something/frames/195629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from scotch tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118892", "images": ["AURORA/data/something/frames/110670/first.jpg", "AURORA/data/something/frames/110670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118893", "images": ["AURORA/data/something/frames/194148/first.jpg", "AURORA/data/something/frames/194148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118894", "images": ["AURORA/data/something/frames/113233/first.jpg", "AURORA/data/something/frames/113233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118895", "images": ["AURORA/data/something/frames/196408/first.jpg", "AURORA/data/something/frames/196408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting banana upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118896", "images": ["AURORA/data/something/frames/70324/first.jpg", "AURORA/data/something/frames/70324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a watch on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118897", "images": ["AURORA/data/something/frames/87849/first.jpg", "AURORA/data/something/frames/87849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118898", "images": ["AURORA/data/something/frames/171194/first.jpg", "AURORA/data/something/frames/171194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a loonie into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118899", "images": ["AURORA/data/something/frames/52422/first.jpg", "AURORA/data/something/frames/52422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118900", "images": ["AURORA/data/something/frames/201542/first.jpg", "AURORA/data/something/frames/201542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a red pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118901", "images": ["AURORA/data/something/frames/43344/first.jpg", "AURORA/data/something/frames/43344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing handout into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118902", "images": ["AURORA/data/something/frames/23324/first.jpg", "AURORA/data/something/frames/23324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting t-shirt packet on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118903", "images": ["AURORA/data/something/frames/12777/first.jpg", "AURORA/data/something/frames/12777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from waste basket with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118904", "images": ["AURORA/data/something/frames/151948/first.jpg", "AURORA/data/something/frames/151948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118905", "images": ["AURORA/data/something/frames/117425/first.jpg", "AURORA/data/something/frames/117425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing small freshmints"}, {"from": "gpt", "value": ""}]} +{"id": "000000118906", "images": ["AURORA/data/something/frames/157360/first.jpg", "AURORA/data/something/frames/157360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118907", "images": ["AURORA/data/something/frames/117478/first.jpg", "AURORA/data/something/frames/117478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} diff --git a/data/something/train.jsonl b/data/something/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..19bdcc729ad5af90eb75b7b0aef2502427fe1023 --- /dev/null +++ b/data/something/train.jsonl @@ -0,0 +1,13765 @@ +{"id": "000000105143", "images": ["AURORA/data/something/frames/154202/first.jpg", "AURORA/data/something/frames/154202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming camel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105144", "images": ["AURORA/data/something/frames/195805/first.jpg", "AURORA/data/something/frames/195805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging the plug into the socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105145", "images": ["AURORA/data/something/frames/190795/first.jpg", "AURORA/data/something/frames/190795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105146", "images": ["AURORA/data/something/frames/131125/first.jpg", "AURORA/data/something/frames/131125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending carrot until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105147", "images": ["AURORA/data/something/frames/220123/first.jpg", "AURORA/data/something/frames/220123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering card with papper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105148", "images": ["AURORA/data/something/frames/32/first.jpg", "AURORA/data/something/frames/32/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105149", "images": ["AURORA/data/something/frames/1147/first.jpg", "AURORA/data/something/frames/1147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile phone and specs closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105150", "images": ["AURORA/data/something/frames/141261/first.jpg", "AURORA/data/something/frames/141261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a plastic bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105151", "images": ["AURORA/data/something/frames/35295/first.jpg", "AURORA/data/something/frames/35295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105152", "images": ["AURORA/data/something/frames/184107/first.jpg", "AURORA/data/something/frames/184107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key chain up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105153", "images": ["AURORA/data/something/frames/5140/first.jpg", "AURORA/data/something/frames/5140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105154", "images": ["AURORA/data/something/frames/71847/first.jpg", "AURORA/data/something/frames/71847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105155", "images": ["AURORA/data/something/frames/133331/first.jpg", "AURORA/data/something/frames/133331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote control onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000105156", "images": ["AURORA/data/something/frames/149139/first.jpg", "AURORA/data/something/frames/149139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toy cars onto duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000105157", "images": ["AURORA/data/something/frames/157845/first.jpg", "AURORA/data/something/frames/157845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring apple juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105158", "images": ["AURORA/data/something/frames/183482/first.jpg", "AURORA/data/something/frames/183482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105159", "images": ["AURORA/data/something/frames/198475/first.jpg", "AURORA/data/something/frames/198475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105160", "images": ["AURORA/data/something/frames/102187/first.jpg", "AURORA/data/something/frames/102187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105161", "images": ["AURORA/data/something/frames/126211/first.jpg", "AURORA/data/something/frames/126211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing fork from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105162", "images": ["AURORA/data/something/frames/14292/first.jpg", "AURORA/data/something/frames/14292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a teaspoon behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105163", "images": ["AURORA/data/something/frames/208472/first.jpg", "AURORA/data/something/frames/208472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105164", "images": ["AURORA/data/something/frames/52696/first.jpg", "AURORA/data/something/frames/52696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with spoon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105165", "images": ["AURORA/data/something/frames/64006/first.jpg", "AURORA/data/something/frames/64006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105166", "images": ["AURORA/data/something/frames/37382/first.jpg", "AURORA/data/something/frames/37382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105167", "images": ["AURORA/data/something/frames/6853/first.jpg", "AURORA/data/something/frames/6853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming shampoo bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105168", "images": ["AURORA/data/something/frames/60360/first.jpg", "AURORA/data/something/frames/60360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a marker away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105169", "images": ["AURORA/data/something/frames/45788/first.jpg", "AURORA/data/something/frames/45788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rubbing alcohol from behind of a soup dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000105170", "images": ["AURORA/data/something/frames/176844/first.jpg", "AURORA/data/something/frames/176844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a doll with a face towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105171", "images": ["AURORA/data/something/frames/207533/first.jpg", "AURORA/data/something/frames/207533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling wheat bran onto a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105172", "images": ["AURORA/data/something/frames/53834/first.jpg", "AURORA/data/something/frames/53834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife next to glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105173", "images": ["AURORA/data/something/frames/98523/first.jpg", "AURORA/data/something/frames/98523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000105174", "images": ["AURORA/data/something/frames/89300/first.jpg", "AURORA/data/something/frames/89300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening oreo package"}, {"from": "gpt", "value": ""}]} +{"id": "000000105175", "images": ["AURORA/data/something/frames/174121/first.jpg", "AURORA/data/something/frames/174121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving foot of feet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105176", "images": ["AURORA/data/something/frames/81048/first.jpg", "AURORA/data/something/frames/81048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earring up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105177", "images": ["AURORA/data/something/frames/129488/first.jpg", "AURORA/data/something/frames/129488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105178", "images": ["AURORA/data/something/frames/216225/first.jpg", "AURORA/data/something/frames/216225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105179", "images": ["AURORA/data/something/frames/179339/first.jpg", "AURORA/data/something/frames/179339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking dominoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000105180", "images": ["AURORA/data/something/frames/97447/first.jpg", "AURORA/data/something/frames/97447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping phone over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105181", "images": ["AURORA/data/something/frames/112080/first.jpg", "AURORA/data/something/frames/112080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring canola oi into the hot pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000105182", "images": ["AURORA/data/something/frames/98309/first.jpg", "AURORA/data/something/frames/98309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105183", "images": ["AURORA/data/something/frames/136247/first.jpg", "AURORA/data/something/frames/136247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105184", "images": ["AURORA/data/something/frames/129901/first.jpg", "AURORA/data/something/frames/129901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a spray bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105185", "images": ["AURORA/data/something/frames/141900/first.jpg", "AURORA/data/something/frames/141900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a textbook onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105186", "images": ["AURORA/data/something/frames/103377/first.jpg", "AURORA/data/something/frames/103377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking headphones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105187", "images": ["AURORA/data/something/frames/95874/first.jpg", "AURORA/data/something/frames/95874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105188", "images": ["AURORA/data/something/frames/88820/first.jpg", "AURORA/data/something/frames/88820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering chapstick with a pot lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000105189", "images": ["AURORA/data/something/frames/95683/first.jpg", "AURORA/data/something/frames/95683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a toy with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105190", "images": ["AURORA/data/something/frames/104527/first.jpg", "AURORA/data/something/frames/104527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending small magazine so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105191", "images": ["AURORA/data/something/frames/215203/first.jpg", "AURORA/data/something/frames/215203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering computer with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105192", "images": ["AURORA/data/something/frames/44727/first.jpg", "AURORA/data/something/frames/44727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pc so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105193", "images": ["AURORA/data/something/frames/158759/first.jpg", "AURORA/data/something/frames/158759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105194", "images": ["AURORA/data/something/frames/218282/first.jpg", "AURORA/data/something/frames/218282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105195", "images": ["AURORA/data/something/frames/72990/first.jpg", "AURORA/data/something/frames/72990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105196", "images": ["AURORA/data/something/frames/169237/first.jpg", "AURORA/data/something/frames/169237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a teddy with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000105197", "images": ["AURORA/data/something/frames/133764/first.jpg", "AURORA/data/something/frames/133764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glasses with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105198", "images": ["AURORA/data/something/frames/16687/first.jpg", "AURORA/data/something/frames/16687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a rubber duck so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105199", "images": ["AURORA/data/something/frames/106031/first.jpg", "AURORA/data/something/frames/106031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tapemeasure across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105200", "images": ["AURORA/data/something/frames/74405/first.jpg", "AURORA/data/something/frames/74405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105201", "images": ["AURORA/data/something/frames/4887/first.jpg", "AURORA/data/something/frames/4887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105202", "images": ["AURORA/data/something/frames/156885/first.jpg", "AURORA/data/something/frames/156885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping teacup with tea over, so tea falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105203", "images": ["AURORA/data/something/frames/203074/first.jpg", "AURORA/data/something/frames/203074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from wastebin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105204", "images": ["AURORA/data/something/frames/16512/first.jpg", "AURORA/data/something/frames/16512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105205", "images": ["AURORA/data/something/frames/175606/first.jpg", "AURORA/data/something/frames/175606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching small green ball with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105206", "images": ["AURORA/data/something/frames/104280/first.jpg", "AURORA/data/something/frames/104280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup in front of outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105207", "images": ["AURORA/data/something/frames/111134/first.jpg", "AURORA/data/something/frames/111134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cream tube with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105208", "images": ["AURORA/data/something/frames/89658/first.jpg", "AURORA/data/something/frames/89658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bed sheet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105209", "images": ["AURORA/data/something/frames/767/first.jpg", "AURORA/data/something/frames/767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105210", "images": ["AURORA/data/something/frames/96652/first.jpg", "AURORA/data/something/frames/96652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping train car with chapstick over, so chapstick falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105211", "images": ["AURORA/data/something/frames/220035/first.jpg", "AURORA/data/something/frames/220035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cycle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105212", "images": ["AURORA/data/something/frames/149505/first.jpg", "AURORA/data/something/frames/149505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving compass with pencil down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105213", "images": ["AURORA/data/something/frames/49419/first.jpg", "AURORA/data/something/frames/49419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bowl with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105214", "images": ["AURORA/data/something/frames/86126/first.jpg", "AURORA/data/something/frames/86126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy colliding with toy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105215", "images": ["AURORA/data/something/frames/73765/first.jpg", "AURORA/data/something/frames/73765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball in front of headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000105216", "images": ["AURORA/data/something/frames/154331/first.jpg", "AURORA/data/something/frames/154331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a small toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000105217", "images": ["AURORA/data/something/frames/174861/first.jpg", "AURORA/data/something/frames/174861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow clay container into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105218", "images": ["AURORA/data/something/frames/33834/first.jpg", "AURORA/data/something/frames/33834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking soda can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105219", "images": ["AURORA/data/something/frames/35202/first.jpg", "AURORA/data/something/frames/35202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105220", "images": ["AURORA/data/something/frames/70281/first.jpg", "AURORA/data/something/frames/70281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming atm machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000105221", "images": ["AURORA/data/something/frames/32562/first.jpg", "AURORA/data/something/frames/32562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000105222", "images": ["AURORA/data/something/frames/22383/first.jpg", "AURORA/data/something/frames/22383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105223", "images": ["AURORA/data/something/frames/95173/first.jpg", "AURORA/data/something/frames/95173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105224", "images": ["AURORA/data/something/frames/45504/first.jpg", "AURORA/data/something/frames/45504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pick up van"}, {"from": "gpt", "value": ""}]} +{"id": "000000105225", "images": ["AURORA/data/something/frames/107032/first.jpg", "AURORA/data/something/frames/107032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto referigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000105226", "images": ["AURORA/data/something/frames/124218/first.jpg", "AURORA/data/something/frames/124218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming steps"}, {"from": "gpt", "value": ""}]} +{"id": "000000105227", "images": ["AURORA/data/something/frames/129920/first.jpg", "AURORA/data/something/frames/129920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105228", "images": ["AURORA/data/something/frames/67825/first.jpg", "AURORA/data/something/frames/67825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105229", "images": ["AURORA/data/something/frames/150802/first.jpg", "AURORA/data/something/frames/150802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105230", "images": ["AURORA/data/something/frames/101585/first.jpg", "AURORA/data/something/frames/101585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and spoon closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105231", "images": ["AURORA/data/something/frames/107628/first.jpg", "AURORA/data/something/frames/107628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 breads"}, {"from": "gpt", "value": ""}]} +{"id": "000000105232", "images": ["AURORA/data/something/frames/67266/first.jpg", "AURORA/data/something/frames/67266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105233", "images": ["AURORA/data/something/frames/124412/first.jpg", "AURORA/data/something/frames/124412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking ten twigs"}, {"from": "gpt", "value": ""}]} +{"id": "000000105234", "images": ["AURORA/data/something/frames/154312/first.jpg", "AURORA/data/something/frames/154312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving garlic presser towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105235", "images": ["AURORA/data/something/frames/148258/first.jpg", "AURORA/data/something/frames/148258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000105236", "images": ["AURORA/data/something/frames/220302/first.jpg", "AURORA/data/something/frames/220302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105237", "images": ["AURORA/data/something/frames/134700/first.jpg", "AURORA/data/something/frames/134700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glass with magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105238", "images": ["AURORA/data/something/frames/195636/first.jpg", "AURORA/data/something/frames/195636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105239", "images": ["AURORA/data/something/frames/9576/first.jpg", "AURORA/data/something/frames/9576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105240", "images": ["AURORA/data/something/frames/2185/first.jpg", "AURORA/data/something/frames/2185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105241", "images": ["AURORA/data/something/frames/48640/first.jpg", "AURORA/data/something/frames/48640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000105242", "images": ["AURORA/data/something/frames/10979/first.jpg", "AURORA/data/something/frames/10979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it notes down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105243", "images": ["AURORA/data/something/frames/132896/first.jpg", "AURORA/data/something/frames/132896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping small empty bottle into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105244", "images": ["AURORA/data/something/frames/144945/first.jpg", "AURORA/data/something/frames/144945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of mustrd upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105245", "images": ["AURORA/data/something/frames/206937/first.jpg", "AURORA/data/something/frames/206937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging duracell charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105246", "images": ["AURORA/data/something/frames/59128/first.jpg", "AURORA/data/something/frames/59128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000105247", "images": ["AURORA/data/something/frames/41668/first.jpg", "AURORA/data/something/frames/41668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring drink into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105248", "images": ["AURORA/data/something/frames/168937/first.jpg", "AURORA/data/something/frames/168937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lighter being deflected from control"}, {"from": "gpt", "value": ""}]} +{"id": "000000105249", "images": ["AURORA/data/something/frames/91516/first.jpg", "AURORA/data/something/frames/91516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cap into head"}, {"from": "gpt", "value": ""}]} +{"id": "000000105250", "images": ["AURORA/data/something/frames/36379/first.jpg", "AURORA/data/something/frames/36379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105251", "images": ["AURORA/data/something/frames/26004/first.jpg", "AURORA/data/something/frames/26004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105252", "images": ["AURORA/data/something/frames/182859/first.jpg", "AURORA/data/something/frames/182859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000105253", "images": ["AURORA/data/something/frames/96350/first.jpg", "AURORA/data/something/frames/96350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105254", "images": ["AURORA/data/something/frames/160798/first.jpg", "AURORA/data/something/frames/160798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105255", "images": ["AURORA/data/something/frames/151740/first.jpg", "AURORA/data/something/frames/151740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wireless mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000105256", "images": ["AURORA/data/something/frames/144311/first.jpg", "AURORA/data/something/frames/144311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105257", "images": ["AURORA/data/something/frames/121340/first.jpg", "AURORA/data/something/frames/121340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy car into plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105258", "images": ["AURORA/data/something/frames/187094/first.jpg", "AURORA/data/something/frames/187094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with calculator on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105259", "images": ["AURORA/data/something/frames/60396/first.jpg", "AURORA/data/something/frames/60396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105260", "images": ["AURORA/data/something/frames/87209/first.jpg", "AURORA/data/something/frames/87209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mason jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105261", "images": ["AURORA/data/something/frames/95042/first.jpg", "AURORA/data/something/frames/95042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105262", "images": ["AURORA/data/something/frames/154158/first.jpg", "AURORA/data/something/frames/154158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into blue cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105263", "images": ["AURORA/data/something/frames/88938/first.jpg", "AURORA/data/something/frames/88938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105264", "images": ["AURORA/data/something/frames/4949/first.jpg", "AURORA/data/something/frames/4949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105265", "images": ["AURORA/data/something/frames/154852/first.jpg", "AURORA/data/something/frames/154852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tomato out of a box of tomatoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000105266", "images": ["AURORA/data/something/frames/44577/first.jpg", "AURORA/data/something/frames/44577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of wallet without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105267", "images": ["AURORA/data/something/frames/28624/first.jpg", "AURORA/data/something/frames/28624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pepper shaker over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105268", "images": ["AURORA/data/something/frames/152912/first.jpg", "AURORA/data/something/frames/152912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105269", "images": ["AURORA/data/something/frames/197287/first.jpg", "AURORA/data/something/frames/197287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ring on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105270", "images": ["AURORA/data/something/frames/111338/first.jpg", "AURORA/data/something/frames/111338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubberband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000105271", "images": ["AURORA/data/something/frames/75999/first.jpg", "AURORA/data/something/frames/75999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wafer colliding with wafer and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105272", "images": ["AURORA/data/something/frames/63526/first.jpg", "AURORA/data/something/frames/63526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105273", "images": ["AURORA/data/something/frames/45227/first.jpg", "AURORA/data/something/frames/45227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming jackfruits"}, {"from": "gpt", "value": ""}]} +{"id": "000000105274", "images": ["AURORA/data/something/frames/66432/first.jpg", "AURORA/data/something/frames/66432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of a white board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105275", "images": ["AURORA/data/something/frames/104293/first.jpg", "AURORA/data/something/frames/104293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lip balm and a laser toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105276", "images": ["AURORA/data/something/frames/217782/first.jpg", "AURORA/data/something/frames/217782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting clip box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105277", "images": ["AURORA/data/something/frames/179385/first.jpg", "AURORA/data/something/frames/179385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105278", "images": ["AURORA/data/something/frames/6774/first.jpg", "AURORA/data/something/frames/6774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mouse from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105279", "images": ["AURORA/data/something/frames/173425/first.jpg", "AURORA/data/something/frames/173425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105280", "images": ["AURORA/data/something/frames/41732/first.jpg", "AURORA/data/something/frames/41732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pillow onto a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000105281", "images": ["AURORA/data/something/frames/173242/first.jpg", "AURORA/data/something/frames/173242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000105282", "images": ["AURORA/data/something/frames/43549/first.jpg", "AURORA/data/something/frames/43549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving button of light switch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105283", "images": ["AURORA/data/something/frames/167907/first.jpg", "AURORA/data/something/frames/167907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen from a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105284", "images": ["AURORA/data/something/frames/91216/first.jpg", "AURORA/data/something/frames/91216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick behind a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105285", "images": ["AURORA/data/something/frames/211630/first.jpg", "AURORA/data/something/frames/211630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105286", "images": ["AURORA/data/something/frames/133798/first.jpg", "AURORA/data/something/frames/133798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box in front of a lip balm"}, {"from": "gpt", "value": ""}]} +{"id": "000000105287", "images": ["AURORA/data/something/frames/192470/first.jpg", "AURORA/data/something/frames/192470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glue stick and eraser away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105288", "images": ["AURORA/data/something/frames/203018/first.jpg", "AURORA/data/something/frames/203018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book underneath book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105289", "images": ["AURORA/data/something/frames/18785/first.jpg", "AURORA/data/something/frames/18785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cell phones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105290", "images": ["AURORA/data/something/frames/207766/first.jpg", "AURORA/data/something/frames/207766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle closer to pencil holders"}, {"from": "gpt", "value": ""}]} +{"id": "000000105291", "images": ["AURORA/data/something/frames/209129/first.jpg", "AURORA/data/something/frames/209129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting statue with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105292", "images": ["AURORA/data/something/frames/169125/first.jpg", "AURORA/data/something/frames/169125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pen so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105293", "images": ["AURORA/data/something/frames/151527/first.jpg", "AURORA/data/something/frames/151527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a remote without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105294", "images": ["AURORA/data/something/frames/180046/first.jpg", "AURORA/data/something/frames/180046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hand bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105295", "images": ["AURORA/data/something/frames/152375/first.jpg", "AURORA/data/something/frames/152375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105296", "images": ["AURORA/data/something/frames/191558/first.jpg", "AURORA/data/something/frames/191558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling vasmol bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105297", "images": ["AURORA/data/something/frames/12621/first.jpg", "AURORA/data/something/frames/12621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000105298", "images": ["AURORA/data/something/frames/130007/first.jpg", "AURORA/data/something/frames/130007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paperclip with notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000105299", "images": ["AURORA/data/something/frames/68922/first.jpg", "AURORA/data/something/frames/68922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fuel can away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105300", "images": ["AURORA/data/something/frames/169513/first.jpg", "AURORA/data/something/frames/169513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and soap away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105301", "images": ["AURORA/data/something/frames/163246/first.jpg", "AURORA/data/something/frames/163246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000105302", "images": ["AURORA/data/something/frames/76274/first.jpg", "AURORA/data/something/frames/76274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105303", "images": ["AURORA/data/something/frames/8551/first.jpg", "AURORA/data/something/frames/8551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105304", "images": ["AURORA/data/something/frames/153414/first.jpg", "AURORA/data/something/frames/153414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105305", "images": ["AURORA/data/something/frames/132100/first.jpg", "AURORA/data/something/frames/132100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting marker up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105306", "images": ["AURORA/data/something/frames/184818/first.jpg", "AURORA/data/something/frames/184818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a laptop power adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105307", "images": ["AURORA/data/something/frames/165192/first.jpg", "AURORA/data/something/frames/165192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving head charger and head charger closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105308", "images": ["AURORA/data/something/frames/98584/first.jpg", "AURORA/data/something/frames/98584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sandals next to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000105309", "images": ["AURORA/data/something/frames/31892/first.jpg", "AURORA/data/something/frames/31892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of box without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105310", "images": ["AURORA/data/something/frames/208470/first.jpg", "AURORA/data/something/frames/208470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105311", "images": ["AURORA/data/something/frames/159635/first.jpg", "AURORA/data/something/frames/159635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105312", "images": ["AURORA/data/something/frames/214517/first.jpg", "AURORA/data/something/frames/214517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105313", "images": ["AURORA/data/something/frames/5335/first.jpg", "AURORA/data/something/frames/5335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105314", "images": ["AURORA/data/something/frames/35659/first.jpg", "AURORA/data/something/frames/35659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box of tissues on the edge of a table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105315", "images": ["AURORA/data/something/frames/172748/first.jpg", "AURORA/data/something/frames/172748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a bracelet so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000105316", "images": ["AURORA/data/something/frames/184196/first.jpg", "AURORA/data/something/frames/184196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000105317", "images": ["AURORA/data/something/frames/74086/first.jpg", "AURORA/data/something/frames/74086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105318", "images": ["AURORA/data/something/frames/8842/first.jpg", "AURORA/data/something/frames/8842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105319", "images": ["AURORA/data/something/frames/188369/first.jpg", "AURORA/data/something/frames/188369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking my dog so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105320", "images": ["AURORA/data/something/frames/145850/first.jpg", "AURORA/data/something/frames/145850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105321", "images": ["AURORA/data/something/frames/2863/first.jpg", "AURORA/data/something/frames/2863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105322", "images": ["AURORA/data/something/frames/100149/first.jpg", "AURORA/data/something/frames/100149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle into a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105323", "images": ["AURORA/data/something/frames/63857/first.jpg", "AURORA/data/something/frames/63857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pellet to other pellets"}, {"from": "gpt", "value": ""}]} +{"id": "000000105324", "images": ["AURORA/data/something/frames/110553/first.jpg", "AURORA/data/something/frames/110553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105325", "images": ["AURORA/data/something/frames/161834/first.jpg", "AURORA/data/something/frames/161834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking poking plastic spray once so that it falls so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105326", "images": ["AURORA/data/something/frames/18944/first.jpg", "AURORA/data/something/frames/18944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105327", "images": ["AURORA/data/something/frames/74394/first.jpg", "AURORA/data/something/frames/74394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching notebook with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105328", "images": ["AURORA/data/something/frames/42793/first.jpg", "AURORA/data/something/frames/42793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105329", "images": ["AURORA/data/something/frames/102660/first.jpg", "AURORA/data/something/frames/102660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105330", "images": ["AURORA/data/something/frames/107944/first.jpg", "AURORA/data/something/frames/107944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a water can colliding with another water can and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105331", "images": ["AURORA/data/something/frames/127342/first.jpg", "AURORA/data/something/frames/127342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: coin of inr 2 colliding with coin of inr 1 and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105332", "images": ["AURORA/data/something/frames/45070/first.jpg", "AURORA/data/something/frames/45070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105333", "images": ["AURORA/data/something/frames/218395/first.jpg", "AURORA/data/something/frames/218395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering shaker with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105334", "images": ["AURORA/data/something/frames/201710/first.jpg", "AURORA/data/something/frames/201710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mascara bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105335", "images": ["AURORA/data/something/frames/53020/first.jpg", "AURORA/data/something/frames/53020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a hat out of decorative shell"}, {"from": "gpt", "value": ""}]} +{"id": "000000105336", "images": ["AURORA/data/something/frames/168634/first.jpg", "AURORA/data/something/frames/168634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105337", "images": ["AURORA/data/something/frames/149646/first.jpg", "AURORA/data/something/frames/149646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a game into an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000105338", "images": ["AURORA/data/something/frames/169117/first.jpg", "AURORA/data/something/frames/169117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105339", "images": ["AURORA/data/something/frames/187318/first.jpg", "AURORA/data/something/frames/187318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 cans of compressed fuel onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105340", "images": ["AURORA/data/something/frames/35365/first.jpg", "AURORA/data/something/frames/35365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105341", "images": ["AURORA/data/something/frames/40312/first.jpg", "AURORA/data/something/frames/40312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting record book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105342", "images": ["AURORA/data/something/frames/139818/first.jpg", "AURORA/data/something/frames/139818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet underneath a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105343", "images": ["AURORA/data/something/frames/152719/first.jpg", "AURORA/data/something/frames/152719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105344", "images": ["AURORA/data/something/frames/71873/first.jpg", "AURORA/data/something/frames/71873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sandwich out of lunchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000105345", "images": ["AURORA/data/something/frames/181318/first.jpg", "AURORA/data/something/frames/181318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000105346", "images": ["AURORA/data/something/frames/198362/first.jpg", "AURORA/data/something/frames/198362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105347", "images": ["AURORA/data/something/frames/97601/first.jpg", "AURORA/data/something/frames/97601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and usb cable closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105348", "images": ["AURORA/data/something/frames/102700/first.jpg", "AURORA/data/something/frames/102700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sand up with a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000105349", "images": ["AURORA/data/something/frames/17650/first.jpg", "AURORA/data/something/frames/17650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105350", "images": ["AURORA/data/something/frames/111964/first.jpg", "AURORA/data/something/frames/111964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105351", "images": ["AURORA/data/something/frames/4768/first.jpg", "AURORA/data/something/frames/4768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105352", "images": ["AURORA/data/something/frames/163214/first.jpg", "AURORA/data/something/frames/163214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105353", "images": ["AURORA/data/something/frames/130060/first.jpg", "AURORA/data/something/frames/130060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming white book marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105354", "images": ["AURORA/data/something/frames/128518/first.jpg", "AURORA/data/something/frames/128518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105355", "images": ["AURORA/data/something/frames/47791/first.jpg", "AURORA/data/something/frames/47791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105356", "images": ["AURORA/data/something/frames/108836/first.jpg", "AURORA/data/something/frames/108836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping die into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105357", "images": ["AURORA/data/something/frames/182282/first.jpg", "AURORA/data/something/frames/182282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana and plate closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105358", "images": ["AURORA/data/something/frames/174675/first.jpg", "AURORA/data/something/frames/174675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105359", "images": ["AURORA/data/something/frames/130207/first.jpg", "AURORA/data/something/frames/130207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105360", "images": ["AURORA/data/something/frames/23102/first.jpg", "AURORA/data/something/frames/23102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug hole but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105361", "images": ["AURORA/data/something/frames/188898/first.jpg", "AURORA/data/something/frames/188898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105362", "images": ["AURORA/data/something/frames/203547/first.jpg", "AURORA/data/something/frames/203547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105363", "images": ["AURORA/data/something/frames/125653/first.jpg", "AURORA/data/something/frames/125653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105364", "images": ["AURORA/data/something/frames/64105/first.jpg", "AURORA/data/something/frames/64105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105365", "images": ["AURORA/data/something/frames/153990/first.jpg", "AURORA/data/something/frames/153990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a child toy with a hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105366", "images": ["AURORA/data/something/frames/208577/first.jpg", "AURORA/data/something/frames/208577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000105367", "images": ["AURORA/data/something/frames/218730/first.jpg", "AURORA/data/something/frames/218730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shirt behind videotapes"}, {"from": "gpt", "value": ""}]} +{"id": "000000105368", "images": ["AURORA/data/something/frames/62321/first.jpg", "AURORA/data/something/frames/62321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) dish cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105369", "images": ["AURORA/data/something/frames/213167/first.jpg", "AURORA/data/something/frames/213167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000105370", "images": ["AURORA/data/something/frames/208891/first.jpg", "AURORA/data/something/frames/208891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair pins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105371", "images": ["AURORA/data/something/frames/25435/first.jpg", "AURORA/data/something/frames/25435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105372", "images": ["AURORA/data/something/frames/10309/first.jpg", "AURORA/data/something/frames/10309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clip box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105373", "images": ["AURORA/data/something/frames/18068/first.jpg", "AURORA/data/something/frames/18068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105374", "images": ["AURORA/data/something/frames/214419/first.jpg", "AURORA/data/something/frames/214419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bangle being deflected from a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105375", "images": ["AURORA/data/something/frames/127427/first.jpg", "AURORA/data/something/frames/127427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow pen next to blue pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105376", "images": ["AURORA/data/something/frames/123212/first.jpg", "AURORA/data/something/frames/123212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000105377", "images": ["AURORA/data/something/frames/76637/first.jpg", "AURORA/data/something/frames/76637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105378", "images": ["AURORA/data/something/frames/65067/first.jpg", "AURORA/data/something/frames/65067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing closing plastic spray"}, {"from": "gpt", "value": ""}]} +{"id": "000000105379", "images": ["AURORA/data/something/frames/73278/first.jpg", "AURORA/data/something/frames/73278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing button onto printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105380", "images": ["AURORA/data/something/frames/21655/first.jpg", "AURORA/data/something/frames/21655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105381", "images": ["AURORA/data/something/frames/164127/first.jpg", "AURORA/data/something/frames/164127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a bottletop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105382", "images": ["AURORA/data/something/frames/205040/first.jpg", "AURORA/data/something/frames/205040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a matchbox from behind of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105383", "images": ["AURORA/data/something/frames/84352/first.jpg", "AURORA/data/something/frames/84352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105384", "images": ["AURORA/data/something/frames/210950/first.jpg", "AURORA/data/something/frames/210950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four cookies"}, {"from": "gpt", "value": ""}]} +{"id": "000000105385", "images": ["AURORA/data/something/frames/197965/first.jpg", "AURORA/data/something/frames/197965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft drink can away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105386", "images": ["AURORA/data/something/frames/72806/first.jpg", "AURORA/data/something/frames/72806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting duster and blue colour spectacle box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105387", "images": ["AURORA/data/something/frames/67692/first.jpg", "AURORA/data/something/frames/67692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting magnet on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105388", "images": ["AURORA/data/something/frames/164131/first.jpg", "AURORA/data/something/frames/164131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spanner from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105389", "images": ["AURORA/data/something/frames/13867/first.jpg", "AURORA/data/something/frames/13867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a battery to headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000105390", "images": ["AURORA/data/something/frames/11086/first.jpg", "AURORA/data/something/frames/11086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something behind something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105391", "images": ["AURORA/data/something/frames/65849/first.jpg", "AURORA/data/something/frames/65849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105392", "images": ["AURORA/data/something/frames/4441/first.jpg", "AURORA/data/something/frames/4441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cookie into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105393", "images": ["AURORA/data/something/frames/106051/first.jpg", "AURORA/data/something/frames/106051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cup with tissue on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105394", "images": ["AURORA/data/something/frames/165799/first.jpg", "AURORA/data/something/frames/165799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105395", "images": ["AURORA/data/something/frames/216679/first.jpg", "AURORA/data/something/frames/216679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105396", "images": ["AURORA/data/something/frames/47837/first.jpg", "AURORA/data/something/frames/47837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a safe"}, {"from": "gpt", "value": ""}]} +{"id": "000000105397", "images": ["AURORA/data/something/frames/3208/first.jpg", "AURORA/data/something/frames/3208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105398", "images": ["AURORA/data/something/frames/209765/first.jpg", "AURORA/data/something/frames/209765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000105399", "images": ["AURORA/data/something/frames/140826/first.jpg", "AURORA/data/something/frames/140826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book out of plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105400", "images": ["AURORA/data/something/frames/201101/first.jpg", "AURORA/data/something/frames/201101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105401", "images": ["AURORA/data/something/frames/217325/first.jpg", "AURORA/data/something/frames/217325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tool with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105402", "images": ["AURORA/data/something/frames/110477/first.jpg", "AURORA/data/something/frames/110477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into dish"}, {"from": "gpt", "value": ""}]} +{"id": "000000105403", "images": ["AURORA/data/something/frames/120311/first.jpg", "AURORA/data/something/frames/120311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105404", "images": ["AURORA/data/something/frames/105867/first.jpg", "AURORA/data/something/frames/105867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock away from lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105405", "images": ["AURORA/data/something/frames/9496/first.jpg", "AURORA/data/something/frames/9496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing wood box, revealing mobile behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000105406", "images": ["AURORA/data/something/frames/81269/first.jpg", "AURORA/data/something/frames/81269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping tea off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105407", "images": ["AURORA/data/something/frames/27154/first.jpg", "AURORA/data/something/frames/27154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105408", "images": ["AURORA/data/something/frames/83649/first.jpg", "AURORA/data/something/frames/83649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming me"}, {"from": "gpt", "value": ""}]} +{"id": "000000105409", "images": ["AURORA/data/something/frames/114106/first.jpg", "AURORA/data/something/frames/114106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bag in front of a spec"}, {"from": "gpt", "value": ""}]} +{"id": "000000105410", "images": ["AURORA/data/something/frames/150472/first.jpg", "AURORA/data/something/frames/150472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticker to table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105411", "images": ["AURORA/data/something/frames/72679/first.jpg", "AURORA/data/something/frames/72679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105412", "images": ["AURORA/data/something/frames/34882/first.jpg", "AURORA/data/something/frames/34882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a robot"}, {"from": "gpt", "value": ""}]} +{"id": "000000105413", "images": ["AURORA/data/something/frames/186671/first.jpg", "AURORA/data/something/frames/186671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105414", "images": ["AURORA/data/something/frames/157137/first.jpg", "AURORA/data/something/frames/157137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft drink can towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105415", "images": ["AURORA/data/something/frames/52843/first.jpg", "AURORA/data/something/frames/52843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105416", "images": ["AURORA/data/something/frames/135061/first.jpg", "AURORA/data/something/frames/135061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black sharpner with glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000105417", "images": ["AURORA/data/something/frames/34162/first.jpg", "AURORA/data/something/frames/34162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting diary with punching machine on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105418", "images": ["AURORA/data/something/frames/123678/first.jpg", "AURORA/data/something/frames/123678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tape onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105419", "images": ["AURORA/data/something/frames/174027/first.jpg", "AURORA/data/something/frames/174027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105420", "images": ["AURORA/data/something/frames/125947/first.jpg", "AURORA/data/something/frames/125947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into chocolate"}, {"from": "gpt", "value": ""}]} +{"id": "000000105421", "images": ["AURORA/data/something/frames/111509/first.jpg", "AURORA/data/something/frames/111509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105422", "images": ["AURORA/data/something/frames/135568/first.jpg", "AURORA/data/something/frames/135568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000105423", "images": ["AURORA/data/something/frames/220360/first.jpg", "AURORA/data/something/frames/220360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105424", "images": ["AURORA/data/something/frames/219838/first.jpg", "AURORA/data/something/frames/219838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying stone in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105425", "images": ["AURORA/data/something/frames/82723/first.jpg", "AURORA/data/something/frames/82723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000105426", "images": ["AURORA/data/something/frames/168986/first.jpg", "AURORA/data/something/frames/168986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105427", "images": ["AURORA/data/something/frames/54222/first.jpg", "AURORA/data/something/frames/54222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105428", "images": ["AURORA/data/something/frames/103402/first.jpg", "AURORA/data/something/frames/103402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the air off of the air"}, {"from": "gpt", "value": ""}]} +{"id": "000000105429", "images": ["AURORA/data/something/frames/206745/first.jpg", "AURORA/data/something/frames/206745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon onto a container so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105430", "images": ["AURORA/data/something/frames/205381/first.jpg", "AURORA/data/something/frames/205381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cloth up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105431", "images": ["AURORA/data/something/frames/181241/first.jpg", "AURORA/data/something/frames/181241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ring next to bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105432", "images": ["AURORA/data/something/frames/156280/first.jpg", "AURORA/data/something/frames/156280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105433", "images": ["AURORA/data/something/frames/143988/first.jpg", "AURORA/data/something/frames/143988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mp3 player off of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105434", "images": ["AURORA/data/something/frames/35522/first.jpg", "AURORA/data/something/frames/35522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105435", "images": ["AURORA/data/something/frames/134490/first.jpg", "AURORA/data/something/frames/134490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing fridge door"}, {"from": "gpt", "value": ""}]} +{"id": "000000105436", "images": ["AURORA/data/something/frames/105525/first.jpg", "AURORA/data/something/frames/105525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105437", "images": ["AURORA/data/something/frames/46581/first.jpg", "AURORA/data/something/frames/46581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105438", "images": ["AURORA/data/something/frames/105972/first.jpg", "AURORA/data/something/frames/105972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pamphlet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105439", "images": ["AURORA/data/something/frames/183491/first.jpg", "AURORA/data/something/frames/183491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bear behind a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000105440", "images": ["AURORA/data/something/frames/182789/first.jpg", "AURORA/data/something/frames/182789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105441", "images": ["AURORA/data/something/frames/25290/first.jpg", "AURORA/data/something/frames/25290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pusher, nail cutter and nipper on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105442", "images": ["AURORA/data/something/frames/148441/first.jpg", "AURORA/data/something/frames/148441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle cap across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105443", "images": ["AURORA/data/something/frames/166003/first.jpg", "AURORA/data/something/frames/166003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000105444", "images": ["AURORA/data/something/frames/87210/first.jpg", "AURORA/data/something/frames/87210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving inhaler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105445", "images": ["AURORA/data/something/frames/99090/first.jpg", "AURORA/data/something/frames/99090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000105446", "images": ["AURORA/data/something/frames/134372/first.jpg", "AURORA/data/something/frames/134372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105447", "images": ["AURORA/data/something/frames/131278/first.jpg", "AURORA/data/something/frames/131278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105448", "images": ["AURORA/data/something/frames/185981/first.jpg", "AURORA/data/something/frames/185981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105449", "images": ["AURORA/data/something/frames/58789/first.jpg", "AURORA/data/something/frames/58789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105450", "images": ["AURORA/data/something/frames/53611/first.jpg", "AURORA/data/something/frames/53611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a lead into a wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105451", "images": ["AURORA/data/something/frames/142654/first.jpg", "AURORA/data/something/frames/142654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tomato and mandarin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105452", "images": ["AURORA/data/something/frames/131838/first.jpg", "AURORA/data/something/frames/131838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105453", "images": ["AURORA/data/something/frames/103954/first.jpg", "AURORA/data/something/frames/103954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming poster"}, {"from": "gpt", "value": ""}]} +{"id": "000000105454", "images": ["AURORA/data/something/frames/188950/first.jpg", "AURORA/data/something/frames/188950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105455", "images": ["AURORA/data/something/frames/6392/first.jpg", "AURORA/data/something/frames/6392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105456", "images": ["AURORA/data/something/frames/85972/first.jpg", "AURORA/data/something/frames/85972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105457", "images": ["AURORA/data/something/frames/11780/first.jpg", "AURORA/data/something/frames/11780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105458", "images": ["AURORA/data/something/frames/164847/first.jpg", "AURORA/data/something/frames/164847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toys next to toys"}, {"from": "gpt", "value": ""}]} +{"id": "000000105459", "images": ["AURORA/data/something/frames/152520/first.jpg", "AURORA/data/something/frames/152520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105460", "images": ["AURORA/data/something/frames/173497/first.jpg", "AURORA/data/something/frames/173497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many knives"}, {"from": "gpt", "value": ""}]} +{"id": "000000105461", "images": ["AURORA/data/something/frames/167119/first.jpg", "AURORA/data/something/frames/167119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105462", "images": ["AURORA/data/something/frames/194875/first.jpg", "AURORA/data/something/frames/194875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105463", "images": ["AURORA/data/something/frames/9655/first.jpg", "AURORA/data/something/frames/9655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening container of slime"}, {"from": "gpt", "value": ""}]} +{"id": "000000105464", "images": ["AURORA/data/something/frames/17836/first.jpg", "AURORA/data/something/frames/17836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cat behind cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000105465", "images": ["AURORA/data/something/frames/10569/first.jpg", "AURORA/data/something/frames/10569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105466", "images": ["AURORA/data/something/frames/116322/first.jpg", "AURORA/data/something/frames/116322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker and debit card on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105467", "images": ["AURORA/data/something/frames/204410/first.jpg", "AURORA/data/something/frames/204410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a salt shaker with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105468", "images": ["AURORA/data/something/frames/21256/first.jpg", "AURORA/data/something/frames/21256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bags into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105469", "images": ["AURORA/data/something/frames/148979/first.jpg", "AURORA/data/something/frames/148979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a cat with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105470", "images": ["AURORA/data/something/frames/181003/first.jpg", "AURORA/data/something/frames/181003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming posters"}, {"from": "gpt", "value": ""}]} +{"id": "000000105471", "images": ["AURORA/data/something/frames/50572/first.jpg", "AURORA/data/something/frames/50572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ball next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105472", "images": ["AURORA/data/something/frames/206260/first.jpg", "AURORA/data/something/frames/206260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105473", "images": ["AURORA/data/something/frames/188511/first.jpg", "AURORA/data/something/frames/188511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105474", "images": ["AURORA/data/something/frames/77527/first.jpg", "AURORA/data/something/frames/77527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a command hook up with post it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105475", "images": ["AURORA/data/something/frames/117728/first.jpg", "AURORA/data/something/frames/117728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe onto jar so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105476", "images": ["AURORA/data/something/frames/120585/first.jpg", "AURORA/data/something/frames/120585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000105477", "images": ["AURORA/data/something/frames/116233/first.jpg", "AURORA/data/something/frames/116233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a wipe into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105478", "images": ["AURORA/data/something/frames/46148/first.jpg", "AURORA/data/something/frames/46148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105479", "images": ["AURORA/data/something/frames/78698/first.jpg", "AURORA/data/something/frames/78698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate into pile"}, {"from": "gpt", "value": ""}]} +{"id": "000000105480", "images": ["AURORA/data/something/frames/55349/first.jpg", "AURORA/data/something/frames/55349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting duster and spectacle box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105481", "images": ["AURORA/data/something/frames/41967/first.jpg", "AURORA/data/something/frames/41967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a laptop charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105482", "images": ["AURORA/data/something/frames/58923/first.jpg", "AURORA/data/something/frames/58923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black charger adapter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105483", "images": ["AURORA/data/something/frames/41321/first.jpg", "AURORA/data/something/frames/41321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a stappler with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000105484", "images": ["AURORA/data/something/frames/176278/first.jpg", "AURORA/data/something/frames/176278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105485", "images": ["AURORA/data/something/frames/47312/first.jpg", "AURORA/data/something/frames/47312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105486", "images": ["AURORA/data/something/frames/105366/first.jpg", "AURORA/data/something/frames/105366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105487", "images": ["AURORA/data/something/frames/82488/first.jpg", "AURORA/data/something/frames/82488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissues into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105488", "images": ["AURORA/data/something/frames/32372/first.jpg", "AURORA/data/something/frames/32372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105489", "images": ["AURORA/data/something/frames/154425/first.jpg", "AURORA/data/something/frames/154425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of breadboard without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105490", "images": ["AURORA/data/something/frames/48022/first.jpg", "AURORA/data/something/frames/48022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from glass tumbler with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105491", "images": ["AURORA/data/something/frames/151796/first.jpg", "AURORA/data/something/frames/151796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashdrive into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105492", "images": ["AURORA/data/something/frames/206480/first.jpg", "AURORA/data/something/frames/206480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105493", "images": ["AURORA/data/something/frames/120767/first.jpg", "AURORA/data/something/frames/120767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105494", "images": ["AURORA/data/something/frames/214705/first.jpg", "AURORA/data/something/frames/214705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking red diary so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105495", "images": ["AURORA/data/something/frames/194471/first.jpg", "AURORA/data/something/frames/194471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105496", "images": ["AURORA/data/something/frames/59756/first.jpg", "AURORA/data/something/frames/59756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: garage opener being deflected from cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105497", "images": ["AURORA/data/something/frames/149031/first.jpg", "AURORA/data/something/frames/149031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting five gooseberry onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105498", "images": ["AURORA/data/something/frames/50584/first.jpg", "AURORA/data/something/frames/50584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105499", "images": ["AURORA/data/something/frames/125672/first.jpg", "AURORA/data/something/frames/125672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder clips behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105500", "images": ["AURORA/data/something/frames/38932/first.jpg", "AURORA/data/something/frames/38932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105501", "images": ["AURORA/data/something/frames/143179/first.jpg", "AURORA/data/something/frames/143179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon next to a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105502", "images": ["AURORA/data/something/frames/219206/first.jpg", "AURORA/data/something/frames/219206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105503", "images": ["AURORA/data/something/frames/151322/first.jpg", "AURORA/data/something/frames/151322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105504", "images": ["AURORA/data/something/frames/133037/first.jpg", "AURORA/data/something/frames/133037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an eraser and a bottlecap away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105505", "images": ["AURORA/data/something/frames/126202/first.jpg", "AURORA/data/something/frames/126202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105506", "images": ["AURORA/data/something/frames/130349/first.jpg", "AURORA/data/something/frames/130349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of cassette tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105507", "images": ["AURORA/data/something/frames/109736/first.jpg", "AURORA/data/something/frames/109736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105508", "images": ["AURORA/data/something/frames/117490/first.jpg", "AURORA/data/something/frames/117490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling dvd case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105509", "images": ["AURORA/data/something/frames/216211/first.jpg", "AURORA/data/something/frames/216211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a backpack onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105510", "images": ["AURORA/data/something/frames/146757/first.jpg", "AURORA/data/something/frames/146757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coat in front of a coat hanger"}, {"from": "gpt", "value": ""}]} +{"id": "000000105511", "images": ["AURORA/data/something/frames/141467/first.jpg", "AURORA/data/something/frames/141467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 staplers onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000105512", "images": ["AURORA/data/something/frames/88101/first.jpg", "AURORA/data/something/frames/88101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105513", "images": ["AURORA/data/something/frames/68496/first.jpg", "AURORA/data/something/frames/68496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a stuffed bunny"}, {"from": "gpt", "value": ""}]} +{"id": "000000105514", "images": ["AURORA/data/something/frames/54071/first.jpg", "AURORA/data/something/frames/54071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105515", "images": ["AURORA/data/something/frames/176994/first.jpg", "AURORA/data/something/frames/176994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pebble from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105516", "images": ["AURORA/data/something/frames/1431/first.jpg", "AURORA/data/something/frames/1431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing transperent sugar jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105517", "images": ["AURORA/data/something/frames/87587/first.jpg", "AURORA/data/something/frames/87587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105518", "images": ["AURORA/data/something/frames/20480/first.jpg", "AURORA/data/something/frames/20480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bag into small gift bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105519", "images": ["AURORA/data/something/frames/121922/first.jpg", "AURORA/data/something/frames/121922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red booklet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105520", "images": ["AURORA/data/something/frames/42321/first.jpg", "AURORA/data/something/frames/42321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000105521", "images": ["AURORA/data/something/frames/40619/first.jpg", "AURORA/data/something/frames/40619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000105522", "images": ["AURORA/data/something/frames/95483/first.jpg", "AURORA/data/something/frames/95483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something and something on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105523", "images": ["AURORA/data/something/frames/94123/first.jpg", "AURORA/data/something/frames/94123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ball off of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105524", "images": ["AURORA/data/something/frames/1334/first.jpg", "AURORA/data/something/frames/1334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into flower pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000105525", "images": ["AURORA/data/something/frames/119824/first.jpg", "AURORA/data/something/frames/119824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105526", "images": ["AURORA/data/something/frames/54513/first.jpg", "AURORA/data/something/frames/54513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and bottle so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105527", "images": ["AURORA/data/something/frames/119359/first.jpg", "AURORA/data/something/frames/119359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105528", "images": ["AURORA/data/something/frames/176577/first.jpg", "AURORA/data/something/frames/176577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105529", "images": ["AURORA/data/something/frames/87245/first.jpg", "AURORA/data/something/frames/87245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing card with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000105530", "images": ["AURORA/data/something/frames/19501/first.jpg", "AURORA/data/something/frames/19501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tissue into a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105531", "images": ["AURORA/data/something/frames/49364/first.jpg", "AURORA/data/something/frames/49364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching shampoo bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105532", "images": ["AURORA/data/something/frames/45213/first.jpg", "AURORA/data/something/frames/45213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105533", "images": ["AURORA/data/something/frames/64817/first.jpg", "AURORA/data/something/frames/64817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000105534", "images": ["AURORA/data/something/frames/28778/first.jpg", "AURORA/data/something/frames/28778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toothbrush in front of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105535", "images": ["AURORA/data/something/frames/155475/first.jpg", "AURORA/data/something/frames/155475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin in front of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105536", "images": ["AURORA/data/something/frames/91/first.jpg", "AURORA/data/something/frames/91/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a guitar pick to a ukelele"}, {"from": "gpt", "value": ""}]} +{"id": "000000105537", "images": ["AURORA/data/something/frames/90178/first.jpg", "AURORA/data/something/frames/90178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105538", "images": ["AURORA/data/something/frames/68995/first.jpg", "AURORA/data/something/frames/68995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping white chalk in front of duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000105539", "images": ["AURORA/data/something/frames/67471/first.jpg", "AURORA/data/something/frames/67471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105540", "images": ["AURORA/data/something/frames/106456/first.jpg", "AURORA/data/something/frames/106456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sideview mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000105541", "images": ["AURORA/data/something/frames/165323/first.jpg", "AURORA/data/something/frames/165323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming perfume"}, {"from": "gpt", "value": ""}]} +{"id": "000000105542", "images": ["AURORA/data/something/frames/154842/first.jpg", "AURORA/data/something/frames/154842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105543", "images": ["AURORA/data/something/frames/134862/first.jpg", "AURORA/data/something/frames/134862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105544", "images": ["AURORA/data/something/frames/80776/first.jpg", "AURORA/data/something/frames/80776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105545", "images": ["AURORA/data/something/frames/90889/first.jpg", "AURORA/data/something/frames/90889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving teaspoon of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105546", "images": ["AURORA/data/something/frames/187218/first.jpg", "AURORA/data/something/frames/187218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup off of wooden ledge"}, {"from": "gpt", "value": ""}]} +{"id": "000000105547", "images": ["AURORA/data/something/frames/111511/first.jpg", "AURORA/data/something/frames/111511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into the glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105548", "images": ["AURORA/data/something/frames/74663/first.jpg", "AURORA/data/something/frames/74663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a container into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105549", "images": ["AURORA/data/something/frames/105292/first.jpg", "AURORA/data/something/frames/105292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105550", "images": ["AURORA/data/something/frames/179191/first.jpg", "AURORA/data/something/frames/179191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching hat with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105551", "images": ["AURORA/data/something/frames/151275/first.jpg", "AURORA/data/something/frames/151275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing computer keyboard so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105552", "images": ["AURORA/data/something/frames/180192/first.jpg", "AURORA/data/something/frames/180192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105553", "images": ["AURORA/data/something/frames/204438/first.jpg", "AURORA/data/something/frames/204438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a glass, revealing a banana behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000105554", "images": ["AURORA/data/something/frames/106357/first.jpg", "AURORA/data/something/frames/106357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105555", "images": ["AURORA/data/something/frames/202294/first.jpg", "AURORA/data/something/frames/202294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle in front of a mallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105556", "images": ["AURORA/data/something/frames/143334/first.jpg", "AURORA/data/something/frames/143334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clip into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105557", "images": ["AURORA/data/something/frames/61506/first.jpg", "AURORA/data/something/frames/61506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling things on the table up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105558", "images": ["AURORA/data/something/frames/82744/first.jpg", "AURORA/data/something/frames/82744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000105559", "images": ["AURORA/data/something/frames/117856/first.jpg", "AURORA/data/something/frames/117856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105560", "images": ["AURORA/data/something/frames/91361/first.jpg", "AURORA/data/something/frames/91361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105561", "images": ["AURORA/data/something/frames/160277/first.jpg", "AURORA/data/something/frames/160277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and paper on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105562", "images": ["AURORA/data/something/frames/18678/first.jpg", "AURORA/data/something/frames/18678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a post-it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105563", "images": ["AURORA/data/something/frames/68661/first.jpg", "AURORA/data/something/frames/68661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting grape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105564", "images": ["AURORA/data/something/frames/4247/first.jpg", "AURORA/data/something/frames/4247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candy out of sugar case"}, {"from": "gpt", "value": ""}]} +{"id": "000000105565", "images": ["AURORA/data/something/frames/193996/first.jpg", "AURORA/data/something/frames/193996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring drink onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105566", "images": ["AURORA/data/something/frames/673/first.jpg", "AURORA/data/something/frames/673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deodorant upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105567", "images": ["AURORA/data/something/frames/203039/first.jpg", "AURORA/data/something/frames/203039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching traffic light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105568", "images": ["AURORA/data/something/frames/164212/first.jpg", "AURORA/data/something/frames/164212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving birdcage towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105569", "images": ["AURORA/data/something/frames/172312/first.jpg", "AURORA/data/something/frames/172312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105570", "images": ["AURORA/data/something/frames/114258/first.jpg", "AURORA/data/something/frames/114258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling broom from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105571", "images": ["AURORA/data/something/frames/107088/first.jpg", "AURORA/data/something/frames/107088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105572", "images": ["AURORA/data/something/frames/162387/first.jpg", "AURORA/data/something/frames/162387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105573", "images": ["AURORA/data/something/frames/125807/first.jpg", "AURORA/data/something/frames/125807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming staircase"}, {"from": "gpt", "value": ""}]} +{"id": "000000105574", "images": ["AURORA/data/something/frames/101146/first.jpg", "AURORA/data/something/frames/101146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kiwi, pencil and wine glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105575", "images": ["AURORA/data/something/frames/102091/first.jpg", "AURORA/data/something/frames/102091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105576", "images": ["AURORA/data/something/frames/130607/first.jpg", "AURORA/data/something/frames/130607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering uncovering microphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105577", "images": ["AURORA/data/something/frames/127461/first.jpg", "AURORA/data/something/frames/127461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105578", "images": ["AURORA/data/something/frames/10535/first.jpg", "AURORA/data/something/frames/10535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105579", "images": ["AURORA/data/something/frames/102157/first.jpg", "AURORA/data/something/frames/102157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing knife into its slot place"}, {"from": "gpt", "value": ""}]} +{"id": "000000105580", "images": ["AURORA/data/something/frames/121426/first.jpg", "AURORA/data/something/frames/121426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothpaste over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105581", "images": ["AURORA/data/something/frames/13056/first.jpg", "AURORA/data/something/frames/13056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105582", "images": ["AURORA/data/something/frames/130416/first.jpg", "AURORA/data/something/frames/130416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle onto a candelabra"}, {"from": "gpt", "value": ""}]} +{"id": "000000105583", "images": ["AURORA/data/something/frames/198500/first.jpg", "AURORA/data/something/frames/198500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming shampoo bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105584", "images": ["AURORA/data/something/frames/178034/first.jpg", "AURORA/data/something/frames/178034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring oil onto pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000105585", "images": ["AURORA/data/something/frames/144108/first.jpg", "AURORA/data/something/frames/144108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glue stick and diskette closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105586", "images": ["AURORA/data/something/frames/172019/first.jpg", "AURORA/data/something/frames/172019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105587", "images": ["AURORA/data/something/frames/60266/first.jpg", "AURORA/data/something/frames/60266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105588", "images": ["AURORA/data/something/frames/146709/first.jpg", "AURORA/data/something/frames/146709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105589", "images": ["AURORA/data/something/frames/204213/first.jpg", "AURORA/data/something/frames/204213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105590", "images": ["AURORA/data/something/frames/89947/first.jpg", "AURORA/data/something/frames/89947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping green toy car into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105591", "images": ["AURORA/data/something/frames/175660/first.jpg", "AURORA/data/something/frames/175660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105592", "images": ["AURORA/data/something/frames/168863/first.jpg", "AURORA/data/something/frames/168863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105593", "images": ["AURORA/data/something/frames/2977/first.jpg", "AURORA/data/something/frames/2977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping sugar jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105594", "images": ["AURORA/data/something/frames/116114/first.jpg", "AURORA/data/something/frames/116114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000105595", "images": ["AURORA/data/something/frames/105483/first.jpg", "AURORA/data/something/frames/105483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pc mouse away from scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000105596", "images": ["AURORA/data/something/frames/132505/first.jpg", "AURORA/data/something/frames/132505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking vegetable peeler"}, {"from": "gpt", "value": ""}]} +{"id": "000000105597", "images": ["AURORA/data/something/frames/48472/first.jpg", "AURORA/data/something/frames/48472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming backyard"}, {"from": "gpt", "value": ""}]} +{"id": "000000105598", "images": ["AURORA/data/something/frames/172041/first.jpg", "AURORA/data/something/frames/172041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105599", "images": ["AURORA/data/something/frames/64846/first.jpg", "AURORA/data/something/frames/64846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105600", "images": ["AURORA/data/something/frames/187712/first.jpg", "AURORA/data/something/frames/187712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering muffins"}, {"from": "gpt", "value": ""}]} +{"id": "000000105601", "images": ["AURORA/data/something/frames/83150/first.jpg", "AURORA/data/something/frames/83150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking granola bar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105602", "images": ["AURORA/data/something/frames/131318/first.jpg", "AURORA/data/something/frames/131318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming a dog in a frame"}, {"from": "gpt", "value": ""}]} +{"id": "000000105603", "images": ["AURORA/data/something/frames/192064/first.jpg", "AURORA/data/something/frames/192064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000105604", "images": ["AURORA/data/something/frames/176798/first.jpg", "AURORA/data/something/frames/176798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toffee box towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105605", "images": ["AURORA/data/something/frames/21605/first.jpg", "AURORA/data/something/frames/21605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of npaperote so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105606", "images": ["AURORA/data/something/frames/55671/first.jpg", "AURORA/data/something/frames/55671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key and padlock away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105607", "images": ["AURORA/data/something/frames/164617/first.jpg", "AURORA/data/something/frames/164617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from knife with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105608", "images": ["AURORA/data/something/frames/107051/first.jpg", "AURORA/data/something/frames/107051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillbox onto marlboro pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000105609", "images": ["AURORA/data/something/frames/64184/first.jpg", "AURORA/data/something/frames/64184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105610", "images": ["AURORA/data/something/frames/39826/first.jpg", "AURORA/data/something/frames/39826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000105611", "images": ["AURORA/data/something/frames/220130/first.jpg", "AURORA/data/something/frames/220130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen next to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105612", "images": ["AURORA/data/something/frames/97799/first.jpg", "AURORA/data/something/frames/97799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a soft pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105613", "images": ["AURORA/data/something/frames/26334/first.jpg", "AURORA/data/something/frames/26334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105614", "images": ["AURORA/data/something/frames/31441/first.jpg", "AURORA/data/something/frames/31441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105615", "images": ["AURORA/data/something/frames/150729/first.jpg", "AURORA/data/something/frames/150729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105616", "images": ["AURORA/data/something/frames/110812/first.jpg", "AURORA/data/something/frames/110812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container closer to another one"}, {"from": "gpt", "value": ""}]} +{"id": "000000105617", "images": ["AURORA/data/something/frames/93204/first.jpg", "AURORA/data/something/frames/93204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105618", "images": ["AURORA/data/something/frames/116741/first.jpg", "AURORA/data/something/frames/116741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scotch tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105619", "images": ["AURORA/data/something/frames/32937/first.jpg", "AURORA/data/something/frames/32937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105620", "images": ["AURORA/data/something/frames/167318/first.jpg", "AURORA/data/something/frames/167318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from red spoon with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105621", "images": ["AURORA/data/something/frames/73015/first.jpg", "AURORA/data/something/frames/73015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lipstick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105622", "images": ["AURORA/data/something/frames/124987/first.jpg", "AURORA/data/something/frames/124987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105623", "images": ["AURORA/data/something/frames/205593/first.jpg", "AURORA/data/something/frames/205593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105624", "images": ["AURORA/data/something/frames/130041/first.jpg", "AURORA/data/something/frames/130041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soapy water into surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105625", "images": ["AURORA/data/something/frames/42299/first.jpg", "AURORA/data/something/frames/42299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing letter box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105626", "images": ["AURORA/data/something/frames/99955/first.jpg", "AURORA/data/something/frames/99955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking blanket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105627", "images": ["AURORA/data/something/frames/187580/first.jpg", "AURORA/data/something/frames/187580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105628", "images": ["AURORA/data/something/frames/142433/first.jpg", "AURORA/data/something/frames/142433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105629", "images": ["AURORA/data/something/frames/99126/first.jpg", "AURORA/data/something/frames/99126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple microfiber from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105630", "images": ["AURORA/data/something/frames/187644/first.jpg", "AURORA/data/something/frames/187644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105631", "images": ["AURORA/data/something/frames/175786/first.jpg", "AURORA/data/something/frames/175786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a rose"}, {"from": "gpt", "value": ""}]} +{"id": "000000105632", "images": ["AURORA/data/something/frames/211377/first.jpg", "AURORA/data/something/frames/211377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling disks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105633", "images": ["AURORA/data/something/frames/9601/first.jpg", "AURORA/data/something/frames/9601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tape next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000105634", "images": ["AURORA/data/something/frames/176624/first.jpg", "AURORA/data/something/frames/176624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000105635", "images": ["AURORA/data/something/frames/3252/first.jpg", "AURORA/data/something/frames/3252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105636", "images": ["AURORA/data/something/frames/52153/first.jpg", "AURORA/data/something/frames/52153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105637", "images": ["AURORA/data/something/frames/40822/first.jpg", "AURORA/data/something/frames/40822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking highligher out of pencil cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105638", "images": ["AURORA/data/something/frames/68372/first.jpg", "AURORA/data/something/frames/68372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000105639", "images": ["AURORA/data/something/frames/142768/first.jpg", "AURORA/data/something/frames/142768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar in front of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105640", "images": ["AURORA/data/something/frames/175484/first.jpg", "AURORA/data/something/frames/175484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105641", "images": ["AURORA/data/something/frames/177969/first.jpg", "AURORA/data/something/frames/177969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a confetti start with other confetti stars that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105642", "images": ["AURORA/data/something/frames/153394/first.jpg", "AURORA/data/something/frames/153394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a container with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105643", "images": ["AURORA/data/something/frames/17590/first.jpg", "AURORA/data/something/frames/17590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000105644", "images": ["AURORA/data/something/frames/131210/first.jpg", "AURORA/data/something/frames/131210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000105645", "images": ["AURORA/data/something/frames/106551/first.jpg", "AURORA/data/something/frames/106551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000105646", "images": ["AURORA/data/something/frames/99642/first.jpg", "AURORA/data/something/frames/99642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and cellphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105647", "images": ["AURORA/data/something/frames/176434/first.jpg", "AURORA/data/something/frames/176434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105648", "images": ["AURORA/data/something/frames/189748/first.jpg", "AURORA/data/something/frames/189748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105649", "images": ["AURORA/data/something/frames/135472/first.jpg", "AURORA/data/something/frames/135472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tupperware onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105650", "images": ["AURORA/data/something/frames/201362/first.jpg", "AURORA/data/something/frames/201362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105651", "images": ["AURORA/data/something/frames/176476/first.jpg", "AURORA/data/something/frames/176476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105652", "images": ["AURORA/data/something/frames/60030/first.jpg", "AURORA/data/something/frames/60030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105653", "images": ["AURORA/data/something/frames/62848/first.jpg", "AURORA/data/something/frames/62848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105654", "images": ["AURORA/data/something/frames/5553/first.jpg", "AURORA/data/something/frames/5553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105655", "images": ["AURORA/data/something/frames/150400/first.jpg", "AURORA/data/something/frames/150400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ruler on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105656", "images": ["AURORA/data/something/frames/38391/first.jpg", "AURORA/data/something/frames/38391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lipstisck on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105657", "images": ["AURORA/data/something/frames/35454/first.jpg", "AURORA/data/something/frames/35454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mouse with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000105658", "images": ["AURORA/data/something/frames/168654/first.jpg", "AURORA/data/something/frames/168654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting powder tin, watch and nail polish on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105659", "images": ["AURORA/data/something/frames/216492/first.jpg", "AURORA/data/something/frames/216492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bowl, revealing egg behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000105660", "images": ["AURORA/data/something/frames/23217/first.jpg", "AURORA/data/something/frames/23217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting banana next to apples"}, {"from": "gpt", "value": ""}]} +{"id": "000000105661", "images": ["AURORA/data/something/frames/167837/first.jpg", "AURORA/data/something/frames/167837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting the lamp handle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105662", "images": ["AURORA/data/something/frames/101071/first.jpg", "AURORA/data/something/frames/101071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing can from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105663", "images": ["AURORA/data/something/frames/7412/first.jpg", "AURORA/data/something/frames/7412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105664", "images": ["AURORA/data/something/frames/104072/first.jpg", "AURORA/data/something/frames/104072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping sauce off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105665", "images": ["AURORA/data/something/frames/102036/first.jpg", "AURORA/data/something/frames/102036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105666", "images": ["AURORA/data/something/frames/81806/first.jpg", "AURORA/data/something/frames/81806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000105667", "images": ["AURORA/data/something/frames/218089/first.jpg", "AURORA/data/something/frames/218089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105668", "images": ["AURORA/data/something/frames/190657/first.jpg", "AURORA/data/something/frames/190657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105669", "images": ["AURORA/data/something/frames/100473/first.jpg", "AURORA/data/something/frames/100473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting milk with knife on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105670", "images": ["AURORA/data/something/frames/3763/first.jpg", "AURORA/data/something/frames/3763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105671", "images": ["AURORA/data/something/frames/91885/first.jpg", "AURORA/data/something/frames/91885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105672", "images": ["AURORA/data/something/frames/145973/first.jpg", "AURORA/data/something/frames/145973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105673", "images": ["AURORA/data/something/frames/38091/first.jpg", "AURORA/data/something/frames/38091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting wall with stone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105674", "images": ["AURORA/data/something/frames/185743/first.jpg", "AURORA/data/something/frames/185743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105675", "images": ["AURORA/data/something/frames/124537/first.jpg", "AURORA/data/something/frames/124537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105676", "images": ["AURORA/data/something/frames/51867/first.jpg", "AURORA/data/something/frames/51867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wafer into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105677", "images": ["AURORA/data/something/frames/18181/first.jpg", "AURORA/data/something/frames/18181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling medicinal powder behind a toothbrush holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000105678", "images": ["AURORA/data/something/frames/135900/first.jpg", "AURORA/data/something/frames/135900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can of instant coffee upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105679", "images": ["AURORA/data/something/frames/219564/first.jpg", "AURORA/data/something/frames/219564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105680", "images": ["AURORA/data/something/frames/190232/first.jpg", "AURORA/data/something/frames/190232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wooden small home so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105681", "images": ["AURORA/data/something/frames/177735/first.jpg", "AURORA/data/something/frames/177735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105682", "images": ["AURORA/data/something/frames/164263/first.jpg", "AURORA/data/something/frames/164263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming curtains"}, {"from": "gpt", "value": ""}]} +{"id": "000000105683", "images": ["AURORA/data/something/frames/191587/first.jpg", "AURORA/data/something/frames/191587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle next to candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000105684", "images": ["AURORA/data/something/frames/187793/first.jpg", "AURORA/data/something/frames/187793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 candies"}, {"from": "gpt", "value": ""}]} +{"id": "000000105685", "images": ["AURORA/data/something/frames/33444/first.jpg", "AURORA/data/something/frames/33444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105686", "images": ["AURORA/data/something/frames/38853/first.jpg", "AURORA/data/something/frames/38853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105687", "images": ["AURORA/data/something/frames/205081/first.jpg", "AURORA/data/something/frames/205081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses onto the table next to other glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105688", "images": ["AURORA/data/something/frames/145634/first.jpg", "AURORA/data/something/frames/145634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000105689", "images": ["AURORA/data/something/frames/159969/first.jpg", "AURORA/data/something/frames/159969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105690", "images": ["AURORA/data/something/frames/15818/first.jpg", "AURORA/data/something/frames/15818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paper weight from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105691", "images": ["AURORA/data/something/frames/4328/first.jpg", "AURORA/data/something/frames/4328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from headphones with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105692", "images": ["AURORA/data/something/frames/205753/first.jpg", "AURORA/data/something/frames/205753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000105693", "images": ["AURORA/data/something/frames/27396/first.jpg", "AURORA/data/something/frames/27396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105694", "images": ["AURORA/data/something/frames/741/first.jpg", "AURORA/data/something/frames/741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cd"}, {"from": "gpt", "value": ""}]} +{"id": "000000105695", "images": ["AURORA/data/something/frames/47770/first.jpg", "AURORA/data/something/frames/47770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: flashdisk colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105696", "images": ["AURORA/data/something/frames/3670/first.jpg", "AURORA/data/something/frames/3670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105697", "images": ["AURORA/data/something/frames/74243/first.jpg", "AURORA/data/something/frames/74243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105698", "images": ["AURORA/data/something/frames/85158/first.jpg", "AURORA/data/something/frames/85158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on the edge of speaker so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105699", "images": ["AURORA/data/something/frames/209987/first.jpg", "AURORA/data/something/frames/209987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lead pencils out of pencil box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105700", "images": ["AURORA/data/something/frames/120661/first.jpg", "AURORA/data/something/frames/120661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105701", "images": ["AURORA/data/something/frames/201054/first.jpg", "AURORA/data/something/frames/201054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000105702", "images": ["AURORA/data/something/frames/119894/first.jpg", "AURORA/data/something/frames/119894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105703", "images": ["AURORA/data/something/frames/43376/first.jpg", "AURORA/data/something/frames/43376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving orange colour pencil sharpner up up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105704", "images": ["AURORA/data/something/frames/214952/first.jpg", "AURORA/data/something/frames/214952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105705", "images": ["AURORA/data/something/frames/112684/first.jpg", "AURORA/data/something/frames/112684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plant vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000105706", "images": ["AURORA/data/something/frames/142040/first.jpg", "AURORA/data/something/frames/142040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105707", "images": ["AURORA/data/something/frames/26367/first.jpg", "AURORA/data/something/frames/26367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from laterite stone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105708", "images": ["AURORA/data/something/frames/60477/first.jpg", "AURORA/data/something/frames/60477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105709", "images": ["AURORA/data/something/frames/36736/first.jpg", "AURORA/data/something/frames/36736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105710", "images": ["AURORA/data/something/frames/207317/first.jpg", "AURORA/data/something/frames/207317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105711", "images": ["AURORA/data/something/frames/193297/first.jpg", "AURORA/data/something/frames/193297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking frame from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105712", "images": ["AURORA/data/something/frames/21173/first.jpg", "AURORA/data/something/frames/21173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105713", "images": ["AURORA/data/something/frames/77202/first.jpg", "AURORA/data/something/frames/77202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing silver coloured pen off of drawing board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105714", "images": ["AURORA/data/something/frames/126686/first.jpg", "AURORA/data/something/frames/126686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mail"}, {"from": "gpt", "value": ""}]} +{"id": "000000105715", "images": ["AURORA/data/something/frames/165841/first.jpg", "AURORA/data/something/frames/165841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed animal so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105716", "images": ["AURORA/data/something/frames/24184/first.jpg", "AURORA/data/something/frames/24184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000105717", "images": ["AURORA/data/something/frames/18057/first.jpg", "AURORA/data/something/frames/18057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105718", "images": ["AURORA/data/something/frames/61568/first.jpg", "AURORA/data/something/frames/61568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing speaker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105719", "images": ["AURORA/data/something/frames/140169/first.jpg", "AURORA/data/something/frames/140169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair band in front of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105720", "images": ["AURORA/data/something/frames/5946/first.jpg", "AURORA/data/something/frames/5946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000105721", "images": ["AURORA/data/something/frames/108436/first.jpg", "AURORA/data/something/frames/108436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking spectacle box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105722", "images": ["AURORA/data/something/frames/141381/first.jpg", "AURORA/data/something/frames/141381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening refrigerator door"}, {"from": "gpt", "value": ""}]} +{"id": "000000105723", "images": ["AURORA/data/something/frames/83646/first.jpg", "AURORA/data/something/frames/83646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a dvd over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105724", "images": ["AURORA/data/something/frames/171405/first.jpg", "AURORA/data/something/frames/171405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105725", "images": ["AURORA/data/something/frames/37455/first.jpg", "AURORA/data/something/frames/37455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000105726", "images": ["AURORA/data/something/frames/153856/first.jpg", "AURORA/data/something/frames/153856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconut away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105727", "images": ["AURORA/data/something/frames/184753/first.jpg", "AURORA/data/something/frames/184753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bucket from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105728", "images": ["AURORA/data/something/frames/157447/first.jpg", "AURORA/data/something/frames/157447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the surface of memorabilia"}, {"from": "gpt", "value": ""}]} +{"id": "000000105729", "images": ["AURORA/data/something/frames/40820/first.jpg", "AURORA/data/something/frames/40820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, spoon and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105730", "images": ["AURORA/data/something/frames/215140/first.jpg", "AURORA/data/something/frames/215140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105731", "images": ["AURORA/data/something/frames/23093/first.jpg", "AURORA/data/something/frames/23093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105732", "images": ["AURORA/data/something/frames/121181/first.jpg", "AURORA/data/something/frames/121181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small hand gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105733", "images": ["AURORA/data/something/frames/83066/first.jpg", "AURORA/data/something/frames/83066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking onion out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000105734", "images": ["AURORA/data/something/frames/63338/first.jpg", "AURORA/data/something/frames/63338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105735", "images": ["AURORA/data/something/frames/1939/first.jpg", "AURORA/data/something/frames/1939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105736", "images": ["AURORA/data/something/frames/42000/first.jpg", "AURORA/data/something/frames/42000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105737", "images": ["AURORA/data/something/frames/50207/first.jpg", "AURORA/data/something/frames/50207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lighter colliding with ruler and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105738", "images": ["AURORA/data/something/frames/121549/first.jpg", "AURORA/data/something/frames/121549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping brush onto blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105739", "images": ["AURORA/data/something/frames/188416/first.jpg", "AURORA/data/something/frames/188416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping banana in front of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105740", "images": ["AURORA/data/something/frames/219516/first.jpg", "AURORA/data/something/frames/219516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto water the plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000105741", "images": ["AURORA/data/something/frames/181792/first.jpg", "AURORA/data/something/frames/181792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening black spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105742", "images": ["AURORA/data/something/frames/217963/first.jpg", "AURORA/data/something/frames/217963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lemon next to doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000105743", "images": ["AURORA/data/something/frames/191935/first.jpg", "AURORA/data/something/frames/191935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting sweet with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105744", "images": ["AURORA/data/something/frames/6102/first.jpg", "AURORA/data/something/frames/6102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into power block but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105745", "images": ["AURORA/data/something/frames/130289/first.jpg", "AURORA/data/something/frames/130289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into headphones but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105746", "images": ["AURORA/data/something/frames/107136/first.jpg", "AURORA/data/something/frames/107136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105747", "images": ["AURORA/data/something/frames/28866/first.jpg", "AURORA/data/something/frames/28866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105748", "images": ["AURORA/data/something/frames/35538/first.jpg", "AURORA/data/something/frames/35538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring a fabric conditioner into a plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105749", "images": ["AURORA/data/something/frames/8249/first.jpg", "AURORA/data/something/frames/8249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105750", "images": ["AURORA/data/something/frames/116464/first.jpg", "AURORA/data/something/frames/116464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a knife and a spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105751", "images": ["AURORA/data/something/frames/57093/first.jpg", "AURORA/data/something/frames/57093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105752", "images": ["AURORA/data/something/frames/154013/first.jpg", "AURORA/data/something/frames/154013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105753", "images": ["AURORA/data/something/frames/217957/first.jpg", "AURORA/data/something/frames/217957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power supply into a wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105754", "images": ["AURORA/data/something/frames/147451/first.jpg", "AURORA/data/something/frames/147451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black lipstick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105755", "images": ["AURORA/data/something/frames/155410/first.jpg", "AURORA/data/something/frames/155410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hand towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105756", "images": ["AURORA/data/something/frames/67855/first.jpg", "AURORA/data/something/frames/67855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105757", "images": ["AURORA/data/something/frames/157604/first.jpg", "AURORA/data/something/frames/157604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105758", "images": ["AURORA/data/something/frames/213815/first.jpg", "AURORA/data/something/frames/213815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip and eraser on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105759", "images": ["AURORA/data/something/frames/47364/first.jpg", "AURORA/data/something/frames/47364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting microscope on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105760", "images": ["AURORA/data/something/frames/90101/first.jpg", "AURORA/data/something/frames/90101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105761", "images": ["AURORA/data/something/frames/104878/first.jpg", "AURORA/data/something/frames/104878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a watch behind a clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000105762", "images": ["AURORA/data/something/frames/44540/first.jpg", "AURORA/data/something/frames/44540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and other mobile away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105763", "images": ["AURORA/data/something/frames/165210/first.jpg", "AURORA/data/something/frames/165210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blankets up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105764", "images": ["AURORA/data/something/frames/83053/first.jpg", "AURORA/data/something/frames/83053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pot into an oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000105765", "images": ["AURORA/data/something/frames/69652/first.jpg", "AURORA/data/something/frames/69652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000105766", "images": ["AURORA/data/something/frames/110615/first.jpg", "AURORA/data/something/frames/110615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cockroach out of a ear"}, {"from": "gpt", "value": ""}]} +{"id": "000000105767", "images": ["AURORA/data/something/frames/147079/first.jpg", "AURORA/data/something/frames/147079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000105768", "images": ["AURORA/data/something/frames/75065/first.jpg", "AURORA/data/something/frames/75065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000105769", "images": ["AURORA/data/something/frames/83907/first.jpg", "AURORA/data/something/frames/83907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000105770", "images": ["AURORA/data/something/frames/219989/first.jpg", "AURORA/data/something/frames/219989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000105771", "images": ["AURORA/data/something/frames/67854/first.jpg", "AURORA/data/something/frames/67854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a teddy bear in front of a teddy bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000105772", "images": ["AURORA/data/something/frames/44070/first.jpg", "AURORA/data/something/frames/44070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bra in front of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105773", "images": ["AURORA/data/something/frames/71979/first.jpg", "AURORA/data/something/frames/71979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dia next to 3rd dia"}, {"from": "gpt", "value": ""}]} +{"id": "000000105774", "images": ["AURORA/data/something/frames/209939/first.jpg", "AURORA/data/something/frames/209939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000105775", "images": ["AURORA/data/something/frames/8771/first.jpg", "AURORA/data/something/frames/8771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white kerchief out of orange purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000105776", "images": ["AURORA/data/something/frames/118341/first.jpg", "AURORA/data/something/frames/118341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105777", "images": ["AURORA/data/something/frames/57985/first.jpg", "AURORA/data/something/frames/57985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug and a cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105778", "images": ["AURORA/data/something/frames/181337/first.jpg", "AURORA/data/something/frames/181337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into pen stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105779", "images": ["AURORA/data/something/frames/48406/first.jpg", "AURORA/data/something/frames/48406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a loop to a hook"}, {"from": "gpt", "value": ""}]} +{"id": "000000105780", "images": ["AURORA/data/something/frames/47806/first.jpg", "AURORA/data/something/frames/47806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen out of case"}, {"from": "gpt", "value": ""}]} +{"id": "000000105781", "images": ["AURORA/data/something/frames/43276/first.jpg", "AURORA/data/something/frames/43276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000105782", "images": ["AURORA/data/something/frames/186132/first.jpg", "AURORA/data/something/frames/186132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105783", "images": ["AURORA/data/something/frames/124527/first.jpg", "AURORA/data/something/frames/124527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bear next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105784", "images": ["AURORA/data/something/frames/48874/first.jpg", "AURORA/data/something/frames/48874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000105785", "images": ["AURORA/data/something/frames/21563/first.jpg", "AURORA/data/something/frames/21563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of water pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000105786", "images": ["AURORA/data/something/frames/136820/first.jpg", "AURORA/data/something/frames/136820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105787", "images": ["AURORA/data/something/frames/134879/first.jpg", "AURORA/data/something/frames/134879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105788", "images": ["AURORA/data/something/frames/164688/first.jpg", "AURORA/data/something/frames/164688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000105789", "images": ["AURORA/data/something/frames/39889/first.jpg", "AURORA/data/something/frames/39889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering gear wheel with black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105790", "images": ["AURORA/data/something/frames/46167/first.jpg", "AURORA/data/something/frames/46167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a phone charger into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105791", "images": ["AURORA/data/something/frames/147065/first.jpg", "AURORA/data/something/frames/147065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into the computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105792", "images": ["AURORA/data/something/frames/207999/first.jpg", "AURORA/data/something/frames/207999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coffee in front of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000105793", "images": ["AURORA/data/something/frames/41035/first.jpg", "AURORA/data/something/frames/41035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw next to carabiner"}, {"from": "gpt", "value": ""}]} +{"id": "000000105794", "images": ["AURORA/data/something/frames/145863/first.jpg", "AURORA/data/something/frames/145863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: cup being deflected from counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000105795", "images": ["AURORA/data/something/frames/60668/first.jpg", "AURORA/data/something/frames/60668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coin so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105796", "images": ["AURORA/data/something/frames/87666/first.jpg", "AURORA/data/something/frames/87666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105797", "images": ["AURORA/data/something/frames/120377/first.jpg", "AURORA/data/something/frames/120377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: candy colliding with candy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105798", "images": ["AURORA/data/something/frames/150621/first.jpg", "AURORA/data/something/frames/150621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105799", "images": ["AURORA/data/something/frames/29699/first.jpg", "AURORA/data/something/frames/29699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105800", "images": ["AURORA/data/something/frames/12651/first.jpg", "AURORA/data/something/frames/12651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000105801", "images": ["AURORA/data/something/frames/82560/first.jpg", "AURORA/data/something/frames/82560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking striped pen out of sturdy glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105802", "images": ["AURORA/data/something/frames/117511/first.jpg", "AURORA/data/something/frames/117511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105803", "images": ["AURORA/data/something/frames/92628/first.jpg", "AURORA/data/something/frames/92628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105804", "images": ["AURORA/data/something/frames/170558/first.jpg", "AURORA/data/something/frames/170558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into pot of a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000105805", "images": ["AURORA/data/something/frames/211161/first.jpg", "AURORA/data/something/frames/211161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shorts"}, {"from": "gpt", "value": ""}]} +{"id": "000000105806", "images": ["AURORA/data/something/frames/95415/first.jpg", "AURORA/data/something/frames/95415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with ice over, so ice falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105807", "images": ["AURORA/data/something/frames/27602/first.jpg", "AURORA/data/something/frames/27602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a glass figure closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105808", "images": ["AURORA/data/something/frames/142836/first.jpg", "AURORA/data/something/frames/142836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sign board"}, {"from": "gpt", "value": ""}]} +{"id": "000000105809", "images": ["AURORA/data/something/frames/161497/first.jpg", "AURORA/data/something/frames/161497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000105810", "images": ["AURORA/data/something/frames/21809/first.jpg", "AURORA/data/something/frames/21809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105811", "images": ["AURORA/data/something/frames/112028/first.jpg", "AURORA/data/something/frames/112028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105812", "images": ["AURORA/data/something/frames/185796/first.jpg", "AURORA/data/something/frames/185796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105813", "images": ["AURORA/data/something/frames/143051/first.jpg", "AURORA/data/something/frames/143051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bar soap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105814", "images": ["AURORA/data/something/frames/115697/first.jpg", "AURORA/data/something/frames/115697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the cube and the ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105815", "images": ["AURORA/data/something/frames/136968/first.jpg", "AURORA/data/something/frames/136968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of bottle without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105816", "images": ["AURORA/data/something/frames/205726/first.jpg", "AURORA/data/something/frames/205726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105817", "images": ["AURORA/data/something/frames/220678/first.jpg", "AURORA/data/something/frames/220678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping packet behind chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000105818", "images": ["AURORA/data/something/frames/119246/first.jpg", "AURORA/data/something/frames/119246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105819", "images": ["AURORA/data/something/frames/40845/first.jpg", "AURORA/data/something/frames/40845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen off of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105820", "images": ["AURORA/data/something/frames/200201/first.jpg", "AURORA/data/something/frames/200201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000105821", "images": ["AURORA/data/something/frames/59762/first.jpg", "AURORA/data/something/frames/59762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour juice into bowl, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000105822", "images": ["AURORA/data/something/frames/5299/first.jpg", "AURORA/data/something/frames/5299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunscreen on the edge of the table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105823", "images": ["AURORA/data/something/frames/165921/first.jpg", "AURORA/data/something/frames/165921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping battery over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105824", "images": ["AURORA/data/something/frames/6175/first.jpg", "AURORA/data/something/frames/6175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000105825", "images": ["AURORA/data/something/frames/152924/first.jpg", "AURORA/data/something/frames/152924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cap of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105826", "images": ["AURORA/data/something/frames/193788/first.jpg", "AURORA/data/something/frames/193788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105827", "images": ["AURORA/data/something/frames/46550/first.jpg", "AURORA/data/something/frames/46550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105828", "images": ["AURORA/data/something/frames/167927/first.jpg", "AURORA/data/something/frames/167927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle on the edge of a book so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105829", "images": ["AURORA/data/something/frames/25680/first.jpg", "AURORA/data/something/frames/25680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105830", "images": ["AURORA/data/something/frames/844/first.jpg", "AURORA/data/something/frames/844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105831", "images": ["AURORA/data/something/frames/188825/first.jpg", "AURORA/data/something/frames/188825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card into wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105832", "images": ["AURORA/data/something/frames/113152/first.jpg", "AURORA/data/something/frames/113152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105833", "images": ["AURORA/data/something/frames/184786/first.jpg", "AURORA/data/something/frames/184786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105834", "images": ["AURORA/data/something/frames/119880/first.jpg", "AURORA/data/something/frames/119880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning black play cards upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105835", "images": ["AURORA/data/something/frames/181980/first.jpg", "AURORA/data/something/frames/181980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105836", "images": ["AURORA/data/something/frames/90646/first.jpg", "AURORA/data/something/frames/90646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105837", "images": ["AURORA/data/something/frames/158672/first.jpg", "AURORA/data/something/frames/158672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105838", "images": ["AURORA/data/something/frames/20153/first.jpg", "AURORA/data/something/frames/20153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105839", "images": ["AURORA/data/something/frames/149681/first.jpg", "AURORA/data/something/frames/149681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping little bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105840", "images": ["AURORA/data/something/frames/1091/first.jpg", "AURORA/data/something/frames/1091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cookie crumbs onto banana pudding"}, {"from": "gpt", "value": ""}]} +{"id": "000000105841", "images": ["AURORA/data/something/frames/111318/first.jpg", "AURORA/data/something/frames/111318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000105842", "images": ["AURORA/data/something/frames/38384/first.jpg", "AURORA/data/something/frames/38384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an adapter into an aoutlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105843", "images": ["AURORA/data/something/frames/194468/first.jpg", "AURORA/data/something/frames/194468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105844", "images": ["AURORA/data/something/frames/149648/first.jpg", "AURORA/data/something/frames/149648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing key into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000105845", "images": ["AURORA/data/something/frames/57653/first.jpg", "AURORA/data/something/frames/57653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105846", "images": ["AURORA/data/something/frames/177859/first.jpg", "AURORA/data/something/frames/177859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming blue pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000105847", "images": ["AURORA/data/something/frames/98316/first.jpg", "AURORA/data/something/frames/98316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000105848", "images": ["AURORA/data/something/frames/220367/first.jpg", "AURORA/data/something/frames/220367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lime being deflected from phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105849", "images": ["AURORA/data/something/frames/105780/first.jpg", "AURORA/data/something/frames/105780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie next to slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105850", "images": ["AURORA/data/something/frames/142024/first.jpg", "AURORA/data/something/frames/142024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a clip on the edge of refrigerator so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105851", "images": ["AURORA/data/something/frames/116148/first.jpg", "AURORA/data/something/frames/116148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy cart from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105852", "images": ["AURORA/data/something/frames/87064/first.jpg", "AURORA/data/something/frames/87064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105853", "images": ["AURORA/data/something/frames/181779/first.jpg", "AURORA/data/something/frames/181779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105854", "images": ["AURORA/data/something/frames/60908/first.jpg", "AURORA/data/something/frames/60908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105855", "images": ["AURORA/data/something/frames/9561/first.jpg", "AURORA/data/something/frames/9561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming photo scenery"}, {"from": "gpt", "value": ""}]} +{"id": "000000105856", "images": ["AURORA/data/something/frames/174527/first.jpg", "AURORA/data/something/frames/174527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105857", "images": ["AURORA/data/something/frames/200178/first.jpg", "AURORA/data/something/frames/200178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping trash into a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000105858", "images": ["AURORA/data/something/frames/46963/first.jpg", "AURORA/data/something/frames/46963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many skateboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000105859", "images": ["AURORA/data/something/frames/197927/first.jpg", "AURORA/data/something/frames/197927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000105860", "images": ["AURORA/data/something/frames/150544/first.jpg", "AURORA/data/something/frames/150544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing rice into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105861", "images": ["AURORA/data/something/frames/50395/first.jpg", "AURORA/data/something/frames/50395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a screw from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105862", "images": ["AURORA/data/something/frames/11676/first.jpg", "AURORA/data/something/frames/11676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of tricycle without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105863", "images": ["AURORA/data/something/frames/126614/first.jpg", "AURORA/data/something/frames/126614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000105864", "images": ["AURORA/data/something/frames/187029/first.jpg", "AURORA/data/something/frames/187029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb drive into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000105865", "images": ["AURORA/data/something/frames/28312/first.jpg", "AURORA/data/something/frames/28312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting books into cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105866", "images": ["AURORA/data/something/frames/158885/first.jpg", "AURORA/data/something/frames/158885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming transformer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105867", "images": ["AURORA/data/something/frames/203354/first.jpg", "AURORA/data/something/frames/203354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plastic bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105868", "images": ["AURORA/data/something/frames/210666/first.jpg", "AURORA/data/something/frames/210666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105869", "images": ["AURORA/data/something/frames/63587/first.jpg", "AURORA/data/something/frames/63587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling origami stars onto spiraled notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000105870", "images": ["AURORA/data/something/frames/202999/first.jpg", "AURORA/data/something/frames/202999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and lock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105871", "images": ["AURORA/data/something/frames/177123/first.jpg", "AURORA/data/something/frames/177123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105872", "images": ["AURORA/data/something/frames/27827/first.jpg", "AURORA/data/something/frames/27827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic bottle and plastic bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105873", "images": ["AURORA/data/something/frames/157289/first.jpg", "AURORA/data/something/frames/157289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing something"}, {"from": "gpt", "value": ""}]} +{"id": "000000105874", "images": ["AURORA/data/something/frames/54354/first.jpg", "AURORA/data/something/frames/54354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a $20 bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000105875", "images": ["AURORA/data/something/frames/67174/first.jpg", "AURORA/data/something/frames/67174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105876", "images": ["AURORA/data/something/frames/92580/first.jpg", "AURORA/data/something/frames/92580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ribbon out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000105877", "images": ["AURORA/data/something/frames/183926/first.jpg", "AURORA/data/something/frames/183926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging memory into usb but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105878", "images": ["AURORA/data/something/frames/86654/first.jpg", "AURORA/data/something/frames/86654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rock colliding with rock and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105879", "images": ["AURORA/data/something/frames/105671/first.jpg", "AURORA/data/something/frames/105671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker from a group of markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105880", "images": ["AURORA/data/something/frames/179956/first.jpg", "AURORA/data/something/frames/179956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105881", "images": ["AURORA/data/something/frames/72507/first.jpg", "AURORA/data/something/frames/72507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning an ashtray upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105882", "images": ["AURORA/data/something/frames/170686/first.jpg", "AURORA/data/something/frames/170686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small green ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000105883", "images": ["AURORA/data/something/frames/101343/first.jpg", "AURORA/data/something/frames/101343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105884", "images": ["AURORA/data/something/frames/120176/first.jpg", "AURORA/data/something/frames/120176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lighter with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000105885", "images": ["AURORA/data/something/frames/134267/first.jpg", "AURORA/data/something/frames/134267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000105886", "images": ["AURORA/data/something/frames/142785/first.jpg", "AURORA/data/something/frames/142785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothclips"}, {"from": "gpt", "value": ""}]} +{"id": "000000105887", "images": ["AURORA/data/something/frames/3548/first.jpg", "AURORA/data/something/frames/3548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105888", "images": ["AURORA/data/something/frames/130213/first.jpg", "AURORA/data/something/frames/130213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking receipts"}, {"from": "gpt", "value": ""}]} +{"id": "000000105889", "images": ["AURORA/data/something/frames/176110/first.jpg", "AURORA/data/something/frames/176110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105890", "images": ["AURORA/data/something/frames/192254/first.jpg", "AURORA/data/something/frames/192254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red watch case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105891", "images": ["AURORA/data/something/frames/110620/first.jpg", "AURORA/data/something/frames/110620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105892", "images": ["AURORA/data/something/frames/20405/first.jpg", "AURORA/data/something/frames/20405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble and spanner on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105893", "images": ["AURORA/data/something/frames/8128/first.jpg", "AURORA/data/something/frames/8128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105894", "images": ["AURORA/data/something/frames/135241/first.jpg", "AURORA/data/something/frames/135241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white board clip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105895", "images": ["AURORA/data/something/frames/50078/first.jpg", "AURORA/data/something/frames/50078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding bed sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105896", "images": ["AURORA/data/something/frames/192208/first.jpg", "AURORA/data/something/frames/192208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking push pins out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105897", "images": ["AURORA/data/something/frames/15645/first.jpg", "AURORA/data/something/frames/15645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chocolate bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105898", "images": ["AURORA/data/something/frames/167693/first.jpg", "AURORA/data/something/frames/167693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pepper onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000105899", "images": ["AURORA/data/something/frames/105091/first.jpg", "AURORA/data/something/frames/105091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass of many similar glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000105900", "images": ["AURORA/data/something/frames/197319/first.jpg", "AURORA/data/something/frames/197319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000105901", "images": ["AURORA/data/something/frames/119993/first.jpg", "AURORA/data/something/frames/119993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bird on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105902", "images": ["AURORA/data/something/frames/107016/first.jpg", "AURORA/data/something/frames/107016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105903", "images": ["AURORA/data/something/frames/78969/first.jpg", "AURORA/data/something/frames/78969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting grass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105904", "images": ["AURORA/data/something/frames/217238/first.jpg", "AURORA/data/something/frames/217238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105905", "images": ["AURORA/data/something/frames/147868/first.jpg", "AURORA/data/something/frames/147868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming brown case"}, {"from": "gpt", "value": ""}]} +{"id": "000000105906", "images": ["AURORA/data/something/frames/204296/first.jpg", "AURORA/data/something/frames/204296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 coin onto hair oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105907", "images": ["AURORA/data/something/frames/97082/first.jpg", "AURORA/data/something/frames/97082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000105908", "images": ["AURORA/data/something/frames/135944/first.jpg", "AURORA/data/something/frames/135944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105909", "images": ["AURORA/data/something/frames/213296/first.jpg", "AURORA/data/something/frames/213296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper-clip upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105910", "images": ["AURORA/data/something/frames/102224/first.jpg", "AURORA/data/something/frames/102224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105911", "images": ["AURORA/data/something/frames/71060/first.jpg", "AURORA/data/something/frames/71060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling socks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105912", "images": ["AURORA/data/something/frames/14995/first.jpg", "AURORA/data/something/frames/14995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105913", "images": ["AURORA/data/something/frames/20672/first.jpg", "AURORA/data/something/frames/20672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105914", "images": ["AURORA/data/something/frames/57753/first.jpg", "AURORA/data/something/frames/57753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bean bag onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000105915", "images": ["AURORA/data/something/frames/184562/first.jpg", "AURORA/data/something/frames/184562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105916", "images": ["AURORA/data/something/frames/209315/first.jpg", "AURORA/data/something/frames/209315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105917", "images": ["AURORA/data/something/frames/66953/first.jpg", "AURORA/data/something/frames/66953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105918", "images": ["AURORA/data/something/frames/43233/first.jpg", "AURORA/data/something/frames/43233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105919", "images": ["AURORA/data/something/frames/103869/first.jpg", "AURORA/data/something/frames/103869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning soupbowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105920", "images": ["AURORA/data/something/frames/191488/first.jpg", "AURORA/data/something/frames/191488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105921", "images": ["AURORA/data/something/frames/178356/first.jpg", "AURORA/data/something/frames/178356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105922", "images": ["AURORA/data/something/frames/42228/first.jpg", "AURORA/data/something/frames/42228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobilephone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105923", "images": ["AURORA/data/something/frames/63548/first.jpg", "AURORA/data/something/frames/63548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000105924", "images": ["AURORA/data/something/frames/66319/first.jpg", "AURORA/data/something/frames/66319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dinosaur prototype"}, {"from": "gpt", "value": ""}]} +{"id": "000000105925", "images": ["AURORA/data/something/frames/85905/first.jpg", "AURORA/data/something/frames/85905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105926", "images": ["AURORA/data/something/frames/183031/first.jpg", "AURORA/data/something/frames/183031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000105927", "images": ["AURORA/data/something/frames/162748/first.jpg", "AURORA/data/something/frames/162748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screw up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105928", "images": ["AURORA/data/something/frames/82424/first.jpg", "AURORA/data/something/frames/82424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the arm of a teddy bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000105929", "images": ["AURORA/data/something/frames/103429/first.jpg", "AURORA/data/something/frames/103429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105930", "images": ["AURORA/data/something/frames/132614/first.jpg", "AURORA/data/something/frames/132614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying pig on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000105931", "images": ["AURORA/data/something/frames/165322/first.jpg", "AURORA/data/something/frames/165322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a fist"}, {"from": "gpt", "value": ""}]} +{"id": "000000105932", "images": ["AURORA/data/something/frames/72552/first.jpg", "AURORA/data/something/frames/72552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000105933", "images": ["AURORA/data/something/frames/21575/first.jpg", "AURORA/data/something/frames/21575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pliers upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105934", "images": ["AURORA/data/something/frames/104775/first.jpg", "AURORA/data/something/frames/104775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105935", "images": ["AURORA/data/something/frames/106533/first.jpg", "AURORA/data/something/frames/106533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 pens onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105936", "images": ["AURORA/data/something/frames/34352/first.jpg", "AURORA/data/something/frames/34352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000105937", "images": ["AURORA/data/something/frames/104458/first.jpg", "AURORA/data/something/frames/104458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000105938", "images": ["AURORA/data/something/frames/42782/first.jpg", "AURORA/data/something/frames/42782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000105939", "images": ["AURORA/data/something/frames/138899/first.jpg", "AURORA/data/something/frames/138899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering compass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105940", "images": ["AURORA/data/something/frames/130929/first.jpg", "AURORA/data/something/frames/130929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000105941", "images": ["AURORA/data/something/frames/129551/first.jpg", "AURORA/data/something/frames/129551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105942", "images": ["AURORA/data/something/frames/155287/first.jpg", "AURORA/data/something/frames/155287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling things up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105943", "images": ["AURORA/data/something/frames/161270/first.jpg", "AURORA/data/something/frames/161270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cord so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000105944", "images": ["AURORA/data/something/frames/206508/first.jpg", "AURORA/data/something/frames/206508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from banana bunch with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000105945", "images": ["AURORA/data/something/frames/10098/first.jpg", "AURORA/data/something/frames/10098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a pink sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000105946", "images": ["AURORA/data/something/frames/49280/first.jpg", "AURORA/data/something/frames/49280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging machine into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105947", "images": ["AURORA/data/something/frames/64934/first.jpg", "AURORA/data/something/frames/64934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000105948", "images": ["AURORA/data/something/frames/145196/first.jpg", "AURORA/data/something/frames/145196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105949", "images": ["AURORA/data/something/frames/177244/first.jpg", "AURORA/data/something/frames/177244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000105950", "images": ["AURORA/data/something/frames/138993/first.jpg", "AURORA/data/something/frames/138993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000105951", "images": ["AURORA/data/something/frames/85895/first.jpg", "AURORA/data/something/frames/85895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jumpdrive closer to a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000105952", "images": ["AURORA/data/something/frames/105054/first.jpg", "AURORA/data/something/frames/105054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water from bottle into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105953", "images": ["AURORA/data/something/frames/11119/first.jpg", "AURORA/data/something/frames/11119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a paper tissue out of a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105954", "images": ["AURORA/data/something/frames/11267/first.jpg", "AURORA/data/something/frames/11267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote behind pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105955", "images": ["AURORA/data/something/frames/193127/first.jpg", "AURORA/data/something/frames/193127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000105956", "images": ["AURORA/data/something/frames/203717/first.jpg", "AURORA/data/something/frames/203717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into marshmallow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105957", "images": ["AURORA/data/something/frames/194955/first.jpg", "AURORA/data/something/frames/194955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105958", "images": ["AURORA/data/something/frames/18592/first.jpg", "AURORA/data/something/frames/18592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into whiskey"}, {"from": "gpt", "value": ""}]} +{"id": "000000105959", "images": ["AURORA/data/something/frames/53531/first.jpg", "AURORA/data/something/frames/53531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105960", "images": ["AURORA/data/something/frames/77401/first.jpg", "AURORA/data/something/frames/77401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and fruit closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105961", "images": ["AURORA/data/something/frames/12160/first.jpg", "AURORA/data/something/frames/12160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000105962", "images": ["AURORA/data/something/frames/194954/first.jpg", "AURORA/data/something/frames/194954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying bangle in rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000105963", "images": ["AURORA/data/something/frames/30186/first.jpg", "AURORA/data/something/frames/30186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bicycle-bell with hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105964", "images": ["AURORA/data/something/frames/203047/first.jpg", "AURORA/data/something/frames/203047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pad lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000105965", "images": ["AURORA/data/something/frames/190281/first.jpg", "AURORA/data/something/frames/190281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000105966", "images": ["AURORA/data/something/frames/127980/first.jpg", "AURORA/data/something/frames/127980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging ac charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105967", "images": ["AURORA/data/something/frames/83799/first.jpg", "AURORA/data/something/frames/83799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lidded cup next to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000105968", "images": ["AURORA/data/something/frames/177874/first.jpg", "AURORA/data/something/frames/177874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping wallet over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105969", "images": ["AURORA/data/something/frames/72077/first.jpg", "AURORA/data/something/frames/72077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000105970", "images": ["AURORA/data/something/frames/19584/first.jpg", "AURORA/data/something/frames/19584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000105971", "images": ["AURORA/data/something/frames/111395/first.jpg", "AURORA/data/something/frames/111395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105972", "images": ["AURORA/data/something/frames/91376/first.jpg", "AURORA/data/something/frames/91376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wired headset on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000105973", "images": ["AURORA/data/something/frames/60229/first.jpg", "AURORA/data/something/frames/60229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000105974", "images": ["AURORA/data/something/frames/193671/first.jpg", "AURORA/data/something/frames/193671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box in front of a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000105975", "images": ["AURORA/data/something/frames/23292/first.jpg", "AURORA/data/something/frames/23292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 different items"}, {"from": "gpt", "value": ""}]} +{"id": "000000105976", "images": ["AURORA/data/something/frames/41924/first.jpg", "AURORA/data/something/frames/41924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105977", "images": ["AURORA/data/something/frames/91755/first.jpg", "AURORA/data/something/frames/91755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000105978", "images": ["AURORA/data/something/frames/117454/first.jpg", "AURORA/data/something/frames/117454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with pen on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105979", "images": ["AURORA/data/something/frames/174211/first.jpg", "AURORA/data/something/frames/174211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pant into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000105980", "images": ["AURORA/data/something/frames/78261/first.jpg", "AURORA/data/something/frames/78261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bear over"}, {"from": "gpt", "value": ""}]} +{"id": "000000105981", "images": ["AURORA/data/something/frames/141684/first.jpg", "AURORA/data/something/frames/141684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000105982", "images": ["AURORA/data/something/frames/122772/first.jpg", "AURORA/data/something/frames/122772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding coversheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000105983", "images": ["AURORA/data/something/frames/104693/first.jpg", "AURORA/data/something/frames/104693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water bottle into cd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000105984", "images": ["AURORA/data/something/frames/78579/first.jpg", "AURORA/data/something/frames/78579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing binder clip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105985", "images": ["AURORA/data/something/frames/78678/first.jpg", "AURORA/data/something/frames/78678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping toothpaste off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105986", "images": ["AURORA/data/something/frames/16191/first.jpg", "AURORA/data/something/frames/16191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a gatorade bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000105987", "images": ["AURORA/data/something/frames/164685/first.jpg", "AURORA/data/something/frames/164685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding car's side mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000105988", "images": ["AURORA/data/something/frames/157582/first.jpg", "AURORA/data/something/frames/157582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000105989", "images": ["AURORA/data/something/frames/213350/first.jpg", "AURORA/data/something/frames/213350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000105990", "images": ["AURORA/data/something/frames/217620/first.jpg", "AURORA/data/something/frames/217620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing canned food from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000105991", "images": ["AURORA/data/something/frames/111440/first.jpg", "AURORA/data/something/frames/111440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning spoon rest upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000105992", "images": ["AURORA/data/something/frames/68685/first.jpg", "AURORA/data/something/frames/68685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: gum colliding with gum and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000105993", "images": ["AURORA/data/something/frames/402/first.jpg", "AURORA/data/something/frames/402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000105994", "images": ["AURORA/data/something/frames/144523/first.jpg", "AURORA/data/something/frames/144523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bucket from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000105995", "images": ["AURORA/data/something/frames/172835/first.jpg", "AURORA/data/something/frames/172835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000105996", "images": ["AURORA/data/something/frames/212475/first.jpg", "AURORA/data/something/frames/212475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000105997", "images": ["AURORA/data/something/frames/180301/first.jpg", "AURORA/data/something/frames/180301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a cell phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000105998", "images": ["AURORA/data/something/frames/42088/first.jpg", "AURORA/data/something/frames/42088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing masking tape just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000105999", "images": ["AURORA/data/something/frames/84449/first.jpg", "AURORA/data/something/frames/84449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator and a coin on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106000", "images": ["AURORA/data/something/frames/203223/first.jpg", "AURORA/data/something/frames/203223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106001", "images": ["AURORA/data/something/frames/90746/first.jpg", "AURORA/data/something/frames/90746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106002", "images": ["AURORA/data/something/frames/25962/first.jpg", "AURORA/data/something/frames/25962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lamp up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106003", "images": ["AURORA/data/something/frames/50772/first.jpg", "AURORA/data/something/frames/50772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000106004", "images": ["AURORA/data/something/frames/106048/first.jpg", "AURORA/data/something/frames/106048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106005", "images": ["AURORA/data/something/frames/187138/first.jpg", "AURORA/data/something/frames/187138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming temple"}, {"from": "gpt", "value": ""}]} +{"id": "000000106006", "images": ["AURORA/data/something/frames/74575/first.jpg", "AURORA/data/something/frames/74575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106007", "images": ["AURORA/data/something/frames/57579/first.jpg", "AURORA/data/something/frames/57579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bolt with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106008", "images": ["AURORA/data/something/frames/210051/first.jpg", "AURORA/data/something/frames/210051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106009", "images": ["AURORA/data/something/frames/179043/first.jpg", "AURORA/data/something/frames/179043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106010", "images": ["AURORA/data/something/frames/179512/first.jpg", "AURORA/data/something/frames/179512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil from many others"}, {"from": "gpt", "value": ""}]} +{"id": "000000106011", "images": ["AURORA/data/something/frames/31859/first.jpg", "AURORA/data/something/frames/31859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106012", "images": ["AURORA/data/something/frames/108294/first.jpg", "AURORA/data/something/frames/108294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106013", "images": ["AURORA/data/something/frames/135954/first.jpg", "AURORA/data/something/frames/135954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106014", "images": ["AURORA/data/something/frames/98361/first.jpg", "AURORA/data/something/frames/98361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling granola bar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106015", "images": ["AURORA/data/something/frames/62240/first.jpg", "AURORA/data/something/frames/62240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind a bath-tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106016", "images": ["AURORA/data/something/frames/198860/first.jpg", "AURORA/data/something/frames/198860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106017", "images": ["AURORA/data/something/frames/53730/first.jpg", "AURORA/data/something/frames/53730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106018", "images": ["AURORA/data/something/frames/106822/first.jpg", "AURORA/data/something/frames/106822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping vitamin bottle with vitamins over, so vitamins falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106019", "images": ["AURORA/data/something/frames/59299/first.jpg", "AURORA/data/something/frames/59299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book onto book so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106020", "images": ["AURORA/data/something/frames/41214/first.jpg", "AURORA/data/something/frames/41214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 train tracks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106021", "images": ["AURORA/data/something/frames/61621/first.jpg", "AURORA/data/something/frames/61621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106022", "images": ["AURORA/data/something/frames/156790/first.jpg", "AURORA/data/something/frames/156790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106023", "images": ["AURORA/data/something/frames/180692/first.jpg", "AURORA/data/something/frames/180692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging soil out of ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000106024", "images": ["AURORA/data/something/frames/34709/first.jpg", "AURORA/data/something/frames/34709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with flashdisk and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106025", "images": ["AURORA/data/something/frames/139766/first.jpg", "AURORA/data/something/frames/139766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pencil without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106026", "images": ["AURORA/data/something/frames/141994/first.jpg", "AURORA/data/something/frames/141994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a piece of tangerine and a dish closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106027", "images": ["AURORA/data/something/frames/102550/first.jpg", "AURORA/data/something/frames/102550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending medicine tablet strip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106028", "images": ["AURORA/data/something/frames/219800/first.jpg", "AURORA/data/something/frames/219800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt closer to pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106029", "images": ["AURORA/data/something/frames/78847/first.jpg", "AURORA/data/something/frames/78847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106030", "images": ["AURORA/data/something/frames/191662/first.jpg", "AURORA/data/something/frames/191662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wire into mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000106031", "images": ["AURORA/data/something/frames/74760/first.jpg", "AURORA/data/something/frames/74760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bowl behind a jbl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106032", "images": ["AURORA/data/something/frames/148945/first.jpg", "AURORA/data/something/frames/148945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a screwdriver closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106033", "images": ["AURORA/data/something/frames/184051/first.jpg", "AURORA/data/something/frames/184051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with knife on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106034", "images": ["AURORA/data/something/frames/216657/first.jpg", "AURORA/data/something/frames/216657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106035", "images": ["AURORA/data/something/frames/98301/first.jpg", "AURORA/data/something/frames/98301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106036", "images": ["AURORA/data/something/frames/161014/first.jpg", "AURORA/data/something/frames/161014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bottled ponzu sauce"}, {"from": "gpt", "value": ""}]} +{"id": "000000106037", "images": ["AURORA/data/something/frames/95962/first.jpg", "AURORA/data/something/frames/95962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106038", "images": ["AURORA/data/something/frames/202556/first.jpg", "AURORA/data/something/frames/202556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106039", "images": ["AURORA/data/something/frames/166833/first.jpg", "AURORA/data/something/frames/166833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106040", "images": ["AURORA/data/something/frames/22966/first.jpg", "AURORA/data/something/frames/22966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote behind textbook"}, {"from": "gpt", "value": ""}]} +{"id": "000000106041", "images": ["AURORA/data/something/frames/44441/first.jpg", "AURORA/data/something/frames/44441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pillow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106042", "images": ["AURORA/data/something/frames/158205/first.jpg", "AURORA/data/something/frames/158205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106043", "images": ["AURORA/data/something/frames/45058/first.jpg", "AURORA/data/something/frames/45058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power box into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106044", "images": ["AURORA/data/something/frames/74966/first.jpg", "AURORA/data/something/frames/74966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wooden block up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106045", "images": ["AURORA/data/something/frames/134415/first.jpg", "AURORA/data/something/frames/134415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plastic oignons being deflected from palstic choux"}, {"from": "gpt", "value": ""}]} +{"id": "000000106046", "images": ["AURORA/data/something/frames/60063/first.jpg", "AURORA/data/something/frames/60063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rubix cube closer to yellow ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000106047", "images": ["AURORA/data/something/frames/77904/first.jpg", "AURORA/data/something/frames/77904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper onto fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000106048", "images": ["AURORA/data/something/frames/24532/first.jpg", "AURORA/data/something/frames/24532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106049", "images": ["AURORA/data/something/frames/207871/first.jpg", "AURORA/data/something/frames/207871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering shoe with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106050", "images": ["AURORA/data/something/frames/192999/first.jpg", "AURORA/data/something/frames/192999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening waste bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106051", "images": ["AURORA/data/something/frames/159145/first.jpg", "AURORA/data/something/frames/159145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail clippers closer to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106052", "images": ["AURORA/data/something/frames/125214/first.jpg", "AURORA/data/something/frames/125214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106053", "images": ["AURORA/data/something/frames/104739/first.jpg", "AURORA/data/something/frames/104739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106054", "images": ["AURORA/data/something/frames/147219/first.jpg", "AURORA/data/something/frames/147219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pen and black pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106055", "images": ["AURORA/data/something/frames/212006/first.jpg", "AURORA/data/something/frames/212006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette tape behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106056", "images": ["AURORA/data/something/frames/164273/first.jpg", "AURORA/data/something/frames/164273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106057", "images": ["AURORA/data/something/frames/170235/first.jpg", "AURORA/data/something/frames/170235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106058", "images": ["AURORA/data/something/frames/70631/first.jpg", "AURORA/data/something/frames/70631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble onto paper structure so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106059", "images": ["AURORA/data/something/frames/196910/first.jpg", "AURORA/data/something/frames/196910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting dinosaur with car"}, {"from": "gpt", "value": ""}]} +{"id": "000000106060", "images": ["AURORA/data/something/frames/148169/first.jpg", "AURORA/data/something/frames/148169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cross onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106061", "images": ["AURORA/data/something/frames/62725/first.jpg", "AURORA/data/something/frames/62725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106062", "images": ["AURORA/data/something/frames/181858/first.jpg", "AURORA/data/something/frames/181858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one card of many cards on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106063", "images": ["AURORA/data/something/frames/93923/first.jpg", "AURORA/data/something/frames/93923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mouse with a spanner"}, {"from": "gpt", "value": ""}]} +{"id": "000000106064", "images": ["AURORA/data/something/frames/82611/first.jpg", "AURORA/data/something/frames/82611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106065", "images": ["AURORA/data/something/frames/172902/first.jpg", "AURORA/data/something/frames/172902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106066", "images": ["AURORA/data/something/frames/108786/first.jpg", "AURORA/data/something/frames/108786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lemon into a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106067", "images": ["AURORA/data/something/frames/130905/first.jpg", "AURORA/data/something/frames/130905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tv remote onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106068", "images": ["AURORA/data/something/frames/52646/first.jpg", "AURORA/data/something/frames/52646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bubble bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106069", "images": ["AURORA/data/something/frames/118974/first.jpg", "AURORA/data/something/frames/118974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting body moisturiser bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106070", "images": ["AURORA/data/something/frames/53974/first.jpg", "AURORA/data/something/frames/53974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106071", "images": ["AURORA/data/something/frames/198782/first.jpg", "AURORA/data/something/frames/198782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106072", "images": ["AURORA/data/something/frames/34187/first.jpg", "AURORA/data/something/frames/34187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106073", "images": ["AURORA/data/something/frames/89104/first.jpg", "AURORA/data/something/frames/89104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cough syrup off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106074", "images": ["AURORA/data/something/frames/171612/first.jpg", "AURORA/data/something/frames/171612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red pot holder from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106075", "images": ["AURORA/data/something/frames/219456/first.jpg", "AURORA/data/something/frames/219456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lift pump up without dropdown up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106076", "images": ["AURORA/data/something/frames/38922/first.jpg", "AURORA/data/something/frames/38922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106077", "images": ["AURORA/data/something/frames/128208/first.jpg", "AURORA/data/something/frames/128208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106078", "images": ["AURORA/data/something/frames/3735/first.jpg", "AURORA/data/something/frames/3735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106079", "images": ["AURORA/data/something/frames/132230/first.jpg", "AURORA/data/something/frames/132230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling candies onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106080", "images": ["AURORA/data/something/frames/181910/first.jpg", "AURORA/data/something/frames/181910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sphere and a stone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106081", "images": ["AURORA/data/something/frames/10659/first.jpg", "AURORA/data/something/frames/10659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106082", "images": ["AURORA/data/something/frames/83778/first.jpg", "AURORA/data/something/frames/83778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106083", "images": ["AURORA/data/something/frames/200234/first.jpg", "AURORA/data/something/frames/200234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106084", "images": ["AURORA/data/something/frames/34412/first.jpg", "AURORA/data/something/frames/34412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000106085", "images": ["AURORA/data/something/frames/171317/first.jpg", "AURORA/data/something/frames/171317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and ruler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106086", "images": ["AURORA/data/something/frames/207671/first.jpg", "AURORA/data/something/frames/207671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106087", "images": ["AURORA/data/something/frames/25172/first.jpg", "AURORA/data/something/frames/25172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106088", "images": ["AURORA/data/something/frames/89103/first.jpg", "AURORA/data/something/frames/89103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106089", "images": ["AURORA/data/something/frames/217749/first.jpg", "AURORA/data/something/frames/217749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cereal over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106090", "images": ["AURORA/data/something/frames/39512/first.jpg", "AURORA/data/something/frames/39512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting s phone in front of key"}, {"from": "gpt", "value": ""}]} +{"id": "000000106091", "images": ["AURORA/data/something/frames/45983/first.jpg", "AURORA/data/something/frames/45983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a usb stick away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106092", "images": ["AURORA/data/something/frames/113384/first.jpg", "AURORA/data/something/frames/113384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something next to something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106093", "images": ["AURORA/data/something/frames/16214/first.jpg", "AURORA/data/something/frames/16214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a lighter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106094", "images": ["AURORA/data/something/frames/53680/first.jpg", "AURORA/data/something/frames/53680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate onto coversheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106095", "images": ["AURORA/data/something/frames/198737/first.jpg", "AURORA/data/something/frames/198737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106096", "images": ["AURORA/data/something/frames/187591/first.jpg", "AURORA/data/something/frames/187591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote next to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106097", "images": ["AURORA/data/something/frames/179770/first.jpg", "AURORA/data/something/frames/179770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106098", "images": ["AURORA/data/something/frames/33362/first.jpg", "AURORA/data/something/frames/33362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox behind a bucket lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000106099", "images": ["AURORA/data/something/frames/36124/first.jpg", "AURORA/data/something/frames/36124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106100", "images": ["AURORA/data/something/frames/30316/first.jpg", "AURORA/data/something/frames/30316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pumpkin cookie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106101", "images": ["AURORA/data/something/frames/19583/first.jpg", "AURORA/data/something/frames/19583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking snack from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106102", "images": ["AURORA/data/something/frames/173811/first.jpg", "AURORA/data/something/frames/173811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106103", "images": ["AURORA/data/something/frames/138482/first.jpg", "AURORA/data/something/frames/138482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106104", "images": ["AURORA/data/something/frames/146988/first.jpg", "AURORA/data/something/frames/146988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spanner behind paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000106105", "images": ["AURORA/data/something/frames/205496/first.jpg", "AURORA/data/something/frames/205496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lamp with double-sided adhesive tape on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106106", "images": ["AURORA/data/something/frames/100661/first.jpg", "AURORA/data/something/frames/100661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106107", "images": ["AURORA/data/something/frames/14842/first.jpg", "AURORA/data/something/frames/14842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106108", "images": ["AURORA/data/something/frames/118049/first.jpg", "AURORA/data/something/frames/118049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: air hockey puck being deflected from air hockey mallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106109", "images": ["AURORA/data/something/frames/93308/first.jpg", "AURORA/data/something/frames/93308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106110", "images": ["AURORA/data/something/frames/188413/first.jpg", "AURORA/data/something/frames/188413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into cake"}, {"from": "gpt", "value": ""}]} +{"id": "000000106111", "images": ["AURORA/data/something/frames/46057/first.jpg", "AURORA/data/something/frames/46057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106112", "images": ["AURORA/data/something/frames/65200/first.jpg", "AURORA/data/something/frames/65200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a flashlight on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106113", "images": ["AURORA/data/something/frames/76980/first.jpg", "AURORA/data/something/frames/76980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106114", "images": ["AURORA/data/something/frames/186942/first.jpg", "AURORA/data/something/frames/186942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106115", "images": ["AURORA/data/something/frames/157478/first.jpg", "AURORA/data/something/frames/157478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a key behind a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106116", "images": ["AURORA/data/something/frames/160765/first.jpg", "AURORA/data/something/frames/160765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking taking knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000106117", "images": ["AURORA/data/something/frames/159540/first.jpg", "AURORA/data/something/frames/159540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106118", "images": ["AURORA/data/something/frames/111995/first.jpg", "AURORA/data/something/frames/111995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106119", "images": ["AURORA/data/something/frames/107701/first.jpg", "AURORA/data/something/frames/107701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106120", "images": ["AURORA/data/something/frames/117648/first.jpg", "AURORA/data/something/frames/117648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106121", "images": ["AURORA/data/something/frames/11588/first.jpg", "AURORA/data/something/frames/11588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with spoon on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106122", "images": ["AURORA/data/something/frames/185958/first.jpg", "AURORA/data/something/frames/185958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb plug into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106123", "images": ["AURORA/data/something/frames/365/first.jpg", "AURORA/data/something/frames/365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106124", "images": ["AURORA/data/something/frames/195612/first.jpg", "AURORA/data/something/frames/195612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106125", "images": ["AURORA/data/something/frames/103389/first.jpg", "AURORA/data/something/frames/103389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106126", "images": ["AURORA/data/something/frames/10975/first.jpg", "AURORA/data/something/frames/10975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106127", "images": ["AURORA/data/something/frames/3540/first.jpg", "AURORA/data/something/frames/3540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106128", "images": ["AURORA/data/something/frames/204776/first.jpg", "AURORA/data/something/frames/204776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins (pennies)"}, {"from": "gpt", "value": ""}]} +{"id": "000000106129", "images": ["AURORA/data/something/frames/213669/first.jpg", "AURORA/data/something/frames/213669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106130", "images": ["AURORA/data/something/frames/191031/first.jpg", "AURORA/data/something/frames/191031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a hammer and a nail closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106131", "images": ["AURORA/data/something/frames/85558/first.jpg", "AURORA/data/something/frames/85558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spatula upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106132", "images": ["AURORA/data/something/frames/200985/first.jpg", "AURORA/data/something/frames/200985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106133", "images": ["AURORA/data/something/frames/154385/first.jpg", "AURORA/data/something/frames/154385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a watering can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106134", "images": ["AURORA/data/something/frames/20586/first.jpg", "AURORA/data/something/frames/20586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass flower vase until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106135", "images": ["AURORA/data/something/frames/62926/first.jpg", "AURORA/data/something/frames/62926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a wooden stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106136", "images": ["AURORA/data/something/frames/196297/first.jpg", "AURORA/data/something/frames/196297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106137", "images": ["AURORA/data/something/frames/56670/first.jpg", "AURORA/data/something/frames/56670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106138", "images": ["AURORA/data/something/frames/163607/first.jpg", "AURORA/data/something/frames/163607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting playing card with tweezers on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106139", "images": ["AURORA/data/something/frames/123124/first.jpg", "AURORA/data/something/frames/123124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a cube, revealing a toy behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106140", "images": ["AURORA/data/something/frames/71173/first.jpg", "AURORA/data/something/frames/71173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from book with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106141", "images": ["AURORA/data/something/frames/80513/first.jpg", "AURORA/data/something/frames/80513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving potato and potato so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106142", "images": ["AURORA/data/something/frames/52137/first.jpg", "AURORA/data/something/frames/52137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106143", "images": ["AURORA/data/something/frames/211202/first.jpg", "AURORA/data/something/frames/211202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106144", "images": ["AURORA/data/something/frames/62001/first.jpg", "AURORA/data/something/frames/62001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106145", "images": ["AURORA/data/something/frames/135520/first.jpg", "AURORA/data/something/frames/135520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing blanket, revealing piggy bank on notebook behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106146", "images": ["AURORA/data/something/frames/180287/first.jpg", "AURORA/data/something/frames/180287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue ballpen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106147", "images": ["AURORA/data/something/frames/55937/first.jpg", "AURORA/data/something/frames/55937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106148", "images": ["AURORA/data/something/frames/124975/first.jpg", "AURORA/data/something/frames/124975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip that cannot stand upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106149", "images": ["AURORA/data/something/frames/185198/first.jpg", "AURORA/data/something/frames/185198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler and a remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106150", "images": ["AURORA/data/something/frames/219139/first.jpg", "AURORA/data/something/frames/219139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fluorescent colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106151", "images": ["AURORA/data/something/frames/132337/first.jpg", "AURORA/data/something/frames/132337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a wall with a stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000106152", "images": ["AURORA/data/something/frames/147296/first.jpg", "AURORA/data/something/frames/147296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pencil so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106153", "images": ["AURORA/data/something/frames/57826/first.jpg", "AURORA/data/something/frames/57826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000106154", "images": ["AURORA/data/something/frames/149698/first.jpg", "AURORA/data/something/frames/149698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping beach pebble next to plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106155", "images": ["AURORA/data/something/frames/3445/first.jpg", "AURORA/data/something/frames/3445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106156", "images": ["AURORA/data/something/frames/92579/first.jpg", "AURORA/data/something/frames/92579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tiger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106157", "images": ["AURORA/data/something/frames/168536/first.jpg", "AURORA/data/something/frames/168536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) sole of shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000106158", "images": ["AURORA/data/something/frames/173369/first.jpg", "AURORA/data/something/frames/173369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pot out of an oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000106159", "images": ["AURORA/data/something/frames/106306/first.jpg", "AURORA/data/something/frames/106306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing water bottle with cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106160", "images": ["AURORA/data/something/frames/138238/first.jpg", "AURORA/data/something/frames/138238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) part of candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106161", "images": ["AURORA/data/something/frames/57112/first.jpg", "AURORA/data/something/frames/57112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with scissors on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106162", "images": ["AURORA/data/something/frames/35431/first.jpg", "AURORA/data/something/frames/35431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106163", "images": ["AURORA/data/something/frames/180817/first.jpg", "AURORA/data/something/frames/180817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil sharpener next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106164", "images": ["AURORA/data/something/frames/55848/first.jpg", "AURORA/data/something/frames/55848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106165", "images": ["AURORA/data/something/frames/53018/first.jpg", "AURORA/data/something/frames/53018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106166", "images": ["AURORA/data/something/frames/54073/first.jpg", "AURORA/data/something/frames/54073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106167", "images": ["AURORA/data/something/frames/3619/first.jpg", "AURORA/data/something/frames/3619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black lipstick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106168", "images": ["AURORA/data/something/frames/125048/first.jpg", "AURORA/data/something/frames/125048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a shampoo tube colliding with a comb and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106169", "images": ["AURORA/data/something/frames/169342/first.jpg", "AURORA/data/something/frames/169342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106170", "images": ["AURORA/data/something/frames/54657/first.jpg", "AURORA/data/something/frames/54657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing plastic spray from right to left from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106171", "images": ["AURORA/data/something/frames/209016/first.jpg", "AURORA/data/something/frames/209016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106172", "images": ["AURORA/data/something/frames/8042/first.jpg", "AURORA/data/something/frames/8042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding jeans"}, {"from": "gpt", "value": ""}]} +{"id": "000000106173", "images": ["AURORA/data/something/frames/108315/first.jpg", "AURORA/data/something/frames/108315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106174", "images": ["AURORA/data/something/frames/105737/first.jpg", "AURORA/data/something/frames/105737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillbox off of marlboro pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106175", "images": ["AURORA/data/something/frames/118419/first.jpg", "AURORA/data/something/frames/118419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106176", "images": ["AURORA/data/something/frames/37680/first.jpg", "AURORA/data/something/frames/37680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bucket until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106177", "images": ["AURORA/data/something/frames/34931/first.jpg", "AURORA/data/something/frames/34931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106178", "images": ["AURORA/data/something/frames/86032/first.jpg", "AURORA/data/something/frames/86032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106179", "images": ["AURORA/data/something/frames/118166/first.jpg", "AURORA/data/something/frames/118166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing heater component from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106180", "images": ["AURORA/data/something/frames/14056/first.jpg", "AURORA/data/something/frames/14056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106181", "images": ["AURORA/data/something/frames/155351/first.jpg", "AURORA/data/something/frames/155351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing candy wrapper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106182", "images": ["AURORA/data/something/frames/8740/first.jpg", "AURORA/data/something/frames/8740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a doll and a doll so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106183", "images": ["AURORA/data/something/frames/140042/first.jpg", "AURORA/data/something/frames/140042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon onto a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106184", "images": ["AURORA/data/something/frames/62427/first.jpg", "AURORA/data/something/frames/62427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106185", "images": ["AURORA/data/something/frames/68352/first.jpg", "AURORA/data/something/frames/68352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106186", "images": ["AURORA/data/something/frames/11143/first.jpg", "AURORA/data/something/frames/11143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106187", "images": ["AURORA/data/something/frames/83303/first.jpg", "AURORA/data/something/frames/83303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a monitor so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106188", "images": ["AURORA/data/something/frames/12738/first.jpg", "AURORA/data/something/frames/12738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a wallet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106189", "images": ["AURORA/data/something/frames/144470/first.jpg", "AURORA/data/something/frames/144470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106190", "images": ["AURORA/data/something/frames/193842/first.jpg", "AURORA/data/something/frames/193842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106191", "images": ["AURORA/data/something/frames/218349/first.jpg", "AURORA/data/something/frames/218349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a peace of paper across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106192", "images": ["AURORA/data/something/frames/123833/first.jpg", "AURORA/data/something/frames/123833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lidded cup into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106193", "images": ["AURORA/data/something/frames/169507/first.jpg", "AURORA/data/something/frames/169507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000106194", "images": ["AURORA/data/something/frames/111092/first.jpg", "AURORA/data/something/frames/111092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106195", "images": ["AURORA/data/something/frames/97369/first.jpg", "AURORA/data/something/frames/97369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting postit into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106196", "images": ["AURORA/data/something/frames/77068/first.jpg", "AURORA/data/something/frames/77068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and mug so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106197", "images": ["AURORA/data/something/frames/94183/first.jpg", "AURORA/data/something/frames/94183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a calculator towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106198", "images": ["AURORA/data/something/frames/147600/first.jpg", "AURORA/data/something/frames/147600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106199", "images": ["AURORA/data/something/frames/169688/first.jpg", "AURORA/data/something/frames/169688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into mattress"}, {"from": "gpt", "value": ""}]} +{"id": "000000106200", "images": ["AURORA/data/something/frames/119679/first.jpg", "AURORA/data/something/frames/119679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing salt onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106201", "images": ["AURORA/data/something/frames/24781/first.jpg", "AURORA/data/something/frames/24781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening side view mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000106202", "images": ["AURORA/data/something/frames/108505/first.jpg", "AURORA/data/something/frames/108505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many coins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106203", "images": ["AURORA/data/something/frames/190668/first.jpg", "AURORA/data/something/frames/190668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106204", "images": ["AURORA/data/something/frames/212697/first.jpg", "AURORA/data/something/frames/212697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glass on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106205", "images": ["AURORA/data/something/frames/194731/first.jpg", "AURORA/data/something/frames/194731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000106206", "images": ["AURORA/data/something/frames/205710/first.jpg", "AURORA/data/something/frames/205710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plant on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106207", "images": ["AURORA/data/something/frames/74522/first.jpg", "AURORA/data/something/frames/74522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending green bean until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106208", "images": ["AURORA/data/something/frames/102896/first.jpg", "AURORA/data/something/frames/102896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending twist tie so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106209", "images": ["AURORA/data/something/frames/64129/first.jpg", "AURORA/data/something/frames/64129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving arm of glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106210", "images": ["AURORA/data/something/frames/187904/first.jpg", "AURORA/data/something/frames/187904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a bench"}, {"from": "gpt", "value": ""}]} +{"id": "000000106211", "images": ["AURORA/data/something/frames/195213/first.jpg", "AURORA/data/something/frames/195213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mobile phone up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106212", "images": ["AURORA/data/something/frames/6107/first.jpg", "AURORA/data/something/frames/6107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming motor bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000106213", "images": ["AURORA/data/something/frames/88128/first.jpg", "AURORA/data/something/frames/88128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a water bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106214", "images": ["AURORA/data/something/frames/35037/first.jpg", "AURORA/data/something/frames/35037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bag, revealing glasses behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106215", "images": ["AURORA/data/something/frames/57685/first.jpg", "AURORA/data/something/frames/57685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106216", "images": ["AURORA/data/something/frames/80221/first.jpg", "AURORA/data/something/frames/80221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106217", "images": ["AURORA/data/something/frames/106786/first.jpg", "AURORA/data/something/frames/106786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106218", "images": ["AURORA/data/something/frames/11193/first.jpg", "AURORA/data/something/frames/11193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106219", "images": ["AURORA/data/something/frames/23455/first.jpg", "AURORA/data/something/frames/23455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a hose to a spirometer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106220", "images": ["AURORA/data/something/frames/6010/first.jpg", "AURORA/data/something/frames/6010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106221", "images": ["AURORA/data/something/frames/212602/first.jpg", "AURORA/data/something/frames/212602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of my leg"}, {"from": "gpt", "value": ""}]} +{"id": "000000106222", "images": ["AURORA/data/something/frames/56518/first.jpg", "AURORA/data/something/frames/56518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking helmet from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000106223", "images": ["AURORA/data/something/frames/131135/first.jpg", "AURORA/data/something/frames/131135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106224", "images": ["AURORA/data/something/frames/2659/first.jpg", "AURORA/data/something/frames/2659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small bin off of large bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106225", "images": ["AURORA/data/something/frames/53781/first.jpg", "AURORA/data/something/frames/53781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tiny scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000106226", "images": ["AURORA/data/something/frames/32250/first.jpg", "AURORA/data/something/frames/32250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lighter colliding with control and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106227", "images": ["AURORA/data/something/frames/216856/first.jpg", "AURORA/data/something/frames/216856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair clips onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106228", "images": ["AURORA/data/something/frames/160836/first.jpg", "AURORA/data/something/frames/160836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping folded napkin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106229", "images": ["AURORA/data/something/frames/138353/first.jpg", "AURORA/data/something/frames/138353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a small bottlr being deflected from a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000106230", "images": ["AURORA/data/something/frames/69512/first.jpg", "AURORA/data/something/frames/69512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker pen and tubelight relay on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106231", "images": ["AURORA/data/something/frames/129246/first.jpg", "AURORA/data/something/frames/129246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000106232", "images": ["AURORA/data/something/frames/174397/first.jpg", "AURORA/data/something/frames/174397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and water bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106233", "images": ["AURORA/data/something/frames/6976/first.jpg", "AURORA/data/something/frames/6976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106234", "images": ["AURORA/data/something/frames/176713/first.jpg", "AURORA/data/something/frames/176713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106235", "images": ["AURORA/data/something/frames/9740/first.jpg", "AURORA/data/something/frames/9740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106236", "images": ["AURORA/data/something/frames/217353/first.jpg", "AURORA/data/something/frames/217353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106237", "images": ["AURORA/data/something/frames/70366/first.jpg", "AURORA/data/something/frames/70366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper weight up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106238", "images": ["AURORA/data/something/frames/125970/first.jpg", "AURORA/data/something/frames/125970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106239", "images": ["AURORA/data/something/frames/111502/first.jpg", "AURORA/data/something/frames/111502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106240", "images": ["AURORA/data/something/frames/79041/first.jpg", "AURORA/data/something/frames/79041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000106241", "images": ["AURORA/data/something/frames/2417/first.jpg", "AURORA/data/something/frames/2417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106242", "images": ["AURORA/data/something/frames/145858/first.jpg", "AURORA/data/something/frames/145858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading toothpaste onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000106243", "images": ["AURORA/data/something/frames/95700/first.jpg", "AURORA/data/something/frames/95700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shoe and a cat brush closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106244", "images": ["AURORA/data/something/frames/1241/first.jpg", "AURORA/data/something/frames/1241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of candy packs"}, {"from": "gpt", "value": ""}]} +{"id": "000000106245", "images": ["AURORA/data/something/frames/183134/first.jpg", "AURORA/data/something/frames/183134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106246", "images": ["AURORA/data/something/frames/115391/first.jpg", "AURORA/data/something/frames/115391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a jumper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106247", "images": ["AURORA/data/something/frames/155620/first.jpg", "AURORA/data/something/frames/155620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106248", "images": ["AURORA/data/something/frames/189493/first.jpg", "AURORA/data/something/frames/189493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106249", "images": ["AURORA/data/something/frames/23123/first.jpg", "AURORA/data/something/frames/23123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post-it to a monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106250", "images": ["AURORA/data/something/frames/89442/first.jpg", "AURORA/data/something/frames/89442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106251", "images": ["AURORA/data/something/frames/82690/first.jpg", "AURORA/data/something/frames/82690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flashlight and glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106252", "images": ["AURORA/data/something/frames/212161/first.jpg", "AURORA/data/something/frames/212161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering sketch book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106253", "images": ["AURORA/data/something/frames/161086/first.jpg", "AURORA/data/something/frames/161086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a monkey figure and a monkey figure closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106254", "images": ["AURORA/data/something/frames/203659/first.jpg", "AURORA/data/something/frames/203659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106255", "images": ["AURORA/data/something/frames/209430/first.jpg", "AURORA/data/something/frames/209430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a comb colliding with another comb and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106256", "images": ["AURORA/data/something/frames/83567/first.jpg", "AURORA/data/something/frames/83567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour some grains into a glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106257", "images": ["AURORA/data/something/frames/131849/first.jpg", "AURORA/data/something/frames/131849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106258", "images": ["AURORA/data/something/frames/22324/first.jpg", "AURORA/data/something/frames/22324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking sponge so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106259", "images": ["AURORA/data/something/frames/75976/first.jpg", "AURORA/data/something/frames/75976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into power board"}, {"from": "gpt", "value": ""}]} +{"id": "000000106260", "images": ["AURORA/data/something/frames/92909/first.jpg", "AURORA/data/something/frames/92909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106261", "images": ["AURORA/data/something/frames/216055/first.jpg", "AURORA/data/something/frames/216055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106262", "images": ["AURORA/data/something/frames/217404/first.jpg", "AURORA/data/something/frames/217404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106263", "images": ["AURORA/data/something/frames/128813/first.jpg", "AURORA/data/something/frames/128813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106264", "images": ["AURORA/data/something/frames/150380/first.jpg", "AURORA/data/something/frames/150380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106265", "images": ["AURORA/data/something/frames/213378/first.jpg", "AURORA/data/something/frames/213378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a game out of an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106266", "images": ["AURORA/data/something/frames/206408/first.jpg", "AURORA/data/something/frames/206408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106267", "images": ["AURORA/data/something/frames/66269/first.jpg", "AURORA/data/something/frames/66269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cell phone with envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106268", "images": ["AURORA/data/something/frames/138244/first.jpg", "AURORA/data/something/frames/138244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a figurine upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106269", "images": ["AURORA/data/something/frames/184211/first.jpg", "AURORA/data/something/frames/184211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pencilbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000106270", "images": ["AURORA/data/something/frames/32751/first.jpg", "AURORA/data/something/frames/32751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106271", "images": ["AURORA/data/something/frames/175586/first.jpg", "AURORA/data/something/frames/175586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing iron onto board"}, {"from": "gpt", "value": ""}]} +{"id": "000000106272", "images": ["AURORA/data/something/frames/7627/first.jpg", "AURORA/data/something/frames/7627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106273", "images": ["AURORA/data/something/frames/209874/first.jpg", "AURORA/data/something/frames/209874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spanner with screw driver"}, {"from": "gpt", "value": ""}]} +{"id": "000000106274", "images": ["AURORA/data/something/frames/138894/first.jpg", "AURORA/data/something/frames/138894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106275", "images": ["AURORA/data/something/frames/120887/first.jpg", "AURORA/data/something/frames/120887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an audio cable into headphones but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106276", "images": ["AURORA/data/something/frames/80814/first.jpg", "AURORA/data/something/frames/80814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106277", "images": ["AURORA/data/something/frames/6973/first.jpg", "AURORA/data/something/frames/6973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coins (pennies)"}, {"from": "gpt", "value": ""}]} +{"id": "000000106278", "images": ["AURORA/data/something/frames/91802/first.jpg", "AURORA/data/something/frames/91802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106279", "images": ["AURORA/data/something/frames/197389/first.jpg", "AURORA/data/something/frames/197389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle back"}, {"from": "gpt", "value": ""}]} +{"id": "000000106280", "images": ["AURORA/data/something/frames/139760/first.jpg", "AURORA/data/something/frames/139760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ring away from the earing"}, {"from": "gpt", "value": ""}]} +{"id": "000000106281", "images": ["AURORA/data/something/frames/61881/first.jpg", "AURORA/data/something/frames/61881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bb-8 cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106282", "images": ["AURORA/data/something/frames/61982/first.jpg", "AURORA/data/something/frames/61982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass canister and glass canister closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106283", "images": ["AURORA/data/something/frames/97009/first.jpg", "AURORA/data/something/frames/97009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106284", "images": ["AURORA/data/something/frames/83304/first.jpg", "AURORA/data/something/frames/83304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106285", "images": ["AURORA/data/something/frames/46005/first.jpg", "AURORA/data/something/frames/46005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coloured pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106286", "images": ["AURORA/data/something/frames/201616/first.jpg", "AURORA/data/something/frames/201616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000106287", "images": ["AURORA/data/something/frames/181896/first.jpg", "AURORA/data/something/frames/181896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106288", "images": ["AURORA/data/something/frames/142062/first.jpg", "AURORA/data/something/frames/142062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb data cable into usb slot"}, {"from": "gpt", "value": ""}]} +{"id": "000000106289", "images": ["AURORA/data/something/frames/201509/first.jpg", "AURORA/data/something/frames/201509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto shoe box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106290", "images": ["AURORA/data/something/frames/88103/first.jpg", "AURORA/data/something/frames/88103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote control and a pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106291", "images": ["AURORA/data/something/frames/169102/first.jpg", "AURORA/data/something/frames/169102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a lighter on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106292", "images": ["AURORA/data/something/frames/158390/first.jpg", "AURORA/data/something/frames/158390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting scissors up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106293", "images": ["AURORA/data/something/frames/199119/first.jpg", "AURORA/data/something/frames/199119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting beer bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106294", "images": ["AURORA/data/something/frames/31874/first.jpg", "AURORA/data/something/frames/31874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting music player with coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106295", "images": ["AURORA/data/something/frames/42212/first.jpg", "AURORA/data/something/frames/42212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000106296", "images": ["AURORA/data/something/frames/72183/first.jpg", "AURORA/data/something/frames/72183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking file out of almirah"}, {"from": "gpt", "value": ""}]} +{"id": "000000106297", "images": ["AURORA/data/something/frames/79071/first.jpg", "AURORA/data/something/frames/79071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting off a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106298", "images": ["AURORA/data/something/frames/190027/first.jpg", "AURORA/data/something/frames/190027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb to micro-usb cord into a wall adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106299", "images": ["AURORA/data/something/frames/79097/first.jpg", "AURORA/data/something/frames/79097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000106300", "images": ["AURORA/data/something/frames/17933/first.jpg", "AURORA/data/something/frames/17933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white deodorant from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106301", "images": ["AURORA/data/something/frames/85715/first.jpg", "AURORA/data/something/frames/85715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106302", "images": ["AURORA/data/something/frames/76825/first.jpg", "AURORA/data/something/frames/76825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106303", "images": ["AURORA/data/something/frames/202581/first.jpg", "AURORA/data/something/frames/202581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106304", "images": ["AURORA/data/something/frames/100253/first.jpg", "AURORA/data/something/frames/100253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering feuerzeug with papier"}, {"from": "gpt", "value": ""}]} +{"id": "000000106305", "images": ["AURORA/data/something/frames/67856/first.jpg", "AURORA/data/something/frames/67856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106306", "images": ["AURORA/data/something/frames/12139/first.jpg", "AURORA/data/something/frames/12139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toothbrushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000106307", "images": ["AURORA/data/something/frames/157935/first.jpg", "AURORA/data/something/frames/157935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fluorescent light bulb out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106308", "images": ["AURORA/data/something/frames/15661/first.jpg", "AURORA/data/something/frames/15661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading vegetables onto a vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106309", "images": ["AURORA/data/something/frames/50974/first.jpg", "AURORA/data/something/frames/50974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106310", "images": ["AURORA/data/something/frames/83262/first.jpg", "AURORA/data/something/frames/83262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106311", "images": ["AURORA/data/something/frames/123836/first.jpg", "AURORA/data/something/frames/123836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pillow into a pillow case"}, {"from": "gpt", "value": ""}]} +{"id": "000000106312", "images": ["AURORA/data/something/frames/151294/first.jpg", "AURORA/data/something/frames/151294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keyboard with clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000106313", "images": ["AURORA/data/something/frames/78303/first.jpg", "AURORA/data/something/frames/78303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106314", "images": ["AURORA/data/something/frames/109256/first.jpg", "AURORA/data/something/frames/109256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling colorful scarf from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106315", "images": ["AURORA/data/something/frames/214988/first.jpg", "AURORA/data/something/frames/214988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106316", "images": ["AURORA/data/something/frames/182252/first.jpg", "AURORA/data/something/frames/182252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106317", "images": ["AURORA/data/something/frames/105275/first.jpg", "AURORA/data/something/frames/105275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging stove cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106318", "images": ["AURORA/data/something/frames/157211/first.jpg", "AURORA/data/something/frames/157211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from wardrobe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106319", "images": ["AURORA/data/something/frames/3659/first.jpg", "AURORA/data/something/frames/3659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toaster oven with an egg whisk"}, {"from": "gpt", "value": ""}]} +{"id": "000000106320", "images": ["AURORA/data/something/frames/196811/first.jpg", "AURORA/data/something/frames/196811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape, ball and helmet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106321", "images": ["AURORA/data/something/frames/139577/first.jpg", "AURORA/data/something/frames/139577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000106322", "images": ["AURORA/data/something/frames/141856/first.jpg", "AURORA/data/something/frames/141856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106323", "images": ["AURORA/data/something/frames/122269/first.jpg", "AURORA/data/something/frames/122269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chocolate next to other chocolates"}, {"from": "gpt", "value": ""}]} +{"id": "000000106324", "images": ["AURORA/data/something/frames/120355/first.jpg", "AURORA/data/something/frames/120355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000106325", "images": ["AURORA/data/something/frames/180330/first.jpg", "AURORA/data/something/frames/180330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of laptop without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106326", "images": ["AURORA/data/something/frames/66070/first.jpg", "AURORA/data/something/frames/66070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106327", "images": ["AURORA/data/something/frames/215876/first.jpg", "AURORA/data/something/frames/215876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping envelopes onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106328", "images": ["AURORA/data/something/frames/201176/first.jpg", "AURORA/data/something/frames/201176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying pocket bible in blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106329", "images": ["AURORA/data/something/frames/139070/first.jpg", "AURORA/data/something/frames/139070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106330", "images": ["AURORA/data/something/frames/205013/first.jpg", "AURORA/data/something/frames/205013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106331", "images": ["AURORA/data/something/frames/141056/first.jpg", "AURORA/data/something/frames/141056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling backpack onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106332", "images": ["AURORA/data/something/frames/192020/first.jpg", "AURORA/data/something/frames/192020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106333", "images": ["AURORA/data/something/frames/174205/first.jpg", "AURORA/data/something/frames/174205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106334", "images": ["AURORA/data/something/frames/139317/first.jpg", "AURORA/data/something/frames/139317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106335", "images": ["AURORA/data/something/frames/79473/first.jpg", "AURORA/data/something/frames/79473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106336", "images": ["AURORA/data/something/frames/2022/first.jpg", "AURORA/data/something/frames/2022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lighter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106337", "images": ["AURORA/data/something/frames/86088/first.jpg", "AURORA/data/something/frames/86088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106338", "images": ["AURORA/data/something/frames/157810/first.jpg", "AURORA/data/something/frames/157810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106339", "images": ["AURORA/data/something/frames/160076/first.jpg", "AURORA/data/something/frames/160076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening stein lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000106340", "images": ["AURORA/data/something/frames/155138/first.jpg", "AURORA/data/something/frames/155138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106341", "images": ["AURORA/data/something/frames/13124/first.jpg", "AURORA/data/something/frames/13124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb next to remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000106342", "images": ["AURORA/data/something/frames/121899/first.jpg", "AURORA/data/something/frames/121899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106343", "images": ["AURORA/data/something/frames/67126/first.jpg", "AURORA/data/something/frames/67126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting nail polish cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106344", "images": ["AURORA/data/something/frames/63501/first.jpg", "AURORA/data/something/frames/63501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106345", "images": ["AURORA/data/something/frames/87014/first.jpg", "AURORA/data/something/frames/87014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting highlighter on the edge of desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106346", "images": ["AURORA/data/something/frames/17220/first.jpg", "AURORA/data/something/frames/17220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: soda can being deflected from jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106347", "images": ["AURORA/data/something/frames/218819/first.jpg", "AURORA/data/something/frames/218819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink toothbrush case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106348", "images": ["AURORA/data/something/frames/98671/first.jpg", "AURORA/data/something/frames/98671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of shoes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106349", "images": ["AURORA/data/something/frames/83415/first.jpg", "AURORA/data/something/frames/83415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone closer to glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106350", "images": ["AURORA/data/something/frames/50434/first.jpg", "AURORA/data/something/frames/50434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into plastic case, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106351", "images": ["AURORA/data/something/frames/217280/first.jpg", "AURORA/data/something/frames/217280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plastic bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106352", "images": ["AURORA/data/something/frames/208665/first.jpg", "AURORA/data/something/frames/208665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stone onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000106353", "images": ["AURORA/data/something/frames/125396/first.jpg", "AURORA/data/something/frames/125396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dirt off of a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106354", "images": ["AURORA/data/something/frames/51189/first.jpg", "AURORA/data/something/frames/51189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glue stick from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106355", "images": ["AURORA/data/something/frames/126230/first.jpg", "AURORA/data/something/frames/126230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pillow into a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000106356", "images": ["AURORA/data/something/frames/118682/first.jpg", "AURORA/data/something/frames/118682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106357", "images": ["AURORA/data/something/frames/89924/first.jpg", "AURORA/data/something/frames/89924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106358", "images": ["AURORA/data/something/frames/47979/first.jpg", "AURORA/data/something/frames/47979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a card reader so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106359", "images": ["AURORA/data/something/frames/144763/first.jpg", "AURORA/data/something/frames/144763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting metal next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106360", "images": ["AURORA/data/something/frames/175560/first.jpg", "AURORA/data/something/frames/175560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106361", "images": ["AURORA/data/something/frames/72810/first.jpg", "AURORA/data/something/frames/72810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106362", "images": ["AURORA/data/something/frames/175924/first.jpg", "AURORA/data/something/frames/175924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting eyeglass case with clip on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106363", "images": ["AURORA/data/something/frames/185108/first.jpg", "AURORA/data/something/frames/185108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker pen away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106364", "images": ["AURORA/data/something/frames/11881/first.jpg", "AURORA/data/something/frames/11881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair bands onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106365", "images": ["AURORA/data/something/frames/60583/first.jpg", "AURORA/data/something/frames/60583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking oranges"}, {"from": "gpt", "value": ""}]} +{"id": "000000106366", "images": ["AURORA/data/something/frames/47335/first.jpg", "AURORA/data/something/frames/47335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106367", "images": ["AURORA/data/something/frames/183131/first.jpg", "AURORA/data/something/frames/183131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green bowl from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106368", "images": ["AURORA/data/something/frames/167536/first.jpg", "AURORA/data/something/frames/167536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106369", "images": ["AURORA/data/something/frames/38232/first.jpg", "AURORA/data/something/frames/38232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a clothes peg in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106370", "images": ["AURORA/data/something/frames/139106/first.jpg", "AURORA/data/something/frames/139106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106371", "images": ["AURORA/data/something/frames/3629/first.jpg", "AURORA/data/something/frames/3629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming smart phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106372", "images": ["AURORA/data/something/frames/174333/first.jpg", "AURORA/data/something/frames/174333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106373", "images": ["AURORA/data/something/frames/144303/first.jpg", "AURORA/data/something/frames/144303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a wallet of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106374", "images": ["AURORA/data/something/frames/62545/first.jpg", "AURORA/data/something/frames/62545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cube from plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106375", "images": ["AURORA/data/something/frames/44413/first.jpg", "AURORA/data/something/frames/44413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking can so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106376", "images": ["AURORA/data/something/frames/43796/first.jpg", "AURORA/data/something/frames/43796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and a pendrive closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106377", "images": ["AURORA/data/something/frames/175736/first.jpg", "AURORA/data/something/frames/175736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and knife closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106378", "images": ["AURORA/data/something/frames/44024/first.jpg", "AURORA/data/something/frames/44024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a nail cutter upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106379", "images": ["AURORA/data/something/frames/157330/first.jpg", "AURORA/data/something/frames/157330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with big bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106380", "images": ["AURORA/data/something/frames/33210/first.jpg", "AURORA/data/something/frames/33210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106381", "images": ["AURORA/data/something/frames/175642/first.jpg", "AURORA/data/something/frames/175642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106382", "images": ["AURORA/data/something/frames/56241/first.jpg", "AURORA/data/something/frames/56241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106383", "images": ["AURORA/data/something/frames/201792/first.jpg", "AURORA/data/something/frames/201792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping butter off of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106384", "images": ["AURORA/data/something/frames/105493/first.jpg", "AURORA/data/something/frames/105493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lotion container with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106385", "images": ["AURORA/data/something/frames/166294/first.jpg", "AURORA/data/something/frames/166294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106386", "images": ["AURORA/data/something/frames/34830/first.jpg", "AURORA/data/something/frames/34830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106387", "images": ["AURORA/data/something/frames/181209/first.jpg", "AURORA/data/something/frames/181209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106388", "images": ["AURORA/data/something/frames/159438/first.jpg", "AURORA/data/something/frames/159438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000106389", "images": ["AURORA/data/something/frames/152497/first.jpg", "AURORA/data/something/frames/152497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106390", "images": ["AURORA/data/something/frames/180089/first.jpg", "AURORA/data/something/frames/180089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a tablet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106391", "images": ["AURORA/data/something/frames/215797/first.jpg", "AURORA/data/something/frames/215797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cat figure and a dog figure closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106392", "images": ["AURORA/data/something/frames/190824/first.jpg", "AURORA/data/something/frames/190824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106393", "images": ["AURORA/data/something/frames/191418/first.jpg", "AURORA/data/something/frames/191418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106394", "images": ["AURORA/data/something/frames/165397/first.jpg", "AURORA/data/something/frames/165397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duster away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106395", "images": ["AURORA/data/something/frames/109733/first.jpg", "AURORA/data/something/frames/109733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting oil container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106396", "images": ["AURORA/data/something/frames/153700/first.jpg", "AURORA/data/something/frames/153700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106397", "images": ["AURORA/data/something/frames/80885/first.jpg", "AURORA/data/something/frames/80885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy with a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000106398", "images": ["AURORA/data/something/frames/26852/first.jpg", "AURORA/data/something/frames/26852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving card down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106399", "images": ["AURORA/data/something/frames/122418/first.jpg", "AURORA/data/something/frames/122418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106400", "images": ["AURORA/data/something/frames/10108/first.jpg", "AURORA/data/something/frames/10108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning turning bottles water upside down upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106401", "images": ["AURORA/data/something/frames/176716/first.jpg", "AURORA/data/something/frames/176716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden stick down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106402", "images": ["AURORA/data/something/frames/115011/first.jpg", "AURORA/data/something/frames/115011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bismuth with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106403", "images": ["AURORA/data/something/frames/102791/first.jpg", "AURORA/data/something/frames/102791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106404", "images": ["AURORA/data/something/frames/94572/first.jpg", "AURORA/data/something/frames/94572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring sand into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106405", "images": ["AURORA/data/something/frames/85114/first.jpg", "AURORA/data/something/frames/85114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106406", "images": ["AURORA/data/something/frames/100452/first.jpg", "AURORA/data/something/frames/100452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106407", "images": ["AURORA/data/something/frames/89456/first.jpg", "AURORA/data/something/frames/89456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plate so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106408", "images": ["AURORA/data/something/frames/91409/first.jpg", "AURORA/data/something/frames/91409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fruit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106409", "images": ["AURORA/data/something/frames/73057/first.jpg", "AURORA/data/something/frames/73057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106410", "images": ["AURORA/data/something/frames/205113/first.jpg", "AURORA/data/something/frames/205113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a sandbax with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106411", "images": ["AURORA/data/something/frames/123975/first.jpg", "AURORA/data/something/frames/123975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky note to a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106412", "images": ["AURORA/data/something/frames/50796/first.jpg", "AURORA/data/something/frames/50796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tablet out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106413", "images": ["AURORA/data/something/frames/138389/first.jpg", "AURORA/data/something/frames/138389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106414", "images": ["AURORA/data/something/frames/7369/first.jpg", "AURORA/data/something/frames/7369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106415", "images": ["AURORA/data/something/frames/73233/first.jpg", "AURORA/data/something/frames/73233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000106416", "images": ["AURORA/data/something/frames/217426/first.jpg", "AURORA/data/something/frames/217426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106417", "images": ["AURORA/data/something/frames/199086/first.jpg", "AURORA/data/something/frames/199086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hair comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000106418", "images": ["AURORA/data/something/frames/103284/first.jpg", "AURORA/data/something/frames/103284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106419", "images": ["AURORA/data/something/frames/131324/first.jpg", "AURORA/data/something/frames/131324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a salt shaker so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106420", "images": ["AURORA/data/something/frames/82695/first.jpg", "AURORA/data/something/frames/82695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106421", "images": ["AURORA/data/something/frames/23393/first.jpg", "AURORA/data/something/frames/23393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of crocheted yarn so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000106422", "images": ["AURORA/data/something/frames/87615/first.jpg", "AURORA/data/something/frames/87615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106423", "images": ["AURORA/data/something/frames/68182/first.jpg", "AURORA/data/something/frames/68182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106424", "images": ["AURORA/data/something/frames/38808/first.jpg", "AURORA/data/something/frames/38808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106425", "images": ["AURORA/data/something/frames/140913/first.jpg", "AURORA/data/something/frames/140913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cotton ball so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000106426", "images": ["AURORA/data/something/frames/29698/first.jpg", "AURORA/data/something/frames/29698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a container so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106427", "images": ["AURORA/data/something/frames/43316/first.jpg", "AURORA/data/something/frames/43316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rubix cube away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106428", "images": ["AURORA/data/something/frames/881/first.jpg", "AURORA/data/something/frames/881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106429", "images": ["AURORA/data/something/frames/127704/first.jpg", "AURORA/data/something/frames/127704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one rubber band of many similar rubber bands on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106430", "images": ["AURORA/data/something/frames/18224/first.jpg", "AURORA/data/something/frames/18224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth rags into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106431", "images": ["AURORA/data/something/frames/64282/first.jpg", "AURORA/data/something/frames/64282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106432", "images": ["AURORA/data/something/frames/114755/first.jpg", "AURORA/data/something/frames/114755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sheet up with pizza cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106433", "images": ["AURORA/data/something/frames/76441/first.jpg", "AURORA/data/something/frames/76441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pillow with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106434", "images": ["AURORA/data/something/frames/155249/first.jpg", "AURORA/data/something/frames/155249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106435", "images": ["AURORA/data/something/frames/63281/first.jpg", "AURORA/data/something/frames/63281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106436", "images": ["AURORA/data/something/frames/176755/first.jpg", "AURORA/data/something/frames/176755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen and a water bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106437", "images": ["AURORA/data/something/frames/102308/first.jpg", "AURORA/data/something/frames/102308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106438", "images": ["AURORA/data/something/frames/134581/first.jpg", "AURORA/data/something/frames/134581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping glue bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106439", "images": ["AURORA/data/something/frames/113790/first.jpg", "AURORA/data/something/frames/113790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and cellphone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106440", "images": ["AURORA/data/something/frames/115622/first.jpg", "AURORA/data/something/frames/115622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a handkerchief so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106441", "images": ["AURORA/data/something/frames/40152/first.jpg", "AURORA/data/something/frames/40152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending small envelope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106442", "images": ["AURORA/data/something/frames/21912/first.jpg", "AURORA/data/something/frames/21912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106443", "images": ["AURORA/data/something/frames/87965/first.jpg", "AURORA/data/something/frames/87965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106444", "images": ["AURORA/data/something/frames/56944/first.jpg", "AURORA/data/something/frames/56944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling beads from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106445", "images": ["AURORA/data/something/frames/50321/first.jpg", "AURORA/data/something/frames/50321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106446", "images": ["AURORA/data/something/frames/29559/first.jpg", "AURORA/data/something/frames/29559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cube into dish"}, {"from": "gpt", "value": ""}]} +{"id": "000000106447", "images": ["AURORA/data/something/frames/189827/first.jpg", "AURORA/data/something/frames/189827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a computer mouse on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106448", "images": ["AURORA/data/something/frames/160870/first.jpg", "AURORA/data/something/frames/160870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106449", "images": ["AURORA/data/something/frames/92356/first.jpg", "AURORA/data/something/frames/92356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting books with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106450", "images": ["AURORA/data/something/frames/78978/first.jpg", "AURORA/data/something/frames/78978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting wall with tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000106451", "images": ["AURORA/data/something/frames/183276/first.jpg", "AURORA/data/something/frames/183276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping shot glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106452", "images": ["AURORA/data/something/frames/189156/first.jpg", "AURORA/data/something/frames/189156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing handkerchief into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106453", "images": ["AURORA/data/something/frames/28947/first.jpg", "AURORA/data/something/frames/28947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing gift into of plastic egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000106454", "images": ["AURORA/data/something/frames/123/first.jpg", "AURORA/data/something/frames/123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking brush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106455", "images": ["AURORA/data/something/frames/186095/first.jpg", "AURORA/data/something/frames/186095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of marker pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106456", "images": ["AURORA/data/something/frames/31780/first.jpg", "AURORA/data/something/frames/31780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106457", "images": ["AURORA/data/something/frames/16516/first.jpg", "AURORA/data/something/frames/16516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106458", "images": ["AURORA/data/something/frames/132288/first.jpg", "AURORA/data/something/frames/132288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a screwdriver without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106459", "images": ["AURORA/data/something/frames/92194/first.jpg", "AURORA/data/something/frames/92194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a can upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106460", "images": ["AURORA/data/something/frames/112017/first.jpg", "AURORA/data/something/frames/112017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106461", "images": ["AURORA/data/something/frames/205255/first.jpg", "AURORA/data/something/frames/205255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting backpack with boot"}, {"from": "gpt", "value": ""}]} +{"id": "000000106462", "images": ["AURORA/data/something/frames/182072/first.jpg", "AURORA/data/something/frames/182072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106463", "images": ["AURORA/data/something/frames/52020/first.jpg", "AURORA/data/something/frames/52020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet out of trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106464", "images": ["AURORA/data/something/frames/97774/first.jpg", "AURORA/data/something/frames/97774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying something on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106465", "images": ["AURORA/data/something/frames/53698/first.jpg", "AURORA/data/something/frames/53698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000106466", "images": ["AURORA/data/something/frames/150814/first.jpg", "AURORA/data/something/frames/150814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wood carving"}, {"from": "gpt", "value": ""}]} +{"id": "000000106467", "images": ["AURORA/data/something/frames/151351/first.jpg", "AURORA/data/something/frames/151351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling four blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106468", "images": ["AURORA/data/something/frames/124129/first.jpg", "AURORA/data/something/frames/124129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mallet underneath a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106469", "images": ["AURORA/data/something/frames/73868/first.jpg", "AURORA/data/something/frames/73868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tissue into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106470", "images": ["AURORA/data/something/frames/187593/first.jpg", "AURORA/data/something/frames/187593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106471", "images": ["AURORA/data/something/frames/207992/first.jpg", "AURORA/data/something/frames/207992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106472", "images": ["AURORA/data/something/frames/105620/first.jpg", "AURORA/data/something/frames/105620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a coin from behind of a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000106473", "images": ["AURORA/data/something/frames/52271/first.jpg", "AURORA/data/something/frames/52271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106474", "images": ["AURORA/data/something/frames/121692/first.jpg", "AURORA/data/something/frames/121692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106475", "images": ["AURORA/data/something/frames/24136/first.jpg", "AURORA/data/something/frames/24136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106476", "images": ["AURORA/data/something/frames/112584/first.jpg", "AURORA/data/something/frames/112584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cucumber down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106477", "images": ["AURORA/data/something/frames/220500/first.jpg", "AURORA/data/something/frames/220500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106478", "images": ["AURORA/data/something/frames/56863/first.jpg", "AURORA/data/something/frames/56863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106479", "images": ["AURORA/data/something/frames/176076/first.jpg", "AURORA/data/something/frames/176076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106480", "images": ["AURORA/data/something/frames/99295/first.jpg", "AURORA/data/something/frames/99295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a matchbox upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106481", "images": ["AURORA/data/something/frames/139036/first.jpg", "AURORA/data/something/frames/139036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a rock with other rocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106482", "images": ["AURORA/data/something/frames/74211/first.jpg", "AURORA/data/something/frames/74211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 toy wheels"}, {"from": "gpt", "value": ""}]} +{"id": "000000106483", "images": ["AURORA/data/something/frames/115291/first.jpg", "AURORA/data/something/frames/115291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106484", "images": ["AURORA/data/something/frames/81572/first.jpg", "AURORA/data/something/frames/81572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a mug on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106485", "images": ["AURORA/data/something/frames/114381/first.jpg", "AURORA/data/something/frames/114381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106486", "images": ["AURORA/data/something/frames/94617/first.jpg", "AURORA/data/something/frames/94617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the drawer from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106487", "images": ["AURORA/data/something/frames/3115/first.jpg", "AURORA/data/something/frames/3115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106488", "images": ["AURORA/data/something/frames/79373/first.jpg", "AURORA/data/something/frames/79373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106489", "images": ["AURORA/data/something/frames/146181/first.jpg", "AURORA/data/something/frames/146181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving oil bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106490", "images": ["AURORA/data/something/frames/52432/first.jpg", "AURORA/data/something/frames/52432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glass with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106491", "images": ["AURORA/data/something/frames/70882/first.jpg", "AURORA/data/something/frames/70882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting setquare next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106492", "images": ["AURORA/data/something/frames/10454/first.jpg", "AURORA/data/something/frames/10454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106493", "images": ["AURORA/data/something/frames/215234/first.jpg", "AURORA/data/something/frames/215234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106494", "images": ["AURORA/data/something/frames/171041/first.jpg", "AURORA/data/something/frames/171041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box behind bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106495", "images": ["AURORA/data/something/frames/178993/first.jpg", "AURORA/data/something/frames/178993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying lighter in soil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106496", "images": ["AURORA/data/something/frames/94423/first.jpg", "AURORA/data/something/frames/94423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coaster across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106497", "images": ["AURORA/data/something/frames/16887/first.jpg", "AURORA/data/something/frames/16887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bar soap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106498", "images": ["AURORA/data/something/frames/104053/first.jpg", "AURORA/data/something/frames/104053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting my phone with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106499", "images": ["AURORA/data/something/frames/185533/first.jpg", "AURORA/data/something/frames/185533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106500", "images": ["AURORA/data/something/frames/53062/first.jpg", "AURORA/data/something/frames/53062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106501", "images": ["AURORA/data/something/frames/106101/first.jpg", "AURORA/data/something/frames/106101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a t-shirt to laundry thread"}, {"from": "gpt", "value": ""}]} +{"id": "000000106502", "images": ["AURORA/data/something/frames/120242/first.jpg", "AURORA/data/something/frames/120242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ball out of cardboard box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106503", "images": ["AURORA/data/something/frames/20994/first.jpg", "AURORA/data/something/frames/20994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip gloss and coffee mug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106504", "images": ["AURORA/data/something/frames/73054/first.jpg", "AURORA/data/something/frames/73054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and a pendrive away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106505", "images": ["AURORA/data/something/frames/42151/first.jpg", "AURORA/data/something/frames/42151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106506", "images": ["AURORA/data/something/frames/92701/first.jpg", "AURORA/data/something/frames/92701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106507", "images": ["AURORA/data/something/frames/171173/first.jpg", "AURORA/data/something/frames/171173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shoe next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106508", "images": ["AURORA/data/something/frames/14519/first.jpg", "AURORA/data/something/frames/14519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106509", "images": ["AURORA/data/something/frames/159433/first.jpg", "AURORA/data/something/frames/159433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper out of rift"}, {"from": "gpt", "value": ""}]} +{"id": "000000106510", "images": ["AURORA/data/something/frames/127954/first.jpg", "AURORA/data/something/frames/127954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106511", "images": ["AURORA/data/something/frames/58108/first.jpg", "AURORA/data/something/frames/58108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toothpaste tube with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106512", "images": ["AURORA/data/something/frames/138724/first.jpg", "AURORA/data/something/frames/138724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping dog food up with a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106513", "images": ["AURORA/data/something/frames/97015/first.jpg", "AURORA/data/something/frames/97015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy tiger so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106514", "images": ["AURORA/data/something/frames/168066/first.jpg", "AURORA/data/something/frames/168066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hairclip next to piggybank"}, {"from": "gpt", "value": ""}]} +{"id": "000000106515", "images": ["AURORA/data/something/frames/25092/first.jpg", "AURORA/data/something/frames/25092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106516", "images": ["AURORA/data/something/frames/181078/first.jpg", "AURORA/data/something/frames/181078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106517", "images": ["AURORA/data/something/frames/191177/first.jpg", "AURORA/data/something/frames/191177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking world globe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106518", "images": ["AURORA/data/something/frames/84959/first.jpg", "AURORA/data/something/frames/84959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ribbon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106519", "images": ["AURORA/data/something/frames/111324/first.jpg", "AURORA/data/something/frames/111324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106520", "images": ["AURORA/data/something/frames/112667/first.jpg", "AURORA/data/something/frames/112667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a piece of cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106521", "images": ["AURORA/data/something/frames/114731/first.jpg", "AURORA/data/something/frames/114731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the handle of the purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106522", "images": ["AURORA/data/something/frames/77481/first.jpg", "AURORA/data/something/frames/77481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning body cream upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106523", "images": ["AURORA/data/something/frames/53960/first.jpg", "AURORA/data/something/frames/53960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106524", "images": ["AURORA/data/something/frames/181149/first.jpg", "AURORA/data/something/frames/181149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a headphone plug into a jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106525", "images": ["AURORA/data/something/frames/89731/first.jpg", "AURORA/data/something/frames/89731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking clip so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106526", "images": ["AURORA/data/something/frames/9644/first.jpg", "AURORA/data/something/frames/9644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving matchbox down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106527", "images": ["AURORA/data/something/frames/143847/first.jpg", "AURORA/data/something/frames/143847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106528", "images": ["AURORA/data/something/frames/16722/first.jpg", "AURORA/data/something/frames/16722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling starburst up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106529", "images": ["AURORA/data/something/frames/41807/first.jpg", "AURORA/data/something/frames/41807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate closer to toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000106530", "images": ["AURORA/data/something/frames/148261/first.jpg", "AURORA/data/something/frames/148261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cord to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106531", "images": ["AURORA/data/something/frames/47439/first.jpg", "AURORA/data/something/frames/47439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a cover colliding with pen and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106532", "images": ["AURORA/data/something/frames/176261/first.jpg", "AURORA/data/something/frames/176261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking comb out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106533", "images": ["AURORA/data/something/frames/25599/first.jpg", "AURORA/data/something/frames/25599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheel of bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000106534", "images": ["AURORA/data/something/frames/122584/first.jpg", "AURORA/data/something/frames/122584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cooking pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000106535", "images": ["AURORA/data/something/frames/100906/first.jpg", "AURORA/data/something/frames/100906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping medicine bottle onto a medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106536", "images": ["AURORA/data/something/frames/99226/first.jpg", "AURORA/data/something/frames/99226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil sharpner away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106537", "images": ["AURORA/data/something/frames/207527/first.jpg", "AURORA/data/something/frames/207527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106538", "images": ["AURORA/data/something/frames/121842/first.jpg", "AURORA/data/something/frames/121842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 laptop onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106539", "images": ["AURORA/data/something/frames/74886/first.jpg", "AURORA/data/something/frames/74886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000106540", "images": ["AURORA/data/something/frames/149622/first.jpg", "AURORA/data/something/frames/149622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106541", "images": ["AURORA/data/something/frames/23178/first.jpg", "AURORA/data/something/frames/23178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106542", "images": ["AURORA/data/something/frames/156427/first.jpg", "AURORA/data/something/frames/156427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106543", "images": ["AURORA/data/something/frames/192598/first.jpg", "AURORA/data/something/frames/192598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with glasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106544", "images": ["AURORA/data/something/frames/50045/first.jpg", "AURORA/data/something/frames/50045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing the book, revealing the key behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106545", "images": ["AURORA/data/something/frames/131362/first.jpg", "AURORA/data/something/frames/131362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106546", "images": ["AURORA/data/something/frames/40547/first.jpg", "AURORA/data/something/frames/40547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106547", "images": ["AURORA/data/something/frames/43039/first.jpg", "AURORA/data/something/frames/43039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106548", "images": ["AURORA/data/something/frames/142742/first.jpg", "AURORA/data/something/frames/142742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106549", "images": ["AURORA/data/something/frames/62212/first.jpg", "AURORA/data/something/frames/62212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger away from toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000106550", "images": ["AURORA/data/something/frames/81447/first.jpg", "AURORA/data/something/frames/81447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning something upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106551", "images": ["AURORA/data/something/frames/77720/first.jpg", "AURORA/data/something/frames/77720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to pebble"}, {"from": "gpt", "value": ""}]} +{"id": "000000106552", "images": ["AURORA/data/something/frames/113084/first.jpg", "AURORA/data/something/frames/113084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106553", "images": ["AURORA/data/something/frames/129871/first.jpg", "AURORA/data/something/frames/129871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106554", "images": ["AURORA/data/something/frames/4316/first.jpg", "AURORA/data/something/frames/4316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106555", "images": ["AURORA/data/something/frames/148516/first.jpg", "AURORA/data/something/frames/148516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a slice of bread until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106556", "images": ["AURORA/data/something/frames/61921/first.jpg", "AURORA/data/something/frames/61921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling coffee cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106557", "images": ["AURORA/data/something/frames/134199/first.jpg", "AURORA/data/something/frames/134199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hairclip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106558", "images": ["AURORA/data/something/frames/131644/first.jpg", "AURORA/data/something/frames/131644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notepad into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106559", "images": ["AURORA/data/something/frames/214887/first.jpg", "AURORA/data/something/frames/214887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spice from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106560", "images": ["AURORA/data/something/frames/148472/first.jpg", "AURORA/data/something/frames/148472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tablet onto mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000106561", "images": ["AURORA/data/something/frames/34157/first.jpg", "AURORA/data/something/frames/34157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106562", "images": ["AURORA/data/something/frames/11274/first.jpg", "AURORA/data/something/frames/11274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) ear of coffeecup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106563", "images": ["AURORA/data/something/frames/200926/first.jpg", "AURORA/data/something/frames/200926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from metal wall art with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106564", "images": ["AURORA/data/something/frames/120798/first.jpg", "AURORA/data/something/frames/120798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106565", "images": ["AURORA/data/something/frames/93464/first.jpg", "AURORA/data/something/frames/93464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106566", "images": ["AURORA/data/something/frames/36819/first.jpg", "AURORA/data/something/frames/36819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106567", "images": ["AURORA/data/something/frames/55817/first.jpg", "AURORA/data/something/frames/55817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106568", "images": ["AURORA/data/something/frames/23745/first.jpg", "AURORA/data/something/frames/23745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet behind a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106569", "images": ["AURORA/data/something/frames/93346/first.jpg", "AURORA/data/something/frames/93346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cigarette lighter with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106570", "images": ["AURORA/data/something/frames/134497/first.jpg", "AURORA/data/something/frames/134497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000106571", "images": ["AURORA/data/something/frames/173566/first.jpg", "AURORA/data/something/frames/173566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning perfume bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106572", "images": ["AURORA/data/something/frames/207901/first.jpg", "AURORA/data/something/frames/207901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting container with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106573", "images": ["AURORA/data/something/frames/59905/first.jpg", "AURORA/data/something/frames/59905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange onto notebook so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106574", "images": ["AURORA/data/something/frames/187446/first.jpg", "AURORA/data/something/frames/187446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing study table from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106575", "images": ["AURORA/data/something/frames/31006/first.jpg", "AURORA/data/something/frames/31006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a toy cradle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106576", "images": ["AURORA/data/something/frames/96478/first.jpg", "AURORA/data/something/frames/96478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000106577", "images": ["AURORA/data/something/frames/130128/first.jpg", "AURORA/data/something/frames/130128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106578", "images": ["AURORA/data/something/frames/16152/first.jpg", "AURORA/data/something/frames/16152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging coin out of flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000106579", "images": ["AURORA/data/something/frames/97671/first.jpg", "AURORA/data/something/frames/97671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106580", "images": ["AURORA/data/something/frames/86389/first.jpg", "AURORA/data/something/frames/86389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tube into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106581", "images": ["AURORA/data/something/frames/207707/first.jpg", "AURORA/data/something/frames/207707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto sink surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106582", "images": ["AURORA/data/something/frames/163709/first.jpg", "AURORA/data/something/frames/163709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wall charger into home outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106583", "images": ["AURORA/data/something/frames/203364/first.jpg", "AURORA/data/something/frames/203364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106584", "images": ["AURORA/data/something/frames/69101/first.jpg", "AURORA/data/something/frames/69101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling fingernail clippers from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106585", "images": ["AURORA/data/something/frames/131418/first.jpg", "AURORA/data/something/frames/131418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming christmas tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000106586", "images": ["AURORA/data/something/frames/204370/first.jpg", "AURORA/data/something/frames/204370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains into a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106587", "images": ["AURORA/data/something/frames/45558/first.jpg", "AURORA/data/something/frames/45558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pink water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106588", "images": ["AURORA/data/something/frames/166929/first.jpg", "AURORA/data/something/frames/166929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wheel chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106589", "images": ["AURORA/data/something/frames/140485/first.jpg", "AURORA/data/something/frames/140485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting suncreen, a stuffed animal and fake flowers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106590", "images": ["AURORA/data/something/frames/45463/first.jpg", "AURORA/data/something/frames/45463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106591", "images": ["AURORA/data/something/frames/212684/first.jpg", "AURORA/data/something/frames/212684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 sheets of paper onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106592", "images": ["AURORA/data/something/frames/63801/first.jpg", "AURORA/data/something/frames/63801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106593", "images": ["AURORA/data/something/frames/168963/first.jpg", "AURORA/data/something/frames/168963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a lid up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106594", "images": ["AURORA/data/something/frames/211057/first.jpg", "AURORA/data/something/frames/211057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering blue spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106595", "images": ["AURORA/data/something/frames/187316/first.jpg", "AURORA/data/something/frames/187316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soap closer to soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106596", "images": ["AURORA/data/something/frames/59378/first.jpg", "AURORA/data/something/frames/59378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing action camera from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106597", "images": ["AURORA/data/something/frames/207085/first.jpg", "AURORA/data/something/frames/207085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106598", "images": ["AURORA/data/something/frames/46863/first.jpg", "AURORA/data/something/frames/46863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with paper on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106599", "images": ["AURORA/data/something/frames/58248/first.jpg", "AURORA/data/something/frames/58248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106600", "images": ["AURORA/data/something/frames/34063/first.jpg", "AURORA/data/something/frames/34063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106601", "images": ["AURORA/data/something/frames/107918/first.jpg", "AURORA/data/something/frames/107918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler behind comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000106602", "images": ["AURORA/data/something/frames/142422/first.jpg", "AURORA/data/something/frames/142422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into tumbler until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106603", "images": ["AURORA/data/something/frames/178608/first.jpg", "AURORA/data/something/frames/178608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106604", "images": ["AURORA/data/something/frames/141418/first.jpg", "AURORA/data/something/frames/141418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a sweater"}, {"from": "gpt", "value": ""}]} +{"id": "000000106605", "images": ["AURORA/data/something/frames/40960/first.jpg", "AURORA/data/something/frames/40960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of plastic boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106606", "images": ["AURORA/data/something/frames/206599/first.jpg", "AURORA/data/something/frames/206599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106607", "images": ["AURORA/data/something/frames/65977/first.jpg", "AURORA/data/something/frames/65977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106608", "images": ["AURORA/data/something/frames/99091/first.jpg", "AURORA/data/something/frames/99091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106609", "images": ["AURORA/data/something/frames/70159/first.jpg", "AURORA/data/something/frames/70159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106610", "images": ["AURORA/data/something/frames/109071/first.jpg", "AURORA/data/something/frames/109071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 breads onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106611", "images": ["AURORA/data/something/frames/178872/first.jpg", "AURORA/data/something/frames/178872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper of pile of papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000106612", "images": ["AURORA/data/something/frames/137184/first.jpg", "AURORA/data/something/frames/137184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106613", "images": ["AURORA/data/something/frames/8827/first.jpg", "AURORA/data/something/frames/8827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106614", "images": ["AURORA/data/something/frames/11335/first.jpg", "AURORA/data/something/frames/11335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a potholder so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106615", "images": ["AURORA/data/something/frames/23262/first.jpg", "AURORA/data/something/frames/23262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106616", "images": ["AURORA/data/something/frames/139537/first.jpg", "AURORA/data/something/frames/139537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a box with a cottonball on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106617", "images": ["AURORA/data/something/frames/36775/first.jpg", "AURORA/data/something/frames/36775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000106618", "images": ["AURORA/data/something/frames/180081/first.jpg", "AURORA/data/something/frames/180081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106619", "images": ["AURORA/data/something/frames/93609/first.jpg", "AURORA/data/something/frames/93609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106620", "images": ["AURORA/data/something/frames/144967/first.jpg", "AURORA/data/something/frames/144967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping juice off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106621", "images": ["AURORA/data/something/frames/39036/first.jpg", "AURORA/data/something/frames/39036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of clementines so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106622", "images": ["AURORA/data/something/frames/9338/first.jpg", "AURORA/data/something/frames/9338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106623", "images": ["AURORA/data/something/frames/63057/first.jpg", "AURORA/data/something/frames/63057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle from bench"}, {"from": "gpt", "value": ""}]} +{"id": "000000106624", "images": ["AURORA/data/something/frames/176392/first.jpg", "AURORA/data/something/frames/176392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106625", "images": ["AURORA/data/something/frames/141612/first.jpg", "AURORA/data/something/frames/141612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a toy into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106626", "images": ["AURORA/data/something/frames/29307/first.jpg", "AURORA/data/something/frames/29307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106627", "images": ["AURORA/data/something/frames/208462/first.jpg", "AURORA/data/something/frames/208462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106628", "images": ["AURORA/data/something/frames/75993/first.jpg", "AURORA/data/something/frames/75993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green bowl on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106629", "images": ["AURORA/data/something/frames/130409/first.jpg", "AURORA/data/something/frames/130409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106630", "images": ["AURORA/data/something/frames/205323/first.jpg", "AURORA/data/something/frames/205323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle with water over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106631", "images": ["AURORA/data/something/frames/133940/first.jpg", "AURORA/data/something/frames/133940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power cord into a laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106632", "images": ["AURORA/data/something/frames/208307/first.jpg", "AURORA/data/something/frames/208307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red spoon and battery on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106633", "images": ["AURORA/data/something/frames/38329/first.jpg", "AURORA/data/something/frames/38329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106634", "images": ["AURORA/data/something/frames/15503/first.jpg", "AURORA/data/something/frames/15503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting badminton bat upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106635", "images": ["AURORA/data/something/frames/101726/first.jpg", "AURORA/data/something/frames/101726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 plates"}, {"from": "gpt", "value": ""}]} +{"id": "000000106636", "images": ["AURORA/data/something/frames/64623/first.jpg", "AURORA/data/something/frames/64623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106637", "images": ["AURORA/data/something/frames/85026/first.jpg", "AURORA/data/something/frames/85026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a peanut butter jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106638", "images": ["AURORA/data/something/frames/91836/first.jpg", "AURORA/data/something/frames/91836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106639", "images": ["AURORA/data/something/frames/125220/first.jpg", "AURORA/data/something/frames/125220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106640", "images": ["AURORA/data/something/frames/147016/first.jpg", "AURORA/data/something/frames/147016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pear from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106641", "images": ["AURORA/data/something/frames/101653/first.jpg", "AURORA/data/something/frames/101653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic cap out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106642", "images": ["AURORA/data/something/frames/11977/first.jpg", "AURORA/data/something/frames/11977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a drumstick without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106643", "images": ["AURORA/data/something/frames/218573/first.jpg", "AURORA/data/something/frames/218573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106644", "images": ["AURORA/data/something/frames/135434/first.jpg", "AURORA/data/something/frames/135434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a circuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106645", "images": ["AURORA/data/something/frames/121727/first.jpg", "AURORA/data/something/frames/121727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000106646", "images": ["AURORA/data/something/frames/55262/first.jpg", "AURORA/data/something/frames/55262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and snap off blade closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106647", "images": ["AURORA/data/something/frames/74538/first.jpg", "AURORA/data/something/frames/74538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106648", "images": ["AURORA/data/something/frames/174830/first.jpg", "AURORA/data/something/frames/174830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106649", "images": ["AURORA/data/something/frames/149422/first.jpg", "AURORA/data/something/frames/149422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106650", "images": ["AURORA/data/something/frames/142478/first.jpg", "AURORA/data/something/frames/142478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and candle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106651", "images": ["AURORA/data/something/frames/34199/first.jpg", "AURORA/data/something/frames/34199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a wine glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106652", "images": ["AURORA/data/something/frames/79548/first.jpg", "AURORA/data/something/frames/79548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a flyer just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106653", "images": ["AURORA/data/something/frames/5810/first.jpg", "AURORA/data/something/frames/5810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106654", "images": ["AURORA/data/something/frames/157563/first.jpg", "AURORA/data/something/frames/157563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse and remote away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106655", "images": ["AURORA/data/something/frames/34926/first.jpg", "AURORA/data/something/frames/34926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pair of scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000106656", "images": ["AURORA/data/something/frames/200748/first.jpg", "AURORA/data/something/frames/200748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring suji into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000106657", "images": ["AURORA/data/something/frames/20466/first.jpg", "AURORA/data/something/frames/20466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106658", "images": ["AURORA/data/something/frames/131308/first.jpg", "AURORA/data/something/frames/131308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving make up closer to a soda"}, {"from": "gpt", "value": ""}]} +{"id": "000000106659", "images": ["AURORA/data/something/frames/61617/first.jpg", "AURORA/data/something/frames/61617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a card so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106660", "images": ["AURORA/data/something/frames/213276/first.jpg", "AURORA/data/something/frames/213276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting empty treat bar wrap on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106661", "images": ["AURORA/data/something/frames/75931/first.jpg", "AURORA/data/something/frames/75931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106662", "images": ["AURORA/data/something/frames/175595/first.jpg", "AURORA/data/something/frames/175595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pillow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106663", "images": ["AURORA/data/something/frames/116399/first.jpg", "AURORA/data/something/frames/116399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106664", "images": ["AURORA/data/something/frames/15896/first.jpg", "AURORA/data/something/frames/15896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour oil into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106665", "images": ["AURORA/data/something/frames/115808/first.jpg", "AURORA/data/something/frames/115808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer out of a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106666", "images": ["AURORA/data/something/frames/173157/first.jpg", "AURORA/data/something/frames/173157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching cup with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106667", "images": ["AURORA/data/something/frames/23234/first.jpg", "AURORA/data/something/frames/23234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106668", "images": ["AURORA/data/something/frames/15783/first.jpg", "AURORA/data/something/frames/15783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing apple from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106669", "images": ["AURORA/data/something/frames/135596/first.jpg", "AURORA/data/something/frames/135596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a smartphone away from a calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000106670", "images": ["AURORA/data/something/frames/182519/first.jpg", "AURORA/data/something/frames/182519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling car out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106671", "images": ["AURORA/data/something/frames/14898/first.jpg", "AURORA/data/something/frames/14898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a jar on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106672", "images": ["AURORA/data/something/frames/128300/first.jpg", "AURORA/data/something/frames/128300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a wine glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106673", "images": ["AURORA/data/something/frames/217935/first.jpg", "AURORA/data/something/frames/217935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into a charging port"}, {"from": "gpt", "value": ""}]} +{"id": "000000106674", "images": ["AURORA/data/something/frames/139854/first.jpg", "AURORA/data/something/frames/139854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106675", "images": ["AURORA/data/something/frames/1686/first.jpg", "AURORA/data/something/frames/1686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper out of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106676", "images": ["AURORA/data/something/frames/215545/first.jpg", "AURORA/data/something/frames/215545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a remote control with a comb on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106677", "images": ["AURORA/data/something/frames/40456/first.jpg", "AURORA/data/something/frames/40456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming tooth paste"}, {"from": "gpt", "value": ""}]} +{"id": "000000106678", "images": ["AURORA/data/something/frames/181516/first.jpg", "AURORA/data/something/frames/181516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting elephant statue on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106679", "images": ["AURORA/data/something/frames/79254/first.jpg", "AURORA/data/something/frames/79254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pillow out of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000106680", "images": ["AURORA/data/something/frames/136173/first.jpg", "AURORA/data/something/frames/136173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plate into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000106681", "images": ["AURORA/data/something/frames/150165/first.jpg", "AURORA/data/something/frames/150165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of elastic cloth so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000106682", "images": ["AURORA/data/something/frames/129033/first.jpg", "AURORA/data/something/frames/129033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106683", "images": ["AURORA/data/something/frames/114147/first.jpg", "AURORA/data/something/frames/114147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving geometric compass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106684", "images": ["AURORA/data/something/frames/195699/first.jpg", "AURORA/data/something/frames/195699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping comb into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106685", "images": ["AURORA/data/something/frames/186819/first.jpg", "AURORA/data/something/frames/186819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106686", "images": ["AURORA/data/something/frames/57642/first.jpg", "AURORA/data/something/frames/57642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into powerpoint"}, {"from": "gpt", "value": ""}]} +{"id": "000000106687", "images": ["AURORA/data/something/frames/59109/first.jpg", "AURORA/data/something/frames/59109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending chocolate bar until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106688", "images": ["AURORA/data/something/frames/22091/first.jpg", "AURORA/data/something/frames/22091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tv remote from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000106689", "images": ["AURORA/data/something/frames/147834/first.jpg", "AURORA/data/something/frames/147834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery next to yellow container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106690", "images": ["AURORA/data/something/frames/140733/first.jpg", "AURORA/data/something/frames/140733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shovel of a toy excavator"}, {"from": "gpt", "value": ""}]} +{"id": "000000106691", "images": ["AURORA/data/something/frames/71752/first.jpg", "AURORA/data/something/frames/71752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106692", "images": ["AURORA/data/something/frames/39269/first.jpg", "AURORA/data/something/frames/39269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106693", "images": ["AURORA/data/something/frames/68317/first.jpg", "AURORA/data/something/frames/68317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting small box on the edge of bigger box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106694", "images": ["AURORA/data/something/frames/145926/first.jpg", "AURORA/data/something/frames/145926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106695", "images": ["AURORA/data/something/frames/132839/first.jpg", "AURORA/data/something/frames/132839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissues into a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106696", "images": ["AURORA/data/something/frames/9855/first.jpg", "AURORA/data/something/frames/9855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading rice onto plastic-lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000106697", "images": ["AURORA/data/something/frames/39056/first.jpg", "AURORA/data/something/frames/39056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking massage pillow so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106698", "images": ["AURORA/data/something/frames/207570/first.jpg", "AURORA/data/something/frames/207570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a note to a notice board"}, {"from": "gpt", "value": ""}]} +{"id": "000000106699", "images": ["AURORA/data/something/frames/156325/first.jpg", "AURORA/data/something/frames/156325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing card onto puzzle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106700", "images": ["AURORA/data/something/frames/138624/first.jpg", "AURORA/data/something/frames/138624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning spoon upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106701", "images": ["AURORA/data/something/frames/92118/first.jpg", "AURORA/data/something/frames/92118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106702", "images": ["AURORA/data/something/frames/10501/first.jpg", "AURORA/data/something/frames/10501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork, a spoon and a knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106703", "images": ["AURORA/data/something/frames/78336/first.jpg", "AURORA/data/something/frames/78336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush and toothpaste so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106704", "images": ["AURORA/data/something/frames/16134/first.jpg", "AURORA/data/something/frames/16134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling metal keys from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106705", "images": ["AURORA/data/something/frames/148138/first.jpg", "AURORA/data/something/frames/148138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106706", "images": ["AURORA/data/something/frames/85095/first.jpg", "AURORA/data/something/frames/85095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cup with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106707", "images": ["AURORA/data/something/frames/107442/first.jpg", "AURORA/data/something/frames/107442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching door with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106708", "images": ["AURORA/data/something/frames/63915/first.jpg", "AURORA/data/something/frames/63915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000106709", "images": ["AURORA/data/something/frames/162105/first.jpg", "AURORA/data/something/frames/162105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106710", "images": ["AURORA/data/something/frames/35742/first.jpg", "AURORA/data/something/frames/35742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen and a pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106711", "images": ["AURORA/data/something/frames/72327/first.jpg", "AURORA/data/something/frames/72327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a children's book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106712", "images": ["AURORA/data/something/frames/207394/first.jpg", "AURORA/data/something/frames/207394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a sweet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106713", "images": ["AURORA/data/something/frames/123869/first.jpg", "AURORA/data/something/frames/123869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish bottle and post it notes away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106714", "images": ["AURORA/data/something/frames/180889/first.jpg", "AURORA/data/something/frames/180889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106715", "images": ["AURORA/data/something/frames/94899/first.jpg", "AURORA/data/something/frames/94899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one binder clip of many similar binder clips on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106716", "images": ["AURORA/data/something/frames/109650/first.jpg", "AURORA/data/something/frames/109650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing metal box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106717", "images": ["AURORA/data/something/frames/74580/first.jpg", "AURORA/data/something/frames/74580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106718", "images": ["AURORA/data/something/frames/51260/first.jpg", "AURORA/data/something/frames/51260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a coffee mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106719", "images": ["AURORA/data/something/frames/38946/first.jpg", "AURORA/data/something/frames/38946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106720", "images": ["AURORA/data/something/frames/11340/first.jpg", "AURORA/data/something/frames/11340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wolf and wolf closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106721", "images": ["AURORA/data/something/frames/92976/first.jpg", "AURORA/data/something/frames/92976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing carbon paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106722", "images": ["AURORA/data/something/frames/109278/first.jpg", "AURORA/data/something/frames/109278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a cupboard door"}, {"from": "gpt", "value": ""}]} +{"id": "000000106723", "images": ["AURORA/data/something/frames/49253/first.jpg", "AURORA/data/something/frames/49253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106724", "images": ["AURORA/data/something/frames/202121/first.jpg", "AURORA/data/something/frames/202121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cookie into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106725", "images": ["AURORA/data/something/frames/1524/first.jpg", "AURORA/data/something/frames/1524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobile with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106726", "images": ["AURORA/data/something/frames/189933/first.jpg", "AURORA/data/something/frames/189933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving caps and caps closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106727", "images": ["AURORA/data/something/frames/43321/first.jpg", "AURORA/data/something/frames/43321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping neckalce behind door"}, {"from": "gpt", "value": ""}]} +{"id": "000000106728", "images": ["AURORA/data/something/frames/121203/first.jpg", "AURORA/data/something/frames/121203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106729", "images": ["AURORA/data/something/frames/9239/first.jpg", "AURORA/data/something/frames/9239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106730", "images": ["AURORA/data/something/frames/154513/first.jpg", "AURORA/data/something/frames/154513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening lipstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000106731", "images": ["AURORA/data/something/frames/191567/first.jpg", "AURORA/data/something/frames/191567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000106732", "images": ["AURORA/data/something/frames/54945/first.jpg", "AURORA/data/something/frames/54945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106733", "images": ["AURORA/data/something/frames/28799/first.jpg", "AURORA/data/something/frames/28799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106734", "images": ["AURORA/data/something/frames/217399/first.jpg", "AURORA/data/something/frames/217399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106735", "images": ["AURORA/data/something/frames/204638/first.jpg", "AURORA/data/something/frames/204638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: aqua colliding with aqua and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106736", "images": ["AURORA/data/something/frames/132915/first.jpg", "AURORA/data/something/frames/132915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000106737", "images": ["AURORA/data/something/frames/2342/first.jpg", "AURORA/data/something/frames/2342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cat onto cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106738", "images": ["AURORA/data/something/frames/141321/first.jpg", "AURORA/data/something/frames/141321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking garlic"}, {"from": "gpt", "value": ""}]} +{"id": "000000106739", "images": ["AURORA/data/something/frames/201906/first.jpg", "AURORA/data/something/frames/201906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106740", "images": ["AURORA/data/something/frames/101578/first.jpg", "AURORA/data/something/frames/101578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106741", "images": ["AURORA/data/something/frames/101394/first.jpg", "AURORA/data/something/frames/101394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000106742", "images": ["AURORA/data/something/frames/28687/first.jpg", "AURORA/data/something/frames/28687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small gear wheel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106743", "images": ["AURORA/data/something/frames/6383/first.jpg", "AURORA/data/something/frames/6383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 envelopes"}, {"from": "gpt", "value": ""}]} +{"id": "000000106744", "images": ["AURORA/data/something/frames/32706/first.jpg", "AURORA/data/something/frames/32706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000106745", "images": ["AURORA/data/something/frames/9900/first.jpg", "AURORA/data/something/frames/9900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing brochure into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106746", "images": ["AURORA/data/something/frames/38085/first.jpg", "AURORA/data/something/frames/38085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling anchor from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106747", "images": ["AURORA/data/something/frames/176035/first.jpg", "AURORA/data/something/frames/176035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking glasses box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106748", "images": ["AURORA/data/something/frames/39063/first.jpg", "AURORA/data/something/frames/39063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping an empty water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106749", "images": ["AURORA/data/something/frames/18604/first.jpg", "AURORA/data/something/frames/18604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106750", "images": ["AURORA/data/something/frames/116797/first.jpg", "AURORA/data/something/frames/116797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plastic basket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106751", "images": ["AURORA/data/something/frames/57322/first.jpg", "AURORA/data/something/frames/57322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a mug so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106752", "images": ["AURORA/data/something/frames/67512/first.jpg", "AURORA/data/something/frames/67512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106753", "images": ["AURORA/data/something/frames/173148/first.jpg", "AURORA/data/something/frames/173148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106754", "images": ["AURORA/data/something/frames/98174/first.jpg", "AURORA/data/something/frames/98174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tape upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106755", "images": ["AURORA/data/something/frames/122967/first.jpg", "AURORA/data/something/frames/122967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning waterbottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106756", "images": ["AURORA/data/something/frames/102714/first.jpg", "AURORA/data/something/frames/102714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000106757", "images": ["AURORA/data/something/frames/4420/first.jpg", "AURORA/data/something/frames/4420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sandals"}, {"from": "gpt", "value": ""}]} +{"id": "000000106758", "images": ["AURORA/data/something/frames/15567/first.jpg", "AURORA/data/something/frames/15567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lighter behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106759", "images": ["AURORA/data/something/frames/92811/first.jpg", "AURORA/data/something/frames/92811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106760", "images": ["AURORA/data/something/frames/102777/first.jpg", "AURORA/data/something/frames/102777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106761", "images": ["AURORA/data/something/frames/54595/first.jpg", "AURORA/data/something/frames/54595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red object up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106762", "images": ["AURORA/data/something/frames/9011/first.jpg", "AURORA/data/something/frames/9011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking baby toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106763", "images": ["AURORA/data/something/frames/94610/first.jpg", "AURORA/data/something/frames/94610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106764", "images": ["AURORA/data/something/frames/213048/first.jpg", "AURORA/data/something/frames/213048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106765", "images": ["AURORA/data/something/frames/104330/first.jpg", "AURORA/data/something/frames/104330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ring on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106766", "images": ["AURORA/data/something/frames/17547/first.jpg", "AURORA/data/something/frames/17547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106767", "images": ["AURORA/data/something/frames/4720/first.jpg", "AURORA/data/something/frames/4720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106768", "images": ["AURORA/data/something/frames/34858/first.jpg", "AURORA/data/something/frames/34858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing apple so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106769", "images": ["AURORA/data/something/frames/192198/first.jpg", "AURORA/data/something/frames/192198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from hat with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106770", "images": ["AURORA/data/something/frames/206519/first.jpg", "AURORA/data/something/frames/206519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming wastebin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106771", "images": ["AURORA/data/something/frames/68993/first.jpg", "AURORA/data/something/frames/68993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000106772", "images": ["AURORA/data/something/frames/198750/first.jpg", "AURORA/data/something/frames/198750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar and bowl so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106773", "images": ["AURORA/data/something/frames/153598/first.jpg", "AURORA/data/something/frames/153598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106774", "images": ["AURORA/data/something/frames/38956/first.jpg", "AURORA/data/something/frames/38956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106775", "images": ["AURORA/data/something/frames/175751/first.jpg", "AURORA/data/something/frames/175751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000106776", "images": ["AURORA/data/something/frames/51038/first.jpg", "AURORA/data/something/frames/51038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000106777", "images": ["AURORA/data/something/frames/71540/first.jpg", "AURORA/data/something/frames/71540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106778", "images": ["AURORA/data/something/frames/197098/first.jpg", "AURORA/data/something/frames/197098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106779", "images": ["AURORA/data/something/frames/216535/first.jpg", "AURORA/data/something/frames/216535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106780", "images": ["AURORA/data/something/frames/191690/first.jpg", "AURORA/data/something/frames/191690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000106781", "images": ["AURORA/data/something/frames/119916/first.jpg", "AURORA/data/something/frames/119916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106782", "images": ["AURORA/data/something/frames/151204/first.jpg", "AURORA/data/something/frames/151204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pendrive and eye kajal away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106783", "images": ["AURORA/data/something/frames/1764/first.jpg", "AURORA/data/something/frames/1764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106784", "images": ["AURORA/data/something/frames/14242/first.jpg", "AURORA/data/something/frames/14242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching carabiner to handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106785", "images": ["AURORA/data/something/frames/11925/first.jpg", "AURORA/data/something/frames/11925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106786", "images": ["AURORA/data/something/frames/133077/first.jpg", "AURORA/data/something/frames/133077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106787", "images": ["AURORA/data/something/frames/25820/first.jpg", "AURORA/data/something/frames/25820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000106788", "images": ["AURORA/data/something/frames/90063/first.jpg", "AURORA/data/something/frames/90063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106789", "images": ["AURORA/data/something/frames/76797/first.jpg", "AURORA/data/something/frames/76797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking telephone receiver from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106790", "images": ["AURORA/data/something/frames/94801/first.jpg", "AURORA/data/something/frames/94801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing napkin holder, revealing salt and pepper behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106791", "images": ["AURORA/data/something/frames/133517/first.jpg", "AURORA/data/something/frames/133517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping toothpaste off of notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000106792", "images": ["AURORA/data/something/frames/173775/first.jpg", "AURORA/data/something/frames/173775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a scarf into a helmet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106793", "images": ["AURORA/data/something/frames/211062/first.jpg", "AURORA/data/something/frames/211062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic skull"}, {"from": "gpt", "value": ""}]} +{"id": "000000106794", "images": ["AURORA/data/something/frames/138308/first.jpg", "AURORA/data/something/frames/138308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and candle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106795", "images": ["AURORA/data/something/frames/214999/first.jpg", "AURORA/data/something/frames/214999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106796", "images": ["AURORA/data/something/frames/139344/first.jpg", "AURORA/data/something/frames/139344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106797", "images": ["AURORA/data/something/frames/132487/first.jpg", "AURORA/data/something/frames/132487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cloth clip from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106798", "images": ["AURORA/data/something/frames/119151/first.jpg", "AURORA/data/something/frames/119151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a portable lamp upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106799", "images": ["AURORA/data/something/frames/205794/first.jpg", "AURORA/data/something/frames/205794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dvd case on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106800", "images": ["AURORA/data/something/frames/206077/first.jpg", "AURORA/data/something/frames/206077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000106801", "images": ["AURORA/data/something/frames/65777/first.jpg", "AURORA/data/something/frames/65777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lid on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106802", "images": ["AURORA/data/something/frames/203989/first.jpg", "AURORA/data/something/frames/203989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and glue stick closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106803", "images": ["AURORA/data/something/frames/193728/first.jpg", "AURORA/data/something/frames/193728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000106804", "images": ["AURORA/data/something/frames/149423/first.jpg", "AURORA/data/something/frames/149423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000106805", "images": ["AURORA/data/something/frames/4331/first.jpg", "AURORA/data/something/frames/4331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning white out upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106806", "images": ["AURORA/data/something/frames/53345/first.jpg", "AURORA/data/something/frames/53345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering waterbottle with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106807", "images": ["AURORA/data/something/frames/39875/first.jpg", "AURORA/data/something/frames/39875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000106808", "images": ["AURORA/data/something/frames/89443/first.jpg", "AURORA/data/something/frames/89443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106809", "images": ["AURORA/data/something/frames/214050/first.jpg", "AURORA/data/something/frames/214050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106810", "images": ["AURORA/data/something/frames/82015/first.jpg", "AURORA/data/something/frames/82015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening table drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106811", "images": ["AURORA/data/something/frames/24069/first.jpg", "AURORA/data/something/frames/24069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto wooden floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106812", "images": ["AURORA/data/something/frames/49858/first.jpg", "AURORA/data/something/frames/49858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pot holder up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106813", "images": ["AURORA/data/something/frames/62529/first.jpg", "AURORA/data/something/frames/62529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping biscuit packet next to water-bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106814", "images": ["AURORA/data/something/frames/65409/first.jpg", "AURORA/data/something/frames/65409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coasters without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000106815", "images": ["AURORA/data/something/frames/96827/first.jpg", "AURORA/data/something/frames/96827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000106816", "images": ["AURORA/data/something/frames/186931/first.jpg", "AURORA/data/something/frames/186931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding calendar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106817", "images": ["AURORA/data/something/frames/53506/first.jpg", "AURORA/data/something/frames/53506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106818", "images": ["AURORA/data/something/frames/41755/first.jpg", "AURORA/data/something/frames/41755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a cantaloupe up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106819", "images": ["AURORA/data/something/frames/99788/first.jpg", "AURORA/data/something/frames/99788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106820", "images": ["AURORA/data/something/frames/171136/first.jpg", "AURORA/data/something/frames/171136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking eraser up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106821", "images": ["AURORA/data/something/frames/84354/first.jpg", "AURORA/data/something/frames/84354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil away from scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000106822", "images": ["AURORA/data/something/frames/119099/first.jpg", "AURORA/data/something/frames/119099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bed with belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000106823", "images": ["AURORA/data/something/frames/158294/first.jpg", "AURORA/data/something/frames/158294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing clip box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106824", "images": ["AURORA/data/something/frames/88347/first.jpg", "AURORA/data/something/frames/88347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106825", "images": ["AURORA/data/something/frames/146130/first.jpg", "AURORA/data/something/frames/146130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a salt shaker on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106826", "images": ["AURORA/data/something/frames/28216/first.jpg", "AURORA/data/something/frames/28216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning coffee kuerig cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106827", "images": ["AURORA/data/something/frames/135785/first.jpg", "AURORA/data/something/frames/135785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106828", "images": ["AURORA/data/something/frames/53562/first.jpg", "AURORA/data/something/frames/53562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106829", "images": ["AURORA/data/something/frames/123960/first.jpg", "AURORA/data/something/frames/123960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop next to canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000106830", "images": ["AURORA/data/something/frames/109720/first.jpg", "AURORA/data/something/frames/109720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a wooden stick without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106831", "images": ["AURORA/data/something/frames/32452/first.jpg", "AURORA/data/something/frames/32452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pill bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106832", "images": ["AURORA/data/something/frames/26899/first.jpg", "AURORA/data/something/frames/26899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106833", "images": ["AURORA/data/something/frames/177191/first.jpg", "AURORA/data/something/frames/177191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hotbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000106834", "images": ["AURORA/data/something/frames/172001/first.jpg", "AURORA/data/something/frames/172001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106835", "images": ["AURORA/data/something/frames/17833/first.jpg", "AURORA/data/something/frames/17833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glas from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106836", "images": ["AURORA/data/something/frames/23202/first.jpg", "AURORA/data/something/frames/23202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106837", "images": ["AURORA/data/something/frames/169396/first.jpg", "AURORA/data/something/frames/169396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106838", "images": ["AURORA/data/something/frames/78795/first.jpg", "AURORA/data/something/frames/78795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a book out of a gym bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106839", "images": ["AURORA/data/something/frames/148464/first.jpg", "AURORA/data/something/frames/148464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking teabag out of tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106840", "images": ["AURORA/data/something/frames/91704/first.jpg", "AURORA/data/something/frames/91704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106841", "images": ["AURORA/data/something/frames/53957/first.jpg", "AURORA/data/something/frames/53957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana closer to shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000106842", "images": ["AURORA/data/something/frames/33816/first.jpg", "AURORA/data/something/frames/33816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crystal"}, {"from": "gpt", "value": ""}]} +{"id": "000000106843", "images": ["AURORA/data/something/frames/23275/first.jpg", "AURORA/data/something/frames/23275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking prescription so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106844", "images": ["AURORA/data/something/frames/192617/first.jpg", "AURORA/data/something/frames/192617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106845", "images": ["AURORA/data/something/frames/63861/first.jpg", "AURORA/data/something/frames/63861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106846", "images": ["AURORA/data/something/frames/20872/first.jpg", "AURORA/data/something/frames/20872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ipad upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106847", "images": ["AURORA/data/something/frames/137455/first.jpg", "AURORA/data/something/frames/137455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with ball on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106848", "images": ["AURORA/data/something/frames/158625/first.jpg", "AURORA/data/something/frames/158625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a flyer just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106849", "images": ["AURORA/data/something/frames/148722/first.jpg", "AURORA/data/something/frames/148722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to other books"}, {"from": "gpt", "value": ""}]} +{"id": "000000106850", "images": ["AURORA/data/something/frames/185049/first.jpg", "AURORA/data/something/frames/185049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toy wheels onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000106851", "images": ["AURORA/data/something/frames/203253/first.jpg", "AURORA/data/something/frames/203253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000106852", "images": ["AURORA/data/something/frames/16584/first.jpg", "AURORA/data/something/frames/16584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106853", "images": ["AURORA/data/something/frames/55971/first.jpg", "AURORA/data/something/frames/55971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sponge and nail clipper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106854", "images": ["AURORA/data/something/frames/164445/first.jpg", "AURORA/data/something/frames/164445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple next to a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000106855", "images": ["AURORA/data/something/frames/136803/first.jpg", "AURORA/data/something/frames/136803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: blue marble colliding with red marble and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106856", "images": ["AURORA/data/something/frames/50909/first.jpg", "AURORA/data/something/frames/50909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106857", "images": ["AURORA/data/something/frames/157212/first.jpg", "AURORA/data/something/frames/157212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a shuttle cock just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106858", "images": ["AURORA/data/something/frames/69444/first.jpg", "AURORA/data/something/frames/69444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000106859", "images": ["AURORA/data/something/frames/219699/first.jpg", "AURORA/data/something/frames/219699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a tote bag up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106860", "images": ["AURORA/data/something/frames/108657/first.jpg", "AURORA/data/something/frames/108657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb bluetooth into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000106861", "images": ["AURORA/data/something/frames/163271/first.jpg", "AURORA/data/something/frames/163271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000106862", "images": ["AURORA/data/something/frames/98509/first.jpg", "AURORA/data/something/frames/98509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106863", "images": ["AURORA/data/something/frames/163545/first.jpg", "AURORA/data/something/frames/163545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the lip glosses from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106864", "images": ["AURORA/data/something/frames/218338/first.jpg", "AURORA/data/something/frames/218338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying moisturizer on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106865", "images": ["AURORA/data/something/frames/216460/first.jpg", "AURORA/data/something/frames/216460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paste with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106866", "images": ["AURORA/data/something/frames/128976/first.jpg", "AURORA/data/something/frames/128976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a window"}, {"from": "gpt", "value": ""}]} +{"id": "000000106867", "images": ["AURORA/data/something/frames/90926/first.jpg", "AURORA/data/something/frames/90926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106868", "images": ["AURORA/data/something/frames/124577/first.jpg", "AURORA/data/something/frames/124577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wrist-watch in front of plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000106869", "images": ["AURORA/data/something/frames/43317/first.jpg", "AURORA/data/something/frames/43317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000106870", "images": ["AURORA/data/something/frames/178760/first.jpg", "AURORA/data/something/frames/178760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one spray bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106871", "images": ["AURORA/data/something/frames/49583/first.jpg", "AURORA/data/something/frames/49583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mobile phone with ipod on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106872", "images": ["AURORA/data/something/frames/83918/first.jpg", "AURORA/data/something/frames/83918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a fork so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106873", "images": ["AURORA/data/something/frames/46969/first.jpg", "AURORA/data/something/frames/46969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter closer to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106874", "images": ["AURORA/data/something/frames/38730/first.jpg", "AURORA/data/something/frames/38730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into power adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000106875", "images": ["AURORA/data/something/frames/1697/first.jpg", "AURORA/data/something/frames/1697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching waist basket with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106876", "images": ["AURORA/data/something/frames/141742/first.jpg", "AURORA/data/something/frames/141742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camphor packet next to sugar bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106877", "images": ["AURORA/data/something/frames/126457/first.jpg", "AURORA/data/something/frames/126457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000106878", "images": ["AURORA/data/something/frames/199705/first.jpg", "AURORA/data/something/frames/199705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup off of surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106879", "images": ["AURORA/data/something/frames/136661/first.jpg", "AURORA/data/something/frames/136661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mobile phone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106880", "images": ["AURORA/data/something/frames/21481/first.jpg", "AURORA/data/something/frames/21481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000106881", "images": ["AURORA/data/something/frames/35645/first.jpg", "AURORA/data/something/frames/35645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pillow with fist"}, {"from": "gpt", "value": ""}]} +{"id": "000000106882", "images": ["AURORA/data/something/frames/141638/first.jpg", "AURORA/data/something/frames/141638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106883", "images": ["AURORA/data/something/frames/110256/first.jpg", "AURORA/data/something/frames/110256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping red hair band next to diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000106884", "images": ["AURORA/data/something/frames/202211/first.jpg", "AURORA/data/something/frames/202211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming window view"}, {"from": "gpt", "value": ""}]} +{"id": "000000106885", "images": ["AURORA/data/something/frames/57771/first.jpg", "AURORA/data/something/frames/57771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy and another toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106886", "images": ["AURORA/data/something/frames/142814/first.jpg", "AURORA/data/something/frames/142814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator in front of stapler cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000106887", "images": ["AURORA/data/something/frames/7664/first.jpg", "AURORA/data/something/frames/7664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ceiling"}, {"from": "gpt", "value": ""}]} +{"id": "000000106888", "images": ["AURORA/data/something/frames/177182/first.jpg", "AURORA/data/something/frames/177182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rectangular box and ramekin closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106889", "images": ["AURORA/data/something/frames/193578/first.jpg", "AURORA/data/something/frames/193578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106890", "images": ["AURORA/data/something/frames/113521/first.jpg", "AURORA/data/something/frames/113521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting color pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000106891", "images": ["AURORA/data/something/frames/152458/first.jpg", "AURORA/data/something/frames/152458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper heart so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106892", "images": ["AURORA/data/something/frames/135323/first.jpg", "AURORA/data/something/frames/135323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000106893", "images": ["AURORA/data/something/frames/39700/first.jpg", "AURORA/data/something/frames/39700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000106894", "images": ["AURORA/data/something/frames/167988/first.jpg", "AURORA/data/something/frames/167988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding duppatta"}, {"from": "gpt", "value": ""}]} +{"id": "000000106895", "images": ["AURORA/data/something/frames/165698/first.jpg", "AURORA/data/something/frames/165698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: crackers colliding with crackers and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106896", "images": ["AURORA/data/something/frames/101194/first.jpg", "AURORA/data/something/frames/101194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow ball into orange cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106897", "images": ["AURORA/data/something/frames/123037/first.jpg", "AURORA/data/something/frames/123037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000106898", "images": ["AURORA/data/something/frames/189335/first.jpg", "AURORA/data/something/frames/189335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin onto cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106899", "images": ["AURORA/data/something/frames/194411/first.jpg", "AURORA/data/something/frames/194411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electrical plug into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000106900", "images": ["AURORA/data/something/frames/219270/first.jpg", "AURORA/data/something/frames/219270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sandal with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106901", "images": ["AURORA/data/something/frames/28528/first.jpg", "AURORA/data/something/frames/28528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glasses from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106902", "images": ["AURORA/data/something/frames/94236/first.jpg", "AURORA/data/something/frames/94236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a large measuring cup, revealing a small measuring cup behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000106903", "images": ["AURORA/data/something/frames/136393/first.jpg", "AURORA/data/something/frames/136393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a deck of cards so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106904", "images": ["AURORA/data/something/frames/77933/first.jpg", "AURORA/data/something/frames/77933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a toy plane with a sharpener on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106905", "images": ["AURORA/data/something/frames/196089/first.jpg", "AURORA/data/something/frames/196089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106906", "images": ["AURORA/data/something/frames/85244/first.jpg", "AURORA/data/something/frames/85244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: soda can colliding with deodarant and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106907", "images": ["AURORA/data/something/frames/140034/first.jpg", "AURORA/data/something/frames/140034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a makeup brush into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000106908", "images": ["AURORA/data/something/frames/95047/first.jpg", "AURORA/data/something/frames/95047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bolt down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106909", "images": ["AURORA/data/something/frames/121054/first.jpg", "AURORA/data/something/frames/121054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky paper to a wooden surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106910", "images": ["AURORA/data/something/frames/64153/first.jpg", "AURORA/data/something/frames/64153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting little cup next to cat doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000106911", "images": ["AURORA/data/something/frames/175088/first.jpg", "AURORA/data/something/frames/175088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a vase from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106912", "images": ["AURORA/data/something/frames/182737/first.jpg", "AURORA/data/something/frames/182737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106913", "images": ["AURORA/data/something/frames/145367/first.jpg", "AURORA/data/something/frames/145367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting greetings card upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106914", "images": ["AURORA/data/something/frames/133571/first.jpg", "AURORA/data/something/frames/133571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting toy with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106915", "images": ["AURORA/data/something/frames/68793/first.jpg", "AURORA/data/something/frames/68793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106916", "images": ["AURORA/data/something/frames/194076/first.jpg", "AURORA/data/something/frames/194076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming aquarium"}, {"from": "gpt", "value": ""}]} +{"id": "000000106917", "images": ["AURORA/data/something/frames/154882/first.jpg", "AURORA/data/something/frames/154882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a bottle of mineral water so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000106918", "images": ["AURORA/data/something/frames/30402/first.jpg", "AURORA/data/something/frames/30402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106919", "images": ["AURORA/data/something/frames/158893/first.jpg", "AURORA/data/something/frames/158893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106920", "images": ["AURORA/data/something/frames/159257/first.jpg", "AURORA/data/something/frames/159257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a wine bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106921", "images": ["AURORA/data/something/frames/84401/first.jpg", "AURORA/data/something/frames/84401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning plastic cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106922", "images": ["AURORA/data/something/frames/119528/first.jpg", "AURORA/data/something/frames/119528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earpiece of sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000106923", "images": ["AURORA/data/something/frames/155968/first.jpg", "AURORA/data/something/frames/155968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000106924", "images": ["AURORA/data/something/frames/38735/first.jpg", "AURORA/data/something/frames/38735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106925", "images": ["AURORA/data/something/frames/97075/first.jpg", "AURORA/data/something/frames/97075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106926", "images": ["AURORA/data/something/frames/7505/first.jpg", "AURORA/data/something/frames/7505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peanut into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000106927", "images": ["AURORA/data/something/frames/198935/first.jpg", "AURORA/data/something/frames/198935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lid of lip gloss"}, {"from": "gpt", "value": ""}]} +{"id": "000000106928", "images": ["AURORA/data/something/frames/16459/first.jpg", "AURORA/data/something/frames/16459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106929", "images": ["AURORA/data/something/frames/73021/first.jpg", "AURORA/data/something/frames/73021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000106930", "images": ["AURORA/data/something/frames/140718/first.jpg", "AURORA/data/something/frames/140718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106931", "images": ["AURORA/data/something/frames/217892/first.jpg", "AURORA/data/something/frames/217892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting calculator with scissor on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000106932", "images": ["AURORA/data/something/frames/36400/first.jpg", "AURORA/data/something/frames/36400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an owl upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106933", "images": ["AURORA/data/something/frames/108540/first.jpg", "AURORA/data/something/frames/108540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tube of toothpaste in front of a mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000106934", "images": ["AURORA/data/something/frames/214998/first.jpg", "AURORA/data/something/frames/214998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000106935", "images": ["AURORA/data/something/frames/166020/first.jpg", "AURORA/data/something/frames/166020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106936", "images": ["AURORA/data/something/frames/108484/first.jpg", "AURORA/data/something/frames/108484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wood box in front of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106937", "images": ["AURORA/data/something/frames/36803/first.jpg", "AURORA/data/something/frames/36803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car and red toy car closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106938", "images": ["AURORA/data/something/frames/31942/first.jpg", "AURORA/data/something/frames/31942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar behind monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000106939", "images": ["AURORA/data/something/frames/71016/first.jpg", "AURORA/data/something/frames/71016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking 1 jar away from other jars"}, {"from": "gpt", "value": ""}]} +{"id": "000000106940", "images": ["AURORA/data/something/frames/80147/first.jpg", "AURORA/data/something/frames/80147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000106941", "images": ["AURORA/data/something/frames/111375/first.jpg", "AURORA/data/something/frames/111375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106942", "images": ["AURORA/data/something/frames/151752/first.jpg", "AURORA/data/something/frames/151752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying ball in towels"}, {"from": "gpt", "value": ""}]} +{"id": "000000106943", "images": ["AURORA/data/something/frames/442/first.jpg", "AURORA/data/something/frames/442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106944", "images": ["AURORA/data/something/frames/106936/first.jpg", "AURORA/data/something/frames/106936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green hair comb from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000106945", "images": ["AURORA/data/something/frames/22840/first.jpg", "AURORA/data/something/frames/22840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon rest away from stove eye"}, {"from": "gpt", "value": ""}]} +{"id": "000000106946", "images": ["AURORA/data/something/frames/196566/first.jpg", "AURORA/data/something/frames/196566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papers into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000106947", "images": ["AURORA/data/something/frames/152059/first.jpg", "AURORA/data/something/frames/152059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106948", "images": ["AURORA/data/something/frames/86804/first.jpg", "AURORA/data/something/frames/86804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting key on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000106949", "images": ["AURORA/data/something/frames/208266/first.jpg", "AURORA/data/something/frames/208266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening letter box"}, {"from": "gpt", "value": ""}]} +{"id": "000000106950", "images": ["AURORA/data/something/frames/220711/first.jpg", "AURORA/data/something/frames/220711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling computer mouse onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000106951", "images": ["AURORA/data/something/frames/25983/first.jpg", "AURORA/data/something/frames/25983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106952", "images": ["AURORA/data/something/frames/39273/first.jpg", "AURORA/data/something/frames/39273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106953", "images": ["AURORA/data/something/frames/91549/first.jpg", "AURORA/data/something/frames/91549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet onto paper so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106954", "images": ["AURORA/data/something/frames/116063/first.jpg", "AURORA/data/something/frames/116063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a textbook in front of a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000106955", "images": ["AURORA/data/something/frames/111194/first.jpg", "AURORA/data/something/frames/111194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106956", "images": ["AURORA/data/something/frames/29810/first.jpg", "AURORA/data/something/frames/29810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000106957", "images": ["AURORA/data/something/frames/19486/first.jpg", "AURORA/data/something/frames/19486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106958", "images": ["AURORA/data/something/frames/148396/first.jpg", "AURORA/data/something/frames/148396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red chilli"}, {"from": "gpt", "value": ""}]} +{"id": "000000106959", "images": ["AURORA/data/something/frames/46541/first.jpg", "AURORA/data/something/frames/46541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pen being deflected from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000106960", "images": ["AURORA/data/something/frames/86207/first.jpg", "AURORA/data/something/frames/86207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pencil sharpners onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000106961", "images": ["AURORA/data/something/frames/8941/first.jpg", "AURORA/data/something/frames/8941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving powerbank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106962", "images": ["AURORA/data/something/frames/3928/first.jpg", "AURORA/data/something/frames/3928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000106963", "images": ["AURORA/data/something/frames/125103/first.jpg", "AURORA/data/something/frames/125103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106964", "images": ["AURORA/data/something/frames/53872/first.jpg", "AURORA/data/something/frames/53872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000106965", "images": ["AURORA/data/something/frames/106612/first.jpg", "AURORA/data/something/frames/106612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000106966", "images": ["AURORA/data/something/frames/194620/first.jpg", "AURORA/data/something/frames/194620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading kercief onto rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000106967", "images": ["AURORA/data/something/frames/4362/first.jpg", "AURORA/data/something/frames/4362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106968", "images": ["AURORA/data/something/frames/129592/first.jpg", "AURORA/data/something/frames/129592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000106969", "images": ["AURORA/data/something/frames/4466/first.jpg", "AURORA/data/something/frames/4466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a steel ball colliding with a steel ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106970", "images": ["AURORA/data/something/frames/178174/first.jpg", "AURORA/data/something/frames/178174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000106971", "images": ["AURORA/data/something/frames/211303/first.jpg", "AURORA/data/something/frames/211303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching purple microfiber with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000106972", "images": ["AURORA/data/something/frames/179226/first.jpg", "AURORA/data/something/frames/179226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106973", "images": ["AURORA/data/something/frames/105854/first.jpg", "AURORA/data/something/frames/105854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106974", "images": ["AURORA/data/something/frames/78820/first.jpg", "AURORA/data/something/frames/78820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, handphone and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000106975", "images": ["AURORA/data/something/frames/65518/first.jpg", "AURORA/data/something/frames/65518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000106976", "images": ["AURORA/data/something/frames/2784/first.jpg", "AURORA/data/something/frames/2784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a stone"}, {"from": "gpt", "value": ""}]} +{"id": "000000106977", "images": ["AURORA/data/something/frames/115868/first.jpg", "AURORA/data/something/frames/115868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bullet bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000106978", "images": ["AURORA/data/something/frames/189082/first.jpg", "AURORA/data/something/frames/189082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000106979", "images": ["AURORA/data/something/frames/158563/first.jpg", "AURORA/data/something/frames/158563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming animals"}, {"from": "gpt", "value": ""}]} +{"id": "000000106980", "images": ["AURORA/data/something/frames/64793/first.jpg", "AURORA/data/something/frames/64793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000106981", "images": ["AURORA/data/something/frames/196867/first.jpg", "AURORA/data/something/frames/196867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging alarm clock into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000106982", "images": ["AURORA/data/something/frames/113160/first.jpg", "AURORA/data/something/frames/113160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick onto a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000106983", "images": ["AURORA/data/something/frames/105846/first.jpg", "AURORA/data/something/frames/105846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle and a book closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106984", "images": ["AURORA/data/something/frames/84606/first.jpg", "AURORA/data/something/frames/84606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning purple balloon pump upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000106985", "images": ["AURORA/data/something/frames/16778/first.jpg", "AURORA/data/something/frames/16778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000106986", "images": ["AURORA/data/something/frames/212301/first.jpg", "AURORA/data/something/frames/212301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green hair comb from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000106987", "images": ["AURORA/data/something/frames/39039/first.jpg", "AURORA/data/something/frames/39039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pen over"}, {"from": "gpt", "value": ""}]} +{"id": "000000106988", "images": ["AURORA/data/something/frames/208446/first.jpg", "AURORA/data/something/frames/208446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000106989", "images": ["AURORA/data/something/frames/193490/first.jpg", "AURORA/data/something/frames/193490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper towels into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000106990", "images": ["AURORA/data/something/frames/26118/first.jpg", "AURORA/data/something/frames/26118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and a box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106991", "images": ["AURORA/data/something/frames/133709/first.jpg", "AURORA/data/something/frames/133709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000106992", "images": ["AURORA/data/something/frames/96919/first.jpg", "AURORA/data/something/frames/96919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a ruler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000106993", "images": ["AURORA/data/something/frames/10753/first.jpg", "AURORA/data/something/frames/10753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling glitter onto paper plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000106994", "images": ["AURORA/data/something/frames/12384/first.jpg", "AURORA/data/something/frames/12384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering kettle with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000106995", "images": ["AURORA/data/something/frames/201252/first.jpg", "AURORA/data/something/frames/201252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000106996", "images": ["AURORA/data/something/frames/184924/first.jpg", "AURORA/data/something/frames/184924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000106997", "images": ["AURORA/data/something/frames/56607/first.jpg", "AURORA/data/something/frames/56607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone case next to crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000106998", "images": ["AURORA/data/something/frames/168893/first.jpg", "AURORA/data/something/frames/168893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a cup until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000106999", "images": ["AURORA/data/something/frames/165231/first.jpg", "AURORA/data/something/frames/165231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hair comb up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107000", "images": ["AURORA/data/something/frames/79033/first.jpg", "AURORA/data/something/frames/79033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107001", "images": ["AURORA/data/something/frames/161614/first.jpg", "AURORA/data/something/frames/161614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 book onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000107002", "images": ["AURORA/data/something/frames/191439/first.jpg", "AURORA/data/something/frames/191439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tv remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107003", "images": ["AURORA/data/something/frames/217590/first.jpg", "AURORA/data/something/frames/217590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107004", "images": ["AURORA/data/something/frames/49407/first.jpg", "AURORA/data/something/frames/49407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a figure into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107005", "images": ["AURORA/data/something/frames/205391/first.jpg", "AURORA/data/something/frames/205391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107006", "images": ["AURORA/data/something/frames/130343/first.jpg", "AURORA/data/something/frames/130343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a vape battery box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107007", "images": ["AURORA/data/something/frames/124642/first.jpg", "AURORA/data/something/frames/124642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching white brick with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107008", "images": ["AURORA/data/something/frames/61237/first.jpg", "AURORA/data/something/frames/61237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107009", "images": ["AURORA/data/something/frames/79001/first.jpg", "AURORA/data/something/frames/79001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending branch until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107010", "images": ["AURORA/data/something/frames/60325/first.jpg", "AURORA/data/something/frames/60325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending fragrance stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107011", "images": ["AURORA/data/something/frames/46492/first.jpg", "AURORA/data/something/frames/46492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107012", "images": ["AURORA/data/something/frames/21642/first.jpg", "AURORA/data/something/frames/21642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107013", "images": ["AURORA/data/something/frames/84073/first.jpg", "AURORA/data/something/frames/84073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000107014", "images": ["AURORA/data/something/frames/19555/first.jpg", "AURORA/data/something/frames/19555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting jar with folder on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107015", "images": ["AURORA/data/something/frames/113531/first.jpg", "AURORA/data/something/frames/113531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a dvd"}, {"from": "gpt", "value": ""}]} +{"id": "000000107016", "images": ["AURORA/data/something/frames/111069/first.jpg", "AURORA/data/something/frames/111069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107017", "images": ["AURORA/data/something/frames/172598/first.jpg", "AURORA/data/something/frames/172598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cd box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107018", "images": ["AURORA/data/something/frames/218702/first.jpg", "AURORA/data/something/frames/218702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107019", "images": ["AURORA/data/something/frames/116184/first.jpg", "AURORA/data/something/frames/116184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving milk away from knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000107020", "images": ["AURORA/data/something/frames/153694/first.jpg", "AURORA/data/something/frames/153694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107021", "images": ["AURORA/data/something/frames/148204/first.jpg", "AURORA/data/something/frames/148204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic chip"}, {"from": "gpt", "value": ""}]} +{"id": "000000107022", "images": ["AURORA/data/something/frames/123574/first.jpg", "AURORA/data/something/frames/123574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting another pen on the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107023", "images": ["AURORA/data/something/frames/143160/first.jpg", "AURORA/data/something/frames/143160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hand cream and banana away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107024", "images": ["AURORA/data/something/frames/22257/first.jpg", "AURORA/data/something/frames/22257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107025", "images": ["AURORA/data/something/frames/214513/first.jpg", "AURORA/data/something/frames/214513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ironbox from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107026", "images": ["AURORA/data/something/frames/199886/first.jpg", "AURORA/data/something/frames/199886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving triangle and pen so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107027", "images": ["AURORA/data/something/frames/187937/first.jpg", "AURORA/data/something/frames/187937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many biscuits"}, {"from": "gpt", "value": ""}]} +{"id": "000000107028", "images": ["AURORA/data/something/frames/91527/first.jpg", "AURORA/data/something/frames/91527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ukulele out of the case"}, {"from": "gpt", "value": ""}]} +{"id": "000000107029", "images": ["AURORA/data/something/frames/143962/first.jpg", "AURORA/data/something/frames/143962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering headphone with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107030", "images": ["AURORA/data/something/frames/169616/first.jpg", "AURORA/data/something/frames/169616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000107031", "images": ["AURORA/data/something/frames/29620/first.jpg", "AURORA/data/something/frames/29620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering rubix cube with white hand kerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107032", "images": ["AURORA/data/something/frames/186090/first.jpg", "AURORA/data/something/frames/186090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming laterate stone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107033", "images": ["AURORA/data/something/frames/49702/first.jpg", "AURORA/data/something/frames/49702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to pen/marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107034", "images": ["AURORA/data/something/frames/173571/first.jpg", "AURORA/data/something/frames/173571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping nail polish over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107035", "images": ["AURORA/data/something/frames/40186/first.jpg", "AURORA/data/something/frames/40186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering legs with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107036", "images": ["AURORA/data/something/frames/69189/first.jpg", "AURORA/data/something/frames/69189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107037", "images": ["AURORA/data/something/frames/120996/first.jpg", "AURORA/data/something/frames/120996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling car key from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107038", "images": ["AURORA/data/something/frames/214684/first.jpg", "AURORA/data/something/frames/214684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glass jar with paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107039", "images": ["AURORA/data/something/frames/209141/first.jpg", "AURORA/data/something/frames/209141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107040", "images": ["AURORA/data/something/frames/73667/first.jpg", "AURORA/data/something/frames/73667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000107041", "images": ["AURORA/data/something/frames/166247/first.jpg", "AURORA/data/something/frames/166247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tape with cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000107042", "images": ["AURORA/data/something/frames/42333/first.jpg", "AURORA/data/something/frames/42333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of glove so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000107043", "images": ["AURORA/data/something/frames/28337/first.jpg", "AURORA/data/something/frames/28337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming switch board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107044", "images": ["AURORA/data/something/frames/23963/first.jpg", "AURORA/data/something/frames/23963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107045", "images": ["AURORA/data/something/frames/163169/first.jpg", "AURORA/data/something/frames/163169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107046", "images": ["AURORA/data/something/frames/209000/first.jpg", "AURORA/data/something/frames/209000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering drumstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000107047", "images": ["AURORA/data/something/frames/161310/first.jpg", "AURORA/data/something/frames/161310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hanger and screwdriver away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107048", "images": ["AURORA/data/something/frames/149192/first.jpg", "AURORA/data/something/frames/149192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107049", "images": ["AURORA/data/something/frames/189122/first.jpg", "AURORA/data/something/frames/189122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper weight from bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107050", "images": ["AURORA/data/something/frames/126045/first.jpg", "AURORA/data/something/frames/126045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000107051", "images": ["AURORA/data/something/frames/49367/first.jpg", "AURORA/data/something/frames/49367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk next to cookie"}, {"from": "gpt", "value": ""}]} +{"id": "000000107052", "images": ["AURORA/data/something/frames/83203/first.jpg", "AURORA/data/something/frames/83203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107053", "images": ["AURORA/data/something/frames/22563/first.jpg", "AURORA/data/something/frames/22563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107054", "images": ["AURORA/data/something/frames/150314/first.jpg", "AURORA/data/something/frames/150314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107055", "images": ["AURORA/data/something/frames/107548/first.jpg", "AURORA/data/something/frames/107548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping blistex chapstick over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107056", "images": ["AURORA/data/something/frames/29610/first.jpg", "AURORA/data/something/frames/29610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering small gear wheel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107057", "images": ["AURORA/data/something/frames/171965/first.jpg", "AURORA/data/something/frames/171965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper towels in front of board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107058", "images": ["AURORA/data/something/frames/51744/first.jpg", "AURORA/data/something/frames/51744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107059", "images": ["AURORA/data/something/frames/53129/first.jpg", "AURORA/data/something/frames/53129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107060", "images": ["AURORA/data/something/frames/176176/first.jpg", "AURORA/data/something/frames/176176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red crayon closer to blue crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107061", "images": ["AURORA/data/something/frames/97509/first.jpg", "AURORA/data/something/frames/97509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening filing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107062", "images": ["AURORA/data/something/frames/110581/first.jpg", "AURORA/data/something/frames/110581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spectacle box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107063", "images": ["AURORA/data/something/frames/14323/first.jpg", "AURORA/data/something/frames/14323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting hair ribbon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107064", "images": ["AURORA/data/something/frames/39718/first.jpg", "AURORA/data/something/frames/39718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crumbs off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107065", "images": ["AURORA/data/something/frames/220068/first.jpg", "AURORA/data/something/frames/220068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking car so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107066", "images": ["AURORA/data/something/frames/205413/first.jpg", "AURORA/data/something/frames/205413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107067", "images": ["AURORA/data/something/frames/25864/first.jpg", "AURORA/data/something/frames/25864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000107068", "images": ["AURORA/data/something/frames/204280/first.jpg", "AURORA/data/something/frames/204280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a pen on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107069", "images": ["AURORA/data/something/frames/188297/first.jpg", "AURORA/data/something/frames/188297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107070", "images": ["AURORA/data/something/frames/60121/first.jpg", "AURORA/data/something/frames/60121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car colliding with a toy car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000107071", "images": ["AURORA/data/something/frames/537/first.jpg", "AURORA/data/something/frames/537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107072", "images": ["AURORA/data/something/frames/146944/first.jpg", "AURORA/data/something/frames/146944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107073", "images": ["AURORA/data/something/frames/114127/first.jpg", "AURORA/data/something/frames/114127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107074", "images": ["AURORA/data/something/frames/181485/first.jpg", "AURORA/data/something/frames/181485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107075", "images": ["AURORA/data/something/frames/173900/first.jpg", "AURORA/data/something/frames/173900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle off of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107076", "images": ["AURORA/data/something/frames/132965/first.jpg", "AURORA/data/something/frames/132965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tshirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107077", "images": ["AURORA/data/something/frames/174184/first.jpg", "AURORA/data/something/frames/174184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107078", "images": ["AURORA/data/something/frames/64907/first.jpg", "AURORA/data/something/frames/64907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking notebook and pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107079", "images": ["AURORA/data/something/frames/165916/first.jpg", "AURORA/data/something/frames/165916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107080", "images": ["AURORA/data/something/frames/218228/first.jpg", "AURORA/data/something/frames/218228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107081", "images": ["AURORA/data/something/frames/48501/first.jpg", "AURORA/data/something/frames/48501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail clippers, remote and hole punch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107082", "images": ["AURORA/data/something/frames/90985/first.jpg", "AURORA/data/something/frames/90985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107083", "images": ["AURORA/data/something/frames/202336/first.jpg", "AURORA/data/something/frames/202336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107084", "images": ["AURORA/data/something/frames/33053/first.jpg", "AURORA/data/something/frames/33053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plant underneath a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107085", "images": ["AURORA/data/something/frames/99492/first.jpg", "AURORA/data/something/frames/99492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cookies up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107086", "images": ["AURORA/data/something/frames/72624/first.jpg", "AURORA/data/something/frames/72624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107087", "images": ["AURORA/data/something/frames/219431/first.jpg", "AURORA/data/something/frames/219431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing packet with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107088", "images": ["AURORA/data/something/frames/8867/first.jpg", "AURORA/data/something/frames/8867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107089", "images": ["AURORA/data/something/frames/29040/first.jpg", "AURORA/data/something/frames/29040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a pill bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107090", "images": ["AURORA/data/something/frames/18307/first.jpg", "AURORA/data/something/frames/18307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming dog"}, {"from": "gpt", "value": ""}]} +{"id": "000000107091", "images": ["AURORA/data/something/frames/195395/first.jpg", "AURORA/data/something/frames/195395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107092", "images": ["AURORA/data/something/frames/68082/first.jpg", "AURORA/data/something/frames/68082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle of juice on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107093", "images": ["AURORA/data/something/frames/5009/first.jpg", "AURORA/data/something/frames/5009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling zipper from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107094", "images": ["AURORA/data/something/frames/90784/first.jpg", "AURORA/data/something/frames/90784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a water bottle into a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107095", "images": ["AURORA/data/something/frames/48697/first.jpg", "AURORA/data/something/frames/48697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power supply into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107096", "images": ["AURORA/data/something/frames/42843/first.jpg", "AURORA/data/something/frames/42843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a fluorescent stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107097", "images": ["AURORA/data/something/frames/45429/first.jpg", "AURORA/data/something/frames/45429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107098", "images": ["AURORA/data/something/frames/159389/first.jpg", "AURORA/data/something/frames/159389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107099", "images": ["AURORA/data/something/frames/52509/first.jpg", "AURORA/data/something/frames/52509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107100", "images": ["AURORA/data/something/frames/142650/first.jpg", "AURORA/data/something/frames/142650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the wallet and the remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107101", "images": ["AURORA/data/something/frames/209669/first.jpg", "AURORA/data/something/frames/209669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107102", "images": ["AURORA/data/something/frames/18253/first.jpg", "AURORA/data/something/frames/18253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching ball with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107103", "images": ["AURORA/data/something/frames/21450/first.jpg", "AURORA/data/something/frames/21450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tissue box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107104", "images": ["AURORA/data/something/frames/181733/first.jpg", "AURORA/data/something/frames/181733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse onto binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107105", "images": ["AURORA/data/something/frames/105680/first.jpg", "AURORA/data/something/frames/105680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107106", "images": ["AURORA/data/something/frames/18642/first.jpg", "AURORA/data/something/frames/18642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking flashdrive out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107107", "images": ["AURORA/data/something/frames/201855/first.jpg", "AURORA/data/something/frames/201855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of chopsticks so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107108", "images": ["AURORA/data/something/frames/168646/first.jpg", "AURORA/data/something/frames/168646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000107109", "images": ["AURORA/data/something/frames/133879/first.jpg", "AURORA/data/something/frames/133879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cloth into cover phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107110", "images": ["AURORA/data/something/frames/95754/first.jpg", "AURORA/data/something/frames/95754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107111", "images": ["AURORA/data/something/frames/32351/first.jpg", "AURORA/data/something/frames/32351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107112", "images": ["AURORA/data/something/frames/202209/first.jpg", "AURORA/data/something/frames/202209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup next to coffee creamer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107113", "images": ["AURORA/data/something/frames/54497/first.jpg", "AURORA/data/something/frames/54497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107114", "images": ["AURORA/data/something/frames/3668/first.jpg", "AURORA/data/something/frames/3668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107115", "images": ["AURORA/data/something/frames/114025/first.jpg", "AURORA/data/something/frames/114025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107116", "images": ["AURORA/data/something/frames/10144/first.jpg", "AURORA/data/something/frames/10144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107117", "images": ["AURORA/data/something/frames/23763/first.jpg", "AURORA/data/something/frames/23763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking marker so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107118", "images": ["AURORA/data/something/frames/13276/first.jpg", "AURORA/data/something/frames/13276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a peg so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107119", "images": ["AURORA/data/something/frames/43891/first.jpg", "AURORA/data/something/frames/43891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000107120", "images": ["AURORA/data/something/frames/115824/first.jpg", "AURORA/data/something/frames/115824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box onto a ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107121", "images": ["AURORA/data/something/frames/177316/first.jpg", "AURORA/data/something/frames/177316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving medicines up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107122", "images": ["AURORA/data/something/frames/75505/first.jpg", "AURORA/data/something/frames/75505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking phone out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107123", "images": ["AURORA/data/something/frames/185053/first.jpg", "AURORA/data/something/frames/185053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and ear phones on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107124", "images": ["AURORA/data/something/frames/220730/first.jpg", "AURORA/data/something/frames/220730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a package with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107125", "images": ["AURORA/data/something/frames/145730/first.jpg", "AURORA/data/something/frames/145730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107126", "images": ["AURORA/data/something/frames/34506/first.jpg", "AURORA/data/something/frames/34506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 marker pens onto brown note"}, {"from": "gpt", "value": ""}]} +{"id": "000000107127", "images": ["AURORA/data/something/frames/170403/first.jpg", "AURORA/data/something/frames/170403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup onto text books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107128", "images": ["AURORA/data/something/frames/35818/first.jpg", "AURORA/data/something/frames/35818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding t shit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107129", "images": ["AURORA/data/something/frames/59764/first.jpg", "AURORA/data/something/frames/59764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing mini tripod into camera bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107130", "images": ["AURORA/data/something/frames/70846/first.jpg", "AURORA/data/something/frames/70846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000107131", "images": ["AURORA/data/something/frames/150484/first.jpg", "AURORA/data/something/frames/150484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging batteries out of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107132", "images": ["AURORA/data/something/frames/28803/first.jpg", "AURORA/data/something/frames/28803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sewing reel into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107133", "images": ["AURORA/data/something/frames/7655/first.jpg", "AURORA/data/something/frames/7655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green toy car onto yellow clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107134", "images": ["AURORA/data/something/frames/84237/first.jpg", "AURORA/data/something/frames/84237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107135", "images": ["AURORA/data/something/frames/104036/first.jpg", "AURORA/data/something/frames/104036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green purse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107136", "images": ["AURORA/data/something/frames/81183/first.jpg", "AURORA/data/something/frames/81183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup and candle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107137", "images": ["AURORA/data/something/frames/219735/first.jpg", "AURORA/data/something/frames/219735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candies on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107138", "images": ["AURORA/data/something/frames/173102/first.jpg", "AURORA/data/something/frames/173102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing key into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107139", "images": ["AURORA/data/something/frames/178220/first.jpg", "AURORA/data/something/frames/178220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107140", "images": ["AURORA/data/something/frames/52775/first.jpg", "AURORA/data/something/frames/52775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cellphone and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107141", "images": ["AURORA/data/something/frames/22017/first.jpg", "AURORA/data/something/frames/22017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107142", "images": ["AURORA/data/something/frames/45417/first.jpg", "AURORA/data/something/frames/45417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107143", "images": ["AURORA/data/something/frames/97377/first.jpg", "AURORA/data/something/frames/97377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a plastic bag off of a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107144", "images": ["AURORA/data/something/frames/33943/first.jpg", "AURORA/data/something/frames/33943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green headlight from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107145", "images": ["AURORA/data/something/frames/113011/first.jpg", "AURORA/data/something/frames/113011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107146", "images": ["AURORA/data/something/frames/209746/first.jpg", "AURORA/data/something/frames/209746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a comb off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107147", "images": ["AURORA/data/something/frames/40813/first.jpg", "AURORA/data/something/frames/40813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lotion bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107148", "images": ["AURORA/data/something/frames/39206/first.jpg", "AURORA/data/something/frames/39206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107149", "images": ["AURORA/data/something/frames/199250/first.jpg", "AURORA/data/something/frames/199250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107150", "images": ["AURORA/data/something/frames/118314/first.jpg", "AURORA/data/something/frames/118314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and stuffed toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107151", "images": ["AURORA/data/something/frames/217565/first.jpg", "AURORA/data/something/frames/217565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107152", "images": ["AURORA/data/something/frames/128187/first.jpg", "AURORA/data/something/frames/128187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bowl up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107153", "images": ["AURORA/data/something/frames/8828/first.jpg", "AURORA/data/something/frames/8828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses, a sticky note pad and dental floss on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107154", "images": ["AURORA/data/something/frames/33634/first.jpg", "AURORA/data/something/frames/33634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green toy car onto clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107155", "images": ["AURORA/data/something/frames/130427/first.jpg", "AURORA/data/something/frames/130427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tape onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107156", "images": ["AURORA/data/something/frames/201096/first.jpg", "AURORA/data/something/frames/201096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107157", "images": ["AURORA/data/something/frames/166839/first.jpg", "AURORA/data/something/frames/166839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering jar with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107158", "images": ["AURORA/data/something/frames/136838/first.jpg", "AURORA/data/something/frames/136838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000107159", "images": ["AURORA/data/something/frames/173321/first.jpg", "AURORA/data/something/frames/173321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107160", "images": ["AURORA/data/something/frames/155444/first.jpg", "AURORA/data/something/frames/155444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from keys with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107161", "images": ["AURORA/data/something/frames/138665/first.jpg", "AURORA/data/something/frames/138665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a plastic bottle cap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107162", "images": ["AURORA/data/something/frames/52683/first.jpg", "AURORA/data/something/frames/52683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box and handphone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107163", "images": ["AURORA/data/something/frames/81944/first.jpg", "AURORA/data/something/frames/81944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000107164", "images": ["AURORA/data/something/frames/98498/first.jpg", "AURORA/data/something/frames/98498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a notepad without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107165", "images": ["AURORA/data/something/frames/216823/first.jpg", "AURORA/data/something/frames/216823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000107166", "images": ["AURORA/data/something/frames/102837/first.jpg", "AURORA/data/something/frames/102837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candy next to magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000107167", "images": ["AURORA/data/something/frames/118865/first.jpg", "AURORA/data/something/frames/118865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting towel with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107168", "images": ["AURORA/data/something/frames/117360/first.jpg", "AURORA/data/something/frames/117360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107169", "images": ["AURORA/data/something/frames/59104/first.jpg", "AURORA/data/something/frames/59104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy and toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107170", "images": ["AURORA/data/something/frames/149632/first.jpg", "AURORA/data/something/frames/149632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto a sliced tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000107171", "images": ["AURORA/data/something/frames/123040/first.jpg", "AURORA/data/something/frames/123040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107172", "images": ["AURORA/data/something/frames/163721/first.jpg", "AURORA/data/something/frames/163721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen behind wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107173", "images": ["AURORA/data/something/frames/173998/first.jpg", "AURORA/data/something/frames/173998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107174", "images": ["AURORA/data/something/frames/166646/first.jpg", "AURORA/data/something/frames/166646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bangle, thread and key on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107175", "images": ["AURORA/data/something/frames/106562/first.jpg", "AURORA/data/something/frames/106562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into pc but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107176", "images": ["AURORA/data/something/frames/126014/first.jpg", "AURORA/data/something/frames/126014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking stone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107177", "images": ["AURORA/data/something/frames/202258/first.jpg", "AURORA/data/something/frames/202258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107178", "images": ["AURORA/data/something/frames/187462/first.jpg", "AURORA/data/something/frames/187462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000107179", "images": ["AURORA/data/something/frames/25654/first.jpg", "AURORA/data/something/frames/25654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green colour pen away from blue colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107180", "images": ["AURORA/data/something/frames/87997/first.jpg", "AURORA/data/something/frames/87997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy truck from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107181", "images": ["AURORA/data/something/frames/125918/first.jpg", "AURORA/data/something/frames/125918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107182", "images": ["AURORA/data/something/frames/203297/first.jpg", "AURORA/data/something/frames/203297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tissues so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107183", "images": ["AURORA/data/something/frames/55396/first.jpg", "AURORA/data/something/frames/55396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107184", "images": ["AURORA/data/something/frames/183205/first.jpg", "AURORA/data/something/frames/183205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting envelope in front of card"}, {"from": "gpt", "value": ""}]} +{"id": "000000107185", "images": ["AURORA/data/something/frames/166629/first.jpg", "AURORA/data/something/frames/166629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107186", "images": ["AURORA/data/something/frames/122999/first.jpg", "AURORA/data/something/frames/122999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107187", "images": ["AURORA/data/something/frames/115281/first.jpg", "AURORA/data/something/frames/115281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000107188", "images": ["AURORA/data/something/frames/196295/first.jpg", "AURORA/data/something/frames/196295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107189", "images": ["AURORA/data/something/frames/35459/first.jpg", "AURORA/data/something/frames/35459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering chair with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107190", "images": ["AURORA/data/something/frames/129865/first.jpg", "AURORA/data/something/frames/129865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107191", "images": ["AURORA/data/something/frames/66066/first.jpg", "AURORA/data/something/frames/66066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107192", "images": ["AURORA/data/something/frames/141983/first.jpg", "AURORA/data/something/frames/141983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tongue cleaner so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107193", "images": ["AURORA/data/something/frames/113628/first.jpg", "AURORA/data/something/frames/113628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107194", "images": ["AURORA/data/something/frames/131492/first.jpg", "AURORA/data/something/frames/131492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing scissor into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107195", "images": ["AURORA/data/something/frames/104274/first.jpg", "AURORA/data/something/frames/104274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting power bank and head charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107196", "images": ["AURORA/data/something/frames/104350/first.jpg", "AURORA/data/something/frames/104350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning inhaler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107197", "images": ["AURORA/data/something/frames/99245/first.jpg", "AURORA/data/something/frames/99245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107198", "images": ["AURORA/data/something/frames/41000/first.jpg", "AURORA/data/something/frames/41000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pan with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000107199", "images": ["AURORA/data/something/frames/179445/first.jpg", "AURORA/data/something/frames/179445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000107200", "images": ["AURORA/data/something/frames/140250/first.jpg", "AURORA/data/something/frames/140250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic tin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107201", "images": ["AURORA/data/something/frames/163441/first.jpg", "AURORA/data/something/frames/163441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107202", "images": ["AURORA/data/something/frames/213980/first.jpg", "AURORA/data/something/frames/213980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting tv with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107203", "images": ["AURORA/data/something/frames/84816/first.jpg", "AURORA/data/something/frames/84816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107204", "images": ["AURORA/data/something/frames/183188/first.jpg", "AURORA/data/something/frames/183188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107205", "images": ["AURORA/data/something/frames/144568/first.jpg", "AURORA/data/something/frames/144568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of wipe bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107206", "images": ["AURORA/data/something/frames/92333/first.jpg", "AURORA/data/something/frames/92333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107207", "images": ["AURORA/data/something/frames/76714/first.jpg", "AURORA/data/something/frames/76714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107208", "images": ["AURORA/data/something/frames/220300/first.jpg", "AURORA/data/something/frames/220300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107209", "images": ["AURORA/data/something/frames/18481/first.jpg", "AURORA/data/something/frames/18481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107210", "images": ["AURORA/data/something/frames/11639/first.jpg", "AURORA/data/something/frames/11639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffed animal being deflected from door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107211", "images": ["AURORA/data/something/frames/50697/first.jpg", "AURORA/data/something/frames/50697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000107212", "images": ["AURORA/data/something/frames/100880/first.jpg", "AURORA/data/something/frames/100880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking stone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107213", "images": ["AURORA/data/something/frames/109218/first.jpg", "AURORA/data/something/frames/109218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting specs next to wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000107214", "images": ["AURORA/data/something/frames/70147/first.jpg", "AURORA/data/something/frames/70147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000107215", "images": ["AURORA/data/something/frames/56969/first.jpg", "AURORA/data/something/frames/56969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000107216", "images": ["AURORA/data/something/frames/109945/first.jpg", "AURORA/data/something/frames/109945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy tiger and toy elephant so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107217", "images": ["AURORA/data/something/frames/199524/first.jpg", "AURORA/data/something/frames/199524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug into a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000107218", "images": ["AURORA/data/something/frames/79967/first.jpg", "AURORA/data/something/frames/79967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107219", "images": ["AURORA/data/something/frames/151522/first.jpg", "AURORA/data/something/frames/151522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107220", "images": ["AURORA/data/something/frames/188886/first.jpg", "AURORA/data/something/frames/188886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning green cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107221", "images": ["AURORA/data/something/frames/119020/first.jpg", "AURORA/data/something/frames/119020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107222", "images": ["AURORA/data/something/frames/87773/first.jpg", "AURORA/data/something/frames/87773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card"}, {"from": "gpt", "value": ""}]} +{"id": "000000107223", "images": ["AURORA/data/something/frames/33184/first.jpg", "AURORA/data/something/frames/33184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107224", "images": ["AURORA/data/something/frames/157192/first.jpg", "AURORA/data/something/frames/157192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting t shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107225", "images": ["AURORA/data/something/frames/49107/first.jpg", "AURORA/data/something/frames/49107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an object onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107226", "images": ["AURORA/data/something/frames/165705/first.jpg", "AURORA/data/something/frames/165705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107227", "images": ["AURORA/data/something/frames/134861/first.jpg", "AURORA/data/something/frames/134861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing selfie stick so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107228", "images": ["AURORA/data/something/frames/6911/first.jpg", "AURORA/data/something/frames/6911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car being deflected from a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107229", "images": ["AURORA/data/something/frames/7955/first.jpg", "AURORA/data/something/frames/7955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic tin out of plastic glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107230", "images": ["AURORA/data/something/frames/36285/first.jpg", "AURORA/data/something/frames/36285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling dish towels up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107231", "images": ["AURORA/data/something/frames/71858/first.jpg", "AURORA/data/something/frames/71858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bucket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107232", "images": ["AURORA/data/something/frames/140211/first.jpg", "AURORA/data/something/frames/140211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107233", "images": ["AURORA/data/something/frames/115778/first.jpg", "AURORA/data/something/frames/115778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting block onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107234", "images": ["AURORA/data/something/frames/51796/first.jpg", "AURORA/data/something/frames/51796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thimble down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107235", "images": ["AURORA/data/something/frames/107239/first.jpg", "AURORA/data/something/frames/107239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107236", "images": ["AURORA/data/something/frames/26033/first.jpg", "AURORA/data/something/frames/26033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into pocket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107237", "images": ["AURORA/data/something/frames/184604/first.jpg", "AURORA/data/something/frames/184604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into swicth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107238", "images": ["AURORA/data/something/frames/61572/first.jpg", "AURORA/data/something/frames/61572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107239", "images": ["AURORA/data/something/frames/106796/first.jpg", "AURORA/data/something/frames/106796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107240", "images": ["AURORA/data/something/frames/57524/first.jpg", "AURORA/data/something/frames/57524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of car"}, {"from": "gpt", "value": ""}]} +{"id": "000000107241", "images": ["AURORA/data/something/frames/59338/first.jpg", "AURORA/data/something/frames/59338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107242", "images": ["AURORA/data/something/frames/45734/first.jpg", "AURORA/data/something/frames/45734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scotch tape from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107243", "images": ["AURORA/data/something/frames/106844/first.jpg", "AURORA/data/something/frames/106844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pink toothbrush case upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107244", "images": ["AURORA/data/something/frames/201371/first.jpg", "AURORA/data/something/frames/201371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107245", "images": ["AURORA/data/something/frames/188230/first.jpg", "AURORA/data/something/frames/188230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107246", "images": ["AURORA/data/something/frames/48736/first.jpg", "AURORA/data/something/frames/48736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a rubiks cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000107247", "images": ["AURORA/data/something/frames/38513/first.jpg", "AURORA/data/something/frames/38513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white kercief from behind of diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000107248", "images": ["AURORA/data/something/frames/56237/first.jpg", "AURORA/data/something/frames/56237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a small bag over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107249", "images": ["AURORA/data/something/frames/29504/first.jpg", "AURORA/data/something/frames/29504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 shot glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107250", "images": ["AURORA/data/something/frames/111682/first.jpg", "AURORA/data/something/frames/111682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote control behind wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107251", "images": ["AURORA/data/something/frames/126279/first.jpg", "AURORA/data/something/frames/126279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107252", "images": ["AURORA/data/something/frames/54107/first.jpg", "AURORA/data/something/frames/54107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water bottle onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107253", "images": ["AURORA/data/something/frames/174342/first.jpg", "AURORA/data/something/frames/174342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of sponge"}, {"from": "gpt", "value": ""}]} +{"id": "000000107254", "images": ["AURORA/data/something/frames/178329/first.jpg", "AURORA/data/something/frames/178329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107255", "images": ["AURORA/data/something/frames/19756/first.jpg", "AURORA/data/something/frames/19756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107256", "images": ["AURORA/data/something/frames/116041/first.jpg", "AURORA/data/something/frames/116041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107257", "images": ["AURORA/data/something/frames/99070/first.jpg", "AURORA/data/something/frames/99070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107258", "images": ["AURORA/data/something/frames/205466/first.jpg", "AURORA/data/something/frames/205466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bangle closer to hard drive"}, {"from": "gpt", "value": ""}]} +{"id": "000000107259", "images": ["AURORA/data/something/frames/147217/first.jpg", "AURORA/data/something/frames/147217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box of juice onto a box of juice"}, {"from": "gpt", "value": ""}]} +{"id": "000000107260", "images": ["AURORA/data/something/frames/80743/first.jpg", "AURORA/data/something/frames/80743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bucket lid so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107261", "images": ["AURORA/data/something/frames/15710/first.jpg", "AURORA/data/something/frames/15710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ring from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107262", "images": ["AURORA/data/something/frames/92452/first.jpg", "AURORA/data/something/frames/92452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting black umbrella on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107263", "images": ["AURORA/data/something/frames/2791/first.jpg", "AURORA/data/something/frames/2791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one mobile of many other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107264", "images": ["AURORA/data/something/frames/158614/first.jpg", "AURORA/data/something/frames/158614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spray and bowl away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107265", "images": ["AURORA/data/something/frames/123898/first.jpg", "AURORA/data/something/frames/123898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the purse onto the towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107266", "images": ["AURORA/data/something/frames/47325/first.jpg", "AURORA/data/something/frames/47325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107267", "images": ["AURORA/data/something/frames/161313/first.jpg", "AURORA/data/something/frames/161313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening table drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107268", "images": ["AURORA/data/something/frames/99001/first.jpg", "AURORA/data/something/frames/99001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107269", "images": ["AURORA/data/something/frames/56258/first.jpg", "AURORA/data/something/frames/56258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending crayon until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107270", "images": ["AURORA/data/something/frames/210640/first.jpg", "AURORA/data/something/frames/210640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107271", "images": ["AURORA/data/something/frames/130772/first.jpg", "AURORA/data/something/frames/130772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling honey onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107272", "images": ["AURORA/data/something/frames/217772/first.jpg", "AURORA/data/something/frames/217772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107273", "images": ["AURORA/data/something/frames/47421/first.jpg", "AURORA/data/something/frames/47421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto a beanbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107274", "images": ["AURORA/data/something/frames/52415/first.jpg", "AURORA/data/something/frames/52415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container on the edge of a gle so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107275", "images": ["AURORA/data/something/frames/121949/first.jpg", "AURORA/data/something/frames/121949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste closer to a tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107276", "images": ["AURORA/data/something/frames/172650/first.jpg", "AURORA/data/something/frames/172650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107277", "images": ["AURORA/data/something/frames/133673/first.jpg", "AURORA/data/something/frames/133673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107278", "images": ["AURORA/data/something/frames/189636/first.jpg", "AURORA/data/something/frames/189636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper out of printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107279", "images": ["AURORA/data/something/frames/54897/first.jpg", "AURORA/data/something/frames/54897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107280", "images": ["AURORA/data/something/frames/190121/first.jpg", "AURORA/data/something/frames/190121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107281", "images": ["AURORA/data/something/frames/91326/first.jpg", "AURORA/data/something/frames/91326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107282", "images": ["AURORA/data/something/frames/128687/first.jpg", "AURORA/data/something/frames/128687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to wristwatch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107283", "images": ["AURORA/data/something/frames/51645/first.jpg", "AURORA/data/something/frames/51645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle with half onnion on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107284", "images": ["AURORA/data/something/frames/77290/first.jpg", "AURORA/data/something/frames/77290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging iphone cord into electric socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107285", "images": ["AURORA/data/something/frames/204269/first.jpg", "AURORA/data/something/frames/204269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering orange color pencil sharpner with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107286", "images": ["AURORA/data/something/frames/190947/first.jpg", "AURORA/data/something/frames/190947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with bread on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107287", "images": ["AURORA/data/something/frames/33117/first.jpg", "AURORA/data/something/frames/33117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping ashtray with cigarette butt over, so cigarette butt falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107288", "images": ["AURORA/data/something/frames/141757/first.jpg", "AURORA/data/something/frames/141757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and plastic bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107289", "images": ["AURORA/data/something/frames/139164/first.jpg", "AURORA/data/something/frames/139164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000107290", "images": ["AURORA/data/something/frames/72485/first.jpg", "AURORA/data/something/frames/72485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107291", "images": ["AURORA/data/something/frames/169313/first.jpg", "AURORA/data/something/frames/169313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wall charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107292", "images": ["AURORA/data/something/frames/104987/first.jpg", "AURORA/data/something/frames/104987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pair of socks into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000107293", "images": ["AURORA/data/something/frames/220644/first.jpg", "AURORA/data/something/frames/220644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sweatshirt into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107294", "images": ["AURORA/data/something/frames/126549/first.jpg", "AURORA/data/something/frames/126549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107295", "images": ["AURORA/data/something/frames/156357/first.jpg", "AURORA/data/something/frames/156357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clip onto container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107296", "images": ["AURORA/data/something/frames/156624/first.jpg", "AURORA/data/something/frames/156624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking photo from wardrobe"}, {"from": "gpt", "value": ""}]} +{"id": "000000107297", "images": ["AURORA/data/something/frames/124542/first.jpg", "AURORA/data/something/frames/124542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107298", "images": ["AURORA/data/something/frames/118632/first.jpg", "AURORA/data/something/frames/118632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping coffee up with scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107299", "images": ["AURORA/data/something/frames/3103/first.jpg", "AURORA/data/something/frames/3103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pebble out of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107300", "images": ["AURORA/data/something/frames/108021/first.jpg", "AURORA/data/something/frames/108021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sketch pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107301", "images": ["AURORA/data/something/frames/209960/first.jpg", "AURORA/data/something/frames/209960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107302", "images": ["AURORA/data/something/frames/91382/first.jpg", "AURORA/data/something/frames/91382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chocolate towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107303", "images": ["AURORA/data/something/frames/101440/first.jpg", "AURORA/data/something/frames/101440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107304", "images": ["AURORA/data/something/frames/95067/first.jpg", "AURORA/data/something/frames/95067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 punching machines onto blue note"}, {"from": "gpt", "value": ""}]} +{"id": "000000107305", "images": ["AURORA/data/something/frames/40810/first.jpg", "AURORA/data/something/frames/40810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon behind remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000107306", "images": ["AURORA/data/something/frames/121183/first.jpg", "AURORA/data/something/frames/121183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107307", "images": ["AURORA/data/something/frames/170725/first.jpg", "AURORA/data/something/frames/170725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107308", "images": ["AURORA/data/something/frames/210991/first.jpg", "AURORA/data/something/frames/210991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cable cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000107309", "images": ["AURORA/data/something/frames/174797/first.jpg", "AURORA/data/something/frames/174797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107310", "images": ["AURORA/data/something/frames/84919/first.jpg", "AURORA/data/something/frames/84919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing crayon into crayon box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107311", "images": ["AURORA/data/something/frames/132599/first.jpg", "AURORA/data/something/frames/132599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tree branch down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107312", "images": ["AURORA/data/something/frames/15944/first.jpg", "AURORA/data/something/frames/15944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107313", "images": ["AURORA/data/something/frames/140156/first.jpg", "AURORA/data/something/frames/140156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107314", "images": ["AURORA/data/something/frames/52789/first.jpg", "AURORA/data/something/frames/52789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107315", "images": ["AURORA/data/something/frames/125021/first.jpg", "AURORA/data/something/frames/125021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107316", "images": ["AURORA/data/something/frames/26111/first.jpg", "AURORA/data/something/frames/26111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107317", "images": ["AURORA/data/something/frames/197265/first.jpg", "AURORA/data/something/frames/197265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book similar to other books that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107318", "images": ["AURORA/data/something/frames/193353/first.jpg", "AURORA/data/something/frames/193353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pushpins"}, {"from": "gpt", "value": ""}]} +{"id": "000000107319", "images": ["AURORA/data/something/frames/68476/first.jpg", "AURORA/data/something/frames/68476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107320", "images": ["AURORA/data/something/frames/220420/first.jpg", "AURORA/data/something/frames/220420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon onto stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000107321", "images": ["AURORA/data/something/frames/220554/first.jpg", "AURORA/data/something/frames/220554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107322", "images": ["AURORA/data/something/frames/219646/first.jpg", "AURORA/data/something/frames/219646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107323", "images": ["AURORA/data/something/frames/127344/first.jpg", "AURORA/data/something/frames/127344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107324", "images": ["AURORA/data/something/frames/45657/first.jpg", "AURORA/data/something/frames/45657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plastic bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107325", "images": ["AURORA/data/something/frames/178448/first.jpg", "AURORA/data/something/frames/178448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ecig up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107326", "images": ["AURORA/data/something/frames/122733/first.jpg", "AURORA/data/something/frames/122733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cream cheese onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000107327", "images": ["AURORA/data/something/frames/118117/first.jpg", "AURORA/data/something/frames/118117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107328", "images": ["AURORA/data/something/frames/209276/first.jpg", "AURORA/data/something/frames/209276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107329", "images": ["AURORA/data/something/frames/189157/first.jpg", "AURORA/data/something/frames/189157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mouse pad with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107330", "images": ["AURORA/data/something/frames/101664/first.jpg", "AURORA/data/something/frames/101664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107331", "images": ["AURORA/data/something/frames/43682/first.jpg", "AURORA/data/something/frames/43682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107332", "images": ["AURORA/data/something/frames/48401/first.jpg", "AURORA/data/something/frames/48401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107333", "images": ["AURORA/data/something/frames/100011/first.jpg", "AURORA/data/something/frames/100011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothing up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107334", "images": ["AURORA/data/something/frames/101982/first.jpg", "AURORA/data/something/frames/101982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kaugummi-packung on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107335", "images": ["AURORA/data/something/frames/176593/first.jpg", "AURORA/data/something/frames/176593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107336", "images": ["AURORA/data/something/frames/98601/first.jpg", "AURORA/data/something/frames/98601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bowl with a book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107337", "images": ["AURORA/data/something/frames/42769/first.jpg", "AURORA/data/something/frames/42769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paint brush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107338", "images": ["AURORA/data/something/frames/61339/first.jpg", "AURORA/data/something/frames/61339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107339", "images": ["AURORA/data/something/frames/127289/first.jpg", "AURORA/data/something/frames/127289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papier into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107340", "images": ["AURORA/data/something/frames/159271/first.jpg", "AURORA/data/something/frames/159271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000107341", "images": ["AURORA/data/something/frames/187372/first.jpg", "AURORA/data/something/frames/187372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of something without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107342", "images": ["AURORA/data/something/frames/152106/first.jpg", "AURORA/data/something/frames/152106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box onto prayer book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107343", "images": ["AURORA/data/something/frames/3026/first.jpg", "AURORA/data/something/frames/3026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107344", "images": ["AURORA/data/something/frames/99784/first.jpg", "AURORA/data/something/frames/99784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to the other pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107345", "images": ["AURORA/data/something/frames/131363/first.jpg", "AURORA/data/something/frames/131363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ball with broom"}, {"from": "gpt", "value": ""}]} +{"id": "000000107346", "images": ["AURORA/data/something/frames/115961/first.jpg", "AURORA/data/something/frames/115961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107347", "images": ["AURORA/data/something/frames/37426/first.jpg", "AURORA/data/something/frames/37426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107348", "images": ["AURORA/data/something/frames/54932/first.jpg", "AURORA/data/something/frames/54932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107349", "images": ["AURORA/data/something/frames/103631/first.jpg", "AURORA/data/something/frames/103631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming landscaping"}, {"from": "gpt", "value": ""}]} +{"id": "000000107350", "images": ["AURORA/data/something/frames/159644/first.jpg", "AURORA/data/something/frames/159644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass with pens over, so pens falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107351", "images": ["AURORA/data/something/frames/40489/first.jpg", "AURORA/data/something/frames/40489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107352", "images": ["AURORA/data/something/frames/71001/first.jpg", "AURORA/data/something/frames/71001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107353", "images": ["AURORA/data/something/frames/166311/first.jpg", "AURORA/data/something/frames/166311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107354", "images": ["AURORA/data/something/frames/91655/first.jpg", "AURORA/data/something/frames/91655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107355", "images": ["AURORA/data/something/frames/24199/first.jpg", "AURORA/data/something/frames/24199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107356", "images": ["AURORA/data/something/frames/25490/first.jpg", "AURORA/data/something/frames/25490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box of tea"}, {"from": "gpt", "value": ""}]} +{"id": "000000107357", "images": ["AURORA/data/something/frames/108982/first.jpg", "AURORA/data/something/frames/108982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a banana onto a packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107358", "images": ["AURORA/data/something/frames/26614/first.jpg", "AURORA/data/something/frames/26614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lamp with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107359", "images": ["AURORA/data/something/frames/179122/first.jpg", "AURORA/data/something/frames/179122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of juicer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107360", "images": ["AURORA/data/something/frames/187901/first.jpg", "AURORA/data/something/frames/187901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing juicer cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107361", "images": ["AURORA/data/something/frames/46159/first.jpg", "AURORA/data/something/frames/46159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107362", "images": ["AURORA/data/something/frames/71529/first.jpg", "AURORA/data/something/frames/71529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107363", "images": ["AURORA/data/something/frames/129790/first.jpg", "AURORA/data/something/frames/129790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107364", "images": ["AURORA/data/something/frames/75918/first.jpg", "AURORA/data/something/frames/75918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000107365", "images": ["AURORA/data/something/frames/89329/first.jpg", "AURORA/data/something/frames/89329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pink paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107366", "images": ["AURORA/data/something/frames/168785/first.jpg", "AURORA/data/something/frames/168785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107367", "images": ["AURORA/data/something/frames/195901/first.jpg", "AURORA/data/something/frames/195901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a banana with baking tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000107368", "images": ["AURORA/data/something/frames/177797/first.jpg", "AURORA/data/something/frames/177797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107369", "images": ["AURORA/data/something/frames/127867/first.jpg", "AURORA/data/something/frames/127867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tablet computer from behind of speakers"}, {"from": "gpt", "value": ""}]} +{"id": "000000107370", "images": ["AURORA/data/something/frames/50957/first.jpg", "AURORA/data/something/frames/50957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencase closer to a calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107371", "images": ["AURORA/data/something/frames/149099/first.jpg", "AURORA/data/something/frames/149099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker next to nail file"}, {"from": "gpt", "value": ""}]} +{"id": "000000107372", "images": ["AURORA/data/something/frames/136341/first.jpg", "AURORA/data/something/frames/136341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pens onto a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000107373", "images": ["AURORA/data/something/frames/106434/first.jpg", "AURORA/data/something/frames/106434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator, paper weight and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107374", "images": ["AURORA/data/something/frames/77129/first.jpg", "AURORA/data/something/frames/77129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107375", "images": ["AURORA/data/something/frames/135839/first.jpg", "AURORA/data/something/frames/135839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cup into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107376", "images": ["AURORA/data/something/frames/187615/first.jpg", "AURORA/data/something/frames/187615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tube out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107377", "images": ["AURORA/data/something/frames/132531/first.jpg", "AURORA/data/something/frames/132531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring mike's hard lemonade out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107378", "images": ["AURORA/data/something/frames/27323/first.jpg", "AURORA/data/something/frames/27323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon underneath napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107379", "images": ["AURORA/data/something/frames/33894/first.jpg", "AURORA/data/something/frames/33894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000107380", "images": ["AURORA/data/something/frames/56852/first.jpg", "AURORA/data/something/frames/56852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000107381", "images": ["AURORA/data/something/frames/129978/first.jpg", "AURORA/data/something/frames/129978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cat and cube closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107382", "images": ["AURORA/data/something/frames/28913/first.jpg", "AURORA/data/something/frames/28913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ruler in front of socks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107383", "images": ["AURORA/data/something/frames/95929/first.jpg", "AURORA/data/something/frames/95929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor away from tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000107384", "images": ["AURORA/data/something/frames/129039/first.jpg", "AURORA/data/something/frames/129039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar container closer to tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000107385", "images": ["AURORA/data/something/frames/213177/first.jpg", "AURORA/data/something/frames/213177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive with other pendrives"}, {"from": "gpt", "value": ""}]} +{"id": "000000107386", "images": ["AURORA/data/something/frames/181013/first.jpg", "AURORA/data/something/frames/181013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning salt upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107387", "images": ["AURORA/data/something/frames/140540/first.jpg", "AURORA/data/something/frames/140540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting balm onto mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000107388", "images": ["AURORA/data/something/frames/87369/first.jpg", "AURORA/data/something/frames/87369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe box with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107389", "images": ["AURORA/data/something/frames/142111/first.jpg", "AURORA/data/something/frames/142111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter onto candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107390", "images": ["AURORA/data/something/frames/129889/first.jpg", "AURORA/data/something/frames/129889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107391", "images": ["AURORA/data/something/frames/89291/first.jpg", "AURORA/data/something/frames/89291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107392", "images": ["AURORA/data/something/frames/135982/first.jpg", "AURORA/data/something/frames/135982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107393", "images": ["AURORA/data/something/frames/83504/first.jpg", "AURORA/data/something/frames/83504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107394", "images": ["AURORA/data/something/frames/40718/first.jpg", "AURORA/data/something/frames/40718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lidded cup out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107395", "images": ["AURORA/data/something/frames/203120/first.jpg", "AURORA/data/something/frames/203120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mango, revealing dice behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107396", "images": ["AURORA/data/something/frames/174519/first.jpg", "AURORA/data/something/frames/174519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching soda can with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107397", "images": ["AURORA/data/something/frames/75587/first.jpg", "AURORA/data/something/frames/75587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107398", "images": ["AURORA/data/something/frames/183833/first.jpg", "AURORA/data/something/frames/183833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107399", "images": ["AURORA/data/something/frames/173098/first.jpg", "AURORA/data/something/frames/173098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wristlet, luggage tag and hat on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107400", "images": ["AURORA/data/something/frames/99514/first.jpg", "AURORA/data/something/frames/99514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000107401", "images": ["AURORA/data/something/frames/140929/first.jpg", "AURORA/data/something/frames/140929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107402", "images": ["AURORA/data/something/frames/61837/first.jpg", "AURORA/data/something/frames/61837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107403", "images": ["AURORA/data/something/frames/123134/first.jpg", "AURORA/data/something/frames/123134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger and pendrive away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107404", "images": ["AURORA/data/something/frames/149879/first.jpg", "AURORA/data/something/frames/149879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheat of plate wheat"}, {"from": "gpt", "value": ""}]} +{"id": "000000107405", "images": ["AURORA/data/something/frames/18343/first.jpg", "AURORA/data/something/frames/18343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder clip similar to other binder clips that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107406", "images": ["AURORA/data/something/frames/217420/first.jpg", "AURORA/data/something/frames/217420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107407", "images": ["AURORA/data/something/frames/143924/first.jpg", "AURORA/data/something/frames/143924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a napkin, a box and a charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107408", "images": ["AURORA/data/something/frames/174813/first.jpg", "AURORA/data/something/frames/174813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of something so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000107409", "images": ["AURORA/data/something/frames/112463/first.jpg", "AURORA/data/something/frames/112463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107410", "images": ["AURORA/data/something/frames/126450/first.jpg", "AURORA/data/something/frames/126450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving vape away from wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107411", "images": ["AURORA/data/something/frames/127505/first.jpg", "AURORA/data/something/frames/127505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107412", "images": ["AURORA/data/something/frames/112846/first.jpg", "AURORA/data/something/frames/112846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching calculator with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107413", "images": ["AURORA/data/something/frames/38394/first.jpg", "AURORA/data/something/frames/38394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lid onto a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107414", "images": ["AURORA/data/something/frames/63033/first.jpg", "AURORA/data/something/frames/63033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107415", "images": ["AURORA/data/something/frames/146621/first.jpg", "AURORA/data/something/frames/146621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107416", "images": ["AURORA/data/something/frames/132169/first.jpg", "AURORA/data/something/frames/132169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hand kercief out of pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107417", "images": ["AURORA/data/something/frames/195781/first.jpg", "AURORA/data/something/frames/195781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107418", "images": ["AURORA/data/something/frames/50173/first.jpg", "AURORA/data/something/frames/50173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming curtains"}, {"from": "gpt", "value": ""}]} +{"id": "000000107419", "images": ["AURORA/data/something/frames/127345/first.jpg", "AURORA/data/something/frames/127345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting headset with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107420", "images": ["AURORA/data/something/frames/48029/first.jpg", "AURORA/data/something/frames/48029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107421", "images": ["AURORA/data/something/frames/96691/first.jpg", "AURORA/data/something/frames/96691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cards so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107422", "images": ["AURORA/data/something/frames/165214/first.jpg", "AURORA/data/something/frames/165214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107423", "images": ["AURORA/data/something/frames/67898/first.jpg", "AURORA/data/something/frames/67898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107424", "images": ["AURORA/data/something/frames/176204/first.jpg", "AURORA/data/something/frames/176204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the glasses on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107425", "images": ["AURORA/data/something/frames/103655/first.jpg", "AURORA/data/something/frames/103655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107426", "images": ["AURORA/data/something/frames/20053/first.jpg", "AURORA/data/something/frames/20053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping juice off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107427", "images": ["AURORA/data/something/frames/185612/first.jpg", "AURORA/data/something/frames/185612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hat from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107428", "images": ["AURORA/data/something/frames/104918/first.jpg", "AURORA/data/something/frames/104918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding wool mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000107429", "images": ["AURORA/data/something/frames/81878/first.jpg", "AURORA/data/something/frames/81878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107430", "images": ["AURORA/data/something/frames/149475/first.jpg", "AURORA/data/something/frames/149475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a hanger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107431", "images": ["AURORA/data/something/frames/101214/first.jpg", "AURORA/data/something/frames/101214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000107432", "images": ["AURORA/data/something/frames/31145/first.jpg", "AURORA/data/something/frames/31145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdriver on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107433", "images": ["AURORA/data/something/frames/210816/first.jpg", "AURORA/data/something/frames/210816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a large plastic container over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107434", "images": ["AURORA/data/something/frames/112165/first.jpg", "AURORA/data/something/frames/112165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a plush with a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107435", "images": ["AURORA/data/something/frames/135493/first.jpg", "AURORA/data/something/frames/135493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying unopened drink on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107436", "images": ["AURORA/data/something/frames/148845/first.jpg", "AURORA/data/something/frames/148845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107437", "images": ["AURORA/data/something/frames/9928/first.jpg", "AURORA/data/something/frames/9928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing salt shaker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107438", "images": ["AURORA/data/something/frames/111451/first.jpg", "AURORA/data/something/frames/111451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning lipstick upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107439", "images": ["AURORA/data/something/frames/39402/first.jpg", "AURORA/data/something/frames/39402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a razor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107440", "images": ["AURORA/data/something/frames/27300/first.jpg", "AURORA/data/something/frames/27300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing hoodie into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107441", "images": ["AURORA/data/something/frames/65281/first.jpg", "AURORA/data/something/frames/65281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107442", "images": ["AURORA/data/something/frames/143328/first.jpg", "AURORA/data/something/frames/143328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jam-box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107443", "images": ["AURORA/data/something/frames/125400/first.jpg", "AURORA/data/something/frames/125400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107444", "images": ["AURORA/data/something/frames/149765/first.jpg", "AURORA/data/something/frames/149765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping red cup with paperwad over, so paperwad falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107445", "images": ["AURORA/data/something/frames/491/first.jpg", "AURORA/data/something/frames/491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening fridge door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107446", "images": ["AURORA/data/something/frames/95626/first.jpg", "AURORA/data/something/frames/95626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and highlighter away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107447", "images": ["AURORA/data/something/frames/102941/first.jpg", "AURORA/data/something/frames/102941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle away from candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107448", "images": ["AURORA/data/something/frames/13578/first.jpg", "AURORA/data/something/frames/13578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling grass out of soil ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000107449", "images": ["AURORA/data/something/frames/103941/first.jpg", "AURORA/data/something/frames/103941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoes into packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107450", "images": ["AURORA/data/something/frames/43636/first.jpg", "AURORA/data/something/frames/43636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107451", "images": ["AURORA/data/something/frames/177622/first.jpg", "AURORA/data/something/frames/177622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdiver, clip and thread on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107452", "images": ["AURORA/data/something/frames/67288/first.jpg", "AURORA/data/something/frames/67288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107453", "images": ["AURORA/data/something/frames/6903/first.jpg", "AURORA/data/something/frames/6903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107454", "images": ["AURORA/data/something/frames/125178/first.jpg", "AURORA/data/something/frames/125178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing magazine page into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107455", "images": ["AURORA/data/something/frames/108609/first.jpg", "AURORA/data/something/frames/108609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coffee from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107456", "images": ["AURORA/data/something/frames/216818/first.jpg", "AURORA/data/something/frames/216818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107457", "images": ["AURORA/data/something/frames/111036/first.jpg", "AURORA/data/something/frames/111036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107458", "images": ["AURORA/data/something/frames/133003/first.jpg", "AURORA/data/something/frames/133003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107459", "images": ["AURORA/data/something/frames/152234/first.jpg", "AURORA/data/something/frames/152234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blue colour pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107460", "images": ["AURORA/data/something/frames/47593/first.jpg", "AURORA/data/something/frames/47593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling tea onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000107461", "images": ["AURORA/data/something/frames/51121/first.jpg", "AURORA/data/something/frames/51121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a can upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107462", "images": ["AURORA/data/something/frames/124651/first.jpg", "AURORA/data/something/frames/124651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107463", "images": ["AURORA/data/something/frames/31723/first.jpg", "AURORA/data/something/frames/31723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lipstick tube onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107464", "images": ["AURORA/data/something/frames/182391/first.jpg", "AURORA/data/something/frames/182391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107465", "images": ["AURORA/data/something/frames/91072/first.jpg", "AURORA/data/something/frames/91072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107466", "images": ["AURORA/data/something/frames/70684/first.jpg", "AURORA/data/something/frames/70684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 bananas onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107467", "images": ["AURORA/data/something/frames/78979/first.jpg", "AURORA/data/something/frames/78979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into electrical plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107468", "images": ["AURORA/data/something/frames/66550/first.jpg", "AURORA/data/something/frames/66550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107469", "images": ["AURORA/data/something/frames/121410/first.jpg", "AURORA/data/something/frames/121410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of containers"}, {"from": "gpt", "value": ""}]} +{"id": "000000107470", "images": ["AURORA/data/something/frames/214725/first.jpg", "AURORA/data/something/frames/214725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107471", "images": ["AURORA/data/something/frames/44842/first.jpg", "AURORA/data/something/frames/44842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107472", "images": ["AURORA/data/something/frames/40536/first.jpg", "AURORA/data/something/frames/40536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting ecobag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107473", "images": ["AURORA/data/something/frames/184338/first.jpg", "AURORA/data/something/frames/184338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post it note to a map"}, {"from": "gpt", "value": ""}]} +{"id": "000000107474", "images": ["AURORA/data/something/frames/81114/first.jpg", "AURORA/data/something/frames/81114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden piece onto the top of a plant so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107475", "images": ["AURORA/data/something/frames/47599/first.jpg", "AURORA/data/something/frames/47599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a candle with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107476", "images": ["AURORA/data/something/frames/118955/first.jpg", "AURORA/data/something/frames/118955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a measuring tape on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107477", "images": ["AURORA/data/something/frames/182514/first.jpg", "AURORA/data/something/frames/182514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking flipflop up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107478", "images": ["AURORA/data/something/frames/188763/first.jpg", "AURORA/data/something/frames/188763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107479", "images": ["AURORA/data/something/frames/72022/first.jpg", "AURORA/data/something/frames/72022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scotch tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107480", "images": ["AURORA/data/something/frames/146427/first.jpg", "AURORA/data/something/frames/146427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering calculator with it's protective lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000107481", "images": ["AURORA/data/something/frames/14012/first.jpg", "AURORA/data/something/frames/14012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mouse with finger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107482", "images": ["AURORA/data/something/frames/16624/first.jpg", "AURORA/data/something/frames/16624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107483", "images": ["AURORA/data/something/frames/26785/first.jpg", "AURORA/data/something/frames/26785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy owl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107484", "images": ["AURORA/data/something/frames/197850/first.jpg", "AURORA/data/something/frames/197850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning smarthphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107485", "images": ["AURORA/data/something/frames/203861/first.jpg", "AURORA/data/something/frames/203861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107486", "images": ["AURORA/data/something/frames/45310/first.jpg", "AURORA/data/something/frames/45310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting skateboard with a powerbank"}, {"from": "gpt", "value": ""}]} +{"id": "000000107487", "images": ["AURORA/data/something/frames/212504/first.jpg", "AURORA/data/something/frames/212504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107488", "images": ["AURORA/data/something/frames/30751/first.jpg", "AURORA/data/something/frames/30751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt into cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000107489", "images": ["AURORA/data/something/frames/51426/first.jpg", "AURORA/data/something/frames/51426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107490", "images": ["AURORA/data/something/frames/135659/first.jpg", "AURORA/data/something/frames/135659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107491", "images": ["AURORA/data/something/frames/92832/first.jpg", "AURORA/data/something/frames/92832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with box on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107492", "images": ["AURORA/data/something/frames/132251/first.jpg", "AURORA/data/something/frames/132251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cell from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107493", "images": ["AURORA/data/something/frames/2733/first.jpg", "AURORA/data/something/frames/2733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tape dispenser upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107494", "images": ["AURORA/data/something/frames/94214/first.jpg", "AURORA/data/something/frames/94214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tray with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107495", "images": ["AURORA/data/something/frames/186411/first.jpg", "AURORA/data/something/frames/186411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork into a tea cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107496", "images": ["AURORA/data/something/frames/47303/first.jpg", "AURORA/data/something/frames/47303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening food container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107497", "images": ["AURORA/data/something/frames/101560/first.jpg", "AURORA/data/something/frames/101560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with tweezers on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107498", "images": ["AURORA/data/something/frames/25515/first.jpg", "AURORA/data/something/frames/25515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107499", "images": ["AURORA/data/something/frames/115683/first.jpg", "AURORA/data/something/frames/115683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107500", "images": ["AURORA/data/something/frames/158690/first.jpg", "AURORA/data/something/frames/158690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107501", "images": ["AURORA/data/something/frames/54443/first.jpg", "AURORA/data/something/frames/54443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107502", "images": ["AURORA/data/something/frames/100236/first.jpg", "AURORA/data/something/frames/100236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cable from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107503", "images": ["AURORA/data/something/frames/183623/first.jpg", "AURORA/data/something/frames/183623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000107504", "images": ["AURORA/data/something/frames/167482/first.jpg", "AURORA/data/something/frames/167482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107505", "images": ["AURORA/data/something/frames/24285/first.jpg", "AURORA/data/something/frames/24285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107506", "images": ["AURORA/data/something/frames/81790/first.jpg", "AURORA/data/something/frames/81790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107507", "images": ["AURORA/data/something/frames/152597/first.jpg", "AURORA/data/something/frames/152597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a shor with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107508", "images": ["AURORA/data/something/frames/49163/first.jpg", "AURORA/data/something/frames/49163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107509", "images": ["AURORA/data/something/frames/211484/first.jpg", "AURORA/data/something/frames/211484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107510", "images": ["AURORA/data/something/frames/188567/first.jpg", "AURORA/data/something/frames/188567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil behind a dumbbell"}, {"from": "gpt", "value": ""}]} +{"id": "000000107511", "images": ["AURORA/data/something/frames/54563/first.jpg", "AURORA/data/something/frames/54563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box next to trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000107512", "images": ["AURORA/data/something/frames/64597/first.jpg", "AURORA/data/something/frames/64597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping boot onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107513", "images": ["AURORA/data/something/frames/69778/first.jpg", "AURORA/data/something/frames/69778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107514", "images": ["AURORA/data/something/frames/176907/first.jpg", "AURORA/data/something/frames/176907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107515", "images": ["AURORA/data/something/frames/101895/first.jpg", "AURORA/data/something/frames/101895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a qtip onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107516", "images": ["AURORA/data/something/frames/52930/first.jpg", "AURORA/data/something/frames/52930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and a dvd closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107517", "images": ["AURORA/data/something/frames/155605/first.jpg", "AURORA/data/something/frames/155605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wristwatch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107518", "images": ["AURORA/data/something/frames/70316/first.jpg", "AURORA/data/something/frames/70316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107519", "images": ["AURORA/data/something/frames/122272/first.jpg", "AURORA/data/something/frames/122272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing spectacle box into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107520", "images": ["AURORA/data/something/frames/74370/first.jpg", "AURORA/data/something/frames/74370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107521", "images": ["AURORA/data/something/frames/164385/first.jpg", "AURORA/data/something/frames/164385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pink cologne on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107522", "images": ["AURORA/data/something/frames/195175/first.jpg", "AURORA/data/something/frames/195175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107523", "images": ["AURORA/data/something/frames/85889/first.jpg", "AURORA/data/something/frames/85889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing towel from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107524", "images": ["AURORA/data/something/frames/71965/first.jpg", "AURORA/data/something/frames/71965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing keys so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107525", "images": ["AURORA/data/something/frames/64951/first.jpg", "AURORA/data/something/frames/64951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107526", "images": ["AURORA/data/something/frames/8858/first.jpg", "AURORA/data/something/frames/8858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lid onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107527", "images": ["AURORA/data/something/frames/112949/first.jpg", "AURORA/data/something/frames/112949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107528", "images": ["AURORA/data/something/frames/24023/first.jpg", "AURORA/data/something/frames/24023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107529", "images": ["AURORA/data/something/frames/44803/first.jpg", "AURORA/data/something/frames/44803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107530", "images": ["AURORA/data/something/frames/198976/first.jpg", "AURORA/data/something/frames/198976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107531", "images": ["AURORA/data/something/frames/13820/first.jpg", "AURORA/data/something/frames/13820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tape away from sun glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107532", "images": ["AURORA/data/something/frames/211245/first.jpg", "AURORA/data/something/frames/211245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling phone from behind of camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107533", "images": ["AURORA/data/something/frames/201569/first.jpg", "AURORA/data/something/frames/201569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paint tube from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107534", "images": ["AURORA/data/something/frames/215016/first.jpg", "AURORA/data/something/frames/215016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107535", "images": ["AURORA/data/something/frames/128682/first.jpg", "AURORA/data/something/frames/128682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a chalk into a chalk box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107536", "images": ["AURORA/data/something/frames/112777/first.jpg", "AURORA/data/something/frames/112777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plag into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107537", "images": ["AURORA/data/something/frames/100595/first.jpg", "AURORA/data/something/frames/100595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping hand soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107538", "images": ["AURORA/data/something/frames/91913/first.jpg", "AURORA/data/something/frames/91913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107539", "images": ["AURORA/data/something/frames/130127/first.jpg", "AURORA/data/something/frames/130127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000107540", "images": ["AURORA/data/something/frames/218929/first.jpg", "AURORA/data/something/frames/218929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a snake ladder board so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107541", "images": ["AURORA/data/something/frames/21691/first.jpg", "AURORA/data/something/frames/21691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving milk closer to knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000107542", "images": ["AURORA/data/something/frames/60025/first.jpg", "AURORA/data/something/frames/60025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking newspaper from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107543", "images": ["AURORA/data/something/frames/112745/first.jpg", "AURORA/data/something/frames/112745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to plastic glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107544", "images": ["AURORA/data/something/frames/8503/first.jpg", "AURORA/data/something/frames/8503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 bag of rice onto a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107545", "images": ["AURORA/data/something/frames/6863/first.jpg", "AURORA/data/something/frames/6863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crumbs off of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107546", "images": ["AURORA/data/something/frames/116785/first.jpg", "AURORA/data/something/frames/116785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing orange paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107547", "images": ["AURORA/data/something/frames/33564/first.jpg", "AURORA/data/something/frames/33564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107548", "images": ["AURORA/data/something/frames/172634/first.jpg", "AURORA/data/something/frames/172634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107549", "images": ["AURORA/data/something/frames/199855/first.jpg", "AURORA/data/something/frames/199855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a piece of paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107550", "images": ["AURORA/data/something/frames/150892/first.jpg", "AURORA/data/something/frames/150892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107551", "images": ["AURORA/data/something/frames/49463/first.jpg", "AURORA/data/something/frames/49463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107552", "images": ["AURORA/data/something/frames/123288/first.jpg", "AURORA/data/something/frames/123288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pot with stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000107553", "images": ["AURORA/data/something/frames/202867/first.jpg", "AURORA/data/something/frames/202867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000107554", "images": ["AURORA/data/something/frames/186768/first.jpg", "AURORA/data/something/frames/186768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden reeper until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107555", "images": ["AURORA/data/something/frames/94925/first.jpg", "AURORA/data/something/frames/94925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107556", "images": ["AURORA/data/something/frames/147099/first.jpg", "AURORA/data/something/frames/147099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107557", "images": ["AURORA/data/something/frames/77707/first.jpg", "AURORA/data/something/frames/77707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black hair tie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107558", "images": ["AURORA/data/something/frames/211101/first.jpg", "AURORA/data/something/frames/211101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mail"}, {"from": "gpt", "value": ""}]} +{"id": "000000107559", "images": ["AURORA/data/something/frames/169919/first.jpg", "AURORA/data/something/frames/169919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107560", "images": ["AURORA/data/something/frames/134050/first.jpg", "AURORA/data/something/frames/134050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking one cup onto a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000107561", "images": ["AURORA/data/something/frames/75323/first.jpg", "AURORA/data/something/frames/75323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding underwear"}, {"from": "gpt", "value": ""}]} +{"id": "000000107562", "images": ["AURORA/data/something/frames/38411/first.jpg", "AURORA/data/something/frames/38411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107563", "images": ["AURORA/data/something/frames/121585/first.jpg", "AURORA/data/something/frames/121585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a musical tabala onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107564", "images": ["AURORA/data/something/frames/129496/first.jpg", "AURORA/data/something/frames/129496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending carrot until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107565", "images": ["AURORA/data/something/frames/207166/first.jpg", "AURORA/data/something/frames/207166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107566", "images": ["AURORA/data/something/frames/192226/first.jpg", "AURORA/data/something/frames/192226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book underneath mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000107567", "images": ["AURORA/data/something/frames/82929/first.jpg", "AURORA/data/something/frames/82929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour soda into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107568", "images": ["AURORA/data/something/frames/37072/first.jpg", "AURORA/data/something/frames/37072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107569", "images": ["AURORA/data/something/frames/90253/first.jpg", "AURORA/data/something/frames/90253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107570", "images": ["AURORA/data/something/frames/138521/first.jpg", "AURORA/data/something/frames/138521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107571", "images": ["AURORA/data/something/frames/162338/first.jpg", "AURORA/data/something/frames/162338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing torch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107572", "images": ["AURORA/data/something/frames/67862/first.jpg", "AURORA/data/something/frames/67862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107573", "images": ["AURORA/data/something/frames/134947/first.jpg", "AURORA/data/something/frames/134947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming brown bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107574", "images": ["AURORA/data/something/frames/80228/first.jpg", "AURORA/data/something/frames/80228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pepper shaker over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107575", "images": ["AURORA/data/something/frames/124674/first.jpg", "AURORA/data/something/frames/124674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107576", "images": ["AURORA/data/something/frames/135976/first.jpg", "AURORA/data/something/frames/135976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ipad with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107577", "images": ["AURORA/data/something/frames/94872/first.jpg", "AURORA/data/something/frames/94872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tape in front of a coil of wires"}, {"from": "gpt", "value": ""}]} +{"id": "000000107578", "images": ["AURORA/data/something/frames/120936/first.jpg", "AURORA/data/something/frames/120936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and can away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107579", "images": ["AURORA/data/something/frames/121613/first.jpg", "AURORA/data/something/frames/121613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107580", "images": ["AURORA/data/something/frames/157241/first.jpg", "AURORA/data/something/frames/157241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107581", "images": ["AURORA/data/something/frames/108274/first.jpg", "AURORA/data/something/frames/108274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000107582", "images": ["AURORA/data/something/frames/215063/first.jpg", "AURORA/data/something/frames/215063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107583", "images": ["AURORA/data/something/frames/217781/first.jpg", "AURORA/data/something/frames/217781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper clips box into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107584", "images": ["AURORA/data/something/frames/191007/first.jpg", "AURORA/data/something/frames/191007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107585", "images": ["AURORA/data/something/frames/12888/first.jpg", "AURORA/data/something/frames/12888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107586", "images": ["AURORA/data/something/frames/154401/first.jpg", "AURORA/data/something/frames/154401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107587", "images": ["AURORA/data/something/frames/188573/first.jpg", "AURORA/data/something/frames/188573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107588", "images": ["AURORA/data/something/frames/4917/first.jpg", "AURORA/data/something/frames/4917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle out of refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107589", "images": ["AURORA/data/something/frames/157382/first.jpg", "AURORA/data/something/frames/157382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering plush doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000107590", "images": ["AURORA/data/something/frames/217900/first.jpg", "AURORA/data/something/frames/217900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107591", "images": ["AURORA/data/something/frames/167177/first.jpg", "AURORA/data/something/frames/167177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming violin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107592", "images": ["AURORA/data/something/frames/39397/first.jpg", "AURORA/data/something/frames/39397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cigarette lighter in front of black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107593", "images": ["AURORA/data/something/frames/18570/first.jpg", "AURORA/data/something/frames/18570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cleaner off of window"}, {"from": "gpt", "value": ""}]} +{"id": "000000107594", "images": ["AURORA/data/something/frames/112472/first.jpg", "AURORA/data/something/frames/112472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a compact disk up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107595", "images": ["AURORA/data/something/frames/32957/first.jpg", "AURORA/data/something/frames/32957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107596", "images": ["AURORA/data/something/frames/137786/first.jpg", "AURORA/data/something/frames/137786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107597", "images": ["AURORA/data/something/frames/8851/first.jpg", "AURORA/data/something/frames/8851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 sponges"}, {"from": "gpt", "value": ""}]} +{"id": "000000107598", "images": ["AURORA/data/something/frames/83163/first.jpg", "AURORA/data/something/frames/83163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glasses across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107599", "images": ["AURORA/data/something/frames/134233/first.jpg", "AURORA/data/something/frames/134233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107600", "images": ["AURORA/data/something/frames/32152/first.jpg", "AURORA/data/something/frames/32152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107601", "images": ["AURORA/data/something/frames/220758/first.jpg", "AURORA/data/something/frames/220758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mayo jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107602", "images": ["AURORA/data/something/frames/216825/first.jpg", "AURORA/data/something/frames/216825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107603", "images": ["AURORA/data/something/frames/203974/first.jpg", "AURORA/data/something/frames/203974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107604", "images": ["AURORA/data/something/frames/108285/first.jpg", "AURORA/data/something/frames/108285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107605", "images": ["AURORA/data/something/frames/31431/first.jpg", "AURORA/data/something/frames/31431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug in front of the stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000107606", "images": ["AURORA/data/something/frames/188843/first.jpg", "AURORA/data/something/frames/188843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107607", "images": ["AURORA/data/something/frames/51076/first.jpg", "AURORA/data/something/frames/51076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with kitchen scissors on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107608", "images": ["AURORA/data/something/frames/189818/first.jpg", "AURORA/data/something/frames/189818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107609", "images": ["AURORA/data/something/frames/135111/first.jpg", "AURORA/data/something/frames/135111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading sauce onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107610", "images": ["AURORA/data/something/frames/149224/first.jpg", "AURORA/data/something/frames/149224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle behind frame"}, {"from": "gpt", "value": ""}]} +{"id": "000000107611", "images": ["AURORA/data/something/frames/49283/first.jpg", "AURORA/data/something/frames/49283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107612", "images": ["AURORA/data/something/frames/160267/first.jpg", "AURORA/data/something/frames/160267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107613", "images": ["AURORA/data/something/frames/156782/first.jpg", "AURORA/data/something/frames/156782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107614", "images": ["AURORA/data/something/frames/55101/first.jpg", "AURORA/data/something/frames/55101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107615", "images": ["AURORA/data/something/frames/38820/first.jpg", "AURORA/data/something/frames/38820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107616", "images": ["AURORA/data/something/frames/204491/first.jpg", "AURORA/data/something/frames/204491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107617", "images": ["AURORA/data/something/frames/195002/first.jpg", "AURORA/data/something/frames/195002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping eraser over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107618", "images": ["AURORA/data/something/frames/121547/first.jpg", "AURORA/data/something/frames/121547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107619", "images": ["AURORA/data/something/frames/168721/first.jpg", "AURORA/data/something/frames/168721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup into a paper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107620", "images": ["AURORA/data/something/frames/40949/first.jpg", "AURORA/data/something/frames/40949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107621", "images": ["AURORA/data/something/frames/218509/first.jpg", "AURORA/data/something/frames/218509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107622", "images": ["AURORA/data/something/frames/85919/first.jpg", "AURORA/data/something/frames/85919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tyre of a bicycle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107623", "images": ["AURORA/data/something/frames/74013/first.jpg", "AURORA/data/something/frames/74013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000107624", "images": ["AURORA/data/something/frames/170548/first.jpg", "AURORA/data/something/frames/170548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107625", "images": ["AURORA/data/something/frames/169543/first.jpg", "AURORA/data/something/frames/169543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107626", "images": ["AURORA/data/something/frames/189993/first.jpg", "AURORA/data/something/frames/189993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter into a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107627", "images": ["AURORA/data/something/frames/58250/first.jpg", "AURORA/data/something/frames/58250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a mug on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107628", "images": ["AURORA/data/something/frames/145003/first.jpg", "AURORA/data/something/frames/145003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into sugar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107629", "images": ["AURORA/data/something/frames/192749/first.jpg", "AURORA/data/something/frames/192749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blowes"}, {"from": "gpt", "value": ""}]} +{"id": "000000107630", "images": ["AURORA/data/something/frames/10338/first.jpg", "AURORA/data/something/frames/10338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering twizzer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107631", "images": ["AURORA/data/something/frames/77834/first.jpg", "AURORA/data/something/frames/77834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a lighter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107632", "images": ["AURORA/data/something/frames/28479/first.jpg", "AURORA/data/something/frames/28479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mouse with a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107633", "images": ["AURORA/data/something/frames/176955/first.jpg", "AURORA/data/something/frames/176955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tea light candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107634", "images": ["AURORA/data/something/frames/215686/first.jpg", "AURORA/data/something/frames/215686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 ink bottles onto calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107635", "images": ["AURORA/data/something/frames/189438/first.jpg", "AURORA/data/something/frames/189438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming scent bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107636", "images": ["AURORA/data/something/frames/97139/first.jpg", "AURORA/data/something/frames/97139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a coin to a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107637", "images": ["AURORA/data/something/frames/188622/first.jpg", "AURORA/data/something/frames/188622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tissue box being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107638", "images": ["AURORA/data/something/frames/97822/first.jpg", "AURORA/data/something/frames/97822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a painting with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107639", "images": ["AURORA/data/something/frames/109085/first.jpg", "AURORA/data/something/frames/109085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a perfume next to lotion bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107640", "images": ["AURORA/data/something/frames/138243/first.jpg", "AURORA/data/something/frames/138243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving arm of stuffed bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000107641", "images": ["AURORA/data/something/frames/29941/first.jpg", "AURORA/data/something/frames/29941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tv remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107642", "images": ["AURORA/data/something/frames/171121/first.jpg", "AURORA/data/something/frames/171121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107643", "images": ["AURORA/data/something/frames/178377/first.jpg", "AURORA/data/something/frames/178377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107644", "images": ["AURORA/data/something/frames/100336/first.jpg", "AURORA/data/something/frames/100336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming orange notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000107645", "images": ["AURORA/data/something/frames/168150/first.jpg", "AURORA/data/something/frames/168150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing box into cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000107646", "images": ["AURORA/data/something/frames/139013/first.jpg", "AURORA/data/something/frames/139013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chalk into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107647", "images": ["AURORA/data/something/frames/131442/first.jpg", "AURORA/data/something/frames/131442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107648", "images": ["AURORA/data/something/frames/5249/first.jpg", "AURORA/data/something/frames/5249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107649", "images": ["AURORA/data/something/frames/146221/first.jpg", "AURORA/data/something/frames/146221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie into cupholder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107650", "images": ["AURORA/data/something/frames/1027/first.jpg", "AURORA/data/something/frames/1027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil into pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000107651", "images": ["AURORA/data/something/frames/15130/first.jpg", "AURORA/data/something/frames/15130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000107652", "images": ["AURORA/data/something/frames/199966/first.jpg", "AURORA/data/something/frames/199966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting blouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000107653", "images": ["AURORA/data/something/frames/125581/first.jpg", "AURORA/data/something/frames/125581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink blush on from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107654", "images": ["AURORA/data/something/frames/168726/first.jpg", "AURORA/data/something/frames/168726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000107655", "images": ["AURORA/data/something/frames/84000/first.jpg", "AURORA/data/something/frames/84000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting match box with ointment tube on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107656", "images": ["AURORA/data/something/frames/205352/first.jpg", "AURORA/data/something/frames/205352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107657", "images": ["AURORA/data/something/frames/99398/first.jpg", "AURORA/data/something/frames/99398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sharpener from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107658", "images": ["AURORA/data/something/frames/90233/first.jpg", "AURORA/data/something/frames/90233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107659", "images": ["AURORA/data/something/frames/137165/first.jpg", "AURORA/data/something/frames/137165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107660", "images": ["AURORA/data/something/frames/194379/first.jpg", "AURORA/data/something/frames/194379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pepper grinder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107661", "images": ["AURORA/data/something/frames/186192/first.jpg", "AURORA/data/something/frames/186192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting drum with sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107662", "images": ["AURORA/data/something/frames/118939/first.jpg", "AURORA/data/something/frames/118939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping starburst up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107663", "images": ["AURORA/data/something/frames/104653/first.jpg", "AURORA/data/something/frames/104653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a hammer without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107664", "images": ["AURORA/data/something/frames/193607/first.jpg", "AURORA/data/something/frames/193607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin away from whiteboard marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107665", "images": ["AURORA/data/something/frames/143000/first.jpg", "AURORA/data/something/frames/143000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pair of sunglasses away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107666", "images": ["AURORA/data/something/frames/125443/first.jpg", "AURORA/data/something/frames/125443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 pill bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000107667", "images": ["AURORA/data/something/frames/113955/first.jpg", "AURORA/data/something/frames/113955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107668", "images": ["AURORA/data/something/frames/97768/first.jpg", "AURORA/data/something/frames/97768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can in front of keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000107669", "images": ["AURORA/data/something/frames/12211/first.jpg", "AURORA/data/something/frames/12211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000107670", "images": ["AURORA/data/something/frames/180612/first.jpg", "AURORA/data/something/frames/180612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a toy up with my hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107671", "images": ["AURORA/data/something/frames/95246/first.jpg", "AURORA/data/something/frames/95246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paperclip back"}, {"from": "gpt", "value": ""}]} +{"id": "000000107672", "images": ["AURORA/data/something/frames/167367/first.jpg", "AURORA/data/something/frames/167367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 wooden sticks onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107673", "images": ["AURORA/data/something/frames/68544/first.jpg", "AURORA/data/something/frames/68544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting gear wheel next to tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107674", "images": ["AURORA/data/something/frames/171359/first.jpg", "AURORA/data/something/frames/171359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107675", "images": ["AURORA/data/something/frames/108440/first.jpg", "AURORA/data/something/frames/108440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping glue in front of paper holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000107676", "images": ["AURORA/data/something/frames/189513/first.jpg", "AURORA/data/something/frames/189513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy skull out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107677", "images": ["AURORA/data/something/frames/192278/first.jpg", "AURORA/data/something/frames/192278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging jack into speaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107678", "images": ["AURORA/data/something/frames/120747/first.jpg", "AURORA/data/something/frames/120747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone and computer mouse on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107679", "images": ["AURORA/data/something/frames/208064/first.jpg", "AURORA/data/something/frames/208064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pot holder upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107680", "images": ["AURORA/data/something/frames/121848/first.jpg", "AURORA/data/something/frames/121848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107681", "images": ["AURORA/data/something/frames/17700/first.jpg", "AURORA/data/something/frames/17700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass in front of the adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107682", "images": ["AURORA/data/something/frames/36063/first.jpg", "AURORA/data/something/frames/36063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107683", "images": ["AURORA/data/something/frames/143952/first.jpg", "AURORA/data/something/frames/143952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000107684", "images": ["AURORA/data/something/frames/82875/first.jpg", "AURORA/data/something/frames/82875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling sponge, converter, nail clipper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107685", "images": ["AURORA/data/something/frames/5469/first.jpg", "AURORA/data/something/frames/5469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping chocolate off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107686", "images": ["AURORA/data/something/frames/120977/first.jpg", "AURORA/data/something/frames/120977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and holder closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107687", "images": ["AURORA/data/something/frames/73986/first.jpg", "AURORA/data/something/frames/73986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a salt shaker upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107688", "images": ["AURORA/data/something/frames/83612/first.jpg", "AURORA/data/something/frames/83612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar away from a big jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107689", "images": ["AURORA/data/something/frames/14538/first.jpg", "AURORA/data/something/frames/14538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107690", "images": ["AURORA/data/something/frames/37067/first.jpg", "AURORA/data/something/frames/37067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107691", "images": ["AURORA/data/something/frames/197696/first.jpg", "AURORA/data/something/frames/197696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sneaker colliding with sneaker and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000107692", "images": ["AURORA/data/something/frames/33574/first.jpg", "AURORA/data/something/frames/33574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107693", "images": ["AURORA/data/something/frames/110649/first.jpg", "AURORA/data/something/frames/110649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying tablet box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107694", "images": ["AURORA/data/something/frames/84770/first.jpg", "AURORA/data/something/frames/84770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying black colour marker pen cap on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107695", "images": ["AURORA/data/something/frames/53748/first.jpg", "AURORA/data/something/frames/53748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keyboard down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107696", "images": ["AURORA/data/something/frames/50290/first.jpg", "AURORA/data/something/frames/50290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107697", "images": ["AURORA/data/something/frames/47558/first.jpg", "AURORA/data/something/frames/47558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing receipt into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107698", "images": ["AURORA/data/something/frames/72218/first.jpg", "AURORA/data/something/frames/72218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107699", "images": ["AURORA/data/something/frames/28905/first.jpg", "AURORA/data/something/frames/28905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper towel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107700", "images": ["AURORA/data/something/frames/120974/first.jpg", "AURORA/data/something/frames/120974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote and the mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107701", "images": ["AURORA/data/something/frames/177582/first.jpg", "AURORA/data/something/frames/177582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107702", "images": ["AURORA/data/something/frames/171192/first.jpg", "AURORA/data/something/frames/171192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107703", "images": ["AURORA/data/something/frames/172144/first.jpg", "AURORA/data/something/frames/172144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch, glass and doll on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107704", "images": ["AURORA/data/something/frames/193055/first.jpg", "AURORA/data/something/frames/193055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green colour toy car up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107705", "images": ["AURORA/data/something/frames/141828/first.jpg", "AURORA/data/something/frames/141828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting medicine on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107706", "images": ["AURORA/data/something/frames/180327/first.jpg", "AURORA/data/something/frames/180327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107707", "images": ["AURORA/data/something/frames/263/first.jpg", "AURORA/data/something/frames/263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping mark off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107708", "images": ["AURORA/data/something/frames/73406/first.jpg", "AURORA/data/something/frames/73406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107709", "images": ["AURORA/data/something/frames/189874/first.jpg", "AURORA/data/something/frames/189874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a can on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107710", "images": ["AURORA/data/something/frames/110162/first.jpg", "AURORA/data/something/frames/110162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stacking block upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107711", "images": ["AURORA/data/something/frames/12636/first.jpg", "AURORA/data/something/frames/12636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a building block into another building block but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107712", "images": ["AURORA/data/something/frames/181528/first.jpg", "AURORA/data/something/frames/181528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a booklet without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107713", "images": ["AURORA/data/something/frames/3016/first.jpg", "AURORA/data/something/frames/3016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pink water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107714", "images": ["AURORA/data/something/frames/185264/first.jpg", "AURORA/data/something/frames/185264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an empty water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107715", "images": ["AURORA/data/something/frames/179073/first.jpg", "AURORA/data/something/frames/179073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107716", "images": ["AURORA/data/something/frames/203213/first.jpg", "AURORA/data/something/frames/203213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107717", "images": ["AURORA/data/something/frames/212014/first.jpg", "AURORA/data/something/frames/212014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping news paper into ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000107718", "images": ["AURORA/data/something/frames/198138/first.jpg", "AURORA/data/something/frames/198138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107719", "images": ["AURORA/data/something/frames/162876/first.jpg", "AURORA/data/something/frames/162876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paint brush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107720", "images": ["AURORA/data/something/frames/125729/first.jpg", "AURORA/data/something/frames/125729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blue colour pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107721", "images": ["AURORA/data/something/frames/120135/first.jpg", "AURORA/data/something/frames/120135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107722", "images": ["AURORA/data/something/frames/78670/first.jpg", "AURORA/data/something/frames/78670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000107723", "images": ["AURORA/data/something/frames/175517/first.jpg", "AURORA/data/something/frames/175517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107724", "images": ["AURORA/data/something/frames/38824/first.jpg", "AURORA/data/something/frames/38824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coffee behind canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000107725", "images": ["AURORA/data/something/frames/149517/first.jpg", "AURORA/data/something/frames/149517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting push pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107726", "images": ["AURORA/data/something/frames/172232/first.jpg", "AURORA/data/something/frames/172232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving water bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107727", "images": ["AURORA/data/something/frames/94104/first.jpg", "AURORA/data/something/frames/94104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming instruction board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107728", "images": ["AURORA/data/something/frames/164079/first.jpg", "AURORA/data/something/frames/164079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a brush, an eraser and a glass of water on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107729", "images": ["AURORA/data/something/frames/200318/first.jpg", "AURORA/data/something/frames/200318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107730", "images": ["AURORA/data/something/frames/77429/first.jpg", "AURORA/data/something/frames/77429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pillow in front of dog"}, {"from": "gpt", "value": ""}]} +{"id": "000000107731", "images": ["AURORA/data/something/frames/76993/first.jpg", "AURORA/data/something/frames/76993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hose head up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107732", "images": ["AURORA/data/something/frames/141069/first.jpg", "AURORA/data/something/frames/141069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car bonnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107733", "images": ["AURORA/data/something/frames/20424/first.jpg", "AURORA/data/something/frames/20424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy tiger in front of toy elephant"}, {"from": "gpt", "value": ""}]} +{"id": "000000107734", "images": ["AURORA/data/something/frames/137695/first.jpg", "AURORA/data/something/frames/137695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107735", "images": ["AURORA/data/something/frames/47388/first.jpg", "AURORA/data/something/frames/47388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothbrush over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107736", "images": ["AURORA/data/something/frames/103205/first.jpg", "AURORA/data/something/frames/103205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy idol from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107737", "images": ["AURORA/data/something/frames/8041/first.jpg", "AURORA/data/something/frames/8041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving branch across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107738", "images": ["AURORA/data/something/frames/140864/first.jpg", "AURORA/data/something/frames/140864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler next to digital stamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000107739", "images": ["AURORA/data/something/frames/18962/first.jpg", "AURORA/data/something/frames/18962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone behind pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000107740", "images": ["AURORA/data/something/frames/29666/first.jpg", "AURORA/data/something/frames/29666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking button"}, {"from": "gpt", "value": ""}]} +{"id": "000000107741", "images": ["AURORA/data/something/frames/40294/first.jpg", "AURORA/data/something/frames/40294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen out of bunch of pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000107742", "images": ["AURORA/data/something/frames/146736/first.jpg", "AURORA/data/something/frames/146736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107743", "images": ["AURORA/data/something/frames/14234/first.jpg", "AURORA/data/something/frames/14234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107744", "images": ["AURORA/data/something/frames/631/first.jpg", "AURORA/data/something/frames/631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107745", "images": ["AURORA/data/something/frames/125034/first.jpg", "AURORA/data/something/frames/125034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting small freshmints on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107746", "images": ["AURORA/data/something/frames/67138/first.jpg", "AURORA/data/something/frames/67138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping t.v tray over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107747", "images": ["AURORA/data/something/frames/28512/first.jpg", "AURORA/data/something/frames/28512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dental gel upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107748", "images": ["AURORA/data/something/frames/187241/first.jpg", "AURORA/data/something/frames/187241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing book, revealing book behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107749", "images": ["AURORA/data/something/frames/27320/first.jpg", "AURORA/data/something/frames/27320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug onto a mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000107750", "images": ["AURORA/data/something/frames/155143/first.jpg", "AURORA/data/something/frames/155143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cap with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107751", "images": ["AURORA/data/something/frames/53769/first.jpg", "AURORA/data/something/frames/53769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from something with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107752", "images": ["AURORA/data/something/frames/215853/first.jpg", "AURORA/data/something/frames/215853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering soda cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000107753", "images": ["AURORA/data/something/frames/171309/first.jpg", "AURORA/data/something/frames/171309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping wooden doll over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107754", "images": ["AURORA/data/something/frames/169835/first.jpg", "AURORA/data/something/frames/169835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107755", "images": ["AURORA/data/something/frames/144500/first.jpg", "AURORA/data/something/frames/144500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 5 xbox games onto couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107756", "images": ["AURORA/data/something/frames/52401/first.jpg", "AURORA/data/something/frames/52401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding frock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107757", "images": ["AURORA/data/something/frames/79738/first.jpg", "AURORA/data/something/frames/79738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass behind teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107758", "images": ["AURORA/data/something/frames/78699/first.jpg", "AURORA/data/something/frames/78699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000107759", "images": ["AURORA/data/something/frames/169231/first.jpg", "AURORA/data/something/frames/169231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tinbox upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107760", "images": ["AURORA/data/something/frames/193451/first.jpg", "AURORA/data/something/frames/193451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bar soap up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107761", "images": ["AURORA/data/something/frames/184964/first.jpg", "AURORA/data/something/frames/184964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a broom on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107762", "images": ["AURORA/data/something/frames/103533/first.jpg", "AURORA/data/something/frames/103533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107763", "images": ["AURORA/data/something/frames/175214/first.jpg", "AURORA/data/something/frames/175214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with spanner"}, {"from": "gpt", "value": ""}]} +{"id": "000000107764", "images": ["AURORA/data/something/frames/54434/first.jpg", "AURORA/data/something/frames/54434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening ice cream freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107765", "images": ["AURORA/data/something/frames/134838/first.jpg", "AURORA/data/something/frames/134838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107766", "images": ["AURORA/data/something/frames/25910/first.jpg", "AURORA/data/something/frames/25910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107767", "images": ["AURORA/data/something/frames/44458/first.jpg", "AURORA/data/something/frames/44458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107768", "images": ["AURORA/data/something/frames/62270/first.jpg", "AURORA/data/something/frames/62270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and soap closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107769", "images": ["AURORA/data/something/frames/137207/first.jpg", "AURORA/data/something/frames/137207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107770", "images": ["AURORA/data/something/frames/194895/first.jpg", "AURORA/data/something/frames/194895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107771", "images": ["AURORA/data/something/frames/22463/first.jpg", "AURORA/data/something/frames/22463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107772", "images": ["AURORA/data/something/frames/3855/first.jpg", "AURORA/data/something/frames/3855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something being deflected from something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107773", "images": ["AURORA/data/something/frames/35306/first.jpg", "AURORA/data/something/frames/35306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key and padlock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107774", "images": ["AURORA/data/something/frames/208793/first.jpg", "AURORA/data/something/frames/208793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a stuffed animal out of a locker"}, {"from": "gpt", "value": ""}]} +{"id": "000000107775", "images": ["AURORA/data/something/frames/111294/first.jpg", "AURORA/data/something/frames/111294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107776", "images": ["AURORA/data/something/frames/32444/first.jpg", "AURORA/data/something/frames/32444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper in half"}, {"from": "gpt", "value": ""}]} +{"id": "000000107777", "images": ["AURORA/data/something/frames/168467/first.jpg", "AURORA/data/something/frames/168467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto soil"}, {"from": "gpt", "value": ""}]} +{"id": "000000107778", "images": ["AURORA/data/something/frames/84702/first.jpg", "AURORA/data/something/frames/84702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming beer bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107779", "images": ["AURORA/data/something/frames/182461/first.jpg", "AURORA/data/something/frames/182461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a shoe colliding with filp flop and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000107780", "images": ["AURORA/data/something/frames/45090/first.jpg", "AURORA/data/something/frames/45090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bird"}, {"from": "gpt", "value": ""}]} +{"id": "000000107781", "images": ["AURORA/data/something/frames/75372/first.jpg", "AURORA/data/something/frames/75372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bag with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107782", "images": ["AURORA/data/something/frames/47429/first.jpg", "AURORA/data/something/frames/47429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107783", "images": ["AURORA/data/something/frames/217360/first.jpg", "AURORA/data/something/frames/217360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering candies"}, {"from": "gpt", "value": ""}]} +{"id": "000000107784", "images": ["AURORA/data/something/frames/145308/first.jpg", "AURORA/data/something/frames/145308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000107785", "images": ["AURORA/data/something/frames/205/first.jpg", "AURORA/data/something/frames/205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107786", "images": ["AURORA/data/something/frames/2882/first.jpg", "AURORA/data/something/frames/2882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoes underneath scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107787", "images": ["AURORA/data/something/frames/35693/first.jpg", "AURORA/data/something/frames/35693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107788", "images": ["AURORA/data/something/frames/154510/first.jpg", "AURORA/data/something/frames/154510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107789", "images": ["AURORA/data/something/frames/95587/first.jpg", "AURORA/data/something/frames/95587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping heart next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000107790", "images": ["AURORA/data/something/frames/102446/first.jpg", "AURORA/data/something/frames/102446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a key into a door knob"}, {"from": "gpt", "value": ""}]} +{"id": "000000107791", "images": ["AURORA/data/something/frames/70336/first.jpg", "AURORA/data/something/frames/70336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pack of tissue upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107792", "images": ["AURORA/data/something/frames/15647/first.jpg", "AURORA/data/something/frames/15647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107793", "images": ["AURORA/data/something/frames/42534/first.jpg", "AURORA/data/something/frames/42534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107794", "images": ["AURORA/data/something/frames/26729/first.jpg", "AURORA/data/something/frames/26729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000107795", "images": ["AURORA/data/something/frames/144166/first.jpg", "AURORA/data/something/frames/144166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming shoe rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000107796", "images": ["AURORA/data/something/frames/191965/first.jpg", "AURORA/data/something/frames/191965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a male plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107797", "images": ["AURORA/data/something/frames/7355/first.jpg", "AURORA/data/something/frames/7355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red dairy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107798", "images": ["AURORA/data/something/frames/218614/first.jpg", "AURORA/data/something/frames/218614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting canister with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107799", "images": ["AURORA/data/something/frames/99731/first.jpg", "AURORA/data/something/frames/99731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107800", "images": ["AURORA/data/something/frames/54669/first.jpg", "AURORA/data/something/frames/54669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107801", "images": ["AURORA/data/something/frames/67059/first.jpg", "AURORA/data/something/frames/67059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rock from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107802", "images": ["AURORA/data/something/frames/188393/first.jpg", "AURORA/data/something/frames/188393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdriver into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107803", "images": ["AURORA/data/something/frames/68542/first.jpg", "AURORA/data/something/frames/68542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cell phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107804", "images": ["AURORA/data/something/frames/159935/first.jpg", "AURORA/data/something/frames/159935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107805", "images": ["AURORA/data/something/frames/50512/first.jpg", "AURORA/data/something/frames/50512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping spilled water off of surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107806", "images": ["AURORA/data/something/frames/149170/first.jpg", "AURORA/data/something/frames/149170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a head"}, {"from": "gpt", "value": ""}]} +{"id": "000000107807", "images": ["AURORA/data/something/frames/59683/first.jpg", "AURORA/data/something/frames/59683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000107808", "images": ["AURORA/data/something/frames/17102/first.jpg", "AURORA/data/something/frames/17102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving markers closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107809", "images": ["AURORA/data/something/frames/93187/first.jpg", "AURORA/data/something/frames/93187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping chalk off of a mini chalkboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000107810", "images": ["AURORA/data/something/frames/157951/first.jpg", "AURORA/data/something/frames/157951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107811", "images": ["AURORA/data/something/frames/170930/first.jpg", "AURORA/data/something/frames/170930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107812", "images": ["AURORA/data/something/frames/73461/first.jpg", "AURORA/data/something/frames/73461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red spoon next to glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000107813", "images": ["AURORA/data/something/frames/157592/first.jpg", "AURORA/data/something/frames/157592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wallet into a boot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107814", "images": ["AURORA/data/something/frames/63784/first.jpg", "AURORA/data/something/frames/63784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying angel on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107815", "images": ["AURORA/data/something/frames/2831/first.jpg", "AURORA/data/something/frames/2831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tv remote next to pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107816", "images": ["AURORA/data/something/frames/179780/first.jpg", "AURORA/data/something/frames/179780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling oregano onto pasta salad"}, {"from": "gpt", "value": ""}]} +{"id": "000000107817", "images": ["AURORA/data/something/frames/158733/first.jpg", "AURORA/data/something/frames/158733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107818", "images": ["AURORA/data/something/frames/167310/first.jpg", "AURORA/data/something/frames/167310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle next to juicer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107819", "images": ["AURORA/data/something/frames/124639/first.jpg", "AURORA/data/something/frames/124639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening clamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000107820", "images": ["AURORA/data/something/frames/65174/first.jpg", "AURORA/data/something/frames/65174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shuttle cock into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107821", "images": ["AURORA/data/something/frames/207821/first.jpg", "AURORA/data/something/frames/207821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting belt onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107822", "images": ["AURORA/data/something/frames/63123/first.jpg", "AURORA/data/something/frames/63123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107823", "images": ["AURORA/data/something/frames/128313/first.jpg", "AURORA/data/something/frames/128313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle top behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107824", "images": ["AURORA/data/something/frames/200556/first.jpg", "AURORA/data/something/frames/200556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paintbrush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107825", "images": ["AURORA/data/something/frames/44580/first.jpg", "AURORA/data/something/frames/44580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a lid of tupper ware"}, {"from": "gpt", "value": ""}]} +{"id": "000000107826", "images": ["AURORA/data/something/frames/150213/first.jpg", "AURORA/data/something/frames/150213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening peanut butter jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107827", "images": ["AURORA/data/something/frames/153535/first.jpg", "AURORA/data/something/frames/153535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107828", "images": ["AURORA/data/something/frames/164486/first.jpg", "AURORA/data/something/frames/164486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000107829", "images": ["AURORA/data/something/frames/150457/first.jpg", "AURORA/data/something/frames/150457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing white paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107830", "images": ["AURORA/data/something/frames/209309/first.jpg", "AURORA/data/something/frames/209309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000107831", "images": ["AURORA/data/something/frames/95255/first.jpg", "AURORA/data/something/frames/95255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting chair with hairbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000107832", "images": ["AURORA/data/something/frames/37133/first.jpg", "AURORA/data/something/frames/37133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving part of match box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107833", "images": ["AURORA/data/something/frames/23995/first.jpg", "AURORA/data/something/frames/23995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107834", "images": ["AURORA/data/something/frames/71876/first.jpg", "AURORA/data/something/frames/71876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking flowers so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107835", "images": ["AURORA/data/something/frames/178006/first.jpg", "AURORA/data/something/frames/178006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107836", "images": ["AURORA/data/something/frames/135467/first.jpg", "AURORA/data/something/frames/135467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107837", "images": ["AURORA/data/something/frames/64706/first.jpg", "AURORA/data/something/frames/64706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bouncing reindeer toy, revealing a toy robot behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107838", "images": ["AURORA/data/something/frames/38349/first.jpg", "AURORA/data/something/frames/38349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawyer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107839", "images": ["AURORA/data/something/frames/122866/first.jpg", "AURORA/data/something/frames/122866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a knife next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000107840", "images": ["AURORA/data/something/frames/138191/first.jpg", "AURORA/data/something/frames/138191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling liptint from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107841", "images": ["AURORA/data/something/frames/9153/first.jpg", "AURORA/data/something/frames/9153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bike light from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107842", "images": ["AURORA/data/something/frames/103071/first.jpg", "AURORA/data/something/frames/103071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering fish"}, {"from": "gpt", "value": ""}]} +{"id": "000000107843", "images": ["AURORA/data/something/frames/41263/first.jpg", "AURORA/data/something/frames/41263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107844", "images": ["AURORA/data/something/frames/78020/first.jpg", "AURORA/data/something/frames/78020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery, pebble and toy idol on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107845", "images": ["AURORA/data/something/frames/213470/first.jpg", "AURORA/data/something/frames/213470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000107846", "images": ["AURORA/data/something/frames/210496/first.jpg", "AURORA/data/something/frames/210496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mop into dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107847", "images": ["AURORA/data/something/frames/94678/first.jpg", "AURORA/data/something/frames/94678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107848", "images": ["AURORA/data/something/frames/61230/first.jpg", "AURORA/data/something/frames/61230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107849", "images": ["AURORA/data/something/frames/119356/first.jpg", "AURORA/data/something/frames/119356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a broom next to a trash shovel"}, {"from": "gpt", "value": ""}]} +{"id": "000000107850", "images": ["AURORA/data/something/frames/121577/first.jpg", "AURORA/data/something/frames/121577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tape closer to sun glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000107851", "images": ["AURORA/data/something/frames/25819/first.jpg", "AURORA/data/something/frames/25819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting chair with cushion on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107852", "images": ["AURORA/data/something/frames/1036/first.jpg", "AURORA/data/something/frames/1036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a donut out of a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000107853", "images": ["AURORA/data/something/frames/23801/first.jpg", "AURORA/data/something/frames/23801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000107854", "images": ["AURORA/data/something/frames/4121/first.jpg", "AURORA/data/something/frames/4121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107855", "images": ["AURORA/data/something/frames/26332/first.jpg", "AURORA/data/something/frames/26332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clip onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107856", "images": ["AURORA/data/something/frames/88299/first.jpg", "AURORA/data/something/frames/88299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a notebook upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107857", "images": ["AURORA/data/something/frames/119633/first.jpg", "AURORA/data/something/frames/119633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing makeup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107858", "images": ["AURORA/data/something/frames/180201/first.jpg", "AURORA/data/something/frames/180201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107859", "images": ["AURORA/data/something/frames/56585/first.jpg", "AURORA/data/something/frames/56585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding unfolding kerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107860", "images": ["AURORA/data/something/frames/150946/first.jpg", "AURORA/data/something/frames/150946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending meat stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107861", "images": ["AURORA/data/something/frames/23981/first.jpg", "AURORA/data/something/frames/23981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and can closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107862", "images": ["AURORA/data/something/frames/54046/first.jpg", "AURORA/data/something/frames/54046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000107863", "images": ["AURORA/data/something/frames/159885/first.jpg", "AURORA/data/something/frames/159885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lotion container on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107864", "images": ["AURORA/data/something/frames/37269/first.jpg", "AURORA/data/something/frames/37269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple microfiber so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000107865", "images": ["AURORA/data/something/frames/107976/first.jpg", "AURORA/data/something/frames/107976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107866", "images": ["AURORA/data/something/frames/125163/first.jpg", "AURORA/data/something/frames/125163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting straw upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107867", "images": ["AURORA/data/something/frames/218165/first.jpg", "AURORA/data/something/frames/218165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lime behind nectarine"}, {"from": "gpt", "value": ""}]} +{"id": "000000107868", "images": ["AURORA/data/something/frames/188778/first.jpg", "AURORA/data/something/frames/188778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107869", "images": ["AURORA/data/something/frames/83282/first.jpg", "AURORA/data/something/frames/83282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107870", "images": ["AURORA/data/something/frames/42536/first.jpg", "AURORA/data/something/frames/42536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a shoe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107871", "images": ["AURORA/data/something/frames/110820/first.jpg", "AURORA/data/something/frames/110820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup into a dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000107872", "images": ["AURORA/data/something/frames/128205/first.jpg", "AURORA/data/something/frames/128205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107873", "images": ["AURORA/data/something/frames/142505/first.jpg", "AURORA/data/something/frames/142505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting door glass with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107874", "images": ["AURORA/data/something/frames/110329/first.jpg", "AURORA/data/something/frames/110329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a plastic bottle into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000107875", "images": ["AURORA/data/something/frames/216835/first.jpg", "AURORA/data/something/frames/216835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107876", "images": ["AURORA/data/something/frames/160220/first.jpg", "AURORA/data/something/frames/160220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107877", "images": ["AURORA/data/something/frames/148838/first.jpg", "AURORA/data/something/frames/148838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107878", "images": ["AURORA/data/something/frames/192355/first.jpg", "AURORA/data/something/frames/192355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bottled water, revealing nail cutter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107879", "images": ["AURORA/data/something/frames/125710/first.jpg", "AURORA/data/something/frames/125710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail polish from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107880", "images": ["AURORA/data/something/frames/197559/first.jpg", "AURORA/data/something/frames/197559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000107881", "images": ["AURORA/data/something/frames/149682/first.jpg", "AURORA/data/something/frames/149682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking diary from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107882", "images": ["AURORA/data/something/frames/116350/first.jpg", "AURORA/data/something/frames/116350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coconut shell from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107883", "images": ["AURORA/data/something/frames/43337/first.jpg", "AURORA/data/something/frames/43337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting compact po and bottle of water on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107884", "images": ["AURORA/data/something/frames/109704/first.jpg", "AURORA/data/something/frames/109704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107885", "images": ["AURORA/data/something/frames/214243/first.jpg", "AURORA/data/something/frames/214243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107886", "images": ["AURORA/data/something/frames/62250/first.jpg", "AURORA/data/something/frames/62250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107887", "images": ["AURORA/data/something/frames/42143/first.jpg", "AURORA/data/something/frames/42143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker from behind of automon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107888", "images": ["AURORA/data/something/frames/169671/first.jpg", "AURORA/data/something/frames/169671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107889", "images": ["AURORA/data/something/frames/211313/first.jpg", "AURORA/data/something/frames/211313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip magnet to refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000107890", "images": ["AURORA/data/something/frames/41762/first.jpg", "AURORA/data/something/frames/41762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paint from similar items on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107891", "images": ["AURORA/data/something/frames/116306/first.jpg", "AURORA/data/something/frames/116306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling markets up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107892", "images": ["AURORA/data/something/frames/18288/first.jpg", "AURORA/data/something/frames/18288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tyre"}, {"from": "gpt", "value": ""}]} +{"id": "000000107893", "images": ["AURORA/data/something/frames/113411/first.jpg", "AURORA/data/something/frames/113411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000107894", "images": ["AURORA/data/something/frames/90874/first.jpg", "AURORA/data/something/frames/90874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into notebook but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107895", "images": ["AURORA/data/something/frames/210488/first.jpg", "AURORA/data/something/frames/210488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing colorful advertisement paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107896", "images": ["AURORA/data/something/frames/153957/first.jpg", "AURORA/data/something/frames/153957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 plate onto stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107897", "images": ["AURORA/data/something/frames/44961/first.jpg", "AURORA/data/something/frames/44961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107898", "images": ["AURORA/data/something/frames/23626/first.jpg", "AURORA/data/something/frames/23626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a nonstick pan onto a portable stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000107899", "images": ["AURORA/data/something/frames/24384/first.jpg", "AURORA/data/something/frames/24384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107900", "images": ["AURORA/data/something/frames/72745/first.jpg", "AURORA/data/something/frames/72745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering blue spoon with white handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107901", "images": ["AURORA/data/something/frames/181837/first.jpg", "AURORA/data/something/frames/181837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scrap paper closer to scrap paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107902", "images": ["AURORA/data/something/frames/207899/first.jpg", "AURORA/data/something/frames/207899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing fluorescent lightbulb behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000107903", "images": ["AURORA/data/something/frames/32641/first.jpg", "AURORA/data/something/frames/32641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a headphones with a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000107904", "images": ["AURORA/data/something/frames/175872/first.jpg", "AURORA/data/something/frames/175872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on the edge of box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107905", "images": ["AURORA/data/something/frames/163210/first.jpg", "AURORA/data/something/frames/163210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107906", "images": ["AURORA/data/something/frames/11020/first.jpg", "AURORA/data/something/frames/11020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107907", "images": ["AURORA/data/something/frames/57017/first.jpg", "AURORA/data/something/frames/57017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107908", "images": ["AURORA/data/something/frames/14426/first.jpg", "AURORA/data/something/frames/14426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107909", "images": ["AURORA/data/something/frames/201793/first.jpg", "AURORA/data/something/frames/201793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000107910", "images": ["AURORA/data/something/frames/90818/first.jpg", "AURORA/data/something/frames/90818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107911", "images": ["AURORA/data/something/frames/88774/first.jpg", "AURORA/data/something/frames/88774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying mug on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000107912", "images": ["AURORA/data/something/frames/36523/first.jpg", "AURORA/data/something/frames/36523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107913", "images": ["AURORA/data/something/frames/214556/first.jpg", "AURORA/data/something/frames/214556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107914", "images": ["AURORA/data/something/frames/182148/first.jpg", "AURORA/data/something/frames/182148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking nail polish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107915", "images": ["AURORA/data/something/frames/94819/first.jpg", "AURORA/data/something/frames/94819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107916", "images": ["AURORA/data/something/frames/123886/first.jpg", "AURORA/data/something/frames/123886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000107917", "images": ["AURORA/data/something/frames/5315/first.jpg", "AURORA/data/something/frames/5315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000107918", "images": ["AURORA/data/something/frames/50649/first.jpg", "AURORA/data/something/frames/50649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107919", "images": ["AURORA/data/something/frames/173269/first.jpg", "AURORA/data/something/frames/173269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107920", "images": ["AURORA/data/something/frames/79120/first.jpg", "AURORA/data/something/frames/79120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107921", "images": ["AURORA/data/something/frames/99449/first.jpg", "AURORA/data/something/frames/99449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing green coloured toy car into black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000107922", "images": ["AURORA/data/something/frames/20675/first.jpg", "AURORA/data/something/frames/20675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a basket handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107923", "images": ["AURORA/data/something/frames/145487/first.jpg", "AURORA/data/something/frames/145487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purple balloon pump down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107924", "images": ["AURORA/data/something/frames/213083/first.jpg", "AURORA/data/something/frames/213083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000107925", "images": ["AURORA/data/something/frames/201968/first.jpg", "AURORA/data/something/frames/201968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107926", "images": ["AURORA/data/something/frames/18455/first.jpg", "AURORA/data/something/frames/18455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 laptop charger onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000107927", "images": ["AURORA/data/something/frames/80510/first.jpg", "AURORA/data/something/frames/80510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107928", "images": ["AURORA/data/something/frames/1153/first.jpg", "AURORA/data/something/frames/1153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107929", "images": ["AURORA/data/something/frames/12327/first.jpg", "AURORA/data/something/frames/12327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb similar to other combs that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107930", "images": ["AURORA/data/something/frames/28747/first.jpg", "AURORA/data/something/frames/28747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107931", "images": ["AURORA/data/something/frames/29152/first.jpg", "AURORA/data/something/frames/29152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000107932", "images": ["AURORA/data/something/frames/35407/first.jpg", "AURORA/data/something/frames/35407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000107933", "images": ["AURORA/data/something/frames/139004/first.jpg", "AURORA/data/something/frames/139004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking duster up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107934", "images": ["AURORA/data/something/frames/208933/first.jpg", "AURORA/data/something/frames/208933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000107935", "images": ["AURORA/data/something/frames/96476/first.jpg", "AURORA/data/something/frames/96476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with highlighter on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107936", "images": ["AURORA/data/something/frames/218059/first.jpg", "AURORA/data/something/frames/218059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107937", "images": ["AURORA/data/something/frames/209512/first.jpg", "AURORA/data/something/frames/209512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking coffee cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107938", "images": ["AURORA/data/something/frames/16836/first.jpg", "AURORA/data/something/frames/16836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000107939", "images": ["AURORA/data/something/frames/189231/first.jpg", "AURORA/data/something/frames/189231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vase on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107940", "images": ["AURORA/data/something/frames/95551/first.jpg", "AURORA/data/something/frames/95551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000107941", "images": ["AURORA/data/something/frames/220548/first.jpg", "AURORA/data/something/frames/220548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107942", "images": ["AURORA/data/something/frames/126554/first.jpg", "AURORA/data/something/frames/126554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107943", "images": ["AURORA/data/something/frames/9501/first.jpg", "AURORA/data/something/frames/9501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000107944", "images": ["AURORA/data/something/frames/93470/first.jpg", "AURORA/data/something/frames/93470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000107945", "images": ["AURORA/data/something/frames/141483/first.jpg", "AURORA/data/something/frames/141483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair tie into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000107946", "images": ["AURORA/data/something/frames/167275/first.jpg", "AURORA/data/something/frames/167275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000107947", "images": ["AURORA/data/something/frames/32553/first.jpg", "AURORA/data/something/frames/32553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000107948", "images": ["AURORA/data/something/frames/217282/first.jpg", "AURORA/data/something/frames/217282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000107949", "images": ["AURORA/data/something/frames/3246/first.jpg", "AURORA/data/something/frames/3246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107950", "images": ["AURORA/data/something/frames/78749/first.jpg", "AURORA/data/something/frames/78749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lime so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107951", "images": ["AURORA/data/something/frames/13925/first.jpg", "AURORA/data/something/frames/13925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a refill so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000107952", "images": ["AURORA/data/something/frames/25518/first.jpg", "AURORA/data/something/frames/25518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tennis ball and a tennis ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107953", "images": ["AURORA/data/something/frames/9602/first.jpg", "AURORA/data/something/frames/9602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107954", "images": ["AURORA/data/something/frames/125171/first.jpg", "AURORA/data/something/frames/125171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107955", "images": ["AURORA/data/something/frames/164029/first.jpg", "AURORA/data/something/frames/164029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ice cream up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000107956", "images": ["AURORA/data/something/frames/87608/first.jpg", "AURORA/data/something/frames/87608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lid next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000107957", "images": ["AURORA/data/something/frames/69740/first.jpg", "AURORA/data/something/frames/69740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000107958", "images": ["AURORA/data/something/frames/146825/first.jpg", "AURORA/data/something/frames/146825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a lamp into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000107959", "images": ["AURORA/data/something/frames/100955/first.jpg", "AURORA/data/something/frames/100955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste up"}, {"from": "gpt", "value": ""}]} +{"id": "000000107960", "images": ["AURORA/data/something/frames/160887/first.jpg", "AURORA/data/something/frames/160887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purse and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000107961", "images": ["AURORA/data/something/frames/69151/first.jpg", "AURORA/data/something/frames/69151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107962", "images": ["AURORA/data/something/frames/171353/first.jpg", "AURORA/data/something/frames/171353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar of peanut butter in front of bottle aspirin"}, {"from": "gpt", "value": ""}]} +{"id": "000000107963", "images": ["AURORA/data/something/frames/205299/first.jpg", "AURORA/data/something/frames/205299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a hat upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107964", "images": ["AURORA/data/something/frames/149892/first.jpg", "AURORA/data/something/frames/149892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling spoon from behind of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000107965", "images": ["AURORA/data/something/frames/152514/first.jpg", "AURORA/data/something/frames/152514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000107966", "images": ["AURORA/data/something/frames/27828/first.jpg", "AURORA/data/something/frames/27828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000107967", "images": ["AURORA/data/something/frames/109950/first.jpg", "AURORA/data/something/frames/109950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something in front of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000107968", "images": ["AURORA/data/something/frames/165280/first.jpg", "AURORA/data/something/frames/165280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107969", "images": ["AURORA/data/something/frames/38896/first.jpg", "AURORA/data/something/frames/38896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000107970", "images": ["AURORA/data/something/frames/125973/first.jpg", "AURORA/data/something/frames/125973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette tape into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000107971", "images": ["AURORA/data/something/frames/15545/first.jpg", "AURORA/data/something/frames/15545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting sand bag up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107972", "images": ["AURORA/data/something/frames/79760/first.jpg", "AURORA/data/something/frames/79760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying puzzle piece in middle of couch seat cushions"}, {"from": "gpt", "value": ""}]} +{"id": "000000107973", "images": ["AURORA/data/something/frames/119182/first.jpg", "AURORA/data/something/frames/119182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cushion onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000107974", "images": ["AURORA/data/something/frames/129064/first.jpg", "AURORA/data/something/frames/129064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hammer on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000107975", "images": ["AURORA/data/something/frames/118240/first.jpg", "AURORA/data/something/frames/118240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sponge just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000107976", "images": ["AURORA/data/something/frames/16514/first.jpg", "AURORA/data/something/frames/16514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy with a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000107977", "images": ["AURORA/data/something/frames/52261/first.jpg", "AURORA/data/something/frames/52261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cushion with clock on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000107978", "images": ["AURORA/data/something/frames/96092/first.jpg", "AURORA/data/something/frames/96092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stapler from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000107979", "images": ["AURORA/data/something/frames/122474/first.jpg", "AURORA/data/something/frames/122474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding frock"}, {"from": "gpt", "value": ""}]} +{"id": "000000107980", "images": ["AURORA/data/something/frames/195430/first.jpg", "AURORA/data/something/frames/195430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of paper without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107981", "images": ["AURORA/data/something/frames/140866/first.jpg", "AURORA/data/something/frames/140866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling flashlight onto laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000107982", "images": ["AURORA/data/something/frames/101419/first.jpg", "AURORA/data/something/frames/101419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000107983", "images": ["AURORA/data/something/frames/80166/first.jpg", "AURORA/data/something/frames/80166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a mouse from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000107984", "images": ["AURORA/data/something/frames/34430/first.jpg", "AURORA/data/something/frames/34430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pot so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000107985", "images": ["AURORA/data/something/frames/170397/first.jpg", "AURORA/data/something/frames/170397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000107986", "images": ["AURORA/data/something/frames/21630/first.jpg", "AURORA/data/something/frames/21630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening window"}, {"from": "gpt", "value": ""}]} +{"id": "000000107987", "images": ["AURORA/data/something/frames/109892/first.jpg", "AURORA/data/something/frames/109892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle closer to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000107988", "images": ["AURORA/data/something/frames/203487/first.jpg", "AURORA/data/something/frames/203487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107989", "images": ["AURORA/data/something/frames/92780/first.jpg", "AURORA/data/something/frames/92780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107990", "images": ["AURORA/data/something/frames/158296/first.jpg", "AURORA/data/something/frames/158296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000107991", "images": ["AURORA/data/something/frames/38752/first.jpg", "AURORA/data/something/frames/38752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox on the edge of laptop so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000107992", "images": ["AURORA/data/something/frames/32780/first.jpg", "AURORA/data/something/frames/32780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000107993", "images": ["AURORA/data/something/frames/210732/first.jpg", "AURORA/data/something/frames/210732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing blue fabric into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000107994", "images": ["AURORA/data/something/frames/110608/first.jpg", "AURORA/data/something/frames/110608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000107995", "images": ["AURORA/data/something/frames/194341/first.jpg", "AURORA/data/something/frames/194341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000107996", "images": ["AURORA/data/something/frames/154080/first.jpg", "AURORA/data/something/frames/154080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a fishing lure with a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000107997", "images": ["AURORA/data/something/frames/127560/first.jpg", "AURORA/data/something/frames/127560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cellphone with handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000107998", "images": ["AURORA/data/something/frames/4049/first.jpg", "AURORA/data/something/frames/4049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jeep door"}, {"from": "gpt", "value": ""}]} +{"id": "000000107999", "images": ["AURORA/data/something/frames/209537/first.jpg", "AURORA/data/something/frames/209537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108000", "images": ["AURORA/data/something/frames/66261/first.jpg", "AURORA/data/something/frames/66261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and white pebble on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108001", "images": ["AURORA/data/something/frames/80122/first.jpg", "AURORA/data/something/frames/80122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting red bottlecap up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108002", "images": ["AURORA/data/something/frames/195038/first.jpg", "AURORA/data/something/frames/195038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses, scissors and nail polish on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108003", "images": ["AURORA/data/something/frames/29686/first.jpg", "AURORA/data/something/frames/29686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning scotch tape upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108004", "images": ["AURORA/data/something/frames/109837/first.jpg", "AURORA/data/something/frames/109837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000108005", "images": ["AURORA/data/something/frames/211030/first.jpg", "AURORA/data/something/frames/211030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108006", "images": ["AURORA/data/something/frames/155499/first.jpg", "AURORA/data/something/frames/155499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000108007", "images": ["AURORA/data/something/frames/34040/first.jpg", "AURORA/data/something/frames/34040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving canister closer to paper towels"}, {"from": "gpt", "value": ""}]} +{"id": "000000108008", "images": ["AURORA/data/something/frames/173845/first.jpg", "AURORA/data/something/frames/173845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse away from watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108009", "images": ["AURORA/data/something/frames/108135/first.jpg", "AURORA/data/something/frames/108135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of chair without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108010", "images": ["AURORA/data/something/frames/181658/first.jpg", "AURORA/data/something/frames/181658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning air conditioner remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108011", "images": ["AURORA/data/something/frames/57662/first.jpg", "AURORA/data/something/frames/57662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000108012", "images": ["AURORA/data/something/frames/5690/first.jpg", "AURORA/data/something/frames/5690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108013", "images": ["AURORA/data/something/frames/79426/first.jpg", "AURORA/data/something/frames/79426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000108014", "images": ["AURORA/data/something/frames/4283/first.jpg", "AURORA/data/something/frames/4283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chord so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108015", "images": ["AURORA/data/something/frames/141599/first.jpg", "AURORA/data/something/frames/141599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108016", "images": ["AURORA/data/something/frames/216386/first.jpg", "AURORA/data/something/frames/216386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108017", "images": ["AURORA/data/something/frames/76041/first.jpg", "AURORA/data/something/frames/76041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108018", "images": ["AURORA/data/something/frames/191571/first.jpg", "AURORA/data/something/frames/191571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108019", "images": ["AURORA/data/something/frames/216370/first.jpg", "AURORA/data/something/frames/216370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108020", "images": ["AURORA/data/something/frames/149035/first.jpg", "AURORA/data/something/frames/149035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange being deflected from vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108021", "images": ["AURORA/data/something/frames/204335/first.jpg", "AURORA/data/something/frames/204335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108022", "images": ["AURORA/data/something/frames/164129/first.jpg", "AURORA/data/something/frames/164129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a leg of a toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000108023", "images": ["AURORA/data/something/frames/91601/first.jpg", "AURORA/data/something/frames/91601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of slab"}, {"from": "gpt", "value": ""}]} +{"id": "000000108024", "images": ["AURORA/data/something/frames/5347/first.jpg", "AURORA/data/something/frames/5347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108025", "images": ["AURORA/data/something/frames/59796/first.jpg", "AURORA/data/something/frames/59796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108026", "images": ["AURORA/data/something/frames/164683/first.jpg", "AURORA/data/something/frames/164683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108027", "images": ["AURORA/data/something/frames/29540/first.jpg", "AURORA/data/something/frames/29540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108028", "images": ["AURORA/data/something/frames/125787/first.jpg", "AURORA/data/something/frames/125787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone behind a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108029", "images": ["AURORA/data/something/frames/214420/first.jpg", "AURORA/data/something/frames/214420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bag from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108030", "images": ["AURORA/data/something/frames/111521/first.jpg", "AURORA/data/something/frames/111521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening piller"}, {"from": "gpt", "value": ""}]} +{"id": "000000108031", "images": ["AURORA/data/something/frames/166184/first.jpg", "AURORA/data/something/frames/166184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108032", "images": ["AURORA/data/something/frames/36558/first.jpg", "AURORA/data/something/frames/36558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rock from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108033", "images": ["AURORA/data/something/frames/24375/first.jpg", "AURORA/data/something/frames/24375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sponge into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108034", "images": ["AURORA/data/something/frames/66399/first.jpg", "AURORA/data/something/frames/66399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hairband into green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108035", "images": ["AURORA/data/something/frames/26104/first.jpg", "AURORA/data/something/frames/26104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lighter behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108036", "images": ["AURORA/data/something/frames/123641/first.jpg", "AURORA/data/something/frames/123641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000108037", "images": ["AURORA/data/something/frames/130288/first.jpg", "AURORA/data/something/frames/130288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle holder upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108038", "images": ["AURORA/data/something/frames/191799/first.jpg", "AURORA/data/something/frames/191799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing briefcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108039", "images": ["AURORA/data/something/frames/73240/first.jpg", "AURORA/data/something/frames/73240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser closer to usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000108040", "images": ["AURORA/data/something/frames/125027/first.jpg", "AURORA/data/something/frames/125027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000108041", "images": ["AURORA/data/something/frames/214423/first.jpg", "AURORA/data/something/frames/214423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of bracelets holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000108042", "images": ["AURORA/data/something/frames/115639/first.jpg", "AURORA/data/something/frames/115639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet in front of coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000108043", "images": ["AURORA/data/something/frames/130683/first.jpg", "AURORA/data/something/frames/130683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting salt and pepper on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108044", "images": ["AURORA/data/something/frames/178102/first.jpg", "AURORA/data/something/frames/178102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108045", "images": ["AURORA/data/something/frames/64611/first.jpg", "AURORA/data/something/frames/64611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: glass colliding with tube and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108046", "images": ["AURORA/data/something/frames/84008/first.jpg", "AURORA/data/something/frames/84008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108047", "images": ["AURORA/data/something/frames/90925/first.jpg", "AURORA/data/something/frames/90925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red pot holder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108048", "images": ["AURORA/data/something/frames/50433/first.jpg", "AURORA/data/something/frames/50433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bangle colliding with another bangle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108049", "images": ["AURORA/data/something/frames/107327/first.jpg", "AURORA/data/something/frames/107327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108050", "images": ["AURORA/data/something/frames/136195/first.jpg", "AURORA/data/something/frames/136195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108051", "images": ["AURORA/data/something/frames/174437/first.jpg", "AURORA/data/something/frames/174437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108052", "images": ["AURORA/data/something/frames/81368/first.jpg", "AURORA/data/something/frames/81368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking jar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108053", "images": ["AURORA/data/something/frames/151814/first.jpg", "AURORA/data/something/frames/151814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108054", "images": ["AURORA/data/something/frames/141781/first.jpg", "AURORA/data/something/frames/141781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candlestick closer to candlestick"}, {"from": "gpt", "value": ""}]} +{"id": "000000108055", "images": ["AURORA/data/something/frames/165532/first.jpg", "AURORA/data/something/frames/165532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into water"}, {"from": "gpt", "value": ""}]} +{"id": "000000108056", "images": ["AURORA/data/something/frames/62593/first.jpg", "AURORA/data/something/frames/62593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red dairy from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108057", "images": ["AURORA/data/something/frames/54070/first.jpg", "AURORA/data/something/frames/54070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lipbam into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108058", "images": ["AURORA/data/something/frames/76942/first.jpg", "AURORA/data/something/frames/76942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick away from eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000108059", "images": ["AURORA/data/something/frames/101784/first.jpg", "AURORA/data/something/frames/101784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing polish remover, revealing moisturizer behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108060", "images": ["AURORA/data/something/frames/44725/first.jpg", "AURORA/data/something/frames/44725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of liitle red box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108061", "images": ["AURORA/data/something/frames/21829/first.jpg", "AURORA/data/something/frames/21829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108062", "images": ["AURORA/data/something/frames/203352/first.jpg", "AURORA/data/something/frames/203352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000108063", "images": ["AURORA/data/something/frames/58916/first.jpg", "AURORA/data/something/frames/58916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering the tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108064", "images": ["AURORA/data/something/frames/16369/first.jpg", "AURORA/data/something/frames/16369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108065", "images": ["AURORA/data/something/frames/156468/first.jpg", "AURORA/data/something/frames/156468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker pen next to tooth brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000108066", "images": ["AURORA/data/something/frames/37731/first.jpg", "AURORA/data/something/frames/37731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle holder with a dishcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108067", "images": ["AURORA/data/something/frames/135788/first.jpg", "AURORA/data/something/frames/135788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving well and fork closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108068", "images": ["AURORA/data/something/frames/198852/first.jpg", "AURORA/data/something/frames/198852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing comb with bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108069", "images": ["AURORA/data/something/frames/93864/first.jpg", "AURORA/data/something/frames/93864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming clouds"}, {"from": "gpt", "value": ""}]} +{"id": "000000108070", "images": ["AURORA/data/something/frames/142103/first.jpg", "AURORA/data/something/frames/142103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bolt with sky blue colour cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108071", "images": ["AURORA/data/something/frames/16840/first.jpg", "AURORA/data/something/frames/16840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brochure out of plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108072", "images": ["AURORA/data/something/frames/39556/first.jpg", "AURORA/data/something/frames/39556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108073", "images": ["AURORA/data/something/frames/166766/first.jpg", "AURORA/data/something/frames/166766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking green frog doll so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108074", "images": ["AURORA/data/something/frames/208107/first.jpg", "AURORA/data/something/frames/208107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yellow ball out of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108075", "images": ["AURORA/data/something/frames/58361/first.jpg", "AURORA/data/something/frames/58361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108076", "images": ["AURORA/data/something/frames/62648/first.jpg", "AURORA/data/something/frames/62648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon away from stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108077", "images": ["AURORA/data/something/frames/118021/first.jpg", "AURORA/data/something/frames/118021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108078", "images": ["AURORA/data/something/frames/96385/first.jpg", "AURORA/data/something/frames/96385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tub of coconut oil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108079", "images": ["AURORA/data/something/frames/14129/first.jpg", "AURORA/data/something/frames/14129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting powder bottle behind wood box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108080", "images": ["AURORA/data/something/frames/133520/first.jpg", "AURORA/data/something/frames/133520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into electric plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108081", "images": ["AURORA/data/something/frames/184798/first.jpg", "AURORA/data/something/frames/184798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying an onion in rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000108082", "images": ["AURORA/data/something/frames/193768/first.jpg", "AURORA/data/something/frames/193768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108083", "images": ["AURORA/data/something/frames/178486/first.jpg", "AURORA/data/something/frames/178486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108084", "images": ["AURORA/data/something/frames/207802/first.jpg", "AURORA/data/something/frames/207802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108085", "images": ["AURORA/data/something/frames/3227/first.jpg", "AURORA/data/something/frames/3227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108086", "images": ["AURORA/data/something/frames/13607/first.jpg", "AURORA/data/something/frames/13607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting trash bin with dustpan"}, {"from": "gpt", "value": ""}]} +{"id": "000000108087", "images": ["AURORA/data/something/frames/92938/first.jpg", "AURORA/data/something/frames/92938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lamp up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108088", "images": ["AURORA/data/something/frames/97587/first.jpg", "AURORA/data/something/frames/97587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheel of baby carriage"}, {"from": "gpt", "value": ""}]} +{"id": "000000108089", "images": ["AURORA/data/something/frames/152256/first.jpg", "AURORA/data/something/frames/152256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bowl from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108090", "images": ["AURORA/data/something/frames/18272/first.jpg", "AURORA/data/something/frames/18272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dinosaur into plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108091", "images": ["AURORA/data/something/frames/23699/first.jpg", "AURORA/data/something/frames/23699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cupcake onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108092", "images": ["AURORA/data/something/frames/9443/first.jpg", "AURORA/data/something/frames/9443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pint glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108093", "images": ["AURORA/data/something/frames/200743/first.jpg", "AURORA/data/something/frames/200743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108094", "images": ["AURORA/data/something/frames/80845/first.jpg", "AURORA/data/something/frames/80845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108095", "images": ["AURORA/data/something/frames/169572/first.jpg", "AURORA/data/something/frames/169572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108096", "images": ["AURORA/data/something/frames/7909/first.jpg", "AURORA/data/something/frames/7909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching white chalk piece with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108097", "images": ["AURORA/data/something/frames/134419/first.jpg", "AURORA/data/something/frames/134419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108098", "images": ["AURORA/data/something/frames/83261/first.jpg", "AURORA/data/something/frames/83261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108099", "images": ["AURORA/data/something/frames/17174/first.jpg", "AURORA/data/something/frames/17174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass behind bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108100", "images": ["AURORA/data/something/frames/124896/first.jpg", "AURORA/data/something/frames/124896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000108101", "images": ["AURORA/data/something/frames/219647/first.jpg", "AURORA/data/something/frames/219647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108102", "images": ["AURORA/data/something/frames/92437/first.jpg", "AURORA/data/something/frames/92437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a tooth-stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108103", "images": ["AURORA/data/something/frames/87247/first.jpg", "AURORA/data/something/frames/87247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108104", "images": ["AURORA/data/something/frames/56958/first.jpg", "AURORA/data/something/frames/56958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108105", "images": ["AURORA/data/something/frames/125207/first.jpg", "AURORA/data/something/frames/125207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a phone charger to a plug point"}, {"from": "gpt", "value": ""}]} +{"id": "000000108106", "images": ["AURORA/data/something/frames/140766/first.jpg", "AURORA/data/something/frames/140766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108107", "images": ["AURORA/data/something/frames/185634/first.jpg", "AURORA/data/something/frames/185634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108108", "images": ["AURORA/data/something/frames/148192/first.jpg", "AURORA/data/something/frames/148192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil box underneath a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108109", "images": ["AURORA/data/something/frames/65310/first.jpg", "AURORA/data/something/frames/65310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing knife into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108110", "images": ["AURORA/data/something/frames/34688/first.jpg", "AURORA/data/something/frames/34688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108111", "images": ["AURORA/data/something/frames/71786/first.jpg", "AURORA/data/something/frames/71786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000108112", "images": ["AURORA/data/something/frames/44513/first.jpg", "AURORA/data/something/frames/44513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cell phone with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108113", "images": ["AURORA/data/something/frames/206900/first.jpg", "AURORA/data/something/frames/206900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post-it to a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108114", "images": ["AURORA/data/something/frames/3109/first.jpg", "AURORA/data/something/frames/3109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108115", "images": ["AURORA/data/something/frames/21693/first.jpg", "AURORA/data/something/frames/21693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a phone with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108116", "images": ["AURORA/data/something/frames/4270/first.jpg", "AURORA/data/something/frames/4270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering garlic with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108117", "images": ["AURORA/data/something/frames/167385/first.jpg", "AURORA/data/something/frames/167385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108118", "images": ["AURORA/data/something/frames/15705/first.jpg", "AURORA/data/something/frames/15705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting coin up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108119", "images": ["AURORA/data/something/frames/87524/first.jpg", "AURORA/data/something/frames/87524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging flashcard into loptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108120", "images": ["AURORA/data/something/frames/15520/first.jpg", "AURORA/data/something/frames/15520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hair brush and a mirror on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108121", "images": ["AURORA/data/something/frames/125592/first.jpg", "AURORA/data/something/frames/125592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108122", "images": ["AURORA/data/something/frames/120839/first.jpg", "AURORA/data/something/frames/120839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000108123", "images": ["AURORA/data/something/frames/9935/first.jpg", "AURORA/data/something/frames/9935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108124", "images": ["AURORA/data/something/frames/184963/first.jpg", "AURORA/data/something/frames/184963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108125", "images": ["AURORA/data/something/frames/178990/first.jpg", "AURORA/data/something/frames/178990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108126", "images": ["AURORA/data/something/frames/220421/first.jpg", "AURORA/data/something/frames/220421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a penguin so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108127", "images": ["AURORA/data/something/frames/82703/first.jpg", "AURORA/data/something/frames/82703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe with a stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000108128", "images": ["AURORA/data/something/frames/131651/first.jpg", "AURORA/data/something/frames/131651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108129", "images": ["AURORA/data/something/frames/180698/first.jpg", "AURORA/data/something/frames/180698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a key and a battery closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108130", "images": ["AURORA/data/something/frames/133998/first.jpg", "AURORA/data/something/frames/133998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping nuts up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108131", "images": ["AURORA/data/something/frames/80260/first.jpg", "AURORA/data/something/frames/80260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108132", "images": ["AURORA/data/something/frames/107139/first.jpg", "AURORA/data/something/frames/107139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a receipt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108133", "images": ["AURORA/data/something/frames/59648/first.jpg", "AURORA/data/something/frames/59648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jam onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000108134", "images": ["AURORA/data/something/frames/133821/first.jpg", "AURORA/data/something/frames/133821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108135", "images": ["AURORA/data/something/frames/106558/first.jpg", "AURORA/data/something/frames/106558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip bam closer to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108136", "images": ["AURORA/data/something/frames/60961/first.jpg", "AURORA/data/something/frames/60961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cork so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108137", "images": ["AURORA/data/something/frames/93748/first.jpg", "AURORA/data/something/frames/93748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pick with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108138", "images": ["AURORA/data/something/frames/206727/first.jpg", "AURORA/data/something/frames/206727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108139", "images": ["AURORA/data/something/frames/129737/first.jpg", "AURORA/data/something/frames/129737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling colour onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108140", "images": ["AURORA/data/something/frames/181400/first.jpg", "AURORA/data/something/frames/181400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108141", "images": ["AURORA/data/something/frames/108687/first.jpg", "AURORA/data/something/frames/108687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108142", "images": ["AURORA/data/something/frames/29807/first.jpg", "AURORA/data/something/frames/29807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an apple out of a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108143", "images": ["AURORA/data/something/frames/80491/first.jpg", "AURORA/data/something/frames/80491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cat with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108144", "images": ["AURORA/data/something/frames/63879/first.jpg", "AURORA/data/something/frames/63879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip and cigarette lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108145", "images": ["AURORA/data/something/frames/116813/first.jpg", "AURORA/data/something/frames/116813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108146", "images": ["AURORA/data/something/frames/160716/first.jpg", "AURORA/data/something/frames/160716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108147", "images": ["AURORA/data/something/frames/34433/first.jpg", "AURORA/data/something/frames/34433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108148", "images": ["AURORA/data/something/frames/182311/first.jpg", "AURORA/data/something/frames/182311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting onion onto cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108149", "images": ["AURORA/data/something/frames/172608/first.jpg", "AURORA/data/something/frames/172608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108150", "images": ["AURORA/data/something/frames/139178/first.jpg", "AURORA/data/something/frames/139178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting waste paper into dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108151", "images": ["AURORA/data/something/frames/213128/first.jpg", "AURORA/data/something/frames/213128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink blush on from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108152", "images": ["AURORA/data/something/frames/25869/first.jpg", "AURORA/data/something/frames/25869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108153", "images": ["AURORA/data/something/frames/155105/first.jpg", "AURORA/data/something/frames/155105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108154", "images": ["AURORA/data/something/frames/213321/first.jpg", "AURORA/data/something/frames/213321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bracelet out of a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108155", "images": ["AURORA/data/something/frames/211726/first.jpg", "AURORA/data/something/frames/211726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a wipe wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108156", "images": ["AURORA/data/something/frames/99754/first.jpg", "AURORA/data/something/frames/99754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy in front of toy watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108157", "images": ["AURORA/data/something/frames/99490/first.jpg", "AURORA/data/something/frames/99490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a ukulele case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108158", "images": ["AURORA/data/something/frames/97159/first.jpg", "AURORA/data/something/frames/97159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper clip next to medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108159", "images": ["AURORA/data/something/frames/217863/first.jpg", "AURORA/data/something/frames/217863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108160", "images": ["AURORA/data/something/frames/159543/first.jpg", "AURORA/data/something/frames/159543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108161", "images": ["AURORA/data/something/frames/99669/first.jpg", "AURORA/data/something/frames/99669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting newspaper with hair brush on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108162", "images": ["AURORA/data/something/frames/37562/first.jpg", "AURORA/data/something/frames/37562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108163", "images": ["AURORA/data/something/frames/214675/first.jpg", "AURORA/data/something/frames/214675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a light switch down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108164", "images": ["AURORA/data/something/frames/1591/first.jpg", "AURORA/data/something/frames/1591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto saucer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108165", "images": ["AURORA/data/something/frames/207221/first.jpg", "AURORA/data/something/frames/207221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108166", "images": ["AURORA/data/something/frames/17637/first.jpg", "AURORA/data/something/frames/17637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into paper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108167", "images": ["AURORA/data/something/frames/12873/first.jpg", "AURORA/data/something/frames/12873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching washing machine with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108168", "images": ["AURORA/data/something/frames/76226/first.jpg", "AURORA/data/something/frames/76226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108169", "images": ["AURORA/data/something/frames/28953/first.jpg", "AURORA/data/something/frames/28953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108170", "images": ["AURORA/data/something/frames/73670/first.jpg", "AURORA/data/something/frames/73670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering baby"}, {"from": "gpt", "value": ""}]} +{"id": "000000108171", "images": ["AURORA/data/something/frames/64988/first.jpg", "AURORA/data/something/frames/64988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108172", "images": ["AURORA/data/something/frames/54977/first.jpg", "AURORA/data/something/frames/54977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108173", "images": ["AURORA/data/something/frames/40897/first.jpg", "AURORA/data/something/frames/40897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking divider on the bottom that is similar to other divider on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108174", "images": ["AURORA/data/something/frames/39559/first.jpg", "AURORA/data/something/frames/39559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a fork so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108175", "images": ["AURORA/data/something/frames/11606/first.jpg", "AURORA/data/something/frames/11606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy car across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108176", "images": ["AURORA/data/something/frames/148819/first.jpg", "AURORA/data/something/frames/148819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108177", "images": ["AURORA/data/something/frames/88484/first.jpg", "AURORA/data/something/frames/88484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hacksaw blade from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108178", "images": ["AURORA/data/something/frames/47769/first.jpg", "AURORA/data/something/frames/47769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bucket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108179", "images": ["AURORA/data/something/frames/140039/first.jpg", "AURORA/data/something/frames/140039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toilet paper away from inhaler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108180", "images": ["AURORA/data/something/frames/114265/first.jpg", "AURORA/data/something/frames/114265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with toy on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108181", "images": ["AURORA/data/something/frames/142623/first.jpg", "AURORA/data/something/frames/142623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cranberry off of the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000108182", "images": ["AURORA/data/something/frames/189410/first.jpg", "AURORA/data/something/frames/189410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sandpaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108183", "images": ["AURORA/data/something/frames/158967/first.jpg", "AURORA/data/something/frames/158967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lighter so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108184", "images": ["AURORA/data/something/frames/138147/first.jpg", "AURORA/data/something/frames/138147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000108185", "images": ["AURORA/data/something/frames/64795/first.jpg", "AURORA/data/something/frames/64795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pen holder upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108186", "images": ["AURORA/data/something/frames/125793/first.jpg", "AURORA/data/something/frames/125793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000108187", "images": ["AURORA/data/something/frames/62977/first.jpg", "AURORA/data/something/frames/62977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: milk jug being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108188", "images": ["AURORA/data/something/frames/87043/first.jpg", "AURORA/data/something/frames/87043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming me"}, {"from": "gpt", "value": ""}]} +{"id": "000000108189", "images": ["AURORA/data/something/frames/13372/first.jpg", "AURORA/data/something/frames/13372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching doorknob with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108190", "images": ["AURORA/data/something/frames/61091/first.jpg", "AURORA/data/something/frames/61091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping dhal up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108191", "images": ["AURORA/data/something/frames/107782/first.jpg", "AURORA/data/something/frames/107782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108192", "images": ["AURORA/data/something/frames/165840/first.jpg", "AURORA/data/something/frames/165840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rectangular box and ramekin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108193", "images": ["AURORA/data/something/frames/99316/first.jpg", "AURORA/data/something/frames/99316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning toy badge upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108194", "images": ["AURORA/data/something/frames/183969/first.jpg", "AURORA/data/something/frames/183969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dish with apple on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108195", "images": ["AURORA/data/something/frames/213404/first.jpg", "AURORA/data/something/frames/213404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108196", "images": ["AURORA/data/something/frames/131706/first.jpg", "AURORA/data/something/frames/131706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding childs shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108197", "images": ["AURORA/data/something/frames/19204/first.jpg", "AURORA/data/something/frames/19204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108198", "images": ["AURORA/data/something/frames/50646/first.jpg", "AURORA/data/something/frames/50646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving medicines down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108199", "images": ["AURORA/data/something/frames/11569/first.jpg", "AURORA/data/something/frames/11569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108200", "images": ["AURORA/data/something/frames/22129/first.jpg", "AURORA/data/something/frames/22129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching gate with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108201", "images": ["AURORA/data/something/frames/165593/first.jpg", "AURORA/data/something/frames/165593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric cord into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108202", "images": ["AURORA/data/something/frames/216210/first.jpg", "AURORA/data/something/frames/216210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108203", "images": ["AURORA/data/something/frames/118579/first.jpg", "AURORA/data/something/frames/118579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading kerchief onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000108204", "images": ["AURORA/data/something/frames/100908/first.jpg", "AURORA/data/something/frames/100908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108205", "images": ["AURORA/data/something/frames/208016/first.jpg", "AURORA/data/something/frames/208016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a magazine just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108206", "images": ["AURORA/data/something/frames/94529/first.jpg", "AURORA/data/something/frames/94529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spanner on the top similar to many spanners on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108207", "images": ["AURORA/data/something/frames/35652/first.jpg", "AURORA/data/something/frames/35652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108208", "images": ["AURORA/data/something/frames/181119/first.jpg", "AURORA/data/something/frames/181119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cell phone in front of a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000108209", "images": ["AURORA/data/something/frames/14805/first.jpg", "AURORA/data/something/frames/14805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108210", "images": ["AURORA/data/something/frames/211145/first.jpg", "AURORA/data/something/frames/211145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108211", "images": ["AURORA/data/something/frames/147873/first.jpg", "AURORA/data/something/frames/147873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bracelete into jeweler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108212", "images": ["AURORA/data/something/frames/97820/first.jpg", "AURORA/data/something/frames/97820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108213", "images": ["AURORA/data/something/frames/154629/first.jpg", "AURORA/data/something/frames/154629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering something"}, {"from": "gpt", "value": ""}]} +{"id": "000000108214", "images": ["AURORA/data/something/frames/207023/first.jpg", "AURORA/data/something/frames/207023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the window"}, {"from": "gpt", "value": ""}]} +{"id": "000000108215", "images": ["AURORA/data/something/frames/141132/first.jpg", "AURORA/data/something/frames/141132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lotion cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108216", "images": ["AURORA/data/something/frames/29362/first.jpg", "AURORA/data/something/frames/29362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into silver glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108217", "images": ["AURORA/data/something/frames/107908/first.jpg", "AURORA/data/something/frames/107908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon out of a coffee cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108218", "images": ["AURORA/data/something/frames/40910/first.jpg", "AURORA/data/something/frames/40910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108219", "images": ["AURORA/data/something/frames/55632/first.jpg", "AURORA/data/something/frames/55632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108220", "images": ["AURORA/data/something/frames/190506/first.jpg", "AURORA/data/something/frames/190506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108221", "images": ["AURORA/data/something/frames/64307/first.jpg", "AURORA/data/something/frames/64307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108222", "images": ["AURORA/data/something/frames/203882/first.jpg", "AURORA/data/something/frames/203882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108223", "images": ["AURORA/data/something/frames/149647/first.jpg", "AURORA/data/something/frames/149647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a washcloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108224", "images": ["AURORA/data/something/frames/38345/first.jpg", "AURORA/data/something/frames/38345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108225", "images": ["AURORA/data/something/frames/167308/first.jpg", "AURORA/data/something/frames/167308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a news paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108226", "images": ["AURORA/data/something/frames/122975/first.jpg", "AURORA/data/something/frames/122975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108227", "images": ["AURORA/data/something/frames/131583/first.jpg", "AURORA/data/something/frames/131583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dvds onto dvds"}, {"from": "gpt", "value": ""}]} +{"id": "000000108228", "images": ["AURORA/data/something/frames/26279/first.jpg", "AURORA/data/something/frames/26279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108229", "images": ["AURORA/data/something/frames/155092/first.jpg", "AURORA/data/something/frames/155092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop behind canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000108230", "images": ["AURORA/data/something/frames/35052/first.jpg", "AURORA/data/something/frames/35052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108231", "images": ["AURORA/data/something/frames/19350/first.jpg", "AURORA/data/something/frames/19350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plastic bag so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108232", "images": ["AURORA/data/something/frames/6482/first.jpg", "AURORA/data/something/frames/6482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108233", "images": ["AURORA/data/something/frames/103204/first.jpg", "AURORA/data/something/frames/103204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling tea next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108234", "images": ["AURORA/data/something/frames/215693/first.jpg", "AURORA/data/something/frames/215693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108235", "images": ["AURORA/data/something/frames/34235/first.jpg", "AURORA/data/something/frames/34235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108236", "images": ["AURORA/data/something/frames/31539/first.jpg", "AURORA/data/something/frames/31539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a ball colliding with a ball and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108237", "images": ["AURORA/data/something/frames/50282/first.jpg", "AURORA/data/something/frames/50282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into can"}, {"from": "gpt", "value": ""}]} +{"id": "000000108238", "images": ["AURORA/data/something/frames/26647/first.jpg", "AURORA/data/something/frames/26647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mirror and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108239", "images": ["AURORA/data/something/frames/215561/first.jpg", "AURORA/data/something/frames/215561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108240", "images": ["AURORA/data/something/frames/40013/first.jpg", "AURORA/data/something/frames/40013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving triangle and sun glasses away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108241", "images": ["AURORA/data/something/frames/167711/first.jpg", "AURORA/data/something/frames/167711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108242", "images": ["AURORA/data/something/frames/202558/first.jpg", "AURORA/data/something/frames/202558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108243", "images": ["AURORA/data/something/frames/156891/first.jpg", "AURORA/data/something/frames/156891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108244", "images": ["AURORA/data/something/frames/134845/first.jpg", "AURORA/data/something/frames/134845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an envelope behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108245", "images": ["AURORA/data/something/frames/90080/first.jpg", "AURORA/data/something/frames/90080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a knife so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108246", "images": ["AURORA/data/something/frames/134378/first.jpg", "AURORA/data/something/frames/134378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108247", "images": ["AURORA/data/something/frames/15840/first.jpg", "AURORA/data/something/frames/15840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pasta until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108248", "images": ["AURORA/data/something/frames/43859/first.jpg", "AURORA/data/something/frames/43859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shot glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108249", "images": ["AURORA/data/something/frames/32356/first.jpg", "AURORA/data/something/frames/32356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of packaging handkerchiefs so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000108250", "images": ["AURORA/data/something/frames/49839/first.jpg", "AURORA/data/something/frames/49839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108251", "images": ["AURORA/data/something/frames/189830/first.jpg", "AURORA/data/something/frames/189830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking betel nut up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108252", "images": ["AURORA/data/something/frames/207518/first.jpg", "AURORA/data/something/frames/207518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and usb cable away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108253", "images": ["AURORA/data/something/frames/125551/first.jpg", "AURORA/data/something/frames/125551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching paperclip to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108254", "images": ["AURORA/data/something/frames/183917/first.jpg", "AURORA/data/something/frames/183917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning fabric softener upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108255", "images": ["AURORA/data/something/frames/32345/first.jpg", "AURORA/data/something/frames/32345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108256", "images": ["AURORA/data/something/frames/171954/first.jpg", "AURORA/data/something/frames/171954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108257", "images": ["AURORA/data/something/frames/140503/first.jpg", "AURORA/data/something/frames/140503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting straw up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108258", "images": ["AURORA/data/something/frames/144156/first.jpg", "AURORA/data/something/frames/144156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108259", "images": ["AURORA/data/something/frames/126597/first.jpg", "AURORA/data/something/frames/126597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108260", "images": ["AURORA/data/something/frames/175187/first.jpg", "AURORA/data/something/frames/175187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000108261", "images": ["AURORA/data/something/frames/31907/first.jpg", "AURORA/data/something/frames/31907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing calculator into pen bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108262", "images": ["AURORA/data/something/frames/171538/first.jpg", "AURORA/data/something/frames/171538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting braclet onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108263", "images": ["AURORA/data/something/frames/1073/first.jpg", "AURORA/data/something/frames/1073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108264", "images": ["AURORA/data/something/frames/118066/first.jpg", "AURORA/data/something/frames/118066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toy onto the bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000108265", "images": ["AURORA/data/something/frames/76450/first.jpg", "AURORA/data/something/frames/76450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tangerine from group of tangerines"}, {"from": "gpt", "value": ""}]} +{"id": "000000108266", "images": ["AURORA/data/something/frames/148143/first.jpg", "AURORA/data/something/frames/148143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding receipt paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108267", "images": ["AURORA/data/something/frames/62897/first.jpg", "AURORA/data/something/frames/62897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a computer mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108268", "images": ["AURORA/data/something/frames/100338/first.jpg", "AURORA/data/something/frames/100338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game piece onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108269", "images": ["AURORA/data/something/frames/173735/first.jpg", "AURORA/data/something/frames/173735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white book marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108270", "images": ["AURORA/data/something/frames/160390/first.jpg", "AURORA/data/something/frames/160390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108271", "images": ["AURORA/data/something/frames/210405/first.jpg", "AURORA/data/something/frames/210405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108272", "images": ["AURORA/data/something/frames/130744/first.jpg", "AURORA/data/something/frames/130744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000108273", "images": ["AURORA/data/something/frames/74720/first.jpg", "AURORA/data/something/frames/74720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108274", "images": ["AURORA/data/something/frames/10230/first.jpg", "AURORA/data/something/frames/10230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108275", "images": ["AURORA/data/something/frames/185570/first.jpg", "AURORA/data/something/frames/185570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle top onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108276", "images": ["AURORA/data/something/frames/186661/first.jpg", "AURORA/data/something/frames/186661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of comb without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108277", "images": ["AURORA/data/something/frames/56215/first.jpg", "AURORA/data/something/frames/56215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one tape dispenser onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108278", "images": ["AURORA/data/something/frames/135525/first.jpg", "AURORA/data/something/frames/135525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sugar jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108279", "images": ["AURORA/data/something/frames/164155/first.jpg", "AURORA/data/something/frames/164155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tailoring tap into plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108280", "images": ["AURORA/data/something/frames/153105/first.jpg", "AURORA/data/something/frames/153105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting telephone with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108281", "images": ["AURORA/data/something/frames/196227/first.jpg", "AURORA/data/something/frames/196227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108282", "images": ["AURORA/data/something/frames/173897/first.jpg", "AURORA/data/something/frames/173897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108283", "images": ["AURORA/data/something/frames/30680/first.jpg", "AURORA/data/something/frames/30680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108284", "images": ["AURORA/data/something/frames/207331/first.jpg", "AURORA/data/something/frames/207331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108285", "images": ["AURORA/data/something/frames/198269/first.jpg", "AURORA/data/something/frames/198269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plate next to plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108286", "images": ["AURORA/data/something/frames/149320/first.jpg", "AURORA/data/something/frames/149320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crochet needle into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108287", "images": ["AURORA/data/something/frames/90851/first.jpg", "AURORA/data/something/frames/90851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler closer to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000108288", "images": ["AURORA/data/something/frames/214007/first.jpg", "AURORA/data/something/frames/214007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of sock so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108289", "images": ["AURORA/data/something/frames/54805/first.jpg", "AURORA/data/something/frames/54805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108290", "images": ["AURORA/data/something/frames/13992/first.jpg", "AURORA/data/something/frames/13992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping calculator into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108291", "images": ["AURORA/data/something/frames/5143/first.jpg", "AURORA/data/something/frames/5143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with a piece of cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108292", "images": ["AURORA/data/something/frames/17629/first.jpg", "AURORA/data/something/frames/17629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108293", "images": ["AURORA/data/something/frames/21300/first.jpg", "AURORA/data/something/frames/21300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning hole puncher upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108294", "images": ["AURORA/data/something/frames/44586/first.jpg", "AURORA/data/something/frames/44586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108295", "images": ["AURORA/data/something/frames/10288/first.jpg", "AURORA/data/something/frames/10288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a flexo lamp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108296", "images": ["AURORA/data/something/frames/147119/first.jpg", "AURORA/data/something/frames/147119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108297", "images": ["AURORA/data/something/frames/129113/first.jpg", "AURORA/data/something/frames/129113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108298", "images": ["AURORA/data/something/frames/209706/first.jpg", "AURORA/data/something/frames/209706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tumbler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108299", "images": ["AURORA/data/something/frames/70116/first.jpg", "AURORA/data/something/frames/70116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a glove behind a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108300", "images": ["AURORA/data/something/frames/120673/first.jpg", "AURORA/data/something/frames/120673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 things"}, {"from": "gpt", "value": ""}]} +{"id": "000000108301", "images": ["AURORA/data/something/frames/192054/first.jpg", "AURORA/data/something/frames/192054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108302", "images": ["AURORA/data/something/frames/173596/first.jpg", "AURORA/data/something/frames/173596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108303", "images": ["AURORA/data/something/frames/109644/first.jpg", "AURORA/data/something/frames/109644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of plastic screwcap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108304", "images": ["AURORA/data/something/frames/190134/first.jpg", "AURORA/data/something/frames/190134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pillow onto sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000108305", "images": ["AURORA/data/something/frames/1143/first.jpg", "AURORA/data/something/frames/1143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000108306", "images": ["AURORA/data/something/frames/143109/first.jpg", "AURORA/data/something/frames/143109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108307", "images": ["AURORA/data/something/frames/156613/first.jpg", "AURORA/data/something/frames/156613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000108308", "images": ["AURORA/data/something/frames/27419/first.jpg", "AURORA/data/something/frames/27419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting thing in front of drawers"}, {"from": "gpt", "value": ""}]} +{"id": "000000108309", "images": ["AURORA/data/something/frames/119171/first.jpg", "AURORA/data/something/frames/119171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rack down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108310", "images": ["AURORA/data/something/frames/98538/first.jpg", "AURORA/data/something/frames/98538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wallet upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108311", "images": ["AURORA/data/something/frames/32914/first.jpg", "AURORA/data/something/frames/32914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering white chalk with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108312", "images": ["AURORA/data/something/frames/218471/first.jpg", "AURORA/data/something/frames/218471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting black brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108313", "images": ["AURORA/data/something/frames/131108/first.jpg", "AURORA/data/something/frames/131108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000108314", "images": ["AURORA/data/something/frames/22618/first.jpg", "AURORA/data/something/frames/22618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticky note to monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108315", "images": ["AURORA/data/something/frames/146962/first.jpg", "AURORA/data/something/frames/146962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering football"}, {"from": "gpt", "value": ""}]} +{"id": "000000108316", "images": ["AURORA/data/something/frames/135995/first.jpg", "AURORA/data/something/frames/135995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108317", "images": ["AURORA/data/something/frames/115389/first.jpg", "AURORA/data/something/frames/115389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wireless mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108318", "images": ["AURORA/data/something/frames/80659/first.jpg", "AURORA/data/something/frames/80659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000108319", "images": ["AURORA/data/something/frames/108589/first.jpg", "AURORA/data/something/frames/108589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shampoo bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108320", "images": ["AURORA/data/something/frames/77398/first.jpg", "AURORA/data/something/frames/77398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bulb syringe being deflected from dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000108321", "images": ["AURORA/data/something/frames/4770/first.jpg", "AURORA/data/something/frames/4770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108322", "images": ["AURORA/data/something/frames/191579/first.jpg", "AURORA/data/something/frames/191579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a matchstick from behind of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108323", "images": ["AURORA/data/something/frames/18648/first.jpg", "AURORA/data/something/frames/18648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the dollar out of purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000108324", "images": ["AURORA/data/something/frames/37659/first.jpg", "AURORA/data/something/frames/37659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bowl so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108325", "images": ["AURORA/data/something/frames/39846/first.jpg", "AURORA/data/something/frames/39846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sketch pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108326", "images": ["AURORA/data/something/frames/169464/first.jpg", "AURORA/data/something/frames/169464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 letters onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108327", "images": ["AURORA/data/something/frames/200932/first.jpg", "AURORA/data/something/frames/200932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108328", "images": ["AURORA/data/something/frames/137392/first.jpg", "AURORA/data/something/frames/137392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a rack shelf so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108329", "images": ["AURORA/data/something/frames/52628/first.jpg", "AURORA/data/something/frames/52628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote control down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108330", "images": ["AURORA/data/something/frames/118743/first.jpg", "AURORA/data/something/frames/118743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108331", "images": ["AURORA/data/something/frames/138027/first.jpg", "AURORA/data/something/frames/138027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ink off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108332", "images": ["AURORA/data/something/frames/118245/first.jpg", "AURORA/data/something/frames/118245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cotton swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108333", "images": ["AURORA/data/something/frames/50123/first.jpg", "AURORA/data/something/frames/50123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108334", "images": ["AURORA/data/something/frames/48590/first.jpg", "AURORA/data/something/frames/48590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber string so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108335", "images": ["AURORA/data/something/frames/180886/first.jpg", "AURORA/data/something/frames/180886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking block out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108336", "images": ["AURORA/data/something/frames/93301/first.jpg", "AURORA/data/something/frames/93301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt away from pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108337", "images": ["AURORA/data/something/frames/116978/first.jpg", "AURORA/data/something/frames/116978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming atm machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000108338", "images": ["AURORA/data/something/frames/93579/first.jpg", "AURORA/data/something/frames/93579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pages of note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108339", "images": ["AURORA/data/something/frames/5790/first.jpg", "AURORA/data/something/frames/5790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108340", "images": ["AURORA/data/something/frames/140727/first.jpg", "AURORA/data/something/frames/140727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108341", "images": ["AURORA/data/something/frames/93247/first.jpg", "AURORA/data/something/frames/93247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting the bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108342", "images": ["AURORA/data/something/frames/121095/first.jpg", "AURORA/data/something/frames/121095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spiral pad notebook with pencil on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108343", "images": ["AURORA/data/something/frames/212095/first.jpg", "AURORA/data/something/frames/212095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding tote bags"}, {"from": "gpt", "value": ""}]} +{"id": "000000108344", "images": ["AURORA/data/something/frames/156918/first.jpg", "AURORA/data/something/frames/156918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling squeezable strawberry jam from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108345", "images": ["AURORA/data/something/frames/190435/first.jpg", "AURORA/data/something/frames/190435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108346", "images": ["AURORA/data/something/frames/65470/first.jpg", "AURORA/data/something/frames/65470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108347", "images": ["AURORA/data/something/frames/80418/first.jpg", "AURORA/data/something/frames/80418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108348", "images": ["AURORA/data/something/frames/85952/first.jpg", "AURORA/data/something/frames/85952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papers into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108349", "images": ["AURORA/data/something/frames/128222/first.jpg", "AURORA/data/something/frames/128222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108350", "images": ["AURORA/data/something/frames/146559/first.jpg", "AURORA/data/something/frames/146559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading black pepper onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108351", "images": ["AURORA/data/something/frames/28957/first.jpg", "AURORA/data/something/frames/28957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bond paper out of mini cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108352", "images": ["AURORA/data/something/frames/69274/first.jpg", "AURORA/data/something/frames/69274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a hair brush out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108353", "images": ["AURORA/data/something/frames/132942/first.jpg", "AURORA/data/something/frames/132942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pens with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000108354", "images": ["AURORA/data/something/frames/49112/first.jpg", "AURORA/data/something/frames/49112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108355", "images": ["AURORA/data/something/frames/134120/first.jpg", "AURORA/data/something/frames/134120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker into pen holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000108356", "images": ["AURORA/data/something/frames/105591/first.jpg", "AURORA/data/something/frames/105591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108357", "images": ["AURORA/data/something/frames/39260/first.jpg", "AURORA/data/something/frames/39260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000108358", "images": ["AURORA/data/something/frames/119795/first.jpg", "AURORA/data/something/frames/119795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108359", "images": ["AURORA/data/something/frames/188868/first.jpg", "AURORA/data/something/frames/188868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy gun so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108360", "images": ["AURORA/data/something/frames/209768/first.jpg", "AURORA/data/something/frames/209768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug connector into double plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108361", "images": ["AURORA/data/something/frames/60260/first.jpg", "AURORA/data/something/frames/60260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108362", "images": ["AURORA/data/something/frames/214070/first.jpg", "AURORA/data/something/frames/214070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass ball and glass ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108363", "images": ["AURORA/data/something/frames/162613/first.jpg", "AURORA/data/something/frames/162613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hotbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000108364", "images": ["AURORA/data/something/frames/183206/first.jpg", "AURORA/data/something/frames/183206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108365", "images": ["AURORA/data/something/frames/69128/first.jpg", "AURORA/data/something/frames/69128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108366", "images": ["AURORA/data/something/frames/12121/first.jpg", "AURORA/data/something/frames/12121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108367", "images": ["AURORA/data/something/frames/8609/first.jpg", "AURORA/data/something/frames/8609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a plastic bottle so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108368", "images": ["AURORA/data/something/frames/127611/first.jpg", "AURORA/data/something/frames/127611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a stickey note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108369", "images": ["AURORA/data/something/frames/190978/first.jpg", "AURORA/data/something/frames/190978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108370", "images": ["AURORA/data/something/frames/1108/first.jpg", "AURORA/data/something/frames/1108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch next to tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108371", "images": ["AURORA/data/something/frames/195604/first.jpg", "AURORA/data/something/frames/195604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108372", "images": ["AURORA/data/something/frames/58221/first.jpg", "AURORA/data/something/frames/58221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108373", "images": ["AURORA/data/something/frames/173554/first.jpg", "AURORA/data/something/frames/173554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108374", "images": ["AURORA/data/something/frames/86574/first.jpg", "AURORA/data/something/frames/86574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing iphone adapter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108375", "images": ["AURORA/data/something/frames/203418/first.jpg", "AURORA/data/something/frames/203418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a jbl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108376", "images": ["AURORA/data/something/frames/8453/first.jpg", "AURORA/data/something/frames/8453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail varnish bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108377", "images": ["AURORA/data/something/frames/86177/first.jpg", "AURORA/data/something/frames/86177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy and toy puppy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108378", "images": ["AURORA/data/something/frames/185349/first.jpg", "AURORA/data/something/frames/185349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of mail into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108379", "images": ["AURORA/data/something/frames/65325/first.jpg", "AURORA/data/something/frames/65325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108380", "images": ["AURORA/data/something/frames/158981/first.jpg", "AURORA/data/something/frames/158981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sugar pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108381", "images": ["AURORA/data/something/frames/23199/first.jpg", "AURORA/data/something/frames/23199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000108382", "images": ["AURORA/data/something/frames/16210/first.jpg", "AURORA/data/something/frames/16210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108383", "images": ["AURORA/data/something/frames/96343/first.jpg", "AURORA/data/something/frames/96343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 red spoons onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108384", "images": ["AURORA/data/something/frames/109513/first.jpg", "AURORA/data/something/frames/109513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering dvd disk"}, {"from": "gpt", "value": ""}]} +{"id": "000000108385", "images": ["AURORA/data/something/frames/42623/first.jpg", "AURORA/data/something/frames/42623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108386", "images": ["AURORA/data/something/frames/218883/first.jpg", "AURORA/data/something/frames/218883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending raw turmeric until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108387", "images": ["AURORA/data/something/frames/150037/first.jpg", "AURORA/data/something/frames/150037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000108388", "images": ["AURORA/data/something/frames/47610/first.jpg", "AURORA/data/something/frames/47610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering sunglasses with a scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000108389", "images": ["AURORA/data/something/frames/62408/first.jpg", "AURORA/data/something/frames/62408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108390", "images": ["AURORA/data/something/frames/25345/first.jpg", "AURORA/data/something/frames/25345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee onto an overturned cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108391", "images": ["AURORA/data/something/frames/82095/first.jpg", "AURORA/data/something/frames/82095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a notebook in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108392", "images": ["AURORA/data/something/frames/16096/first.jpg", "AURORA/data/something/frames/16096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108393", "images": ["AURORA/data/something/frames/210291/first.jpg", "AURORA/data/something/frames/210291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108394", "images": ["AURORA/data/something/frames/143203/first.jpg", "AURORA/data/something/frames/143203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconunt down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108395", "images": ["AURORA/data/something/frames/85082/first.jpg", "AURORA/data/something/frames/85082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sewing reel onto plastic plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108396", "images": ["AURORA/data/something/frames/32948/first.jpg", "AURORA/data/something/frames/32948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick and scissor closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108397", "images": ["AURORA/data/something/frames/53502/first.jpg", "AURORA/data/something/frames/53502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a perfume so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108398", "images": ["AURORA/data/something/frames/47844/first.jpg", "AURORA/data/something/frames/47844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108399", "images": ["AURORA/data/something/frames/93819/first.jpg", "AURORA/data/something/frames/93819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying worms in wheat bran"}, {"from": "gpt", "value": ""}]} +{"id": "000000108400", "images": ["AURORA/data/something/frames/192125/first.jpg", "AURORA/data/something/frames/192125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, mug and ball on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108401", "images": ["AURORA/data/something/frames/51946/first.jpg", "AURORA/data/something/frames/51946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pistachio off of clementine"}, {"from": "gpt", "value": ""}]} +{"id": "000000108402", "images": ["AURORA/data/something/frames/10213/first.jpg", "AURORA/data/something/frames/10213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000108403", "images": ["AURORA/data/something/frames/218945/first.jpg", "AURORA/data/something/frames/218945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing make up from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108404", "images": ["AURORA/data/something/frames/121856/first.jpg", "AURORA/data/something/frames/121856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000108405", "images": ["AURORA/data/something/frames/160811/first.jpg", "AURORA/data/something/frames/160811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108406", "images": ["AURORA/data/something/frames/146213/first.jpg", "AURORA/data/something/frames/146213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lidded cup underneath container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108407", "images": ["AURORA/data/something/frames/140304/first.jpg", "AURORA/data/something/frames/140304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108408", "images": ["AURORA/data/something/frames/6490/first.jpg", "AURORA/data/something/frames/6490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of plastic cover so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108409", "images": ["AURORA/data/something/frames/41093/first.jpg", "AURORA/data/something/frames/41093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar and jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108410", "images": ["AURORA/data/something/frames/202709/first.jpg", "AURORA/data/something/frames/202709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wooden bowl in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108411", "images": ["AURORA/data/something/frames/103278/first.jpg", "AURORA/data/something/frames/103278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil next to spiral pad notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000108412", "images": ["AURORA/data/something/frames/33722/first.jpg", "AURORA/data/something/frames/33722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hat and shoe so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108413", "images": ["AURORA/data/something/frames/4088/first.jpg", "AURORA/data/something/frames/4088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching colorful, wooden toy chicken car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108414", "images": ["AURORA/data/something/frames/198607/first.jpg", "AURORA/data/something/frames/198607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108415", "images": ["AURORA/data/something/frames/106253/first.jpg", "AURORA/data/something/frames/106253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108416", "images": ["AURORA/data/something/frames/142733/first.jpg", "AURORA/data/something/frames/142733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108417", "images": ["AURORA/data/something/frames/3676/first.jpg", "AURORA/data/something/frames/3676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) box of left side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108418", "images": ["AURORA/data/something/frames/195646/first.jpg", "AURORA/data/something/frames/195646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy car in front of plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108419", "images": ["AURORA/data/something/frames/116845/first.jpg", "AURORA/data/something/frames/116845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tube on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108420", "images": ["AURORA/data/something/frames/104829/first.jpg", "AURORA/data/something/frames/104829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000108421", "images": ["AURORA/data/something/frames/106896/first.jpg", "AURORA/data/something/frames/106896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pedestal fan"}, {"from": "gpt", "value": ""}]} +{"id": "000000108422", "images": ["AURORA/data/something/frames/182388/first.jpg", "AURORA/data/something/frames/182388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108423", "images": ["AURORA/data/something/frames/136509/first.jpg", "AURORA/data/something/frames/136509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring pure water into into another cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108424", "images": ["AURORA/data/something/frames/32117/first.jpg", "AURORA/data/something/frames/32117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108425", "images": ["AURORA/data/something/frames/75825/first.jpg", "AURORA/data/something/frames/75825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping watch onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108426", "images": ["AURORA/data/something/frames/139346/first.jpg", "AURORA/data/something/frames/139346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000108427", "images": ["AURORA/data/something/frames/145073/first.jpg", "AURORA/data/something/frames/145073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a napkin onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108428", "images": ["AURORA/data/something/frames/43387/first.jpg", "AURORA/data/something/frames/43387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic screwcap behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108429", "images": ["AURORA/data/something/frames/169346/first.jpg", "AURORA/data/something/frames/169346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108430", "images": ["AURORA/data/something/frames/217321/first.jpg", "AURORA/data/something/frames/217321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking the soap so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108431", "images": ["AURORA/data/something/frames/64181/first.jpg", "AURORA/data/something/frames/64181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting saucer underneath teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108432", "images": ["AURORA/data/something/frames/63078/first.jpg", "AURORA/data/something/frames/63078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108433", "images": ["AURORA/data/something/frames/16756/first.jpg", "AURORA/data/something/frames/16756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108434", "images": ["AURORA/data/something/frames/98624/first.jpg", "AURORA/data/something/frames/98624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from behind of paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108435", "images": ["AURORA/data/something/frames/26625/first.jpg", "AURORA/data/something/frames/26625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108436", "images": ["AURORA/data/something/frames/124696/first.jpg", "AURORA/data/something/frames/124696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box closer to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108437", "images": ["AURORA/data/something/frames/20799/first.jpg", "AURORA/data/something/frames/20799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing legos from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108438", "images": ["AURORA/data/something/frames/151870/first.jpg", "AURORA/data/something/frames/151870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108439", "images": ["AURORA/data/something/frames/52755/first.jpg", "AURORA/data/something/frames/52755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000108440", "images": ["AURORA/data/something/frames/170363/first.jpg", "AURORA/data/something/frames/170363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a hat up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108441", "images": ["AURORA/data/something/frames/171435/first.jpg", "AURORA/data/something/frames/171435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking taking one of the monkeys from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108442", "images": ["AURORA/data/something/frames/89177/first.jpg", "AURORA/data/something/frames/89177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108443", "images": ["AURORA/data/something/frames/75123/first.jpg", "AURORA/data/something/frames/75123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding baby blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108444", "images": ["AURORA/data/something/frames/201325/first.jpg", "AURORA/data/something/frames/201325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108445", "images": ["AURORA/data/something/frames/68815/first.jpg", "AURORA/data/something/frames/68815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying candle in dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108446", "images": ["AURORA/data/something/frames/120309/first.jpg", "AURORA/data/something/frames/120309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108447", "images": ["AURORA/data/something/frames/209322/first.jpg", "AURORA/data/something/frames/209322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108448", "images": ["AURORA/data/something/frames/49066/first.jpg", "AURORA/data/something/frames/49066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a stuffed toy upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108449", "images": ["AURORA/data/something/frames/19173/first.jpg", "AURORA/data/something/frames/19173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000108450", "images": ["AURORA/data/something/frames/157988/first.jpg", "AURORA/data/something/frames/157988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink toothbrush case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108451", "images": ["AURORA/data/something/frames/184393/first.jpg", "AURORA/data/something/frames/184393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108452", "images": ["AURORA/data/something/frames/166206/first.jpg", "AURORA/data/something/frames/166206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108453", "images": ["AURORA/data/something/frames/178255/first.jpg", "AURORA/data/something/frames/178255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from block"}, {"from": "gpt", "value": ""}]} +{"id": "000000108454", "images": ["AURORA/data/something/frames/83026/first.jpg", "AURORA/data/something/frames/83026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sheets into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108455", "images": ["AURORA/data/something/frames/59986/first.jpg", "AURORA/data/something/frames/59986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote control from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108456", "images": ["AURORA/data/something/frames/157769/first.jpg", "AURORA/data/something/frames/157769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108457", "images": ["AURORA/data/something/frames/106014/first.jpg", "AURORA/data/something/frames/106014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting pocket up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108458", "images": ["AURORA/data/something/frames/6912/first.jpg", "AURORA/data/something/frames/6912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mirror with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108459", "images": ["AURORA/data/something/frames/86526/first.jpg", "AURORA/data/something/frames/86526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing board, revealing basket behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108460", "images": ["AURORA/data/something/frames/97759/first.jpg", "AURORA/data/something/frames/97759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pencil sharpners onto blue spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108461", "images": ["AURORA/data/something/frames/166814/first.jpg", "AURORA/data/something/frames/166814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white king and black king closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108462", "images": ["AURORA/data/something/frames/45656/first.jpg", "AURORA/data/something/frames/45656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108463", "images": ["AURORA/data/something/frames/157430/first.jpg", "AURORA/data/something/frames/157430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108464", "images": ["AURORA/data/something/frames/146834/first.jpg", "AURORA/data/something/frames/146834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108465", "images": ["AURORA/data/something/frames/182226/first.jpg", "AURORA/data/something/frames/182226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting silverware"}, {"from": "gpt", "value": ""}]} +{"id": "000000108466", "images": ["AURORA/data/something/frames/9352/first.jpg", "AURORA/data/something/frames/9352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading lotion onto a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108467", "images": ["AURORA/data/something/frames/120474/first.jpg", "AURORA/data/something/frames/120474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108468", "images": ["AURORA/data/something/frames/139430/first.jpg", "AURORA/data/something/frames/139430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108469", "images": ["AURORA/data/something/frames/110832/first.jpg", "AURORA/data/something/frames/110832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching dog collar to door handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108470", "images": ["AURORA/data/something/frames/139064/first.jpg", "AURORA/data/something/frames/139064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering wood piece with a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108471", "images": ["AURORA/data/something/frames/23367/first.jpg", "AURORA/data/something/frames/23367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108472", "images": ["AURORA/data/something/frames/219287/first.jpg", "AURORA/data/something/frames/219287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108473", "images": ["AURORA/data/something/frames/148960/first.jpg", "AURORA/data/something/frames/148960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pencil holder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108474", "images": ["AURORA/data/something/frames/65830/first.jpg", "AURORA/data/something/frames/65830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair tie, ruler and cutlery on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108475", "images": ["AURORA/data/something/frames/113592/first.jpg", "AURORA/data/something/frames/113592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108476", "images": ["AURORA/data/something/frames/66977/first.jpg", "AURORA/data/something/frames/66977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108477", "images": ["AURORA/data/something/frames/107115/first.jpg", "AURORA/data/something/frames/107115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lid onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108478", "images": ["AURORA/data/something/frames/76152/first.jpg", "AURORA/data/something/frames/76152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stuffed animal from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108479", "images": ["AURORA/data/something/frames/126874/first.jpg", "AURORA/data/something/frames/126874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing basket, revealing cellphone behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108480", "images": ["AURORA/data/something/frames/101623/first.jpg", "AURORA/data/something/frames/101623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy tractor across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108481", "images": ["AURORA/data/something/frames/121704/first.jpg", "AURORA/data/something/frames/121704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108482", "images": ["AURORA/data/something/frames/116310/first.jpg", "AURORA/data/something/frames/116310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108483", "images": ["AURORA/data/something/frames/163368/first.jpg", "AURORA/data/something/frames/163368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108484", "images": ["AURORA/data/something/frames/129811/first.jpg", "AURORA/data/something/frames/129811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ring from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108485", "images": ["AURORA/data/something/frames/24505/first.jpg", "AURORA/data/something/frames/24505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108486", "images": ["AURORA/data/something/frames/107521/first.jpg", "AURORA/data/something/frames/107521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108487", "images": ["AURORA/data/something/frames/189987/first.jpg", "AURORA/data/something/frames/189987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting punching machine, spectacle and cigarette lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108488", "images": ["AURORA/data/something/frames/184324/first.jpg", "AURORA/data/something/frames/184324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bear into chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108489", "images": ["AURORA/data/something/frames/91995/first.jpg", "AURORA/data/something/frames/91995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108490", "images": ["AURORA/data/something/frames/190833/first.jpg", "AURORA/data/something/frames/190833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plate out of pile"}, {"from": "gpt", "value": ""}]} +{"id": "000000108491", "images": ["AURORA/data/something/frames/52669/first.jpg", "AURORA/data/something/frames/52669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into plastic lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000108492", "images": ["AURORA/data/something/frames/199199/first.jpg", "AURORA/data/something/frames/199199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) an ear of a soft toy cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000108493", "images": ["AURORA/data/something/frames/10368/first.jpg", "AURORA/data/something/frames/10368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108494", "images": ["AURORA/data/something/frames/131257/first.jpg", "AURORA/data/something/frames/131257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108495", "images": ["AURORA/data/something/frames/182488/first.jpg", "AURORA/data/something/frames/182488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108496", "images": ["AURORA/data/something/frames/77942/first.jpg", "AURORA/data/something/frames/77942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108497", "images": ["AURORA/data/something/frames/186728/first.jpg", "AURORA/data/something/frames/186728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108498", "images": ["AURORA/data/something/frames/52541/first.jpg", "AURORA/data/something/frames/52541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair brush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108499", "images": ["AURORA/data/something/frames/182589/first.jpg", "AURORA/data/something/frames/182589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pencil box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108500", "images": ["AURORA/data/something/frames/134989/first.jpg", "AURORA/data/something/frames/134989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108501", "images": ["AURORA/data/something/frames/171828/first.jpg", "AURORA/data/something/frames/171828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bismuth with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108502", "images": ["AURORA/data/something/frames/63668/first.jpg", "AURORA/data/something/frames/63668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting handkerchief into front storage kneeroom"}, {"from": "gpt", "value": ""}]} +{"id": "000000108503", "images": ["AURORA/data/something/frames/151660/first.jpg", "AURORA/data/something/frames/151660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 rings"}, {"from": "gpt", "value": ""}]} +{"id": "000000108504", "images": ["AURORA/data/something/frames/153448/first.jpg", "AURORA/data/something/frames/153448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000108505", "images": ["AURORA/data/something/frames/88459/first.jpg", "AURORA/data/something/frames/88459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble, badge and toy white car on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108506", "images": ["AURORA/data/something/frames/68170/first.jpg", "AURORA/data/something/frames/68170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bucket with knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000108507", "images": ["AURORA/data/something/frames/3275/first.jpg", "AURORA/data/something/frames/3275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000108508", "images": ["AURORA/data/something/frames/25161/first.jpg", "AURORA/data/something/frames/25161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fruits into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108509", "images": ["AURORA/data/something/frames/15037/first.jpg", "AURORA/data/something/frames/15037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108510", "images": ["AURORA/data/something/frames/150935/first.jpg", "AURORA/data/something/frames/150935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108511", "images": ["AURORA/data/something/frames/92970/first.jpg", "AURORA/data/something/frames/92970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wallet with a coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108512", "images": ["AURORA/data/something/frames/28673/first.jpg", "AURORA/data/something/frames/28673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108513", "images": ["AURORA/data/something/frames/98959/first.jpg", "AURORA/data/something/frames/98959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108514", "images": ["AURORA/data/something/frames/208574/first.jpg", "AURORA/data/something/frames/208574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108515", "images": ["AURORA/data/something/frames/58865/first.jpg", "AURORA/data/something/frames/58865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling ipod from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108516", "images": ["AURORA/data/something/frames/37011/first.jpg", "AURORA/data/something/frames/37011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a smartphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108517", "images": ["AURORA/data/something/frames/159097/first.jpg", "AURORA/data/something/frames/159097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a plastic packaging on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108518", "images": ["AURORA/data/something/frames/208829/first.jpg", "AURORA/data/something/frames/208829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto worktop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108519", "images": ["AURORA/data/something/frames/20089/first.jpg", "AURORA/data/something/frames/20089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108520", "images": ["AURORA/data/something/frames/116066/first.jpg", "AURORA/data/something/frames/116066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a minion toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108521", "images": ["AURORA/data/something/frames/7629/first.jpg", "AURORA/data/something/frames/7629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cleaning wipes on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108522", "images": ["AURORA/data/something/frames/43206/first.jpg", "AURORA/data/something/frames/43206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a travel magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000108523", "images": ["AURORA/data/something/frames/150872/first.jpg", "AURORA/data/something/frames/150872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108524", "images": ["AURORA/data/something/frames/179908/first.jpg", "AURORA/data/something/frames/179908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting juice bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000108525", "images": ["AURORA/data/something/frames/52921/first.jpg", "AURORA/data/something/frames/52921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000108526", "images": ["AURORA/data/something/frames/40317/first.jpg", "AURORA/data/something/frames/40317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bucket with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108527", "images": ["AURORA/data/something/frames/135269/first.jpg", "AURORA/data/something/frames/135269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pasta out of plastic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108528", "images": ["AURORA/data/something/frames/114565/first.jpg", "AURORA/data/something/frames/114565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping glass bottle with liquid over, so liquid falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108529", "images": ["AURORA/data/something/frames/164250/first.jpg", "AURORA/data/something/frames/164250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108530", "images": ["AURORA/data/something/frames/153325/first.jpg", "AURORA/data/something/frames/153325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wallet behind a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108531", "images": ["AURORA/data/something/frames/73066/first.jpg", "AURORA/data/something/frames/73066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cable into a power bank but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108532", "images": ["AURORA/data/something/frames/87379/first.jpg", "AURORA/data/something/frames/87379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000108533", "images": ["AURORA/data/something/frames/40872/first.jpg", "AURORA/data/something/frames/40872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black pouch bag from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108534", "images": ["AURORA/data/something/frames/47805/first.jpg", "AURORA/data/something/frames/47805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108535", "images": ["AURORA/data/something/frames/36388/first.jpg", "AURORA/data/something/frames/36388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with letter on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108536", "images": ["AURORA/data/something/frames/196898/first.jpg", "AURORA/data/something/frames/196898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spectacles up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108537", "images": ["AURORA/data/something/frames/152638/first.jpg", "AURORA/data/something/frames/152638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red hair band and white toy car away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108538", "images": ["AURORA/data/something/frames/123285/first.jpg", "AURORA/data/something/frames/123285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108539", "images": ["AURORA/data/something/frames/60601/first.jpg", "AURORA/data/something/frames/60601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108540", "images": ["AURORA/data/something/frames/203627/first.jpg", "AURORA/data/something/frames/203627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda and box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108541", "images": ["AURORA/data/something/frames/78199/first.jpg", "AURORA/data/something/frames/78199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000108542", "images": ["AURORA/data/something/frames/195177/first.jpg", "AURORA/data/something/frames/195177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing battery from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108543", "images": ["AURORA/data/something/frames/87244/first.jpg", "AURORA/data/something/frames/87244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker and paper clip holder away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108544", "images": ["AURORA/data/something/frames/80557/first.jpg", "AURORA/data/something/frames/80557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108545", "images": ["AURORA/data/something/frames/207110/first.jpg", "AURORA/data/something/frames/207110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000108546", "images": ["AURORA/data/something/frames/85937/first.jpg", "AURORA/data/something/frames/85937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blushes in their makeup boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000108547", "images": ["AURORA/data/something/frames/40806/first.jpg", "AURORA/data/something/frames/40806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming adaptor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108548", "images": ["AURORA/data/something/frames/80824/first.jpg", "AURORA/data/something/frames/80824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plate upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108549", "images": ["AURORA/data/something/frames/118843/first.jpg", "AURORA/data/something/frames/118843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108550", "images": ["AURORA/data/something/frames/185213/first.jpg", "AURORA/data/something/frames/185213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading sauce onto roti"}, {"from": "gpt", "value": ""}]} +{"id": "000000108551", "images": ["AURORA/data/something/frames/57991/first.jpg", "AURORA/data/something/frames/57991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108552", "images": ["AURORA/data/something/frames/176810/first.jpg", "AURORA/data/something/frames/176810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108553", "images": ["AURORA/data/something/frames/157977/first.jpg", "AURORA/data/something/frames/157977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white board clip away from red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108554", "images": ["AURORA/data/something/frames/92003/first.jpg", "AURORA/data/something/frames/92003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glas and glas away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108555", "images": ["AURORA/data/something/frames/108541/first.jpg", "AURORA/data/something/frames/108541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cape to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108556", "images": ["AURORA/data/something/frames/166449/first.jpg", "AURORA/data/something/frames/166449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108557", "images": ["AURORA/data/something/frames/61946/first.jpg", "AURORA/data/something/frames/61946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000108558", "images": ["AURORA/data/something/frames/51951/first.jpg", "AURORA/data/something/frames/51951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching grill with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108559", "images": ["AURORA/data/something/frames/185560/first.jpg", "AURORA/data/something/frames/185560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108560", "images": ["AURORA/data/something/frames/170009/first.jpg", "AURORA/data/something/frames/170009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108561", "images": ["AURORA/data/something/frames/102140/first.jpg", "AURORA/data/something/frames/102140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108562", "images": ["AURORA/data/something/frames/98147/first.jpg", "AURORA/data/something/frames/98147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen away from a battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000108563", "images": ["AURORA/data/something/frames/157914/first.jpg", "AURORA/data/something/frames/157914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying plastic spoon in salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108564", "images": ["AURORA/data/something/frames/204297/first.jpg", "AURORA/data/something/frames/204297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a spoon to a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108565", "images": ["AURORA/data/something/frames/76590/first.jpg", "AURORA/data/something/frames/76590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pink water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108566", "images": ["AURORA/data/something/frames/15685/first.jpg", "AURORA/data/something/frames/15685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye kajal closer to pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000108567", "images": ["AURORA/data/something/frames/214573/first.jpg", "AURORA/data/something/frames/214573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108568", "images": ["AURORA/data/something/frames/173544/first.jpg", "AURORA/data/something/frames/173544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108569", "images": ["AURORA/data/something/frames/208792/first.jpg", "AURORA/data/something/frames/208792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000108570", "images": ["AURORA/data/something/frames/218594/first.jpg", "AURORA/data/something/frames/218594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pumpkin cookie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108571", "images": ["AURORA/data/something/frames/99929/first.jpg", "AURORA/data/something/frames/99929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking waterbottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108572", "images": ["AURORA/data/something/frames/172077/first.jpg", "AURORA/data/something/frames/172077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box behind trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000108573", "images": ["AURORA/data/something/frames/160784/first.jpg", "AURORA/data/something/frames/160784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000108574", "images": ["AURORA/data/something/frames/40758/first.jpg", "AURORA/data/something/frames/40758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108575", "images": ["AURORA/data/something/frames/211109/first.jpg", "AURORA/data/something/frames/211109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108576", "images": ["AURORA/data/something/frames/140946/first.jpg", "AURORA/data/something/frames/140946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning an espadrille upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108577", "images": ["AURORA/data/something/frames/29922/first.jpg", "AURORA/data/something/frames/29922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108578", "images": ["AURORA/data/something/frames/184373/first.jpg", "AURORA/data/something/frames/184373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming water tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108579", "images": ["AURORA/data/something/frames/131392/first.jpg", "AURORA/data/something/frames/131392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming brown bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108580", "images": ["AURORA/data/something/frames/208367/first.jpg", "AURORA/data/something/frames/208367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108581", "images": ["AURORA/data/something/frames/66213/first.jpg", "AURORA/data/something/frames/66213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paperclip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108582", "images": ["AURORA/data/something/frames/216525/first.jpg", "AURORA/data/something/frames/216525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108583", "images": ["AURORA/data/something/frames/86136/first.jpg", "AURORA/data/something/frames/86136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000108584", "images": ["AURORA/data/something/frames/158341/first.jpg", "AURORA/data/something/frames/158341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle of water from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108585", "images": ["AURORA/data/something/frames/159873/first.jpg", "AURORA/data/something/frames/159873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking battery so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108586", "images": ["AURORA/data/something/frames/48978/first.jpg", "AURORA/data/something/frames/48978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming induction cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000108587", "images": ["AURORA/data/something/frames/159309/first.jpg", "AURORA/data/something/frames/159309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108588", "images": ["AURORA/data/something/frames/61007/first.jpg", "AURORA/data/something/frames/61007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108589", "images": ["AURORA/data/something/frames/8561/first.jpg", "AURORA/data/something/frames/8561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing helmet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108590", "images": ["AURORA/data/something/frames/195644/first.jpg", "AURORA/data/something/frames/195644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108591", "images": ["AURORA/data/something/frames/48045/first.jpg", "AURORA/data/something/frames/48045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108592", "images": ["AURORA/data/something/frames/191905/first.jpg", "AURORA/data/something/frames/191905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into dough"}, {"from": "gpt", "value": ""}]} +{"id": "000000108593", "images": ["AURORA/data/something/frames/15634/first.jpg", "AURORA/data/something/frames/15634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108594", "images": ["AURORA/data/something/frames/108250/first.jpg", "AURORA/data/something/frames/108250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking picture so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108595", "images": ["AURORA/data/something/frames/135871/first.jpg", "AURORA/data/something/frames/135871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a tablet with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108596", "images": ["AURORA/data/something/frames/10514/first.jpg", "AURORA/data/something/frames/10514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sun glass from car seat"}, {"from": "gpt", "value": ""}]} +{"id": "000000108597", "images": ["AURORA/data/something/frames/175148/first.jpg", "AURORA/data/something/frames/175148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a doorknob of a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000108598", "images": ["AURORA/data/something/frames/148274/first.jpg", "AURORA/data/something/frames/148274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108599", "images": ["AURORA/data/something/frames/188343/first.jpg", "AURORA/data/something/frames/188343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling dirty clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108600", "images": ["AURORA/data/something/frames/54216/first.jpg", "AURORA/data/something/frames/54216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pen holder with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108601", "images": ["AURORA/data/something/frames/135409/first.jpg", "AURORA/data/something/frames/135409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108602", "images": ["AURORA/data/something/frames/133032/first.jpg", "AURORA/data/something/frames/133032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108603", "images": ["AURORA/data/something/frames/37393/first.jpg", "AURORA/data/something/frames/37393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lever of wine key"}, {"from": "gpt", "value": ""}]} +{"id": "000000108604", "images": ["AURORA/data/something/frames/3775/first.jpg", "AURORA/data/something/frames/3775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108605", "images": ["AURORA/data/something/frames/152407/first.jpg", "AURORA/data/something/frames/152407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cap and box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108606", "images": ["AURORA/data/something/frames/7232/first.jpg", "AURORA/data/something/frames/7232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108607", "images": ["AURORA/data/something/frames/188097/first.jpg", "AURORA/data/something/frames/188097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering dedorant with tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108608", "images": ["AURORA/data/something/frames/101083/first.jpg", "AURORA/data/something/frames/101083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108609", "images": ["AURORA/data/something/frames/64543/first.jpg", "AURORA/data/something/frames/64543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book closer to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108610", "images": ["AURORA/data/something/frames/141287/first.jpg", "AURORA/data/something/frames/141287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108611", "images": ["AURORA/data/something/frames/172379/first.jpg", "AURORA/data/something/frames/172379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip bam away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108612", "images": ["AURORA/data/something/frames/140845/first.jpg", "AURORA/data/something/frames/140845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming indoor plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108613", "images": ["AURORA/data/something/frames/51125/first.jpg", "AURORA/data/something/frames/51125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108614", "images": ["AURORA/data/something/frames/67849/first.jpg", "AURORA/data/something/frames/67849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108615", "images": ["AURORA/data/something/frames/153291/first.jpg", "AURORA/data/something/frames/153291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container lid from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108616", "images": ["AURORA/data/something/frames/123168/first.jpg", "AURORA/data/something/frames/123168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from ring with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108617", "images": ["AURORA/data/something/frames/40445/first.jpg", "AURORA/data/something/frames/40445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a perfume bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108618", "images": ["AURORA/data/something/frames/71971/first.jpg", "AURORA/data/something/frames/71971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a hairbrush with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108619", "images": ["AURORA/data/something/frames/144277/first.jpg", "AURORA/data/something/frames/144277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pencil without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108620", "images": ["AURORA/data/something/frames/58925/first.jpg", "AURORA/data/something/frames/58925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108621", "images": ["AURORA/data/something/frames/26080/first.jpg", "AURORA/data/something/frames/26080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108622", "images": ["AURORA/data/something/frames/184409/first.jpg", "AURORA/data/something/frames/184409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: car colliding with car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108623", "images": ["AURORA/data/something/frames/17491/first.jpg", "AURORA/data/something/frames/17491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cellphone cord into outlet strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000108624", "images": ["AURORA/data/something/frames/214465/first.jpg", "AURORA/data/something/frames/214465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting slime into tuperware"}, {"from": "gpt", "value": ""}]} +{"id": "000000108625", "images": ["AURORA/data/something/frames/73785/first.jpg", "AURORA/data/something/frames/73785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on the edge of counter so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108626", "images": ["AURORA/data/something/frames/151780/first.jpg", "AURORA/data/something/frames/151780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wooden piece onto leaf of a plant which cannot support it so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108627", "images": ["AURORA/data/something/frames/123895/first.jpg", "AURORA/data/something/frames/123895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from wall light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108628", "images": ["AURORA/data/something/frames/84718/first.jpg", "AURORA/data/something/frames/84718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108629", "images": ["AURORA/data/something/frames/97818/first.jpg", "AURORA/data/something/frames/97818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering plastic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108630", "images": ["AURORA/data/something/frames/48465/first.jpg", "AURORA/data/something/frames/48465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a compact disk with a remote on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108631", "images": ["AURORA/data/something/frames/188693/first.jpg", "AURORA/data/something/frames/188693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108632", "images": ["AURORA/data/something/frames/138150/first.jpg", "AURORA/data/something/frames/138150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108633", "images": ["AURORA/data/something/frames/200654/first.jpg", "AURORA/data/something/frames/200654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a phone behind a toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000108634", "images": ["AURORA/data/something/frames/52682/first.jpg", "AURORA/data/something/frames/52682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphone into earphone jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108635", "images": ["AURORA/data/something/frames/119450/first.jpg", "AURORA/data/something/frames/119450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108636", "images": ["AURORA/data/something/frames/65937/first.jpg", "AURORA/data/something/frames/65937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108637", "images": ["AURORA/data/something/frames/206241/first.jpg", "AURORA/data/something/frames/206241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cable into portable game device but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108638", "images": ["AURORA/data/something/frames/121646/first.jpg", "AURORA/data/something/frames/121646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic container onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108639", "images": ["AURORA/data/something/frames/49034/first.jpg", "AURORA/data/something/frames/49034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108640", "images": ["AURORA/data/something/frames/102863/first.jpg", "AURORA/data/something/frames/102863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching tape to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108641", "images": ["AURORA/data/something/frames/81053/first.jpg", "AURORA/data/something/frames/81053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse closer to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000108642", "images": ["AURORA/data/something/frames/217458/first.jpg", "AURORA/data/something/frames/217458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108643", "images": ["AURORA/data/something/frames/182704/first.jpg", "AURORA/data/something/frames/182704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000108644", "images": ["AURORA/data/something/frames/115924/first.jpg", "AURORA/data/something/frames/115924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108645", "images": ["AURORA/data/something/frames/172015/first.jpg", "AURORA/data/something/frames/172015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring gravy into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108646", "images": ["AURORA/data/something/frames/38158/first.jpg", "AURORA/data/something/frames/38158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling diper out of diper pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108647", "images": ["AURORA/data/something/frames/200020/first.jpg", "AURORA/data/something/frames/200020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing ropes into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108648", "images": ["AURORA/data/something/frames/183363/first.jpg", "AURORA/data/something/frames/183363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tissue until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108649", "images": ["AURORA/data/something/frames/210220/first.jpg", "AURORA/data/something/frames/210220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000108650", "images": ["AURORA/data/something/frames/50664/first.jpg", "AURORA/data/something/frames/50664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping popcorn bucket over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108651", "images": ["AURORA/data/something/frames/58550/first.jpg", "AURORA/data/something/frames/58550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and snap off blade away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108652", "images": ["AURORA/data/something/frames/78326/first.jpg", "AURORA/data/something/frames/78326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a balloon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108653", "images": ["AURORA/data/something/frames/208749/first.jpg", "AURORA/data/something/frames/208749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lever of faucet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108654", "images": ["AURORA/data/something/frames/5871/first.jpg", "AURORA/data/something/frames/5871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000108655", "images": ["AURORA/data/something/frames/43923/first.jpg", "AURORA/data/something/frames/43923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108656", "images": ["AURORA/data/something/frames/176323/first.jpg", "AURORA/data/something/frames/176323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an audio cable into headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000108657", "images": ["AURORA/data/something/frames/69489/first.jpg", "AURORA/data/something/frames/69489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching brush to vacuum hose"}, {"from": "gpt", "value": ""}]} +{"id": "000000108658", "images": ["AURORA/data/something/frames/37495/first.jpg", "AURORA/data/something/frames/37495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108659", "images": ["AURORA/data/something/frames/116421/first.jpg", "AURORA/data/something/frames/116421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108660", "images": ["AURORA/data/something/frames/92362/first.jpg", "AURORA/data/something/frames/92362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wood onto paper so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108661", "images": ["AURORA/data/something/frames/147466/first.jpg", "AURORA/data/something/frames/147466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000108662", "images": ["AURORA/data/something/frames/179064/first.jpg", "AURORA/data/something/frames/179064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker into a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108663", "images": ["AURORA/data/something/frames/41130/first.jpg", "AURORA/data/something/frames/41130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stuffed rabbit with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108664", "images": ["AURORA/data/something/frames/103242/first.jpg", "AURORA/data/something/frames/103242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper ticket into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108665", "images": ["AURORA/data/something/frames/171245/first.jpg", "AURORA/data/something/frames/171245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000108666", "images": ["AURORA/data/something/frames/204515/first.jpg", "AURORA/data/something/frames/204515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting putting a figure of monkey to other monkey figures on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108667", "images": ["AURORA/data/something/frames/215766/first.jpg", "AURORA/data/something/frames/215766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tv table over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108668", "images": ["AURORA/data/something/frames/176005/first.jpg", "AURORA/data/something/frames/176005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108669", "images": ["AURORA/data/something/frames/150752/first.jpg", "AURORA/data/something/frames/150752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108670", "images": ["AURORA/data/something/frames/175664/first.jpg", "AURORA/data/something/frames/175664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a currency note"}, {"from": "gpt", "value": ""}]} +{"id": "000000108671", "images": ["AURORA/data/something/frames/216301/first.jpg", "AURORA/data/something/frames/216301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108672", "images": ["AURORA/data/something/frames/155568/first.jpg", "AURORA/data/something/frames/155568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cheese onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000108673", "images": ["AURORA/data/something/frames/202101/first.jpg", "AURORA/data/something/frames/202101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting drinking bottle behind plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108674", "images": ["AURORA/data/something/frames/83189/first.jpg", "AURORA/data/something/frames/83189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soda off of a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108675", "images": ["AURORA/data/something/frames/215220/first.jpg", "AURORA/data/something/frames/215220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding folding"}, {"from": "gpt", "value": ""}]} +{"id": "000000108676", "images": ["AURORA/data/something/frames/134534/first.jpg", "AURORA/data/something/frames/134534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pamphlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108677", "images": ["AURORA/data/something/frames/54664/first.jpg", "AURORA/data/something/frames/54664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108678", "images": ["AURORA/data/something/frames/7568/first.jpg", "AURORA/data/something/frames/7568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to bero"}, {"from": "gpt", "value": ""}]} +{"id": "000000108679", "images": ["AURORA/data/something/frames/130272/first.jpg", "AURORA/data/something/frames/130272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108680", "images": ["AURORA/data/something/frames/100157/first.jpg", "AURORA/data/something/frames/100157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108681", "images": ["AURORA/data/something/frames/37069/first.jpg", "AURORA/data/something/frames/37069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108682", "images": ["AURORA/data/something/frames/186085/first.jpg", "AURORA/data/something/frames/186085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pin so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108683", "images": ["AURORA/data/something/frames/207801/first.jpg", "AURORA/data/something/frames/207801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 staplers onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108684", "images": ["AURORA/data/something/frames/153165/first.jpg", "AURORA/data/something/frames/153165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108685", "images": ["AURORA/data/something/frames/42974/first.jpg", "AURORA/data/something/frames/42974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper-board just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108686", "images": ["AURORA/data/something/frames/126981/first.jpg", "AURORA/data/something/frames/126981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching earphones to mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000108687", "images": ["AURORA/data/something/frames/47711/first.jpg", "AURORA/data/something/frames/47711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108688", "images": ["AURORA/data/something/frames/46003/first.jpg", "AURORA/data/something/frames/46003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plastic jar with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108689", "images": ["AURORA/data/something/frames/173725/first.jpg", "AURORA/data/something/frames/173725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108690", "images": ["AURORA/data/something/frames/106827/first.jpg", "AURORA/data/something/frames/106827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108691", "images": ["AURORA/data/something/frames/204224/first.jpg", "AURORA/data/something/frames/204224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108692", "images": ["AURORA/data/something/frames/192777/first.jpg", "AURORA/data/something/frames/192777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into red bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108693", "images": ["AURORA/data/something/frames/6741/first.jpg", "AURORA/data/something/frames/6741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting salad dressing upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108694", "images": ["AURORA/data/something/frames/89893/first.jpg", "AURORA/data/something/frames/89893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108695", "images": ["AURORA/data/something/frames/33507/first.jpg", "AURORA/data/something/frames/33507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking phone so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108696", "images": ["AURORA/data/something/frames/214451/first.jpg", "AURORA/data/something/frames/214451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) corner of notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000108697", "images": ["AURORA/data/something/frames/57344/first.jpg", "AURORA/data/something/frames/57344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind gas stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000108698", "images": ["AURORA/data/something/frames/19021/first.jpg", "AURORA/data/something/frames/19021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000108699", "images": ["AURORA/data/something/frames/216098/first.jpg", "AURORA/data/something/frames/216098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring popcorn into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108700", "images": ["AURORA/data/something/frames/206705/first.jpg", "AURORA/data/something/frames/206705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108701", "images": ["AURORA/data/something/frames/118589/first.jpg", "AURORA/data/something/frames/118589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108702", "images": ["AURORA/data/something/frames/36787/first.jpg", "AURORA/data/something/frames/36787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108703", "images": ["AURORA/data/something/frames/92656/first.jpg", "AURORA/data/something/frames/92656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering notepad with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108704", "images": ["AURORA/data/something/frames/26842/first.jpg", "AURORA/data/something/frames/26842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108705", "images": ["AURORA/data/something/frames/138613/first.jpg", "AURORA/data/something/frames/138613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108706", "images": ["AURORA/data/something/frames/201591/first.jpg", "AURORA/data/something/frames/201591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bag with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108707", "images": ["AURORA/data/something/frames/44772/first.jpg", "AURORA/data/something/frames/44772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108708", "images": ["AURORA/data/something/frames/107594/first.jpg", "AURORA/data/something/frames/107594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening black plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108709", "images": ["AURORA/data/something/frames/177364/first.jpg", "AURORA/data/something/frames/177364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108710", "images": ["AURORA/data/something/frames/158990/first.jpg", "AURORA/data/something/frames/158990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toys out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108711", "images": ["AURORA/data/something/frames/29483/first.jpg", "AURORA/data/something/frames/29483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108712", "images": ["AURORA/data/something/frames/192250/first.jpg", "AURORA/data/something/frames/192250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing soap behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108713", "images": ["AURORA/data/something/frames/202407/first.jpg", "AURORA/data/something/frames/202407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108714", "images": ["AURORA/data/something/frames/12618/first.jpg", "AURORA/data/something/frames/12618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cd stack, revealing tennis ball behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108715", "images": ["AURORA/data/something/frames/43190/first.jpg", "AURORA/data/something/frames/43190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet off of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108716", "images": ["AURORA/data/something/frames/69918/first.jpg", "AURORA/data/something/frames/69918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108717", "images": ["AURORA/data/something/frames/101034/first.jpg", "AURORA/data/something/frames/101034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white board clip with white chalk"}, {"from": "gpt", "value": ""}]} +{"id": "000000108718", "images": ["AURORA/data/something/frames/174884/first.jpg", "AURORA/data/something/frames/174884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108719", "images": ["AURORA/data/something/frames/56185/first.jpg", "AURORA/data/something/frames/56185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into a plastic"}, {"from": "gpt", "value": ""}]} +{"id": "000000108720", "images": ["AURORA/data/something/frames/206230/first.jpg", "AURORA/data/something/frames/206230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108721", "images": ["AURORA/data/something/frames/141860/first.jpg", "AURORA/data/something/frames/141860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothe into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108722", "images": ["AURORA/data/something/frames/189243/first.jpg", "AURORA/data/something/frames/189243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky note to a cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108723", "images": ["AURORA/data/something/frames/14030/first.jpg", "AURORA/data/something/frames/14030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108724", "images": ["AURORA/data/something/frames/165254/first.jpg", "AURORA/data/something/frames/165254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108725", "images": ["AURORA/data/something/frames/134716/first.jpg", "AURORA/data/something/frames/134716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duct tape closer to vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000108726", "images": ["AURORA/data/something/frames/159474/first.jpg", "AURORA/data/something/frames/159474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: paint bottle colliding with paint bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108727", "images": ["AURORA/data/something/frames/43291/first.jpg", "AURORA/data/something/frames/43291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000108728", "images": ["AURORA/data/something/frames/195353/first.jpg", "AURORA/data/something/frames/195353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick onto a ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108729", "images": ["AURORA/data/something/frames/24293/first.jpg", "AURORA/data/something/frames/24293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting butterfly hairclip with fly swatter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108730", "images": ["AURORA/data/something/frames/88723/first.jpg", "AURORA/data/something/frames/88723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bag in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108731", "images": ["AURORA/data/something/frames/164497/first.jpg", "AURORA/data/something/frames/164497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000108732", "images": ["AURORA/data/something/frames/143761/first.jpg", "AURORA/data/something/frames/143761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108733", "images": ["AURORA/data/something/frames/94667/first.jpg", "AURORA/data/something/frames/94667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108734", "images": ["AURORA/data/something/frames/96574/first.jpg", "AURORA/data/something/frames/96574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a car out of a parking lot"}, {"from": "gpt", "value": ""}]} +{"id": "000000108735", "images": ["AURORA/data/something/frames/6036/first.jpg", "AURORA/data/something/frames/6036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into surge protector"}, {"from": "gpt", "value": ""}]} +{"id": "000000108736", "images": ["AURORA/data/something/frames/133163/first.jpg", "AURORA/data/something/frames/133163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jewellry out of a jewellry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108737", "images": ["AURORA/data/something/frames/165153/first.jpg", "AURORA/data/something/frames/165153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power adapter into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108738", "images": ["AURORA/data/something/frames/44689/first.jpg", "AURORA/data/something/frames/44689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000108739", "images": ["AURORA/data/something/frames/155316/first.jpg", "AURORA/data/something/frames/155316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug and marker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108740", "images": ["AURORA/data/something/frames/113477/first.jpg", "AURORA/data/something/frames/113477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind control"}, {"from": "gpt", "value": ""}]} +{"id": "000000108741", "images": ["AURORA/data/something/frames/113070/first.jpg", "AURORA/data/something/frames/113070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mask with jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108742", "images": ["AURORA/data/something/frames/125957/first.jpg", "AURORA/data/something/frames/125957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffe onto a glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108743", "images": ["AURORA/data/something/frames/78802/first.jpg", "AURORA/data/something/frames/78802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring creamer into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108744", "images": ["AURORA/data/something/frames/88356/first.jpg", "AURORA/data/something/frames/88356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass next to the book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108745", "images": ["AURORA/data/something/frames/158130/first.jpg", "AURORA/data/something/frames/158130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet next to mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000108746", "images": ["AURORA/data/something/frames/215657/first.jpg", "AURORA/data/something/frames/215657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108747", "images": ["AURORA/data/something/frames/38989/first.jpg", "AURORA/data/something/frames/38989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pink hair clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108748", "images": ["AURORA/data/something/frames/66606/first.jpg", "AURORA/data/something/frames/66606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108749", "images": ["AURORA/data/something/frames/158901/first.jpg", "AURORA/data/something/frames/158901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000108750", "images": ["AURORA/data/something/frames/95719/first.jpg", "AURORA/data/something/frames/95719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into balm"}, {"from": "gpt", "value": ""}]} +{"id": "000000108751", "images": ["AURORA/data/something/frames/83527/first.jpg", "AURORA/data/something/frames/83527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pencil crayon case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108752", "images": ["AURORA/data/something/frames/127850/first.jpg", "AURORA/data/something/frames/127850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a chappal on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108753", "images": ["AURORA/data/something/frames/801/first.jpg", "AURORA/data/something/frames/801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108754", "images": ["AURORA/data/something/frames/57857/first.jpg", "AURORA/data/something/frames/57857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering usb cable with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108755", "images": ["AURORA/data/something/frames/184845/first.jpg", "AURORA/data/something/frames/184845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting doll in front of idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000108756", "images": ["AURORA/data/something/frames/24018/first.jpg", "AURORA/data/something/frames/24018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a highlighter into a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108757", "images": ["AURORA/data/something/frames/2098/first.jpg", "AURORA/data/something/frames/2098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108758", "images": ["AURORA/data/something/frames/54936/first.jpg", "AURORA/data/something/frames/54936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108759", "images": ["AURORA/data/something/frames/185106/first.jpg", "AURORA/data/something/frames/185106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into block"}, {"from": "gpt", "value": ""}]} +{"id": "000000108760", "images": ["AURORA/data/something/frames/219476/first.jpg", "AURORA/data/something/frames/219476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bar soap on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108761", "images": ["AURORA/data/something/frames/207351/first.jpg", "AURORA/data/something/frames/207351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108762", "images": ["AURORA/data/something/frames/130703/first.jpg", "AURORA/data/something/frames/130703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108763", "images": ["AURORA/data/something/frames/136255/first.jpg", "AURORA/data/something/frames/136255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt into hamper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108764", "images": ["AURORA/data/something/frames/113882/first.jpg", "AURORA/data/something/frames/113882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108765", "images": ["AURORA/data/something/frames/75486/first.jpg", "AURORA/data/something/frames/75486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108766", "images": ["AURORA/data/something/frames/77092/first.jpg", "AURORA/data/something/frames/77092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108767", "images": ["AURORA/data/something/frames/137991/first.jpg", "AURORA/data/something/frames/137991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108768", "images": ["AURORA/data/something/frames/187789/first.jpg", "AURORA/data/something/frames/187789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108769", "images": ["AURORA/data/something/frames/52622/first.jpg", "AURORA/data/something/frames/52622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving can closer to can"}, {"from": "gpt", "value": ""}]} +{"id": "000000108770", "images": ["AURORA/data/something/frames/10471/first.jpg", "AURORA/data/something/frames/10471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a flashlight so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108771", "images": ["AURORA/data/something/frames/14490/first.jpg", "AURORA/data/something/frames/14490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108772", "images": ["AURORA/data/something/frames/123295/first.jpg", "AURORA/data/something/frames/123295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coaster with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108773", "images": ["AURORA/data/something/frames/24427/first.jpg", "AURORA/data/something/frames/24427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking rocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108774", "images": ["AURORA/data/something/frames/61404/first.jpg", "AURORA/data/something/frames/61404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box onto a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000108775", "images": ["AURORA/data/something/frames/14330/first.jpg", "AURORA/data/something/frames/14330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108776", "images": ["AURORA/data/something/frames/183863/first.jpg", "AURORA/data/something/frames/183863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108777", "images": ["AURORA/data/something/frames/142849/first.jpg", "AURORA/data/something/frames/142849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting doll on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108778", "images": ["AURORA/data/something/frames/37174/first.jpg", "AURORA/data/something/frames/37174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a towel without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108779", "images": ["AURORA/data/something/frames/103102/first.jpg", "AURORA/data/something/frames/103102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a knob of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108780", "images": ["AURORA/data/something/frames/154057/first.jpg", "AURORA/data/something/frames/154057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble closer to spanner"}, {"from": "gpt", "value": ""}]} +{"id": "000000108781", "images": ["AURORA/data/something/frames/35767/first.jpg", "AURORA/data/something/frames/35767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail clippers away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108782", "images": ["AURORA/data/something/frames/14206/first.jpg", "AURORA/data/something/frames/14206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108783", "images": ["AURORA/data/something/frames/26579/first.jpg", "AURORA/data/something/frames/26579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000108784", "images": ["AURORA/data/something/frames/78118/first.jpg", "AURORA/data/something/frames/78118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108785", "images": ["AURORA/data/something/frames/205422/first.jpg", "AURORA/data/something/frames/205422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting color paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000108786", "images": ["AURORA/data/something/frames/91018/first.jpg", "AURORA/data/something/frames/91018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling flour onto sausage"}, {"from": "gpt", "value": ""}]} +{"id": "000000108787", "images": ["AURORA/data/something/frames/212599/first.jpg", "AURORA/data/something/frames/212599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000108788", "images": ["AURORA/data/something/frames/173361/first.jpg", "AURORA/data/something/frames/173361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108789", "images": ["AURORA/data/something/frames/157925/first.jpg", "AURORA/data/something/frames/157925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000108790", "images": ["AURORA/data/something/frames/127436/first.jpg", "AURORA/data/something/frames/127436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108791", "images": ["AURORA/data/something/frames/203910/first.jpg", "AURORA/data/something/frames/203910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tea infuser into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108792", "images": ["AURORA/data/something/frames/147513/first.jpg", "AURORA/data/something/frames/147513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping dental floss over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108793", "images": ["AURORA/data/something/frames/167166/first.jpg", "AURORA/data/something/frames/167166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging nightlight into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108794", "images": ["AURORA/data/something/frames/116821/first.jpg", "AURORA/data/something/frames/116821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000108795", "images": ["AURORA/data/something/frames/107752/first.jpg", "AURORA/data/something/frames/107752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paper cilp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108796", "images": ["AURORA/data/something/frames/117867/first.jpg", "AURORA/data/something/frames/117867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108797", "images": ["AURORA/data/something/frames/144230/first.jpg", "AURORA/data/something/frames/144230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking snacks packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108798", "images": ["AURORA/data/something/frames/81228/first.jpg", "AURORA/data/something/frames/81228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a $20 bill onto a cigarette pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000108799", "images": ["AURORA/data/something/frames/161987/first.jpg", "AURORA/data/something/frames/161987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of shelves"}, {"from": "gpt", "value": ""}]} +{"id": "000000108800", "images": ["AURORA/data/something/frames/93214/first.jpg", "AURORA/data/something/frames/93214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108801", "images": ["AURORA/data/something/frames/81620/first.jpg", "AURORA/data/something/frames/81620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy and cylinder so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108802", "images": ["AURORA/data/something/frames/76638/first.jpg", "AURORA/data/something/frames/76638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying egg in salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108803", "images": ["AURORA/data/something/frames/86966/first.jpg", "AURORA/data/something/frames/86966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle into glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000108804", "images": ["AURORA/data/something/frames/123821/first.jpg", "AURORA/data/something/frames/123821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000108805", "images": ["AURORA/data/something/frames/67477/first.jpg", "AURORA/data/something/frames/67477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping green bowl in front of red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108806", "images": ["AURORA/data/something/frames/174556/first.jpg", "AURORA/data/something/frames/174556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108807", "images": ["AURORA/data/something/frames/143298/first.jpg", "AURORA/data/something/frames/143298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with a pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108808", "images": ["AURORA/data/something/frames/74824/first.jpg", "AURORA/data/something/frames/74824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping onion onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108809", "images": ["AURORA/data/something/frames/149791/first.jpg", "AURORA/data/something/frames/149791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and another ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108810", "images": ["AURORA/data/something/frames/61119/first.jpg", "AURORA/data/something/frames/61119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a plug extender but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108811", "images": ["AURORA/data/something/frames/27550/first.jpg", "AURORA/data/something/frames/27550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108812", "images": ["AURORA/data/something/frames/60604/first.jpg", "AURORA/data/something/frames/60604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling dvds up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108813", "images": ["AURORA/data/something/frames/100780/first.jpg", "AURORA/data/something/frames/100780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108814", "images": ["AURORA/data/something/frames/122748/first.jpg", "AURORA/data/something/frames/122748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing dvd case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108815", "images": ["AURORA/data/something/frames/20245/first.jpg", "AURORA/data/something/frames/20245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108816", "images": ["AURORA/data/something/frames/103066/first.jpg", "AURORA/data/something/frames/103066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crayon off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000108817", "images": ["AURORA/data/something/frames/117558/first.jpg", "AURORA/data/something/frames/117558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cereal box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108818", "images": ["AURORA/data/something/frames/213468/first.jpg", "AURORA/data/something/frames/213468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000108819", "images": ["AURORA/data/something/frames/21906/first.jpg", "AURORA/data/something/frames/21906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mineral water"}, {"from": "gpt", "value": ""}]} +{"id": "000000108820", "images": ["AURORA/data/something/frames/145729/first.jpg", "AURORA/data/something/frames/145729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108821", "images": ["AURORA/data/something/frames/185497/first.jpg", "AURORA/data/something/frames/185497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shampoo bottler onto paperboard so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108822", "images": ["AURORA/data/something/frames/142438/first.jpg", "AURORA/data/something/frames/142438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving backpack down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108823", "images": ["AURORA/data/something/frames/108718/first.jpg", "AURORA/data/something/frames/108718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing brown paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108824", "images": ["AURORA/data/something/frames/90272/first.jpg", "AURORA/data/something/frames/90272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cup up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108825", "images": ["AURORA/data/something/frames/94933/first.jpg", "AURORA/data/something/frames/94933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning spray bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108826", "images": ["AURORA/data/something/frames/211620/first.jpg", "AURORA/data/something/frames/211620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking strawberry out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108827", "images": ["AURORA/data/something/frames/70593/first.jpg", "AURORA/data/something/frames/70593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108828", "images": ["AURORA/data/something/frames/86949/first.jpg", "AURORA/data/something/frames/86949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108829", "images": ["AURORA/data/something/frames/1056/first.jpg", "AURORA/data/something/frames/1056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 toy cars"}, {"from": "gpt", "value": ""}]} +{"id": "000000108830", "images": ["AURORA/data/something/frames/133612/first.jpg", "AURORA/data/something/frames/133612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glue stick on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108831", "images": ["AURORA/data/something/frames/24388/first.jpg", "AURORA/data/something/frames/24388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and another mug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108832", "images": ["AURORA/data/something/frames/164578/first.jpg", "AURORA/data/something/frames/164578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108833", "images": ["AURORA/data/something/frames/96267/first.jpg", "AURORA/data/something/frames/96267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toffee eclairs from jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000108834", "images": ["AURORA/data/something/frames/94783/first.jpg", "AURORA/data/something/frames/94783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108835", "images": ["AURORA/data/something/frames/171329/first.jpg", "AURORA/data/something/frames/171329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108836", "images": ["AURORA/data/something/frames/25252/first.jpg", "AURORA/data/something/frames/25252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming toothpaste tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000108837", "images": ["AURORA/data/something/frames/18971/first.jpg", "AURORA/data/something/frames/18971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000108838", "images": ["AURORA/data/something/frames/145061/first.jpg", "AURORA/data/something/frames/145061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling blinds from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108839", "images": ["AURORA/data/something/frames/131427/first.jpg", "AURORA/data/something/frames/131427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108840", "images": ["AURORA/data/something/frames/9462/first.jpg", "AURORA/data/something/frames/9462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an alarm clock onto a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000108841", "images": ["AURORA/data/something/frames/16212/first.jpg", "AURORA/data/something/frames/16212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses next to remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000108842", "images": ["AURORA/data/something/frames/40301/first.jpg", "AURORA/data/something/frames/40301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108843", "images": ["AURORA/data/something/frames/128199/first.jpg", "AURORA/data/something/frames/128199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a marker upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108844", "images": ["AURORA/data/something/frames/93339/first.jpg", "AURORA/data/something/frames/93339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108845", "images": ["AURORA/data/something/frames/101158/first.jpg", "AURORA/data/something/frames/101158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning red pot holder upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108846", "images": ["AURORA/data/something/frames/97002/first.jpg", "AURORA/data/something/frames/97002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming snacks packets"}, {"from": "gpt", "value": ""}]} +{"id": "000000108847", "images": ["AURORA/data/something/frames/49914/first.jpg", "AURORA/data/something/frames/49914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bulb syringe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108848", "images": ["AURORA/data/something/frames/207257/first.jpg", "AURORA/data/something/frames/207257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling soft elmo from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108849", "images": ["AURORA/data/something/frames/106257/first.jpg", "AURORA/data/something/frames/106257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cucumber next to lemon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108850", "images": ["AURORA/data/something/frames/43492/first.jpg", "AURORA/data/something/frames/43492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glue bottle closer to camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108851", "images": ["AURORA/data/something/frames/84175/first.jpg", "AURORA/data/something/frames/84175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108852", "images": ["AURORA/data/something/frames/165145/first.jpg", "AURORA/data/something/frames/165145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic jar onto stopper so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108853", "images": ["AURORA/data/something/frames/178022/first.jpg", "AURORA/data/something/frames/178022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108854", "images": ["AURORA/data/something/frames/43117/first.jpg", "AURORA/data/something/frames/43117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cloth out of plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108855", "images": ["AURORA/data/something/frames/143297/first.jpg", "AURORA/data/something/frames/143297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dvd away from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108856", "images": ["AURORA/data/something/frames/43849/first.jpg", "AURORA/data/something/frames/43849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000108857", "images": ["AURORA/data/something/frames/62853/first.jpg", "AURORA/data/something/frames/62853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging kettle into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000108858", "images": ["AURORA/data/something/frames/4163/first.jpg", "AURORA/data/something/frames/4163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a polythene cover just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108859", "images": ["AURORA/data/something/frames/175597/first.jpg", "AURORA/data/something/frames/175597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar of vitamins"}, {"from": "gpt", "value": ""}]} +{"id": "000000108860", "images": ["AURORA/data/something/frames/28130/first.jpg", "AURORA/data/something/frames/28130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 ping pong balls"}, {"from": "gpt", "value": ""}]} +{"id": "000000108861", "images": ["AURORA/data/something/frames/38038/first.jpg", "AURORA/data/something/frames/38038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108862", "images": ["AURORA/data/something/frames/130097/first.jpg", "AURORA/data/something/frames/130097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108863", "images": ["AURORA/data/something/frames/16660/first.jpg", "AURORA/data/something/frames/16660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108864", "images": ["AURORA/data/something/frames/33392/first.jpg", "AURORA/data/something/frames/33392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding news paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108865", "images": ["AURORA/data/something/frames/94406/first.jpg", "AURORA/data/something/frames/94406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, box, bam..etc into table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108866", "images": ["AURORA/data/something/frames/83769/first.jpg", "AURORA/data/something/frames/83769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing supplement bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108867", "images": ["AURORA/data/something/frames/108787/first.jpg", "AURORA/data/something/frames/108787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling yellow container from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108868", "images": ["AURORA/data/something/frames/174198/first.jpg", "AURORA/data/something/frames/174198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108869", "images": ["AURORA/data/something/frames/142549/first.jpg", "AURORA/data/something/frames/142549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming colorful scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000108870", "images": ["AURORA/data/something/frames/173320/first.jpg", "AURORA/data/something/frames/173320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pink toothbrush case with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108871", "images": ["AURORA/data/something/frames/198240/first.jpg", "AURORA/data/something/frames/198240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cracker until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108872", "images": ["AURORA/data/something/frames/147919/first.jpg", "AURORA/data/something/frames/147919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sharpener into a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108873", "images": ["AURORA/data/something/frames/40642/first.jpg", "AURORA/data/something/frames/40642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering matchbox with box cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000108874", "images": ["AURORA/data/something/frames/134574/first.jpg", "AURORA/data/something/frames/134574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108875", "images": ["AURORA/data/something/frames/213036/first.jpg", "AURORA/data/something/frames/213036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108876", "images": ["AURORA/data/something/frames/148805/first.jpg", "AURORA/data/something/frames/148805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000108877", "images": ["AURORA/data/something/frames/24316/first.jpg", "AURORA/data/something/frames/24316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving card up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108878", "images": ["AURORA/data/something/frames/152618/first.jpg", "AURORA/data/something/frames/152618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water"}, {"from": "gpt", "value": ""}]} +{"id": "000000108879", "images": ["AURORA/data/something/frames/103796/first.jpg", "AURORA/data/something/frames/103796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book next to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000108880", "images": ["AURORA/data/something/frames/193311/first.jpg", "AURORA/data/something/frames/193311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cucumber up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108881", "images": ["AURORA/data/something/frames/93270/first.jpg", "AURORA/data/something/frames/93270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar and a small jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108882", "images": ["AURORA/data/something/frames/164342/first.jpg", "AURORA/data/something/frames/164342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hand bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000108883", "images": ["AURORA/data/something/frames/216550/first.jpg", "AURORA/data/something/frames/216550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black umbrella from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108884", "images": ["AURORA/data/something/frames/75233/first.jpg", "AURORA/data/something/frames/75233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108885", "images": ["AURORA/data/something/frames/161627/first.jpg", "AURORA/data/something/frames/161627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toothbrush onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000108886", "images": ["AURORA/data/something/frames/115503/first.jpg", "AURORA/data/something/frames/115503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108887", "images": ["AURORA/data/something/frames/102189/first.jpg", "AURORA/data/something/frames/102189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting striker coin next to white board clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000108888", "images": ["AURORA/data/something/frames/109858/first.jpg", "AURORA/data/something/frames/109858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy behind toy watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108889", "images": ["AURORA/data/something/frames/67581/first.jpg", "AURORA/data/something/frames/67581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen being deflected from calculator cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000108890", "images": ["AURORA/data/something/frames/42753/first.jpg", "AURORA/data/something/frames/42753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a scooter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108891", "images": ["AURORA/data/something/frames/243/first.jpg", "AURORA/data/something/frames/243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108892", "images": ["AURORA/data/something/frames/134896/first.jpg", "AURORA/data/something/frames/134896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108893", "images": ["AURORA/data/something/frames/135745/first.jpg", "AURORA/data/something/frames/135745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000108894", "images": ["AURORA/data/something/frames/99866/first.jpg", "AURORA/data/something/frames/99866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108895", "images": ["AURORA/data/something/frames/68449/first.jpg", "AURORA/data/something/frames/68449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting usb cable on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108896", "images": ["AURORA/data/something/frames/77861/first.jpg", "AURORA/data/something/frames/77861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108897", "images": ["AURORA/data/something/frames/51251/first.jpg", "AURORA/data/something/frames/51251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108898", "images": ["AURORA/data/something/frames/132122/first.jpg", "AURORA/data/something/frames/132122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108899", "images": ["AURORA/data/something/frames/156573/first.jpg", "AURORA/data/something/frames/156573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping papertowel over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108900", "images": ["AURORA/data/something/frames/41003/first.jpg", "AURORA/data/something/frames/41003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108901", "images": ["AURORA/data/something/frames/133719/first.jpg", "AURORA/data/something/frames/133719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling a cup of water onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000108902", "images": ["AURORA/data/something/frames/46610/first.jpg", "AURORA/data/something/frames/46610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy bar on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108903", "images": ["AURORA/data/something/frames/80272/first.jpg", "AURORA/data/something/frames/80272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass behind flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000108904", "images": ["AURORA/data/something/frames/174923/first.jpg", "AURORA/data/something/frames/174923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cups from a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108905", "images": ["AURORA/data/something/frames/135948/first.jpg", "AURORA/data/something/frames/135948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a key with a note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108906", "images": ["AURORA/data/something/frames/216965/first.jpg", "AURORA/data/something/frames/216965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000108907", "images": ["AURORA/data/something/frames/138102/first.jpg", "AURORA/data/something/frames/138102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting squeezable strawberry jam on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000108908", "images": ["AURORA/data/something/frames/30162/first.jpg", "AURORA/data/something/frames/30162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108909", "images": ["AURORA/data/something/frames/210799/first.jpg", "AURORA/data/something/frames/210799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a sheet out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108910", "images": ["AURORA/data/something/frames/218522/first.jpg", "AURORA/data/something/frames/218522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000108911", "images": ["AURORA/data/something/frames/79291/first.jpg", "AURORA/data/something/frames/79291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000108912", "images": ["AURORA/data/something/frames/97247/first.jpg", "AURORA/data/something/frames/97247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tumbler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108913", "images": ["AURORA/data/something/frames/38152/first.jpg", "AURORA/data/something/frames/38152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a peanut can with a pringles can on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108914", "images": ["AURORA/data/something/frames/12954/first.jpg", "AURORA/data/something/frames/12954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing gift cover just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108915", "images": ["AURORA/data/something/frames/142533/first.jpg", "AURORA/data/something/frames/142533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fridge magnet upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108916", "images": ["AURORA/data/something/frames/39937/first.jpg", "AURORA/data/something/frames/39937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin next to other coins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108917", "images": ["AURORA/data/something/frames/170459/first.jpg", "AURORA/data/something/frames/170459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin into pen stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108918", "images": ["AURORA/data/something/frames/34120/first.jpg", "AURORA/data/something/frames/34120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000108919", "images": ["AURORA/data/something/frames/195933/first.jpg", "AURORA/data/something/frames/195933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108920", "images": ["AURORA/data/something/frames/42455/first.jpg", "AURORA/data/something/frames/42455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing yellow paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108921", "images": ["AURORA/data/something/frames/181183/first.jpg", "AURORA/data/something/frames/181183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lipstick out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108922", "images": ["AURORA/data/something/frames/172416/first.jpg", "AURORA/data/something/frames/172416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cable into a desktop microphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000108923", "images": ["AURORA/data/something/frames/22359/first.jpg", "AURORA/data/something/frames/22359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108924", "images": ["AURORA/data/something/frames/146754/first.jpg", "AURORA/data/something/frames/146754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000108925", "images": ["AURORA/data/something/frames/160596/first.jpg", "AURORA/data/something/frames/160596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and hitting another cup so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108926", "images": ["AURORA/data/something/frames/200199/first.jpg", "AURORA/data/something/frames/200199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pants into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108927", "images": ["AURORA/data/something/frames/34833/first.jpg", "AURORA/data/something/frames/34833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108928", "images": ["AURORA/data/something/frames/152539/first.jpg", "AURORA/data/something/frames/152539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying globe toy on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000108929", "images": ["AURORA/data/something/frames/44181/first.jpg", "AURORA/data/something/frames/44181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108930", "images": ["AURORA/data/something/frames/18454/first.jpg", "AURORA/data/something/frames/18454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000108931", "images": ["AURORA/data/something/frames/193554/first.jpg", "AURORA/data/something/frames/193554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker from behind of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000108932", "images": ["AURORA/data/something/frames/39486/first.jpg", "AURORA/data/something/frames/39486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000108933", "images": ["AURORA/data/something/frames/171804/first.jpg", "AURORA/data/something/frames/171804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing packaging handkerchiefs off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108934", "images": ["AURORA/data/something/frames/59078/first.jpg", "AURORA/data/something/frames/59078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000108935", "images": ["AURORA/data/something/frames/127072/first.jpg", "AURORA/data/something/frames/127072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending lid so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000108936", "images": ["AURORA/data/something/frames/220290/first.jpg", "AURORA/data/something/frames/220290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000108937", "images": ["AURORA/data/something/frames/165011/first.jpg", "AURORA/data/something/frames/165011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting coffee cup with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108938", "images": ["AURORA/data/something/frames/45510/first.jpg", "AURORA/data/something/frames/45510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking eggs out of a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108939", "images": ["AURORA/data/something/frames/71980/first.jpg", "AURORA/data/something/frames/71980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108940", "images": ["AURORA/data/something/frames/163353/first.jpg", "AURORA/data/something/frames/163353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108941", "images": ["AURORA/data/something/frames/139447/first.jpg", "AURORA/data/something/frames/139447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing belt from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108942", "images": ["AURORA/data/something/frames/100279/first.jpg", "AURORA/data/something/frames/100279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000108943", "images": ["AURORA/data/something/frames/199979/first.jpg", "AURORA/data/something/frames/199979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing glasses into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000108944", "images": ["AURORA/data/something/frames/79793/first.jpg", "AURORA/data/something/frames/79793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108945", "images": ["AURORA/data/something/frames/57831/first.jpg", "AURORA/data/something/frames/57831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning aim toothpaste upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108946", "images": ["AURORA/data/something/frames/202308/first.jpg", "AURORA/data/something/frames/202308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen drive down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108947", "images": ["AURORA/data/something/frames/91037/first.jpg", "AURORA/data/something/frames/91037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000108948", "images": ["AURORA/data/something/frames/132863/first.jpg", "AURORA/data/something/frames/132863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000108949", "images": ["AURORA/data/something/frames/134426/first.jpg", "AURORA/data/something/frames/134426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cellphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108950", "images": ["AURORA/data/something/frames/157009/first.jpg", "AURORA/data/something/frames/157009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000108951", "images": ["AURORA/data/something/frames/60951/first.jpg", "AURORA/data/something/frames/60951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cloth just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000108952", "images": ["AURORA/data/something/frames/133456/first.jpg", "AURORA/data/something/frames/133456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108953", "images": ["AURORA/data/something/frames/43980/first.jpg", "AURORA/data/something/frames/43980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108954", "images": ["AURORA/data/something/frames/186794/first.jpg", "AURORA/data/something/frames/186794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing crayon with crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108955", "images": ["AURORA/data/something/frames/212126/first.jpg", "AURORA/data/something/frames/212126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a water bottle onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000108956", "images": ["AURORA/data/something/frames/212147/first.jpg", "AURORA/data/something/frames/212147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book near other books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108957", "images": ["AURORA/data/something/frames/136541/first.jpg", "AURORA/data/something/frames/136541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108958", "images": ["AURORA/data/something/frames/163786/first.jpg", "AURORA/data/something/frames/163786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from sardine fishes with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108959", "images": ["AURORA/data/something/frames/184693/first.jpg", "AURORA/data/something/frames/184693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet in front of a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000108960", "images": ["AURORA/data/something/frames/198752/first.jpg", "AURORA/data/something/frames/198752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000108961", "images": ["AURORA/data/something/frames/185685/first.jpg", "AURORA/data/something/frames/185685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping animal feed up with container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108962", "images": ["AURORA/data/something/frames/190654/first.jpg", "AURORA/data/something/frames/190654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000108963", "images": ["AURORA/data/something/frames/137367/first.jpg", "AURORA/data/something/frames/137367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000108964", "images": ["AURORA/data/something/frames/8727/first.jpg", "AURORA/data/something/frames/8727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000108965", "images": ["AURORA/data/something/frames/121345/first.jpg", "AURORA/data/something/frames/121345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching water pipe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108966", "images": ["AURORA/data/something/frames/217024/first.jpg", "AURORA/data/something/frames/217024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cotton so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000108967", "images": ["AURORA/data/something/frames/42680/first.jpg", "AURORA/data/something/frames/42680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting inhaler"}, {"from": "gpt", "value": ""}]} +{"id": "000000108968", "images": ["AURORA/data/something/frames/8521/first.jpg", "AURORA/data/something/frames/8521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging lamp into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108969", "images": ["AURORA/data/something/frames/209341/first.jpg", "AURORA/data/something/frames/209341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108970", "images": ["AURORA/data/something/frames/98052/first.jpg", "AURORA/data/something/frames/98052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000108971", "images": ["AURORA/data/something/frames/80258/first.jpg", "AURORA/data/something/frames/80258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108972", "images": ["AURORA/data/something/frames/51935/first.jpg", "AURORA/data/something/frames/51935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000108973", "images": ["AURORA/data/something/frames/175806/first.jpg", "AURORA/data/something/frames/175806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000108974", "images": ["AURORA/data/something/frames/198351/first.jpg", "AURORA/data/something/frames/198351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil box colliding with anothe box and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108975", "images": ["AURORA/data/something/frames/149009/first.jpg", "AURORA/data/something/frames/149009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with box on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000108976", "images": ["AURORA/data/something/frames/56887/first.jpg", "AURORA/data/something/frames/56887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white board clip away from green toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000108977", "images": ["AURORA/data/something/frames/180388/first.jpg", "AURORA/data/something/frames/180388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an extension cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000108978", "images": ["AURORA/data/something/frames/149450/first.jpg", "AURORA/data/something/frames/149450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping biscuit packet into plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000108979", "images": ["AURORA/data/something/frames/8067/first.jpg", "AURORA/data/something/frames/8067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wallet colliding with wallet and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000108980", "images": ["AURORA/data/something/frames/118461/first.jpg", "AURORA/data/something/frames/118461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing pendrive behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000108981", "images": ["AURORA/data/something/frames/61093/first.jpg", "AURORA/data/something/frames/61093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cloth onto apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000108982", "images": ["AURORA/data/something/frames/102982/first.jpg", "AURORA/data/something/frames/102982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bowl with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000108983", "images": ["AURORA/data/something/frames/84145/first.jpg", "AURORA/data/something/frames/84145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000108984", "images": ["AURORA/data/something/frames/67640/first.jpg", "AURORA/data/something/frames/67640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hat from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000108985", "images": ["AURORA/data/something/frames/66915/first.jpg", "AURORA/data/something/frames/66915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cupcake case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108986", "images": ["AURORA/data/something/frames/8806/first.jpg", "AURORA/data/something/frames/8806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a play block from a group of play blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000108987", "images": ["AURORA/data/something/frames/119998/first.jpg", "AURORA/data/something/frames/119998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000108988", "images": ["AURORA/data/something/frames/6216/first.jpg", "AURORA/data/something/frames/6216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wireless mouse with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000108989", "images": ["AURORA/data/something/frames/200105/first.jpg", "AURORA/data/something/frames/200105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking yogurt so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000108990", "images": ["AURORA/data/something/frames/169768/first.jpg", "AURORA/data/something/frames/169768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle and toy globe on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000108991", "images": ["AURORA/data/something/frames/111483/first.jpg", "AURORA/data/something/frames/111483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving match box and a nail polish bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108992", "images": ["AURORA/data/something/frames/205828/first.jpg", "AURORA/data/something/frames/205828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tipex-maus up"}, {"from": "gpt", "value": ""}]} +{"id": "000000108993", "images": ["AURORA/data/something/frames/218695/first.jpg", "AURORA/data/something/frames/218695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing one face mask from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000108994", "images": ["AURORA/data/something/frames/5693/first.jpg", "AURORA/data/something/frames/5693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container and container so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000108995", "images": ["AURORA/data/something/frames/187174/first.jpg", "AURORA/data/something/frames/187174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticky note to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000108996", "images": ["AURORA/data/something/frames/188939/first.jpg", "AURORA/data/something/frames/188939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking onion"}, {"from": "gpt", "value": ""}]} +{"id": "000000108997", "images": ["AURORA/data/something/frames/90365/first.jpg", "AURORA/data/something/frames/90365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lemon out of the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000108998", "images": ["AURORA/data/something/frames/131264/first.jpg", "AURORA/data/something/frames/131264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking books"}, {"from": "gpt", "value": ""}]} +{"id": "000000108999", "images": ["AURORA/data/something/frames/173234/first.jpg", "AURORA/data/something/frames/173234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109000", "images": ["AURORA/data/something/frames/220768/first.jpg", "AURORA/data/something/frames/220768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tumbler with water over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109001", "images": ["AURORA/data/something/frames/118320/first.jpg", "AURORA/data/something/frames/118320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109002", "images": ["AURORA/data/something/frames/93258/first.jpg", "AURORA/data/something/frames/93258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a drawer with a hanger"}, {"from": "gpt", "value": ""}]} +{"id": "000000109003", "images": ["AURORA/data/something/frames/162797/first.jpg", "AURORA/data/something/frames/162797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a matchbox closer to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109004", "images": ["AURORA/data/something/frames/156105/first.jpg", "AURORA/data/something/frames/156105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon onto lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109005", "images": ["AURORA/data/something/frames/174605/first.jpg", "AURORA/data/something/frames/174605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109006", "images": ["AURORA/data/something/frames/60238/first.jpg", "AURORA/data/something/frames/60238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling matches from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109007", "images": ["AURORA/data/something/frames/78492/first.jpg", "AURORA/data/something/frames/78492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into electric socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109008", "images": ["AURORA/data/something/frames/132348/first.jpg", "AURORA/data/something/frames/132348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109009", "images": ["AURORA/data/something/frames/43582/first.jpg", "AURORA/data/something/frames/43582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109010", "images": ["AURORA/data/something/frames/30540/first.jpg", "AURORA/data/something/frames/30540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a candle with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109011", "images": ["AURORA/data/something/frames/155260/first.jpg", "AURORA/data/something/frames/155260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000109012", "images": ["AURORA/data/something/frames/168107/first.jpg", "AURORA/data/something/frames/168107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109013", "images": ["AURORA/data/something/frames/47072/first.jpg", "AURORA/data/something/frames/47072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from behind of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109014", "images": ["AURORA/data/something/frames/101132/first.jpg", "AURORA/data/something/frames/101132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109015", "images": ["AURORA/data/something/frames/107128/first.jpg", "AURORA/data/something/frames/107128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pillow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109016", "images": ["AURORA/data/something/frames/79933/first.jpg", "AURORA/data/something/frames/79933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering baloon with beanie"}, {"from": "gpt", "value": ""}]} +{"id": "000000109017", "images": ["AURORA/data/something/frames/69479/first.jpg", "AURORA/data/something/frames/69479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting remote up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109018", "images": ["AURORA/data/something/frames/109579/first.jpg", "AURORA/data/something/frames/109579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000109019", "images": ["AURORA/data/something/frames/53410/first.jpg", "AURORA/data/something/frames/53410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto carpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109020", "images": ["AURORA/data/something/frames/19814/first.jpg", "AURORA/data/something/frames/19814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tissue out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109021", "images": ["AURORA/data/something/frames/174542/first.jpg", "AURORA/data/something/frames/174542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor, adapter and usb light on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109022", "images": ["AURORA/data/something/frames/62822/first.jpg", "AURORA/data/something/frames/62822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing ruler behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109023", "images": ["AURORA/data/something/frames/19690/first.jpg", "AURORA/data/something/frames/19690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109024", "images": ["AURORA/data/something/frames/3478/first.jpg", "AURORA/data/something/frames/3478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109025", "images": ["AURORA/data/something/frames/189646/first.jpg", "AURORA/data/something/frames/189646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tangerine to group of tangerines"}, {"from": "gpt", "value": ""}]} +{"id": "000000109026", "images": ["AURORA/data/something/frames/191791/first.jpg", "AURORA/data/something/frames/191791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109027", "images": ["AURORA/data/something/frames/44574/first.jpg", "AURORA/data/something/frames/44574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a lightning cable to a power adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109028", "images": ["AURORA/data/something/frames/146689/first.jpg", "AURORA/data/something/frames/146689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109029", "images": ["AURORA/data/something/frames/68053/first.jpg", "AURORA/data/something/frames/68053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle onto kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000109030", "images": ["AURORA/data/something/frames/100418/first.jpg", "AURORA/data/something/frames/100418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109031", "images": ["AURORA/data/something/frames/139190/first.jpg", "AURORA/data/something/frames/139190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109032", "images": ["AURORA/data/something/frames/128319/first.jpg", "AURORA/data/something/frames/128319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing usb cable into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109033", "images": ["AURORA/data/something/frames/169676/first.jpg", "AURORA/data/something/frames/169676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bin with a paper toilet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109034", "images": ["AURORA/data/something/frames/106347/first.jpg", "AURORA/data/something/frames/106347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109035", "images": ["AURORA/data/something/frames/38481/first.jpg", "AURORA/data/something/frames/38481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a book with another book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109036", "images": ["AURORA/data/something/frames/44366/first.jpg", "AURORA/data/something/frames/44366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of clock without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109037", "images": ["AURORA/data/something/frames/8414/first.jpg", "AURORA/data/something/frames/8414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109038", "images": ["AURORA/data/something/frames/142638/first.jpg", "AURORA/data/something/frames/142638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing can from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109039", "images": ["AURORA/data/something/frames/112031/first.jpg", "AURORA/data/something/frames/112031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering ball with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109040", "images": ["AURORA/data/something/frames/8518/first.jpg", "AURORA/data/something/frames/8518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing keys behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109041", "images": ["AURORA/data/something/frames/106711/first.jpg", "AURORA/data/something/frames/106711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000109042", "images": ["AURORA/data/something/frames/125726/first.jpg", "AURORA/data/something/frames/125726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109043", "images": ["AURORA/data/something/frames/77634/first.jpg", "AURORA/data/something/frames/77634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electrical plug into an electrical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109044", "images": ["AURORA/data/something/frames/164800/first.jpg", "AURORA/data/something/frames/164800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spatula next to pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000109045", "images": ["AURORA/data/something/frames/75034/first.jpg", "AURORA/data/something/frames/75034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109046", "images": ["AURORA/data/something/frames/37108/first.jpg", "AURORA/data/something/frames/37108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a pepper grinder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109047", "images": ["AURORA/data/something/frames/146281/first.jpg", "AURORA/data/something/frames/146281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109048", "images": ["AURORA/data/something/frames/23836/first.jpg", "AURORA/data/something/frames/23836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109049", "images": ["AURORA/data/something/frames/95340/first.jpg", "AURORA/data/something/frames/95340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying an egg on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109050", "images": ["AURORA/data/something/frames/44683/first.jpg", "AURORA/data/something/frames/44683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from battery with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109051", "images": ["AURORA/data/something/frames/162135/first.jpg", "AURORA/data/something/frames/162135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109052", "images": ["AURORA/data/something/frames/37190/first.jpg", "AURORA/data/something/frames/37190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109053", "images": ["AURORA/data/something/frames/203782/first.jpg", "AURORA/data/something/frames/203782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone next to pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000109054", "images": ["AURORA/data/something/frames/85675/first.jpg", "AURORA/data/something/frames/85675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with bowl on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109055", "images": ["AURORA/data/something/frames/194649/first.jpg", "AURORA/data/something/frames/194649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109056", "images": ["AURORA/data/something/frames/525/first.jpg", "AURORA/data/something/frames/525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candle in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109057", "images": ["AURORA/data/something/frames/49031/first.jpg", "AURORA/data/something/frames/49031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking apple corer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109058", "images": ["AURORA/data/something/frames/43075/first.jpg", "AURORA/data/something/frames/43075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109059", "images": ["AURORA/data/something/frames/93371/first.jpg", "AURORA/data/something/frames/93371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette into player"}, {"from": "gpt", "value": ""}]} +{"id": "000000109060", "images": ["AURORA/data/something/frames/25948/first.jpg", "AURORA/data/something/frames/25948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 books onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109061", "images": ["AURORA/data/something/frames/139468/first.jpg", "AURORA/data/something/frames/139468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging chwrger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109062", "images": ["AURORA/data/something/frames/27675/first.jpg", "AURORA/data/something/frames/27675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109063", "images": ["AURORA/data/something/frames/91942/first.jpg", "AURORA/data/something/frames/91942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109064", "images": ["AURORA/data/something/frames/66458/first.jpg", "AURORA/data/something/frames/66458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109065", "images": ["AURORA/data/something/frames/64664/first.jpg", "AURORA/data/something/frames/64664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109066", "images": ["AURORA/data/something/frames/110234/first.jpg", "AURORA/data/something/frames/110234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting green colour bowl up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109067", "images": ["AURORA/data/something/frames/35249/first.jpg", "AURORA/data/something/frames/35249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping torch next to shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109068", "images": ["AURORA/data/something/frames/71829/first.jpg", "AURORA/data/something/frames/71829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying 3d postit on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109069", "images": ["AURORA/data/something/frames/136244/first.jpg", "AURORA/data/something/frames/136244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper knot out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109070", "images": ["AURORA/data/something/frames/207204/first.jpg", "AURORA/data/something/frames/207204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving microscope and coin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109071", "images": ["AURORA/data/something/frames/67242/first.jpg", "AURORA/data/something/frames/67242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109072", "images": ["AURORA/data/something/frames/106378/first.jpg", "AURORA/data/something/frames/106378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109073", "images": ["AURORA/data/something/frames/134678/first.jpg", "AURORA/data/something/frames/134678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109074", "images": ["AURORA/data/something/frames/192168/first.jpg", "AURORA/data/something/frames/192168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109075", "images": ["AURORA/data/something/frames/100919/first.jpg", "AURORA/data/something/frames/100919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109076", "images": ["AURORA/data/something/frames/122743/first.jpg", "AURORA/data/something/frames/122743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cup with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109077", "images": ["AURORA/data/something/frames/97407/first.jpg", "AURORA/data/something/frames/97407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from water tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109078", "images": ["AURORA/data/something/frames/126852/first.jpg", "AURORA/data/something/frames/126852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a hairbrush from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109079", "images": ["AURORA/data/something/frames/201780/first.jpg", "AURORA/data/something/frames/201780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet away from magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109080", "images": ["AURORA/data/something/frames/179514/first.jpg", "AURORA/data/something/frames/179514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109081", "images": ["AURORA/data/something/frames/79288/first.jpg", "AURORA/data/something/frames/79288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting new papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000109082", "images": ["AURORA/data/something/frames/151453/first.jpg", "AURORA/data/something/frames/151453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hairbands onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000109083", "images": ["AURORA/data/something/frames/35222/first.jpg", "AURORA/data/something/frames/35222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an envelope onto a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109084", "images": ["AURORA/data/something/frames/3689/first.jpg", "AURORA/data/something/frames/3689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109085", "images": ["AURORA/data/something/frames/26199/first.jpg", "AURORA/data/something/frames/26199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling candy mints up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109086", "images": ["AURORA/data/something/frames/191525/first.jpg", "AURORA/data/something/frames/191525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109087", "images": ["AURORA/data/something/frames/118077/first.jpg", "AURORA/data/something/frames/118077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109088", "images": ["AURORA/data/something/frames/68425/first.jpg", "AURORA/data/something/frames/68425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109089", "images": ["AURORA/data/something/frames/215010/first.jpg", "AURORA/data/something/frames/215010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lemon behind doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000109090", "images": ["AURORA/data/something/frames/158485/first.jpg", "AURORA/data/something/frames/158485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109091", "images": ["AURORA/data/something/frames/210183/first.jpg", "AURORA/data/something/frames/210183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109092", "images": ["AURORA/data/something/frames/109456/first.jpg", "AURORA/data/something/frames/109456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109093", "images": ["AURORA/data/something/frames/61941/first.jpg", "AURORA/data/something/frames/61941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109094", "images": ["AURORA/data/something/frames/66776/first.jpg", "AURORA/data/something/frames/66776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109095", "images": ["AURORA/data/something/frames/86490/first.jpg", "AURORA/data/something/frames/86490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag away from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109096", "images": ["AURORA/data/something/frames/116195/first.jpg", "AURORA/data/something/frames/116195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glasses case so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109097", "images": ["AURORA/data/something/frames/197923/first.jpg", "AURORA/data/something/frames/197923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109098", "images": ["AURORA/data/something/frames/50709/first.jpg", "AURORA/data/something/frames/50709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109099", "images": ["AURORA/data/something/frames/77440/first.jpg", "AURORA/data/something/frames/77440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109100", "images": ["AURORA/data/something/frames/127304/first.jpg", "AURORA/data/something/frames/127304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting laptop with mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109101", "images": ["AURORA/data/something/frames/51233/first.jpg", "AURORA/data/something/frames/51233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading sugar onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109102", "images": ["AURORA/data/something/frames/55263/first.jpg", "AURORA/data/something/frames/55263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109103", "images": ["AURORA/data/something/frames/108444/first.jpg", "AURORA/data/something/frames/108444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109104", "images": ["AURORA/data/something/frames/35962/first.jpg", "AURORA/data/something/frames/35962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000109105", "images": ["AURORA/data/something/frames/188208/first.jpg", "AURORA/data/something/frames/188208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading choclate ice cream onto the bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000109106", "images": ["AURORA/data/something/frames/141123/first.jpg", "AURORA/data/something/frames/141123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109107", "images": ["AURORA/data/something/frames/7288/first.jpg", "AURORA/data/something/frames/7288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking stapler out of cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109108", "images": ["AURORA/data/something/frames/27141/first.jpg", "AURORA/data/something/frames/27141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109109", "images": ["AURORA/data/something/frames/17649/first.jpg", "AURORA/data/something/frames/17649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109110", "images": ["AURORA/data/something/frames/124332/first.jpg", "AURORA/data/something/frames/124332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and pencil closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109111", "images": ["AURORA/data/something/frames/103213/first.jpg", "AURORA/data/something/frames/103213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109112", "images": ["AURORA/data/something/frames/76987/first.jpg", "AURORA/data/something/frames/76987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109113", "images": ["AURORA/data/something/frames/182605/first.jpg", "AURORA/data/something/frames/182605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ereaser into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109114", "images": ["AURORA/data/something/frames/26761/first.jpg", "AURORA/data/something/frames/26761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissue box onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109115", "images": ["AURORA/data/something/frames/216172/first.jpg", "AURORA/data/something/frames/216172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109116", "images": ["AURORA/data/something/frames/173729/first.jpg", "AURORA/data/something/frames/173729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teacup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109117", "images": ["AURORA/data/something/frames/59376/first.jpg", "AURORA/data/something/frames/59376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping card over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109118", "images": ["AURORA/data/something/frames/115882/first.jpg", "AURORA/data/something/frames/115882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving camera away from dry erase board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109119", "images": ["AURORA/data/something/frames/41439/first.jpg", "AURORA/data/something/frames/41439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109120", "images": ["AURORA/data/something/frames/142572/first.jpg", "AURORA/data/something/frames/142572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109121", "images": ["AURORA/data/something/frames/201755/first.jpg", "AURORA/data/something/frames/201755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing smarthphone into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109122", "images": ["AURORA/data/something/frames/76070/first.jpg", "AURORA/data/something/frames/76070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109123", "images": ["AURORA/data/something/frames/133389/first.jpg", "AURORA/data/something/frames/133389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a knife onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109124", "images": ["AURORA/data/something/frames/24815/first.jpg", "AURORA/data/something/frames/24815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109125", "images": ["AURORA/data/something/frames/202314/first.jpg", "AURORA/data/something/frames/202314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing aluminium foil into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109126", "images": ["AURORA/data/something/frames/39687/first.jpg", "AURORA/data/something/frames/39687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candle into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109127", "images": ["AURORA/data/something/frames/37129/first.jpg", "AURORA/data/something/frames/37129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb stick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109128", "images": ["AURORA/data/something/frames/28170/first.jpg", "AURORA/data/something/frames/28170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tv remote and baby spoon bottle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109129", "images": ["AURORA/data/something/frames/181345/first.jpg", "AURORA/data/something/frames/181345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a short out of a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000109130", "images": ["AURORA/data/something/frames/24929/first.jpg", "AURORA/data/something/frames/24929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109131", "images": ["AURORA/data/something/frames/63853/first.jpg", "AURORA/data/something/frames/63853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109132", "images": ["AURORA/data/something/frames/62102/first.jpg", "AURORA/data/something/frames/62102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a box from behind of a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109133", "images": ["AURORA/data/something/frames/11178/first.jpg", "AURORA/data/something/frames/11178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109134", "images": ["AURORA/data/something/frames/146986/first.jpg", "AURORA/data/something/frames/146986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000109135", "images": ["AURORA/data/something/frames/147122/first.jpg", "AURORA/data/something/frames/147122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109136", "images": ["AURORA/data/something/frames/112391/first.jpg", "AURORA/data/something/frames/112391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109137", "images": ["AURORA/data/something/frames/68567/first.jpg", "AURORA/data/something/frames/68567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from behind of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000109138", "images": ["AURORA/data/something/frames/63756/first.jpg", "AURORA/data/something/frames/63756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109139", "images": ["AURORA/data/something/frames/110656/first.jpg", "AURORA/data/something/frames/110656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109140", "images": ["AURORA/data/something/frames/14379/first.jpg", "AURORA/data/something/frames/14379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paper with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109141", "images": ["AURORA/data/something/frames/96438/first.jpg", "AURORA/data/something/frames/96438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a plug in a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109142", "images": ["AURORA/data/something/frames/47281/first.jpg", "AURORA/data/something/frames/47281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109143", "images": ["AURORA/data/something/frames/76735/first.jpg", "AURORA/data/something/frames/76735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hanger until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109144", "images": ["AURORA/data/something/frames/86224/first.jpg", "AURORA/data/something/frames/86224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109145", "images": ["AURORA/data/something/frames/132792/first.jpg", "AURORA/data/something/frames/132792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109146", "images": ["AURORA/data/something/frames/64157/first.jpg", "AURORA/data/something/frames/64157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109147", "images": ["AURORA/data/something/frames/87048/first.jpg", "AURORA/data/something/frames/87048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dish cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109148", "images": ["AURORA/data/something/frames/44374/first.jpg", "AURORA/data/something/frames/44374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109149", "images": ["AURORA/data/something/frames/37726/first.jpg", "AURORA/data/something/frames/37726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000109150", "images": ["AURORA/data/something/frames/126083/first.jpg", "AURORA/data/something/frames/126083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109151", "images": ["AURORA/data/something/frames/168990/first.jpg", "AURORA/data/something/frames/168990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving teddy bear and stuffed toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109152", "images": ["AURORA/data/something/frames/167011/first.jpg", "AURORA/data/something/frames/167011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109153", "images": ["AURORA/data/something/frames/58448/first.jpg", "AURORA/data/something/frames/58448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109154", "images": ["AURORA/data/something/frames/157099/first.jpg", "AURORA/data/something/frames/157099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109155", "images": ["AURORA/data/something/frames/203238/first.jpg", "AURORA/data/something/frames/203238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into battery but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109156", "images": ["AURORA/data/something/frames/165344/first.jpg", "AURORA/data/something/frames/165344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking blocks so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109157", "images": ["AURORA/data/something/frames/12301/first.jpg", "AURORA/data/something/frames/12301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109158", "images": ["AURORA/data/something/frames/30826/first.jpg", "AURORA/data/something/frames/30826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying black spectacle box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109159", "images": ["AURORA/data/something/frames/85113/first.jpg", "AURORA/data/something/frames/85113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping suitcase up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109160", "images": ["AURORA/data/something/frames/193316/first.jpg", "AURORA/data/something/frames/193316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a binder clip out of a drawstring bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109161", "images": ["AURORA/data/something/frames/22079/first.jpg", "AURORA/data/something/frames/22079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109162", "images": ["AURORA/data/something/frames/218666/first.jpg", "AURORA/data/something/frames/218666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109163", "images": ["AURORA/data/something/frames/16629/first.jpg", "AURORA/data/something/frames/16629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109164", "images": ["AURORA/data/something/frames/210804/first.jpg", "AURORA/data/something/frames/210804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencils"}, {"from": "gpt", "value": ""}]} +{"id": "000000109165", "images": ["AURORA/data/something/frames/173393/first.jpg", "AURORA/data/something/frames/173393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109166", "images": ["AURORA/data/something/frames/134329/first.jpg", "AURORA/data/something/frames/134329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a jewellry box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109167", "images": ["AURORA/data/something/frames/38583/first.jpg", "AURORA/data/something/frames/38583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking orange post-it up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109168", "images": ["AURORA/data/something/frames/198001/first.jpg", "AURORA/data/something/frames/198001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sellotape down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109169", "images": ["AURORA/data/something/frames/90311/first.jpg", "AURORA/data/something/frames/90311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning orange cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109170", "images": ["AURORA/data/something/frames/211788/first.jpg", "AURORA/data/something/frames/211788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a spoon with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109171", "images": ["AURORA/data/something/frames/147302/first.jpg", "AURORA/data/something/frames/147302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screwdriver with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109172", "images": ["AURORA/data/something/frames/12303/first.jpg", "AURORA/data/something/frames/12303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wood next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000109173", "images": ["AURORA/data/something/frames/94351/first.jpg", "AURORA/data/something/frames/94351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering plastic tin with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109174", "images": ["AURORA/data/something/frames/22863/first.jpg", "AURORA/data/something/frames/22863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mobile down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109175", "images": ["AURORA/data/something/frames/193773/first.jpg", "AURORA/data/something/frames/193773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109176", "images": ["AURORA/data/something/frames/66676/first.jpg", "AURORA/data/something/frames/66676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting granola bar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109177", "images": ["AURORA/data/something/frames/11960/first.jpg", "AURORA/data/something/frames/11960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mushroom lamp on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109178", "images": ["AURORA/data/something/frames/13824/first.jpg", "AURORA/data/something/frames/13824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109179", "images": ["AURORA/data/something/frames/19813/first.jpg", "AURORA/data/something/frames/19813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109180", "images": ["AURORA/data/something/frames/113149/first.jpg", "AURORA/data/something/frames/113149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of colour pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109181", "images": ["AURORA/data/something/frames/24998/first.jpg", "AURORA/data/something/frames/24998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting can with ball on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109182", "images": ["AURORA/data/something/frames/70639/first.jpg", "AURORA/data/something/frames/70639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109183", "images": ["AURORA/data/something/frames/38104/first.jpg", "AURORA/data/something/frames/38104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109184", "images": ["AURORA/data/something/frames/18512/first.jpg", "AURORA/data/something/frames/18512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 white board clips onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109185", "images": ["AURORA/data/something/frames/15688/first.jpg", "AURORA/data/something/frames/15688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into flask"}, {"from": "gpt", "value": ""}]} +{"id": "000000109186", "images": ["AURORA/data/something/frames/98583/first.jpg", "AURORA/data/something/frames/98583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109187", "images": ["AURORA/data/something/frames/90782/first.jpg", "AURORA/data/something/frames/90782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109188", "images": ["AURORA/data/something/frames/66960/first.jpg", "AURORA/data/something/frames/66960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109189", "images": ["AURORA/data/something/frames/111010/first.jpg", "AURORA/data/something/frames/111010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109190", "images": ["AURORA/data/something/frames/45257/first.jpg", "AURORA/data/something/frames/45257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tissue box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109191", "images": ["AURORA/data/something/frames/93930/first.jpg", "AURORA/data/something/frames/93930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109192", "images": ["AURORA/data/something/frames/177788/first.jpg", "AURORA/data/something/frames/177788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ruler and masking tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109193", "images": ["AURORA/data/something/frames/214382/first.jpg", "AURORA/data/something/frames/214382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting lotion tube up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109194", "images": ["AURORA/data/something/frames/134760/first.jpg", "AURORA/data/something/frames/134760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting string into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109195", "images": ["AURORA/data/something/frames/28521/first.jpg", "AURORA/data/something/frames/28521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black usb and silver usb closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109196", "images": ["AURORA/data/something/frames/101339/first.jpg", "AURORA/data/something/frames/101339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109197", "images": ["AURORA/data/something/frames/131038/first.jpg", "AURORA/data/something/frames/131038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109198", "images": ["AURORA/data/something/frames/128519/first.jpg", "AURORA/data/something/frames/128519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109199", "images": ["AURORA/data/something/frames/116932/first.jpg", "AURORA/data/something/frames/116932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109200", "images": ["AURORA/data/something/frames/192259/first.jpg", "AURORA/data/something/frames/192259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109201", "images": ["AURORA/data/something/frames/18537/first.jpg", "AURORA/data/something/frames/18537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing garlic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109202", "images": ["AURORA/data/something/frames/127415/first.jpg", "AURORA/data/something/frames/127415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109203", "images": ["AURORA/data/something/frames/146324/first.jpg", "AURORA/data/something/frames/146324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109204", "images": ["AURORA/data/something/frames/6841/first.jpg", "AURORA/data/something/frames/6841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109205", "images": ["AURORA/data/something/frames/82588/first.jpg", "AURORA/data/something/frames/82588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting water bottle with mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109206", "images": ["AURORA/data/something/frames/14041/first.jpg", "AURORA/data/something/frames/14041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wicker basket upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109207", "images": ["AURORA/data/something/frames/217242/first.jpg", "AURORA/data/something/frames/217242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a battery from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109208", "images": ["AURORA/data/something/frames/106515/first.jpg", "AURORA/data/something/frames/106515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109209", "images": ["AURORA/data/something/frames/92375/first.jpg", "AURORA/data/something/frames/92375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109210", "images": ["AURORA/data/something/frames/54356/first.jpg", "AURORA/data/something/frames/54356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000109211", "images": ["AURORA/data/something/frames/4943/first.jpg", "AURORA/data/something/frames/4943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mobile with mobile on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109212", "images": ["AURORA/data/something/frames/14736/first.jpg", "AURORA/data/something/frames/14736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coasters up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109213", "images": ["AURORA/data/something/frames/198597/first.jpg", "AURORA/data/something/frames/198597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000109214", "images": ["AURORA/data/something/frames/211179/first.jpg", "AURORA/data/something/frames/211179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering smart watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109215", "images": ["AURORA/data/something/frames/103556/first.jpg", "AURORA/data/something/frames/103556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109216", "images": ["AURORA/data/something/frames/74367/first.jpg", "AURORA/data/something/frames/74367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a magnet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109217", "images": ["AURORA/data/something/frames/15225/first.jpg", "AURORA/data/something/frames/15225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109218", "images": ["AURORA/data/something/frames/105407/first.jpg", "AURORA/data/something/frames/105407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109219", "images": ["AURORA/data/something/frames/181923/first.jpg", "AURORA/data/something/frames/181923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109220", "images": ["AURORA/data/something/frames/150169/first.jpg", "AURORA/data/something/frames/150169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping orange juice off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109221", "images": ["AURORA/data/something/frames/144541/first.jpg", "AURORA/data/something/frames/144541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glas upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109222", "images": ["AURORA/data/something/frames/89133/first.jpg", "AURORA/data/something/frames/89133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109223", "images": ["AURORA/data/something/frames/148299/first.jpg", "AURORA/data/something/frames/148299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109224", "images": ["AURORA/data/something/frames/107330/first.jpg", "AURORA/data/something/frames/107330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothpick holder with toothpicks over, so toothpicks falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109225", "images": ["AURORA/data/something/frames/41456/first.jpg", "AURORA/data/something/frames/41456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from doors with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109226", "images": ["AURORA/data/something/frames/170517/first.jpg", "AURORA/data/something/frames/170517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109227", "images": ["AURORA/data/something/frames/116390/first.jpg", "AURORA/data/something/frames/116390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plate from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109228", "images": ["AURORA/data/something/frames/72436/first.jpg", "AURORA/data/something/frames/72436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shot glass in front of a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109229", "images": ["AURORA/data/something/frames/96769/first.jpg", "AURORA/data/something/frames/96769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card behind a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109230", "images": ["AURORA/data/something/frames/181022/first.jpg", "AURORA/data/something/frames/181022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000109231", "images": ["AURORA/data/something/frames/37559/first.jpg", "AURORA/data/something/frames/37559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork from holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109232", "images": ["AURORA/data/something/frames/70282/first.jpg", "AURORA/data/something/frames/70282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cup out of a cooler."}, {"from": "gpt", "value": ""}]} +{"id": "000000109233", "images": ["AURORA/data/something/frames/214528/first.jpg", "AURORA/data/something/frames/214528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109234", "images": ["AURORA/data/something/frames/143366/first.jpg", "AURORA/data/something/frames/143366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pasta out of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109235", "images": ["AURORA/data/something/frames/83680/first.jpg", "AURORA/data/something/frames/83680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109236", "images": ["AURORA/data/something/frames/9739/first.jpg", "AURORA/data/something/frames/9739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109237", "images": ["AURORA/data/something/frames/83875/first.jpg", "AURORA/data/something/frames/83875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109238", "images": ["AURORA/data/something/frames/143114/first.jpg", "AURORA/data/something/frames/143114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109239", "images": ["AURORA/data/something/frames/107951/first.jpg", "AURORA/data/something/frames/107951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109240", "images": ["AURORA/data/something/frames/21979/first.jpg", "AURORA/data/something/frames/21979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning paper upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109241", "images": ["AURORA/data/something/frames/213964/first.jpg", "AURORA/data/something/frames/213964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109242", "images": ["AURORA/data/something/frames/64096/first.jpg", "AURORA/data/something/frames/64096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dollar bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000109243", "images": ["AURORA/data/something/frames/130052/first.jpg", "AURORA/data/something/frames/130052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109244", "images": ["AURORA/data/something/frames/111220/first.jpg", "AURORA/data/something/frames/111220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109245", "images": ["AURORA/data/something/frames/165863/first.jpg", "AURORA/data/something/frames/165863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a peg upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109246", "images": ["AURORA/data/something/frames/80430/first.jpg", "AURORA/data/something/frames/80430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109247", "images": ["AURORA/data/something/frames/77222/first.jpg", "AURORA/data/something/frames/77222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling granola bar from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109248", "images": ["AURORA/data/something/frames/181804/first.jpg", "AURORA/data/something/frames/181804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109249", "images": ["AURORA/data/something/frames/32705/first.jpg", "AURORA/data/something/frames/32705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel closer to towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109250", "images": ["AURORA/data/something/frames/162583/first.jpg", "AURORA/data/something/frames/162583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109251", "images": ["AURORA/data/something/frames/34165/first.jpg", "AURORA/data/something/frames/34165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending comb so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109252", "images": ["AURORA/data/something/frames/172183/first.jpg", "AURORA/data/something/frames/172183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a polythene cover into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109253", "images": ["AURORA/data/something/frames/111829/first.jpg", "AURORA/data/something/frames/111829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109254", "images": ["AURORA/data/something/frames/68538/first.jpg", "AURORA/data/something/frames/68538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109255", "images": ["AURORA/data/something/frames/214284/first.jpg", "AURORA/data/something/frames/214284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubberband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109256", "images": ["AURORA/data/something/frames/16329/first.jpg", "AURORA/data/something/frames/16329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle similar to other bottles on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109257", "images": ["AURORA/data/something/frames/192372/first.jpg", "AURORA/data/something/frames/192372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109258", "images": ["AURORA/data/something/frames/205405/first.jpg", "AURORA/data/something/frames/205405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000109259", "images": ["AURORA/data/something/frames/28959/first.jpg", "AURORA/data/something/frames/28959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109260", "images": ["AURORA/data/something/frames/215517/first.jpg", "AURORA/data/something/frames/215517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a charger to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109261", "images": ["AURORA/data/something/frames/125352/first.jpg", "AURORA/data/something/frames/125352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109262", "images": ["AURORA/data/something/frames/59120/first.jpg", "AURORA/data/something/frames/59120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109263", "images": ["AURORA/data/something/frames/189326/first.jpg", "AURORA/data/something/frames/189326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting blender onto base"}, {"from": "gpt", "value": ""}]} +{"id": "000000109264", "images": ["AURORA/data/something/frames/146297/first.jpg", "AURORA/data/something/frames/146297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109265", "images": ["AURORA/data/something/frames/181908/first.jpg", "AURORA/data/something/frames/181908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109266", "images": ["AURORA/data/something/frames/82817/first.jpg", "AURORA/data/something/frames/82817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bear can, revealing a cup behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109267", "images": ["AURORA/data/something/frames/197725/first.jpg", "AURORA/data/something/frames/197725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chip until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109268", "images": ["AURORA/data/something/frames/162809/first.jpg", "AURORA/data/something/frames/162809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109269", "images": ["AURORA/data/something/frames/114357/first.jpg", "AURORA/data/something/frames/114357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle onto ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000109270", "images": ["AURORA/data/something/frames/86635/first.jpg", "AURORA/data/something/frames/86635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stepstool with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109271", "images": ["AURORA/data/something/frames/1967/first.jpg", "AURORA/data/something/frames/1967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109272", "images": ["AURORA/data/something/frames/12017/first.jpg", "AURORA/data/something/frames/12017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into silly putty"}, {"from": "gpt", "value": ""}]} +{"id": "000000109273", "images": ["AURORA/data/something/frames/80712/first.jpg", "AURORA/data/something/frames/80712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109274", "images": ["AURORA/data/something/frames/134047/first.jpg", "AURORA/data/something/frames/134047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109275", "images": ["AURORA/data/something/frames/23994/first.jpg", "AURORA/data/something/frames/23994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 juice boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109276", "images": ["AURORA/data/something/frames/78574/first.jpg", "AURORA/data/something/frames/78574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000109277", "images": ["AURORA/data/something/frames/56105/first.jpg", "AURORA/data/something/frames/56105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109278", "images": ["AURORA/data/something/frames/102477/first.jpg", "AURORA/data/something/frames/102477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109279", "images": ["AURORA/data/something/frames/172812/first.jpg", "AURORA/data/something/frames/172812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sandals from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109280", "images": ["AURORA/data/something/frames/84955/first.jpg", "AURORA/data/something/frames/84955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebook into bookbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109281", "images": ["AURORA/data/something/frames/86069/first.jpg", "AURORA/data/something/frames/86069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109282", "images": ["AURORA/data/something/frames/183503/first.jpg", "AURORA/data/something/frames/183503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking essential oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109283", "images": ["AURORA/data/something/frames/206654/first.jpg", "AURORA/data/something/frames/206654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000109284", "images": ["AURORA/data/something/frames/135618/first.jpg", "AURORA/data/something/frames/135618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of electric kettle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109285", "images": ["AURORA/data/something/frames/173949/first.jpg", "AURORA/data/something/frames/173949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109286", "images": ["AURORA/data/something/frames/12671/first.jpg", "AURORA/data/something/frames/12671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) knob of timer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109287", "images": ["AURORA/data/something/frames/157206/first.jpg", "AURORA/data/something/frames/157206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from wardrobe door"}, {"from": "gpt", "value": ""}]} +{"id": "000000109288", "images": ["AURORA/data/something/frames/99084/first.jpg", "AURORA/data/something/frames/99084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving newspaper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109289", "images": ["AURORA/data/something/frames/45447/first.jpg", "AURORA/data/something/frames/45447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109290", "images": ["AURORA/data/something/frames/140049/first.jpg", "AURORA/data/something/frames/140049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109291", "images": ["AURORA/data/something/frames/187821/first.jpg", "AURORA/data/something/frames/187821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109292", "images": ["AURORA/data/something/frames/134008/first.jpg", "AURORA/data/something/frames/134008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing perfume bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109293", "images": ["AURORA/data/something/frames/217460/first.jpg", "AURORA/data/something/frames/217460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109294", "images": ["AURORA/data/something/frames/155524/first.jpg", "AURORA/data/something/frames/155524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109295", "images": ["AURORA/data/something/frames/71437/first.jpg", "AURORA/data/something/frames/71437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109296", "images": ["AURORA/data/something/frames/76652/first.jpg", "AURORA/data/something/frames/76652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping chocolate candy off of sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000109297", "images": ["AURORA/data/something/frames/91726/first.jpg", "AURORA/data/something/frames/91726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a dish cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109298", "images": ["AURORA/data/something/frames/194012/first.jpg", "AURORA/data/something/frames/194012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a fork so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109299", "images": ["AURORA/data/something/frames/55138/first.jpg", "AURORA/data/something/frames/55138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109300", "images": ["AURORA/data/something/frames/26017/first.jpg", "AURORA/data/something/frames/26017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a keybound into a glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000109301", "images": ["AURORA/data/something/frames/104134/first.jpg", "AURORA/data/something/frames/104134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109302", "images": ["AURORA/data/something/frames/106042/first.jpg", "AURORA/data/something/frames/106042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering electronic component"}, {"from": "gpt", "value": ""}]} +{"id": "000000109303", "images": ["AURORA/data/something/frames/89774/first.jpg", "AURORA/data/something/frames/89774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming violin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109304", "images": ["AURORA/data/something/frames/55799/first.jpg", "AURORA/data/something/frames/55799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote control from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109305", "images": ["AURORA/data/something/frames/131321/first.jpg", "AURORA/data/something/frames/131321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toffee box away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109306", "images": ["AURORA/data/something/frames/213858/first.jpg", "AURORA/data/something/frames/213858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone wire into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109307", "images": ["AURORA/data/something/frames/109320/first.jpg", "AURORA/data/something/frames/109320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with peppermints over, so peppermints falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109308", "images": ["AURORA/data/something/frames/130117/first.jpg", "AURORA/data/something/frames/130117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a plastic can from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109309", "images": ["AURORA/data/something/frames/45141/first.jpg", "AURORA/data/something/frames/45141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pair of sunglasses with a large wooden spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109310", "images": ["AURORA/data/something/frames/34542/first.jpg", "AURORA/data/something/frames/34542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big marble and small marble so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109311", "images": ["AURORA/data/something/frames/68482/first.jpg", "AURORA/data/something/frames/68482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clips into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109312", "images": ["AURORA/data/something/frames/19268/first.jpg", "AURORA/data/something/frames/19268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109313", "images": ["AURORA/data/something/frames/51687/first.jpg", "AURORA/data/something/frames/51687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small pillow and iphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109314", "images": ["AURORA/data/something/frames/9995/first.jpg", "AURORA/data/something/frames/9995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109315", "images": ["AURORA/data/something/frames/85696/first.jpg", "AURORA/data/something/frames/85696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109316", "images": ["AURORA/data/something/frames/54662/first.jpg", "AURORA/data/something/frames/54662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109317", "images": ["AURORA/data/something/frames/110898/first.jpg", "AURORA/data/something/frames/110898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fragrance on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109318", "images": ["AURORA/data/something/frames/68808/first.jpg", "AURORA/data/something/frames/68808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the phone into the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109319", "images": ["AURORA/data/something/frames/204029/first.jpg", "AURORA/data/something/frames/204029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering battery with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109320", "images": ["AURORA/data/something/frames/74375/first.jpg", "AURORA/data/something/frames/74375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109321", "images": ["AURORA/data/something/frames/210088/first.jpg", "AURORA/data/something/frames/210088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cell phone onto blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109322", "images": ["AURORA/data/something/frames/153319/first.jpg", "AURORA/data/something/frames/153319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of toys so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109323", "images": ["AURORA/data/something/frames/96555/first.jpg", "AURORA/data/something/frames/96555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a cap to a bottle of perfume"}, {"from": "gpt", "value": ""}]} +{"id": "000000109324", "images": ["AURORA/data/something/frames/200667/first.jpg", "AURORA/data/something/frames/200667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white envelope from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109325", "images": ["AURORA/data/something/frames/11752/first.jpg", "AURORA/data/something/frames/11752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping paint can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109326", "images": ["AURORA/data/something/frames/83572/first.jpg", "AURORA/data/something/frames/83572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shoe onto a math book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109327", "images": ["AURORA/data/something/frames/18905/first.jpg", "AURORA/data/something/frames/18905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ladder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109328", "images": ["AURORA/data/something/frames/52036/first.jpg", "AURORA/data/something/frames/52036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser closer to sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000109329", "images": ["AURORA/data/something/frames/36265/first.jpg", "AURORA/data/something/frames/36265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109330", "images": ["AURORA/data/something/frames/63280/first.jpg", "AURORA/data/something/frames/63280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109331", "images": ["AURORA/data/something/frames/185128/first.jpg", "AURORA/data/something/frames/185128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting toy zelda with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109332", "images": ["AURORA/data/something/frames/47249/first.jpg", "AURORA/data/something/frames/47249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving food container away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109333", "images": ["AURORA/data/something/frames/188682/first.jpg", "AURORA/data/something/frames/188682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109334", "images": ["AURORA/data/something/frames/128743/first.jpg", "AURORA/data/something/frames/128743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook next to piggy bank"}, {"from": "gpt", "value": ""}]} +{"id": "000000109335", "images": ["AURORA/data/something/frames/31228/first.jpg", "AURORA/data/something/frames/31228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a match box towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109336", "images": ["AURORA/data/something/frames/147609/first.jpg", "AURORA/data/something/frames/147609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109337", "images": ["AURORA/data/something/frames/81115/first.jpg", "AURORA/data/something/frames/81115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109338", "images": ["AURORA/data/something/frames/99336/first.jpg", "AURORA/data/something/frames/99336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109339", "images": ["AURORA/data/something/frames/38120/first.jpg", "AURORA/data/something/frames/38120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000109340", "images": ["AURORA/data/something/frames/196133/first.jpg", "AURORA/data/something/frames/196133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of rubber"}, {"from": "gpt", "value": ""}]} +{"id": "000000109341", "images": ["AURORA/data/something/frames/24020/first.jpg", "AURORA/data/something/frames/24020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109342", "images": ["AURORA/data/something/frames/111253/first.jpg", "AURORA/data/something/frames/111253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109343", "images": ["AURORA/data/something/frames/206082/first.jpg", "AURORA/data/something/frames/206082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109344", "images": ["AURORA/data/something/frames/71283/first.jpg", "AURORA/data/something/frames/71283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending an ointment tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109345", "images": ["AURORA/data/something/frames/126955/first.jpg", "AURORA/data/something/frames/126955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109346", "images": ["AURORA/data/something/frames/194609/first.jpg", "AURORA/data/something/frames/194609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000109347", "images": ["AURORA/data/something/frames/114003/first.jpg", "AURORA/data/something/frames/114003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109348", "images": ["AURORA/data/something/frames/144789/first.jpg", "AURORA/data/something/frames/144789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000109349", "images": ["AURORA/data/something/frames/200621/first.jpg", "AURORA/data/something/frames/200621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a teddy bear with a bandanna"}, {"from": "gpt", "value": ""}]} +{"id": "000000109350", "images": ["AURORA/data/something/frames/183531/first.jpg", "AURORA/data/something/frames/183531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sheep bottom to sheep head"}, {"from": "gpt", "value": ""}]} +{"id": "000000109351", "images": ["AURORA/data/something/frames/220502/first.jpg", "AURORA/data/something/frames/220502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking packet from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109352", "images": ["AURORA/data/something/frames/206639/first.jpg", "AURORA/data/something/frames/206639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and lotion closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109353", "images": ["AURORA/data/something/frames/103427/first.jpg", "AURORA/data/something/frames/103427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a charger from behind of a teddy bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000109354", "images": ["AURORA/data/something/frames/22564/first.jpg", "AURORA/data/something/frames/22564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening new tab in web browser"}, {"from": "gpt", "value": ""}]} +{"id": "000000109355", "images": ["AURORA/data/something/frames/190590/first.jpg", "AURORA/data/something/frames/190590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109356", "images": ["AURORA/data/something/frames/149310/first.jpg", "AURORA/data/something/frames/149310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109357", "images": ["AURORA/data/something/frames/140548/first.jpg", "AURORA/data/something/frames/140548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109358", "images": ["AURORA/data/something/frames/94333/first.jpg", "AURORA/data/something/frames/94333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayons out of crayon box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109359", "images": ["AURORA/data/something/frames/115115/first.jpg", "AURORA/data/something/frames/115115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow colour marker pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109360", "images": ["AURORA/data/something/frames/146095/first.jpg", "AURORA/data/something/frames/146095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling nail varnish onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109361", "images": ["AURORA/data/something/frames/44710/first.jpg", "AURORA/data/something/frames/44710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109362", "images": ["AURORA/data/something/frames/212010/first.jpg", "AURORA/data/something/frames/212010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000109363", "images": ["AURORA/data/something/frames/102105/first.jpg", "AURORA/data/something/frames/102105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling nail cutter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109364", "images": ["AURORA/data/something/frames/34130/first.jpg", "AURORA/data/something/frames/34130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb charger into plug converter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109365", "images": ["AURORA/data/something/frames/78968/first.jpg", "AURORA/data/something/frames/78968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109366", "images": ["AURORA/data/something/frames/159158/first.jpg", "AURORA/data/something/frames/159158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a rubberband"}, {"from": "gpt", "value": ""}]} +{"id": "000000109367", "images": ["AURORA/data/something/frames/126929/first.jpg", "AURORA/data/something/frames/126929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109368", "images": ["AURORA/data/something/frames/124382/first.jpg", "AURORA/data/something/frames/124382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000109369", "images": ["AURORA/data/something/frames/64431/first.jpg", "AURORA/data/something/frames/64431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109370", "images": ["AURORA/data/something/frames/134169/first.jpg", "AURORA/data/something/frames/134169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe, pen bag and lipstick on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109371", "images": ["AURORA/data/something/frames/2456/first.jpg", "AURORA/data/something/frames/2456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109372", "images": ["AURORA/data/something/frames/216202/first.jpg", "AURORA/data/something/frames/216202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109373", "images": ["AURORA/data/something/frames/144417/first.jpg", "AURORA/data/something/frames/144417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109374", "images": ["AURORA/data/something/frames/124406/first.jpg", "AURORA/data/something/frames/124406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cellphone away from tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109375", "images": ["AURORA/data/something/frames/18508/first.jpg", "AURORA/data/something/frames/18508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109376", "images": ["AURORA/data/something/frames/129090/first.jpg", "AURORA/data/something/frames/129090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing laundry into a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109377", "images": ["AURORA/data/something/frames/98825/first.jpg", "AURORA/data/something/frames/98825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109378", "images": ["AURORA/data/something/frames/141570/first.jpg", "AURORA/data/something/frames/141570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000109379", "images": ["AURORA/data/something/frames/106638/first.jpg", "AURORA/data/something/frames/106638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109380", "images": ["AURORA/data/something/frames/197487/first.jpg", "AURORA/data/something/frames/197487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109381", "images": ["AURORA/data/something/frames/130587/first.jpg", "AURORA/data/something/frames/130587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen to pen cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000109382", "images": ["AURORA/data/something/frames/38879/first.jpg", "AURORA/data/something/frames/38879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109383", "images": ["AURORA/data/something/frames/14653/first.jpg", "AURORA/data/something/frames/14653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote control so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109384", "images": ["AURORA/data/something/frames/132617/first.jpg", "AURORA/data/something/frames/132617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving basket and computer mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109385", "images": ["AURORA/data/something/frames/71182/first.jpg", "AURORA/data/something/frames/71182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting quarter into lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109386", "images": ["AURORA/data/something/frames/150288/first.jpg", "AURORA/data/something/frames/150288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key into a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000109387", "images": ["AURORA/data/something/frames/44543/first.jpg", "AURORA/data/something/frames/44543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109388", "images": ["AURORA/data/something/frames/199515/first.jpg", "AURORA/data/something/frames/199515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling juice onto surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109389", "images": ["AURORA/data/something/frames/159628/first.jpg", "AURORA/data/something/frames/159628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109390", "images": ["AURORA/data/something/frames/36630/first.jpg", "AURORA/data/something/frames/36630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109391", "images": ["AURORA/data/something/frames/9705/first.jpg", "AURORA/data/something/frames/9705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling rubix cube from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109392", "images": ["AURORA/data/something/frames/111459/first.jpg", "AURORA/data/something/frames/111459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flower, pen and watch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109393", "images": ["AURORA/data/something/frames/145045/first.jpg", "AURORA/data/something/frames/145045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lemon onto cutting board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109394", "images": ["AURORA/data/something/frames/220639/first.jpg", "AURORA/data/something/frames/220639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching adaptor with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109395", "images": ["AURORA/data/something/frames/170461/first.jpg", "AURORA/data/something/frames/170461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green headlight from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109396", "images": ["AURORA/data/something/frames/184917/first.jpg", "AURORA/data/something/frames/184917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and ballpen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109397", "images": ["AURORA/data/something/frames/84107/first.jpg", "AURORA/data/something/frames/84107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109398", "images": ["AURORA/data/something/frames/69936/first.jpg", "AURORA/data/something/frames/69936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a minion on the edge of a rubix cube so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109399", "images": ["AURORA/data/something/frames/106175/first.jpg", "AURORA/data/something/frames/106175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109400", "images": ["AURORA/data/something/frames/61198/first.jpg", "AURORA/data/something/frames/61198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bathing soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000109401", "images": ["AURORA/data/something/frames/13825/first.jpg", "AURORA/data/something/frames/13825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109402", "images": ["AURORA/data/something/frames/127219/first.jpg", "AURORA/data/something/frames/127219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109403", "images": ["AURORA/data/something/frames/43830/first.jpg", "AURORA/data/something/frames/43830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping chocolate powder up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109404", "images": ["AURORA/data/something/frames/192169/first.jpg", "AURORA/data/something/frames/192169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109405", "images": ["AURORA/data/something/frames/14702/first.jpg", "AURORA/data/something/frames/14702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging bulb into wall receptacle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109406", "images": ["AURORA/data/something/frames/12024/first.jpg", "AURORA/data/something/frames/12024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lime into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109407", "images": ["AURORA/data/something/frames/161659/first.jpg", "AURORA/data/something/frames/161659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109408", "images": ["AURORA/data/something/frames/113311/first.jpg", "AURORA/data/something/frames/113311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet to a fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000109409", "images": ["AURORA/data/something/frames/109098/first.jpg", "AURORA/data/something/frames/109098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000109410", "images": ["AURORA/data/something/frames/101228/first.jpg", "AURORA/data/something/frames/101228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spoon with cap on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109411", "images": ["AURORA/data/something/frames/30461/first.jpg", "AURORA/data/something/frames/30461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair tie so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109412", "images": ["AURORA/data/something/frames/11795/first.jpg", "AURORA/data/something/frames/11795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with scissors on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109413", "images": ["AURORA/data/something/frames/72925/first.jpg", "AURORA/data/something/frames/72925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a marker out of a pencil holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109414", "images": ["AURORA/data/something/frames/40411/first.jpg", "AURORA/data/something/frames/40411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109415", "images": ["AURORA/data/something/frames/212650/first.jpg", "AURORA/data/something/frames/212650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stone with hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109416", "images": ["AURORA/data/something/frames/185946/first.jpg", "AURORA/data/something/frames/185946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting thread on the edge of cardboard so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109417", "images": ["AURORA/data/something/frames/54087/first.jpg", "AURORA/data/something/frames/54087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 white spoons onto duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000109418", "images": ["AURORA/data/something/frames/153558/first.jpg", "AURORA/data/something/frames/153558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into block but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109419", "images": ["AURORA/data/something/frames/21755/first.jpg", "AURORA/data/something/frames/21755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pillow without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109420", "images": ["AURORA/data/something/frames/95118/first.jpg", "AURORA/data/something/frames/95118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000109421", "images": ["AURORA/data/something/frames/182000/first.jpg", "AURORA/data/something/frames/182000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of comb without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109422", "images": ["AURORA/data/something/frames/7266/first.jpg", "AURORA/data/something/frames/7266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jar and another jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109423", "images": ["AURORA/data/something/frames/55629/first.jpg", "AURORA/data/something/frames/55629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bobby pin upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109424", "images": ["AURORA/data/something/frames/183182/first.jpg", "AURORA/data/something/frames/183182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109425", "images": ["AURORA/data/something/frames/174766/first.jpg", "AURORA/data/something/frames/174766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy idol with black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109426", "images": ["AURORA/data/something/frames/109267/first.jpg", "AURORA/data/something/frames/109267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109427", "images": ["AURORA/data/something/frames/47665/first.jpg", "AURORA/data/something/frames/47665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109428", "images": ["AURORA/data/something/frames/208876/first.jpg", "AURORA/data/something/frames/208876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109429", "images": ["AURORA/data/something/frames/64518/first.jpg", "AURORA/data/something/frames/64518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109430", "images": ["AURORA/data/something/frames/134711/first.jpg", "AURORA/data/something/frames/134711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple, spoon and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109431", "images": ["AURORA/data/something/frames/25434/first.jpg", "AURORA/data/something/frames/25434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a ukelele so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109432", "images": ["AURORA/data/something/frames/118720/first.jpg", "AURORA/data/something/frames/118720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109433", "images": ["AURORA/data/something/frames/23720/first.jpg", "AURORA/data/something/frames/23720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109434", "images": ["AURORA/data/something/frames/25683/first.jpg", "AURORA/data/something/frames/25683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109435", "images": ["AURORA/data/something/frames/99815/first.jpg", "AURORA/data/something/frames/99815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish bottle and post it notes closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109436", "images": ["AURORA/data/something/frames/9668/first.jpg", "AURORA/data/something/frames/9668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing rice into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109437", "images": ["AURORA/data/something/frames/55227/first.jpg", "AURORA/data/something/frames/55227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a clear plastic cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109438", "images": ["AURORA/data/something/frames/98080/first.jpg", "AURORA/data/something/frames/98080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the cup behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109439", "images": ["AURORA/data/something/frames/149058/first.jpg", "AURORA/data/something/frames/149058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing advertisement into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109440", "images": ["AURORA/data/something/frames/71351/first.jpg", "AURORA/data/something/frames/71351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soy sauce into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109441", "images": ["AURORA/data/something/frames/165072/first.jpg", "AURORA/data/something/frames/165072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting hand sanitizer with straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000109442", "images": ["AURORA/data/something/frames/71321/first.jpg", "AURORA/data/something/frames/71321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a gait belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109443", "images": ["AURORA/data/something/frames/111063/first.jpg", "AURORA/data/something/frames/111063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109444", "images": ["AURORA/data/something/frames/209791/first.jpg", "AURORA/data/something/frames/209791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an electrical power strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000109445", "images": ["AURORA/data/something/frames/177715/first.jpg", "AURORA/data/something/frames/177715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera clamp onto white note"}, {"from": "gpt", "value": ""}]} +{"id": "000000109446", "images": ["AURORA/data/something/frames/163230/first.jpg", "AURORA/data/something/frames/163230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing trash can from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109447", "images": ["AURORA/data/something/frames/89019/first.jpg", "AURORA/data/something/frames/89019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109448", "images": ["AURORA/data/something/frames/189832/first.jpg", "AURORA/data/something/frames/189832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with glove on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109449", "images": ["AURORA/data/something/frames/135765/first.jpg", "AURORA/data/something/frames/135765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glas on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109450", "images": ["AURORA/data/something/frames/149651/first.jpg", "AURORA/data/something/frames/149651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109451", "images": ["AURORA/data/something/frames/47752/first.jpg", "AURORA/data/something/frames/47752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109452", "images": ["AURORA/data/something/frames/154635/first.jpg", "AURORA/data/something/frames/154635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109453", "images": ["AURORA/data/something/frames/121865/first.jpg", "AURORA/data/something/frames/121865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109454", "images": ["AURORA/data/something/frames/57161/first.jpg", "AURORA/data/something/frames/57161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000109455", "images": ["AURORA/data/something/frames/41760/first.jpg", "AURORA/data/something/frames/41760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109456", "images": ["AURORA/data/something/frames/25126/first.jpg", "AURORA/data/something/frames/25126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring onto auto toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000109457", "images": ["AURORA/data/something/frames/202338/first.jpg", "AURORA/data/something/frames/202338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber-sheet so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109458", "images": ["AURORA/data/something/frames/215820/first.jpg", "AURORA/data/something/frames/215820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109459", "images": ["AURORA/data/something/frames/83363/first.jpg", "AURORA/data/something/frames/83363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shorts"}, {"from": "gpt", "value": ""}]} +{"id": "000000109460", "images": ["AURORA/data/something/frames/130852/first.jpg", "AURORA/data/something/frames/130852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109461", "images": ["AURORA/data/something/frames/22721/first.jpg", "AURORA/data/something/frames/22721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109462", "images": ["AURORA/data/something/frames/114340/first.jpg", "AURORA/data/something/frames/114340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bandanna"}, {"from": "gpt", "value": ""}]} +{"id": "000000109463", "images": ["AURORA/data/something/frames/99616/first.jpg", "AURORA/data/something/frames/99616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cds into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109464", "images": ["AURORA/data/something/frames/187253/first.jpg", "AURORA/data/something/frames/187253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple and khaki on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109465", "images": ["AURORA/data/something/frames/202896/first.jpg", "AURORA/data/something/frames/202896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109466", "images": ["AURORA/data/something/frames/191100/first.jpg", "AURORA/data/something/frames/191100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109467", "images": ["AURORA/data/something/frames/147281/first.jpg", "AURORA/data/something/frames/147281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching generator set with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109468", "images": ["AURORA/data/something/frames/136471/first.jpg", "AURORA/data/something/frames/136471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000109469", "images": ["AURORA/data/something/frames/164742/first.jpg", "AURORA/data/something/frames/164742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109470", "images": ["AURORA/data/something/frames/1919/first.jpg", "AURORA/data/something/frames/1919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109471", "images": ["AURORA/data/something/frames/190624/first.jpg", "AURORA/data/something/frames/190624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000109472", "images": ["AURORA/data/something/frames/55537/first.jpg", "AURORA/data/something/frames/55537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading perfume onto air"}, {"from": "gpt", "value": ""}]} +{"id": "000000109473", "images": ["AURORA/data/something/frames/163986/first.jpg", "AURORA/data/something/frames/163986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto large bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109474", "images": ["AURORA/data/something/frames/158480/first.jpg", "AURORA/data/something/frames/158480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109475", "images": ["AURORA/data/something/frames/218067/first.jpg", "AURORA/data/something/frames/218067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109476", "images": ["AURORA/data/something/frames/128842/first.jpg", "AURORA/data/something/frames/128842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109477", "images": ["AURORA/data/something/frames/71831/first.jpg", "AURORA/data/something/frames/71831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109478", "images": ["AURORA/data/something/frames/67254/first.jpg", "AURORA/data/something/frames/67254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a keyset away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109479", "images": ["AURORA/data/something/frames/197960/first.jpg", "AURORA/data/something/frames/197960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109480", "images": ["AURORA/data/something/frames/137210/first.jpg", "AURORA/data/something/frames/137210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nailpolish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109481", "images": ["AURORA/data/something/frames/209024/first.jpg", "AURORA/data/something/frames/209024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sheild closer to drum"}, {"from": "gpt", "value": ""}]} +{"id": "000000109482", "images": ["AURORA/data/something/frames/15038/first.jpg", "AURORA/data/something/frames/15038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109483", "images": ["AURORA/data/something/frames/85816/first.jpg", "AURORA/data/something/frames/85816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a table with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109484", "images": ["AURORA/data/something/frames/77768/first.jpg", "AURORA/data/something/frames/77768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109485", "images": ["AURORA/data/something/frames/48172/first.jpg", "AURORA/data/something/frames/48172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109486", "images": ["AURORA/data/something/frames/87488/first.jpg", "AURORA/data/something/frames/87488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe polish brush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109487", "images": ["AURORA/data/something/frames/111424/first.jpg", "AURORA/data/something/frames/111424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lid across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109488", "images": ["AURORA/data/something/frames/146707/first.jpg", "AURORA/data/something/frames/146707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000109489", "images": ["AURORA/data/something/frames/80439/first.jpg", "AURORA/data/something/frames/80439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and water container away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109490", "images": ["AURORA/data/something/frames/192204/first.jpg", "AURORA/data/something/frames/192204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden block on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109491", "images": ["AURORA/data/something/frames/13208/first.jpg", "AURORA/data/something/frames/13208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109492", "images": ["AURORA/data/something/frames/38204/first.jpg", "AURORA/data/something/frames/38204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a glass with a tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109493", "images": ["AURORA/data/something/frames/191873/first.jpg", "AURORA/data/something/frames/191873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109494", "images": ["AURORA/data/something/frames/39759/first.jpg", "AURORA/data/something/frames/39759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of cone shape object without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109495", "images": ["AURORA/data/something/frames/9894/first.jpg", "AURORA/data/something/frames/9894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spirometer upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109496", "images": ["AURORA/data/something/frames/106604/first.jpg", "AURORA/data/something/frames/106604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109497", "images": ["AURORA/data/something/frames/165780/first.jpg", "AURORA/data/something/frames/165780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coin closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109498", "images": ["AURORA/data/something/frames/171792/first.jpg", "AURORA/data/something/frames/171792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap off pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109499", "images": ["AURORA/data/something/frames/219659/first.jpg", "AURORA/data/something/frames/219659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle beer with bottle water"}, {"from": "gpt", "value": ""}]} +{"id": "000000109500", "images": ["AURORA/data/something/frames/8161/first.jpg", "AURORA/data/something/frames/8161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bag so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109501", "images": ["AURORA/data/something/frames/164310/first.jpg", "AURORA/data/something/frames/164310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chair on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109502", "images": ["AURORA/data/something/frames/137252/first.jpg", "AURORA/data/something/frames/137252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109503", "images": ["AURORA/data/something/frames/71122/first.jpg", "AURORA/data/something/frames/71122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109504", "images": ["AURORA/data/something/frames/195341/first.jpg", "AURORA/data/something/frames/195341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109505", "images": ["AURORA/data/something/frames/45391/first.jpg", "AURORA/data/something/frames/45391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note and pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109506", "images": ["AURORA/data/something/frames/44533/first.jpg", "AURORA/data/something/frames/44533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering aerrings"}, {"from": "gpt", "value": ""}]} +{"id": "000000109507", "images": ["AURORA/data/something/frames/181379/first.jpg", "AURORA/data/something/frames/181379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109508", "images": ["AURORA/data/something/frames/107474/first.jpg", "AURORA/data/something/frames/107474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening white hand gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109509", "images": ["AURORA/data/something/frames/217520/first.jpg", "AURORA/data/something/frames/217520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magazine up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109510", "images": ["AURORA/data/something/frames/180604/first.jpg", "AURORA/data/something/frames/180604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb connector into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109511", "images": ["AURORA/data/something/frames/202934/first.jpg", "AURORA/data/something/frames/202934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an envelope so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109512", "images": ["AURORA/data/something/frames/167052/first.jpg", "AURORA/data/something/frames/167052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109513", "images": ["AURORA/data/something/frames/130873/first.jpg", "AURORA/data/something/frames/130873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109514", "images": ["AURORA/data/something/frames/88277/first.jpg", "AURORA/data/something/frames/88277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking calculator from slab"}, {"from": "gpt", "value": ""}]} +{"id": "000000109515", "images": ["AURORA/data/something/frames/111996/first.jpg", "AURORA/data/something/frames/111996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking journal books"}, {"from": "gpt", "value": ""}]} +{"id": "000000109516", "images": ["AURORA/data/something/frames/204961/first.jpg", "AURORA/data/something/frames/204961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small game card from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109517", "images": ["AURORA/data/something/frames/189691/first.jpg", "AURORA/data/something/frames/189691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000109518", "images": ["AURORA/data/something/frames/10220/first.jpg", "AURORA/data/something/frames/10220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl of water"}, {"from": "gpt", "value": ""}]} +{"id": "000000109519", "images": ["AURORA/data/something/frames/122713/first.jpg", "AURORA/data/something/frames/122713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109520", "images": ["AURORA/data/something/frames/154214/first.jpg", "AURORA/data/something/frames/154214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting juicer, bowl and bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109521", "images": ["AURORA/data/something/frames/6155/first.jpg", "AURORA/data/something/frames/6155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a jug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109522", "images": ["AURORA/data/something/frames/153417/first.jpg", "AURORA/data/something/frames/153417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle into bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000109523", "images": ["AURORA/data/something/frames/90690/first.jpg", "AURORA/data/something/frames/90690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding socks"}, {"from": "gpt", "value": ""}]} +{"id": "000000109524", "images": ["AURORA/data/something/frames/161223/first.jpg", "AURORA/data/something/frames/161223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: marble colliding with stationary marble and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000109525", "images": ["AURORA/data/something/frames/62711/first.jpg", "AURORA/data/something/frames/62711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109526", "images": ["AURORA/data/something/frames/23992/first.jpg", "AURORA/data/something/frames/23992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109527", "images": ["AURORA/data/something/frames/202524/first.jpg", "AURORA/data/something/frames/202524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending net so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109528", "images": ["AURORA/data/something/frames/213014/first.jpg", "AURORA/data/something/frames/213014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking towel so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109529", "images": ["AURORA/data/something/frames/177542/first.jpg", "AURORA/data/something/frames/177542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109530", "images": ["AURORA/data/something/frames/52845/first.jpg", "AURORA/data/something/frames/52845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a charger onto a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109531", "images": ["AURORA/data/something/frames/63735/first.jpg", "AURORA/data/something/frames/63735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of plastic comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000109532", "images": ["AURORA/data/something/frames/162309/first.jpg", "AURORA/data/something/frames/162309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109533", "images": ["AURORA/data/something/frames/96112/first.jpg", "AURORA/data/something/frames/96112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 board clips onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109534", "images": ["AURORA/data/something/frames/215085/first.jpg", "AURORA/data/something/frames/215085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying mug on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109535", "images": ["AURORA/data/something/frames/149904/first.jpg", "AURORA/data/something/frames/149904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109536", "images": ["AURORA/data/something/frames/52437/first.jpg", "AURORA/data/something/frames/52437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smartphone and smartphone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109537", "images": ["AURORA/data/something/frames/85676/first.jpg", "AURORA/data/something/frames/85676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109538", "images": ["AURORA/data/something/frames/106178/first.jpg", "AURORA/data/something/frames/106178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109539", "images": ["AURORA/data/something/frames/185654/first.jpg", "AURORA/data/something/frames/185654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of remote without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109540", "images": ["AURORA/data/something/frames/56785/first.jpg", "AURORA/data/something/frames/56785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000109541", "images": ["AURORA/data/something/frames/71461/first.jpg", "AURORA/data/something/frames/71461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle of water from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109542", "images": ["AURORA/data/something/frames/87962/first.jpg", "AURORA/data/something/frames/87962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy train from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109543", "images": ["AURORA/data/something/frames/197100/first.jpg", "AURORA/data/something/frames/197100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and soap away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109544", "images": ["AURORA/data/something/frames/65387/first.jpg", "AURORA/data/something/frames/65387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109545", "images": ["AURORA/data/something/frames/31358/first.jpg", "AURORA/data/something/frames/31358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen to cape"}, {"from": "gpt", "value": ""}]} +{"id": "000000109546", "images": ["AURORA/data/something/frames/105409/first.jpg", "AURORA/data/something/frames/105409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser away from sharpner"}, {"from": "gpt", "value": ""}]} +{"id": "000000109547", "images": ["AURORA/data/something/frames/80748/first.jpg", "AURORA/data/something/frames/80748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109548", "images": ["AURORA/data/something/frames/37611/first.jpg", "AURORA/data/something/frames/37611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109549", "images": ["AURORA/data/something/frames/74814/first.jpg", "AURORA/data/something/frames/74814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting more forks on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109550", "images": ["AURORA/data/something/frames/121973/first.jpg", "AURORA/data/something/frames/121973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109551", "images": ["AURORA/data/something/frames/18441/first.jpg", "AURORA/data/something/frames/18441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109552", "images": ["AURORA/data/something/frames/37124/first.jpg", "AURORA/data/something/frames/37124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109553", "images": ["AURORA/data/something/frames/144247/first.jpg", "AURORA/data/something/frames/144247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109554", "images": ["AURORA/data/something/frames/147102/first.jpg", "AURORA/data/something/frames/147102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a keychain out of a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109555", "images": ["AURORA/data/something/frames/191696/first.jpg", "AURORA/data/something/frames/191696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail polish bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109556", "images": ["AURORA/data/something/frames/100646/first.jpg", "AURORA/data/something/frames/100646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glue on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109557", "images": ["AURORA/data/something/frames/8493/first.jpg", "AURORA/data/something/frames/8493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109558", "images": ["AURORA/data/something/frames/83389/first.jpg", "AURORA/data/something/frames/83389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue ballpen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109559", "images": ["AURORA/data/something/frames/81941/first.jpg", "AURORA/data/something/frames/81941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109560", "images": ["AURORA/data/something/frames/117808/first.jpg", "AURORA/data/something/frames/117808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubik cube behind card"}, {"from": "gpt", "value": ""}]} +{"id": "000000109561", "images": ["AURORA/data/something/frames/90414/first.jpg", "AURORA/data/something/frames/90414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from smart phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109562", "images": ["AURORA/data/something/frames/91105/first.jpg", "AURORA/data/something/frames/91105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kindle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109563", "images": ["AURORA/data/something/frames/3033/first.jpg", "AURORA/data/something/frames/3033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming emergency lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000109564", "images": ["AURORA/data/something/frames/120093/first.jpg", "AURORA/data/something/frames/120093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109565", "images": ["AURORA/data/something/frames/150888/first.jpg", "AURORA/data/something/frames/150888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the car key into contact"}, {"from": "gpt", "value": ""}]} +{"id": "000000109566", "images": ["AURORA/data/something/frames/114663/first.jpg", "AURORA/data/something/frames/114663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red punching machine away from hairclip"}, {"from": "gpt", "value": ""}]} +{"id": "000000109567", "images": ["AURORA/data/something/frames/83218/first.jpg", "AURORA/data/something/frames/83218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brush from many brushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109568", "images": ["AURORA/data/something/frames/106375/first.jpg", "AURORA/data/something/frames/106375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109569", "images": ["AURORA/data/something/frames/160421/first.jpg", "AURORA/data/something/frames/160421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109570", "images": ["AURORA/data/something/frames/164596/first.jpg", "AURORA/data/something/frames/164596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109571", "images": ["AURORA/data/something/frames/151607/first.jpg", "AURORA/data/something/frames/151607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lady away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109572", "images": ["AURORA/data/something/frames/171917/first.jpg", "AURORA/data/something/frames/171917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse into mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000109573", "images": ["AURORA/data/something/frames/189265/first.jpg", "AURORA/data/something/frames/189265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving orange and orange so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109574", "images": ["AURORA/data/something/frames/128250/first.jpg", "AURORA/data/something/frames/128250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000109575", "images": ["AURORA/data/something/frames/135927/first.jpg", "AURORA/data/something/frames/135927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000109576", "images": ["AURORA/data/something/frames/169971/first.jpg", "AURORA/data/something/frames/169971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109577", "images": ["AURORA/data/something/frames/217444/first.jpg", "AURORA/data/something/frames/217444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning lamp upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109578", "images": ["AURORA/data/something/frames/27612/first.jpg", "AURORA/data/something/frames/27612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a spoon with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109579", "images": ["AURORA/data/something/frames/201478/first.jpg", "AURORA/data/something/frames/201478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a wrist band"}, {"from": "gpt", "value": ""}]} +{"id": "000000109580", "images": ["AURORA/data/something/frames/149533/first.jpg", "AURORA/data/something/frames/149533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109581", "images": ["AURORA/data/something/frames/49887/first.jpg", "AURORA/data/something/frames/49887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: badminton bat colliding with another badminton bat and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000109582", "images": ["AURORA/data/something/frames/31856/first.jpg", "AURORA/data/something/frames/31856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) pencil of pencil holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109583", "images": ["AURORA/data/something/frames/18598/first.jpg", "AURORA/data/something/frames/18598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000109584", "images": ["AURORA/data/something/frames/15461/first.jpg", "AURORA/data/something/frames/15461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper weight and stapler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109585", "images": ["AURORA/data/something/frames/44330/first.jpg", "AURORA/data/something/frames/44330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one penny"}, {"from": "gpt", "value": ""}]} +{"id": "000000109586", "images": ["AURORA/data/something/frames/145576/first.jpg", "AURORA/data/something/frames/145576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching hammer to handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109587", "images": ["AURORA/data/something/frames/132936/first.jpg", "AURORA/data/something/frames/132936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109588", "images": ["AURORA/data/something/frames/75760/first.jpg", "AURORA/data/something/frames/75760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging flash drive into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109589", "images": ["AURORA/data/something/frames/43854/first.jpg", "AURORA/data/something/frames/43854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cream"}, {"from": "gpt", "value": ""}]} +{"id": "000000109590", "images": ["AURORA/data/something/frames/118706/first.jpg", "AURORA/data/something/frames/118706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109591", "images": ["AURORA/data/something/frames/90333/first.jpg", "AURORA/data/something/frames/90333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into a desk organizer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109592", "images": ["AURORA/data/something/frames/126565/first.jpg", "AURORA/data/something/frames/126565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying something on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109593", "images": ["AURORA/data/something/frames/62951/first.jpg", "AURORA/data/something/frames/62951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft glove towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109594", "images": ["AURORA/data/something/frames/150153/first.jpg", "AURORA/data/something/frames/150153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109595", "images": ["AURORA/data/something/frames/100503/first.jpg", "AURORA/data/something/frames/100503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109596", "images": ["AURORA/data/something/frames/66525/first.jpg", "AURORA/data/something/frames/66525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebook into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109597", "images": ["AURORA/data/something/frames/180887/first.jpg", "AURORA/data/something/frames/180887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key part of a keychain"}, {"from": "gpt", "value": ""}]} +{"id": "000000109598", "images": ["AURORA/data/something/frames/85305/first.jpg", "AURORA/data/something/frames/85305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109599", "images": ["AURORA/data/something/frames/207122/first.jpg", "AURORA/data/something/frames/207122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000109600", "images": ["AURORA/data/something/frames/205192/first.jpg", "AURORA/data/something/frames/205192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into laptop computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109601", "images": ["AURORA/data/something/frames/48323/first.jpg", "AURORA/data/something/frames/48323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a card out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109602", "images": ["AURORA/data/something/frames/135513/first.jpg", "AURORA/data/something/frames/135513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottle behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109603", "images": ["AURORA/data/something/frames/33649/first.jpg", "AURORA/data/something/frames/33649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toothbrush closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109604", "images": ["AURORA/data/something/frames/35162/first.jpg", "AURORA/data/something/frames/35162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wrist watch next to eyeglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109605", "images": ["AURORA/data/something/frames/74681/first.jpg", "AURORA/data/something/frames/74681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109606", "images": ["AURORA/data/something/frames/192273/first.jpg", "AURORA/data/something/frames/192273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a coin off of a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109607", "images": ["AURORA/data/something/frames/160092/first.jpg", "AURORA/data/something/frames/160092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hairbands onto pink note"}, {"from": "gpt", "value": ""}]} +{"id": "000000109608", "images": ["AURORA/data/something/frames/34475/first.jpg", "AURORA/data/something/frames/34475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a phone out of hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109609", "images": ["AURORA/data/something/frames/167714/first.jpg", "AURORA/data/something/frames/167714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pencil with a ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109610", "images": ["AURORA/data/something/frames/131096/first.jpg", "AURORA/data/something/frames/131096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three books onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109611", "images": ["AURORA/data/something/frames/66395/first.jpg", "AURORA/data/something/frames/66395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming waist basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109612", "images": ["AURORA/data/something/frames/60738/first.jpg", "AURORA/data/something/frames/60738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into mug, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109613", "images": ["AURORA/data/something/frames/6240/first.jpg", "AURORA/data/something/frames/6240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109614", "images": ["AURORA/data/something/frames/208346/first.jpg", "AURORA/data/something/frames/208346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109615", "images": ["AURORA/data/something/frames/58396/first.jpg", "AURORA/data/something/frames/58396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000109616", "images": ["AURORA/data/something/frames/44257/first.jpg", "AURORA/data/something/frames/44257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plant upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109617", "images": ["AURORA/data/something/frames/35525/first.jpg", "AURORA/data/something/frames/35525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying body cent bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000109618", "images": ["AURORA/data/something/frames/151544/first.jpg", "AURORA/data/something/frames/151544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109619", "images": ["AURORA/data/something/frames/75025/first.jpg", "AURORA/data/something/frames/75025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keyboard in front of backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000109620", "images": ["AURORA/data/something/frames/166698/first.jpg", "AURORA/data/something/frames/166698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109621", "images": ["AURORA/data/something/frames/123998/first.jpg", "AURORA/data/something/frames/123998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering magnifying gless with black cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109622", "images": ["AURORA/data/something/frames/134697/first.jpg", "AURORA/data/something/frames/134697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109623", "images": ["AURORA/data/something/frames/105356/first.jpg", "AURORA/data/something/frames/105356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bangle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109624", "images": ["AURORA/data/something/frames/10342/first.jpg", "AURORA/data/something/frames/10342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109625", "images": ["AURORA/data/something/frames/74411/first.jpg", "AURORA/data/something/frames/74411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing knife behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109626", "images": ["AURORA/data/something/frames/47720/first.jpg", "AURORA/data/something/frames/47720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000109627", "images": ["AURORA/data/something/frames/167210/first.jpg", "AURORA/data/something/frames/167210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rubik's cube colliding with jbl speaker and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109628", "images": ["AURORA/data/something/frames/175776/first.jpg", "AURORA/data/something/frames/175776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toothpick container closer to a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000109629", "images": ["AURORA/data/something/frames/201684/first.jpg", "AURORA/data/something/frames/201684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a deck out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109630", "images": ["AURORA/data/something/frames/214941/first.jpg", "AURORA/data/something/frames/214941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pillow next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000109631", "images": ["AURORA/data/something/frames/103887/first.jpg", "AURORA/data/something/frames/103887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109632", "images": ["AURORA/data/something/frames/148897/first.jpg", "AURORA/data/something/frames/148897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109633", "images": ["AURORA/data/something/frames/22021/first.jpg", "AURORA/data/something/frames/22021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109634", "images": ["AURORA/data/something/frames/4113/first.jpg", "AURORA/data/something/frames/4113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box next to a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109635", "images": ["AURORA/data/something/frames/151883/first.jpg", "AURORA/data/something/frames/151883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lighter and a phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109636", "images": ["AURORA/data/something/frames/43438/first.jpg", "AURORA/data/something/frames/43438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hairband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109637", "images": ["AURORA/data/something/frames/57933/first.jpg", "AURORA/data/something/frames/57933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000109638", "images": ["AURORA/data/something/frames/175849/first.jpg", "AURORA/data/something/frames/175849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109639", "images": ["AURORA/data/something/frames/153553/first.jpg", "AURORA/data/something/frames/153553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109640", "images": ["AURORA/data/something/frames/195131/first.jpg", "AURORA/data/something/frames/195131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an apple away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109641", "images": ["AURORA/data/something/frames/175113/first.jpg", "AURORA/data/something/frames/175113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plant away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109642", "images": ["AURORA/data/something/frames/69425/first.jpg", "AURORA/data/something/frames/69425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000109643", "images": ["AURORA/data/something/frames/155377/first.jpg", "AURORA/data/something/frames/155377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109644", "images": ["AURORA/data/something/frames/52761/first.jpg", "AURORA/data/something/frames/52761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000109645", "images": ["AURORA/data/something/frames/167435/first.jpg", "AURORA/data/something/frames/167435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy car into spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109646", "images": ["AURORA/data/something/frames/58934/first.jpg", "AURORA/data/something/frames/58934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail cutter away from toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000109647", "images": ["AURORA/data/something/frames/89321/first.jpg", "AURORA/data/something/frames/89321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cable out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109648", "images": ["AURORA/data/something/frames/35563/first.jpg", "AURORA/data/something/frames/35563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hairband into orange coloured cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109649", "images": ["AURORA/data/something/frames/151288/first.jpg", "AURORA/data/something/frames/151288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a paint brush out of a pen box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109650", "images": ["AURORA/data/something/frames/33399/first.jpg", "AURORA/data/something/frames/33399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109651", "images": ["AURORA/data/something/frames/115164/first.jpg", "AURORA/data/something/frames/115164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109652", "images": ["AURORA/data/something/frames/78091/first.jpg", "AURORA/data/something/frames/78091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000109653", "images": ["AURORA/data/something/frames/37715/first.jpg", "AURORA/data/something/frames/37715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flag down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109654", "images": ["AURORA/data/something/frames/203562/first.jpg", "AURORA/data/something/frames/203562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an apple from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000109655", "images": ["AURORA/data/something/frames/10071/first.jpg", "AURORA/data/something/frames/10071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109656", "images": ["AURORA/data/something/frames/20861/first.jpg", "AURORA/data/something/frames/20861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking textbook from shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000109657", "images": ["AURORA/data/something/frames/85942/first.jpg", "AURORA/data/something/frames/85942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glass with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109658", "images": ["AURORA/data/something/frames/51445/first.jpg", "AURORA/data/something/frames/51445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen next to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109659", "images": ["AURORA/data/something/frames/127045/first.jpg", "AURORA/data/something/frames/127045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing crumpled paper into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109660", "images": ["AURORA/data/something/frames/64510/first.jpg", "AURORA/data/something/frames/64510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109661", "images": ["AURORA/data/something/frames/128394/first.jpg", "AURORA/data/something/frames/128394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 red spoon onto calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000109662", "images": ["AURORA/data/something/frames/113500/first.jpg", "AURORA/data/something/frames/113500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cologne upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109663", "images": ["AURORA/data/something/frames/84755/first.jpg", "AURORA/data/something/frames/84755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting oven mitt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109664", "images": ["AURORA/data/something/frames/121069/first.jpg", "AURORA/data/something/frames/121069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109665", "images": ["AURORA/data/something/frames/95734/first.jpg", "AURORA/data/something/frames/95734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving crayons and pencilbox away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109666", "images": ["AURORA/data/something/frames/77638/first.jpg", "AURORA/data/something/frames/77638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing gear with metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000109667", "images": ["AURORA/data/something/frames/200159/first.jpg", "AURORA/data/something/frames/200159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109668", "images": ["AURORA/data/something/frames/58800/first.jpg", "AURORA/data/something/frames/58800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of charger so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109669", "images": ["AURORA/data/something/frames/185453/first.jpg", "AURORA/data/something/frames/185453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109670", "images": ["AURORA/data/something/frames/67829/first.jpg", "AURORA/data/something/frames/67829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109671", "images": ["AURORA/data/something/frames/213845/first.jpg", "AURORA/data/something/frames/213845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109672", "images": ["AURORA/data/something/frames/26534/first.jpg", "AURORA/data/something/frames/26534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109673", "images": ["AURORA/data/something/frames/84309/first.jpg", "AURORA/data/something/frames/84309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting charger next to yellowbook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109674", "images": ["AURORA/data/something/frames/106553/first.jpg", "AURORA/data/something/frames/106553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from tv with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109675", "images": ["AURORA/data/something/frames/178973/first.jpg", "AURORA/data/something/frames/178973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109676", "images": ["AURORA/data/something/frames/100109/first.jpg", "AURORA/data/something/frames/100109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screw with aluminium foil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109677", "images": ["AURORA/data/something/frames/16688/first.jpg", "AURORA/data/something/frames/16688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending candy so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109678", "images": ["AURORA/data/something/frames/96026/first.jpg", "AURORA/data/something/frames/96026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car bonnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109679", "images": ["AURORA/data/something/frames/137174/first.jpg", "AURORA/data/something/frames/137174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109680", "images": ["AURORA/data/something/frames/98350/first.jpg", "AURORA/data/something/frames/98350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from dogs with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109681", "images": ["AURORA/data/something/frames/86755/first.jpg", "AURORA/data/something/frames/86755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000109682", "images": ["AURORA/data/something/frames/210019/first.jpg", "AURORA/data/something/frames/210019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109683", "images": ["AURORA/data/something/frames/110490/first.jpg", "AURORA/data/something/frames/110490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109684", "images": ["AURORA/data/something/frames/98552/first.jpg", "AURORA/data/something/frames/98552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring ping pong balls onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109685", "images": ["AURORA/data/something/frames/176629/first.jpg", "AURORA/data/something/frames/176629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109686", "images": ["AURORA/data/something/frames/153423/first.jpg", "AURORA/data/something/frames/153423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109687", "images": ["AURORA/data/something/frames/147743/first.jpg", "AURORA/data/something/frames/147743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109688", "images": ["AURORA/data/something/frames/169323/first.jpg", "AURORA/data/something/frames/169323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109689", "images": ["AURORA/data/something/frames/162794/first.jpg", "AURORA/data/something/frames/162794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109690", "images": ["AURORA/data/something/frames/131012/first.jpg", "AURORA/data/something/frames/131012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving moving something and close each other closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109691", "images": ["AURORA/data/something/frames/46325/first.jpg", "AURORA/data/something/frames/46325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109692", "images": ["AURORA/data/something/frames/17467/first.jpg", "AURORA/data/something/frames/17467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 pill bottles onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109693", "images": ["AURORA/data/something/frames/124740/first.jpg", "AURORA/data/something/frames/124740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening green paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109694", "images": ["AURORA/data/something/frames/66786/first.jpg", "AURORA/data/something/frames/66786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109695", "images": ["AURORA/data/something/frames/203571/first.jpg", "AURORA/data/something/frames/203571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109696", "images": ["AURORA/data/something/frames/197179/first.jpg", "AURORA/data/something/frames/197179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ruler and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109697", "images": ["AURORA/data/something/frames/183008/first.jpg", "AURORA/data/something/frames/183008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sunglasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109698", "images": ["AURORA/data/something/frames/106909/first.jpg", "AURORA/data/something/frames/106909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109699", "images": ["AURORA/data/something/frames/208322/first.jpg", "AURORA/data/something/frames/208322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109700", "images": ["AURORA/data/something/frames/53280/first.jpg", "AURORA/data/something/frames/53280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109701", "images": ["AURORA/data/something/frames/216694/first.jpg", "AURORA/data/something/frames/216694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109702", "images": ["AURORA/data/something/frames/26641/first.jpg", "AURORA/data/something/frames/26641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler closer to punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000109703", "images": ["AURORA/data/something/frames/218058/first.jpg", "AURORA/data/something/frames/218058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: shoe being deflected from tripod"}, {"from": "gpt", "value": ""}]} +{"id": "000000109704", "images": ["AURORA/data/something/frames/115373/first.jpg", "AURORA/data/something/frames/115373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pillows"}, {"from": "gpt", "value": ""}]} +{"id": "000000109705", "images": ["AURORA/data/something/frames/2387/first.jpg", "AURORA/data/something/frames/2387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting school bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109706", "images": ["AURORA/data/something/frames/220576/first.jpg", "AURORA/data/something/frames/220576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109707", "images": ["AURORA/data/something/frames/216078/first.jpg", "AURORA/data/something/frames/216078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109708", "images": ["AURORA/data/something/frames/172009/first.jpg", "AURORA/data/something/frames/172009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing movie ticket into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109709", "images": ["AURORA/data/something/frames/152599/first.jpg", "AURORA/data/something/frames/152599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden stick closer to battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000109710", "images": ["AURORA/data/something/frames/33301/first.jpg", "AURORA/data/something/frames/33301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a padlock over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109711", "images": ["AURORA/data/something/frames/206677/first.jpg", "AURORA/data/something/frames/206677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109712", "images": ["AURORA/data/something/frames/138977/first.jpg", "AURORA/data/something/frames/138977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the window"}, {"from": "gpt", "value": ""}]} +{"id": "000000109713", "images": ["AURORA/data/something/frames/19238/first.jpg", "AURORA/data/something/frames/19238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming green headlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000109714", "images": ["AURORA/data/something/frames/215832/first.jpg", "AURORA/data/something/frames/215832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109715", "images": ["AURORA/data/something/frames/13923/first.jpg", "AURORA/data/something/frames/13923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109716", "images": ["AURORA/data/something/frames/94601/first.jpg", "AURORA/data/something/frames/94601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cereal up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109717", "images": ["AURORA/data/something/frames/168837/first.jpg", "AURORA/data/something/frames/168837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving adaptor away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109718", "images": ["AURORA/data/something/frames/105705/first.jpg", "AURORA/data/something/frames/105705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000109719", "images": ["AURORA/data/something/frames/16323/first.jpg", "AURORA/data/something/frames/16323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a fork closer to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109720", "images": ["AURORA/data/something/frames/25917/first.jpg", "AURORA/data/something/frames/25917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black trash can closer to white trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000109721", "images": ["AURORA/data/something/frames/177878/first.jpg", "AURORA/data/something/frames/177878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping markings off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000109722", "images": ["AURORA/data/something/frames/64594/first.jpg", "AURORA/data/something/frames/64594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a car and a car so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109723", "images": ["AURORA/data/something/frames/175878/first.jpg", "AURORA/data/something/frames/175878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109724", "images": ["AURORA/data/something/frames/14377/first.jpg", "AURORA/data/something/frames/14377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000109725", "images": ["AURORA/data/something/frames/156532/first.jpg", "AURORA/data/something/frames/156532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener next to sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000109726", "images": ["AURORA/data/something/frames/177721/first.jpg", "AURORA/data/something/frames/177721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking usb cable out of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109727", "images": ["AURORA/data/something/frames/42618/first.jpg", "AURORA/data/something/frames/42618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109728", "images": ["AURORA/data/something/frames/25759/first.jpg", "AURORA/data/something/frames/25759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109729", "images": ["AURORA/data/something/frames/185141/first.jpg", "AURORA/data/something/frames/185141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper plate just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109730", "images": ["AURORA/data/something/frames/19953/first.jpg", "AURORA/data/something/frames/19953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pick"}, {"from": "gpt", "value": ""}]} +{"id": "000000109731", "images": ["AURORA/data/something/frames/17984/first.jpg", "AURORA/data/something/frames/17984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil out of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109732", "images": ["AURORA/data/something/frames/119378/first.jpg", "AURORA/data/something/frames/119378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109733", "images": ["AURORA/data/something/frames/102277/first.jpg", "AURORA/data/something/frames/102277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cat and cube away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109734", "images": ["AURORA/data/something/frames/128426/first.jpg", "AURORA/data/something/frames/128426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting receipts"}, {"from": "gpt", "value": ""}]} +{"id": "000000109735", "images": ["AURORA/data/something/frames/220555/first.jpg", "AURORA/data/something/frames/220555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109736", "images": ["AURORA/data/something/frames/206961/first.jpg", "AURORA/data/something/frames/206961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109737", "images": ["AURORA/data/something/frames/165387/first.jpg", "AURORA/data/something/frames/165387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto an eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000109738", "images": ["AURORA/data/something/frames/59558/first.jpg", "AURORA/data/something/frames/59558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109739", "images": ["AURORA/data/something/frames/219477/first.jpg", "AURORA/data/something/frames/219477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109740", "images": ["AURORA/data/something/frames/206562/first.jpg", "AURORA/data/something/frames/206562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000109741", "images": ["AURORA/data/something/frames/220117/first.jpg", "AURORA/data/something/frames/220117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming biscuit packets"}, {"from": "gpt", "value": ""}]} +{"id": "000000109742", "images": ["AURORA/data/something/frames/201202/first.jpg", "AURORA/data/something/frames/201202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing compact cassette behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109743", "images": ["AURORA/data/something/frames/81513/first.jpg", "AURORA/data/something/frames/81513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an orange highlighter and a pink highlighter away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109744", "images": ["AURORA/data/something/frames/152254/first.jpg", "AURORA/data/something/frames/152254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag next to table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109745", "images": ["AURORA/data/something/frames/57686/first.jpg", "AURORA/data/something/frames/57686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000109746", "images": ["AURORA/data/something/frames/77754/first.jpg", "AURORA/data/something/frames/77754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wipe into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109747", "images": ["AURORA/data/something/frames/42588/first.jpg", "AURORA/data/something/frames/42588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting plastic wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000109748", "images": ["AURORA/data/something/frames/117866/first.jpg", "AURORA/data/something/frames/117866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a penguin off of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109749", "images": ["AURORA/data/something/frames/88490/first.jpg", "AURORA/data/something/frames/88490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000109750", "images": ["AURORA/data/something/frames/32140/first.jpg", "AURORA/data/something/frames/32140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tray with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109751", "images": ["AURORA/data/something/frames/50447/first.jpg", "AURORA/data/something/frames/50447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109752", "images": ["AURORA/data/something/frames/168974/first.jpg", "AURORA/data/something/frames/168974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109753", "images": ["AURORA/data/something/frames/171144/first.jpg", "AURORA/data/something/frames/171144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail polish bottle on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109754", "images": ["AURORA/data/something/frames/37100/first.jpg", "AURORA/data/something/frames/37100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109755", "images": ["AURORA/data/something/frames/178583/first.jpg", "AURORA/data/something/frames/178583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109756", "images": ["AURORA/data/something/frames/84028/first.jpg", "AURORA/data/something/frames/84028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: suitcase being deflected from sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000109757", "images": ["AURORA/data/something/frames/181859/first.jpg", "AURORA/data/something/frames/181859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser and pencil on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109758", "images": ["AURORA/data/something/frames/173218/first.jpg", "AURORA/data/something/frames/173218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a canister upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109759", "images": ["AURORA/data/something/frames/4736/first.jpg", "AURORA/data/something/frames/4736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bucket with a bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109760", "images": ["AURORA/data/something/frames/128016/first.jpg", "AURORA/data/something/frames/128016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring paper clip into plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109761", "images": ["AURORA/data/something/frames/112358/first.jpg", "AURORA/data/something/frames/112358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109762", "images": ["AURORA/data/something/frames/116605/first.jpg", "AURORA/data/something/frames/116605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding rexona deo lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000109763", "images": ["AURORA/data/something/frames/114326/first.jpg", "AURORA/data/something/frames/114326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109764", "images": ["AURORA/data/something/frames/159775/first.jpg", "AURORA/data/something/frames/159775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into hospots"}, {"from": "gpt", "value": ""}]} +{"id": "000000109765", "images": ["AURORA/data/something/frames/218215/first.jpg", "AURORA/data/something/frames/218215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109766", "images": ["AURORA/data/something/frames/27662/first.jpg", "AURORA/data/something/frames/27662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109767", "images": ["AURORA/data/something/frames/9368/first.jpg", "AURORA/data/something/frames/9368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking apple airpod out of apple airpods case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109768", "images": ["AURORA/data/something/frames/25859/first.jpg", "AURORA/data/something/frames/25859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109769", "images": ["AURORA/data/something/frames/215252/first.jpg", "AURORA/data/something/frames/215252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring oil into a measuring vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109770", "images": ["AURORA/data/something/frames/87227/first.jpg", "AURORA/data/something/frames/87227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling graims next to a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109771", "images": ["AURORA/data/something/frames/212793/first.jpg", "AURORA/data/something/frames/212793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a quarter onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109772", "images": ["AURORA/data/something/frames/99661/first.jpg", "AURORA/data/something/frames/99661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a clear plastic cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109773", "images": ["AURORA/data/something/frames/156377/first.jpg", "AURORA/data/something/frames/156377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a small cylinder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109774", "images": ["AURORA/data/something/frames/157959/first.jpg", "AURORA/data/something/frames/157959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming window"}, {"from": "gpt", "value": ""}]} +{"id": "000000109775", "images": ["AURORA/data/something/frames/93939/first.jpg", "AURORA/data/something/frames/93939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hairbrush up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109776", "images": ["AURORA/data/something/frames/13390/first.jpg", "AURORA/data/something/frames/13390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000109777", "images": ["AURORA/data/something/frames/35775/first.jpg", "AURORA/data/something/frames/35775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving biscuit pack away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109778", "images": ["AURORA/data/something/frames/51932/first.jpg", "AURORA/data/something/frames/51932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a hamper with its lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000109779", "images": ["AURORA/data/something/frames/76491/first.jpg", "AURORA/data/something/frames/76491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109780", "images": ["AURORA/data/something/frames/18477/first.jpg", "AURORA/data/something/frames/18477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains out of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000109781", "images": ["AURORA/data/something/frames/219936/first.jpg", "AURORA/data/something/frames/219936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cap and grape away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109782", "images": ["AURORA/data/something/frames/124090/first.jpg", "AURORA/data/something/frames/124090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging red-chili out of shallots"}, {"from": "gpt", "value": ""}]} +{"id": "000000109783", "images": ["AURORA/data/something/frames/161748/first.jpg", "AURORA/data/something/frames/161748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic in front of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109784", "images": ["AURORA/data/something/frames/173460/first.jpg", "AURORA/data/something/frames/173460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109785", "images": ["AURORA/data/something/frames/26067/first.jpg", "AURORA/data/something/frames/26067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000109786", "images": ["AURORA/data/something/frames/30290/first.jpg", "AURORA/data/something/frames/30290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fish into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109787", "images": ["AURORA/data/something/frames/64909/first.jpg", "AURORA/data/something/frames/64909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass out of cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109788", "images": ["AURORA/data/something/frames/93306/first.jpg", "AURORA/data/something/frames/93306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lime next to egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000109789", "images": ["AURORA/data/something/frames/17840/first.jpg", "AURORA/data/something/frames/17840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109790", "images": ["AURORA/data/something/frames/99578/first.jpg", "AURORA/data/something/frames/99578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109791", "images": ["AURORA/data/something/frames/37631/first.jpg", "AURORA/data/something/frames/37631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler off of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109792", "images": ["AURORA/data/something/frames/148405/first.jpg", "AURORA/data/something/frames/148405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109793", "images": ["AURORA/data/something/frames/152135/first.jpg", "AURORA/data/something/frames/152135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the tab part of a soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000109794", "images": ["AURORA/data/something/frames/212616/first.jpg", "AURORA/data/something/frames/212616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the edge of a decorative \"k\" so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109795", "images": ["AURORA/data/something/frames/157854/first.jpg", "AURORA/data/something/frames/157854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109796", "images": ["AURORA/data/something/frames/136901/first.jpg", "AURORA/data/something/frames/136901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109797", "images": ["AURORA/data/something/frames/27587/first.jpg", "AURORA/data/something/frames/27587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cellphone with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109798", "images": ["AURORA/data/something/frames/187013/first.jpg", "AURORA/data/something/frames/187013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chalk piece up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109799", "images": ["AURORA/data/something/frames/205263/first.jpg", "AURORA/data/something/frames/205263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery, sharpner and pebble on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109800", "images": ["AURORA/data/something/frames/33692/first.jpg", "AURORA/data/something/frames/33692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109801", "images": ["AURORA/data/something/frames/212972/first.jpg", "AURORA/data/something/frames/212972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spoon from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109802", "images": ["AURORA/data/something/frames/92553/first.jpg", "AURORA/data/something/frames/92553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109803", "images": ["AURORA/data/something/frames/163152/first.jpg", "AURORA/data/something/frames/163152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109804", "images": ["AURORA/data/something/frames/135030/first.jpg", "AURORA/data/something/frames/135030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: remote being deflected from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109805", "images": ["AURORA/data/something/frames/171180/first.jpg", "AURORA/data/something/frames/171180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coconut shell onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109806", "images": ["AURORA/data/something/frames/64574/first.jpg", "AURORA/data/something/frames/64574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shoebox up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109807", "images": ["AURORA/data/something/frames/168289/first.jpg", "AURORA/data/something/frames/168289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 15 news papers onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109808", "images": ["AURORA/data/something/frames/86157/first.jpg", "AURORA/data/something/frames/86157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109809", "images": ["AURORA/data/something/frames/110823/first.jpg", "AURORA/data/something/frames/110823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109810", "images": ["AURORA/data/something/frames/100314/first.jpg", "AURORA/data/something/frames/100314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109811", "images": ["AURORA/data/something/frames/39511/first.jpg", "AURORA/data/something/frames/39511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a plank of wood over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109812", "images": ["AURORA/data/something/frames/145951/first.jpg", "AURORA/data/something/frames/145951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the botyle away from the pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000109813", "images": ["AURORA/data/something/frames/218728/first.jpg", "AURORA/data/something/frames/218728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109814", "images": ["AURORA/data/something/frames/26992/first.jpg", "AURORA/data/something/frames/26992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bracelet up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109815", "images": ["AURORA/data/something/frames/3179/first.jpg", "AURORA/data/something/frames/3179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109816", "images": ["AURORA/data/something/frames/34400/first.jpg", "AURORA/data/something/frames/34400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109817", "images": ["AURORA/data/something/frames/49589/first.jpg", "AURORA/data/something/frames/49589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109818", "images": ["AURORA/data/something/frames/186011/first.jpg", "AURORA/data/something/frames/186011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving seat of rotating chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109819", "images": ["AURORA/data/something/frames/63590/first.jpg", "AURORA/data/something/frames/63590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000109820", "images": ["AURORA/data/something/frames/90847/first.jpg", "AURORA/data/something/frames/90847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109821", "images": ["AURORA/data/something/frames/5687/first.jpg", "AURORA/data/something/frames/5687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a power cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000109822", "images": ["AURORA/data/something/frames/158321/first.jpg", "AURORA/data/something/frames/158321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin similar to other coins that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109823", "images": ["AURORA/data/something/frames/45424/first.jpg", "AURORA/data/something/frames/45424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109824", "images": ["AURORA/data/something/frames/67850/first.jpg", "AURORA/data/something/frames/67850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109825", "images": ["AURORA/data/something/frames/131368/first.jpg", "AURORA/data/something/frames/131368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pink water bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109826", "images": ["AURORA/data/something/frames/94531/first.jpg", "AURORA/data/something/frames/94531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and car keys closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109827", "images": ["AURORA/data/something/frames/72753/first.jpg", "AURORA/data/something/frames/72753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting napkin and wooden bowl on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109828", "images": ["AURORA/data/something/frames/213887/first.jpg", "AURORA/data/something/frames/213887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from can"}, {"from": "gpt", "value": ""}]} +{"id": "000000109829", "images": ["AURORA/data/something/frames/158223/first.jpg", "AURORA/data/something/frames/158223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving button down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109830", "images": ["AURORA/data/something/frames/27560/first.jpg", "AURORA/data/something/frames/27560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000109831", "images": ["AURORA/data/something/frames/185208/first.jpg", "AURORA/data/something/frames/185208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109832", "images": ["AURORA/data/something/frames/8712/first.jpg", "AURORA/data/something/frames/8712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109833", "images": ["AURORA/data/something/frames/22007/first.jpg", "AURORA/data/something/frames/22007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning nail polish bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109834", "images": ["AURORA/data/something/frames/201036/first.jpg", "AURORA/data/something/frames/201036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109835", "images": ["AURORA/data/something/frames/81534/first.jpg", "AURORA/data/something/frames/81534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000109836", "images": ["AURORA/data/something/frames/206828/first.jpg", "AURORA/data/something/frames/206828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000109837", "images": ["AURORA/data/something/frames/65958/first.jpg", "AURORA/data/something/frames/65958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tissue box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109838", "images": ["AURORA/data/something/frames/131506/first.jpg", "AURORA/data/something/frames/131506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticker note to notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109839", "images": ["AURORA/data/something/frames/94676/first.jpg", "AURORA/data/something/frames/94676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging heater into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109840", "images": ["AURORA/data/something/frames/190282/first.jpg", "AURORA/data/something/frames/190282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of box without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109841", "images": ["AURORA/data/something/frames/42804/first.jpg", "AURORA/data/something/frames/42804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109842", "images": ["AURORA/data/something/frames/209327/first.jpg", "AURORA/data/something/frames/209327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing playingcard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109843", "images": ["AURORA/data/something/frames/215286/first.jpg", "AURORA/data/something/frames/215286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a garbage bin from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109844", "images": ["AURORA/data/something/frames/52486/first.jpg", "AURORA/data/something/frames/52486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming my hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000109845", "images": ["AURORA/data/something/frames/101591/first.jpg", "AURORA/data/something/frames/101591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000109846", "images": ["AURORA/data/something/frames/135799/first.jpg", "AURORA/data/something/frames/135799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109847", "images": ["AURORA/data/something/frames/34383/first.jpg", "AURORA/data/something/frames/34383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109848", "images": ["AURORA/data/something/frames/186984/first.jpg", "AURORA/data/something/frames/186984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pink toothbrush case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109849", "images": ["AURORA/data/something/frames/60622/first.jpg", "AURORA/data/something/frames/60622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cds"}, {"from": "gpt", "value": ""}]} +{"id": "000000109850", "images": ["AURORA/data/something/frames/130186/first.jpg", "AURORA/data/something/frames/130186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109851", "images": ["AURORA/data/something/frames/193548/first.jpg", "AURORA/data/something/frames/193548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup with pens over, so the pens falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109852", "images": ["AURORA/data/something/frames/92927/first.jpg", "AURORA/data/something/frames/92927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking ramekin so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109853", "images": ["AURORA/data/something/frames/40935/first.jpg", "AURORA/data/something/frames/40935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a flash drive into a port"}, {"from": "gpt", "value": ""}]} +{"id": "000000109854", "images": ["AURORA/data/something/frames/14358/first.jpg", "AURORA/data/something/frames/14358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109855", "images": ["AURORA/data/something/frames/174021/first.jpg", "AURORA/data/something/frames/174021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a banana upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000109856", "images": ["AURORA/data/something/frames/6726/first.jpg", "AURORA/data/something/frames/6726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing peanut butter jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109857", "images": ["AURORA/data/something/frames/65726/first.jpg", "AURORA/data/something/frames/65726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stuffed toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109858", "images": ["AURORA/data/something/frames/176369/first.jpg", "AURORA/data/something/frames/176369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109859", "images": ["AURORA/data/something/frames/168611/first.jpg", "AURORA/data/something/frames/168611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109860", "images": ["AURORA/data/something/frames/30926/first.jpg", "AURORA/data/something/frames/30926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring medicine onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109861", "images": ["AURORA/data/something/frames/177176/first.jpg", "AURORA/data/something/frames/177176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone behind clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000109862", "images": ["AURORA/data/something/frames/110251/first.jpg", "AURORA/data/something/frames/110251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping power bank into shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109863", "images": ["AURORA/data/something/frames/136736/first.jpg", "AURORA/data/something/frames/136736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair brush onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000109864", "images": ["AURORA/data/something/frames/168331/first.jpg", "AURORA/data/something/frames/168331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chewing gums on the edge of a jbl so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109865", "images": ["AURORA/data/something/frames/217219/first.jpg", "AURORA/data/something/frames/217219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cloth onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109866", "images": ["AURORA/data/something/frames/29804/first.jpg", "AURORA/data/something/frames/29804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle into bagback"}, {"from": "gpt", "value": ""}]} +{"id": "000000109867", "images": ["AURORA/data/something/frames/51600/first.jpg", "AURORA/data/something/frames/51600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000109868", "images": ["AURORA/data/something/frames/108924/first.jpg", "AURORA/data/something/frames/108924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a straw out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109869", "images": ["AURORA/data/something/frames/208297/first.jpg", "AURORA/data/something/frames/208297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle of rubbing alcohol upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109870", "images": ["AURORA/data/something/frames/183468/first.jpg", "AURORA/data/something/frames/183468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sugarpot with toothpic"}, {"from": "gpt", "value": ""}]} +{"id": "000000109871", "images": ["AURORA/data/something/frames/32184/first.jpg", "AURORA/data/something/frames/32184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a vacuum cleaner with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109872", "images": ["AURORA/data/something/frames/216847/first.jpg", "AURORA/data/something/frames/216847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109873", "images": ["AURORA/data/something/frames/157532/first.jpg", "AURORA/data/something/frames/157532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling ram up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109874", "images": ["AURORA/data/something/frames/114870/first.jpg", "AURORA/data/something/frames/114870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109875", "images": ["AURORA/data/something/frames/95419/first.jpg", "AURORA/data/something/frames/95419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a teaspoon out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109876", "images": ["AURORA/data/something/frames/73664/first.jpg", "AURORA/data/something/frames/73664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: small tube being deflected from jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109877", "images": ["AURORA/data/something/frames/169771/first.jpg", "AURORA/data/something/frames/169771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109878", "images": ["AURORA/data/something/frames/183987/first.jpg", "AURORA/data/something/frames/183987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into my mouth"}, {"from": "gpt", "value": ""}]} +{"id": "000000109879", "images": ["AURORA/data/something/frames/147830/first.jpg", "AURORA/data/something/frames/147830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cord into smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109880", "images": ["AURORA/data/something/frames/73286/first.jpg", "AURORA/data/something/frames/73286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tube into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109881", "images": ["AURORA/data/something/frames/149552/first.jpg", "AURORA/data/something/frames/149552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking box from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000109882", "images": ["AURORA/data/something/frames/166527/first.jpg", "AURORA/data/something/frames/166527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109883", "images": ["AURORA/data/something/frames/108028/first.jpg", "AURORA/data/something/frames/108028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate and banana away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109884", "images": ["AURORA/data/something/frames/99546/first.jpg", "AURORA/data/something/frames/99546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000109885", "images": ["AURORA/data/something/frames/122321/first.jpg", "AURORA/data/something/frames/122321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109886", "images": ["AURORA/data/something/frames/10622/first.jpg", "AURORA/data/something/frames/10622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bicycle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109887", "images": ["AURORA/data/something/frames/80770/first.jpg", "AURORA/data/something/frames/80770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000109888", "images": ["AURORA/data/something/frames/126237/first.jpg", "AURORA/data/something/frames/126237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy truck from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109889", "images": ["AURORA/data/something/frames/6591/first.jpg", "AURORA/data/something/frames/6591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler next to glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000109890", "images": ["AURORA/data/something/frames/209007/first.jpg", "AURORA/data/something/frames/209007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing granola bar from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109891", "images": ["AURORA/data/something/frames/24070/first.jpg", "AURORA/data/something/frames/24070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pant zip"}, {"from": "gpt", "value": ""}]} +{"id": "000000109892", "images": ["AURORA/data/something/frames/19426/first.jpg", "AURORA/data/something/frames/19426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lid of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109893", "images": ["AURORA/data/something/frames/17011/first.jpg", "AURORA/data/something/frames/17011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109894", "images": ["AURORA/data/something/frames/184270/first.jpg", "AURORA/data/something/frames/184270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109895", "images": ["AURORA/data/something/frames/69091/first.jpg", "AURORA/data/something/frames/69091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000109896", "images": ["AURORA/data/something/frames/19163/first.jpg", "AURORA/data/something/frames/19163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000109897", "images": ["AURORA/data/something/frames/110137/first.jpg", "AURORA/data/something/frames/110137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000109898", "images": ["AURORA/data/something/frames/134905/first.jpg", "AURORA/data/something/frames/134905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with muffin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000109899", "images": ["AURORA/data/something/frames/34102/first.jpg", "AURORA/data/something/frames/34102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109900", "images": ["AURORA/data/something/frames/171126/first.jpg", "AURORA/data/something/frames/171126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting essential oil bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109901", "images": ["AURORA/data/something/frames/1700/first.jpg", "AURORA/data/something/frames/1700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000109902", "images": ["AURORA/data/something/frames/210559/first.jpg", "AURORA/data/something/frames/210559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking purple balloon pump up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109903", "images": ["AURORA/data/something/frames/113300/first.jpg", "AURORA/data/something/frames/113300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109904", "images": ["AURORA/data/something/frames/166831/first.jpg", "AURORA/data/something/frames/166831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wash cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109905", "images": ["AURORA/data/something/frames/129391/first.jpg", "AURORA/data/something/frames/129391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape dispenser and mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109906", "images": ["AURORA/data/something/frames/8529/first.jpg", "AURORA/data/something/frames/8529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000109907", "images": ["AURORA/data/something/frames/179626/first.jpg", "AURORA/data/something/frames/179626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109908", "images": ["AURORA/data/something/frames/154417/first.jpg", "AURORA/data/something/frames/154417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109909", "images": ["AURORA/data/something/frames/144787/first.jpg", "AURORA/data/something/frames/144787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing mobile into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109910", "images": ["AURORA/data/something/frames/47357/first.jpg", "AURORA/data/something/frames/47357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109911", "images": ["AURORA/data/something/frames/166452/first.jpg", "AURORA/data/something/frames/166452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109912", "images": ["AURORA/data/something/frames/218843/first.jpg", "AURORA/data/something/frames/218843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000109913", "images": ["AURORA/data/something/frames/20462/first.jpg", "AURORA/data/something/frames/20462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy idol up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109914", "images": ["AURORA/data/something/frames/37158/first.jpg", "AURORA/data/something/frames/37158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109915", "images": ["AURORA/data/something/frames/67465/first.jpg", "AURORA/data/something/frames/67465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking hat so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000109916", "images": ["AURORA/data/something/frames/172870/first.jpg", "AURORA/data/something/frames/172870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin next to handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000109917", "images": ["AURORA/data/something/frames/38332/first.jpg", "AURORA/data/something/frames/38332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cable into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109918", "images": ["AURORA/data/something/frames/143246/first.jpg", "AURORA/data/something/frames/143246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something similar on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109919", "images": ["AURORA/data/something/frames/105257/first.jpg", "AURORA/data/something/frames/105257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a jug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109920", "images": ["AURORA/data/something/frames/14341/first.jpg", "AURORA/data/something/frames/14341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pencil holder over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109921", "images": ["AURORA/data/something/frames/29244/first.jpg", "AURORA/data/something/frames/29244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green water bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109922", "images": ["AURORA/data/something/frames/141353/first.jpg", "AURORA/data/something/frames/141353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109923", "images": ["AURORA/data/something/frames/209666/first.jpg", "AURORA/data/something/frames/209666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming ad board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109924", "images": ["AURORA/data/something/frames/171946/first.jpg", "AURORA/data/something/frames/171946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flash drive and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109925", "images": ["AURORA/data/something/frames/39485/first.jpg", "AURORA/data/something/frames/39485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109926", "images": ["AURORA/data/something/frames/216966/first.jpg", "AURORA/data/something/frames/216966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109927", "images": ["AURORA/data/something/frames/11416/first.jpg", "AURORA/data/something/frames/11416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of beaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000109928", "images": ["AURORA/data/something/frames/61575/first.jpg", "AURORA/data/something/frames/61575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000109929", "images": ["AURORA/data/something/frames/99989/first.jpg", "AURORA/data/something/frames/99989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking two small containers into a bigger one"}, {"from": "gpt", "value": ""}]} +{"id": "000000109930", "images": ["AURORA/data/something/frames/115014/first.jpg", "AURORA/data/something/frames/115014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000109931", "images": ["AURORA/data/something/frames/148751/first.jpg", "AURORA/data/something/frames/148751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains onto small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000109932", "images": ["AURORA/data/something/frames/46467/first.jpg", "AURORA/data/something/frames/46467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tin and tin away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109933", "images": ["AURORA/data/something/frames/896/first.jpg", "AURORA/data/something/frames/896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, candle and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000109934", "images": ["AURORA/data/something/frames/97293/first.jpg", "AURORA/data/something/frames/97293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping usb wall adapter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109935", "images": ["AURORA/data/something/frames/144730/first.jpg", "AURORA/data/something/frames/144730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109936", "images": ["AURORA/data/something/frames/116897/first.jpg", "AURORA/data/something/frames/116897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109937", "images": ["AURORA/data/something/frames/124638/first.jpg", "AURORA/data/something/frames/124638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109938", "images": ["AURORA/data/something/frames/191468/first.jpg", "AURORA/data/something/frames/191468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cord into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000109939", "images": ["AURORA/data/something/frames/157786/first.jpg", "AURORA/data/something/frames/157786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000109940", "images": ["AURORA/data/something/frames/183879/first.jpg", "AURORA/data/something/frames/183879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000109941", "images": ["AURORA/data/something/frames/145627/first.jpg", "AURORA/data/something/frames/145627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into wall jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000109942", "images": ["AURORA/data/something/frames/197913/first.jpg", "AURORA/data/something/frames/197913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000109943", "images": ["AURORA/data/something/frames/27545/first.jpg", "AURORA/data/something/frames/27545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving body spray bottle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109944", "images": ["AURORA/data/something/frames/193397/first.jpg", "AURORA/data/something/frames/193397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109945", "images": ["AURORA/data/something/frames/95575/first.jpg", "AURORA/data/something/frames/95575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar closer to a big jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000109946", "images": ["AURORA/data/something/frames/60523/first.jpg", "AURORA/data/something/frames/60523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a padlock away from a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000109947", "images": ["AURORA/data/something/frames/50992/first.jpg", "AURORA/data/something/frames/50992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking green water bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109948", "images": ["AURORA/data/something/frames/99441/first.jpg", "AURORA/data/something/frames/99441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pencil with sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000109949", "images": ["AURORA/data/something/frames/44912/first.jpg", "AURORA/data/something/frames/44912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109950", "images": ["AURORA/data/something/frames/70174/first.jpg", "AURORA/data/something/frames/70174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a reusable grocery bag into its holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000109951", "images": ["AURORA/data/something/frames/162511/first.jpg", "AURORA/data/something/frames/162511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jar from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109952", "images": ["AURORA/data/something/frames/74448/first.jpg", "AURORA/data/something/frames/74448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bear next to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000109953", "images": ["AURORA/data/something/frames/58633/first.jpg", "AURORA/data/something/frames/58633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000109954", "images": ["AURORA/data/something/frames/9172/first.jpg", "AURORA/data/something/frames/9172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000109955", "images": ["AURORA/data/something/frames/28988/first.jpg", "AURORA/data/something/frames/28988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging speaker into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109956", "images": ["AURORA/data/something/frames/40467/first.jpg", "AURORA/data/something/frames/40467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000109957", "images": ["AURORA/data/something/frames/99688/first.jpg", "AURORA/data/something/frames/99688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000109958", "images": ["AURORA/data/something/frames/170835/first.jpg", "AURORA/data/something/frames/170835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109959", "images": ["AURORA/data/something/frames/214453/first.jpg", "AURORA/data/something/frames/214453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000109960", "images": ["AURORA/data/something/frames/13332/first.jpg", "AURORA/data/something/frames/13332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109961", "images": ["AURORA/data/something/frames/20284/first.jpg", "AURORA/data/something/frames/20284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling poker chips up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109962", "images": ["AURORA/data/something/frames/189961/first.jpg", "AURORA/data/something/frames/189961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000109963", "images": ["AURORA/data/something/frames/55425/first.jpg", "AURORA/data/something/frames/55425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cleaning cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000109964", "images": ["AURORA/data/something/frames/191/first.jpg", "AURORA/data/something/frames/191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bucket, revealing thread behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000109965", "images": ["AURORA/data/something/frames/40084/first.jpg", "AURORA/data/something/frames/40084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling towels up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109966", "images": ["AURORA/data/something/frames/158456/first.jpg", "AURORA/data/something/frames/158456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109967", "images": ["AURORA/data/something/frames/59578/first.jpg", "AURORA/data/something/frames/59578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a tv remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109968", "images": ["AURORA/data/something/frames/185684/first.jpg", "AURORA/data/something/frames/185684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109969", "images": ["AURORA/data/something/frames/167440/first.jpg", "AURORA/data/something/frames/167440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with a magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000109970", "images": ["AURORA/data/something/frames/37272/first.jpg", "AURORA/data/something/frames/37272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109971", "images": ["AURORA/data/something/frames/67293/first.jpg", "AURORA/data/something/frames/67293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vegetable peeler"}, {"from": "gpt", "value": ""}]} +{"id": "000000109972", "images": ["AURORA/data/something/frames/77730/first.jpg", "AURORA/data/something/frames/77730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pencil case with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000109973", "images": ["AURORA/data/something/frames/51253/first.jpg", "AURORA/data/something/frames/51253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a can of soda up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109974", "images": ["AURORA/data/something/frames/118118/first.jpg", "AURORA/data/something/frames/118118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shoe brush onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109975", "images": ["AURORA/data/something/frames/159354/first.jpg", "AURORA/data/something/frames/159354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pistachio being deflected from mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000109976", "images": ["AURORA/data/something/frames/116499/first.jpg", "AURORA/data/something/frames/116499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000109977", "images": ["AURORA/data/something/frames/151473/first.jpg", "AURORA/data/something/frames/151473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109978", "images": ["AURORA/data/something/frames/52704/first.jpg", "AURORA/data/something/frames/52704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling something from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000109979", "images": ["AURORA/data/something/frames/215808/first.jpg", "AURORA/data/something/frames/215808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000109980", "images": ["AURORA/data/something/frames/36216/first.jpg", "AURORA/data/something/frames/36216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000109981", "images": ["AURORA/data/something/frames/214631/first.jpg", "AURORA/data/something/frames/214631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling tea onto napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000109982", "images": ["AURORA/data/something/frames/38907/first.jpg", "AURORA/data/something/frames/38907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with hat on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109983", "images": ["AURORA/data/something/frames/82000/first.jpg", "AURORA/data/something/frames/82000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing battery with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000109984", "images": ["AURORA/data/something/frames/103694/first.jpg", "AURORA/data/something/frames/103694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000109985", "images": ["AURORA/data/something/frames/13224/first.jpg", "AURORA/data/something/frames/13224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paint brush on the edge of a table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000109986", "images": ["AURORA/data/something/frames/82410/first.jpg", "AURORA/data/something/frames/82410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with plastic scope"}, {"from": "gpt", "value": ""}]} +{"id": "000000109987", "images": ["AURORA/data/something/frames/60535/first.jpg", "AURORA/data/something/frames/60535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109988", "images": ["AURORA/data/something/frames/65278/first.jpg", "AURORA/data/something/frames/65278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging guitar cable into amplifier"}, {"from": "gpt", "value": ""}]} +{"id": "000000109989", "images": ["AURORA/data/something/frames/141363/first.jpg", "AURORA/data/something/frames/141363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and wristwatch away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109990", "images": ["AURORA/data/something/frames/146434/first.jpg", "AURORA/data/something/frames/146434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000109991", "images": ["AURORA/data/something/frames/134313/first.jpg", "AURORA/data/something/frames/134313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and can so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000109992", "images": ["AURORA/data/something/frames/87489/first.jpg", "AURORA/data/something/frames/87489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming boay"}, {"from": "gpt", "value": ""}]} +{"id": "000000109993", "images": ["AURORA/data/something/frames/106988/first.jpg", "AURORA/data/something/frames/106988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a spray bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000109994", "images": ["AURORA/data/something/frames/151140/first.jpg", "AURORA/data/something/frames/151140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling thermal cup from behind of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000109995", "images": ["AURORA/data/something/frames/72890/first.jpg", "AURORA/data/something/frames/72890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000109996", "images": ["AURORA/data/something/frames/114754/first.jpg", "AURORA/data/something/frames/114754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cardboard so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000109997", "images": ["AURORA/data/something/frames/159461/first.jpg", "AURORA/data/something/frames/159461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000109998", "images": ["AURORA/data/something/frames/108710/first.jpg", "AURORA/data/something/frames/108710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring oil onto crust of bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000109999", "images": ["AURORA/data/something/frames/33285/first.jpg", "AURORA/data/something/frames/33285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110000", "images": ["AURORA/data/something/frames/196239/first.jpg", "AURORA/data/something/frames/196239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling keys out of a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000110001", "images": ["AURORA/data/something/frames/182342/first.jpg", "AURORA/data/something/frames/182342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a case so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110002", "images": ["AURORA/data/something/frames/139047/first.jpg", "AURORA/data/something/frames/139047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110003", "images": ["AURORA/data/something/frames/110024/first.jpg", "AURORA/data/something/frames/110024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming radiator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110004", "images": ["AURORA/data/something/frames/133827/first.jpg", "AURORA/data/something/frames/133827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with sandwich on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110005", "images": ["AURORA/data/something/frames/68610/first.jpg", "AURORA/data/something/frames/68610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110006", "images": ["AURORA/data/something/frames/138183/first.jpg", "AURORA/data/something/frames/138183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cd case on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110007", "images": ["AURORA/data/something/frames/84890/first.jpg", "AURORA/data/something/frames/84890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110008", "images": ["AURORA/data/something/frames/16715/first.jpg", "AURORA/data/something/frames/16715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering garlic"}, {"from": "gpt", "value": ""}]} +{"id": "000000110009", "images": ["AURORA/data/something/frames/124861/first.jpg", "AURORA/data/something/frames/124861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil away from a salt shaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000110010", "images": ["AURORA/data/something/frames/23384/first.jpg", "AURORA/data/something/frames/23384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing reciept into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110011", "images": ["AURORA/data/something/frames/59942/first.jpg", "AURORA/data/something/frames/59942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110012", "images": ["AURORA/data/something/frames/204806/first.jpg", "AURORA/data/something/frames/204806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110013", "images": ["AURORA/data/something/frames/24244/first.jpg", "AURORA/data/something/frames/24244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting white wall with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110014", "images": ["AURORA/data/something/frames/120997/first.jpg", "AURORA/data/something/frames/120997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mug from jeep bonnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110015", "images": ["AURORA/data/something/frames/90675/first.jpg", "AURORA/data/something/frames/90675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of eraser putty so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110016", "images": ["AURORA/data/something/frames/176452/first.jpg", "AURORA/data/something/frames/176452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sharpener out of pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110017", "images": ["AURORA/data/something/frames/70567/first.jpg", "AURORA/data/something/frames/70567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110018", "images": ["AURORA/data/something/frames/123505/first.jpg", "AURORA/data/something/frames/123505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110019", "images": ["AURORA/data/something/frames/92206/first.jpg", "AURORA/data/something/frames/92206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cups so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110020", "images": ["AURORA/data/something/frames/81169/first.jpg", "AURORA/data/something/frames/81169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110021", "images": ["AURORA/data/something/frames/16561/first.jpg", "AURORA/data/something/frames/16561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tray with a glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110022", "images": ["AURORA/data/something/frames/178029/first.jpg", "AURORA/data/something/frames/178029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting passport on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110023", "images": ["AURORA/data/something/frames/40232/first.jpg", "AURORA/data/something/frames/40232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling battery from behind of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110024", "images": ["AURORA/data/something/frames/181729/first.jpg", "AURORA/data/something/frames/181729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pencil holder with a yo-yo over, so the yo-yo falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110025", "images": ["AURORA/data/something/frames/150002/first.jpg", "AURORA/data/something/frames/150002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110026", "images": ["AURORA/data/something/frames/121116/first.jpg", "AURORA/data/something/frames/121116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110027", "images": ["AURORA/data/something/frames/165618/first.jpg", "AURORA/data/something/frames/165618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) keyboard of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110028", "images": ["AURORA/data/something/frames/198297/first.jpg", "AURORA/data/something/frames/198297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching violin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110029", "images": ["AURORA/data/something/frames/188257/first.jpg", "AURORA/data/something/frames/188257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing punching machine from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110030", "images": ["AURORA/data/something/frames/5720/first.jpg", "AURORA/data/something/frames/5720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming green headlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000110031", "images": ["AURORA/data/something/frames/46974/first.jpg", "AURORA/data/something/frames/46974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a drawing on paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110032", "images": ["AURORA/data/something/frames/123773/first.jpg", "AURORA/data/something/frames/123773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110033", "images": ["AURORA/data/something/frames/167461/first.jpg", "AURORA/data/something/frames/167461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110034", "images": ["AURORA/data/something/frames/45220/first.jpg", "AURORA/data/something/frames/45220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110035", "images": ["AURORA/data/something/frames/64759/first.jpg", "AURORA/data/something/frames/64759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) purple sock wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110036", "images": ["AURORA/data/something/frames/143387/first.jpg", "AURORA/data/something/frames/143387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110037", "images": ["AURORA/data/something/frames/105081/first.jpg", "AURORA/data/something/frames/105081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110038", "images": ["AURORA/data/something/frames/187165/first.jpg", "AURORA/data/something/frames/187165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 envelopes onto tables"}, {"from": "gpt", "value": ""}]} +{"id": "000000110039", "images": ["AURORA/data/something/frames/13564/first.jpg", "AURORA/data/something/frames/13564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto an absorbent cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110040", "images": ["AURORA/data/something/frames/142592/first.jpg", "AURORA/data/something/frames/142592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bag of gum upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110041", "images": ["AURORA/data/something/frames/35146/first.jpg", "AURORA/data/something/frames/35146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110042", "images": ["AURORA/data/something/frames/66803/first.jpg", "AURORA/data/something/frames/66803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110043", "images": ["AURORA/data/something/frames/131951/first.jpg", "AURORA/data/something/frames/131951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch, keys and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110044", "images": ["AURORA/data/something/frames/217791/first.jpg", "AURORA/data/something/frames/217791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of bricks so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110045", "images": ["AURORA/data/something/frames/45123/first.jpg", "AURORA/data/something/frames/45123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing white sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110046", "images": ["AURORA/data/something/frames/52129/first.jpg", "AURORA/data/something/frames/52129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110047", "images": ["AURORA/data/something/frames/26164/first.jpg", "AURORA/data/something/frames/26164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110048", "images": ["AURORA/data/something/frames/216700/first.jpg", "AURORA/data/something/frames/216700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glasses with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000110049", "images": ["AURORA/data/something/frames/102120/first.jpg", "AURORA/data/something/frames/102120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a drill on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110050", "images": ["AURORA/data/something/frames/157184/first.jpg", "AURORA/data/something/frames/157184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting helmet behind a flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000110051", "images": ["AURORA/data/something/frames/204754/first.jpg", "AURORA/data/something/frames/204754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110052", "images": ["AURORA/data/something/frames/194603/first.jpg", "AURORA/data/something/frames/194603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a wire out of many wire looking like objects"}, {"from": "gpt", "value": ""}]} +{"id": "000000110053", "images": ["AURORA/data/something/frames/108781/first.jpg", "AURORA/data/something/frames/108781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with glass tumbler on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110054", "images": ["AURORA/data/something/frames/18688/first.jpg", "AURORA/data/something/frames/18688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cart so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110055", "images": ["AURORA/data/something/frames/161635/first.jpg", "AURORA/data/something/frames/161635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110056", "images": ["AURORA/data/something/frames/106819/first.jpg", "AURORA/data/something/frames/106819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110057", "images": ["AURORA/data/something/frames/26652/first.jpg", "AURORA/data/something/frames/26652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a book into a bookshelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000110058", "images": ["AURORA/data/something/frames/215715/first.jpg", "AURORA/data/something/frames/215715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a perfume bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110059", "images": ["AURORA/data/something/frames/143023/first.jpg", "AURORA/data/something/frames/143023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000110060", "images": ["AURORA/data/something/frames/64203/first.jpg", "AURORA/data/something/frames/64203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bangle from a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110061", "images": ["AURORA/data/something/frames/133886/first.jpg", "AURORA/data/something/frames/133886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keyboard onto backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110062", "images": ["AURORA/data/something/frames/144827/first.jpg", "AURORA/data/something/frames/144827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching scotch tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110063", "images": ["AURORA/data/something/frames/109244/first.jpg", "AURORA/data/something/frames/109244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing sunglasses, revealing microscope behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110064", "images": ["AURORA/data/something/frames/147797/first.jpg", "AURORA/data/something/frames/147797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110065", "images": ["AURORA/data/something/frames/92107/first.jpg", "AURORA/data/something/frames/92107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering legs"}, {"from": "gpt", "value": ""}]} +{"id": "000000110066", "images": ["AURORA/data/something/frames/149504/first.jpg", "AURORA/data/something/frames/149504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110067", "images": ["AURORA/data/something/frames/86593/first.jpg", "AURORA/data/something/frames/86593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110068", "images": ["AURORA/data/something/frames/134585/first.jpg", "AURORA/data/something/frames/134585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110069", "images": ["AURORA/data/something/frames/83119/first.jpg", "AURORA/data/something/frames/83119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pink sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110070", "images": ["AURORA/data/something/frames/19923/first.jpg", "AURORA/data/something/frames/19923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 books onto couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000110071", "images": ["AURORA/data/something/frames/48521/first.jpg", "AURORA/data/something/frames/48521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110072", "images": ["AURORA/data/something/frames/204109/first.jpg", "AURORA/data/something/frames/204109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into adaptor but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110073", "images": ["AURORA/data/something/frames/210262/first.jpg", "AURORA/data/something/frames/210262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) paper wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110074", "images": ["AURORA/data/something/frames/150840/first.jpg", "AURORA/data/something/frames/150840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110075", "images": ["AURORA/data/something/frames/38197/first.jpg", "AURORA/data/something/frames/38197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110076", "images": ["AURORA/data/something/frames/70903/first.jpg", "AURORA/data/something/frames/70903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching receipt to card"}, {"from": "gpt", "value": ""}]} +{"id": "000000110077", "images": ["AURORA/data/something/frames/45943/first.jpg", "AURORA/data/something/frames/45943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110078", "images": ["AURORA/data/something/frames/141189/first.jpg", "AURORA/data/something/frames/141189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a box from behind of a stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110079", "images": ["AURORA/data/something/frames/172124/first.jpg", "AURORA/data/something/frames/172124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil and a pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110080", "images": ["AURORA/data/something/frames/197794/first.jpg", "AURORA/data/something/frames/197794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponze, purse and plate on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110081", "images": ["AURORA/data/something/frames/93989/first.jpg", "AURORA/data/something/frames/93989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothes peg next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110082", "images": ["AURORA/data/something/frames/172139/first.jpg", "AURORA/data/something/frames/172139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container away from another one"}, {"from": "gpt", "value": ""}]} +{"id": "000000110083", "images": ["AURORA/data/something/frames/127048/first.jpg", "AURORA/data/something/frames/127048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110084", "images": ["AURORA/data/something/frames/141557/first.jpg", "AURORA/data/something/frames/141557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy bullet pack and toy bullet pack closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110085", "images": ["AURORA/data/something/frames/183995/first.jpg", "AURORA/data/something/frames/183995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tube from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110086", "images": ["AURORA/data/something/frames/164903/first.jpg", "AURORA/data/something/frames/164903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110087", "images": ["AURORA/data/something/frames/137162/first.jpg", "AURORA/data/something/frames/137162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of clothe"}, {"from": "gpt", "value": ""}]} +{"id": "000000110088", "images": ["AURORA/data/something/frames/208864/first.jpg", "AURORA/data/something/frames/208864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching iron with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110089", "images": ["AURORA/data/something/frames/75149/first.jpg", "AURORA/data/something/frames/75149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water from cup into a glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110090", "images": ["AURORA/data/something/frames/97970/first.jpg", "AURORA/data/something/frames/97970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110091", "images": ["AURORA/data/something/frames/19248/first.jpg", "AURORA/data/something/frames/19248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110092", "images": ["AURORA/data/something/frames/95029/first.jpg", "AURORA/data/something/frames/95029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding unfolding tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000110093", "images": ["AURORA/data/something/frames/26526/first.jpg", "AURORA/data/something/frames/26526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110094", "images": ["AURORA/data/something/frames/219923/first.jpg", "AURORA/data/something/frames/219923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a painting brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110095", "images": ["AURORA/data/something/frames/137577/first.jpg", "AURORA/data/something/frames/137577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing car so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110096", "images": ["AURORA/data/something/frames/89751/first.jpg", "AURORA/data/something/frames/89751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110097", "images": ["AURORA/data/something/frames/141632/first.jpg", "AURORA/data/something/frames/141632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110098", "images": ["AURORA/data/something/frames/186663/first.jpg", "AURORA/data/something/frames/186663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110099", "images": ["AURORA/data/something/frames/177999/first.jpg", "AURORA/data/something/frames/177999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000110100", "images": ["AURORA/data/something/frames/185813/first.jpg", "AURORA/data/something/frames/185813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hanger so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110101", "images": ["AURORA/data/something/frames/102812/first.jpg", "AURORA/data/something/frames/102812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving helmet and helmet so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110102", "images": ["AURORA/data/something/frames/67800/first.jpg", "AURORA/data/something/frames/67800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering fan with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110103", "images": ["AURORA/data/something/frames/52309/first.jpg", "AURORA/data/something/frames/52309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110104", "images": ["AURORA/data/something/frames/146501/first.jpg", "AURORA/data/something/frames/146501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110105", "images": ["AURORA/data/something/frames/41043/first.jpg", "AURORA/data/something/frames/41043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110106", "images": ["AURORA/data/something/frames/68709/first.jpg", "AURORA/data/something/frames/68709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110107", "images": ["AURORA/data/something/frames/156198/first.jpg", "AURORA/data/something/frames/156198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a side of a pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000110108", "images": ["AURORA/data/something/frames/207720/first.jpg", "AURORA/data/something/frames/207720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink toothbrush case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110109", "images": ["AURORA/data/something/frames/108212/first.jpg", "AURORA/data/something/frames/108212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a comb away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110110", "images": ["AURORA/data/something/frames/210620/first.jpg", "AURORA/data/something/frames/210620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110111", "images": ["AURORA/data/something/frames/41278/first.jpg", "AURORA/data/something/frames/41278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110112", "images": ["AURORA/data/something/frames/9586/first.jpg", "AURORA/data/something/frames/9586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking watch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110113", "images": ["AURORA/data/something/frames/212950/first.jpg", "AURORA/data/something/frames/212950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110114", "images": ["AURORA/data/something/frames/111262/first.jpg", "AURORA/data/something/frames/111262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black umbrella from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110115", "images": ["AURORA/data/something/frames/92734/first.jpg", "AURORA/data/something/frames/92734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener behind sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110116", "images": ["AURORA/data/something/frames/168058/first.jpg", "AURORA/data/something/frames/168058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110117", "images": ["AURORA/data/something/frames/180443/first.jpg", "AURORA/data/something/frames/180443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending sheet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110118", "images": ["AURORA/data/something/frames/122055/first.jpg", "AURORA/data/something/frames/122055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a calculator out of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110119", "images": ["AURORA/data/something/frames/143655/first.jpg", "AURORA/data/something/frames/143655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110120", "images": ["AURORA/data/something/frames/41637/first.jpg", "AURORA/data/something/frames/41637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bunny doll in front of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110121", "images": ["AURORA/data/something/frames/141956/first.jpg", "AURORA/data/something/frames/141956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110122", "images": ["AURORA/data/something/frames/213817/first.jpg", "AURORA/data/something/frames/213817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000110123", "images": ["AURORA/data/something/frames/183166/first.jpg", "AURORA/data/something/frames/183166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chopstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110124", "images": ["AURORA/data/something/frames/27147/first.jpg", "AURORA/data/something/frames/27147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving potato and potato closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110125", "images": ["AURORA/data/something/frames/47782/first.jpg", "AURORA/data/something/frames/47782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a plugging but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110126", "images": ["AURORA/data/something/frames/152540/first.jpg", "AURORA/data/something/frames/152540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110127", "images": ["AURORA/data/something/frames/1602/first.jpg", "AURORA/data/something/frames/1602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110128", "images": ["AURORA/data/something/frames/162322/first.jpg", "AURORA/data/something/frames/162322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fish into bowl of water"}, {"from": "gpt", "value": ""}]} +{"id": "000000110129", "images": ["AURORA/data/something/frames/15258/first.jpg", "AURORA/data/something/frames/15258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110130", "images": ["AURORA/data/something/frames/140639/first.jpg", "AURORA/data/something/frames/140639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the keys out of the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110131", "images": ["AURORA/data/something/frames/170734/first.jpg", "AURORA/data/something/frames/170734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110132", "images": ["AURORA/data/something/frames/138140/first.jpg", "AURORA/data/something/frames/138140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cleaner off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110133", "images": ["AURORA/data/something/frames/175186/first.jpg", "AURORA/data/something/frames/175186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling one tealight candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110134", "images": ["AURORA/data/something/frames/124705/first.jpg", "AURORA/data/something/frames/124705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bear doll with toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110135", "images": ["AURORA/data/something/frames/42/first.jpg", "AURORA/data/something/frames/42/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin underneath a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000110136", "images": ["AURORA/data/something/frames/134668/first.jpg", "AURORA/data/something/frames/134668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110137", "images": ["AURORA/data/something/frames/154686/first.jpg", "AURORA/data/something/frames/154686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 dice onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110138", "images": ["AURORA/data/something/frames/142506/first.jpg", "AURORA/data/something/frames/142506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110139", "images": ["AURORA/data/something/frames/24859/first.jpg", "AURORA/data/something/frames/24859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110140", "images": ["AURORA/data/something/frames/148983/first.jpg", "AURORA/data/something/frames/148983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110141", "images": ["AURORA/data/something/frames/51677/first.jpg", "AURORA/data/something/frames/51677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110142", "images": ["AURORA/data/something/frames/85848/first.jpg", "AURORA/data/something/frames/85848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen to other pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000110143", "images": ["AURORA/data/something/frames/96872/first.jpg", "AURORA/data/something/frames/96872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110144", "images": ["AURORA/data/something/frames/126312/first.jpg", "AURORA/data/something/frames/126312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110145", "images": ["AURORA/data/something/frames/139250/first.jpg", "AURORA/data/something/frames/139250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mail box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110146", "images": ["AURORA/data/something/frames/17480/first.jpg", "AURORA/data/something/frames/17480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110147", "images": ["AURORA/data/something/frames/7963/first.jpg", "AURORA/data/something/frames/7963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110148", "images": ["AURORA/data/something/frames/13421/first.jpg", "AURORA/data/something/frames/13421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110149", "images": ["AURORA/data/something/frames/115954/first.jpg", "AURORA/data/something/frames/115954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110150", "images": ["AURORA/data/something/frames/140496/first.jpg", "AURORA/data/something/frames/140496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000110151", "images": ["AURORA/data/something/frames/17537/first.jpg", "AURORA/data/something/frames/17537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110152", "images": ["AURORA/data/something/frames/91544/first.jpg", "AURORA/data/something/frames/91544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing torch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110153", "images": ["AURORA/data/something/frames/96366/first.jpg", "AURORA/data/something/frames/96366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110154", "images": ["AURORA/data/something/frames/150592/first.jpg", "AURORA/data/something/frames/150592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110155", "images": ["AURORA/data/something/frames/171980/first.jpg", "AURORA/data/something/frames/171980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110156", "images": ["AURORA/data/something/frames/180603/first.jpg", "AURORA/data/something/frames/180603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling powder onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110157", "images": ["AURORA/data/something/frames/124791/first.jpg", "AURORA/data/something/frames/124791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110158", "images": ["AURORA/data/something/frames/9680/first.jpg", "AURORA/data/something/frames/9680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110159", "images": ["AURORA/data/something/frames/25891/first.jpg", "AURORA/data/something/frames/25891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sofa chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110160", "images": ["AURORA/data/something/frames/186803/first.jpg", "AURORA/data/something/frames/186803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a lid with a paper heart"}, {"from": "gpt", "value": ""}]} +{"id": "000000110161", "images": ["AURORA/data/something/frames/191939/first.jpg", "AURORA/data/something/frames/191939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card with other cards on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110162", "images": ["AURORA/data/something/frames/9398/first.jpg", "AURORA/data/something/frames/9398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering rc with cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000110163", "images": ["AURORA/data/something/frames/184837/first.jpg", "AURORA/data/something/frames/184837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pouch on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110164", "images": ["AURORA/data/something/frames/40204/first.jpg", "AURORA/data/something/frames/40204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter closer to lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110165", "images": ["AURORA/data/something/frames/212411/first.jpg", "AURORA/data/something/frames/212411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110166", "images": ["AURORA/data/something/frames/146539/first.jpg", "AURORA/data/something/frames/146539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and a box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110167", "images": ["AURORA/data/something/frames/111489/first.jpg", "AURORA/data/something/frames/111489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stappler with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110168", "images": ["AURORA/data/something/frames/10436/first.jpg", "AURORA/data/something/frames/10436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pencil from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110169", "images": ["AURORA/data/something/frames/1736/first.jpg", "AURORA/data/something/frames/1736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an ipad with a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110170", "images": ["AURORA/data/something/frames/43158/first.jpg", "AURORA/data/something/frames/43158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto letters"}, {"from": "gpt", "value": ""}]} +{"id": "000000110171", "images": ["AURORA/data/something/frames/85527/first.jpg", "AURORA/data/something/frames/85527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110172", "images": ["AURORA/data/something/frames/149932/first.jpg", "AURORA/data/something/frames/149932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting binder with calculator on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110173", "images": ["AURORA/data/something/frames/24411/first.jpg", "AURORA/data/something/frames/24411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110174", "images": ["AURORA/data/something/frames/73583/first.jpg", "AURORA/data/something/frames/73583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup behind text books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110175", "images": ["AURORA/data/something/frames/138650/first.jpg", "AURORA/data/something/frames/138650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eye drops onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110176", "images": ["AURORA/data/something/frames/60678/first.jpg", "AURORA/data/something/frames/60678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110177", "images": ["AURORA/data/something/frames/91685/first.jpg", "AURORA/data/something/frames/91685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110178", "images": ["AURORA/data/something/frames/204731/first.jpg", "AURORA/data/something/frames/204731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000110179", "images": ["AURORA/data/something/frames/218259/first.jpg", "AURORA/data/something/frames/218259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking black play cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110180", "images": ["AURORA/data/something/frames/169155/first.jpg", "AURORA/data/something/frames/169155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something behind something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110181", "images": ["AURORA/data/something/frames/111239/first.jpg", "AURORA/data/something/frames/111239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping chocolate onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110182", "images": ["AURORA/data/something/frames/54671/first.jpg", "AURORA/data/something/frames/54671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning empty cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110183", "images": ["AURORA/data/something/frames/136553/first.jpg", "AURORA/data/something/frames/136553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into power socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110184", "images": ["AURORA/data/something/frames/26326/first.jpg", "AURORA/data/something/frames/26326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110185", "images": ["AURORA/data/something/frames/170618/first.jpg", "AURORA/data/something/frames/170618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110186", "images": ["AURORA/data/something/frames/72604/first.jpg", "AURORA/data/something/frames/72604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110187", "images": ["AURORA/data/something/frames/36607/first.jpg", "AURORA/data/something/frames/36607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110188", "images": ["AURORA/data/something/frames/140413/first.jpg", "AURORA/data/something/frames/140413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox behind mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000110189", "images": ["AURORA/data/something/frames/75462/first.jpg", "AURORA/data/something/frames/75462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt in front of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110190", "images": ["AURORA/data/something/frames/6339/first.jpg", "AURORA/data/something/frames/6339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green purse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110191", "images": ["AURORA/data/something/frames/26800/first.jpg", "AURORA/data/something/frames/26800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring wine into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110192", "images": ["AURORA/data/something/frames/12679/first.jpg", "AURORA/data/something/frames/12679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving belt down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110193", "images": ["AURORA/data/something/frames/92034/first.jpg", "AURORA/data/something/frames/92034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110194", "images": ["AURORA/data/something/frames/194392/first.jpg", "AURORA/data/something/frames/194392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug, marker and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110195", "images": ["AURORA/data/something/frames/70931/first.jpg", "AURORA/data/something/frames/70931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110196", "images": ["AURORA/data/something/frames/166303/first.jpg", "AURORA/data/something/frames/166303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup next to a salt shaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000110197", "images": ["AURORA/data/something/frames/26649/first.jpg", "AURORA/data/something/frames/26649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110198", "images": ["AURORA/data/something/frames/30935/first.jpg", "AURORA/data/something/frames/30935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a post it note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110199", "images": ["AURORA/data/something/frames/6750/first.jpg", "AURORA/data/something/frames/6750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110200", "images": ["AURORA/data/something/frames/203631/first.jpg", "AURORA/data/something/frames/203631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a teddy panda bear upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110201", "images": ["AURORA/data/something/frames/191790/first.jpg", "AURORA/data/something/frames/191790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110202", "images": ["AURORA/data/something/frames/77534/first.jpg", "AURORA/data/something/frames/77534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110203", "images": ["AURORA/data/something/frames/44432/first.jpg", "AURORA/data/something/frames/44432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a soda can of many soda cans on a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110204", "images": ["AURORA/data/something/frames/200285/first.jpg", "AURORA/data/something/frames/200285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending torch so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110205", "images": ["AURORA/data/something/frames/162979/first.jpg", "AURORA/data/something/frames/162979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a page of a dictionary"}, {"from": "gpt", "value": ""}]} +{"id": "000000110206", "images": ["AURORA/data/something/frames/208496/first.jpg", "AURORA/data/something/frames/208496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110207", "images": ["AURORA/data/something/frames/154456/first.jpg", "AURORA/data/something/frames/154456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet closer to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110208", "images": ["AURORA/data/something/frames/165393/first.jpg", "AURORA/data/something/frames/165393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tv remote with plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110209", "images": ["AURORA/data/something/frames/12868/first.jpg", "AURORA/data/something/frames/12868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110210", "images": ["AURORA/data/something/frames/172134/first.jpg", "AURORA/data/something/frames/172134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110211", "images": ["AURORA/data/something/frames/150548/first.jpg", "AURORA/data/something/frames/150548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into tablet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110212", "images": ["AURORA/data/something/frames/140238/first.jpg", "AURORA/data/something/frames/140238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110213", "images": ["AURORA/data/something/frames/179067/first.jpg", "AURORA/data/something/frames/179067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking flower up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110214", "images": ["AURORA/data/something/frames/177104/first.jpg", "AURORA/data/something/frames/177104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coaster in front of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110215", "images": ["AURORA/data/something/frames/22739/first.jpg", "AURORA/data/something/frames/22739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel away from towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110216", "images": ["AURORA/data/something/frames/74748/first.jpg", "AURORA/data/something/frames/74748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) washcloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110217", "images": ["AURORA/data/something/frames/104278/first.jpg", "AURORA/data/something/frames/104278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110218", "images": ["AURORA/data/something/frames/98030/first.jpg", "AURORA/data/something/frames/98030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a marker being deflected from a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110219", "images": ["AURORA/data/something/frames/57815/first.jpg", "AURORA/data/something/frames/57815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110220", "images": ["AURORA/data/something/frames/89640/first.jpg", "AURORA/data/something/frames/89640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110221", "images": ["AURORA/data/something/frames/76888/first.jpg", "AURORA/data/something/frames/76888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from chapstick with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110222", "images": ["AURORA/data/something/frames/93317/first.jpg", "AURORA/data/something/frames/93317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a notecard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110223", "images": ["AURORA/data/something/frames/143119/first.jpg", "AURORA/data/something/frames/143119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissue box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110224", "images": ["AURORA/data/something/frames/70751/first.jpg", "AURORA/data/something/frames/70751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a notbook up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110225", "images": ["AURORA/data/something/frames/64503/first.jpg", "AURORA/data/something/frames/64503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling notebooks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110226", "images": ["AURORA/data/something/frames/26498/first.jpg", "AURORA/data/something/frames/26498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a bean bag so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110227", "images": ["AURORA/data/something/frames/17636/first.jpg", "AURORA/data/something/frames/17636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110228", "images": ["AURORA/data/something/frames/118132/first.jpg", "AURORA/data/something/frames/118132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking an apple so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110229", "images": ["AURORA/data/something/frames/61276/first.jpg", "AURORA/data/something/frames/61276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking towel so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110230", "images": ["AURORA/data/something/frames/29304/first.jpg", "AURORA/data/something/frames/29304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110231", "images": ["AURORA/data/something/frames/155006/first.jpg", "AURORA/data/something/frames/155006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110232", "images": ["AURORA/data/something/frames/136227/first.jpg", "AURORA/data/something/frames/136227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting carom coin onto powder tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110233", "images": ["AURORA/data/something/frames/180950/first.jpg", "AURORA/data/something/frames/180950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110234", "images": ["AURORA/data/something/frames/5082/first.jpg", "AURORA/data/something/frames/5082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paper clip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110235", "images": ["AURORA/data/something/frames/65210/first.jpg", "AURORA/data/something/frames/65210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking something so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110236", "images": ["AURORA/data/something/frames/180227/first.jpg", "AURORA/data/something/frames/180227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110237", "images": ["AURORA/data/something/frames/191201/first.jpg", "AURORA/data/something/frames/191201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tourch next to rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000110238", "images": ["AURORA/data/something/frames/93640/first.jpg", "AURORA/data/something/frames/93640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110239", "images": ["AURORA/data/something/frames/166061/first.jpg", "AURORA/data/something/frames/166061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone behind pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110240", "images": ["AURORA/data/something/frames/116084/first.jpg", "AURORA/data/something/frames/116084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending something until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110241", "images": ["AURORA/data/something/frames/163174/first.jpg", "AURORA/data/something/frames/163174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking screw out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110242", "images": ["AURORA/data/something/frames/57433/first.jpg", "AURORA/data/something/frames/57433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110243", "images": ["AURORA/data/something/frames/63108/first.jpg", "AURORA/data/something/frames/63108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110244", "images": ["AURORA/data/something/frames/186252/first.jpg", "AURORA/data/something/frames/186252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup into cup holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000110245", "images": ["AURORA/data/something/frames/32312/first.jpg", "AURORA/data/something/frames/32312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110246", "images": ["AURORA/data/something/frames/25513/first.jpg", "AURORA/data/something/frames/25513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110247", "images": ["AURORA/data/something/frames/189910/first.jpg", "AURORA/data/something/frames/189910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from a chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110248", "images": ["AURORA/data/something/frames/50968/first.jpg", "AURORA/data/something/frames/50968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110249", "images": ["AURORA/data/something/frames/115399/first.jpg", "AURORA/data/something/frames/115399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator in front of the pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110250", "images": ["AURORA/data/something/frames/135479/first.jpg", "AURORA/data/something/frames/135479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cream off of furniture"}, {"from": "gpt", "value": ""}]} +{"id": "000000110251", "images": ["AURORA/data/something/frames/119565/first.jpg", "AURORA/data/something/frames/119565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110252", "images": ["AURORA/data/something/frames/116330/first.jpg", "AURORA/data/something/frames/116330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110253", "images": ["AURORA/data/something/frames/51527/first.jpg", "AURORA/data/something/frames/51527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000110254", "images": ["AURORA/data/something/frames/123522/first.jpg", "AURORA/data/something/frames/123522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110255", "images": ["AURORA/data/something/frames/179843/first.jpg", "AURORA/data/something/frames/179843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110256", "images": ["AURORA/data/something/frames/183079/first.jpg", "AURORA/data/something/frames/183079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110257", "images": ["AURORA/data/something/frames/67977/first.jpg", "AURORA/data/something/frames/67977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book in front of a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110258", "images": ["AURORA/data/something/frames/122018/first.jpg", "AURORA/data/something/frames/122018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sharpener into rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110259", "images": ["AURORA/data/something/frames/155915/first.jpg", "AURORA/data/something/frames/155915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a covered bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110260", "images": ["AURORA/data/something/frames/197391/first.jpg", "AURORA/data/something/frames/197391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110261", "images": ["AURORA/data/something/frames/201350/first.jpg", "AURORA/data/something/frames/201350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping piece into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110262", "images": ["AURORA/data/something/frames/110104/first.jpg", "AURORA/data/something/frames/110104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pan from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110263", "images": ["AURORA/data/something/frames/198243/first.jpg", "AURORA/data/something/frames/198243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110264", "images": ["AURORA/data/something/frames/96049/first.jpg", "AURORA/data/something/frames/96049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110265", "images": ["AURORA/data/something/frames/181428/first.jpg", "AURORA/data/something/frames/181428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric cord into power outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110266", "images": ["AURORA/data/something/frames/213934/first.jpg", "AURORA/data/something/frames/213934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching plug to machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000110267", "images": ["AURORA/data/something/frames/74596/first.jpg", "AURORA/data/something/frames/74596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110268", "images": ["AURORA/data/something/frames/171227/first.jpg", "AURORA/data/something/frames/171227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000110269", "images": ["AURORA/data/something/frames/152197/first.jpg", "AURORA/data/something/frames/152197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110270", "images": ["AURORA/data/something/frames/175715/first.jpg", "AURORA/data/something/frames/175715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110271", "images": ["AURORA/data/something/frames/211485/first.jpg", "AURORA/data/something/frames/211485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110272", "images": ["AURORA/data/something/frames/23379/first.jpg", "AURORA/data/something/frames/23379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: crayon colliding with crayon and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110273", "images": ["AURORA/data/something/frames/53038/first.jpg", "AURORA/data/something/frames/53038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110274", "images": ["AURORA/data/something/frames/125681/first.jpg", "AURORA/data/something/frames/125681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy idol with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110275", "images": ["AURORA/data/something/frames/94633/first.jpg", "AURORA/data/something/frames/94633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110276", "images": ["AURORA/data/something/frames/114056/first.jpg", "AURORA/data/something/frames/114056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110277", "images": ["AURORA/data/something/frames/92923/first.jpg", "AURORA/data/something/frames/92923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110278", "images": ["AURORA/data/something/frames/153645/first.jpg", "AURORA/data/something/frames/153645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110279", "images": ["AURORA/data/something/frames/67430/first.jpg", "AURORA/data/something/frames/67430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of plastic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110280", "images": ["AURORA/data/something/frames/70696/first.jpg", "AURORA/data/something/frames/70696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping chocolate in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110281", "images": ["AURORA/data/something/frames/107291/first.jpg", "AURORA/data/something/frames/107291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110282", "images": ["AURORA/data/something/frames/33666/first.jpg", "AURORA/data/something/frames/33666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110283", "images": ["AURORA/data/something/frames/192925/first.jpg", "AURORA/data/something/frames/192925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting canned food on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110284", "images": ["AURORA/data/something/frames/19618/first.jpg", "AURORA/data/something/frames/19618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110285", "images": ["AURORA/data/something/frames/152476/first.jpg", "AURORA/data/something/frames/152476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto rice cake"}, {"from": "gpt", "value": ""}]} +{"id": "000000110286", "images": ["AURORA/data/something/frames/123620/first.jpg", "AURORA/data/something/frames/123620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping salsa up with chip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110287", "images": ["AURORA/data/something/frames/133624/first.jpg", "AURORA/data/something/frames/133624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110288", "images": ["AURORA/data/something/frames/41547/first.jpg", "AURORA/data/something/frames/41547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three pieces of paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110289", "images": ["AURORA/data/something/frames/162652/first.jpg", "AURORA/data/something/frames/162652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a battery with a letter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110290", "images": ["AURORA/data/something/frames/28203/first.jpg", "AURORA/data/something/frames/28203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting thread spool behind jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110291", "images": ["AURORA/data/something/frames/55035/first.jpg", "AURORA/data/something/frames/55035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deo behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110292", "images": ["AURORA/data/something/frames/100492/first.jpg", "AURORA/data/something/frames/100492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tape into candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110293", "images": ["AURORA/data/something/frames/95811/first.jpg", "AURORA/data/something/frames/95811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling chord out of vacuum cleaner"}, {"from": "gpt", "value": ""}]} +{"id": "000000110294", "images": ["AURORA/data/something/frames/87284/first.jpg", "AURORA/data/something/frames/87284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping plastic cup with table tennis balls over, so table tennis balls falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110295", "images": ["AURORA/data/something/frames/200106/first.jpg", "AURORA/data/something/frames/200106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into switch but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110296", "images": ["AURORA/data/something/frames/3752/first.jpg", "AURORA/data/something/frames/3752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110297", "images": ["AURORA/data/something/frames/74763/first.jpg", "AURORA/data/something/frames/74763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting table with paperweight"}, {"from": "gpt", "value": ""}]} +{"id": "000000110298", "images": ["AURORA/data/something/frames/68127/first.jpg", "AURORA/data/something/frames/68127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing metal box with highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110299", "images": ["AURORA/data/something/frames/86174/first.jpg", "AURORA/data/something/frames/86174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110300", "images": ["AURORA/data/something/frames/177367/first.jpg", "AURORA/data/something/frames/177367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110301", "images": ["AURORA/data/something/frames/82861/first.jpg", "AURORA/data/something/frames/82861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110302", "images": ["AURORA/data/something/frames/163187/first.jpg", "AURORA/data/something/frames/163187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box away from the spray bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110303", "images": ["AURORA/data/something/frames/58794/first.jpg", "AURORA/data/something/frames/58794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a balloon into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110304", "images": ["AURORA/data/something/frames/143700/first.jpg", "AURORA/data/something/frames/143700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110305", "images": ["AURORA/data/something/frames/202503/first.jpg", "AURORA/data/something/frames/202503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shirt into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110306", "images": ["AURORA/data/something/frames/102746/first.jpg", "AURORA/data/something/frames/102746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet, luggage tag and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110307", "images": ["AURORA/data/something/frames/54813/first.jpg", "AURORA/data/something/frames/54813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110308", "images": ["AURORA/data/something/frames/4205/first.jpg", "AURORA/data/something/frames/4205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110309", "images": ["AURORA/data/something/frames/207296/first.jpg", "AURORA/data/something/frames/207296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110310", "images": ["AURORA/data/something/frames/214030/first.jpg", "AURORA/data/something/frames/214030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110311", "images": ["AURORA/data/something/frames/177027/first.jpg", "AURORA/data/something/frames/177027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110312", "images": ["AURORA/data/something/frames/65710/first.jpg", "AURORA/data/something/frames/65710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a smiley face off of a whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110313", "images": ["AURORA/data/something/frames/203633/first.jpg", "AURORA/data/something/frames/203633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an ecig onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110314", "images": ["AURORA/data/something/frames/130699/first.jpg", "AURORA/data/something/frames/130699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a thermos on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110315", "images": ["AURORA/data/something/frames/152272/first.jpg", "AURORA/data/something/frames/152272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110316", "images": ["AURORA/data/something/frames/152698/first.jpg", "AURORA/data/something/frames/152698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking an orange up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110317", "images": ["AURORA/data/something/frames/113865/first.jpg", "AURORA/data/something/frames/113865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110318", "images": ["AURORA/data/something/frames/218954/first.jpg", "AURORA/data/something/frames/218954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a highlighter out of a pencil-case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110319", "images": ["AURORA/data/something/frames/75649/first.jpg", "AURORA/data/something/frames/75649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting slipper underneath chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000110320", "images": ["AURORA/data/something/frames/126698/first.jpg", "AURORA/data/something/frames/126698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stapler from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110321", "images": ["AURORA/data/something/frames/59470/first.jpg", "AURORA/data/something/frames/59470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping container with coffee grounds over, so coffee falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110322", "images": ["AURORA/data/something/frames/196117/first.jpg", "AURORA/data/something/frames/196117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110323", "images": ["AURORA/data/something/frames/186862/first.jpg", "AURORA/data/something/frames/186862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110324", "images": ["AURORA/data/something/frames/166344/first.jpg", "AURORA/data/something/frames/166344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping flour off of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110325", "images": ["AURORA/data/something/frames/52922/first.jpg", "AURORA/data/something/frames/52922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110326", "images": ["AURORA/data/something/frames/163835/first.jpg", "AURORA/data/something/frames/163835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110327", "images": ["AURORA/data/something/frames/53320/first.jpg", "AURORA/data/something/frames/53320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristwatch and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110328", "images": ["AURORA/data/something/frames/79758/first.jpg", "AURORA/data/something/frames/79758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000110329", "images": ["AURORA/data/something/frames/113782/first.jpg", "AURORA/data/something/frames/113782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110330", "images": ["AURORA/data/something/frames/81621/first.jpg", "AURORA/data/something/frames/81621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening container"}, {"from": "gpt", "value": ""}]} +{"id": "000000110331", "images": ["AURORA/data/something/frames/120367/first.jpg", "AURORA/data/something/frames/120367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red toy car onto battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000110332", "images": ["AURORA/data/something/frames/122669/first.jpg", "AURORA/data/something/frames/122669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110333", "images": ["AURORA/data/something/frames/202652/first.jpg", "AURORA/data/something/frames/202652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110334", "images": ["AURORA/data/something/frames/82961/first.jpg", "AURORA/data/something/frames/82961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cards and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110335", "images": ["AURORA/data/something/frames/101934/first.jpg", "AURORA/data/something/frames/101934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110336", "images": ["AURORA/data/something/frames/209071/first.jpg", "AURORA/data/something/frames/209071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking water bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110337", "images": ["AURORA/data/something/frames/37797/first.jpg", "AURORA/data/something/frames/37797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a banana and a pomengranate closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110338", "images": ["AURORA/data/something/frames/183666/first.jpg", "AURORA/data/something/frames/183666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110339", "images": ["AURORA/data/something/frames/87956/first.jpg", "AURORA/data/something/frames/87956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottled water in front of nail cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110340", "images": ["AURORA/data/something/frames/39021/first.jpg", "AURORA/data/something/frames/39021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110341", "images": ["AURORA/data/something/frames/13646/first.jpg", "AURORA/data/something/frames/13646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving little jar and little jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110342", "images": ["AURORA/data/something/frames/76647/first.jpg", "AURORA/data/something/frames/76647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle, toy and perfume bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110343", "images": ["AURORA/data/something/frames/5853/first.jpg", "AURORA/data/something/frames/5853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a card so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110344", "images": ["AURORA/data/something/frames/1425/first.jpg", "AURORA/data/something/frames/1425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering light bulb with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110345", "images": ["AURORA/data/something/frames/143589/first.jpg", "AURORA/data/something/frames/143589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110346", "images": ["AURORA/data/something/frames/217149/first.jpg", "AURORA/data/something/frames/217149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cereal off of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000110347", "images": ["AURORA/data/something/frames/146248/first.jpg", "AURORA/data/something/frames/146248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an envelope in front of a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110348", "images": ["AURORA/data/something/frames/102218/first.jpg", "AURORA/data/something/frames/102218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110349", "images": ["AURORA/data/something/frames/153067/first.jpg", "AURORA/data/something/frames/153067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110350", "images": ["AURORA/data/something/frames/44152/first.jpg", "AURORA/data/something/frames/44152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a fork on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110351", "images": ["AURORA/data/something/frames/4427/first.jpg", "AURORA/data/something/frames/4427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110352", "images": ["AURORA/data/something/frames/87208/first.jpg", "AURORA/data/something/frames/87208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ear plug carrying case in front of a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110353", "images": ["AURORA/data/something/frames/69702/first.jpg", "AURORA/data/something/frames/69702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown bracelet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110354", "images": ["AURORA/data/something/frames/93814/first.jpg", "AURORA/data/something/frames/93814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote away from coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110355", "images": ["AURORA/data/something/frames/20649/first.jpg", "AURORA/data/something/frames/20649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering comb with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110356", "images": ["AURORA/data/something/frames/24451/first.jpg", "AURORA/data/something/frames/24451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing glass, revealing highlighter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110357", "images": ["AURORA/data/something/frames/89805/first.jpg", "AURORA/data/something/frames/89805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110358", "images": ["AURORA/data/something/frames/183051/first.jpg", "AURORA/data/something/frames/183051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110359", "images": ["AURORA/data/something/frames/193487/first.jpg", "AURORA/data/something/frames/193487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adapter into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110360", "images": ["AURORA/data/something/frames/166475/first.jpg", "AURORA/data/something/frames/166475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching dogs with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110361", "images": ["AURORA/data/something/frames/127108/first.jpg", "AURORA/data/something/frames/127108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110362", "images": ["AURORA/data/something/frames/43079/first.jpg", "AURORA/data/something/frames/43079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lotion upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110363", "images": ["AURORA/data/something/frames/17878/first.jpg", "AURORA/data/something/frames/17878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110364", "images": ["AURORA/data/something/frames/20824/first.jpg", "AURORA/data/something/frames/20824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110365", "images": ["AURORA/data/something/frames/107292/first.jpg", "AURORA/data/something/frames/107292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000110366", "images": ["AURORA/data/something/frames/81792/first.jpg", "AURORA/data/something/frames/81792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto alovera shrub"}, {"from": "gpt", "value": ""}]} +{"id": "000000110367", "images": ["AURORA/data/something/frames/187032/first.jpg", "AURORA/data/something/frames/187032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110368", "images": ["AURORA/data/something/frames/169730/first.jpg", "AURORA/data/something/frames/169730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110369", "images": ["AURORA/data/something/frames/77230/first.jpg", "AURORA/data/something/frames/77230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a container with soap in it over, so soap falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110370", "images": ["AURORA/data/something/frames/94882/first.jpg", "AURORA/data/something/frames/94882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubix cube into cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110371", "images": ["AURORA/data/something/frames/111202/first.jpg", "AURORA/data/something/frames/111202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cover of plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110372", "images": ["AURORA/data/something/frames/169328/first.jpg", "AURORA/data/something/frames/169328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing empty treat bar wrap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110373", "images": ["AURORA/data/something/frames/112554/first.jpg", "AURORA/data/something/frames/112554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cell from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110374", "images": ["AURORA/data/something/frames/80963/first.jpg", "AURORA/data/something/frames/80963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110375", "images": ["AURORA/data/something/frames/106417/first.jpg", "AURORA/data/something/frames/106417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin into a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110376", "images": ["AURORA/data/something/frames/216066/first.jpg", "AURORA/data/something/frames/216066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mobile phone from car dashboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110377", "images": ["AURORA/data/something/frames/61773/first.jpg", "AURORA/data/something/frames/61773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110378", "images": ["AURORA/data/something/frames/120935/first.jpg", "AURORA/data/something/frames/120935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green headlight from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110379", "images": ["AURORA/data/something/frames/211963/first.jpg", "AURORA/data/something/frames/211963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cat litter up with a scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110380", "images": ["AURORA/data/something/frames/18322/first.jpg", "AURORA/data/something/frames/18322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wipe onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110381", "images": ["AURORA/data/something/frames/52138/first.jpg", "AURORA/data/something/frames/52138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110382", "images": ["AURORA/data/something/frames/142509/first.jpg", "AURORA/data/something/frames/142509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110383", "images": ["AURORA/data/something/frames/161170/first.jpg", "AURORA/data/something/frames/161170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110384", "images": ["AURORA/data/something/frames/139218/first.jpg", "AURORA/data/something/frames/139218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling pens behind a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110385", "images": ["AURORA/data/something/frames/178579/first.jpg", "AURORA/data/something/frames/178579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110386", "images": ["AURORA/data/something/frames/106135/first.jpg", "AURORA/data/something/frames/106135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110387", "images": ["AURORA/data/something/frames/117714/first.jpg", "AURORA/data/something/frames/117714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110388", "images": ["AURORA/data/something/frames/99519/first.jpg", "AURORA/data/something/frames/99519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder clips next to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110389", "images": ["AURORA/data/something/frames/113585/first.jpg", "AURORA/data/something/frames/113585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110390", "images": ["AURORA/data/something/frames/127897/first.jpg", "AURORA/data/something/frames/127897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110391", "images": ["AURORA/data/something/frames/72452/first.jpg", "AURORA/data/something/frames/72452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toothpaste from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110392", "images": ["AURORA/data/something/frames/69441/first.jpg", "AURORA/data/something/frames/69441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding drawstring bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110393", "images": ["AURORA/data/something/frames/5746/first.jpg", "AURORA/data/something/frames/5746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton filling into pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110394", "images": ["AURORA/data/something/frames/120180/first.jpg", "AURORA/data/something/frames/120180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110395", "images": ["AURORA/data/something/frames/155415/first.jpg", "AURORA/data/something/frames/155415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle into paper bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110396", "images": ["AURORA/data/something/frames/21664/first.jpg", "AURORA/data/something/frames/21664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110397", "images": ["AURORA/data/something/frames/20588/first.jpg", "AURORA/data/something/frames/20588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dictionary on the edge of pencil box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110398", "images": ["AURORA/data/something/frames/6127/first.jpg", "AURORA/data/something/frames/6127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110399", "images": ["AURORA/data/something/frames/74828/first.jpg", "AURORA/data/something/frames/74828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting charger adapter on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110400", "images": ["AURORA/data/something/frames/29569/first.jpg", "AURORA/data/something/frames/29569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming audio sistem"}, {"from": "gpt", "value": ""}]} +{"id": "000000110401", "images": ["AURORA/data/something/frames/67146/first.jpg", "AURORA/data/something/frames/67146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chopstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110402", "images": ["AURORA/data/something/frames/79814/first.jpg", "AURORA/data/something/frames/79814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a matchstick onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000110403", "images": ["AURORA/data/something/frames/59723/first.jpg", "AURORA/data/something/frames/59723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000110404", "images": ["AURORA/data/something/frames/162736/first.jpg", "AURORA/data/something/frames/162736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110405", "images": ["AURORA/data/something/frames/112291/first.jpg", "AURORA/data/something/frames/112291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glass up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110406", "images": ["AURORA/data/something/frames/110025/first.jpg", "AURORA/data/something/frames/110025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching tape to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110407", "images": ["AURORA/data/something/frames/204475/first.jpg", "AURORA/data/something/frames/204475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging pocket bible out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110408", "images": ["AURORA/data/something/frames/20620/first.jpg", "AURORA/data/something/frames/20620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110409", "images": ["AURORA/data/something/frames/169138/first.jpg", "AURORA/data/something/frames/169138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup away from a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110410", "images": ["AURORA/data/something/frames/36087/first.jpg", "AURORA/data/something/frames/36087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110411", "images": ["AURORA/data/something/frames/56259/first.jpg", "AURORA/data/something/frames/56259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue colour spectacle box with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110412", "images": ["AURORA/data/something/frames/151271/first.jpg", "AURORA/data/something/frames/151271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging pendrive into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000110413", "images": ["AURORA/data/something/frames/150758/first.jpg", "AURORA/data/something/frames/150758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl into plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110414", "images": ["AURORA/data/something/frames/115040/first.jpg", "AURORA/data/something/frames/115040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubix cube in front of battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000110415", "images": ["AURORA/data/something/frames/54423/first.jpg", "AURORA/data/something/frames/54423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110416", "images": ["AURORA/data/something/frames/99450/first.jpg", "AURORA/data/something/frames/99450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 black toy wheels onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110417", "images": ["AURORA/data/something/frames/108469/first.jpg", "AURORA/data/something/frames/108469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white badge from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110418", "images": ["AURORA/data/something/frames/174209/first.jpg", "AURORA/data/something/frames/174209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging pendrive into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110419", "images": ["AURORA/data/something/frames/162798/first.jpg", "AURORA/data/something/frames/162798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda and box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110420", "images": ["AURORA/data/something/frames/148462/first.jpg", "AURORA/data/something/frames/148462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lotion closer to flask"}, {"from": "gpt", "value": ""}]} +{"id": "000000110421", "images": ["AURORA/data/something/frames/73284/first.jpg", "AURORA/data/something/frames/73284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking chalk out of box of chalk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110422", "images": ["AURORA/data/something/frames/204524/first.jpg", "AURORA/data/something/frames/204524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110423", "images": ["AURORA/data/something/frames/100896/first.jpg", "AURORA/data/something/frames/100896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with note"}, {"from": "gpt", "value": ""}]} +{"id": "000000110424", "images": ["AURORA/data/something/frames/156235/first.jpg", "AURORA/data/something/frames/156235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wooden pice colliding with other wooden piece and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110425", "images": ["AURORA/data/something/frames/59778/first.jpg", "AURORA/data/something/frames/59778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tamper over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110426", "images": ["AURORA/data/something/frames/55394/first.jpg", "AURORA/data/something/frames/55394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small statue away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110427", "images": ["AURORA/data/something/frames/180028/first.jpg", "AURORA/data/something/frames/180028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110428", "images": ["AURORA/data/something/frames/123240/first.jpg", "AURORA/data/something/frames/123240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 bowls"}, {"from": "gpt", "value": ""}]} +{"id": "000000110429", "images": ["AURORA/data/something/frames/209640/first.jpg", "AURORA/data/something/frames/209640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110430", "images": ["AURORA/data/something/frames/210932/first.jpg", "AURORA/data/something/frames/210932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110431", "images": ["AURORA/data/something/frames/115545/first.jpg", "AURORA/data/something/frames/115545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110432", "images": ["AURORA/data/something/frames/144689/first.jpg", "AURORA/data/something/frames/144689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110433", "images": ["AURORA/data/something/frames/83822/first.jpg", "AURORA/data/something/frames/83822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purple container down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110434", "images": ["AURORA/data/something/frames/152813/first.jpg", "AURORA/data/something/frames/152813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110435", "images": ["AURORA/data/something/frames/90056/first.jpg", "AURORA/data/something/frames/90056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110436", "images": ["AURORA/data/something/frames/46853/first.jpg", "AURORA/data/something/frames/46853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bangles with leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000110437", "images": ["AURORA/data/something/frames/77924/first.jpg", "AURORA/data/something/frames/77924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110438", "images": ["AURORA/data/something/frames/76627/first.jpg", "AURORA/data/something/frames/76627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling shirt out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110439", "images": ["AURORA/data/something/frames/171064/first.jpg", "AURORA/data/something/frames/171064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pen into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110440", "images": ["AURORA/data/something/frames/123377/first.jpg", "AURORA/data/something/frames/123377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a dishcloth into a small cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110441", "images": ["AURORA/data/something/frames/7635/first.jpg", "AURORA/data/something/frames/7635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110442", "images": ["AURORA/data/something/frames/168143/first.jpg", "AURORA/data/something/frames/168143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors closer to hair brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110443", "images": ["AURORA/data/something/frames/211216/first.jpg", "AURORA/data/something/frames/211216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110444", "images": ["AURORA/data/something/frames/88503/first.jpg", "AURORA/data/something/frames/88503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour something into something, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110445", "images": ["AURORA/data/something/frames/191932/first.jpg", "AURORA/data/something/frames/191932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110446", "images": ["AURORA/data/something/frames/149435/first.jpg", "AURORA/data/something/frames/149435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110447", "images": ["AURORA/data/something/frames/15177/first.jpg", "AURORA/data/something/frames/15177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting white cup and red cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110448", "images": ["AURORA/data/something/frames/81202/first.jpg", "AURORA/data/something/frames/81202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glass with pinecone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110449", "images": ["AURORA/data/something/frames/134958/first.jpg", "AURORA/data/something/frames/134958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling containers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110450", "images": ["AURORA/data/something/frames/67876/first.jpg", "AURORA/data/something/frames/67876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110451", "images": ["AURORA/data/something/frames/86392/first.jpg", "AURORA/data/something/frames/86392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110452", "images": ["AURORA/data/something/frames/180793/first.jpg", "AURORA/data/something/frames/180793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110453", "images": ["AURORA/data/something/frames/14401/first.jpg", "AURORA/data/something/frames/14401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a sticky notes pad so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110454", "images": ["AURORA/data/something/frames/131943/first.jpg", "AURORA/data/something/frames/131943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110455", "images": ["AURORA/data/something/frames/189978/first.jpg", "AURORA/data/something/frames/189978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000110456", "images": ["AURORA/data/something/frames/133625/first.jpg", "AURORA/data/something/frames/133625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with onion on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110457", "images": ["AURORA/data/something/frames/92838/first.jpg", "AURORA/data/something/frames/92838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler next to calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110458", "images": ["AURORA/data/something/frames/197302/first.jpg", "AURORA/data/something/frames/197302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering apple tv remote with coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110459", "images": ["AURORA/data/something/frames/106892/first.jpg", "AURORA/data/something/frames/106892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110460", "images": ["AURORA/data/something/frames/125199/first.jpg", "AURORA/data/something/frames/125199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000110461", "images": ["AURORA/data/something/frames/63988/first.jpg", "AURORA/data/something/frames/63988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plastic bag from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110462", "images": ["AURORA/data/something/frames/78377/first.jpg", "AURORA/data/something/frames/78377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing supplement bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110463", "images": ["AURORA/data/something/frames/139489/first.jpg", "AURORA/data/something/frames/139489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler off of rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000110464", "images": ["AURORA/data/something/frames/195652/first.jpg", "AURORA/data/something/frames/195652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar crayons"}, {"from": "gpt", "value": ""}]} +{"id": "000000110465", "images": ["AURORA/data/something/frames/155983/first.jpg", "AURORA/data/something/frames/155983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a remote into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110466", "images": ["AURORA/data/something/frames/174516/first.jpg", "AURORA/data/something/frames/174516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into a cell phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110467", "images": ["AURORA/data/something/frames/96422/first.jpg", "AURORA/data/something/frames/96422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet away from deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000110468", "images": ["AURORA/data/something/frames/185635/first.jpg", "AURORA/data/something/frames/185635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110469", "images": ["AURORA/data/something/frames/105170/first.jpg", "AURORA/data/something/frames/105170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000110470", "images": ["AURORA/data/something/frames/140339/first.jpg", "AURORA/data/something/frames/140339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching keyring to a clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110471", "images": ["AURORA/data/something/frames/27536/first.jpg", "AURORA/data/something/frames/27536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110472", "images": ["AURORA/data/something/frames/155607/first.jpg", "AURORA/data/something/frames/155607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110473", "images": ["AURORA/data/something/frames/138958/first.jpg", "AURORA/data/something/frames/138958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on the edge of bowl so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110474", "images": ["AURORA/data/something/frames/147014/first.jpg", "AURORA/data/something/frames/147014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110475", "images": ["AURORA/data/something/frames/201428/first.jpg", "AURORA/data/something/frames/201428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110476", "images": ["AURORA/data/something/frames/17312/first.jpg", "AURORA/data/something/frames/17312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour coffee into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110477", "images": ["AURORA/data/something/frames/13508/first.jpg", "AURORA/data/something/frames/13508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from rubber band packets with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110478", "images": ["AURORA/data/something/frames/208773/first.jpg", "AURORA/data/something/frames/208773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding coat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110479", "images": ["AURORA/data/something/frames/65251/first.jpg", "AURORA/data/something/frames/65251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000110480", "images": ["AURORA/data/something/frames/199300/first.jpg", "AURORA/data/something/frames/199300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda can away from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110481", "images": ["AURORA/data/something/frames/37066/first.jpg", "AURORA/data/something/frames/37066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110482", "images": ["AURORA/data/something/frames/153343/first.jpg", "AURORA/data/something/frames/153343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pink ball onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110483", "images": ["AURORA/data/something/frames/189654/first.jpg", "AURORA/data/something/frames/189654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with tape on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110484", "images": ["AURORA/data/something/frames/154181/first.jpg", "AURORA/data/something/frames/154181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming rubiks cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000110485", "images": ["AURORA/data/something/frames/59222/first.jpg", "AURORA/data/something/frames/59222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pencil sharpners"}, {"from": "gpt", "value": ""}]} +{"id": "000000110486", "images": ["AURORA/data/something/frames/95695/first.jpg", "AURORA/data/something/frames/95695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into powdered grain"}, {"from": "gpt", "value": ""}]} +{"id": "000000110487", "images": ["AURORA/data/something/frames/135245/first.jpg", "AURORA/data/something/frames/135245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110488", "images": ["AURORA/data/something/frames/202806/first.jpg", "AURORA/data/something/frames/202806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110489", "images": ["AURORA/data/something/frames/64669/first.jpg", "AURORA/data/something/frames/64669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110490", "images": ["AURORA/data/something/frames/199369/first.jpg", "AURORA/data/something/frames/199369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a little piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110491", "images": ["AURORA/data/something/frames/207044/first.jpg", "AURORA/data/something/frames/207044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red booklet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110492", "images": ["AURORA/data/something/frames/10996/first.jpg", "AURORA/data/something/frames/10996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110493", "images": ["AURORA/data/something/frames/53390/first.jpg", "AURORA/data/something/frames/53390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110494", "images": ["AURORA/data/something/frames/75325/first.jpg", "AURORA/data/something/frames/75325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000110495", "images": ["AURORA/data/something/frames/46447/first.jpg", "AURORA/data/something/frames/46447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a pen in buttons"}, {"from": "gpt", "value": ""}]} +{"id": "000000110496", "images": ["AURORA/data/something/frames/110345/first.jpg", "AURORA/data/something/frames/110345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a thermocol away from the clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110497", "images": ["AURORA/data/something/frames/217790/first.jpg", "AURORA/data/something/frames/217790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a balloon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110498", "images": ["AURORA/data/something/frames/31027/first.jpg", "AURORA/data/something/frames/31027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour cold water into a water glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110499", "images": ["AURORA/data/something/frames/88925/first.jpg", "AURORA/data/something/frames/88925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching vacuum cleaner with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110500", "images": ["AURORA/data/something/frames/26293/first.jpg", "AURORA/data/something/frames/26293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110501", "images": ["AURORA/data/something/frames/135265/first.jpg", "AURORA/data/something/frames/135265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 rings"}, {"from": "gpt", "value": ""}]} +{"id": "000000110502", "images": ["AURORA/data/something/frames/141245/first.jpg", "AURORA/data/something/frames/141245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110503", "images": ["AURORA/data/something/frames/12521/first.jpg", "AURORA/data/something/frames/12521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dvd onto a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110504", "images": ["AURORA/data/something/frames/85087/first.jpg", "AURORA/data/something/frames/85087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a water bottle out of a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110505", "images": ["AURORA/data/something/frames/54104/first.jpg", "AURORA/data/something/frames/54104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bolt with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110506", "images": ["AURORA/data/something/frames/15729/first.jpg", "AURORA/data/something/frames/15729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pretzel until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110507", "images": ["AURORA/data/something/frames/61876/first.jpg", "AURORA/data/something/frames/61876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook and pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110508", "images": ["AURORA/data/something/frames/84403/first.jpg", "AURORA/data/something/frames/84403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wood with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110509", "images": ["AURORA/data/something/frames/200795/first.jpg", "AURORA/data/something/frames/200795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110510", "images": ["AURORA/data/something/frames/92546/first.jpg", "AURORA/data/something/frames/92546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glass with marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000110511", "images": ["AURORA/data/something/frames/113492/first.jpg", "AURORA/data/something/frames/113492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cloth so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110512", "images": ["AURORA/data/something/frames/137219/first.jpg", "AURORA/data/something/frames/137219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tennis ball with cd stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110513", "images": ["AURORA/data/something/frames/6317/first.jpg", "AURORA/data/something/frames/6317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling lock handle from behind of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000110514", "images": ["AURORA/data/something/frames/201135/first.jpg", "AURORA/data/something/frames/201135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a brush onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110515", "images": ["AURORA/data/something/frames/65177/first.jpg", "AURORA/data/something/frames/65177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110516", "images": ["AURORA/data/something/frames/164069/first.jpg", "AURORA/data/something/frames/164069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tooth brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110517", "images": ["AURORA/data/something/frames/144614/first.jpg", "AURORA/data/something/frames/144614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110518", "images": ["AURORA/data/something/frames/93125/first.jpg", "AURORA/data/something/frames/93125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing meter box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110519", "images": ["AURORA/data/something/frames/55783/first.jpg", "AURORA/data/something/frames/55783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping coffee up with scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110520", "images": ["AURORA/data/something/frames/98800/first.jpg", "AURORA/data/something/frames/98800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black lipstick from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110521", "images": ["AURORA/data/something/frames/182935/first.jpg", "AURORA/data/something/frames/182935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110522", "images": ["AURORA/data/something/frames/50850/first.jpg", "AURORA/data/something/frames/50850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a cell phone case so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110523", "images": ["AURORA/data/something/frames/3125/first.jpg", "AURORA/data/something/frames/3125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coke onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110524", "images": ["AURORA/data/something/frames/97643/first.jpg", "AURORA/data/something/frames/97643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking chair so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110525", "images": ["AURORA/data/something/frames/128275/first.jpg", "AURORA/data/something/frames/128275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy train from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110526", "images": ["AURORA/data/something/frames/143136/first.jpg", "AURORA/data/something/frames/143136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110527", "images": ["AURORA/data/something/frames/120164/first.jpg", "AURORA/data/something/frames/120164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving accelarator of scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110528", "images": ["AURORA/data/something/frames/10928/first.jpg", "AURORA/data/something/frames/10928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110529", "images": ["AURORA/data/something/frames/200972/first.jpg", "AURORA/data/something/frames/200972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110530", "images": ["AURORA/data/something/frames/61889/first.jpg", "AURORA/data/something/frames/61889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a rubiks cube with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110531", "images": ["AURORA/data/something/frames/103292/first.jpg", "AURORA/data/something/frames/103292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting liner next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110532", "images": ["AURORA/data/something/frames/158793/first.jpg", "AURORA/data/something/frames/158793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping perfume over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110533", "images": ["AURORA/data/something/frames/134268/first.jpg", "AURORA/data/something/frames/134268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading rice onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110534", "images": ["AURORA/data/something/frames/185976/first.jpg", "AURORA/data/something/frames/185976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black play cards down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110535", "images": ["AURORA/data/something/frames/204130/first.jpg", "AURORA/data/something/frames/204130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing teddy bear, revealing a bottle behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110536", "images": ["AURORA/data/something/frames/5017/first.jpg", "AURORA/data/something/frames/5017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring ground coffee into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110537", "images": ["AURORA/data/something/frames/177818/first.jpg", "AURORA/data/something/frames/177818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen onto a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000110538", "images": ["AURORA/data/something/frames/213709/first.jpg", "AURORA/data/something/frames/213709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin from behind of cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000110539", "images": ["AURORA/data/something/frames/204395/first.jpg", "AURORA/data/something/frames/204395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110540", "images": ["AURORA/data/something/frames/116256/first.jpg", "AURORA/data/something/frames/116256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110541", "images": ["AURORA/data/something/frames/9605/first.jpg", "AURORA/data/something/frames/9605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110542", "images": ["AURORA/data/something/frames/647/first.jpg", "AURORA/data/something/frames/647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000110543", "images": ["AURORA/data/something/frames/85571/first.jpg", "AURORA/data/something/frames/85571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pink water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110544", "images": ["AURORA/data/something/frames/173807/first.jpg", "AURORA/data/something/frames/173807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a ketchup bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110545", "images": ["AURORA/data/something/frames/9025/first.jpg", "AURORA/data/something/frames/9025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 sandal"}, {"from": "gpt", "value": ""}]} +{"id": "000000110546", "images": ["AURORA/data/something/frames/179518/first.jpg", "AURORA/data/something/frames/179518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper piece so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110547", "images": ["AURORA/data/something/frames/67070/first.jpg", "AURORA/data/something/frames/67070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toiletpaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110548", "images": ["AURORA/data/something/frames/51923/first.jpg", "AURORA/data/something/frames/51923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110549", "images": ["AURORA/data/something/frames/140210/first.jpg", "AURORA/data/something/frames/140210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110550", "images": ["AURORA/data/something/frames/96217/first.jpg", "AURORA/data/something/frames/96217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading rice onto spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110551", "images": ["AURORA/data/something/frames/177113/first.jpg", "AURORA/data/something/frames/177113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110552", "images": ["AURORA/data/something/frames/39883/first.jpg", "AURORA/data/something/frames/39883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110553", "images": ["AURORA/data/something/frames/159264/first.jpg", "AURORA/data/something/frames/159264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110554", "images": ["AURORA/data/something/frames/195315/first.jpg", "AURORA/data/something/frames/195315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110555", "images": ["AURORA/data/something/frames/104832/first.jpg", "AURORA/data/something/frames/104832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110556", "images": ["AURORA/data/something/frames/72826/first.jpg", "AURORA/data/something/frames/72826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spanner on the right among many spanners on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110557", "images": ["AURORA/data/something/frames/188732/first.jpg", "AURORA/data/something/frames/188732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ketchup bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110558", "images": ["AURORA/data/something/frames/9789/first.jpg", "AURORA/data/something/frames/9789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110559", "images": ["AURORA/data/something/frames/160208/first.jpg", "AURORA/data/something/frames/160208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110560", "images": ["AURORA/data/something/frames/196535/first.jpg", "AURORA/data/something/frames/196535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110561", "images": ["AURORA/data/something/frames/154077/first.jpg", "AURORA/data/something/frames/154077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110562", "images": ["AURORA/data/something/frames/154981/first.jpg", "AURORA/data/something/frames/154981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110563", "images": ["AURORA/data/something/frames/165629/first.jpg", "AURORA/data/something/frames/165629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 containers"}, {"from": "gpt", "value": ""}]} +{"id": "000000110564", "images": ["AURORA/data/something/frames/138697/first.jpg", "AURORA/data/something/frames/138697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110565", "images": ["AURORA/data/something/frames/13947/first.jpg", "AURORA/data/something/frames/13947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging coin out of flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000110566", "images": ["AURORA/data/something/frames/31268/first.jpg", "AURORA/data/something/frames/31268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one pen from the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110567", "images": ["AURORA/data/something/frames/182600/first.jpg", "AURORA/data/something/frames/182600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110568", "images": ["AURORA/data/something/frames/189850/first.jpg", "AURORA/data/something/frames/189850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110569", "images": ["AURORA/data/something/frames/206028/first.jpg", "AURORA/data/something/frames/206028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pear into the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110570", "images": ["AURORA/data/something/frames/182462/first.jpg", "AURORA/data/something/frames/182462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110571", "images": ["AURORA/data/something/frames/16248/first.jpg", "AURORA/data/something/frames/16248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping white spoon into glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110572", "images": ["AURORA/data/something/frames/101335/first.jpg", "AURORA/data/something/frames/101335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into a laptop usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000110573", "images": ["AURORA/data/something/frames/108172/first.jpg", "AURORA/data/something/frames/108172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110574", "images": ["AURORA/data/something/frames/66982/first.jpg", "AURORA/data/something/frames/66982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110575", "images": ["AURORA/data/something/frames/155594/first.jpg", "AURORA/data/something/frames/155594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screen of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110576", "images": ["AURORA/data/something/frames/91984/first.jpg", "AURORA/data/something/frames/91984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ring out of jewelry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110577", "images": ["AURORA/data/something/frames/13269/first.jpg", "AURORA/data/something/frames/13269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110578", "images": ["AURORA/data/something/frames/176845/first.jpg", "AURORA/data/something/frames/176845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering rock with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110579", "images": ["AURORA/data/something/frames/125532/first.jpg", "AURORA/data/something/frames/125532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving water bottle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110580", "images": ["AURORA/data/something/frames/20974/first.jpg", "AURORA/data/something/frames/20974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a clock over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110581", "images": ["AURORA/data/something/frames/23465/first.jpg", "AURORA/data/something/frames/23465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning birthday card upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110582", "images": ["AURORA/data/something/frames/203451/first.jpg", "AURORA/data/something/frames/203451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110583", "images": ["AURORA/data/something/frames/31589/first.jpg", "AURORA/data/something/frames/31589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game behind paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110584", "images": ["AURORA/data/something/frames/95537/first.jpg", "AURORA/data/something/frames/95537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cube onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110585", "images": ["AURORA/data/something/frames/37291/first.jpg", "AURORA/data/something/frames/37291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notepad paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110586", "images": ["AURORA/data/something/frames/144888/first.jpg", "AURORA/data/something/frames/144888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying remote in blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110587", "images": ["AURORA/data/something/frames/28082/first.jpg", "AURORA/data/something/frames/28082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110588", "images": ["AURORA/data/something/frames/114333/first.jpg", "AURORA/data/something/frames/114333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110589", "images": ["AURORA/data/something/frames/214567/first.jpg", "AURORA/data/something/frames/214567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110590", "images": ["AURORA/data/something/frames/94575/first.jpg", "AURORA/data/something/frames/94575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000110591", "images": ["AURORA/data/something/frames/156285/first.jpg", "AURORA/data/something/frames/156285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) paper of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110592", "images": ["AURORA/data/something/frames/1422/first.jpg", "AURORA/data/something/frames/1422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110593", "images": ["AURORA/data/something/frames/27595/first.jpg", "AURORA/data/something/frames/27595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110594", "images": ["AURORA/data/something/frames/177507/first.jpg", "AURORA/data/something/frames/177507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110595", "images": ["AURORA/data/something/frames/34509/first.jpg", "AURORA/data/something/frames/34509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving body spray can up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110596", "images": ["AURORA/data/something/frames/121323/first.jpg", "AURORA/data/something/frames/121323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending thick paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110597", "images": ["AURORA/data/something/frames/84915/first.jpg", "AURORA/data/something/frames/84915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clip closer to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000110598", "images": ["AURORA/data/something/frames/183374/first.jpg", "AURORA/data/something/frames/183374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy plane from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110599", "images": ["AURORA/data/something/frames/123364/first.jpg", "AURORA/data/something/frames/123364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tissue box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110600", "images": ["AURORA/data/something/frames/187215/first.jpg", "AURORA/data/something/frames/187215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red bottlecap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110601", "images": ["AURORA/data/something/frames/216111/first.jpg", "AURORA/data/something/frames/216111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110602", "images": ["AURORA/data/something/frames/155531/first.jpg", "AURORA/data/something/frames/155531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the slipper with the foot"}, {"from": "gpt", "value": ""}]} +{"id": "000000110603", "images": ["AURORA/data/something/frames/63161/first.jpg", "AURORA/data/something/frames/63161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a paper clip behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110604", "images": ["AURORA/data/something/frames/157400/first.jpg", "AURORA/data/something/frames/157400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110605", "images": ["AURORA/data/something/frames/145113/first.jpg", "AURORA/data/something/frames/145113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110606", "images": ["AURORA/data/something/frames/150774/first.jpg", "AURORA/data/something/frames/150774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110607", "images": ["AURORA/data/something/frames/38377/first.jpg", "AURORA/data/something/frames/38377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming bus"}, {"from": "gpt", "value": ""}]} +{"id": "000000110608", "images": ["AURORA/data/something/frames/211126/first.jpg", "AURORA/data/something/frames/211126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car colliding with a marble ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110609", "images": ["AURORA/data/something/frames/73799/first.jpg", "AURORA/data/something/frames/73799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110610", "images": ["AURORA/data/something/frames/24164/first.jpg", "AURORA/data/something/frames/24164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110611", "images": ["AURORA/data/something/frames/7292/first.jpg", "AURORA/data/something/frames/7292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic bottle into bucket water"}, {"from": "gpt", "value": ""}]} +{"id": "000000110612", "images": ["AURORA/data/something/frames/159371/first.jpg", "AURORA/data/something/frames/159371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110613", "images": ["AURORA/data/something/frames/166456/first.jpg", "AURORA/data/something/frames/166456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bottle cap with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110614", "images": ["AURORA/data/something/frames/196775/first.jpg", "AURORA/data/something/frames/196775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110615", "images": ["AURORA/data/something/frames/215056/first.jpg", "AURORA/data/something/frames/215056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an airwick scent into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110616", "images": ["AURORA/data/something/frames/201589/first.jpg", "AURORA/data/something/frames/201589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing black plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110617", "images": ["AURORA/data/something/frames/213462/first.jpg", "AURORA/data/something/frames/213462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb next to the laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110618", "images": ["AURORA/data/something/frames/203405/first.jpg", "AURORA/data/something/frames/203405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying pitcher on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110619", "images": ["AURORA/data/something/frames/162121/first.jpg", "AURORA/data/something/frames/162121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110620", "images": ["AURORA/data/something/frames/116624/first.jpg", "AURORA/data/something/frames/116624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy idol into blue colour spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110621", "images": ["AURORA/data/something/frames/117244/first.jpg", "AURORA/data/something/frames/117244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110622", "images": ["AURORA/data/something/frames/92374/first.jpg", "AURORA/data/something/frames/92374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110623", "images": ["AURORA/data/something/frames/209319/first.jpg", "AURORA/data/something/frames/209319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock and rock away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110624", "images": ["AURORA/data/something/frames/52371/first.jpg", "AURORA/data/something/frames/52371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb cable to adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110625", "images": ["AURORA/data/something/frames/89533/first.jpg", "AURORA/data/something/frames/89533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one bottle from similar bottles on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110626", "images": ["AURORA/data/something/frames/120228/first.jpg", "AURORA/data/something/frames/120228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jelly onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000110627", "images": ["AURORA/data/something/frames/93839/first.jpg", "AURORA/data/something/frames/93839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing watch so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110628", "images": ["AURORA/data/something/frames/67019/first.jpg", "AURORA/data/something/frames/67019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110629", "images": ["AURORA/data/something/frames/196321/first.jpg", "AURORA/data/something/frames/196321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cube onto battery so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110630", "images": ["AURORA/data/something/frames/190023/first.jpg", "AURORA/data/something/frames/190023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110631", "images": ["AURORA/data/something/frames/193760/first.jpg", "AURORA/data/something/frames/193760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110632", "images": ["AURORA/data/something/frames/36121/first.jpg", "AURORA/data/something/frames/36121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110633", "images": ["AURORA/data/something/frames/24175/first.jpg", "AURORA/data/something/frames/24175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110634", "images": ["AURORA/data/something/frames/33232/first.jpg", "AURORA/data/something/frames/33232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110635", "images": ["AURORA/data/something/frames/137833/first.jpg", "AURORA/data/something/frames/137833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing something into two pieces into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110636", "images": ["AURORA/data/something/frames/166000/first.jpg", "AURORA/data/something/frames/166000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110637", "images": ["AURORA/data/something/frames/143762/first.jpg", "AURORA/data/something/frames/143762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving baby toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110638", "images": ["AURORA/data/something/frames/97541/first.jpg", "AURORA/data/something/frames/97541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110639", "images": ["AURORA/data/something/frames/115567/first.jpg", "AURORA/data/something/frames/115567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of button"}, {"from": "gpt", "value": ""}]} +{"id": "000000110640", "images": ["AURORA/data/something/frames/174407/first.jpg", "AURORA/data/something/frames/174407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil box behind globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000110641", "images": ["AURORA/data/something/frames/89126/first.jpg", "AURORA/data/something/frames/89126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110642", "images": ["AURORA/data/something/frames/7636/first.jpg", "AURORA/data/something/frames/7636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110643", "images": ["AURORA/data/something/frames/166031/first.jpg", "AURORA/data/something/frames/166031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen refill tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110644", "images": ["AURORA/data/something/frames/105371/first.jpg", "AURORA/data/something/frames/105371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush and toothpaste closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110645", "images": ["AURORA/data/something/frames/66000/first.jpg", "AURORA/data/something/frames/66000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper punch from slab"}, {"from": "gpt", "value": ""}]} +{"id": "000000110646", "images": ["AURORA/data/something/frames/109353/first.jpg", "AURORA/data/something/frames/109353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening lip balm"}, {"from": "gpt", "value": ""}]} +{"id": "000000110647", "images": ["AURORA/data/something/frames/49894/first.jpg", "AURORA/data/something/frames/49894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable closer to eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000110648", "images": ["AURORA/data/something/frames/4074/first.jpg", "AURORA/data/something/frames/4074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spray bottle, book and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110649", "images": ["AURORA/data/something/frames/118355/first.jpg", "AURORA/data/something/frames/118355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000110650", "images": ["AURORA/data/something/frames/127511/first.jpg", "AURORA/data/something/frames/127511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pencil onto a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110651", "images": ["AURORA/data/something/frames/116514/first.jpg", "AURORA/data/something/frames/116514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a groundnut next to keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000110652", "images": ["AURORA/data/something/frames/113441/first.jpg", "AURORA/data/something/frames/113441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper closer to the computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110653", "images": ["AURORA/data/something/frames/86130/first.jpg", "AURORA/data/something/frames/86130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110654", "images": ["AURORA/data/something/frames/106391/first.jpg", "AURORA/data/something/frames/106391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 containers of tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000110655", "images": ["AURORA/data/something/frames/153466/first.jpg", "AURORA/data/something/frames/153466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock closer to lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110656", "images": ["AURORA/data/something/frames/170727/first.jpg", "AURORA/data/something/frames/170727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scotch tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110657", "images": ["AURORA/data/something/frames/34562/first.jpg", "AURORA/data/something/frames/34562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thermocol and comb closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110658", "images": ["AURORA/data/something/frames/13504/first.jpg", "AURORA/data/something/frames/13504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a glasses box onto a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110659", "images": ["AURORA/data/something/frames/21063/first.jpg", "AURORA/data/something/frames/21063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110660", "images": ["AURORA/data/something/frames/18893/first.jpg", "AURORA/data/something/frames/18893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wine bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110661", "images": ["AURORA/data/something/frames/77021/first.jpg", "AURORA/data/something/frames/77021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110662", "images": ["AURORA/data/something/frames/157052/first.jpg", "AURORA/data/something/frames/157052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil in front of tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000110663", "images": ["AURORA/data/something/frames/112478/first.jpg", "AURORA/data/something/frames/112478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into pen case"}, {"from": "gpt", "value": ""}]} +{"id": "000000110664", "images": ["AURORA/data/something/frames/168928/first.jpg", "AURORA/data/something/frames/168928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110665", "images": ["AURORA/data/something/frames/166578/first.jpg", "AURORA/data/something/frames/166578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110666", "images": ["AURORA/data/something/frames/92842/first.jpg", "AURORA/data/something/frames/92842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small shot glass and big shot glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110667", "images": ["AURORA/data/something/frames/133692/first.jpg", "AURORA/data/something/frames/133692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110668", "images": ["AURORA/data/something/frames/144528/first.jpg", "AURORA/data/something/frames/144528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pebble from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110669", "images": ["AURORA/data/something/frames/185531/first.jpg", "AURORA/data/something/frames/185531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110670", "images": ["AURORA/data/something/frames/217346/first.jpg", "AURORA/data/something/frames/217346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jeans pant"}, {"from": "gpt", "value": ""}]} +{"id": "000000110671", "images": ["AURORA/data/something/frames/117784/first.jpg", "AURORA/data/something/frames/117784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a computer mouse so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110672", "images": ["AURORA/data/something/frames/54056/first.jpg", "AURORA/data/something/frames/54056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toothbrushes with hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110673", "images": ["AURORA/data/something/frames/1750/first.jpg", "AURORA/data/something/frames/1750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with nail varnish on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110674", "images": ["AURORA/data/something/frames/143934/first.jpg", "AURORA/data/something/frames/143934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110675", "images": ["AURORA/data/something/frames/129582/first.jpg", "AURORA/data/something/frames/129582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paer into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110676", "images": ["AURORA/data/something/frames/206035/first.jpg", "AURORA/data/something/frames/206035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering hair clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000110677", "images": ["AURORA/data/something/frames/114625/first.jpg", "AURORA/data/something/frames/114625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110678", "images": ["AURORA/data/something/frames/173110/first.jpg", "AURORA/data/something/frames/173110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming chick"}, {"from": "gpt", "value": ""}]} +{"id": "000000110679", "images": ["AURORA/data/something/frames/150924/first.jpg", "AURORA/data/something/frames/150924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110680", "images": ["AURORA/data/something/frames/133009/first.jpg", "AURORA/data/something/frames/133009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wrist watch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110681", "images": ["AURORA/data/something/frames/52094/first.jpg", "AURORA/data/something/frames/52094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110682", "images": ["AURORA/data/something/frames/112313/first.jpg", "AURORA/data/something/frames/112313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110683", "images": ["AURORA/data/something/frames/219062/first.jpg", "AURORA/data/something/frames/219062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110684", "images": ["AURORA/data/something/frames/217069/first.jpg", "AURORA/data/something/frames/217069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving razor down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110685", "images": ["AURORA/data/something/frames/108226/first.jpg", "AURORA/data/something/frames/108226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110686", "images": ["AURORA/data/something/frames/205678/first.jpg", "AURORA/data/something/frames/205678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110687", "images": ["AURORA/data/something/frames/216977/first.jpg", "AURORA/data/something/frames/216977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110688", "images": ["AURORA/data/something/frames/106730/first.jpg", "AURORA/data/something/frames/106730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a banana into a packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110689", "images": ["AURORA/data/something/frames/116602/first.jpg", "AURORA/data/something/frames/116602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110690", "images": ["AURORA/data/something/frames/205154/first.jpg", "AURORA/data/something/frames/205154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling zipper from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110691", "images": ["AURORA/data/something/frames/18580/first.jpg", "AURORA/data/something/frames/18580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chalk piece up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110692", "images": ["AURORA/data/something/frames/103337/first.jpg", "AURORA/data/something/frames/103337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110693", "images": ["AURORA/data/something/frames/76434/first.jpg", "AURORA/data/something/frames/76434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an ipad with a cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110694", "images": ["AURORA/data/something/frames/19198/first.jpg", "AURORA/data/something/frames/19198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tables and chairs with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110695", "images": ["AURORA/data/something/frames/138001/first.jpg", "AURORA/data/something/frames/138001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a keybound on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110696", "images": ["AURORA/data/something/frames/65666/first.jpg", "AURORA/data/something/frames/65666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000110697", "images": ["AURORA/data/something/frames/36268/first.jpg", "AURORA/data/something/frames/36268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle next to water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110698", "images": ["AURORA/data/something/frames/199668/first.jpg", "AURORA/data/something/frames/199668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110699", "images": ["AURORA/data/something/frames/40880/first.jpg", "AURORA/data/something/frames/40880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting rectanglular box with keys on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110700", "images": ["AURORA/data/something/frames/214093/first.jpg", "AURORA/data/something/frames/214093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110701", "images": ["AURORA/data/something/frames/113042/first.jpg", "AURORA/data/something/frames/113042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110702", "images": ["AURORA/data/something/frames/187396/first.jpg", "AURORA/data/something/frames/187396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110703", "images": ["AURORA/data/something/frames/15646/first.jpg", "AURORA/data/something/frames/15646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing dirty clothes into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110704", "images": ["AURORA/data/something/frames/76689/first.jpg", "AURORA/data/something/frames/76689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110705", "images": ["AURORA/data/something/frames/54224/first.jpg", "AURORA/data/something/frames/54224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110706", "images": ["AURORA/data/something/frames/10122/first.jpg", "AURORA/data/something/frames/10122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hair pin so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110707", "images": ["AURORA/data/something/frames/182027/first.jpg", "AURORA/data/something/frames/182027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into a laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110708", "images": ["AURORA/data/something/frames/139449/first.jpg", "AURORA/data/something/frames/139449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110709", "images": ["AURORA/data/something/frames/68803/first.jpg", "AURORA/data/something/frames/68803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 dvds"}, {"from": "gpt", "value": ""}]} +{"id": "000000110710", "images": ["AURORA/data/something/frames/33547/first.jpg", "AURORA/data/something/frames/33547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing remote, revealing a pen behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110711", "images": ["AURORA/data/something/frames/158343/first.jpg", "AURORA/data/something/frames/158343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110712", "images": ["AURORA/data/something/frames/177451/first.jpg", "AURORA/data/something/frames/177451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110713", "images": ["AURORA/data/something/frames/93985/first.jpg", "AURORA/data/something/frames/93985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clear plastic pot onto windowsill"}, {"from": "gpt", "value": ""}]} +{"id": "000000110714", "images": ["AURORA/data/something/frames/50886/first.jpg", "AURORA/data/something/frames/50886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110715", "images": ["AURORA/data/something/frames/30223/first.jpg", "AURORA/data/something/frames/30223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coins into coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110716", "images": ["AURORA/data/something/frames/109252/first.jpg", "AURORA/data/something/frames/109252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110717", "images": ["AURORA/data/something/frames/39182/first.jpg", "AURORA/data/something/frames/39182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic clothes hangar into couch cushion opening"}, {"from": "gpt", "value": ""}]} +{"id": "000000110718", "images": ["AURORA/data/something/frames/94613/first.jpg", "AURORA/data/something/frames/94613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillows with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110719", "images": ["AURORA/data/something/frames/23704/first.jpg", "AURORA/data/something/frames/23704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stuffed animal into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110720", "images": ["AURORA/data/something/frames/58947/first.jpg", "AURORA/data/something/frames/58947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle closer to lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000110721", "images": ["AURORA/data/something/frames/19805/first.jpg", "AURORA/data/something/frames/19805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110722", "images": ["AURORA/data/something/frames/110797/first.jpg", "AURORA/data/something/frames/110797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box of juice onto plastic cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000110723", "images": ["AURORA/data/something/frames/80980/first.jpg", "AURORA/data/something/frames/80980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering sunglasses with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110724", "images": ["AURORA/data/something/frames/32833/first.jpg", "AURORA/data/something/frames/32833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing duster with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110725", "images": ["AURORA/data/something/frames/220688/first.jpg", "AURORA/data/something/frames/220688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jar out of pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000110726", "images": ["AURORA/data/something/frames/7902/first.jpg", "AURORA/data/something/frames/7902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110727", "images": ["AURORA/data/something/frames/123627/first.jpg", "AURORA/data/something/frames/123627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping screw driver onto marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110728", "images": ["AURORA/data/something/frames/176988/first.jpg", "AURORA/data/something/frames/176988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into duffel bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110729", "images": ["AURORA/data/something/frames/62149/first.jpg", "AURORA/data/something/frames/62149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110730", "images": ["AURORA/data/something/frames/18398/first.jpg", "AURORA/data/something/frames/18398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief in front of a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000110731", "images": ["AURORA/data/something/frames/162960/first.jpg", "AURORA/data/something/frames/162960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hair clip closer to white toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110732", "images": ["AURORA/data/something/frames/182059/first.jpg", "AURORA/data/something/frames/182059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crystal"}, {"from": "gpt", "value": ""}]} +{"id": "000000110733", "images": ["AURORA/data/something/frames/33375/first.jpg", "AURORA/data/something/frames/33375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with candy on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110734", "images": ["AURORA/data/something/frames/160050/first.jpg", "AURORA/data/something/frames/160050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110735", "images": ["AURORA/data/something/frames/216360/first.jpg", "AURORA/data/something/frames/216360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping paper towels over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110736", "images": ["AURORA/data/something/frames/136037/first.jpg", "AURORA/data/something/frames/136037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000110737", "images": ["AURORA/data/something/frames/35790/first.jpg", "AURORA/data/something/frames/35790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110738", "images": ["AURORA/data/something/frames/43088/first.jpg", "AURORA/data/something/frames/43088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping block next to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110739", "images": ["AURORA/data/something/frames/186734/first.jpg", "AURORA/data/something/frames/186734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling orange post-it from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110740", "images": ["AURORA/data/something/frames/40969/first.jpg", "AURORA/data/something/frames/40969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple into a fruit basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110741", "images": ["AURORA/data/something/frames/50441/first.jpg", "AURORA/data/something/frames/50441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pillow so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110742", "images": ["AURORA/data/something/frames/97640/first.jpg", "AURORA/data/something/frames/97640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting an index card with a quarter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110743", "images": ["AURORA/data/something/frames/64552/first.jpg", "AURORA/data/something/frames/64552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow colour marker on the top similar to other markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110744", "images": ["AURORA/data/something/frames/108641/first.jpg", "AURORA/data/something/frames/108641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming violin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110745", "images": ["AURORA/data/something/frames/214642/first.jpg", "AURORA/data/something/frames/214642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something in front of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110746", "images": ["AURORA/data/something/frames/177318/first.jpg", "AURORA/data/something/frames/177318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110747", "images": ["AURORA/data/something/frames/61746/first.jpg", "AURORA/data/something/frames/61746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing perfume"}, {"from": "gpt", "value": ""}]} +{"id": "000000110748", "images": ["AURORA/data/something/frames/212841/first.jpg", "AURORA/data/something/frames/212841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of elastic band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110749", "images": ["AURORA/data/something/frames/74133/first.jpg", "AURORA/data/something/frames/74133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110750", "images": ["AURORA/data/something/frames/46326/first.jpg", "AURORA/data/something/frames/46326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with keys on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110751", "images": ["AURORA/data/something/frames/150004/first.jpg", "AURORA/data/something/frames/150004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110752", "images": ["AURORA/data/something/frames/117615/first.jpg", "AURORA/data/something/frames/117615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and remote away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110753", "images": ["AURORA/data/something/frames/92805/first.jpg", "AURORA/data/something/frames/92805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000110754", "images": ["AURORA/data/something/frames/13617/first.jpg", "AURORA/data/something/frames/13617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000110755", "images": ["AURORA/data/something/frames/162949/first.jpg", "AURORA/data/something/frames/162949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110756", "images": ["AURORA/data/something/frames/10446/first.jpg", "AURORA/data/something/frames/10446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rubix cube closer to spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110757", "images": ["AURORA/data/something/frames/159181/first.jpg", "AURORA/data/something/frames/159181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the body of the mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000110758", "images": ["AURORA/data/something/frames/136266/first.jpg", "AURORA/data/something/frames/136266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging inlet into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110759", "images": ["AURORA/data/something/frames/136601/first.jpg", "AURORA/data/something/frames/136601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000110760", "images": ["AURORA/data/something/frames/170626/first.jpg", "AURORA/data/something/frames/170626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a woodenbox with a plastic plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110761", "images": ["AURORA/data/something/frames/124122/first.jpg", "AURORA/data/something/frames/124122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a card towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110762", "images": ["AURORA/data/something/frames/96665/first.jpg", "AURORA/data/something/frames/96665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110763", "images": ["AURORA/data/something/frames/185357/first.jpg", "AURORA/data/something/frames/185357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping canister with lemon over, so lemon falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110764", "images": ["AURORA/data/something/frames/205944/first.jpg", "AURORA/data/something/frames/205944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rack up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110765", "images": ["AURORA/data/something/frames/82829/first.jpg", "AURORA/data/something/frames/82829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110766", "images": ["AURORA/data/something/frames/85075/first.jpg", "AURORA/data/something/frames/85075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker out of a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110767", "images": ["AURORA/data/something/frames/106669/first.jpg", "AURORA/data/something/frames/106669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting envelope on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110768", "images": ["AURORA/data/something/frames/178603/first.jpg", "AURORA/data/something/frames/178603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110769", "images": ["AURORA/data/something/frames/121737/first.jpg", "AURORA/data/something/frames/121737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin into a piggy bank"}, {"from": "gpt", "value": ""}]} +{"id": "000000110770", "images": ["AURORA/data/something/frames/57055/first.jpg", "AURORA/data/something/frames/57055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110771", "images": ["AURORA/data/something/frames/51198/first.jpg", "AURORA/data/something/frames/51198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glue stick on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110772", "images": ["AURORA/data/something/frames/84967/first.jpg", "AURORA/data/something/frames/84967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110773", "images": ["AURORA/data/something/frames/185860/first.jpg", "AURORA/data/something/frames/185860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of envelopes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000110774", "images": ["AURORA/data/something/frames/97057/first.jpg", "AURORA/data/something/frames/97057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass onto a matt/coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000110775", "images": ["AURORA/data/something/frames/101761/first.jpg", "AURORA/data/something/frames/101761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming krishna idole"}, {"from": "gpt", "value": ""}]} +{"id": "000000110776", "images": ["AURORA/data/something/frames/138230/first.jpg", "AURORA/data/something/frames/138230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and wristwatch closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110777", "images": ["AURORA/data/something/frames/133810/first.jpg", "AURORA/data/something/frames/133810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a banana out of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110778", "images": ["AURORA/data/something/frames/81709/first.jpg", "AURORA/data/something/frames/81709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering eye of stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000110779", "images": ["AURORA/data/something/frames/220691/first.jpg", "AURORA/data/something/frames/220691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming the mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000110780", "images": ["AURORA/data/something/frames/94509/first.jpg", "AURORA/data/something/frames/94509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling food packet out of plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000110781", "images": ["AURORA/data/something/frames/200656/first.jpg", "AURORA/data/something/frames/200656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball closer to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110782", "images": ["AURORA/data/something/frames/205033/first.jpg", "AURORA/data/something/frames/205033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110783", "images": ["AURORA/data/something/frames/204186/first.jpg", "AURORA/data/something/frames/204186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110784", "images": ["AURORA/data/something/frames/100872/first.jpg", "AURORA/data/something/frames/100872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing laundry into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110785", "images": ["AURORA/data/something/frames/176564/first.jpg", "AURORA/data/something/frames/176564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator, pen and wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110786", "images": ["AURORA/data/something/frames/173923/first.jpg", "AURORA/data/something/frames/173923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cup to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110787", "images": ["AURORA/data/something/frames/6199/first.jpg", "AURORA/data/something/frames/6199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an immersion blender base upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110788", "images": ["AURORA/data/something/frames/208085/first.jpg", "AURORA/data/something/frames/208085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting blue spoon into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110789", "images": ["AURORA/data/something/frames/166604/first.jpg", "AURORA/data/something/frames/166604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pan onto a stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000110790", "images": ["AURORA/data/something/frames/38895/first.jpg", "AURORA/data/something/frames/38895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110791", "images": ["AURORA/data/something/frames/72820/first.jpg", "AURORA/data/something/frames/72820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a glass container, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000110792", "images": ["AURORA/data/something/frames/131185/first.jpg", "AURORA/data/something/frames/131185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a tv into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110793", "images": ["AURORA/data/something/frames/122382/first.jpg", "AURORA/data/something/frames/122382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying drinking bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000110794", "images": ["AURORA/data/something/frames/56621/first.jpg", "AURORA/data/something/frames/56621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110795", "images": ["AURORA/data/something/frames/15581/first.jpg", "AURORA/data/something/frames/15581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pop can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110796", "images": ["AURORA/data/something/frames/44551/first.jpg", "AURORA/data/something/frames/44551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glasses and perfum closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110797", "images": ["AURORA/data/something/frames/54103/first.jpg", "AURORA/data/something/frames/54103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110798", "images": ["AURORA/data/something/frames/97299/first.jpg", "AURORA/data/something/frames/97299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending key chain so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110799", "images": ["AURORA/data/something/frames/86545/first.jpg", "AURORA/data/something/frames/86545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000110800", "images": ["AURORA/data/something/frames/18951/first.jpg", "AURORA/data/something/frames/18951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110801", "images": ["AURORA/data/something/frames/121954/first.jpg", "AURORA/data/something/frames/121954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110802", "images": ["AURORA/data/something/frames/42838/first.jpg", "AURORA/data/something/frames/42838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading mayonase onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000110803", "images": ["AURORA/data/something/frames/138809/first.jpg", "AURORA/data/something/frames/138809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110804", "images": ["AURORA/data/something/frames/98914/first.jpg", "AURORA/data/something/frames/98914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110805", "images": ["AURORA/data/something/frames/106402/first.jpg", "AURORA/data/something/frames/106402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can opener, toy ambulance and a lemon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110806", "images": ["AURORA/data/something/frames/156256/first.jpg", "AURORA/data/something/frames/156256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cigaret out of marlboro pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000110807", "images": ["AURORA/data/something/frames/81300/first.jpg", "AURORA/data/something/frames/81300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching soda bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110808", "images": ["AURORA/data/something/frames/119096/first.jpg", "AURORA/data/something/frames/119096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting khaki into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110809", "images": ["AURORA/data/something/frames/95465/first.jpg", "AURORA/data/something/frames/95465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of sugar cubes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110810", "images": ["AURORA/data/something/frames/76867/first.jpg", "AURORA/data/something/frames/76867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110811", "images": ["AURORA/data/something/frames/152145/first.jpg", "AURORA/data/something/frames/152145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into a cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000110812", "images": ["AURORA/data/something/frames/76988/first.jpg", "AURORA/data/something/frames/76988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bag into drinking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110813", "images": ["AURORA/data/something/frames/206586/first.jpg", "AURORA/data/something/frames/206586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an eraser onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110814", "images": ["AURORA/data/something/frames/195304/first.jpg", "AURORA/data/something/frames/195304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110815", "images": ["AURORA/data/something/frames/44347/first.jpg", "AURORA/data/something/frames/44347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110816", "images": ["AURORA/data/something/frames/28772/first.jpg", "AURORA/data/something/frames/28772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) head of toys"}, {"from": "gpt", "value": ""}]} +{"id": "000000110817", "images": ["AURORA/data/something/frames/127384/first.jpg", "AURORA/data/something/frames/127384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing teabag into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110818", "images": ["AURORA/data/something/frames/188245/first.jpg", "AURORA/data/something/frames/188245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a dvd"}, {"from": "gpt", "value": ""}]} +{"id": "000000110819", "images": ["AURORA/data/something/frames/20628/first.jpg", "AURORA/data/something/frames/20628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee grounds behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110820", "images": ["AURORA/data/something/frames/568/first.jpg", "AURORA/data/something/frames/568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a trophy across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110821", "images": ["AURORA/data/something/frames/44850/first.jpg", "AURORA/data/something/frames/44850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110822", "images": ["AURORA/data/something/frames/51559/first.jpg", "AURORA/data/something/frames/51559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering humidifier with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110823", "images": ["AURORA/data/something/frames/108368/first.jpg", "AURORA/data/something/frames/108368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110824", "images": ["AURORA/data/something/frames/218971/first.jpg", "AURORA/data/something/frames/218971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deo into bagback"}, {"from": "gpt", "value": ""}]} +{"id": "000000110825", "images": ["AURORA/data/something/frames/208801/first.jpg", "AURORA/data/something/frames/208801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a smartphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110826", "images": ["AURORA/data/something/frames/184986/first.jpg", "AURORA/data/something/frames/184986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110827", "images": ["AURORA/data/something/frames/82772/first.jpg", "AURORA/data/something/frames/82772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a chinese food box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110828", "images": ["AURORA/data/something/frames/161053/first.jpg", "AURORA/data/something/frames/161053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and another mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110829", "images": ["AURORA/data/something/frames/180805/first.jpg", "AURORA/data/something/frames/180805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shoe and a purse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110830", "images": ["AURORA/data/something/frames/30829/first.jpg", "AURORA/data/something/frames/30829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110831", "images": ["AURORA/data/something/frames/156666/first.jpg", "AURORA/data/something/frames/156666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto table mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110832", "images": ["AURORA/data/something/frames/85985/first.jpg", "AURORA/data/something/frames/85985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil into floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000110833", "images": ["AURORA/data/something/frames/63141/first.jpg", "AURORA/data/something/frames/63141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting silicone onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110834", "images": ["AURORA/data/something/frames/114784/first.jpg", "AURORA/data/something/frames/114784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110835", "images": ["AURORA/data/something/frames/171169/first.jpg", "AURORA/data/something/frames/171169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110836", "images": ["AURORA/data/something/frames/132553/first.jpg", "AURORA/data/something/frames/132553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000110837", "images": ["AURORA/data/something/frames/14438/first.jpg", "AURORA/data/something/frames/14438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dish soap off of a laundry machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000110838", "images": ["AURORA/data/something/frames/6300/first.jpg", "AURORA/data/something/frames/6300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a large ball and a small ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110839", "images": ["AURORA/data/something/frames/4071/first.jpg", "AURORA/data/something/frames/4071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming white toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110840", "images": ["AURORA/data/something/frames/64032/first.jpg", "AURORA/data/something/frames/64032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110841", "images": ["AURORA/data/something/frames/10201/first.jpg", "AURORA/data/something/frames/10201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of bottle without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110842", "images": ["AURORA/data/something/frames/5767/first.jpg", "AURORA/data/something/frames/5767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110843", "images": ["AURORA/data/something/frames/199838/first.jpg", "AURORA/data/something/frames/199838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a beaker with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000110844", "images": ["AURORA/data/something/frames/111604/first.jpg", "AURORA/data/something/frames/111604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000110845", "images": ["AURORA/data/something/frames/191802/first.jpg", "AURORA/data/something/frames/191802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110846", "images": ["AURORA/data/something/frames/30178/first.jpg", "AURORA/data/something/frames/30178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a piece of plastic so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110847", "images": ["AURORA/data/something/frames/117331/first.jpg", "AURORA/data/something/frames/117331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110848", "images": ["AURORA/data/something/frames/15812/first.jpg", "AURORA/data/something/frames/15812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110849", "images": ["AURORA/data/something/frames/97201/first.jpg", "AURORA/data/something/frames/97201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a bangle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110850", "images": ["AURORA/data/something/frames/113132/first.jpg", "AURORA/data/something/frames/113132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pot on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110851", "images": ["AURORA/data/something/frames/177809/first.jpg", "AURORA/data/something/frames/177809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto rug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110852", "images": ["AURORA/data/something/frames/85067/first.jpg", "AURORA/data/something/frames/85067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubix cube in front of toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110853", "images": ["AURORA/data/something/frames/182165/first.jpg", "AURORA/data/something/frames/182165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000110854", "images": ["AURORA/data/something/frames/55178/first.jpg", "AURORA/data/something/frames/55178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle of glue over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110855", "images": ["AURORA/data/something/frames/93638/first.jpg", "AURORA/data/something/frames/93638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110856", "images": ["AURORA/data/something/frames/9675/first.jpg", "AURORA/data/something/frames/9675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into phone charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000110857", "images": ["AURORA/data/something/frames/171477/first.jpg", "AURORA/data/something/frames/171477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing kitchen cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110858", "images": ["AURORA/data/something/frames/104808/first.jpg", "AURORA/data/something/frames/104808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110859", "images": ["AURORA/data/something/frames/144970/first.jpg", "AURORA/data/something/frames/144970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000110860", "images": ["AURORA/data/something/frames/6368/first.jpg", "AURORA/data/something/frames/6368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110861", "images": ["AURORA/data/something/frames/56841/first.jpg", "AURORA/data/something/frames/56841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning milk mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110862", "images": ["AURORA/data/something/frames/174723/first.jpg", "AURORA/data/something/frames/174723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sock, book and glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110863", "images": ["AURORA/data/something/frames/22875/first.jpg", "AURORA/data/something/frames/22875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a tissue box colliding with another tissue box and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000110864", "images": ["AURORA/data/something/frames/128681/first.jpg", "AURORA/data/something/frames/128681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with crackers over, so cracker falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000110865", "images": ["AURORA/data/something/frames/18596/first.jpg", "AURORA/data/something/frames/18596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110866", "images": ["AURORA/data/something/frames/15034/first.jpg", "AURORA/data/something/frames/15034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging baby monitor cord into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110867", "images": ["AURORA/data/something/frames/49969/first.jpg", "AURORA/data/something/frames/49969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110868", "images": ["AURORA/data/something/frames/27155/first.jpg", "AURORA/data/something/frames/27155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stul upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110869", "images": ["AURORA/data/something/frames/45621/first.jpg", "AURORA/data/something/frames/45621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110870", "images": ["AURORA/data/something/frames/210229/first.jpg", "AURORA/data/something/frames/210229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110871", "images": ["AURORA/data/something/frames/129620/first.jpg", "AURORA/data/something/frames/129620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball pump upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110872", "images": ["AURORA/data/something/frames/21759/first.jpg", "AURORA/data/something/frames/21759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000110873", "images": ["AURORA/data/something/frames/112885/first.jpg", "AURORA/data/something/frames/112885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110874", "images": ["AURORA/data/something/frames/4829/first.jpg", "AURORA/data/something/frames/4829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cover into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110875", "images": ["AURORA/data/something/frames/179592/first.jpg", "AURORA/data/something/frames/179592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110876", "images": ["AURORA/data/something/frames/20807/first.jpg", "AURORA/data/something/frames/20807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of putty so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000110877", "images": ["AURORA/data/something/frames/136522/first.jpg", "AURORA/data/something/frames/136522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a stappler"}, {"from": "gpt", "value": ""}]} +{"id": "000000110878", "images": ["AURORA/data/something/frames/89049/first.jpg", "AURORA/data/something/frames/89049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bottle, revealing marker behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110879", "images": ["AURORA/data/something/frames/206131/first.jpg", "AURORA/data/something/frames/206131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110880", "images": ["AURORA/data/something/frames/37250/first.jpg", "AURORA/data/something/frames/37250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a marmalade jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110881", "images": ["AURORA/data/something/frames/67389/first.jpg", "AURORA/data/something/frames/67389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110882", "images": ["AURORA/data/something/frames/128225/first.jpg", "AURORA/data/something/frames/128225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tea light candle on the table with other candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000110883", "images": ["AURORA/data/something/frames/111103/first.jpg", "AURORA/data/something/frames/111103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pencil case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110884", "images": ["AURORA/data/something/frames/61437/first.jpg", "AURORA/data/something/frames/61437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110885", "images": ["AURORA/data/something/frames/218641/first.jpg", "AURORA/data/something/frames/218641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling curtain from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110886", "images": ["AURORA/data/something/frames/11044/first.jpg", "AURORA/data/something/frames/11044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000110887", "images": ["AURORA/data/something/frames/50758/first.jpg", "AURORA/data/something/frames/50758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming chandelier"}, {"from": "gpt", "value": ""}]} +{"id": "000000110888", "images": ["AURORA/data/something/frames/43684/first.jpg", "AURORA/data/something/frames/43684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming krishna idole"}, {"from": "gpt", "value": ""}]} +{"id": "000000110889", "images": ["AURORA/data/something/frames/106598/first.jpg", "AURORA/data/something/frames/106598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stuffed animal with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000110890", "images": ["AURORA/data/something/frames/164488/first.jpg", "AURORA/data/something/frames/164488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000110891", "images": ["AURORA/data/something/frames/209475/first.jpg", "AURORA/data/something/frames/209475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting body spray bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110892", "images": ["AURORA/data/something/frames/94778/first.jpg", "AURORA/data/something/frames/94778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000110893", "images": ["AURORA/data/something/frames/112873/first.jpg", "AURORA/data/something/frames/112873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110894", "images": ["AURORA/data/something/frames/212885/first.jpg", "AURORA/data/something/frames/212885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening marker pen cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000110895", "images": ["AURORA/data/something/frames/181204/first.jpg", "AURORA/data/something/frames/181204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110896", "images": ["AURORA/data/something/frames/191550/first.jpg", "AURORA/data/something/frames/191550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110897", "images": ["AURORA/data/something/frames/178176/first.jpg", "AURORA/data/something/frames/178176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 pens onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000110898", "images": ["AURORA/data/something/frames/65026/first.jpg", "AURORA/data/something/frames/65026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110899", "images": ["AURORA/data/something/frames/25372/first.jpg", "AURORA/data/something/frames/25372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110900", "images": ["AURORA/data/something/frames/103369/first.jpg", "AURORA/data/something/frames/103369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000110901", "images": ["AURORA/data/something/frames/47061/first.jpg", "AURORA/data/something/frames/47061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110902", "images": ["AURORA/data/something/frames/183991/first.jpg", "AURORA/data/something/frames/183991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one domino token"}, {"from": "gpt", "value": ""}]} +{"id": "000000110903", "images": ["AURORA/data/something/frames/192140/first.jpg", "AURORA/data/something/frames/192140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic comb behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110904", "images": ["AURORA/data/something/frames/191918/first.jpg", "AURORA/data/something/frames/191918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shoe behind bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000110905", "images": ["AURORA/data/something/frames/94273/first.jpg", "AURORA/data/something/frames/94273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting videogame underneath bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000110906", "images": ["AURORA/data/something/frames/202432/first.jpg", "AURORA/data/something/frames/202432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000110907", "images": ["AURORA/data/something/frames/13123/first.jpg", "AURORA/data/something/frames/13123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a picture with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110908", "images": ["AURORA/data/something/frames/190235/first.jpg", "AURORA/data/something/frames/190235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming motor bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000110909", "images": ["AURORA/data/something/frames/154968/first.jpg", "AURORA/data/something/frames/154968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110910", "images": ["AURORA/data/something/frames/139204/first.jpg", "AURORA/data/something/frames/139204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into soft doh"}, {"from": "gpt", "value": ""}]} +{"id": "000000110911", "images": ["AURORA/data/something/frames/40879/first.jpg", "AURORA/data/something/frames/40879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing iphone into a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000110912", "images": ["AURORA/data/something/frames/146657/first.jpg", "AURORA/data/something/frames/146657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plate in front of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110913", "images": ["AURORA/data/something/frames/51014/first.jpg", "AURORA/data/something/frames/51014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing letter into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110914", "images": ["AURORA/data/something/frames/35831/first.jpg", "AURORA/data/something/frames/35831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 laptop onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000110915", "images": ["AURORA/data/something/frames/179280/first.jpg", "AURORA/data/something/frames/179280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110916", "images": ["AURORA/data/something/frames/149231/first.jpg", "AURORA/data/something/frames/149231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000110917", "images": ["AURORA/data/something/frames/138344/first.jpg", "AURORA/data/something/frames/138344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110918", "images": ["AURORA/data/something/frames/144626/first.jpg", "AURORA/data/something/frames/144626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earth of globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000110919", "images": ["AURORA/data/something/frames/72913/first.jpg", "AURORA/data/something/frames/72913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110920", "images": ["AURORA/data/something/frames/164457/first.jpg", "AURORA/data/something/frames/164457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and box so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110921", "images": ["AURORA/data/something/frames/218044/first.jpg", "AURORA/data/something/frames/218044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110922", "images": ["AURORA/data/something/frames/196821/first.jpg", "AURORA/data/something/frames/196821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a peg from behind of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000110923", "images": ["AURORA/data/something/frames/29049/first.jpg", "AURORA/data/something/frames/29049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of a soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110924", "images": ["AURORA/data/something/frames/171101/first.jpg", "AURORA/data/something/frames/171101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sweatshirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110925", "images": ["AURORA/data/something/frames/153712/first.jpg", "AURORA/data/something/frames/153712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000110926", "images": ["AURORA/data/something/frames/177899/first.jpg", "AURORA/data/something/frames/177899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adapter into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110927", "images": ["AURORA/data/something/frames/123173/first.jpg", "AURORA/data/something/frames/123173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bag next to cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000110928", "images": ["AURORA/data/something/frames/116822/first.jpg", "AURORA/data/something/frames/116822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting book with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000110929", "images": ["AURORA/data/something/frames/47343/first.jpg", "AURORA/data/something/frames/47343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110930", "images": ["AURORA/data/something/frames/2963/first.jpg", "AURORA/data/something/frames/2963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet to refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000110931", "images": ["AURORA/data/something/frames/194192/first.jpg", "AURORA/data/something/frames/194192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mug and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110932", "images": ["AURORA/data/something/frames/4784/first.jpg", "AURORA/data/something/frames/4784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pepper so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110933", "images": ["AURORA/data/something/frames/220781/first.jpg", "AURORA/data/something/frames/220781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110934", "images": ["AURORA/data/something/frames/87111/first.jpg", "AURORA/data/something/frames/87111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stone with lemon"}, {"from": "gpt", "value": ""}]} +{"id": "000000110935", "images": ["AURORA/data/something/frames/6079/first.jpg", "AURORA/data/something/frames/6079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000110936", "images": ["AURORA/data/something/frames/173943/first.jpg", "AURORA/data/something/frames/173943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a bottle into a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000110937", "images": ["AURORA/data/something/frames/105890/first.jpg", "AURORA/data/something/frames/105890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a hanger so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110938", "images": ["AURORA/data/something/frames/197315/first.jpg", "AURORA/data/something/frames/197315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal pipe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110939", "images": ["AURORA/data/something/frames/124981/first.jpg", "AURORA/data/something/frames/124981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bearings and speaker away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110940", "images": ["AURORA/data/something/frames/173323/first.jpg", "AURORA/data/something/frames/173323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting tumbler with glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000110941", "images": ["AURORA/data/something/frames/17248/first.jpg", "AURORA/data/something/frames/17248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000110942", "images": ["AURORA/data/something/frames/199252/first.jpg", "AURORA/data/something/frames/199252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sunscreen lotion from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110943", "images": ["AURORA/data/something/frames/135609/first.jpg", "AURORA/data/something/frames/135609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting can with knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000110944", "images": ["AURORA/data/something/frames/164623/first.jpg", "AURORA/data/something/frames/164623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110945", "images": ["AURORA/data/something/frames/106256/first.jpg", "AURORA/data/something/frames/106256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110946", "images": ["AURORA/data/something/frames/152453/first.jpg", "AURORA/data/something/frames/152453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000110947", "images": ["AURORA/data/something/frames/84242/first.jpg", "AURORA/data/something/frames/84242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange post-it from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110948", "images": ["AURORA/data/something/frames/45228/first.jpg", "AURORA/data/something/frames/45228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and another bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110949", "images": ["AURORA/data/something/frames/115528/first.jpg", "AURORA/data/something/frames/115528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110950", "images": ["AURORA/data/something/frames/218718/first.jpg", "AURORA/data/something/frames/218718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing plastik bag, revealing vase behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000110951", "images": ["AURORA/data/something/frames/69235/first.jpg", "AURORA/data/something/frames/69235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110952", "images": ["AURORA/data/something/frames/73037/first.jpg", "AURORA/data/something/frames/73037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) pull part of light"}, {"from": "gpt", "value": ""}]} +{"id": "000000110953", "images": ["AURORA/data/something/frames/171852/first.jpg", "AURORA/data/something/frames/171852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering earring with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110954", "images": ["AURORA/data/something/frames/179411/first.jpg", "AURORA/data/something/frames/179411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail varnish from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110955", "images": ["AURORA/data/something/frames/86141/first.jpg", "AURORA/data/something/frames/86141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cellphone charge plug into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110956", "images": ["AURORA/data/something/frames/42148/first.jpg", "AURORA/data/something/frames/42148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000110957", "images": ["AURORA/data/something/frames/184809/first.jpg", "AURORA/data/something/frames/184809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel away from towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000110958", "images": ["AURORA/data/something/frames/154749/first.jpg", "AURORA/data/something/frames/154749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110959", "images": ["AURORA/data/something/frames/120158/first.jpg", "AURORA/data/something/frames/120158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: gum colliding with gum and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000110960", "images": ["AURORA/data/something/frames/30805/first.jpg", "AURORA/data/something/frames/30805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110961", "images": ["AURORA/data/something/frames/168325/first.jpg", "AURORA/data/something/frames/168325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000110962", "images": ["AURORA/data/something/frames/120960/first.jpg", "AURORA/data/something/frames/120960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering goggles"}, {"from": "gpt", "value": ""}]} +{"id": "000000110963", "images": ["AURORA/data/something/frames/151101/first.jpg", "AURORA/data/something/frames/151101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tape measure from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000110964", "images": ["AURORA/data/something/frames/208689/first.jpg", "AURORA/data/something/frames/208689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger and pendrive closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110965", "images": ["AURORA/data/something/frames/80735/first.jpg", "AURORA/data/something/frames/80735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic comb into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000110966", "images": ["AURORA/data/something/frames/26512/first.jpg", "AURORA/data/something/frames/26512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110967", "images": ["AURORA/data/something/frames/145153/first.jpg", "AURORA/data/something/frames/145153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000110968", "images": ["AURORA/data/something/frames/105925/first.jpg", "AURORA/data/something/frames/105925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking measuring tape from ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000110969", "images": ["AURORA/data/something/frames/61495/first.jpg", "AURORA/data/something/frames/61495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a hairspray can"}, {"from": "gpt", "value": ""}]} +{"id": "000000110970", "images": ["AURORA/data/something/frames/59264/first.jpg", "AURORA/data/something/frames/59264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter onto sunglasses so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110971", "images": ["AURORA/data/something/frames/78843/first.jpg", "AURORA/data/something/frames/78843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one more glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110972", "images": ["AURORA/data/something/frames/84412/first.jpg", "AURORA/data/something/frames/84412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting brush up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110973", "images": ["AURORA/data/something/frames/190334/first.jpg", "AURORA/data/something/frames/190334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000110974", "images": ["AURORA/data/something/frames/78716/first.jpg", "AURORA/data/something/frames/78716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000110975", "images": ["AURORA/data/something/frames/112723/first.jpg", "AURORA/data/something/frames/112723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote control with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110976", "images": ["AURORA/data/something/frames/30118/first.jpg", "AURORA/data/something/frames/30118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000110977", "images": ["AURORA/data/something/frames/97604/first.jpg", "AURORA/data/something/frames/97604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cream behind knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000110978", "images": ["AURORA/data/something/frames/36352/first.jpg", "AURORA/data/something/frames/36352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ketchup bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000110979", "images": ["AURORA/data/something/frames/218826/first.jpg", "AURORA/data/something/frames/218826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug adapter into a wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110980", "images": ["AURORA/data/something/frames/40863/first.jpg", "AURORA/data/something/frames/40863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one poker chip into a group with many poker chips"}, {"from": "gpt", "value": ""}]} +{"id": "000000110981", "images": ["AURORA/data/something/frames/41780/first.jpg", "AURORA/data/something/frames/41780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000110982", "images": ["AURORA/data/something/frames/12931/first.jpg", "AURORA/data/something/frames/12931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000110983", "images": ["AURORA/data/something/frames/62879/first.jpg", "AURORA/data/something/frames/62879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an envelop on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000110984", "images": ["AURORA/data/something/frames/124982/first.jpg", "AURORA/data/something/frames/124982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a perfume bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000110985", "images": ["AURORA/data/something/frames/85446/first.jpg", "AURORA/data/something/frames/85446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple balloon pump from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000110986", "images": ["AURORA/data/something/frames/69359/first.jpg", "AURORA/data/something/frames/69359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000110987", "images": ["AURORA/data/something/frames/31878/first.jpg", "AURORA/data/something/frames/31878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 5 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000110988", "images": ["AURORA/data/something/frames/149428/first.jpg", "AURORA/data/something/frames/149428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000110989", "images": ["AURORA/data/something/frames/85017/first.jpg", "AURORA/data/something/frames/85017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging ball out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000110990", "images": ["AURORA/data/something/frames/147799/first.jpg", "AURORA/data/something/frames/147799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering notebook with hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000110991", "images": ["AURORA/data/something/frames/128532/first.jpg", "AURORA/data/something/frames/128532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000110992", "images": ["AURORA/data/something/frames/45107/first.jpg", "AURORA/data/something/frames/45107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile on to a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110993", "images": ["AURORA/data/something/frames/26192/first.jpg", "AURORA/data/something/frames/26192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000110994", "images": ["AURORA/data/something/frames/95706/first.jpg", "AURORA/data/something/frames/95706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000110995", "images": ["AURORA/data/something/frames/160763/first.jpg", "AURORA/data/something/frames/160763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000110996", "images": ["AURORA/data/something/frames/122822/first.jpg", "AURORA/data/something/frames/122822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000110997", "images": ["AURORA/data/something/frames/73137/first.jpg", "AURORA/data/something/frames/73137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000110998", "images": ["AURORA/data/something/frames/116149/first.jpg", "AURORA/data/something/frames/116149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car and book on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000110999", "images": ["AURORA/data/something/frames/193529/first.jpg", "AURORA/data/something/frames/193529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tin from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111000", "images": ["AURORA/data/something/frames/26734/first.jpg", "AURORA/data/something/frames/26734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box of tissues upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111001", "images": ["AURORA/data/something/frames/17315/first.jpg", "AURORA/data/something/frames/17315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111002", "images": ["AURORA/data/something/frames/110918/first.jpg", "AURORA/data/something/frames/110918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000111003", "images": ["AURORA/data/something/frames/140933/first.jpg", "AURORA/data/something/frames/140933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111004", "images": ["AURORA/data/something/frames/55125/first.jpg", "AURORA/data/something/frames/55125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying boot on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111005", "images": ["AURORA/data/something/frames/172395/first.jpg", "AURORA/data/something/frames/172395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking white chalk from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111006", "images": ["AURORA/data/something/frames/105481/first.jpg", "AURORA/data/something/frames/105481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the bowl in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111007", "images": ["AURORA/data/something/frames/20374/first.jpg", "AURORA/data/something/frames/20374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111008", "images": ["AURORA/data/something/frames/153961/first.jpg", "AURORA/data/something/frames/153961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting carbon paper into the bill book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111009", "images": ["AURORA/data/something/frames/26327/first.jpg", "AURORA/data/something/frames/26327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a small bottle and a fidget cube on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111010", "images": ["AURORA/data/something/frames/115694/first.jpg", "AURORA/data/something/frames/115694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering round case with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111011", "images": ["AURORA/data/something/frames/95285/first.jpg", "AURORA/data/something/frames/95285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving night light and fig closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111012", "images": ["AURORA/data/something/frames/218361/first.jpg", "AURORA/data/something/frames/218361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming fruits"}, {"from": "gpt", "value": ""}]} +{"id": "000000111013", "images": ["AURORA/data/something/frames/112088/first.jpg", "AURORA/data/something/frames/112088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hand cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111014", "images": ["AURORA/data/something/frames/3871/first.jpg", "AURORA/data/something/frames/3871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coloured pen into pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000111015", "images": ["AURORA/data/something/frames/24498/first.jpg", "AURORA/data/something/frames/24498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cat with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111016", "images": ["AURORA/data/something/frames/197549/first.jpg", "AURORA/data/something/frames/197549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming small green ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111017", "images": ["AURORA/data/something/frames/134653/first.jpg", "AURORA/data/something/frames/134653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111018", "images": ["AURORA/data/something/frames/150075/first.jpg", "AURORA/data/something/frames/150075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb connector into charging port"}, {"from": "gpt", "value": ""}]} +{"id": "000000111019", "images": ["AURORA/data/something/frames/85616/first.jpg", "AURORA/data/something/frames/85616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into surge protector but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111020", "images": ["AURORA/data/something/frames/130469/first.jpg", "AURORA/data/something/frames/130469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy wheel with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111021", "images": ["AURORA/data/something/frames/9578/first.jpg", "AURORA/data/something/frames/9578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ruler onto a notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000111022", "images": ["AURORA/data/something/frames/121804/first.jpg", "AURORA/data/something/frames/121804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111023", "images": ["AURORA/data/something/frames/196406/first.jpg", "AURORA/data/something/frames/196406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with power bank on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111024", "images": ["AURORA/data/something/frames/178551/first.jpg", "AURORA/data/something/frames/178551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bolt screw, gear wheel and pencil sharpner on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111025", "images": ["AURORA/data/something/frames/138067/first.jpg", "AURORA/data/something/frames/138067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel away from towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111026", "images": ["AURORA/data/something/frames/83306/first.jpg", "AURORA/data/something/frames/83306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sun glass towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111027", "images": ["AURORA/data/something/frames/65009/first.jpg", "AURORA/data/something/frames/65009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111028", "images": ["AURORA/data/something/frames/107100/first.jpg", "AURORA/data/something/frames/107100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile phone similar to other mobile phones that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111029", "images": ["AURORA/data/something/frames/9186/first.jpg", "AURORA/data/something/frames/9186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111030", "images": ["AURORA/data/something/frames/218347/first.jpg", "AURORA/data/something/frames/218347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111031", "images": ["AURORA/data/something/frames/62906/first.jpg", "AURORA/data/something/frames/62906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111032", "images": ["AURORA/data/something/frames/14541/first.jpg", "AURORA/data/something/frames/14541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111033", "images": ["AURORA/data/something/frames/36725/first.jpg", "AURORA/data/something/frames/36725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111034", "images": ["AURORA/data/something/frames/97520/first.jpg", "AURORA/data/something/frames/97520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111035", "images": ["AURORA/data/something/frames/200714/first.jpg", "AURORA/data/something/frames/200714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000111036", "images": ["AURORA/data/something/frames/68421/first.jpg", "AURORA/data/something/frames/68421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass of water on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111037", "images": ["AURORA/data/something/frames/135565/first.jpg", "AURORA/data/something/frames/135565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking board clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111038", "images": ["AURORA/data/something/frames/54579/first.jpg", "AURORA/data/something/frames/54579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111039", "images": ["AURORA/data/something/frames/121659/first.jpg", "AURORA/data/something/frames/121659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111040", "images": ["AURORA/data/something/frames/156130/first.jpg", "AURORA/data/something/frames/156130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000111041", "images": ["AURORA/data/something/frames/78306/first.jpg", "AURORA/data/something/frames/78306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111042", "images": ["AURORA/data/something/frames/64595/first.jpg", "AURORA/data/something/frames/64595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) kerchief wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111043", "images": ["AURORA/data/something/frames/153575/first.jpg", "AURORA/data/something/frames/153575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111044", "images": ["AURORA/data/something/frames/90266/first.jpg", "AURORA/data/something/frames/90266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bulb syringe into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111045", "images": ["AURORA/data/something/frames/88927/first.jpg", "AURORA/data/something/frames/88927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111046", "images": ["AURORA/data/something/frames/73975/first.jpg", "AURORA/data/something/frames/73975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111047", "images": ["AURORA/data/something/frames/175308/first.jpg", "AURORA/data/something/frames/175308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111048", "images": ["AURORA/data/something/frames/66669/first.jpg", "AURORA/data/something/frames/66669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111049", "images": ["AURORA/data/something/frames/109760/first.jpg", "AURORA/data/something/frames/109760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy puppy closer to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111050", "images": ["AURORA/data/something/frames/212833/first.jpg", "AURORA/data/something/frames/212833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a toy car colliding with a toy car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111051", "images": ["AURORA/data/something/frames/84939/first.jpg", "AURORA/data/something/frames/84939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into telephone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111052", "images": ["AURORA/data/something/frames/59719/first.jpg", "AURORA/data/something/frames/59719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brush from purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111053", "images": ["AURORA/data/something/frames/168300/first.jpg", "AURORA/data/something/frames/168300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111054", "images": ["AURORA/data/something/frames/203829/first.jpg", "AURORA/data/something/frames/203829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something underneath something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111055", "images": ["AURORA/data/something/frames/69340/first.jpg", "AURORA/data/something/frames/69340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111056", "images": ["AURORA/data/something/frames/94264/first.jpg", "AURORA/data/something/frames/94264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keyring of airpod case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111057", "images": ["AURORA/data/something/frames/211564/first.jpg", "AURORA/data/something/frames/211564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111058", "images": ["AURORA/data/something/frames/1322/first.jpg", "AURORA/data/something/frames/1322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubberband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111059", "images": ["AURORA/data/something/frames/144633/first.jpg", "AURORA/data/something/frames/144633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pink toothbrush case on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111060", "images": ["AURORA/data/something/frames/79206/first.jpg", "AURORA/data/something/frames/79206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving my phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111061", "images": ["AURORA/data/something/frames/117431/first.jpg", "AURORA/data/something/frames/117431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111062", "images": ["AURORA/data/something/frames/159874/first.jpg", "AURORA/data/something/frames/159874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111063", "images": ["AURORA/data/something/frames/153594/first.jpg", "AURORA/data/something/frames/153594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111064", "images": ["AURORA/data/something/frames/30495/first.jpg", "AURORA/data/something/frames/30495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111065", "images": ["AURORA/data/something/frames/87632/first.jpg", "AURORA/data/something/frames/87632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111066", "images": ["AURORA/data/something/frames/213899/first.jpg", "AURORA/data/something/frames/213899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111067", "images": ["AURORA/data/something/frames/49683/first.jpg", "AURORA/data/something/frames/49683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube behind a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111068", "images": ["AURORA/data/something/frames/62582/first.jpg", "AURORA/data/something/frames/62582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111069", "images": ["AURORA/data/something/frames/6426/first.jpg", "AURORA/data/something/frames/6426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000111070", "images": ["AURORA/data/something/frames/85360/first.jpg", "AURORA/data/something/frames/85360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000111071", "images": ["AURORA/data/something/frames/106452/first.jpg", "AURORA/data/something/frames/106452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tin with tea leaves over, so tea leaves falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111072", "images": ["AURORA/data/something/frames/157675/first.jpg", "AURORA/data/something/frames/157675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000111073", "images": ["AURORA/data/something/frames/168324/first.jpg", "AURORA/data/something/frames/168324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming toy giraffe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111074", "images": ["AURORA/data/something/frames/98847/first.jpg", "AURORA/data/something/frames/98847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111075", "images": ["AURORA/data/something/frames/161657/first.jpg", "AURORA/data/something/frames/161657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111076", "images": ["AURORA/data/something/frames/134584/first.jpg", "AURORA/data/something/frames/134584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111077", "images": ["AURORA/data/something/frames/79910/first.jpg", "AURORA/data/something/frames/79910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair elastic so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111078", "images": ["AURORA/data/something/frames/101859/first.jpg", "AURORA/data/something/frames/101859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111079", "images": ["AURORA/data/something/frames/85702/first.jpg", "AURORA/data/something/frames/85702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cereal up with measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111080", "images": ["AURORA/data/something/frames/98076/first.jpg", "AURORA/data/something/frames/98076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 cups"}, {"from": "gpt", "value": ""}]} +{"id": "000000111081", "images": ["AURORA/data/something/frames/77722/first.jpg", "AURORA/data/something/frames/77722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plugg into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111082", "images": ["AURORA/data/something/frames/7632/first.jpg", "AURORA/data/something/frames/7632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving envelopes across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111083", "images": ["AURORA/data/something/frames/109978/first.jpg", "AURORA/data/something/frames/109978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving table up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111084", "images": ["AURORA/data/something/frames/204882/first.jpg", "AURORA/data/something/frames/204882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching bottle to cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111085", "images": ["AURORA/data/something/frames/194332/first.jpg", "AURORA/data/something/frames/194332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering headphones with clothing"}, {"from": "gpt", "value": ""}]} +{"id": "000000111086", "images": ["AURORA/data/something/frames/196047/first.jpg", "AURORA/data/something/frames/196047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000111087", "images": ["AURORA/data/something/frames/219940/first.jpg", "AURORA/data/something/frames/219940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spaghetti until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111088", "images": ["AURORA/data/something/frames/161706/first.jpg", "AURORA/data/something/frames/161706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a measuring tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111089", "images": ["AURORA/data/something/frames/112895/first.jpg", "AURORA/data/something/frames/112895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring animal feed out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111090", "images": ["AURORA/data/something/frames/42130/first.jpg", "AURORA/data/something/frames/42130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111091", "images": ["AURORA/data/something/frames/16007/first.jpg", "AURORA/data/something/frames/16007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111092", "images": ["AURORA/data/something/frames/108784/first.jpg", "AURORA/data/something/frames/108784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111093", "images": ["AURORA/data/something/frames/196269/first.jpg", "AURORA/data/something/frames/196269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning soup bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111094", "images": ["AURORA/data/something/frames/21651/first.jpg", "AURORA/data/something/frames/21651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111095", "images": ["AURORA/data/something/frames/103077/first.jpg", "AURORA/data/something/frames/103077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111096", "images": ["AURORA/data/something/frames/181261/first.jpg", "AURORA/data/something/frames/181261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111097", "images": ["AURORA/data/something/frames/140527/first.jpg", "AURORA/data/something/frames/140527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from water tap with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111098", "images": ["AURORA/data/something/frames/186245/first.jpg", "AURORA/data/something/frames/186245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a beaker so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111099", "images": ["AURORA/data/something/frames/218202/first.jpg", "AURORA/data/something/frames/218202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching stopper to vial"}, {"from": "gpt", "value": ""}]} +{"id": "000000111100", "images": ["AURORA/data/something/frames/49005/first.jpg", "AURORA/data/something/frames/49005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000111101", "images": ["AURORA/data/something/frames/189104/first.jpg", "AURORA/data/something/frames/189104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 6 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000111102", "images": ["AURORA/data/something/frames/85240/first.jpg", "AURORA/data/something/frames/85240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding banana leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000111103", "images": ["AURORA/data/something/frames/181583/first.jpg", "AURORA/data/something/frames/181583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a green box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111104", "images": ["AURORA/data/something/frames/48363/first.jpg", "AURORA/data/something/frames/48363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting charger adapter into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111105", "images": ["AURORA/data/something/frames/37282/first.jpg", "AURORA/data/something/frames/37282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notecard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111106", "images": ["AURORA/data/something/frames/19069/first.jpg", "AURORA/data/something/frames/19069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening empty clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111107", "images": ["AURORA/data/something/frames/37052/first.jpg", "AURORA/data/something/frames/37052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111108", "images": ["AURORA/data/something/frames/4138/first.jpg", "AURORA/data/something/frames/4138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111109", "images": ["AURORA/data/something/frames/203569/first.jpg", "AURORA/data/something/frames/203569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pad lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000111110", "images": ["AURORA/data/something/frames/72108/first.jpg", "AURORA/data/something/frames/72108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111111", "images": ["AURORA/data/something/frames/181944/first.jpg", "AURORA/data/something/frames/181944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111112", "images": ["AURORA/data/something/frames/129223/first.jpg", "AURORA/data/something/frames/129223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111113", "images": ["AURORA/data/something/frames/192296/first.jpg", "AURORA/data/something/frames/192296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111114", "images": ["AURORA/data/something/frames/53036/first.jpg", "AURORA/data/something/frames/53036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a notebook on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111115", "images": ["AURORA/data/something/frames/43527/first.jpg", "AURORA/data/something/frames/43527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping lighter over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111116", "images": ["AURORA/data/something/frames/92215/first.jpg", "AURORA/data/something/frames/92215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the keys into the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111117", "images": ["AURORA/data/something/frames/32149/first.jpg", "AURORA/data/something/frames/32149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mains plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111118", "images": ["AURORA/data/something/frames/76243/first.jpg", "AURORA/data/something/frames/76243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111119", "images": ["AURORA/data/something/frames/184572/first.jpg", "AURORA/data/something/frames/184572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111120", "images": ["AURORA/data/something/frames/197719/first.jpg", "AURORA/data/something/frames/197719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into notebook paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111121", "images": ["AURORA/data/something/frames/72712/first.jpg", "AURORA/data/something/frames/72712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111122", "images": ["AURORA/data/something/frames/55391/first.jpg", "AURORA/data/something/frames/55391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111123", "images": ["AURORA/data/something/frames/81358/first.jpg", "AURORA/data/something/frames/81358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111124", "images": ["AURORA/data/something/frames/17995/first.jpg", "AURORA/data/something/frames/17995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box closer to a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111125", "images": ["AURORA/data/something/frames/184121/first.jpg", "AURORA/data/something/frames/184121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of thread so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111126", "images": ["AURORA/data/something/frames/142440/first.jpg", "AURORA/data/something/frames/142440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111127", "images": ["AURORA/data/something/frames/152357/first.jpg", "AURORA/data/something/frames/152357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling binders up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111128", "images": ["AURORA/data/something/frames/42628/first.jpg", "AURORA/data/something/frames/42628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ice cream scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000111129", "images": ["AURORA/data/something/frames/96619/first.jpg", "AURORA/data/something/frames/96619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111130", "images": ["AURORA/data/something/frames/93549/first.jpg", "AURORA/data/something/frames/93549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming water tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111131", "images": ["AURORA/data/something/frames/212356/first.jpg", "AURORA/data/something/frames/212356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cashew with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111132", "images": ["AURORA/data/something/frames/141934/first.jpg", "AURORA/data/something/frames/141934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111133", "images": ["AURORA/data/something/frames/33766/first.jpg", "AURORA/data/something/frames/33766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving headphones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111134", "images": ["AURORA/data/something/frames/209994/first.jpg", "AURORA/data/something/frames/209994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pill bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111135", "images": ["AURORA/data/something/frames/185502/first.jpg", "AURORA/data/something/frames/185502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111136", "images": ["AURORA/data/something/frames/198062/first.jpg", "AURORA/data/something/frames/198062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting coconut tree with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111137", "images": ["AURORA/data/something/frames/24566/first.jpg", "AURORA/data/something/frames/24566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111138", "images": ["AURORA/data/something/frames/86039/first.jpg", "AURORA/data/something/frames/86039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb pin into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000111139", "images": ["AURORA/data/something/frames/166132/first.jpg", "AURORA/data/something/frames/166132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda can closer to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111140", "images": ["AURORA/data/something/frames/28021/first.jpg", "AURORA/data/something/frames/28021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111141", "images": ["AURORA/data/something/frames/37110/first.jpg", "AURORA/data/something/frames/37110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with avocado on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111142", "images": ["AURORA/data/something/frames/63041/first.jpg", "AURORA/data/something/frames/63041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111143", "images": ["AURORA/data/something/frames/132062/first.jpg", "AURORA/data/something/frames/132062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote with comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111144", "images": ["AURORA/data/something/frames/75383/first.jpg", "AURORA/data/something/frames/75383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111145", "images": ["AURORA/data/something/frames/176777/first.jpg", "AURORA/data/something/frames/176777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rule up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111146", "images": ["AURORA/data/something/frames/188301/first.jpg", "AURORA/data/something/frames/188301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses, marker and gift card on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111147", "images": ["AURORA/data/something/frames/215219/first.jpg", "AURORA/data/something/frames/215219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brick next to brick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111148", "images": ["AURORA/data/something/frames/30105/first.jpg", "AURORA/data/something/frames/30105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking alcohol bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111149", "images": ["AURORA/data/something/frames/37442/first.jpg", "AURORA/data/something/frames/37442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111150", "images": ["AURORA/data/something/frames/6342/first.jpg", "AURORA/data/something/frames/6342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a lotion tube so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111151", "images": ["AURORA/data/something/frames/111853/first.jpg", "AURORA/data/something/frames/111853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111152", "images": ["AURORA/data/something/frames/193535/first.jpg", "AURORA/data/something/frames/193535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111153", "images": ["AURORA/data/something/frames/137883/first.jpg", "AURORA/data/something/frames/137883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring rubbing alcohol out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111154", "images": ["AURORA/data/something/frames/66036/first.jpg", "AURORA/data/something/frames/66036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 white board clips"}, {"from": "gpt", "value": ""}]} +{"id": "000000111155", "images": ["AURORA/data/something/frames/45462/first.jpg", "AURORA/data/something/frames/45462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of lavandin container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111156", "images": ["AURORA/data/something/frames/20106/first.jpg", "AURORA/data/something/frames/20106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding folded paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111157", "images": ["AURORA/data/something/frames/111818/first.jpg", "AURORA/data/something/frames/111818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a towel up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111158", "images": ["AURORA/data/something/frames/198462/first.jpg", "AURORA/data/something/frames/198462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: adapter colliding with rock and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111159", "images": ["AURORA/data/something/frames/140161/first.jpg", "AURORA/data/something/frames/140161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111160", "images": ["AURORA/data/something/frames/1464/first.jpg", "AURORA/data/something/frames/1464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing kitchen cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111161", "images": ["AURORA/data/something/frames/26984/first.jpg", "AURORA/data/something/frames/26984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving game down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111162", "images": ["AURORA/data/something/frames/33327/first.jpg", "AURORA/data/something/frames/33327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mobile phone cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000111163", "images": ["AURORA/data/something/frames/198111/first.jpg", "AURORA/data/something/frames/198111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a hard disk drive"}, {"from": "gpt", "value": ""}]} +{"id": "000000111164", "images": ["AURORA/data/something/frames/136876/first.jpg", "AURORA/data/something/frames/136876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping orange colour sharpner in front of duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111165", "images": ["AURORA/data/something/frames/22881/first.jpg", "AURORA/data/something/frames/22881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tie across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111166", "images": ["AURORA/data/something/frames/70548/first.jpg", "AURORA/data/something/frames/70548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring dr.pepper into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111167", "images": ["AURORA/data/something/frames/45995/first.jpg", "AURORA/data/something/frames/45995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting glass with tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000111168", "images": ["AURORA/data/something/frames/201692/first.jpg", "AURORA/data/something/frames/201692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue lighter from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111169", "images": ["AURORA/data/something/frames/68659/first.jpg", "AURORA/data/something/frames/68659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000111170", "images": ["AURORA/data/something/frames/192369/first.jpg", "AURORA/data/something/frames/192369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cub up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111171", "images": ["AURORA/data/something/frames/128259/first.jpg", "AURORA/data/something/frames/128259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111172", "images": ["AURORA/data/something/frames/18100/first.jpg", "AURORA/data/something/frames/18100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stapler from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111173", "images": ["AURORA/data/something/frames/161875/first.jpg", "AURORA/data/something/frames/161875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000111174", "images": ["AURORA/data/something/frames/184687/first.jpg", "AURORA/data/something/frames/184687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cord into a charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000111175", "images": ["AURORA/data/something/frames/168365/first.jpg", "AURORA/data/something/frames/168365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving computer case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111176", "images": ["AURORA/data/something/frames/146732/first.jpg", "AURORA/data/something/frames/146732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111177", "images": ["AURORA/data/something/frames/105994/first.jpg", "AURORA/data/something/frames/105994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111178", "images": ["AURORA/data/something/frames/87458/first.jpg", "AURORA/data/something/frames/87458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111179", "images": ["AURORA/data/something/frames/116983/first.jpg", "AURORA/data/something/frames/116983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111180", "images": ["AURORA/data/something/frames/89502/first.jpg", "AURORA/data/something/frames/89502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111181", "images": ["AURORA/data/something/frames/75639/first.jpg", "AURORA/data/something/frames/75639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling notebook out of bookbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111182", "images": ["AURORA/data/something/frames/98888/first.jpg", "AURORA/data/something/frames/98888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111183", "images": ["AURORA/data/something/frames/997/first.jpg", "AURORA/data/something/frames/997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil, sharpener and eraser on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111184", "images": ["AURORA/data/something/frames/86352/first.jpg", "AURORA/data/something/frames/86352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding kitchen towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111185", "images": ["AURORA/data/something/frames/143225/first.jpg", "AURORA/data/something/frames/143225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pot holder into vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000111186", "images": ["AURORA/data/something/frames/88589/first.jpg", "AURORA/data/something/frames/88589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork away from spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111187", "images": ["AURORA/data/something/frames/188708/first.jpg", "AURORA/data/something/frames/188708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote away from the mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111188", "images": ["AURORA/data/something/frames/152774/first.jpg", "AURORA/data/something/frames/152774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111189", "images": ["AURORA/data/something/frames/175153/first.jpg", "AURORA/data/something/frames/175153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111190", "images": ["AURORA/data/something/frames/65798/first.jpg", "AURORA/data/something/frames/65798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from iron with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111191", "images": ["AURORA/data/something/frames/57220/first.jpg", "AURORA/data/something/frames/57220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111192", "images": ["AURORA/data/something/frames/182807/first.jpg", "AURORA/data/something/frames/182807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a different label skateboard next to another skateboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000111193", "images": ["AURORA/data/something/frames/147448/first.jpg", "AURORA/data/something/frames/147448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111194", "images": ["AURORA/data/something/frames/217201/first.jpg", "AURORA/data/something/frames/217201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping small box into medium tupperware container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111195", "images": ["AURORA/data/something/frames/85753/first.jpg", "AURORA/data/something/frames/85753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coke into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111196", "images": ["AURORA/data/something/frames/69661/first.jpg", "AURORA/data/something/frames/69661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111197", "images": ["AURORA/data/something/frames/184007/first.jpg", "AURORA/data/something/frames/184007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a folder so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111198", "images": ["AURORA/data/something/frames/86955/first.jpg", "AURORA/data/something/frames/86955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toilette paper and toilette paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111199", "images": ["AURORA/data/something/frames/158425/first.jpg", "AURORA/data/something/frames/158425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt shaker and pepper mill closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111200", "images": ["AURORA/data/something/frames/35267/first.jpg", "AURORA/data/something/frames/35267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111201", "images": ["AURORA/data/something/frames/78872/first.jpg", "AURORA/data/something/frames/78872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111202", "images": ["AURORA/data/something/frames/48034/first.jpg", "AURORA/data/something/frames/48034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of nail polish so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000111203", "images": ["AURORA/data/something/frames/181879/first.jpg", "AURORA/data/something/frames/181879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coffee into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111204", "images": ["AURORA/data/something/frames/5576/first.jpg", "AURORA/data/something/frames/5576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111205", "images": ["AURORA/data/something/frames/36459/first.jpg", "AURORA/data/something/frames/36459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking shoe polish container from piller"}, {"from": "gpt", "value": ""}]} +{"id": "000000111206", "images": ["AURORA/data/something/frames/141650/first.jpg", "AURORA/data/something/frames/141650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111207", "images": ["AURORA/data/something/frames/162418/first.jpg", "AURORA/data/something/frames/162418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking nail polish so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111208", "images": ["AURORA/data/something/frames/180580/first.jpg", "AURORA/data/something/frames/180580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing compassbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000111209", "images": ["AURORA/data/something/frames/31139/first.jpg", "AURORA/data/something/frames/31139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a plug on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111210", "images": ["AURORA/data/something/frames/95803/first.jpg", "AURORA/data/something/frames/95803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000111211", "images": ["AURORA/data/something/frames/84344/first.jpg", "AURORA/data/something/frames/84344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111212", "images": ["AURORA/data/something/frames/65011/first.jpg", "AURORA/data/something/frames/65011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a book on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111213", "images": ["AURORA/data/something/frames/102101/first.jpg", "AURORA/data/something/frames/102101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting feeding bottle into pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111214", "images": ["AURORA/data/something/frames/105837/first.jpg", "AURORA/data/something/frames/105837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111215", "images": ["AURORA/data/something/frames/29488/first.jpg", "AURORA/data/something/frames/29488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling potholders up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111216", "images": ["AURORA/data/something/frames/177211/first.jpg", "AURORA/data/something/frames/177211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sesame seeds onto an oven tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000111217", "images": ["AURORA/data/something/frames/195673/first.jpg", "AURORA/data/something/frames/195673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobile phone with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111218", "images": ["AURORA/data/something/frames/40597/first.jpg", "AURORA/data/something/frames/40597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blinds up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111219", "images": ["AURORA/data/something/frames/116200/first.jpg", "AURORA/data/something/frames/116200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eraser onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000111220", "images": ["AURORA/data/something/frames/110093/first.jpg", "AURORA/data/something/frames/110093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111221", "images": ["AURORA/data/something/frames/71758/first.jpg", "AURORA/data/something/frames/71758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000111222", "images": ["AURORA/data/something/frames/29538/first.jpg", "AURORA/data/something/frames/29538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candy towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111223", "images": ["AURORA/data/something/frames/128173/first.jpg", "AURORA/data/something/frames/128173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding receipt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111224", "images": ["AURORA/data/something/frames/140514/first.jpg", "AURORA/data/something/frames/140514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cufflinks onto a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000111225", "images": ["AURORA/data/something/frames/6452/first.jpg", "AURORA/data/something/frames/6452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111226", "images": ["AURORA/data/something/frames/89036/first.jpg", "AURORA/data/something/frames/89036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000111227", "images": ["AURORA/data/something/frames/154955/first.jpg", "AURORA/data/something/frames/154955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111228", "images": ["AURORA/data/something/frames/128343/first.jpg", "AURORA/data/something/frames/128343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111229", "images": ["AURORA/data/something/frames/194338/first.jpg", "AURORA/data/something/frames/194338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cd into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111230", "images": ["AURORA/data/something/frames/17120/first.jpg", "AURORA/data/something/frames/17120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking sellotape so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111231", "images": ["AURORA/data/something/frames/174589/first.jpg", "AURORA/data/something/frames/174589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111232", "images": ["AURORA/data/something/frames/125487/first.jpg", "AURORA/data/something/frames/125487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a water bottle onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111233", "images": ["AURORA/data/something/frames/191021/first.jpg", "AURORA/data/something/frames/191021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111234", "images": ["AURORA/data/something/frames/148067/first.jpg", "AURORA/data/something/frames/148067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000111235", "images": ["AURORA/data/something/frames/25653/first.jpg", "AURORA/data/something/frames/25653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief in front of a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000111236", "images": ["AURORA/data/something/frames/37595/first.jpg", "AURORA/data/something/frames/37595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and tuperware away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111237", "images": ["AURORA/data/something/frames/204942/first.jpg", "AURORA/data/something/frames/204942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and another bottle so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111238", "images": ["AURORA/data/something/frames/204713/first.jpg", "AURORA/data/something/frames/204713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from mirror with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111239", "images": ["AURORA/data/something/frames/17064/first.jpg", "AURORA/data/something/frames/17064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111240", "images": ["AURORA/data/something/frames/148407/first.jpg", "AURORA/data/something/frames/148407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering stuffed animal"}, {"from": "gpt", "value": ""}]} +{"id": "000000111241", "images": ["AURORA/data/something/frames/30654/first.jpg", "AURORA/data/something/frames/30654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering teacup with saucer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111242", "images": ["AURORA/data/something/frames/159068/first.jpg", "AURORA/data/something/frames/159068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic flower away from toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000111243", "images": ["AURORA/data/something/frames/157815/first.jpg", "AURORA/data/something/frames/157815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000111244", "images": ["AURORA/data/something/frames/82891/first.jpg", "AURORA/data/something/frames/82891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candy out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111245", "images": ["AURORA/data/something/frames/19283/first.jpg", "AURORA/data/something/frames/19283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111246", "images": ["AURORA/data/something/frames/133927/first.jpg", "AURORA/data/something/frames/133927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yogurt out of freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111247", "images": ["AURORA/data/something/frames/89079/first.jpg", "AURORA/data/something/frames/89079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000111248", "images": ["AURORA/data/something/frames/108992/first.jpg", "AURORA/data/something/frames/108992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending twist ties so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111249", "images": ["AURORA/data/something/frames/105734/first.jpg", "AURORA/data/something/frames/105734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork with other forks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111250", "images": ["AURORA/data/something/frames/12462/first.jpg", "AURORA/data/something/frames/12462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000111251", "images": ["AURORA/data/something/frames/64810/first.jpg", "AURORA/data/something/frames/64810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111252", "images": ["AURORA/data/something/frames/190983/first.jpg", "AURORA/data/something/frames/190983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottled water"}, {"from": "gpt", "value": ""}]} +{"id": "000000111253", "images": ["AURORA/data/something/frames/136860/first.jpg", "AURORA/data/something/frames/136860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tool away from scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111254", "images": ["AURORA/data/something/frames/21538/first.jpg", "AURORA/data/something/frames/21538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111255", "images": ["AURORA/data/something/frames/181248/first.jpg", "AURORA/data/something/frames/181248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing aluminum foil into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111256", "images": ["AURORA/data/something/frames/176048/first.jpg", "AURORA/data/something/frames/176048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a screw from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111257", "images": ["AURORA/data/something/frames/8164/first.jpg", "AURORA/data/something/frames/8164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000111258", "images": ["AURORA/data/something/frames/105386/first.jpg", "AURORA/data/something/frames/105386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming green water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111259", "images": ["AURORA/data/something/frames/218476/first.jpg", "AURORA/data/something/frames/218476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flower with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111260", "images": ["AURORA/data/something/frames/208894/first.jpg", "AURORA/data/something/frames/208894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111261", "images": ["AURORA/data/something/frames/112295/first.jpg", "AURORA/data/something/frames/112295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting belt into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111262", "images": ["AURORA/data/something/frames/96898/first.jpg", "AURORA/data/something/frames/96898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111263", "images": ["AURORA/data/something/frames/153682/first.jpg", "AURORA/data/something/frames/153682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white book marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111264", "images": ["AURORA/data/something/frames/107878/first.jpg", "AURORA/data/something/frames/107878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111265", "images": ["AURORA/data/something/frames/36858/first.jpg", "AURORA/data/something/frames/36858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000111266", "images": ["AURORA/data/something/frames/30133/first.jpg", "AURORA/data/something/frames/30133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying net in dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111267", "images": ["AURORA/data/something/frames/46363/first.jpg", "AURORA/data/something/frames/46363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting id card on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111268", "images": ["AURORA/data/something/frames/211992/first.jpg", "AURORA/data/something/frames/211992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping block onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111269", "images": ["AURORA/data/something/frames/210656/first.jpg", "AURORA/data/something/frames/210656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil away from a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111270", "images": ["AURORA/data/something/frames/123891/first.jpg", "AURORA/data/something/frames/123891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering eye of stove with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111271", "images": ["AURORA/data/something/frames/3571/first.jpg", "AURORA/data/something/frames/3571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111272", "images": ["AURORA/data/something/frames/205653/first.jpg", "AURORA/data/something/frames/205653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy in front of goggles"}, {"from": "gpt", "value": ""}]} +{"id": "000000111273", "images": ["AURORA/data/something/frames/133223/first.jpg", "AURORA/data/something/frames/133223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111274", "images": ["AURORA/data/something/frames/19680/first.jpg", "AURORA/data/something/frames/19680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red colour pen similar to other colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111275", "images": ["AURORA/data/something/frames/63680/first.jpg", "AURORA/data/something/frames/63680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pink water bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111276", "images": ["AURORA/data/something/frames/116311/first.jpg", "AURORA/data/something/frames/116311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pair of spectacles onto a dashboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000111277", "images": ["AURORA/data/something/frames/126356/first.jpg", "AURORA/data/something/frames/126356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging wire into power bank"}, {"from": "gpt", "value": ""}]} +{"id": "000000111278", "images": ["AURORA/data/something/frames/195261/first.jpg", "AURORA/data/something/frames/195261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111279", "images": ["AURORA/data/something/frames/106798/first.jpg", "AURORA/data/something/frames/106798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111280", "images": ["AURORA/data/something/frames/146965/first.jpg", "AURORA/data/something/frames/146965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111281", "images": ["AURORA/data/something/frames/165861/first.jpg", "AURORA/data/something/frames/165861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering baby doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000111282", "images": ["AURORA/data/something/frames/188500/first.jpg", "AURORA/data/something/frames/188500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111283", "images": ["AURORA/data/something/frames/113826/first.jpg", "AURORA/data/something/frames/113826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111284", "images": ["AURORA/data/something/frames/172022/first.jpg", "AURORA/data/something/frames/172022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking rubber glow out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111285", "images": ["AURORA/data/something/frames/73442/first.jpg", "AURORA/data/something/frames/73442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111286", "images": ["AURORA/data/something/frames/164609/first.jpg", "AURORA/data/something/frames/164609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plushie with charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000111287", "images": ["AURORA/data/something/frames/56888/first.jpg", "AURORA/data/something/frames/56888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming generator set"}, {"from": "gpt", "value": ""}]} +{"id": "000000111288", "images": ["AURORA/data/something/frames/125282/first.jpg", "AURORA/data/something/frames/125282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111289", "images": ["AURORA/data/something/frames/13716/first.jpg", "AURORA/data/something/frames/13716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 notebooks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111290", "images": ["AURORA/data/something/frames/178987/first.jpg", "AURORA/data/something/frames/178987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting block with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111291", "images": ["AURORA/data/something/frames/195519/first.jpg", "AURORA/data/something/frames/195519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rocks on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111292", "images": ["AURORA/data/something/frames/190611/first.jpg", "AURORA/data/something/frames/190611/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote off of coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111293", "images": ["AURORA/data/something/frames/114204/first.jpg", "AURORA/data/something/frames/114204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bolt away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111294", "images": ["AURORA/data/something/frames/185287/first.jpg", "AURORA/data/something/frames/185287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111295", "images": ["AURORA/data/something/frames/168244/first.jpg", "AURORA/data/something/frames/168244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000111296", "images": ["AURORA/data/something/frames/42272/first.jpg", "AURORA/data/something/frames/42272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111297", "images": ["AURORA/data/something/frames/178364/first.jpg", "AURORA/data/something/frames/178364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111298", "images": ["AURORA/data/something/frames/198200/first.jpg", "AURORA/data/something/frames/198200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111299", "images": ["AURORA/data/something/frames/91387/first.jpg", "AURORA/data/something/frames/91387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hammer with sponge on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111300", "images": ["AURORA/data/something/frames/133407/first.jpg", "AURORA/data/something/frames/133407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of rectangular box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111301", "images": ["AURORA/data/something/frames/148038/first.jpg", "AURORA/data/something/frames/148038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111302", "images": ["AURORA/data/something/frames/94525/first.jpg", "AURORA/data/something/frames/94525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111303", "images": ["AURORA/data/something/frames/142863/first.jpg", "AURORA/data/something/frames/142863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling game console from behind of carry case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111304", "images": ["AURORA/data/something/frames/160229/first.jpg", "AURORA/data/something/frames/160229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111305", "images": ["AURORA/data/something/frames/78455/first.jpg", "AURORA/data/something/frames/78455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange notebook from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111306", "images": ["AURORA/data/something/frames/79242/first.jpg", "AURORA/data/something/frames/79242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111307", "images": ["AURORA/data/something/frames/95143/first.jpg", "AURORA/data/something/frames/95143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a chop stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111308", "images": ["AURORA/data/something/frames/78438/first.jpg", "AURORA/data/something/frames/78438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a pickle jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111309", "images": ["AURORA/data/something/frames/196308/first.jpg", "AURORA/data/something/frames/196308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and book closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111310", "images": ["AURORA/data/something/frames/6968/first.jpg", "AURORA/data/something/frames/6968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green chalk towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111311", "images": ["AURORA/data/something/frames/103392/first.jpg", "AURORA/data/something/frames/103392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pencil into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111312", "images": ["AURORA/data/something/frames/85212/first.jpg", "AURORA/data/something/frames/85212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving star away from square"}, {"from": "gpt", "value": ""}]} +{"id": "000000111313", "images": ["AURORA/data/something/frames/12054/first.jpg", "AURORA/data/something/frames/12054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111314", "images": ["AURORA/data/something/frames/134888/first.jpg", "AURORA/data/something/frames/134888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111315", "images": ["AURORA/data/something/frames/65817/first.jpg", "AURORA/data/something/frames/65817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111316", "images": ["AURORA/data/something/frames/4522/first.jpg", "AURORA/data/something/frames/4522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111317", "images": ["AURORA/data/something/frames/86705/first.jpg", "AURORA/data/something/frames/86705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mouse mat with card on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111318", "images": ["AURORA/data/something/frames/15658/first.jpg", "AURORA/data/something/frames/15658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111319", "images": ["AURORA/data/something/frames/210603/first.jpg", "AURORA/data/something/frames/210603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111320", "images": ["AURORA/data/something/frames/152767/first.jpg", "AURORA/data/something/frames/152767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and wallet so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111321", "images": ["AURORA/data/something/frames/123289/first.jpg", "AURORA/data/something/frames/123289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling oil onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111322", "images": ["AURORA/data/something/frames/136072/first.jpg", "AURORA/data/something/frames/136072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111323", "images": ["AURORA/data/something/frames/18645/first.jpg", "AURORA/data/something/frames/18645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111324", "images": ["AURORA/data/something/frames/157798/first.jpg", "AURORA/data/something/frames/157798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume bottle behind hairclip"}, {"from": "gpt", "value": ""}]} +{"id": "000000111325", "images": ["AURORA/data/something/frames/18125/first.jpg", "AURORA/data/something/frames/18125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming slippers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111326", "images": ["AURORA/data/something/frames/190823/first.jpg", "AURORA/data/something/frames/190823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting knife with bowl on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111327", "images": ["AURORA/data/something/frames/36871/first.jpg", "AURORA/data/something/frames/36871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111328", "images": ["AURORA/data/something/frames/178515/first.jpg", "AURORA/data/something/frames/178515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a tupperware container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111329", "images": ["AURORA/data/something/frames/166678/first.jpg", "AURORA/data/something/frames/166678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111330", "images": ["AURORA/data/something/frames/64604/first.jpg", "AURORA/data/something/frames/64604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tape so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111331", "images": ["AURORA/data/something/frames/60125/first.jpg", "AURORA/data/something/frames/60125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a wallet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111332", "images": ["AURORA/data/something/frames/51138/first.jpg", "AURORA/data/something/frames/51138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding pillow case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111333", "images": ["AURORA/data/something/frames/207877/first.jpg", "AURORA/data/something/frames/207877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111334", "images": ["AURORA/data/something/frames/179557/first.jpg", "AURORA/data/something/frames/179557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a pen cap to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111335", "images": ["AURORA/data/something/frames/162605/first.jpg", "AURORA/data/something/frames/162605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111336", "images": ["AURORA/data/something/frames/24441/first.jpg", "AURORA/data/something/frames/24441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111337", "images": ["AURORA/data/something/frames/84417/first.jpg", "AURORA/data/something/frames/84417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111338", "images": ["AURORA/data/something/frames/24300/first.jpg", "AURORA/data/something/frames/24300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet box with red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111339", "images": ["AURORA/data/something/frames/59277/first.jpg", "AURORA/data/something/frames/59277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) case of a mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111340", "images": ["AURORA/data/something/frames/132691/first.jpg", "AURORA/data/something/frames/132691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paperboard with a wallet on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111341", "images": ["AURORA/data/something/frames/106999/first.jpg", "AURORA/data/something/frames/106999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a wooden block into a soft lunchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000111342", "images": ["AURORA/data/something/frames/86300/first.jpg", "AURORA/data/something/frames/86300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting medicine bottle upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111343", "images": ["AURORA/data/something/frames/218413/first.jpg", "AURORA/data/something/frames/218413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111344", "images": ["AURORA/data/something/frames/203322/first.jpg", "AURORA/data/something/frames/203322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111345", "images": ["AURORA/data/something/frames/197103/first.jpg", "AURORA/data/something/frames/197103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111346", "images": ["AURORA/data/something/frames/185083/first.jpg", "AURORA/data/something/frames/185083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111347", "images": ["AURORA/data/something/frames/47038/first.jpg", "AURORA/data/something/frames/47038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111348", "images": ["AURORA/data/something/frames/172490/first.jpg", "AURORA/data/something/frames/172490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111349", "images": ["AURORA/data/something/frames/22417/first.jpg", "AURORA/data/something/frames/22417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering marker with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111350", "images": ["AURORA/data/something/frames/116638/first.jpg", "AURORA/data/something/frames/116638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a charger onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111351", "images": ["AURORA/data/something/frames/165710/first.jpg", "AURORA/data/something/frames/165710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111352", "images": ["AURORA/data/something/frames/3385/first.jpg", "AURORA/data/something/frames/3385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111353", "images": ["AURORA/data/something/frames/57315/first.jpg", "AURORA/data/something/frames/57315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111354", "images": ["AURORA/data/something/frames/214520/first.jpg", "AURORA/data/something/frames/214520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting necklace next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000111355", "images": ["AURORA/data/something/frames/6460/first.jpg", "AURORA/data/something/frames/6460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one coin of many similar coins on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111356", "images": ["AURORA/data/something/frames/103001/first.jpg", "AURORA/data/something/frames/103001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster with coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000111357", "images": ["AURORA/data/something/frames/218050/first.jpg", "AURORA/data/something/frames/218050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding one dollar bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000111358", "images": ["AURORA/data/something/frames/5730/first.jpg", "AURORA/data/something/frames/5730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111359", "images": ["AURORA/data/something/frames/71222/first.jpg", "AURORA/data/something/frames/71222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111360", "images": ["AURORA/data/something/frames/205253/first.jpg", "AURORA/data/something/frames/205253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tube of toothpaste in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000111361", "images": ["AURORA/data/something/frames/48744/first.jpg", "AURORA/data/something/frames/48744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a pitcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000111362", "images": ["AURORA/data/something/frames/105509/first.jpg", "AURORA/data/something/frames/105509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111363", "images": ["AURORA/data/something/frames/7158/first.jpg", "AURORA/data/something/frames/7158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111364", "images": ["AURORA/data/something/frames/142617/first.jpg", "AURORA/data/something/frames/142617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping leaves off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111365", "images": ["AURORA/data/something/frames/200378/first.jpg", "AURORA/data/something/frames/200378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashdrive next to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111366", "images": ["AURORA/data/something/frames/84327/first.jpg", "AURORA/data/something/frames/84327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111367", "images": ["AURORA/data/something/frames/1657/first.jpg", "AURORA/data/something/frames/1657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000111368", "images": ["AURORA/data/something/frames/162068/first.jpg", "AURORA/data/something/frames/162068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111369", "images": ["AURORA/data/something/frames/182579/first.jpg", "AURORA/data/something/frames/182579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair with my hands"}, {"from": "gpt", "value": ""}]} +{"id": "000000111370", "images": ["AURORA/data/something/frames/138709/first.jpg", "AURORA/data/something/frames/138709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chip clip, chip clip and chocolate on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111371", "images": ["AURORA/data/something/frames/24327/first.jpg", "AURORA/data/something/frames/24327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping torch in front of shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111372", "images": ["AURORA/data/something/frames/210319/first.jpg", "AURORA/data/something/frames/210319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving music player up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111373", "images": ["AURORA/data/something/frames/113913/first.jpg", "AURORA/data/something/frames/113913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic twist tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000111374", "images": ["AURORA/data/something/frames/123684/first.jpg", "AURORA/data/something/frames/123684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sandals with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111375", "images": ["AURORA/data/something/frames/109636/first.jpg", "AURORA/data/something/frames/109636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a kettle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111376", "images": ["AURORA/data/something/frames/87386/first.jpg", "AURORA/data/something/frames/87386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lipstick so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111377", "images": ["AURORA/data/something/frames/160955/first.jpg", "AURORA/data/something/frames/160955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving razor up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111378", "images": ["AURORA/data/something/frames/85924/first.jpg", "AURORA/data/something/frames/85924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111379", "images": ["AURORA/data/something/frames/210649/first.jpg", "AURORA/data/something/frames/210649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush in front of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111380", "images": ["AURORA/data/something/frames/173576/first.jpg", "AURORA/data/something/frames/173576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 books on 3"}, {"from": "gpt", "value": ""}]} +{"id": "000000111381", "images": ["AURORA/data/something/frames/192585/first.jpg", "AURORA/data/something/frames/192585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tennis ball into its plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111382", "images": ["AURORA/data/something/frames/13037/first.jpg", "AURORA/data/something/frames/13037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lens closer to camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111383", "images": ["AURORA/data/something/frames/38331/first.jpg", "AURORA/data/something/frames/38331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111384", "images": ["AURORA/data/something/frames/77332/first.jpg", "AURORA/data/something/frames/77332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending notebook so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111385", "images": ["AURORA/data/something/frames/28237/first.jpg", "AURORA/data/something/frames/28237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair tie so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111386", "images": ["AURORA/data/something/frames/45172/first.jpg", "AURORA/data/something/frames/45172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting teddy with remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000111387", "images": ["AURORA/data/something/frames/62735/first.jpg", "AURORA/data/something/frames/62735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111388", "images": ["AURORA/data/something/frames/75866/first.jpg", "AURORA/data/something/frames/75866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111389", "images": ["AURORA/data/something/frames/97399/first.jpg", "AURORA/data/something/frames/97399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a dolar bill out of a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111390", "images": ["AURORA/data/something/frames/161099/first.jpg", "AURORA/data/something/frames/161099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping headphones onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111391", "images": ["AURORA/data/something/frames/149515/first.jpg", "AURORA/data/something/frames/149515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper, pen and rubber band on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111392", "images": ["AURORA/data/something/frames/30520/first.jpg", "AURORA/data/something/frames/30520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111393", "images": ["AURORA/data/something/frames/150672/first.jpg", "AURORA/data/something/frames/150672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111394", "images": ["AURORA/data/something/frames/80339/first.jpg", "AURORA/data/something/frames/80339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toothbrush from bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111395", "images": ["AURORA/data/something/frames/41873/first.jpg", "AURORA/data/something/frames/41873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111396", "images": ["AURORA/data/something/frames/217205/first.jpg", "AURORA/data/something/frames/217205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tomato up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111397", "images": ["AURORA/data/something/frames/132652/first.jpg", "AURORA/data/something/frames/132652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto a rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111398", "images": ["AURORA/data/something/frames/55484/first.jpg", "AURORA/data/something/frames/55484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111399", "images": ["AURORA/data/something/frames/147929/first.jpg", "AURORA/data/something/frames/147929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block and toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111400", "images": ["AURORA/data/something/frames/18445/first.jpg", "AURORA/data/something/frames/18445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111401", "images": ["AURORA/data/something/frames/210621/first.jpg", "AURORA/data/something/frames/210621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sandwich into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111402", "images": ["AURORA/data/something/frames/211903/first.jpg", "AURORA/data/something/frames/211903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000111403", "images": ["AURORA/data/something/frames/102540/first.jpg", "AURORA/data/something/frames/102540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111404", "images": ["AURORA/data/something/frames/14077/first.jpg", "AURORA/data/something/frames/14077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111405", "images": ["AURORA/data/something/frames/106833/first.jpg", "AURORA/data/something/frames/106833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book behind a screen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111406", "images": ["AURORA/data/something/frames/62486/first.jpg", "AURORA/data/something/frames/62486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking matchstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111407", "images": ["AURORA/data/something/frames/43695/first.jpg", "AURORA/data/something/frames/43695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111408", "images": ["AURORA/data/something/frames/19764/first.jpg", "AURORA/data/something/frames/19764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming jeep"}, {"from": "gpt", "value": ""}]} +{"id": "000000111409", "images": ["AURORA/data/something/frames/180485/first.jpg", "AURORA/data/something/frames/180485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111410", "images": ["AURORA/data/something/frames/36824/first.jpg", "AURORA/data/something/frames/36824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping water up with mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111411", "images": ["AURORA/data/something/frames/187399/first.jpg", "AURORA/data/something/frames/187399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111412", "images": ["AURORA/data/something/frames/74525/first.jpg", "AURORA/data/something/frames/74525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111413", "images": ["AURORA/data/something/frames/187928/first.jpg", "AURORA/data/something/frames/187928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111414", "images": ["AURORA/data/something/frames/214597/first.jpg", "AURORA/data/something/frames/214597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111415", "images": ["AURORA/data/something/frames/207835/first.jpg", "AURORA/data/something/frames/207835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening stove oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000111416", "images": ["AURORA/data/something/frames/136817/first.jpg", "AURORA/data/something/frames/136817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000111417", "images": ["AURORA/data/something/frames/37252/first.jpg", "AURORA/data/something/frames/37252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling turmeric behind hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111418", "images": ["AURORA/data/something/frames/94982/first.jpg", "AURORA/data/something/frames/94982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111419", "images": ["AURORA/data/something/frames/10353/first.jpg", "AURORA/data/something/frames/10353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tube behind bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000111420", "images": ["AURORA/data/something/frames/38642/first.jpg", "AURORA/data/something/frames/38642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stuffed toy out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111421", "images": ["AURORA/data/something/frames/90320/first.jpg", "AURORA/data/something/frames/90320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a flower pot from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111422", "images": ["AURORA/data/something/frames/58832/first.jpg", "AURORA/data/something/frames/58832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111423", "images": ["AURORA/data/something/frames/175920/first.jpg", "AURORA/data/something/frames/175920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111424", "images": ["AURORA/data/something/frames/186512/first.jpg", "AURORA/data/something/frames/186512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking green toy car up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111425", "images": ["AURORA/data/something/frames/87101/first.jpg", "AURORA/data/something/frames/87101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111426", "images": ["AURORA/data/something/frames/17494/first.jpg", "AURORA/data/something/frames/17494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from shampoo bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111427", "images": ["AURORA/data/something/frames/20636/first.jpg", "AURORA/data/something/frames/20636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cotton rounds over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111428", "images": ["AURORA/data/something/frames/174387/first.jpg", "AURORA/data/something/frames/174387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup of soda so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111429", "images": ["AURORA/data/something/frames/67808/first.jpg", "AURORA/data/something/frames/67808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toothpaste tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111430", "images": ["AURORA/data/something/frames/179265/first.jpg", "AURORA/data/something/frames/179265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111431", "images": ["AURORA/data/something/frames/171592/first.jpg", "AURORA/data/something/frames/171592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111432", "images": ["AURORA/data/something/frames/207966/first.jpg", "AURORA/data/something/frames/207966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111433", "images": ["AURORA/data/something/frames/93756/first.jpg", "AURORA/data/something/frames/93756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111434", "images": ["AURORA/data/something/frames/129077/first.jpg", "AURORA/data/something/frames/129077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111435", "images": ["AURORA/data/something/frames/113792/first.jpg", "AURORA/data/something/frames/113792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111436", "images": ["AURORA/data/something/frames/13704/first.jpg", "AURORA/data/something/frames/13704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111437", "images": ["AURORA/data/something/frames/207156/first.jpg", "AURORA/data/something/frames/207156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111438", "images": ["AURORA/data/something/frames/139074/first.jpg", "AURORA/data/something/frames/139074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111439", "images": ["AURORA/data/something/frames/195860/first.jpg", "AURORA/data/something/frames/195860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a badminton bat colliding with another bat and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111440", "images": ["AURORA/data/something/frames/207436/first.jpg", "AURORA/data/something/frames/207436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing leaflet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111441", "images": ["AURORA/data/something/frames/62750/first.jpg", "AURORA/data/something/frames/62750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111442", "images": ["AURORA/data/something/frames/195332/first.jpg", "AURORA/data/something/frames/195332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending an envolope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111443", "images": ["AURORA/data/something/frames/167384/first.jpg", "AURORA/data/something/frames/167384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111444", "images": ["AURORA/data/something/frames/219937/first.jpg", "AURORA/data/something/frames/219937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring boiling water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111445", "images": ["AURORA/data/something/frames/174735/first.jpg", "AURORA/data/something/frames/174735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111446", "images": ["AURORA/data/something/frames/2571/first.jpg", "AURORA/data/something/frames/2571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stamps, perfume and a pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111447", "images": ["AURORA/data/something/frames/132470/first.jpg", "AURORA/data/something/frames/132470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking laundry pods so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111448", "images": ["AURORA/data/something/frames/104531/first.jpg", "AURORA/data/something/frames/104531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pencil with cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111449", "images": ["AURORA/data/something/frames/3881/first.jpg", "AURORA/data/something/frames/3881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111450", "images": ["AURORA/data/something/frames/118897/first.jpg", "AURORA/data/something/frames/118897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111451", "images": ["AURORA/data/something/frames/9235/first.jpg", "AURORA/data/something/frames/9235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111452", "images": ["AURORA/data/something/frames/133353/first.jpg", "AURORA/data/something/frames/133353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bangle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111453", "images": ["AURORA/data/something/frames/45193/first.jpg", "AURORA/data/something/frames/45193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book of other books"}, {"from": "gpt", "value": ""}]} +{"id": "000000111454", "images": ["AURORA/data/something/frames/61754/first.jpg", "AURORA/data/something/frames/61754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111455", "images": ["AURORA/data/something/frames/149740/first.jpg", "AURORA/data/something/frames/149740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a little box next to the bread packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111456", "images": ["AURORA/data/something/frames/83569/first.jpg", "AURORA/data/something/frames/83569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111457", "images": ["AURORA/data/something/frames/32690/first.jpg", "AURORA/data/something/frames/32690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cufflinks onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000111458", "images": ["AURORA/data/something/frames/30427/first.jpg", "AURORA/data/something/frames/30427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a wrist watch on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111459", "images": ["AURORA/data/something/frames/171933/first.jpg", "AURORA/data/something/frames/171933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling vasmol bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111460", "images": ["AURORA/data/something/frames/43946/first.jpg", "AURORA/data/something/frames/43946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111461", "images": ["AURORA/data/something/frames/91990/first.jpg", "AURORA/data/something/frames/91990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil into stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000111462", "images": ["AURORA/data/something/frames/124693/first.jpg", "AURORA/data/something/frames/124693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending (opening) closed book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111463", "images": ["AURORA/data/something/frames/127394/first.jpg", "AURORA/data/something/frames/127394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking remote control up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111464", "images": ["AURORA/data/something/frames/21181/first.jpg", "AURORA/data/something/frames/21181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristband down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111465", "images": ["AURORA/data/something/frames/37890/first.jpg", "AURORA/data/something/frames/37890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing a piece of paper just a little bit just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111466", "images": ["AURORA/data/something/frames/167706/first.jpg", "AURORA/data/something/frames/167706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thread and cell phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111467", "images": ["AURORA/data/something/frames/144160/first.jpg", "AURORA/data/something/frames/144160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving belt up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111468", "images": ["AURORA/data/something/frames/49772/first.jpg", "AURORA/data/something/frames/49772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111469", "images": ["AURORA/data/something/frames/118439/first.jpg", "AURORA/data/something/frames/118439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111470", "images": ["AURORA/data/something/frames/15589/first.jpg", "AURORA/data/something/frames/15589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing white hand gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111471", "images": ["AURORA/data/something/frames/114686/first.jpg", "AURORA/data/something/frames/114686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mp3 across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111472", "images": ["AURORA/data/something/frames/25335/first.jpg", "AURORA/data/something/frames/25335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111473", "images": ["AURORA/data/something/frames/199953/first.jpg", "AURORA/data/something/frames/199953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black hair tie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111474", "images": ["AURORA/data/something/frames/137843/first.jpg", "AURORA/data/something/frames/137843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111475", "images": ["AURORA/data/something/frames/186986/first.jpg", "AURORA/data/something/frames/186986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111476", "images": ["AURORA/data/something/frames/59587/first.jpg", "AURORA/data/something/frames/59587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000111477", "images": ["AURORA/data/something/frames/191702/first.jpg", "AURORA/data/something/frames/191702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing clothes peg behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111478", "images": ["AURORA/data/something/frames/55356/first.jpg", "AURORA/data/something/frames/55356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111479", "images": ["AURORA/data/something/frames/117030/first.jpg", "AURORA/data/something/frames/117030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111480", "images": ["AURORA/data/something/frames/68006/first.jpg", "AURORA/data/something/frames/68006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can next to beer mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111481", "images": ["AURORA/data/something/frames/780/first.jpg", "AURORA/data/something/frames/780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a lamp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111482", "images": ["AURORA/data/something/frames/164001/first.jpg", "AURORA/data/something/frames/164001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking box from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111483", "images": ["AURORA/data/something/frames/215403/first.jpg", "AURORA/data/something/frames/215403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111484", "images": ["AURORA/data/something/frames/48290/first.jpg", "AURORA/data/something/frames/48290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000111485", "images": ["AURORA/data/something/frames/64058/first.jpg", "AURORA/data/something/frames/64058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a clip so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111486", "images": ["AURORA/data/something/frames/203770/first.jpg", "AURORA/data/something/frames/203770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering striker coin with blue spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111487", "images": ["AURORA/data/something/frames/44815/first.jpg", "AURORA/data/something/frames/44815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111488", "images": ["AURORA/data/something/frames/127151/first.jpg", "AURORA/data/something/frames/127151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bailer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111489", "images": ["AURORA/data/something/frames/204628/first.jpg", "AURORA/data/something/frames/204628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a ribbon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111490", "images": ["AURORA/data/something/frames/174913/first.jpg", "AURORA/data/something/frames/174913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111491", "images": ["AURORA/data/something/frames/94935/first.jpg", "AURORA/data/something/frames/94935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111492", "images": ["AURORA/data/something/frames/219858/first.jpg", "AURORA/data/something/frames/219858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing nail clipper into rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000111493", "images": ["AURORA/data/something/frames/16445/first.jpg", "AURORA/data/something/frames/16445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching stone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111494", "images": ["AURORA/data/something/frames/106337/first.jpg", "AURORA/data/something/frames/106337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sugar into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111495", "images": ["AURORA/data/something/frames/65607/first.jpg", "AURORA/data/something/frames/65607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111496", "images": ["AURORA/data/something/frames/157238/first.jpg", "AURORA/data/something/frames/157238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a jbl, revealing a card behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111497", "images": ["AURORA/data/something/frames/48360/first.jpg", "AURORA/data/something/frames/48360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote closer to the mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000111498", "images": ["AURORA/data/something/frames/161008/first.jpg", "AURORA/data/something/frames/161008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111499", "images": ["AURORA/data/something/frames/193937/first.jpg", "AURORA/data/something/frames/193937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111500", "images": ["AURORA/data/something/frames/182296/first.jpg", "AURORA/data/something/frames/182296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111501", "images": ["AURORA/data/something/frames/171983/first.jpg", "AURORA/data/something/frames/171983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending can so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111502", "images": ["AURORA/data/something/frames/47392/first.jpg", "AURORA/data/something/frames/47392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111503", "images": ["AURORA/data/something/frames/163401/first.jpg", "AURORA/data/something/frames/163401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring pasta into trophy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111504", "images": ["AURORA/data/something/frames/39249/first.jpg", "AURORA/data/something/frames/39249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a coaster with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111505", "images": ["AURORA/data/something/frames/43631/first.jpg", "AURORA/data/something/frames/43631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing eggs so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111506", "images": ["AURORA/data/something/frames/58664/first.jpg", "AURORA/data/something/frames/58664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a coffee cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111507", "images": ["AURORA/data/something/frames/193791/first.jpg", "AURORA/data/something/frames/193791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling chocolate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111508", "images": ["AURORA/data/something/frames/19730/first.jpg", "AURORA/data/something/frames/19730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener underneath calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000111509", "images": ["AURORA/data/something/frames/193177/first.jpg", "AURORA/data/something/frames/193177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb stick into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111510", "images": ["AURORA/data/something/frames/92505/first.jpg", "AURORA/data/something/frames/92505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111511", "images": ["AURORA/data/something/frames/36900/first.jpg", "AURORA/data/something/frames/36900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111512", "images": ["AURORA/data/something/frames/68841/first.jpg", "AURORA/data/something/frames/68841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111513", "images": ["AURORA/data/something/frames/166093/first.jpg", "AURORA/data/something/frames/166093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking something so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111514", "images": ["AURORA/data/something/frames/22518/first.jpg", "AURORA/data/something/frames/22518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111515", "images": ["AURORA/data/something/frames/30393/first.jpg", "AURORA/data/something/frames/30393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000111516", "images": ["AURORA/data/something/frames/86780/first.jpg", "AURORA/data/something/frames/86780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111517", "images": ["AURORA/data/something/frames/83167/first.jpg", "AURORA/data/something/frames/83167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy mouse and block away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111518", "images": ["AURORA/data/something/frames/1286/first.jpg", "AURORA/data/something/frames/1286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111519", "images": ["AURORA/data/something/frames/127033/first.jpg", "AURORA/data/something/frames/127033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spatula out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111520", "images": ["AURORA/data/something/frames/26925/first.jpg", "AURORA/data/something/frames/26925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming brown case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111521", "images": ["AURORA/data/something/frames/58205/first.jpg", "AURORA/data/something/frames/58205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111522", "images": ["AURORA/data/something/frames/211294/first.jpg", "AURORA/data/something/frames/211294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping carton box onto plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111523", "images": ["AURORA/data/something/frames/156718/first.jpg", "AURORA/data/something/frames/156718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker and marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111524", "images": ["AURORA/data/something/frames/220337/first.jpg", "AURORA/data/something/frames/220337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a comb away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111525", "images": ["AURORA/data/something/frames/41499/first.jpg", "AURORA/data/something/frames/41499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wrist watch upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111526", "images": ["AURORA/data/something/frames/86175/first.jpg", "AURORA/data/something/frames/86175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111527", "images": ["AURORA/data/something/frames/135258/first.jpg", "AURORA/data/something/frames/135258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a figurine so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111528", "images": ["AURORA/data/something/frames/158554/first.jpg", "AURORA/data/something/frames/158554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000111529", "images": ["AURORA/data/something/frames/154377/first.jpg", "AURORA/data/something/frames/154377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111530", "images": ["AURORA/data/something/frames/100085/first.jpg", "AURORA/data/something/frames/100085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping envelope next to hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111531", "images": ["AURORA/data/something/frames/104313/first.jpg", "AURORA/data/something/frames/104313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111532", "images": ["AURORA/data/something/frames/12027/first.jpg", "AURORA/data/something/frames/12027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candlestick away from candlestick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111533", "images": ["AURORA/data/something/frames/21773/first.jpg", "AURORA/data/something/frames/21773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111534", "images": ["AURORA/data/something/frames/44938/first.jpg", "AURORA/data/something/frames/44938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cookies box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111535", "images": ["AURORA/data/something/frames/169189/first.jpg", "AURORA/data/something/frames/169189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white colour marker pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111536", "images": ["AURORA/data/something/frames/38281/first.jpg", "AURORA/data/something/frames/38281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111537", "images": ["AURORA/data/something/frames/48944/first.jpg", "AURORA/data/something/frames/48944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting face wash upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111538", "images": ["AURORA/data/something/frames/140171/first.jpg", "AURORA/data/something/frames/140171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111539", "images": ["AURORA/data/something/frames/150756/first.jpg", "AURORA/data/something/frames/150756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a placemat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111540", "images": ["AURORA/data/something/frames/40726/first.jpg", "AURORA/data/something/frames/40726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cable into cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111541", "images": ["AURORA/data/something/frames/195308/first.jpg", "AURORA/data/something/frames/195308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging inlet into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111542", "images": ["AURORA/data/something/frames/1234/first.jpg", "AURORA/data/something/frames/1234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a sock so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111543", "images": ["AURORA/data/something/frames/93809/first.jpg", "AURORA/data/something/frames/93809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming baby diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111544", "images": ["AURORA/data/something/frames/128055/first.jpg", "AURORA/data/something/frames/128055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting limon into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111545", "images": ["AURORA/data/something/frames/134413/first.jpg", "AURORA/data/something/frames/134413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering scissors with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000111546", "images": ["AURORA/data/something/frames/5822/first.jpg", "AURORA/data/something/frames/5822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111547", "images": ["AURORA/data/something/frames/136480/first.jpg", "AURORA/data/something/frames/136480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering dice"}, {"from": "gpt", "value": ""}]} +{"id": "000000111548", "images": ["AURORA/data/something/frames/211356/first.jpg", "AURORA/data/something/frames/211356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111549", "images": ["AURORA/data/something/frames/122022/first.jpg", "AURORA/data/something/frames/122022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111550", "images": ["AURORA/data/something/frames/123131/first.jpg", "AURORA/data/something/frames/123131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000111551", "images": ["AURORA/data/something/frames/95946/first.jpg", "AURORA/data/something/frames/95946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a basket with a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000111552", "images": ["AURORA/data/something/frames/194537/first.jpg", "AURORA/data/something/frames/194537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching mobile charger to plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111553", "images": ["AURORA/data/something/frames/188056/first.jpg", "AURORA/data/something/frames/188056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111554", "images": ["AURORA/data/something/frames/213838/first.jpg", "AURORA/data/something/frames/213838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car, small tin and baloon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111555", "images": ["AURORA/data/something/frames/125394/first.jpg", "AURORA/data/something/frames/125394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111556", "images": ["AURORA/data/something/frames/11080/first.jpg", "AURORA/data/something/frames/11080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rice up with a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111557", "images": ["AURORA/data/something/frames/218511/first.jpg", "AURORA/data/something/frames/218511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a folder on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111558", "images": ["AURORA/data/something/frames/114334/first.jpg", "AURORA/data/something/frames/114334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting onion into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111559", "images": ["AURORA/data/something/frames/107715/first.jpg", "AURORA/data/something/frames/107715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming kitchen platform"}, {"from": "gpt", "value": ""}]} +{"id": "000000111560", "images": ["AURORA/data/something/frames/80502/first.jpg", "AURORA/data/something/frames/80502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb away from basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111561", "images": ["AURORA/data/something/frames/49434/first.jpg", "AURORA/data/something/frames/49434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111562", "images": ["AURORA/data/something/frames/115452/first.jpg", "AURORA/data/something/frames/115452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a clip to a bag of sugar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111563", "images": ["AURORA/data/something/frames/97360/first.jpg", "AURORA/data/something/frames/97360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111564", "images": ["AURORA/data/something/frames/5423/first.jpg", "AURORA/data/something/frames/5423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111565", "images": ["AURORA/data/something/frames/96542/first.jpg", "AURORA/data/something/frames/96542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111566", "images": ["AURORA/data/something/frames/23132/first.jpg", "AURORA/data/something/frames/23132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing smarthphone with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111567", "images": ["AURORA/data/something/frames/73968/first.jpg", "AURORA/data/something/frames/73968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111568", "images": ["AURORA/data/something/frames/143969/first.jpg", "AURORA/data/something/frames/143969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening red dairy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111569", "images": ["AURORA/data/something/frames/190339/first.jpg", "AURORA/data/something/frames/190339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a shoe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111570", "images": ["AURORA/data/something/frames/61114/first.jpg", "AURORA/data/something/frames/61114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bag upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111571", "images": ["AURORA/data/something/frames/94754/first.jpg", "AURORA/data/something/frames/94754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000111572", "images": ["AURORA/data/something/frames/54431/first.jpg", "AURORA/data/something/frames/54431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming elephant statue"}, {"from": "gpt", "value": ""}]} +{"id": "000000111573", "images": ["AURORA/data/something/frames/32313/first.jpg", "AURORA/data/something/frames/32313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111574", "images": ["AURORA/data/something/frames/115429/first.jpg", "AURORA/data/something/frames/115429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111575", "images": ["AURORA/data/something/frames/209940/first.jpg", "AURORA/data/something/frames/209940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111576", "images": ["AURORA/data/something/frames/116685/first.jpg", "AURORA/data/something/frames/116685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting paper punch with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111577", "images": ["AURORA/data/something/frames/162644/first.jpg", "AURORA/data/something/frames/162644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) something wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111578", "images": ["AURORA/data/something/frames/113316/first.jpg", "AURORA/data/something/frames/113316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111579", "images": ["AURORA/data/something/frames/209678/first.jpg", "AURORA/data/something/frames/209678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111580", "images": ["AURORA/data/something/frames/20800/first.jpg", "AURORA/data/something/frames/20800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing almara"}, {"from": "gpt", "value": ""}]} +{"id": "000000111581", "images": ["AURORA/data/something/frames/35824/first.jpg", "AURORA/data/something/frames/35824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111582", "images": ["AURORA/data/something/frames/91096/first.jpg", "AURORA/data/something/frames/91096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hand cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000111583", "images": ["AURORA/data/something/frames/204176/first.jpg", "AURORA/data/something/frames/204176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plastic casing colliding with plastic cover and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111584", "images": ["AURORA/data/something/frames/89034/first.jpg", "AURORA/data/something/frames/89034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111585", "images": ["AURORA/data/something/frames/101669/first.jpg", "AURORA/data/something/frames/101669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping grape into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111586", "images": ["AURORA/data/something/frames/156825/first.jpg", "AURORA/data/something/frames/156825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000111587", "images": ["AURORA/data/something/frames/132699/first.jpg", "AURORA/data/something/frames/132699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from computer screen with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111588", "images": ["AURORA/data/something/frames/200763/first.jpg", "AURORA/data/something/frames/200763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser and usb cable away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111589", "images": ["AURORA/data/something/frames/208509/first.jpg", "AURORA/data/something/frames/208509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into paper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111590", "images": ["AURORA/data/something/frames/134085/first.jpg", "AURORA/data/something/frames/134085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small stone and large stone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111591", "images": ["AURORA/data/something/frames/187359/first.jpg", "AURORA/data/something/frames/187359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pennies on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111592", "images": ["AURORA/data/something/frames/39852/first.jpg", "AURORA/data/something/frames/39852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000111593", "images": ["AURORA/data/something/frames/143821/first.jpg", "AURORA/data/something/frames/143821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111594", "images": ["AURORA/data/something/frames/105544/first.jpg", "AURORA/data/something/frames/105544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a banana on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111595", "images": ["AURORA/data/something/frames/218487/first.jpg", "AURORA/data/something/frames/218487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle with figurine"}, {"from": "gpt", "value": ""}]} +{"id": "000000111596", "images": ["AURORA/data/something/frames/218162/first.jpg", "AURORA/data/something/frames/218162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) wheat of plate wheat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111597", "images": ["AURORA/data/something/frames/49823/first.jpg", "AURORA/data/something/frames/49823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111598", "images": ["AURORA/data/something/frames/51630/first.jpg", "AURORA/data/something/frames/51630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glass with spoon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111599", "images": ["AURORA/data/something/frames/186413/first.jpg", "AURORA/data/something/frames/186413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111600", "images": ["AURORA/data/something/frames/56771/first.jpg", "AURORA/data/something/frames/56771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, pen and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111601", "images": ["AURORA/data/something/frames/116401/first.jpg", "AURORA/data/something/frames/116401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teabag into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111602", "images": ["AURORA/data/something/frames/182258/first.jpg", "AURORA/data/something/frames/182258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking comb from window sill"}, {"from": "gpt", "value": ""}]} +{"id": "000000111603", "images": ["AURORA/data/something/frames/157721/first.jpg", "AURORA/data/something/frames/157721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: block being deflected from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000111604", "images": ["AURORA/data/something/frames/206242/first.jpg", "AURORA/data/something/frames/206242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking an apple so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111605", "images": ["AURORA/data/something/frames/83120/first.jpg", "AURORA/data/something/frames/83120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pod out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111606", "images": ["AURORA/data/something/frames/188339/first.jpg", "AURORA/data/something/frames/188339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening card folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111607", "images": ["AURORA/data/something/frames/76344/first.jpg", "AURORA/data/something/frames/76344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power board but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111608", "images": ["AURORA/data/something/frames/146294/first.jpg", "AURORA/data/something/frames/146294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111609", "images": ["AURORA/data/something/frames/4941/first.jpg", "AURORA/data/something/frames/4941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tennis ball behind cd stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000111610", "images": ["AURORA/data/something/frames/129897/first.jpg", "AURORA/data/something/frames/129897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting package on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111611", "images": ["AURORA/data/something/frames/80533/first.jpg", "AURORA/data/something/frames/80533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing small box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111612", "images": ["AURORA/data/something/frames/202213/first.jpg", "AURORA/data/something/frames/202213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111613", "images": ["AURORA/data/something/frames/199173/first.jpg", "AURORA/data/something/frames/199173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of water on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111614", "images": ["AURORA/data/something/frames/65274/first.jpg", "AURORA/data/something/frames/65274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 spanners onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000111615", "images": ["AURORA/data/something/frames/25340/first.jpg", "AURORA/data/something/frames/25340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111616", "images": ["AURORA/data/something/frames/170631/first.jpg", "AURORA/data/something/frames/170631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a mug out of a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000111617", "images": ["AURORA/data/something/frames/58144/first.jpg", "AURORA/data/something/frames/58144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a straw into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111618", "images": ["AURORA/data/something/frames/31317/first.jpg", "AURORA/data/something/frames/31317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a glass so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111619", "images": ["AURORA/data/something/frames/175678/first.jpg", "AURORA/data/something/frames/175678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet in front of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111620", "images": ["AURORA/data/something/frames/212276/first.jpg", "AURORA/data/something/frames/212276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111621", "images": ["AURORA/data/something/frames/118689/first.jpg", "AURORA/data/something/frames/118689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a camera lens upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111622", "images": ["AURORA/data/something/frames/95424/first.jpg", "AURORA/data/something/frames/95424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding plastic"}, {"from": "gpt", "value": ""}]} +{"id": "000000111623", "images": ["AURORA/data/something/frames/165434/first.jpg", "AURORA/data/something/frames/165434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a puzzle cube with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111624", "images": ["AURORA/data/something/frames/133644/first.jpg", "AURORA/data/something/frames/133644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing box into christmas stocking"}, {"from": "gpt", "value": ""}]} +{"id": "000000111625", "images": ["AURORA/data/something/frames/198536/first.jpg", "AURORA/data/something/frames/198536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into can"}, {"from": "gpt", "value": ""}]} +{"id": "000000111626", "images": ["AURORA/data/something/frames/156853/first.jpg", "AURORA/data/something/frames/156853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking eyeglasses out of eyeglass case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111627", "images": ["AURORA/data/something/frames/97810/first.jpg", "AURORA/data/something/frames/97810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111628", "images": ["AURORA/data/something/frames/67822/first.jpg", "AURORA/data/something/frames/67822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming swiffer sweeper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111629", "images": ["AURORA/data/something/frames/204864/first.jpg", "AURORA/data/something/frames/204864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming person"}, {"from": "gpt", "value": ""}]} +{"id": "000000111630", "images": ["AURORA/data/something/frames/198712/first.jpg", "AURORA/data/something/frames/198712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass and highlighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111631", "images": ["AURORA/data/something/frames/35432/first.jpg", "AURORA/data/something/frames/35432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111632", "images": ["AURORA/data/something/frames/170820/first.jpg", "AURORA/data/something/frames/170820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending lamp so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111633", "images": ["AURORA/data/something/frames/129736/first.jpg", "AURORA/data/something/frames/129736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoulder straps"}, {"from": "gpt", "value": ""}]} +{"id": "000000111634", "images": ["AURORA/data/something/frames/10869/first.jpg", "AURORA/data/something/frames/10869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor closer to pick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111635", "images": ["AURORA/data/something/frames/7519/first.jpg", "AURORA/data/something/frames/7519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111636", "images": ["AURORA/data/something/frames/106070/first.jpg", "AURORA/data/something/frames/106070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling plug out of socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111637", "images": ["AURORA/data/something/frames/12560/first.jpg", "AURORA/data/something/frames/12560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000111638", "images": ["AURORA/data/something/frames/144885/first.jpg", "AURORA/data/something/frames/144885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000111639", "images": ["AURORA/data/something/frames/129678/first.jpg", "AURORA/data/something/frames/129678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel closer to towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111640", "images": ["AURORA/data/something/frames/110353/first.jpg", "AURORA/data/something/frames/110353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with highlighter on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111641", "images": ["AURORA/data/something/frames/50260/first.jpg", "AURORA/data/something/frames/50260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lipstick upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111642", "images": ["AURORA/data/something/frames/136214/first.jpg", "AURORA/data/something/frames/136214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle next to plantpot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111643", "images": ["AURORA/data/something/frames/62085/first.jpg", "AURORA/data/something/frames/62085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a matchbox closer to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000111644", "images": ["AURORA/data/something/frames/205364/first.jpg", "AURORA/data/something/frames/205364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111645", "images": ["AURORA/data/something/frames/123799/first.jpg", "AURORA/data/something/frames/123799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000111646", "images": ["AURORA/data/something/frames/81915/first.jpg", "AURORA/data/something/frames/81915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing knife from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111647", "images": ["AURORA/data/something/frames/14408/first.jpg", "AURORA/data/something/frames/14408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning small fresh mint upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111648", "images": ["AURORA/data/something/frames/199081/first.jpg", "AURORA/data/something/frames/199081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting polythene bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111649", "images": ["AURORA/data/something/frames/20708/first.jpg", "AURORA/data/something/frames/20708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden puppet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111650", "images": ["AURORA/data/something/frames/9450/first.jpg", "AURORA/data/something/frames/9450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pillow and another pillow so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111651", "images": ["AURORA/data/something/frames/19546/first.jpg", "AURORA/data/something/frames/19546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coin and another coin closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111652", "images": ["AURORA/data/something/frames/198667/first.jpg", "AURORA/data/something/frames/198667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling book out of plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111653", "images": ["AURORA/data/something/frames/115382/first.jpg", "AURORA/data/something/frames/115382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening sunglasses case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111654", "images": ["AURORA/data/something/frames/72653/first.jpg", "AURORA/data/something/frames/72653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wallet with tac case on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111655", "images": ["AURORA/data/something/frames/53504/first.jpg", "AURORA/data/something/frames/53504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bracelet so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111656", "images": ["AURORA/data/something/frames/209912/first.jpg", "AURORA/data/something/frames/209912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111657", "images": ["AURORA/data/something/frames/153754/first.jpg", "AURORA/data/something/frames/153754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 remotes"}, {"from": "gpt", "value": ""}]} +{"id": "000000111658", "images": ["AURORA/data/something/frames/15754/first.jpg", "AURORA/data/something/frames/15754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111659", "images": ["AURORA/data/something/frames/44380/first.jpg", "AURORA/data/something/frames/44380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111660", "images": ["AURORA/data/something/frames/58273/first.jpg", "AURORA/data/something/frames/58273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111661", "images": ["AURORA/data/something/frames/81065/first.jpg", "AURORA/data/something/frames/81065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a glue, revealing a container behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111662", "images": ["AURORA/data/something/frames/81154/first.jpg", "AURORA/data/something/frames/81154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111663", "images": ["AURORA/data/something/frames/112155/first.jpg", "AURORA/data/something/frames/112155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a tissu so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111664", "images": ["AURORA/data/something/frames/123010/first.jpg", "AURORA/data/something/frames/123010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar away from jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111665", "images": ["AURORA/data/something/frames/180475/first.jpg", "AURORA/data/something/frames/180475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000111666", "images": ["AURORA/data/something/frames/153451/first.jpg", "AURORA/data/something/frames/153451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking purse so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111667", "images": ["AURORA/data/something/frames/70642/first.jpg", "AURORA/data/something/frames/70642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking dvd case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111668", "images": ["AURORA/data/something/frames/215794/first.jpg", "AURORA/data/something/frames/215794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111669", "images": ["AURORA/data/something/frames/179427/first.jpg", "AURORA/data/something/frames/179427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pill"}, {"from": "gpt", "value": ""}]} +{"id": "000000111670", "images": ["AURORA/data/something/frames/70533/first.jpg", "AURORA/data/something/frames/70533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111671", "images": ["AURORA/data/something/frames/470/first.jpg", "AURORA/data/something/frames/470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a power converter but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111672", "images": ["AURORA/data/something/frames/114099/first.jpg", "AURORA/data/something/frames/114099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111673", "images": ["AURORA/data/something/frames/181572/first.jpg", "AURORA/data/something/frames/181572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone handset away from a ring with keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000111674", "images": ["AURORA/data/something/frames/32321/first.jpg", "AURORA/data/something/frames/32321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pebble with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111675", "images": ["AURORA/data/something/frames/212626/first.jpg", "AURORA/data/something/frames/212626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111676", "images": ["AURORA/data/something/frames/33924/first.jpg", "AURORA/data/something/frames/33924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111677", "images": ["AURORA/data/something/frames/15313/first.jpg", "AURORA/data/something/frames/15313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spice out of spices"}, {"from": "gpt", "value": ""}]} +{"id": "000000111678", "images": ["AURORA/data/something/frames/103095/first.jpg", "AURORA/data/something/frames/103095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from behind of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111679", "images": ["AURORA/data/something/frames/41598/first.jpg", "AURORA/data/something/frames/41598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111680", "images": ["AURORA/data/something/frames/168003/first.jpg", "AURORA/data/something/frames/168003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111681", "images": ["AURORA/data/something/frames/58849/first.jpg", "AURORA/data/something/frames/58849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111682", "images": ["AURORA/data/something/frames/112509/first.jpg", "AURORA/data/something/frames/112509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cereal box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111683", "images": ["AURORA/data/something/frames/103345/first.jpg", "AURORA/data/something/frames/103345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shampoo bottle into hole"}, {"from": "gpt", "value": ""}]} +{"id": "000000111684", "images": ["AURORA/data/something/frames/167306/first.jpg", "AURORA/data/something/frames/167306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip, jar and toy on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111685", "images": ["AURORA/data/something/frames/188576/first.jpg", "AURORA/data/something/frames/188576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning peanut butter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111686", "images": ["AURORA/data/something/frames/117272/first.jpg", "AURORA/data/something/frames/117272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a clip with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000111687", "images": ["AURORA/data/something/frames/30392/first.jpg", "AURORA/data/something/frames/30392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting mouse with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111688", "images": ["AURORA/data/something/frames/8007/first.jpg", "AURORA/data/something/frames/8007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111689", "images": ["AURORA/data/something/frames/123034/first.jpg", "AURORA/data/something/frames/123034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon onto box so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111690", "images": ["AURORA/data/something/frames/109310/first.jpg", "AURORA/data/something/frames/109310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting envelope with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111691", "images": ["AURORA/data/something/frames/53765/first.jpg", "AURORA/data/something/frames/53765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming cigarette lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111692", "images": ["AURORA/data/something/frames/4970/first.jpg", "AURORA/data/something/frames/4970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111693", "images": ["AURORA/data/something/frames/110988/first.jpg", "AURORA/data/something/frames/110988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a coffee carafe upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111694", "images": ["AURORA/data/something/frames/165287/first.jpg", "AURORA/data/something/frames/165287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a battery closer to a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111695", "images": ["AURORA/data/something/frames/89503/first.jpg", "AURORA/data/something/frames/89503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bobby pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111696", "images": ["AURORA/data/something/frames/53049/first.jpg", "AURORA/data/something/frames/53049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container lid from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111697", "images": ["AURORA/data/something/frames/87512/first.jpg", "AURORA/data/something/frames/87512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bottle so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111698", "images": ["AURORA/data/something/frames/63998/first.jpg", "AURORA/data/something/frames/63998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111699", "images": ["AURORA/data/something/frames/36460/first.jpg", "AURORA/data/something/frames/36460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the purse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111700", "images": ["AURORA/data/something/frames/205403/first.jpg", "AURORA/data/something/frames/205403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting milk into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111701", "images": ["AURORA/data/something/frames/4820/first.jpg", "AURORA/data/something/frames/4820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111702", "images": ["AURORA/data/something/frames/148362/first.jpg", "AURORA/data/something/frames/148362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: envelope being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111703", "images": ["AURORA/data/something/frames/43004/first.jpg", "AURORA/data/something/frames/43004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000111704", "images": ["AURORA/data/something/frames/152249/first.jpg", "AURORA/data/something/frames/152249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cigarette pack over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111705", "images": ["AURORA/data/something/frames/165274/first.jpg", "AURORA/data/something/frames/165274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111706", "images": ["AURORA/data/something/frames/37437/first.jpg", "AURORA/data/something/frames/37437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green chalk down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111707", "images": ["AURORA/data/something/frames/173133/first.jpg", "AURORA/data/something/frames/173133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111708", "images": ["AURORA/data/something/frames/14136/first.jpg", "AURORA/data/something/frames/14136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111709", "images": ["AURORA/data/something/frames/213173/first.jpg", "AURORA/data/something/frames/213173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000111710", "images": ["AURORA/data/something/frames/212080/first.jpg", "AURORA/data/something/frames/212080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and scissors closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111711", "images": ["AURORA/data/something/frames/78559/first.jpg", "AURORA/data/something/frames/78559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111712", "images": ["AURORA/data/something/frames/139370/first.jpg", "AURORA/data/something/frames/139370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111713", "images": ["AURORA/data/something/frames/58029/first.jpg", "AURORA/data/something/frames/58029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fruit into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111714", "images": ["AURORA/data/something/frames/192432/first.jpg", "AURORA/data/something/frames/192432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a paper ball into the trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000111715", "images": ["AURORA/data/something/frames/61839/first.jpg", "AURORA/data/something/frames/61839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 containers"}, {"from": "gpt", "value": ""}]} +{"id": "000000111716", "images": ["AURORA/data/something/frames/169271/first.jpg", "AURORA/data/something/frames/169271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the signal lever down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111717", "images": ["AURORA/data/something/frames/146232/first.jpg", "AURORA/data/something/frames/146232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111718", "images": ["AURORA/data/something/frames/79981/first.jpg", "AURORA/data/something/frames/79981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tapeline from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111719", "images": ["AURORA/data/something/frames/48010/first.jpg", "AURORA/data/something/frames/48010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency from car seat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111720", "images": ["AURORA/data/something/frames/29554/first.jpg", "AURORA/data/something/frames/29554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111721", "images": ["AURORA/data/something/frames/196623/first.jpg", "AURORA/data/something/frames/196623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black brush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111722", "images": ["AURORA/data/something/frames/80967/first.jpg", "AURORA/data/something/frames/80967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111723", "images": ["AURORA/data/something/frames/45094/first.jpg", "AURORA/data/something/frames/45094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking paint tube so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111724", "images": ["AURORA/data/something/frames/13210/first.jpg", "AURORA/data/something/frames/13210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 hair bands onto cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111725", "images": ["AURORA/data/something/frames/55428/first.jpg", "AURORA/data/something/frames/55428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111726", "images": ["AURORA/data/something/frames/183730/first.jpg", "AURORA/data/something/frames/183730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing granola bar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111727", "images": ["AURORA/data/something/frames/59771/first.jpg", "AURORA/data/something/frames/59771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pencil box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111728", "images": ["AURORA/data/something/frames/109189/first.jpg", "AURORA/data/something/frames/109189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming steam cake"}, {"from": "gpt", "value": ""}]} +{"id": "000000111729", "images": ["AURORA/data/something/frames/50997/first.jpg", "AURORA/data/something/frames/50997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of note book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111730", "images": ["AURORA/data/something/frames/130322/first.jpg", "AURORA/data/something/frames/130322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111731", "images": ["AURORA/data/something/frames/128520/first.jpg", "AURORA/data/something/frames/128520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into the socket to the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000111732", "images": ["AURORA/data/something/frames/129725/first.jpg", "AURORA/data/something/frames/129725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with banana on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111733", "images": ["AURORA/data/something/frames/54869/first.jpg", "AURORA/data/something/frames/54869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111734", "images": ["AURORA/data/something/frames/133121/first.jpg", "AURORA/data/something/frames/133121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111735", "images": ["AURORA/data/something/frames/15132/first.jpg", "AURORA/data/something/frames/15132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111736", "images": ["AURORA/data/something/frames/101107/first.jpg", "AURORA/data/something/frames/101107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spray bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111737", "images": ["AURORA/data/something/frames/38220/first.jpg", "AURORA/data/something/frames/38220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111738", "images": ["AURORA/data/something/frames/199410/first.jpg", "AURORA/data/something/frames/199410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing compass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111739", "images": ["AURORA/data/something/frames/54980/first.jpg", "AURORA/data/something/frames/54980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a phone in front of a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111740", "images": ["AURORA/data/something/frames/172718/first.jpg", "AURORA/data/something/frames/172718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone handset closer to a ring with keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000111741", "images": ["AURORA/data/something/frames/127755/first.jpg", "AURORA/data/something/frames/127755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and water bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111742", "images": ["AURORA/data/something/frames/16566/first.jpg", "AURORA/data/something/frames/16566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass behind a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111743", "images": ["AURORA/data/something/frames/50577/first.jpg", "AURORA/data/something/frames/50577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching sandal for men with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111744", "images": ["AURORA/data/something/frames/112148/first.jpg", "AURORA/data/something/frames/112148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a plastic bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111745", "images": ["AURORA/data/something/frames/204838/first.jpg", "AURORA/data/something/frames/204838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil closer to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000111746", "images": ["AURORA/data/something/frames/137612/first.jpg", "AURORA/data/something/frames/137612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111747", "images": ["AURORA/data/something/frames/6735/first.jpg", "AURORA/data/something/frames/6735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing face wash so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111748", "images": ["AURORA/data/something/frames/208139/first.jpg", "AURORA/data/something/frames/208139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy tiger and toy elephant so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111749", "images": ["AURORA/data/something/frames/89763/first.jpg", "AURORA/data/something/frames/89763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering earphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000111750", "images": ["AURORA/data/something/frames/134532/first.jpg", "AURORA/data/something/frames/134532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000111751", "images": ["AURORA/data/something/frames/24301/first.jpg", "AURORA/data/something/frames/24301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling stick out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111752", "images": ["AURORA/data/something/frames/173026/first.jpg", "AURORA/data/something/frames/173026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with handphone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111753", "images": ["AURORA/data/something/frames/117183/first.jpg", "AURORA/data/something/frames/117183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111754", "images": ["AURORA/data/something/frames/177010/first.jpg", "AURORA/data/something/frames/177010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissue into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111755", "images": ["AURORA/data/something/frames/100491/first.jpg", "AURORA/data/something/frames/100491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding tote bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111756", "images": ["AURORA/data/something/frames/189337/first.jpg", "AURORA/data/something/frames/189337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from behind of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111757", "images": ["AURORA/data/something/frames/4024/first.jpg", "AURORA/data/something/frames/4024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111758", "images": ["AURORA/data/something/frames/117556/first.jpg", "AURORA/data/something/frames/117556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a cup of mineral water on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111759", "images": ["AURORA/data/something/frames/74839/first.jpg", "AURORA/data/something/frames/74839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111760", "images": ["AURORA/data/something/frames/84992/first.jpg", "AURORA/data/something/frames/84992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a kleenex box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111761", "images": ["AURORA/data/something/frames/180656/first.jpg", "AURORA/data/something/frames/180656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111762", "images": ["AURORA/data/something/frames/184150/first.jpg", "AURORA/data/something/frames/184150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111763", "images": ["AURORA/data/something/frames/157974/first.jpg", "AURORA/data/something/frames/157974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching nail cutter with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111764", "images": ["AURORA/data/something/frames/208627/first.jpg", "AURORA/data/something/frames/208627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111765", "images": ["AURORA/data/something/frames/14747/first.jpg", "AURORA/data/something/frames/14747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000111766", "images": ["AURORA/data/something/frames/99143/first.jpg", "AURORA/data/something/frames/99143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clementines up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111767", "images": ["AURORA/data/something/frames/58874/first.jpg", "AURORA/data/something/frames/58874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying candy mint in blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111768", "images": ["AURORA/data/something/frames/136441/first.jpg", "AURORA/data/something/frames/136441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111769", "images": ["AURORA/data/something/frames/207945/first.jpg", "AURORA/data/something/frames/207945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111770", "images": ["AURORA/data/something/frames/180211/first.jpg", "AURORA/data/something/frames/180211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving small end of phone cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000111771", "images": ["AURORA/data/something/frames/104418/first.jpg", "AURORA/data/something/frames/104418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and jug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111772", "images": ["AURORA/data/something/frames/23746/first.jpg", "AURORA/data/something/frames/23746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen behind a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111773", "images": ["AURORA/data/something/frames/156201/first.jpg", "AURORA/data/something/frames/156201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, candle and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111774", "images": ["AURORA/data/something/frames/113404/first.jpg", "AURORA/data/something/frames/113404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111775", "images": ["AURORA/data/something/frames/156245/first.jpg", "AURORA/data/something/frames/156245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting usb-stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111776", "images": ["AURORA/data/something/frames/84431/first.jpg", "AURORA/data/something/frames/84431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 nail polish"}, {"from": "gpt", "value": ""}]} +{"id": "000000111777", "images": ["AURORA/data/something/frames/105351/first.jpg", "AURORA/data/something/frames/105351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000111778", "images": ["AURORA/data/something/frames/72270/first.jpg", "AURORA/data/something/frames/72270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111779", "images": ["AURORA/data/something/frames/116592/first.jpg", "AURORA/data/something/frames/116592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling binoculars from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111780", "images": ["AURORA/data/something/frames/165248/first.jpg", "AURORA/data/something/frames/165248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting keys up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111781", "images": ["AURORA/data/something/frames/185918/first.jpg", "AURORA/data/something/frames/185918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111782", "images": ["AURORA/data/something/frames/126892/first.jpg", "AURORA/data/something/frames/126892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111783", "images": ["AURORA/data/something/frames/166637/first.jpg", "AURORA/data/something/frames/166637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening sandwichera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111784", "images": ["AURORA/data/something/frames/154598/first.jpg", "AURORA/data/something/frames/154598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111785", "images": ["AURORA/data/something/frames/200978/first.jpg", "AURORA/data/something/frames/200978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a bottle of water"}, {"from": "gpt", "value": ""}]} +{"id": "000000111786", "images": ["AURORA/data/something/frames/146789/first.jpg", "AURORA/data/something/frames/146789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111787", "images": ["AURORA/data/something/frames/207528/first.jpg", "AURORA/data/something/frames/207528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting envelope with coins on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111788", "images": ["AURORA/data/something/frames/170966/first.jpg", "AURORA/data/something/frames/170966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping red hairband next to tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111789", "images": ["AURORA/data/something/frames/43724/first.jpg", "AURORA/data/something/frames/43724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000111790", "images": ["AURORA/data/something/frames/157613/first.jpg", "AURORA/data/something/frames/157613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into pluge but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111791", "images": ["AURORA/data/something/frames/166636/first.jpg", "AURORA/data/something/frames/166636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111792", "images": ["AURORA/data/something/frames/72169/first.jpg", "AURORA/data/something/frames/72169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen drive closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111793", "images": ["AURORA/data/something/frames/37606/first.jpg", "AURORA/data/something/frames/37606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111794", "images": ["AURORA/data/something/frames/19390/first.jpg", "AURORA/data/something/frames/19390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from notebook with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111795", "images": ["AURORA/data/something/frames/87931/first.jpg", "AURORA/data/something/frames/87931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111796", "images": ["AURORA/data/something/frames/200999/first.jpg", "AURORA/data/something/frames/200999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111797", "images": ["AURORA/data/something/frames/27476/first.jpg", "AURORA/data/something/frames/27476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111798", "images": ["AURORA/data/something/frames/25838/first.jpg", "AURORA/data/something/frames/25838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of setsquare"}, {"from": "gpt", "value": ""}]} +{"id": "000000111799", "images": ["AURORA/data/something/frames/2519/first.jpg", "AURORA/data/something/frames/2519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting candy with candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000111800", "images": ["AURORA/data/something/frames/69213/first.jpg", "AURORA/data/something/frames/69213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxs without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000111801", "images": ["AURORA/data/something/frames/95516/first.jpg", "AURORA/data/something/frames/95516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111802", "images": ["AURORA/data/something/frames/85733/first.jpg", "AURORA/data/something/frames/85733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into washbasin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111803", "images": ["AURORA/data/something/frames/92139/first.jpg", "AURORA/data/something/frames/92139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with ball over, so ball falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111804", "images": ["AURORA/data/something/frames/9344/first.jpg", "AURORA/data/something/frames/9344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering duster with scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000111805", "images": ["AURORA/data/something/frames/150669/first.jpg", "AURORA/data/something/frames/150669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a glass from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111806", "images": ["AURORA/data/something/frames/66584/first.jpg", "AURORA/data/something/frames/66584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111807", "images": ["AURORA/data/something/frames/60109/first.jpg", "AURORA/data/something/frames/60109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a straw into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111808", "images": ["AURORA/data/something/frames/173288/first.jpg", "AURORA/data/something/frames/173288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand cream tube on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111809", "images": ["AURORA/data/something/frames/77175/first.jpg", "AURORA/data/something/frames/77175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000111810", "images": ["AURORA/data/something/frames/91196/first.jpg", "AURORA/data/something/frames/91196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111811", "images": ["AURORA/data/something/frames/67965/first.jpg", "AURORA/data/something/frames/67965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a glue stick on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111812", "images": ["AURORA/data/something/frames/162086/first.jpg", "AURORA/data/something/frames/162086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000111813", "images": ["AURORA/data/something/frames/132146/first.jpg", "AURORA/data/something/frames/132146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000111814", "images": ["AURORA/data/something/frames/209739/first.jpg", "AURORA/data/something/frames/209739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111815", "images": ["AURORA/data/something/frames/122248/first.jpg", "AURORA/data/something/frames/122248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug behind a pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000111816", "images": ["AURORA/data/something/frames/87361/first.jpg", "AURORA/data/something/frames/87361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of headphones so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111817", "images": ["AURORA/data/something/frames/52945/first.jpg", "AURORA/data/something/frames/52945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000111818", "images": ["AURORA/data/something/frames/39702/first.jpg", "AURORA/data/something/frames/39702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111819", "images": ["AURORA/data/something/frames/115030/first.jpg", "AURORA/data/something/frames/115030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111820", "images": ["AURORA/data/something/frames/215414/first.jpg", "AURORA/data/something/frames/215414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111821", "images": ["AURORA/data/something/frames/55141/first.jpg", "AURORA/data/something/frames/55141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eraser into blue glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000111822", "images": ["AURORA/data/something/frames/203725/first.jpg", "AURORA/data/something/frames/203725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with phone on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111823", "images": ["AURORA/data/something/frames/89670/first.jpg", "AURORA/data/something/frames/89670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111824", "images": ["AURORA/data/something/frames/84335/first.jpg", "AURORA/data/something/frames/84335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111825", "images": ["AURORA/data/something/frames/194203/first.jpg", "AURORA/data/something/frames/194203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting drum with lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000111826", "images": ["AURORA/data/something/frames/146631/first.jpg", "AURORA/data/something/frames/146631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111827", "images": ["AURORA/data/something/frames/95729/first.jpg", "AURORA/data/something/frames/95729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111828", "images": ["AURORA/data/something/frames/18697/first.jpg", "AURORA/data/something/frames/18697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000111829", "images": ["AURORA/data/something/frames/124099/first.jpg", "AURORA/data/something/frames/124099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container with screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000111830", "images": ["AURORA/data/something/frames/76952/first.jpg", "AURORA/data/something/frames/76952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing card folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000111831", "images": ["AURORA/data/something/frames/145229/first.jpg", "AURORA/data/something/frames/145229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111832", "images": ["AURORA/data/something/frames/50232/first.jpg", "AURORA/data/something/frames/50232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111833", "images": ["AURORA/data/something/frames/41463/first.jpg", "AURORA/data/something/frames/41463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying container on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000111834", "images": ["AURORA/data/something/frames/68822/first.jpg", "AURORA/data/something/frames/68822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000111835", "images": ["AURORA/data/something/frames/31678/first.jpg", "AURORA/data/something/frames/31678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bowl over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111836", "images": ["AURORA/data/something/frames/65041/first.jpg", "AURORA/data/something/frames/65041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111837", "images": ["AURORA/data/something/frames/201177/first.jpg", "AURORA/data/something/frames/201177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cookies into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111838", "images": ["AURORA/data/something/frames/162464/first.jpg", "AURORA/data/something/frames/162464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting speaker with gum bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111839", "images": ["AURORA/data/something/frames/84572/first.jpg", "AURORA/data/something/frames/84572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming telephone junction box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111840", "images": ["AURORA/data/something/frames/104873/first.jpg", "AURORA/data/something/frames/104873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing index card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111841", "images": ["AURORA/data/something/frames/35817/first.jpg", "AURORA/data/something/frames/35817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping plastic onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000111842", "images": ["AURORA/data/something/frames/149098/first.jpg", "AURORA/data/something/frames/149098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111843", "images": ["AURORA/data/something/frames/195085/first.jpg", "AURORA/data/something/frames/195085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shorts into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111844", "images": ["AURORA/data/something/frames/170900/first.jpg", "AURORA/data/something/frames/170900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111845", "images": ["AURORA/data/something/frames/3899/first.jpg", "AURORA/data/something/frames/3899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111846", "images": ["AURORA/data/something/frames/112588/first.jpg", "AURORA/data/something/frames/112588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white pebble down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111847", "images": ["AURORA/data/something/frames/150245/first.jpg", "AURORA/data/something/frames/150245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone in front of pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000111848", "images": ["AURORA/data/something/frames/119819/first.jpg", "AURORA/data/something/frames/119819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking timepiece out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111849", "images": ["AURORA/data/something/frames/146762/first.jpg", "AURORA/data/something/frames/146762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a beer can, revealing a teaspoon behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111850", "images": ["AURORA/data/something/frames/46281/first.jpg", "AURORA/data/something/frames/46281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111851", "images": ["AURORA/data/something/frames/129298/first.jpg", "AURORA/data/something/frames/129298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111852", "images": ["AURORA/data/something/frames/44523/first.jpg", "AURORA/data/something/frames/44523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tin can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111853", "images": ["AURORA/data/something/frames/13998/first.jpg", "AURORA/data/something/frames/13998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy car with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111854", "images": ["AURORA/data/something/frames/31664/first.jpg", "AURORA/data/something/frames/31664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hand up"}, {"from": "gpt", "value": ""}]} +{"id": "000000111855", "images": ["AURORA/data/something/frames/142521/first.jpg", "AURORA/data/something/frames/142521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111856", "images": ["AURORA/data/something/frames/31098/first.jpg", "AURORA/data/something/frames/31098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair band from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111857", "images": ["AURORA/data/something/frames/93868/first.jpg", "AURORA/data/something/frames/93868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling dvd case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111858", "images": ["AURORA/data/something/frames/83323/first.jpg", "AURORA/data/something/frames/83323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing calculator, revealing eraser behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000111859", "images": ["AURORA/data/something/frames/79785/first.jpg", "AURORA/data/something/frames/79785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000111860", "images": ["AURORA/data/something/frames/145090/first.jpg", "AURORA/data/something/frames/145090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting stencil with wooden stick on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111861", "images": ["AURORA/data/something/frames/69587/first.jpg", "AURORA/data/something/frames/69587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111862", "images": ["AURORA/data/something/frames/110273/first.jpg", "AURORA/data/something/frames/110273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with grape over, so grape falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111863", "images": ["AURORA/data/something/frames/17519/first.jpg", "AURORA/data/something/frames/17519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111864", "images": ["AURORA/data/something/frames/136269/first.jpg", "AURORA/data/something/frames/136269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red pot holder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111865", "images": ["AURORA/data/something/frames/171333/first.jpg", "AURORA/data/something/frames/171333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil case underneath a sweater"}, {"from": "gpt", "value": ""}]} +{"id": "000000111866", "images": ["AURORA/data/something/frames/67859/first.jpg", "AURORA/data/something/frames/67859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something into something until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000111867", "images": ["AURORA/data/something/frames/66909/first.jpg", "AURORA/data/something/frames/66909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lip balm lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000111868", "images": ["AURORA/data/something/frames/180303/first.jpg", "AURORA/data/something/frames/180303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen stand from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111869", "images": ["AURORA/data/something/frames/162039/first.jpg", "AURORA/data/something/frames/162039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111870", "images": ["AURORA/data/something/frames/779/first.jpg", "AURORA/data/something/frames/779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111871", "images": ["AURORA/data/something/frames/25303/first.jpg", "AURORA/data/something/frames/25303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111872", "images": ["AURORA/data/something/frames/9821/first.jpg", "AURORA/data/something/frames/9821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet closer to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111873", "images": ["AURORA/data/something/frames/143249/first.jpg", "AURORA/data/something/frames/143249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111874", "images": ["AURORA/data/something/frames/151722/first.jpg", "AURORA/data/something/frames/151722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000111875", "images": ["AURORA/data/something/frames/153194/first.jpg", "AURORA/data/something/frames/153194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: car colliding with train and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111876", "images": ["AURORA/data/something/frames/70542/first.jpg", "AURORA/data/something/frames/70542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a car out of parking lot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111877", "images": ["AURORA/data/something/frames/132740/first.jpg", "AURORA/data/something/frames/132740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering flashlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000111878", "images": ["AURORA/data/something/frames/57240/first.jpg", "AURORA/data/something/frames/57240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling diaper wipes out of the bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111879", "images": ["AURORA/data/something/frames/139833/first.jpg", "AURORA/data/something/frames/139833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111880", "images": ["AURORA/data/something/frames/76727/first.jpg", "AURORA/data/something/frames/76727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111881", "images": ["AURORA/data/something/frames/77019/first.jpg", "AURORA/data/something/frames/77019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pillow with clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000111882", "images": ["AURORA/data/something/frames/114961/first.jpg", "AURORA/data/something/frames/114961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste tube and toothpaste tube so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111883", "images": ["AURORA/data/something/frames/84300/first.jpg", "AURORA/data/something/frames/84300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter from behind of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111884", "images": ["AURORA/data/something/frames/87969/first.jpg", "AURORA/data/something/frames/87969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into watering can, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111885", "images": ["AURORA/data/something/frames/105359/first.jpg", "AURORA/data/something/frames/105359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111886", "images": ["AURORA/data/something/frames/6848/first.jpg", "AURORA/data/something/frames/6848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000111887", "images": ["AURORA/data/something/frames/175887/first.jpg", "AURORA/data/something/frames/175887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming wastebin"}, {"from": "gpt", "value": ""}]} +{"id": "000000111888", "images": ["AURORA/data/something/frames/151807/first.jpg", "AURORA/data/something/frames/151807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spects into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111889", "images": ["AURORA/data/something/frames/34339/first.jpg", "AURORA/data/something/frames/34339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting table with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111890", "images": ["AURORA/data/something/frames/79890/first.jpg", "AURORA/data/something/frames/79890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111891", "images": ["AURORA/data/something/frames/200068/first.jpg", "AURORA/data/something/frames/200068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111892", "images": ["AURORA/data/something/frames/174784/first.jpg", "AURORA/data/something/frames/174784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping toothpaste off of a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000111893", "images": ["AURORA/data/something/frames/220342/first.jpg", "AURORA/data/something/frames/220342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen out of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111894", "images": ["AURORA/data/something/frames/196818/first.jpg", "AURORA/data/something/frames/196818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging black cord into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111895", "images": ["AURORA/data/something/frames/129545/first.jpg", "AURORA/data/something/frames/129545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow hairband down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111896", "images": ["AURORA/data/something/frames/220382/first.jpg", "AURORA/data/something/frames/220382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking calculator so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111897", "images": ["AURORA/data/something/frames/149823/first.jpg", "AURORA/data/something/frames/149823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb behind wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111898", "images": ["AURORA/data/something/frames/143540/first.jpg", "AURORA/data/something/frames/143540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111899", "images": ["AURORA/data/something/frames/73287/first.jpg", "AURORA/data/something/frames/73287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of keurig"}, {"from": "gpt", "value": ""}]} +{"id": "000000111900", "images": ["AURORA/data/something/frames/57287/first.jpg", "AURORA/data/something/frames/57287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111901", "images": ["AURORA/data/something/frames/128019/first.jpg", "AURORA/data/something/frames/128019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a adapter but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111902", "images": ["AURORA/data/something/frames/96844/first.jpg", "AURORA/data/something/frames/96844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a ceramic frog"}, {"from": "gpt", "value": ""}]} +{"id": "000000111903", "images": ["AURORA/data/something/frames/106398/first.jpg", "AURORA/data/something/frames/106398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing chapati just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111904", "images": ["AURORA/data/something/frames/104108/first.jpg", "AURORA/data/something/frames/104108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000111905", "images": ["AURORA/data/something/frames/46578/first.jpg", "AURORA/data/something/frames/46578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111906", "images": ["AURORA/data/something/frames/98201/first.jpg", "AURORA/data/something/frames/98201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting muffin and bulb syringe on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111907", "images": ["AURORA/data/something/frames/2872/first.jpg", "AURORA/data/something/frames/2872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into smarthphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000111908", "images": ["AURORA/data/something/frames/57770/first.jpg", "AURORA/data/something/frames/57770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of mason jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000111909", "images": ["AURORA/data/something/frames/132932/first.jpg", "AURORA/data/something/frames/132932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111910", "images": ["AURORA/data/something/frames/128124/first.jpg", "AURORA/data/something/frames/128124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111911", "images": ["AURORA/data/something/frames/188678/first.jpg", "AURORA/data/something/frames/188678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111912", "images": ["AURORA/data/something/frames/205218/first.jpg", "AURORA/data/something/frames/205218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a trophy next to a speaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000111913", "images": ["AURORA/data/something/frames/83441/first.jpg", "AURORA/data/something/frames/83441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stick upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000111914", "images": ["AURORA/data/something/frames/32984/first.jpg", "AURORA/data/something/frames/32984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop onto a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000111915", "images": ["AURORA/data/something/frames/153707/first.jpg", "AURORA/data/something/frames/153707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a can of mints with an aerosol can on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111916", "images": ["AURORA/data/something/frames/39175/first.jpg", "AURORA/data/something/frames/39175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tissue out of tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111917", "images": ["AURORA/data/something/frames/28395/first.jpg", "AURORA/data/something/frames/28395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing vanity bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111918", "images": ["AURORA/data/something/frames/202780/first.jpg", "AURORA/data/something/frames/202780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ashtray down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111919", "images": ["AURORA/data/something/frames/193456/first.jpg", "AURORA/data/something/frames/193456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading salt onto raw chicken meat"}, {"from": "gpt", "value": ""}]} +{"id": "000000111920", "images": ["AURORA/data/something/frames/19087/first.jpg", "AURORA/data/something/frames/19087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting gum"}, {"from": "gpt", "value": ""}]} +{"id": "000000111921", "images": ["AURORA/data/something/frames/194319/first.jpg", "AURORA/data/something/frames/194319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111922", "images": ["AURORA/data/something/frames/87076/first.jpg", "AURORA/data/something/frames/87076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking poking drawer so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000111923", "images": ["AURORA/data/something/frames/19474/first.jpg", "AURORA/data/something/frames/19474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a necklace out of a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111924", "images": ["AURORA/data/something/frames/201781/first.jpg", "AURORA/data/something/frames/201781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111925", "images": ["AURORA/data/something/frames/95371/first.jpg", "AURORA/data/something/frames/95371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with remote on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111926", "images": ["AURORA/data/something/frames/30947/first.jpg", "AURORA/data/something/frames/30947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111927", "images": ["AURORA/data/something/frames/65947/first.jpg", "AURORA/data/something/frames/65947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a toy brick to a toy brick"}, {"from": "gpt", "value": ""}]} +{"id": "000000111928", "images": ["AURORA/data/something/frames/29234/first.jpg", "AURORA/data/something/frames/29234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering doll with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111929", "images": ["AURORA/data/something/frames/127410/first.jpg", "AURORA/data/something/frames/127410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111930", "images": ["AURORA/data/something/frames/56251/first.jpg", "AURORA/data/something/frames/56251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle closer to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111931", "images": ["AURORA/data/something/frames/84827/first.jpg", "AURORA/data/something/frames/84827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000111932", "images": ["AURORA/data/something/frames/171376/first.jpg", "AURORA/data/something/frames/171376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing advertising brochure just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111933", "images": ["AURORA/data/something/frames/79193/first.jpg", "AURORA/data/something/frames/79193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111934", "images": ["AURORA/data/something/frames/188377/first.jpg", "AURORA/data/something/frames/188377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto buttered toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000111935", "images": ["AURORA/data/something/frames/55149/first.jpg", "AURORA/data/something/frames/55149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubber into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111936", "images": ["AURORA/data/something/frames/31509/first.jpg", "AURORA/data/something/frames/31509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000111937", "images": ["AURORA/data/something/frames/38951/first.jpg", "AURORA/data/something/frames/38951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000111938", "images": ["AURORA/data/something/frames/155301/first.jpg", "AURORA/data/something/frames/155301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111939", "images": ["AURORA/data/something/frames/95328/first.jpg", "AURORA/data/something/frames/95328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle and pocket knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111940", "images": ["AURORA/data/something/frames/89434/first.jpg", "AURORA/data/something/frames/89434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a phone so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000111941", "images": ["AURORA/data/something/frames/128502/first.jpg", "AURORA/data/something/frames/128502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000111942", "images": ["AURORA/data/something/frames/118229/first.jpg", "AURORA/data/something/frames/118229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 red spoons onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000111943", "images": ["AURORA/data/something/frames/85939/first.jpg", "AURORA/data/something/frames/85939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy onto spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111944", "images": ["AURORA/data/something/frames/33170/first.jpg", "AURORA/data/something/frames/33170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a chest"}, {"from": "gpt", "value": ""}]} +{"id": "000000111945", "images": ["AURORA/data/something/frames/134849/first.jpg", "AURORA/data/something/frames/134849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111946", "images": ["AURORA/data/something/frames/80555/first.jpg", "AURORA/data/something/frames/80555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving matchbox and cellphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111947", "images": ["AURORA/data/something/frames/7414/first.jpg", "AURORA/data/something/frames/7414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a pacifier up with my hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111948", "images": ["AURORA/data/something/frames/100117/first.jpg", "AURORA/data/something/frames/100117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111949", "images": ["AURORA/data/something/frames/17320/first.jpg", "AURORA/data/something/frames/17320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111950", "images": ["AURORA/data/something/frames/83295/first.jpg", "AURORA/data/something/frames/83295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass away from bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000111951", "images": ["AURORA/data/something/frames/43503/first.jpg", "AURORA/data/something/frames/43503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug closer to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111952", "images": ["AURORA/data/something/frames/192879/first.jpg", "AURORA/data/something/frames/192879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111953", "images": ["AURORA/data/something/frames/211134/first.jpg", "AURORA/data/something/frames/211134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a label so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111954", "images": ["AURORA/data/something/frames/185728/first.jpg", "AURORA/data/something/frames/185728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 spools of thread onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111955", "images": ["AURORA/data/something/frames/35487/first.jpg", "AURORA/data/something/frames/35487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111956", "images": ["AURORA/data/something/frames/29715/first.jpg", "AURORA/data/something/frames/29715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a stuffed bird over"}, {"from": "gpt", "value": ""}]} +{"id": "000000111957", "images": ["AURORA/data/something/frames/18271/first.jpg", "AURORA/data/something/frames/18271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000111958", "images": ["AURORA/data/something/frames/220583/first.jpg", "AURORA/data/something/frames/220583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111959", "images": ["AURORA/data/something/frames/35716/first.jpg", "AURORA/data/something/frames/35716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending an envelope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000111960", "images": ["AURORA/data/something/frames/84570/first.jpg", "AURORA/data/something/frames/84570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111961", "images": ["AURORA/data/something/frames/216857/first.jpg", "AURORA/data/something/frames/216857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111962", "images": ["AURORA/data/something/frames/205243/first.jpg", "AURORA/data/something/frames/205243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting card"}, {"from": "gpt", "value": ""}]} +{"id": "000000111963", "images": ["AURORA/data/something/frames/14384/first.jpg", "AURORA/data/something/frames/14384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping candle with bubblegum over, so bubblegum falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000111964", "images": ["AURORA/data/something/frames/127956/first.jpg", "AURORA/data/something/frames/127956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cassette tape next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000111965", "images": ["AURORA/data/something/frames/35074/first.jpg", "AURORA/data/something/frames/35074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming world globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000111966", "images": ["AURORA/data/something/frames/199935/first.jpg", "AURORA/data/something/frames/199935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111967", "images": ["AURORA/data/something/frames/186888/first.jpg", "AURORA/data/something/frames/186888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111968", "images": ["AURORA/data/something/frames/172333/first.jpg", "AURORA/data/something/frames/172333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111969", "images": ["AURORA/data/something/frames/22118/first.jpg", "AURORA/data/something/frames/22118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a cloth into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111970", "images": ["AURORA/data/something/frames/4048/first.jpg", "AURORA/data/something/frames/4048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toy cars onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000111971", "images": ["AURORA/data/something/frames/183231/first.jpg", "AURORA/data/something/frames/183231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000111972", "images": ["AURORA/data/something/frames/78911/first.jpg", "AURORA/data/something/frames/78911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into electric socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000111973", "images": ["AURORA/data/something/frames/203254/first.jpg", "AURORA/data/something/frames/203254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000111974", "images": ["AURORA/data/something/frames/217276/first.jpg", "AURORA/data/something/frames/217276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: marble colliding with marble and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000111975", "images": ["AURORA/data/something/frames/143703/first.jpg", "AURORA/data/something/frames/143703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a note"}, {"from": "gpt", "value": ""}]} +{"id": "000000111976", "images": ["AURORA/data/something/frames/208629/first.jpg", "AURORA/data/something/frames/208629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000111977", "images": ["AURORA/data/something/frames/122032/first.jpg", "AURORA/data/something/frames/122032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000111978", "images": ["AURORA/data/something/frames/194840/first.jpg", "AURORA/data/something/frames/194840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering foldable knife with punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000111979", "images": ["AURORA/data/something/frames/567/first.jpg", "AURORA/data/something/frames/567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000111980", "images": ["AURORA/data/something/frames/21688/first.jpg", "AURORA/data/something/frames/21688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000111981", "images": ["AURORA/data/something/frames/166776/first.jpg", "AURORA/data/something/frames/166776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000111982", "images": ["AURORA/data/something/frames/119800/first.jpg", "AURORA/data/something/frames/119800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering ballpen with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000111983", "images": ["AURORA/data/something/frames/186406/first.jpg", "AURORA/data/something/frames/186406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a container with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000111984", "images": ["AURORA/data/something/frames/182911/first.jpg", "AURORA/data/something/frames/182911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering decoration box"}, {"from": "gpt", "value": ""}]} +{"id": "000000111985", "images": ["AURORA/data/something/frames/49824/first.jpg", "AURORA/data/something/frames/49824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000111986", "images": ["AURORA/data/something/frames/4946/first.jpg", "AURORA/data/something/frames/4946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissues on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000111987", "images": ["AURORA/data/something/frames/201373/first.jpg", "AURORA/data/something/frames/201373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing yellow clay container"}, {"from": "gpt", "value": ""}]} +{"id": "000000111988", "images": ["AURORA/data/something/frames/175473/first.jpg", "AURORA/data/something/frames/175473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a watch on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000111989", "images": ["AURORA/data/something/frames/58820/first.jpg", "AURORA/data/something/frames/58820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag into the drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000111990", "images": ["AURORA/data/something/frames/156977/first.jpg", "AURORA/data/something/frames/156977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) title of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000111991", "images": ["AURORA/data/something/frames/93294/first.jpg", "AURORA/data/something/frames/93294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000111992", "images": ["AURORA/data/something/frames/136767/first.jpg", "AURORA/data/something/frames/136767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving aroma diffuser and trophie closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000111993", "images": ["AURORA/data/something/frames/142225/first.jpg", "AURORA/data/something/frames/142225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000111994", "images": ["AURORA/data/something/frames/82359/first.jpg", "AURORA/data/something/frames/82359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000111995", "images": ["AURORA/data/something/frames/196119/first.jpg", "AURORA/data/something/frames/196119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000111996", "images": ["AURORA/data/something/frames/56653/first.jpg", "AURORA/data/something/frames/56653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen closer to red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000111997", "images": ["AURORA/data/something/frames/169837/first.jpg", "AURORA/data/something/frames/169837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding wrag"}, {"from": "gpt", "value": ""}]} +{"id": "000000111998", "images": ["AURORA/data/something/frames/124242/first.jpg", "AURORA/data/something/frames/124242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000111999", "images": ["AURORA/data/something/frames/191109/first.jpg", "AURORA/data/something/frames/191109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking plate up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112000", "images": ["AURORA/data/something/frames/5950/first.jpg", "AURORA/data/something/frames/5950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112001", "images": ["AURORA/data/something/frames/22370/first.jpg", "AURORA/data/something/frames/22370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ruler onto mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112002", "images": ["AURORA/data/something/frames/117370/first.jpg", "AURORA/data/something/frames/117370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glass bottle on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112003", "images": ["AURORA/data/something/frames/57930/first.jpg", "AURORA/data/something/frames/57930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112004", "images": ["AURORA/data/something/frames/182133/first.jpg", "AURORA/data/something/frames/182133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding reciept"}, {"from": "gpt", "value": ""}]} +{"id": "000000112005", "images": ["AURORA/data/something/frames/129977/first.jpg", "AURORA/data/something/frames/129977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112006", "images": ["AURORA/data/something/frames/164624/first.jpg", "AURORA/data/something/frames/164624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112007", "images": ["AURORA/data/something/frames/65413/first.jpg", "AURORA/data/something/frames/65413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plushie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112008", "images": ["AURORA/data/something/frames/124947/first.jpg", "AURORA/data/something/frames/124947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a computer mouse with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112009", "images": ["AURORA/data/something/frames/80884/first.jpg", "AURORA/data/something/frames/80884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112010", "images": ["AURORA/data/something/frames/133449/first.jpg", "AURORA/data/something/frames/133449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pillow upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112011", "images": ["AURORA/data/something/frames/39635/first.jpg", "AURORA/data/something/frames/39635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping soda pop can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112012", "images": ["AURORA/data/something/frames/115541/first.jpg", "AURORA/data/something/frames/115541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112013", "images": ["AURORA/data/something/frames/92691/first.jpg", "AURORA/data/something/frames/92691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112014", "images": ["AURORA/data/something/frames/22562/first.jpg", "AURORA/data/something/frames/22562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ceramic ball and mug so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112015", "images": ["AURORA/data/something/frames/200357/first.jpg", "AURORA/data/something/frames/200357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair clip next to green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112016", "images": ["AURORA/data/something/frames/35707/first.jpg", "AURORA/data/something/frames/35707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chalk on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112017", "images": ["AURORA/data/something/frames/97493/first.jpg", "AURORA/data/something/frames/97493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a can, revealing a pair of tweezers behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000112018", "images": ["AURORA/data/something/frames/200484/first.jpg", "AURORA/data/something/frames/200484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing magnet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112019", "images": ["AURORA/data/something/frames/64132/first.jpg", "AURORA/data/something/frames/64132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112020", "images": ["AURORA/data/something/frames/91683/first.jpg", "AURORA/data/something/frames/91683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112021", "images": ["AURORA/data/something/frames/202680/first.jpg", "AURORA/data/something/frames/202680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112022", "images": ["AURORA/data/something/frames/26928/first.jpg", "AURORA/data/something/frames/26928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mobile with mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000112023", "images": ["AURORA/data/something/frames/43192/first.jpg", "AURORA/data/something/frames/43192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with cards on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112024", "images": ["AURORA/data/something/frames/209558/first.jpg", "AURORA/data/something/frames/209558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pencil so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112025", "images": ["AURORA/data/something/frames/216243/first.jpg", "AURORA/data/something/frames/216243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112026", "images": ["AURORA/data/something/frames/38096/first.jpg", "AURORA/data/something/frames/38096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking indian almond up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112027", "images": ["AURORA/data/something/frames/93249/first.jpg", "AURORA/data/something/frames/93249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112028", "images": ["AURORA/data/something/frames/160988/first.jpg", "AURORA/data/something/frames/160988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bike closer to chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112029", "images": ["AURORA/data/something/frames/153090/first.jpg", "AURORA/data/something/frames/153090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112030", "images": ["AURORA/data/something/frames/208350/first.jpg", "AURORA/data/something/frames/208350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cord into usb hub"}, {"from": "gpt", "value": ""}]} +{"id": "000000112031", "images": ["AURORA/data/something/frames/83063/first.jpg", "AURORA/data/something/frames/83063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112032", "images": ["AURORA/data/something/frames/52198/first.jpg", "AURORA/data/something/frames/52198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112033", "images": ["AURORA/data/something/frames/189788/first.jpg", "AURORA/data/something/frames/189788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape measure down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112034", "images": ["AURORA/data/something/frames/200578/first.jpg", "AURORA/data/something/frames/200578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112035", "images": ["AURORA/data/something/frames/17838/first.jpg", "AURORA/data/something/frames/17838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112036", "images": ["AURORA/data/something/frames/139308/first.jpg", "AURORA/data/something/frames/139308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112037", "images": ["AURORA/data/something/frames/208063/first.jpg", "AURORA/data/something/frames/208063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112038", "images": ["AURORA/data/something/frames/5804/first.jpg", "AURORA/data/something/frames/5804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a card away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112039", "images": ["AURORA/data/something/frames/81430/first.jpg", "AURORA/data/something/frames/81430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 book/dvd case/booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112040", "images": ["AURORA/data/something/frames/75240/first.jpg", "AURORA/data/something/frames/75240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112041", "images": ["AURORA/data/something/frames/189373/first.jpg", "AURORA/data/something/frames/189373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112042", "images": ["AURORA/data/something/frames/53528/first.jpg", "AURORA/data/something/frames/53528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112043", "images": ["AURORA/data/something/frames/54973/first.jpg", "AURORA/data/something/frames/54973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair clips onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000112044", "images": ["AURORA/data/something/frames/71770/first.jpg", "AURORA/data/something/frames/71770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tape with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112045", "images": ["AURORA/data/something/frames/65609/first.jpg", "AURORA/data/something/frames/65609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000112046", "images": ["AURORA/data/something/frames/108186/first.jpg", "AURORA/data/something/frames/108186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112047", "images": ["AURORA/data/something/frames/211943/first.jpg", "AURORA/data/something/frames/211943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour tea into a cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112048", "images": ["AURORA/data/something/frames/140875/first.jpg", "AURORA/data/something/frames/140875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden reeper until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112049", "images": ["AURORA/data/something/frames/81113/first.jpg", "AURORA/data/something/frames/81113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112050", "images": ["AURORA/data/something/frames/67285/first.jpg", "AURORA/data/something/frames/67285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sheild away from drum"}, {"from": "gpt", "value": ""}]} +{"id": "000000112051", "images": ["AURORA/data/something/frames/187888/first.jpg", "AURORA/data/something/frames/187888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112052", "images": ["AURORA/data/something/frames/47014/first.jpg", "AURORA/data/something/frames/47014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112053", "images": ["AURORA/data/something/frames/39894/first.jpg", "AURORA/data/something/frames/39894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112054", "images": ["AURORA/data/something/frames/142895/first.jpg", "AURORA/data/something/frames/142895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wood down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112055", "images": ["AURORA/data/something/frames/182882/first.jpg", "AURORA/data/something/frames/182882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an eraser and a bottlecap closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112056", "images": ["AURORA/data/something/frames/111961/first.jpg", "AURORA/data/something/frames/111961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112057", "images": ["AURORA/data/something/frames/50040/first.jpg", "AURORA/data/something/frames/50040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting orange bowl up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112058", "images": ["AURORA/data/something/frames/200050/first.jpg", "AURORA/data/something/frames/200050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112059", "images": ["AURORA/data/something/frames/23522/first.jpg", "AURORA/data/something/frames/23522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a q-tip upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112060", "images": ["AURORA/data/something/frames/187563/first.jpg", "AURORA/data/something/frames/187563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: package colliding with package and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112061", "images": ["AURORA/data/something/frames/193659/first.jpg", "AURORA/data/something/frames/193659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a card out of the bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112062", "images": ["AURORA/data/something/frames/69608/first.jpg", "AURORA/data/something/frames/69608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112063", "images": ["AURORA/data/something/frames/75340/first.jpg", "AURORA/data/something/frames/75340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112064", "images": ["AURORA/data/something/frames/128828/first.jpg", "AURORA/data/something/frames/128828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding documents"}, {"from": "gpt", "value": ""}]} +{"id": "000000112065", "images": ["AURORA/data/something/frames/54941/first.jpg", "AURORA/data/something/frames/54941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving potato and potato away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112066", "images": ["AURORA/data/something/frames/91684/first.jpg", "AURORA/data/something/frames/91684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pipes"}, {"from": "gpt", "value": ""}]} +{"id": "000000112067", "images": ["AURORA/data/something/frames/185482/first.jpg", "AURORA/data/something/frames/185482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112068", "images": ["AURORA/data/something/frames/90490/first.jpg", "AURORA/data/something/frames/90490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cabel into switch but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112069", "images": ["AURORA/data/something/frames/96671/first.jpg", "AURORA/data/something/frames/96671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tea tumbler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112070", "images": ["AURORA/data/something/frames/91637/first.jpg", "AURORA/data/something/frames/91637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a rag into canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000112071", "images": ["AURORA/data/something/frames/35234/first.jpg", "AURORA/data/something/frames/35234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112072", "images": ["AURORA/data/something/frames/27892/first.jpg", "AURORA/data/something/frames/27892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112073", "images": ["AURORA/data/something/frames/102171/first.jpg", "AURORA/data/something/frames/102171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading books onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112074", "images": ["AURORA/data/something/frames/120079/first.jpg", "AURORA/data/something/frames/120079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112075", "images": ["AURORA/data/something/frames/112090/first.jpg", "AURORA/data/something/frames/112090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath books"}, {"from": "gpt", "value": ""}]} +{"id": "000000112076", "images": ["AURORA/data/something/frames/59546/first.jpg", "AURORA/data/something/frames/59546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small freshmints from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112077", "images": ["AURORA/data/something/frames/129519/first.jpg", "AURORA/data/something/frames/129519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cylindrical box in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112078", "images": ["AURORA/data/something/frames/156515/first.jpg", "AURORA/data/something/frames/156515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cushions up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112079", "images": ["AURORA/data/something/frames/90357/first.jpg", "AURORA/data/something/frames/90357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112080", "images": ["AURORA/data/something/frames/3866/first.jpg", "AURORA/data/something/frames/3866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112081", "images": ["AURORA/data/something/frames/179739/first.jpg", "AURORA/data/something/frames/179739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping magazine onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112082", "images": ["AURORA/data/something/frames/117781/first.jpg", "AURORA/data/something/frames/117781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone next to a key ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000112083", "images": ["AURORA/data/something/frames/196568/first.jpg", "AURORA/data/something/frames/196568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending matchstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112084", "images": ["AURORA/data/something/frames/114772/first.jpg", "AURORA/data/something/frames/114772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112085", "images": ["AURORA/data/something/frames/90916/first.jpg", "AURORA/data/something/frames/90916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112086", "images": ["AURORA/data/something/frames/87616/first.jpg", "AURORA/data/something/frames/87616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden puppet down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112087", "images": ["AURORA/data/something/frames/98227/first.jpg", "AURORA/data/something/frames/98227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting leather bag underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112088", "images": ["AURORA/data/something/frames/79154/first.jpg", "AURORA/data/something/frames/79154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112089", "images": ["AURORA/data/something/frames/69499/first.jpg", "AURORA/data/something/frames/69499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spanner up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112090", "images": ["AURORA/data/something/frames/186044/first.jpg", "AURORA/data/something/frames/186044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bulb underneath scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000112091", "images": ["AURORA/data/something/frames/177523/first.jpg", "AURORA/data/something/frames/177523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112092", "images": ["AURORA/data/something/frames/41553/first.jpg", "AURORA/data/something/frames/41553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea from glass onto a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112093", "images": ["AURORA/data/something/frames/73306/first.jpg", "AURORA/data/something/frames/73306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling packet out of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112094", "images": ["AURORA/data/something/frames/89190/first.jpg", "AURORA/data/something/frames/89190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a stuffed animal with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112095", "images": ["AURORA/data/something/frames/203848/first.jpg", "AURORA/data/something/frames/203848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a book with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112096", "images": ["AURORA/data/something/frames/93475/first.jpg", "AURORA/data/something/frames/93475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering eraser with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112097", "images": ["AURORA/data/something/frames/62508/first.jpg", "AURORA/data/something/frames/62508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping watch onto carpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112098", "images": ["AURORA/data/something/frames/80026/first.jpg", "AURORA/data/something/frames/80026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling baby powder onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000112099", "images": ["AURORA/data/something/frames/128538/first.jpg", "AURORA/data/something/frames/128538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking straightner from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112100", "images": ["AURORA/data/something/frames/98593/first.jpg", "AURORA/data/something/frames/98593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook next to flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000112101", "images": ["AURORA/data/something/frames/129654/first.jpg", "AURORA/data/something/frames/129654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112102", "images": ["AURORA/data/something/frames/43323/first.jpg", "AURORA/data/something/frames/43323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming boat"}, {"from": "gpt", "value": ""}]} +{"id": "000000112103", "images": ["AURORA/data/something/frames/31877/first.jpg", "AURORA/data/something/frames/31877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112104", "images": ["AURORA/data/something/frames/19983/first.jpg", "AURORA/data/something/frames/19983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a thermometer into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112105", "images": ["AURORA/data/something/frames/219481/first.jpg", "AURORA/data/something/frames/219481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a trimmer on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112106", "images": ["AURORA/data/something/frames/137747/first.jpg", "AURORA/data/something/frames/137747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, flower and key on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112107", "images": ["AURORA/data/something/frames/128243/first.jpg", "AURORA/data/something/frames/128243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of wood table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112108", "images": ["AURORA/data/something/frames/76129/first.jpg", "AURORA/data/something/frames/76129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112109", "images": ["AURORA/data/something/frames/34028/first.jpg", "AURORA/data/something/frames/34028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and stapler away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112110", "images": ["AURORA/data/something/frames/174854/first.jpg", "AURORA/data/something/frames/174854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the cover of a paperback book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112111", "images": ["AURORA/data/something/frames/123926/first.jpg", "AURORA/data/something/frames/123926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a glass jar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112112", "images": ["AURORA/data/something/frames/52630/first.jpg", "AURORA/data/something/frames/52630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112113", "images": ["AURORA/data/something/frames/207782/first.jpg", "AURORA/data/something/frames/207782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112114", "images": ["AURORA/data/something/frames/199509/first.jpg", "AURORA/data/something/frames/199509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112115", "images": ["AURORA/data/something/frames/167392/first.jpg", "AURORA/data/something/frames/167392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sweatshirt into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112116", "images": ["AURORA/data/something/frames/51768/first.jpg", "AURORA/data/something/frames/51768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coaster and remote control closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112117", "images": ["AURORA/data/something/frames/8956/first.jpg", "AURORA/data/something/frames/8956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112118", "images": ["AURORA/data/something/frames/184905/first.jpg", "AURORA/data/something/frames/184905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112119", "images": ["AURORA/data/something/frames/157090/first.jpg", "AURORA/data/something/frames/157090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112120", "images": ["AURORA/data/something/frames/74973/first.jpg", "AURORA/data/something/frames/74973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cigarette pack with cigarette over, so cigarette falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112121", "images": ["AURORA/data/something/frames/19175/first.jpg", "AURORA/data/something/frames/19175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112122", "images": ["AURORA/data/something/frames/79595/first.jpg", "AURORA/data/something/frames/79595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a scarf so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112123", "images": ["AURORA/data/something/frames/135641/first.jpg", "AURORA/data/something/frames/135641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cellphone cord into outlet strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112124", "images": ["AURORA/data/something/frames/119177/first.jpg", "AURORA/data/something/frames/119177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coins into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112125", "images": ["AURORA/data/something/frames/215591/first.jpg", "AURORA/data/something/frames/215591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112126", "images": ["AURORA/data/something/frames/65550/first.jpg", "AURORA/data/something/frames/65550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glasses upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112127", "images": ["AURORA/data/something/frames/87257/first.jpg", "AURORA/data/something/frames/87257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112128", "images": ["AURORA/data/something/frames/128892/first.jpg", "AURORA/data/something/frames/128892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mobile phone cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000112129", "images": ["AURORA/data/something/frames/15179/first.jpg", "AURORA/data/something/frames/15179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting books into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112130", "images": ["AURORA/data/something/frames/25922/first.jpg", "AURORA/data/something/frames/25922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112131", "images": ["AURORA/data/something/frames/61424/first.jpg", "AURORA/data/something/frames/61424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the container of a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112132", "images": ["AURORA/data/something/frames/196340/first.jpg", "AURORA/data/something/frames/196340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin next to pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112133", "images": ["AURORA/data/something/frames/209619/first.jpg", "AURORA/data/something/frames/209619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000112134", "images": ["AURORA/data/something/frames/76217/first.jpg", "AURORA/data/something/frames/76217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000112135", "images": ["AURORA/data/something/frames/23480/first.jpg", "AURORA/data/something/frames/23480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle with a plastic lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112136", "images": ["AURORA/data/something/frames/209363/first.jpg", "AURORA/data/something/frames/209363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112137", "images": ["AURORA/data/something/frames/19620/first.jpg", "AURORA/data/something/frames/19620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a post-it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112138", "images": ["AURORA/data/something/frames/209686/first.jpg", "AURORA/data/something/frames/209686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving teddy bear and stuffed toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112139", "images": ["AURORA/data/something/frames/218248/first.jpg", "AURORA/data/something/frames/218248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling water bottle from behind of television"}, {"from": "gpt", "value": ""}]} +{"id": "000000112140", "images": ["AURORA/data/something/frames/62503/first.jpg", "AURORA/data/something/frames/62503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112141", "images": ["AURORA/data/something/frames/106326/first.jpg", "AURORA/data/something/frames/106326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112142", "images": ["AURORA/data/something/frames/65086/first.jpg", "AURORA/data/something/frames/65086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking discount cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000112143", "images": ["AURORA/data/something/frames/65220/first.jpg", "AURORA/data/something/frames/65220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening kitchen cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112144", "images": ["AURORA/data/something/frames/99106/first.jpg", "AURORA/data/something/frames/99106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pomegranate peel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112145", "images": ["AURORA/data/something/frames/121709/first.jpg", "AURORA/data/something/frames/121709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112146", "images": ["AURORA/data/something/frames/38160/first.jpg", "AURORA/data/something/frames/38160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112147", "images": ["AURORA/data/something/frames/122604/first.jpg", "AURORA/data/something/frames/122604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy idol next to hair band"}, {"from": "gpt", "value": ""}]} +{"id": "000000112148", "images": ["AURORA/data/something/frames/15724/first.jpg", "AURORA/data/something/frames/15724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering slippers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112149", "images": ["AURORA/data/something/frames/67525/first.jpg", "AURORA/data/something/frames/67525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange notebook from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112150", "images": ["AURORA/data/something/frames/214485/first.jpg", "AURORA/data/something/frames/214485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shampoo bottle and tumbler closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112151", "images": ["AURORA/data/something/frames/55951/first.jpg", "AURORA/data/something/frames/55951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cutting board with lid on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112152", "images": ["AURORA/data/something/frames/114957/first.jpg", "AURORA/data/something/frames/114957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112153", "images": ["AURORA/data/something/frames/212195/first.jpg", "AURORA/data/something/frames/212195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112154", "images": ["AURORA/data/something/frames/46965/first.jpg", "AURORA/data/something/frames/46965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000112155", "images": ["AURORA/data/something/frames/69508/first.jpg", "AURORA/data/something/frames/69508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112156", "images": ["AURORA/data/something/frames/73388/first.jpg", "AURORA/data/something/frames/73388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a hairclip next to a keybound"}, {"from": "gpt", "value": ""}]} +{"id": "000000112157", "images": ["AURORA/data/something/frames/150709/first.jpg", "AURORA/data/something/frames/150709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112158", "images": ["AURORA/data/something/frames/35063/first.jpg", "AURORA/data/something/frames/35063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blankets up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112159", "images": ["AURORA/data/something/frames/173258/first.jpg", "AURORA/data/something/frames/173258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cloth and cup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112160", "images": ["AURORA/data/something/frames/172225/first.jpg", "AURORA/data/something/frames/172225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into powerbank"}, {"from": "gpt", "value": ""}]} +{"id": "000000112161", "images": ["AURORA/data/something/frames/121085/first.jpg", "AURORA/data/something/frames/121085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112162", "images": ["AURORA/data/something/frames/188196/first.jpg", "AURORA/data/something/frames/188196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112163", "images": ["AURORA/data/something/frames/179063/first.jpg", "AURORA/data/something/frames/179063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000112164", "images": ["AURORA/data/something/frames/202040/first.jpg", "AURORA/data/something/frames/202040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112165", "images": ["AURORA/data/something/frames/191667/first.jpg", "AURORA/data/something/frames/191667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112166", "images": ["AURORA/data/something/frames/22216/first.jpg", "AURORA/data/something/frames/22216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting something up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112167", "images": ["AURORA/data/something/frames/136018/first.jpg", "AURORA/data/something/frames/136018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112168", "images": ["AURORA/data/something/frames/55635/first.jpg", "AURORA/data/something/frames/55635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112169", "images": ["AURORA/data/something/frames/18160/first.jpg", "AURORA/data/something/frames/18160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 sticky notes"}, {"from": "gpt", "value": ""}]} +{"id": "000000112170", "images": ["AURORA/data/something/frames/159330/first.jpg", "AURORA/data/something/frames/159330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping salt off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112171", "images": ["AURORA/data/something/frames/25499/first.jpg", "AURORA/data/something/frames/25499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a glasses case up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112172", "images": ["AURORA/data/something/frames/205981/first.jpg", "AURORA/data/something/frames/205981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering red spoon with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112173", "images": ["AURORA/data/something/frames/141930/first.jpg", "AURORA/data/something/frames/141930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mic and speaker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112174", "images": ["AURORA/data/something/frames/117960/first.jpg", "AURORA/data/something/frames/117960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking iron box from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112175", "images": ["AURORA/data/something/frames/128034/first.jpg", "AURORA/data/something/frames/128034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112176", "images": ["AURORA/data/something/frames/207810/first.jpg", "AURORA/data/something/frames/207810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112177", "images": ["AURORA/data/something/frames/131120/first.jpg", "AURORA/data/something/frames/131120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass next to other already on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112178", "images": ["AURORA/data/something/frames/55552/first.jpg", "AURORA/data/something/frames/55552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle into a vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000112179", "images": ["AURORA/data/something/frames/210371/first.jpg", "AURORA/data/something/frames/210371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112180", "images": ["AURORA/data/something/frames/134767/first.jpg", "AURORA/data/something/frames/134767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and ruler closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112181", "images": ["AURORA/data/something/frames/84729/first.jpg", "AURORA/data/something/frames/84729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a body pillow and a smaller pillow away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112182", "images": ["AURORA/data/something/frames/108841/first.jpg", "AURORA/data/something/frames/108841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wooden stick up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112183", "images": ["AURORA/data/something/frames/177590/first.jpg", "AURORA/data/something/frames/177590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112184", "images": ["AURORA/data/something/frames/98251/first.jpg", "AURORA/data/something/frames/98251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112185", "images": ["AURORA/data/something/frames/169292/first.jpg", "AURORA/data/something/frames/169292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000112186", "images": ["AURORA/data/something/frames/128494/first.jpg", "AURORA/data/something/frames/128494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112187", "images": ["AURORA/data/something/frames/209485/first.jpg", "AURORA/data/something/frames/209485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112188", "images": ["AURORA/data/something/frames/74815/first.jpg", "AURORA/data/something/frames/74815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112189", "images": ["AURORA/data/something/frames/91484/first.jpg", "AURORA/data/something/frames/91484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cigarette lighter in front of battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000112190", "images": ["AURORA/data/something/frames/67171/first.jpg", "AURORA/data/something/frames/67171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with bowl on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112191", "images": ["AURORA/data/something/frames/200433/first.jpg", "AURORA/data/something/frames/200433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving badge down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112192", "images": ["AURORA/data/something/frames/186285/first.jpg", "AURORA/data/something/frames/186285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cutting board upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112193", "images": ["AURORA/data/something/frames/71966/first.jpg", "AURORA/data/something/frames/71966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112194", "images": ["AURORA/data/something/frames/44816/first.jpg", "AURORA/data/something/frames/44816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can behind a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112195", "images": ["AURORA/data/something/frames/125234/first.jpg", "AURORA/data/something/frames/125234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone changer into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112196", "images": ["AURORA/data/something/frames/72541/first.jpg", "AURORA/data/something/frames/72541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112197", "images": ["AURORA/data/something/frames/195830/first.jpg", "AURORA/data/something/frames/195830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and notebook closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112198", "images": ["AURORA/data/something/frames/113707/first.jpg", "AURORA/data/something/frames/113707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering goggles with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112199", "images": ["AURORA/data/something/frames/218616/first.jpg", "AURORA/data/something/frames/218616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting coin with coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112200", "images": ["AURORA/data/something/frames/10101/first.jpg", "AURORA/data/something/frames/10101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cord into a bluetooth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112201", "images": ["AURORA/data/something/frames/217049/first.jpg", "AURORA/data/something/frames/217049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lime colliding with lime and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112202", "images": ["AURORA/data/something/frames/169945/first.jpg", "AURORA/data/something/frames/169945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting button"}, {"from": "gpt", "value": ""}]} +{"id": "000000112203", "images": ["AURORA/data/something/frames/47164/first.jpg", "AURORA/data/something/frames/47164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112204", "images": ["AURORA/data/something/frames/130407/first.jpg", "AURORA/data/something/frames/130407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking comb up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112205", "images": ["AURORA/data/something/frames/47739/first.jpg", "AURORA/data/something/frames/47739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112206", "images": ["AURORA/data/something/frames/134701/first.jpg", "AURORA/data/something/frames/134701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle and clip box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112207", "images": ["AURORA/data/something/frames/201473/first.jpg", "AURORA/data/something/frames/201473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into block"}, {"from": "gpt", "value": ""}]} +{"id": "000000112208", "images": ["AURORA/data/something/frames/46193/first.jpg", "AURORA/data/something/frames/46193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112209", "images": ["AURORA/data/something/frames/104061/first.jpg", "AURORA/data/something/frames/104061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mouse into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112210", "images": ["AURORA/data/something/frames/13680/first.jpg", "AURORA/data/something/frames/13680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook and pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112211", "images": ["AURORA/data/something/frames/136695/first.jpg", "AURORA/data/something/frames/136695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112212", "images": ["AURORA/data/something/frames/196329/first.jpg", "AURORA/data/something/frames/196329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112213", "images": ["AURORA/data/something/frames/157167/first.jpg", "AURORA/data/something/frames/157167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112214", "images": ["AURORA/data/something/frames/27048/first.jpg", "AURORA/data/something/frames/27048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112215", "images": ["AURORA/data/something/frames/202463/first.jpg", "AURORA/data/something/frames/202463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lipbalm off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112216", "images": ["AURORA/data/something/frames/188913/first.jpg", "AURORA/data/something/frames/188913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy wheel in front of rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112217", "images": ["AURORA/data/something/frames/161711/first.jpg", "AURORA/data/something/frames/161711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112218", "images": ["AURORA/data/something/frames/126217/first.jpg", "AURORA/data/something/frames/126217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and glass so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112219", "images": ["AURORA/data/something/frames/184814/first.jpg", "AURORA/data/something/frames/184814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112220", "images": ["AURORA/data/something/frames/208684/first.jpg", "AURORA/data/something/frames/208684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112221", "images": ["AURORA/data/something/frames/82785/first.jpg", "AURORA/data/something/frames/82785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112222", "images": ["AURORA/data/something/frames/68032/first.jpg", "AURORA/data/something/frames/68032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112223", "images": ["AURORA/data/something/frames/139515/first.jpg", "AURORA/data/something/frames/139515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112224", "images": ["AURORA/data/something/frames/144694/first.jpg", "AURORA/data/something/frames/144694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112225", "images": ["AURORA/data/something/frames/156446/first.jpg", "AURORA/data/something/frames/156446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching mega block to mega block"}, {"from": "gpt", "value": ""}]} +{"id": "000000112226", "images": ["AURORA/data/something/frames/134501/first.jpg", "AURORA/data/something/frames/134501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of shoes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112227", "images": ["AURORA/data/something/frames/192841/first.jpg", "AURORA/data/something/frames/192841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping trash can with trash over, so trash falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112228", "images": ["AURORA/data/something/frames/205853/first.jpg", "AURORA/data/something/frames/205853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse with mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112229", "images": ["AURORA/data/something/frames/169931/first.jpg", "AURORA/data/something/frames/169931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of blocks without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112230", "images": ["AURORA/data/something/frames/36593/first.jpg", "AURORA/data/something/frames/36593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ramekin closer to ramekin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112231", "images": ["AURORA/data/something/frames/189126/first.jpg", "AURORA/data/something/frames/189126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping candle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112232", "images": ["AURORA/data/something/frames/123552/first.jpg", "AURORA/data/something/frames/123552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into modelling clay"}, {"from": "gpt", "value": ""}]} +{"id": "000000112233", "images": ["AURORA/data/something/frames/211871/first.jpg", "AURORA/data/something/frames/211871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112234", "images": ["AURORA/data/something/frames/31012/first.jpg", "AURORA/data/something/frames/31012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillow off of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112235", "images": ["AURORA/data/something/frames/22782/first.jpg", "AURORA/data/something/frames/22782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112236", "images": ["AURORA/data/something/frames/30489/first.jpg", "AURORA/data/something/frames/30489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112237", "images": ["AURORA/data/something/frames/28285/first.jpg", "AURORA/data/something/frames/28285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112238", "images": ["AURORA/data/something/frames/80475/first.jpg", "AURORA/data/something/frames/80475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000112239", "images": ["AURORA/data/something/frames/120157/first.jpg", "AURORA/data/something/frames/120157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking salt shaker so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112240", "images": ["AURORA/data/something/frames/28041/first.jpg", "AURORA/data/something/frames/28041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000112241", "images": ["AURORA/data/something/frames/217373/first.jpg", "AURORA/data/something/frames/217373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing red dairy"}, {"from": "gpt", "value": ""}]} +{"id": "000000112242", "images": ["AURORA/data/something/frames/69584/first.jpg", "AURORA/data/something/frames/69584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stapler next to rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112243", "images": ["AURORA/data/something/frames/26489/first.jpg", "AURORA/data/something/frames/26489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering smartphone with recipe book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112244", "images": ["AURORA/data/something/frames/72400/first.jpg", "AURORA/data/something/frames/72400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into a bowl, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112245", "images": ["AURORA/data/something/frames/152222/first.jpg", "AURORA/data/something/frames/152222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting radio up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112246", "images": ["AURORA/data/something/frames/137772/first.jpg", "AURORA/data/something/frames/137772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail polish from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112247", "images": ["AURORA/data/something/frames/130173/first.jpg", "AURORA/data/something/frames/130173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112248", "images": ["AURORA/data/something/frames/119812/first.jpg", "AURORA/data/something/frames/119812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112249", "images": ["AURORA/data/something/frames/168638/first.jpg", "AURORA/data/something/frames/168638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112250", "images": ["AURORA/data/something/frames/140274/first.jpg", "AURORA/data/something/frames/140274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000112251", "images": ["AURORA/data/something/frames/73957/first.jpg", "AURORA/data/something/frames/73957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112252", "images": ["AURORA/data/something/frames/66739/first.jpg", "AURORA/data/something/frames/66739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112253", "images": ["AURORA/data/something/frames/99234/first.jpg", "AURORA/data/something/frames/99234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling diaper from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112254", "images": ["AURORA/data/something/frames/142212/first.jpg", "AURORA/data/something/frames/142212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black pencil sharpner with screw driver"}, {"from": "gpt", "value": ""}]} +{"id": "000000112255", "images": ["AURORA/data/something/frames/133665/first.jpg", "AURORA/data/something/frames/133665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling can from behind of sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000112256", "images": ["AURORA/data/something/frames/27009/first.jpg", "AURORA/data/something/frames/27009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112257", "images": ["AURORA/data/something/frames/105273/first.jpg", "AURORA/data/something/frames/105273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keyboard up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112258", "images": ["AURORA/data/something/frames/122910/first.jpg", "AURORA/data/something/frames/122910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112259", "images": ["AURORA/data/something/frames/201889/first.jpg", "AURORA/data/something/frames/201889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112260", "images": ["AURORA/data/something/frames/132413/first.jpg", "AURORA/data/something/frames/132413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112261", "images": ["AURORA/data/something/frames/83984/first.jpg", "AURORA/data/something/frames/83984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112262", "images": ["AURORA/data/something/frames/69393/first.jpg", "AURORA/data/something/frames/69393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a onion from a cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000112263", "images": ["AURORA/data/something/frames/308/first.jpg", "AURORA/data/something/frames/308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112264", "images": ["AURORA/data/something/frames/103563/first.jpg", "AURORA/data/something/frames/103563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112265", "images": ["AURORA/data/something/frames/888/first.jpg", "AURORA/data/something/frames/888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading honey onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112266", "images": ["AURORA/data/something/frames/158964/first.jpg", "AURORA/data/something/frames/158964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending straw so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112267", "images": ["AURORA/data/something/frames/103136/first.jpg", "AURORA/data/something/frames/103136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning body spray upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112268", "images": ["AURORA/data/something/frames/43350/first.jpg", "AURORA/data/something/frames/43350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112269", "images": ["AURORA/data/something/frames/186632/first.jpg", "AURORA/data/something/frames/186632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000112270", "images": ["AURORA/data/something/frames/153174/first.jpg", "AURORA/data/something/frames/153174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a feeding bottle in front of camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112271", "images": ["AURORA/data/something/frames/148014/first.jpg", "AURORA/data/something/frames/148014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spring and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112272", "images": ["AURORA/data/something/frames/178554/first.jpg", "AURORA/data/something/frames/178554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hairbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000112273", "images": ["AURORA/data/something/frames/180728/first.jpg", "AURORA/data/something/frames/180728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112274", "images": ["AURORA/data/something/frames/97039/first.jpg", "AURORA/data/something/frames/97039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000112275", "images": ["AURORA/data/something/frames/154372/first.jpg", "AURORA/data/something/frames/154372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting divide into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112276", "images": ["AURORA/data/something/frames/196092/first.jpg", "AURORA/data/something/frames/196092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112277", "images": ["AURORA/data/something/frames/179523/first.jpg", "AURORA/data/something/frames/179523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tube so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112278", "images": ["AURORA/data/something/frames/31045/first.jpg", "AURORA/data/something/frames/31045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a red pencil with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112279", "images": ["AURORA/data/something/frames/119257/first.jpg", "AURORA/data/something/frames/119257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the lipstick out of the purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112280", "images": ["AURORA/data/something/frames/98917/first.jpg", "AURORA/data/something/frames/98917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112281", "images": ["AURORA/data/something/frames/158789/first.jpg", "AURORA/data/something/frames/158789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into mug, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112282", "images": ["AURORA/data/something/frames/105173/first.jpg", "AURORA/data/something/frames/105173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112283", "images": ["AURORA/data/something/frames/91241/first.jpg", "AURORA/data/something/frames/91241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112284", "images": ["AURORA/data/something/frames/200417/first.jpg", "AURORA/data/something/frames/200417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a fan from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112285", "images": ["AURORA/data/something/frames/133738/first.jpg", "AURORA/data/something/frames/133738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving black play cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112286", "images": ["AURORA/data/something/frames/182118/first.jpg", "AURORA/data/something/frames/182118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112287", "images": ["AURORA/data/something/frames/25013/first.jpg", "AURORA/data/something/frames/25013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three blocks onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112288", "images": ["AURORA/data/something/frames/154714/first.jpg", "AURORA/data/something/frames/154714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112289", "images": ["AURORA/data/something/frames/200099/first.jpg", "AURORA/data/something/frames/200099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lid behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112290", "images": ["AURORA/data/something/frames/82959/first.jpg", "AURORA/data/something/frames/82959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112291", "images": ["AURORA/data/something/frames/126933/first.jpg", "AURORA/data/something/frames/126933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pen upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112292", "images": ["AURORA/data/something/frames/210563/first.jpg", "AURORA/data/something/frames/210563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112293", "images": ["AURORA/data/something/frames/196448/first.jpg", "AURORA/data/something/frames/196448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail paint remover from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112294", "images": ["AURORA/data/something/frames/18814/first.jpg", "AURORA/data/something/frames/18814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coin with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112295", "images": ["AURORA/data/something/frames/47838/first.jpg", "AURORA/data/something/frames/47838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg next to an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000112296", "images": ["AURORA/data/something/frames/80909/first.jpg", "AURORA/data/something/frames/80909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hammer behind couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112297", "images": ["AURORA/data/something/frames/174093/first.jpg", "AURORA/data/something/frames/174093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and spoon closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112298", "images": ["AURORA/data/something/frames/145648/first.jpg", "AURORA/data/something/frames/145648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming books"}, {"from": "gpt", "value": ""}]} +{"id": "000000112299", "images": ["AURORA/data/something/frames/67036/first.jpg", "AURORA/data/something/frames/67036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mug with cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000112300", "images": ["AURORA/data/something/frames/60895/first.jpg", "AURORA/data/something/frames/60895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a stuffed animal off of a couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112301", "images": ["AURORA/data/something/frames/47614/first.jpg", "AURORA/data/something/frames/47614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112302", "images": ["AURORA/data/something/frames/219934/first.jpg", "AURORA/data/something/frames/219934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rice up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112303", "images": ["AURORA/data/something/frames/83595/first.jpg", "AURORA/data/something/frames/83595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking muffin out of bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112304", "images": ["AURORA/data/something/frames/99298/first.jpg", "AURORA/data/something/frames/99298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112305", "images": ["AURORA/data/something/frames/87436/first.jpg", "AURORA/data/something/frames/87436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spoon from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112306", "images": ["AURORA/data/something/frames/42282/first.jpg", "AURORA/data/something/frames/42282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112307", "images": ["AURORA/data/something/frames/169352/first.jpg", "AURORA/data/something/frames/169352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112308", "images": ["AURORA/data/something/frames/194764/first.jpg", "AURORA/data/something/frames/194764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112309", "images": ["AURORA/data/something/frames/34597/first.jpg", "AURORA/data/something/frames/34597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming black hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000112310", "images": ["AURORA/data/something/frames/195603/first.jpg", "AURORA/data/something/frames/195603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of ceramic jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112311", "images": ["AURORA/data/something/frames/13187/first.jpg", "AURORA/data/something/frames/13187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cup with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112312", "images": ["AURORA/data/something/frames/196741/first.jpg", "AURORA/data/something/frames/196741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling wine onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112313", "images": ["AURORA/data/something/frames/65035/first.jpg", "AURORA/data/something/frames/65035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting peeler, keychain and mobile on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112314", "images": ["AURORA/data/something/frames/103776/first.jpg", "AURORA/data/something/frames/103776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112315", "images": ["AURORA/data/something/frames/195531/first.jpg", "AURORA/data/something/frames/195531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy car onto ramp"}, {"from": "gpt", "value": ""}]} +{"id": "000000112316", "images": ["AURORA/data/something/frames/19011/first.jpg", "AURORA/data/something/frames/19011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of tablet without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112317", "images": ["AURORA/data/something/frames/54567/first.jpg", "AURORA/data/something/frames/54567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a paper to a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112318", "images": ["AURORA/data/something/frames/59030/first.jpg", "AURORA/data/something/frames/59030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112319", "images": ["AURORA/data/something/frames/103475/first.jpg", "AURORA/data/something/frames/103475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112320", "images": ["AURORA/data/something/frames/195913/first.jpg", "AURORA/data/something/frames/195913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a small container from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112321", "images": ["AURORA/data/something/frames/128896/first.jpg", "AURORA/data/something/frames/128896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling dessert sprinkles onto a piece of pie."}, {"from": "gpt", "value": ""}]} +{"id": "000000112322", "images": ["AURORA/data/something/frames/91013/first.jpg", "AURORA/data/something/frames/91013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112323", "images": ["AURORA/data/something/frames/113236/first.jpg", "AURORA/data/something/frames/113236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112324", "images": ["AURORA/data/something/frames/204394/first.jpg", "AURORA/data/something/frames/204394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mobile phone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112325", "images": ["AURORA/data/something/frames/110208/first.jpg", "AURORA/data/something/frames/110208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying lamp on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112326", "images": ["AURORA/data/something/frames/33688/first.jpg", "AURORA/data/something/frames/33688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control, wallet and mechanical pencil on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112327", "images": ["AURORA/data/something/frames/51970/first.jpg", "AURORA/data/something/frames/51970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening water tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000112328", "images": ["AURORA/data/something/frames/5226/first.jpg", "AURORA/data/something/frames/5226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wood spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112329", "images": ["AURORA/data/something/frames/59701/first.jpg", "AURORA/data/something/frames/59701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smarthphone and book closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112330", "images": ["AURORA/data/something/frames/55716/first.jpg", "AURORA/data/something/frames/55716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112331", "images": ["AURORA/data/something/frames/143265/first.jpg", "AURORA/data/something/frames/143265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112332", "images": ["AURORA/data/something/frames/204770/first.jpg", "AURORA/data/something/frames/204770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112333", "images": ["AURORA/data/something/frames/4761/first.jpg", "AURORA/data/something/frames/4761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112334", "images": ["AURORA/data/something/frames/152138/first.jpg", "AURORA/data/something/frames/152138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubber onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112335", "images": ["AURORA/data/something/frames/207247/first.jpg", "AURORA/data/something/frames/207247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112336", "images": ["AURORA/data/something/frames/214128/first.jpg", "AURORA/data/something/frames/214128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112337", "images": ["AURORA/data/something/frames/134649/first.jpg", "AURORA/data/something/frames/134649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lotion tube with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112338", "images": ["AURORA/data/something/frames/72451/first.jpg", "AURORA/data/something/frames/72451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging auxiliary cord into speaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000112339", "images": ["AURORA/data/something/frames/122071/first.jpg", "AURORA/data/something/frames/122071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112340", "images": ["AURORA/data/something/frames/55781/first.jpg", "AURORA/data/something/frames/55781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white book marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112341", "images": ["AURORA/data/something/frames/94975/first.jpg", "AURORA/data/something/frames/94975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the purse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112342", "images": ["AURORA/data/something/frames/218589/first.jpg", "AURORA/data/something/frames/218589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112343", "images": ["AURORA/data/something/frames/114783/first.jpg", "AURORA/data/something/frames/114783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book in front of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112344", "images": ["AURORA/data/something/frames/6039/first.jpg", "AURORA/data/something/frames/6039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112345", "images": ["AURORA/data/something/frames/15065/first.jpg", "AURORA/data/something/frames/15065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112346", "images": ["AURORA/data/something/frames/174755/first.jpg", "AURORA/data/something/frames/174755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tie so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112347", "images": ["AURORA/data/something/frames/180180/first.jpg", "AURORA/data/something/frames/180180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with cutter and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112348", "images": ["AURORA/data/something/frames/143971/first.jpg", "AURORA/data/something/frames/143971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112349", "images": ["AURORA/data/something/frames/65016/first.jpg", "AURORA/data/something/frames/65016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112350", "images": ["AURORA/data/something/frames/90817/first.jpg", "AURORA/data/something/frames/90817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tyre with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112351", "images": ["AURORA/data/something/frames/123961/first.jpg", "AURORA/data/something/frames/123961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil onto stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000112352", "images": ["AURORA/data/something/frames/74258/first.jpg", "AURORA/data/something/frames/74258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112353", "images": ["AURORA/data/something/frames/88816/first.jpg", "AURORA/data/something/frames/88816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112354", "images": ["AURORA/data/something/frames/202337/first.jpg", "AURORA/data/something/frames/202337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112355", "images": ["AURORA/data/something/frames/92833/first.jpg", "AURORA/data/something/frames/92833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing telephone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112356", "images": ["AURORA/data/something/frames/8959/first.jpg", "AURORA/data/something/frames/8959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112357", "images": ["AURORA/data/something/frames/63719/first.jpg", "AURORA/data/something/frames/63719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking sunglasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112358", "images": ["AURORA/data/something/frames/158781/first.jpg", "AURORA/data/something/frames/158781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wrapper into the garbage"}, {"from": "gpt", "value": ""}]} +{"id": "000000112359", "images": ["AURORA/data/something/frames/220773/first.jpg", "AURORA/data/something/frames/220773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000112360", "images": ["AURORA/data/something/frames/164036/first.jpg", "AURORA/data/something/frames/164036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lipstick from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112361", "images": ["AURORA/data/something/frames/161282/first.jpg", "AURORA/data/something/frames/161282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000112362", "images": ["AURORA/data/something/frames/67333/first.jpg", "AURORA/data/something/frames/67333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112363", "images": ["AURORA/data/something/frames/153746/first.jpg", "AURORA/data/something/frames/153746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping lotion tube over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112364", "images": ["AURORA/data/something/frames/16654/first.jpg", "AURORA/data/something/frames/16654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a scrunchie off of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112365", "images": ["AURORA/data/something/frames/69817/first.jpg", "AURORA/data/something/frames/69817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000112366", "images": ["AURORA/data/something/frames/207574/first.jpg", "AURORA/data/something/frames/207574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting down another clementine"}, {"from": "gpt", "value": ""}]} +{"id": "000000112367", "images": ["AURORA/data/something/frames/207000/first.jpg", "AURORA/data/something/frames/207000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the body of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112368", "images": ["AURORA/data/something/frames/13717/first.jpg", "AURORA/data/something/frames/13717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping formula up with measuring scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112369", "images": ["AURORA/data/something/frames/62126/first.jpg", "AURORA/data/something/frames/62126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a closed disposable water bottle with a can of beans"}, {"from": "gpt", "value": ""}]} +{"id": "000000112370", "images": ["AURORA/data/something/frames/94398/first.jpg", "AURORA/data/something/frames/94398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screw down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112371", "images": ["AURORA/data/something/frames/86407/first.jpg", "AURORA/data/something/frames/86407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112372", "images": ["AURORA/data/something/frames/123478/first.jpg", "AURORA/data/something/frames/123478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair clip, toy idol and battery on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112373", "images": ["AURORA/data/something/frames/211586/first.jpg", "AURORA/data/something/frames/211586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon closer to stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000112374", "images": ["AURORA/data/something/frames/55874/first.jpg", "AURORA/data/something/frames/55874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the back cover of a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000112375", "images": ["AURORA/data/something/frames/77668/first.jpg", "AURORA/data/something/frames/77668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000112376", "images": ["AURORA/data/something/frames/79321/first.jpg", "AURORA/data/something/frames/79321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112377", "images": ["AURORA/data/something/frames/16665/first.jpg", "AURORA/data/something/frames/16665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a penny with a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000112378", "images": ["AURORA/data/something/frames/70008/first.jpg", "AURORA/data/something/frames/70008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing joystick with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112379", "images": ["AURORA/data/something/frames/182537/first.jpg", "AURORA/data/something/frames/182537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112380", "images": ["AURORA/data/something/frames/90592/first.jpg", "AURORA/data/something/frames/90592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112381", "images": ["AURORA/data/something/frames/54649/first.jpg", "AURORA/data/something/frames/54649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book onto a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112382", "images": ["AURORA/data/something/frames/69453/first.jpg", "AURORA/data/something/frames/69453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping die up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112383", "images": ["AURORA/data/something/frames/99183/first.jpg", "AURORA/data/something/frames/99183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler and puncher closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112384", "images": ["AURORA/data/something/frames/92536/first.jpg", "AURORA/data/something/frames/92536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112385", "images": ["AURORA/data/something/frames/161588/first.jpg", "AURORA/data/something/frames/161588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112386", "images": ["AURORA/data/something/frames/7474/first.jpg", "AURORA/data/something/frames/7474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup from coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000112387", "images": ["AURORA/data/something/frames/165846/first.jpg", "AURORA/data/something/frames/165846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112388", "images": ["AURORA/data/something/frames/193958/first.jpg", "AURORA/data/something/frames/193958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: red marker colliding with blue marker and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112389", "images": ["AURORA/data/something/frames/27512/first.jpg", "AURORA/data/something/frames/27512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112390", "images": ["AURORA/data/something/frames/188276/first.jpg", "AURORA/data/something/frames/188276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cigarette lighter with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112391", "images": ["AURORA/data/something/frames/204623/first.jpg", "AURORA/data/something/frames/204623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of tennis ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000112392", "images": ["AURORA/data/something/frames/68903/first.jpg", "AURORA/data/something/frames/68903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending candle until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112393", "images": ["AURORA/data/something/frames/75628/first.jpg", "AURORA/data/something/frames/75628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112394", "images": ["AURORA/data/something/frames/81852/first.jpg", "AURORA/data/something/frames/81852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing receipt into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112395", "images": ["AURORA/data/something/frames/157454/first.jpg", "AURORA/data/something/frames/157454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a pillow in a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112396", "images": ["AURORA/data/something/frames/22937/first.jpg", "AURORA/data/something/frames/22937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 books onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112397", "images": ["AURORA/data/something/frames/198806/first.jpg", "AURORA/data/something/frames/198806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112398", "images": ["AURORA/data/something/frames/135586/first.jpg", "AURORA/data/something/frames/135586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass and keys on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112399", "images": ["AURORA/data/something/frames/69392/first.jpg", "AURORA/data/something/frames/69392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000112400", "images": ["AURORA/data/something/frames/149338/first.jpg", "AURORA/data/something/frames/149338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and cup closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112401", "images": ["AURORA/data/something/frames/201811/first.jpg", "AURORA/data/something/frames/201811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112402", "images": ["AURORA/data/something/frames/199206/first.jpg", "AURORA/data/something/frames/199206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black disc case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112403", "images": ["AURORA/data/something/frames/110594/first.jpg", "AURORA/data/something/frames/110594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shaver from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112404", "images": ["AURORA/data/something/frames/24623/first.jpg", "AURORA/data/something/frames/24623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cufflinks with a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112405", "images": ["AURORA/data/something/frames/64267/first.jpg", "AURORA/data/something/frames/64267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book onto can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112406", "images": ["AURORA/data/something/frames/32654/first.jpg", "AURORA/data/something/frames/32654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving figurine across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112407", "images": ["AURORA/data/something/frames/217678/first.jpg", "AURORA/data/something/frames/217678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112408", "images": ["AURORA/data/something/frames/71008/first.jpg", "AURORA/data/something/frames/71008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking nail polish so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112409", "images": ["AURORA/data/something/frames/94380/first.jpg", "AURORA/data/something/frames/94380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112410", "images": ["AURORA/data/something/frames/77208/first.jpg", "AURORA/data/something/frames/77208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112411", "images": ["AURORA/data/something/frames/136909/first.jpg", "AURORA/data/something/frames/136909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112412", "images": ["AURORA/data/something/frames/174077/first.jpg", "AURORA/data/something/frames/174077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112413", "images": ["AURORA/data/something/frames/28931/first.jpg", "AURORA/data/something/frames/28931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking fan pole so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112414", "images": ["AURORA/data/something/frames/161387/first.jpg", "AURORA/data/something/frames/161387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112415", "images": ["AURORA/data/something/frames/46164/first.jpg", "AURORA/data/something/frames/46164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sun glasses into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000112416", "images": ["AURORA/data/something/frames/204706/first.jpg", "AURORA/data/something/frames/204706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112417", "images": ["AURORA/data/something/frames/42068/first.jpg", "AURORA/data/something/frames/42068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112418", "images": ["AURORA/data/something/frames/5709/first.jpg", "AURORA/data/something/frames/5709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112419", "images": ["AURORA/data/something/frames/153520/first.jpg", "AURORA/data/something/frames/153520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112420", "images": ["AURORA/data/something/frames/175280/first.jpg", "AURORA/data/something/frames/175280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on the edge of box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112421", "images": ["AURORA/data/something/frames/1489/first.jpg", "AURORA/data/something/frames/1489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a candle with a key"}, {"from": "gpt", "value": ""}]} +{"id": "000000112422", "images": ["AURORA/data/something/frames/208897/first.jpg", "AURORA/data/something/frames/208897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with mobile phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112423", "images": ["AURORA/data/something/frames/173377/first.jpg", "AURORA/data/something/frames/173377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112424", "images": ["AURORA/data/something/frames/12565/first.jpg", "AURORA/data/something/frames/12565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112425", "images": ["AURORA/data/something/frames/201860/first.jpg", "AURORA/data/something/frames/201860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a speaker over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112426", "images": ["AURORA/data/something/frames/69324/first.jpg", "AURORA/data/something/frames/69324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112427", "images": ["AURORA/data/something/frames/147227/first.jpg", "AURORA/data/something/frames/147227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000112428", "images": ["AURORA/data/something/frames/128777/first.jpg", "AURORA/data/something/frames/128777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming small book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112429", "images": ["AURORA/data/something/frames/180703/first.jpg", "AURORA/data/something/frames/180703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112430", "images": ["AURORA/data/something/frames/199977/first.jpg", "AURORA/data/something/frames/199977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112431", "images": ["AURORA/data/something/frames/133702/first.jpg", "AURORA/data/something/frames/133702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking nailpolish up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112432", "images": ["AURORA/data/something/frames/46397/first.jpg", "AURORA/data/something/frames/46397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112433", "images": ["AURORA/data/something/frames/159589/first.jpg", "AURORA/data/something/frames/159589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming small book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112434", "images": ["AURORA/data/something/frames/23170/first.jpg", "AURORA/data/something/frames/23170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lever of hole punch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112435", "images": ["AURORA/data/something/frames/190404/first.jpg", "AURORA/data/something/frames/190404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting calculator with pink coloured hair clip on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112436", "images": ["AURORA/data/something/frames/155078/first.jpg", "AURORA/data/something/frames/155078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle and a candle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112437", "images": ["AURORA/data/something/frames/51959/first.jpg", "AURORA/data/something/frames/51959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling toothbrushes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112438", "images": ["AURORA/data/something/frames/17226/first.jpg", "AURORA/data/something/frames/17226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 napkins"}, {"from": "gpt", "value": ""}]} +{"id": "000000112439", "images": ["AURORA/data/something/frames/175036/first.jpg", "AURORA/data/something/frames/175036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112440", "images": ["AURORA/data/something/frames/72216/first.jpg", "AURORA/data/something/frames/72216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bag so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112441", "images": ["AURORA/data/something/frames/74960/first.jpg", "AURORA/data/something/frames/74960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling gymnastic bands from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112442", "images": ["AURORA/data/something/frames/117452/first.jpg", "AURORA/data/something/frames/117452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112443", "images": ["AURORA/data/something/frames/203338/first.jpg", "AURORA/data/something/frames/203338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112444", "images": ["AURORA/data/something/frames/131553/first.jpg", "AURORA/data/something/frames/131553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112445", "images": ["AURORA/data/something/frames/61122/first.jpg", "AURORA/data/something/frames/61122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112446", "images": ["AURORA/data/something/frames/102724/first.jpg", "AURORA/data/something/frames/102724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112447", "images": ["AURORA/data/something/frames/62808/first.jpg", "AURORA/data/something/frames/62808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112448", "images": ["AURORA/data/something/frames/156897/first.jpg", "AURORA/data/something/frames/156897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000112449", "images": ["AURORA/data/something/frames/70876/first.jpg", "AURORA/data/something/frames/70876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange being deflected from wascher"}, {"from": "gpt", "value": ""}]} +{"id": "000000112450", "images": ["AURORA/data/something/frames/125341/first.jpg", "AURORA/data/something/frames/125341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pencil case over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112451", "images": ["AURORA/data/something/frames/51349/first.jpg", "AURORA/data/something/frames/51349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112452", "images": ["AURORA/data/something/frames/179941/first.jpg", "AURORA/data/something/frames/179941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting four screws onto magnetic tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000112453", "images": ["AURORA/data/something/frames/114937/first.jpg", "AURORA/data/something/frames/114937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving can away from funnel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112454", "images": ["AURORA/data/something/frames/127517/first.jpg", "AURORA/data/something/frames/127517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a bowl with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112455", "images": ["AURORA/data/something/frames/207800/first.jpg", "AURORA/data/something/frames/207800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112456", "images": ["AURORA/data/something/frames/30972/first.jpg", "AURORA/data/something/frames/30972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112457", "images": ["AURORA/data/something/frames/101032/first.jpg", "AURORA/data/something/frames/101032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass underneath a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000112458", "images": ["AURORA/data/something/frames/45776/first.jpg", "AURORA/data/something/frames/45776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a chair with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112459", "images": ["AURORA/data/something/frames/196334/first.jpg", "AURORA/data/something/frames/196334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair band next to tablet box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112460", "images": ["AURORA/data/something/frames/99863/first.jpg", "AURORA/data/something/frames/99863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112461", "images": ["AURORA/data/something/frames/13168/first.jpg", "AURORA/data/something/frames/13168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing colorful scarf from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112462", "images": ["AURORA/data/something/frames/78718/first.jpg", "AURORA/data/something/frames/78718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wipe out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112463", "images": ["AURORA/data/something/frames/80006/first.jpg", "AURORA/data/something/frames/80006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping bottle cap off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112464", "images": ["AURORA/data/something/frames/89840/first.jpg", "AURORA/data/something/frames/89840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112465", "images": ["AURORA/data/something/frames/134316/first.jpg", "AURORA/data/something/frames/134316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) body of stethescope"}, {"from": "gpt", "value": ""}]} +{"id": "000000112466", "images": ["AURORA/data/something/frames/182267/first.jpg", "AURORA/data/something/frames/182267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112467", "images": ["AURORA/data/something/frames/132986/first.jpg", "AURORA/data/something/frames/132986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from person with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112468", "images": ["AURORA/data/something/frames/158027/first.jpg", "AURORA/data/something/frames/158027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding calendar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112469", "images": ["AURORA/data/something/frames/216706/first.jpg", "AURORA/data/something/frames/216706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat, box and glasses on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112470", "images": ["AURORA/data/something/frames/154658/first.jpg", "AURORA/data/something/frames/154658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000112471", "images": ["AURORA/data/something/frames/145892/first.jpg", "AURORA/data/something/frames/145892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the arm of a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000112472", "images": ["AURORA/data/something/frames/180510/first.jpg", "AURORA/data/something/frames/180510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen away from a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112473", "images": ["AURORA/data/something/frames/47351/first.jpg", "AURORA/data/something/frames/47351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112474", "images": ["AURORA/data/something/frames/125602/first.jpg", "AURORA/data/something/frames/125602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairclip on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112475", "images": ["AURORA/data/something/frames/192997/first.jpg", "AURORA/data/something/frames/192997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112476", "images": ["AURORA/data/something/frames/79647/first.jpg", "AURORA/data/something/frames/79647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112477", "images": ["AURORA/data/something/frames/199158/first.jpg", "AURORA/data/something/frames/199158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening clothes dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112478", "images": ["AURORA/data/something/frames/10647/first.jpg", "AURORA/data/something/frames/10647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic tin, watch and clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112479", "images": ["AURORA/data/something/frames/115444/first.jpg", "AURORA/data/something/frames/115444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wallet with a medicine bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112480", "images": ["AURORA/data/something/frames/200114/first.jpg", "AURORA/data/something/frames/200114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from painting with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112481", "images": ["AURORA/data/something/frames/109434/first.jpg", "AURORA/data/something/frames/109434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler away from duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000112482", "images": ["AURORA/data/something/frames/42322/first.jpg", "AURORA/data/something/frames/42322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissue box off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112483", "images": ["AURORA/data/something/frames/141962/first.jpg", "AURORA/data/something/frames/141962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet closer to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112484", "images": ["AURORA/data/something/frames/165808/first.jpg", "AURORA/data/something/frames/165808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic case up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112485", "images": ["AURORA/data/something/frames/19406/first.jpg", "AURORA/data/something/frames/19406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a glove up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112486", "images": ["AURORA/data/something/frames/175215/first.jpg", "AURORA/data/something/frames/175215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tailoring tap with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112487", "images": ["AURORA/data/something/frames/105727/first.jpg", "AURORA/data/something/frames/105727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen cap onto pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112488", "images": ["AURORA/data/something/frames/153038/first.jpg", "AURORA/data/something/frames/153038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112489", "images": ["AURORA/data/something/frames/32836/first.jpg", "AURORA/data/something/frames/32836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112490", "images": ["AURORA/data/something/frames/63388/first.jpg", "AURORA/data/something/frames/63388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112491", "images": ["AURORA/data/something/frames/215516/first.jpg", "AURORA/data/something/frames/215516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lotion into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112492", "images": ["AURORA/data/something/frames/1268/first.jpg", "AURORA/data/something/frames/1268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112493", "images": ["AURORA/data/something/frames/48774/first.jpg", "AURORA/data/something/frames/48774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming colorful scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000112494", "images": ["AURORA/data/something/frames/86665/first.jpg", "AURORA/data/something/frames/86665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil colliding with a pack of tissu and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112495", "images": ["AURORA/data/something/frames/40673/first.jpg", "AURORA/data/something/frames/40673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into bedsheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112496", "images": ["AURORA/data/something/frames/190378/first.jpg", "AURORA/data/something/frames/190378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112497", "images": ["AURORA/data/something/frames/9701/first.jpg", "AURORA/data/something/frames/9701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112498", "images": ["AURORA/data/something/frames/187933/first.jpg", "AURORA/data/something/frames/187933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristband up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112499", "images": ["AURORA/data/something/frames/123812/first.jpg", "AURORA/data/something/frames/123812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112500", "images": ["AURORA/data/something/frames/24965/first.jpg", "AURORA/data/something/frames/24965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a doll out of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112501", "images": ["AURORA/data/something/frames/15579/first.jpg", "AURORA/data/something/frames/15579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a snowman so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112502", "images": ["AURORA/data/something/frames/67970/first.jpg", "AURORA/data/something/frames/67970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container and container so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112503", "images": ["AURORA/data/something/frames/132151/first.jpg", "AURORA/data/something/frames/132151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing advent calendar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112504", "images": ["AURORA/data/something/frames/74431/first.jpg", "AURORA/data/something/frames/74431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into phone charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000112505", "images": ["AURORA/data/something/frames/101676/first.jpg", "AURORA/data/something/frames/101676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable of charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000112506", "images": ["AURORA/data/something/frames/133130/first.jpg", "AURORA/data/something/frames/133130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a banana onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112507", "images": ["AURORA/data/something/frames/81505/first.jpg", "AURORA/data/something/frames/81505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying dental floss on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112508", "images": ["AURORA/data/something/frames/156153/first.jpg", "AURORA/data/something/frames/156153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112509", "images": ["AURORA/data/something/frames/11134/first.jpg", "AURORA/data/something/frames/11134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112510", "images": ["AURORA/data/something/frames/185387/first.jpg", "AURORA/data/something/frames/185387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112511", "images": ["AURORA/data/something/frames/149200/first.jpg", "AURORA/data/something/frames/149200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112512", "images": ["AURORA/data/something/frames/52832/first.jpg", "AURORA/data/something/frames/52832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lamp knob"}, {"from": "gpt", "value": ""}]} +{"id": "000000112513", "images": ["AURORA/data/something/frames/27728/first.jpg", "AURORA/data/something/frames/27728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into extension cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112514", "images": ["AURORA/data/something/frames/215000/first.jpg", "AURORA/data/something/frames/215000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112515", "images": ["AURORA/data/something/frames/17337/first.jpg", "AURORA/data/something/frames/17337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a skateboard colliding with a toy car and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112516", "images": ["AURORA/data/something/frames/150712/first.jpg", "AURORA/data/something/frames/150712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112517", "images": ["AURORA/data/something/frames/172411/first.jpg", "AURORA/data/something/frames/172411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112518", "images": ["AURORA/data/something/frames/154959/first.jpg", "AURORA/data/something/frames/154959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching coconuts with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112519", "images": ["AURORA/data/something/frames/144629/first.jpg", "AURORA/data/something/frames/144629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and mouse away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112520", "images": ["AURORA/data/something/frames/210725/first.jpg", "AURORA/data/something/frames/210725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup onto the television"}, {"from": "gpt", "value": ""}]} +{"id": "000000112521", "images": ["AURORA/data/something/frames/3797/first.jpg", "AURORA/data/something/frames/3797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112522", "images": ["AURORA/data/something/frames/52720/first.jpg", "AURORA/data/something/frames/52720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass onto a tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000112523", "images": ["AURORA/data/something/frames/48888/first.jpg", "AURORA/data/something/frames/48888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking mobile up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112524", "images": ["AURORA/data/something/frames/180149/first.jpg", "AURORA/data/something/frames/180149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112525", "images": ["AURORA/data/something/frames/146836/first.jpg", "AURORA/data/something/frames/146836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112526", "images": ["AURORA/data/something/frames/161271/first.jpg", "AURORA/data/something/frames/161271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cleaning fluid off of goggles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112527", "images": ["AURORA/data/something/frames/158283/first.jpg", "AURORA/data/something/frames/158283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter and scissors away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112528", "images": ["AURORA/data/something/frames/53727/first.jpg", "AURORA/data/something/frames/53727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lid, saucepan and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112529", "images": ["AURORA/data/something/frames/73175/first.jpg", "AURORA/data/something/frames/73175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging the usb cable into the laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112530", "images": ["AURORA/data/something/frames/106928/first.jpg", "AURORA/data/something/frames/106928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ice tray colliding with thermocol and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112531", "images": ["AURORA/data/something/frames/139391/first.jpg", "AURORA/data/something/frames/139391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a matchbox away from a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000112532", "images": ["AURORA/data/something/frames/164792/first.jpg", "AURORA/data/something/frames/164792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yellow colour pen among the many colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112533", "images": ["AURORA/data/something/frames/144262/first.jpg", "AURORA/data/something/frames/144262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112534", "images": ["AURORA/data/something/frames/207471/first.jpg", "AURORA/data/something/frames/207471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling colony onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112535", "images": ["AURORA/data/something/frames/158786/first.jpg", "AURORA/data/something/frames/158786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112536", "images": ["AURORA/data/something/frames/216472/first.jpg", "AURORA/data/something/frames/216472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking red pot holder up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112537", "images": ["AURORA/data/something/frames/100180/first.jpg", "AURORA/data/something/frames/100180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 toy wheels"}, {"from": "gpt", "value": ""}]} +{"id": "000000112538", "images": ["AURORA/data/something/frames/33185/first.jpg", "AURORA/data/something/frames/33185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading matches onto the freezer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112539", "images": ["AURORA/data/something/frames/18622/first.jpg", "AURORA/data/something/frames/18622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112540", "images": ["AURORA/data/something/frames/130939/first.jpg", "AURORA/data/something/frames/130939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing 4 layers of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112541", "images": ["AURORA/data/something/frames/38014/first.jpg", "AURORA/data/something/frames/38014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying guitar pick in rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000112542", "images": ["AURORA/data/something/frames/151203/first.jpg", "AURORA/data/something/frames/151203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wipe wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112543", "images": ["AURORA/data/something/frames/69177/first.jpg", "AURORA/data/something/frames/69177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000112544", "images": ["AURORA/data/something/frames/108191/first.jpg", "AURORA/data/something/frames/108191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112545", "images": ["AURORA/data/something/frames/122550/first.jpg", "AURORA/data/something/frames/122550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dental floss and nail clippers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112546", "images": ["AURORA/data/something/frames/99048/first.jpg", "AURORA/data/something/frames/99048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112547", "images": ["AURORA/data/something/frames/38477/first.jpg", "AURORA/data/something/frames/38477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112548", "images": ["AURORA/data/something/frames/112316/first.jpg", "AURORA/data/something/frames/112316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting digger with car"}, {"from": "gpt", "value": ""}]} +{"id": "000000112549", "images": ["AURORA/data/something/frames/188672/first.jpg", "AURORA/data/something/frames/188672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112550", "images": ["AURORA/data/something/frames/57530/first.jpg", "AURORA/data/something/frames/57530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tissue out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112551", "images": ["AURORA/data/something/frames/60990/first.jpg", "AURORA/data/something/frames/60990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping clay box into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112552", "images": ["AURORA/data/something/frames/30233/first.jpg", "AURORA/data/something/frames/30233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112553", "images": ["AURORA/data/something/frames/186133/first.jpg", "AURORA/data/something/frames/186133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 smoothie, ashtray, paper, monster"}, {"from": "gpt", "value": ""}]} +{"id": "000000112554", "images": ["AURORA/data/something/frames/211653/first.jpg", "AURORA/data/something/frames/211653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112555", "images": ["AURORA/data/something/frames/208741/first.jpg", "AURORA/data/something/frames/208741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing water tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112556", "images": ["AURORA/data/something/frames/178202/first.jpg", "AURORA/data/something/frames/178202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112557", "images": ["AURORA/data/something/frames/116810/first.jpg", "AURORA/data/something/frames/116810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112558", "images": ["AURORA/data/something/frames/106519/first.jpg", "AURORA/data/something/frames/106519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lid into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112559", "images": ["AURORA/data/something/frames/66165/first.jpg", "AURORA/data/something/frames/66165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking magnifying glass from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112560", "images": ["AURORA/data/something/frames/91110/first.jpg", "AURORA/data/something/frames/91110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sharpie so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112561", "images": ["AURORA/data/something/frames/207558/first.jpg", "AURORA/data/something/frames/207558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a stick up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112562", "images": ["AURORA/data/something/frames/41845/first.jpg", "AURORA/data/something/frames/41845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112563", "images": ["AURORA/data/something/frames/145994/first.jpg", "AURORA/data/something/frames/145994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000112564", "images": ["AURORA/data/something/frames/144449/first.jpg", "AURORA/data/something/frames/144449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112565", "images": ["AURORA/data/something/frames/83759/first.jpg", "AURORA/data/something/frames/83759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112566", "images": ["AURORA/data/something/frames/218125/first.jpg", "AURORA/data/something/frames/218125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000112567", "images": ["AURORA/data/something/frames/58427/first.jpg", "AURORA/data/something/frames/58427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into a group of pen like objects"}, {"from": "gpt", "value": ""}]} +{"id": "000000112568", "images": ["AURORA/data/something/frames/72951/first.jpg", "AURORA/data/something/frames/72951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112569", "images": ["AURORA/data/something/frames/2583/first.jpg", "AURORA/data/something/frames/2583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tennis ball being deflected from bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112570", "images": ["AURORA/data/something/frames/49346/first.jpg", "AURORA/data/something/frames/49346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112571", "images": ["AURORA/data/something/frames/29848/first.jpg", "AURORA/data/something/frames/29848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112572", "images": ["AURORA/data/something/frames/72618/first.jpg", "AURORA/data/something/frames/72618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling spoon from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112573", "images": ["AURORA/data/something/frames/16026/first.jpg", "AURORA/data/something/frames/16026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering onion with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112574", "images": ["AURORA/data/something/frames/179309/first.jpg", "AURORA/data/something/frames/179309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dish towel next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112575", "images": ["AURORA/data/something/frames/106441/first.jpg", "AURORA/data/something/frames/106441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a water bottle out of a refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000112576", "images": ["AURORA/data/something/frames/75293/first.jpg", "AURORA/data/something/frames/75293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of marker without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112577", "images": ["AURORA/data/something/frames/116568/first.jpg", "AURORA/data/something/frames/116568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112578", "images": ["AURORA/data/something/frames/81817/first.jpg", "AURORA/data/something/frames/81817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jam-box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112579", "images": ["AURORA/data/something/frames/148506/first.jpg", "AURORA/data/something/frames/148506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112580", "images": ["AURORA/data/something/frames/163289/first.jpg", "AURORA/data/something/frames/163289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112581", "images": ["AURORA/data/something/frames/134957/first.jpg", "AURORA/data/something/frames/134957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112582", "images": ["AURORA/data/something/frames/161868/first.jpg", "AURORA/data/something/frames/161868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking glasses so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112583", "images": ["AURORA/data/something/frames/2034/first.jpg", "AURORA/data/something/frames/2034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into laundry basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112584", "images": ["AURORA/data/something/frames/74302/first.jpg", "AURORA/data/something/frames/74302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112585", "images": ["AURORA/data/something/frames/10033/first.jpg", "AURORA/data/something/frames/10033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning perfume upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112586", "images": ["AURORA/data/something/frames/199365/first.jpg", "AURORA/data/something/frames/199365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from rice cooker with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112587", "images": ["AURORA/data/something/frames/140635/first.jpg", "AURORA/data/something/frames/140635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112588", "images": ["AURORA/data/something/frames/19044/first.jpg", "AURORA/data/something/frames/19044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter next to other lighters"}, {"from": "gpt", "value": ""}]} +{"id": "000000112589", "images": ["AURORA/data/something/frames/31255/first.jpg", "AURORA/data/something/frames/31255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112590", "images": ["AURORA/data/something/frames/203858/first.jpg", "AURORA/data/something/frames/203858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mail box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112591", "images": ["AURORA/data/something/frames/2774/first.jpg", "AURORA/data/something/frames/2774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dishcloth upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112592", "images": ["AURORA/data/something/frames/128480/first.jpg", "AURORA/data/something/frames/128480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing zipper bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112593", "images": ["AURORA/data/something/frames/143448/first.jpg", "AURORA/data/something/frames/143448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112594", "images": ["AURORA/data/something/frames/182735/first.jpg", "AURORA/data/something/frames/182735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112595", "images": ["AURORA/data/something/frames/91157/first.jpg", "AURORA/data/something/frames/91157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112596", "images": ["AURORA/data/something/frames/107791/first.jpg", "AURORA/data/something/frames/107791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tv remote with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112597", "images": ["AURORA/data/something/frames/97856/first.jpg", "AURORA/data/something/frames/97856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plastic bag into glass bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112598", "images": ["AURORA/data/something/frames/18746/first.jpg", "AURORA/data/something/frames/18746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with a canister on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112599", "images": ["AURORA/data/something/frames/153947/first.jpg", "AURORA/data/something/frames/153947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112600", "images": ["AURORA/data/something/frames/203147/first.jpg", "AURORA/data/something/frames/203147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors out of sewing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112601", "images": ["AURORA/data/something/frames/112864/first.jpg", "AURORA/data/something/frames/112864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting forks together on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112602", "images": ["AURORA/data/something/frames/98666/first.jpg", "AURORA/data/something/frames/98666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can next to a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112603", "images": ["AURORA/data/something/frames/9250/first.jpg", "AURORA/data/something/frames/9250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soap on the edge of the table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112604", "images": ["AURORA/data/something/frames/163803/first.jpg", "AURORA/data/something/frames/163803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book with metal strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000112605", "images": ["AURORA/data/something/frames/22039/first.jpg", "AURORA/data/something/frames/22039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red hair band with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112606", "images": ["AURORA/data/something/frames/88256/first.jpg", "AURORA/data/something/frames/88256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with apple on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112607", "images": ["AURORA/data/something/frames/30020/first.jpg", "AURORA/data/something/frames/30020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a rubbik cube and rubbik cube closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112608", "images": ["AURORA/data/something/frames/12895/first.jpg", "AURORA/data/something/frames/12895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112609", "images": ["AURORA/data/something/frames/175162/first.jpg", "AURORA/data/something/frames/175162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shell into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112610", "images": ["AURORA/data/something/frames/48438/first.jpg", "AURORA/data/something/frames/48438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000112611", "images": ["AURORA/data/something/frames/59950/first.jpg", "AURORA/data/something/frames/59950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112612", "images": ["AURORA/data/something/frames/120144/first.jpg", "AURORA/data/something/frames/120144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking timepiece from well wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112613", "images": ["AURORA/data/something/frames/70779/first.jpg", "AURORA/data/something/frames/70779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112614", "images": ["AURORA/data/something/frames/120745/first.jpg", "AURORA/data/something/frames/120745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000112615", "images": ["AURORA/data/something/frames/215878/first.jpg", "AURORA/data/something/frames/215878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112616", "images": ["AURORA/data/something/frames/174279/first.jpg", "AURORA/data/something/frames/174279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pulling power bank from left to right from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112617", "images": ["AURORA/data/something/frames/69501/first.jpg", "AURORA/data/something/frames/69501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112618", "images": ["AURORA/data/something/frames/209979/first.jpg", "AURORA/data/something/frames/209979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a figutine into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112619", "images": ["AURORA/data/something/frames/81972/first.jpg", "AURORA/data/something/frames/81972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112620", "images": ["AURORA/data/something/frames/65444/first.jpg", "AURORA/data/something/frames/65444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning something upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112621", "images": ["AURORA/data/something/frames/113588/first.jpg", "AURORA/data/something/frames/113588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112622", "images": ["AURORA/data/something/frames/102796/first.jpg", "AURORA/data/something/frames/102796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000112623", "images": ["AURORA/data/something/frames/115530/first.jpg", "AURORA/data/something/frames/115530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pen and blue pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112624", "images": ["AURORA/data/something/frames/200339/first.jpg", "AURORA/data/something/frames/200339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing white paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112625", "images": ["AURORA/data/something/frames/56093/first.jpg", "AURORA/data/something/frames/56093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering the watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112626", "images": ["AURORA/data/something/frames/86998/first.jpg", "AURORA/data/something/frames/86998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy-car and toy-car so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112627", "images": ["AURORA/data/something/frames/147771/first.jpg", "AURORA/data/something/frames/147771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112628", "images": ["AURORA/data/something/frames/57640/first.jpg", "AURORA/data/something/frames/57640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a lid in salad"}, {"from": "gpt", "value": ""}]} +{"id": "000000112629", "images": ["AURORA/data/something/frames/141476/first.jpg", "AURORA/data/something/frames/141476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box of juice so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112630", "images": ["AURORA/data/something/frames/208285/first.jpg", "AURORA/data/something/frames/208285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112631", "images": ["AURORA/data/something/frames/166583/first.jpg", "AURORA/data/something/frames/166583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112632", "images": ["AURORA/data/something/frames/22037/first.jpg", "AURORA/data/something/frames/22037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lid off of iid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112633", "images": ["AURORA/data/something/frames/44955/first.jpg", "AURORA/data/something/frames/44955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a plank of wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000112634", "images": ["AURORA/data/something/frames/89116/first.jpg", "AURORA/data/something/frames/89116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112635", "images": ["AURORA/data/something/frames/46733/first.jpg", "AURORA/data/something/frames/46733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning empty coffee mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112636", "images": ["AURORA/data/something/frames/136527/first.jpg", "AURORA/data/something/frames/136527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000112637", "images": ["AURORA/data/something/frames/125325/first.jpg", "AURORA/data/something/frames/125325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000112638", "images": ["AURORA/data/something/frames/3921/first.jpg", "AURORA/data/something/frames/3921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering apple tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112639", "images": ["AURORA/data/something/frames/113793/first.jpg", "AURORA/data/something/frames/113793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching back to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112640", "images": ["AURORA/data/something/frames/64064/first.jpg", "AURORA/data/something/frames/64064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112641", "images": ["AURORA/data/something/frames/80326/first.jpg", "AURORA/data/something/frames/80326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112642", "images": ["AURORA/data/something/frames/161298/first.jpg", "AURORA/data/something/frames/161298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass closer to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112643", "images": ["AURORA/data/something/frames/170836/first.jpg", "AURORA/data/something/frames/170836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112644", "images": ["AURORA/data/something/frames/88869/first.jpg", "AURORA/data/something/frames/88869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112645", "images": ["AURORA/data/something/frames/90888/first.jpg", "AURORA/data/something/frames/90888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving microscope and coin closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112646", "images": ["AURORA/data/something/frames/47113/first.jpg", "AURORA/data/something/frames/47113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering glass with cotton towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112647", "images": ["AURORA/data/something/frames/100990/first.jpg", "AURORA/data/something/frames/100990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from small green ball with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112648", "images": ["AURORA/data/something/frames/76109/first.jpg", "AURORA/data/something/frames/76109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112649", "images": ["AURORA/data/something/frames/106076/first.jpg", "AURORA/data/something/frames/106076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 6 pen onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112650", "images": ["AURORA/data/something/frames/97551/first.jpg", "AURORA/data/something/frames/97551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a vase upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112651", "images": ["AURORA/data/something/frames/188053/first.jpg", "AURORA/data/something/frames/188053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stick into small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112652", "images": ["AURORA/data/something/frames/198413/first.jpg", "AURORA/data/something/frames/198413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching charger adapter to charging socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112653", "images": ["AURORA/data/something/frames/54495/first.jpg", "AURORA/data/something/frames/54495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112654", "images": ["AURORA/data/something/frames/200580/first.jpg", "AURORA/data/something/frames/200580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112655", "images": ["AURORA/data/something/frames/157374/first.jpg", "AURORA/data/something/frames/157374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a wire into an electrical outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112656", "images": ["AURORA/data/something/frames/215970/first.jpg", "AURORA/data/something/frames/215970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112657", "images": ["AURORA/data/something/frames/68279/first.jpg", "AURORA/data/something/frames/68279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing socks into cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000112658", "images": ["AURORA/data/something/frames/189074/first.jpg", "AURORA/data/something/frames/189074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112659", "images": ["AURORA/data/something/frames/115728/first.jpg", "AURORA/data/something/frames/115728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) pull part of blinds"}, {"from": "gpt", "value": ""}]} +{"id": "000000112660", "images": ["AURORA/data/something/frames/69581/first.jpg", "AURORA/data/something/frames/69581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying peanut butter on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112661", "images": ["AURORA/data/something/frames/213919/first.jpg", "AURORA/data/something/frames/213919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000112662", "images": ["AURORA/data/something/frames/117326/first.jpg", "AURORA/data/something/frames/117326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000112663", "images": ["AURORA/data/something/frames/139795/first.jpg", "AURORA/data/something/frames/139795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cap onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112664", "images": ["AURORA/data/something/frames/201087/first.jpg", "AURORA/data/something/frames/201087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book of many books"}, {"from": "gpt", "value": ""}]} +{"id": "000000112665", "images": ["AURORA/data/something/frames/69208/first.jpg", "AURORA/data/something/frames/69208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble underneath glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112666", "images": ["AURORA/data/something/frames/145448/first.jpg", "AURORA/data/something/frames/145448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping container next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112667", "images": ["AURORA/data/something/frames/167180/first.jpg", "AURORA/data/something/frames/167180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sunglasses and keys closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112668", "images": ["AURORA/data/something/frames/47117/first.jpg", "AURORA/data/something/frames/47117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dvd closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112669", "images": ["AURORA/data/something/frames/122692/first.jpg", "AURORA/data/something/frames/122692/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112670", "images": ["AURORA/data/something/frames/212311/first.jpg", "AURORA/data/something/frames/212311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112671", "images": ["AURORA/data/something/frames/168904/first.jpg", "AURORA/data/something/frames/168904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000112672", "images": ["AURORA/data/something/frames/210447/first.jpg", "AURORA/data/something/frames/210447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an adapter into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112673", "images": ["AURORA/data/something/frames/31674/first.jpg", "AURORA/data/something/frames/31674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112674", "images": ["AURORA/data/something/frames/28027/first.jpg", "AURORA/data/something/frames/28027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping glass bottle onto waste basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112675", "images": ["AURORA/data/something/frames/2767/first.jpg", "AURORA/data/something/frames/2767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cassette out of player"}, {"from": "gpt", "value": ""}]} +{"id": "000000112676", "images": ["AURORA/data/something/frames/47816/first.jpg", "AURORA/data/something/frames/47816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000112677", "images": ["AURORA/data/something/frames/192407/first.jpg", "AURORA/data/something/frames/192407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass container until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000112678", "images": ["AURORA/data/something/frames/97396/first.jpg", "AURORA/data/something/frames/97396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112679", "images": ["AURORA/data/something/frames/112970/first.jpg", "AURORA/data/something/frames/112970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a battery and powerbank on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112680", "images": ["AURORA/data/something/frames/144676/first.jpg", "AURORA/data/something/frames/144676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone cover so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112681", "images": ["AURORA/data/something/frames/53686/first.jpg", "AURORA/data/something/frames/53686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112682", "images": ["AURORA/data/something/frames/182121/first.jpg", "AURORA/data/something/frames/182121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112683", "images": ["AURORA/data/something/frames/106494/first.jpg", "AURORA/data/something/frames/106494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container and cigarettes away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112684", "images": ["AURORA/data/something/frames/33094/first.jpg", "AURORA/data/something/frames/33094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112685", "images": ["AURORA/data/something/frames/49891/first.jpg", "AURORA/data/something/frames/49891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stapler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112686", "images": ["AURORA/data/something/frames/212064/first.jpg", "AURORA/data/something/frames/212064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112687", "images": ["AURORA/data/something/frames/102661/first.jpg", "AURORA/data/something/frames/102661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin onto face wash"}, {"from": "gpt", "value": ""}]} +{"id": "000000112688", "images": ["AURORA/data/something/frames/17789/first.jpg", "AURORA/data/something/frames/17789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112689", "images": ["AURORA/data/something/frames/12033/first.jpg", "AURORA/data/something/frames/12033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112690", "images": ["AURORA/data/something/frames/153193/first.jpg", "AURORA/data/something/frames/153193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112691", "images": ["AURORA/data/something/frames/88000/first.jpg", "AURORA/data/something/frames/88000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting coconut leaf with stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000112692", "images": ["AURORA/data/something/frames/75848/first.jpg", "AURORA/data/something/frames/75848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a shoe polish on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112693", "images": ["AURORA/data/something/frames/18016/first.jpg", "AURORA/data/something/frames/18016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting christmas tree upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112694", "images": ["AURORA/data/something/frames/41422/first.jpg", "AURORA/data/something/frames/41422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cooked vegetables into pepers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112695", "images": ["AURORA/data/something/frames/219238/first.jpg", "AURORA/data/something/frames/219238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tiger on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112696", "images": ["AURORA/data/something/frames/54658/first.jpg", "AURORA/data/something/frames/54658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors and marker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112697", "images": ["AURORA/data/something/frames/181663/first.jpg", "AURORA/data/something/frames/181663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bed with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112698", "images": ["AURORA/data/something/frames/161906/first.jpg", "AURORA/data/something/frames/161906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of kitchen board"}, {"from": "gpt", "value": ""}]} +{"id": "000000112699", "images": ["AURORA/data/something/frames/69880/first.jpg", "AURORA/data/something/frames/69880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending microphone so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112700", "images": ["AURORA/data/something/frames/145175/first.jpg", "AURORA/data/something/frames/145175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112701", "images": ["AURORA/data/something/frames/20995/first.jpg", "AURORA/data/something/frames/20995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000112702", "images": ["AURORA/data/something/frames/40871/first.jpg", "AURORA/data/something/frames/40871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112703", "images": ["AURORA/data/something/frames/27941/first.jpg", "AURORA/data/something/frames/27941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 board clips"}, {"from": "gpt", "value": ""}]} +{"id": "000000112704", "images": ["AURORA/data/something/frames/75949/first.jpg", "AURORA/data/something/frames/75949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112705", "images": ["AURORA/data/something/frames/143961/first.jpg", "AURORA/data/something/frames/143961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000112706", "images": ["AURORA/data/something/frames/143325/first.jpg", "AURORA/data/something/frames/143325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112707", "images": ["AURORA/data/something/frames/126930/first.jpg", "AURORA/data/something/frames/126930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112708", "images": ["AURORA/data/something/frames/18744/first.jpg", "AURORA/data/something/frames/18744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box of juice behind a box of juice"}, {"from": "gpt", "value": ""}]} +{"id": "000000112709", "images": ["AURORA/data/something/frames/36015/first.jpg", "AURORA/data/something/frames/36015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bag into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112710", "images": ["AURORA/data/something/frames/186572/first.jpg", "AURORA/data/something/frames/186572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112711", "images": ["AURORA/data/something/frames/111926/first.jpg", "AURORA/data/something/frames/111926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112712", "images": ["AURORA/data/something/frames/78533/first.jpg", "AURORA/data/something/frames/78533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a toothpaste so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112713", "images": ["AURORA/data/something/frames/29860/first.jpg", "AURORA/data/something/frames/29860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching wire to adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000112714", "images": ["AURORA/data/something/frames/154433/first.jpg", "AURORA/data/something/frames/154433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112715", "images": ["AURORA/data/something/frames/213734/first.jpg", "AURORA/data/something/frames/213734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000112716", "images": ["AURORA/data/something/frames/27084/first.jpg", "AURORA/data/something/frames/27084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming radiator"}, {"from": "gpt", "value": ""}]} +{"id": "000000112717", "images": ["AURORA/data/something/frames/154533/first.jpg", "AURORA/data/something/frames/154533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to cardreader"}, {"from": "gpt", "value": ""}]} +{"id": "000000112718", "images": ["AURORA/data/something/frames/10430/first.jpg", "AURORA/data/something/frames/10430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching green water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112719", "images": ["AURORA/data/something/frames/157723/first.jpg", "AURORA/data/something/frames/157723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pin and tube closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112720", "images": ["AURORA/data/something/frames/185616/first.jpg", "AURORA/data/something/frames/185616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming a panorama"}, {"from": "gpt", "value": ""}]} +{"id": "000000112721", "images": ["AURORA/data/something/frames/197574/first.jpg", "AURORA/data/something/frames/197574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bar soap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112722", "images": ["AURORA/data/something/frames/177854/first.jpg", "AURORA/data/something/frames/177854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a notebook off of a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112723", "images": ["AURORA/data/something/frames/194035/first.jpg", "AURORA/data/something/frames/194035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lamp on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112724", "images": ["AURORA/data/something/frames/48476/first.jpg", "AURORA/data/something/frames/48476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112725", "images": ["AURORA/data/something/frames/159574/first.jpg", "AURORA/data/something/frames/159574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112726", "images": ["AURORA/data/something/frames/39211/first.jpg", "AURORA/data/something/frames/39211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112727", "images": ["AURORA/data/something/frames/79730/first.jpg", "AURORA/data/something/frames/79730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a plastic tube so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112728", "images": ["AURORA/data/something/frames/110930/first.jpg", "AURORA/data/something/frames/110930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cover of notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000112729", "images": ["AURORA/data/something/frames/9075/first.jpg", "AURORA/data/something/frames/9075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112730", "images": ["AURORA/data/something/frames/41500/first.jpg", "AURORA/data/something/frames/41500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a kettle plug into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112731", "images": ["AURORA/data/something/frames/151158/first.jpg", "AURORA/data/something/frames/151158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking game from shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000112732", "images": ["AURORA/data/something/frames/9665/first.jpg", "AURORA/data/something/frames/9665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 white colour board clips onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112733", "images": ["AURORA/data/something/frames/145867/first.jpg", "AURORA/data/something/frames/145867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping mousse over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112734", "images": ["AURORA/data/something/frames/45321/first.jpg", "AURORA/data/something/frames/45321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging male plug into female plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112735", "images": ["AURORA/data/something/frames/117618/first.jpg", "AURORA/data/something/frames/117618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112736", "images": ["AURORA/data/something/frames/212164/first.jpg", "AURORA/data/something/frames/212164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white deodorant from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112737", "images": ["AURORA/data/something/frames/153589/first.jpg", "AURORA/data/something/frames/153589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112738", "images": ["AURORA/data/something/frames/175464/first.jpg", "AURORA/data/something/frames/175464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming switches"}, {"from": "gpt", "value": ""}]} +{"id": "000000112739", "images": ["AURORA/data/something/frames/169110/first.jpg", "AURORA/data/something/frames/169110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112740", "images": ["AURORA/data/something/frames/185336/first.jpg", "AURORA/data/something/frames/185336/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112741", "images": ["AURORA/data/something/frames/168952/first.jpg", "AURORA/data/something/frames/168952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a toy with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112742", "images": ["AURORA/data/something/frames/185955/first.jpg", "AURORA/data/something/frames/185955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting scissors with sharpener on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112743", "images": ["AURORA/data/something/frames/136034/first.jpg", "AURORA/data/something/frames/136034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000112744", "images": ["AURORA/data/something/frames/32192/first.jpg", "AURORA/data/something/frames/32192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bracelet out of jewelry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112745", "images": ["AURORA/data/something/frames/28710/first.jpg", "AURORA/data/something/frames/28710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112746", "images": ["AURORA/data/something/frames/215824/first.jpg", "AURORA/data/something/frames/215824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper plate just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112747", "images": ["AURORA/data/something/frames/18381/first.jpg", "AURORA/data/something/frames/18381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from earphone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112748", "images": ["AURORA/data/something/frames/57972/first.jpg", "AURORA/data/something/frames/57972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering frog statue"}, {"from": "gpt", "value": ""}]} +{"id": "000000112749", "images": ["AURORA/data/something/frames/144557/first.jpg", "AURORA/data/something/frames/144557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cloths onto carry bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112750", "images": ["AURORA/data/something/frames/175609/first.jpg", "AURORA/data/something/frames/175609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000112751", "images": ["AURORA/data/something/frames/8111/first.jpg", "AURORA/data/something/frames/8111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote from stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000112752", "images": ["AURORA/data/something/frames/159361/first.jpg", "AURORA/data/something/frames/159361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a balloon onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112753", "images": ["AURORA/data/something/frames/157340/first.jpg", "AURORA/data/something/frames/157340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup off of a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000112754", "images": ["AURORA/data/something/frames/54143/first.jpg", "AURORA/data/something/frames/54143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 sticky notepads"}, {"from": "gpt", "value": ""}]} +{"id": "000000112755", "images": ["AURORA/data/something/frames/23849/first.jpg", "AURORA/data/something/frames/23849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112756", "images": ["AURORA/data/something/frames/197920/first.jpg", "AURORA/data/something/frames/197920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking red colour pen out of many colour pens on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112757", "images": ["AURORA/data/something/frames/162669/first.jpg", "AURORA/data/something/frames/162669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112758", "images": ["AURORA/data/something/frames/132397/first.jpg", "AURORA/data/something/frames/132397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ice cream container towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112759", "images": ["AURORA/data/something/frames/213042/first.jpg", "AURORA/data/something/frames/213042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000112760", "images": ["AURORA/data/something/frames/93895/first.jpg", "AURORA/data/something/frames/93895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112761", "images": ["AURORA/data/something/frames/119510/first.jpg", "AURORA/data/something/frames/119510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112762", "images": ["AURORA/data/something/frames/122993/first.jpg", "AURORA/data/something/frames/122993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a comb without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112763", "images": ["AURORA/data/something/frames/174952/first.jpg", "AURORA/data/something/frames/174952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a tin into a handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112764", "images": ["AURORA/data/something/frames/48716/first.jpg", "AURORA/data/something/frames/48716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000112765", "images": ["AURORA/data/something/frames/185586/first.jpg", "AURORA/data/something/frames/185586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000112766", "images": ["AURORA/data/something/frames/205616/first.jpg", "AURORA/data/something/frames/205616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112767", "images": ["AURORA/data/something/frames/127205/first.jpg", "AURORA/data/something/frames/127205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yellow car and white car away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112768", "images": ["AURORA/data/something/frames/81136/first.jpg", "AURORA/data/something/frames/81136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book in front of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000112769", "images": ["AURORA/data/something/frames/2069/first.jpg", "AURORA/data/something/frames/2069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton into tote bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112770", "images": ["AURORA/data/something/frames/167159/first.jpg", "AURORA/data/something/frames/167159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112771", "images": ["AURORA/data/something/frames/109167/first.jpg", "AURORA/data/something/frames/109167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one die to group of dice"}, {"from": "gpt", "value": ""}]} +{"id": "000000112772", "images": ["AURORA/data/something/frames/91078/first.jpg", "AURORA/data/something/frames/91078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wardrobe key with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112773", "images": ["AURORA/data/something/frames/146664/first.jpg", "AURORA/data/something/frames/146664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jeep door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112774", "images": ["AURORA/data/something/frames/901/first.jpg", "AURORA/data/something/frames/901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112775", "images": ["AURORA/data/something/frames/216381/first.jpg", "AURORA/data/something/frames/216381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something with something in it over, so something in it falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112776", "images": ["AURORA/data/something/frames/209343/first.jpg", "AURORA/data/something/frames/209343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into sheath"}, {"from": "gpt", "value": ""}]} +{"id": "000000112777", "images": ["AURORA/data/something/frames/52409/first.jpg", "AURORA/data/something/frames/52409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112778", "images": ["AURORA/data/something/frames/193606/first.jpg", "AURORA/data/something/frames/193606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a yellow marker next to other markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112779", "images": ["AURORA/data/something/frames/171439/first.jpg", "AURORA/data/something/frames/171439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scrap paper away from scrap paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112780", "images": ["AURORA/data/something/frames/160038/first.jpg", "AURORA/data/something/frames/160038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone in front of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112781", "images": ["AURORA/data/something/frames/9094/first.jpg", "AURORA/data/something/frames/9094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping container in front of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112782", "images": ["AURORA/data/something/frames/162986/first.jpg", "AURORA/data/something/frames/162986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112783", "images": ["AURORA/data/something/frames/206768/first.jpg", "AURORA/data/something/frames/206768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112784", "images": ["AURORA/data/something/frames/22865/first.jpg", "AURORA/data/something/frames/22865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112785", "images": ["AURORA/data/something/frames/165580/first.jpg", "AURORA/data/something/frames/165580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stick of deodorant off of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112786", "images": ["AURORA/data/something/frames/181683/first.jpg", "AURORA/data/something/frames/181683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112787", "images": ["AURORA/data/something/frames/184961/first.jpg", "AURORA/data/something/frames/184961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking dinosaur figure so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112788", "images": ["AURORA/data/something/frames/150311/first.jpg", "AURORA/data/something/frames/150311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112789", "images": ["AURORA/data/something/frames/171602/first.jpg", "AURORA/data/something/frames/171602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112790", "images": ["AURORA/data/something/frames/5472/first.jpg", "AURORA/data/something/frames/5472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen, an eraser and a glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112791", "images": ["AURORA/data/something/frames/197841/first.jpg", "AURORA/data/something/frames/197841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking silver plate out of sugar bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112792", "images": ["AURORA/data/something/frames/99266/first.jpg", "AURORA/data/something/frames/99266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling casio from behind of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112793", "images": ["AURORA/data/something/frames/87845/first.jpg", "AURORA/data/something/frames/87845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tv control upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112794", "images": ["AURORA/data/something/frames/80406/first.jpg", "AURORA/data/something/frames/80406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000112795", "images": ["AURORA/data/something/frames/129687/first.jpg", "AURORA/data/something/frames/129687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cap of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112796", "images": ["AURORA/data/something/frames/150220/first.jpg", "AURORA/data/something/frames/150220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hammer upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112797", "images": ["AURORA/data/something/frames/191641/first.jpg", "AURORA/data/something/frames/191641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a large carrot until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112798", "images": ["AURORA/data/something/frames/146933/first.jpg", "AURORA/data/something/frames/146933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112799", "images": ["AURORA/data/something/frames/60455/first.jpg", "AURORA/data/something/frames/60455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112800", "images": ["AURORA/data/something/frames/36074/first.jpg", "AURORA/data/something/frames/36074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112801", "images": ["AURORA/data/something/frames/19832/first.jpg", "AURORA/data/something/frames/19832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112802", "images": ["AURORA/data/something/frames/142512/first.jpg", "AURORA/data/something/frames/142512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into headset"}, {"from": "gpt", "value": ""}]} +{"id": "000000112803", "images": ["AURORA/data/something/frames/98864/first.jpg", "AURORA/data/something/frames/98864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dinosaur model"}, {"from": "gpt", "value": ""}]} +{"id": "000000112804", "images": ["AURORA/data/something/frames/115386/first.jpg", "AURORA/data/something/frames/115386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hand towel being deflected from cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112805", "images": ["AURORA/data/something/frames/216410/first.jpg", "AURORA/data/something/frames/216410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into measuring jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112806", "images": ["AURORA/data/something/frames/210811/first.jpg", "AURORA/data/something/frames/210811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wrist-watch onto plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112807", "images": ["AURORA/data/something/frames/160418/first.jpg", "AURORA/data/something/frames/160418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112808", "images": ["AURORA/data/something/frames/179295/first.jpg", "AURORA/data/something/frames/179295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112809", "images": ["AURORA/data/something/frames/72269/first.jpg", "AURORA/data/something/frames/72269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dvd next to a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112810", "images": ["AURORA/data/something/frames/122492/first.jpg", "AURORA/data/something/frames/122492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting something"}, {"from": "gpt", "value": ""}]} +{"id": "000000112811", "images": ["AURORA/data/something/frames/70959/first.jpg", "AURORA/data/something/frames/70959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stuffed animal upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112812", "images": ["AURORA/data/something/frames/129834/first.jpg", "AURORA/data/something/frames/129834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112813", "images": ["AURORA/data/something/frames/108361/first.jpg", "AURORA/data/something/frames/108361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paint brush down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112814", "images": ["AURORA/data/something/frames/197975/first.jpg", "AURORA/data/something/frames/197975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing specs with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000112815", "images": ["AURORA/data/something/frames/81258/first.jpg", "AURORA/data/something/frames/81258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling one tealight candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112816", "images": ["AURORA/data/something/frames/190267/first.jpg", "AURORA/data/something/frames/190267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a round glass paperweight with other paperweights on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112817", "images": ["AURORA/data/something/frames/164059/first.jpg", "AURORA/data/something/frames/164059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extension plug into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112818", "images": ["AURORA/data/something/frames/215894/first.jpg", "AURORA/data/something/frames/215894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a lightbulb to a candlewarmer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112819", "images": ["AURORA/data/something/frames/110358/first.jpg", "AURORA/data/something/frames/110358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar bowl up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112820", "images": ["AURORA/data/something/frames/155599/first.jpg", "AURORA/data/something/frames/155599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching black microwave with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112821", "images": ["AURORA/data/something/frames/217895/first.jpg", "AURORA/data/something/frames/217895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000112822", "images": ["AURORA/data/something/frames/52805/first.jpg", "AURORA/data/something/frames/52805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112823", "images": ["AURORA/data/something/frames/196030/first.jpg", "AURORA/data/something/frames/196030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tomato behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112824", "images": ["AURORA/data/something/frames/70956/first.jpg", "AURORA/data/something/frames/70956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairband on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112825", "images": ["AURORA/data/something/frames/62553/first.jpg", "AURORA/data/something/frames/62553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112826", "images": ["AURORA/data/something/frames/82165/first.jpg", "AURORA/data/something/frames/82165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112827", "images": ["AURORA/data/something/frames/99908/first.jpg", "AURORA/data/something/frames/99908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a microwave oven door"}, {"from": "gpt", "value": ""}]} +{"id": "000000112828", "images": ["AURORA/data/something/frames/70283/first.jpg", "AURORA/data/something/frames/70283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000112829", "images": ["AURORA/data/something/frames/9991/first.jpg", "AURORA/data/something/frames/9991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112830", "images": ["AURORA/data/something/frames/149591/first.jpg", "AURORA/data/something/frames/149591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a painting upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112831", "images": ["AURORA/data/something/frames/43819/first.jpg", "AURORA/data/something/frames/43819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112832", "images": ["AURORA/data/something/frames/193292/first.jpg", "AURORA/data/something/frames/193292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a candle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112833", "images": ["AURORA/data/something/frames/68527/first.jpg", "AURORA/data/something/frames/68527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jalebi sweet from packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112834", "images": ["AURORA/data/something/frames/204105/first.jpg", "AURORA/data/something/frames/204105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cat with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112835", "images": ["AURORA/data/something/frames/198082/first.jpg", "AURORA/data/something/frames/198082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar closer to a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112836", "images": ["AURORA/data/something/frames/198342/first.jpg", "AURORA/data/something/frames/198342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wax jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112837", "images": ["AURORA/data/something/frames/168278/first.jpg", "AURORA/data/something/frames/168278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112838", "images": ["AURORA/data/something/frames/116516/first.jpg", "AURORA/data/something/frames/116516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking paper towels so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000112839", "images": ["AURORA/data/something/frames/40616/first.jpg", "AURORA/data/something/frames/40616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112840", "images": ["AURORA/data/something/frames/199151/first.jpg", "AURORA/data/something/frames/199151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112841", "images": ["AURORA/data/something/frames/211066/first.jpg", "AURORA/data/something/frames/211066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a box just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112842", "images": ["AURORA/data/something/frames/186388/first.jpg", "AURORA/data/something/frames/186388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lunchbox on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112843", "images": ["AURORA/data/something/frames/81419/first.jpg", "AURORA/data/something/frames/81419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bittle with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000112844", "images": ["AURORA/data/something/frames/56041/first.jpg", "AURORA/data/something/frames/56041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112845", "images": ["AURORA/data/something/frames/112470/first.jpg", "AURORA/data/something/frames/112470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112846", "images": ["AURORA/data/something/frames/191867/first.jpg", "AURORA/data/something/frames/191867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a tissue off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112847", "images": ["AURORA/data/something/frames/97274/first.jpg", "AURORA/data/something/frames/97274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy car and a fridge magnet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112848", "images": ["AURORA/data/something/frames/14662/first.jpg", "AURORA/data/something/frames/14662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dice into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112849", "images": ["AURORA/data/something/frames/39097/first.jpg", "AURORA/data/something/frames/39097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000112850", "images": ["AURORA/data/something/frames/41384/first.jpg", "AURORA/data/something/frames/41384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112851", "images": ["AURORA/data/something/frames/119534/first.jpg", "AURORA/data/something/frames/119534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a strawberry candy and a lemon candy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112852", "images": ["AURORA/data/something/frames/143401/first.jpg", "AURORA/data/something/frames/143401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112853", "images": ["AURORA/data/something/frames/88599/first.jpg", "AURORA/data/something/frames/88599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112854", "images": ["AURORA/data/something/frames/54280/first.jpg", "AURORA/data/something/frames/54280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112855", "images": ["AURORA/data/something/frames/173817/first.jpg", "AURORA/data/something/frames/173817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tin upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112856", "images": ["AURORA/data/something/frames/32343/first.jpg", "AURORA/data/something/frames/32343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning an ipad upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112857", "images": ["AURORA/data/something/frames/85892/first.jpg", "AURORA/data/something/frames/85892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112858", "images": ["AURORA/data/something/frames/54331/first.jpg", "AURORA/data/something/frames/54331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of metal can"}, {"from": "gpt", "value": ""}]} +{"id": "000000112859", "images": ["AURORA/data/something/frames/141576/first.jpg", "AURORA/data/something/frames/141576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112860", "images": ["AURORA/data/something/frames/35901/first.jpg", "AURORA/data/something/frames/35901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a box with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000112861", "images": ["AURORA/data/something/frames/135188/first.jpg", "AURORA/data/something/frames/135188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112862", "images": ["AURORA/data/something/frames/159829/first.jpg", "AURORA/data/something/frames/159829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing geometric compass with marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000112863", "images": ["AURORA/data/something/frames/190482/first.jpg", "AURORA/data/something/frames/190482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pebble"}, {"from": "gpt", "value": ""}]} +{"id": "000000112864", "images": ["AURORA/data/something/frames/23814/first.jpg", "AURORA/data/something/frames/23814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112865", "images": ["AURORA/data/something/frames/63671/first.jpg", "AURORA/data/something/frames/63671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet behind the cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000112866", "images": ["AURORA/data/something/frames/32896/first.jpg", "AURORA/data/something/frames/32896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112867", "images": ["AURORA/data/something/frames/31938/first.jpg", "AURORA/data/something/frames/31938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112868", "images": ["AURORA/data/something/frames/29287/first.jpg", "AURORA/data/something/frames/29287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lantern with jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112869", "images": ["AURORA/data/something/frames/62954/first.jpg", "AURORA/data/something/frames/62954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mop bucket with a mop stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000112870", "images": ["AURORA/data/something/frames/178047/first.jpg", "AURORA/data/something/frames/178047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112871", "images": ["AURORA/data/something/frames/199457/first.jpg", "AURORA/data/something/frames/199457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a bun into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112872", "images": ["AURORA/data/something/frames/144207/first.jpg", "AURORA/data/something/frames/144207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from lighter with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112873", "images": ["AURORA/data/something/frames/12315/first.jpg", "AURORA/data/something/frames/12315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume bottle in front of clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000112874", "images": ["AURORA/data/something/frames/5216/first.jpg", "AURORA/data/something/frames/5216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112875", "images": ["AURORA/data/something/frames/33274/first.jpg", "AURORA/data/something/frames/33274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hairclip upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112876", "images": ["AURORA/data/something/frames/176842/first.jpg", "AURORA/data/something/frames/176842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending text book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112877", "images": ["AURORA/data/something/frames/184866/first.jpg", "AURORA/data/something/frames/184866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000112878", "images": ["AURORA/data/something/frames/126691/first.jpg", "AURORA/data/something/frames/126691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a washclothe"}, {"from": "gpt", "value": ""}]} +{"id": "000000112879", "images": ["AURORA/data/something/frames/145754/first.jpg", "AURORA/data/something/frames/145754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a plastic cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112880", "images": ["AURORA/data/something/frames/215765/first.jpg", "AURORA/data/something/frames/215765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112881", "images": ["AURORA/data/something/frames/213619/first.jpg", "AURORA/data/something/frames/213619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112882", "images": ["AURORA/data/something/frames/25965/first.jpg", "AURORA/data/something/frames/25965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen behind a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112883", "images": ["AURORA/data/something/frames/5532/first.jpg", "AURORA/data/something/frames/5532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a paper clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112884", "images": ["AURORA/data/something/frames/27494/first.jpg", "AURORA/data/something/frames/27494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112885", "images": ["AURORA/data/something/frames/181820/first.jpg", "AURORA/data/something/frames/181820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a phone charger into the wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000112886", "images": ["AURORA/data/something/frames/16943/first.jpg", "AURORA/data/something/frames/16943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet behind couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000112887", "images": ["AURORA/data/something/frames/27861/first.jpg", "AURORA/data/something/frames/27861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping skateboard in front of robot"}, {"from": "gpt", "value": ""}]} +{"id": "000000112888", "images": ["AURORA/data/something/frames/131429/first.jpg", "AURORA/data/something/frames/131429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112889", "images": ["AURORA/data/something/frames/43241/first.jpg", "AURORA/data/something/frames/43241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) cap of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112890", "images": ["AURORA/data/something/frames/56826/first.jpg", "AURORA/data/something/frames/56826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000112891", "images": ["AURORA/data/something/frames/211749/first.jpg", "AURORA/data/something/frames/211749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy car colliding with another toy car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000112892", "images": ["AURORA/data/something/frames/25768/first.jpg", "AURORA/data/something/frames/25768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper behind wineglass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112893", "images": ["AURORA/data/something/frames/38421/first.jpg", "AURORA/data/something/frames/38421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bed with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000112894", "images": ["AURORA/data/something/frames/183980/first.jpg", "AURORA/data/something/frames/183980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glas from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112895", "images": ["AURORA/data/something/frames/201372/first.jpg", "AURORA/data/something/frames/201372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box next to a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000112896", "images": ["AURORA/data/something/frames/87844/first.jpg", "AURORA/data/something/frames/87844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000112897", "images": ["AURORA/data/something/frames/187685/first.jpg", "AURORA/data/something/frames/187685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112898", "images": ["AURORA/data/something/frames/50485/first.jpg", "AURORA/data/something/frames/50485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112899", "images": ["AURORA/data/something/frames/114460/first.jpg", "AURORA/data/something/frames/114460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112900", "images": ["AURORA/data/something/frames/187315/first.jpg", "AURORA/data/something/frames/187315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting powerbank with airpods case on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112901", "images": ["AURORA/data/something/frames/94733/first.jpg", "AURORA/data/something/frames/94733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering the bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112902", "images": ["AURORA/data/something/frames/110579/first.jpg", "AURORA/data/something/frames/110579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending notebook so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112903", "images": ["AURORA/data/something/frames/55230/first.jpg", "AURORA/data/something/frames/55230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming wastebin"}, {"from": "gpt", "value": ""}]} +{"id": "000000112904", "images": ["AURORA/data/something/frames/116279/first.jpg", "AURORA/data/something/frames/116279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112905", "images": ["AURORA/data/something/frames/199373/first.jpg", "AURORA/data/something/frames/199373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hairclip onto a deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000112906", "images": ["AURORA/data/something/frames/93854/first.jpg", "AURORA/data/something/frames/93854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging adaptor into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112907", "images": ["AURORA/data/something/frames/124044/first.jpg", "AURORA/data/something/frames/124044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112908", "images": ["AURORA/data/something/frames/167347/first.jpg", "AURORA/data/something/frames/167347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting napkins in front of shakers"}, {"from": "gpt", "value": ""}]} +{"id": "000000112909", "images": ["AURORA/data/something/frames/137733/first.jpg", "AURORA/data/something/frames/137733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000112910", "images": ["AURORA/data/something/frames/72697/first.jpg", "AURORA/data/something/frames/72697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking battleship game so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112911", "images": ["AURORA/data/something/frames/152269/first.jpg", "AURORA/data/something/frames/152269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112912", "images": ["AURORA/data/something/frames/192654/first.jpg", "AURORA/data/something/frames/192654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bowl out of microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000112913", "images": ["AURORA/data/something/frames/60963/first.jpg", "AURORA/data/something/frames/60963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring orange juice out of jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000112914", "images": ["AURORA/data/something/frames/34674/first.jpg", "AURORA/data/something/frames/34674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112915", "images": ["AURORA/data/something/frames/178932/first.jpg", "AURORA/data/something/frames/178932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112916", "images": ["AURORA/data/something/frames/176411/first.jpg", "AURORA/data/something/frames/176411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112917", "images": ["AURORA/data/something/frames/195783/first.jpg", "AURORA/data/something/frames/195783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping block over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112918", "images": ["AURORA/data/something/frames/66462/first.jpg", "AURORA/data/something/frames/66462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink water bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112919", "images": ["AURORA/data/something/frames/102693/first.jpg", "AURORA/data/something/frames/102693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many chocolates"}, {"from": "gpt", "value": ""}]} +{"id": "000000112920", "images": ["AURORA/data/something/frames/2329/first.jpg", "AURORA/data/something/frames/2329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fork onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112921", "images": ["AURORA/data/something/frames/105135/first.jpg", "AURORA/data/something/frames/105135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 spanners"}, {"from": "gpt", "value": ""}]} +{"id": "000000112922", "images": ["AURORA/data/something/frames/69602/first.jpg", "AURORA/data/something/frames/69602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000112923", "images": ["AURORA/data/something/frames/166902/first.jpg", "AURORA/data/something/frames/166902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pencil so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112924", "images": ["AURORA/data/something/frames/43134/first.jpg", "AURORA/data/something/frames/43134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a travel mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000112925", "images": ["AURORA/data/something/frames/34617/first.jpg", "AURORA/data/something/frames/34617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112926", "images": ["AURORA/data/something/frames/120443/first.jpg", "AURORA/data/something/frames/120443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying jar on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112927", "images": ["AURORA/data/something/frames/70556/first.jpg", "AURORA/data/something/frames/70556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering key with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000112928", "images": ["AURORA/data/something/frames/220229/first.jpg", "AURORA/data/something/frames/220229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the tip of scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000112929", "images": ["AURORA/data/something/frames/89830/first.jpg", "AURORA/data/something/frames/89830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing compact disc from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112930", "images": ["AURORA/data/something/frames/73397/first.jpg", "AURORA/data/something/frames/73397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112931", "images": ["AURORA/data/something/frames/19853/first.jpg", "AURORA/data/something/frames/19853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, lighter and charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112932", "images": ["AURORA/data/something/frames/22364/first.jpg", "AURORA/data/something/frames/22364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112933", "images": ["AURORA/data/something/frames/88480/first.jpg", "AURORA/data/something/frames/88480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000112934", "images": ["AURORA/data/something/frames/84867/first.jpg", "AURORA/data/something/frames/84867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112935", "images": ["AURORA/data/something/frames/194686/first.jpg", "AURORA/data/something/frames/194686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping glass bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112936", "images": ["AURORA/data/something/frames/27267/first.jpg", "AURORA/data/something/frames/27267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thimble up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112937", "images": ["AURORA/data/something/frames/175022/first.jpg", "AURORA/data/something/frames/175022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112938", "images": ["AURORA/data/something/frames/165834/first.jpg", "AURORA/data/something/frames/165834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112939", "images": ["AURORA/data/something/frames/213060/first.jpg", "AURORA/data/something/frames/213060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112940", "images": ["AURORA/data/something/frames/67399/first.jpg", "AURORA/data/something/frames/67399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key chain down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112941", "images": ["AURORA/data/something/frames/16328/first.jpg", "AURORA/data/something/frames/16328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000112942", "images": ["AURORA/data/something/frames/46538/first.jpg", "AURORA/data/something/frames/46538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking basket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112943", "images": ["AURORA/data/something/frames/156677/first.jpg", "AURORA/data/something/frames/156677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112944", "images": ["AURORA/data/something/frames/55153/first.jpg", "AURORA/data/something/frames/55153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of potty"}, {"from": "gpt", "value": ""}]} +{"id": "000000112945", "images": ["AURORA/data/something/frames/7379/first.jpg", "AURORA/data/something/frames/7379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil and brown colour sketch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112946", "images": ["AURORA/data/something/frames/161366/first.jpg", "AURORA/data/something/frames/161366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112947", "images": ["AURORA/data/something/frames/99812/first.jpg", "AURORA/data/something/frames/99812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle and a candle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112948", "images": ["AURORA/data/something/frames/120556/first.jpg", "AURORA/data/something/frames/120556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe and shoe away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112949", "images": ["AURORA/data/something/frames/68128/first.jpg", "AURORA/data/something/frames/68128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112950", "images": ["AURORA/data/something/frames/151431/first.jpg", "AURORA/data/something/frames/151431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cleaning cloth onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000112951", "images": ["AURORA/data/something/frames/2104/first.jpg", "AURORA/data/something/frames/2104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112952", "images": ["AURORA/data/something/frames/179990/first.jpg", "AURORA/data/something/frames/179990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small freshmints from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112953", "images": ["AURORA/data/something/frames/108088/first.jpg", "AURORA/data/something/frames/108088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping an owl over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112954", "images": ["AURORA/data/something/frames/186221/first.jpg", "AURORA/data/something/frames/186221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112955", "images": ["AURORA/data/something/frames/104455/first.jpg", "AURORA/data/something/frames/104455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb next to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000112956", "images": ["AURORA/data/something/frames/108280/first.jpg", "AURORA/data/something/frames/108280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000112957", "images": ["AURORA/data/something/frames/183649/first.jpg", "AURORA/data/something/frames/183649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112958", "images": ["AURORA/data/something/frames/181094/first.jpg", "AURORA/data/something/frames/181094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000112959", "images": ["AURORA/data/something/frames/140150/first.jpg", "AURORA/data/something/frames/140150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box out of christmas stocking"}, {"from": "gpt", "value": ""}]} +{"id": "000000112960", "images": ["AURORA/data/something/frames/141696/first.jpg", "AURORA/data/something/frames/141696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tv remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112961", "images": ["AURORA/data/something/frames/98615/first.jpg", "AURORA/data/something/frames/98615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a vape upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000112962", "images": ["AURORA/data/something/frames/64687/first.jpg", "AURORA/data/something/frames/64687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000112963", "images": ["AURORA/data/something/frames/192123/first.jpg", "AURORA/data/something/frames/192123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000112964", "images": ["AURORA/data/something/frames/43954/first.jpg", "AURORA/data/something/frames/43954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green face powder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000112965", "images": ["AURORA/data/something/frames/143508/first.jpg", "AURORA/data/something/frames/143508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a peg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000112966", "images": ["AURORA/data/something/frames/5492/first.jpg", "AURORA/data/something/frames/5492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on the edge of a counter so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112967", "images": ["AURORA/data/something/frames/55360/first.jpg", "AURORA/data/something/frames/55360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000112968", "images": ["AURORA/data/something/frames/161722/first.jpg", "AURORA/data/something/frames/161722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112969", "images": ["AURORA/data/something/frames/67939/first.jpg", "AURORA/data/something/frames/67939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking the remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112970", "images": ["AURORA/data/something/frames/203413/first.jpg", "AURORA/data/something/frames/203413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending hanger so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000112971", "images": ["AURORA/data/something/frames/159326/first.jpg", "AURORA/data/something/frames/159326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000112972", "images": ["AURORA/data/something/frames/98127/first.jpg", "AURORA/data/something/frames/98127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching jeep with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112973", "images": ["AURORA/data/something/frames/164183/first.jpg", "AURORA/data/something/frames/164183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cards upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112974", "images": ["AURORA/data/something/frames/199215/first.jpg", "AURORA/data/something/frames/199215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting books with bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000112975", "images": ["AURORA/data/something/frames/166239/first.jpg", "AURORA/data/something/frames/166239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissues from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000112976", "images": ["AURORA/data/something/frames/197669/first.jpg", "AURORA/data/something/frames/197669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112977", "images": ["AURORA/data/something/frames/150869/first.jpg", "AURORA/data/something/frames/150869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting water bottle lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000112978", "images": ["AURORA/data/something/frames/174709/first.jpg", "AURORA/data/something/frames/174709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto dishes"}, {"from": "gpt", "value": ""}]} +{"id": "000000112979", "images": ["AURORA/data/something/frames/19122/first.jpg", "AURORA/data/something/frames/19122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000112980", "images": ["AURORA/data/something/frames/75793/first.jpg", "AURORA/data/something/frames/75793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000112981", "images": ["AURORA/data/something/frames/220183/first.jpg", "AURORA/data/something/frames/220183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tape being deflected from cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000112982", "images": ["AURORA/data/something/frames/183432/first.jpg", "AURORA/data/something/frames/183432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000112983", "images": ["AURORA/data/something/frames/103091/first.jpg", "AURORA/data/something/frames/103091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112984", "images": ["AURORA/data/something/frames/6161/first.jpg", "AURORA/data/something/frames/6161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking five notebooks"}, {"from": "gpt", "value": ""}]} +{"id": "000000112985", "images": ["AURORA/data/something/frames/10335/first.jpg", "AURORA/data/something/frames/10335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000112986", "images": ["AURORA/data/something/frames/9614/first.jpg", "AURORA/data/something/frames/9614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen in pile of pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000112987", "images": ["AURORA/data/something/frames/180022/first.jpg", "AURORA/data/something/frames/180022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to dishwasher"}, {"from": "gpt", "value": ""}]} +{"id": "000000112988", "images": ["AURORA/data/something/frames/72196/first.jpg", "AURORA/data/something/frames/72196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a biro out of a plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000112989", "images": ["AURORA/data/something/frames/62430/first.jpg", "AURORA/data/something/frames/62430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving powerbank and airpods case closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000112990", "images": ["AURORA/data/something/frames/161302/first.jpg", "AURORA/data/something/frames/161302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000112991", "images": ["AURORA/data/something/frames/80906/first.jpg", "AURORA/data/something/frames/80906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000112992", "images": ["AURORA/data/something/frames/170918/first.jpg", "AURORA/data/something/frames/170918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000112993", "images": ["AURORA/data/something/frames/126159/first.jpg", "AURORA/data/something/frames/126159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing baby pram with plastic bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000112994", "images": ["AURORA/data/something/frames/3082/first.jpg", "AURORA/data/something/frames/3082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000112995", "images": ["AURORA/data/something/frames/36255/first.jpg", "AURORA/data/something/frames/36255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tomato into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000112996", "images": ["AURORA/data/something/frames/208560/first.jpg", "AURORA/data/something/frames/208560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000112997", "images": ["AURORA/data/something/frames/96878/first.jpg", "AURORA/data/something/frames/96878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teabag"}, {"from": "gpt", "value": ""}]} +{"id": "000000112998", "images": ["AURORA/data/something/frames/43428/first.jpg", "AURORA/data/something/frames/43428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from measuring tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000112999", "images": ["AURORA/data/something/frames/212/first.jpg", "AURORA/data/something/frames/212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint tube next to cactus"}, {"from": "gpt", "value": ""}]} +{"id": "000000113000", "images": ["AURORA/data/something/frames/85066/first.jpg", "AURORA/data/something/frames/85066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cable into a desktop microphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113001", "images": ["AURORA/data/something/frames/73131/first.jpg", "AURORA/data/something/frames/73131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113002", "images": ["AURORA/data/something/frames/71103/first.jpg", "AURORA/data/something/frames/71103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a pencil without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113003", "images": ["AURORA/data/something/frames/66545/first.jpg", "AURORA/data/something/frames/66545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113004", "images": ["AURORA/data/something/frames/60960/first.jpg", "AURORA/data/something/frames/60960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000113005", "images": ["AURORA/data/something/frames/59884/first.jpg", "AURORA/data/something/frames/59884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113006", "images": ["AURORA/data/something/frames/203473/first.jpg", "AURORA/data/something/frames/203473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113007", "images": ["AURORA/data/something/frames/114096/first.jpg", "AURORA/data/something/frames/114096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113008", "images": ["AURORA/data/something/frames/10411/first.jpg", "AURORA/data/something/frames/10411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bag over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113009", "images": ["AURORA/data/something/frames/200490/first.jpg", "AURORA/data/something/frames/200490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of cream container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113010", "images": ["AURORA/data/something/frames/67325/first.jpg", "AURORA/data/something/frames/67325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toothpick container closer to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113011", "images": ["AURORA/data/something/frames/12499/first.jpg", "AURORA/data/something/frames/12499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113012", "images": ["AURORA/data/something/frames/115061/first.jpg", "AURORA/data/something/frames/115061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113013", "images": ["AURORA/data/something/frames/146601/first.jpg", "AURORA/data/something/frames/146601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113014", "images": ["AURORA/data/something/frames/72315/first.jpg", "AURORA/data/something/frames/72315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a chair in front of the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113015", "images": ["AURORA/data/something/frames/93845/first.jpg", "AURORA/data/something/frames/93845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113016", "images": ["AURORA/data/something/frames/186786/first.jpg", "AURORA/data/something/frames/186786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a shoe and another shoe so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113017", "images": ["AURORA/data/something/frames/48705/first.jpg", "AURORA/data/something/frames/48705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into electrical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113018", "images": ["AURORA/data/something/frames/143243/first.jpg", "AURORA/data/something/frames/143243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113019", "images": ["AURORA/data/something/frames/170105/first.jpg", "AURORA/data/something/frames/170105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a calculator with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113020", "images": ["AURORA/data/something/frames/188811/first.jpg", "AURORA/data/something/frames/188811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113021", "images": ["AURORA/data/something/frames/75635/first.jpg", "AURORA/data/something/frames/75635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy gun off of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113022", "images": ["AURORA/data/something/frames/217074/first.jpg", "AURORA/data/something/frames/217074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113023", "images": ["AURORA/data/something/frames/29086/first.jpg", "AURORA/data/something/frames/29086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handout"}, {"from": "gpt", "value": ""}]} +{"id": "000000113024", "images": ["AURORA/data/something/frames/184198/first.jpg", "AURORA/data/something/frames/184198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking notebook so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113025", "images": ["AURORA/data/something/frames/28327/first.jpg", "AURORA/data/something/frames/28327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic container onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113026", "images": ["AURORA/data/something/frames/179892/first.jpg", "AURORA/data/something/frames/179892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113027", "images": ["AURORA/data/something/frames/36298/first.jpg", "AURORA/data/something/frames/36298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the table near pencils"}, {"from": "gpt", "value": ""}]} +{"id": "000000113028", "images": ["AURORA/data/something/frames/17014/first.jpg", "AURORA/data/something/frames/17014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing take-out menu into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113029", "images": ["AURORA/data/something/frames/16724/first.jpg", "AURORA/data/something/frames/16724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113030", "images": ["AURORA/data/something/frames/50807/first.jpg", "AURORA/data/something/frames/50807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving basketball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113031", "images": ["AURORA/data/something/frames/139524/first.jpg", "AURORA/data/something/frames/139524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor away from pick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113032", "images": ["AURORA/data/something/frames/53121/first.jpg", "AURORA/data/something/frames/53121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing water bottle, revealing a container behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113033", "images": ["AURORA/data/something/frames/186952/first.jpg", "AURORA/data/something/frames/186952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip bam and pen closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113034", "images": ["AURORA/data/something/frames/157010/first.jpg", "AURORA/data/something/frames/157010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup, stapler and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113035", "images": ["AURORA/data/something/frames/57794/first.jpg", "AURORA/data/something/frames/57794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing aim toothpaste so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113036", "images": ["AURORA/data/something/frames/177002/first.jpg", "AURORA/data/something/frames/177002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb onto toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113037", "images": ["AURORA/data/something/frames/217026/first.jpg", "AURORA/data/something/frames/217026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113038", "images": ["AURORA/data/something/frames/31627/first.jpg", "AURORA/data/something/frames/31627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tab of soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000113039", "images": ["AURORA/data/something/frames/191966/first.jpg", "AURORA/data/something/frames/191966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into phone charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113040", "images": ["AURORA/data/something/frames/12454/first.jpg", "AURORA/data/something/frames/12454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering spoon with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113041", "images": ["AURORA/data/something/frames/89232/first.jpg", "AURORA/data/something/frames/89232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soap and nail cutter so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113042", "images": ["AURORA/data/something/frames/92825/first.jpg", "AURORA/data/something/frames/92825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting remote up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113043", "images": ["AURORA/data/something/frames/634/first.jpg", "AURORA/data/something/frames/634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113044", "images": ["AURORA/data/something/frames/29503/first.jpg", "AURORA/data/something/frames/29503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from hair dryer with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113045", "images": ["AURORA/data/something/frames/155826/first.jpg", "AURORA/data/something/frames/155826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113046", "images": ["AURORA/data/something/frames/13933/first.jpg", "AURORA/data/something/frames/13933/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching lid to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113047", "images": ["AURORA/data/something/frames/171834/first.jpg", "AURORA/data/something/frames/171834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ashtray underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113048", "images": ["AURORA/data/something/frames/125162/first.jpg", "AURORA/data/something/frames/125162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000113049", "images": ["AURORA/data/something/frames/87024/first.jpg", "AURORA/data/something/frames/87024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing clip behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113050", "images": ["AURORA/data/something/frames/153049/first.jpg", "AURORA/data/something/frames/153049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tape measurer so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113051", "images": ["AURORA/data/something/frames/85694/first.jpg", "AURORA/data/something/frames/85694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cup with a rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113052", "images": ["AURORA/data/something/frames/97259/first.jpg", "AURORA/data/something/frames/97259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto headlight of scooter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113053", "images": ["AURORA/data/something/frames/89405/first.jpg", "AURORA/data/something/frames/89405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000113054", "images": ["AURORA/data/something/frames/65007/first.jpg", "AURORA/data/something/frames/65007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000113055", "images": ["AURORA/data/something/frames/163756/first.jpg", "AURORA/data/something/frames/163756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a mug with paper towel on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113056", "images": ["AURORA/data/something/frames/197580/first.jpg", "AURORA/data/something/frames/197580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113057", "images": ["AURORA/data/something/frames/68400/first.jpg", "AURORA/data/something/frames/68400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a lighter so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113058", "images": ["AURORA/data/something/frames/53492/first.jpg", "AURORA/data/something/frames/53492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113059", "images": ["AURORA/data/something/frames/141300/first.jpg", "AURORA/data/something/frames/141300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113060", "images": ["AURORA/data/something/frames/133777/first.jpg", "AURORA/data/something/frames/133777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113061", "images": ["AURORA/data/something/frames/84130/first.jpg", "AURORA/data/something/frames/84130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping cooking plane off of dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113062", "images": ["AURORA/data/something/frames/79298/first.jpg", "AURORA/data/something/frames/79298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling shoe from behind of wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000113063", "images": ["AURORA/data/something/frames/130879/first.jpg", "AURORA/data/something/frames/130879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113064", "images": ["AURORA/data/something/frames/99704/first.jpg", "AURORA/data/something/frames/99704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from traffic light with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113065", "images": ["AURORA/data/something/frames/75609/first.jpg", "AURORA/data/something/frames/75609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113066", "images": ["AURORA/data/something/frames/56001/first.jpg", "AURORA/data/something/frames/56001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pair of mens boxers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113067", "images": ["AURORA/data/something/frames/7729/first.jpg", "AURORA/data/something/frames/7729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing container off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113068", "images": ["AURORA/data/something/frames/161729/first.jpg", "AURORA/data/something/frames/161729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting earphone onto keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113069", "images": ["AURORA/data/something/frames/75763/first.jpg", "AURORA/data/something/frames/75763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tablet box into coffe cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113070", "images": ["AURORA/data/something/frames/154344/first.jpg", "AURORA/data/something/frames/154344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting top in front of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113071", "images": ["AURORA/data/something/frames/190961/first.jpg", "AURORA/data/something/frames/190961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113072", "images": ["AURORA/data/something/frames/75375/first.jpg", "AURORA/data/something/frames/75375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113073", "images": ["AURORA/data/something/frames/27243/first.jpg", "AURORA/data/something/frames/27243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from fence with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113074", "images": ["AURORA/data/something/frames/76726/first.jpg", "AURORA/data/something/frames/76726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113075", "images": ["AURORA/data/something/frames/36913/first.jpg", "AURORA/data/something/frames/36913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering rock"}, {"from": "gpt", "value": ""}]} +{"id": "000000113076", "images": ["AURORA/data/something/frames/51007/first.jpg", "AURORA/data/something/frames/51007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113077", "images": ["AURORA/data/something/frames/211829/first.jpg", "AURORA/data/something/frames/211829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113078", "images": ["AURORA/data/something/frames/4581/first.jpg", "AURORA/data/something/frames/4581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy off of the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113079", "images": ["AURORA/data/something/frames/99072/first.jpg", "AURORA/data/something/frames/99072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the cube onto the fan so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113080", "images": ["AURORA/data/something/frames/200198/first.jpg", "AURORA/data/something/frames/200198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113081", "images": ["AURORA/data/something/frames/197052/first.jpg", "AURORA/data/something/frames/197052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113082", "images": ["AURORA/data/something/frames/186266/first.jpg", "AURORA/data/something/frames/186266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113083", "images": ["AURORA/data/something/frames/15490/first.jpg", "AURORA/data/something/frames/15490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power supply cord into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113084", "images": ["AURORA/data/something/frames/146728/first.jpg", "AURORA/data/something/frames/146728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113085", "images": ["AURORA/data/something/frames/163959/first.jpg", "AURORA/data/something/frames/163959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pencil case so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113086", "images": ["AURORA/data/something/frames/111838/first.jpg", "AURORA/data/something/frames/111838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking dustpan up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113087", "images": ["AURORA/data/something/frames/160927/first.jpg", "AURORA/data/something/frames/160927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto countertop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113088", "images": ["AURORA/data/something/frames/203624/first.jpg", "AURORA/data/something/frames/203624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113089", "images": ["AURORA/data/something/frames/131954/first.jpg", "AURORA/data/something/frames/131954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing booklet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113090", "images": ["AURORA/data/something/frames/102754/first.jpg", "AURORA/data/something/frames/102754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113091", "images": ["AURORA/data/something/frames/202448/first.jpg", "AURORA/data/something/frames/202448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000113092", "images": ["AURORA/data/something/frames/130876/first.jpg", "AURORA/data/something/frames/130876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113093", "images": ["AURORA/data/something/frames/14594/first.jpg", "AURORA/data/something/frames/14594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sneaker away from a backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113094", "images": ["AURORA/data/something/frames/69683/first.jpg", "AURORA/data/something/frames/69683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into amp but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113095", "images": ["AURORA/data/something/frames/96210/first.jpg", "AURORA/data/something/frames/96210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from safety helmet with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113096", "images": ["AURORA/data/something/frames/63696/first.jpg", "AURORA/data/something/frames/63696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113097", "images": ["AURORA/data/something/frames/94286/first.jpg", "AURORA/data/something/frames/94286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mobile with tissue paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113098", "images": ["AURORA/data/something/frames/146684/first.jpg", "AURORA/data/something/frames/146684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000113099", "images": ["AURORA/data/something/frames/150496/first.jpg", "AURORA/data/something/frames/150496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flat box closer to flat box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113100", "images": ["AURORA/data/something/frames/50882/first.jpg", "AURORA/data/something/frames/50882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ruler with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113101", "images": ["AURORA/data/something/frames/10285/first.jpg", "AURORA/data/something/frames/10285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113102", "images": ["AURORA/data/something/frames/64755/first.jpg", "AURORA/data/something/frames/64755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping drop something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113103", "images": ["AURORA/data/something/frames/129543/first.jpg", "AURORA/data/something/frames/129543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle top"}, {"from": "gpt", "value": ""}]} +{"id": "000000113104", "images": ["AURORA/data/something/frames/86025/first.jpg", "AURORA/data/something/frames/86025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cashew"}, {"from": "gpt", "value": ""}]} +{"id": "000000113105", "images": ["AURORA/data/something/frames/77368/first.jpg", "AURORA/data/something/frames/77368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting computer mouse with ios usb charger adaptor on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113106", "images": ["AURORA/data/something/frames/83716/first.jpg", "AURORA/data/something/frames/83716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tea infuser out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113107", "images": ["AURORA/data/something/frames/16284/first.jpg", "AURORA/data/something/frames/16284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending bag so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113108", "images": ["AURORA/data/something/frames/203449/first.jpg", "AURORA/data/something/frames/203449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticky note to the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000113109", "images": ["AURORA/data/something/frames/150483/first.jpg", "AURORA/data/something/frames/150483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ipad upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113110", "images": ["AURORA/data/something/frames/41116/first.jpg", "AURORA/data/something/frames/41116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toothpick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113111", "images": ["AURORA/data/something/frames/73342/first.jpg", "AURORA/data/something/frames/73342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113112", "images": ["AURORA/data/something/frames/123179/first.jpg", "AURORA/data/something/frames/123179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting rubber band similar to other rubber bands that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113113", "images": ["AURORA/data/something/frames/193901/first.jpg", "AURORA/data/something/frames/193901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wristwatch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113114", "images": ["AURORA/data/something/frames/13497/first.jpg", "AURORA/data/something/frames/13497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wristwatch next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113115", "images": ["AURORA/data/something/frames/182501/first.jpg", "AURORA/data/something/frames/182501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening window"}, {"from": "gpt", "value": ""}]} +{"id": "000000113116", "images": ["AURORA/data/something/frames/131389/first.jpg", "AURORA/data/something/frames/131389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bobby pin next to pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113117", "images": ["AURORA/data/something/frames/106485/first.jpg", "AURORA/data/something/frames/106485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113118", "images": ["AURORA/data/something/frames/199741/first.jpg", "AURORA/data/something/frames/199741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113119", "images": ["AURORA/data/something/frames/143420/first.jpg", "AURORA/data/something/frames/143420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113120", "images": ["AURORA/data/something/frames/10154/first.jpg", "AURORA/data/something/frames/10154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming mosquito repellent"}, {"from": "gpt", "value": ""}]} +{"id": "000000113121", "images": ["AURORA/data/something/frames/201342/first.jpg", "AURORA/data/something/frames/201342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113122", "images": ["AURORA/data/something/frames/52497/first.jpg", "AURORA/data/something/frames/52497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113123", "images": ["AURORA/data/something/frames/88701/first.jpg", "AURORA/data/something/frames/88701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113124", "images": ["AURORA/data/something/frames/168954/first.jpg", "AURORA/data/something/frames/168954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113125", "images": ["AURORA/data/something/frames/17545/first.jpg", "AURORA/data/something/frames/17545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a lighter up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113126", "images": ["AURORA/data/something/frames/59511/first.jpg", "AURORA/data/something/frames/59511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tissus from tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113127", "images": ["AURORA/data/something/frames/172216/first.jpg", "AURORA/data/something/frames/172216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113128", "images": ["AURORA/data/something/frames/211857/first.jpg", "AURORA/data/something/frames/211857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113129", "images": ["AURORA/data/something/frames/161435/first.jpg", "AURORA/data/something/frames/161435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an adaptor but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113130", "images": ["AURORA/data/something/frames/146574/first.jpg", "AURORA/data/something/frames/146574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a coffee mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113131", "images": ["AURORA/data/something/frames/160612/first.jpg", "AURORA/data/something/frames/160612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair bows onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113132", "images": ["AURORA/data/something/frames/124448/first.jpg", "AURORA/data/something/frames/124448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging hdmi cable into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113133", "images": ["AURORA/data/something/frames/29178/first.jpg", "AURORA/data/something/frames/29178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar with tripod"}, {"from": "gpt", "value": ""}]} +{"id": "000000113134", "images": ["AURORA/data/something/frames/76465/first.jpg", "AURORA/data/something/frames/76465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113135", "images": ["AURORA/data/something/frames/44716/first.jpg", "AURORA/data/something/frames/44716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a wooden stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113136", "images": ["AURORA/data/something/frames/157934/first.jpg", "AURORA/data/something/frames/157934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a cooking pot with a chopstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113137", "images": ["AURORA/data/something/frames/142200/first.jpg", "AURORA/data/something/frames/142200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000113138", "images": ["AURORA/data/something/frames/186609/first.jpg", "AURORA/data/something/frames/186609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it notes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113139", "images": ["AURORA/data/something/frames/57197/first.jpg", "AURORA/data/something/frames/57197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113140", "images": ["AURORA/data/something/frames/153182/first.jpg", "AURORA/data/something/frames/153182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113141", "images": ["AURORA/data/something/frames/4411/first.jpg", "AURORA/data/something/frames/4411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113142", "images": ["AURORA/data/something/frames/212727/first.jpg", "AURORA/data/something/frames/212727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming me"}, {"from": "gpt", "value": ""}]} +{"id": "000000113143", "images": ["AURORA/data/something/frames/78984/first.jpg", "AURORA/data/something/frames/78984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113144", "images": ["AURORA/data/something/frames/36339/first.jpg", "AURORA/data/something/frames/36339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dining room"}, {"from": "gpt", "value": ""}]} +{"id": "000000113145", "images": ["AURORA/data/something/frames/165413/first.jpg", "AURORA/data/something/frames/165413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a yogurt container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113146", "images": ["AURORA/data/something/frames/20598/first.jpg", "AURORA/data/something/frames/20598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tablet computer upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113147", "images": ["AURORA/data/something/frames/160896/first.jpg", "AURORA/data/something/frames/160896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113148", "images": ["AURORA/data/something/frames/17149/first.jpg", "AURORA/data/something/frames/17149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113149", "images": ["AURORA/data/something/frames/119546/first.jpg", "AURORA/data/something/frames/119546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113150", "images": ["AURORA/data/something/frames/197445/first.jpg", "AURORA/data/something/frames/197445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000113151", "images": ["AURORA/data/something/frames/171693/first.jpg", "AURORA/data/something/frames/171693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mobile phone upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113152", "images": ["AURORA/data/something/frames/164346/first.jpg", "AURORA/data/something/frames/164346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter and lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113153", "images": ["AURORA/data/something/frames/20243/first.jpg", "AURORA/data/something/frames/20243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging two pin into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113154", "images": ["AURORA/data/something/frames/10207/first.jpg", "AURORA/data/something/frames/10207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a flashlight up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113155", "images": ["AURORA/data/something/frames/22418/first.jpg", "AURORA/data/something/frames/22418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113156", "images": ["AURORA/data/something/frames/185982/first.jpg", "AURORA/data/something/frames/185982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113157", "images": ["AURORA/data/something/frames/183706/first.jpg", "AURORA/data/something/frames/183706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming pink toothbrush case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113158", "images": ["AURORA/data/something/frames/122582/first.jpg", "AURORA/data/something/frames/122582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113159", "images": ["AURORA/data/something/frames/101197/first.jpg", "AURORA/data/something/frames/101197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mix cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113160", "images": ["AURORA/data/something/frames/91630/first.jpg", "AURORA/data/something/frames/91630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113161", "images": ["AURORA/data/something/frames/55310/first.jpg", "AURORA/data/something/frames/55310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with pennies over, so pennies falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113162", "images": ["AURORA/data/something/frames/49667/first.jpg", "AURORA/data/something/frames/49667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching peg to usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000113163", "images": ["AURORA/data/something/frames/77990/first.jpg", "AURORA/data/something/frames/77990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of blocks so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113164", "images": ["AURORA/data/something/frames/123585/first.jpg", "AURORA/data/something/frames/123585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113165", "images": ["AURORA/data/something/frames/50906/first.jpg", "AURORA/data/something/frames/50906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic container on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113166", "images": ["AURORA/data/something/frames/178084/first.jpg", "AURORA/data/something/frames/178084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into extension cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113167", "images": ["AURORA/data/something/frames/2426/first.jpg", "AURORA/data/something/frames/2426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113168", "images": ["AURORA/data/something/frames/209649/first.jpg", "AURORA/data/something/frames/209649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pebble with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113169", "images": ["AURORA/data/something/frames/30467/first.jpg", "AURORA/data/something/frames/30467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113170", "images": ["AURORA/data/something/frames/92639/first.jpg", "AURORA/data/something/frames/92639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cereal into mouth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113171", "images": ["AURORA/data/something/frames/151044/first.jpg", "AURORA/data/something/frames/151044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cell phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113172", "images": ["AURORA/data/something/frames/78618/first.jpg", "AURORA/data/something/frames/78618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113173", "images": ["AURORA/data/something/frames/205149/first.jpg", "AURORA/data/something/frames/205149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113174", "images": ["AURORA/data/something/frames/176086/first.jpg", "AURORA/data/something/frames/176086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113175", "images": ["AURORA/data/something/frames/52130/first.jpg", "AURORA/data/something/frames/52130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking silverware"}, {"from": "gpt", "value": ""}]} +{"id": "000000113176", "images": ["AURORA/data/something/frames/152091/first.jpg", "AURORA/data/something/frames/152091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from old mobile phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113177", "images": ["AURORA/data/something/frames/53788/first.jpg", "AURORA/data/something/frames/53788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting red toy car with marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113178", "images": ["AURORA/data/something/frames/171374/first.jpg", "AURORA/data/something/frames/171374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113179", "images": ["AURORA/data/something/frames/67153/first.jpg", "AURORA/data/something/frames/67153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming brown case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113180", "images": ["AURORA/data/something/frames/62193/first.jpg", "AURORA/data/something/frames/62193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113181", "images": ["AURORA/data/something/frames/30509/first.jpg", "AURORA/data/something/frames/30509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113182", "images": ["AURORA/data/something/frames/119930/first.jpg", "AURORA/data/something/frames/119930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of banana without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113183", "images": ["AURORA/data/something/frames/124878/first.jpg", "AURORA/data/something/frames/124878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113184", "images": ["AURORA/data/something/frames/49099/first.jpg", "AURORA/data/something/frames/49099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching granola bar with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113185", "images": ["AURORA/data/something/frames/131557/first.jpg", "AURORA/data/something/frames/131557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lime and lime away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113186", "images": ["AURORA/data/something/frames/144615/first.jpg", "AURORA/data/something/frames/144615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000113187", "images": ["AURORA/data/something/frames/23907/first.jpg", "AURORA/data/something/frames/23907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a container on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113188", "images": ["AURORA/data/something/frames/126582/first.jpg", "AURORA/data/something/frames/126582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113189", "images": ["AURORA/data/something/frames/185757/first.jpg", "AURORA/data/something/frames/185757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with another coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113190", "images": ["AURORA/data/something/frames/3793/first.jpg", "AURORA/data/something/frames/3793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a yellow pen in front of a screen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113191", "images": ["AURORA/data/something/frames/92489/first.jpg", "AURORA/data/something/frames/92489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug adapter into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113192", "images": ["AURORA/data/something/frames/149612/first.jpg", "AURORA/data/something/frames/149612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and bottle away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113193", "images": ["AURORA/data/something/frames/135355/first.jpg", "AURORA/data/something/frames/135355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wine key and chapstick on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113194", "images": ["AURORA/data/something/frames/174956/first.jpg", "AURORA/data/something/frames/174956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113195", "images": ["AURORA/data/something/frames/28601/first.jpg", "AURORA/data/something/frames/28601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rocks and rocks away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113196", "images": ["AURORA/data/something/frames/26971/first.jpg", "AURORA/data/something/frames/26971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) keys of keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113197", "images": ["AURORA/data/something/frames/199245/first.jpg", "AURORA/data/something/frames/199245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hairclip and ice tray closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113198", "images": ["AURORA/data/something/frames/167436/first.jpg", "AURORA/data/something/frames/167436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing printer paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113199", "images": ["AURORA/data/something/frames/184772/first.jpg", "AURORA/data/something/frames/184772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113200", "images": ["AURORA/data/something/frames/142357/first.jpg", "AURORA/data/something/frames/142357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113201", "images": ["AURORA/data/something/frames/109948/first.jpg", "AURORA/data/something/frames/109948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking car out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113202", "images": ["AURORA/data/something/frames/212394/first.jpg", "AURORA/data/something/frames/212394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper clip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113203", "images": ["AURORA/data/something/frames/86565/first.jpg", "AURORA/data/something/frames/86565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white badge with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113204", "images": ["AURORA/data/something/frames/24659/first.jpg", "AURORA/data/something/frames/24659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113205", "images": ["AURORA/data/something/frames/99273/first.jpg", "AURORA/data/something/frames/99273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113206", "images": ["AURORA/data/something/frames/182096/first.jpg", "AURORA/data/something/frames/182096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink blush on from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113207", "images": ["AURORA/data/something/frames/74983/first.jpg", "AURORA/data/something/frames/74983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113208", "images": ["AURORA/data/something/frames/185777/first.jpg", "AURORA/data/something/frames/185777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing play-doh behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113209", "images": ["AURORA/data/something/frames/150301/first.jpg", "AURORA/data/something/frames/150301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113210", "images": ["AURORA/data/something/frames/191701/first.jpg", "AURORA/data/something/frames/191701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting marker pen up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113211", "images": ["AURORA/data/something/frames/30315/first.jpg", "AURORA/data/something/frames/30315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plate from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113212", "images": ["AURORA/data/something/frames/93580/first.jpg", "AURORA/data/something/frames/93580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cigarrete butt so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113213", "images": ["AURORA/data/something/frames/62813/first.jpg", "AURORA/data/something/frames/62813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cards on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113214", "images": ["AURORA/data/something/frames/11687/first.jpg", "AURORA/data/something/frames/11687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113215", "images": ["AURORA/data/something/frames/77265/first.jpg", "AURORA/data/something/frames/77265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113216", "images": ["AURORA/data/something/frames/108595/first.jpg", "AURORA/data/something/frames/108595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113217", "images": ["AURORA/data/something/frames/476/first.jpg", "AURORA/data/something/frames/476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green bowl with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113218", "images": ["AURORA/data/something/frames/142530/first.jpg", "AURORA/data/something/frames/142530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering smartphone with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113219", "images": ["AURORA/data/something/frames/159882/first.jpg", "AURORA/data/something/frames/159882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an adapter from an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113220", "images": ["AURORA/data/something/frames/31914/first.jpg", "AURORA/data/something/frames/31914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000113221", "images": ["AURORA/data/something/frames/184108/first.jpg", "AURORA/data/something/frames/184108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shirt into a laundry basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113222", "images": ["AURORA/data/something/frames/106813/first.jpg", "AURORA/data/something/frames/106813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping knife next to fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113223", "images": ["AURORA/data/something/frames/156401/first.jpg", "AURORA/data/something/frames/156401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113224", "images": ["AURORA/data/something/frames/204017/first.jpg", "AURORA/data/something/frames/204017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one button from many buttons"}, {"from": "gpt", "value": ""}]} +{"id": "000000113225", "images": ["AURORA/data/something/frames/5916/first.jpg", "AURORA/data/something/frames/5916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking game piece out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113226", "images": ["AURORA/data/something/frames/88381/first.jpg", "AURORA/data/something/frames/88381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113227", "images": ["AURORA/data/something/frames/112174/first.jpg", "AURORA/data/something/frames/112174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic screwcap next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113228", "images": ["AURORA/data/something/frames/1568/first.jpg", "AURORA/data/something/frames/1568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key away from comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000113229", "images": ["AURORA/data/something/frames/218533/first.jpg", "AURORA/data/something/frames/218533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113230", "images": ["AURORA/data/something/frames/202332/first.jpg", "AURORA/data/something/frames/202332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113231", "images": ["AURORA/data/something/frames/115579/first.jpg", "AURORA/data/something/frames/115579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113232", "images": ["AURORA/data/something/frames/26673/first.jpg", "AURORA/data/something/frames/26673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113233", "images": ["AURORA/data/something/frames/167701/first.jpg", "AURORA/data/something/frames/167701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113234", "images": ["AURORA/data/something/frames/183125/first.jpg", "AURORA/data/something/frames/183125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113235", "images": ["AURORA/data/something/frames/183767/first.jpg", "AURORA/data/something/frames/183767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: nail clipper colliding with pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113236", "images": ["AURORA/data/something/frames/106625/first.jpg", "AURORA/data/something/frames/106625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113237", "images": ["AURORA/data/something/frames/169574/first.jpg", "AURORA/data/something/frames/169574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting laptop similar to other laptops that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113238", "images": ["AURORA/data/something/frames/69312/first.jpg", "AURORA/data/something/frames/69312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tube underneath bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113239", "images": ["AURORA/data/something/frames/51695/first.jpg", "AURORA/data/something/frames/51695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a rock from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113240", "images": ["AURORA/data/something/frames/66923/first.jpg", "AURORA/data/something/frames/66923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a powder tin towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113241", "images": ["AURORA/data/something/frames/202803/first.jpg", "AURORA/data/something/frames/202803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113242", "images": ["AURORA/data/something/frames/63313/first.jpg", "AURORA/data/something/frames/63313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster underneath cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113243", "images": ["AURORA/data/something/frames/183775/first.jpg", "AURORA/data/something/frames/183775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mouse from pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000113244", "images": ["AURORA/data/something/frames/109557/first.jpg", "AURORA/data/something/frames/109557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint tube behind cactus"}, {"from": "gpt", "value": ""}]} +{"id": "000000113245", "images": ["AURORA/data/something/frames/140935/first.jpg", "AURORA/data/something/frames/140935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bucket with a toy bulldozer on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113246", "images": ["AURORA/data/something/frames/81367/first.jpg", "AURORA/data/something/frames/81367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling toy cars up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113247", "images": ["AURORA/data/something/frames/199182/first.jpg", "AURORA/data/something/frames/199182/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a baby doll with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113248", "images": ["AURORA/data/something/frames/134500/first.jpg", "AURORA/data/something/frames/134500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable away from usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000113249", "images": ["AURORA/data/something/frames/159131/first.jpg", "AURORA/data/something/frames/159131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coin with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113250", "images": ["AURORA/data/something/frames/182806/first.jpg", "AURORA/data/something/frames/182806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113251", "images": ["AURORA/data/something/frames/39048/first.jpg", "AURORA/data/something/frames/39048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bag with a door hook"}, {"from": "gpt", "value": ""}]} +{"id": "000000113252", "images": ["AURORA/data/something/frames/69470/first.jpg", "AURORA/data/something/frames/69470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113253", "images": ["AURORA/data/something/frames/63365/first.jpg", "AURORA/data/something/frames/63365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113254", "images": ["AURORA/data/something/frames/156240/first.jpg", "AURORA/data/something/frames/156240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113255", "images": ["AURORA/data/something/frames/21438/first.jpg", "AURORA/data/something/frames/21438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening small freshmints"}, {"from": "gpt", "value": ""}]} +{"id": "000000113256", "images": ["AURORA/data/something/frames/84277/first.jpg", "AURORA/data/something/frames/84277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000113257", "images": ["AURORA/data/something/frames/70659/first.jpg", "AURORA/data/something/frames/70659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle behind kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000113258", "images": ["AURORA/data/something/frames/190154/first.jpg", "AURORA/data/something/frames/190154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming dinosaur model"}, {"from": "gpt", "value": ""}]} +{"id": "000000113259", "images": ["AURORA/data/something/frames/92150/first.jpg", "AURORA/data/something/frames/92150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113260", "images": ["AURORA/data/something/frames/92925/first.jpg", "AURORA/data/something/frames/92925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mouse into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113261", "images": ["AURORA/data/something/frames/25736/first.jpg", "AURORA/data/something/frames/25736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toothbrush with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113262", "images": ["AURORA/data/something/frames/6879/first.jpg", "AURORA/data/something/frames/6879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113263", "images": ["AURORA/data/something/frames/172284/first.jpg", "AURORA/data/something/frames/172284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into plug hole"}, {"from": "gpt", "value": ""}]} +{"id": "000000113264", "images": ["AURORA/data/something/frames/101856/first.jpg", "AURORA/data/something/frames/101856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113265", "images": ["AURORA/data/something/frames/107303/first.jpg", "AURORA/data/something/frames/107303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pumpkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113266", "images": ["AURORA/data/something/frames/10773/first.jpg", "AURORA/data/something/frames/10773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a hair accessoire up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113267", "images": ["AURORA/data/something/frames/170634/first.jpg", "AURORA/data/something/frames/170634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nailpolish down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113268", "images": ["AURORA/data/something/frames/25393/first.jpg", "AURORA/data/something/frames/25393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring syrup into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113269", "images": ["AURORA/data/something/frames/140620/first.jpg", "AURORA/data/something/frames/140620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113270", "images": ["AURORA/data/something/frames/144126/first.jpg", "AURORA/data/something/frames/144126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil of school materials"}, {"from": "gpt", "value": ""}]} +{"id": "000000113271", "images": ["AURORA/data/something/frames/92056/first.jpg", "AURORA/data/something/frames/92056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113272", "images": ["AURORA/data/something/frames/104601/first.jpg", "AURORA/data/something/frames/104601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tea out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113273", "images": ["AURORA/data/something/frames/83133/first.jpg", "AURORA/data/something/frames/83133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113274", "images": ["AURORA/data/something/frames/78437/first.jpg", "AURORA/data/something/frames/78437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping a lotion off of the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113275", "images": ["AURORA/data/something/frames/122884/first.jpg", "AURORA/data/something/frames/122884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113276", "images": ["AURORA/data/something/frames/124792/first.jpg", "AURORA/data/something/frames/124792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding ipad cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000113277", "images": ["AURORA/data/something/frames/135026/first.jpg", "AURORA/data/something/frames/135026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing computer mouse, revealing key behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113278", "images": ["AURORA/data/something/frames/5058/first.jpg", "AURORA/data/something/frames/5058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a piece of paper and a glass of cordial on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113279", "images": ["AURORA/data/something/frames/41496/first.jpg", "AURORA/data/something/frames/41496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a wallet with a textsurfer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113280", "images": ["AURORA/data/something/frames/54764/first.jpg", "AURORA/data/something/frames/54764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113281", "images": ["AURORA/data/something/frames/168948/first.jpg", "AURORA/data/something/frames/168948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a deck of cards off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113282", "images": ["AURORA/data/something/frames/208698/first.jpg", "AURORA/data/something/frames/208698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113283", "images": ["AURORA/data/something/frames/120142/first.jpg", "AURORA/data/something/frames/120142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113284", "images": ["AURORA/data/something/frames/26966/first.jpg", "AURORA/data/something/frames/26966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cut tomatoes into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113285", "images": ["AURORA/data/something/frames/64506/first.jpg", "AURORA/data/something/frames/64506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yellow highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113286", "images": ["AURORA/data/something/frames/52769/first.jpg", "AURORA/data/something/frames/52769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scotch tape from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113287", "images": ["AURORA/data/something/frames/169085/first.jpg", "AURORA/data/something/frames/169085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming fan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113288", "images": ["AURORA/data/something/frames/120364/first.jpg", "AURORA/data/something/frames/120364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming readymade dresses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113289", "images": ["AURORA/data/something/frames/147269/first.jpg", "AURORA/data/something/frames/147269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing felt pen with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113290", "images": ["AURORA/data/something/frames/98879/first.jpg", "AURORA/data/something/frames/98879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113291", "images": ["AURORA/data/something/frames/9317/first.jpg", "AURORA/data/something/frames/9317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000113292", "images": ["AURORA/data/something/frames/152262/first.jpg", "AURORA/data/something/frames/152262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113293", "images": ["AURORA/data/something/frames/36254/first.jpg", "AURORA/data/something/frames/36254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into glue"}, {"from": "gpt", "value": ""}]} +{"id": "000000113294", "images": ["AURORA/data/something/frames/11334/first.jpg", "AURORA/data/something/frames/11334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113295", "images": ["AURORA/data/something/frames/83541/first.jpg", "AURORA/data/something/frames/83541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113296", "images": ["AURORA/data/something/frames/8590/first.jpg", "AURORA/data/something/frames/8590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113297", "images": ["AURORA/data/something/frames/135962/first.jpg", "AURORA/data/something/frames/135962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000113298", "images": ["AURORA/data/something/frames/1168/first.jpg", "AURORA/data/something/frames/1168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113299", "images": ["AURORA/data/something/frames/56795/first.jpg", "AURORA/data/something/frames/56795/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning remote control upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113300", "images": ["AURORA/data/something/frames/137973/first.jpg", "AURORA/data/something/frames/137973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with tissue paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113301", "images": ["AURORA/data/something/frames/193333/first.jpg", "AURORA/data/something/frames/193333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113302", "images": ["AURORA/data/something/frames/20396/first.jpg", "AURORA/data/something/frames/20396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and fruit away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113303", "images": ["AURORA/data/something/frames/75384/first.jpg", "AURORA/data/something/frames/75384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto frying pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113304", "images": ["AURORA/data/something/frames/4995/first.jpg", "AURORA/data/something/frames/4995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113305", "images": ["AURORA/data/something/frames/214017/first.jpg", "AURORA/data/something/frames/214017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging sunglass out of clothes bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113306", "images": ["AURORA/data/something/frames/75685/first.jpg", "AURORA/data/something/frames/75685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000113307", "images": ["AURORA/data/something/frames/75766/first.jpg", "AURORA/data/something/frames/75766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking six books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113308", "images": ["AURORA/data/something/frames/108425/first.jpg", "AURORA/data/something/frames/108425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wallet up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113309", "images": ["AURORA/data/something/frames/6954/first.jpg", "AURORA/data/something/frames/6954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113310", "images": ["AURORA/data/something/frames/167356/first.jpg", "AURORA/data/something/frames/167356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a monkey figure and a monkey figure away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113311", "images": ["AURORA/data/something/frames/9497/first.jpg", "AURORA/data/something/frames/9497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with nail cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113312", "images": ["AURORA/data/something/frames/50256/first.jpg", "AURORA/data/something/frames/50256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113313", "images": ["AURORA/data/something/frames/217306/first.jpg", "AURORA/data/something/frames/217306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113314", "images": ["AURORA/data/something/frames/68391/first.jpg", "AURORA/data/something/frames/68391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a toy robot on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113315", "images": ["AURORA/data/something/frames/191006/first.jpg", "AURORA/data/something/frames/191006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a wok"}, {"from": "gpt", "value": ""}]} +{"id": "000000113316", "images": ["AURORA/data/something/frames/162881/first.jpg", "AURORA/data/something/frames/162881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin next to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113317", "images": ["AURORA/data/something/frames/207417/first.jpg", "AURORA/data/something/frames/207417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy away from clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000113318", "images": ["AURORA/data/something/frames/151614/first.jpg", "AURORA/data/something/frames/151614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of a jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113319", "images": ["AURORA/data/something/frames/25704/first.jpg", "AURORA/data/something/frames/25704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113320", "images": ["AURORA/data/something/frames/114986/first.jpg", "AURORA/data/something/frames/114986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping flour up with measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113321", "images": ["AURORA/data/something/frames/128956/first.jpg", "AURORA/data/something/frames/128956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113322", "images": ["AURORA/data/something/frames/129615/first.jpg", "AURORA/data/something/frames/129615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113323", "images": ["AURORA/data/something/frames/104368/first.jpg", "AURORA/data/something/frames/104368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113324", "images": ["AURORA/data/something/frames/218377/first.jpg", "AURORA/data/something/frames/218377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113325", "images": ["AURORA/data/something/frames/102782/first.jpg", "AURORA/data/something/frames/102782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purple balloon pump from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113326", "images": ["AURORA/data/something/frames/46169/first.jpg", "AURORA/data/something/frames/46169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113327", "images": ["AURORA/data/something/frames/206987/first.jpg", "AURORA/data/something/frames/206987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113328", "images": ["AURORA/data/something/frames/145492/first.jpg", "AURORA/data/something/frames/145492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a glue stick behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113329", "images": ["AURORA/data/something/frames/15498/first.jpg", "AURORA/data/something/frames/15498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mouse from behind of a helmet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113330", "images": ["AURORA/data/something/frames/31540/first.jpg", "AURORA/data/something/frames/31540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand sanitizer upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113331", "images": ["AURORA/data/something/frames/24321/first.jpg", "AURORA/data/something/frames/24321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming shampoo bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113332", "images": ["AURORA/data/something/frames/23230/first.jpg", "AURORA/data/something/frames/23230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box, book and gum on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113333", "images": ["AURORA/data/something/frames/200080/first.jpg", "AURORA/data/something/frames/200080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a face towel into a small bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113334", "images": ["AURORA/data/something/frames/107441/first.jpg", "AURORA/data/something/frames/107441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hairclip into a glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000113335", "images": ["AURORA/data/something/frames/134541/first.jpg", "AURORA/data/something/frames/134541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving head charger and head charger away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113336", "images": ["AURORA/data/something/frames/91418/first.jpg", "AURORA/data/something/frames/91418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113337", "images": ["AURORA/data/something/frames/194218/first.jpg", "AURORA/data/something/frames/194218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with mouse on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113338", "images": ["AURORA/data/something/frames/4114/first.jpg", "AURORA/data/something/frames/4114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113339", "images": ["AURORA/data/something/frames/135837/first.jpg", "AURORA/data/something/frames/135837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping tissues over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113340", "images": ["AURORA/data/something/frames/23147/first.jpg", "AURORA/data/something/frames/23147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging candy mint out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113341", "images": ["AURORA/data/something/frames/155310/first.jpg", "AURORA/data/something/frames/155310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113342", "images": ["AURORA/data/something/frames/185280/first.jpg", "AURORA/data/something/frames/185280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote control with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113343", "images": ["AURORA/data/something/frames/44303/first.jpg", "AURORA/data/something/frames/44303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plant on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113344", "images": ["AURORA/data/something/frames/143793/first.jpg", "AURORA/data/something/frames/143793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113345", "images": ["AURORA/data/something/frames/31560/first.jpg", "AURORA/data/something/frames/31560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) switch of light"}, {"from": "gpt", "value": ""}]} +{"id": "000000113346", "images": ["AURORA/data/something/frames/146870/first.jpg", "AURORA/data/something/frames/146870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 striker coins onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113347", "images": ["AURORA/data/something/frames/36641/first.jpg", "AURORA/data/something/frames/36641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spaghetti until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113348", "images": ["AURORA/data/something/frames/26281/first.jpg", "AURORA/data/something/frames/26281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113349", "images": ["AURORA/data/something/frames/8252/first.jpg", "AURORA/data/something/frames/8252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113350", "images": ["AURORA/data/something/frames/195007/first.jpg", "AURORA/data/something/frames/195007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113351", "images": ["AURORA/data/something/frames/50765/first.jpg", "AURORA/data/something/frames/50765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebooks into eco bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113352", "images": ["AURORA/data/something/frames/92475/first.jpg", "AURORA/data/something/frames/92475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening mixer-jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113353", "images": ["AURORA/data/something/frames/164584/first.jpg", "AURORA/data/something/frames/164584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113354", "images": ["AURORA/data/something/frames/87170/first.jpg", "AURORA/data/something/frames/87170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113355", "images": ["AURORA/data/something/frames/62930/first.jpg", "AURORA/data/something/frames/62930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electric plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113356", "images": ["AURORA/data/something/frames/218360/first.jpg", "AURORA/data/something/frames/218360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one book of many similar books on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113357", "images": ["AURORA/data/something/frames/95927/first.jpg", "AURORA/data/something/frames/95927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113358", "images": ["AURORA/data/something/frames/64862/first.jpg", "AURORA/data/something/frames/64862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113359", "images": ["AURORA/data/something/frames/16767/first.jpg", "AURORA/data/something/frames/16767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a toy out of a toy box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113360", "images": ["AURORA/data/something/frames/8461/first.jpg", "AURORA/data/something/frames/8461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting hair band"}, {"from": "gpt", "value": ""}]} +{"id": "000000113361", "images": ["AURORA/data/something/frames/124081/first.jpg", "AURORA/data/something/frames/124081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 11 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000113362", "images": ["AURORA/data/something/frames/71827/first.jpg", "AURORA/data/something/frames/71827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush next to smart phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113363", "images": ["AURORA/data/something/frames/22668/first.jpg", "AURORA/data/something/frames/22668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113364", "images": ["AURORA/data/something/frames/164031/first.jpg", "AURORA/data/something/frames/164031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse in front of keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113365", "images": ["AURORA/data/something/frames/47958/first.jpg", "AURORA/data/something/frames/47958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse away from keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113366", "images": ["AURORA/data/something/frames/124125/first.jpg", "AURORA/data/something/frames/124125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing plastic bags into a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113367", "images": ["AURORA/data/something/frames/45017/first.jpg", "AURORA/data/something/frames/45017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rubber being deflected from pencil sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000113368", "images": ["AURORA/data/something/frames/55733/first.jpg", "AURORA/data/something/frames/55733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113369", "images": ["AURORA/data/something/frames/68900/first.jpg", "AURORA/data/something/frames/68900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil closer to spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113370", "images": ["AURORA/data/something/frames/110845/first.jpg", "AURORA/data/something/frames/110845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb drive into an adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113371", "images": ["AURORA/data/something/frames/157672/first.jpg", "AURORA/data/something/frames/157672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113372", "images": ["AURORA/data/something/frames/83920/first.jpg", "AURORA/data/something/frames/83920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113373", "images": ["AURORA/data/something/frames/180173/first.jpg", "AURORA/data/something/frames/180173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting one screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000113374", "images": ["AURORA/data/something/frames/29894/first.jpg", "AURORA/data/something/frames/29894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a lid off"}, {"from": "gpt", "value": ""}]} +{"id": "000000113375", "images": ["AURORA/data/something/frames/145462/first.jpg", "AURORA/data/something/frames/145462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a fork away from a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113376", "images": ["AURORA/data/something/frames/145653/first.jpg", "AURORA/data/something/frames/145653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000113377", "images": ["AURORA/data/something/frames/77223/first.jpg", "AURORA/data/something/frames/77223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering scissor with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113378", "images": ["AURORA/data/something/frames/77592/first.jpg", "AURORA/data/something/frames/77592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: remote being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113379", "images": ["AURORA/data/something/frames/209593/first.jpg", "AURORA/data/something/frames/209593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tumblers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113380", "images": ["AURORA/data/something/frames/57897/first.jpg", "AURORA/data/something/frames/57897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a glass so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113381", "images": ["AURORA/data/something/frames/93723/first.jpg", "AURORA/data/something/frames/93723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering coupon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113382", "images": ["AURORA/data/something/frames/63586/first.jpg", "AURORA/data/something/frames/63586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: clip colliding with bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113383", "images": ["AURORA/data/something/frames/73270/first.jpg", "AURORA/data/something/frames/73270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113384", "images": ["AURORA/data/something/frames/80680/first.jpg", "AURORA/data/something/frames/80680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113385", "images": ["AURORA/data/something/frames/101156/first.jpg", "AURORA/data/something/frames/101156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113386", "images": ["AURORA/data/something/frames/23152/first.jpg", "AURORA/data/something/frames/23152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering gear wheel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113387", "images": ["AURORA/data/something/frames/29127/first.jpg", "AURORA/data/something/frames/29127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113388", "images": ["AURORA/data/something/frames/145347/first.jpg", "AURORA/data/something/frames/145347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling soda pop can from behind of coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000113389", "images": ["AURORA/data/something/frames/118293/first.jpg", "AURORA/data/something/frames/118293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and earphones on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113390", "images": ["AURORA/data/something/frames/109533/first.jpg", "AURORA/data/something/frames/109533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming audio sistem"}, {"from": "gpt", "value": ""}]} +{"id": "000000113391", "images": ["AURORA/data/something/frames/209224/first.jpg", "AURORA/data/something/frames/209224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bleacher with hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000113392", "images": ["AURORA/data/something/frames/133812/first.jpg", "AURORA/data/something/frames/133812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling folders up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113393", "images": ["AURORA/data/something/frames/179656/first.jpg", "AURORA/data/something/frames/179656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cards so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113394", "images": ["AURORA/data/something/frames/44055/first.jpg", "AURORA/data/something/frames/44055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into box but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113395", "images": ["AURORA/data/something/frames/95071/first.jpg", "AURORA/data/something/frames/95071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113396", "images": ["AURORA/data/something/frames/14001/first.jpg", "AURORA/data/something/frames/14001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tissue out of tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113397", "images": ["AURORA/data/something/frames/181666/first.jpg", "AURORA/data/something/frames/181666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a hockey stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000113398", "images": ["AURORA/data/something/frames/2684/first.jpg", "AURORA/data/something/frames/2684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box wood underneath heart wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000113399", "images": ["AURORA/data/something/frames/58306/first.jpg", "AURORA/data/something/frames/58306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113400", "images": ["AURORA/data/something/frames/60831/first.jpg", "AURORA/data/something/frames/60831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving gear wheel closer to battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000113401", "images": ["AURORA/data/something/frames/41824/first.jpg", "AURORA/data/something/frames/41824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter away from lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113402", "images": ["AURORA/data/something/frames/217388/first.jpg", "AURORA/data/something/frames/217388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tablet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113403", "images": ["AURORA/data/something/frames/37928/first.jpg", "AURORA/data/something/frames/37928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling colorful scarf from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113404", "images": ["AURORA/data/something/frames/122169/first.jpg", "AURORA/data/something/frames/122169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle behind another bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113405", "images": ["AURORA/data/something/frames/107226/first.jpg", "AURORA/data/something/frames/107226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into adaptor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113406", "images": ["AURORA/data/something/frames/183179/first.jpg", "AURORA/data/something/frames/183179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawyer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113407", "images": ["AURORA/data/something/frames/217671/first.jpg", "AURORA/data/something/frames/217671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113408", "images": ["AURORA/data/something/frames/94366/first.jpg", "AURORA/data/something/frames/94366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottlecap"}, {"from": "gpt", "value": ""}]} +{"id": "000000113409", "images": ["AURORA/data/something/frames/198126/first.jpg", "AURORA/data/something/frames/198126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bottle, revealing key chain behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113410", "images": ["AURORA/data/something/frames/151270/first.jpg", "AURORA/data/something/frames/151270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113411", "images": ["AURORA/data/something/frames/44821/first.jpg", "AURORA/data/something/frames/44821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from toothpaste tube with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113412", "images": ["AURORA/data/something/frames/178023/first.jpg", "AURORA/data/something/frames/178023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113413", "images": ["AURORA/data/something/frames/48015/first.jpg", "AURORA/data/something/frames/48015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of match box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113414", "images": ["AURORA/data/something/frames/5455/first.jpg", "AURORA/data/something/frames/5455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bangles"}, {"from": "gpt", "value": ""}]} +{"id": "000000113415", "images": ["AURORA/data/something/frames/62410/first.jpg", "AURORA/data/something/frames/62410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) flower of plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113416", "images": ["AURORA/data/something/frames/117031/first.jpg", "AURORA/data/something/frames/117031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red pot holder on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113417", "images": ["AURORA/data/something/frames/83901/first.jpg", "AURORA/data/something/frames/83901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113418", "images": ["AURORA/data/something/frames/48432/first.jpg", "AURORA/data/something/frames/48432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor on the edge of slab so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113419", "images": ["AURORA/data/something/frames/161595/first.jpg", "AURORA/data/something/frames/161595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering red chili with small box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113420", "images": ["AURORA/data/something/frames/24305/first.jpg", "AURORA/data/something/frames/24305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse closer to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113421", "images": ["AURORA/data/something/frames/83961/first.jpg", "AURORA/data/something/frames/83961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy truck colliding with cup and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113422", "images": ["AURORA/data/something/frames/55458/first.jpg", "AURORA/data/something/frames/55458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113423", "images": ["AURORA/data/something/frames/641/first.jpg", "AURORA/data/something/frames/641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113424", "images": ["AURORA/data/something/frames/213166/first.jpg", "AURORA/data/something/frames/213166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pitcher upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113425", "images": ["AURORA/data/something/frames/103953/first.jpg", "AURORA/data/something/frames/103953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a flask cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000113426", "images": ["AURORA/data/something/frames/148093/first.jpg", "AURORA/data/something/frames/148093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113427", "images": ["AURORA/data/something/frames/201181/first.jpg", "AURORA/data/something/frames/201181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113428", "images": ["AURORA/data/something/frames/62458/first.jpg", "AURORA/data/something/frames/62458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bell pepper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113429", "images": ["AURORA/data/something/frames/104517/first.jpg", "AURORA/data/something/frames/104517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb and calculator closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113430", "images": ["AURORA/data/something/frames/45078/first.jpg", "AURORA/data/something/frames/45078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113431", "images": ["AURORA/data/something/frames/197634/first.jpg", "AURORA/data/something/frames/197634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding coversheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113432", "images": ["AURORA/data/something/frames/82134/first.jpg", "AURORA/data/something/frames/82134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a deodorant and a glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113433", "images": ["AURORA/data/something/frames/90043/first.jpg", "AURORA/data/something/frames/90043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering blue colour pen with white sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113434", "images": ["AURORA/data/something/frames/104162/first.jpg", "AURORA/data/something/frames/104162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113435", "images": ["AURORA/data/something/frames/86694/first.jpg", "AURORA/data/something/frames/86694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113436", "images": ["AURORA/data/something/frames/84304/first.jpg", "AURORA/data/something/frames/84304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) arm of action figure"}, {"from": "gpt", "value": ""}]} +{"id": "000000113437", "images": ["AURORA/data/something/frames/49586/first.jpg", "AURORA/data/something/frames/49586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113438", "images": ["AURORA/data/something/frames/186424/first.jpg", "AURORA/data/something/frames/186424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113439", "images": ["AURORA/data/something/frames/143524/first.jpg", "AURORA/data/something/frames/143524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) hand rest of chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000113440", "images": ["AURORA/data/something/frames/86489/first.jpg", "AURORA/data/something/frames/86489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sugar into sugar container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113441", "images": ["AURORA/data/something/frames/141375/first.jpg", "AURORA/data/something/frames/141375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113442", "images": ["AURORA/data/something/frames/206796/first.jpg", "AURORA/data/something/frames/206796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113443", "images": ["AURORA/data/something/frames/104298/first.jpg", "AURORA/data/something/frames/104298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113444", "images": ["AURORA/data/something/frames/62796/first.jpg", "AURORA/data/something/frames/62796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing letter just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113445", "images": ["AURORA/data/something/frames/116520/first.jpg", "AURORA/data/something/frames/116520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rocks up with trowel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113446", "images": ["AURORA/data/something/frames/166665/first.jpg", "AURORA/data/something/frames/166665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000113447", "images": ["AURORA/data/something/frames/80699/first.jpg", "AURORA/data/something/frames/80699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming red watch box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113448", "images": ["AURORA/data/something/frames/156641/first.jpg", "AURORA/data/something/frames/156641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113449", "images": ["AURORA/data/something/frames/193371/first.jpg", "AURORA/data/something/frames/193371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113450", "images": ["AURORA/data/something/frames/83781/first.jpg", "AURORA/data/something/frames/83781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113451", "images": ["AURORA/data/something/frames/37985/first.jpg", "AURORA/data/something/frames/37985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113452", "images": ["AURORA/data/something/frames/177883/first.jpg", "AURORA/data/something/frames/177883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing keys from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113453", "images": ["AURORA/data/something/frames/161130/first.jpg", "AURORA/data/something/frames/161130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113454", "images": ["AURORA/data/something/frames/132360/first.jpg", "AURORA/data/something/frames/132360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113455", "images": ["AURORA/data/something/frames/24706/first.jpg", "AURORA/data/something/frames/24706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tree branch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113456", "images": ["AURORA/data/something/frames/65519/first.jpg", "AURORA/data/something/frames/65519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping picture off of white board"}, {"from": "gpt", "value": ""}]} +{"id": "000000113457", "images": ["AURORA/data/something/frames/133262/first.jpg", "AURORA/data/something/frames/133262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113458", "images": ["AURORA/data/something/frames/153985/first.jpg", "AURORA/data/something/frames/153985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a mobile phone into the socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113459", "images": ["AURORA/data/something/frames/33257/first.jpg", "AURORA/data/something/frames/33257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113460", "images": ["AURORA/data/something/frames/185578/first.jpg", "AURORA/data/something/frames/185578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113461", "images": ["AURORA/data/something/frames/29727/first.jpg", "AURORA/data/something/frames/29727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse onto keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113462", "images": ["AURORA/data/something/frames/179922/first.jpg", "AURORA/data/something/frames/179922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113463", "images": ["AURORA/data/something/frames/141102/first.jpg", "AURORA/data/something/frames/141102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving canister away from paper towels"}, {"from": "gpt", "value": ""}]} +{"id": "000000113464", "images": ["AURORA/data/something/frames/14731/first.jpg", "AURORA/data/something/frames/14731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling speaker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113465", "images": ["AURORA/data/something/frames/168796/first.jpg", "AURORA/data/something/frames/168796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening opening a manicure set"}, {"from": "gpt", "value": ""}]} +{"id": "000000113466", "images": ["AURORA/data/something/frames/74305/first.jpg", "AURORA/data/something/frames/74305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling ketchup onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000113467", "images": ["AURORA/data/something/frames/190447/first.jpg", "AURORA/data/something/frames/190447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching mobile to charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000113468", "images": ["AURORA/data/something/frames/36022/first.jpg", "AURORA/data/something/frames/36022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113469", "images": ["AURORA/data/something/frames/160396/first.jpg", "AURORA/data/something/frames/160396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000113470", "images": ["AURORA/data/something/frames/81061/first.jpg", "AURORA/data/something/frames/81061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113471", "images": ["AURORA/data/something/frames/72101/first.jpg", "AURORA/data/something/frames/72101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush and toothpaste so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113472", "images": ["AURORA/data/something/frames/147306/first.jpg", "AURORA/data/something/frames/147306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113473", "images": ["AURORA/data/something/frames/181523/first.jpg", "AURORA/data/something/frames/181523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113474", "images": ["AURORA/data/something/frames/153109/first.jpg", "AURORA/data/something/frames/153109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the water container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113475", "images": ["AURORA/data/something/frames/210125/first.jpg", "AURORA/data/something/frames/210125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping jelly off of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113476", "images": ["AURORA/data/something/frames/15035/first.jpg", "AURORA/data/something/frames/15035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming vanity bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113477", "images": ["AURORA/data/something/frames/155358/first.jpg", "AURORA/data/something/frames/155358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113478", "images": ["AURORA/data/something/frames/131001/first.jpg", "AURORA/data/something/frames/131001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cloth clip on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113479", "images": ["AURORA/data/something/frames/73884/first.jpg", "AURORA/data/something/frames/73884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a helmet with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113480", "images": ["AURORA/data/something/frames/216559/first.jpg", "AURORA/data/something/frames/216559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a soda can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113481", "images": ["AURORA/data/something/frames/113950/first.jpg", "AURORA/data/something/frames/113950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wallet upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113482", "images": ["AURORA/data/something/frames/91798/first.jpg", "AURORA/data/something/frames/91798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy truck from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113483", "images": ["AURORA/data/something/frames/101552/first.jpg", "AURORA/data/something/frames/101552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113484", "images": ["AURORA/data/something/frames/148219/first.jpg", "AURORA/data/something/frames/148219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113485", "images": ["AURORA/data/something/frames/34894/first.jpg", "AURORA/data/something/frames/34894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving brush and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113486", "images": ["AURORA/data/something/frames/123711/first.jpg", "AURORA/data/something/frames/123711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown bracelet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113487", "images": ["AURORA/data/something/frames/111006/first.jpg", "AURORA/data/something/frames/111006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) clasp of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113488", "images": ["AURORA/data/something/frames/63640/first.jpg", "AURORA/data/something/frames/63640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toothbrush with plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113489", "images": ["AURORA/data/something/frames/81503/first.jpg", "AURORA/data/something/frames/81503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tortilla until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113490", "images": ["AURORA/data/something/frames/211835/first.jpg", "AURORA/data/something/frames/211835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mug with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113491", "images": ["AURORA/data/something/frames/92079/first.jpg", "AURORA/data/something/frames/92079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing spoon into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113492", "images": ["AURORA/data/something/frames/166754/first.jpg", "AURORA/data/something/frames/166754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000113493", "images": ["AURORA/data/something/frames/85036/first.jpg", "AURORA/data/something/frames/85036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: adhesive can colliding with candle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113494", "images": ["AURORA/data/something/frames/118902/first.jpg", "AURORA/data/something/frames/118902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113495", "images": ["AURORA/data/something/frames/129492/first.jpg", "AURORA/data/something/frames/129492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113496", "images": ["AURORA/data/something/frames/164395/first.jpg", "AURORA/data/something/frames/164395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000113497", "images": ["AURORA/data/something/frames/9858/first.jpg", "AURORA/data/something/frames/9858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup off of the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113498", "images": ["AURORA/data/something/frames/141498/first.jpg", "AURORA/data/something/frames/141498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening body lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000113499", "images": ["AURORA/data/something/frames/206775/first.jpg", "AURORA/data/something/frames/206775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113500", "images": ["AURORA/data/something/frames/149756/first.jpg", "AURORA/data/something/frames/149756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113501", "images": ["AURORA/data/something/frames/16537/first.jpg", "AURORA/data/something/frames/16537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113502", "images": ["AURORA/data/something/frames/213417/first.jpg", "AURORA/data/something/frames/213417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113503", "images": ["AURORA/data/something/frames/100536/first.jpg", "AURORA/data/something/frames/100536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping case onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113504", "images": ["AURORA/data/something/frames/63823/first.jpg", "AURORA/data/something/frames/63823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113505", "images": ["AURORA/data/something/frames/171619/first.jpg", "AURORA/data/something/frames/171619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113506", "images": ["AURORA/data/something/frames/127296/first.jpg", "AURORA/data/something/frames/127296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113507", "images": ["AURORA/data/something/frames/1682/first.jpg", "AURORA/data/something/frames/1682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 pens onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113508", "images": ["AURORA/data/something/frames/46544/first.jpg", "AURORA/data/something/frames/46544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening toilet lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000113509", "images": ["AURORA/data/something/frames/85418/first.jpg", "AURORA/data/something/frames/85418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys in front of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113510", "images": ["AURORA/data/something/frames/68639/first.jpg", "AURORA/data/something/frames/68639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a small vacuum with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113511", "images": ["AURORA/data/something/frames/13167/first.jpg", "AURORA/data/something/frames/13167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping badminton bat behind a pair of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000113512", "images": ["AURORA/data/something/frames/182155/first.jpg", "AURORA/data/something/frames/182155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling milk onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113513", "images": ["AURORA/data/something/frames/166768/first.jpg", "AURORA/data/something/frames/166768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113514", "images": ["AURORA/data/something/frames/196350/first.jpg", "AURORA/data/something/frames/196350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a coin from a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113515", "images": ["AURORA/data/something/frames/159740/first.jpg", "AURORA/data/something/frames/159740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113516", "images": ["AURORA/data/something/frames/152533/first.jpg", "AURORA/data/something/frames/152533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging microphone into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113517", "images": ["AURORA/data/something/frames/1475/first.jpg", "AURORA/data/something/frames/1475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming earphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113518", "images": ["AURORA/data/something/frames/204701/first.jpg", "AURORA/data/something/frames/204701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113519", "images": ["AURORA/data/something/frames/178838/first.jpg", "AURORA/data/something/frames/178838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking notebook out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113520", "images": ["AURORA/data/something/frames/179450/first.jpg", "AURORA/data/something/frames/179450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113521", "images": ["AURORA/data/something/frames/77820/first.jpg", "AURORA/data/something/frames/77820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 5 markers onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113522", "images": ["AURORA/data/something/frames/114852/first.jpg", "AURORA/data/something/frames/114852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading almond butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000113523", "images": ["AURORA/data/something/frames/38462/first.jpg", "AURORA/data/something/frames/38462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip gloss and coffee mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113524", "images": ["AURORA/data/something/frames/11769/first.jpg", "AURORA/data/something/frames/11769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113525", "images": ["AURORA/data/something/frames/114347/first.jpg", "AURORA/data/something/frames/114347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking belt out of duffel bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113526", "images": ["AURORA/data/something/frames/1915/first.jpg", "AURORA/data/something/frames/1915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113527", "images": ["AURORA/data/something/frames/190758/first.jpg", "AURORA/data/something/frames/190758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113528", "images": ["AURORA/data/something/frames/97523/first.jpg", "AURORA/data/something/frames/97523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb slot"}, {"from": "gpt", "value": ""}]} +{"id": "000000113529", "images": ["AURORA/data/something/frames/191184/first.jpg", "AURORA/data/something/frames/191184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen in front of scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000113530", "images": ["AURORA/data/something/frames/100087/first.jpg", "AURORA/data/something/frames/100087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113531", "images": ["AURORA/data/something/frames/77812/first.jpg", "AURORA/data/something/frames/77812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jar and another jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113532", "images": ["AURORA/data/something/frames/149818/first.jpg", "AURORA/data/something/frames/149818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking flower so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113533", "images": ["AURORA/data/something/frames/82661/first.jpg", "AURORA/data/something/frames/82661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113534", "images": ["AURORA/data/something/frames/194380/first.jpg", "AURORA/data/something/frames/194380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113535", "images": ["AURORA/data/something/frames/73814/first.jpg", "AURORA/data/something/frames/73814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of marker so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113536", "images": ["AURORA/data/something/frames/198863/first.jpg", "AURORA/data/something/frames/198863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming green water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113537", "images": ["AURORA/data/something/frames/174376/first.jpg", "AURORA/data/something/frames/174376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113538", "images": ["AURORA/data/something/frames/175160/first.jpg", "AURORA/data/something/frames/175160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing usb stick with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000113539", "images": ["AURORA/data/something/frames/32811/first.jpg", "AURORA/data/something/frames/32811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a wine glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113540", "images": ["AURORA/data/something/frames/106955/first.jpg", "AURORA/data/something/frames/106955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving powerbank closer to radio"}, {"from": "gpt", "value": ""}]} +{"id": "000000113541", "images": ["AURORA/data/something/frames/188988/first.jpg", "AURORA/data/something/frames/188988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle with candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113542", "images": ["AURORA/data/something/frames/92158/first.jpg", "AURORA/data/something/frames/92158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling key from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113543", "images": ["AURORA/data/something/frames/212818/first.jpg", "AURORA/data/something/frames/212818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb away from usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000113544", "images": ["AURORA/data/something/frames/146384/first.jpg", "AURORA/data/something/frames/146384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paint tube from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113545", "images": ["AURORA/data/something/frames/188983/first.jpg", "AURORA/data/something/frames/188983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113546", "images": ["AURORA/data/something/frames/207940/first.jpg", "AURORA/data/something/frames/207940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping torch into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000113547", "images": ["AURORA/data/something/frames/144130/first.jpg", "AURORA/data/something/frames/144130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extension plug into wall plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113548", "images": ["AURORA/data/something/frames/217331/first.jpg", "AURORA/data/something/frames/217331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113549", "images": ["AURORA/data/something/frames/95586/first.jpg", "AURORA/data/something/frames/95586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing calculator into envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113550", "images": ["AURORA/data/something/frames/125449/first.jpg", "AURORA/data/something/frames/125449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a tissue paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113551", "images": ["AURORA/data/something/frames/87390/first.jpg", "AURORA/data/something/frames/87390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113552", "images": ["AURORA/data/something/frames/196386/first.jpg", "AURORA/data/something/frames/196386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113553", "images": ["AURORA/data/something/frames/178125/first.jpg", "AURORA/data/something/frames/178125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering wallet with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113554", "images": ["AURORA/data/something/frames/100400/first.jpg", "AURORA/data/something/frames/100400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ground coffee up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113555", "images": ["AURORA/data/something/frames/100764/first.jpg", "AURORA/data/something/frames/100764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a paper from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113556", "images": ["AURORA/data/something/frames/144710/first.jpg", "AURORA/data/something/frames/144710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking vape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113557", "images": ["AURORA/data/something/frames/153348/first.jpg", "AURORA/data/something/frames/153348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking small, clockwork wolverine toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113558", "images": ["AURORA/data/something/frames/7092/first.jpg", "AURORA/data/something/frames/7092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113559", "images": ["AURORA/data/something/frames/143998/first.jpg", "AURORA/data/something/frames/143998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking toothpick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113560", "images": ["AURORA/data/something/frames/214951/first.jpg", "AURORA/data/something/frames/214951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pepper in front of a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113561", "images": ["AURORA/data/something/frames/69353/first.jpg", "AURORA/data/something/frames/69353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113562", "images": ["AURORA/data/something/frames/220677/first.jpg", "AURORA/data/something/frames/220677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting folder with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113563", "images": ["AURORA/data/something/frames/136192/first.jpg", "AURORA/data/something/frames/136192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pressure cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113564", "images": ["AURORA/data/something/frames/135643/first.jpg", "AURORA/data/something/frames/135643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy car and toy wheel so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113565", "images": ["AURORA/data/something/frames/216532/first.jpg", "AURORA/data/something/frames/216532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing apple from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113566", "images": ["AURORA/data/something/frames/219868/first.jpg", "AURORA/data/something/frames/219868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113567", "images": ["AURORA/data/something/frames/121115/first.jpg", "AURORA/data/something/frames/121115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113568", "images": ["AURORA/data/something/frames/196487/first.jpg", "AURORA/data/something/frames/196487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red watch case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113569", "images": ["AURORA/data/something/frames/157894/first.jpg", "AURORA/data/something/frames/157894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paperclip holder with paperclips on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113570", "images": ["AURORA/data/something/frames/21553/first.jpg", "AURORA/data/something/frames/21553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113571", "images": ["AURORA/data/something/frames/14278/first.jpg", "AURORA/data/something/frames/14278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000113572", "images": ["AURORA/data/something/frames/35493/first.jpg", "AURORA/data/something/frames/35493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000113573", "images": ["AURORA/data/something/frames/42521/first.jpg", "AURORA/data/something/frames/42521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000113574", "images": ["AURORA/data/something/frames/137436/first.jpg", "AURORA/data/something/frames/137436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a banana on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113575", "images": ["AURORA/data/something/frames/119481/first.jpg", "AURORA/data/something/frames/119481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing something, revealing something behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000113576", "images": ["AURORA/data/something/frames/159180/first.jpg", "AURORA/data/something/frames/159180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113577", "images": ["AURORA/data/something/frames/187854/first.jpg", "AURORA/data/something/frames/187854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a binder onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113578", "images": ["AURORA/data/something/frames/99597/first.jpg", "AURORA/data/something/frames/99597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113579", "images": ["AURORA/data/something/frames/162918/first.jpg", "AURORA/data/something/frames/162918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113580", "images": ["AURORA/data/something/frames/23764/first.jpg", "AURORA/data/something/frames/23764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113581", "images": ["AURORA/data/something/frames/36097/first.jpg", "AURORA/data/something/frames/36097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a glass of water up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113582", "images": ["AURORA/data/something/frames/125849/first.jpg", "AURORA/data/something/frames/125849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113583", "images": ["AURORA/data/something/frames/18710/first.jpg", "AURORA/data/something/frames/18710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote behind jug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113584", "images": ["AURORA/data/something/frames/72554/first.jpg", "AURORA/data/something/frames/72554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113585", "images": ["AURORA/data/something/frames/59656/first.jpg", "AURORA/data/something/frames/59656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting can on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113586", "images": ["AURORA/data/something/frames/220065/first.jpg", "AURORA/data/something/frames/220065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing flowers into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113587", "images": ["AURORA/data/something/frames/100653/first.jpg", "AURORA/data/something/frames/100653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and packet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113588", "images": ["AURORA/data/something/frames/9219/first.jpg", "AURORA/data/something/frames/9219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring coffee into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113589", "images": ["AURORA/data/something/frames/214942/first.jpg", "AURORA/data/something/frames/214942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with another ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113590", "images": ["AURORA/data/something/frames/66183/first.jpg", "AURORA/data/something/frames/66183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113591", "images": ["AURORA/data/something/frames/103529/first.jpg", "AURORA/data/something/frames/103529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling seeds onto vegetables"}, {"from": "gpt", "value": ""}]} +{"id": "000000113592", "images": ["AURORA/data/something/frames/9653/first.jpg", "AURORA/data/something/frames/9653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mirror behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113593", "images": ["AURORA/data/something/frames/16575/first.jpg", "AURORA/data/something/frames/16575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game next to paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113594", "images": ["AURORA/data/something/frames/67650/first.jpg", "AURORA/data/something/frames/67650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113595", "images": ["AURORA/data/something/frames/110595/first.jpg", "AURORA/data/something/frames/110595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote control in front of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113596", "images": ["AURORA/data/something/frames/122023/first.jpg", "AURORA/data/something/frames/122023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cotton buds"}, {"from": "gpt", "value": ""}]} +{"id": "000000113597", "images": ["AURORA/data/something/frames/166038/first.jpg", "AURORA/data/something/frames/166038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000113598", "images": ["AURORA/data/something/frames/67240/first.jpg", "AURORA/data/something/frames/67240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cookie until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113599", "images": ["AURORA/data/something/frames/132160/first.jpg", "AURORA/data/something/frames/132160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bag pin so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113600", "images": ["AURORA/data/something/frames/79214/first.jpg", "AURORA/data/something/frames/79214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113601", "images": ["AURORA/data/something/frames/177209/first.jpg", "AURORA/data/something/frames/177209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a teddy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113602", "images": ["AURORA/data/something/frames/110683/first.jpg", "AURORA/data/something/frames/110683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy in front of tv stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113603", "images": ["AURORA/data/something/frames/207926/first.jpg", "AURORA/data/something/frames/207926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening small box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113604", "images": ["AURORA/data/something/frames/20796/first.jpg", "AURORA/data/something/frames/20796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000113605", "images": ["AURORA/data/something/frames/45189/first.jpg", "AURORA/data/something/frames/45189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking hat up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113606", "images": ["AURORA/data/something/frames/179769/first.jpg", "AURORA/data/something/frames/179769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses case upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113607", "images": ["AURORA/data/something/frames/142139/first.jpg", "AURORA/data/something/frames/142139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping remote over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113608", "images": ["AURORA/data/something/frames/60258/first.jpg", "AURORA/data/something/frames/60258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into plastic case until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000113609", "images": ["AURORA/data/something/frames/38673/first.jpg", "AURORA/data/something/frames/38673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113610", "images": ["AURORA/data/something/frames/175725/first.jpg", "AURORA/data/something/frames/175725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed toy so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113611", "images": ["AURORA/data/something/frames/163217/first.jpg", "AURORA/data/something/frames/163217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000113612", "images": ["AURORA/data/something/frames/166562/first.jpg", "AURORA/data/something/frames/166562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange bowl from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113613", "images": ["AURORA/data/something/frames/152094/first.jpg", "AURORA/data/something/frames/152094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000113614", "images": ["AURORA/data/something/frames/124217/first.jpg", "AURORA/data/something/frames/124217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from something with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113615", "images": ["AURORA/data/something/frames/220461/first.jpg", "AURORA/data/something/frames/220461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113616", "images": ["AURORA/data/something/frames/1452/first.jpg", "AURORA/data/something/frames/1452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113617", "images": ["AURORA/data/something/frames/163893/first.jpg", "AURORA/data/something/frames/163893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white mug closer to black mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113618", "images": ["AURORA/data/something/frames/12582/first.jpg", "AURORA/data/something/frames/12582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113619", "images": ["AURORA/data/something/frames/217115/first.jpg", "AURORA/data/something/frames/217115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 phone onto papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113620", "images": ["AURORA/data/something/frames/201633/first.jpg", "AURORA/data/something/frames/201633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into an ipod"}, {"from": "gpt", "value": ""}]} +{"id": "000000113621", "images": ["AURORA/data/something/frames/121071/first.jpg", "AURORA/data/something/frames/121071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass closer to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113622", "images": ["AURORA/data/something/frames/80757/first.jpg", "AURORA/data/something/frames/80757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tissues from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113623", "images": ["AURORA/data/something/frames/5157/first.jpg", "AURORA/data/something/frames/5157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chickpea"}, {"from": "gpt", "value": ""}]} +{"id": "000000113624", "images": ["AURORA/data/something/frames/199203/first.jpg", "AURORA/data/something/frames/199203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking blue colour pen among the many colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113625", "images": ["AURORA/data/something/frames/163711/first.jpg", "AURORA/data/something/frames/163711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000113626", "images": ["AURORA/data/something/frames/88048/first.jpg", "AURORA/data/something/frames/88048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113627", "images": ["AURORA/data/something/frames/197873/first.jpg", "AURORA/data/something/frames/197873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting money into wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113628", "images": ["AURORA/data/something/frames/9737/first.jpg", "AURORA/data/something/frames/9737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with a coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000113629", "images": ["AURORA/data/something/frames/64380/first.jpg", "AURORA/data/something/frames/64380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113630", "images": ["AURORA/data/something/frames/204739/first.jpg", "AURORA/data/something/frames/204739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin underneath bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113631", "images": ["AURORA/data/something/frames/125435/first.jpg", "AURORA/data/something/frames/125435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113632", "images": ["AURORA/data/something/frames/195366/first.jpg", "AURORA/data/something/frames/195366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pink golf ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113633", "images": ["AURORA/data/something/frames/207591/first.jpg", "AURORA/data/something/frames/207591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping apple into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113634", "images": ["AURORA/data/something/frames/83767/first.jpg", "AURORA/data/something/frames/83767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113635", "images": ["AURORA/data/something/frames/18086/first.jpg", "AURORA/data/something/frames/18086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with coffee cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113636", "images": ["AURORA/data/something/frames/182229/first.jpg", "AURORA/data/something/frames/182229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113637", "images": ["AURORA/data/something/frames/191590/first.jpg", "AURORA/data/something/frames/191590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ring and ring closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113638", "images": ["AURORA/data/something/frames/189745/first.jpg", "AURORA/data/something/frames/189745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing action camera from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113639", "images": ["AURORA/data/something/frames/93526/first.jpg", "AURORA/data/something/frames/93526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113640", "images": ["AURORA/data/something/frames/151843/first.jpg", "AURORA/data/something/frames/151843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113641", "images": ["AURORA/data/something/frames/50519/first.jpg", "AURORA/data/something/frames/50519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting shoe with torch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113642", "images": ["AURORA/data/something/frames/176333/first.jpg", "AURORA/data/something/frames/176333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113643", "images": ["AURORA/data/something/frames/13736/first.jpg", "AURORA/data/something/frames/13736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113644", "images": ["AURORA/data/something/frames/91142/first.jpg", "AURORA/data/something/frames/91142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113645", "images": ["AURORA/data/something/frames/111350/first.jpg", "AURORA/data/something/frames/111350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113646", "images": ["AURORA/data/something/frames/125356/first.jpg", "AURORA/data/something/frames/125356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113647", "images": ["AURORA/data/something/frames/191250/first.jpg", "AURORA/data/something/frames/191250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113648", "images": ["AURORA/data/something/frames/176222/first.jpg", "AURORA/data/something/frames/176222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113649", "images": ["AURORA/data/something/frames/39041/first.jpg", "AURORA/data/something/frames/39041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of spring so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000113650", "images": ["AURORA/data/something/frames/187076/first.jpg", "AURORA/data/something/frames/187076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from sapodilla with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113651", "images": ["AURORA/data/something/frames/189780/first.jpg", "AURORA/data/something/frames/189780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tea"}, {"from": "gpt", "value": ""}]} +{"id": "000000113652", "images": ["AURORA/data/something/frames/45106/first.jpg", "AURORA/data/something/frames/45106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange colliding with orange and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113653", "images": ["AURORA/data/something/frames/111944/first.jpg", "AURORA/data/something/frames/111944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113654", "images": ["AURORA/data/something/frames/65448/first.jpg", "AURORA/data/something/frames/65448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a dish towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113655", "images": ["AURORA/data/something/frames/148145/first.jpg", "AURORA/data/something/frames/148145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113656", "images": ["AURORA/data/something/frames/86009/first.jpg", "AURORA/data/something/frames/86009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a ball so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113657", "images": ["AURORA/data/something/frames/95893/first.jpg", "AURORA/data/something/frames/95893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113658", "images": ["AURORA/data/something/frames/176719/first.jpg", "AURORA/data/something/frames/176719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spoon into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113659", "images": ["AURORA/data/something/frames/125286/first.jpg", "AURORA/data/something/frames/125286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ice tray away from the cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113660", "images": ["AURORA/data/something/frames/193439/first.jpg", "AURORA/data/something/frames/193439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000113661", "images": ["AURORA/data/something/frames/124061/first.jpg", "AURORA/data/something/frames/124061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stapler and a bracelet closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113662", "images": ["AURORA/data/something/frames/99760/first.jpg", "AURORA/data/something/frames/99760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling punch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113663", "images": ["AURORA/data/something/frames/187079/first.jpg", "AURORA/data/something/frames/187079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking packet out of basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113664", "images": ["AURORA/data/something/frames/161608/first.jpg", "AURORA/data/something/frames/161608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming white candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113665", "images": ["AURORA/data/something/frames/204619/first.jpg", "AURORA/data/something/frames/204619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from cup with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113666", "images": ["AURORA/data/something/frames/179423/first.jpg", "AURORA/data/something/frames/179423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking car key up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113667", "images": ["AURORA/data/something/frames/80618/first.jpg", "AURORA/data/something/frames/80618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering comb with wipes"}, {"from": "gpt", "value": ""}]} +{"id": "000000113668", "images": ["AURORA/data/something/frames/35565/first.jpg", "AURORA/data/something/frames/35565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the pencil case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113669", "images": ["AURORA/data/something/frames/49883/first.jpg", "AURORA/data/something/frames/49883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pocket knife, a container and a hand bag on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113670", "images": ["AURORA/data/something/frames/121079/first.jpg", "AURORA/data/something/frames/121079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading perfume onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113671", "images": ["AURORA/data/something/frames/111422/first.jpg", "AURORA/data/something/frames/111422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113672", "images": ["AURORA/data/something/frames/14732/first.jpg", "AURORA/data/something/frames/14732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate and glove away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113673", "images": ["AURORA/data/something/frames/25776/first.jpg", "AURORA/data/something/frames/25776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking envelope out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113674", "images": ["AURORA/data/something/frames/209616/first.jpg", "AURORA/data/something/frames/209616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cd into a case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113675", "images": ["AURORA/data/something/frames/39127/first.jpg", "AURORA/data/something/frames/39127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113676", "images": ["AURORA/data/something/frames/69776/first.jpg", "AURORA/data/something/frames/69776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113677", "images": ["AURORA/data/something/frames/82168/first.jpg", "AURORA/data/something/frames/82168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113678", "images": ["AURORA/data/something/frames/166057/first.jpg", "AURORA/data/something/frames/166057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking books on sofa"}, {"from": "gpt", "value": ""}]} +{"id": "000000113679", "images": ["AURORA/data/something/frames/72766/first.jpg", "AURORA/data/something/frames/72766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling magnifying glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113680", "images": ["AURORA/data/something/frames/16867/first.jpg", "AURORA/data/something/frames/16867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113681", "images": ["AURORA/data/something/frames/24038/first.jpg", "AURORA/data/something/frames/24038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113682", "images": ["AURORA/data/something/frames/152114/first.jpg", "AURORA/data/something/frames/152114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113683", "images": ["AURORA/data/something/frames/62624/first.jpg", "AURORA/data/something/frames/62624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113684", "images": ["AURORA/data/something/frames/41714/first.jpg", "AURORA/data/something/frames/41714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking an apple so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113685", "images": ["AURORA/data/something/frames/135008/first.jpg", "AURORA/data/something/frames/135008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning can upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113686", "images": ["AURORA/data/something/frames/128477/first.jpg", "AURORA/data/something/frames/128477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113687", "images": ["AURORA/data/something/frames/27730/first.jpg", "AURORA/data/something/frames/27730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000113688", "images": ["AURORA/data/something/frames/61246/first.jpg", "AURORA/data/something/frames/61246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tennis ball from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113689", "images": ["AURORA/data/something/frames/83948/first.jpg", "AURORA/data/something/frames/83948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook closer to plastic cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113690", "images": ["AURORA/data/something/frames/43071/first.jpg", "AURORA/data/something/frames/43071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113691", "images": ["AURORA/data/something/frames/107257/first.jpg", "AURORA/data/something/frames/107257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113692", "images": ["AURORA/data/something/frames/18001/first.jpg", "AURORA/data/something/frames/18001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ice cube into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113693", "images": ["AURORA/data/something/frames/2560/first.jpg", "AURORA/data/something/frames/2560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottletop so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113694", "images": ["AURORA/data/something/frames/60981/first.jpg", "AURORA/data/something/frames/60981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stick on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113695", "images": ["AURORA/data/something/frames/19162/first.jpg", "AURORA/data/something/frames/19162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen with a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113696", "images": ["AURORA/data/something/frames/160839/first.jpg", "AURORA/data/something/frames/160839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113697", "images": ["AURORA/data/something/frames/158046/first.jpg", "AURORA/data/something/frames/158046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many books"}, {"from": "gpt", "value": ""}]} +{"id": "000000113698", "images": ["AURORA/data/something/frames/47059/first.jpg", "AURORA/data/something/frames/47059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging nail polish out of pile of nail polish"}, {"from": "gpt", "value": ""}]} +{"id": "000000113699", "images": ["AURORA/data/something/frames/94544/first.jpg", "AURORA/data/something/frames/94544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000113700", "images": ["AURORA/data/something/frames/184037/first.jpg", "AURORA/data/something/frames/184037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bin with a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000113701", "images": ["AURORA/data/something/frames/139238/first.jpg", "AURORA/data/something/frames/139238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113702", "images": ["AURORA/data/something/frames/51655/first.jpg", "AURORA/data/something/frames/51655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting modem onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113703", "images": ["AURORA/data/something/frames/156041/first.jpg", "AURORA/data/something/frames/156041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113704", "images": ["AURORA/data/something/frames/132234/first.jpg", "AURORA/data/something/frames/132234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lid off nail polish"}, {"from": "gpt", "value": ""}]} +{"id": "000000113705", "images": ["AURORA/data/something/frames/32538/first.jpg", "AURORA/data/something/frames/32538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and bottle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113706", "images": ["AURORA/data/something/frames/24034/first.jpg", "AURORA/data/something/frames/24034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a smartphone so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113707", "images": ["AURORA/data/something/frames/16016/first.jpg", "AURORA/data/something/frames/16016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy car and toy car so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113708", "images": ["AURORA/data/something/frames/200229/first.jpg", "AURORA/data/something/frames/200229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a pepper shaker so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113709", "images": ["AURORA/data/something/frames/178407/first.jpg", "AURORA/data/something/frames/178407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113710", "images": ["AURORA/data/something/frames/204382/first.jpg", "AURORA/data/something/frames/204382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape dispenser and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113711", "images": ["AURORA/data/something/frames/22140/first.jpg", "AURORA/data/something/frames/22140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stone with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000113712", "images": ["AURORA/data/something/frames/201467/first.jpg", "AURORA/data/something/frames/201467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plant towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113713", "images": ["AURORA/data/something/frames/56299/first.jpg", "AURORA/data/something/frames/56299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113714", "images": ["AURORA/data/something/frames/118572/first.jpg", "AURORA/data/something/frames/118572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses underneath desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000113715", "images": ["AURORA/data/something/frames/143643/first.jpg", "AURORA/data/something/frames/143643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113716", "images": ["AURORA/data/something/frames/183535/first.jpg", "AURORA/data/something/frames/183535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling torch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113717", "images": ["AURORA/data/something/frames/39980/first.jpg", "AURORA/data/something/frames/39980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000113718", "images": ["AURORA/data/something/frames/123133/first.jpg", "AURORA/data/something/frames/123133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing note paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113719", "images": ["AURORA/data/something/frames/163062/first.jpg", "AURORA/data/something/frames/163062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000113720", "images": ["AURORA/data/something/frames/193868/first.jpg", "AURORA/data/something/frames/193868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a brochure"}, {"from": "gpt", "value": ""}]} +{"id": "000000113721", "images": ["AURORA/data/something/frames/35883/first.jpg", "AURORA/data/something/frames/35883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113722", "images": ["AURORA/data/something/frames/82004/first.jpg", "AURORA/data/something/frames/82004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113723", "images": ["AURORA/data/something/frames/145242/first.jpg", "AURORA/data/something/frames/145242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of mustard on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113724", "images": ["AURORA/data/something/frames/138104/first.jpg", "AURORA/data/something/frames/138104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking screwdriver out of toolbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000113725", "images": ["AURORA/data/something/frames/58085/first.jpg", "AURORA/data/something/frames/58085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding jacket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113726", "images": ["AURORA/data/something/frames/29139/first.jpg", "AURORA/data/something/frames/29139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into cup holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113727", "images": ["AURORA/data/something/frames/1886/first.jpg", "AURORA/data/something/frames/1886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113728", "images": ["AURORA/data/something/frames/198465/first.jpg", "AURORA/data/something/frames/198465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113729", "images": ["AURORA/data/something/frames/135394/first.jpg", "AURORA/data/something/frames/135394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping battery cell onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000113730", "images": ["AURORA/data/something/frames/202300/first.jpg", "AURORA/data/something/frames/202300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000113731", "images": ["AURORA/data/something/frames/157868/first.jpg", "AURORA/data/something/frames/157868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy wheel with red colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113732", "images": ["AURORA/data/something/frames/140163/first.jpg", "AURORA/data/something/frames/140163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113733", "images": ["AURORA/data/something/frames/197146/first.jpg", "AURORA/data/something/frames/197146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000113734", "images": ["AURORA/data/something/frames/77770/first.jpg", "AURORA/data/something/frames/77770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stuffed animal so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113735", "images": ["AURORA/data/something/frames/41579/first.jpg", "AURORA/data/something/frames/41579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113736", "images": ["AURORA/data/something/frames/117500/first.jpg", "AURORA/data/something/frames/117500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pen into a pencase"}, {"from": "gpt", "value": ""}]} +{"id": "000000113737", "images": ["AURORA/data/something/frames/59557/first.jpg", "AURORA/data/something/frames/59557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving control away from vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000113738", "images": ["AURORA/data/something/frames/18485/first.jpg", "AURORA/data/something/frames/18485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sharpener onto sticky note"}, {"from": "gpt", "value": ""}]} +{"id": "000000113739", "images": ["AURORA/data/something/frames/218305/first.jpg", "AURORA/data/something/frames/218305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a sock into a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000113740", "images": ["AURORA/data/something/frames/138355/first.jpg", "AURORA/data/something/frames/138355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113741", "images": ["AURORA/data/something/frames/157981/first.jpg", "AURORA/data/something/frames/157981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113742", "images": ["AURORA/data/something/frames/199464/first.jpg", "AURORA/data/something/frames/199464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pom poms out of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113743", "images": ["AURORA/data/something/frames/148753/first.jpg", "AURORA/data/something/frames/148753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping slipper in front of handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113744", "images": ["AURORA/data/something/frames/50966/first.jpg", "AURORA/data/something/frames/50966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pet bottle in front of feet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113745", "images": ["AURORA/data/something/frames/7716/first.jpg", "AURORA/data/something/frames/7716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ink bottle with spring"}, {"from": "gpt", "value": ""}]} +{"id": "000000113746", "images": ["AURORA/data/something/frames/24408/first.jpg", "AURORA/data/something/frames/24408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping sauce off of hummus container"}, {"from": "gpt", "value": ""}]} +{"id": "000000113747", "images": ["AURORA/data/something/frames/86525/first.jpg", "AURORA/data/something/frames/86525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113748", "images": ["AURORA/data/something/frames/73513/first.jpg", "AURORA/data/something/frames/73513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113749", "images": ["AURORA/data/something/frames/155721/first.jpg", "AURORA/data/something/frames/155721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plastic tub upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113750", "images": ["AURORA/data/something/frames/198635/first.jpg", "AURORA/data/something/frames/198635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113751", "images": ["AURORA/data/something/frames/180596/first.jpg", "AURORA/data/something/frames/180596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag behind a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113752", "images": ["AURORA/data/something/frames/136835/first.jpg", "AURORA/data/something/frames/136835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113753", "images": ["AURORA/data/something/frames/5270/first.jpg", "AURORA/data/something/frames/5270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113754", "images": ["AURORA/data/something/frames/10295/first.jpg", "AURORA/data/something/frames/10295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113755", "images": ["AURORA/data/something/frames/176249/first.jpg", "AURORA/data/something/frames/176249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencile up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113756", "images": ["AURORA/data/something/frames/92699/first.jpg", "AURORA/data/something/frames/92699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113757", "images": ["AURORA/data/something/frames/55519/first.jpg", "AURORA/data/something/frames/55519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottle from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113758", "images": ["AURORA/data/something/frames/157253/first.jpg", "AURORA/data/something/frames/157253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113759", "images": ["AURORA/data/something/frames/215310/first.jpg", "AURORA/data/something/frames/215310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping block in front of candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113760", "images": ["AURORA/data/something/frames/144305/first.jpg", "AURORA/data/something/frames/144305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113761", "images": ["AURORA/data/something/frames/167135/first.jpg", "AURORA/data/something/frames/167135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113762", "images": ["AURORA/data/something/frames/215855/first.jpg", "AURORA/data/something/frames/215855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle of nail varnish so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113763", "images": ["AURORA/data/something/frames/38684/first.jpg", "AURORA/data/something/frames/38684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping salsa jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113764", "images": ["AURORA/data/something/frames/142966/first.jpg", "AURORA/data/something/frames/142966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purple container up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113765", "images": ["AURORA/data/something/frames/81665/first.jpg", "AURORA/data/something/frames/81665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000113766", "images": ["AURORA/data/something/frames/182144/first.jpg", "AURORA/data/something/frames/182144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to a ballpen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113767", "images": ["AURORA/data/something/frames/177140/first.jpg", "AURORA/data/something/frames/177140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving moving stone up up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113768", "images": ["AURORA/data/something/frames/87220/first.jpg", "AURORA/data/something/frames/87220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening face cream pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113769", "images": ["AURORA/data/something/frames/187302/first.jpg", "AURORA/data/something/frames/187302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113770", "images": ["AURORA/data/something/frames/87493/first.jpg", "AURORA/data/something/frames/87493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting laundry into a washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000113771", "images": ["AURORA/data/something/frames/34571/first.jpg", "AURORA/data/something/frames/34571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting skipping rope, scale and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113772", "images": ["AURORA/data/something/frames/30163/first.jpg", "AURORA/data/something/frames/30163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113773", "images": ["AURORA/data/something/frames/204298/first.jpg", "AURORA/data/something/frames/204298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pendrive from computer table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113774", "images": ["AURORA/data/something/frames/71944/first.jpg", "AURORA/data/something/frames/71944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toilet paper closer to inhaler"}, {"from": "gpt", "value": ""}]} +{"id": "000000113775", "images": ["AURORA/data/something/frames/173478/first.jpg", "AURORA/data/something/frames/173478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shorts"}, {"from": "gpt", "value": ""}]} +{"id": "000000113776", "images": ["AURORA/data/something/frames/204343/first.jpg", "AURORA/data/something/frames/204343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113777", "images": ["AURORA/data/something/frames/137288/first.jpg", "AURORA/data/something/frames/137288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing clip onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113778", "images": ["AURORA/data/something/frames/64948/first.jpg", "AURORA/data/something/frames/64948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking lever up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113779", "images": ["AURORA/data/something/frames/24109/first.jpg", "AURORA/data/something/frames/24109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113780", "images": ["AURORA/data/something/frames/60442/first.jpg", "AURORA/data/something/frames/60442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothbrush stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113781", "images": ["AURORA/data/something/frames/34166/first.jpg", "AURORA/data/something/frames/34166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113782", "images": ["AURORA/data/something/frames/14116/first.jpg", "AURORA/data/something/frames/14116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping pig over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113783", "images": ["AURORA/data/something/frames/7613/first.jpg", "AURORA/data/something/frames/7613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping case in front of phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000113784", "images": ["AURORA/data/something/frames/64412/first.jpg", "AURORA/data/something/frames/64412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting jar with glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113785", "images": ["AURORA/data/something/frames/183136/first.jpg", "AURORA/data/something/frames/183136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending paperclip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113786", "images": ["AURORA/data/something/frames/37062/first.jpg", "AURORA/data/something/frames/37062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging ring out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113787", "images": ["AURORA/data/something/frames/64905/first.jpg", "AURORA/data/something/frames/64905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book, watch and remote on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113788", "images": ["AURORA/data/something/frames/152358/first.jpg", "AURORA/data/something/frames/152358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113789", "images": ["AURORA/data/something/frames/129927/first.jpg", "AURORA/data/something/frames/129927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and can away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113790", "images": ["AURORA/data/something/frames/47482/first.jpg", "AURORA/data/something/frames/47482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping iced tea mix up with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000113791", "images": ["AURORA/data/something/frames/212279/first.jpg", "AURORA/data/something/frames/212279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113792", "images": ["AURORA/data/something/frames/157166/first.jpg", "AURORA/data/something/frames/157166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with tooth brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000113793", "images": ["AURORA/data/something/frames/102311/first.jpg", "AURORA/data/something/frames/102311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into multi-plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113794", "images": ["AURORA/data/something/frames/42411/first.jpg", "AURORA/data/something/frames/42411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar closer to coffee"}, {"from": "gpt", "value": ""}]} +{"id": "000000113795", "images": ["AURORA/data/something/frames/88253/first.jpg", "AURORA/data/something/frames/88253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113796", "images": ["AURORA/data/something/frames/99838/first.jpg", "AURORA/data/something/frames/99838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cellphone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113797", "images": ["AURORA/data/something/frames/197154/first.jpg", "AURORA/data/something/frames/197154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ruler behind a flowerpot"}, {"from": "gpt", "value": ""}]} +{"id": "000000113798", "images": ["AURORA/data/something/frames/5646/first.jpg", "AURORA/data/something/frames/5646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and wax jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113799", "images": ["AURORA/data/something/frames/165368/first.jpg", "AURORA/data/something/frames/165368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113800", "images": ["AURORA/data/something/frames/131606/first.jpg", "AURORA/data/something/frames/131606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving carom coin closer to rubber band"}, {"from": "gpt", "value": ""}]} +{"id": "000000113801", "images": ["AURORA/data/something/frames/62189/first.jpg", "AURORA/data/something/frames/62189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing one tealight candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113802", "images": ["AURORA/data/something/frames/87468/first.jpg", "AURORA/data/something/frames/87468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113803", "images": ["AURORA/data/something/frames/40842/first.jpg", "AURORA/data/something/frames/40842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying screw in flowerpot"}, {"from": "gpt", "value": ""}]} +{"id": "000000113804", "images": ["AURORA/data/something/frames/188772/first.jpg", "AURORA/data/something/frames/188772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113805", "images": ["AURORA/data/something/frames/98413/first.jpg", "AURORA/data/something/frames/98413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113806", "images": ["AURORA/data/something/frames/33342/first.jpg", "AURORA/data/something/frames/33342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113807", "images": ["AURORA/data/something/frames/190483/first.jpg", "AURORA/data/something/frames/190483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a ball with another ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113808", "images": ["AURORA/data/something/frames/17384/first.jpg", "AURORA/data/something/frames/17384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113809", "images": ["AURORA/data/something/frames/112997/first.jpg", "AURORA/data/something/frames/112997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring grains into a glass jar until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000113810", "images": ["AURORA/data/something/frames/16498/first.jpg", "AURORA/data/something/frames/16498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113811", "images": ["AURORA/data/something/frames/11775/first.jpg", "AURORA/data/something/frames/11775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into switch board"}, {"from": "gpt", "value": ""}]} +{"id": "000000113812", "images": ["AURORA/data/something/frames/172524/first.jpg", "AURORA/data/something/frames/172524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bubble wrap into an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113813", "images": ["AURORA/data/something/frames/32443/first.jpg", "AURORA/data/something/frames/32443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 toys onto can"}, {"from": "gpt", "value": ""}]} +{"id": "000000113814", "images": ["AURORA/data/something/frames/199115/first.jpg", "AURORA/data/something/frames/199115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000113815", "images": ["AURORA/data/something/frames/136157/first.jpg", "AURORA/data/something/frames/136157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup with coffee beans over, so coffee beans falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113816", "images": ["AURORA/data/something/frames/152384/first.jpg", "AURORA/data/something/frames/152384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a piece of cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000113817", "images": ["AURORA/data/something/frames/218744/first.jpg", "AURORA/data/something/frames/218744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000113818", "images": ["AURORA/data/something/frames/209032/first.jpg", "AURORA/data/something/frames/209032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pin to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000113819", "images": ["AURORA/data/something/frames/212856/first.jpg", "AURORA/data/something/frames/212856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy, block and comb on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113820", "images": ["AURORA/data/something/frames/48416/first.jpg", "AURORA/data/something/frames/48416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113821", "images": ["AURORA/data/something/frames/76809/first.jpg", "AURORA/data/something/frames/76809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113822", "images": ["AURORA/data/something/frames/85020/first.jpg", "AURORA/data/something/frames/85020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and can closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113823", "images": ["AURORA/data/something/frames/171814/first.jpg", "AURORA/data/something/frames/171814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing rose paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113824", "images": ["AURORA/data/something/frames/156230/first.jpg", "AURORA/data/something/frames/156230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking rubber duck so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000113825", "images": ["AURORA/data/something/frames/74608/first.jpg", "AURORA/data/something/frames/74608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113826", "images": ["AURORA/data/something/frames/192818/first.jpg", "AURORA/data/something/frames/192818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming family"}, {"from": "gpt", "value": ""}]} +{"id": "000000113827", "images": ["AURORA/data/something/frames/113302/first.jpg", "AURORA/data/something/frames/113302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: potato colliding with potato and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000113828", "images": ["AURORA/data/something/frames/130824/first.jpg", "AURORA/data/something/frames/130824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpaste so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113829", "images": ["AURORA/data/something/frames/58049/first.jpg", "AURORA/data/something/frames/58049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113830", "images": ["AURORA/data/something/frames/100820/first.jpg", "AURORA/data/something/frames/100820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a writing implement"}, {"from": "gpt", "value": ""}]} +{"id": "000000113831", "images": ["AURORA/data/something/frames/140340/first.jpg", "AURORA/data/something/frames/140340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing colorful scarf from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113832", "images": ["AURORA/data/something/frames/63757/first.jpg", "AURORA/data/something/frames/63757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving light lamp up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113833", "images": ["AURORA/data/something/frames/44959/first.jpg", "AURORA/data/something/frames/44959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pasta until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000113834", "images": ["AURORA/data/something/frames/145865/first.jpg", "AURORA/data/something/frames/145865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113835", "images": ["AURORA/data/something/frames/70714/first.jpg", "AURORA/data/something/frames/70714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse closer to watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113836", "images": ["AURORA/data/something/frames/109125/first.jpg", "AURORA/data/something/frames/109125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113837", "images": ["AURORA/data/something/frames/181356/first.jpg", "AURORA/data/something/frames/181356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing baking powder from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113838", "images": ["AURORA/data/something/frames/197104/first.jpg", "AURORA/data/something/frames/197104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending instruction booklet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113839", "images": ["AURORA/data/something/frames/106143/first.jpg", "AURORA/data/something/frames/106143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid closer to straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000113840", "images": ["AURORA/data/something/frames/104402/first.jpg", "AURORA/data/something/frames/104402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113841", "images": ["AURORA/data/something/frames/137033/first.jpg", "AURORA/data/something/frames/137033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000113842", "images": ["AURORA/data/something/frames/43560/first.jpg", "AURORA/data/something/frames/43560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking aa battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000113843", "images": ["AURORA/data/something/frames/14152/first.jpg", "AURORA/data/something/frames/14152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113844", "images": ["AURORA/data/something/frames/135778/first.jpg", "AURORA/data/something/frames/135778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000113845", "images": ["AURORA/data/something/frames/77546/first.jpg", "AURORA/data/something/frames/77546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pendrive with green coloured cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113846", "images": ["AURORA/data/something/frames/25186/first.jpg", "AURORA/data/something/frames/25186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113847", "images": ["AURORA/data/something/frames/23358/first.jpg", "AURORA/data/something/frames/23358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking battery out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000113848", "images": ["AURORA/data/something/frames/71022/first.jpg", "AURORA/data/something/frames/71022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pencil sharpners"}, {"from": "gpt", "value": ""}]} +{"id": "000000113849", "images": ["AURORA/data/something/frames/220247/first.jpg", "AURORA/data/something/frames/220247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113850", "images": ["AURORA/data/something/frames/157617/first.jpg", "AURORA/data/something/frames/157617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keyboard next to backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000113851", "images": ["AURORA/data/something/frames/150705/first.jpg", "AURORA/data/something/frames/150705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pill box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113852", "images": ["AURORA/data/something/frames/89877/first.jpg", "AURORA/data/something/frames/89877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding folding kerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000113853", "images": ["AURORA/data/something/frames/150511/first.jpg", "AURORA/data/something/frames/150511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113854", "images": ["AURORA/data/something/frames/10124/first.jpg", "AURORA/data/something/frames/10124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113855", "images": ["AURORA/data/something/frames/179875/first.jpg", "AURORA/data/something/frames/179875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smart phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113856", "images": ["AURORA/data/something/frames/160186/first.jpg", "AURORA/data/something/frames/160186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113857", "images": ["AURORA/data/something/frames/82448/first.jpg", "AURORA/data/something/frames/82448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle closer to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113858", "images": ["AURORA/data/something/frames/213579/first.jpg", "AURORA/data/something/frames/213579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000113859", "images": ["AURORA/data/something/frames/45416/first.jpg", "AURORA/data/something/frames/45416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming green water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113860", "images": ["AURORA/data/something/frames/109307/first.jpg", "AURORA/data/something/frames/109307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling orange post-it from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113861", "images": ["AURORA/data/something/frames/127994/first.jpg", "AURORA/data/something/frames/127994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113862", "images": ["AURORA/data/something/frames/179725/first.jpg", "AURORA/data/something/frames/179725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of coaster without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113863", "images": ["AURORA/data/something/frames/48706/first.jpg", "AURORA/data/something/frames/48706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil, a pen and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113864", "images": ["AURORA/data/something/frames/40962/first.jpg", "AURORA/data/something/frames/40962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113865", "images": ["AURORA/data/something/frames/200180/first.jpg", "AURORA/data/something/frames/200180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000113866", "images": ["AURORA/data/something/frames/90522/first.jpg", "AURORA/data/something/frames/90522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113867", "images": ["AURORA/data/something/frames/182237/first.jpg", "AURORA/data/something/frames/182237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113868", "images": ["AURORA/data/something/frames/166398/first.jpg", "AURORA/data/something/frames/166398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching cap to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113869", "images": ["AURORA/data/something/frames/26972/first.jpg", "AURORA/data/something/frames/26972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000113870", "images": ["AURORA/data/something/frames/124781/first.jpg", "AURORA/data/something/frames/124781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour milk into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113871", "images": ["AURORA/data/something/frames/156369/first.jpg", "AURORA/data/something/frames/156369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000113872", "images": ["AURORA/data/something/frames/29717/first.jpg", "AURORA/data/something/frames/29717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block and toy away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113873", "images": ["AURORA/data/something/frames/70290/first.jpg", "AURORA/data/something/frames/70290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen with other pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000113874", "images": ["AURORA/data/something/frames/76510/first.jpg", "AURORA/data/something/frames/76510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113875", "images": ["AURORA/data/something/frames/1317/first.jpg", "AURORA/data/something/frames/1317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of duster without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113876", "images": ["AURORA/data/something/frames/84961/first.jpg", "AURORA/data/something/frames/84961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping newspaper behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113877", "images": ["AURORA/data/something/frames/52267/first.jpg", "AURORA/data/something/frames/52267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into power strip"}, {"from": "gpt", "value": ""}]} +{"id": "000000113878", "images": ["AURORA/data/something/frames/153371/first.jpg", "AURORA/data/something/frames/153371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking magnet clip so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113879", "images": ["AURORA/data/something/frames/180197/first.jpg", "AURORA/data/something/frames/180197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote control from bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113880", "images": ["AURORA/data/something/frames/191570/first.jpg", "AURORA/data/something/frames/191570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car keys on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113881", "images": ["AURORA/data/something/frames/65762/first.jpg", "AURORA/data/something/frames/65762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113882", "images": ["AURORA/data/something/frames/150143/first.jpg", "AURORA/data/something/frames/150143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping tea off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113883", "images": ["AURORA/data/something/frames/55675/first.jpg", "AURORA/data/something/frames/55675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000113884", "images": ["AURORA/data/something/frames/1488/first.jpg", "AURORA/data/something/frames/1488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler in front of ointment"}, {"from": "gpt", "value": ""}]} +{"id": "000000113885", "images": ["AURORA/data/something/frames/217361/first.jpg", "AURORA/data/something/frames/217361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering key"}, {"from": "gpt", "value": ""}]} +{"id": "000000113886", "images": ["AURORA/data/something/frames/220191/first.jpg", "AURORA/data/something/frames/220191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big rock up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113887", "images": ["AURORA/data/something/frames/150085/first.jpg", "AURORA/data/something/frames/150085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glue bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000113888", "images": ["AURORA/data/something/frames/39589/first.jpg", "AURORA/data/something/frames/39589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mouse with a sheet of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113889", "images": ["AURORA/data/something/frames/158329/first.jpg", "AURORA/data/something/frames/158329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a can down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113890", "images": ["AURORA/data/something/frames/77020/first.jpg", "AURORA/data/something/frames/77020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 remotes onto tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000113891", "images": ["AURORA/data/something/frames/39134/first.jpg", "AURORA/data/something/frames/39134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting headphones underneath a bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000113892", "images": ["AURORA/data/something/frames/117763/first.jpg", "AURORA/data/something/frames/117763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113893", "images": ["AURORA/data/something/frames/99550/first.jpg", "AURORA/data/something/frames/99550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing chapati into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113894", "images": ["AURORA/data/something/frames/102275/first.jpg", "AURORA/data/something/frames/102275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a box with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000113895", "images": ["AURORA/data/something/frames/154564/first.jpg", "AURORA/data/something/frames/154564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000113896", "images": ["AURORA/data/something/frames/86353/first.jpg", "AURORA/data/something/frames/86353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into the socket to the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113897", "images": ["AURORA/data/something/frames/135077/first.jpg", "AURORA/data/something/frames/135077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000113898", "images": ["AURORA/data/something/frames/207303/first.jpg", "AURORA/data/something/frames/207303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113899", "images": ["AURORA/data/something/frames/211430/first.jpg", "AURORA/data/something/frames/211430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000113900", "images": ["AURORA/data/something/frames/164427/first.jpg", "AURORA/data/something/frames/164427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle with vitamins over, so vitamins falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000113901", "images": ["AURORA/data/something/frames/71368/first.jpg", "AURORA/data/something/frames/71368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113902", "images": ["AURORA/data/something/frames/8562/first.jpg", "AURORA/data/something/frames/8562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a box away from a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000113903", "images": ["AURORA/data/something/frames/11244/first.jpg", "AURORA/data/something/frames/11244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shoe brush upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113904", "images": ["AURORA/data/something/frames/74229/first.jpg", "AURORA/data/something/frames/74229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113905", "images": ["AURORA/data/something/frames/78247/first.jpg", "AURORA/data/something/frames/78247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113906", "images": ["AURORA/data/something/frames/29580/first.jpg", "AURORA/data/something/frames/29580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pot holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113907", "images": ["AURORA/data/something/frames/3651/first.jpg", "AURORA/data/something/frames/3651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shaving brush onto box so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113908", "images": ["AURORA/data/something/frames/162833/first.jpg", "AURORA/data/something/frames/162833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113909", "images": ["AURORA/data/something/frames/108670/first.jpg", "AURORA/data/something/frames/108670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a spoon with an apple on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113910", "images": ["AURORA/data/something/frames/141032/first.jpg", "AURORA/data/something/frames/141032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting baking powder on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113911", "images": ["AURORA/data/something/frames/179648/first.jpg", "AURORA/data/something/frames/179648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book next to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000113912", "images": ["AURORA/data/something/frames/192817/first.jpg", "AURORA/data/something/frames/192817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113913", "images": ["AURORA/data/something/frames/217921/first.jpg", "AURORA/data/something/frames/217921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hat and shoe so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113914", "images": ["AURORA/data/something/frames/155438/first.jpg", "AURORA/data/something/frames/155438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle next to an iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000113915", "images": ["AURORA/data/something/frames/60638/first.jpg", "AURORA/data/something/frames/60638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass jar from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113916", "images": ["AURORA/data/something/frames/20096/first.jpg", "AURORA/data/something/frames/20096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wooden stick, battery and striker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113917", "images": ["AURORA/data/something/frames/93987/first.jpg", "AURORA/data/something/frames/93987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cow up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113918", "images": ["AURORA/data/something/frames/161930/first.jpg", "AURORA/data/something/frames/161930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stuffed animal from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113919", "images": ["AURORA/data/something/frames/46571/first.jpg", "AURORA/data/something/frames/46571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113920", "images": ["AURORA/data/something/frames/122043/first.jpg", "AURORA/data/something/frames/122043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113921", "images": ["AURORA/data/something/frames/62533/first.jpg", "AURORA/data/something/frames/62533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bandaids into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113922", "images": ["AURORA/data/something/frames/122847/first.jpg", "AURORA/data/something/frames/122847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: batery colliding with batery and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113923", "images": ["AURORA/data/something/frames/212378/first.jpg", "AURORA/data/something/frames/212378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glas and glas closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113924", "images": ["AURORA/data/something/frames/150617/first.jpg", "AURORA/data/something/frames/150617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking string so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113925", "images": ["AURORA/data/something/frames/64089/first.jpg", "AURORA/data/something/frames/64089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113926", "images": ["AURORA/data/something/frames/204778/first.jpg", "AURORA/data/something/frames/204778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113927", "images": ["AURORA/data/something/frames/130956/first.jpg", "AURORA/data/something/frames/130956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113928", "images": ["AURORA/data/something/frames/84056/first.jpg", "AURORA/data/something/frames/84056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pack of gum onto a notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000113929", "images": ["AURORA/data/something/frames/67015/first.jpg", "AURORA/data/something/frames/67015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113930", "images": ["AURORA/data/something/frames/59375/first.jpg", "AURORA/data/something/frames/59375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of envelopes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000113931", "images": ["AURORA/data/something/frames/140370/first.jpg", "AURORA/data/something/frames/140370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113932", "images": ["AURORA/data/something/frames/4651/first.jpg", "AURORA/data/something/frames/4651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing tumbler cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000113933", "images": ["AURORA/data/something/frames/213960/first.jpg", "AURORA/data/something/frames/213960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mug so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000113934", "images": ["AURORA/data/something/frames/138200/first.jpg", "AURORA/data/something/frames/138200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113935", "images": ["AURORA/data/something/frames/134949/first.jpg", "AURORA/data/something/frames/134949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink toothbrush case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113936", "images": ["AURORA/data/something/frames/73891/first.jpg", "AURORA/data/something/frames/73891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113937", "images": ["AURORA/data/something/frames/81960/first.jpg", "AURORA/data/something/frames/81960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissues and block on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113938", "images": ["AURORA/data/something/frames/72154/first.jpg", "AURORA/data/something/frames/72154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging key into lock but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113939", "images": ["AURORA/data/something/frames/131016/first.jpg", "AURORA/data/something/frames/131016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000113940", "images": ["AURORA/data/something/frames/132836/first.jpg", "AURORA/data/something/frames/132836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113941", "images": ["AURORA/data/something/frames/137811/first.jpg", "AURORA/data/something/frames/137811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ac outlet off of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000113942", "images": ["AURORA/data/something/frames/182920/first.jpg", "AURORA/data/something/frames/182920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000113943", "images": ["AURORA/data/something/frames/91634/first.jpg", "AURORA/data/something/frames/91634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a shoe brush into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113944", "images": ["AURORA/data/something/frames/154652/first.jpg", "AURORA/data/something/frames/154652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113945", "images": ["AURORA/data/something/frames/117190/first.jpg", "AURORA/data/something/frames/117190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113946", "images": ["AURORA/data/something/frames/106432/first.jpg", "AURORA/data/something/frames/106432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing battery from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113947", "images": ["AURORA/data/something/frames/7609/first.jpg", "AURORA/data/something/frames/7609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dvd box with scotch tape on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113948", "images": ["AURORA/data/something/frames/214306/first.jpg", "AURORA/data/something/frames/214306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000113949", "images": ["AURORA/data/something/frames/213207/first.jpg", "AURORA/data/something/frames/213207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a plate with a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000113950", "images": ["AURORA/data/something/frames/118121/first.jpg", "AURORA/data/something/frames/118121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cd"}, {"from": "gpt", "value": ""}]} +{"id": "000000113951", "images": ["AURORA/data/something/frames/58136/first.jpg", "AURORA/data/something/frames/58136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses next to a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113952", "images": ["AURORA/data/something/frames/102030/first.jpg", "AURORA/data/something/frames/102030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bam box away from the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113953", "images": ["AURORA/data/something/frames/50015/first.jpg", "AURORA/data/something/frames/50015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a jar out of a shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000113954", "images": ["AURORA/data/something/frames/187387/first.jpg", "AURORA/data/something/frames/187387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spectacle box next to orange cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113955", "images": ["AURORA/data/something/frames/71913/first.jpg", "AURORA/data/something/frames/71913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113956", "images": ["AURORA/data/something/frames/47709/first.jpg", "AURORA/data/something/frames/47709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000113957", "images": ["AURORA/data/something/frames/217226/first.jpg", "AURORA/data/something/frames/217226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000113958", "images": ["AURORA/data/something/frames/24902/first.jpg", "AURORA/data/something/frames/24902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a watch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113959", "images": ["AURORA/data/something/frames/72854/first.jpg", "AURORA/data/something/frames/72854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113960", "images": ["AURORA/data/something/frames/106474/first.jpg", "AURORA/data/something/frames/106474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into electrical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000113961", "images": ["AURORA/data/something/frames/49120/first.jpg", "AURORA/data/something/frames/49120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into adapter but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000113962", "images": ["AURORA/data/something/frames/123776/first.jpg", "AURORA/data/something/frames/123776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000113963", "images": ["AURORA/data/something/frames/140576/first.jpg", "AURORA/data/something/frames/140576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113964", "images": ["AURORA/data/something/frames/140936/first.jpg", "AURORA/data/something/frames/140936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting can with lemon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000113965", "images": ["AURORA/data/something/frames/61766/first.jpg", "AURORA/data/something/frames/61766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cloth just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113966", "images": ["AURORA/data/something/frames/78960/first.jpg", "AURORA/data/something/frames/78960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113967", "images": ["AURORA/data/something/frames/205377/first.jpg", "AURORA/data/something/frames/205377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cord into a charging base"}, {"from": "gpt", "value": ""}]} +{"id": "000000113968", "images": ["AURORA/data/something/frames/4391/first.jpg", "AURORA/data/something/frames/4391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a charger from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000113969", "images": ["AURORA/data/something/frames/83045/first.jpg", "AURORA/data/something/frames/83045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching top to kettle"}, {"from": "gpt", "value": ""}]} +{"id": "000000113970", "images": ["AURORA/data/something/frames/76654/first.jpg", "AURORA/data/something/frames/76654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tool into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000113971", "images": ["AURORA/data/something/frames/128734/first.jpg", "AURORA/data/something/frames/128734/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairpin on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000113972", "images": ["AURORA/data/something/frames/143947/first.jpg", "AURORA/data/something/frames/143947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000113973", "images": ["AURORA/data/something/frames/86087/first.jpg", "AURORA/data/something/frames/86087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000113974", "images": ["AURORA/data/something/frames/199944/first.jpg", "AURORA/data/something/frames/199944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113975", "images": ["AURORA/data/something/frames/15603/first.jpg", "AURORA/data/something/frames/15603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a spoon with an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000113976", "images": ["AURORA/data/something/frames/11123/first.jpg", "AURORA/data/something/frames/11123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring cream onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000113977", "images": ["AURORA/data/something/frames/206039/first.jpg", "AURORA/data/something/frames/206039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000113978", "images": ["AURORA/data/something/frames/114408/first.jpg", "AURORA/data/something/frames/114408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cigarettes so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000113979", "images": ["AURORA/data/something/frames/94943/first.jpg", "AURORA/data/something/frames/94943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending magnet so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000113980", "images": ["AURORA/data/something/frames/74338/first.jpg", "AURORA/data/something/frames/74338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pen into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000113981", "images": ["AURORA/data/something/frames/61042/first.jpg", "AURORA/data/something/frames/61042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a cardboard bit just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113982", "images": ["AURORA/data/something/frames/18041/first.jpg", "AURORA/data/something/frames/18041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000113983", "images": ["AURORA/data/something/frames/155147/first.jpg", "AURORA/data/something/frames/155147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000113984", "images": ["AURORA/data/something/frames/192972/first.jpg", "AURORA/data/something/frames/192972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000113985", "images": ["AURORA/data/something/frames/174259/first.jpg", "AURORA/data/something/frames/174259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000113986", "images": ["AURORA/data/something/frames/94238/first.jpg", "AURORA/data/something/frames/94238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000113987", "images": ["AURORA/data/something/frames/7440/first.jpg", "AURORA/data/something/frames/7440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000113988", "images": ["AURORA/data/something/frames/39528/first.jpg", "AURORA/data/something/frames/39528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000113989", "images": ["AURORA/data/something/frames/215426/first.jpg", "AURORA/data/something/frames/215426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye drops across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113990", "images": ["AURORA/data/something/frames/72727/first.jpg", "AURORA/data/something/frames/72727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip, bolt and chalk on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113991", "images": ["AURORA/data/something/frames/75045/first.jpg", "AURORA/data/something/frames/75045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a stone onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000113992", "images": ["AURORA/data/something/frames/12605/first.jpg", "AURORA/data/something/frames/12605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000113993", "images": ["AURORA/data/something/frames/73923/first.jpg", "AURORA/data/something/frames/73923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet and harmonica on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000113994", "images": ["AURORA/data/something/frames/125802/first.jpg", "AURORA/data/something/frames/125802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering hair band with black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000113995", "images": ["AURORA/data/something/frames/81501/first.jpg", "AURORA/data/something/frames/81501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stuffed animal next to stuffed animal"}, {"from": "gpt", "value": ""}]} +{"id": "000000113996", "images": ["AURORA/data/something/frames/215647/first.jpg", "AURORA/data/something/frames/215647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000113997", "images": ["AURORA/data/something/frames/79253/first.jpg", "AURORA/data/something/frames/79253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000113998", "images": ["AURORA/data/something/frames/91162/first.jpg", "AURORA/data/something/frames/91162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper into a folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000113999", "images": ["AURORA/data/something/frames/23873/first.jpg", "AURORA/data/something/frames/23873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming carton box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114000", "images": ["AURORA/data/something/frames/4387/first.jpg", "AURORA/data/something/frames/4387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114001", "images": ["AURORA/data/something/frames/62731/first.jpg", "AURORA/data/something/frames/62731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy horse underneath a coffee table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114002", "images": ["AURORA/data/something/frames/220085/first.jpg", "AURORA/data/something/frames/220085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving laptop up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114003", "images": ["AURORA/data/something/frames/138177/first.jpg", "AURORA/data/something/frames/138177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye kajal away from pendrive"}, {"from": "gpt", "value": ""}]} +{"id": "000000114004", "images": ["AURORA/data/something/frames/28464/first.jpg", "AURORA/data/something/frames/28464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pizza cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114005", "images": ["AURORA/data/something/frames/86548/first.jpg", "AURORA/data/something/frames/86548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114006", "images": ["AURORA/data/something/frames/188726/first.jpg", "AURORA/data/something/frames/188726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of pen drive"}, {"from": "gpt", "value": ""}]} +{"id": "000000114007", "images": ["AURORA/data/something/frames/38073/first.jpg", "AURORA/data/something/frames/38073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling novels up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114008", "images": ["AURORA/data/something/frames/116615/first.jpg", "AURORA/data/something/frames/116615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114009", "images": ["AURORA/data/something/frames/150023/first.jpg", "AURORA/data/something/frames/150023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy from behind of the couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114010", "images": ["AURORA/data/something/frames/29279/first.jpg", "AURORA/data/something/frames/29279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving left foot and right foot so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114011", "images": ["AURORA/data/something/frames/2059/first.jpg", "AURORA/data/something/frames/2059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: red crayon colliding with blue crayon and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114012", "images": ["AURORA/data/something/frames/143113/first.jpg", "AURORA/data/something/frames/143113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lighter on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114013", "images": ["AURORA/data/something/frames/130068/first.jpg", "AURORA/data/something/frames/130068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114014", "images": ["AURORA/data/something/frames/64480/first.jpg", "AURORA/data/something/frames/64480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging chord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114015", "images": ["AURORA/data/something/frames/103583/first.jpg", "AURORA/data/something/frames/103583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114016", "images": ["AURORA/data/something/frames/120106/first.jpg", "AURORA/data/something/frames/120106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114017", "images": ["AURORA/data/something/frames/150329/first.jpg", "AURORA/data/something/frames/150329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marble"}, {"from": "gpt", "value": ""}]} +{"id": "000000114018", "images": ["AURORA/data/something/frames/73312/first.jpg", "AURORA/data/something/frames/73312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114019", "images": ["AURORA/data/something/frames/55572/first.jpg", "AURORA/data/something/frames/55572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying toy on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114020", "images": ["AURORA/data/something/frames/28328/first.jpg", "AURORA/data/something/frames/28328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dvd with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114021", "images": ["AURORA/data/something/frames/66067/first.jpg", "AURORA/data/something/frames/66067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114022", "images": ["AURORA/data/something/frames/112419/first.jpg", "AURORA/data/something/frames/112419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114023", "images": ["AURORA/data/something/frames/188022/first.jpg", "AURORA/data/something/frames/188022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing granola bar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114024", "images": ["AURORA/data/something/frames/140180/first.jpg", "AURORA/data/something/frames/140180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114025", "images": ["AURORA/data/something/frames/130831/first.jpg", "AURORA/data/something/frames/130831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114026", "images": ["AURORA/data/something/frames/86510/first.jpg", "AURORA/data/something/frames/86510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114027", "images": ["AURORA/data/something/frames/205685/first.jpg", "AURORA/data/something/frames/205685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114028", "images": ["AURORA/data/something/frames/69019/first.jpg", "AURORA/data/something/frames/69019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting belt, calculator and lock on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114029", "images": ["AURORA/data/something/frames/40101/first.jpg", "AURORA/data/something/frames/40101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plate away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114030", "images": ["AURORA/data/something/frames/48077/first.jpg", "AURORA/data/something/frames/48077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mugs"}, {"from": "gpt", "value": ""}]} +{"id": "000000114031", "images": ["AURORA/data/something/frames/16482/first.jpg", "AURORA/data/something/frames/16482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114032", "images": ["AURORA/data/something/frames/95431/first.jpg", "AURORA/data/something/frames/95431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into penstand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114033", "images": ["AURORA/data/something/frames/102620/first.jpg", "AURORA/data/something/frames/102620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote away from a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114034", "images": ["AURORA/data/something/frames/187808/first.jpg", "AURORA/data/something/frames/187808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tape measure so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114035", "images": ["AURORA/data/something/frames/175742/first.jpg", "AURORA/data/something/frames/175742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a battery from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114036", "images": ["AURORA/data/something/frames/187496/first.jpg", "AURORA/data/something/frames/187496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114037", "images": ["AURORA/data/something/frames/79237/first.jpg", "AURORA/data/something/frames/79237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114038", "images": ["AURORA/data/something/frames/75216/first.jpg", "AURORA/data/something/frames/75216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar things on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114039", "images": ["AURORA/data/something/frames/125290/first.jpg", "AURORA/data/something/frames/125290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading lentiles onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114040", "images": ["AURORA/data/something/frames/116099/first.jpg", "AURORA/data/something/frames/116099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114041", "images": ["AURORA/data/something/frames/210441/first.jpg", "AURORA/data/something/frames/210441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black pouch bag from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114042", "images": ["AURORA/data/something/frames/174303/first.jpg", "AURORA/data/something/frames/174303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114043", "images": ["AURORA/data/something/frames/67096/first.jpg", "AURORA/data/something/frames/67096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hairspray down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114044", "images": ["AURORA/data/something/frames/183763/first.jpg", "AURORA/data/something/frames/183763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a water bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114045", "images": ["AURORA/data/something/frames/82867/first.jpg", "AURORA/data/something/frames/82867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle of tool oil on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114046", "images": ["AURORA/data/something/frames/60095/first.jpg", "AURORA/data/something/frames/60095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114047", "images": ["AURORA/data/something/frames/211224/first.jpg", "AURORA/data/something/frames/211224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114048", "images": ["AURORA/data/something/frames/12331/first.jpg", "AURORA/data/something/frames/12331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking measurement spoon out of cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000114049", "images": ["AURORA/data/something/frames/15266/first.jpg", "AURORA/data/something/frames/15266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114050", "images": ["AURORA/data/something/frames/182527/first.jpg", "AURORA/data/something/frames/182527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114051", "images": ["AURORA/data/something/frames/111236/first.jpg", "AURORA/data/something/frames/111236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bay leaves upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114052", "images": ["AURORA/data/something/frames/78583/first.jpg", "AURORA/data/something/frames/78583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading pens onto flat surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114053", "images": ["AURORA/data/something/frames/67103/first.jpg", "AURORA/data/something/frames/67103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114054", "images": ["AURORA/data/something/frames/213741/first.jpg", "AURORA/data/something/frames/213741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding tea towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114055", "images": ["AURORA/data/something/frames/27206/first.jpg", "AURORA/data/something/frames/27206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114056", "images": ["AURORA/data/something/frames/72889/first.jpg", "AURORA/data/something/frames/72889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papper into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114057", "images": ["AURORA/data/something/frames/3413/first.jpg", "AURORA/data/something/frames/3413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a power plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114058", "images": ["AURORA/data/something/frames/71778/first.jpg", "AURORA/data/something/frames/71778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114059", "images": ["AURORA/data/something/frames/55513/first.jpg", "AURORA/data/something/frames/55513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lighter into a beach bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114060", "images": ["AURORA/data/something/frames/82026/first.jpg", "AURORA/data/something/frames/82026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling baking soda onto ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000114061", "images": ["AURORA/data/something/frames/69755/first.jpg", "AURORA/data/something/frames/69755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000114062", "images": ["AURORA/data/something/frames/5173/first.jpg", "AURORA/data/something/frames/5173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tiger toy colliding with elephant toy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114063", "images": ["AURORA/data/something/frames/105144/first.jpg", "AURORA/data/something/frames/105144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114064", "images": ["AURORA/data/something/frames/91388/first.jpg", "AURORA/data/something/frames/91388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper towel so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114065", "images": ["AURORA/data/something/frames/201366/first.jpg", "AURORA/data/something/frames/201366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000114066", "images": ["AURORA/data/something/frames/86145/first.jpg", "AURORA/data/something/frames/86145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a spectacle case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114067", "images": ["AURORA/data/something/frames/69735/first.jpg", "AURORA/data/something/frames/69735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) something wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114068", "images": ["AURORA/data/something/frames/65130/first.jpg", "AURORA/data/something/frames/65130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114069", "images": ["AURORA/data/something/frames/105110/first.jpg", "AURORA/data/something/frames/105110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling knife from behind of monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114070", "images": ["AURORA/data/something/frames/77274/first.jpg", "AURORA/data/something/frames/77274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ball off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114071", "images": ["AURORA/data/something/frames/151324/first.jpg", "AURORA/data/something/frames/151324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114072", "images": ["AURORA/data/something/frames/27177/first.jpg", "AURORA/data/something/frames/27177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pumpkin so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114073", "images": ["AURORA/data/something/frames/25430/first.jpg", "AURORA/data/something/frames/25430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114074", "images": ["AURORA/data/something/frames/109237/first.jpg", "AURORA/data/something/frames/109237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extension cord into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114075", "images": ["AURORA/data/something/frames/10977/first.jpg", "AURORA/data/something/frames/10977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting stopper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114076", "images": ["AURORA/data/something/frames/158936/first.jpg", "AURORA/data/something/frames/158936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pulling power bank from right to left from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114077", "images": ["AURORA/data/something/frames/149424/first.jpg", "AURORA/data/something/frames/149424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving thread down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114078", "images": ["AURORA/data/something/frames/101862/first.jpg", "AURORA/data/something/frames/101862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114079", "images": ["AURORA/data/something/frames/182755/first.jpg", "AURORA/data/something/frames/182755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sports water bottle and green water bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114080", "images": ["AURORA/data/something/frames/30209/first.jpg", "AURORA/data/something/frames/30209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a chair across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114081", "images": ["AURORA/data/something/frames/185144/first.jpg", "AURORA/data/something/frames/185144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114082", "images": ["AURORA/data/something/frames/38566/first.jpg", "AURORA/data/something/frames/38566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping q-tips into a coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000114083", "images": ["AURORA/data/something/frames/5875/first.jpg", "AURORA/data/something/frames/5875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mug with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114084", "images": ["AURORA/data/something/frames/92349/first.jpg", "AURORA/data/something/frames/92349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114085", "images": ["AURORA/data/something/frames/188722/first.jpg", "AURORA/data/something/frames/188722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to other battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000114086", "images": ["AURORA/data/something/frames/68762/first.jpg", "AURORA/data/something/frames/68762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jeep away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114087", "images": ["AURORA/data/something/frames/112521/first.jpg", "AURORA/data/something/frames/112521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114088", "images": ["AURORA/data/something/frames/74764/first.jpg", "AURORA/data/something/frames/74764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a speaker colliding with a shirt and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114089", "images": ["AURORA/data/something/frames/8642/first.jpg", "AURORA/data/something/frames/8642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a battery from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114090", "images": ["AURORA/data/something/frames/102916/first.jpg", "AURORA/data/something/frames/102916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114091", "images": ["AURORA/data/something/frames/110111/first.jpg", "AURORA/data/something/frames/110111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing post it note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114092", "images": ["AURORA/data/something/frames/219234/first.jpg", "AURORA/data/something/frames/219234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering shoe with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114093", "images": ["AURORA/data/something/frames/125277/first.jpg", "AURORA/data/something/frames/125277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114094", "images": ["AURORA/data/something/frames/128760/first.jpg", "AURORA/data/something/frames/128760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 cd onto laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114095", "images": ["AURORA/data/something/frames/22577/first.jpg", "AURORA/data/something/frames/22577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114096", "images": ["AURORA/data/something/frames/84160/first.jpg", "AURORA/data/something/frames/84160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lemon into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114097", "images": ["AURORA/data/something/frames/78000/first.jpg", "AURORA/data/something/frames/78000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bottletop onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114098", "images": ["AURORA/data/something/frames/67207/first.jpg", "AURORA/data/something/frames/67207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardboard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114099", "images": ["AURORA/data/something/frames/159921/first.jpg", "AURORA/data/something/frames/159921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping badminton bat in front of a pair of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000114100", "images": ["AURORA/data/something/frames/26291/first.jpg", "AURORA/data/something/frames/26291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hair gel bottle with nail paint remover"}, {"from": "gpt", "value": ""}]} +{"id": "000000114101", "images": ["AURORA/data/something/frames/120363/first.jpg", "AURORA/data/something/frames/120363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notebook page into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114102", "images": ["AURORA/data/something/frames/186913/first.jpg", "AURORA/data/something/frames/186913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114103", "images": ["AURORA/data/something/frames/182928/first.jpg", "AURORA/data/something/frames/182928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114104", "images": ["AURORA/data/something/frames/218510/first.jpg", "AURORA/data/something/frames/218510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114105", "images": ["AURORA/data/something/frames/169915/first.jpg", "AURORA/data/something/frames/169915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting ipad with water bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114106", "images": ["AURORA/data/something/frames/65950/first.jpg", "AURORA/data/something/frames/65950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114107", "images": ["AURORA/data/something/frames/147533/first.jpg", "AURORA/data/something/frames/147533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114108", "images": ["AURORA/data/something/frames/129181/first.jpg", "AURORA/data/something/frames/129181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup behind canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000114109", "images": ["AURORA/data/something/frames/178550/first.jpg", "AURORA/data/something/frames/178550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving match box down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114110", "images": ["AURORA/data/something/frames/157759/first.jpg", "AURORA/data/something/frames/157759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding reciept"}, {"from": "gpt", "value": ""}]} +{"id": "000000114111", "images": ["AURORA/data/something/frames/86401/first.jpg", "AURORA/data/something/frames/86401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing brown case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114112", "images": ["AURORA/data/something/frames/144404/first.jpg", "AURORA/data/something/frames/144404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scotch tape so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114113", "images": ["AURORA/data/something/frames/198150/first.jpg", "AURORA/data/something/frames/198150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy duck and plastic flower away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114114", "images": ["AURORA/data/something/frames/89166/first.jpg", "AURORA/data/something/frames/89166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114115", "images": ["AURORA/data/something/frames/5248/first.jpg", "AURORA/data/something/frames/5248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a candle up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114116", "images": ["AURORA/data/something/frames/208314/first.jpg", "AURORA/data/something/frames/208314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling felt pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114117", "images": ["AURORA/data/something/frames/81098/first.jpg", "AURORA/data/something/frames/81098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114118", "images": ["AURORA/data/something/frames/171081/first.jpg", "AURORA/data/something/frames/171081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clock in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114119", "images": ["AURORA/data/something/frames/121504/first.jpg", "AURORA/data/something/frames/121504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114120", "images": ["AURORA/data/something/frames/101681/first.jpg", "AURORA/data/something/frames/101681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 6 dog treats onto chopping board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114121", "images": ["AURORA/data/something/frames/213334/first.jpg", "AURORA/data/something/frames/213334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114122", "images": ["AURORA/data/something/frames/184423/first.jpg", "AURORA/data/something/frames/184423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb next to a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000114123", "images": ["AURORA/data/something/frames/55398/first.jpg", "AURORA/data/something/frames/55398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of clementines without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000114124", "images": ["AURORA/data/something/frames/196954/first.jpg", "AURORA/data/something/frames/196954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toy out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114125", "images": ["AURORA/data/something/frames/14270/first.jpg", "AURORA/data/something/frames/14270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114126", "images": ["AURORA/data/something/frames/18366/first.jpg", "AURORA/data/something/frames/18366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending envelope so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114127", "images": ["AURORA/data/something/frames/167596/first.jpg", "AURORA/data/something/frames/167596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114128", "images": ["AURORA/data/something/frames/41450/first.jpg", "AURORA/data/something/frames/41450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114129", "images": ["AURORA/data/something/frames/134471/first.jpg", "AURORA/data/something/frames/134471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114130", "images": ["AURORA/data/something/frames/89099/first.jpg", "AURORA/data/something/frames/89099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling chopsticks out of package"}, {"from": "gpt", "value": ""}]} +{"id": "000000114131", "images": ["AURORA/data/something/frames/88732/first.jpg", "AURORA/data/something/frames/88732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114132", "images": ["AURORA/data/something/frames/24394/first.jpg", "AURORA/data/something/frames/24394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114133", "images": ["AURORA/data/something/frames/81255/first.jpg", "AURORA/data/something/frames/81255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a charger so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114134", "images": ["AURORA/data/something/frames/143509/first.jpg", "AURORA/data/something/frames/143509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring koolaid into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114135", "images": ["AURORA/data/something/frames/29472/first.jpg", "AURORA/data/something/frames/29472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting felt pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114136", "images": ["AURORA/data/something/frames/25938/first.jpg", "AURORA/data/something/frames/25938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notepad across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114137", "images": ["AURORA/data/something/frames/85169/first.jpg", "AURORA/data/something/frames/85169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a woollen yarn into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114138", "images": ["AURORA/data/something/frames/161027/first.jpg", "AURORA/data/something/frames/161027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114139", "images": ["AURORA/data/something/frames/100458/first.jpg", "AURORA/data/something/frames/100458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plate from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000114140", "images": ["AURORA/data/something/frames/129432/first.jpg", "AURORA/data/something/frames/129432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114141", "images": ["AURORA/data/something/frames/195005/first.jpg", "AURORA/data/something/frames/195005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a spoon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114142", "images": ["AURORA/data/something/frames/176329/first.jpg", "AURORA/data/something/frames/176329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114143", "images": ["AURORA/data/something/frames/79168/first.jpg", "AURORA/data/something/frames/79168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a key away from a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114144", "images": ["AURORA/data/something/frames/155824/first.jpg", "AURORA/data/something/frames/155824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114145", "images": ["AURORA/data/something/frames/83895/first.jpg", "AURORA/data/something/frames/83895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114146", "images": ["AURORA/data/something/frames/214793/first.jpg", "AURORA/data/something/frames/214793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114147", "images": ["AURORA/data/something/frames/130837/first.jpg", "AURORA/data/something/frames/130837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box closer to can"}, {"from": "gpt", "value": ""}]} +{"id": "000000114148", "images": ["AURORA/data/something/frames/35183/first.jpg", "AURORA/data/something/frames/35183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tv remote with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114149", "images": ["AURORA/data/something/frames/127248/first.jpg", "AURORA/data/something/frames/127248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a card upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114150", "images": ["AURORA/data/something/frames/64912/first.jpg", "AURORA/data/something/frames/64912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114151", "images": ["AURORA/data/something/frames/99945/first.jpg", "AURORA/data/something/frames/99945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114152", "images": ["AURORA/data/something/frames/208950/first.jpg", "AURORA/data/something/frames/208950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging toaster into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114153", "images": ["AURORA/data/something/frames/158909/first.jpg", "AURORA/data/something/frames/158909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a power cord into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114154", "images": ["AURORA/data/something/frames/124393/first.jpg", "AURORA/data/something/frames/124393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking documents out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114155", "images": ["AURORA/data/something/frames/10473/first.jpg", "AURORA/data/something/frames/10473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming banana"}, {"from": "gpt", "value": ""}]} +{"id": "000000114156", "images": ["AURORA/data/something/frames/45522/first.jpg", "AURORA/data/something/frames/45522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red spoon away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114157", "images": ["AURORA/data/something/frames/60361/first.jpg", "AURORA/data/something/frames/60361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of cloth without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114158", "images": ["AURORA/data/something/frames/74604/first.jpg", "AURORA/data/something/frames/74604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114159", "images": ["AURORA/data/something/frames/107990/first.jpg", "AURORA/data/something/frames/107990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying red cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114160", "images": ["AURORA/data/something/frames/34047/first.jpg", "AURORA/data/something/frames/34047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toothbrush with notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114161", "images": ["AURORA/data/something/frames/121487/first.jpg", "AURORA/data/something/frames/121487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000114162", "images": ["AURORA/data/something/frames/101117/first.jpg", "AURORA/data/something/frames/101117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114163", "images": ["AURORA/data/something/frames/214149/first.jpg", "AURORA/data/something/frames/214149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tissue box on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114164", "images": ["AURORA/data/something/frames/203721/first.jpg", "AURORA/data/something/frames/203721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle next to kendama"}, {"from": "gpt", "value": ""}]} +{"id": "000000114165", "images": ["AURORA/data/something/frames/69439/first.jpg", "AURORA/data/something/frames/69439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000114166", "images": ["AURORA/data/something/frames/32741/first.jpg", "AURORA/data/something/frames/32741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114167", "images": ["AURORA/data/something/frames/53592/first.jpg", "AURORA/data/something/frames/53592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving basketball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114168", "images": ["AURORA/data/something/frames/113329/first.jpg", "AURORA/data/something/frames/113329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book from a pile of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114169", "images": ["AURORA/data/something/frames/109268/first.jpg", "AURORA/data/something/frames/109268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting brush with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114170", "images": ["AURORA/data/something/frames/16749/first.jpg", "AURORA/data/something/frames/16749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114171", "images": ["AURORA/data/something/frames/193403/first.jpg", "AURORA/data/something/frames/193403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lunchbox behind a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114172", "images": ["AURORA/data/something/frames/39205/first.jpg", "AURORA/data/something/frames/39205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114173", "images": ["AURORA/data/something/frames/179673/first.jpg", "AURORA/data/something/frames/179673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114174", "images": ["AURORA/data/something/frames/162861/first.jpg", "AURORA/data/something/frames/162861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114175", "images": ["AURORA/data/something/frames/173426/first.jpg", "AURORA/data/something/frames/173426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting selfie stick behind wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114176", "images": ["AURORA/data/something/frames/100579/first.jpg", "AURORA/data/something/frames/100579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of play-doh"}, {"from": "gpt", "value": ""}]} +{"id": "000000114177", "images": ["AURORA/data/something/frames/213168/first.jpg", "AURORA/data/something/frames/213168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote control with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114178", "images": ["AURORA/data/something/frames/36308/first.jpg", "AURORA/data/something/frames/36308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pant into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114179", "images": ["AURORA/data/something/frames/195136/first.jpg", "AURORA/data/something/frames/195136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114180", "images": ["AURORA/data/something/frames/145503/first.jpg", "AURORA/data/something/frames/145503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114181", "images": ["AURORA/data/something/frames/184810/first.jpg", "AURORA/data/something/frames/184810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lid of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114182", "images": ["AURORA/data/something/frames/139652/first.jpg", "AURORA/data/something/frames/139652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a box with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114183", "images": ["AURORA/data/something/frames/99304/first.jpg", "AURORA/data/something/frames/99304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114184", "images": ["AURORA/data/something/frames/157086/first.jpg", "AURORA/data/something/frames/157086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114185", "images": ["AURORA/data/something/frames/64685/first.jpg", "AURORA/data/something/frames/64685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup in front of a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000114186", "images": ["AURORA/data/something/frames/129940/first.jpg", "AURORA/data/something/frames/129940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pillow upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114187", "images": ["AURORA/data/something/frames/43904/first.jpg", "AURORA/data/something/frames/43904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000114188", "images": ["AURORA/data/something/frames/49552/first.jpg", "AURORA/data/something/frames/49552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling envelopes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114189", "images": ["AURORA/data/something/frames/211632/first.jpg", "AURORA/data/something/frames/211632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114190", "images": ["AURORA/data/something/frames/22700/first.jpg", "AURORA/data/something/frames/22700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a thread so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114191", "images": ["AURORA/data/something/frames/28815/first.jpg", "AURORA/data/something/frames/28815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one spoon from many spoons on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114192", "images": ["AURORA/data/something/frames/46642/first.jpg", "AURORA/data/something/frames/46642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114193", "images": ["AURORA/data/something/frames/98886/first.jpg", "AURORA/data/something/frames/98886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114194", "images": ["AURORA/data/something/frames/72298/first.jpg", "AURORA/data/something/frames/72298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking shoes from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114195", "images": ["AURORA/data/something/frames/52971/first.jpg", "AURORA/data/something/frames/52971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing aim toothpaste from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114196", "images": ["AURORA/data/something/frames/155511/first.jpg", "AURORA/data/something/frames/155511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an electric fan with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114197", "images": ["AURORA/data/something/frames/193863/first.jpg", "AURORA/data/something/frames/193863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a can with a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114198", "images": ["AURORA/data/something/frames/211354/first.jpg", "AURORA/data/something/frames/211354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lipstick colliding with another lipstick and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114199", "images": ["AURORA/data/something/frames/64794/first.jpg", "AURORA/data/something/frames/64794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle with bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114200", "images": ["AURORA/data/something/frames/56120/first.jpg", "AURORA/data/something/frames/56120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114201", "images": ["AURORA/data/something/frames/107138/first.jpg", "AURORA/data/something/frames/107138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114202", "images": ["AURORA/data/something/frames/131342/first.jpg", "AURORA/data/something/frames/131342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with teatowel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114203", "images": ["AURORA/data/something/frames/192642/first.jpg", "AURORA/data/something/frames/192642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jar out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114204", "images": ["AURORA/data/something/frames/146799/first.jpg", "AURORA/data/something/frames/146799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114205", "images": ["AURORA/data/something/frames/90618/first.jpg", "AURORA/data/something/frames/90618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114206", "images": ["AURORA/data/something/frames/112522/first.jpg", "AURORA/data/something/frames/112522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting remote control up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114207", "images": ["AURORA/data/something/frames/130003/first.jpg", "AURORA/data/something/frames/130003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114208", "images": ["AURORA/data/something/frames/121225/first.jpg", "AURORA/data/something/frames/121225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill bottle into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114209", "images": ["AURORA/data/something/frames/24132/first.jpg", "AURORA/data/something/frames/24132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cups up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114210", "images": ["AURORA/data/something/frames/183163/first.jpg", "AURORA/data/something/frames/183163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cork with hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114211", "images": ["AURORA/data/something/frames/65191/first.jpg", "AURORA/data/something/frames/65191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114212", "images": ["AURORA/data/something/frames/42556/first.jpg", "AURORA/data/something/frames/42556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling door from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114213", "images": ["AURORA/data/something/frames/157256/first.jpg", "AURORA/data/something/frames/157256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114214", "images": ["AURORA/data/something/frames/196501/first.jpg", "AURORA/data/something/frames/196501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114215", "images": ["AURORA/data/something/frames/126786/first.jpg", "AURORA/data/something/frames/126786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting writing pad with papers on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114216", "images": ["AURORA/data/something/frames/44812/first.jpg", "AURORA/data/something/frames/44812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114217", "images": ["AURORA/data/something/frames/209457/first.jpg", "AURORA/data/something/frames/209457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114218", "images": ["AURORA/data/something/frames/124435/first.jpg", "AURORA/data/something/frames/124435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glue from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114219", "images": ["AURORA/data/something/frames/88126/first.jpg", "AURORA/data/something/frames/88126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114220", "images": ["AURORA/data/something/frames/75125/first.jpg", "AURORA/data/something/frames/75125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notebook with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114221", "images": ["AURORA/data/something/frames/8210/first.jpg", "AURORA/data/something/frames/8210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 envelope onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114222", "images": ["AURORA/data/something/frames/79932/first.jpg", "AURORA/data/something/frames/79932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle in front of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000114223", "images": ["AURORA/data/something/frames/124285/first.jpg", "AURORA/data/something/frames/124285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting an apple up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114224", "images": ["AURORA/data/something/frames/166428/first.jpg", "AURORA/data/something/frames/166428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a book into a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000114225", "images": ["AURORA/data/something/frames/2123/first.jpg", "AURORA/data/something/frames/2123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sandals towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114226", "images": ["AURORA/data/something/frames/199577/first.jpg", "AURORA/data/something/frames/199577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114227", "images": ["AURORA/data/something/frames/166634/first.jpg", "AURORA/data/something/frames/166634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing canned food from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114228", "images": ["AURORA/data/something/frames/72016/first.jpg", "AURORA/data/something/frames/72016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114229", "images": ["AURORA/data/something/frames/209928/first.jpg", "AURORA/data/something/frames/209928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching charger to phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114230", "images": ["AURORA/data/something/frames/94199/first.jpg", "AURORA/data/something/frames/94199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114231", "images": ["AURORA/data/something/frames/205741/first.jpg", "AURORA/data/something/frames/205741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114232", "images": ["AURORA/data/something/frames/188398/first.jpg", "AURORA/data/something/frames/188398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pencil case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114233", "images": ["AURORA/data/something/frames/131451/first.jpg", "AURORA/data/something/frames/131451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114234", "images": ["AURORA/data/something/frames/115564/first.jpg", "AURORA/data/something/frames/115564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of cloves organizer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114235", "images": ["AURORA/data/something/frames/61998/first.jpg", "AURORA/data/something/frames/61998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping gallon jug over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114236", "images": ["AURORA/data/something/frames/174255/first.jpg", "AURORA/data/something/frames/174255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114237", "images": ["AURORA/data/something/frames/162332/first.jpg", "AURORA/data/something/frames/162332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a coin upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114238", "images": ["AURORA/data/something/frames/106715/first.jpg", "AURORA/data/something/frames/106715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coaster so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114239", "images": ["AURORA/data/something/frames/220483/first.jpg", "AURORA/data/something/frames/220483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) phone of the folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114240", "images": ["AURORA/data/something/frames/5417/first.jpg", "AURORA/data/something/frames/5417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114241", "images": ["AURORA/data/something/frames/190898/first.jpg", "AURORA/data/something/frames/190898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging a mallet out of stack of gravel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114242", "images": ["AURORA/data/something/frames/58097/first.jpg", "AURORA/data/something/frames/58097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114243", "images": ["AURORA/data/something/frames/177885/first.jpg", "AURORA/data/something/frames/177885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fluorescent light bulb behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114244", "images": ["AURORA/data/something/frames/73758/first.jpg", "AURORA/data/something/frames/73758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a screw away from many screws"}, {"from": "gpt", "value": ""}]} +{"id": "000000114245", "images": ["AURORA/data/something/frames/74408/first.jpg", "AURORA/data/something/frames/74408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of envelope without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114246", "images": ["AURORA/data/something/frames/216489/first.jpg", "AURORA/data/something/frames/216489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting figurine up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114247", "images": ["AURORA/data/something/frames/178399/first.jpg", "AURORA/data/something/frames/178399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into mobilephone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114248", "images": ["AURORA/data/something/frames/129562/first.jpg", "AURORA/data/something/frames/129562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cell phone with marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114249", "images": ["AURORA/data/something/frames/106483/first.jpg", "AURORA/data/something/frames/106483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ground tea off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114250", "images": ["AURORA/data/something/frames/75967/first.jpg", "AURORA/data/something/frames/75967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sticky note in front of sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000114251", "images": ["AURORA/data/something/frames/187835/first.jpg", "AURORA/data/something/frames/187835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging guitar cable into amplifier but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114252", "images": ["AURORA/data/something/frames/167391/first.jpg", "AURORA/data/something/frames/167391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of paper without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114253", "images": ["AURORA/data/something/frames/106134/first.jpg", "AURORA/data/something/frames/106134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114254", "images": ["AURORA/data/something/frames/192714/first.jpg", "AURORA/data/something/frames/192714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting knife with soap on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114255", "images": ["AURORA/data/something/frames/37976/first.jpg", "AURORA/data/something/frames/37976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving vape closer to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114256", "images": ["AURORA/data/something/frames/171527/first.jpg", "AURORA/data/something/frames/171527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114257", "images": ["AURORA/data/something/frames/32578/first.jpg", "AURORA/data/something/frames/32578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping puzzle piece up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114258", "images": ["AURORA/data/something/frames/84921/first.jpg", "AURORA/data/something/frames/84921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a usb stick into a plastic box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114259", "images": ["AURORA/data/something/frames/25072/first.jpg", "AURORA/data/something/frames/25072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114260", "images": ["AURORA/data/something/frames/61220/first.jpg", "AURORA/data/something/frames/61220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping charger behind watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114261", "images": ["AURORA/data/something/frames/173043/first.jpg", "AURORA/data/something/frames/173043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114262", "images": ["AURORA/data/something/frames/33742/first.jpg", "AURORA/data/something/frames/33742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114263", "images": ["AURORA/data/something/frames/2355/first.jpg", "AURORA/data/something/frames/2355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114264", "images": ["AURORA/data/something/frames/74509/first.jpg", "AURORA/data/something/frames/74509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cleaning powder onto a bathtub"}, {"from": "gpt", "value": ""}]} +{"id": "000000114265", "images": ["AURORA/data/something/frames/58958/first.jpg", "AURORA/data/something/frames/58958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spice with spices"}, {"from": "gpt", "value": ""}]} +{"id": "000000114266", "images": ["AURORA/data/something/frames/32629/first.jpg", "AURORA/data/something/frames/32629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pineapple up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114267", "images": ["AURORA/data/something/frames/84116/first.jpg", "AURORA/data/something/frames/84116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114268", "images": ["AURORA/data/something/frames/40159/first.jpg", "AURORA/data/something/frames/40159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114269", "images": ["AURORA/data/something/frames/127307/first.jpg", "AURORA/data/something/frames/127307/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red booklet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114270", "images": ["AURORA/data/something/frames/208090/first.jpg", "AURORA/data/something/frames/208090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a grape out of a small bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114271", "images": ["AURORA/data/something/frames/177716/first.jpg", "AURORA/data/something/frames/177716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick and scissor away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114272", "images": ["AURORA/data/something/frames/12128/first.jpg", "AURORA/data/something/frames/12128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil beetween others"}, {"from": "gpt", "value": ""}]} +{"id": "000000114273", "images": ["AURORA/data/something/frames/75489/first.jpg", "AURORA/data/something/frames/75489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing jacket into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114274", "images": ["AURORA/data/something/frames/138952/first.jpg", "AURORA/data/something/frames/138952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tape so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114275", "images": ["AURORA/data/something/frames/108023/first.jpg", "AURORA/data/something/frames/108023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting the lid on a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114276", "images": ["AURORA/data/something/frames/115590/first.jpg", "AURORA/data/something/frames/115590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: glasses box colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114277", "images": ["AURORA/data/something/frames/137925/first.jpg", "AURORA/data/something/frames/137925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000114278", "images": ["AURORA/data/something/frames/204696/first.jpg", "AURORA/data/something/frames/204696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114279", "images": ["AURORA/data/something/frames/3506/first.jpg", "AURORA/data/something/frames/3506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114280", "images": ["AURORA/data/something/frames/148378/first.jpg", "AURORA/data/something/frames/148378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114281", "images": ["AURORA/data/something/frames/2533/first.jpg", "AURORA/data/something/frames/2533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book closer to remotes"}, {"from": "gpt", "value": ""}]} +{"id": "000000114282", "images": ["AURORA/data/something/frames/5756/first.jpg", "AURORA/data/something/frames/5756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing an encyclopedia into a shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000114283", "images": ["AURORA/data/something/frames/30622/first.jpg", "AURORA/data/something/frames/30622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 colour chalks onto diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000114284", "images": ["AURORA/data/something/frames/104891/first.jpg", "AURORA/data/something/frames/104891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soda can"}, {"from": "gpt", "value": ""}]} +{"id": "000000114285", "images": ["AURORA/data/something/frames/131678/first.jpg", "AURORA/data/something/frames/131678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pens together"}, {"from": "gpt", "value": ""}]} +{"id": "000000114286", "images": ["AURORA/data/something/frames/138321/first.jpg", "AURORA/data/something/frames/138321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black disc case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114287", "images": ["AURORA/data/something/frames/41513/first.jpg", "AURORA/data/something/frames/41513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing tablecloth, revealing comb behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114288", "images": ["AURORA/data/something/frames/196654/first.jpg", "AURORA/data/something/frames/196654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114289", "images": ["AURORA/data/something/frames/167326/first.jpg", "AURORA/data/something/frames/167326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lipstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000114290", "images": ["AURORA/data/something/frames/187530/first.jpg", "AURORA/data/something/frames/187530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114291", "images": ["AURORA/data/something/frames/89223/first.jpg", "AURORA/data/something/frames/89223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a coffee cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114292", "images": ["AURORA/data/something/frames/52438/first.jpg", "AURORA/data/something/frames/52438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bowl closer to sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000114293", "images": ["AURORA/data/something/frames/152718/first.jpg", "AURORA/data/something/frames/152718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114294", "images": ["AURORA/data/something/frames/63350/first.jpg", "AURORA/data/something/frames/63350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lid and wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114295", "images": ["AURORA/data/something/frames/219489/first.jpg", "AURORA/data/something/frames/219489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening letter envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114296", "images": ["AURORA/data/something/frames/75316/first.jpg", "AURORA/data/something/frames/75316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114297", "images": ["AURORA/data/something/frames/150304/first.jpg", "AURORA/data/something/frames/150304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electrical adaptor into electrical socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114298", "images": ["AURORA/data/something/frames/69583/first.jpg", "AURORA/data/something/frames/69583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114299", "images": ["AURORA/data/something/frames/78191/first.jpg", "AURORA/data/something/frames/78191/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toys into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114300", "images": ["AURORA/data/something/frames/43065/first.jpg", "AURORA/data/something/frames/43065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting black play cards on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114301", "images": ["AURORA/data/something/frames/138974/first.jpg", "AURORA/data/something/frames/138974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a wallet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114302", "images": ["AURORA/data/something/frames/213679/first.jpg", "AURORA/data/something/frames/213679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114303", "images": ["AURORA/data/something/frames/75252/first.jpg", "AURORA/data/something/frames/75252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cablle into a laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114304", "images": ["AURORA/data/something/frames/109198/first.jpg", "AURORA/data/something/frames/109198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tube in front of bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000114305", "images": ["AURORA/data/something/frames/24335/first.jpg", "AURORA/data/something/frames/24335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114306", "images": ["AURORA/data/something/frames/4077/first.jpg", "AURORA/data/something/frames/4077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000114307", "images": ["AURORA/data/something/frames/15970/first.jpg", "AURORA/data/something/frames/15970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning wallet upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114308", "images": ["AURORA/data/something/frames/18531/first.jpg", "AURORA/data/something/frames/18531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114309", "images": ["AURORA/data/something/frames/126702/first.jpg", "AURORA/data/something/frames/126702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and pen so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114310", "images": ["AURORA/data/something/frames/113120/first.jpg", "AURORA/data/something/frames/113120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red teacup and white teacup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114311", "images": ["AURORA/data/something/frames/161450/first.jpg", "AURORA/data/something/frames/161450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114312", "images": ["AURORA/data/something/frames/32018/first.jpg", "AURORA/data/something/frames/32018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pen with marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114313", "images": ["AURORA/data/something/frames/108464/first.jpg", "AURORA/data/something/frames/108464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling blanket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114314", "images": ["AURORA/data/something/frames/34343/first.jpg", "AURORA/data/something/frames/34343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114315", "images": ["AURORA/data/something/frames/170087/first.jpg", "AURORA/data/something/frames/170087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 small bowls"}, {"from": "gpt", "value": ""}]} +{"id": "000000114316", "images": ["AURORA/data/something/frames/56827/first.jpg", "AURORA/data/something/frames/56827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling puzzle piece out of plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114317", "images": ["AURORA/data/something/frames/109524/first.jpg", "AURORA/data/something/frames/109524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing flowers into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114318", "images": ["AURORA/data/something/frames/4372/first.jpg", "AURORA/data/something/frames/4372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000114319", "images": ["AURORA/data/something/frames/197847/first.jpg", "AURORA/data/something/frames/197847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jumpdrive away from a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000114320", "images": ["AURORA/data/something/frames/62873/first.jpg", "AURORA/data/something/frames/62873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114321", "images": ["AURORA/data/something/frames/128044/first.jpg", "AURORA/data/something/frames/128044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cufflinks so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114322", "images": ["AURORA/data/something/frames/111792/first.jpg", "AURORA/data/something/frames/111792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000114323", "images": ["AURORA/data/something/frames/206137/first.jpg", "AURORA/data/something/frames/206137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114324", "images": ["AURORA/data/something/frames/21113/first.jpg", "AURORA/data/something/frames/21113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cleaning sponge into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114325", "images": ["AURORA/data/something/frames/69694/first.jpg", "AURORA/data/something/frames/69694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a doll and a doll so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114326", "images": ["AURORA/data/something/frames/24012/first.jpg", "AURORA/data/something/frames/24012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a pencil so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114327", "images": ["AURORA/data/something/frames/73438/first.jpg", "AURORA/data/something/frames/73438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cup, revealing lighter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114328", "images": ["AURORA/data/something/frames/37037/first.jpg", "AURORA/data/something/frames/37037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting chair up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114329", "images": ["AURORA/data/something/frames/86435/first.jpg", "AURORA/data/something/frames/86435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an extension chord"}, {"from": "gpt", "value": ""}]} +{"id": "000000114330", "images": ["AURORA/data/something/frames/48695/first.jpg", "AURORA/data/something/frames/48695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tool closer to scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114331", "images": ["AURORA/data/something/frames/28981/first.jpg", "AURORA/data/something/frames/28981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse and notebook closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114332", "images": ["AURORA/data/something/frames/112179/first.jpg", "AURORA/data/something/frames/112179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114333", "images": ["AURORA/data/something/frames/26064/first.jpg", "AURORA/data/something/frames/26064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a cup with a chopstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000114334", "images": ["AURORA/data/something/frames/190032/first.jpg", "AURORA/data/something/frames/190032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking glasses with glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000114335", "images": ["AURORA/data/something/frames/162581/first.jpg", "AURORA/data/something/frames/162581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114336", "images": ["AURORA/data/something/frames/32442/first.jpg", "AURORA/data/something/frames/32442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big white color ball and small orange color ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114337", "images": ["AURORA/data/something/frames/3216/first.jpg", "AURORA/data/something/frames/3216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114338", "images": ["AURORA/data/something/frames/106390/first.jpg", "AURORA/data/something/frames/106390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sunglass and sunglass so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114339", "images": ["AURORA/data/something/frames/4386/first.jpg", "AURORA/data/something/frames/4386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera case in front of speedlite"}, {"from": "gpt", "value": ""}]} +{"id": "000000114340", "images": ["AURORA/data/something/frames/98438/first.jpg", "AURORA/data/something/frames/98438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114341", "images": ["AURORA/data/something/frames/38004/first.jpg", "AURORA/data/something/frames/38004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spray bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114342", "images": ["AURORA/data/something/frames/8361/first.jpg", "AURORA/data/something/frames/8361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into power socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114343", "images": ["AURORA/data/something/frames/111337/first.jpg", "AURORA/data/something/frames/111337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114344", "images": ["AURORA/data/something/frames/27593/first.jpg", "AURORA/data/something/frames/27593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning ink bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114345", "images": ["AURORA/data/something/frames/138953/first.jpg", "AURORA/data/something/frames/138953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wristwatch and charger away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114346", "images": ["AURORA/data/something/frames/117117/first.jpg", "AURORA/data/something/frames/117117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114347", "images": ["AURORA/data/something/frames/69636/first.jpg", "AURORA/data/something/frames/69636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a hairbrush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114348", "images": ["AURORA/data/something/frames/41013/first.jpg", "AURORA/data/something/frames/41013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a styrofoam block"}, {"from": "gpt", "value": ""}]} +{"id": "000000114349", "images": ["AURORA/data/something/frames/211938/first.jpg", "AURORA/data/something/frames/211938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114350", "images": ["AURORA/data/something/frames/199277/first.jpg", "AURORA/data/something/frames/199277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114351", "images": ["AURORA/data/something/frames/89648/first.jpg", "AURORA/data/something/frames/89648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 coasters"}, {"from": "gpt", "value": ""}]} +{"id": "000000114352", "images": ["AURORA/data/something/frames/120818/first.jpg", "AURORA/data/something/frames/120818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114353", "images": ["AURORA/data/something/frames/180850/first.jpg", "AURORA/data/something/frames/180850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bucket with bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114354", "images": ["AURORA/data/something/frames/214599/first.jpg", "AURORA/data/something/frames/214599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000114355", "images": ["AURORA/data/something/frames/97391/first.jpg", "AURORA/data/something/frames/97391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a measuring cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114356", "images": ["AURORA/data/something/frames/209243/first.jpg", "AURORA/data/something/frames/209243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114357", "images": ["AURORA/data/something/frames/88787/first.jpg", "AURORA/data/something/frames/88787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending chopsticks until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114358", "images": ["AURORA/data/something/frames/99177/first.jpg", "AURORA/data/something/frames/99177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a spray can with a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114359", "images": ["AURORA/data/something/frames/21329/first.jpg", "AURORA/data/something/frames/21329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114360", "images": ["AURORA/data/something/frames/216505/first.jpg", "AURORA/data/something/frames/216505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114361", "images": ["AURORA/data/something/frames/46201/first.jpg", "AURORA/data/something/frames/46201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting toy car with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114362", "images": ["AURORA/data/something/frames/183742/first.jpg", "AURORA/data/something/frames/183742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114363", "images": ["AURORA/data/something/frames/34675/first.jpg", "AURORA/data/something/frames/34675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet away from a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114364", "images": ["AURORA/data/something/frames/33067/first.jpg", "AURORA/data/something/frames/33067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling salt onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114365", "images": ["AURORA/data/something/frames/96143/first.jpg", "AURORA/data/something/frames/96143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail polish, bottle and tube on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114366", "images": ["AURORA/data/something/frames/205141/first.jpg", "AURORA/data/something/frames/205141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning orange bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114367", "images": ["AURORA/data/something/frames/128572/first.jpg", "AURORA/data/something/frames/128572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soap and nail cutter so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114368", "images": ["AURORA/data/something/frames/52879/first.jpg", "AURORA/data/something/frames/52879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114369", "images": ["AURORA/data/something/frames/150441/first.jpg", "AURORA/data/something/frames/150441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling small blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114370", "images": ["AURORA/data/something/frames/12763/first.jpg", "AURORA/data/something/frames/12763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cardboard tube until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114371", "images": ["AURORA/data/something/frames/88815/first.jpg", "AURORA/data/something/frames/88815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy next to toy watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114372", "images": ["AURORA/data/something/frames/181807/first.jpg", "AURORA/data/something/frames/181807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and box so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114373", "images": ["AURORA/data/something/frames/28230/first.jpg", "AURORA/data/something/frames/28230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching carabinier hook to a keyring"}, {"from": "gpt", "value": ""}]} +{"id": "000000114374", "images": ["AURORA/data/something/frames/145132/first.jpg", "AURORA/data/something/frames/145132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending chenille stick so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114375", "images": ["AURORA/data/something/frames/58953/first.jpg", "AURORA/data/something/frames/58953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting sliper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114376", "images": ["AURORA/data/something/frames/63960/first.jpg", "AURORA/data/something/frames/63960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wristwatch and phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114377", "images": ["AURORA/data/something/frames/155928/first.jpg", "AURORA/data/something/frames/155928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow container next to blue spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114378", "images": ["AURORA/data/something/frames/36703/first.jpg", "AURORA/data/something/frames/36703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning dvd case upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114379", "images": ["AURORA/data/something/frames/45066/first.jpg", "AURORA/data/something/frames/45066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tissue box next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114380", "images": ["AURORA/data/something/frames/124682/first.jpg", "AURORA/data/something/frames/124682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and holder away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114381", "images": ["AURORA/data/something/frames/12129/first.jpg", "AURORA/data/something/frames/12129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a face cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114382", "images": ["AURORA/data/something/frames/161541/first.jpg", "AURORA/data/something/frames/161541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114383", "images": ["AURORA/data/something/frames/47160/first.jpg", "AURORA/data/something/frames/47160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing grape off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114384", "images": ["AURORA/data/something/frames/99174/first.jpg", "AURORA/data/something/frames/99174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing watch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114385", "images": ["AURORA/data/something/frames/5435/first.jpg", "AURORA/data/something/frames/5435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114386", "images": ["AURORA/data/something/frames/208455/first.jpg", "AURORA/data/something/frames/208455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug cable into plug holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114387", "images": ["AURORA/data/something/frames/138510/first.jpg", "AURORA/data/something/frames/138510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114388", "images": ["AURORA/data/something/frames/86882/first.jpg", "AURORA/data/something/frames/86882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114389", "images": ["AURORA/data/something/frames/197066/first.jpg", "AURORA/data/something/frames/197066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114390", "images": ["AURORA/data/something/frames/79026/first.jpg", "AURORA/data/something/frames/79026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic cup behind a bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114391", "images": ["AURORA/data/something/frames/140400/first.jpg", "AURORA/data/something/frames/140400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114392", "images": ["AURORA/data/something/frames/218881/first.jpg", "AURORA/data/something/frames/218881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dishcloth being deflected from cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114393", "images": ["AURORA/data/something/frames/44133/first.jpg", "AURORA/data/something/frames/44133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114394", "images": ["AURORA/data/something/frames/152502/first.jpg", "AURORA/data/something/frames/152502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114395", "images": ["AURORA/data/something/frames/115418/first.jpg", "AURORA/data/something/frames/115418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114396", "images": ["AURORA/data/something/frames/45091/first.jpg", "AURORA/data/something/frames/45091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging mobile charger into electical outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114397", "images": ["AURORA/data/something/frames/159442/first.jpg", "AURORA/data/something/frames/159442/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle of mustard on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114398", "images": ["AURORA/data/something/frames/105308/first.jpg", "AURORA/data/something/frames/105308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114399", "images": ["AURORA/data/something/frames/20519/first.jpg", "AURORA/data/something/frames/20519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling soda onto towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114400", "images": ["AURORA/data/something/frames/176966/first.jpg", "AURORA/data/something/frames/176966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pot in front of a bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114401", "images": ["AURORA/data/something/frames/27803/first.jpg", "AURORA/data/something/frames/27803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into thermocol"}, {"from": "gpt", "value": ""}]} +{"id": "000000114402", "images": ["AURORA/data/something/frames/188665/first.jpg", "AURORA/data/something/frames/188665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling aim toothpaste from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114403", "images": ["AURORA/data/something/frames/60845/first.jpg", "AURORA/data/something/frames/60845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a bandana"}, {"from": "gpt", "value": ""}]} +{"id": "000000114404", "images": ["AURORA/data/something/frames/98297/first.jpg", "AURORA/data/something/frames/98297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114405", "images": ["AURORA/data/something/frames/23998/first.jpg", "AURORA/data/something/frames/23998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114406", "images": ["AURORA/data/something/frames/31706/first.jpg", "AURORA/data/something/frames/31706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114407", "images": ["AURORA/data/something/frames/90617/first.jpg", "AURORA/data/something/frames/90617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114408", "images": ["AURORA/data/something/frames/151706/first.jpg", "AURORA/data/something/frames/151706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing notebook from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114409", "images": ["AURORA/data/something/frames/102321/first.jpg", "AURORA/data/something/frames/102321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114410", "images": ["AURORA/data/something/frames/98828/first.jpg", "AURORA/data/something/frames/98828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying sketch pen in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114411", "images": ["AURORA/data/something/frames/114264/first.jpg", "AURORA/data/something/frames/114264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting perfume bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114412", "images": ["AURORA/data/something/frames/81162/first.jpg", "AURORA/data/something/frames/81162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114413", "images": ["AURORA/data/something/frames/9895/first.jpg", "AURORA/data/something/frames/9895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114414", "images": ["AURORA/data/something/frames/75835/first.jpg", "AURORA/data/something/frames/75835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote on the edge of mug so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114415", "images": ["AURORA/data/something/frames/19106/first.jpg", "AURORA/data/something/frames/19106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a mug with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114416", "images": ["AURORA/data/something/frames/219046/first.jpg", "AURORA/data/something/frames/219046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a book with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114417", "images": ["AURORA/data/something/frames/10186/first.jpg", "AURORA/data/something/frames/10186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keychain onto basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114418", "images": ["AURORA/data/something/frames/22283/first.jpg", "AURORA/data/something/frames/22283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping towel onto toilet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114419", "images": ["AURORA/data/something/frames/114842/first.jpg", "AURORA/data/something/frames/114842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and hat closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114420", "images": ["AURORA/data/something/frames/11386/first.jpg", "AURORA/data/something/frames/11386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ice cream up with an ice-cream scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114421", "images": ["AURORA/data/something/frames/14117/first.jpg", "AURORA/data/something/frames/14117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking number of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000114422", "images": ["AURORA/data/something/frames/44811/first.jpg", "AURORA/data/something/frames/44811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange bowl from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114423", "images": ["AURORA/data/something/frames/100240/first.jpg", "AURORA/data/something/frames/100240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into smarthphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114424", "images": ["AURORA/data/something/frames/106488/first.jpg", "AURORA/data/something/frames/106488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purple microfiber from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114425", "images": ["AURORA/data/something/frames/79991/first.jpg", "AURORA/data/something/frames/79991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and flower away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114426", "images": ["AURORA/data/something/frames/54766/first.jpg", "AURORA/data/something/frames/54766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking audio helmet so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114427", "images": ["AURORA/data/something/frames/17486/first.jpg", "AURORA/data/something/frames/17486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys away from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114428", "images": ["AURORA/data/something/frames/84373/first.jpg", "AURORA/data/something/frames/84373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with paper ball on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114429", "images": ["AURORA/data/something/frames/48351/first.jpg", "AURORA/data/something/frames/48351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114430", "images": ["AURORA/data/something/frames/33617/first.jpg", "AURORA/data/something/frames/33617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading crunchy peanut butter onto a cracker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114431", "images": ["AURORA/data/something/frames/16741/first.jpg", "AURORA/data/something/frames/16741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114432", "images": ["AURORA/data/something/frames/162607/first.jpg", "AURORA/data/something/frames/162607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling notecard out of purple container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114433", "images": ["AURORA/data/something/frames/218394/first.jpg", "AURORA/data/something/frames/218394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning flashlight upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114434", "images": ["AURORA/data/something/frames/12124/first.jpg", "AURORA/data/something/frames/12124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming eggplant"}, {"from": "gpt", "value": ""}]} +{"id": "000000114435", "images": ["AURORA/data/something/frames/106359/first.jpg", "AURORA/data/something/frames/106359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter and glass away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114436", "images": ["AURORA/data/something/frames/217625/first.jpg", "AURORA/data/something/frames/217625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a book so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114437", "images": ["AURORA/data/something/frames/138617/first.jpg", "AURORA/data/something/frames/138617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114438", "images": ["AURORA/data/something/frames/149864/first.jpg", "AURORA/data/something/frames/149864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spring up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114439", "images": ["AURORA/data/something/frames/201066/first.jpg", "AURORA/data/something/frames/201066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning marker pen upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114440", "images": ["AURORA/data/something/frames/85103/first.jpg", "AURORA/data/something/frames/85103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving one extreme of fan"}, {"from": "gpt", "value": ""}]} +{"id": "000000114441", "images": ["AURORA/data/something/frames/155980/first.jpg", "AURORA/data/something/frames/155980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114442", "images": ["AURORA/data/something/frames/218735/first.jpg", "AURORA/data/something/frames/218735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114443", "images": ["AURORA/data/something/frames/123665/first.jpg", "AURORA/data/something/frames/123665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand sanitizer, dental floss and nail polish on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114444", "images": ["AURORA/data/something/frames/113141/first.jpg", "AURORA/data/something/frames/113141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable and smarthphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114445", "images": ["AURORA/data/something/frames/93147/first.jpg", "AURORA/data/something/frames/93147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball behind chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114446", "images": ["AURORA/data/something/frames/27034/first.jpg", "AURORA/data/something/frames/27034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114447", "images": ["AURORA/data/something/frames/104677/first.jpg", "AURORA/data/something/frames/104677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottled pesto sauce from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114448", "images": ["AURORA/data/something/frames/209410/first.jpg", "AURORA/data/something/frames/209410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing striker coin into black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114449", "images": ["AURORA/data/something/frames/37244/first.jpg", "AURORA/data/something/frames/37244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of scrunchie so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000114450", "images": ["AURORA/data/something/frames/206488/first.jpg", "AURORA/data/something/frames/206488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114451", "images": ["AURORA/data/something/frames/182263/first.jpg", "AURORA/data/something/frames/182263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114452", "images": ["AURORA/data/something/frames/35323/first.jpg", "AURORA/data/something/frames/35323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114453", "images": ["AURORA/data/something/frames/191681/first.jpg", "AURORA/data/something/frames/191681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114454", "images": ["AURORA/data/something/frames/119331/first.jpg", "AURORA/data/something/frames/119331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000114455", "images": ["AURORA/data/something/frames/96407/first.jpg", "AURORA/data/something/frames/96407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114456", "images": ["AURORA/data/something/frames/174164/first.jpg", "AURORA/data/something/frames/174164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking camera from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114457", "images": ["AURORA/data/something/frames/39343/first.jpg", "AURORA/data/something/frames/39343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toy with bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114458", "images": ["AURORA/data/something/frames/46569/first.jpg", "AURORA/data/something/frames/46569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a container of rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000114459", "images": ["AURORA/data/something/frames/193729/first.jpg", "AURORA/data/something/frames/193729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114460", "images": ["AURORA/data/something/frames/32364/first.jpg", "AURORA/data/something/frames/32364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone on the edge of a tissue box so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114461", "images": ["AURORA/data/something/frames/192360/first.jpg", "AURORA/data/something/frames/192360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone closer to tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114462", "images": ["AURORA/data/something/frames/90565/first.jpg", "AURORA/data/something/frames/90565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pots"}, {"from": "gpt", "value": ""}]} +{"id": "000000114463", "images": ["AURORA/data/something/frames/98360/first.jpg", "AURORA/data/something/frames/98360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000114464", "images": ["AURORA/data/something/frames/150588/first.jpg", "AURORA/data/something/frames/150588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000114465", "images": ["AURORA/data/something/frames/179463/first.jpg", "AURORA/data/something/frames/179463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114466", "images": ["AURORA/data/something/frames/59662/first.jpg", "AURORA/data/something/frames/59662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing face wash so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114467", "images": ["AURORA/data/something/frames/89976/first.jpg", "AURORA/data/something/frames/89976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114468", "images": ["AURORA/data/something/frames/127957/first.jpg", "AURORA/data/something/frames/127957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114469", "images": ["AURORA/data/something/frames/34605/first.jpg", "AURORA/data/something/frames/34605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sock colliding with book and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114470", "images": ["AURORA/data/something/frames/178167/first.jpg", "AURORA/data/something/frames/178167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the glass so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114471", "images": ["AURORA/data/something/frames/45016/first.jpg", "AURORA/data/something/frames/45016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114472", "images": ["AURORA/data/something/frames/95252/first.jpg", "AURORA/data/something/frames/95252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar with candy over, so candy falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114473", "images": ["AURORA/data/something/frames/99389/first.jpg", "AURORA/data/something/frames/99389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114474", "images": ["AURORA/data/something/frames/77689/first.jpg", "AURORA/data/something/frames/77689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114475", "images": ["AURORA/data/something/frames/73338/first.jpg", "AURORA/data/something/frames/73338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114476", "images": ["AURORA/data/something/frames/107831/first.jpg", "AURORA/data/something/frames/107831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000114477", "images": ["AURORA/data/something/frames/27283/first.jpg", "AURORA/data/something/frames/27283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114478", "images": ["AURORA/data/something/frames/142880/first.jpg", "AURORA/data/something/frames/142880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114479", "images": ["AURORA/data/something/frames/168348/first.jpg", "AURORA/data/something/frames/168348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a mason jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114480", "images": ["AURORA/data/something/frames/202045/first.jpg", "AURORA/data/something/frames/202045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114481", "images": ["AURORA/data/something/frames/12985/first.jpg", "AURORA/data/something/frames/12985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clasp of charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000114482", "images": ["AURORA/data/something/frames/53836/first.jpg", "AURORA/data/something/frames/53836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a sock out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114483", "images": ["AURORA/data/something/frames/211095/first.jpg", "AURORA/data/something/frames/211095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a stuffed bob-omb up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114484", "images": ["AURORA/data/something/frames/17710/first.jpg", "AURORA/data/something/frames/17710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114485", "images": ["AURORA/data/something/frames/182063/first.jpg", "AURORA/data/something/frames/182063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114486", "images": ["AURORA/data/something/frames/34760/first.jpg", "AURORA/data/something/frames/34760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114487", "images": ["AURORA/data/something/frames/10243/first.jpg", "AURORA/data/something/frames/10243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing hat, revealing remote behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114488", "images": ["AURORA/data/something/frames/39742/first.jpg", "AURORA/data/something/frames/39742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114489", "images": ["AURORA/data/something/frames/161347/first.jpg", "AURORA/data/something/frames/161347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114490", "images": ["AURORA/data/something/frames/219147/first.jpg", "AURORA/data/something/frames/219147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning peanut butter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114491", "images": ["AURORA/data/something/frames/90324/first.jpg", "AURORA/data/something/frames/90324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dial of a telephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114492", "images": ["AURORA/data/something/frames/220446/first.jpg", "AURORA/data/something/frames/220446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114493", "images": ["AURORA/data/something/frames/28022/first.jpg", "AURORA/data/something/frames/28022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ring up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114494", "images": ["AURORA/data/something/frames/107399/first.jpg", "AURORA/data/something/frames/107399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114495", "images": ["AURORA/data/something/frames/173063/first.jpg", "AURORA/data/something/frames/173063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114496", "images": ["AURORA/data/something/frames/212832/first.jpg", "AURORA/data/something/frames/212832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114497", "images": ["AURORA/data/something/frames/126184/first.jpg", "AURORA/data/something/frames/126184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw nail upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114498", "images": ["AURORA/data/something/frames/23005/first.jpg", "AURORA/data/something/frames/23005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote in front of seal pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000114499", "images": ["AURORA/data/something/frames/179370/first.jpg", "AURORA/data/something/frames/179370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting board clip onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114500", "images": ["AURORA/data/something/frames/120436/first.jpg", "AURORA/data/something/frames/120436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an adapter into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114501", "images": ["AURORA/data/something/frames/170068/first.jpg", "AURORA/data/something/frames/170068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114502", "images": ["AURORA/data/something/frames/97562/first.jpg", "AURORA/data/something/frames/97562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a table with more pens on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114503", "images": ["AURORA/data/something/frames/66519/first.jpg", "AURORA/data/something/frames/66519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114504", "images": ["AURORA/data/something/frames/71457/first.jpg", "AURORA/data/something/frames/71457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tub upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114505", "images": ["AURORA/data/something/frames/84869/first.jpg", "AURORA/data/something/frames/84869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping duster onto cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114506", "images": ["AURORA/data/something/frames/70226/first.jpg", "AURORA/data/something/frames/70226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114507", "images": ["AURORA/data/something/frames/147043/first.jpg", "AURORA/data/something/frames/147043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tuperware with playdoh on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114508", "images": ["AURORA/data/something/frames/57470/first.jpg", "AURORA/data/something/frames/57470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing table lamp so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114509", "images": ["AURORA/data/something/frames/103915/first.jpg", "AURORA/data/something/frames/103915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors, glasses and phone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114510", "images": ["AURORA/data/something/frames/159492/first.jpg", "AURORA/data/something/frames/159492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114511", "images": ["AURORA/data/something/frames/51057/first.jpg", "AURORA/data/something/frames/51057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114512", "images": ["AURORA/data/something/frames/148642/first.jpg", "AURORA/data/something/frames/148642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking yarn out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114513", "images": ["AURORA/data/something/frames/88064/first.jpg", "AURORA/data/something/frames/88064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a wallet with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114514", "images": ["AURORA/data/something/frames/32417/first.jpg", "AURORA/data/something/frames/32417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying lotion on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114515", "images": ["AURORA/data/something/frames/41929/first.jpg", "AURORA/data/something/frames/41929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cufflinks closer to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114516", "images": ["AURORA/data/something/frames/186552/first.jpg", "AURORA/data/something/frames/186552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: somethimg with colliding with something and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114517", "images": ["AURORA/data/something/frames/179178/first.jpg", "AURORA/data/something/frames/179178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the top of a block"}, {"from": "gpt", "value": ""}]} +{"id": "000000114518", "images": ["AURORA/data/something/frames/38318/first.jpg", "AURORA/data/something/frames/38318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a smartphone with a hoodie"}, {"from": "gpt", "value": ""}]} +{"id": "000000114519", "images": ["AURORA/data/something/frames/30636/first.jpg", "AURORA/data/something/frames/30636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking receipts from a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114520", "images": ["AURORA/data/something/frames/24744/first.jpg", "AURORA/data/something/frames/24744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114521", "images": ["AURORA/data/something/frames/47530/first.jpg", "AURORA/data/something/frames/47530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114522", "images": ["AURORA/data/something/frames/157057/first.jpg", "AURORA/data/something/frames/157057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a doll upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114523", "images": ["AURORA/data/something/frames/162969/first.jpg", "AURORA/data/something/frames/162969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging glade plugin into electrical wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114524", "images": ["AURORA/data/something/frames/4516/first.jpg", "AURORA/data/something/frames/4516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114525", "images": ["AURORA/data/something/frames/151103/first.jpg", "AURORA/data/something/frames/151103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stopper of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114526", "images": ["AURORA/data/something/frames/91945/first.jpg", "AURORA/data/something/frames/91945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tissue out of a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114527", "images": ["AURORA/data/something/frames/82216/first.jpg", "AURORA/data/something/frames/82216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into ballone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114528", "images": ["AURORA/data/something/frames/35803/first.jpg", "AURORA/data/something/frames/35803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car closer to duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000114529", "images": ["AURORA/data/something/frames/214571/first.jpg", "AURORA/data/something/frames/214571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting paper with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114530", "images": ["AURORA/data/something/frames/166004/first.jpg", "AURORA/data/something/frames/166004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering popcorn"}, {"from": "gpt", "value": ""}]} +{"id": "000000114531", "images": ["AURORA/data/something/frames/166506/first.jpg", "AURORA/data/something/frames/166506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a ribbon"}, {"from": "gpt", "value": ""}]} +{"id": "000000114532", "images": ["AURORA/data/something/frames/125224/first.jpg", "AURORA/data/something/frames/125224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114533", "images": ["AURORA/data/something/frames/70178/first.jpg", "AURORA/data/something/frames/70178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar underneath box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114534", "images": ["AURORA/data/something/frames/81605/first.jpg", "AURORA/data/something/frames/81605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114535", "images": ["AURORA/data/something/frames/202634/first.jpg", "AURORA/data/something/frames/202634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114536", "images": ["AURORA/data/something/frames/36498/first.jpg", "AURORA/data/something/frames/36498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114537", "images": ["AURORA/data/something/frames/95347/first.jpg", "AURORA/data/something/frames/95347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving orange colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114538", "images": ["AURORA/data/something/frames/141921/first.jpg", "AURORA/data/something/frames/141921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114539", "images": ["AURORA/data/something/frames/157421/first.jpg", "AURORA/data/something/frames/157421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and flashlight away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114540", "images": ["AURORA/data/something/frames/136438/first.jpg", "AURORA/data/something/frames/136438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing letter into envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114541", "images": ["AURORA/data/something/frames/69106/first.jpg", "AURORA/data/something/frames/69106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000114542", "images": ["AURORA/data/something/frames/89927/first.jpg", "AURORA/data/something/frames/89927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bolt closer to white badge"}, {"from": "gpt", "value": ""}]} +{"id": "000000114543", "images": ["AURORA/data/something/frames/18055/first.jpg", "AURORA/data/something/frames/18055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting two seashells onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114544", "images": ["AURORA/data/something/frames/54459/first.jpg", "AURORA/data/something/frames/54459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000114545", "images": ["AURORA/data/something/frames/156966/first.jpg", "AURORA/data/something/frames/156966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a smartphone with a tissu"}, {"from": "gpt", "value": ""}]} +{"id": "000000114546", "images": ["AURORA/data/something/frames/51754/first.jpg", "AURORA/data/something/frames/51754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114547", "images": ["AURORA/data/something/frames/169306/first.jpg", "AURORA/data/something/frames/169306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wipes into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114548", "images": ["AURORA/data/something/frames/35963/first.jpg", "AURORA/data/something/frames/35963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114549", "images": ["AURORA/data/something/frames/27926/first.jpg", "AURORA/data/something/frames/27926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging microwave into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114550", "images": ["AURORA/data/something/frames/88984/first.jpg", "AURORA/data/something/frames/88984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg next to a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114551", "images": ["AURORA/data/something/frames/67762/first.jpg", "AURORA/data/something/frames/67762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling piece of paper onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114552", "images": ["AURORA/data/something/frames/14715/first.jpg", "AURORA/data/something/frames/14715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a notebook from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114553", "images": ["AURORA/data/something/frames/190769/first.jpg", "AURORA/data/something/frames/190769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting kolleg block on the edge of table edge so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114554", "images": ["AURORA/data/something/frames/180630/first.jpg", "AURORA/data/something/frames/180630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114555", "images": ["AURORA/data/something/frames/50391/first.jpg", "AURORA/data/something/frames/50391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notebook page just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114556", "images": ["AURORA/data/something/frames/181556/first.jpg", "AURORA/data/something/frames/181556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114557", "images": ["AURORA/data/something/frames/82674/first.jpg", "AURORA/data/something/frames/82674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving knife down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114558", "images": ["AURORA/data/something/frames/114865/first.jpg", "AURORA/data/something/frames/114865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000114559", "images": ["AURORA/data/something/frames/99808/first.jpg", "AURORA/data/something/frames/99808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow ball into orange bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114560", "images": ["AURORA/data/something/frames/55871/first.jpg", "AURORA/data/something/frames/55871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing chair with leg"}, {"from": "gpt", "value": ""}]} +{"id": "000000114561", "images": ["AURORA/data/something/frames/181882/first.jpg", "AURORA/data/something/frames/181882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114562", "images": ["AURORA/data/something/frames/79534/first.jpg", "AURORA/data/something/frames/79534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing world globe from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114563", "images": ["AURORA/data/something/frames/10049/first.jpg", "AURORA/data/something/frames/10049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a ring being deflected from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114564", "images": ["AURORA/data/something/frames/73207/first.jpg", "AURORA/data/something/frames/73207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering vicks vapourb with bedsheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114565", "images": ["AURORA/data/something/frames/17914/first.jpg", "AURORA/data/something/frames/17914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cooking pot with its cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000114566", "images": ["AURORA/data/something/frames/146642/first.jpg", "AURORA/data/something/frames/146642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000114567", "images": ["AURORA/data/something/frames/19431/first.jpg", "AURORA/data/something/frames/19431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing crayon behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114568", "images": ["AURORA/data/something/frames/23541/first.jpg", "AURORA/data/something/frames/23541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114569", "images": ["AURORA/data/something/frames/92682/first.jpg", "AURORA/data/something/frames/92682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a container with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000114570", "images": ["AURORA/data/something/frames/149208/first.jpg", "AURORA/data/something/frames/149208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114571", "images": ["AURORA/data/something/frames/31880/first.jpg", "AURORA/data/something/frames/31880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book closer to light switch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114572", "images": ["AURORA/data/something/frames/67044/first.jpg", "AURORA/data/something/frames/67044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114573", "images": ["AURORA/data/something/frames/162803/first.jpg", "AURORA/data/something/frames/162803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bottle with a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114574", "images": ["AURORA/data/something/frames/81991/first.jpg", "AURORA/data/something/frames/81991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114575", "images": ["AURORA/data/something/frames/173301/first.jpg", "AURORA/data/something/frames/173301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114576", "images": ["AURORA/data/something/frames/40471/first.jpg", "AURORA/data/something/frames/40471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114577", "images": ["AURORA/data/something/frames/148120/first.jpg", "AURORA/data/something/frames/148120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing laminated paper mat just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114578", "images": ["AURORA/data/something/frames/17198/first.jpg", "AURORA/data/something/frames/17198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114579", "images": ["AURORA/data/something/frames/91199/first.jpg", "AURORA/data/something/frames/91199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duct tape and duct tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114580", "images": ["AURORA/data/something/frames/108163/first.jpg", "AURORA/data/something/frames/108163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114581", "images": ["AURORA/data/something/frames/167457/first.jpg", "AURORA/data/something/frames/167457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spring onto wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114582", "images": ["AURORA/data/something/frames/125741/first.jpg", "AURORA/data/something/frames/125741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling aim toothpaste from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114583", "images": ["AURORA/data/something/frames/47229/first.jpg", "AURORA/data/something/frames/47229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 children's books"}, {"from": "gpt", "value": ""}]} +{"id": "000000114584", "images": ["AURORA/data/something/frames/44824/first.jpg", "AURORA/data/something/frames/44824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114585", "images": ["AURORA/data/something/frames/2528/first.jpg", "AURORA/data/something/frames/2528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114586", "images": ["AURORA/data/something/frames/100049/first.jpg", "AURORA/data/something/frames/100049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000114587", "images": ["AURORA/data/something/frames/154011/first.jpg", "AURORA/data/something/frames/154011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jbl onto chewing gums so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114588", "images": ["AURORA/data/something/frames/218064/first.jpg", "AURORA/data/something/frames/218064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into steel glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114589", "images": ["AURORA/data/something/frames/147548/first.jpg", "AURORA/data/something/frames/147548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving medicine up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114590", "images": ["AURORA/data/something/frames/126970/first.jpg", "AURORA/data/something/frames/126970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114591", "images": ["AURORA/data/something/frames/184282/first.jpg", "AURORA/data/something/frames/184282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering gear wheel with red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114592", "images": ["AURORA/data/something/frames/21639/first.jpg", "AURORA/data/something/frames/21639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114593", "images": ["AURORA/data/something/frames/130777/first.jpg", "AURORA/data/something/frames/130777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending book so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114594", "images": ["AURORA/data/something/frames/83348/first.jpg", "AURORA/data/something/frames/83348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114595", "images": ["AURORA/data/something/frames/102659/first.jpg", "AURORA/data/something/frames/102659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pink toothbrush case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114596", "images": ["AURORA/data/something/frames/151821/first.jpg", "AURORA/data/something/frames/151821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114597", "images": ["AURORA/data/something/frames/18963/first.jpg", "AURORA/data/something/frames/18963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114598", "images": ["AURORA/data/something/frames/158112/first.jpg", "AURORA/data/something/frames/158112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving display of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114599", "images": ["AURORA/data/something/frames/107539/first.jpg", "AURORA/data/something/frames/107539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114600", "images": ["AURORA/data/something/frames/61772/first.jpg", "AURORA/data/something/frames/61772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic-cover into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114601", "images": ["AURORA/data/something/frames/168176/first.jpg", "AURORA/data/something/frames/168176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114602", "images": ["AURORA/data/something/frames/138772/first.jpg", "AURORA/data/something/frames/138772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114603", "images": ["AURORA/data/something/frames/188691/first.jpg", "AURORA/data/something/frames/188691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000114604", "images": ["AURORA/data/something/frames/104364/first.jpg", "AURORA/data/something/frames/104364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114605", "images": ["AURORA/data/something/frames/48691/first.jpg", "AURORA/data/something/frames/48691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking buttons"}, {"from": "gpt", "value": ""}]} +{"id": "000000114606", "images": ["AURORA/data/something/frames/128053/first.jpg", "AURORA/data/something/frames/128053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sandal behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114607", "images": ["AURORA/data/something/frames/180082/first.jpg", "AURORA/data/something/frames/180082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114608", "images": ["AURORA/data/something/frames/203884/first.jpg", "AURORA/data/something/frames/203884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking deoderant so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114609", "images": ["AURORA/data/something/frames/142226/first.jpg", "AURORA/data/something/frames/142226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying videotape on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114610", "images": ["AURORA/data/something/frames/116507/first.jpg", "AURORA/data/something/frames/116507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114611", "images": ["AURORA/data/something/frames/48879/first.jpg", "AURORA/data/something/frames/48879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching credit card to black box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114612", "images": ["AURORA/data/something/frames/168268/first.jpg", "AURORA/data/something/frames/168268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114613", "images": ["AURORA/data/something/frames/99986/first.jpg", "AURORA/data/something/frames/99986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing one tealight candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114614", "images": ["AURORA/data/something/frames/95507/first.jpg", "AURORA/data/something/frames/95507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sponge out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114615", "images": ["AURORA/data/something/frames/127081/first.jpg", "AURORA/data/something/frames/127081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114616", "images": ["AURORA/data/something/frames/58717/first.jpg", "AURORA/data/something/frames/58717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000114617", "images": ["AURORA/data/something/frames/10070/first.jpg", "AURORA/data/something/frames/10070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an usb from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114618", "images": ["AURORA/data/something/frames/132053/first.jpg", "AURORA/data/something/frames/132053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bag, revealing a hair brush behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114619", "images": ["AURORA/data/something/frames/209637/first.jpg", "AURORA/data/something/frames/209637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning metal box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114620", "images": ["AURORA/data/something/frames/161288/first.jpg", "AURORA/data/something/frames/161288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lead out of a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114621", "images": ["AURORA/data/something/frames/199341/first.jpg", "AURORA/data/something/frames/199341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000114622", "images": ["AURORA/data/something/frames/197866/first.jpg", "AURORA/data/something/frames/197866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a salt shaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114623", "images": ["AURORA/data/something/frames/7216/first.jpg", "AURORA/data/something/frames/7216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three pin plug onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114624", "images": ["AURORA/data/something/frames/46385/first.jpg", "AURORA/data/something/frames/46385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking gum"}, {"from": "gpt", "value": ""}]} +{"id": "000000114625", "images": ["AURORA/data/something/frames/20889/first.jpg", "AURORA/data/something/frames/20889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cooler in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114626", "images": ["AURORA/data/something/frames/51590/first.jpg", "AURORA/data/something/frames/51590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114627", "images": ["AURORA/data/something/frames/93983/first.jpg", "AURORA/data/something/frames/93983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114628", "images": ["AURORA/data/something/frames/74260/first.jpg", "AURORA/data/something/frames/74260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a paper without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114629", "images": ["AURORA/data/something/frames/70608/first.jpg", "AURORA/data/something/frames/70608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting letter into envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000114630", "images": ["AURORA/data/something/frames/129255/first.jpg", "AURORA/data/something/frames/129255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying plastic cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114631", "images": ["AURORA/data/something/frames/113920/first.jpg", "AURORA/data/something/frames/113920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bear behind chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114632", "images": ["AURORA/data/something/frames/140058/first.jpg", "AURORA/data/something/frames/140058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle behind dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114633", "images": ["AURORA/data/something/frames/30588/first.jpg", "AURORA/data/something/frames/30588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking water bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114634", "images": ["AURORA/data/something/frames/9632/first.jpg", "AURORA/data/something/frames/9632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning snack cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114635", "images": ["AURORA/data/something/frames/145219/first.jpg", "AURORA/data/something/frames/145219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering air conditioner and window from blinds"}, {"from": "gpt", "value": ""}]} +{"id": "000000114636", "images": ["AURORA/data/something/frames/127300/first.jpg", "AURORA/data/something/frames/127300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114637", "images": ["AURORA/data/something/frames/117154/first.jpg", "AURORA/data/something/frames/117154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching toothbrush to toothbrush handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114638", "images": ["AURORA/data/something/frames/198125/first.jpg", "AURORA/data/something/frames/198125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping black cloth into cookie box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114639", "images": ["AURORA/data/something/frames/148848/first.jpg", "AURORA/data/something/frames/148848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114640", "images": ["AURORA/data/something/frames/59360/first.jpg", "AURORA/data/something/frames/59360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottled ponzu sauce on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114641", "images": ["AURORA/data/something/frames/154998/first.jpg", "AURORA/data/something/frames/154998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114642", "images": ["AURORA/data/something/frames/98224/first.jpg", "AURORA/data/something/frames/98224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114643", "images": ["AURORA/data/something/frames/105459/first.jpg", "AURORA/data/something/frames/105459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling tomatoes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114644", "images": ["AURORA/data/something/frames/129939/first.jpg", "AURORA/data/something/frames/129939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114645", "images": ["AURORA/data/something/frames/152678/first.jpg", "AURORA/data/something/frames/152678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking biscuit pack up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114646", "images": ["AURORA/data/something/frames/171440/first.jpg", "AURORA/data/something/frames/171440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paper from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000114647", "images": ["AURORA/data/something/frames/75832/first.jpg", "AURORA/data/something/frames/75832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114648", "images": ["AURORA/data/something/frames/216150/first.jpg", "AURORA/data/something/frames/216150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114649", "images": ["AURORA/data/something/frames/173/first.jpg", "AURORA/data/something/frames/173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cup, revealing little cup behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114650", "images": ["AURORA/data/something/frames/142710/first.jpg", "AURORA/data/something/frames/142710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000114651", "images": ["AURORA/data/something/frames/177390/first.jpg", "AURORA/data/something/frames/177390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sandal from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114652", "images": ["AURORA/data/something/frames/180417/first.jpg", "AURORA/data/something/frames/180417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114653", "images": ["AURORA/data/something/frames/133190/first.jpg", "AURORA/data/something/frames/133190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending canela until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114654", "images": ["AURORA/data/something/frames/129845/first.jpg", "AURORA/data/something/frames/129845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a car toy colliding with a car toy and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114655", "images": ["AURORA/data/something/frames/4150/first.jpg", "AURORA/data/something/frames/4150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cough drop closer to cough drop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114656", "images": ["AURORA/data/something/frames/168946/first.jpg", "AURORA/data/something/frames/168946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 pens onto a black file"}, {"from": "gpt", "value": ""}]} +{"id": "000000114657", "images": ["AURORA/data/something/frames/153198/first.jpg", "AURORA/data/something/frames/153198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote control from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114658", "images": ["AURORA/data/something/frames/15914/first.jpg", "AURORA/data/something/frames/15914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a microphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114659", "images": ["AURORA/data/something/frames/24959/first.jpg", "AURORA/data/something/frames/24959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into slime"}, {"from": "gpt", "value": ""}]} +{"id": "000000114660", "images": ["AURORA/data/something/frames/22313/first.jpg", "AURORA/data/something/frames/22313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114661", "images": ["AURORA/data/something/frames/85601/first.jpg", "AURORA/data/something/frames/85601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker among other markers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114662", "images": ["AURORA/data/something/frames/12584/first.jpg", "AURORA/data/something/frames/12584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting raw chicken meat into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114663", "images": ["AURORA/data/something/frames/112614/first.jpg", "AURORA/data/something/frames/112614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a fake flower so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114664", "images": ["AURORA/data/something/frames/53979/first.jpg", "AURORA/data/something/frames/53979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging egg out of salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114665", "images": ["AURORA/data/something/frames/122190/first.jpg", "AURORA/data/something/frames/122190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114666", "images": ["AURORA/data/something/frames/72519/first.jpg", "AURORA/data/something/frames/72519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114667", "images": ["AURORA/data/something/frames/44385/first.jpg", "AURORA/data/something/frames/44385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114668", "images": ["AURORA/data/something/frames/209009/first.jpg", "AURORA/data/something/frames/209009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000114669", "images": ["AURORA/data/something/frames/197171/first.jpg", "AURORA/data/something/frames/197171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper note"}, {"from": "gpt", "value": ""}]} +{"id": "000000114670", "images": ["AURORA/data/something/frames/138590/first.jpg", "AURORA/data/something/frames/138590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting washing machine nob"}, {"from": "gpt", "value": ""}]} +{"id": "000000114671", "images": ["AURORA/data/something/frames/160183/first.jpg", "AURORA/data/something/frames/160183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000114672", "images": ["AURORA/data/something/frames/208727/first.jpg", "AURORA/data/something/frames/208727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scissors colliding with a book and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114673", "images": ["AURORA/data/something/frames/167036/first.jpg", "AURORA/data/something/frames/167036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying coin in flour"}, {"from": "gpt", "value": ""}]} +{"id": "000000114674", "images": ["AURORA/data/something/frames/132274/first.jpg", "AURORA/data/something/frames/132274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping purse onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114675", "images": ["AURORA/data/something/frames/186560/first.jpg", "AURORA/data/something/frames/186560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114676", "images": ["AURORA/data/something/frames/205127/first.jpg", "AURORA/data/something/frames/205127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114677", "images": ["AURORA/data/something/frames/41075/first.jpg", "AURORA/data/something/frames/41075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114678", "images": ["AURORA/data/something/frames/141065/first.jpg", "AURORA/data/something/frames/141065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114679", "images": ["AURORA/data/something/frames/122659/first.jpg", "AURORA/data/something/frames/122659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sponge into a plastic bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114680", "images": ["AURORA/data/something/frames/149624/first.jpg", "AURORA/data/something/frames/149624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball next to airplane"}, {"from": "gpt", "value": ""}]} +{"id": "000000114681", "images": ["AURORA/data/something/frames/52276/first.jpg", "AURORA/data/something/frames/52276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 plastic bags onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114682", "images": ["AURORA/data/something/frames/52698/first.jpg", "AURORA/data/something/frames/52698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of a board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114683", "images": ["AURORA/data/something/frames/197127/first.jpg", "AURORA/data/something/frames/197127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork onto napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114684", "images": ["AURORA/data/something/frames/35637/first.jpg", "AURORA/data/something/frames/35637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling plates up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114685", "images": ["AURORA/data/something/frames/3362/first.jpg", "AURORA/data/something/frames/3362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the bottle next to the bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114686", "images": ["AURORA/data/something/frames/59046/first.jpg", "AURORA/data/something/frames/59046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114687", "images": ["AURORA/data/something/frames/72309/first.jpg", "AURORA/data/something/frames/72309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming red watch box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114688", "images": ["AURORA/data/something/frames/180295/first.jpg", "AURORA/data/something/frames/180295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ruler and masking tape away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114689", "images": ["AURORA/data/something/frames/119434/first.jpg", "AURORA/data/something/frames/119434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114690", "images": ["AURORA/data/something/frames/218468/first.jpg", "AURORA/data/something/frames/218468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114691", "images": ["AURORA/data/something/frames/113071/first.jpg", "AURORA/data/something/frames/113071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving banana away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114692", "images": ["AURORA/data/something/frames/74976/first.jpg", "AURORA/data/something/frames/74976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cloth onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000114693", "images": ["AURORA/data/something/frames/70912/first.jpg", "AURORA/data/something/frames/70912/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with water over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114694", "images": ["AURORA/data/something/frames/192731/first.jpg", "AURORA/data/something/frames/192731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with watermelon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114695", "images": ["AURORA/data/something/frames/185188/first.jpg", "AURORA/data/something/frames/185188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a table tennis ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000114696", "images": ["AURORA/data/something/frames/165202/first.jpg", "AURORA/data/something/frames/165202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000114697", "images": ["AURORA/data/something/frames/45688/first.jpg", "AURORA/data/something/frames/45688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vessel onto mixer grinder"}, {"from": "gpt", "value": ""}]} +{"id": "000000114698", "images": ["AURORA/data/something/frames/131064/first.jpg", "AURORA/data/something/frames/131064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering books with bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114699", "images": ["AURORA/data/something/frames/208718/first.jpg", "AURORA/data/something/frames/208718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling headphones from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114700", "images": ["AURORA/data/something/frames/166394/first.jpg", "AURORA/data/something/frames/166394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000114701", "images": ["AURORA/data/something/frames/119685/first.jpg", "AURORA/data/something/frames/119685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000114702", "images": ["AURORA/data/something/frames/120454/first.jpg", "AURORA/data/something/frames/120454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114703", "images": ["AURORA/data/something/frames/106705/first.jpg", "AURORA/data/something/frames/106705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tubes into glass beaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000114704", "images": ["AURORA/data/something/frames/135039/first.jpg", "AURORA/data/something/frames/135039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing aim toothpaste from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114705", "images": ["AURORA/data/something/frames/92076/first.jpg", "AURORA/data/something/frames/92076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dry cells towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114706", "images": ["AURORA/data/something/frames/72066/first.jpg", "AURORA/data/something/frames/72066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114707", "images": ["AURORA/data/something/frames/77203/first.jpg", "AURORA/data/something/frames/77203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114708", "images": ["AURORA/data/something/frames/168603/first.jpg", "AURORA/data/something/frames/168603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting wallet with eraser on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114709", "images": ["AURORA/data/something/frames/117094/first.jpg", "AURORA/data/something/frames/117094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114710", "images": ["AURORA/data/something/frames/196391/first.jpg", "AURORA/data/something/frames/196391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of spoon without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114711", "images": ["AURORA/data/something/frames/48582/first.jpg", "AURORA/data/something/frames/48582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114712", "images": ["AURORA/data/something/frames/206735/first.jpg", "AURORA/data/something/frames/206735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing bottle, revealing sharpener behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000114713", "images": ["AURORA/data/something/frames/58090/first.jpg", "AURORA/data/something/frames/58090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging ethernet cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114714", "images": ["AURORA/data/something/frames/159174/first.jpg", "AURORA/data/something/frames/159174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114715", "images": ["AURORA/data/something/frames/20592/first.jpg", "AURORA/data/something/frames/20592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a sweet next to the other sweets"}, {"from": "gpt", "value": ""}]} +{"id": "000000114716", "images": ["AURORA/data/something/frames/105884/first.jpg", "AURORA/data/something/frames/105884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cardigan into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114717", "images": ["AURORA/data/something/frames/52424/first.jpg", "AURORA/data/something/frames/52424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000114718", "images": ["AURORA/data/something/frames/119087/first.jpg", "AURORA/data/something/frames/119087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pet food bowl with a flipflop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114719", "images": ["AURORA/data/something/frames/128515/first.jpg", "AURORA/data/something/frames/128515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a small container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114720", "images": ["AURORA/data/something/frames/90824/first.jpg", "AURORA/data/something/frames/90824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114721", "images": ["AURORA/data/something/frames/1369/first.jpg", "AURORA/data/something/frames/1369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114722", "images": ["AURORA/data/something/frames/176552/first.jpg", "AURORA/data/something/frames/176552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114723", "images": ["AURORA/data/something/frames/220724/first.jpg", "AURORA/data/something/frames/220724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114724", "images": ["AURORA/data/something/frames/212092/first.jpg", "AURORA/data/something/frames/212092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming hair comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114725", "images": ["AURORA/data/something/frames/10812/first.jpg", "AURORA/data/something/frames/10812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching head of pen to body of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114726", "images": ["AURORA/data/something/frames/35758/first.jpg", "AURORA/data/something/frames/35758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114727", "images": ["AURORA/data/something/frames/180205/first.jpg", "AURORA/data/something/frames/180205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000114728", "images": ["AURORA/data/something/frames/191949/first.jpg", "AURORA/data/something/frames/191949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys behind bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114729", "images": ["AURORA/data/something/frames/72263/first.jpg", "AURORA/data/something/frames/72263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a polythene bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114730", "images": ["AURORA/data/something/frames/213956/first.jpg", "AURORA/data/something/frames/213956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stapler next to pink hairclip"}, {"from": "gpt", "value": ""}]} +{"id": "000000114731", "images": ["AURORA/data/something/frames/170676/first.jpg", "AURORA/data/something/frames/170676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 sets of coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000114732", "images": ["AURORA/data/something/frames/188634/first.jpg", "AURORA/data/something/frames/188634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconut towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114733", "images": ["AURORA/data/something/frames/150744/first.jpg", "AURORA/data/something/frames/150744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming black remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000114734", "images": ["AURORA/data/something/frames/139784/first.jpg", "AURORA/data/something/frames/139784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting spoon with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114735", "images": ["AURORA/data/something/frames/81322/first.jpg", "AURORA/data/something/frames/81322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a textsurfer from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114736", "images": ["AURORA/data/something/frames/1152/first.jpg", "AURORA/data/something/frames/1152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000114737", "images": ["AURORA/data/something/frames/156929/first.jpg", "AURORA/data/something/frames/156929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one plastic cover of many similar plastic covers on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114738", "images": ["AURORA/data/something/frames/208363/first.jpg", "AURORA/data/something/frames/208363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto coffee table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114739", "images": ["AURORA/data/something/frames/136579/first.jpg", "AURORA/data/something/frames/136579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114740", "images": ["AURORA/data/something/frames/55300/first.jpg", "AURORA/data/something/frames/55300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plate from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114741", "images": ["AURORA/data/something/frames/213541/first.jpg", "AURORA/data/something/frames/213541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000114742", "images": ["AURORA/data/something/frames/77709/first.jpg", "AURORA/data/something/frames/77709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning notebook upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114743", "images": ["AURORA/data/something/frames/213228/first.jpg", "AURORA/data/something/frames/213228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114744", "images": ["AURORA/data/something/frames/77606/first.jpg", "AURORA/data/something/frames/77606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing dvd case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114745", "images": ["AURORA/data/something/frames/111708/first.jpg", "AURORA/data/something/frames/111708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114746", "images": ["AURORA/data/something/frames/135254/first.jpg", "AURORA/data/something/frames/135254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clothes peg into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114747", "images": ["AURORA/data/something/frames/118193/first.jpg", "AURORA/data/something/frames/118193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114748", "images": ["AURORA/data/something/frames/69206/first.jpg", "AURORA/data/something/frames/69206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking twine out of vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000114749", "images": ["AURORA/data/something/frames/138392/first.jpg", "AURORA/data/something/frames/138392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning paint bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114750", "images": ["AURORA/data/something/frames/164587/first.jpg", "AURORA/data/something/frames/164587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and ball so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114751", "images": ["AURORA/data/something/frames/112340/first.jpg", "AURORA/data/something/frames/112340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil underneath table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114752", "images": ["AURORA/data/something/frames/82514/first.jpg", "AURORA/data/something/frames/82514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto toast"}, {"from": "gpt", "value": ""}]} +{"id": "000000114753", "images": ["AURORA/data/something/frames/65790/first.jpg", "AURORA/data/something/frames/65790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114754", "images": ["AURORA/data/something/frames/213545/first.jpg", "AURORA/data/something/frames/213545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bus and box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114755", "images": ["AURORA/data/something/frames/168262/first.jpg", "AURORA/data/something/frames/168262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a small bear next to a large bear"}, {"from": "gpt", "value": ""}]} +{"id": "000000114756", "images": ["AURORA/data/something/frames/209459/first.jpg", "AURORA/data/something/frames/209459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing plastic spay so that it almost falls off but doesn't so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114757", "images": ["AURORA/data/something/frames/116945/first.jpg", "AURORA/data/something/frames/116945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cow with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000114758", "images": ["AURORA/data/something/frames/149395/first.jpg", "AURORA/data/something/frames/149395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114759", "images": ["AURORA/data/something/frames/175228/first.jpg", "AURORA/data/something/frames/175228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a tape with scissors on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114760", "images": ["AURORA/data/something/frames/206947/first.jpg", "AURORA/data/something/frames/206947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000114761", "images": ["AURORA/data/something/frames/187799/first.jpg", "AURORA/data/something/frames/187799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb closer to usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000114762", "images": ["AURORA/data/something/frames/36529/first.jpg", "AURORA/data/something/frames/36529/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking orange of many similar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114763", "images": ["AURORA/data/something/frames/217557/first.jpg", "AURORA/data/something/frames/217557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114764", "images": ["AURORA/data/something/frames/101365/first.jpg", "AURORA/data/something/frames/101365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114765", "images": ["AURORA/data/something/frames/117328/first.jpg", "AURORA/data/something/frames/117328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114766", "images": ["AURORA/data/something/frames/29999/first.jpg", "AURORA/data/something/frames/29999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114767", "images": ["AURORA/data/something/frames/197762/first.jpg", "AURORA/data/something/frames/197762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114768", "images": ["AURORA/data/something/frames/190494/first.jpg", "AURORA/data/something/frames/190494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a clothes hanger behind a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114769", "images": ["AURORA/data/something/frames/210975/first.jpg", "AURORA/data/something/frames/210975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the hand of a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000114770", "images": ["AURORA/data/something/frames/152209/first.jpg", "AURORA/data/something/frames/152209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114771", "images": ["AURORA/data/something/frames/186123/first.jpg", "AURORA/data/something/frames/186123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114772", "images": ["AURORA/data/something/frames/160477/first.jpg", "AURORA/data/something/frames/160477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000114773", "images": ["AURORA/data/something/frames/54893/first.jpg", "AURORA/data/something/frames/54893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling apple from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114774", "images": ["AURORA/data/something/frames/24879/first.jpg", "AURORA/data/something/frames/24879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sunscreen lotion from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114775", "images": ["AURORA/data/something/frames/209566/first.jpg", "AURORA/data/something/frames/209566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000114776", "images": ["AURORA/data/something/frames/68946/first.jpg", "AURORA/data/something/frames/68946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing playdoh into its container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114777", "images": ["AURORA/data/something/frames/71563/first.jpg", "AURORA/data/something/frames/71563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange bowl from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114778", "images": ["AURORA/data/something/frames/17103/first.jpg", "AURORA/data/something/frames/17103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cup so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114779", "images": ["AURORA/data/something/frames/130178/first.jpg", "AURORA/data/something/frames/130178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jar from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114780", "images": ["AURORA/data/something/frames/40302/first.jpg", "AURORA/data/something/frames/40302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114781", "images": ["AURORA/data/something/frames/22114/first.jpg", "AURORA/data/something/frames/22114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114782", "images": ["AURORA/data/something/frames/149937/first.jpg", "AURORA/data/something/frames/149937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114783", "images": ["AURORA/data/something/frames/137056/first.jpg", "AURORA/data/something/frames/137056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114784", "images": ["AURORA/data/something/frames/134687/first.jpg", "AURORA/data/something/frames/134687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114785", "images": ["AURORA/data/something/frames/216143/first.jpg", "AURORA/data/something/frames/216143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting big bottle in front of small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114786", "images": ["AURORA/data/something/frames/111536/first.jpg", "AURORA/data/something/frames/111536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching lid to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114787", "images": ["AURORA/data/something/frames/139019/first.jpg", "AURORA/data/something/frames/139019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling torch from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114788", "images": ["AURORA/data/something/frames/184666/first.jpg", "AURORA/data/something/frames/184666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114789", "images": ["AURORA/data/something/frames/161732/first.jpg", "AURORA/data/something/frames/161732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114790", "images": ["AURORA/data/something/frames/135024/first.jpg", "AURORA/data/something/frames/135024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching a window with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114791", "images": ["AURORA/data/something/frames/55380/first.jpg", "AURORA/data/something/frames/55380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving one leg of the doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000114792", "images": ["AURORA/data/something/frames/23536/first.jpg", "AURORA/data/something/frames/23536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air freshener into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114793", "images": ["AURORA/data/something/frames/169687/first.jpg", "AURORA/data/something/frames/169687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114794", "images": ["AURORA/data/something/frames/197143/first.jpg", "AURORA/data/something/frames/197143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball point pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114795", "images": ["AURORA/data/something/frames/33250/first.jpg", "AURORA/data/something/frames/33250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114796", "images": ["AURORA/data/something/frames/60656/first.jpg", "AURORA/data/something/frames/60656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114797", "images": ["AURORA/data/something/frames/60129/first.jpg", "AURORA/data/something/frames/60129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping blocks over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114798", "images": ["AURORA/data/something/frames/132850/first.jpg", "AURORA/data/something/frames/132850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114799", "images": ["AURORA/data/something/frames/104025/first.jpg", "AURORA/data/something/frames/104025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000114800", "images": ["AURORA/data/something/frames/111120/first.jpg", "AURORA/data/something/frames/111120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a battery on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114801", "images": ["AURORA/data/something/frames/3020/first.jpg", "AURORA/data/something/frames/3020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning duster upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114802", "images": ["AURORA/data/something/frames/174759/first.jpg", "AURORA/data/something/frames/174759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000114803", "images": ["AURORA/data/something/frames/214066/first.jpg", "AURORA/data/something/frames/214066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming motorbike"}, {"from": "gpt", "value": ""}]} +{"id": "000000114804", "images": ["AURORA/data/something/frames/4804/first.jpg", "AURORA/data/something/frames/4804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red marker pen off of blue marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114805", "images": ["AURORA/data/something/frames/91009/first.jpg", "AURORA/data/something/frames/91009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing knife from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114806", "images": ["AURORA/data/something/frames/33831/first.jpg", "AURORA/data/something/frames/33831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and spool of thread on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114807", "images": ["AURORA/data/something/frames/14097/first.jpg", "AURORA/data/something/frames/14097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114808", "images": ["AURORA/data/something/frames/104073/first.jpg", "AURORA/data/something/frames/104073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a wallet onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114809", "images": ["AURORA/data/something/frames/195051/first.jpg", "AURORA/data/something/frames/195051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114810", "images": ["AURORA/data/something/frames/50872/first.jpg", "AURORA/data/something/frames/50872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling powdered sugar onto a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114811", "images": ["AURORA/data/something/frames/152479/first.jpg", "AURORA/data/something/frames/152479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling beaker onto phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114812", "images": ["AURORA/data/something/frames/77221/first.jpg", "AURORA/data/something/frames/77221/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114813", "images": ["AURORA/data/something/frames/83168/first.jpg", "AURORA/data/something/frames/83168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000114814", "images": ["AURORA/data/something/frames/5294/first.jpg", "AURORA/data/something/frames/5294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving opener of water tap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114815", "images": ["AURORA/data/something/frames/122810/first.jpg", "AURORA/data/something/frames/122810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114816", "images": ["AURORA/data/something/frames/78056/first.jpg", "AURORA/data/something/frames/78056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pizza cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114817", "images": ["AURORA/data/something/frames/172666/first.jpg", "AURORA/data/something/frames/172666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000114818", "images": ["AURORA/data/something/frames/77125/first.jpg", "AURORA/data/something/frames/77125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cushion across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114819", "images": ["AURORA/data/something/frames/109443/first.jpg", "AURORA/data/something/frames/109443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking peanut butter jar from cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114820", "images": ["AURORA/data/something/frames/99271/first.jpg", "AURORA/data/something/frames/99271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto concrete"}, {"from": "gpt", "value": ""}]} +{"id": "000000114821", "images": ["AURORA/data/something/frames/9119/first.jpg", "AURORA/data/something/frames/9119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing powerbank so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114822", "images": ["AURORA/data/something/frames/15657/first.jpg", "AURORA/data/something/frames/15657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114823", "images": ["AURORA/data/something/frames/177671/first.jpg", "AURORA/data/something/frames/177671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114824", "images": ["AURORA/data/something/frames/137138/first.jpg", "AURORA/data/something/frames/137138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking waterbottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114825", "images": ["AURORA/data/something/frames/149534/first.jpg", "AURORA/data/something/frames/149534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000114826", "images": ["AURORA/data/something/frames/107036/first.jpg", "AURORA/data/something/frames/107036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting memory card reader and memory card on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114827", "images": ["AURORA/data/something/frames/94632/first.jpg", "AURORA/data/something/frames/94632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black hairclip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114828", "images": ["AURORA/data/something/frames/51607/first.jpg", "AURORA/data/something/frames/51607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling blocks onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114829", "images": ["AURORA/data/something/frames/77531/first.jpg", "AURORA/data/something/frames/77531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphone into cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114830", "images": ["AURORA/data/something/frames/37029/first.jpg", "AURORA/data/something/frames/37029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114831", "images": ["AURORA/data/something/frames/5705/first.jpg", "AURORA/data/something/frames/5705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114832", "images": ["AURORA/data/something/frames/69854/first.jpg", "AURORA/data/something/frames/69854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic screwcap into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114833", "images": ["AURORA/data/something/frames/98419/first.jpg", "AURORA/data/something/frames/98419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000114834", "images": ["AURORA/data/something/frames/122060/first.jpg", "AURORA/data/something/frames/122060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a shoulder bag onto a globe which cant support it so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114835", "images": ["AURORA/data/something/frames/142936/first.jpg", "AURORA/data/something/frames/142936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cell phone with water bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114836", "images": ["AURORA/data/something/frames/154128/first.jpg", "AURORA/data/something/frames/154128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming phone case"}, {"from": "gpt", "value": ""}]} +{"id": "000000114837", "images": ["AURORA/data/something/frames/203286/first.jpg", "AURORA/data/something/frames/203286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114838", "images": ["AURORA/data/something/frames/130446/first.jpg", "AURORA/data/something/frames/130446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking leaves out of tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000114839", "images": ["AURORA/data/something/frames/8713/first.jpg", "AURORA/data/something/frames/8713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging light into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114840", "images": ["AURORA/data/something/frames/29583/first.jpg", "AURORA/data/something/frames/29583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114841", "images": ["AURORA/data/something/frames/114907/first.jpg", "AURORA/data/something/frames/114907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) face cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114842", "images": ["AURORA/data/something/frames/122534/first.jpg", "AURORA/data/something/frames/122534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000114843", "images": ["AURORA/data/something/frames/178054/first.jpg", "AURORA/data/something/frames/178054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jacket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114844", "images": ["AURORA/data/something/frames/88039/first.jpg", "AURORA/data/something/frames/88039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping orange juice off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000114845", "images": ["AURORA/data/something/frames/26289/first.jpg", "AURORA/data/something/frames/26289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet and knife closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114846", "images": ["AURORA/data/something/frames/42581/first.jpg", "AURORA/data/something/frames/42581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing torch with dvd case"}, {"from": "gpt", "value": ""}]} +{"id": "000000114847", "images": ["AURORA/data/something/frames/189936/first.jpg", "AURORA/data/something/frames/189936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114848", "images": ["AURORA/data/something/frames/190899/first.jpg", "AURORA/data/something/frames/190899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114849", "images": ["AURORA/data/something/frames/198683/first.jpg", "AURORA/data/something/frames/198683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114850", "images": ["AURORA/data/something/frames/121290/first.jpg", "AURORA/data/something/frames/121290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tape measure up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114851", "images": ["AURORA/data/something/frames/172087/first.jpg", "AURORA/data/something/frames/172087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hairband from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114852", "images": ["AURORA/data/something/frames/102830/first.jpg", "AURORA/data/something/frames/102830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping hand soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114853", "images": ["AURORA/data/something/frames/192399/first.jpg", "AURORA/data/something/frames/192399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on the edge of glass so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114854", "images": ["AURORA/data/something/frames/60988/first.jpg", "AURORA/data/something/frames/60988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114855", "images": ["AURORA/data/something/frames/202588/first.jpg", "AURORA/data/something/frames/202588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114856", "images": ["AURORA/data/something/frames/123956/first.jpg", "AURORA/data/something/frames/123956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toy idol"}, {"from": "gpt", "value": ""}]} +{"id": "000000114857", "images": ["AURORA/data/something/frames/21338/first.jpg", "AURORA/data/something/frames/21338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000114858", "images": ["AURORA/data/something/frames/177974/first.jpg", "AURORA/data/something/frames/177974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and remote away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114859", "images": ["AURORA/data/something/frames/212414/first.jpg", "AURORA/data/something/frames/212414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bucket until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114860", "images": ["AURORA/data/something/frames/114562/first.jpg", "AURORA/data/something/frames/114562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup closer to a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114861", "images": ["AURORA/data/something/frames/13902/first.jpg", "AURORA/data/something/frames/13902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming soft drink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114862", "images": ["AURORA/data/something/frames/112743/first.jpg", "AURORA/data/something/frames/112743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting toys"}, {"from": "gpt", "value": ""}]} +{"id": "000000114863", "images": ["AURORA/data/something/frames/204602/first.jpg", "AURORA/data/something/frames/204602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cellphone behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114864", "images": ["AURORA/data/something/frames/192223/first.jpg", "AURORA/data/something/frames/192223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ball and glass sheaker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114865", "images": ["AURORA/data/something/frames/215032/first.jpg", "AURORA/data/something/frames/215032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering the ball with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114866", "images": ["AURORA/data/something/frames/139586/first.jpg", "AURORA/data/something/frames/139586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114867", "images": ["AURORA/data/something/frames/34302/first.jpg", "AURORA/data/something/frames/34302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114868", "images": ["AURORA/data/something/frames/5465/first.jpg", "AURORA/data/something/frames/5465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving led of thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000114869", "images": ["AURORA/data/something/frames/26587/first.jpg", "AURORA/data/something/frames/26587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glasses from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114870", "images": ["AURORA/data/something/frames/191023/first.jpg", "AURORA/data/something/frames/191023/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting usb cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000114871", "images": ["AURORA/data/something/frames/213594/first.jpg", "AURORA/data/something/frames/213594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering headphones with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114872", "images": ["AURORA/data/something/frames/182632/first.jpg", "AURORA/data/something/frames/182632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toothpick upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000114873", "images": ["AURORA/data/something/frames/106342/first.jpg", "AURORA/data/something/frames/106342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 board clips"}, {"from": "gpt", "value": ""}]} +{"id": "000000114874", "images": ["AURORA/data/something/frames/30918/first.jpg", "AURORA/data/something/frames/30918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tote bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114875", "images": ["AURORA/data/something/frames/122497/first.jpg", "AURORA/data/something/frames/122497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a top off a drink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114876", "images": ["AURORA/data/something/frames/212046/first.jpg", "AURORA/data/something/frames/212046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114877", "images": ["AURORA/data/something/frames/163305/first.jpg", "AURORA/data/something/frames/163305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114878", "images": ["AURORA/data/something/frames/145268/first.jpg", "AURORA/data/something/frames/145268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000114879", "images": ["AURORA/data/something/frames/205521/first.jpg", "AURORA/data/something/frames/205521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery onto rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000114880", "images": ["AURORA/data/something/frames/4377/first.jpg", "AURORA/data/something/frames/4377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000114881", "images": ["AURORA/data/something/frames/94528/first.jpg", "AURORA/data/something/frames/94528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming red booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114882", "images": ["AURORA/data/something/frames/27664/first.jpg", "AURORA/data/something/frames/27664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114883", "images": ["AURORA/data/something/frames/178765/first.jpg", "AURORA/data/something/frames/178765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114884", "images": ["AURORA/data/something/frames/5186/first.jpg", "AURORA/data/something/frames/5186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114885", "images": ["AURORA/data/something/frames/92574/first.jpg", "AURORA/data/something/frames/92574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114886", "images": ["AURORA/data/something/frames/39009/first.jpg", "AURORA/data/something/frames/39009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting lamp with finger"}, {"from": "gpt", "value": ""}]} +{"id": "000000114887", "images": ["AURORA/data/something/frames/131779/first.jpg", "AURORA/data/something/frames/131779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000114888", "images": ["AURORA/data/something/frames/12095/first.jpg", "AURORA/data/something/frames/12095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000114889", "images": ["AURORA/data/something/frames/204548/first.jpg", "AURORA/data/something/frames/204548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stapler with red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000114890", "images": ["AURORA/data/something/frames/63816/first.jpg", "AURORA/data/something/frames/63816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000114891", "images": ["AURORA/data/something/frames/149000/first.jpg", "AURORA/data/something/frames/149000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pc mouse closer to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000114892", "images": ["AURORA/data/something/frames/16293/first.jpg", "AURORA/data/something/frames/16293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into mobile but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114893", "images": ["AURORA/data/something/frames/13939/first.jpg", "AURORA/data/something/frames/13939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting globe and unicorn on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114894", "images": ["AURORA/data/something/frames/58579/first.jpg", "AURORA/data/something/frames/58579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick and usb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114895", "images": ["AURORA/data/something/frames/173824/first.jpg", "AURORA/data/something/frames/173824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors away from a sieve"}, {"from": "gpt", "value": ""}]} +{"id": "000000114896", "images": ["AURORA/data/something/frames/210365/first.jpg", "AURORA/data/something/frames/210365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a shoe with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000114897", "images": ["AURORA/data/something/frames/134457/first.jpg", "AURORA/data/something/frames/134457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114898", "images": ["AURORA/data/something/frames/134626/first.jpg", "AURORA/data/something/frames/134626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup away from a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114899", "images": ["AURORA/data/something/frames/60521/first.jpg", "AURORA/data/something/frames/60521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114900", "images": ["AURORA/data/something/frames/34095/first.jpg", "AURORA/data/something/frames/34095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking teddy bear up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114901", "images": ["AURORA/data/something/frames/194852/first.jpg", "AURORA/data/something/frames/194852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker onto santa hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000114902", "images": ["AURORA/data/something/frames/37956/first.jpg", "AURORA/data/something/frames/37956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting glasses with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114903", "images": ["AURORA/data/something/frames/188086/first.jpg", "AURORA/data/something/frames/188086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many similar"}, {"from": "gpt", "value": ""}]} +{"id": "000000114904", "images": ["AURORA/data/something/frames/142969/first.jpg", "AURORA/data/something/frames/142969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nail polish away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114905", "images": ["AURORA/data/something/frames/186642/first.jpg", "AURORA/data/something/frames/186642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000114906", "images": ["AURORA/data/something/frames/155756/first.jpg", "AURORA/data/something/frames/155756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114907", "images": ["AURORA/data/something/frames/146395/first.jpg", "AURORA/data/something/frames/146395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000114908", "images": ["AURORA/data/something/frames/133166/first.jpg", "AURORA/data/something/frames/133166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000114909", "images": ["AURORA/data/something/frames/104764/first.jpg", "AURORA/data/something/frames/104764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114910", "images": ["AURORA/data/something/frames/163103/first.jpg", "AURORA/data/something/frames/163103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing casual hat from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114911", "images": ["AURORA/data/something/frames/31361/first.jpg", "AURORA/data/something/frames/31361/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cd's up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114912", "images": ["AURORA/data/something/frames/36772/first.jpg", "AURORA/data/something/frames/36772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube in front of a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000114913", "images": ["AURORA/data/something/frames/94505/first.jpg", "AURORA/data/something/frames/94505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting the towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000114914", "images": ["AURORA/data/something/frames/145907/first.jpg", "AURORA/data/something/frames/145907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bracelet out of a jewelry box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114915", "images": ["AURORA/data/something/frames/23892/first.jpg", "AURORA/data/something/frames/23892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114916", "images": ["AURORA/data/something/frames/101018/first.jpg", "AURORA/data/something/frames/101018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000114917", "images": ["AURORA/data/something/frames/132411/first.jpg", "AURORA/data/something/frames/132411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000114918", "images": ["AURORA/data/something/frames/111472/first.jpg", "AURORA/data/something/frames/111472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114919", "images": ["AURORA/data/something/frames/99350/first.jpg", "AURORA/data/something/frames/99350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114920", "images": ["AURORA/data/something/frames/12152/first.jpg", "AURORA/data/something/frames/12152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a nailpolish bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114921", "images": ["AURORA/data/something/frames/156254/first.jpg", "AURORA/data/something/frames/156254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000114922", "images": ["AURORA/data/something/frames/10914/first.jpg", "AURORA/data/something/frames/10914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle-bottle and candle-bottle so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114923", "images": ["AURORA/data/something/frames/155132/first.jpg", "AURORA/data/something/frames/155132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery and battery closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114924", "images": ["AURORA/data/something/frames/188158/first.jpg", "AURORA/data/something/frames/188158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a strip of paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114925", "images": ["AURORA/data/something/frames/15636/first.jpg", "AURORA/data/something/frames/15636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114926", "images": ["AURORA/data/something/frames/156616/first.jpg", "AURORA/data/something/frames/156616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114927", "images": ["AURORA/data/something/frames/43591/first.jpg", "AURORA/data/something/frames/43591/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a book on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114928", "images": ["AURORA/data/something/frames/181564/first.jpg", "AURORA/data/something/frames/181564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a teddy with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000114929", "images": ["AURORA/data/something/frames/29133/first.jpg", "AURORA/data/something/frames/29133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114930", "images": ["AURORA/data/something/frames/121011/first.jpg", "AURORA/data/something/frames/121011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000114931", "images": ["AURORA/data/something/frames/98735/first.jpg", "AURORA/data/something/frames/98735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving little spray of container box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114932", "images": ["AURORA/data/something/frames/87855/first.jpg", "AURORA/data/something/frames/87855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering key with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114933", "images": ["AURORA/data/something/frames/156905/first.jpg", "AURORA/data/something/frames/156905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing thread from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000114934", "images": ["AURORA/data/something/frames/74683/first.jpg", "AURORA/data/something/frames/74683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching t shirts with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000114935", "images": ["AURORA/data/something/frames/92799/first.jpg", "AURORA/data/something/frames/92799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing printer paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114936", "images": ["AURORA/data/something/frames/127983/first.jpg", "AURORA/data/something/frames/127983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet next to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000114937", "images": ["AURORA/data/something/frames/33400/first.jpg", "AURORA/data/something/frames/33400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114938", "images": ["AURORA/data/something/frames/171824/first.jpg", "AURORA/data/something/frames/171824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glue with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114939", "images": ["AURORA/data/something/frames/189615/first.jpg", "AURORA/data/something/frames/189615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a matchbox from behind of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114940", "images": ["AURORA/data/something/frames/115190/first.jpg", "AURORA/data/something/frames/115190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bottle into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114941", "images": ["AURORA/data/something/frames/120423/first.jpg", "AURORA/data/something/frames/120423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a water container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114942", "images": ["AURORA/data/something/frames/132485/first.jpg", "AURORA/data/something/frames/132485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair with the arms"}, {"from": "gpt", "value": ""}]} +{"id": "000000114943", "images": ["AURORA/data/something/frames/77814/first.jpg", "AURORA/data/something/frames/77814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) sensor of lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000114944", "images": ["AURORA/data/something/frames/217964/first.jpg", "AURORA/data/something/frames/217964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling laundry up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114945", "images": ["AURORA/data/something/frames/63425/first.jpg", "AURORA/data/something/frames/63425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a container onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114946", "images": ["AURORA/data/something/frames/87011/first.jpg", "AURORA/data/something/frames/87011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114947", "images": ["AURORA/data/something/frames/13017/first.jpg", "AURORA/data/something/frames/13017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing the paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000114948", "images": ["AURORA/data/something/frames/30245/first.jpg", "AURORA/data/something/frames/30245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bag so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000114949", "images": ["AURORA/data/something/frames/200057/first.jpg", "AURORA/data/something/frames/200057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114950", "images": ["AURORA/data/something/frames/150347/first.jpg", "AURORA/data/something/frames/150347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114951", "images": ["AURORA/data/something/frames/199138/first.jpg", "AURORA/data/something/frames/199138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic comb next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114952", "images": ["AURORA/data/something/frames/114553/first.jpg", "AURORA/data/something/frames/114553/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000114953", "images": ["AURORA/data/something/frames/67788/first.jpg", "AURORA/data/something/frames/67788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114954", "images": ["AURORA/data/something/frames/88218/first.jpg", "AURORA/data/something/frames/88218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) back camera of smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000114955", "images": ["AURORA/data/something/frames/115613/first.jpg", "AURORA/data/something/frames/115613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing window"}, {"from": "gpt", "value": ""}]} +{"id": "000000114956", "images": ["AURORA/data/something/frames/96298/first.jpg", "AURORA/data/something/frames/96298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key closer to comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000114957", "images": ["AURORA/data/something/frames/157432/first.jpg", "AURORA/data/something/frames/157432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a cup with a card on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114958", "images": ["AURORA/data/something/frames/212349/first.jpg", "AURORA/data/something/frames/212349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon from plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000114959", "images": ["AURORA/data/something/frames/160945/first.jpg", "AURORA/data/something/frames/160945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering popcorn with lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000114960", "images": ["AURORA/data/something/frames/188433/first.jpg", "AURORA/data/something/frames/188433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottled ponzu sauce from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000114961", "images": ["AURORA/data/something/frames/210710/first.jpg", "AURORA/data/something/frames/210710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming posters"}, {"from": "gpt", "value": ""}]} +{"id": "000000114962", "images": ["AURORA/data/something/frames/155526/first.jpg", "AURORA/data/something/frames/155526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000114963", "images": ["AURORA/data/something/frames/121735/first.jpg", "AURORA/data/something/frames/121735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114964", "images": ["AURORA/data/something/frames/16552/first.jpg", "AURORA/data/something/frames/16552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114965", "images": ["AURORA/data/something/frames/128589/first.jpg", "AURORA/data/something/frames/128589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 water bottles onto wooden board"}, {"from": "gpt", "value": ""}]} +{"id": "000000114966", "images": ["AURORA/data/something/frames/176219/first.jpg", "AURORA/data/something/frames/176219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind book"}, {"from": "gpt", "value": ""}]} +{"id": "000000114967", "images": ["AURORA/data/something/frames/122075/first.jpg", "AURORA/data/something/frames/122075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of flashlight without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114968", "images": ["AURORA/data/something/frames/145759/first.jpg", "AURORA/data/something/frames/145759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into wine glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000114969", "images": ["AURORA/data/something/frames/174374/first.jpg", "AURORA/data/something/frames/174374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a memory stick into a usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000114970", "images": ["AURORA/data/something/frames/166365/first.jpg", "AURORA/data/something/frames/166365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an orange basket ball and a black basket ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114971", "images": ["AURORA/data/something/frames/117195/first.jpg", "AURORA/data/something/frames/117195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114972", "images": ["AURORA/data/something/frames/39264/first.jpg", "AURORA/data/something/frames/39264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000114973", "images": ["AURORA/data/something/frames/209856/first.jpg", "AURORA/data/something/frames/209856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box away from container"}, {"from": "gpt", "value": ""}]} +{"id": "000000114974", "images": ["AURORA/data/something/frames/163449/first.jpg", "AURORA/data/something/frames/163449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000114975", "images": ["AURORA/data/something/frames/150689/first.jpg", "AURORA/data/something/frames/150689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball colliding with bowl and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000114976", "images": ["AURORA/data/something/frames/121193/first.jpg", "AURORA/data/something/frames/121193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000114977", "images": ["AURORA/data/something/frames/43987/first.jpg", "AURORA/data/something/frames/43987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a sponge with a straw on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114978", "images": ["AURORA/data/something/frames/152938/first.jpg", "AURORA/data/something/frames/152938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bag strap"}, {"from": "gpt", "value": ""}]} +{"id": "000000114979", "images": ["AURORA/data/something/frames/112404/first.jpg", "AURORA/data/something/frames/112404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114980", "images": ["AURORA/data/something/frames/5926/first.jpg", "AURORA/data/something/frames/5926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000114981", "images": ["AURORA/data/something/frames/53331/first.jpg", "AURORA/data/something/frames/53331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book onto the bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000114982", "images": ["AURORA/data/something/frames/199487/first.jpg", "AURORA/data/something/frames/199487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000114983", "images": ["AURORA/data/something/frames/48393/first.jpg", "AURORA/data/something/frames/48393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking board clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000114984", "images": ["AURORA/data/something/frames/71544/first.jpg", "AURORA/data/something/frames/71544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114985", "images": ["AURORA/data/something/frames/44655/first.jpg", "AURORA/data/something/frames/44655/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking candle out of glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000114986", "images": ["AURORA/data/something/frames/122400/first.jpg", "AURORA/data/something/frames/122400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vitamin into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000114987", "images": ["AURORA/data/something/frames/158724/first.jpg", "AURORA/data/something/frames/158724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a plant on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114988", "images": ["AURORA/data/something/frames/11859/first.jpg", "AURORA/data/something/frames/11859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a mobile on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000114989", "images": ["AURORA/data/something/frames/155680/first.jpg", "AURORA/data/something/frames/155680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a fan with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000114990", "images": ["AURORA/data/something/frames/88889/first.jpg", "AURORA/data/something/frames/88889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon, fork and knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000114991", "images": ["AURORA/data/something/frames/131090/first.jpg", "AURORA/data/something/frames/131090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a nail polish upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114992", "images": ["AURORA/data/something/frames/35281/first.jpg", "AURORA/data/something/frames/35281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a plastic bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000114993", "images": ["AURORA/data/something/frames/44395/first.jpg", "AURORA/data/something/frames/44395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on the edge of something so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000114994", "images": ["AURORA/data/something/frames/198861/first.jpg", "AURORA/data/something/frames/198861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ligher into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114995", "images": ["AURORA/data/something/frames/115934/first.jpg", "AURORA/data/something/frames/115934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cans"}, {"from": "gpt", "value": ""}]} +{"id": "000000114996", "images": ["AURORA/data/something/frames/135498/first.jpg", "AURORA/data/something/frames/135498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coin with scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000114997", "images": ["AURORA/data/something/frames/99170/first.jpg", "AURORA/data/something/frames/99170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000114998", "images": ["AURORA/data/something/frames/30763/first.jpg", "AURORA/data/something/frames/30763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000114999", "images": ["AURORA/data/something/frames/146009/first.jpg", "AURORA/data/something/frames/146009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting metal pencil case with wrist watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000115000", "images": ["AURORA/data/something/frames/55860/first.jpg", "AURORA/data/something/frames/55860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115001", "images": ["AURORA/data/something/frames/9254/first.jpg", "AURORA/data/something/frames/9254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115002", "images": ["AURORA/data/something/frames/154626/first.jpg", "AURORA/data/something/frames/154626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115003", "images": ["AURORA/data/something/frames/13122/first.jpg", "AURORA/data/something/frames/13122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115004", "images": ["AURORA/data/something/frames/67720/first.jpg", "AURORA/data/something/frames/67720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115005", "images": ["AURORA/data/something/frames/160604/first.jpg", "AURORA/data/something/frames/160604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pens into pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115006", "images": ["AURORA/data/something/frames/65600/first.jpg", "AURORA/data/something/frames/65600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour soda into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115007", "images": ["AURORA/data/something/frames/49599/first.jpg", "AURORA/data/something/frames/49599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115008", "images": ["AURORA/data/something/frames/15966/first.jpg", "AURORA/data/something/frames/15966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115009", "images": ["AURORA/data/something/frames/138967/first.jpg", "AURORA/data/something/frames/138967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115010", "images": ["AURORA/data/something/frames/149268/first.jpg", "AURORA/data/something/frames/149268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115011", "images": ["AURORA/data/something/frames/24760/first.jpg", "AURORA/data/something/frames/24760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and xbox game closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115012", "images": ["AURORA/data/something/frames/177238/first.jpg", "AURORA/data/something/frames/177238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115013", "images": ["AURORA/data/something/frames/15451/first.jpg", "AURORA/data/something/frames/15451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a tea light candle away from a group of candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000115014", "images": ["AURORA/data/something/frames/62083/first.jpg", "AURORA/data/something/frames/62083/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of sock so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115015", "images": ["AURORA/data/something/frames/118091/first.jpg", "AURORA/data/something/frames/118091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115016", "images": ["AURORA/data/something/frames/2970/first.jpg", "AURORA/data/something/frames/2970/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering tablet with handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000115017", "images": ["AURORA/data/something/frames/147131/first.jpg", "AURORA/data/something/frames/147131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from pen with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115018", "images": ["AURORA/data/something/frames/93652/first.jpg", "AURORA/data/something/frames/93652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting black spectacles up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115019", "images": ["AURORA/data/something/frames/11248/first.jpg", "AURORA/data/something/frames/11248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting blue colour spectacle box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115020", "images": ["AURORA/data/something/frames/103661/first.jpg", "AURORA/data/something/frames/103661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115021", "images": ["AURORA/data/something/frames/130147/first.jpg", "AURORA/data/something/frames/130147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting play-doh into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115022", "images": ["AURORA/data/something/frames/218479/first.jpg", "AURORA/data/something/frames/218479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000115023", "images": ["AURORA/data/something/frames/104468/first.jpg", "AURORA/data/something/frames/104468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink blush on from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115024", "images": ["AURORA/data/something/frames/17535/first.jpg", "AURORA/data/something/frames/17535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115025", "images": ["AURORA/data/something/frames/2324/first.jpg", "AURORA/data/something/frames/2324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a rubix cube with a hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115026", "images": ["AURORA/data/something/frames/189371/first.jpg", "AURORA/data/something/frames/189371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a leaf so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115027", "images": ["AURORA/data/something/frames/92373/first.jpg", "AURORA/data/something/frames/92373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115028", "images": ["AURORA/data/something/frames/196364/first.jpg", "AURORA/data/something/frames/196364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy wheel into green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115029", "images": ["AURORA/data/something/frames/120000/first.jpg", "AURORA/data/something/frames/120000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115030", "images": ["AURORA/data/something/frames/200662/first.jpg", "AURORA/data/something/frames/200662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone behind cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115031", "images": ["AURORA/data/something/frames/126386/first.jpg", "AURORA/data/something/frames/126386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115032", "images": ["AURORA/data/something/frames/133641/first.jpg", "AURORA/data/something/frames/133641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glass with brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115033", "images": ["AURORA/data/something/frames/130669/first.jpg", "AURORA/data/something/frames/130669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000115034", "images": ["AURORA/data/something/frames/173220/first.jpg", "AURORA/data/something/frames/173220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving marker and jar away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115035", "images": ["AURORA/data/something/frames/30537/first.jpg", "AURORA/data/something/frames/30537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115036", "images": ["AURORA/data/something/frames/201987/first.jpg", "AURORA/data/something/frames/201987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115037", "images": ["AURORA/data/something/frames/23835/first.jpg", "AURORA/data/something/frames/23835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115038", "images": ["AURORA/data/something/frames/119903/first.jpg", "AURORA/data/something/frames/119903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115039", "images": ["AURORA/data/something/frames/25846/first.jpg", "AURORA/data/something/frames/25846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayons, pencilbox and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115040", "images": ["AURORA/data/something/frames/203953/first.jpg", "AURORA/data/something/frames/203953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse onto a mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000115041", "images": ["AURORA/data/something/frames/133030/first.jpg", "AURORA/data/something/frames/133030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a shoe colliding with another shoe and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115042", "images": ["AURORA/data/something/frames/164547/first.jpg", "AURORA/data/something/frames/164547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning canned food upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115043", "images": ["AURORA/data/something/frames/207893/first.jpg", "AURORA/data/something/frames/207893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115044", "images": ["AURORA/data/something/frames/170043/first.jpg", "AURORA/data/something/frames/170043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a usb so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115045", "images": ["AURORA/data/something/frames/39583/first.jpg", "AURORA/data/something/frames/39583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a [pen amongst other pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000115046", "images": ["AURORA/data/something/frames/132966/first.jpg", "AURORA/data/something/frames/132966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115047", "images": ["AURORA/data/something/frames/196314/first.jpg", "AURORA/data/something/frames/196314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping liquid hand soap off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000115048", "images": ["AURORA/data/something/frames/122981/first.jpg", "AURORA/data/something/frames/122981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) tissue wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115049", "images": ["AURORA/data/something/frames/89367/first.jpg", "AURORA/data/something/frames/89367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115050", "images": ["AURORA/data/something/frames/4689/first.jpg", "AURORA/data/something/frames/4689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving yo-yo and marble so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115051", "images": ["AURORA/data/something/frames/127592/first.jpg", "AURORA/data/something/frames/127592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pipe cleaner so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115052", "images": ["AURORA/data/something/frames/27792/first.jpg", "AURORA/data/something/frames/27792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring vodka into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115053", "images": ["AURORA/data/something/frames/71417/first.jpg", "AURORA/data/something/frames/71417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tiger toy on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115054", "images": ["AURORA/data/something/frames/32992/first.jpg", "AURORA/data/something/frames/32992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115055", "images": ["AURORA/data/something/frames/67810/first.jpg", "AURORA/data/something/frames/67810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115056", "images": ["AURORA/data/something/frames/196076/first.jpg", "AURORA/data/something/frames/196076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a plate with mexican dip container on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115057", "images": ["AURORA/data/something/frames/219708/first.jpg", "AURORA/data/something/frames/219708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115058", "images": ["AURORA/data/something/frames/33456/first.jpg", "AURORA/data/something/frames/33456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115059", "images": ["AURORA/data/something/frames/145001/first.jpg", "AURORA/data/something/frames/145001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser on the edge of window so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115060", "images": ["AURORA/data/something/frames/184846/first.jpg", "AURORA/data/something/frames/184846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking table salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115061", "images": ["AURORA/data/something/frames/195091/first.jpg", "AURORA/data/something/frames/195091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardstock just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115062", "images": ["AURORA/data/something/frames/66930/first.jpg", "AURORA/data/something/frames/66930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115063", "images": ["AURORA/data/something/frames/155059/first.jpg", "AURORA/data/something/frames/155059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wire onto tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115064", "images": ["AURORA/data/something/frames/1705/first.jpg", "AURORA/data/something/frames/1705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing waste bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115065", "images": ["AURORA/data/something/frames/29729/first.jpg", "AURORA/data/something/frames/29729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115066", "images": ["AURORA/data/something/frames/1521/first.jpg", "AURORA/data/something/frames/1521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and banana closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115067", "images": ["AURORA/data/something/frames/129914/first.jpg", "AURORA/data/something/frames/129914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothpaste onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115068", "images": ["AURORA/data/something/frames/191134/first.jpg", "AURORA/data/something/frames/191134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115069", "images": ["AURORA/data/something/frames/173712/first.jpg", "AURORA/data/something/frames/173712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a thermometer out of a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115070", "images": ["AURORA/data/something/frames/149222/first.jpg", "AURORA/data/something/frames/149222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spatula onto stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000115071", "images": ["AURORA/data/something/frames/111809/first.jpg", "AURORA/data/something/frames/111809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115072", "images": ["AURORA/data/something/frames/193078/first.jpg", "AURORA/data/something/frames/193078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115073", "images": ["AURORA/data/something/frames/123531/first.jpg", "AURORA/data/something/frames/123531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bus ticket so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115074", "images": ["AURORA/data/something/frames/32267/first.jpg", "AURORA/data/something/frames/32267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115075", "images": ["AURORA/data/something/frames/9679/first.jpg", "AURORA/data/something/frames/9679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting calculator in front of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000115076", "images": ["AURORA/data/something/frames/8739/first.jpg", "AURORA/data/something/frames/8739/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple balloon pump from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115077", "images": ["AURORA/data/something/frames/220641/first.jpg", "AURORA/data/something/frames/220641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115078", "images": ["AURORA/data/something/frames/142853/first.jpg", "AURORA/data/something/frames/142853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking water bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115079", "images": ["AURORA/data/something/frames/130937/first.jpg", "AURORA/data/something/frames/130937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and cup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115080", "images": ["AURORA/data/something/frames/171127/first.jpg", "AURORA/data/something/frames/171127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil next to a magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000115081", "images": ["AURORA/data/something/frames/16733/first.jpg", "AURORA/data/something/frames/16733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power supply cord into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115082", "images": ["AURORA/data/something/frames/99996/first.jpg", "AURORA/data/something/frames/99996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling seltzer onto grape juice"}, {"from": "gpt", "value": ""}]} +{"id": "000000115083", "images": ["AURORA/data/something/frames/14859/first.jpg", "AURORA/data/something/frames/14859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking box from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115084", "images": ["AURORA/data/something/frames/132868/first.jpg", "AURORA/data/something/frames/132868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering green toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000115085", "images": ["AURORA/data/something/frames/74719/first.jpg", "AURORA/data/something/frames/74719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling towel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115086", "images": ["AURORA/data/something/frames/117865/first.jpg", "AURORA/data/something/frames/117865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping yellow ball into glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115087", "images": ["AURORA/data/something/frames/167671/first.jpg", "AURORA/data/something/frames/167671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering teething ring with bib"}, {"from": "gpt", "value": ""}]} +{"id": "000000115088", "images": ["AURORA/data/something/frames/8283/first.jpg", "AURORA/data/something/frames/8283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bobby pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115089", "images": ["AURORA/data/something/frames/44585/first.jpg", "AURORA/data/something/frames/44585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into jar until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115090", "images": ["AURORA/data/something/frames/33311/first.jpg", "AURORA/data/something/frames/33311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tablet upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115091", "images": ["AURORA/data/something/frames/32532/first.jpg", "AURORA/data/something/frames/32532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen and a bottle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115092", "images": ["AURORA/data/something/frames/174635/first.jpg", "AURORA/data/something/frames/174635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pencil up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115093", "images": ["AURORA/data/something/frames/151592/first.jpg", "AURORA/data/something/frames/151592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen similar to the other pens that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115094", "images": ["AURORA/data/something/frames/97094/first.jpg", "AURORA/data/something/frames/97094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chair towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115095", "images": ["AURORA/data/something/frames/141825/first.jpg", "AURORA/data/something/frames/141825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vial on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115096", "images": ["AURORA/data/something/frames/50750/first.jpg", "AURORA/data/something/frames/50750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into a computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115097", "images": ["AURORA/data/something/frames/201173/first.jpg", "AURORA/data/something/frames/201173/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a steel piece on the edge of steel stick so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115098", "images": ["AURORA/data/something/frames/4818/first.jpg", "AURORA/data/something/frames/4818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork among forks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115099", "images": ["AURORA/data/something/frames/163869/first.jpg", "AURORA/data/something/frames/163869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a fork closer to a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000115100", "images": ["AURORA/data/something/frames/52979/first.jpg", "AURORA/data/something/frames/52979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115101", "images": ["AURORA/data/something/frames/69679/first.jpg", "AURORA/data/something/frames/69679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115102", "images": ["AURORA/data/something/frames/81376/first.jpg", "AURORA/data/something/frames/81376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving action figure across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115103", "images": ["AURORA/data/something/frames/4752/first.jpg", "AURORA/data/something/frames/4752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115104", "images": ["AURORA/data/something/frames/73507/first.jpg", "AURORA/data/something/frames/73507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000115105", "images": ["AURORA/data/something/frames/114030/first.jpg", "AURORA/data/something/frames/114030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115106", "images": ["AURORA/data/something/frames/143570/first.jpg", "AURORA/data/something/frames/143570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning salt shaker upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115107", "images": ["AURORA/data/something/frames/189482/first.jpg", "AURORA/data/something/frames/189482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115108", "images": ["AURORA/data/something/frames/4143/first.jpg", "AURORA/data/something/frames/4143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking candle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115109", "images": ["AURORA/data/something/frames/163521/first.jpg", "AURORA/data/something/frames/163521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork next to knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000115110", "images": ["AURORA/data/something/frames/14257/first.jpg", "AURORA/data/something/frames/14257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pan with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115111", "images": ["AURORA/data/something/frames/193707/first.jpg", "AURORA/data/something/frames/193707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000115112", "images": ["AURORA/data/something/frames/204125/first.jpg", "AURORA/data/something/frames/204125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115113", "images": ["AURORA/data/something/frames/16809/first.jpg", "AURORA/data/something/frames/16809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sugarpot so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115114", "images": ["AURORA/data/something/frames/69064/first.jpg", "AURORA/data/something/frames/69064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115115", "images": ["AURORA/data/something/frames/46846/first.jpg", "AURORA/data/something/frames/46846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a water tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000115116", "images": ["AURORA/data/something/frames/112347/first.jpg", "AURORA/data/something/frames/112347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115117", "images": ["AURORA/data/something/frames/133411/first.jpg", "AURORA/data/something/frames/133411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering luggage tag with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115118", "images": ["AURORA/data/something/frames/192810/first.jpg", "AURORA/data/something/frames/192810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115119", "images": ["AURORA/data/something/frames/94638/first.jpg", "AURORA/data/something/frames/94638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of napkin so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115120", "images": ["AURORA/data/something/frames/138117/first.jpg", "AURORA/data/something/frames/138117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115121", "images": ["AURORA/data/something/frames/50773/first.jpg", "AURORA/data/something/frames/50773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking the water recipient so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115122", "images": ["AURORA/data/something/frames/193163/first.jpg", "AURORA/data/something/frames/193163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115123", "images": ["AURORA/data/something/frames/153593/first.jpg", "AURORA/data/something/frames/153593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115124", "images": ["AURORA/data/something/frames/144926/first.jpg", "AURORA/data/something/frames/144926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bunch of keys with pencil on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115125", "images": ["AURORA/data/something/frames/85931/first.jpg", "AURORA/data/something/frames/85931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading coins onto mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000115126", "images": ["AURORA/data/something/frames/40860/first.jpg", "AURORA/data/something/frames/40860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115127", "images": ["AURORA/data/something/frames/155109/first.jpg", "AURORA/data/something/frames/155109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dice on table of similar items"}, {"from": "gpt", "value": ""}]} +{"id": "000000115128", "images": ["AURORA/data/something/frames/178899/first.jpg", "AURORA/data/something/frames/178899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper underneath stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115129", "images": ["AURORA/data/something/frames/217301/first.jpg", "AURORA/data/something/frames/217301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115130", "images": ["AURORA/data/something/frames/51858/first.jpg", "AURORA/data/something/frames/51858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115131", "images": ["AURORA/data/something/frames/187867/first.jpg", "AURORA/data/something/frames/187867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a screwdriver off of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115132", "images": ["AURORA/data/something/frames/145237/first.jpg", "AURORA/data/something/frames/145237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000115133", "images": ["AURORA/data/something/frames/144798/first.jpg", "AURORA/data/something/frames/144798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000115134", "images": ["AURORA/data/something/frames/129314/first.jpg", "AURORA/data/something/frames/129314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115135", "images": ["AURORA/data/something/frames/146809/first.jpg", "AURORA/data/something/frames/146809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and wallet closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115136", "images": ["AURORA/data/something/frames/115794/first.jpg", "AURORA/data/something/frames/115794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115137", "images": ["AURORA/data/something/frames/54990/first.jpg", "AURORA/data/something/frames/54990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of onion so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115138", "images": ["AURORA/data/something/frames/135935/first.jpg", "AURORA/data/something/frames/135935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115139", "images": ["AURORA/data/something/frames/44608/first.jpg", "AURORA/data/something/frames/44608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of exercise band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115140", "images": ["AURORA/data/something/frames/66100/first.jpg", "AURORA/data/something/frames/66100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mouse with a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000115141", "images": ["AURORA/data/something/frames/180067/first.jpg", "AURORA/data/something/frames/180067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping water bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115142", "images": ["AURORA/data/something/frames/53968/first.jpg", "AURORA/data/something/frames/53968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sandal on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115143", "images": ["AURORA/data/something/frames/47953/first.jpg", "AURORA/data/something/frames/47953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000115144", "images": ["AURORA/data/something/frames/81261/first.jpg", "AURORA/data/something/frames/81261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115145", "images": ["AURORA/data/something/frames/77390/first.jpg", "AURORA/data/something/frames/77390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red bottlecap from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115146", "images": ["AURORA/data/something/frames/42720/first.jpg", "AURORA/data/something/frames/42720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115147", "images": ["AURORA/data/something/frames/43950/first.jpg", "AURORA/data/something/frames/43950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a tub without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115148", "images": ["AURORA/data/something/frames/59142/first.jpg", "AURORA/data/something/frames/59142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scotch tape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115149", "images": ["AURORA/data/something/frames/134311/first.jpg", "AURORA/data/something/frames/134311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cufflinks closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115150", "images": ["AURORA/data/something/frames/42956/first.jpg", "AURORA/data/something/frames/42956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching keys with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115151", "images": ["AURORA/data/something/frames/73045/first.jpg", "AURORA/data/something/frames/73045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115152", "images": ["AURORA/data/something/frames/175372/first.jpg", "AURORA/data/something/frames/175372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115153", "images": ["AURORA/data/something/frames/202114/first.jpg", "AURORA/data/something/frames/202114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin and watch away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115154", "images": ["AURORA/data/something/frames/170639/first.jpg", "AURORA/data/something/frames/170639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil next to wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000115155", "images": ["AURORA/data/something/frames/154512/first.jpg", "AURORA/data/something/frames/154512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ink bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115156", "images": ["AURORA/data/something/frames/71643/first.jpg", "AURORA/data/something/frames/71643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping butter off of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000115157", "images": ["AURORA/data/something/frames/186949/first.jpg", "AURORA/data/something/frames/186949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wooden reeper until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115158", "images": ["AURORA/data/something/frames/201445/first.jpg", "AURORA/data/something/frames/201445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115159", "images": ["AURORA/data/something/frames/115277/first.jpg", "AURORA/data/something/frames/115277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping popcorn up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115160", "images": ["AURORA/data/something/frames/19766/first.jpg", "AURORA/data/something/frames/19766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115161", "images": ["AURORA/data/something/frames/71978/first.jpg", "AURORA/data/something/frames/71978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pot holder being deflected from chalkboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000115162", "images": ["AURORA/data/something/frames/76768/first.jpg", "AURORA/data/something/frames/76768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115163", "images": ["AURORA/data/something/frames/140369/first.jpg", "AURORA/data/something/frames/140369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a container next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115164", "images": ["AURORA/data/something/frames/104152/first.jpg", "AURORA/data/something/frames/104152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115165", "images": ["AURORA/data/something/frames/4288/first.jpg", "AURORA/data/something/frames/4288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking green colour pen among many colour pens on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115166", "images": ["AURORA/data/something/frames/137064/first.jpg", "AURORA/data/something/frames/137064/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wafer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115167", "images": ["AURORA/data/something/frames/124255/first.jpg", "AURORA/data/something/frames/124255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115168", "images": ["AURORA/data/something/frames/209151/first.jpg", "AURORA/data/something/frames/209151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing canderelbox so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115169", "images": ["AURORA/data/something/frames/129580/first.jpg", "AURORA/data/something/frames/129580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing calculator with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115170", "images": ["AURORA/data/something/frames/16505/first.jpg", "AURORA/data/something/frames/16505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the bottle and the pencil case closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115171", "images": ["AURORA/data/something/frames/220825/first.jpg", "AURORA/data/something/frames/220825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115172", "images": ["AURORA/data/something/frames/475/first.jpg", "AURORA/data/something/frames/475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115173", "images": ["AURORA/data/something/frames/143765/first.jpg", "AURORA/data/something/frames/143765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting folder underneath desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000115174", "images": ["AURORA/data/something/frames/33956/first.jpg", "AURORA/data/something/frames/33956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour coconut water into glass, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115175", "images": ["AURORA/data/something/frames/125041/first.jpg", "AURORA/data/something/frames/125041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115176", "images": ["AURORA/data/something/frames/93454/first.jpg", "AURORA/data/something/frames/93454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic ball and plastic ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115177", "images": ["AURORA/data/something/frames/168282/first.jpg", "AURORA/data/something/frames/168282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lipstick up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115178", "images": ["AURORA/data/something/frames/81223/first.jpg", "AURORA/data/something/frames/81223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115179", "images": ["AURORA/data/something/frames/44930/first.jpg", "AURORA/data/something/frames/44930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000115180", "images": ["AURORA/data/something/frames/39318/first.jpg", "AURORA/data/something/frames/39318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115181", "images": ["AURORA/data/something/frames/169724/first.jpg", "AURORA/data/something/frames/169724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching toy with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115182", "images": ["AURORA/data/something/frames/103685/first.jpg", "AURORA/data/something/frames/103685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115183", "images": ["AURORA/data/something/frames/17657/first.jpg", "AURORA/data/something/frames/17657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil next to other similar objects on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115184", "images": ["AURORA/data/something/frames/44451/first.jpg", "AURORA/data/something/frames/44451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115185", "images": ["AURORA/data/something/frames/17532/first.jpg", "AURORA/data/something/frames/17532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115186", "images": ["AURORA/data/something/frames/54391/first.jpg", "AURORA/data/something/frames/54391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving elf closer to buddha"}, {"from": "gpt", "value": ""}]} +{"id": "000000115187", "images": ["AURORA/data/something/frames/10652/first.jpg", "AURORA/data/something/frames/10652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping canister over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115188", "images": ["AURORA/data/something/frames/127806/first.jpg", "AURORA/data/something/frames/127806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cycle away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115189", "images": ["AURORA/data/something/frames/16589/first.jpg", "AURORA/data/something/frames/16589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) part of towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115190", "images": ["AURORA/data/something/frames/73888/first.jpg", "AURORA/data/something/frames/73888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle away from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115191", "images": ["AURORA/data/something/frames/179039/first.jpg", "AURORA/data/something/frames/179039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a figurine from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115192", "images": ["AURORA/data/something/frames/36639/first.jpg", "AURORA/data/something/frames/36639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing battery compartment of tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115193", "images": ["AURORA/data/something/frames/46778/first.jpg", "AURORA/data/something/frames/46778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115194", "images": ["AURORA/data/something/frames/195729/first.jpg", "AURORA/data/something/frames/195729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green cup onto duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115195", "images": ["AURORA/data/something/frames/217109/first.jpg", "AURORA/data/something/frames/217109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger cable into cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115196", "images": ["AURORA/data/something/frames/177650/first.jpg", "AURORA/data/something/frames/177650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching the wall with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115197", "images": ["AURORA/data/something/frames/11944/first.jpg", "AURORA/data/something/frames/11944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding bed sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115198", "images": ["AURORA/data/something/frames/4903/first.jpg", "AURORA/data/something/frames/4903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging vga 9 pin plug into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115199", "images": ["AURORA/data/something/frames/16215/first.jpg", "AURORA/data/something/frames/16215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pulling plastic spray from right to left from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115200", "images": ["AURORA/data/something/frames/36238/first.jpg", "AURORA/data/something/frames/36238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115201", "images": ["AURORA/data/something/frames/46141/first.jpg", "AURORA/data/something/frames/46141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing glass, revealing scissor behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115202", "images": ["AURORA/data/something/frames/137966/first.jpg", "AURORA/data/something/frames/137966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115203", "images": ["AURORA/data/something/frames/181899/first.jpg", "AURORA/data/something/frames/181899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115204", "images": ["AURORA/data/something/frames/142940/first.jpg", "AURORA/data/something/frames/142940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug and canister on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115205", "images": ["AURORA/data/something/frames/159005/first.jpg", "AURORA/data/something/frames/159005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking jacket up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115206", "images": ["AURORA/data/something/frames/149508/first.jpg", "AURORA/data/something/frames/149508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch and glasses closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115207", "images": ["AURORA/data/something/frames/131887/first.jpg", "AURORA/data/something/frames/131887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115208", "images": ["AURORA/data/something/frames/220496/first.jpg", "AURORA/data/something/frames/220496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115209", "images": ["AURORA/data/something/frames/118392/first.jpg", "AURORA/data/something/frames/118392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115210", "images": ["AURORA/data/something/frames/27776/first.jpg", "AURORA/data/something/frames/27776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric plug into an electric outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115211", "images": ["AURORA/data/something/frames/154500/first.jpg", "AURORA/data/something/frames/154500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking chocolate bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115212", "images": ["AURORA/data/something/frames/178117/first.jpg", "AURORA/data/something/frames/178117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115213", "images": ["AURORA/data/something/frames/151772/first.jpg", "AURORA/data/something/frames/151772/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115214", "images": ["AURORA/data/something/frames/122617/first.jpg", "AURORA/data/something/frames/122617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking medicine from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115215", "images": ["AURORA/data/something/frames/13057/first.jpg", "AURORA/data/something/frames/13057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coaster with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115216", "images": ["AURORA/data/something/frames/149363/first.jpg", "AURORA/data/something/frames/149363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the mate onto helmet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115217", "images": ["AURORA/data/something/frames/101819/first.jpg", "AURORA/data/something/frames/101819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into extension cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000115218", "images": ["AURORA/data/something/frames/22355/first.jpg", "AURORA/data/something/frames/22355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115219", "images": ["AURORA/data/something/frames/89400/first.jpg", "AURORA/data/something/frames/89400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking padlock from glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115220", "images": ["AURORA/data/something/frames/138804/first.jpg", "AURORA/data/something/frames/138804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115221", "images": ["AURORA/data/something/frames/152916/first.jpg", "AURORA/data/something/frames/152916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt and pepper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115222", "images": ["AURORA/data/something/frames/43061/first.jpg", "AURORA/data/something/frames/43061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting binder upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115223", "images": ["AURORA/data/something/frames/86277/first.jpg", "AURORA/data/something/frames/86277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115224", "images": ["AURORA/data/something/frames/210726/first.jpg", "AURORA/data/something/frames/210726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115225", "images": ["AURORA/data/something/frames/117638/first.jpg", "AURORA/data/something/frames/117638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115226", "images": ["AURORA/data/something/frames/55099/first.jpg", "AURORA/data/something/frames/55099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and usb cable closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115227", "images": ["AURORA/data/something/frames/12055/first.jpg", "AURORA/data/something/frames/12055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115228", "images": ["AURORA/data/something/frames/157717/first.jpg", "AURORA/data/something/frames/157717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115229", "images": ["AURORA/data/something/frames/122816/first.jpg", "AURORA/data/something/frames/122816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving an eyeglass case towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115230", "images": ["AURORA/data/something/frames/93555/first.jpg", "AURORA/data/something/frames/93555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115231", "images": ["AURORA/data/something/frames/91902/first.jpg", "AURORA/data/something/frames/91902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115232", "images": ["AURORA/data/something/frames/121078/first.jpg", "AURORA/data/something/frames/121078/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching glasses with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115233", "images": ["AURORA/data/something/frames/92119/first.jpg", "AURORA/data/something/frames/92119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering plastic knife with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115234", "images": ["AURORA/data/something/frames/219665/first.jpg", "AURORA/data/something/frames/219665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto the little globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115235", "images": ["AURORA/data/something/frames/94090/first.jpg", "AURORA/data/something/frames/94090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115236", "images": ["AURORA/data/something/frames/213998/first.jpg", "AURORA/data/something/frames/213998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening umbrella"}, {"from": "gpt", "value": ""}]} +{"id": "000000115237", "images": ["AURORA/data/something/frames/207295/first.jpg", "AURORA/data/something/frames/207295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115238", "images": ["AURORA/data/something/frames/175726/first.jpg", "AURORA/data/something/frames/175726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115239", "images": ["AURORA/data/something/frames/87607/first.jpg", "AURORA/data/something/frames/87607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an egg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115240", "images": ["AURORA/data/something/frames/220318/first.jpg", "AURORA/data/something/frames/220318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soft ball into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115241", "images": ["AURORA/data/something/frames/212353/first.jpg", "AURORA/data/something/frames/212353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle onto wooden ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115242", "images": ["AURORA/data/something/frames/69911/first.jpg", "AURORA/data/something/frames/69911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115243", "images": ["AURORA/data/something/frames/104745/first.jpg", "AURORA/data/something/frames/104745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115244", "images": ["AURORA/data/something/frames/27809/first.jpg", "AURORA/data/something/frames/27809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a bird cage"}, {"from": "gpt", "value": ""}]} +{"id": "000000115245", "images": ["AURORA/data/something/frames/1484/first.jpg", "AURORA/data/something/frames/1484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of fluorescent light bulb"}, {"from": "gpt", "value": ""}]} +{"id": "000000115246", "images": ["AURORA/data/something/frames/129210/first.jpg", "AURORA/data/something/frames/129210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115247", "images": ["AURORA/data/something/frames/64254/first.jpg", "AURORA/data/something/frames/64254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115248", "images": ["AURORA/data/something/frames/212253/first.jpg", "AURORA/data/something/frames/212253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black hair tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000115249", "images": ["AURORA/data/something/frames/152333/first.jpg", "AURORA/data/something/frames/152333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting banana leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000115250", "images": ["AURORA/data/something/frames/120110/first.jpg", "AURORA/data/something/frames/120110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the frame of sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115251", "images": ["AURORA/data/something/frames/126004/first.jpg", "AURORA/data/something/frames/126004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a coin with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115252", "images": ["AURORA/data/something/frames/114711/first.jpg", "AURORA/data/something/frames/114711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding handout"}, {"from": "gpt", "value": ""}]} +{"id": "000000115253", "images": ["AURORA/data/something/frames/86740/first.jpg", "AURORA/data/something/frames/86740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115254", "images": ["AURORA/data/something/frames/160106/first.jpg", "AURORA/data/something/frames/160106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pencil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115255", "images": ["AURORA/data/something/frames/25815/first.jpg", "AURORA/data/something/frames/25815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115256", "images": ["AURORA/data/something/frames/175654/first.jpg", "AURORA/data/something/frames/175654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something and something away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115257", "images": ["AURORA/data/something/frames/191030/first.jpg", "AURORA/data/something/frames/191030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115258", "images": ["AURORA/data/something/frames/7818/first.jpg", "AURORA/data/something/frames/7818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cleaner, revealing glass behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115259", "images": ["AURORA/data/something/frames/24715/first.jpg", "AURORA/data/something/frames/24715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping balls into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115260", "images": ["AURORA/data/something/frames/72239/first.jpg", "AURORA/data/something/frames/72239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork similar to many forks on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115261", "images": ["AURORA/data/something/frames/42754/first.jpg", "AURORA/data/something/frames/42754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb and usb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115262", "images": ["AURORA/data/something/frames/213488/first.jpg", "AURORA/data/something/frames/213488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: candy colliding with candy and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115263", "images": ["AURORA/data/something/frames/188112/first.jpg", "AURORA/data/something/frames/188112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy truck from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115264", "images": ["AURORA/data/something/frames/13022/first.jpg", "AURORA/data/something/frames/13022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting the counter with a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000115265", "images": ["AURORA/data/something/frames/50618/first.jpg", "AURORA/data/something/frames/50618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115266", "images": ["AURORA/data/something/frames/34745/first.jpg", "AURORA/data/something/frames/34745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging jack into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115267", "images": ["AURORA/data/something/frames/175746/first.jpg", "AURORA/data/something/frames/175746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115268", "images": ["AURORA/data/something/frames/67117/first.jpg", "AURORA/data/something/frames/67117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115269", "images": ["AURORA/data/something/frames/140874/first.jpg", "AURORA/data/something/frames/140874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting washcloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115270", "images": ["AURORA/data/something/frames/211453/first.jpg", "AURORA/data/something/frames/211453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115271", "images": ["AURORA/data/something/frames/184891/first.jpg", "AURORA/data/something/frames/184891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone underneath a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115272", "images": ["AURORA/data/something/frames/12107/first.jpg", "AURORA/data/something/frames/12107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soda pop can behind coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000115273", "images": ["AURORA/data/something/frames/184538/first.jpg", "AURORA/data/something/frames/184538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115274", "images": ["AURORA/data/something/frames/145150/first.jpg", "AURORA/data/something/frames/145150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering case with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115275", "images": ["AURORA/data/something/frames/5085/first.jpg", "AURORA/data/something/frames/5085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115276", "images": ["AURORA/data/something/frames/85258/first.jpg", "AURORA/data/something/frames/85258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue lighter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115277", "images": ["AURORA/data/something/frames/38117/first.jpg", "AURORA/data/something/frames/38117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pack of tissues closer to a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115278", "images": ["AURORA/data/something/frames/178214/first.jpg", "AURORA/data/something/frames/178214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote closer to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115279", "images": ["AURORA/data/something/frames/192867/first.jpg", "AURORA/data/something/frames/192867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing plastic into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115280", "images": ["AURORA/data/something/frames/42903/first.jpg", "AURORA/data/something/frames/42903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115281", "images": ["AURORA/data/something/frames/54227/first.jpg", "AURORA/data/something/frames/54227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb cord into a charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115282", "images": ["AURORA/data/something/frames/94498/first.jpg", "AURORA/data/something/frames/94498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000115283", "images": ["AURORA/data/something/frames/206954/first.jpg", "AURORA/data/something/frames/206954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting sachet with chopstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000115284", "images": ["AURORA/data/something/frames/42610/first.jpg", "AURORA/data/something/frames/42610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115285", "images": ["AURORA/data/something/frames/191903/first.jpg", "AURORA/data/something/frames/191903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping red hair band in front of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115286", "images": ["AURORA/data/something/frames/33797/first.jpg", "AURORA/data/something/frames/33797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger cable into ipod"}, {"from": "gpt", "value": ""}]} +{"id": "000000115287", "images": ["AURORA/data/something/frames/13583/first.jpg", "AURORA/data/something/frames/13583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing dog toy so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115288", "images": ["AURORA/data/something/frames/102948/first.jpg", "AURORA/data/something/frames/102948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115289", "images": ["AURORA/data/something/frames/90011/first.jpg", "AURORA/data/something/frames/90011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cards and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115290", "images": ["AURORA/data/something/frames/56620/first.jpg", "AURORA/data/something/frames/56620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencils onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115291", "images": ["AURORA/data/something/frames/72564/first.jpg", "AURORA/data/something/frames/72564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling bags of cookies up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115292", "images": ["AURORA/data/something/frames/205079/first.jpg", "AURORA/data/something/frames/205079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing ripping napkin in half into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115293", "images": ["AURORA/data/something/frames/138504/first.jpg", "AURORA/data/something/frames/138504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000115294", "images": ["AURORA/data/something/frames/191560/first.jpg", "AURORA/data/something/frames/191560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115295", "images": ["AURORA/data/something/frames/139585/first.jpg", "AURORA/data/something/frames/139585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing change into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115296", "images": ["AURORA/data/something/frames/33353/first.jpg", "AURORA/data/something/frames/33353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pink bunny closer to a carrot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115297", "images": ["AURORA/data/something/frames/72063/first.jpg", "AURORA/data/something/frames/72063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115298", "images": ["AURORA/data/something/frames/185483/first.jpg", "AURORA/data/something/frames/185483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and statue closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115299", "images": ["AURORA/data/something/frames/42742/first.jpg", "AURORA/data/something/frames/42742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tea light candle onto ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115300", "images": ["AURORA/data/something/frames/218443/first.jpg", "AURORA/data/something/frames/218443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115301", "images": ["AURORA/data/something/frames/60164/first.jpg", "AURORA/data/something/frames/60164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115302", "images": ["AURORA/data/something/frames/113944/first.jpg", "AURORA/data/something/frames/113944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothpaste tube and toothpaste tube so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115303", "images": ["AURORA/data/something/frames/35022/first.jpg", "AURORA/data/something/frames/35022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton into pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115304", "images": ["AURORA/data/something/frames/35569/first.jpg", "AURORA/data/something/frames/35569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a plastic pipe so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115305", "images": ["AURORA/data/something/frames/218482/first.jpg", "AURORA/data/something/frames/218482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115306", "images": ["AURORA/data/something/frames/49888/first.jpg", "AURORA/data/something/frames/49888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler with colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115307", "images": ["AURORA/data/something/frames/48861/first.jpg", "AURORA/data/something/frames/48861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115308", "images": ["AURORA/data/something/frames/78129/first.jpg", "AURORA/data/something/frames/78129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sharpner next to white colour board clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000115309", "images": ["AURORA/data/something/frames/10018/first.jpg", "AURORA/data/something/frames/10018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to flower pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115310", "images": ["AURORA/data/something/frames/70685/first.jpg", "AURORA/data/something/frames/70685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper heart into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115311", "images": ["AURORA/data/something/frames/124924/first.jpg", "AURORA/data/something/frames/124924/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a box up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115312", "images": ["AURORA/data/something/frames/191646/first.jpg", "AURORA/data/something/frames/191646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pear onto the book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115313", "images": ["AURORA/data/something/frames/181561/first.jpg", "AURORA/data/something/frames/181561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115314", "images": ["AURORA/data/something/frames/52295/first.jpg", "AURORA/data/something/frames/52295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sphere and a stone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115315", "images": ["AURORA/data/something/frames/206638/first.jpg", "AURORA/data/something/frames/206638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving binoculars away from bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115316", "images": ["AURORA/data/something/frames/174814/first.jpg", "AURORA/data/something/frames/174814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115317", "images": ["AURORA/data/something/frames/104635/first.jpg", "AURORA/data/something/frames/104635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115318", "images": ["AURORA/data/something/frames/127683/first.jpg", "AURORA/data/something/frames/127683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen from a desk drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115319", "images": ["AURORA/data/something/frames/212644/first.jpg", "AURORA/data/something/frames/212644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115320", "images": ["AURORA/data/something/frames/2322/first.jpg", "AURORA/data/something/frames/2322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chess board from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115321", "images": ["AURORA/data/something/frames/179755/first.jpg", "AURORA/data/something/frames/179755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tablet into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115322", "images": ["AURORA/data/something/frames/206826/first.jpg", "AURORA/data/something/frames/206826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115323", "images": ["AURORA/data/something/frames/216913/first.jpg", "AURORA/data/something/frames/216913/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000115324", "images": ["AURORA/data/something/frames/72089/first.jpg", "AURORA/data/something/frames/72089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip to handle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115325", "images": ["AURORA/data/something/frames/150265/first.jpg", "AURORA/data/something/frames/150265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a matchbox so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115326", "images": ["AURORA/data/something/frames/188857/first.jpg", "AURORA/data/something/frames/188857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter closer to tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115327", "images": ["AURORA/data/something/frames/159804/first.jpg", "AURORA/data/something/frames/159804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping wallet over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115328", "images": ["AURORA/data/something/frames/111066/first.jpg", "AURORA/data/something/frames/111066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coin away from a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115329", "images": ["AURORA/data/something/frames/218135/first.jpg", "AURORA/data/something/frames/218135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115330", "images": ["AURORA/data/something/frames/195877/first.jpg", "AURORA/data/something/frames/195877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115331", "images": ["AURORA/data/something/frames/12828/first.jpg", "AURORA/data/something/frames/12828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a card reader so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115332", "images": ["AURORA/data/something/frames/152224/first.jpg", "AURORA/data/something/frames/152224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115333", "images": ["AURORA/data/something/frames/114314/first.jpg", "AURORA/data/something/frames/114314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil from educational kits"}, {"from": "gpt", "value": ""}]} +{"id": "000000115334", "images": ["AURORA/data/something/frames/72576/first.jpg", "AURORA/data/something/frames/72576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115335", "images": ["AURORA/data/something/frames/53650/first.jpg", "AURORA/data/something/frames/53650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy car being deflected from mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115336", "images": ["AURORA/data/something/frames/94371/first.jpg", "AURORA/data/something/frames/94371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl in front of pencil sharpener"}, {"from": "gpt", "value": ""}]} +{"id": "000000115337", "images": ["AURORA/data/something/frames/177656/first.jpg", "AURORA/data/something/frames/177656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115338", "images": ["AURORA/data/something/frames/30481/first.jpg", "AURORA/data/something/frames/30481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115339", "images": ["AURORA/data/something/frames/43477/first.jpg", "AURORA/data/something/frames/43477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing table from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115340", "images": ["AURORA/data/something/frames/144859/first.jpg", "AURORA/data/something/frames/144859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000115341", "images": ["AURORA/data/something/frames/71054/first.jpg", "AURORA/data/something/frames/71054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pencil from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115342", "images": ["AURORA/data/something/frames/12503/first.jpg", "AURORA/data/something/frames/12503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115343", "images": ["AURORA/data/something/frames/154348/first.jpg", "AURORA/data/something/frames/154348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cigarette into a pack of cigarettes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115344", "images": ["AURORA/data/something/frames/74125/first.jpg", "AURORA/data/something/frames/74125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming traffic light"}, {"from": "gpt", "value": ""}]} +{"id": "000000115345", "images": ["AURORA/data/something/frames/63204/first.jpg", "AURORA/data/something/frames/63204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a stapler upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115346", "images": ["AURORA/data/something/frames/23126/first.jpg", "AURORA/data/something/frames/23126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming love birds"}, {"from": "gpt", "value": ""}]} +{"id": "000000115347", "images": ["AURORA/data/something/frames/111388/first.jpg", "AURORA/data/something/frames/111388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115348", "images": ["AURORA/data/something/frames/138537/first.jpg", "AURORA/data/something/frames/138537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying electronic cigarette on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115349", "images": ["AURORA/data/something/frames/171868/first.jpg", "AURORA/data/something/frames/171868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting jarlid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115350", "images": ["AURORA/data/something/frames/114543/first.jpg", "AURORA/data/something/frames/114543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors and remote control away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115351", "images": ["AURORA/data/something/frames/55927/first.jpg", "AURORA/data/something/frames/55927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering remote with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115352", "images": ["AURORA/data/something/frames/151631/first.jpg", "AURORA/data/something/frames/151631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with fabric"}, {"from": "gpt", "value": ""}]} +{"id": "000000115353", "images": ["AURORA/data/something/frames/205567/first.jpg", "AURORA/data/something/frames/205567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle, spanner and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115354", "images": ["AURORA/data/something/frames/47916/first.jpg", "AURORA/data/something/frames/47916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a sharpener with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115355", "images": ["AURORA/data/something/frames/19508/first.jpg", "AURORA/data/something/frames/19508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000115356", "images": ["AURORA/data/something/frames/100122/first.jpg", "AURORA/data/something/frames/100122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking wiimote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115357", "images": ["AURORA/data/something/frames/60486/first.jpg", "AURORA/data/something/frames/60486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading soap onto cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115358", "images": ["AURORA/data/something/frames/100819/first.jpg", "AURORA/data/something/frames/100819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115359", "images": ["AURORA/data/something/frames/160246/first.jpg", "AURORA/data/something/frames/160246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a steel glass colliding with another steel glass and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115360", "images": ["AURORA/data/something/frames/115764/first.jpg", "AURORA/data/something/frames/115764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin next to a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115361", "images": ["AURORA/data/something/frames/181866/first.jpg", "AURORA/data/something/frames/181866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115362", "images": ["AURORA/data/something/frames/84385/first.jpg", "AURORA/data/something/frames/84385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115363", "images": ["AURORA/data/something/frames/10025/first.jpg", "AURORA/data/something/frames/10025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115364", "images": ["AURORA/data/something/frames/107887/first.jpg", "AURORA/data/something/frames/107887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of wood log without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115365", "images": ["AURORA/data/something/frames/28043/first.jpg", "AURORA/data/something/frames/28043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bag upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115366", "images": ["AURORA/data/something/frames/28140/first.jpg", "AURORA/data/something/frames/28140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mice from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115367", "images": ["AURORA/data/something/frames/169163/first.jpg", "AURORA/data/something/frames/169163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping duster next to green bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115368", "images": ["AURORA/data/something/frames/166717/first.jpg", "AURORA/data/something/frames/166717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop in front of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000115369", "images": ["AURORA/data/something/frames/108720/first.jpg", "AURORA/data/something/frames/108720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wifi pod"}, {"from": "gpt", "value": ""}]} +{"id": "000000115370", "images": ["AURORA/data/something/frames/56254/first.jpg", "AURORA/data/something/frames/56254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115371", "images": ["AURORA/data/something/frames/84500/first.jpg", "AURORA/data/something/frames/84500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115372", "images": ["AURORA/data/something/frames/190818/first.jpg", "AURORA/data/something/frames/190818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking mobile battery so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115373", "images": ["AURORA/data/something/frames/98897/first.jpg", "AURORA/data/something/frames/98897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking flowers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115374", "images": ["AURORA/data/something/frames/212171/first.jpg", "AURORA/data/something/frames/212171/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paint brush behind paper holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115375", "images": ["AURORA/data/something/frames/199147/first.jpg", "AURORA/data/something/frames/199147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging a piece of garlic out of rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000115376", "images": ["AURORA/data/something/frames/54508/first.jpg", "AURORA/data/something/frames/54508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115377", "images": ["AURORA/data/something/frames/21482/first.jpg", "AURORA/data/something/frames/21482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting food container with sandal"}, {"from": "gpt", "value": ""}]} +{"id": "000000115378", "images": ["AURORA/data/something/frames/203/first.jpg", "AURORA/data/something/frames/203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bowl on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115379", "images": ["AURORA/data/something/frames/156106/first.jpg", "AURORA/data/something/frames/156106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000115380", "images": ["AURORA/data/something/frames/126638/first.jpg", "AURORA/data/something/frames/126638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cloth from behind of pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115381", "images": ["AURORA/data/something/frames/32235/first.jpg", "AURORA/data/something/frames/32235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and wallet so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115382", "images": ["AURORA/data/something/frames/174895/first.jpg", "AURORA/data/something/frames/174895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting water jug up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115383", "images": ["AURORA/data/something/frames/156949/first.jpg", "AURORA/data/something/frames/156949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115384", "images": ["AURORA/data/something/frames/155958/first.jpg", "AURORA/data/something/frames/155958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white book marker from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115385", "images": ["AURORA/data/something/frames/81282/first.jpg", "AURORA/data/something/frames/81282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a green container with a yellow saucer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115386", "images": ["AURORA/data/something/frames/189851/first.jpg", "AURORA/data/something/frames/189851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering book with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115387", "images": ["AURORA/data/something/frames/56007/first.jpg", "AURORA/data/something/frames/56007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115388", "images": ["AURORA/data/something/frames/66668/first.jpg", "AURORA/data/something/frames/66668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle away from toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000115389", "images": ["AURORA/data/something/frames/51263/first.jpg", "AURORA/data/something/frames/51263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping snus into snusdisk"}, {"from": "gpt", "value": ""}]} +{"id": "000000115390", "images": ["AURORA/data/something/frames/213148/first.jpg", "AURORA/data/something/frames/213148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115391", "images": ["AURORA/data/something/frames/220735/first.jpg", "AURORA/data/something/frames/220735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chair with a foot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115392", "images": ["AURORA/data/something/frames/112775/first.jpg", "AURORA/data/something/frames/112775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming rice cooker"}, {"from": "gpt", "value": ""}]} +{"id": "000000115393", "images": ["AURORA/data/something/frames/167567/first.jpg", "AURORA/data/something/frames/167567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115394", "images": ["AURORA/data/something/frames/141791/first.jpg", "AURORA/data/something/frames/141791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring something out of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115395", "images": ["AURORA/data/something/frames/152602/first.jpg", "AURORA/data/something/frames/152602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring orange juice into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115396", "images": ["AURORA/data/something/frames/178922/first.jpg", "AURORA/data/something/frames/178922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending flexible microphone so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115397", "images": ["AURORA/data/something/frames/108814/first.jpg", "AURORA/data/something/frames/108814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115398", "images": ["AURORA/data/something/frames/77633/first.jpg", "AURORA/data/something/frames/77633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115399", "images": ["AURORA/data/something/frames/82500/first.jpg", "AURORA/data/something/frames/82500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115400", "images": ["AURORA/data/something/frames/78404/first.jpg", "AURORA/data/something/frames/78404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting iphone with sock on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115401", "images": ["AURORA/data/something/frames/93635/first.jpg", "AURORA/data/something/frames/93635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering plush doll with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115402", "images": ["AURORA/data/something/frames/11436/first.jpg", "AURORA/data/something/frames/11436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an apple with a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115403", "images": ["AURORA/data/something/frames/164404/first.jpg", "AURORA/data/something/frames/164404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115404", "images": ["AURORA/data/something/frames/158423/first.jpg", "AURORA/data/something/frames/158423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cd and cd away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115405", "images": ["AURORA/data/something/frames/166600/first.jpg", "AURORA/data/something/frames/166600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing compressed fuel can so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115406", "images": ["AURORA/data/something/frames/62634/first.jpg", "AURORA/data/something/frames/62634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small sharpener from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115407", "images": ["AURORA/data/something/frames/144516/first.jpg", "AURORA/data/something/frames/144516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a light plug into a standard socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115408", "images": ["AURORA/data/something/frames/107143/first.jpg", "AURORA/data/something/frames/107143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of dice so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115409", "images": ["AURORA/data/something/frames/186059/first.jpg", "AURORA/data/something/frames/186059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115410", "images": ["AURORA/data/something/frames/168735/first.jpg", "AURORA/data/something/frames/168735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115411", "images": ["AURORA/data/something/frames/136630/first.jpg", "AURORA/data/something/frames/136630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a deodorant next to a glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000115412", "images": ["AURORA/data/something/frames/202946/first.jpg", "AURORA/data/something/frames/202946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a color into a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115413", "images": ["AURORA/data/something/frames/130936/first.jpg", "AURORA/data/something/frames/130936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115414", "images": ["AURORA/data/something/frames/145467/first.jpg", "AURORA/data/something/frames/145467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115415", "images": ["AURORA/data/something/frames/70828/first.jpg", "AURORA/data/something/frames/70828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving compass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115416", "images": ["AURORA/data/something/frames/149101/first.jpg", "AURORA/data/something/frames/149101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing piller"}, {"from": "gpt", "value": ""}]} +{"id": "000000115417", "images": ["AURORA/data/something/frames/44324/first.jpg", "AURORA/data/something/frames/44324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000115418", "images": ["AURORA/data/something/frames/94411/first.jpg", "AURORA/data/something/frames/94411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) computermaus of computermaus"}, {"from": "gpt", "value": ""}]} +{"id": "000000115419", "images": ["AURORA/data/something/frames/26824/first.jpg", "AURORA/data/something/frames/26824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bowl with book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115420", "images": ["AURORA/data/something/frames/201048/first.jpg", "AURORA/data/something/frames/201048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet closer to coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115421", "images": ["AURORA/data/something/frames/91016/first.jpg", "AURORA/data/something/frames/91016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green toy car and white toy car so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115422", "images": ["AURORA/data/something/frames/116414/first.jpg", "AURORA/data/something/frames/116414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bags into another plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115423", "images": ["AURORA/data/something/frames/153581/first.jpg", "AURORA/data/something/frames/153581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brush from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115424", "images": ["AURORA/data/something/frames/185793/first.jpg", "AURORA/data/something/frames/185793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping marker off of whiteboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000115425", "images": ["AURORA/data/something/frames/22957/first.jpg", "AURORA/data/something/frames/22957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with chalk on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115426", "images": ["AURORA/data/something/frames/149075/first.jpg", "AURORA/data/something/frames/149075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a wallet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115427", "images": ["AURORA/data/something/frames/6597/first.jpg", "AURORA/data/something/frames/6597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115428", "images": ["AURORA/data/something/frames/220074/first.jpg", "AURORA/data/something/frames/220074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115429", "images": ["AURORA/data/something/frames/97455/first.jpg", "AURORA/data/something/frames/97455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a screwdriver behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115430", "images": ["AURORA/data/something/frames/181038/first.jpg", "AURORA/data/something/frames/181038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a piece of cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115431", "images": ["AURORA/data/something/frames/145321/first.jpg", "AURORA/data/something/frames/145321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115432", "images": ["AURORA/data/something/frames/60451/first.jpg", "AURORA/data/something/frames/60451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115433", "images": ["AURORA/data/something/frames/13950/first.jpg", "AURORA/data/something/frames/13950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115434", "images": ["AURORA/data/something/frames/109339/first.jpg", "AURORA/data/something/frames/109339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothbrush in front of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115435", "images": ["AURORA/data/something/frames/1942/first.jpg", "AURORA/data/something/frames/1942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tobacco into packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115436", "images": ["AURORA/data/something/frames/179153/first.jpg", "AURORA/data/something/frames/179153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup behind the mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115437", "images": ["AURORA/data/something/frames/159183/first.jpg", "AURORA/data/something/frames/159183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle and candle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115438", "images": ["AURORA/data/something/frames/214331/first.jpg", "AURORA/data/something/frames/214331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and stand away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115439", "images": ["AURORA/data/something/frames/2196/first.jpg", "AURORA/data/something/frames/2196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pink water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115440", "images": ["AURORA/data/something/frames/59886/first.jpg", "AURORA/data/something/frames/59886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115441", "images": ["AURORA/data/something/frames/153874/first.jpg", "AURORA/data/something/frames/153874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming bulb light"}, {"from": "gpt", "value": ""}]} +{"id": "000000115442", "images": ["AURORA/data/something/frames/210486/first.jpg", "AURORA/data/something/frames/210486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115443", "images": ["AURORA/data/something/frames/127756/first.jpg", "AURORA/data/something/frames/127756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 violet colour pocket foldable knives onto white container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115444", "images": ["AURORA/data/something/frames/164854/first.jpg", "AURORA/data/something/frames/164854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar closer to jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115445", "images": ["AURORA/data/something/frames/178974/first.jpg", "AURORA/data/something/frames/178974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a board game"}, {"from": "gpt", "value": ""}]} +{"id": "000000115446", "images": ["AURORA/data/something/frames/228/first.jpg", "AURORA/data/something/frames/228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115447", "images": ["AURORA/data/something/frames/65596/first.jpg", "AURORA/data/something/frames/65596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115448", "images": ["AURORA/data/something/frames/138651/first.jpg", "AURORA/data/something/frames/138651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking card out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115449", "images": ["AURORA/data/something/frames/129907/first.jpg", "AURORA/data/something/frames/129907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115450", "images": ["AURORA/data/something/frames/115971/first.jpg", "AURORA/data/something/frames/115971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115451", "images": ["AURORA/data/something/frames/120937/first.jpg", "AURORA/data/something/frames/120937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing orange paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115452", "images": ["AURORA/data/something/frames/33763/first.jpg", "AURORA/data/something/frames/33763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pebbles onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115453", "images": ["AURORA/data/something/frames/183965/first.jpg", "AURORA/data/something/frames/183965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pillow upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115454", "images": ["AURORA/data/something/frames/126010/first.jpg", "AURORA/data/something/frames/126010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115455", "images": ["AURORA/data/something/frames/12383/first.jpg", "AURORA/data/something/frames/12383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker onto rug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115456", "images": ["AURORA/data/something/frames/95303/first.jpg", "AURORA/data/something/frames/95303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking tree so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115457", "images": ["AURORA/data/something/frames/58143/first.jpg", "AURORA/data/something/frames/58143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone next to a glue stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000115458", "images": ["AURORA/data/something/frames/90590/first.jpg", "AURORA/data/something/frames/90590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball point pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115459", "images": ["AURORA/data/something/frames/141045/first.jpg", "AURORA/data/something/frames/141045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen next to a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115460", "images": ["AURORA/data/something/frames/26724/first.jpg", "AURORA/data/something/frames/26724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dvds with dvds"}, {"from": "gpt", "value": ""}]} +{"id": "000000115461", "images": ["AURORA/data/something/frames/139278/first.jpg", "AURORA/data/something/frames/139278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000115462", "images": ["AURORA/data/something/frames/207594/first.jpg", "AURORA/data/something/frames/207594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screwdriver into the case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115463", "images": ["AURORA/data/something/frames/218761/first.jpg", "AURORA/data/something/frames/218761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water canteen upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115464", "images": ["AURORA/data/something/frames/140002/first.jpg", "AURORA/data/something/frames/140002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115465", "images": ["AURORA/data/something/frames/7408/first.jpg", "AURORA/data/something/frames/7408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a small bottle colliding with another bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115466", "images": ["AURORA/data/something/frames/213560/first.jpg", "AURORA/data/something/frames/213560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wine key upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115467", "images": ["AURORA/data/something/frames/193921/first.jpg", "AURORA/data/something/frames/193921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115468", "images": ["AURORA/data/something/frames/86333/first.jpg", "AURORA/data/something/frames/86333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115469", "images": ["AURORA/data/something/frames/74428/first.jpg", "AURORA/data/something/frames/74428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling hair oil from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115470", "images": ["AURORA/data/something/frames/65522/first.jpg", "AURORA/data/something/frames/65522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing money into wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115471", "images": ["AURORA/data/something/frames/148962/first.jpg", "AURORA/data/something/frames/148962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping key onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115472", "images": ["AURORA/data/something/frames/141286/first.jpg", "AURORA/data/something/frames/141286/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting power bank, rubix cube and a musical tabala on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115473", "images": ["AURORA/data/something/frames/127861/first.jpg", "AURORA/data/something/frames/127861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115474", "images": ["AURORA/data/something/frames/185672/first.jpg", "AURORA/data/something/frames/185672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115475", "images": ["AURORA/data/something/frames/55129/first.jpg", "AURORA/data/something/frames/55129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling lime juice onto a bowl of tomatoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115476", "images": ["AURORA/data/something/frames/104299/first.jpg", "AURORA/data/something/frames/104299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle next to folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115477", "images": ["AURORA/data/something/frames/114782/first.jpg", "AURORA/data/something/frames/114782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tv dish antenna with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115478", "images": ["AURORA/data/something/frames/132977/first.jpg", "AURORA/data/something/frames/132977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dry erase marker off of a marker board"}, {"from": "gpt", "value": ""}]} +{"id": "000000115479", "images": ["AURORA/data/something/frames/208059/first.jpg", "AURORA/data/something/frames/208059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping wallet up with hands"}, {"from": "gpt", "value": ""}]} +{"id": "000000115480", "images": ["AURORA/data/something/frames/105848/first.jpg", "AURORA/data/something/frames/105848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115481", "images": ["AURORA/data/something/frames/16831/first.jpg", "AURORA/data/something/frames/16831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115482", "images": ["AURORA/data/something/frames/146444/first.jpg", "AURORA/data/something/frames/146444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a coaster down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115483", "images": ["AURORA/data/something/frames/93316/first.jpg", "AURORA/data/something/frames/93316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stopper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115484", "images": ["AURORA/data/something/frames/201441/first.jpg", "AURORA/data/something/frames/201441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coconut water onto placemat"}, {"from": "gpt", "value": ""}]} +{"id": "000000115485", "images": ["AURORA/data/something/frames/64881/first.jpg", "AURORA/data/something/frames/64881/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115486", "images": ["AURORA/data/something/frames/184721/first.jpg", "AURORA/data/something/frames/184721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black pouch bag from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115487", "images": ["AURORA/data/something/frames/52185/first.jpg", "AURORA/data/something/frames/52185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering briefcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000115488", "images": ["AURORA/data/something/frames/189592/first.jpg", "AURORA/data/something/frames/189592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing candle tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115489", "images": ["AURORA/data/something/frames/191302/first.jpg", "AURORA/data/something/frames/191302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115490", "images": ["AURORA/data/something/frames/195493/first.jpg", "AURORA/data/something/frames/195493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending folder so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115491", "images": ["AURORA/data/something/frames/138069/first.jpg", "AURORA/data/something/frames/138069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white deodorant from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115492", "images": ["AURORA/data/something/frames/36982/first.jpg", "AURORA/data/something/frames/36982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bicycle-bell next to door-bell"}, {"from": "gpt", "value": ""}]} +{"id": "000000115493", "images": ["AURORA/data/something/frames/33186/first.jpg", "AURORA/data/something/frames/33186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling towel from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115494", "images": ["AURORA/data/something/frames/143902/first.jpg", "AURORA/data/something/frames/143902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115495", "images": ["AURORA/data/something/frames/153769/first.jpg", "AURORA/data/something/frames/153769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing earring from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115496", "images": ["AURORA/data/something/frames/80552/first.jpg", "AURORA/data/something/frames/80552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cycle towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115497", "images": ["AURORA/data/something/frames/14875/first.jpg", "AURORA/data/something/frames/14875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching something to something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115498", "images": ["AURORA/data/something/frames/61770/first.jpg", "AURORA/data/something/frames/61770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sharpener next to an envelope"}, {"from": "gpt", "value": ""}]} +{"id": "000000115499", "images": ["AURORA/data/something/frames/89328/first.jpg", "AURORA/data/something/frames/89328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening piano"}, {"from": "gpt", "value": ""}]} +{"id": "000000115500", "images": ["AURORA/data/something/frames/15441/first.jpg", "AURORA/data/something/frames/15441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a pendrive to a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000115501", "images": ["AURORA/data/something/frames/82952/first.jpg", "AURORA/data/something/frames/82952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115502", "images": ["AURORA/data/something/frames/154002/first.jpg", "AURORA/data/something/frames/154002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115503", "images": ["AURORA/data/something/frames/122108/first.jpg", "AURORA/data/something/frames/122108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the key out of the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115504", "images": ["AURORA/data/something/frames/203130/first.jpg", "AURORA/data/something/frames/203130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a toy frog to a white board"}, {"from": "gpt", "value": ""}]} +{"id": "000000115505", "images": ["AURORA/data/something/frames/207937/first.jpg", "AURORA/data/something/frames/207937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen out of a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115506", "images": ["AURORA/data/something/frames/119827/first.jpg", "AURORA/data/something/frames/119827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a coupon into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115507", "images": ["AURORA/data/something/frames/92486/first.jpg", "AURORA/data/something/frames/92486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115508", "images": ["AURORA/data/something/frames/86284/first.jpg", "AURORA/data/something/frames/86284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tube into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115509", "images": ["AURORA/data/something/frames/15031/first.jpg", "AURORA/data/something/frames/15031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115510", "images": ["AURORA/data/something/frames/147276/first.jpg", "AURORA/data/something/frames/147276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a toy car and a fridge magnet closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115511", "images": ["AURORA/data/something/frames/182162/first.jpg", "AURORA/data/something/frames/182162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bra onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000115512", "images": ["AURORA/data/something/frames/126188/first.jpg", "AURORA/data/something/frames/126188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000115513", "images": ["AURORA/data/something/frames/19571/first.jpg", "AURORA/data/something/frames/19571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000115514", "images": ["AURORA/data/something/frames/202641/first.jpg", "AURORA/data/something/frames/202641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green bowl from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115515", "images": ["AURORA/data/something/frames/53427/first.jpg", "AURORA/data/something/frames/53427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115516", "images": ["AURORA/data/something/frames/120525/first.jpg", "AURORA/data/something/frames/120525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115517", "images": ["AURORA/data/something/frames/124082/first.jpg", "AURORA/data/something/frames/124082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000115518", "images": ["AURORA/data/something/frames/155379/first.jpg", "AURORA/data/something/frames/155379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling plates up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115519", "images": ["AURORA/data/something/frames/83394/first.jpg", "AURORA/data/something/frames/83394/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115520", "images": ["AURORA/data/something/frames/138819/first.jpg", "AURORA/data/something/frames/138819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000115521", "images": ["AURORA/data/something/frames/156724/first.jpg", "AURORA/data/something/frames/156724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing bags into plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115522", "images": ["AURORA/data/something/frames/28235/first.jpg", "AURORA/data/something/frames/28235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a pin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115523", "images": ["AURORA/data/something/frames/209702/first.jpg", "AURORA/data/something/frames/209702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and jug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115524", "images": ["AURORA/data/something/frames/40175/first.jpg", "AURORA/data/something/frames/40175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a screwdriver on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115525", "images": ["AURORA/data/something/frames/181958/first.jpg", "AURORA/data/something/frames/181958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching rice cooker with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115526", "images": ["AURORA/data/something/frames/152807/first.jpg", "AURORA/data/something/frames/152807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115527", "images": ["AURORA/data/something/frames/43069/first.jpg", "AURORA/data/something/frames/43069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115528", "images": ["AURORA/data/something/frames/219576/first.jpg", "AURORA/data/something/frames/219576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115529", "images": ["AURORA/data/something/frames/142086/first.jpg", "AURORA/data/something/frames/142086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115530", "images": ["AURORA/data/something/frames/68409/first.jpg", "AURORA/data/something/frames/68409/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring orange juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115531", "images": ["AURORA/data/something/frames/35727/first.jpg", "AURORA/data/something/frames/35727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening refridgerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000115532", "images": ["AURORA/data/something/frames/56453/first.jpg", "AURORA/data/something/frames/56453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115533", "images": ["AURORA/data/something/frames/179758/first.jpg", "AURORA/data/something/frames/179758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming flower"}, {"from": "gpt", "value": ""}]} +{"id": "000000115534", "images": ["AURORA/data/something/frames/110654/first.jpg", "AURORA/data/something/frames/110654/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping stopper onto sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000115535", "images": ["AURORA/data/something/frames/128039/first.jpg", "AURORA/data/something/frames/128039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a table fan with a scissor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115536", "images": ["AURORA/data/something/frames/52285/first.jpg", "AURORA/data/something/frames/52285/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking five xbox games"}, {"from": "gpt", "value": ""}]} +{"id": "000000115537", "images": ["AURORA/data/something/frames/23695/first.jpg", "AURORA/data/something/frames/23695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming one tea light candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115538", "images": ["AURORA/data/something/frames/15445/first.jpg", "AURORA/data/something/frames/15445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting pepper grinder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115539", "images": ["AURORA/data/something/frames/209176/first.jpg", "AURORA/data/something/frames/209176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting punching machine up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115540", "images": ["AURORA/data/something/frames/199029/first.jpg", "AURORA/data/something/frames/199029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115541", "images": ["AURORA/data/something/frames/81777/first.jpg", "AURORA/data/something/frames/81777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a peg being deflected from a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115542", "images": ["AURORA/data/something/frames/179093/first.jpg", "AURORA/data/something/frames/179093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115543", "images": ["AURORA/data/something/frames/16914/first.jpg", "AURORA/data/something/frames/16914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115544", "images": ["AURORA/data/something/frames/117126/first.jpg", "AURORA/data/something/frames/117126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000115545", "images": ["AURORA/data/something/frames/9634/first.jpg", "AURORA/data/something/frames/9634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a peg upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115546", "images": ["AURORA/data/something/frames/99700/first.jpg", "AURORA/data/something/frames/99700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting punching machine and stapler on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115547", "images": ["AURORA/data/something/frames/196678/first.jpg", "AURORA/data/something/frames/196678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shot glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115548", "images": ["AURORA/data/something/frames/94289/first.jpg", "AURORA/data/something/frames/94289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115549", "images": ["AURORA/data/something/frames/169728/first.jpg", "AURORA/data/something/frames/169728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115550", "images": ["AURORA/data/something/frames/218384/first.jpg", "AURORA/data/something/frames/218384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115551", "images": ["AURORA/data/something/frames/66505/first.jpg", "AURORA/data/something/frames/66505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000115552", "images": ["AURORA/data/something/frames/13689/first.jpg", "AURORA/data/something/frames/13689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115553", "images": ["AURORA/data/something/frames/44104/first.jpg", "AURORA/data/something/frames/44104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115554", "images": ["AURORA/data/something/frames/87459/first.jpg", "AURORA/data/something/frames/87459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box and comb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115555", "images": ["AURORA/data/something/frames/62501/first.jpg", "AURORA/data/something/frames/62501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the side of a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000115556", "images": ["AURORA/data/something/frames/166231/first.jpg", "AURORA/data/something/frames/166231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing tennisball behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115557", "images": ["AURORA/data/something/frames/3552/first.jpg", "AURORA/data/something/frames/3552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking scissors from chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000115558", "images": ["AURORA/data/something/frames/91176/first.jpg", "AURORA/data/something/frames/91176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle cap until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115559", "images": ["AURORA/data/something/frames/18048/first.jpg", "AURORA/data/something/frames/18048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping tea up with teacup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115560", "images": ["AURORA/data/something/frames/148294/first.jpg", "AURORA/data/something/frames/148294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic cover similar to other plastic covers that are already on the table]"}, {"from": "gpt", "value": ""}]} +{"id": "000000115561", "images": ["AURORA/data/something/frames/100516/first.jpg", "AURORA/data/something/frames/100516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red watch case from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115562", "images": ["AURORA/data/something/frames/57505/first.jpg", "AURORA/data/something/frames/57505/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115563", "images": ["AURORA/data/something/frames/84387/first.jpg", "AURORA/data/something/frames/84387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking broom from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115564", "images": ["AURORA/data/something/frames/20005/first.jpg", "AURORA/data/something/frames/20005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115565", "images": ["AURORA/data/something/frames/177365/first.jpg", "AURORA/data/something/frames/177365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000115566", "images": ["AURORA/data/something/frames/153539/first.jpg", "AURORA/data/something/frames/153539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115567", "images": ["AURORA/data/something/frames/88175/first.jpg", "AURORA/data/something/frames/88175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sweet packet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115568", "images": ["AURORA/data/something/frames/210714/first.jpg", "AURORA/data/something/frames/210714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115569", "images": ["AURORA/data/something/frames/33539/first.jpg", "AURORA/data/something/frames/33539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling swab out of pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115570", "images": ["AURORA/data/something/frames/11755/first.jpg", "AURORA/data/something/frames/11755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000115571", "images": ["AURORA/data/something/frames/73395/first.jpg", "AURORA/data/something/frames/73395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming house"}, {"from": "gpt", "value": ""}]} +{"id": "000000115572", "images": ["AURORA/data/something/frames/194882/first.jpg", "AURORA/data/something/frames/194882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting table with bat"}, {"from": "gpt", "value": ""}]} +{"id": "000000115573", "images": ["AURORA/data/something/frames/92283/first.jpg", "AURORA/data/something/frames/92283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115574", "images": ["AURORA/data/something/frames/129145/first.jpg", "AURORA/data/something/frames/129145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon into a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115575", "images": ["AURORA/data/something/frames/6565/first.jpg", "AURORA/data/something/frames/6565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a plastic bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115576", "images": ["AURORA/data/something/frames/2799/first.jpg", "AURORA/data/something/frames/2799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115577", "images": ["AURORA/data/something/frames/37952/first.jpg", "AURORA/data/something/frames/37952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sleeping bag into its storage pocket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115578", "images": ["AURORA/data/something/frames/166890/first.jpg", "AURORA/data/something/frames/166890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115579", "images": ["AURORA/data/something/frames/173179/first.jpg", "AURORA/data/something/frames/173179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115580", "images": ["AURORA/data/something/frames/132594/first.jpg", "AURORA/data/something/frames/132594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering apple with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115581", "images": ["AURORA/data/something/frames/6921/first.jpg", "AURORA/data/something/frames/6921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115582", "images": ["AURORA/data/something/frames/119790/first.jpg", "AURORA/data/something/frames/119790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper next to headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000115583", "images": ["AURORA/data/something/frames/71761/first.jpg", "AURORA/data/something/frames/71761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115584", "images": ["AURORA/data/something/frames/154864/first.jpg", "AURORA/data/something/frames/154864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115585", "images": ["AURORA/data/something/frames/127334/first.jpg", "AURORA/data/something/frames/127334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon out of a saucepan"}, {"from": "gpt", "value": ""}]} +{"id": "000000115586", "images": ["AURORA/data/something/frames/12693/first.jpg", "AURORA/data/something/frames/12693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115587", "images": ["AURORA/data/something/frames/203203/first.jpg", "AURORA/data/something/frames/203203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into switchboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000115588", "images": ["AURORA/data/something/frames/158053/first.jpg", "AURORA/data/something/frames/158053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate and glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115589", "images": ["AURORA/data/something/frames/32060/first.jpg", "AURORA/data/something/frames/32060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) a part of post it notes"}, {"from": "gpt", "value": ""}]} +{"id": "000000115590", "images": ["AURORA/data/something/frames/86680/first.jpg", "AURORA/data/something/frames/86680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing newspaper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115591", "images": ["AURORA/data/something/frames/151454/first.jpg", "AURORA/data/something/frames/151454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink water bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115592", "images": ["AURORA/data/something/frames/164180/first.jpg", "AURORA/data/something/frames/164180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ruler and a wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115593", "images": ["AURORA/data/something/frames/162925/first.jpg", "AURORA/data/something/frames/162925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115594", "images": ["AURORA/data/something/frames/65371/first.jpg", "AURORA/data/something/frames/65371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000115595", "images": ["AURORA/data/something/frames/97459/first.jpg", "AURORA/data/something/frames/97459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a doll"}, {"from": "gpt", "value": ""}]} +{"id": "000000115596", "images": ["AURORA/data/something/frames/106405/first.jpg", "AURORA/data/something/frames/106405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper bag just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115597", "images": ["AURORA/data/something/frames/176052/first.jpg", "AURORA/data/something/frames/176052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable closer to usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000115598", "images": ["AURORA/data/something/frames/473/first.jpg", "AURORA/data/something/frames/473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115599", "images": ["AURORA/data/something/frames/150353/first.jpg", "AURORA/data/something/frames/150353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping coffee grounds up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115600", "images": ["AURORA/data/something/frames/69578/first.jpg", "AURORA/data/something/frames/69578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a lid so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115601", "images": ["AURORA/data/something/frames/6977/first.jpg", "AURORA/data/something/frames/6977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a phone onto a folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000115602", "images": ["AURORA/data/something/frames/62609/first.jpg", "AURORA/data/something/frames/62609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mouthwash bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115603", "images": ["AURORA/data/something/frames/32167/first.jpg", "AURORA/data/something/frames/32167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottlecap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115604", "images": ["AURORA/data/something/frames/42331/first.jpg", "AURORA/data/something/frames/42331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring behind pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000115605", "images": ["AURORA/data/something/frames/144820/first.jpg", "AURORA/data/something/frames/144820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spanner down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115606", "images": ["AURORA/data/something/frames/79557/first.jpg", "AURORA/data/something/frames/79557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a computer charger into a wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115607", "images": ["AURORA/data/something/frames/132080/first.jpg", "AURORA/data/something/frames/132080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jam behind peanut butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000115608", "images": ["AURORA/data/something/frames/220647/first.jpg", "AURORA/data/something/frames/220647/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115609", "images": ["AURORA/data/something/frames/29625/first.jpg", "AURORA/data/something/frames/29625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking poking chapstick so it falls so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115610", "images": ["AURORA/data/something/frames/14227/first.jpg", "AURORA/data/something/frames/14227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115611", "images": ["AURORA/data/something/frames/51220/first.jpg", "AURORA/data/something/frames/51220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of shoe without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115612", "images": ["AURORA/data/something/frames/89639/first.jpg", "AURORA/data/something/frames/89639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115613", "images": ["AURORA/data/something/frames/203224/first.jpg", "AURORA/data/something/frames/203224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone cover with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115614", "images": ["AURORA/data/something/frames/74945/first.jpg", "AURORA/data/something/frames/74945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking tape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115615", "images": ["AURORA/data/something/frames/71501/first.jpg", "AURORA/data/something/frames/71501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering board clip with cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115616", "images": ["AURORA/data/something/frames/119103/first.jpg", "AURORA/data/something/frames/119103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115617", "images": ["AURORA/data/something/frames/194513/first.jpg", "AURORA/data/something/frames/194513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of lotion on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115618", "images": ["AURORA/data/something/frames/4570/first.jpg", "AURORA/data/something/frames/4570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a picture underneath a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115619", "images": ["AURORA/data/something/frames/12724/first.jpg", "AURORA/data/something/frames/12724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving garlic presser away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115620", "images": ["AURORA/data/something/frames/100007/first.jpg", "AURORA/data/something/frames/100007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming park"}, {"from": "gpt", "value": ""}]} +{"id": "000000115621", "images": ["AURORA/data/something/frames/60290/first.jpg", "AURORA/data/something/frames/60290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic mug on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115622", "images": ["AURORA/data/something/frames/218804/first.jpg", "AURORA/data/something/frames/218804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screwdriver with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115623", "images": ["AURORA/data/something/frames/16999/first.jpg", "AURORA/data/something/frames/16999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115624", "images": ["AURORA/data/something/frames/26996/first.jpg", "AURORA/data/something/frames/26996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into the dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115625", "images": ["AURORA/data/something/frames/57327/first.jpg", "AURORA/data/something/frames/57327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115626", "images": ["AURORA/data/something/frames/85782/first.jpg", "AURORA/data/something/frames/85782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something similar to color tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000115627", "images": ["AURORA/data/something/frames/128292/first.jpg", "AURORA/data/something/frames/128292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning toy link upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115628", "images": ["AURORA/data/something/frames/4367/first.jpg", "AURORA/data/something/frames/4367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115629", "images": ["AURORA/data/something/frames/159419/first.jpg", "AURORA/data/something/frames/159419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a hard drive of a server"}, {"from": "gpt", "value": ""}]} +{"id": "000000115630", "images": ["AURORA/data/something/frames/126580/first.jpg", "AURORA/data/something/frames/126580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a coin from a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115631", "images": ["AURORA/data/something/frames/73787/first.jpg", "AURORA/data/something/frames/73787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting firm plastic up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115632", "images": ["AURORA/data/something/frames/207565/first.jpg", "AURORA/data/something/frames/207565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 candles"}, {"from": "gpt", "value": ""}]} +{"id": "000000115633", "images": ["AURORA/data/something/frames/120453/first.jpg", "AURORA/data/something/frames/120453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a watering pipe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115634", "images": ["AURORA/data/something/frames/91402/first.jpg", "AURORA/data/something/frames/91402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and bowl away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115635", "images": ["AURORA/data/something/frames/187794/first.jpg", "AURORA/data/something/frames/187794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cloth, battery and packing tape on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115636", "images": ["AURORA/data/something/frames/115479/first.jpg", "AURORA/data/something/frames/115479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into hair gel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115637", "images": ["AURORA/data/something/frames/109472/first.jpg", "AURORA/data/something/frames/109472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115638", "images": ["AURORA/data/something/frames/217753/first.jpg", "AURORA/data/something/frames/217753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000115639", "images": ["AURORA/data/something/frames/209716/first.jpg", "AURORA/data/something/frames/209716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115640", "images": ["AURORA/data/something/frames/156164/first.jpg", "AURORA/data/something/frames/156164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a cardboard container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115641", "images": ["AURORA/data/something/frames/146236/first.jpg", "AURORA/data/something/frames/146236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115642", "images": ["AURORA/data/something/frames/64277/first.jpg", "AURORA/data/something/frames/64277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115643", "images": ["AURORA/data/something/frames/28699/first.jpg", "AURORA/data/something/frames/28699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a ball colliding with a ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115644", "images": ["AURORA/data/something/frames/45515/first.jpg", "AURORA/data/something/frames/45515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping envelopes next to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115645", "images": ["AURORA/data/something/frames/218831/first.jpg", "AURORA/data/something/frames/218831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115646", "images": ["AURORA/data/something/frames/218317/first.jpg", "AURORA/data/something/frames/218317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115647", "images": ["AURORA/data/something/frames/81964/first.jpg", "AURORA/data/something/frames/81964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a head phones cable into an ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000115648", "images": ["AURORA/data/something/frames/152011/first.jpg", "AURORA/data/something/frames/152011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115649", "images": ["AURORA/data/something/frames/50154/first.jpg", "AURORA/data/something/frames/50154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115650", "images": ["AURORA/data/something/frames/115762/first.jpg", "AURORA/data/something/frames/115762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening diary"}, {"from": "gpt", "value": ""}]} +{"id": "000000115651", "images": ["AURORA/data/something/frames/47975/first.jpg", "AURORA/data/something/frames/47975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115652", "images": ["AURORA/data/something/frames/27192/first.jpg", "AURORA/data/something/frames/27192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cotton into toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000115653", "images": ["AURORA/data/something/frames/1077/first.jpg", "AURORA/data/something/frames/1077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115654", "images": ["AURORA/data/something/frames/57796/first.jpg", "AURORA/data/something/frames/57796/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115655", "images": ["AURORA/data/something/frames/132509/first.jpg", "AURORA/data/something/frames/132509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000115656", "images": ["AURORA/data/something/frames/197582/first.jpg", "AURORA/data/something/frames/197582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing window"}, {"from": "gpt", "value": ""}]} +{"id": "000000115657", "images": ["AURORA/data/something/frames/20943/first.jpg", "AURORA/data/something/frames/20943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning small book upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115658", "images": ["AURORA/data/something/frames/58339/first.jpg", "AURORA/data/something/frames/58339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115659", "images": ["AURORA/data/something/frames/133154/first.jpg", "AURORA/data/something/frames/133154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning water botle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115660", "images": ["AURORA/data/something/frames/194291/first.jpg", "AURORA/data/something/frames/194291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115661", "images": ["AURORA/data/something/frames/156292/first.jpg", "AURORA/data/something/frames/156292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling emblem from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115662", "images": ["AURORA/data/something/frames/23209/first.jpg", "AURORA/data/something/frames/23209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115663", "images": ["AURORA/data/something/frames/132011/first.jpg", "AURORA/data/something/frames/132011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115664", "images": ["AURORA/data/something/frames/161610/first.jpg", "AURORA/data/something/frames/161610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug in front of clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000115665", "images": ["AURORA/data/something/frames/103127/first.jpg", "AURORA/data/something/frames/103127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115666", "images": ["AURORA/data/something/frames/127812/first.jpg", "AURORA/data/something/frames/127812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115667", "images": ["AURORA/data/something/frames/123079/first.jpg", "AURORA/data/something/frames/123079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115668", "images": ["AURORA/data/something/frames/184347/first.jpg", "AURORA/data/something/frames/184347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000115669", "images": ["AURORA/data/something/frames/42048/first.jpg", "AURORA/data/something/frames/42048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115670", "images": ["AURORA/data/something/frames/127270/first.jpg", "AURORA/data/something/frames/127270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115671", "images": ["AURORA/data/something/frames/217193/first.jpg", "AURORA/data/something/frames/217193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115672", "images": ["AURORA/data/something/frames/145526/first.jpg", "AURORA/data/something/frames/145526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spoon colliding with spoon and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000115673", "images": ["AURORA/data/something/frames/214510/first.jpg", "AURORA/data/something/frames/214510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging toaster into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115674", "images": ["AURORA/data/something/frames/76799/first.jpg", "AURORA/data/something/frames/76799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding 50 peso bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000115675", "images": ["AURORA/data/something/frames/212740/first.jpg", "AURORA/data/something/frames/212740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote, cream tube and candle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115676", "images": ["AURORA/data/something/frames/135075/first.jpg", "AURORA/data/something/frames/135075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ball being deflected from cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115677", "images": ["AURORA/data/something/frames/159132/first.jpg", "AURORA/data/something/frames/159132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000115678", "images": ["AURORA/data/something/frames/28397/first.jpg", "AURORA/data/something/frames/28397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving game up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115679", "images": ["AURORA/data/something/frames/80494/first.jpg", "AURORA/data/something/frames/80494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115680", "images": ["AURORA/data/something/frames/129306/first.jpg", "AURORA/data/something/frames/129306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker off of books"}, {"from": "gpt", "value": ""}]} +{"id": "000000115681", "images": ["AURORA/data/something/frames/130688/first.jpg", "AURORA/data/something/frames/130688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115682", "images": ["AURORA/data/something/frames/166547/first.jpg", "AURORA/data/something/frames/166547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into bowl, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115683", "images": ["AURORA/data/something/frames/91042/first.jpg", "AURORA/data/something/frames/91042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115684", "images": ["AURORA/data/something/frames/215601/first.jpg", "AURORA/data/something/frames/215601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting dishwashing liquid and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115685", "images": ["AURORA/data/something/frames/67672/first.jpg", "AURORA/data/something/frames/67672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming sugar container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115686", "images": ["AURORA/data/something/frames/148768/first.jpg", "AURORA/data/something/frames/148768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wet towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115687", "images": ["AURORA/data/something/frames/196781/first.jpg", "AURORA/data/something/frames/196781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000115688", "images": ["AURORA/data/something/frames/206019/first.jpg", "AURORA/data/something/frames/206019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a sweet on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115689", "images": ["AURORA/data/something/frames/130384/first.jpg", "AURORA/data/something/frames/130384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115690", "images": ["AURORA/data/something/frames/29278/first.jpg", "AURORA/data/something/frames/29278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mousepad underneath mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000115691", "images": ["AURORA/data/something/frames/26322/first.jpg", "AURORA/data/something/frames/26322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of remote without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115692", "images": ["AURORA/data/something/frames/171717/first.jpg", "AURORA/data/something/frames/171717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a notecard just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115693", "images": ["AURORA/data/something/frames/67039/first.jpg", "AURORA/data/something/frames/67039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115694", "images": ["AURORA/data/something/frames/193838/first.jpg", "AURORA/data/something/frames/193838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing newspaper into a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115695", "images": ["AURORA/data/something/frames/108777/first.jpg", "AURORA/data/something/frames/108777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a notecard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115696", "images": ["AURORA/data/something/frames/93233/first.jpg", "AURORA/data/something/frames/93233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115697", "images": ["AURORA/data/something/frames/45293/first.jpg", "AURORA/data/something/frames/45293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a nickle with a coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115698", "images": ["AURORA/data/something/frames/160093/first.jpg", "AURORA/data/something/frames/160093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a glass closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115699", "images": ["AURORA/data/something/frames/148517/first.jpg", "AURORA/data/something/frames/148517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling containers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115700", "images": ["AURORA/data/something/frames/49748/first.jpg", "AURORA/data/something/frames/49748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115701", "images": ["AURORA/data/something/frames/136949/first.jpg", "AURORA/data/something/frames/136949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing plastic cap, revealing pebble behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115702", "images": ["AURORA/data/something/frames/188756/first.jpg", "AURORA/data/something/frames/188756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock and rock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115703", "images": ["AURORA/data/something/frames/144837/first.jpg", "AURORA/data/something/frames/144837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a toothbrus so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115704", "images": ["AURORA/data/something/frames/72793/first.jpg", "AURORA/data/something/frames/72793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking jacket out of rack"}, {"from": "gpt", "value": ""}]} +{"id": "000000115705", "images": ["AURORA/data/something/frames/204292/first.jpg", "AURORA/data/something/frames/204292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115706", "images": ["AURORA/data/something/frames/163019/first.jpg", "AURORA/data/something/frames/163019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering table with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115707", "images": ["AURORA/data/something/frames/24103/first.jpg", "AURORA/data/something/frames/24103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting deodorant next to cream"}, {"from": "gpt", "value": ""}]} +{"id": "000000115708", "images": ["AURORA/data/something/frames/105930/first.jpg", "AURORA/data/something/frames/105930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) rag wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115709", "images": ["AURORA/data/something/frames/125617/first.jpg", "AURORA/data/something/frames/125617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115710", "images": ["AURORA/data/something/frames/113188/first.jpg", "AURORA/data/something/frames/113188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115711", "images": ["AURORA/data/something/frames/35636/first.jpg", "AURORA/data/something/frames/35636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115712", "images": ["AURORA/data/something/frames/29216/first.jpg", "AURORA/data/something/frames/29216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup stains off of a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115713", "images": ["AURORA/data/something/frames/20742/first.jpg", "AURORA/data/something/frames/20742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle with movie on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115714", "images": ["AURORA/data/something/frames/165008/first.jpg", "AURORA/data/something/frames/165008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a cup colliding with an apple and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115715", "images": ["AURORA/data/something/frames/74289/first.jpg", "AURORA/data/something/frames/74289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toothpick upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115716", "images": ["AURORA/data/something/frames/179471/first.jpg", "AURORA/data/something/frames/179471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring toothpaste onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115717", "images": ["AURORA/data/something/frames/142250/first.jpg", "AURORA/data/something/frames/142250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a plastic knife until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115718", "images": ["AURORA/data/something/frames/77214/first.jpg", "AURORA/data/something/frames/77214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115719", "images": ["AURORA/data/something/frames/111958/first.jpg", "AURORA/data/something/frames/111958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115720", "images": ["AURORA/data/something/frames/46420/first.jpg", "AURORA/data/something/frames/46420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lighter away from book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115721", "images": ["AURORA/data/something/frames/159237/first.jpg", "AURORA/data/something/frames/159237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet to a refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000115722", "images": ["AURORA/data/something/frames/107674/first.jpg", "AURORA/data/something/frames/107674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing flowers into woodbowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115723", "images": ["AURORA/data/something/frames/168093/first.jpg", "AURORA/data/something/frames/168093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000115724", "images": ["AURORA/data/something/frames/51127/first.jpg", "AURORA/data/something/frames/51127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing glass from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115725", "images": ["AURORA/data/something/frames/107744/first.jpg", "AURORA/data/something/frames/107744/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115726", "images": ["AURORA/data/something/frames/157451/first.jpg", "AURORA/data/something/frames/157451/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil sharpener in front of scotch tape"}, {"from": "gpt", "value": ""}]} +{"id": "000000115727", "images": ["AURORA/data/something/frames/42363/first.jpg", "AURORA/data/something/frames/42363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping groundnuts into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115728", "images": ["AURORA/data/something/frames/177864/first.jpg", "AURORA/data/something/frames/177864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting white badge and black toy wheel on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115729", "images": ["AURORA/data/something/frames/3396/first.jpg", "AURORA/data/something/frames/3396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping chapstick over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115730", "images": ["AURORA/data/something/frames/27116/first.jpg", "AURORA/data/something/frames/27116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging rocks out of towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115731", "images": ["AURORA/data/something/frames/83751/first.jpg", "AURORA/data/something/frames/83751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115732", "images": ["AURORA/data/something/frames/114135/first.jpg", "AURORA/data/something/frames/114135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115733", "images": ["AURORA/data/something/frames/8778/first.jpg", "AURORA/data/something/frames/8778/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a soap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115734", "images": ["AURORA/data/something/frames/218205/first.jpg", "AURORA/data/something/frames/218205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting box with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115735", "images": ["AURORA/data/something/frames/60410/first.jpg", "AURORA/data/something/frames/60410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many forks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115736", "images": ["AURORA/data/something/frames/171095/first.jpg", "AURORA/data/something/frames/171095/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cube behind dish"}, {"from": "gpt", "value": ""}]} +{"id": "000000115737", "images": ["AURORA/data/something/frames/18582/first.jpg", "AURORA/data/something/frames/18582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115738", "images": ["AURORA/data/something/frames/138429/first.jpg", "AURORA/data/something/frames/138429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115739", "images": ["AURORA/data/something/frames/111038/first.jpg", "AURORA/data/something/frames/111038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering the tulips with a magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000115740", "images": ["AURORA/data/something/frames/82480/first.jpg", "AURORA/data/something/frames/82480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115741", "images": ["AURORA/data/something/frames/179688/first.jpg", "AURORA/data/something/frames/179688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pen colliding with another pen and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115742", "images": ["AURORA/data/something/frames/54234/first.jpg", "AURORA/data/something/frames/54234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cloth into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115743", "images": ["AURORA/data/something/frames/86103/first.jpg", "AURORA/data/something/frames/86103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencile out of glas"}, {"from": "gpt", "value": ""}]} +{"id": "000000115744", "images": ["AURORA/data/something/frames/12898/first.jpg", "AURORA/data/something/frames/12898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white chalk away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115745", "images": ["AURORA/data/something/frames/208486/first.jpg", "AURORA/data/something/frames/208486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candle into a bougeoir"}, {"from": "gpt", "value": ""}]} +{"id": "000000115746", "images": ["AURORA/data/something/frames/106214/first.jpg", "AURORA/data/something/frames/106214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115747", "images": ["AURORA/data/something/frames/140784/first.jpg", "AURORA/data/something/frames/140784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping litter up with shovel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115748", "images": ["AURORA/data/something/frames/31438/first.jpg", "AURORA/data/something/frames/31438/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115749", "images": ["AURORA/data/something/frames/128636/first.jpg", "AURORA/data/something/frames/128636/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115750", "images": ["AURORA/data/something/frames/1183/first.jpg", "AURORA/data/something/frames/1183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pillow into a backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000115751", "images": ["AURORA/data/something/frames/94296/first.jpg", "AURORA/data/something/frames/94296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115752", "images": ["AURORA/data/something/frames/132094/first.jpg", "AURORA/data/something/frames/132094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching paper to wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000115753", "images": ["AURORA/data/something/frames/23517/first.jpg", "AURORA/data/something/frames/23517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing orange, revealing coin behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115754", "images": ["AURORA/data/something/frames/81051/first.jpg", "AURORA/data/something/frames/81051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cigarette lighter up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115755", "images": ["AURORA/data/something/frames/217225/first.jpg", "AURORA/data/something/frames/217225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115756", "images": ["AURORA/data/something/frames/128688/first.jpg", "AURORA/data/something/frames/128688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115757", "images": ["AURORA/data/something/frames/82454/first.jpg", "AURORA/data/something/frames/82454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming advertisment board"}, {"from": "gpt", "value": ""}]} +{"id": "000000115758", "images": ["AURORA/data/something/frames/212224/first.jpg", "AURORA/data/something/frames/212224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115759", "images": ["AURORA/data/something/frames/172789/first.jpg", "AURORA/data/something/frames/172789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115760", "images": ["AURORA/data/something/frames/31715/first.jpg", "AURORA/data/something/frames/31715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into pillow case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115761", "images": ["AURORA/data/something/frames/123758/first.jpg", "AURORA/data/something/frames/123758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting sticky note with sharpener on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115762", "images": ["AURORA/data/something/frames/146024/first.jpg", "AURORA/data/something/frames/146024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spoon from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115763", "images": ["AURORA/data/something/frames/123028/first.jpg", "AURORA/data/something/frames/123028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115764", "images": ["AURORA/data/something/frames/183416/first.jpg", "AURORA/data/something/frames/183416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning plastic cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115765", "images": ["AURORA/data/something/frames/69903/first.jpg", "AURORA/data/something/frames/69903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air freshener into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115766", "images": ["AURORA/data/something/frames/62678/first.jpg", "AURORA/data/something/frames/62678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving earring down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115767", "images": ["AURORA/data/something/frames/208126/first.jpg", "AURORA/data/something/frames/208126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a mug up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115768", "images": ["AURORA/data/something/frames/177640/first.jpg", "AURORA/data/something/frames/177640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering broom"}, {"from": "gpt", "value": ""}]} +{"id": "000000115769", "images": ["AURORA/data/something/frames/177713/first.jpg", "AURORA/data/something/frames/177713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting setquare behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115770", "images": ["AURORA/data/something/frames/145491/first.jpg", "AURORA/data/something/frames/145491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115771", "images": ["AURORA/data/something/frames/157681/first.jpg", "AURORA/data/something/frames/157681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115772", "images": ["AURORA/data/something/frames/91917/first.jpg", "AURORA/data/something/frames/91917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soap on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115773", "images": ["AURORA/data/something/frames/148184/first.jpg", "AURORA/data/something/frames/148184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a white cup next to a black cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115774", "images": ["AURORA/data/something/frames/209254/first.jpg", "AURORA/data/something/frames/209254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling green hair comb from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115775", "images": ["AURORA/data/something/frames/7805/first.jpg", "AURORA/data/something/frames/7805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving staple down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115776", "images": ["AURORA/data/something/frames/138714/first.jpg", "AURORA/data/something/frames/138714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet behind pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000115777", "images": ["AURORA/data/something/frames/204752/first.jpg", "AURORA/data/something/frames/204752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115778", "images": ["AURORA/data/something/frames/205071/first.jpg", "AURORA/data/something/frames/205071/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000115779", "images": ["AURORA/data/something/frames/121337/first.jpg", "AURORA/data/something/frames/121337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115780", "images": ["AURORA/data/something/frames/108716/first.jpg", "AURORA/data/something/frames/108716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting laptop with charger on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115781", "images": ["AURORA/data/something/frames/71532/first.jpg", "AURORA/data/something/frames/71532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing waste cloth just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115782", "images": ["AURORA/data/something/frames/96389/first.jpg", "AURORA/data/something/frames/96389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115783", "images": ["AURORA/data/something/frames/55854/first.jpg", "AURORA/data/something/frames/55854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000115784", "images": ["AURORA/data/something/frames/46256/first.jpg", "AURORA/data/something/frames/46256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting newspaper on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115785", "images": ["AURORA/data/something/frames/28806/first.jpg", "AURORA/data/something/frames/28806/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brown case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115786", "images": ["AURORA/data/something/frames/37516/first.jpg", "AURORA/data/something/frames/37516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a wrap wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115787", "images": ["AURORA/data/something/frames/128150/first.jpg", "AURORA/data/something/frames/128150/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tennis ball being deflected from cd stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000115788", "images": ["AURORA/data/something/frames/21472/first.jpg", "AURORA/data/something/frames/21472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying rock in dirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115789", "images": ["AURORA/data/something/frames/799/first.jpg", "AURORA/data/something/frames/799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000115790", "images": ["AURORA/data/something/frames/70598/first.jpg", "AURORA/data/something/frames/70598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000115791", "images": ["AURORA/data/something/frames/97487/first.jpg", "AURORA/data/something/frames/97487/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pink water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115792", "images": ["AURORA/data/something/frames/170007/first.jpg", "AURORA/data/something/frames/170007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink water bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115793", "images": ["AURORA/data/something/frames/184507/first.jpg", "AURORA/data/something/frames/184507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115794", "images": ["AURORA/data/something/frames/84085/first.jpg", "AURORA/data/something/frames/84085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissues into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115795", "images": ["AURORA/data/something/frames/51984/first.jpg", "AURORA/data/something/frames/51984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a notebook across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115796", "images": ["AURORA/data/something/frames/108352/first.jpg", "AURORA/data/something/frames/108352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing brochure into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115797", "images": ["AURORA/data/something/frames/212936/first.jpg", "AURORA/data/something/frames/212936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115798", "images": ["AURORA/data/something/frames/171027/first.jpg", "AURORA/data/something/frames/171027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing a child's water bottle top across kitchen counter from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115799", "images": ["AURORA/data/something/frames/82117/first.jpg", "AURORA/data/something/frames/82117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a pack of gum on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115800", "images": ["AURORA/data/something/frames/132832/first.jpg", "AURORA/data/something/frames/132832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115801", "images": ["AURORA/data/something/frames/21376/first.jpg", "AURORA/data/something/frames/21376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting block with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115802", "images": ["AURORA/data/something/frames/126968/first.jpg", "AURORA/data/something/frames/126968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000115803", "images": ["AURORA/data/something/frames/214697/first.jpg", "AURORA/data/something/frames/214697/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a water bottle and a mug closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115804", "images": ["AURORA/data/something/frames/195096/first.jpg", "AURORA/data/something/frames/195096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115805", "images": ["AURORA/data/something/frames/45963/first.jpg", "AURORA/data/something/frames/45963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting adapter in front of key"}, {"from": "gpt", "value": ""}]} +{"id": "000000115806", "images": ["AURORA/data/something/frames/63496/first.jpg", "AURORA/data/something/frames/63496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming rubber"}, {"from": "gpt", "value": ""}]} +{"id": "000000115807", "images": ["AURORA/data/something/frames/168997/first.jpg", "AURORA/data/something/frames/168997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tea box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115808", "images": ["AURORA/data/something/frames/206979/first.jpg", "AURORA/data/something/frames/206979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115809", "images": ["AURORA/data/something/frames/93879/first.jpg", "AURORA/data/something/frames/93879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting carton lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000115810", "images": ["AURORA/data/something/frames/50783/first.jpg", "AURORA/data/something/frames/50783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115811", "images": ["AURORA/data/something/frames/3011/first.jpg", "AURORA/data/something/frames/3011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hand towel on the edge of counter so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115812", "images": ["AURORA/data/something/frames/123911/first.jpg", "AURORA/data/something/frames/123911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stapler with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115813", "images": ["AURORA/data/something/frames/50091/first.jpg", "AURORA/data/something/frames/50091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) wet cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115814", "images": ["AURORA/data/something/frames/195032/first.jpg", "AURORA/data/something/frames/195032/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white envelope from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115815", "images": ["AURORA/data/something/frames/180159/first.jpg", "AURORA/data/something/frames/180159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bag from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115816", "images": ["AURORA/data/something/frames/62119/first.jpg", "AURORA/data/something/frames/62119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping towel onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000115817", "images": ["AURORA/data/something/frames/129999/first.jpg", "AURORA/data/something/frames/129999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching an electronic portier to its base"}, {"from": "gpt", "value": ""}]} +{"id": "000000115818", "images": ["AURORA/data/something/frames/127152/first.jpg", "AURORA/data/something/frames/127152/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115819", "images": ["AURORA/data/something/frames/79405/first.jpg", "AURORA/data/something/frames/79405/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into laptop computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000115820", "images": ["AURORA/data/something/frames/209055/first.jpg", "AURORA/data/something/frames/209055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000115821", "images": ["AURORA/data/something/frames/8378/first.jpg", "AURORA/data/something/frames/8378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000115822", "images": ["AURORA/data/something/frames/54709/first.jpg", "AURORA/data/something/frames/54709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster, remote and tissue box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115823", "images": ["AURORA/data/something/frames/28142/first.jpg", "AURORA/data/something/frames/28142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115824", "images": ["AURORA/data/something/frames/91618/first.jpg", "AURORA/data/something/frames/91618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and lid away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115825", "images": ["AURORA/data/something/frames/192775/first.jpg", "AURORA/data/something/frames/192775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting green toy car and toy wheel on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115826", "images": ["AURORA/data/something/frames/18316/first.jpg", "AURORA/data/something/frames/18316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115827", "images": ["AURORA/data/something/frames/196757/first.jpg", "AURORA/data/something/frames/196757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning playdough upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115828", "images": ["AURORA/data/something/frames/146940/first.jpg", "AURORA/data/something/frames/146940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a water bottle with a pen over, so water falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115829", "images": ["AURORA/data/something/frames/175251/first.jpg", "AURORA/data/something/frames/175251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of egg carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000115830", "images": ["AURORA/data/something/frames/117704/first.jpg", "AURORA/data/something/frames/117704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115831", "images": ["AURORA/data/something/frames/109889/first.jpg", "AURORA/data/something/frames/109889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115832", "images": ["AURORA/data/something/frames/210652/first.jpg", "AURORA/data/something/frames/210652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yogurt and butter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115833", "images": ["AURORA/data/something/frames/16997/first.jpg", "AURORA/data/something/frames/16997/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving block closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115834", "images": ["AURORA/data/something/frames/71474/first.jpg", "AURORA/data/something/frames/71474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purse onto sponze"}, {"from": "gpt", "value": ""}]} +{"id": "000000115835", "images": ["AURORA/data/something/frames/78475/first.jpg", "AURORA/data/something/frames/78475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bed with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115836", "images": ["AURORA/data/something/frames/29205/first.jpg", "AURORA/data/something/frames/29205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen with marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115837", "images": ["AURORA/data/something/frames/131856/first.jpg", "AURORA/data/something/frames/131856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000115838", "images": ["AURORA/data/something/frames/11531/first.jpg", "AURORA/data/something/frames/11531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eye kajal and pendrive closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115839", "images": ["AURORA/data/something/frames/119750/first.jpg", "AURORA/data/something/frames/119750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tape being deflected from deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000115840", "images": ["AURORA/data/something/frames/181358/first.jpg", "AURORA/data/something/frames/181358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from usb with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115841", "images": ["AURORA/data/something/frames/195387/first.jpg", "AURORA/data/something/frames/195387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into extension cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000115842", "images": ["AURORA/data/something/frames/173422/first.jpg", "AURORA/data/something/frames/173422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115843", "images": ["AURORA/data/something/frames/213158/first.jpg", "AURORA/data/something/frames/213158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping paperclip holder with finger over, so paperclips falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115844", "images": ["AURORA/data/something/frames/40161/first.jpg", "AURORA/data/something/frames/40161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 cups"}, {"from": "gpt", "value": ""}]} +{"id": "000000115845", "images": ["AURORA/data/something/frames/137038/first.jpg", "AURORA/data/something/frames/137038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a speaker on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115846", "images": ["AURORA/data/something/frames/25709/first.jpg", "AURORA/data/something/frames/25709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115847", "images": ["AURORA/data/something/frames/175508/first.jpg", "AURORA/data/something/frames/175508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a train from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115848", "images": ["AURORA/data/something/frames/15201/first.jpg", "AURORA/data/something/frames/15201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering branch"}, {"from": "gpt", "value": ""}]} +{"id": "000000115849", "images": ["AURORA/data/something/frames/146020/first.jpg", "AURORA/data/something/frames/146020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pillow into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115850", "images": ["AURORA/data/something/frames/75502/first.jpg", "AURORA/data/something/frames/75502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115851", "images": ["AURORA/data/something/frames/69297/first.jpg", "AURORA/data/something/frames/69297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a candle jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000115852", "images": ["AURORA/data/something/frames/103052/first.jpg", "AURORA/data/something/frames/103052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lemon up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115853", "images": ["AURORA/data/something/frames/180921/first.jpg", "AURORA/data/something/frames/180921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115854", "images": ["AURORA/data/something/frames/171674/first.jpg", "AURORA/data/something/frames/171674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a deck of cards behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000115855", "images": ["AURORA/data/something/frames/75455/first.jpg", "AURORA/data/something/frames/75455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pincer up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115856", "images": ["AURORA/data/something/frames/56891/first.jpg", "AURORA/data/something/frames/56891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillow so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115857", "images": ["AURORA/data/something/frames/107137/first.jpg", "AURORA/data/something/frames/107137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000115858", "images": ["AURORA/data/something/frames/5231/first.jpg", "AURORA/data/something/frames/5231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a bowl colliding with a bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000115859", "images": ["AURORA/data/something/frames/583/first.jpg", "AURORA/data/something/frames/583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115860", "images": ["AURORA/data/something/frames/64853/first.jpg", "AURORA/data/something/frames/64853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smartphone across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115861", "images": ["AURORA/data/something/frames/144552/first.jpg", "AURORA/data/something/frames/144552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from flower with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115862", "images": ["AURORA/data/something/frames/211186/first.jpg", "AURORA/data/something/frames/211186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115863", "images": ["AURORA/data/something/frames/209947/first.jpg", "AURORA/data/something/frames/209947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving steel glass towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115864", "images": ["AURORA/data/something/frames/159542/first.jpg", "AURORA/data/something/frames/159542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cloth, revealing hairband behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000115865", "images": ["AURORA/data/something/frames/220316/first.jpg", "AURORA/data/something/frames/220316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ribbon down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115866", "images": ["AURORA/data/something/frames/27436/first.jpg", "AURORA/data/something/frames/27436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115867", "images": ["AURORA/data/something/frames/90121/first.jpg", "AURORA/data/something/frames/90121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from bolt with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115868", "images": ["AURORA/data/something/frames/185472/first.jpg", "AURORA/data/something/frames/185472/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115869", "images": ["AURORA/data/something/frames/197161/first.jpg", "AURORA/data/something/frames/197161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115870", "images": ["AURORA/data/something/frames/142705/first.jpg", "AURORA/data/something/frames/142705/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115871", "images": ["AURORA/data/something/frames/121328/first.jpg", "AURORA/data/something/frames/121328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairbrush into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115872", "images": ["AURORA/data/something/frames/87312/first.jpg", "AURORA/data/something/frames/87312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bread into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115873", "images": ["AURORA/data/something/frames/123652/first.jpg", "AURORA/data/something/frames/123652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pumpkin with a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115874", "images": ["AURORA/data/something/frames/137771/first.jpg", "AURORA/data/something/frames/137771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling chip crumbs onto paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115875", "images": ["AURORA/data/something/frames/115957/first.jpg", "AURORA/data/something/frames/115957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000115876", "images": ["AURORA/data/something/frames/169894/first.jpg", "AURORA/data/something/frames/169894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115877", "images": ["AURORA/data/something/frames/69895/first.jpg", "AURORA/data/something/frames/69895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115878", "images": ["AURORA/data/something/frames/33082/first.jpg", "AURORA/data/something/frames/33082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soup can"}, {"from": "gpt", "value": ""}]} +{"id": "000000115879", "images": ["AURORA/data/something/frames/63494/first.jpg", "AURORA/data/something/frames/63494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving brush and paper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115880", "images": ["AURORA/data/something/frames/99109/first.jpg", "AURORA/data/something/frames/99109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115881", "images": ["AURORA/data/something/frames/44140/first.jpg", "AURORA/data/something/frames/44140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towel into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000115882", "images": ["AURORA/data/something/frames/102422/first.jpg", "AURORA/data/something/frames/102422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115883", "images": ["AURORA/data/something/frames/138364/first.jpg", "AURORA/data/something/frames/138364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashlight on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115884", "images": ["AURORA/data/something/frames/80256/first.jpg", "AURORA/data/something/frames/80256/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairpins"}, {"from": "gpt", "value": ""}]} +{"id": "000000115885", "images": ["AURORA/data/something/frames/139261/first.jpg", "AURORA/data/something/frames/139261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging stone out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115886", "images": ["AURORA/data/something/frames/29911/first.jpg", "AURORA/data/something/frames/29911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into leaf"}, {"from": "gpt", "value": ""}]} +{"id": "000000115887", "images": ["AURORA/data/something/frames/69008/first.jpg", "AURORA/data/something/frames/69008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000115888", "images": ["AURORA/data/something/frames/143248/first.jpg", "AURORA/data/something/frames/143248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a bottle of perfume on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115889", "images": ["AURORA/data/something/frames/217737/first.jpg", "AURORA/data/something/frames/217737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cup with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115890", "images": ["AURORA/data/something/frames/154702/first.jpg", "AURORA/data/something/frames/154702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a coffee cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000115891", "images": ["AURORA/data/something/frames/66523/first.jpg", "AURORA/data/something/frames/66523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle cap with black cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115892", "images": ["AURORA/data/something/frames/183181/first.jpg", "AURORA/data/something/frames/183181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a marker so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115893", "images": ["AURORA/data/something/frames/143303/first.jpg", "AURORA/data/something/frames/143303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115894", "images": ["AURORA/data/something/frames/135947/first.jpg", "AURORA/data/something/frames/135947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a book so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115895", "images": ["AURORA/data/something/frames/106200/first.jpg", "AURORA/data/something/frames/106200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toothbrush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115896", "images": ["AURORA/data/something/frames/131223/first.jpg", "AURORA/data/something/frames/131223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red pencil sharpner from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115897", "images": ["AURORA/data/something/frames/102606/first.jpg", "AURORA/data/something/frames/102606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000115898", "images": ["AURORA/data/something/frames/45726/first.jpg", "AURORA/data/something/frames/45726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pendrive down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115899", "images": ["AURORA/data/something/frames/94488/first.jpg", "AURORA/data/something/frames/94488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mason jar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115900", "images": ["AURORA/data/something/frames/152430/first.jpg", "AURORA/data/something/frames/152430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glue stick on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115901", "images": ["AURORA/data/something/frames/177289/first.jpg", "AURORA/data/something/frames/177289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115902", "images": ["AURORA/data/something/frames/56444/first.jpg", "AURORA/data/something/frames/56444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000115903", "images": ["AURORA/data/something/frames/189496/first.jpg", "AURORA/data/something/frames/189496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening juicer cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000115904", "images": ["AURORA/data/something/frames/164586/first.jpg", "AURORA/data/something/frames/164586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving notebook up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115905", "images": ["AURORA/data/something/frames/41786/first.jpg", "AURORA/data/something/frames/41786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor behind glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115906", "images": ["AURORA/data/something/frames/117853/first.jpg", "AURORA/data/something/frames/117853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hair band out of green cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115907", "images": ["AURORA/data/something/frames/167586/first.jpg", "AURORA/data/something/frames/167586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115908", "images": ["AURORA/data/something/frames/4004/first.jpg", "AURORA/data/something/frames/4004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissor on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115909", "images": ["AURORA/data/something/frames/180648/first.jpg", "AURORA/data/something/frames/180648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spectacles case upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115910", "images": ["AURORA/data/something/frames/114296/first.jpg", "AURORA/data/something/frames/114296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000115911", "images": ["AURORA/data/something/frames/20414/first.jpg", "AURORA/data/something/frames/20414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115912", "images": ["AURORA/data/something/frames/104143/first.jpg", "AURORA/data/something/frames/104143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon, marble and sponge on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000115913", "images": ["AURORA/data/something/frames/74053/first.jpg", "AURORA/data/something/frames/74053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scissors behind tape dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000115914", "images": ["AURORA/data/something/frames/190246/first.jpg", "AURORA/data/something/frames/190246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dog plush towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115915", "images": ["AURORA/data/something/frames/124015/first.jpg", "AURORA/data/something/frames/124015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing heater component from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115916", "images": ["AURORA/data/something/frames/185398/first.jpg", "AURORA/data/something/frames/185398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115917", "images": ["AURORA/data/something/frames/181765/first.jpg", "AURORA/data/something/frames/181765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115918", "images": ["AURORA/data/something/frames/99861/first.jpg", "AURORA/data/something/frames/99861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115919", "images": ["AURORA/data/something/frames/13592/first.jpg", "AURORA/data/something/frames/13592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115920", "images": ["AURORA/data/something/frames/119635/first.jpg", "AURORA/data/something/frames/119635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming person"}, {"from": "gpt", "value": ""}]} +{"id": "000000115921", "images": ["AURORA/data/something/frames/102044/first.jpg", "AURORA/data/something/frames/102044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tin foil so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000115922", "images": ["AURORA/data/something/frames/22465/first.jpg", "AURORA/data/something/frames/22465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching flowers with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000115923", "images": ["AURORA/data/something/frames/150279/first.jpg", "AURORA/data/something/frames/150279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000115924", "images": ["AURORA/data/something/frames/167677/first.jpg", "AURORA/data/something/frames/167677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box of special k cereals next to a box of krave cereals"}, {"from": "gpt", "value": ""}]} +{"id": "000000115925", "images": ["AURORA/data/something/frames/9424/first.jpg", "AURORA/data/something/frames/9424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hairband with red spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115926", "images": ["AURORA/data/something/frames/4634/first.jpg", "AURORA/data/something/frames/4634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting clothe"}, {"from": "gpt", "value": ""}]} +{"id": "000000115927", "images": ["AURORA/data/something/frames/172716/first.jpg", "AURORA/data/something/frames/172716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lid off of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115928", "images": ["AURORA/data/something/frames/144680/first.jpg", "AURORA/data/something/frames/144680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a piece of cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000115929", "images": ["AURORA/data/something/frames/171605/first.jpg", "AURORA/data/something/frames/171605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sweet out of sweetbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115930", "images": ["AURORA/data/something/frames/126129/first.jpg", "AURORA/data/something/frames/126129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000115931", "images": ["AURORA/data/something/frames/97982/first.jpg", "AURORA/data/something/frames/97982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pincer from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000115932", "images": ["AURORA/data/something/frames/8793/first.jpg", "AURORA/data/something/frames/8793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three gift cards"}, {"from": "gpt", "value": ""}]} +{"id": "000000115933", "images": ["AURORA/data/something/frames/112536/first.jpg", "AURORA/data/something/frames/112536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: cow being deflected from door"}, {"from": "gpt", "value": ""}]} +{"id": "000000115934", "images": ["AURORA/data/something/frames/166599/first.jpg", "AURORA/data/something/frames/166599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting the compact disc into the compact disc case"}, {"from": "gpt", "value": ""}]} +{"id": "000000115935", "images": ["AURORA/data/something/frames/212129/first.jpg", "AURORA/data/something/frames/212129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115936", "images": ["AURORA/data/something/frames/153859/first.jpg", "AURORA/data/something/frames/153859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar container away from tomato"}, {"from": "gpt", "value": ""}]} +{"id": "000000115937", "images": ["AURORA/data/something/frames/172201/first.jpg", "AURORA/data/something/frames/172201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000115938", "images": ["AURORA/data/something/frames/125766/first.jpg", "AURORA/data/something/frames/125766/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115939", "images": ["AURORA/data/something/frames/159460/first.jpg", "AURORA/data/something/frames/159460/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115940", "images": ["AURORA/data/something/frames/85701/first.jpg", "AURORA/data/something/frames/85701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming sign post"}, {"from": "gpt", "value": ""}]} +{"id": "000000115941", "images": ["AURORA/data/something/frames/215254/first.jpg", "AURORA/data/something/frames/215254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering soap with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000115942", "images": ["AURORA/data/something/frames/26337/first.jpg", "AURORA/data/something/frames/26337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mouse with a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000115943", "images": ["AURORA/data/something/frames/62208/first.jpg", "AURORA/data/something/frames/62208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a gift card to a bandage box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115944", "images": ["AURORA/data/something/frames/70330/first.jpg", "AURORA/data/something/frames/70330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115945", "images": ["AURORA/data/something/frames/103985/first.jpg", "AURORA/data/something/frames/103985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000115946", "images": ["AURORA/data/something/frames/58565/first.jpg", "AURORA/data/something/frames/58565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000115947", "images": ["AURORA/data/something/frames/161676/first.jpg", "AURORA/data/something/frames/161676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115948", "images": ["AURORA/data/something/frames/177827/first.jpg", "AURORA/data/something/frames/177827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of leaves so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115949", "images": ["AURORA/data/something/frames/212417/first.jpg", "AURORA/data/something/frames/212417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115950", "images": ["AURORA/data/something/frames/81516/first.jpg", "AURORA/data/something/frames/81516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with match box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115951", "images": ["AURORA/data/something/frames/186012/first.jpg", "AURORA/data/something/frames/186012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing hard paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000115952", "images": ["AURORA/data/something/frames/163038/first.jpg", "AURORA/data/something/frames/163038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving part of dvd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000115953", "images": ["AURORA/data/something/frames/180231/first.jpg", "AURORA/data/something/frames/180231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115954", "images": ["AURORA/data/something/frames/119376/first.jpg", "AURORA/data/something/frames/119376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin in front of a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000115955", "images": ["AURORA/data/something/frames/197680/first.jpg", "AURORA/data/something/frames/197680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115956", "images": ["AURORA/data/something/frames/46375/first.jpg", "AURORA/data/something/frames/46375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115957", "images": ["AURORA/data/something/frames/136257/first.jpg", "AURORA/data/something/frames/136257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing scissors so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000115958", "images": ["AURORA/data/something/frames/46811/first.jpg", "AURORA/data/something/frames/46811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000115959", "images": ["AURORA/data/something/frames/17162/first.jpg", "AURORA/data/something/frames/17162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming toothpaste box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115960", "images": ["AURORA/data/something/frames/146415/first.jpg", "AURORA/data/something/frames/146415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a twig until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000115961", "images": ["AURORA/data/something/frames/12942/first.jpg", "AURORA/data/something/frames/12942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000115962", "images": ["AURORA/data/something/frames/118525/first.jpg", "AURORA/data/something/frames/118525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000115963", "images": ["AURORA/data/something/frames/180779/first.jpg", "AURORA/data/something/frames/180779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle onto table edge so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115964", "images": ["AURORA/data/something/frames/151963/first.jpg", "AURORA/data/something/frames/151963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rule down"}, {"from": "gpt", "value": ""}]} +{"id": "000000115965", "images": ["AURORA/data/something/frames/194101/first.jpg", "AURORA/data/something/frames/194101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115966", "images": ["AURORA/data/something/frames/7703/first.jpg", "AURORA/data/something/frames/7703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sand up with shovel"}, {"from": "gpt", "value": ""}]} +{"id": "000000115967", "images": ["AURORA/data/something/frames/165080/first.jpg", "AURORA/data/something/frames/165080/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubik cube next to card"}, {"from": "gpt", "value": ""}]} +{"id": "000000115968", "images": ["AURORA/data/something/frames/377/first.jpg", "AURORA/data/something/frames/377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cookie box lid with green toy car on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115969", "images": ["AURORA/data/something/frames/142837/first.jpg", "AURORA/data/something/frames/142837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115970", "images": ["AURORA/data/something/frames/7496/first.jpg", "AURORA/data/something/frames/7496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping an empty ice cream cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115971", "images": ["AURORA/data/something/frames/151509/first.jpg", "AURORA/data/something/frames/151509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000115972", "images": ["AURORA/data/something/frames/140857/first.jpg", "AURORA/data/something/frames/140857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator next to a pencase"}, {"from": "gpt", "value": ""}]} +{"id": "000000115973", "images": ["AURORA/data/something/frames/161514/first.jpg", "AURORA/data/something/frames/161514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming sunset"}, {"from": "gpt", "value": ""}]} +{"id": "000000115974", "images": ["AURORA/data/something/frames/202253/first.jpg", "AURORA/data/something/frames/202253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting lamp with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115975", "images": ["AURORA/data/something/frames/167415/first.jpg", "AURORA/data/something/frames/167415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000115976", "images": ["AURORA/data/something/frames/30414/first.jpg", "AURORA/data/something/frames/30414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a block of paper on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115977", "images": ["AURORA/data/something/frames/36094/first.jpg", "AURORA/data/something/frames/36094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling tissue boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115978", "images": ["AURORA/data/something/frames/62874/first.jpg", "AURORA/data/something/frames/62874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115979", "images": ["AURORA/data/something/frames/1694/first.jpg", "AURORA/data/something/frames/1694/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000115980", "images": ["AURORA/data/something/frames/168854/first.jpg", "AURORA/data/something/frames/168854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plate with rubber duck on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000115981", "images": ["AURORA/data/something/frames/19081/first.jpg", "AURORA/data/something/frames/19081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a plate with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000115982", "images": ["AURORA/data/something/frames/75788/first.jpg", "AURORA/data/something/frames/75788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something that cannot upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000115983", "images": ["AURORA/data/something/frames/153026/first.jpg", "AURORA/data/something/frames/153026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing gate with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000115984", "images": ["AURORA/data/something/frames/179551/first.jpg", "AURORA/data/something/frames/179551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green chalk from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000115985", "images": ["AURORA/data/something/frames/100751/first.jpg", "AURORA/data/something/frames/100751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000115986", "images": ["AURORA/data/something/frames/196829/first.jpg", "AURORA/data/something/frames/196829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing towels into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000115987", "images": ["AURORA/data/something/frames/185313/first.jpg", "AURORA/data/something/frames/185313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000115988", "images": ["AURORA/data/something/frames/146053/first.jpg", "AURORA/data/something/frames/146053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115989", "images": ["AURORA/data/something/frames/36584/first.jpg", "AURORA/data/something/frames/36584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000115990", "images": ["AURORA/data/something/frames/133961/first.jpg", "AURORA/data/something/frames/133961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000115991", "images": ["AURORA/data/something/frames/152215/first.jpg", "AURORA/data/something/frames/152215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading red chillies onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000115992", "images": ["AURORA/data/something/frames/33523/first.jpg", "AURORA/data/something/frames/33523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch next to toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000115993", "images": ["AURORA/data/something/frames/71988/first.jpg", "AURORA/data/something/frames/71988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring gems out of container"}, {"from": "gpt", "value": ""}]} +{"id": "000000115994", "images": ["AURORA/data/something/frames/68888/first.jpg", "AURORA/data/something/frames/68888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000115995", "images": ["AURORA/data/something/frames/183751/first.jpg", "AURORA/data/something/frames/183751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000115996", "images": ["AURORA/data/something/frames/116234/first.jpg", "AURORA/data/something/frames/116234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping ketchup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000115997", "images": ["AURORA/data/something/frames/152261/first.jpg", "AURORA/data/something/frames/152261/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000115998", "images": ["AURORA/data/something/frames/81390/first.jpg", "AURORA/data/something/frames/81390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to more pens, pencils."}, {"from": "gpt", "value": ""}]} +{"id": "000000115999", "images": ["AURORA/data/something/frames/205883/first.jpg", "AURORA/data/something/frames/205883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key next to a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116000", "images": ["AURORA/data/something/frames/3226/first.jpg", "AURORA/data/something/frames/3226/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116001", "images": ["AURORA/data/something/frames/206345/first.jpg", "AURORA/data/something/frames/206345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb stick to magnet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116002", "images": ["AURORA/data/something/frames/128081/first.jpg", "AURORA/data/something/frames/128081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many candles on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116003", "images": ["AURORA/data/something/frames/40435/first.jpg", "AURORA/data/something/frames/40435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying lotion on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116004", "images": ["AURORA/data/something/frames/42075/first.jpg", "AURORA/data/something/frames/42075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a brush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116005", "images": ["AURORA/data/something/frames/106607/first.jpg", "AURORA/data/something/frames/106607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116006", "images": ["AURORA/data/something/frames/9381/first.jpg", "AURORA/data/something/frames/9381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glass onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116007", "images": ["AURORA/data/something/frames/82049/first.jpg", "AURORA/data/something/frames/82049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping books onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116008", "images": ["AURORA/data/something/frames/141411/first.jpg", "AURORA/data/something/frames/141411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116009", "images": ["AURORA/data/something/frames/165031/first.jpg", "AURORA/data/something/frames/165031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electrical plug into a plug socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116010", "images": ["AURORA/data/something/frames/163769/first.jpg", "AURORA/data/something/frames/163769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming white book marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000116011", "images": ["AURORA/data/something/frames/139906/first.jpg", "AURORA/data/something/frames/139906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116012", "images": ["AURORA/data/something/frames/51538/first.jpg", "AURORA/data/something/frames/51538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching refill to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116013", "images": ["AURORA/data/something/frames/182093/first.jpg", "AURORA/data/something/frames/182093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of straw without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116014", "images": ["AURORA/data/something/frames/159555/first.jpg", "AURORA/data/something/frames/159555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000116015", "images": ["AURORA/data/something/frames/100029/first.jpg", "AURORA/data/something/frames/100029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116016", "images": ["AURORA/data/something/frames/179801/first.jpg", "AURORA/data/something/frames/179801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a notebook so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116017", "images": ["AURORA/data/something/frames/42602/first.jpg", "AURORA/data/something/frames/42602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching old mobile phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116018", "images": ["AURORA/data/something/frames/136093/first.jpg", "AURORA/data/something/frames/136093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116019", "images": ["AURORA/data/something/frames/94070/first.jpg", "AURORA/data/something/frames/94070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a nightlight into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116020", "images": ["AURORA/data/something/frames/193966/first.jpg", "AURORA/data/something/frames/193966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a spoon from a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116021", "images": ["AURORA/data/something/frames/28841/first.jpg", "AURORA/data/something/frames/28841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book onto pen stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116022", "images": ["AURORA/data/something/frames/60717/first.jpg", "AURORA/data/something/frames/60717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting seasor, tailoring tap and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116023", "images": ["AURORA/data/something/frames/4971/first.jpg", "AURORA/data/something/frames/4971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into mobile but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116024", "images": ["AURORA/data/something/frames/70841/first.jpg", "AURORA/data/something/frames/70841/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116025", "images": ["AURORA/data/something/frames/3002/first.jpg", "AURORA/data/something/frames/3002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming audio sistem"}, {"from": "gpt", "value": ""}]} +{"id": "000000116026", "images": ["AURORA/data/something/frames/101206/first.jpg", "AURORA/data/something/frames/101206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116027", "images": ["AURORA/data/something/frames/171783/first.jpg", "AURORA/data/something/frames/171783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping matchbox into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116028", "images": ["AURORA/data/something/frames/213305/first.jpg", "AURORA/data/something/frames/213305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116029", "images": ["AURORA/data/something/frames/216736/first.jpg", "AURORA/data/something/frames/216736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bracelet behind hand bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116030", "images": ["AURORA/data/something/frames/217783/first.jpg", "AURORA/data/something/frames/217783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116031", "images": ["AURORA/data/something/frames/204721/first.jpg", "AURORA/data/something/frames/204721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag of bread onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116032", "images": ["AURORA/data/something/frames/217909/first.jpg", "AURORA/data/something/frames/217909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing plastic spray from left to right from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116033", "images": ["AURORA/data/something/frames/153183/first.jpg", "AURORA/data/something/frames/153183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000116034", "images": ["AURORA/data/something/frames/118265/first.jpg", "AURORA/data/something/frames/118265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116035", "images": ["AURORA/data/something/frames/18632/first.jpg", "AURORA/data/something/frames/18632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering sunglasses with cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116036", "images": ["AURORA/data/something/frames/34137/first.jpg", "AURORA/data/something/frames/34137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red candle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116037", "images": ["AURORA/data/something/frames/110058/first.jpg", "AURORA/data/something/frames/110058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving seal pad down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116038", "images": ["AURORA/data/something/frames/173175/first.jpg", "AURORA/data/something/frames/173175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto soil ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000116039", "images": ["AURORA/data/something/frames/213040/first.jpg", "AURORA/data/something/frames/213040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering coin with sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000116040", "images": ["AURORA/data/something/frames/11548/first.jpg", "AURORA/data/something/frames/11548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116041", "images": ["AURORA/data/something/frames/70471/first.jpg", "AURORA/data/something/frames/70471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one mobile phone of many similar mobile phones on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116042", "images": ["AURORA/data/something/frames/214369/first.jpg", "AURORA/data/something/frames/214369/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116043", "images": ["AURORA/data/something/frames/170919/first.jpg", "AURORA/data/something/frames/170919/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116044", "images": ["AURORA/data/something/frames/54925/first.jpg", "AURORA/data/something/frames/54925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a spider with my fist"}, {"from": "gpt", "value": ""}]} +{"id": "000000116045", "images": ["AURORA/data/something/frames/31379/first.jpg", "AURORA/data/something/frames/31379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black hair tie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116046", "images": ["AURORA/data/something/frames/159346/first.jpg", "AURORA/data/something/frames/159346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000116047", "images": ["AURORA/data/something/frames/213476/first.jpg", "AURORA/data/something/frames/213476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling beans onto hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116048", "images": ["AURORA/data/something/frames/132955/first.jpg", "AURORA/data/something/frames/132955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a screw on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116049", "images": ["AURORA/data/something/frames/125775/first.jpg", "AURORA/data/something/frames/125775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar next to saltshaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000116050", "images": ["AURORA/data/something/frames/126925/first.jpg", "AURORA/data/something/frames/126925/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen cap so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116051", "images": ["AURORA/data/something/frames/70337/first.jpg", "AURORA/data/something/frames/70337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching lid to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116052", "images": ["AURORA/data/something/frames/110661/first.jpg", "AURORA/data/something/frames/110661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) nose of my face"}, {"from": "gpt", "value": ""}]} +{"id": "000000116053", "images": ["AURORA/data/something/frames/172563/first.jpg", "AURORA/data/something/frames/172563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116054", "images": ["AURORA/data/something/frames/174764/first.jpg", "AURORA/data/something/frames/174764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116055", "images": ["AURORA/data/something/frames/51547/first.jpg", "AURORA/data/something/frames/51547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charging cable into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116056", "images": ["AURORA/data/something/frames/145057/first.jpg", "AURORA/data/something/frames/145057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a smartphone into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116057", "images": ["AURORA/data/something/frames/20237/first.jpg", "AURORA/data/something/frames/20237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pencil from cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000116058", "images": ["AURORA/data/something/frames/124637/first.jpg", "AURORA/data/something/frames/124637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from window with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116059", "images": ["AURORA/data/something/frames/78995/first.jpg", "AURORA/data/something/frames/78995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting copo with mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116060", "images": ["AURORA/data/something/frames/55969/first.jpg", "AURORA/data/something/frames/55969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000116061", "images": ["AURORA/data/something/frames/169808/first.jpg", "AURORA/data/something/frames/169808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into iphone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116062", "images": ["AURORA/data/something/frames/200682/first.jpg", "AURORA/data/something/frames/200682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting whisk up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116063", "images": ["AURORA/data/something/frames/189399/first.jpg", "AURORA/data/something/frames/189399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toy so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116064", "images": ["AURORA/data/something/frames/137851/first.jpg", "AURORA/data/something/frames/137851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116065", "images": ["AURORA/data/something/frames/84343/first.jpg", "AURORA/data/something/frames/84343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling duster from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116066", "images": ["AURORA/data/something/frames/219973/first.jpg", "AURORA/data/something/frames/219973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116067", "images": ["AURORA/data/something/frames/136669/first.jpg", "AURORA/data/something/frames/136669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging baby monitor cord into power outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116068", "images": ["AURORA/data/something/frames/196736/first.jpg", "AURORA/data/something/frames/196736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black brush from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116069", "images": ["AURORA/data/something/frames/56558/first.jpg", "AURORA/data/something/frames/56558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116070", "images": ["AURORA/data/something/frames/171874/first.jpg", "AURORA/data/something/frames/171874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wine glas and cup away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116071", "images": ["AURORA/data/something/frames/43299/first.jpg", "AURORA/data/something/frames/43299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116072", "images": ["AURORA/data/something/frames/161832/first.jpg", "AURORA/data/something/frames/161832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping napkin behind dustbin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116073", "images": ["AURORA/data/something/frames/73196/first.jpg", "AURORA/data/something/frames/73196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116074", "images": ["AURORA/data/something/frames/192310/first.jpg", "AURORA/data/something/frames/192310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling brake pedal onto hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116075", "images": ["AURORA/data/something/frames/165723/first.jpg", "AURORA/data/something/frames/165723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lotion in front of small bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116076", "images": ["AURORA/data/something/frames/112899/first.jpg", "AURORA/data/something/frames/112899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil sharpener onto cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116077", "images": ["AURORA/data/something/frames/203036/first.jpg", "AURORA/data/something/frames/203036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116078", "images": ["AURORA/data/something/frames/79626/first.jpg", "AURORA/data/something/frames/79626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116079", "images": ["AURORA/data/something/frames/98494/first.jpg", "AURORA/data/something/frames/98494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming baby play mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116080", "images": ["AURORA/data/something/frames/133384/first.jpg", "AURORA/data/something/frames/133384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering small bottle with box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116081", "images": ["AURORA/data/something/frames/26702/first.jpg", "AURORA/data/something/frames/26702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spanner away from magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116082", "images": ["AURORA/data/something/frames/97329/first.jpg", "AURORA/data/something/frames/97329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sock down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116083", "images": ["AURORA/data/something/frames/39075/first.jpg", "AURORA/data/something/frames/39075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing soap so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116084", "images": ["AURORA/data/something/frames/196824/first.jpg", "AURORA/data/something/frames/196824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116085", "images": ["AURORA/data/something/frames/109685/first.jpg", "AURORA/data/something/frames/109685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting can into can holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116086", "images": ["AURORA/data/something/frames/133477/first.jpg", "AURORA/data/something/frames/133477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116087", "images": ["AURORA/data/something/frames/218426/first.jpg", "AURORA/data/something/frames/218426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissor closer to tool"}, {"from": "gpt", "value": ""}]} +{"id": "000000116088", "images": ["AURORA/data/something/frames/102272/first.jpg", "AURORA/data/something/frames/102272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116089", "images": ["AURORA/data/something/frames/190613/first.jpg", "AURORA/data/something/frames/190613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116090", "images": ["AURORA/data/something/frames/34319/first.jpg", "AURORA/data/something/frames/34319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tissue box in front of a dvd"}, {"from": "gpt", "value": ""}]} +{"id": "000000116091", "images": ["AURORA/data/something/frames/57569/first.jpg", "AURORA/data/something/frames/57569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116092", "images": ["AURORA/data/something/frames/67480/first.jpg", "AURORA/data/something/frames/67480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116093", "images": ["AURORA/data/something/frames/30303/first.jpg", "AURORA/data/something/frames/30303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116094", "images": ["AURORA/data/something/frames/59108/first.jpg", "AURORA/data/something/frames/59108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a pillow with a book on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116095", "images": ["AURORA/data/something/frames/43816/first.jpg", "AURORA/data/something/frames/43816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen off of bench"}, {"from": "gpt", "value": ""}]} +{"id": "000000116096", "images": ["AURORA/data/something/frames/19932/first.jpg", "AURORA/data/something/frames/19932/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a magnet keyholder to the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116097", "images": ["AURORA/data/something/frames/43675/first.jpg", "AURORA/data/something/frames/43675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116098", "images": ["AURORA/data/something/frames/22215/first.jpg", "AURORA/data/something/frames/22215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching measuring tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116099", "images": ["AURORA/data/something/frames/147707/first.jpg", "AURORA/data/something/frames/147707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from newspaper with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116100", "images": ["AURORA/data/something/frames/209302/first.jpg", "AURORA/data/something/frames/209302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116101", "images": ["AURORA/data/something/frames/208012/first.jpg", "AURORA/data/something/frames/208012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle behind laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116102", "images": ["AURORA/data/something/frames/68767/first.jpg", "AURORA/data/something/frames/68767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping jar over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116103", "images": ["AURORA/data/something/frames/21304/first.jpg", "AURORA/data/something/frames/21304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hair brush next to a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116104", "images": ["AURORA/data/something/frames/67659/first.jpg", "AURORA/data/something/frames/67659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116105", "images": ["AURORA/data/something/frames/90235/first.jpg", "AURORA/data/something/frames/90235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116106", "images": ["AURORA/data/something/frames/195230/first.jpg", "AURORA/data/something/frames/195230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116107", "images": ["AURORA/data/something/frames/156392/first.jpg", "AURORA/data/something/frames/156392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116108", "images": ["AURORA/data/something/frames/20107/first.jpg", "AURORA/data/something/frames/20107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116109", "images": ["AURORA/data/something/frames/22094/first.jpg", "AURORA/data/something/frames/22094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116110", "images": ["AURORA/data/something/frames/104158/first.jpg", "AURORA/data/something/frames/104158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000116111", "images": ["AURORA/data/something/frames/94134/first.jpg", "AURORA/data/something/frames/94134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a smart phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116112", "images": ["AURORA/data/something/frames/209521/first.jpg", "AURORA/data/something/frames/209521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cup on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116113", "images": ["AURORA/data/something/frames/29792/first.jpg", "AURORA/data/something/frames/29792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking feet deodorant so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116114", "images": ["AURORA/data/something/frames/156299/first.jpg", "AURORA/data/something/frames/156299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting clothing"}, {"from": "gpt", "value": ""}]} +{"id": "000000116115", "images": ["AURORA/data/something/frames/62862/first.jpg", "AURORA/data/something/frames/62862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tube so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116116", "images": ["AURORA/data/something/frames/50831/first.jpg", "AURORA/data/something/frames/50831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116117", "images": ["AURORA/data/something/frames/171067/first.jpg", "AURORA/data/something/frames/171067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling blocks up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116118", "images": ["AURORA/data/something/frames/57406/first.jpg", "AURORA/data/something/frames/57406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116119", "images": ["AURORA/data/something/frames/47457/first.jpg", "AURORA/data/something/frames/47457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116120", "images": ["AURORA/data/something/frames/77643/first.jpg", "AURORA/data/something/frames/77643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking joystick so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116121", "images": ["AURORA/data/something/frames/40640/first.jpg", "AURORA/data/something/frames/40640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping gloves into a carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000116122", "images": ["AURORA/data/something/frames/123823/first.jpg", "AURORA/data/something/frames/123823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116123", "images": ["AURORA/data/something/frames/214020/first.jpg", "AURORA/data/something/frames/214020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a plastic pineapple on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116124", "images": ["AURORA/data/something/frames/105033/first.jpg", "AURORA/data/something/frames/105033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting metal into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116125", "images": ["AURORA/data/something/frames/208685/first.jpg", "AURORA/data/something/frames/208685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving package up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116126", "images": ["AURORA/data/something/frames/156188/first.jpg", "AURORA/data/something/frames/156188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116127", "images": ["AURORA/data/something/frames/205729/first.jpg", "AURORA/data/something/frames/205729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card next to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000116128", "images": ["AURORA/data/something/frames/24798/first.jpg", "AURORA/data/something/frames/24798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping ice-cream up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116129", "images": ["AURORA/data/something/frames/68428/first.jpg", "AURORA/data/something/frames/68428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116130", "images": ["AURORA/data/something/frames/206020/first.jpg", "AURORA/data/something/frames/206020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending can so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116131", "images": ["AURORA/data/something/frames/12399/first.jpg", "AURORA/data/something/frames/12399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116132", "images": ["AURORA/data/something/frames/218703/first.jpg", "AURORA/data/something/frames/218703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching umbrella with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116133", "images": ["AURORA/data/something/frames/213412/first.jpg", "AURORA/data/something/frames/213412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a box over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116134", "images": ["AURORA/data/something/frames/149393/first.jpg", "AURORA/data/something/frames/149393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116135", "images": ["AURORA/data/something/frames/204894/first.jpg", "AURORA/data/something/frames/204894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of books without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000116136", "images": ["AURORA/data/something/frames/133652/first.jpg", "AURORA/data/something/frames/133652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116137", "images": ["AURORA/data/something/frames/21190/first.jpg", "AURORA/data/something/frames/21190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping mouse onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000116138", "images": ["AURORA/data/something/frames/16977/first.jpg", "AURORA/data/something/frames/16977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116139", "images": ["AURORA/data/something/frames/144403/first.jpg", "AURORA/data/something/frames/144403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering canister with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116140", "images": ["AURORA/data/something/frames/43893/first.jpg", "AURORA/data/something/frames/43893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 nail polish bottles onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116141", "images": ["AURORA/data/something/frames/1181/first.jpg", "AURORA/data/something/frames/1181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving post-it down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116142", "images": ["AURORA/data/something/frames/170175/first.jpg", "AURORA/data/something/frames/170175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116143", "images": ["AURORA/data/something/frames/69025/first.jpg", "AURORA/data/something/frames/69025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a domino and a toy figurine closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116144", "images": ["AURORA/data/something/frames/157315/first.jpg", "AURORA/data/something/frames/157315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting soft, braun slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116145", "images": ["AURORA/data/something/frames/96620/first.jpg", "AURORA/data/something/frames/96620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paper clip with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116146", "images": ["AURORA/data/something/frames/20485/first.jpg", "AURORA/data/something/frames/20485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a vase from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116147", "images": ["AURORA/data/something/frames/193479/first.jpg", "AURORA/data/something/frames/193479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning orange post-it upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116148", "images": ["AURORA/data/something/frames/59817/first.jpg", "AURORA/data/something/frames/59817/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a sticker to the fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000116149", "images": ["AURORA/data/something/frames/177638/first.jpg", "AURORA/data/something/frames/177638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing flower into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116150", "images": ["AURORA/data/something/frames/30596/first.jpg", "AURORA/data/something/frames/30596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing banana onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116151", "images": ["AURORA/data/something/frames/182733/first.jpg", "AURORA/data/something/frames/182733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending skewer stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116152", "images": ["AURORA/data/something/frames/68326/first.jpg", "AURORA/data/something/frames/68326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing window"}, {"from": "gpt", "value": ""}]} +{"id": "000000116153", "images": ["AURORA/data/something/frames/219561/first.jpg", "AURORA/data/something/frames/219561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 containers onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116154", "images": ["AURORA/data/something/frames/88206/first.jpg", "AURORA/data/something/frames/88206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen and keys on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116155", "images": ["AURORA/data/something/frames/56948/first.jpg", "AURORA/data/something/frames/56948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen colliding with pencil and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116156", "images": ["AURORA/data/something/frames/114426/first.jpg", "AURORA/data/something/frames/114426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning small tv set upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116157", "images": ["AURORA/data/something/frames/139521/first.jpg", "AURORA/data/something/frames/139521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of remote control without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116158", "images": ["AURORA/data/something/frames/59748/first.jpg", "AURORA/data/something/frames/59748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116159", "images": ["AURORA/data/something/frames/136469/first.jpg", "AURORA/data/something/frames/136469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116160", "images": ["AURORA/data/something/frames/211799/first.jpg", "AURORA/data/something/frames/211799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000116161", "images": ["AURORA/data/something/frames/202604/first.jpg", "AURORA/data/something/frames/202604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plastic bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116162", "images": ["AURORA/data/something/frames/54844/first.jpg", "AURORA/data/something/frames/54844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a potatoe with a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116163", "images": ["AURORA/data/something/frames/107735/first.jpg", "AURORA/data/something/frames/107735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116164", "images": ["AURORA/data/something/frames/144987/first.jpg", "AURORA/data/something/frames/144987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116165", "images": ["AURORA/data/something/frames/191621/first.jpg", "AURORA/data/something/frames/191621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting charger cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000116166", "images": ["AURORA/data/something/frames/123953/first.jpg", "AURORA/data/something/frames/123953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a groundnut so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116167", "images": ["AURORA/data/something/frames/31662/first.jpg", "AURORA/data/something/frames/31662/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from sign post with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116168", "images": ["AURORA/data/something/frames/35073/first.jpg", "AURORA/data/something/frames/35073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a handkerchief so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000116169", "images": ["AURORA/data/something/frames/86575/first.jpg", "AURORA/data/something/frames/86575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116170", "images": ["AURORA/data/something/frames/18227/first.jpg", "AURORA/data/something/frames/18227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping drink up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116171", "images": ["AURORA/data/something/frames/51801/first.jpg", "AURORA/data/something/frames/51801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cloth onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116172", "images": ["AURORA/data/something/frames/166779/first.jpg", "AURORA/data/something/frames/166779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hair clip from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116173", "images": ["AURORA/data/something/frames/93264/first.jpg", "AURORA/data/something/frames/93264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a stuffed animal dog with a yard stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000116174", "images": ["AURORA/data/something/frames/78164/first.jpg", "AURORA/data/something/frames/78164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a pair of pants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116175", "images": ["AURORA/data/something/frames/60020/first.jpg", "AURORA/data/something/frames/60020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116176", "images": ["AURORA/data/something/frames/73537/first.jpg", "AURORA/data/something/frames/73537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending metal wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116177", "images": ["AURORA/data/something/frames/47243/first.jpg", "AURORA/data/something/frames/47243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a planner with scissors on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116178", "images": ["AURORA/data/something/frames/141484/first.jpg", "AURORA/data/something/frames/141484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the oven"}, {"from": "gpt", "value": ""}]} +{"id": "000000116179", "images": ["AURORA/data/something/frames/40838/first.jpg", "AURORA/data/something/frames/40838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116180", "images": ["AURORA/data/something/frames/90563/first.jpg", "AURORA/data/something/frames/90563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116181", "images": ["AURORA/data/something/frames/23780/first.jpg", "AURORA/data/something/frames/23780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116182", "images": ["AURORA/data/something/frames/177572/first.jpg", "AURORA/data/something/frames/177572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a key into a lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000116183", "images": ["AURORA/data/something/frames/135517/first.jpg", "AURORA/data/something/frames/135517/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pot with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116184", "images": ["AURORA/data/something/frames/21637/first.jpg", "AURORA/data/something/frames/21637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: nail clipper being deflected from pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116185", "images": ["AURORA/data/something/frames/179459/first.jpg", "AURORA/data/something/frames/179459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a bottle, revealing a charger behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116186", "images": ["AURORA/data/something/frames/122159/first.jpg", "AURORA/data/something/frames/122159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging loader into jack"}, {"from": "gpt", "value": ""}]} +{"id": "000000116187", "images": ["AURORA/data/something/frames/73565/first.jpg", "AURORA/data/something/frames/73565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116188", "images": ["AURORA/data/something/frames/181455/first.jpg", "AURORA/data/something/frames/181455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming dinosaur model"}, {"from": "gpt", "value": ""}]} +{"id": "000000116189", "images": ["AURORA/data/something/frames/168976/first.jpg", "AURORA/data/something/frames/168976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116190", "images": ["AURORA/data/something/frames/161910/first.jpg", "AURORA/data/something/frames/161910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone with camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116191", "images": ["AURORA/data/something/frames/207873/first.jpg", "AURORA/data/something/frames/207873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116192", "images": ["AURORA/data/something/frames/18846/first.jpg", "AURORA/data/something/frames/18846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving magnet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116193", "images": ["AURORA/data/something/frames/78061/first.jpg", "AURORA/data/something/frames/78061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting something up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116194", "images": ["AURORA/data/something/frames/50281/first.jpg", "AURORA/data/something/frames/50281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tele-commander and a plastic pot so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116195", "images": ["AURORA/data/something/frames/155859/first.jpg", "AURORA/data/something/frames/155859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic bottle, a water bottle and a glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116196", "images": ["AURORA/data/something/frames/84519/first.jpg", "AURORA/data/something/frames/84519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of cds so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116197", "images": ["AURORA/data/something/frames/180920/first.jpg", "AURORA/data/something/frames/180920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting notebook with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116198", "images": ["AURORA/data/something/frames/117118/first.jpg", "AURORA/data/something/frames/117118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116199", "images": ["AURORA/data/something/frames/144159/first.jpg", "AURORA/data/something/frames/144159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a card into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116200", "images": ["AURORA/data/something/frames/68721/first.jpg", "AURORA/data/something/frames/68721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116201", "images": ["AURORA/data/something/frames/38845/first.jpg", "AURORA/data/something/frames/38845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and marker away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116202", "images": ["AURORA/data/something/frames/139432/first.jpg", "AURORA/data/something/frames/139432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto foot"}, {"from": "gpt", "value": ""}]} +{"id": "000000116203", "images": ["AURORA/data/something/frames/67128/first.jpg", "AURORA/data/something/frames/67128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116204", "images": ["AURORA/data/something/frames/82217/first.jpg", "AURORA/data/something/frames/82217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ipad in front of bananas"}, {"from": "gpt", "value": ""}]} +{"id": "000000116205", "images": ["AURORA/data/something/frames/140433/first.jpg", "AURORA/data/something/frames/140433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto zink"}, {"from": "gpt", "value": ""}]} +{"id": "000000116206", "images": ["AURORA/data/something/frames/198964/first.jpg", "AURORA/data/something/frames/198964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116207", "images": ["AURORA/data/something/frames/3469/first.jpg", "AURORA/data/something/frames/3469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy, toy watch and box on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116208", "images": ["AURORA/data/something/frames/34942/first.jpg", "AURORA/data/something/frames/34942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses, a beer bottle and a wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116209", "images": ["AURORA/data/something/frames/55605/first.jpg", "AURORA/data/something/frames/55605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116210", "images": ["AURORA/data/something/frames/56029/first.jpg", "AURORA/data/something/frames/56029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notepad paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116211", "images": ["AURORA/data/something/frames/218865/first.jpg", "AURORA/data/something/frames/218865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing remote with scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000116212", "images": ["AURORA/data/something/frames/175060/first.jpg", "AURORA/data/something/frames/175060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wire out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116213", "images": ["AURORA/data/something/frames/181926/first.jpg", "AURORA/data/something/frames/181926/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stapler onto red toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000116214", "images": ["AURORA/data/something/frames/187001/first.jpg", "AURORA/data/something/frames/187001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping tea off of a counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116215", "images": ["AURORA/data/something/frames/114149/first.jpg", "AURORA/data/something/frames/114149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mobile and another mobile so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116216", "images": ["AURORA/data/something/frames/108259/first.jpg", "AURORA/data/something/frames/108259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116217", "images": ["AURORA/data/something/frames/139566/first.jpg", "AURORA/data/something/frames/139566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marble"}, {"from": "gpt", "value": ""}]} +{"id": "000000116218", "images": ["AURORA/data/something/frames/200260/first.jpg", "AURORA/data/something/frames/200260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116219", "images": ["AURORA/data/something/frames/46206/first.jpg", "AURORA/data/something/frames/46206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen behind sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116220", "images": ["AURORA/data/something/frames/168612/first.jpg", "AURORA/data/something/frames/168612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping scoop into canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000116221", "images": ["AURORA/data/something/frames/117574/first.jpg", "AURORA/data/something/frames/117574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy into a bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116222", "images": ["AURORA/data/something/frames/116894/first.jpg", "AURORA/data/something/frames/116894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting rubik's cube up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116223", "images": ["AURORA/data/something/frames/142594/first.jpg", "AURORA/data/something/frames/142594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching waste bin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116224", "images": ["AURORA/data/something/frames/49057/first.jpg", "AURORA/data/something/frames/49057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping ketchup off of counter top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116225", "images": ["AURORA/data/something/frames/51109/first.jpg", "AURORA/data/something/frames/51109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116226", "images": ["AURORA/data/something/frames/159168/first.jpg", "AURORA/data/something/frames/159168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116227", "images": ["AURORA/data/something/frames/147379/first.jpg", "AURORA/data/something/frames/147379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charging cable into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116228", "images": ["AURORA/data/something/frames/208136/first.jpg", "AURORA/data/something/frames/208136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116229", "images": ["AURORA/data/something/frames/25872/first.jpg", "AURORA/data/something/frames/25872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife next to fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116230", "images": ["AURORA/data/something/frames/63681/first.jpg", "AURORA/data/something/frames/63681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glove and cell phone so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116231", "images": ["AURORA/data/something/frames/189969/first.jpg", "AURORA/data/something/frames/189969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116232", "images": ["AURORA/data/something/frames/128468/first.jpg", "AURORA/data/something/frames/128468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing jar into fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000116233", "images": ["AURORA/data/something/frames/180577/first.jpg", "AURORA/data/something/frames/180577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116234", "images": ["AURORA/data/something/frames/217102/first.jpg", "AURORA/data/something/frames/217102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging battery charger into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116235", "images": ["AURORA/data/something/frames/54347/first.jpg", "AURORA/data/something/frames/54347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116236", "images": ["AURORA/data/something/frames/213041/first.jpg", "AURORA/data/something/frames/213041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a dvd behind a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116237", "images": ["AURORA/data/something/frames/97076/first.jpg", "AURORA/data/something/frames/97076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000116238", "images": ["AURORA/data/something/frames/131354/first.jpg", "AURORA/data/something/frames/131354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116239", "images": ["AURORA/data/something/frames/55934/first.jpg", "AURORA/data/something/frames/55934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116240", "images": ["AURORA/data/something/frames/219161/first.jpg", "AURORA/data/something/frames/219161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116241", "images": ["AURORA/data/something/frames/138291/first.jpg", "AURORA/data/something/frames/138291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying battery in sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116242", "images": ["AURORA/data/something/frames/2099/first.jpg", "AURORA/data/something/frames/2099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking toy wheel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116243", "images": ["AURORA/data/something/frames/155973/first.jpg", "AURORA/data/something/frames/155973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116244", "images": ["AURORA/data/something/frames/7247/first.jpg", "AURORA/data/something/frames/7247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cube so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116245", "images": ["AURORA/data/something/frames/55276/first.jpg", "AURORA/data/something/frames/55276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil into a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116246", "images": ["AURORA/data/something/frames/135322/first.jpg", "AURORA/data/something/frames/135322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red toy car on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116247", "images": ["AURORA/data/something/frames/47589/first.jpg", "AURORA/data/something/frames/47589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling water canteen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116248", "images": ["AURORA/data/something/frames/134434/first.jpg", "AURORA/data/something/frames/134434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging spoon out of hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116249", "images": ["AURORA/data/something/frames/176308/first.jpg", "AURORA/data/something/frames/176308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper and cellphone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116250", "images": ["AURORA/data/something/frames/152428/first.jpg", "AURORA/data/something/frames/152428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pen being deflected from binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116251", "images": ["AURORA/data/something/frames/99563/first.jpg", "AURORA/data/something/frames/99563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116252", "images": ["AURORA/data/something/frames/197717/first.jpg", "AURORA/data/something/frames/197717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen to wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116253", "images": ["AURORA/data/something/frames/74759/first.jpg", "AURORA/data/something/frames/74759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116254", "images": ["AURORA/data/something/frames/122389/first.jpg", "AURORA/data/something/frames/122389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pink golf ball colliding with pink golf ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116255", "images": ["AURORA/data/something/frames/170580/first.jpg", "AURORA/data/something/frames/170580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling mobiles up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116256", "images": ["AURORA/data/something/frames/37580/first.jpg", "AURORA/data/something/frames/37580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116257", "images": ["AURORA/data/something/frames/138317/first.jpg", "AURORA/data/something/frames/138317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116258", "images": ["AURORA/data/something/frames/215316/first.jpg", "AURORA/data/something/frames/215316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into swicth but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116259", "images": ["AURORA/data/something/frames/107214/first.jpg", "AURORA/data/something/frames/107214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming black hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116260", "images": ["AURORA/data/something/frames/36364/first.jpg", "AURORA/data/something/frames/36364/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a remote with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116261", "images": ["AURORA/data/something/frames/186404/first.jpg", "AURORA/data/something/frames/186404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone and a wallet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116262", "images": ["AURORA/data/something/frames/56629/first.jpg", "AURORA/data/something/frames/56629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of plate without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116263", "images": ["AURORA/data/something/frames/75187/first.jpg", "AURORA/data/something/frames/75187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spun onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000116264", "images": ["AURORA/data/something/frames/106583/first.jpg", "AURORA/data/something/frames/106583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling napkin onto laptop screen top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116265", "images": ["AURORA/data/something/frames/66116/first.jpg", "AURORA/data/something/frames/66116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116266", "images": ["AURORA/data/something/frames/28586/first.jpg", "AURORA/data/something/frames/28586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging sketch pen out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116267", "images": ["AURORA/data/something/frames/175684/first.jpg", "AURORA/data/something/frames/175684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a container with a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116268", "images": ["AURORA/data/something/frames/106771/first.jpg", "AURORA/data/something/frames/106771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teddy bear onto stool"}, {"from": "gpt", "value": ""}]} +{"id": "000000116269", "images": ["AURORA/data/something/frames/42931/first.jpg", "AURORA/data/something/frames/42931/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning lighter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116270", "images": ["AURORA/data/something/frames/110027/first.jpg", "AURORA/data/something/frames/110027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116271", "images": ["AURORA/data/something/frames/164301/first.jpg", "AURORA/data/something/frames/164301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic plate so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116272", "images": ["AURORA/data/something/frames/105901/first.jpg", "AURORA/data/something/frames/105901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116273", "images": ["AURORA/data/something/frames/56270/first.jpg", "AURORA/data/something/frames/56270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming black disc case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116274", "images": ["AURORA/data/something/frames/178347/first.jpg", "AURORA/data/something/frames/178347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 board clips onto cookie box lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000116275", "images": ["AURORA/data/something/frames/38828/first.jpg", "AURORA/data/something/frames/38828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting eye glasses up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116276", "images": ["AURORA/data/something/frames/50727/first.jpg", "AURORA/data/something/frames/50727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from pen with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116277", "images": ["AURORA/data/something/frames/138978/first.jpg", "AURORA/data/something/frames/138978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting towel up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116278", "images": ["AURORA/data/something/frames/55332/first.jpg", "AURORA/data/something/frames/55332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending incense stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116279", "images": ["AURORA/data/something/frames/220813/first.jpg", "AURORA/data/something/frames/220813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116280", "images": ["AURORA/data/something/frames/126215/first.jpg", "AURORA/data/something/frames/126215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four underpants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116281", "images": ["AURORA/data/something/frames/57816/first.jpg", "AURORA/data/something/frames/57816/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil sharpener behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116282", "images": ["AURORA/data/something/frames/159172/first.jpg", "AURORA/data/something/frames/159172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys closer to a camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116283", "images": ["AURORA/data/something/frames/15390/first.jpg", "AURORA/data/something/frames/15390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116284", "images": ["AURORA/data/something/frames/190253/first.jpg", "AURORA/data/something/frames/190253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shaker towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116285", "images": ["AURORA/data/something/frames/211478/first.jpg", "AURORA/data/something/frames/211478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hangar into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116286", "images": ["AURORA/data/something/frames/125349/first.jpg", "AURORA/data/something/frames/125349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116287", "images": ["AURORA/data/something/frames/93619/first.jpg", "AURORA/data/something/frames/93619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paint tube from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116288", "images": ["AURORA/data/something/frames/198645/first.jpg", "AURORA/data/something/frames/198645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candy onto notepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000116289", "images": ["AURORA/data/something/frames/35241/first.jpg", "AURORA/data/something/frames/35241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding childs shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116290", "images": ["AURORA/data/something/frames/146617/first.jpg", "AURORA/data/something/frames/146617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) stopper of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116291", "images": ["AURORA/data/something/frames/183412/first.jpg", "AURORA/data/something/frames/183412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116292", "images": ["AURORA/data/something/frames/7011/first.jpg", "AURORA/data/something/frames/7011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching tape to couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116293", "images": ["AURORA/data/something/frames/118107/first.jpg", "AURORA/data/something/frames/118107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a paper clip off the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116294", "images": ["AURORA/data/something/frames/198878/first.jpg", "AURORA/data/something/frames/198878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling white sheet out of magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000116295", "images": ["AURORA/data/something/frames/63422/first.jpg", "AURORA/data/something/frames/63422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting notebook next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116296", "images": ["AURORA/data/something/frames/154791/first.jpg", "AURORA/data/something/frames/154791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pen into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116297", "images": ["AURORA/data/something/frames/178368/first.jpg", "AURORA/data/something/frames/178368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116298", "images": ["AURORA/data/something/frames/100590/first.jpg", "AURORA/data/something/frames/100590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering my face"}, {"from": "gpt", "value": ""}]} +{"id": "000000116299", "images": ["AURORA/data/something/frames/68381/first.jpg", "AURORA/data/something/frames/68381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tea mug in front of candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000116300", "images": ["AURORA/data/something/frames/170884/first.jpg", "AURORA/data/something/frames/170884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling curry leaves onto cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116301", "images": ["AURORA/data/something/frames/12061/first.jpg", "AURORA/data/something/frames/12061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of duster without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116302", "images": ["AURORA/data/something/frames/80449/first.jpg", "AURORA/data/something/frames/80449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116303", "images": ["AURORA/data/something/frames/134089/first.jpg", "AURORA/data/something/frames/134089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116304", "images": ["AURORA/data/something/frames/80706/first.jpg", "AURORA/data/something/frames/80706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cotton swabs so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116305", "images": ["AURORA/data/something/frames/113748/first.jpg", "AURORA/data/something/frames/113748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pepper behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116306", "images": ["AURORA/data/something/frames/134893/first.jpg", "AURORA/data/something/frames/134893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping poker chip into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116307", "images": ["AURORA/data/something/frames/139163/first.jpg", "AURORA/data/something/frames/139163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116308", "images": ["AURORA/data/something/frames/148321/first.jpg", "AURORA/data/something/frames/148321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116309", "images": ["AURORA/data/something/frames/68792/first.jpg", "AURORA/data/something/frames/68792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116310", "images": ["AURORA/data/something/frames/62/first.jpg", "AURORA/data/something/frames/62/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116311", "images": ["AURORA/data/something/frames/20726/first.jpg", "AURORA/data/something/frames/20726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a phone with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116312", "images": ["AURORA/data/something/frames/12581/first.jpg", "AURORA/data/something/frames/12581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a block closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116313", "images": ["AURORA/data/something/frames/73864/first.jpg", "AURORA/data/something/frames/73864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000116314", "images": ["AURORA/data/something/frames/58539/first.jpg", "AURORA/data/something/frames/58539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a light bulb onto a cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116315", "images": ["AURORA/data/something/frames/53688/first.jpg", "AURORA/data/something/frames/53688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cord into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116316", "images": ["AURORA/data/something/frames/193755/first.jpg", "AURORA/data/something/frames/193755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking make-up out of toiletry bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116317", "images": ["AURORA/data/something/frames/171937/first.jpg", "AURORA/data/something/frames/171937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a pen into a pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000116318", "images": ["AURORA/data/something/frames/217387/first.jpg", "AURORA/data/something/frames/217387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pen top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116319", "images": ["AURORA/data/something/frames/65252/first.jpg", "AURORA/data/something/frames/65252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coke onto post it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116320", "images": ["AURORA/data/something/frames/112374/first.jpg", "AURORA/data/something/frames/112374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting three coins onto lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000116321", "images": ["AURORA/data/something/frames/50492/first.jpg", "AURORA/data/something/frames/50492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching usb with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116322", "images": ["AURORA/data/something/frames/201002/first.jpg", "AURORA/data/something/frames/201002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plush up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116323", "images": ["AURORA/data/something/frames/53329/first.jpg", "AURORA/data/something/frames/53329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116324", "images": ["AURORA/data/something/frames/6551/first.jpg", "AURORA/data/something/frames/6551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling ipod from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116325", "images": ["AURORA/data/something/frames/151908/first.jpg", "AURORA/data/something/frames/151908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting camera lens"}, {"from": "gpt", "value": ""}]} +{"id": "000000116326", "images": ["AURORA/data/something/frames/23884/first.jpg", "AURORA/data/something/frames/23884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116327", "images": ["AURORA/data/something/frames/111777/first.jpg", "AURORA/data/something/frames/111777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling papers up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116328", "images": ["AURORA/data/something/frames/139284/first.jpg", "AURORA/data/something/frames/139284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screwdriver across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116329", "images": ["AURORA/data/something/frames/76144/first.jpg", "AURORA/data/something/frames/76144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming a bottle of lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116330", "images": ["AURORA/data/something/frames/189275/first.jpg", "AURORA/data/something/frames/189275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116331", "images": ["AURORA/data/something/frames/183053/first.jpg", "AURORA/data/something/frames/183053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening an oven door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116332", "images": ["AURORA/data/something/frames/52578/first.jpg", "AURORA/data/something/frames/52578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a comb so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116333", "images": ["AURORA/data/something/frames/163473/first.jpg", "AURORA/data/something/frames/163473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping book onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000116334", "images": ["AURORA/data/something/frames/8726/first.jpg", "AURORA/data/something/frames/8726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116335", "images": ["AURORA/data/something/frames/139118/first.jpg", "AURORA/data/something/frames/139118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a socket plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116336", "images": ["AURORA/data/something/frames/121046/first.jpg", "AURORA/data/something/frames/121046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a match box and a lighter so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116337", "images": ["AURORA/data/something/frames/115108/first.jpg", "AURORA/data/something/frames/115108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming advertisement board"}, {"from": "gpt", "value": ""}]} +{"id": "000000116338", "images": ["AURORA/data/something/frames/122979/first.jpg", "AURORA/data/something/frames/122979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coconut shell towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116339", "images": ["AURORA/data/something/frames/33807/first.jpg", "AURORA/data/something/frames/33807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116340", "images": ["AURORA/data/something/frames/37196/first.jpg", "AURORA/data/something/frames/37196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking food container from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116341", "images": ["AURORA/data/something/frames/118373/first.jpg", "AURORA/data/something/frames/118373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto grass yard"}, {"from": "gpt", "value": ""}]} +{"id": "000000116342", "images": ["AURORA/data/something/frames/198004/first.jpg", "AURORA/data/something/frames/198004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116343", "images": ["AURORA/data/something/frames/143382/first.jpg", "AURORA/data/something/frames/143382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pills into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116344", "images": ["AURORA/data/something/frames/173289/first.jpg", "AURORA/data/something/frames/173289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000116345", "images": ["AURORA/data/something/frames/11131/first.jpg", "AURORA/data/something/frames/11131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ashtray up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116346", "images": ["AURORA/data/something/frames/70193/first.jpg", "AURORA/data/something/frames/70193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a washcloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116347", "images": ["AURORA/data/something/frames/31481/first.jpg", "AURORA/data/something/frames/31481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116348", "images": ["AURORA/data/something/frames/50331/first.jpg", "AURORA/data/something/frames/50331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting puzzle dice on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116349", "images": ["AURORA/data/something/frames/122249/first.jpg", "AURORA/data/something/frames/122249/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling toy figures up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116350", "images": ["AURORA/data/something/frames/180461/first.jpg", "AURORA/data/something/frames/180461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116351", "images": ["AURORA/data/something/frames/8789/first.jpg", "AURORA/data/something/frames/8789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting flash drive with ballpen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116352", "images": ["AURORA/data/something/frames/192334/first.jpg", "AURORA/data/something/frames/192334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cardstock into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116353", "images": ["AURORA/data/something/frames/43140/first.jpg", "AURORA/data/something/frames/43140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sugar pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000116354", "images": ["AURORA/data/something/frames/25903/first.jpg", "AURORA/data/something/frames/25903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling mobile phones up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116355", "images": ["AURORA/data/something/frames/1858/first.jpg", "AURORA/data/something/frames/1858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy-car and toy-car so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116356", "images": ["AURORA/data/something/frames/7538/first.jpg", "AURORA/data/something/frames/7538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116357", "images": ["AURORA/data/something/frames/50660/first.jpg", "AURORA/data/something/frames/50660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116358", "images": ["AURORA/data/something/frames/185715/first.jpg", "AURORA/data/something/frames/185715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116359", "images": ["AURORA/data/something/frames/149631/first.jpg", "AURORA/data/something/frames/149631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking scotch tape up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116360", "images": ["AURORA/data/something/frames/60672/first.jpg", "AURORA/data/something/frames/60672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shampoo bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116361", "images": ["AURORA/data/something/frames/198092/first.jpg", "AURORA/data/something/frames/198092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching hair dryer with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116362", "images": ["AURORA/data/something/frames/192115/first.jpg", "AURORA/data/something/frames/192115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116363", "images": ["AURORA/data/something/frames/36471/first.jpg", "AURORA/data/something/frames/36471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into bottle, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116364", "images": ["AURORA/data/something/frames/118911/first.jpg", "AURORA/data/something/frames/118911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving container closer to another one"}, {"from": "gpt", "value": ""}]} +{"id": "000000116365", "images": ["AURORA/data/something/frames/144068/first.jpg", "AURORA/data/something/frames/144068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000116366", "images": ["AURORA/data/something/frames/104609/first.jpg", "AURORA/data/something/frames/104609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door stopper down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116367", "images": ["AURORA/data/something/frames/187312/first.jpg", "AURORA/data/something/frames/187312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green headlight from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116368", "images": ["AURORA/data/something/frames/57635/first.jpg", "AURORA/data/something/frames/57635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116369", "images": ["AURORA/data/something/frames/87660/first.jpg", "AURORA/data/something/frames/87660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116370", "images": ["AURORA/data/something/frames/105758/first.jpg", "AURORA/data/something/frames/105758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116371", "images": ["AURORA/data/something/frames/194669/first.jpg", "AURORA/data/something/frames/194669/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a notebook upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116372", "images": ["AURORA/data/something/frames/200687/first.jpg", "AURORA/data/something/frames/200687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116373", "images": ["AURORA/data/something/frames/62820/first.jpg", "AURORA/data/something/frames/62820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pillow so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116374", "images": ["AURORA/data/something/frames/154557/first.jpg", "AURORA/data/something/frames/154557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors underneath dishwasher door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116375", "images": ["AURORA/data/something/frames/48674/first.jpg", "AURORA/data/something/frames/48674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a matchbox over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116376", "images": ["AURORA/data/something/frames/50424/first.jpg", "AURORA/data/something/frames/50424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116377", "images": ["AURORA/data/something/frames/39791/first.jpg", "AURORA/data/something/frames/39791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116378", "images": ["AURORA/data/something/frames/2635/first.jpg", "AURORA/data/something/frames/2635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an apple on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116379", "images": ["AURORA/data/something/frames/87133/first.jpg", "AURORA/data/something/frames/87133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning drink upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116380", "images": ["AURORA/data/something/frames/84982/first.jpg", "AURORA/data/something/frames/84982/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching banana bunch with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116381", "images": ["AURORA/data/something/frames/140355/first.jpg", "AURORA/data/something/frames/140355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116382", "images": ["AURORA/data/something/frames/74717/first.jpg", "AURORA/data/something/frames/74717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116383", "images": ["AURORA/data/something/frames/213467/first.jpg", "AURORA/data/something/frames/213467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming white candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116384", "images": ["AURORA/data/something/frames/189193/first.jpg", "AURORA/data/something/frames/189193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cup up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116385", "images": ["AURORA/data/something/frames/21284/first.jpg", "AURORA/data/something/frames/21284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming jackfruit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116386", "images": ["AURORA/data/something/frames/158153/first.jpg", "AURORA/data/something/frames/158153/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a portable charger into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116387", "images": ["AURORA/data/something/frames/78318/first.jpg", "AURORA/data/something/frames/78318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into surge protector"}, {"from": "gpt", "value": ""}]} +{"id": "000000116388", "images": ["AURORA/data/something/frames/109272/first.jpg", "AURORA/data/something/frames/109272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving my phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116389", "images": ["AURORA/data/something/frames/87848/first.jpg", "AURORA/data/something/frames/87848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116390", "images": ["AURORA/data/something/frames/66832/first.jpg", "AURORA/data/something/frames/66832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping board clip into glass bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116391", "images": ["AURORA/data/something/frames/50781/first.jpg", "AURORA/data/something/frames/50781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116392", "images": ["AURORA/data/something/frames/55006/first.jpg", "AURORA/data/something/frames/55006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116393", "images": ["AURORA/data/something/frames/175876/first.jpg", "AURORA/data/something/frames/175876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with sheets of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116394", "images": ["AURORA/data/something/frames/147906/first.jpg", "AURORA/data/something/frames/147906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil colliding with a pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116395", "images": ["AURORA/data/something/frames/47960/first.jpg", "AURORA/data/something/frames/47960/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116396", "images": ["AURORA/data/something/frames/177267/first.jpg", "AURORA/data/something/frames/177267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into power outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116397", "images": ["AURORA/data/something/frames/86235/first.jpg", "AURORA/data/something/frames/86235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cd player and usb closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116398", "images": ["AURORA/data/something/frames/53565/first.jpg", "AURORA/data/something/frames/53565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marble"}, {"from": "gpt", "value": ""}]} +{"id": "000000116399", "images": ["AURORA/data/something/frames/4473/first.jpg", "AURORA/data/something/frames/4473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a facial wash up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116400", "images": ["AURORA/data/something/frames/76320/first.jpg", "AURORA/data/something/frames/76320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116401", "images": ["AURORA/data/something/frames/104554/first.jpg", "AURORA/data/something/frames/104554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling magazines up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116402", "images": ["AURORA/data/something/frames/77100/first.jpg", "AURORA/data/something/frames/77100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116403", "images": ["AURORA/data/something/frames/5279/first.jpg", "AURORA/data/something/frames/5279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip balm and lip gloss so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116404", "images": ["AURORA/data/something/frames/24802/first.jpg", "AURORA/data/something/frames/24802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a shot glass with nails in it over, so nails in it falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116405", "images": ["AURORA/data/something/frames/62007/first.jpg", "AURORA/data/something/frames/62007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mirror into a pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116406", "images": ["AURORA/data/something/frames/120802/first.jpg", "AURORA/data/something/frames/120802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a can with a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116407", "images": ["AURORA/data/something/frames/14378/first.jpg", "AURORA/data/something/frames/14378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping crumbs off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116408", "images": ["AURORA/data/something/frames/179024/first.jpg", "AURORA/data/something/frames/179024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing wadded up papertowel off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116409", "images": ["AURORA/data/something/frames/70543/first.jpg", "AURORA/data/something/frames/70543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116410", "images": ["AURORA/data/something/frames/140987/first.jpg", "AURORA/data/something/frames/140987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116411", "images": ["AURORA/data/something/frames/144761/first.jpg", "AURORA/data/something/frames/144761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white toy car away from hair clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000116412", "images": ["AURORA/data/something/frames/3306/first.jpg", "AURORA/data/something/frames/3306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116413", "images": ["AURORA/data/something/frames/95557/first.jpg", "AURORA/data/something/frames/95557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116414", "images": ["AURORA/data/something/frames/106838/first.jpg", "AURORA/data/something/frames/106838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: salt shaker colliding with pepper shaker and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116415", "images": ["AURORA/data/something/frames/104884/first.jpg", "AURORA/data/something/frames/104884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a comb upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116416", "images": ["AURORA/data/something/frames/104415/first.jpg", "AURORA/data/something/frames/104415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning waterbottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116417", "images": ["AURORA/data/something/frames/96992/first.jpg", "AURORA/data/something/frames/96992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116418", "images": ["AURORA/data/something/frames/176652/first.jpg", "AURORA/data/something/frames/176652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116419", "images": ["AURORA/data/something/frames/175814/first.jpg", "AURORA/data/something/frames/175814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something away from something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116420", "images": ["AURORA/data/something/frames/79863/first.jpg", "AURORA/data/something/frames/79863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116421", "images": ["AURORA/data/something/frames/119614/first.jpg", "AURORA/data/something/frames/119614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting big filter with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116422", "images": ["AURORA/data/something/frames/116708/first.jpg", "AURORA/data/something/frames/116708/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug head into an extension lead"}, {"from": "gpt", "value": ""}]} +{"id": "000000116423", "images": ["AURORA/data/something/frames/127312/first.jpg", "AURORA/data/something/frames/127312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a phone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116424", "images": ["AURORA/data/something/frames/157768/first.jpg", "AURORA/data/something/frames/157768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116425", "images": ["AURORA/data/something/frames/23174/first.jpg", "AURORA/data/something/frames/23174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of shot glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116426", "images": ["AURORA/data/something/frames/98142/first.jpg", "AURORA/data/something/frames/98142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116427", "images": ["AURORA/data/something/frames/6200/first.jpg", "AURORA/data/something/frames/6200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping drinking glass over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116428", "images": ["AURORA/data/something/frames/163292/first.jpg", "AURORA/data/something/frames/163292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail varnish from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116429", "images": ["AURORA/data/something/frames/187730/first.jpg", "AURORA/data/something/frames/187730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116430", "images": ["AURORA/data/something/frames/177838/first.jpg", "AURORA/data/something/frames/177838/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an electric juicer in front of a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116431", "images": ["AURORA/data/something/frames/116079/first.jpg", "AURORA/data/something/frames/116079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking discs so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116432", "images": ["AURORA/data/something/frames/86532/first.jpg", "AURORA/data/something/frames/86532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lip gloss in a pile of other lip glosses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116433", "images": ["AURORA/data/something/frames/126784/first.jpg", "AURORA/data/something/frames/126784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116434", "images": ["AURORA/data/something/frames/62463/first.jpg", "AURORA/data/something/frames/62463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring beer into a wash basin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116435", "images": ["AURORA/data/something/frames/115216/first.jpg", "AURORA/data/something/frames/115216/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting highlighter in front of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116436", "images": ["AURORA/data/something/frames/76862/first.jpg", "AURORA/data/something/frames/76862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging ipad out of blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116437", "images": ["AURORA/data/something/frames/169663/first.jpg", "AURORA/data/something/frames/169663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting blinds"}, {"from": "gpt", "value": ""}]} +{"id": "000000116438", "images": ["AURORA/data/something/frames/108564/first.jpg", "AURORA/data/something/frames/108564/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of scotch tape so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116439", "images": ["AURORA/data/something/frames/132760/first.jpg", "AURORA/data/something/frames/132760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a razor on the edge of a desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116440", "images": ["AURORA/data/something/frames/159824/first.jpg", "AURORA/data/something/frames/159824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a tub with plastic bricks over, so some of the plastic bricks falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116441", "images": ["AURORA/data/something/frames/111463/first.jpg", "AURORA/data/something/frames/111463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tablet on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116442", "images": ["AURORA/data/something/frames/184524/first.jpg", "AURORA/data/something/frames/184524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 toy cars"}, {"from": "gpt", "value": ""}]} +{"id": "000000116443", "images": ["AURORA/data/something/frames/50659/first.jpg", "AURORA/data/something/frames/50659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug extender into the wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116444", "images": ["AURORA/data/something/frames/167525/first.jpg", "AURORA/data/something/frames/167525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of containers so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116445", "images": ["AURORA/data/something/frames/88721/first.jpg", "AURORA/data/something/frames/88721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling carriage clip from behind of a bicycle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116446", "images": ["AURORA/data/something/frames/49754/first.jpg", "AURORA/data/something/frames/49754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116447", "images": ["AURORA/data/something/frames/14467/first.jpg", "AURORA/data/something/frames/14467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a beer can from the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116448", "images": ["AURORA/data/something/frames/85070/first.jpg", "AURORA/data/something/frames/85070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking balpoint"}, {"from": "gpt", "value": ""}]} +{"id": "000000116449", "images": ["AURORA/data/something/frames/57146/first.jpg", "AURORA/data/something/frames/57146/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting setsquare into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116450", "images": ["AURORA/data/something/frames/149633/first.jpg", "AURORA/data/something/frames/149633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red spoon on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116451", "images": ["AURORA/data/something/frames/206013/first.jpg", "AURORA/data/something/frames/206013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116452", "images": ["AURORA/data/something/frames/105752/first.jpg", "AURORA/data/something/frames/105752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116453", "images": ["AURORA/data/something/frames/170547/first.jpg", "AURORA/data/something/frames/170547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116454", "images": ["AURORA/data/something/frames/136873/first.jpg", "AURORA/data/something/frames/136873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116455", "images": ["AURORA/data/something/frames/219599/first.jpg", "AURORA/data/something/frames/219599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116456", "images": ["AURORA/data/something/frames/197721/first.jpg", "AURORA/data/something/frames/197721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving watch towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116457", "images": ["AURORA/data/something/frames/105668/first.jpg", "AURORA/data/something/frames/105668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a kid so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116458", "images": ["AURORA/data/something/frames/195639/first.jpg", "AURORA/data/something/frames/195639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing scarves into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116459", "images": ["AURORA/data/something/frames/94139/first.jpg", "AURORA/data/something/frames/94139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116460", "images": ["AURORA/data/something/frames/182580/first.jpg", "AURORA/data/something/frames/182580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toothpaste over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116461", "images": ["AURORA/data/something/frames/211127/first.jpg", "AURORA/data/something/frames/211127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116462", "images": ["AURORA/data/something/frames/176346/first.jpg", "AURORA/data/something/frames/176346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending fork so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116463", "images": ["AURORA/data/something/frames/48989/first.jpg", "AURORA/data/something/frames/48989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box in front of a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000116464", "images": ["AURORA/data/something/frames/121481/first.jpg", "AURORA/data/something/frames/121481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stone and ring closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116465", "images": ["AURORA/data/something/frames/37627/first.jpg", "AURORA/data/something/frames/37627/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a container, revealing adapter behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116466", "images": ["AURORA/data/something/frames/17036/first.jpg", "AURORA/data/something/frames/17036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pencil onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000116467", "images": ["AURORA/data/something/frames/72855/first.jpg", "AURORA/data/something/frames/72855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hammer on the edge of a desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116468", "images": ["AURORA/data/something/frames/121844/first.jpg", "AURORA/data/something/frames/121844/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116469", "images": ["AURORA/data/something/frames/31757/first.jpg", "AURORA/data/something/frames/31757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stick down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116470", "images": ["AURORA/data/something/frames/209003/first.jpg", "AURORA/data/something/frames/209003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116471", "images": ["AURORA/data/something/frames/155471/first.jpg", "AURORA/data/something/frames/155471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with cereal over, so cereal falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116472", "images": ["AURORA/data/something/frames/219213/first.jpg", "AURORA/data/something/frames/219213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one shoe off a table of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000116473", "images": ["AURORA/data/something/frames/3172/first.jpg", "AURORA/data/something/frames/3172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116474", "images": ["AURORA/data/something/frames/1788/first.jpg", "AURORA/data/something/frames/1788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116475", "images": ["AURORA/data/something/frames/39595/first.jpg", "AURORA/data/something/frames/39595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cub down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116476", "images": ["AURORA/data/something/frames/116416/first.jpg", "AURORA/data/something/frames/116416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container away from a comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000116477", "images": ["AURORA/data/something/frames/149040/first.jpg", "AURORA/data/something/frames/149040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 4 of laundry buckle onto a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116478", "images": ["AURORA/data/something/frames/50679/first.jpg", "AURORA/data/something/frames/50679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pencil with shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116479", "images": ["AURORA/data/something/frames/188407/first.jpg", "AURORA/data/something/frames/188407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116480", "images": ["AURORA/data/something/frames/162102/first.jpg", "AURORA/data/something/frames/162102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116481", "images": ["AURORA/data/something/frames/211849/first.jpg", "AURORA/data/something/frames/211849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing green face powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116482", "images": ["AURORA/data/something/frames/205695/first.jpg", "AURORA/data/something/frames/205695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cookies and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116483", "images": ["AURORA/data/something/frames/29474/first.jpg", "AURORA/data/something/frames/29474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000116484", "images": ["AURORA/data/something/frames/165549/first.jpg", "AURORA/data/something/frames/165549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116485", "images": ["AURORA/data/something/frames/7490/first.jpg", "AURORA/data/something/frames/7490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of notebook without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116486", "images": ["AURORA/data/something/frames/185094/first.jpg", "AURORA/data/something/frames/185094/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tuner"}, {"from": "gpt", "value": ""}]} +{"id": "000000116487", "images": ["AURORA/data/something/frames/97295/first.jpg", "AURORA/data/something/frames/97295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pick closer to eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116488", "images": ["AURORA/data/something/frames/111079/first.jpg", "AURORA/data/something/frames/111079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116489", "images": ["AURORA/data/something/frames/387/first.jpg", "AURORA/data/something/frames/387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116490", "images": ["AURORA/data/something/frames/200991/first.jpg", "AURORA/data/something/frames/200991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116491", "images": ["AURORA/data/something/frames/160372/first.jpg", "AURORA/data/something/frames/160372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper clip so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116492", "images": ["AURORA/data/something/frames/203523/first.jpg", "AURORA/data/something/frames/203523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116493", "images": ["AURORA/data/something/frames/146957/first.jpg", "AURORA/data/something/frames/146957/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a hat from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116494", "images": ["AURORA/data/something/frames/56578/first.jpg", "AURORA/data/something/frames/56578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116495", "images": ["AURORA/data/something/frames/62479/first.jpg", "AURORA/data/something/frames/62479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling coins up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116496", "images": ["AURORA/data/something/frames/32293/first.jpg", "AURORA/data/something/frames/32293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with rock on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116497", "images": ["AURORA/data/something/frames/103900/first.jpg", "AURORA/data/something/frames/103900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a plastic bottle closer to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116498", "images": ["AURORA/data/something/frames/197985/first.jpg", "AURORA/data/something/frames/197985/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of toys so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116499", "images": ["AURORA/data/something/frames/44616/first.jpg", "AURORA/data/something/frames/44616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116500", "images": ["AURORA/data/something/frames/17765/first.jpg", "AURORA/data/something/frames/17765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a flashlight from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116501", "images": ["AURORA/data/something/frames/163383/first.jpg", "AURORA/data/something/frames/163383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key and comb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116502", "images": ["AURORA/data/something/frames/93698/first.jpg", "AURORA/data/something/frames/93698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paper punch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116503", "images": ["AURORA/data/something/frames/5736/first.jpg", "AURORA/data/something/frames/5736/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling liquid onto kitchen counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116504", "images": ["AURORA/data/something/frames/140301/first.jpg", "AURORA/data/something/frames/140301/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116505", "images": ["AURORA/data/something/frames/52613/first.jpg", "AURORA/data/something/frames/52613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a cardboard with a helmet on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116506", "images": ["AURORA/data/something/frames/214236/first.jpg", "AURORA/data/something/frames/214236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a knife into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116507", "images": ["AURORA/data/something/frames/9641/first.jpg", "AURORA/data/something/frames/9641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 staplers"}, {"from": "gpt", "value": ""}]} +{"id": "000000116508", "images": ["AURORA/data/something/frames/8445/first.jpg", "AURORA/data/something/frames/8445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring green liquid into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116509", "images": ["AURORA/data/something/frames/139431/first.jpg", "AURORA/data/something/frames/139431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116510", "images": ["AURORA/data/something/frames/118550/first.jpg", "AURORA/data/something/frames/118550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116511", "images": ["AURORA/data/something/frames/180540/first.jpg", "AURORA/data/something/frames/180540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000116512", "images": ["AURORA/data/something/frames/17886/first.jpg", "AURORA/data/something/frames/17886/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a brush closer to a pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116513", "images": ["AURORA/data/something/frames/100225/first.jpg", "AURORA/data/something/frames/100225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming orange sharpner"}, {"from": "gpt", "value": ""}]} +{"id": "000000116514", "images": ["AURORA/data/something/frames/195448/first.jpg", "AURORA/data/something/frames/195448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling coffee mug from behind of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116515", "images": ["AURORA/data/something/frames/197908/first.jpg", "AURORA/data/something/frames/197908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallet away from remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116516", "images": ["AURORA/data/something/frames/203775/first.jpg", "AURORA/data/something/frames/203775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a stuffed bird onto the ground"}, {"from": "gpt", "value": ""}]} +{"id": "000000116517", "images": ["AURORA/data/something/frames/6253/first.jpg", "AURORA/data/something/frames/6253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116518", "images": ["AURORA/data/something/frames/174280/first.jpg", "AURORA/data/something/frames/174280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a tablet away from a tissue box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116519", "images": ["AURORA/data/something/frames/141406/first.jpg", "AURORA/data/something/frames/141406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying a purse in a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116520", "images": ["AURORA/data/something/frames/74309/first.jpg", "AURORA/data/something/frames/74309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000116521", "images": ["AURORA/data/something/frames/12195/first.jpg", "AURORA/data/something/frames/12195/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116522", "images": ["AURORA/data/something/frames/108061/first.jpg", "AURORA/data/something/frames/108061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brick"}, {"from": "gpt", "value": ""}]} +{"id": "000000116523", "images": ["AURORA/data/something/frames/18492/first.jpg", "AURORA/data/something/frames/18492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering paper with phone case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116524", "images": ["AURORA/data/something/frames/97237/first.jpg", "AURORA/data/something/frames/97237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting microscope behind mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116525", "images": ["AURORA/data/something/frames/44635/first.jpg", "AURORA/data/something/frames/44635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white board clip with metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000116526", "images": ["AURORA/data/something/frames/220026/first.jpg", "AURORA/data/something/frames/220026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116527", "images": ["AURORA/data/something/frames/58567/first.jpg", "AURORA/data/something/frames/58567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chess piece on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116528", "images": ["AURORA/data/something/frames/42860/first.jpg", "AURORA/data/something/frames/42860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116529", "images": ["AURORA/data/something/frames/105228/first.jpg", "AURORA/data/something/frames/105228/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116530", "images": ["AURORA/data/something/frames/75201/first.jpg", "AURORA/data/something/frames/75201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116531", "images": ["AURORA/data/something/frames/80767/first.jpg", "AURORA/data/something/frames/80767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a chess board from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116532", "images": ["AURORA/data/something/frames/50632/first.jpg", "AURORA/data/something/frames/50632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116533", "images": ["AURORA/data/something/frames/14048/first.jpg", "AURORA/data/something/frames/14048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116534", "images": ["AURORA/data/something/frames/39568/first.jpg", "AURORA/data/something/frames/39568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116535", "images": ["AURORA/data/something/frames/53799/first.jpg", "AURORA/data/something/frames/53799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a chess board with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116536", "images": ["AURORA/data/something/frames/23151/first.jpg", "AURORA/data/something/frames/23151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking firm plastic up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116537", "images": ["AURORA/data/something/frames/40327/first.jpg", "AURORA/data/something/frames/40327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: water bottle colliding with water bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116538", "images": ["AURORA/data/something/frames/96935/first.jpg", "AURORA/data/something/frames/96935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening car door"}, {"from": "gpt", "value": ""}]} +{"id": "000000116539", "images": ["AURORA/data/something/frames/25211/first.jpg", "AURORA/data/something/frames/25211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug away from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116540", "images": ["AURORA/data/something/frames/6570/first.jpg", "AURORA/data/something/frames/6570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering wallet with bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116541", "images": ["AURORA/data/something/frames/188132/first.jpg", "AURORA/data/something/frames/188132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote control on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116542", "images": ["AURORA/data/something/frames/6268/first.jpg", "AURORA/data/something/frames/6268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending comb so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116543", "images": ["AURORA/data/something/frames/5877/first.jpg", "AURORA/data/something/frames/5877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spray bottle on the edge of sofa so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116544", "images": ["AURORA/data/something/frames/87109/first.jpg", "AURORA/data/something/frames/87109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking clothes peg out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116545", "images": ["AURORA/data/something/frames/127420/first.jpg", "AURORA/data/something/frames/127420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bag out of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116546", "images": ["AURORA/data/something/frames/96021/first.jpg", "AURORA/data/something/frames/96021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking paper so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116547", "images": ["AURORA/data/something/frames/6303/first.jpg", "AURORA/data/something/frames/6303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116548", "images": ["AURORA/data/something/frames/117395/first.jpg", "AURORA/data/something/frames/117395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into giftbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116549", "images": ["AURORA/data/something/frames/70671/first.jpg", "AURORA/data/something/frames/70671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stamp pad with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116550", "images": ["AURORA/data/something/frames/29972/first.jpg", "AURORA/data/something/frames/29972/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching earphone to laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116551", "images": ["AURORA/data/something/frames/56039/first.jpg", "AURORA/data/something/frames/56039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with rule on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116552", "images": ["AURORA/data/something/frames/33598/first.jpg", "AURORA/data/something/frames/33598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting trash bags upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116553", "images": ["AURORA/data/something/frames/163471/first.jpg", "AURORA/data/something/frames/163471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cd box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116554", "images": ["AURORA/data/something/frames/100623/first.jpg", "AURORA/data/something/frames/100623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ring down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116555", "images": ["AURORA/data/something/frames/63058/first.jpg", "AURORA/data/something/frames/63058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a reusable grocery bag out of its holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116556", "images": ["AURORA/data/something/frames/15547/first.jpg", "AURORA/data/something/frames/15547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116557", "images": ["AURORA/data/something/frames/157680/first.jpg", "AURORA/data/something/frames/157680/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000116558", "images": ["AURORA/data/something/frames/134377/first.jpg", "AURORA/data/something/frames/134377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling the phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116559", "images": ["AURORA/data/something/frames/155848/first.jpg", "AURORA/data/something/frames/155848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a doll so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116560", "images": ["AURORA/data/something/frames/82439/first.jpg", "AURORA/data/something/frames/82439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a glass so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116561", "images": ["AURORA/data/something/frames/132952/first.jpg", "AURORA/data/something/frames/132952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calendar away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116562", "images": ["AURORA/data/something/frames/141049/first.jpg", "AURORA/data/something/frames/141049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116563", "images": ["AURORA/data/something/frames/212483/first.jpg", "AURORA/data/something/frames/212483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting matchbox next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116564", "images": ["AURORA/data/something/frames/82991/first.jpg", "AURORA/data/something/frames/82991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into wall outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116565", "images": ["AURORA/data/something/frames/154239/first.jpg", "AURORA/data/something/frames/154239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116566", "images": ["AURORA/data/something/frames/613/first.jpg", "AURORA/data/something/frames/613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paint into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116567", "images": ["AURORA/data/something/frames/181975/first.jpg", "AURORA/data/something/frames/181975/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116568", "images": ["AURORA/data/something/frames/14965/first.jpg", "AURORA/data/something/frames/14965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116569", "images": ["AURORA/data/something/frames/40049/first.jpg", "AURORA/data/something/frames/40049/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116570", "images": ["AURORA/data/something/frames/45673/first.jpg", "AURORA/data/something/frames/45673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116571", "images": ["AURORA/data/something/frames/22367/first.jpg", "AURORA/data/something/frames/22367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116572", "images": ["AURORA/data/something/frames/88167/first.jpg", "AURORA/data/something/frames/88167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping food off of stove top"}, {"from": "gpt", "value": ""}]} +{"id": "000000116573", "images": ["AURORA/data/something/frames/56433/first.jpg", "AURORA/data/something/frames/56433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the cover of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116574", "images": ["AURORA/data/something/frames/81130/first.jpg", "AURORA/data/something/frames/81130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle cap upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116575", "images": ["AURORA/data/something/frames/6948/first.jpg", "AURORA/data/something/frames/6948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coasters without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000116576", "images": ["AURORA/data/something/frames/203294/first.jpg", "AURORA/data/something/frames/203294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) flusher of toilet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116577", "images": ["AURORA/data/something/frames/20338/first.jpg", "AURORA/data/something/frames/20338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toy out of plastic egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000116578", "images": ["AURORA/data/something/frames/146868/first.jpg", "AURORA/data/something/frames/146868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a water bottle upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116579", "images": ["AURORA/data/something/frames/51370/first.jpg", "AURORA/data/something/frames/51370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin next to belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116580", "images": ["AURORA/data/something/frames/192785/first.jpg", "AURORA/data/something/frames/192785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sunglasses into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116581", "images": ["AURORA/data/something/frames/30605/first.jpg", "AURORA/data/something/frames/30605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading water onto stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000116582", "images": ["AURORA/data/something/frames/10443/first.jpg", "AURORA/data/something/frames/10443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000116583", "images": ["AURORA/data/something/frames/72320/first.jpg", "AURORA/data/something/frames/72320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116584", "images": ["AURORA/data/something/frames/136523/first.jpg", "AURORA/data/something/frames/136523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116585", "images": ["AURORA/data/something/frames/21596/first.jpg", "AURORA/data/something/frames/21596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into cup, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116586", "images": ["AURORA/data/something/frames/185991/first.jpg", "AURORA/data/something/frames/185991/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116587", "images": ["AURORA/data/something/frames/122737/first.jpg", "AURORA/data/something/frames/122737/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116588", "images": ["AURORA/data/something/frames/117448/first.jpg", "AURORA/data/something/frames/117448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting stapler into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116589", "images": ["AURORA/data/something/frames/190268/first.jpg", "AURORA/data/something/frames/190268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a tanktop"}, {"from": "gpt", "value": ""}]} +{"id": "000000116590", "images": ["AURORA/data/something/frames/56980/first.jpg", "AURORA/data/something/frames/56980/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116591", "images": ["AURORA/data/something/frames/38891/first.jpg", "AURORA/data/something/frames/38891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug closer to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116592", "images": ["AURORA/data/something/frames/125555/first.jpg", "AURORA/data/something/frames/125555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting napkin on the edge of wooden bowl so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116593", "images": ["AURORA/data/something/frames/72851/first.jpg", "AURORA/data/something/frames/72851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking pig so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116594", "images": ["AURORA/data/something/frames/16038/first.jpg", "AURORA/data/something/frames/16038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing cd case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116595", "images": ["AURORA/data/something/frames/123399/first.jpg", "AURORA/data/something/frames/123399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a rubber pig with lint brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116596", "images": ["AURORA/data/something/frames/103003/first.jpg", "AURORA/data/something/frames/103003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking glass of water so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116597", "images": ["AURORA/data/something/frames/40719/first.jpg", "AURORA/data/something/frames/40719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116598", "images": ["AURORA/data/something/frames/116562/first.jpg", "AURORA/data/something/frames/116562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling yarn out of canister"}, {"from": "gpt", "value": ""}]} +{"id": "000000116599", "images": ["AURORA/data/something/frames/97193/first.jpg", "AURORA/data/something/frames/97193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116600", "images": ["AURORA/data/something/frames/148490/first.jpg", "AURORA/data/something/frames/148490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing something into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116601", "images": ["AURORA/data/something/frames/19786/first.jpg", "AURORA/data/something/frames/19786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing duster with metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000116602", "images": ["AURORA/data/something/frames/110402/first.jpg", "AURORA/data/something/frames/110402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a mug from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116603", "images": ["AURORA/data/something/frames/71506/first.jpg", "AURORA/data/something/frames/71506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116604", "images": ["AURORA/data/something/frames/43875/first.jpg", "AURORA/data/something/frames/43875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering calculator with a piece or paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116605", "images": ["AURORA/data/something/frames/122955/first.jpg", "AURORA/data/something/frames/122955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming split air conditioner outdoor unit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116606", "images": ["AURORA/data/something/frames/110138/first.jpg", "AURORA/data/something/frames/110138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing book with smarthphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116607", "images": ["AURORA/data/something/frames/83978/first.jpg", "AURORA/data/something/frames/83978/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a wallet so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116608", "images": ["AURORA/data/something/frames/132395/first.jpg", "AURORA/data/something/frames/132395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing faucet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116609", "images": ["AURORA/data/something/frames/185895/first.jpg", "AURORA/data/something/frames/185895/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding sun glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000116610", "images": ["AURORA/data/something/frames/3137/first.jpg", "AURORA/data/something/frames/3137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors onto tape dispenser so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116611", "images": ["AURORA/data/something/frames/61892/first.jpg", "AURORA/data/something/frames/61892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000116612", "images": ["AURORA/data/something/frames/182007/first.jpg", "AURORA/data/something/frames/182007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116613", "images": ["AURORA/data/something/frames/50661/first.jpg", "AURORA/data/something/frames/50661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming soft drink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000116614", "images": ["AURORA/data/something/frames/173777/first.jpg", "AURORA/data/something/frames/173777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soda away from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116615", "images": ["AURORA/data/something/frames/124864/first.jpg", "AURORA/data/something/frames/124864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping dish soap over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116616", "images": ["AURORA/data/something/frames/11200/first.jpg", "AURORA/data/something/frames/11200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116617", "images": ["AURORA/data/something/frames/120231/first.jpg", "AURORA/data/something/frames/120231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening petrol tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000116618", "images": ["AURORA/data/something/frames/79688/first.jpg", "AURORA/data/something/frames/79688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing phone from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116619", "images": ["AURORA/data/something/frames/92635/first.jpg", "AURORA/data/something/frames/92635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of a water pipe"}, {"from": "gpt", "value": ""}]} +{"id": "000000116620", "images": ["AURORA/data/something/frames/61840/first.jpg", "AURORA/data/something/frames/61840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) part of a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116621", "images": ["AURORA/data/something/frames/6803/first.jpg", "AURORA/data/something/frames/6803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116622", "images": ["AURORA/data/something/frames/45089/first.jpg", "AURORA/data/something/frames/45089/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116623", "images": ["AURORA/data/something/frames/62389/first.jpg", "AURORA/data/something/frames/62389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking toaster so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116624", "images": ["AURORA/data/something/frames/104454/first.jpg", "AURORA/data/something/frames/104454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116625", "images": ["AURORA/data/something/frames/74493/first.jpg", "AURORA/data/something/frames/74493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cd drive across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116626", "images": ["AURORA/data/something/frames/29389/first.jpg", "AURORA/data/something/frames/29389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning red spoon upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116627", "images": ["AURORA/data/something/frames/173496/first.jpg", "AURORA/data/something/frames/173496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000116628", "images": ["AURORA/data/something/frames/40018/first.jpg", "AURORA/data/something/frames/40018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto glass so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116629", "images": ["AURORA/data/something/frames/39683/first.jpg", "AURORA/data/something/frames/39683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing closing a manicure set"}, {"from": "gpt", "value": ""}]} +{"id": "000000116630", "images": ["AURORA/data/something/frames/33098/first.jpg", "AURORA/data/something/frames/33098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116631", "images": ["AURORA/data/something/frames/213392/first.jpg", "AURORA/data/something/frames/213392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000116632", "images": ["AURORA/data/something/frames/7940/first.jpg", "AURORA/data/something/frames/7940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening ink bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116633", "images": ["AURORA/data/something/frames/115573/first.jpg", "AURORA/data/something/frames/115573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116634", "images": ["AURORA/data/something/frames/145382/first.jpg", "AURORA/data/something/frames/145382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending matchstick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116635", "images": ["AURORA/data/something/frames/24130/first.jpg", "AURORA/data/something/frames/24130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116636", "images": ["AURORA/data/something/frames/127063/first.jpg", "AURORA/data/something/frames/127063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting screw driver"}, {"from": "gpt", "value": ""}]} +{"id": "000000116637", "images": ["AURORA/data/something/frames/8110/first.jpg", "AURORA/data/something/frames/8110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a piece of cloth wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116638", "images": ["AURORA/data/something/frames/75757/first.jpg", "AURORA/data/something/frames/75757/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glue stick on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116639", "images": ["AURORA/data/something/frames/102177/first.jpg", "AURORA/data/something/frames/102177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116640", "images": ["AURORA/data/something/frames/40280/first.jpg", "AURORA/data/something/frames/40280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116641", "images": ["AURORA/data/something/frames/89404/first.jpg", "AURORA/data/something/frames/89404/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116642", "images": ["AURORA/data/something/frames/82892/first.jpg", "AURORA/data/something/frames/82892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hanger and screwdriver closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116643", "images": ["AURORA/data/something/frames/130671/first.jpg", "AURORA/data/something/frames/130671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting mug with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116644", "images": ["AURORA/data/something/frames/60599/first.jpg", "AURORA/data/something/frames/60599/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing toothbrush from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116645", "images": ["AURORA/data/something/frames/88131/first.jpg", "AURORA/data/something/frames/88131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper towels into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116646", "images": ["AURORA/data/something/frames/7177/first.jpg", "AURORA/data/something/frames/7177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116647", "images": ["AURORA/data/something/frames/167661/first.jpg", "AURORA/data/something/frames/167661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116648", "images": ["AURORA/data/something/frames/83628/first.jpg", "AURORA/data/something/frames/83628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling broom from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116649", "images": ["AURORA/data/something/frames/91358/first.jpg", "AURORA/data/something/frames/91358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sunglasses and toothbrush on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116650", "images": ["AURORA/data/something/frames/98332/first.jpg", "AURORA/data/something/frames/98332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging lead into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116651", "images": ["AURORA/data/something/frames/123583/first.jpg", "AURORA/data/something/frames/123583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming poster"}, {"from": "gpt", "value": ""}]} +{"id": "000000116652", "images": ["AURORA/data/something/frames/53324/first.jpg", "AURORA/data/something/frames/53324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a packaging up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116653", "images": ["AURORA/data/something/frames/168601/first.jpg", "AURORA/data/something/frames/168601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116654", "images": ["AURORA/data/something/frames/118498/first.jpg", "AURORA/data/something/frames/118498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle in front of eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116655", "images": ["AURORA/data/something/frames/163847/first.jpg", "AURORA/data/something/frames/163847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a wash cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116656", "images": ["AURORA/data/something/frames/205330/first.jpg", "AURORA/data/something/frames/205330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116657", "images": ["AURORA/data/something/frames/21923/first.jpg", "AURORA/data/something/frames/21923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116658", "images": ["AURORA/data/something/frames/8092/first.jpg", "AURORA/data/something/frames/8092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming black hair tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000116659", "images": ["AURORA/data/something/frames/164331/first.jpg", "AURORA/data/something/frames/164331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from mouse with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116660", "images": ["AURORA/data/something/frames/122279/first.jpg", "AURORA/data/something/frames/122279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000116661", "images": ["AURORA/data/something/frames/142888/first.jpg", "AURORA/data/something/frames/142888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116662", "images": ["AURORA/data/something/frames/7870/first.jpg", "AURORA/data/something/frames/7870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring liquid into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116663", "images": ["AURORA/data/something/frames/151214/first.jpg", "AURORA/data/something/frames/151214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116664", "images": ["AURORA/data/something/frames/19981/first.jpg", "AURORA/data/something/frames/19981/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116665", "images": ["AURORA/data/something/frames/185471/first.jpg", "AURORA/data/something/frames/185471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bucket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116666", "images": ["AURORA/data/something/frames/45410/first.jpg", "AURORA/data/something/frames/45410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116667", "images": ["AURORA/data/something/frames/33247/first.jpg", "AURORA/data/something/frames/33247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden fork upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116668", "images": ["AURORA/data/something/frames/91910/first.jpg", "AURORA/data/something/frames/91910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the arm of plush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116669", "images": ["AURORA/data/something/frames/150963/first.jpg", "AURORA/data/something/frames/150963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping container behind bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116670", "images": ["AURORA/data/something/frames/13843/first.jpg", "AURORA/data/something/frames/13843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering striker coin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116671", "images": ["AURORA/data/something/frames/172786/first.jpg", "AURORA/data/something/frames/172786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116672", "images": ["AURORA/data/something/frames/136685/first.jpg", "AURORA/data/something/frames/136685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) the edge of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116673", "images": ["AURORA/data/something/frames/201763/first.jpg", "AURORA/data/something/frames/201763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116674", "images": ["AURORA/data/something/frames/196602/first.jpg", "AURORA/data/something/frames/196602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116675", "images": ["AURORA/data/something/frames/44263/first.jpg", "AURORA/data/something/frames/44263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing casual hat from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116676", "images": ["AURORA/data/something/frames/165984/first.jpg", "AURORA/data/something/frames/165984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116677", "images": ["AURORA/data/something/frames/162628/first.jpg", "AURORA/data/something/frames/162628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116678", "images": ["AURORA/data/something/frames/170243/first.jpg", "AURORA/data/something/frames/170243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling plushie from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116679", "images": ["AURORA/data/something/frames/108988/first.jpg", "AURORA/data/something/frames/108988/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116680", "images": ["AURORA/data/something/frames/138471/first.jpg", "AURORA/data/something/frames/138471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a ball into a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116681", "images": ["AURORA/data/something/frames/64640/first.jpg", "AURORA/data/something/frames/64640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching smart phone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116682", "images": ["AURORA/data/something/frames/1105/first.jpg", "AURORA/data/something/frames/1105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering mug with big pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116683", "images": ["AURORA/data/something/frames/106243/first.jpg", "AURORA/data/something/frames/106243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cross over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116684", "images": ["AURORA/data/something/frames/26012/first.jpg", "AURORA/data/something/frames/26012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116685", "images": ["AURORA/data/something/frames/25674/first.jpg", "AURORA/data/something/frames/25674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking belt from bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000116686", "images": ["AURORA/data/something/frames/198898/first.jpg", "AURORA/data/something/frames/198898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a plastic bag, revealing a coin behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116687", "images": ["AURORA/data/something/frames/81215/first.jpg", "AURORA/data/something/frames/81215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping coin onto blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116688", "images": ["AURORA/data/something/frames/219401/first.jpg", "AURORA/data/something/frames/219401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cigarette"}, {"from": "gpt", "value": ""}]} +{"id": "000000116689", "images": ["AURORA/data/something/frames/206292/first.jpg", "AURORA/data/something/frames/206292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116690", "images": ["AURORA/data/something/frames/65987/first.jpg", "AURORA/data/something/frames/65987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116691", "images": ["AURORA/data/something/frames/14551/first.jpg", "AURORA/data/something/frames/14551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116692", "images": ["AURORA/data/something/frames/80828/first.jpg", "AURORA/data/something/frames/80828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking medicine bottle out of a prescription bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116693", "images": ["AURORA/data/something/frames/142894/first.jpg", "AURORA/data/something/frames/142894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plastic ognions colliding with plastic choux and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116694", "images": ["AURORA/data/something/frames/137582/first.jpg", "AURORA/data/something/frames/137582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon next to sponze"}, {"from": "gpt", "value": ""}]} +{"id": "000000116695", "images": ["AURORA/data/something/frames/219248/first.jpg", "AURORA/data/something/frames/219248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a plastic box across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116696", "images": ["AURORA/data/something/frames/83801/first.jpg", "AURORA/data/something/frames/83801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering key with cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116697", "images": ["AURORA/data/something/frames/140387/first.jpg", "AURORA/data/something/frames/140387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stool with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116698", "images": ["AURORA/data/something/frames/52914/first.jpg", "AURORA/data/something/frames/52914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116699", "images": ["AURORA/data/something/frames/194953/first.jpg", "AURORA/data/something/frames/194953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116700", "images": ["AURORA/data/something/frames/94288/first.jpg", "AURORA/data/something/frames/94288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000116701", "images": ["AURORA/data/something/frames/35677/first.jpg", "AURORA/data/something/frames/35677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lotion bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116702", "images": ["AURORA/data/something/frames/178165/first.jpg", "AURORA/data/something/frames/178165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116703", "images": ["AURORA/data/something/frames/126421/first.jpg", "AURORA/data/something/frames/126421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching girl statue with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116704", "images": ["AURORA/data/something/frames/56512/first.jpg", "AURORA/data/something/frames/56512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume and cream away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116705", "images": ["AURORA/data/something/frames/158875/first.jpg", "AURORA/data/something/frames/158875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon behind a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116706", "images": ["AURORA/data/something/frames/99214/first.jpg", "AURORA/data/something/frames/99214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116707", "images": ["AURORA/data/something/frames/23681/first.jpg", "AURORA/data/something/frames/23681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle onto ball so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116708", "images": ["AURORA/data/something/frames/93576/first.jpg", "AURORA/data/something/frames/93576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cigarette lighter with wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000116709", "images": ["AURORA/data/something/frames/152243/first.jpg", "AURORA/data/something/frames/152243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116710", "images": ["AURORA/data/something/frames/110663/first.jpg", "AURORA/data/something/frames/110663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bar soap upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116711", "images": ["AURORA/data/something/frames/208019/first.jpg", "AURORA/data/something/frames/208019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116712", "images": ["AURORA/data/something/frames/69401/first.jpg", "AURORA/data/something/frames/69401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116713", "images": ["AURORA/data/something/frames/48371/first.jpg", "AURORA/data/something/frames/48371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering lantern"}, {"from": "gpt", "value": ""}]} +{"id": "000000116714", "images": ["AURORA/data/something/frames/14784/first.jpg", "AURORA/data/something/frames/14784/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000116715", "images": ["AURORA/data/something/frames/190079/first.jpg", "AURORA/data/something/frames/190079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a hammer and a nail away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116716", "images": ["AURORA/data/something/frames/2819/first.jpg", "AURORA/data/something/frames/2819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering goggles with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116717", "images": ["AURORA/data/something/frames/87683/first.jpg", "AURORA/data/something/frames/87683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping souce off of floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000116718", "images": ["AURORA/data/something/frames/93704/first.jpg", "AURORA/data/something/frames/93704/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling plushie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116719", "images": ["AURORA/data/something/frames/186916/first.jpg", "AURORA/data/something/frames/186916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116720", "images": ["AURORA/data/something/frames/166257/first.jpg", "AURORA/data/something/frames/166257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spoon and a cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116721", "images": ["AURORA/data/something/frames/46884/first.jpg", "AURORA/data/something/frames/46884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing blankets into a fabric bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116722", "images": ["AURORA/data/something/frames/45040/first.jpg", "AURORA/data/something/frames/45040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling dish onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116723", "images": ["AURORA/data/something/frames/195577/first.jpg", "AURORA/data/something/frames/195577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a teddy bear upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116724", "images": ["AURORA/data/something/frames/15504/first.jpg", "AURORA/data/something/frames/15504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116725", "images": ["AURORA/data/something/frames/27690/first.jpg", "AURORA/data/something/frames/27690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116726", "images": ["AURORA/data/something/frames/117774/first.jpg", "AURORA/data/something/frames/117774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pear with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116727", "images": ["AURORA/data/something/frames/93275/first.jpg", "AURORA/data/something/frames/93275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116728", "images": ["AURORA/data/something/frames/89853/first.jpg", "AURORA/data/something/frames/89853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming hair dryer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116729", "images": ["AURORA/data/something/frames/46001/first.jpg", "AURORA/data/something/frames/46001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chalk, magnet and marker pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116730", "images": ["AURORA/data/something/frames/33775/first.jpg", "AURORA/data/something/frames/33775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tissue box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116731", "images": ["AURORA/data/something/frames/14215/first.jpg", "AURORA/data/something/frames/14215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a leaf just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116732", "images": ["AURORA/data/something/frames/75613/first.jpg", "AURORA/data/something/frames/75613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 ink bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000116733", "images": ["AURORA/data/something/frames/136128/first.jpg", "AURORA/data/something/frames/136128/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116734", "images": ["AURORA/data/something/frames/71799/first.jpg", "AURORA/data/something/frames/71799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116735", "images": ["AURORA/data/something/frames/72232/first.jpg", "AURORA/data/something/frames/72232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116736", "images": ["AURORA/data/something/frames/72462/first.jpg", "AURORA/data/something/frames/72462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mug and remote closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116737", "images": ["AURORA/data/something/frames/195073/first.jpg", "AURORA/data/something/frames/195073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116738", "images": ["AURORA/data/something/frames/115800/first.jpg", "AURORA/data/something/frames/115800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cloth into a cardboard box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116739", "images": ["AURORA/data/something/frames/203165/first.jpg", "AURORA/data/something/frames/203165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000116740", "images": ["AURORA/data/something/frames/87870/first.jpg", "AURORA/data/something/frames/87870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a penny so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116741", "images": ["AURORA/data/something/frames/111888/first.jpg", "AURORA/data/something/frames/111888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116742", "images": ["AURORA/data/something/frames/187748/first.jpg", "AURORA/data/something/frames/187748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring drink into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116743", "images": ["AURORA/data/something/frames/207682/first.jpg", "AURORA/data/something/frames/207682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking can so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000116744", "images": ["AURORA/data/something/frames/150504/first.jpg", "AURORA/data/something/frames/150504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving domino and domino closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116745", "images": ["AURORA/data/something/frames/35613/first.jpg", "AURORA/data/something/frames/35613/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116746", "images": ["AURORA/data/something/frames/78671/first.jpg", "AURORA/data/something/frames/78671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an usb into pc"}, {"from": "gpt", "value": ""}]} +{"id": "000000116747", "images": ["AURORA/data/something/frames/82024/first.jpg", "AURORA/data/something/frames/82024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a computer charger into a wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116748", "images": ["AURORA/data/something/frames/23718/first.jpg", "AURORA/data/something/frames/23718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116749", "images": ["AURORA/data/something/frames/204703/first.jpg", "AURORA/data/something/frames/204703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cat in front of cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116750", "images": ["AURORA/data/something/frames/171502/first.jpg", "AURORA/data/something/frames/171502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a badminton bat next to a pair of shoes"}, {"from": "gpt", "value": ""}]} +{"id": "000000116751", "images": ["AURORA/data/something/frames/4548/first.jpg", "AURORA/data/something/frames/4548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering vitamin with hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116752", "images": ["AURORA/data/something/frames/128498/first.jpg", "AURORA/data/something/frames/128498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cart"}, {"from": "gpt", "value": ""}]} +{"id": "000000116753", "images": ["AURORA/data/something/frames/166244/first.jpg", "AURORA/data/something/frames/166244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with thread"}, {"from": "gpt", "value": ""}]} +{"id": "000000116754", "images": ["AURORA/data/something/frames/105814/first.jpg", "AURORA/data/something/frames/105814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116755", "images": ["AURORA/data/something/frames/32373/first.jpg", "AURORA/data/something/frames/32373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a small jar and a small jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116756", "images": ["AURORA/data/something/frames/113525/first.jpg", "AURORA/data/something/frames/113525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000116757", "images": ["AURORA/data/something/frames/151079/first.jpg", "AURORA/data/something/frames/151079/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116758", "images": ["AURORA/data/something/frames/118544/first.jpg", "AURORA/data/something/frames/118544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding pamphlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116759", "images": ["AURORA/data/something/frames/51413/first.jpg", "AURORA/data/something/frames/51413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking dog toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116760", "images": ["AURORA/data/something/frames/65224/first.jpg", "AURORA/data/something/frames/65224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power adapter into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116761", "images": ["AURORA/data/something/frames/210275/first.jpg", "AURORA/data/something/frames/210275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of many travel magazines"}, {"from": "gpt", "value": ""}]} +{"id": "000000116762", "images": ["AURORA/data/something/frames/174660/first.jpg", "AURORA/data/something/frames/174660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking knife out of knife holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000116763", "images": ["AURORA/data/something/frames/9719/first.jpg", "AURORA/data/something/frames/9719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving laptop up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116764", "images": ["AURORA/data/something/frames/117848/first.jpg", "AURORA/data/something/frames/117848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red crayon away from blue crayon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116765", "images": ["AURORA/data/something/frames/220410/first.jpg", "AURORA/data/something/frames/220410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sfety helmet from beam"}, {"from": "gpt", "value": ""}]} +{"id": "000000116766", "images": ["AURORA/data/something/frames/6519/first.jpg", "AURORA/data/something/frames/6519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of tin foil so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116767", "images": ["AURORA/data/something/frames/11322/first.jpg", "AURORA/data/something/frames/11322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116768", "images": ["AURORA/data/something/frames/188741/first.jpg", "AURORA/data/something/frames/188741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into the glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116769", "images": ["AURORA/data/something/frames/57471/first.jpg", "AURORA/data/something/frames/57471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sink counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116770", "images": ["AURORA/data/something/frames/166383/first.jpg", "AURORA/data/something/frames/166383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116771", "images": ["AURORA/data/something/frames/89422/first.jpg", "AURORA/data/something/frames/89422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching sticker to wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116772", "images": ["AURORA/data/something/frames/4170/first.jpg", "AURORA/data/something/frames/4170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a necklace next to chewing gums"}, {"from": "gpt", "value": ""}]} +{"id": "000000116773", "images": ["AURORA/data/something/frames/25481/first.jpg", "AURORA/data/something/frames/25481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting beer can with crayon on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116774", "images": ["AURORA/data/something/frames/94055/first.jpg", "AURORA/data/something/frames/94055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116775", "images": ["AURORA/data/something/frames/166441/first.jpg", "AURORA/data/something/frames/166441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116776", "images": ["AURORA/data/something/frames/87834/first.jpg", "AURORA/data/something/frames/87834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tag, bangle and clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116777", "images": ["AURORA/data/something/frames/210701/first.jpg", "AURORA/data/something/frames/210701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning body spray upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116778", "images": ["AURORA/data/something/frames/45676/first.jpg", "AURORA/data/something/frames/45676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid away from straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000116779", "images": ["AURORA/data/something/frames/164740/first.jpg", "AURORA/data/something/frames/164740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116780", "images": ["AURORA/data/something/frames/155015/first.jpg", "AURORA/data/something/frames/155015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116781", "images": ["AURORA/data/something/frames/212610/first.jpg", "AURORA/data/something/frames/212610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing packet so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116782", "images": ["AURORA/data/something/frames/119661/first.jpg", "AURORA/data/something/frames/119661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a usb into a wall adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116783", "images": ["AURORA/data/something/frames/108927/first.jpg", "AURORA/data/something/frames/108927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pear"}, {"from": "gpt", "value": ""}]} +{"id": "000000116784", "images": ["AURORA/data/something/frames/122484/first.jpg", "AURORA/data/something/frames/122484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plate on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116785", "images": ["AURORA/data/something/frames/27911/first.jpg", "AURORA/data/something/frames/27911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of headband so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000116786", "images": ["AURORA/data/something/frames/141628/first.jpg", "AURORA/data/something/frames/141628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing patterned paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116787", "images": ["AURORA/data/something/frames/191283/first.jpg", "AURORA/data/something/frames/191283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000116788", "images": ["AURORA/data/something/frames/99415/first.jpg", "AURORA/data/something/frames/99415/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wallete and mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116789", "images": ["AURORA/data/something/frames/30183/first.jpg", "AURORA/data/something/frames/30183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000116790", "images": ["AURORA/data/something/frames/124163/first.jpg", "AURORA/data/something/frames/124163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of stick so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116791", "images": ["AURORA/data/something/frames/139629/first.jpg", "AURORA/data/something/frames/139629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a measuring tape so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116792", "images": ["AURORA/data/something/frames/24493/first.jpg", "AURORA/data/something/frames/24493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into storage"}, {"from": "gpt", "value": ""}]} +{"id": "000000116793", "images": ["AURORA/data/something/frames/111625/first.jpg", "AURORA/data/something/frames/111625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming hair brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116794", "images": ["AURORA/data/something/frames/172496/first.jpg", "AURORA/data/something/frames/172496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116795", "images": ["AURORA/data/something/frames/22709/first.jpg", "AURORA/data/something/frames/22709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning stamp ink upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116796", "images": ["AURORA/data/something/frames/129665/first.jpg", "AURORA/data/something/frames/129665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bottle of shampoo"}, {"from": "gpt", "value": ""}]} +{"id": "000000116797", "images": ["AURORA/data/something/frames/30668/first.jpg", "AURORA/data/something/frames/30668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to horse statue"}, {"from": "gpt", "value": ""}]} +{"id": "000000116798", "images": ["AURORA/data/something/frames/74414/first.jpg", "AURORA/data/something/frames/74414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small sharpener from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116799", "images": ["AURORA/data/something/frames/119678/first.jpg", "AURORA/data/something/frames/119678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116800", "images": ["AURORA/data/something/frames/211547/first.jpg", "AURORA/data/something/frames/211547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cups"}, {"from": "gpt", "value": ""}]} +{"id": "000000116801", "images": ["AURORA/data/something/frames/60716/first.jpg", "AURORA/data/something/frames/60716/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping coffee off of the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116802", "images": ["AURORA/data/something/frames/5679/first.jpg", "AURORA/data/something/frames/5679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116803", "images": ["AURORA/data/something/frames/96088/first.jpg", "AURORA/data/something/frames/96088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000116804", "images": ["AURORA/data/something/frames/220131/first.jpg", "AURORA/data/something/frames/220131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116805", "images": ["AURORA/data/something/frames/113076/first.jpg", "AURORA/data/something/frames/113076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a golf ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000116806", "images": ["AURORA/data/something/frames/130900/first.jpg", "AURORA/data/something/frames/130900/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cover just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116807", "images": ["AURORA/data/something/frames/114944/first.jpg", "AURORA/data/something/frames/114944/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball closer to a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000116808", "images": ["AURORA/data/something/frames/193811/first.jpg", "AURORA/data/something/frames/193811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting timepiece and toy on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116809", "images": ["AURORA/data/something/frames/205565/first.jpg", "AURORA/data/something/frames/205565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116810", "images": ["AURORA/data/something/frames/66765/first.jpg", "AURORA/data/something/frames/66765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116811", "images": ["AURORA/data/something/frames/212065/first.jpg", "AURORA/data/something/frames/212065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser behind calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000116812", "images": ["AURORA/data/something/frames/85329/first.jpg", "AURORA/data/something/frames/85329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cover up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116813", "images": ["AURORA/data/something/frames/140125/first.jpg", "AURORA/data/something/frames/140125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116814", "images": ["AURORA/data/something/frames/117768/first.jpg", "AURORA/data/something/frames/117768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet computer with dust mask on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116815", "images": ["AURORA/data/something/frames/190864/first.jpg", "AURORA/data/something/frames/190864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pump of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116816", "images": ["AURORA/data/something/frames/35158/first.jpg", "AURORA/data/something/frames/35158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping biscuit packet in front of water-bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116817", "images": ["AURORA/data/something/frames/80758/first.jpg", "AURORA/data/something/frames/80758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sun glass towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116818", "images": ["AURORA/data/something/frames/20616/first.jpg", "AURORA/data/something/frames/20616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116819", "images": ["AURORA/data/something/frames/147010/first.jpg", "AURORA/data/something/frames/147010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book in front of a bandana"}, {"from": "gpt", "value": ""}]} +{"id": "000000116820", "images": ["AURORA/data/something/frames/53854/first.jpg", "AURORA/data/something/frames/53854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tea bag upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000116821", "images": ["AURORA/data/something/frames/59860/first.jpg", "AURORA/data/something/frames/59860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting iron plate with toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000116822", "images": ["AURORA/data/something/frames/152010/first.jpg", "AURORA/data/something/frames/152010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering screwdriver with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000116823", "images": ["AURORA/data/something/frames/78383/first.jpg", "AURORA/data/something/frames/78383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: match box colliding with match box and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116824", "images": ["AURORA/data/something/frames/111106/first.jpg", "AURORA/data/something/frames/111106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a padlock from behind of a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000116825", "images": ["AURORA/data/something/frames/83155/first.jpg", "AURORA/data/something/frames/83155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116826", "images": ["AURORA/data/something/frames/135149/first.jpg", "AURORA/data/something/frames/135149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking black pouch up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116827", "images": ["AURORA/data/something/frames/149753/first.jpg", "AURORA/data/something/frames/149753/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb adaptor to a computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116828", "images": ["AURORA/data/something/frames/143698/first.jpg", "AURORA/data/something/frames/143698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing white paper, revealing memory card behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000116829", "images": ["AURORA/data/something/frames/23791/first.jpg", "AURORA/data/something/frames/23791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering quarter with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116830", "images": ["AURORA/data/something/frames/188038/first.jpg", "AURORA/data/something/frames/188038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring wtaer into the cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000116831", "images": ["AURORA/data/something/frames/125313/first.jpg", "AURORA/data/something/frames/125313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000116832", "images": ["AURORA/data/something/frames/89241/first.jpg", "AURORA/data/something/frames/89241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass similar to"}, {"from": "gpt", "value": ""}]} +{"id": "000000116833", "images": ["AURORA/data/something/frames/200491/first.jpg", "AURORA/data/something/frames/200491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000116834", "images": ["AURORA/data/something/frames/72143/first.jpg", "AURORA/data/something/frames/72143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a remote control with a paper sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116835", "images": ["AURORA/data/something/frames/121526/first.jpg", "AURORA/data/something/frames/121526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a jar up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116836", "images": ["AURORA/data/something/frames/157356/first.jpg", "AURORA/data/something/frames/157356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116837", "images": ["AURORA/data/something/frames/72106/first.jpg", "AURORA/data/something/frames/72106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming vacuum cleaner"}, {"from": "gpt", "value": ""}]} +{"id": "000000116838", "images": ["AURORA/data/something/frames/112372/first.jpg", "AURORA/data/something/frames/112372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb charger into computer but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116839", "images": ["AURORA/data/something/frames/210163/first.jpg", "AURORA/data/something/frames/210163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a banana onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116840", "images": ["AURORA/data/something/frames/64265/first.jpg", "AURORA/data/something/frames/64265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116841", "images": ["AURORA/data/something/frames/182546/first.jpg", "AURORA/data/something/frames/182546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116842", "images": ["AURORA/data/something/frames/134331/first.jpg", "AURORA/data/something/frames/134331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a glasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116843", "images": ["AURORA/data/something/frames/11239/first.jpg", "AURORA/data/something/frames/11239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping a rag up with a spatula"}, {"from": "gpt", "value": ""}]} +{"id": "000000116844", "images": ["AURORA/data/something/frames/51929/first.jpg", "AURORA/data/something/frames/51929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a stone and a stone so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116845", "images": ["AURORA/data/something/frames/118536/first.jpg", "AURORA/data/something/frames/118536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting textbook upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116846", "images": ["AURORA/data/something/frames/14873/first.jpg", "AURORA/data/something/frames/14873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief behind a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116847", "images": ["AURORA/data/something/frames/201513/first.jpg", "AURORA/data/something/frames/201513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116848", "images": ["AURORA/data/something/frames/94994/first.jpg", "AURORA/data/something/frames/94994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering earphones with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116849", "images": ["AURORA/data/something/frames/104087/first.jpg", "AURORA/data/something/frames/104087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plush into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116850", "images": ["AURORA/data/something/frames/19777/first.jpg", "AURORA/data/something/frames/19777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a sunglasses case"}, {"from": "gpt", "value": ""}]} +{"id": "000000116851", "images": ["AURORA/data/something/frames/156867/first.jpg", "AURORA/data/something/frames/156867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming green toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000116852", "images": ["AURORA/data/something/frames/76379/first.jpg", "AURORA/data/something/frames/76379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116853", "images": ["AURORA/data/something/frames/197621/first.jpg", "AURORA/data/something/frames/197621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: ipad being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116854", "images": ["AURORA/data/something/frames/56440/first.jpg", "AURORA/data/something/frames/56440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting red candle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116855", "images": ["AURORA/data/something/frames/80371/first.jpg", "AURORA/data/something/frames/80371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a jewellry box with jewellry over, so jewellry falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116856", "images": ["AURORA/data/something/frames/149054/first.jpg", "AURORA/data/something/frames/149054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking black umbrella up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116857", "images": ["AURORA/data/something/frames/145663/first.jpg", "AURORA/data/something/frames/145663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000116858", "images": ["AURORA/data/something/frames/62631/first.jpg", "AURORA/data/something/frames/62631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116859", "images": ["AURORA/data/something/frames/220213/first.jpg", "AURORA/data/something/frames/220213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coins out of a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116860", "images": ["AURORA/data/something/frames/105779/first.jpg", "AURORA/data/something/frames/105779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tshirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000116861", "images": ["AURORA/data/something/frames/110791/first.jpg", "AURORA/data/something/frames/110791/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening closet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116862", "images": ["AURORA/data/something/frames/158145/first.jpg", "AURORA/data/something/frames/158145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116863", "images": ["AURORA/data/something/frames/46597/first.jpg", "AURORA/data/something/frames/46597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blue hair clip with white spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000116864", "images": ["AURORA/data/something/frames/168864/first.jpg", "AURORA/data/something/frames/168864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000116865", "images": ["AURORA/data/something/frames/159733/first.jpg", "AURORA/data/something/frames/159733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering onion"}, {"from": "gpt", "value": ""}]} +{"id": "000000116866", "images": ["AURORA/data/something/frames/60178/first.jpg", "AURORA/data/something/frames/60178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pants into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116867", "images": ["AURORA/data/something/frames/16862/first.jpg", "AURORA/data/something/frames/16862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and knife closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116868", "images": ["AURORA/data/something/frames/171615/first.jpg", "AURORA/data/something/frames/171615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000116869", "images": ["AURORA/data/something/frames/194709/first.jpg", "AURORA/data/something/frames/194709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching adhesive tape to a cabinet"}, {"from": "gpt", "value": ""}]} +{"id": "000000116870", "images": ["AURORA/data/something/frames/111890/first.jpg", "AURORA/data/something/frames/111890/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a marker so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116871", "images": ["AURORA/data/something/frames/110362/first.jpg", "AURORA/data/something/frames/110362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116872", "images": ["AURORA/data/something/frames/44127/first.jpg", "AURORA/data/something/frames/44127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling computer mouse from behind of thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000116873", "images": ["AURORA/data/something/frames/85081/first.jpg", "AURORA/data/something/frames/85081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000116874", "images": ["AURORA/data/something/frames/54792/first.jpg", "AURORA/data/something/frames/54792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a sock with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116875", "images": ["AURORA/data/something/frames/114635/first.jpg", "AURORA/data/something/frames/114635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pencil with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116876", "images": ["AURORA/data/something/frames/211312/first.jpg", "AURORA/data/something/frames/211312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip magnet to lamp stand joint"}, {"from": "gpt", "value": ""}]} +{"id": "000000116877", "images": ["AURORA/data/something/frames/150668/first.jpg", "AURORA/data/something/frames/150668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: burying lid in butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116878", "images": ["AURORA/data/something/frames/52114/first.jpg", "AURORA/data/something/frames/52114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling scissor from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116879", "images": ["AURORA/data/something/frames/17126/first.jpg", "AURORA/data/something/frames/17126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking three juice boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000116880", "images": ["AURORA/data/something/frames/138792/first.jpg", "AURORA/data/something/frames/138792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116881", "images": ["AURORA/data/something/frames/27110/first.jpg", "AURORA/data/something/frames/27110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker in front of tape dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000116882", "images": ["AURORA/data/something/frames/40045/first.jpg", "AURORA/data/something/frames/40045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing book into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116883", "images": ["AURORA/data/something/frames/36570/first.jpg", "AURORA/data/something/frames/36570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching earphone with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116884", "images": ["AURORA/data/something/frames/154204/first.jpg", "AURORA/data/something/frames/154204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000116885", "images": ["AURORA/data/something/frames/203267/first.jpg", "AURORA/data/something/frames/203267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116886", "images": ["AURORA/data/something/frames/97986/first.jpg", "AURORA/data/something/frames/97986/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching an aligator clip to wire"}, {"from": "gpt", "value": ""}]} +{"id": "000000116887", "images": ["AURORA/data/something/frames/142395/first.jpg", "AURORA/data/something/frames/142395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116888", "images": ["AURORA/data/something/frames/29861/first.jpg", "AURORA/data/something/frames/29861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116889", "images": ["AURORA/data/something/frames/169190/first.jpg", "AURORA/data/something/frames/169190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116890", "images": ["AURORA/data/something/frames/183675/first.jpg", "AURORA/data/something/frames/183675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cream container off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116891", "images": ["AURORA/data/something/frames/82223/first.jpg", "AURORA/data/something/frames/82223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle closer to a sock"}, {"from": "gpt", "value": ""}]} +{"id": "000000116892", "images": ["AURORA/data/something/frames/19579/first.jpg", "AURORA/data/something/frames/19579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a handkerchief next to a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116893", "images": ["AURORA/data/something/frames/209230/first.jpg", "AURORA/data/something/frames/209230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000116894", "images": ["AURORA/data/something/frames/217607/first.jpg", "AURORA/data/something/frames/217607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116895", "images": ["AURORA/data/something/frames/62818/first.jpg", "AURORA/data/something/frames/62818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging nightlight into powerpoint"}, {"from": "gpt", "value": ""}]} +{"id": "000000116896", "images": ["AURORA/data/something/frames/110884/first.jpg", "AURORA/data/something/frames/110884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000116897", "images": ["AURORA/data/something/frames/199768/first.jpg", "AURORA/data/something/frames/199768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pot in front of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116898", "images": ["AURORA/data/something/frames/218994/first.jpg", "AURORA/data/something/frames/218994/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a thumb drive next to a water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116899", "images": ["AURORA/data/something/frames/77584/first.jpg", "AURORA/data/something/frames/77584/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching battery cover to tv remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000116900", "images": ["AURORA/data/something/frames/201576/first.jpg", "AURORA/data/something/frames/201576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000116901", "images": ["AURORA/data/something/frames/67147/first.jpg", "AURORA/data/something/frames/67147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pink cologne from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116902", "images": ["AURORA/data/something/frames/34782/first.jpg", "AURORA/data/something/frames/34782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116903", "images": ["AURORA/data/something/frames/173407/first.jpg", "AURORA/data/something/frames/173407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering stapler with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116904", "images": ["AURORA/data/something/frames/33635/first.jpg", "AURORA/data/something/frames/33635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling an electric pencil sharpener out of a basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116905", "images": ["AURORA/data/something/frames/192554/first.jpg", "AURORA/data/something/frames/192554/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pot so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116906", "images": ["AURORA/data/something/frames/101885/first.jpg", "AURORA/data/something/frames/101885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116907", "images": ["AURORA/data/something/frames/187934/first.jpg", "AURORA/data/something/frames/187934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging water into mouth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116908", "images": ["AURORA/data/something/frames/138398/first.jpg", "AURORA/data/something/frames/138398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116909", "images": ["AURORA/data/something/frames/106600/first.jpg", "AURORA/data/something/frames/106600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a paper so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116910", "images": ["AURORA/data/something/frames/108588/first.jpg", "AURORA/data/something/frames/108588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cover off of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116911", "images": ["AURORA/data/something/frames/184312/first.jpg", "AURORA/data/something/frames/184312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a ball up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116912", "images": ["AURORA/data/something/frames/130515/first.jpg", "AURORA/data/something/frames/130515/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116913", "images": ["AURORA/data/something/frames/123884/first.jpg", "AURORA/data/something/frames/123884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116914", "images": ["AURORA/data/something/frames/171294/first.jpg", "AURORA/data/something/frames/171294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: rubber ball colliding with rubber ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116915", "images": ["AURORA/data/something/frames/192406/first.jpg", "AURORA/data/something/frames/192406/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116916", "images": ["AURORA/data/something/frames/146953/first.jpg", "AURORA/data/something/frames/146953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming wireless mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000116917", "images": ["AURORA/data/something/frames/216134/first.jpg", "AURORA/data/something/frames/216134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming step up transformer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116918", "images": ["AURORA/data/something/frames/52443/first.jpg", "AURORA/data/something/frames/52443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a toy onto a cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000116919", "images": ["AURORA/data/something/frames/112653/first.jpg", "AURORA/data/something/frames/112653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning plastic cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116920", "images": ["AURORA/data/something/frames/86731/first.jpg", "AURORA/data/something/frames/86731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000116921", "images": ["AURORA/data/something/frames/106735/first.jpg", "AURORA/data/something/frames/106735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle closer to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116922", "images": ["AURORA/data/something/frames/81087/first.jpg", "AURORA/data/something/frames/81087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tissue from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116923", "images": ["AURORA/data/something/frames/125899/first.jpg", "AURORA/data/something/frames/125899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with glass on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116924", "images": ["AURORA/data/something/frames/198296/first.jpg", "AURORA/data/something/frames/198296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a small container"}, {"from": "gpt", "value": ""}]} +{"id": "000000116925", "images": ["AURORA/data/something/frames/197047/first.jpg", "AURORA/data/something/frames/197047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000116926", "images": ["AURORA/data/something/frames/186343/first.jpg", "AURORA/data/something/frames/186343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pyramid on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000116927", "images": ["AURORA/data/something/frames/42454/first.jpg", "AURORA/data/something/frames/42454/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting laptop with cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000116928", "images": ["AURORA/data/something/frames/192045/first.jpg", "AURORA/data/something/frames/192045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a leaflet across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116929", "images": ["AURORA/data/something/frames/137281/first.jpg", "AURORA/data/something/frames/137281/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116930", "images": ["AURORA/data/something/frames/135383/first.jpg", "AURORA/data/something/frames/135383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116931", "images": ["AURORA/data/something/frames/23889/first.jpg", "AURORA/data/something/frames/23889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000116932", "images": ["AURORA/data/something/frames/131879/first.jpg", "AURORA/data/something/frames/131879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116933", "images": ["AURORA/data/something/frames/1810/first.jpg", "AURORA/data/something/frames/1810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling toy out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116934", "images": ["AURORA/data/something/frames/2661/first.jpg", "AURORA/data/something/frames/2661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116935", "images": ["AURORA/data/something/frames/11432/first.jpg", "AURORA/data/something/frames/11432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a dvd and a mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116936", "images": ["AURORA/data/something/frames/174633/first.jpg", "AURORA/data/something/frames/174633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing plastic bag from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116937", "images": ["AURORA/data/something/frames/85262/first.jpg", "AURORA/data/something/frames/85262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging night light into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000116938", "images": ["AURORA/data/something/frames/179478/first.jpg", "AURORA/data/something/frames/179478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 shirts"}, {"from": "gpt", "value": ""}]} +{"id": "000000116939", "images": ["AURORA/data/something/frames/39685/first.jpg", "AURORA/data/something/frames/39685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving radio away from powerbank"}, {"from": "gpt", "value": ""}]} +{"id": "000000116940", "images": ["AURORA/data/something/frames/168185/first.jpg", "AURORA/data/something/frames/168185/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper onto coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000116941", "images": ["AURORA/data/something/frames/206597/first.jpg", "AURORA/data/something/frames/206597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle closer to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116942", "images": ["AURORA/data/something/frames/43287/first.jpg", "AURORA/data/something/frames/43287/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming pictures"}, {"from": "gpt", "value": ""}]} +{"id": "000000116943", "images": ["AURORA/data/something/frames/216359/first.jpg", "AURORA/data/something/frames/216359/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching small book with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116944", "images": ["AURORA/data/something/frames/124045/first.jpg", "AURORA/data/something/frames/124045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into beaker until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000116945", "images": ["AURORA/data/something/frames/74115/first.jpg", "AURORA/data/something/frames/74115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing the fan from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116946", "images": ["AURORA/data/something/frames/68019/first.jpg", "AURORA/data/something/frames/68019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coaster from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116947", "images": ["AURORA/data/something/frames/63956/first.jpg", "AURORA/data/something/frames/63956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white candle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000116948", "images": ["AURORA/data/something/frames/77562/first.jpg", "AURORA/data/something/frames/77562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000116949", "images": ["AURORA/data/something/frames/98797/first.jpg", "AURORA/data/something/frames/98797/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting stapler with highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116950", "images": ["AURORA/data/something/frames/27501/first.jpg", "AURORA/data/something/frames/27501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000116951", "images": ["AURORA/data/something/frames/128037/first.jpg", "AURORA/data/something/frames/128037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pens next to a desk organizer"}, {"from": "gpt", "value": ""}]} +{"id": "000000116952", "images": ["AURORA/data/something/frames/54968/first.jpg", "AURORA/data/something/frames/54968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116953", "images": ["AURORA/data/something/frames/31984/first.jpg", "AURORA/data/something/frames/31984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys onto bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000116954", "images": ["AURORA/data/something/frames/140157/first.jpg", "AURORA/data/something/frames/140157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a mug on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116955", "images": ["AURORA/data/something/frames/117056/first.jpg", "AURORA/data/something/frames/117056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with paper on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116956", "images": ["AURORA/data/something/frames/180859/first.jpg", "AURORA/data/something/frames/180859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000116957", "images": ["AURORA/data/something/frames/210300/first.jpg", "AURORA/data/something/frames/210300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching fireplace with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000116958", "images": ["AURORA/data/something/frames/144836/first.jpg", "AURORA/data/something/frames/144836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning hair gel bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116959", "images": ["AURORA/data/something/frames/89283/first.jpg", "AURORA/data/something/frames/89283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000116960", "images": ["AURORA/data/something/frames/215308/first.jpg", "AURORA/data/something/frames/215308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling cassette pie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000116961", "images": ["AURORA/data/something/frames/120532/first.jpg", "AURORA/data/something/frames/120532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting desk with highlighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116962", "images": ["AURORA/data/something/frames/53011/first.jpg", "AURORA/data/something/frames/53011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting videotape upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116963", "images": ["AURORA/data/something/frames/196594/first.jpg", "AURORA/data/something/frames/196594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cereal onto paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116964", "images": ["AURORA/data/something/frames/65842/first.jpg", "AURORA/data/something/frames/65842/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a remote control onto a couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000116965", "images": ["AURORA/data/something/frames/118523/first.jpg", "AURORA/data/something/frames/118523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning snow globe upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116966", "images": ["AURORA/data/something/frames/139161/first.jpg", "AURORA/data/something/frames/139161/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000116967", "images": ["AURORA/data/something/frames/127456/first.jpg", "AURORA/data/something/frames/127456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying waterbottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000116968", "images": ["AURORA/data/something/frames/152367/first.jpg", "AURORA/data/something/frames/152367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116969", "images": ["AURORA/data/something/frames/51893/first.jpg", "AURORA/data/something/frames/51893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flavor juice in front of coffee pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000116970", "images": ["AURORA/data/something/frames/167538/first.jpg", "AURORA/data/something/frames/167538/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox next to a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000116971", "images": ["AURORA/data/something/frames/185166/first.jpg", "AURORA/data/something/frames/185166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mixer grinder behind the vessel"}, {"from": "gpt", "value": ""}]} +{"id": "000000116972", "images": ["AURORA/data/something/frames/149131/first.jpg", "AURORA/data/something/frames/149131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a piece of paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116973", "images": ["AURORA/data/something/frames/111300/first.jpg", "AURORA/data/something/frames/111300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pack of cards and a box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116974", "images": ["AURORA/data/something/frames/212418/first.jpg", "AURORA/data/something/frames/212418/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving metal weight and metal weight closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000116975", "images": ["AURORA/data/something/frames/11379/first.jpg", "AURORA/data/something/frames/11379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting yellow coloured hair band next to charger adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000116976", "images": ["AURORA/data/something/frames/151180/first.jpg", "AURORA/data/something/frames/151180/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pencil boxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116977", "images": ["AURORA/data/something/frames/13136/first.jpg", "AURORA/data/something/frames/13136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting headphones and a book on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000116978", "images": ["AURORA/data/something/frames/127210/first.jpg", "AURORA/data/something/frames/127210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000116979", "images": ["AURORA/data/something/frames/107899/first.jpg", "AURORA/data/something/frames/107899/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle with pills in it over, so pills falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000116980", "images": ["AURORA/data/something/frames/86673/first.jpg", "AURORA/data/something/frames/86673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening brown covered note book"}, {"from": "gpt", "value": ""}]} +{"id": "000000116981", "images": ["AURORA/data/something/frames/78582/first.jpg", "AURORA/data/something/frames/78582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 notebooks"}, {"from": "gpt", "value": ""}]} +{"id": "000000116982", "images": ["AURORA/data/something/frames/199813/first.jpg", "AURORA/data/something/frames/199813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116983", "images": ["AURORA/data/something/frames/130887/first.jpg", "AURORA/data/something/frames/130887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116984", "images": ["AURORA/data/something/frames/140535/first.jpg", "AURORA/data/something/frames/140535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sticky note just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000116985", "images": ["AURORA/data/something/frames/145107/first.jpg", "AURORA/data/something/frames/145107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping shampoo bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000116986", "images": ["AURORA/data/something/frames/35502/first.jpg", "AURORA/data/something/frames/35502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting book with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000116987", "images": ["AURORA/data/something/frames/138448/first.jpg", "AURORA/data/something/frames/138448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purple colour foldable pocket knife into spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000116988", "images": ["AURORA/data/something/frames/86118/first.jpg", "AURORA/data/something/frames/86118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box of tissues upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000116989", "images": ["AURORA/data/something/frames/112712/first.jpg", "AURORA/data/something/frames/112712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116990", "images": ["AURORA/data/something/frames/75052/first.jpg", "AURORA/data/something/frames/75052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000116991", "images": ["AURORA/data/something/frames/205305/first.jpg", "AURORA/data/something/frames/205305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: small plates colliding with small plates and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000116992", "images": ["AURORA/data/something/frames/84184/first.jpg", "AURORA/data/something/frames/84184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: paper ball being deflected from water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000116993", "images": ["AURORA/data/something/frames/216434/first.jpg", "AURORA/data/something/frames/216434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000116994", "images": ["AURORA/data/something/frames/78428/first.jpg", "AURORA/data/something/frames/78428/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a mobile up"}, {"from": "gpt", "value": ""}]} +{"id": "000000116995", "images": ["AURORA/data/something/frames/27222/first.jpg", "AURORA/data/something/frames/27222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000116996", "images": ["AURORA/data/something/frames/157449/first.jpg", "AURORA/data/something/frames/157449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000116997", "images": ["AURORA/data/something/frames/57131/first.jpg", "AURORA/data/something/frames/57131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping earing into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000116998", "images": ["AURORA/data/something/frames/207818/first.jpg", "AURORA/data/something/frames/207818/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging guitar pick out of rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000116999", "images": ["AURORA/data/something/frames/169385/first.jpg", "AURORA/data/something/frames/169385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking seven gooseberry"}, {"from": "gpt", "value": ""}]} +{"id": "000000117000", "images": ["AURORA/data/something/frames/91758/first.jpg", "AURORA/data/something/frames/91758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117001", "images": ["AURORA/data/something/frames/173075/first.jpg", "AURORA/data/something/frames/173075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing clothes into a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117002", "images": ["AURORA/data/something/frames/37836/first.jpg", "AURORA/data/something/frames/37836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117003", "images": ["AURORA/data/something/frames/27722/first.jpg", "AURORA/data/something/frames/27722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting stool with laptop on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117004", "images": ["AURORA/data/something/frames/140054/first.jpg", "AURORA/data/something/frames/140054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117005", "images": ["AURORA/data/something/frames/189909/first.jpg", "AURORA/data/something/frames/189909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one spice out of may"}, {"from": "gpt", "value": ""}]} +{"id": "000000117006", "images": ["AURORA/data/something/frames/163313/first.jpg", "AURORA/data/something/frames/163313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking five slices of bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117007", "images": ["AURORA/data/something/frames/145466/first.jpg", "AURORA/data/something/frames/145466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117008", "images": ["AURORA/data/something/frames/119102/first.jpg", "AURORA/data/something/frames/119102/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a padlock so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117009", "images": ["AURORA/data/something/frames/73540/first.jpg", "AURORA/data/something/frames/73540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117010", "images": ["AURORA/data/something/frames/119573/first.jpg", "AURORA/data/something/frames/119573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing avocado off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117011", "images": ["AURORA/data/something/frames/28864/first.jpg", "AURORA/data/something/frames/28864/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote onto bed"}, {"from": "gpt", "value": ""}]} +{"id": "000000117012", "images": ["AURORA/data/something/frames/28865/first.jpg", "AURORA/data/something/frames/28865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue paper into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117013", "images": ["AURORA/data/something/frames/55877/first.jpg", "AURORA/data/something/frames/55877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking toothpaste"}, {"from": "gpt", "value": ""}]} +{"id": "000000117014", "images": ["AURORA/data/something/frames/184070/first.jpg", "AURORA/data/something/frames/184070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto cup so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117015", "images": ["AURORA/data/something/frames/72326/first.jpg", "AURORA/data/something/frames/72326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into wall plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117016", "images": ["AURORA/data/something/frames/168061/first.jpg", "AURORA/data/something/frames/168061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting salt shaker onto matchbox so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117017", "images": ["AURORA/data/something/frames/5741/first.jpg", "AURORA/data/something/frames/5741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117018", "images": ["AURORA/data/something/frames/7773/first.jpg", "AURORA/data/something/frames/7773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117019", "images": ["AURORA/data/something/frames/134076/first.jpg", "AURORA/data/something/frames/134076/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pen colliding with another pen and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117020", "images": ["AURORA/data/something/frames/2693/first.jpg", "AURORA/data/something/frames/2693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a bench with a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117021", "images": ["AURORA/data/something/frames/181760/first.jpg", "AURORA/data/something/frames/181760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117022", "images": ["AURORA/data/something/frames/87289/first.jpg", "AURORA/data/something/frames/87289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117023", "images": ["AURORA/data/something/frames/33041/first.jpg", "AURORA/data/something/frames/33041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117024", "images": ["AURORA/data/something/frames/19837/first.jpg", "AURORA/data/something/frames/19837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pills into pill bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117025", "images": ["AURORA/data/something/frames/192463/first.jpg", "AURORA/data/something/frames/192463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring, bangle and chain on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117026", "images": ["AURORA/data/something/frames/147266/first.jpg", "AURORA/data/something/frames/147266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117027", "images": ["AURORA/data/something/frames/179668/first.jpg", "AURORA/data/something/frames/179668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pennies onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117028", "images": ["AURORA/data/something/frames/23920/first.jpg", "AURORA/data/something/frames/23920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting debit card, rular and marker on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117029", "images": ["AURORA/data/something/frames/219060/first.jpg", "AURORA/data/something/frames/219060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117030", "images": ["AURORA/data/something/frames/88992/first.jpg", "AURORA/data/something/frames/88992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork out of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117031", "images": ["AURORA/data/something/frames/197774/first.jpg", "AURORA/data/something/frames/197774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117032", "images": ["AURORA/data/something/frames/177327/first.jpg", "AURORA/data/something/frames/177327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming rubber"}, {"from": "gpt", "value": ""}]} +{"id": "000000117033", "images": ["AURORA/data/something/frames/185036/first.jpg", "AURORA/data/something/frames/185036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000117034", "images": ["AURORA/data/something/frames/156118/first.jpg", "AURORA/data/something/frames/156118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117035", "images": ["AURORA/data/something/frames/195660/first.jpg", "AURORA/data/something/frames/195660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 1 plate onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117036", "images": ["AURORA/data/something/frames/86475/first.jpg", "AURORA/data/something/frames/86475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pencil case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117037", "images": ["AURORA/data/something/frames/67222/first.jpg", "AURORA/data/something/frames/67222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paper next to person"}, {"from": "gpt", "value": ""}]} +{"id": "000000117038", "images": ["AURORA/data/something/frames/98259/first.jpg", "AURORA/data/something/frames/98259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping coffee spills off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117039", "images": ["AURORA/data/something/frames/133158/first.jpg", "AURORA/data/something/frames/133158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming pink toothbrush case"}, {"from": "gpt", "value": ""}]} +{"id": "000000117040", "images": ["AURORA/data/something/frames/39317/first.jpg", "AURORA/data/something/frames/39317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with clip on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117041", "images": ["AURORA/data/something/frames/200298/first.jpg", "AURORA/data/something/frames/200298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117042", "images": ["AURORA/data/something/frames/183843/first.jpg", "AURORA/data/something/frames/183843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117043", "images": ["AURORA/data/something/frames/220750/first.jpg", "AURORA/data/something/frames/220750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117044", "images": ["AURORA/data/something/frames/201527/first.jpg", "AURORA/data/something/frames/201527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something onto something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117045", "images": ["AURORA/data/something/frames/32942/first.jpg", "AURORA/data/something/frames/32942/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of hair band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117046", "images": ["AURORA/data/something/frames/192632/first.jpg", "AURORA/data/something/frames/192632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glas on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117047", "images": ["AURORA/data/something/frames/134848/first.jpg", "AURORA/data/something/frames/134848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117048", "images": ["AURORA/data/something/frames/135768/first.jpg", "AURORA/data/something/frames/135768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 plates"}, {"from": "gpt", "value": ""}]} +{"id": "000000117049", "images": ["AURORA/data/something/frames/123057/first.jpg", "AURORA/data/something/frames/123057/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117050", "images": ["AURORA/data/something/frames/114017/first.jpg", "AURORA/data/something/frames/114017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117051", "images": ["AURORA/data/something/frames/187074/first.jpg", "AURORA/data/something/frames/187074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air freshener into a plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117052", "images": ["AURORA/data/something/frames/146477/first.jpg", "AURORA/data/something/frames/146477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and pen away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117053", "images": ["AURORA/data/something/frames/4810/first.jpg", "AURORA/data/something/frames/4810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a lighter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117054", "images": ["AURORA/data/something/frames/142577/first.jpg", "AURORA/data/something/frames/142577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairband, pendrive and hair clip on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117055", "images": ["AURORA/data/something/frames/140189/first.jpg", "AURORA/data/something/frames/140189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pillow off of couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117056", "images": ["AURORA/data/something/frames/81100/first.jpg", "AURORA/data/something/frames/81100/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117057", "images": ["AURORA/data/something/frames/48381/first.jpg", "AURORA/data/something/frames/48381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book and smarthphone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117058", "images": ["AURORA/data/something/frames/113381/first.jpg", "AURORA/data/something/frames/113381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117059", "images": ["AURORA/data/something/frames/107646/first.jpg", "AURORA/data/something/frames/107646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117060", "images": ["AURORA/data/something/frames/134918/first.jpg", "AURORA/data/something/frames/134918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a telephone so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117061", "images": ["AURORA/data/something/frames/85424/first.jpg", "AURORA/data/something/frames/85424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117062", "images": ["AURORA/data/something/frames/138854/first.jpg", "AURORA/data/something/frames/138854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving green colour pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117063", "images": ["AURORA/data/something/frames/161289/first.jpg", "AURORA/data/something/frames/161289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving crayon closer to doorknob"}, {"from": "gpt", "value": ""}]} +{"id": "000000117064", "images": ["AURORA/data/something/frames/17223/first.jpg", "AURORA/data/something/frames/17223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping card over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117065", "images": ["AURORA/data/something/frames/27351/first.jpg", "AURORA/data/something/frames/27351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117066", "images": ["AURORA/data/something/frames/106189/first.jpg", "AURORA/data/something/frames/106189/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117067", "images": ["AURORA/data/something/frames/98792/first.jpg", "AURORA/data/something/frames/98792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117068", "images": ["AURORA/data/something/frames/126789/first.jpg", "AURORA/data/something/frames/126789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wallet being deflected from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117069", "images": ["AURORA/data/something/frames/80714/first.jpg", "AURORA/data/something/frames/80714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a head with a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117070", "images": ["AURORA/data/something/frames/190272/first.jpg", "AURORA/data/something/frames/190272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving striker coin down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117071", "images": ["AURORA/data/something/frames/79372/first.jpg", "AURORA/data/something/frames/79372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000117072", "images": ["AURORA/data/something/frames/194908/first.jpg", "AURORA/data/something/frames/194908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking sponge so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117073", "images": ["AURORA/data/something/frames/175034/first.jpg", "AURORA/data/something/frames/175034/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass onto a slanted surface but it doesn't glide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117074", "images": ["AURORA/data/something/frames/31762/first.jpg", "AURORA/data/something/frames/31762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking something out of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117075", "images": ["AURORA/data/something/frames/10012/first.jpg", "AURORA/data/something/frames/10012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stamp pad from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117076", "images": ["AURORA/data/something/frames/143712/first.jpg", "AURORA/data/something/frames/143712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling stuff onto a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117077", "images": ["AURORA/data/something/frames/2699/first.jpg", "AURORA/data/something/frames/2699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a wire into a telephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117078", "images": ["AURORA/data/something/frames/12747/first.jpg", "AURORA/data/something/frames/12747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117079", "images": ["AURORA/data/something/frames/209388/first.jpg", "AURORA/data/something/frames/209388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a coin to a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117080", "images": ["AURORA/data/something/frames/135379/first.jpg", "AURORA/data/something/frames/135379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a scarf"}, {"from": "gpt", "value": ""}]} +{"id": "000000117081", "images": ["AURORA/data/something/frames/87993/first.jpg", "AURORA/data/something/frames/87993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a charger next to a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117082", "images": ["AURORA/data/something/frames/202902/first.jpg", "AURORA/data/something/frames/202902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a perfume bottle onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117083", "images": ["AURORA/data/something/frames/81108/first.jpg", "AURORA/data/something/frames/81108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000117084", "images": ["AURORA/data/something/frames/108041/first.jpg", "AURORA/data/something/frames/108041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117085", "images": ["AURORA/data/something/frames/62681/first.jpg", "AURORA/data/something/frames/62681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping rice up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117086", "images": ["AURORA/data/something/frames/65280/first.jpg", "AURORA/data/something/frames/65280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a box onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117087", "images": ["AURORA/data/something/frames/64118/first.jpg", "AURORA/data/something/frames/64118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117088", "images": ["AURORA/data/something/frames/130172/first.jpg", "AURORA/data/something/frames/130172/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper folder"}, {"from": "gpt", "value": ""}]} +{"id": "000000117089", "images": ["AURORA/data/something/frames/115799/first.jpg", "AURORA/data/something/frames/115799/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking book out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117090", "images": ["AURORA/data/something/frames/48561/first.jpg", "AURORA/data/something/frames/48561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117091", "images": ["AURORA/data/something/frames/30297/first.jpg", "AURORA/data/something/frames/30297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding bed sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117092", "images": ["AURORA/data/something/frames/186219/first.jpg", "AURORA/data/something/frames/186219/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a napkin from behind of a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117093", "images": ["AURORA/data/something/frames/206244/first.jpg", "AURORA/data/something/frames/206244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cloth into a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000117094", "images": ["AURORA/data/something/frames/106801/first.jpg", "AURORA/data/something/frames/106801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering purse with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117095", "images": ["AURORA/data/something/frames/178569/first.jpg", "AURORA/data/something/frames/178569/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a computer mouse so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117096", "images": ["AURORA/data/something/frames/108579/first.jpg", "AURORA/data/something/frames/108579/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117097", "images": ["AURORA/data/something/frames/33760/first.jpg", "AURORA/data/something/frames/33760/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening cream tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000117098", "images": ["AURORA/data/something/frames/194422/first.jpg", "AURORA/data/something/frames/194422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117099", "images": ["AURORA/data/something/frames/21373/first.jpg", "AURORA/data/something/frames/21373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117100", "images": ["AURORA/data/something/frames/30749/first.jpg", "AURORA/data/something/frames/30749/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117101", "images": ["AURORA/data/something/frames/51343/first.jpg", "AURORA/data/something/frames/51343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117102", "images": ["AURORA/data/something/frames/4725/first.jpg", "AURORA/data/something/frames/4725/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a ball onto a shelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000117103", "images": ["AURORA/data/something/frames/93493/first.jpg", "AURORA/data/something/frames/93493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving blocks across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117104", "images": ["AURORA/data/something/frames/132010/first.jpg", "AURORA/data/something/frames/132010/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping keys into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117105", "images": ["AURORA/data/something/frames/143904/first.jpg", "AURORA/data/something/frames/143904/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117106", "images": ["AURORA/data/something/frames/173782/first.jpg", "AURORA/data/something/frames/173782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117107", "images": ["AURORA/data/something/frames/206696/first.jpg", "AURORA/data/something/frames/206696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117108", "images": ["AURORA/data/something/frames/40414/first.jpg", "AURORA/data/something/frames/40414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lip balm so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117109", "images": ["AURORA/data/something/frames/99901/first.jpg", "AURORA/data/something/frames/99901/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117110", "images": ["AURORA/data/something/frames/134252/first.jpg", "AURORA/data/something/frames/134252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting buttons and coaster on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117111", "images": ["AURORA/data/something/frames/154717/first.jpg", "AURORA/data/something/frames/154717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping sellotape in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117112", "images": ["AURORA/data/something/frames/103938/first.jpg", "AURORA/data/something/frames/103938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting battery onto small tin so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117113", "images": ["AURORA/data/something/frames/113764/first.jpg", "AURORA/data/something/frames/113764/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding invitation letter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117114", "images": ["AURORA/data/something/frames/73936/first.jpg", "AURORA/data/something/frames/73936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117115", "images": ["AURORA/data/something/frames/16441/first.jpg", "AURORA/data/something/frames/16441/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000117116", "images": ["AURORA/data/something/frames/171973/first.jpg", "AURORA/data/something/frames/171973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming red booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117117", "images": ["AURORA/data/something/frames/92995/first.jpg", "AURORA/data/something/frames/92995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting hand with rainboot"}, {"from": "gpt", "value": ""}]} +{"id": "000000117118", "images": ["AURORA/data/something/frames/18745/first.jpg", "AURORA/data/something/frames/18745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching glass with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117119", "images": ["AURORA/data/something/frames/50740/first.jpg", "AURORA/data/something/frames/50740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip to ring"}, {"from": "gpt", "value": ""}]} +{"id": "000000117120", "images": ["AURORA/data/something/frames/62372/first.jpg", "AURORA/data/something/frames/62372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a bandage so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117121", "images": ["AURORA/data/something/frames/118678/first.jpg", "AURORA/data/something/frames/118678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117122", "images": ["AURORA/data/something/frames/173941/first.jpg", "AURORA/data/something/frames/173941/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a sofa with a cushion"}, {"from": "gpt", "value": ""}]} +{"id": "000000117123", "images": ["AURORA/data/something/frames/120687/first.jpg", "AURORA/data/something/frames/120687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from vacuum cleaner with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117124", "images": ["AURORA/data/something/frames/15449/first.jpg", "AURORA/data/something/frames/15449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 bibles"}, {"from": "gpt", "value": ""}]} +{"id": "000000117125", "images": ["AURORA/data/something/frames/54110/first.jpg", "AURORA/data/something/frames/54110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flower away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117126", "images": ["AURORA/data/something/frames/190897/first.jpg", "AURORA/data/something/frames/190897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117127", "images": ["AURORA/data/something/frames/110340/first.jpg", "AURORA/data/something/frames/110340/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of sprayer so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117128", "images": ["AURORA/data/something/frames/188137/first.jpg", "AURORA/data/something/frames/188137/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting watch on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117129", "images": ["AURORA/data/something/frames/218823/first.jpg", "AURORA/data/something/frames/218823/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117130", "images": ["AURORA/data/something/frames/34291/first.jpg", "AURORA/data/something/frames/34291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117131", "images": ["AURORA/data/something/frames/81009/first.jpg", "AURORA/data/something/frames/81009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117132", "images": ["AURORA/data/something/frames/214380/first.jpg", "AURORA/data/something/frames/214380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a vessel with a thermocol box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117133", "images": ["AURORA/data/something/frames/44325/first.jpg", "AURORA/data/something/frames/44325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117134", "images": ["AURORA/data/something/frames/143775/first.jpg", "AURORA/data/something/frames/143775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117135", "images": ["AURORA/data/something/frames/10509/first.jpg", "AURORA/data/something/frames/10509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic package up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117136", "images": ["AURORA/data/something/frames/216213/first.jpg", "AURORA/data/something/frames/216213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) earth of globe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117137", "images": ["AURORA/data/something/frames/182111/first.jpg", "AURORA/data/something/frames/182111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117138", "images": ["AURORA/data/something/frames/9965/first.jpg", "AURORA/data/something/frames/9965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving iphone and small pillow away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117139", "images": ["AURORA/data/something/frames/206214/first.jpg", "AURORA/data/something/frames/206214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paperweight away from coffee cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117140", "images": ["AURORA/data/something/frames/189956/first.jpg", "AURORA/data/something/frames/189956/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a marker on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117141", "images": ["AURORA/data/something/frames/18178/first.jpg", "AURORA/data/something/frames/18178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to cufflinks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117142", "images": ["AURORA/data/something/frames/198357/first.jpg", "AURORA/data/something/frames/198357/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and spoon on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117143", "images": ["AURORA/data/something/frames/167055/first.jpg", "AURORA/data/something/frames/167055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering watch with tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000117144", "images": ["AURORA/data/something/frames/98603/first.jpg", "AURORA/data/something/frames/98603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black remote from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117145", "images": ["AURORA/data/something/frames/200865/first.jpg", "AURORA/data/something/frames/200865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117146", "images": ["AURORA/data/something/frames/156231/first.jpg", "AURORA/data/something/frames/156231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hanger towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117147", "images": ["AURORA/data/something/frames/202907/first.jpg", "AURORA/data/something/frames/202907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing thermos"}, {"from": "gpt", "value": ""}]} +{"id": "000000117148", "images": ["AURORA/data/something/frames/215928/first.jpg", "AURORA/data/something/frames/215928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sticky notes, a pen and a candle on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117149", "images": ["AURORA/data/something/frames/48378/first.jpg", "AURORA/data/something/frames/48378/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of blocks so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117150", "images": ["AURORA/data/something/frames/6476/first.jpg", "AURORA/data/something/frames/6476/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting water bottle with comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000117151", "images": ["AURORA/data/something/frames/186556/first.jpg", "AURORA/data/something/frames/186556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and fork away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117152", "images": ["AURORA/data/something/frames/95870/first.jpg", "AURORA/data/something/frames/95870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen out of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117153", "images": ["AURORA/data/something/frames/133202/first.jpg", "AURORA/data/something/frames/133202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening green face powder"}, {"from": "gpt", "value": ""}]} +{"id": "000000117154", "images": ["AURORA/data/something/frames/170488/first.jpg", "AURORA/data/something/frames/170488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing alcohol from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117155", "images": ["AURORA/data/something/frames/107377/first.jpg", "AURORA/data/something/frames/107377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pebble, battery and key on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117156", "images": ["AURORA/data/something/frames/186777/first.jpg", "AURORA/data/something/frames/186777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling tissue out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117157", "images": ["AURORA/data/something/frames/149112/first.jpg", "AURORA/data/something/frames/149112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117158", "images": ["AURORA/data/something/frames/184391/first.jpg", "AURORA/data/something/frames/184391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into power outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117159", "images": ["AURORA/data/something/frames/163597/first.jpg", "AURORA/data/something/frames/163597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping soda bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117160", "images": ["AURORA/data/something/frames/208134/first.jpg", "AURORA/data/something/frames/208134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cell phone and paper away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117161", "images": ["AURORA/data/something/frames/199968/first.jpg", "AURORA/data/something/frames/199968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117162", "images": ["AURORA/data/something/frames/43510/first.jpg", "AURORA/data/something/frames/43510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cell phone charging cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000117163", "images": ["AURORA/data/something/frames/142070/first.jpg", "AURORA/data/something/frames/142070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking four articles of clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117164", "images": ["AURORA/data/something/frames/142266/first.jpg", "AURORA/data/something/frames/142266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117165", "images": ["AURORA/data/something/frames/43853/first.jpg", "AURORA/data/something/frames/43853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pieces of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117166", "images": ["AURORA/data/something/frames/194028/first.jpg", "AURORA/data/something/frames/194028/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) edge of plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117167", "images": ["AURORA/data/something/frames/17331/first.jpg", "AURORA/data/something/frames/17331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117168", "images": ["AURORA/data/something/frames/164600/first.jpg", "AURORA/data/something/frames/164600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117169", "images": ["AURORA/data/something/frames/108453/first.jpg", "AURORA/data/something/frames/108453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117170", "images": ["AURORA/data/something/frames/131701/first.jpg", "AURORA/data/something/frames/131701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with glue bottle on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117171", "images": ["AURORA/data/something/frames/115400/first.jpg", "AURORA/data/something/frames/115400/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling things up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117172", "images": ["AURORA/data/something/frames/219321/first.jpg", "AURORA/data/something/frames/219321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic fork until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117173", "images": ["AURORA/data/something/frames/63936/first.jpg", "AURORA/data/something/frames/63936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking a shell up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117174", "images": ["AURORA/data/something/frames/213085/first.jpg", "AURORA/data/something/frames/213085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting tablet with deodorant on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117175", "images": ["AURORA/data/something/frames/165666/first.jpg", "AURORA/data/something/frames/165666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wood and binder clip closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117176", "images": ["AURORA/data/something/frames/82682/first.jpg", "AURORA/data/something/frames/82682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cd player and usb away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117177", "images": ["AURORA/data/something/frames/53264/first.jpg", "AURORA/data/something/frames/53264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen from front of"}, {"from": "gpt", "value": ""}]} +{"id": "000000117178", "images": ["AURORA/data/something/frames/178520/first.jpg", "AURORA/data/something/frames/178520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping salt off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117179", "images": ["AURORA/data/something/frames/182184/first.jpg", "AURORA/data/something/frames/182184/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving rock up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117180", "images": ["AURORA/data/something/frames/5588/first.jpg", "AURORA/data/something/frames/5588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting lotion"}, {"from": "gpt", "value": ""}]} +{"id": "000000117181", "images": ["AURORA/data/something/frames/65162/first.jpg", "AURORA/data/something/frames/65162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping toiletpaper over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117182", "images": ["AURORA/data/something/frames/160061/first.jpg", "AURORA/data/something/frames/160061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117183", "images": ["AURORA/data/something/frames/182876/first.jpg", "AURORA/data/something/frames/182876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117184", "images": ["AURORA/data/something/frames/50140/first.jpg", "AURORA/data/something/frames/50140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117185", "images": ["AURORA/data/something/frames/19300/first.jpg", "AURORA/data/something/frames/19300/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117186", "images": ["AURORA/data/something/frames/124893/first.jpg", "AURORA/data/something/frames/124893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin in front of a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000117187", "images": ["AURORA/data/something/frames/149011/first.jpg", "AURORA/data/something/frames/149011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching recorder piece to recorder end piece"}, {"from": "gpt", "value": ""}]} +{"id": "000000117188", "images": ["AURORA/data/something/frames/171659/first.jpg", "AURORA/data/something/frames/171659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pear with a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117189", "images": ["AURORA/data/something/frames/148520/first.jpg", "AURORA/data/something/frames/148520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a wooden figure upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117190", "images": ["AURORA/data/something/frames/124093/first.jpg", "AURORA/data/something/frames/124093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117191", "images": ["AURORA/data/something/frames/161519/first.jpg", "AURORA/data/something/frames/161519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marker upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117192", "images": ["AURORA/data/something/frames/142326/first.jpg", "AURORA/data/something/frames/142326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of tissue paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117193", "images": ["AURORA/data/something/frames/149882/first.jpg", "AURORA/data/something/frames/149882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging night light into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117194", "images": ["AURORA/data/something/frames/140448/first.jpg", "AURORA/data/something/frames/140448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending branch until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117195", "images": ["AURORA/data/something/frames/95522/first.jpg", "AURORA/data/something/frames/95522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soft drink pack on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117196", "images": ["AURORA/data/something/frames/134065/first.jpg", "AURORA/data/something/frames/134065/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering coaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000117197", "images": ["AURORA/data/something/frames/195142/first.jpg", "AURORA/data/something/frames/195142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the bottle and the box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117198", "images": ["AURORA/data/something/frames/41436/first.jpg", "AURORA/data/something/frames/41436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving canister and cup so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117199", "images": ["AURORA/data/something/frames/87127/first.jpg", "AURORA/data/something/frames/87127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something onto something else that so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117200", "images": ["AURORA/data/something/frames/122971/first.jpg", "AURORA/data/something/frames/122971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: book colliding with book and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117201", "images": ["AURORA/data/something/frames/134790/first.jpg", "AURORA/data/something/frames/134790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117202", "images": ["AURORA/data/something/frames/179768/first.jpg", "AURORA/data/something/frames/179768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with scale"}, {"from": "gpt", "value": ""}]} +{"id": "000000117203", "images": ["AURORA/data/something/frames/195322/first.jpg", "AURORA/data/something/frames/195322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping fork onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117204", "images": ["AURORA/data/something/frames/201604/first.jpg", "AURORA/data/something/frames/201604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117205", "images": ["AURORA/data/something/frames/148911/first.jpg", "AURORA/data/something/frames/148911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip onto cream tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117206", "images": ["AURORA/data/something/frames/185525/first.jpg", "AURORA/data/something/frames/185525/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving note book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117207", "images": ["AURORA/data/something/frames/107619/first.jpg", "AURORA/data/something/frames/107619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair clip similar to other hairclips that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117208", "images": ["AURORA/data/something/frames/2800/first.jpg", "AURORA/data/something/frames/2800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a charger next to a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117209", "images": ["AURORA/data/something/frames/192618/first.jpg", "AURORA/data/something/frames/192618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving coin up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117210", "images": ["AURORA/data/something/frames/206836/first.jpg", "AURORA/data/something/frames/206836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117211", "images": ["AURORA/data/something/frames/86148/first.jpg", "AURORA/data/something/frames/86148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a beaker so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117212", "images": ["AURORA/data/something/frames/150124/first.jpg", "AURORA/data/something/frames/150124/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) paper towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000117213", "images": ["AURORA/data/something/frames/156862/first.jpg", "AURORA/data/something/frames/156862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117214", "images": ["AURORA/data/something/frames/79825/first.jpg", "AURORA/data/something/frames/79825/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117215", "images": ["AURORA/data/something/frames/32165/first.jpg", "AURORA/data/something/frames/32165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching crystal candle holder with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117216", "images": ["AURORA/data/something/frames/76786/first.jpg", "AURORA/data/something/frames/76786/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117217", "images": ["AURORA/data/something/frames/195135/first.jpg", "AURORA/data/something/frames/195135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117218", "images": ["AURORA/data/something/frames/195976/first.jpg", "AURORA/data/something/frames/195976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring behind matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000117219", "images": ["AURORA/data/something/frames/162311/first.jpg", "AURORA/data/something/frames/162311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117220", "images": ["AURORA/data/something/frames/174074/first.jpg", "AURORA/data/something/frames/174074/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117221", "images": ["AURORA/data/something/frames/59220/first.jpg", "AURORA/data/something/frames/59220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into a adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117222", "images": ["AURORA/data/something/frames/85689/first.jpg", "AURORA/data/something/frames/85689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic spoon closer to orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000117223", "images": ["AURORA/data/something/frames/99643/first.jpg", "AURORA/data/something/frames/99643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117224", "images": ["AURORA/data/something/frames/25829/first.jpg", "AURORA/data/something/frames/25829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking purse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117225", "images": ["AURORA/data/something/frames/214590/first.jpg", "AURORA/data/something/frames/214590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000117226", "images": ["AURORA/data/something/frames/148858/first.jpg", "AURORA/data/something/frames/148858/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a brass casing up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117227", "images": ["AURORA/data/something/frames/178283/first.jpg", "AURORA/data/something/frames/178283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto sponge"}, {"from": "gpt", "value": ""}]} +{"id": "000000117228", "images": ["AURORA/data/something/frames/73456/first.jpg", "AURORA/data/something/frames/73456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000117229", "images": ["AURORA/data/something/frames/187735/first.jpg", "AURORA/data/something/frames/187735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine closer to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117230", "images": ["AURORA/data/something/frames/110509/first.jpg", "AURORA/data/something/frames/110509/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small book from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117231", "images": ["AURORA/data/something/frames/86492/first.jpg", "AURORA/data/something/frames/86492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wheel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117232", "images": ["AURORA/data/something/frames/177260/first.jpg", "AURORA/data/something/frames/177260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fruit next to bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117233", "images": ["AURORA/data/something/frames/189756/first.jpg", "AURORA/data/something/frames/189756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117234", "images": ["AURORA/data/something/frames/134519/first.jpg", "AURORA/data/something/frames/134519/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting jar cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117235", "images": ["AURORA/data/something/frames/199520/first.jpg", "AURORA/data/something/frames/199520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117236", "images": ["AURORA/data/something/frames/6510/first.jpg", "AURORA/data/something/frames/6510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pack of gum behind a glass jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117237", "images": ["AURORA/data/something/frames/141187/first.jpg", "AURORA/data/something/frames/141187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering keys"}, {"from": "gpt", "value": ""}]} +{"id": "000000117238", "images": ["AURORA/data/something/frames/54809/first.jpg", "AURORA/data/something/frames/54809/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing napkin into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117239", "images": ["AURORA/data/something/frames/200151/first.jpg", "AURORA/data/something/frames/200151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one vase from three."}, {"from": "gpt", "value": ""}]} +{"id": "000000117240", "images": ["AURORA/data/something/frames/194702/first.jpg", "AURORA/data/something/frames/194702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling water onto a mirror"}, {"from": "gpt", "value": ""}]} +{"id": "000000117241", "images": ["AURORA/data/something/frames/196688/first.jpg", "AURORA/data/something/frames/196688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117242", "images": ["AURORA/data/something/frames/12545/first.jpg", "AURORA/data/something/frames/12545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) knob of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117243", "images": ["AURORA/data/something/frames/177229/first.jpg", "AURORA/data/something/frames/177229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting hair gel with chapstick on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117244", "images": ["AURORA/data/something/frames/91290/first.jpg", "AURORA/data/something/frames/91290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jam onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117245", "images": ["AURORA/data/something/frames/66663/first.jpg", "AURORA/data/something/frames/66663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117246", "images": ["AURORA/data/something/frames/123431/first.jpg", "AURORA/data/something/frames/123431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphone into cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117247", "images": ["AURORA/data/something/frames/71267/first.jpg", "AURORA/data/something/frames/71267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117248", "images": ["AURORA/data/something/frames/98329/first.jpg", "AURORA/data/something/frames/98329/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing shirt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117249", "images": ["AURORA/data/something/frames/96190/first.jpg", "AURORA/data/something/frames/96190/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117250", "images": ["AURORA/data/something/frames/95108/first.jpg", "AURORA/data/something/frames/95108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117251", "images": ["AURORA/data/something/frames/124583/first.jpg", "AURORA/data/something/frames/124583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: truck colliding with car and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117252", "images": ["AURORA/data/something/frames/68702/first.jpg", "AURORA/data/something/frames/68702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117253", "images": ["AURORA/data/something/frames/120653/first.jpg", "AURORA/data/something/frames/120653/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a zipper on a make up bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117254", "images": ["AURORA/data/something/frames/114501/first.jpg", "AURORA/data/something/frames/114501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing chair from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117255", "images": ["AURORA/data/something/frames/124327/first.jpg", "AURORA/data/something/frames/124327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming teacups"}, {"from": "gpt", "value": ""}]} +{"id": "000000117256", "images": ["AURORA/data/something/frames/36695/first.jpg", "AURORA/data/something/frames/36695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a tin with a nail"}, {"from": "gpt", "value": ""}]} +{"id": "000000117257", "images": ["AURORA/data/something/frames/42709/first.jpg", "AURORA/data/something/frames/42709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a remote away from two other remotes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117258", "images": ["AURORA/data/something/frames/169063/first.jpg", "AURORA/data/something/frames/169063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding bill"}, {"from": "gpt", "value": ""}]} +{"id": "000000117259", "images": ["AURORA/data/something/frames/2917/first.jpg", "AURORA/data/something/frames/2917/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving comb and key closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117260", "images": ["AURORA/data/something/frames/12276/first.jpg", "AURORA/data/something/frames/12276/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a teddy bear up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117261", "images": ["AURORA/data/something/frames/32175/first.jpg", "AURORA/data/something/frames/32175/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with plate on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117262", "images": ["AURORA/data/something/frames/148667/first.jpg", "AURORA/data/something/frames/148667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing kitchen paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117263", "images": ["AURORA/data/something/frames/36536/first.jpg", "AURORA/data/something/frames/36536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass and sock closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117264", "images": ["AURORA/data/something/frames/112147/first.jpg", "AURORA/data/something/frames/112147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing orange post-it from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117265", "images": ["AURORA/data/something/frames/93104/first.jpg", "AURORA/data/something/frames/93104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117266", "images": ["AURORA/data/something/frames/80240/first.jpg", "AURORA/data/something/frames/80240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117267", "images": ["AURORA/data/something/frames/41820/first.jpg", "AURORA/data/something/frames/41820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife onto cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117268", "images": ["AURORA/data/something/frames/82259/first.jpg", "AURORA/data/something/frames/82259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting lotion with lipgloss"}, {"from": "gpt", "value": ""}]} +{"id": "000000117269", "images": ["AURORA/data/something/frames/190556/first.jpg", "AURORA/data/something/frames/190556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving key away from cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117270", "images": ["AURORA/data/something/frames/110225/first.jpg", "AURORA/data/something/frames/110225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping hair tie next to wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117271", "images": ["AURORA/data/something/frames/180885/first.jpg", "AURORA/data/something/frames/180885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting two brushes onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117272", "images": ["AURORA/data/something/frames/20909/first.jpg", "AURORA/data/something/frames/20909/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a stapler onto a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117273", "images": ["AURORA/data/something/frames/177531/first.jpg", "AURORA/data/something/frames/177531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of microwave"}, {"from": "gpt", "value": ""}]} +{"id": "000000117274", "images": ["AURORA/data/something/frames/123615/first.jpg", "AURORA/data/something/frames/123615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing steel glass from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117275", "images": ["AURORA/data/something/frames/14811/first.jpg", "AURORA/data/something/frames/14811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 compass onto blue note"}, {"from": "gpt", "value": ""}]} +{"id": "000000117276", "images": ["AURORA/data/something/frames/86801/first.jpg", "AURORA/data/something/frames/86801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cookies"}, {"from": "gpt", "value": ""}]} +{"id": "000000117277", "images": ["AURORA/data/something/frames/12718/first.jpg", "AURORA/data/something/frames/12718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scissors closer to a toothbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000117278", "images": ["AURORA/data/something/frames/21763/first.jpg", "AURORA/data/something/frames/21763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117279", "images": ["AURORA/data/something/frames/77236/first.jpg", "AURORA/data/something/frames/77236/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of plastic so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117280", "images": ["AURORA/data/something/frames/176212/first.jpg", "AURORA/data/something/frames/176212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117281", "images": ["AURORA/data/something/frames/22852/first.jpg", "AURORA/data/something/frames/22852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping golf ball into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117282", "images": ["AURORA/data/something/frames/114673/first.jpg", "AURORA/data/something/frames/114673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117283", "images": ["AURORA/data/something/frames/687/first.jpg", "AURORA/data/something/frames/687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117284", "images": ["AURORA/data/something/frames/47212/first.jpg", "AURORA/data/something/frames/47212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle next to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117285", "images": ["AURORA/data/something/frames/66733/first.jpg", "AURORA/data/something/frames/66733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117286", "images": ["AURORA/data/something/frames/205630/first.jpg", "AURORA/data/something/frames/205630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fork behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117287", "images": ["AURORA/data/something/frames/81277/first.jpg", "AURORA/data/something/frames/81277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a book with a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117288", "images": ["AURORA/data/something/frames/13268/first.jpg", "AURORA/data/something/frames/13268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging plastic spoon out of salt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117289", "images": ["AURORA/data/something/frames/77626/first.jpg", "AURORA/data/something/frames/77626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candle behind decorative pear"}, {"from": "gpt", "value": ""}]} +{"id": "000000117290", "images": ["AURORA/data/something/frames/70181/first.jpg", "AURORA/data/something/frames/70181/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sweater into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000117291", "images": ["AURORA/data/something/frames/7024/first.jpg", "AURORA/data/something/frames/7024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117292", "images": ["AURORA/data/something/frames/203752/first.jpg", "AURORA/data/something/frames/203752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lighter so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117293", "images": ["AURORA/data/something/frames/106643/first.jpg", "AURORA/data/something/frames/106643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding unfolding"}, {"from": "gpt", "value": ""}]} +{"id": "000000117294", "images": ["AURORA/data/something/frames/73040/first.jpg", "AURORA/data/something/frames/73040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving door of bath cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117295", "images": ["AURORA/data/something/frames/100836/first.jpg", "AURORA/data/something/frames/100836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book into a bookshelf"}, {"from": "gpt", "value": ""}]} +{"id": "000000117296", "images": ["AURORA/data/something/frames/179575/first.jpg", "AURORA/data/something/frames/179575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a flashlight from drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117297", "images": ["AURORA/data/something/frames/27733/first.jpg", "AURORA/data/something/frames/27733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a telephone with a telephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117298", "images": ["AURORA/data/something/frames/149339/first.jpg", "AURORA/data/something/frames/149339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117299", "images": ["AURORA/data/something/frames/167958/first.jpg", "AURORA/data/something/frames/167958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117300", "images": ["AURORA/data/something/frames/177145/first.jpg", "AURORA/data/something/frames/177145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting calculator with rule on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117301", "images": ["AURORA/data/something/frames/142943/first.jpg", "AURORA/data/something/frames/142943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb cable into usb port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117302", "images": ["AURORA/data/something/frames/73813/first.jpg", "AURORA/data/something/frames/73813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling chips onto a high tray tray"}, {"from": "gpt", "value": ""}]} +{"id": "000000117303", "images": ["AURORA/data/something/frames/112867/first.jpg", "AURORA/data/something/frames/112867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping deodorant can over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117304", "images": ["AURORA/data/something/frames/66211/first.jpg", "AURORA/data/something/frames/66211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a stapler and a pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117305", "images": ["AURORA/data/something/frames/161029/first.jpg", "AURORA/data/something/frames/161029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pushing a child's water bottle top across kitchen counter from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117306", "images": ["AURORA/data/something/frames/207003/first.jpg", "AURORA/data/something/frames/207003/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117307", "images": ["AURORA/data/something/frames/93898/first.jpg", "AURORA/data/something/frames/93898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling purple microfiber from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117308", "images": ["AURORA/data/something/frames/34875/first.jpg", "AURORA/data/something/frames/34875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117309", "images": ["AURORA/data/something/frames/151488/first.jpg", "AURORA/data/something/frames/151488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping onion onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117310", "images": ["AURORA/data/something/frames/96014/first.jpg", "AURORA/data/something/frames/96014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117311", "images": ["AURORA/data/something/frames/148651/first.jpg", "AURORA/data/something/frames/148651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) \\\"toaster of \\\"grab\\\"plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117312", "images": ["AURORA/data/something/frames/45691/first.jpg", "AURORA/data/something/frames/45691/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117313", "images": ["AURORA/data/something/frames/156054/first.jpg", "AURORA/data/something/frames/156054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000117314", "images": ["AURORA/data/something/frames/45131/first.jpg", "AURORA/data/something/frames/45131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a toothpick into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117315", "images": ["AURORA/data/something/frames/146235/first.jpg", "AURORA/data/something/frames/146235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking sunglasses up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117316", "images": ["AURORA/data/something/frames/118907/first.jpg", "AURORA/data/something/frames/118907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a business card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000117317", "images": ["AURORA/data/something/frames/33419/first.jpg", "AURORA/data/something/frames/33419/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking pencil up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117318", "images": ["AURORA/data/something/frames/126106/first.jpg", "AURORA/data/something/frames/126106/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000117319", "images": ["AURORA/data/something/frames/153882/first.jpg", "AURORA/data/something/frames/153882/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117320", "images": ["AURORA/data/something/frames/125593/first.jpg", "AURORA/data/something/frames/125593/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bracelet so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117321", "images": ["AURORA/data/something/frames/161664/first.jpg", "AURORA/data/something/frames/161664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000117322", "images": ["AURORA/data/something/frames/198726/first.jpg", "AURORA/data/something/frames/198726/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117323", "images": ["AURORA/data/something/frames/219178/first.jpg", "AURORA/data/something/frames/219178/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring pop into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117324", "images": ["AURORA/data/something/frames/155650/first.jpg", "AURORA/data/something/frames/155650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117325", "images": ["AURORA/data/something/frames/62513/first.jpg", "AURORA/data/something/frames/62513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone closer to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117326", "images": ["AURORA/data/something/frames/200154/first.jpg", "AURORA/data/something/frames/200154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: crackers colliding with crackers and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117327", "images": ["AURORA/data/something/frames/204733/first.jpg", "AURORA/data/something/frames/204733/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keyd next to bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117328", "images": ["AURORA/data/something/frames/75060/first.jpg", "AURORA/data/something/frames/75060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plants"}, {"from": "gpt", "value": ""}]} +{"id": "000000117329", "images": ["AURORA/data/something/frames/83521/first.jpg", "AURORA/data/something/frames/83521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000117330", "images": ["AURORA/data/something/frames/48198/first.jpg", "AURORA/data/something/frames/48198/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a post it to the door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117331", "images": ["AURORA/data/something/frames/4103/first.jpg", "AURORA/data/something/frames/4103/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fluorescent colour pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117332", "images": ["AURORA/data/something/frames/220138/first.jpg", "AURORA/data/something/frames/220138/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping towel next to handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117333", "images": ["AURORA/data/something/frames/27026/first.jpg", "AURORA/data/something/frames/27026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering key"}, {"from": "gpt", "value": ""}]} +{"id": "000000117334", "images": ["AURORA/data/something/frames/133808/first.jpg", "AURORA/data/something/frames/133808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lid in front of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117335", "images": ["AURORA/data/something/frames/136129/first.jpg", "AURORA/data/something/frames/136129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching bag to hangar nail"}, {"from": "gpt", "value": ""}]} +{"id": "000000117336", "images": ["AURORA/data/something/frames/55727/first.jpg", "AURORA/data/something/frames/55727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a doll on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117337", "images": ["AURORA/data/something/frames/75656/first.jpg", "AURORA/data/something/frames/75656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping blocks over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117338", "images": ["AURORA/data/something/frames/121746/first.jpg", "AURORA/data/something/frames/121746/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading jam onto a biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117339", "images": ["AURORA/data/something/frames/80983/first.jpg", "AURORA/data/something/frames/80983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving nozzle of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117340", "images": ["AURORA/data/something/frames/88024/first.jpg", "AURORA/data/something/frames/88024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dvd case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117341", "images": ["AURORA/data/something/frames/166689/first.jpg", "AURORA/data/something/frames/166689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117342", "images": ["AURORA/data/something/frames/16781/first.jpg", "AURORA/data/something/frames/16781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117343", "images": ["AURORA/data/something/frames/79210/first.jpg", "AURORA/data/something/frames/79210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching lcd monitor with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117344", "images": ["AURORA/data/something/frames/188660/first.jpg", "AURORA/data/something/frames/188660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lid onto a can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117345", "images": ["AURORA/data/something/frames/5800/first.jpg", "AURORA/data/something/frames/5800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding magazine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117346", "images": ["AURORA/data/something/frames/6934/first.jpg", "AURORA/data/something/frames/6934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117347", "images": ["AURORA/data/something/frames/191385/first.jpg", "AURORA/data/something/frames/191385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book onto a water jug so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117348", "images": ["AURORA/data/something/frames/106723/first.jpg", "AURORA/data/something/frames/106723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen cap out of pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117349", "images": ["AURORA/data/something/frames/62401/first.jpg", "AURORA/data/something/frames/62401/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving can and glass so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117350", "images": ["AURORA/data/something/frames/106139/first.jpg", "AURORA/data/something/frames/106139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: flip flops colliding with flip flops and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117351", "images": ["AURORA/data/something/frames/82528/first.jpg", "AURORA/data/something/frames/82528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering briefcase with shall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117352", "images": ["AURORA/data/something/frames/98896/first.jpg", "AURORA/data/something/frames/98896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving battery closer to screw"}, {"from": "gpt", "value": ""}]} +{"id": "000000117353", "images": ["AURORA/data/something/frames/179671/first.jpg", "AURORA/data/something/frames/179671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117354", "images": ["AURORA/data/something/frames/78066/first.jpg", "AURORA/data/something/frames/78066/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117355", "images": ["AURORA/data/something/frames/24005/first.jpg", "AURORA/data/something/frames/24005/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117356", "images": ["AURORA/data/something/frames/140798/first.jpg", "AURORA/data/something/frames/140798/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering baby boy with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117357", "images": ["AURORA/data/something/frames/33183/first.jpg", "AURORA/data/something/frames/33183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white colour board clip up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117358", "images": ["AURORA/data/something/frames/196955/first.jpg", "AURORA/data/something/frames/196955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117359", "images": ["AURORA/data/something/frames/65480/first.jpg", "AURORA/data/something/frames/65480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving box closer to container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117360", "images": ["AURORA/data/something/frames/57711/first.jpg", "AURORA/data/something/frames/57711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen in front of sunglasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117361", "images": ["AURORA/data/something/frames/122116/first.jpg", "AURORA/data/something/frames/122116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one marker out of many"}, {"from": "gpt", "value": ""}]} +{"id": "000000117362", "images": ["AURORA/data/something/frames/54534/first.jpg", "AURORA/data/something/frames/54534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a helmet and another helmet so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117363", "images": ["AURORA/data/something/frames/108114/first.jpg", "AURORA/data/something/frames/108114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling cheese onto rice"}, {"from": "gpt", "value": ""}]} +{"id": "000000117364", "images": ["AURORA/data/something/frames/194130/first.jpg", "AURORA/data/something/frames/194130/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking bracelet up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117365", "images": ["AURORA/data/something/frames/138481/first.jpg", "AURORA/data/something/frames/138481/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a napkin just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117366", "images": ["AURORA/data/something/frames/196748/first.jpg", "AURORA/data/something/frames/196748/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117367", "images": ["AURORA/data/something/frames/72660/first.jpg", "AURORA/data/something/frames/72660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117368", "images": ["AURORA/data/something/frames/91824/first.jpg", "AURORA/data/something/frames/91824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117369", "images": ["AURORA/data/something/frames/25707/first.jpg", "AURORA/data/something/frames/25707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging hands-free into mobile phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117370", "images": ["AURORA/data/something/frames/156246/first.jpg", "AURORA/data/something/frames/156246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing glass, revealing match box behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117371", "images": ["AURORA/data/something/frames/69663/first.jpg", "AURORA/data/something/frames/69663/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117372", "images": ["AURORA/data/something/frames/128840/first.jpg", "AURORA/data/something/frames/128840/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117373", "images": ["AURORA/data/something/frames/197325/first.jpg", "AURORA/data/something/frames/197325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving flag up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117374", "images": ["AURORA/data/something/frames/64910/first.jpg", "AURORA/data/something/frames/64910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117375", "images": ["AURORA/data/something/frames/151345/first.jpg", "AURORA/data/something/frames/151345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117376", "images": ["AURORA/data/something/frames/35356/first.jpg", "AURORA/data/something/frames/35356/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117377", "images": ["AURORA/data/something/frames/36568/first.jpg", "AURORA/data/something/frames/36568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117378", "images": ["AURORA/data/something/frames/133144/first.jpg", "AURORA/data/something/frames/133144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117379", "images": ["AURORA/data/something/frames/92018/first.jpg", "AURORA/data/something/frames/92018/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending toothpick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117380", "images": ["AURORA/data/something/frames/219349/first.jpg", "AURORA/data/something/frames/219349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking blocks so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117381", "images": ["AURORA/data/something/frames/218299/first.jpg", "AURORA/data/something/frames/218299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting green fabric clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000117382", "images": ["AURORA/data/something/frames/104101/first.jpg", "AURORA/data/something/frames/104101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pillow with bed cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000117383", "images": ["AURORA/data/something/frames/174616/first.jpg", "AURORA/data/something/frames/174616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing ruber behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117384", "images": ["AURORA/data/something/frames/151836/first.jpg", "AURORA/data/something/frames/151836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging box into extension cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117385", "images": ["AURORA/data/something/frames/104255/first.jpg", "AURORA/data/something/frames/104255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keyboard behind monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117386", "images": ["AURORA/data/something/frames/29075/first.jpg", "AURORA/data/something/frames/29075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117387", "images": ["AURORA/data/something/frames/64499/first.jpg", "AURORA/data/something/frames/64499/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg behind a shoe brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000117388", "images": ["AURORA/data/something/frames/197131/first.jpg", "AURORA/data/something/frames/197131/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowl, comb and camera on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117389", "images": ["AURORA/data/something/frames/5938/first.jpg", "AURORA/data/something/frames/5938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen behind urn"}, {"from": "gpt", "value": ""}]} +{"id": "000000117390", "images": ["AURORA/data/something/frames/207607/first.jpg", "AURORA/data/something/frames/207607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering my face with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117391", "images": ["AURORA/data/something/frames/57062/first.jpg", "AURORA/data/something/frames/57062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117392", "images": ["AURORA/data/something/frames/68624/first.jpg", "AURORA/data/something/frames/68624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a tv remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117393", "images": ["AURORA/data/something/frames/218197/first.jpg", "AURORA/data/something/frames/218197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bag in front of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117394", "images": ["AURORA/data/something/frames/213033/first.jpg", "AURORA/data/something/frames/213033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000117395", "images": ["AURORA/data/something/frames/108264/first.jpg", "AURORA/data/something/frames/108264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching pen top to pen bottom"}, {"from": "gpt", "value": ""}]} +{"id": "000000117396", "images": ["AURORA/data/something/frames/1439/first.jpg", "AURORA/data/something/frames/1439/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a doll from behind of a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117397", "images": ["AURORA/data/something/frames/12940/first.jpg", "AURORA/data/something/frames/12940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing playingcard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117398", "images": ["AURORA/data/something/frames/187845/first.jpg", "AURORA/data/something/frames/187845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving eraser away from usb cable"}, {"from": "gpt", "value": ""}]} +{"id": "000000117399", "images": ["AURORA/data/something/frames/115374/first.jpg", "AURORA/data/something/frames/115374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking juice bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000117400", "images": ["AURORA/data/something/frames/165346/first.jpg", "AURORA/data/something/frames/165346/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming caution board"}, {"from": "gpt", "value": ""}]} +{"id": "000000117401", "images": ["AURORA/data/something/frames/28059/first.jpg", "AURORA/data/something/frames/28059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pencil until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117402", "images": ["AURORA/data/something/frames/202117/first.jpg", "AURORA/data/something/frames/202117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting cd case with nail polish on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117403", "images": ["AURORA/data/something/frames/31650/first.jpg", "AURORA/data/something/frames/31650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing papier just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117404", "images": ["AURORA/data/something/frames/214959/first.jpg", "AURORA/data/something/frames/214959/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a phone away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117405", "images": ["AURORA/data/something/frames/61353/first.jpg", "AURORA/data/something/frames/61353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying can on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117406", "images": ["AURORA/data/something/frames/186060/first.jpg", "AURORA/data/something/frames/186060/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117407", "images": ["AURORA/data/something/frames/23416/first.jpg", "AURORA/data/something/frames/23416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a pill bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117408", "images": ["AURORA/data/something/frames/36892/first.jpg", "AURORA/data/something/frames/36892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering eraser with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117409", "images": ["AURORA/data/something/frames/24220/first.jpg", "AURORA/data/something/frames/24220/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sock into shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117410", "images": ["AURORA/data/something/frames/43780/first.jpg", "AURORA/data/something/frames/43780/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on the edge of card board so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117411", "images": ["AURORA/data/something/frames/10412/first.jpg", "AURORA/data/something/frames/10412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle into buckets"}, {"from": "gpt", "value": ""}]} +{"id": "000000117412", "images": ["AURORA/data/something/frames/75469/first.jpg", "AURORA/data/something/frames/75469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing trash into chip bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117413", "images": ["AURORA/data/something/frames/177565/first.jpg", "AURORA/data/something/frames/177565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000117414", "images": ["AURORA/data/something/frames/37038/first.jpg", "AURORA/data/something/frames/37038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching attaching paper to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000117415", "images": ["AURORA/data/something/frames/93510/first.jpg", "AURORA/data/something/frames/93510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip onto toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000117416", "images": ["AURORA/data/something/frames/163752/first.jpg", "AURORA/data/something/frames/163752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the pens"}, {"from": "gpt", "value": ""}]} +{"id": "000000117417", "images": ["AURORA/data/something/frames/175024/first.jpg", "AURORA/data/something/frames/175024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming sugar container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117418", "images": ["AURORA/data/something/frames/111230/first.jpg", "AURORA/data/something/frames/111230/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cigarette lighter towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117419", "images": ["AURORA/data/something/frames/123709/first.jpg", "AURORA/data/something/frames/123709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing notebook into briefcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117420", "images": ["AURORA/data/something/frames/195222/first.jpg", "AURORA/data/something/frames/195222/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117421", "images": ["AURORA/data/something/frames/33321/first.jpg", "AURORA/data/something/frames/33321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117422", "images": ["AURORA/data/something/frames/128511/first.jpg", "AURORA/data/something/frames/128511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a sieve"}, {"from": "gpt", "value": ""}]} +{"id": "000000117423", "images": ["AURORA/data/something/frames/156939/first.jpg", "AURORA/data/something/frames/156939/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting game case with wallet on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117424", "images": ["AURORA/data/something/frames/121693/first.jpg", "AURORA/data/something/frames/121693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green face powder from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117425", "images": ["AURORA/data/something/frames/90367/first.jpg", "AURORA/data/something/frames/90367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering calculator with newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117426", "images": ["AURORA/data/something/frames/73616/first.jpg", "AURORA/data/something/frames/73616/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking plastic twist tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000117427", "images": ["AURORA/data/something/frames/109608/first.jpg", "AURORA/data/something/frames/109608/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming white book marker"}, {"from": "gpt", "value": ""}]} +{"id": "000000117428", "images": ["AURORA/data/something/frames/94197/first.jpg", "AURORA/data/something/frames/94197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117429", "images": ["AURORA/data/something/frames/153785/first.jpg", "AURORA/data/something/frames/153785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117430", "images": ["AURORA/data/something/frames/195811/first.jpg", "AURORA/data/something/frames/195811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000117431", "images": ["AURORA/data/something/frames/72743/first.jpg", "AURORA/data/something/frames/72743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a knife next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117432", "images": ["AURORA/data/something/frames/103559/first.jpg", "AURORA/data/something/frames/103559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin off of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117433", "images": ["AURORA/data/something/frames/22030/first.jpg", "AURORA/data/something/frames/22030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lipstick next to a cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117434", "images": ["AURORA/data/something/frames/166989/first.jpg", "AURORA/data/something/frames/166989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000117435", "images": ["AURORA/data/something/frames/133186/first.jpg", "AURORA/data/something/frames/133186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black remote from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117436", "images": ["AURORA/data/something/frames/142282/first.jpg", "AURORA/data/something/frames/142282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading cue cards onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117437", "images": ["AURORA/data/something/frames/98035/first.jpg", "AURORA/data/something/frames/98035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cell phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117438", "images": ["AURORA/data/something/frames/152052/first.jpg", "AURORA/data/something/frames/152052/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book underneath another book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117439", "images": ["AURORA/data/something/frames/68246/first.jpg", "AURORA/data/something/frames/68246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming usb"}, {"from": "gpt", "value": ""}]} +{"id": "000000117440", "images": ["AURORA/data/something/frames/35833/first.jpg", "AURORA/data/something/frames/35833/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117441", "images": ["AURORA/data/something/frames/112826/first.jpg", "AURORA/data/something/frames/112826/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000117442", "images": ["AURORA/data/something/frames/83592/first.jpg", "AURORA/data/something/frames/83592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting bottle with fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000117443", "images": ["AURORA/data/something/frames/92891/first.jpg", "AURORA/data/something/frames/92891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing candy bag into waterbottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117444", "images": ["AURORA/data/something/frames/78839/first.jpg", "AURORA/data/something/frames/78839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117445", "images": ["AURORA/data/something/frames/171848/first.jpg", "AURORA/data/something/frames/171848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking hook out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117446", "images": ["AURORA/data/something/frames/70911/first.jpg", "AURORA/data/something/frames/70911/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving soft drink can towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117447", "images": ["AURORA/data/something/frames/147142/first.jpg", "AURORA/data/something/frames/147142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117448", "images": ["AURORA/data/something/frames/158269/first.jpg", "AURORA/data/something/frames/158269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000117449", "images": ["AURORA/data/something/frames/19374/first.jpg", "AURORA/data/something/frames/19374/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering scissors with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117450", "images": ["AURORA/data/something/frames/110623/first.jpg", "AURORA/data/something/frames/110623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling small bottles up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117451", "images": ["AURORA/data/something/frames/102857/first.jpg", "AURORA/data/something/frames/102857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a block of paper up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117452", "images": ["AURORA/data/something/frames/188928/first.jpg", "AURORA/data/something/frames/188928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tip of hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117453", "images": ["AURORA/data/something/frames/819/first.jpg", "AURORA/data/something/frames/819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117454", "images": ["AURORA/data/something/frames/102026/first.jpg", "AURORA/data/something/frames/102026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sign post"}, {"from": "gpt", "value": ""}]} +{"id": "000000117455", "images": ["AURORA/data/something/frames/105503/first.jpg", "AURORA/data/something/frames/105503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a beer botle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117456", "images": ["AURORA/data/something/frames/53648/first.jpg", "AURORA/data/something/frames/53648/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting bottle with paper on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117457", "images": ["AURORA/data/something/frames/168163/first.jpg", "AURORA/data/something/frames/168163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sharpener out of tumbler"}, {"from": "gpt", "value": ""}]} +{"id": "000000117458", "images": ["AURORA/data/something/frames/159040/first.jpg", "AURORA/data/something/frames/159040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117459", "images": ["AURORA/data/something/frames/14279/first.jpg", "AURORA/data/something/frames/14279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117460", "images": ["AURORA/data/something/frames/10559/first.jpg", "AURORA/data/something/frames/10559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange colour bottle cap onto black wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117461", "images": ["AURORA/data/something/frames/5139/first.jpg", "AURORA/data/something/frames/5139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117462", "images": ["AURORA/data/something/frames/128531/first.jpg", "AURORA/data/something/frames/128531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117463", "images": ["AURORA/data/something/frames/82203/first.jpg", "AURORA/data/something/frames/82203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding floormat"}, {"from": "gpt", "value": ""}]} +{"id": "000000117464", "images": ["AURORA/data/something/frames/211304/first.jpg", "AURORA/data/something/frames/211304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117465", "images": ["AURORA/data/something/frames/91308/first.jpg", "AURORA/data/something/frames/91308/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming monitor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117466", "images": ["AURORA/data/something/frames/138918/first.jpg", "AURORA/data/something/frames/138918/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting comb upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117467", "images": ["AURORA/data/something/frames/169802/first.jpg", "AURORA/data/something/frames/169802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coin with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117468", "images": ["AURORA/data/something/frames/70601/first.jpg", "AURORA/data/something/frames/70601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering spoon with paper towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117469", "images": ["AURORA/data/something/frames/172977/first.jpg", "AURORA/data/something/frames/172977/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling wristwatch from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117470", "images": ["AURORA/data/something/frames/93164/first.jpg", "AURORA/data/something/frames/93164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling jug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117471", "images": ["AURORA/data/something/frames/113630/first.jpg", "AURORA/data/something/frames/113630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching charger to socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117472", "images": ["AURORA/data/something/frames/22830/first.jpg", "AURORA/data/something/frames/22830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: clip colliding with clip and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117473", "images": ["AURORA/data/something/frames/198107/first.jpg", "AURORA/data/something/frames/198107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117474", "images": ["AURORA/data/something/frames/95937/first.jpg", "AURORA/data/something/frames/95937/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping potato into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117475", "images": ["AURORA/data/something/frames/134098/first.jpg", "AURORA/data/something/frames/134098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117476", "images": ["AURORA/data/something/frames/20539/first.jpg", "AURORA/data/something/frames/20539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into clay"}, {"from": "gpt", "value": ""}]} +{"id": "000000117477", "images": ["AURORA/data/something/frames/99508/first.jpg", "AURORA/data/something/frames/99508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening refrigerator"}, {"from": "gpt", "value": ""}]} +{"id": "000000117478", "images": ["AURORA/data/something/frames/219464/first.jpg", "AURORA/data/something/frames/219464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking diaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117479", "images": ["AURORA/data/something/frames/103279/first.jpg", "AURORA/data/something/frames/103279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping rubix cube into a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117480", "images": ["AURORA/data/something/frames/89735/first.jpg", "AURORA/data/something/frames/89735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing key with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117481", "images": ["AURORA/data/something/frames/58444/first.jpg", "AURORA/data/something/frames/58444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117482", "images": ["AURORA/data/something/frames/167575/first.jpg", "AURORA/data/something/frames/167575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving spoon and stapler closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117483", "images": ["AURORA/data/something/frames/196559/first.jpg", "AURORA/data/something/frames/196559/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone onto charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000117484", "images": ["AURORA/data/something/frames/124156/first.jpg", "AURORA/data/something/frames/124156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting button on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117485", "images": ["AURORA/data/something/frames/107013/first.jpg", "AURORA/data/something/frames/107013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a plastic pot upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117486", "images": ["AURORA/data/something/frames/119550/first.jpg", "AURORA/data/something/frames/119550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping block tower over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117487", "images": ["AURORA/data/something/frames/77839/first.jpg", "AURORA/data/something/frames/77839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tape next to scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000117488", "images": ["AURORA/data/something/frames/38565/first.jpg", "AURORA/data/something/frames/38565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an electrical cord into an electrical extension"}, {"from": "gpt", "value": ""}]} +{"id": "000000117489", "images": ["AURORA/data/something/frames/171368/first.jpg", "AURORA/data/something/frames/171368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117490", "images": ["AURORA/data/something/frames/183380/first.jpg", "AURORA/data/something/frames/183380/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chopping board on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117491", "images": ["AURORA/data/something/frames/45604/first.jpg", "AURORA/data/something/frames/45604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000117492", "images": ["AURORA/data/something/frames/83151/first.jpg", "AURORA/data/something/frames/83151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving motorbike away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117493", "images": ["AURORA/data/something/frames/123974/first.jpg", "AURORA/data/something/frames/123974/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking marker pen out of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117494", "images": ["AURORA/data/something/frames/42154/first.jpg", "AURORA/data/something/frames/42154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging rca plug into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117495", "images": ["AURORA/data/something/frames/197136/first.jpg", "AURORA/data/something/frames/197136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking something out of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117496", "images": ["AURORA/data/something/frames/112948/first.jpg", "AURORA/data/something/frames/112948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming balloons"}, {"from": "gpt", "value": ""}]} +{"id": "000000117497", "images": ["AURORA/data/something/frames/68038/first.jpg", "AURORA/data/something/frames/68038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging dryer into plug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117498", "images": ["AURORA/data/something/frames/191061/first.jpg", "AURORA/data/something/frames/191061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of jar without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000117499", "images": ["AURORA/data/something/frames/122623/first.jpg", "AURORA/data/something/frames/122623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coin from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117500", "images": ["AURORA/data/something/frames/9019/first.jpg", "AURORA/data/something/frames/9019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding duppatta"}, {"from": "gpt", "value": ""}]} +{"id": "000000117501", "images": ["AURORA/data/something/frames/57803/first.jpg", "AURORA/data/something/frames/57803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring juice into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117502", "images": ["AURORA/data/something/frames/160769/first.jpg", "AURORA/data/something/frames/160769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a comb into glass mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117503", "images": ["AURORA/data/something/frames/1323/first.jpg", "AURORA/data/something/frames/1323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coins into the bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117504", "images": ["AURORA/data/something/frames/203154/first.jpg", "AURORA/data/something/frames/203154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117505", "images": ["AURORA/data/something/frames/56676/first.jpg", "AURORA/data/something/frames/56676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering garlic with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117506", "images": ["AURORA/data/something/frames/134550/first.jpg", "AURORA/data/something/frames/134550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping handkerchief next to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117507", "images": ["AURORA/data/something/frames/64592/first.jpg", "AURORA/data/something/frames/64592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking matchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000117508", "images": ["AURORA/data/something/frames/203000/first.jpg", "AURORA/data/something/frames/203000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and fork closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117509", "images": ["AURORA/data/something/frames/110413/first.jpg", "AURORA/data/something/frames/110413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paper off of a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117510", "images": ["AURORA/data/something/frames/218711/first.jpg", "AURORA/data/something/frames/218711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cup from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117511", "images": ["AURORA/data/something/frames/151114/first.jpg", "AURORA/data/something/frames/151114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting doll upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117512", "images": ["AURORA/data/something/frames/3040/first.jpg", "AURORA/data/something/frames/3040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving salt and pepper closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117513", "images": ["AURORA/data/something/frames/16849/first.jpg", "AURORA/data/something/frames/16849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving apple and apple away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117514", "images": ["AURORA/data/something/frames/82227/first.jpg", "AURORA/data/something/frames/82227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117515", "images": ["AURORA/data/something/frames/171255/first.jpg", "AURORA/data/something/frames/171255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117516", "images": ["AURORA/data/something/frames/104855/first.jpg", "AURORA/data/something/frames/104855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening plastic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117517", "images": ["AURORA/data/something/frames/62283/first.jpg", "AURORA/data/something/frames/62283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb flash drive away from cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000117518", "images": ["AURORA/data/something/frames/4274/first.jpg", "AURORA/data/something/frames/4274/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117519", "images": ["AURORA/data/something/frames/131162/first.jpg", "AURORA/data/something/frames/131162/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a knife so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117520", "images": ["AURORA/data/something/frames/100142/first.jpg", "AURORA/data/something/frames/100142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117521", "images": ["AURORA/data/something/frames/7192/first.jpg", "AURORA/data/something/frames/7192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a can, revealing an eraser behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117522", "images": ["AURORA/data/something/frames/218112/first.jpg", "AURORA/data/something/frames/218112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning salsa upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117523", "images": ["AURORA/data/something/frames/96603/first.jpg", "AURORA/data/something/frames/96603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing striker coin with battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000117524", "images": ["AURORA/data/something/frames/121989/first.jpg", "AURORA/data/something/frames/121989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming hair comb"}, {"from": "gpt", "value": ""}]} +{"id": "000000117525", "images": ["AURORA/data/something/frames/116035/first.jpg", "AURORA/data/something/frames/116035/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling duster from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117526", "images": ["AURORA/data/something/frames/53667/first.jpg", "AURORA/data/something/frames/53667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117527", "images": ["AURORA/data/something/frames/209202/first.jpg", "AURORA/data/something/frames/209202/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117528", "images": ["AURORA/data/something/frames/186295/first.jpg", "AURORA/data/something/frames/186295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape onto box surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117529", "images": ["AURORA/data/something/frames/69527/first.jpg", "AURORA/data/something/frames/69527/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117530", "images": ["AURORA/data/something/frames/43664/first.jpg", "AURORA/data/something/frames/43664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toothbrush into container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117531", "images": ["AURORA/data/something/frames/2350/first.jpg", "AURORA/data/something/frames/2350/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing lighter off of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117532", "images": ["AURORA/data/something/frames/42850/first.jpg", "AURORA/data/something/frames/42850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sandal away from the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117533", "images": ["AURORA/data/something/frames/42129/first.jpg", "AURORA/data/something/frames/42129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping candy into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117534", "images": ["AURORA/data/something/frames/69469/first.jpg", "AURORA/data/something/frames/69469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving duster away from punching machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117535", "images": ["AURORA/data/something/frames/25945/first.jpg", "AURORA/data/something/frames/25945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117536", "images": ["AURORA/data/something/frames/210843/first.jpg", "AURORA/data/something/frames/210843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117537", "images": ["AURORA/data/something/frames/32915/first.jpg", "AURORA/data/something/frames/32915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble closer to magnifying glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117538", "images": ["AURORA/data/something/frames/185283/first.jpg", "AURORA/data/something/frames/185283/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a rag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117539", "images": ["AURORA/data/something/frames/90775/first.jpg", "AURORA/data/something/frames/90775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a remote so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117540", "images": ["AURORA/data/something/frames/55758/first.jpg", "AURORA/data/something/frames/55758/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117541", "images": ["AURORA/data/something/frames/33231/first.jpg", "AURORA/data/something/frames/33231/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117542", "images": ["AURORA/data/something/frames/173550/first.jpg", "AURORA/data/something/frames/173550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a coffee mug upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117543", "images": ["AURORA/data/something/frames/60417/first.jpg", "AURORA/data/something/frames/60417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box into trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117544", "images": ["AURORA/data/something/frames/5873/first.jpg", "AURORA/data/something/frames/5873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering dog"}, {"from": "gpt", "value": ""}]} +{"id": "000000117545", "images": ["AURORA/data/something/frames/3030/first.jpg", "AURORA/data/something/frames/3030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117546", "images": ["AURORA/data/something/frames/161085/first.jpg", "AURORA/data/something/frames/161085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy next to spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117547", "images": ["AURORA/data/something/frames/92502/first.jpg", "AURORA/data/something/frames/92502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bolt up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117548", "images": ["AURORA/data/something/frames/47144/first.jpg", "AURORA/data/something/frames/47144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming sandal"}, {"from": "gpt", "value": ""}]} +{"id": "000000117549", "images": ["AURORA/data/something/frames/87449/first.jpg", "AURORA/data/something/frames/87449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pens onto a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117550", "images": ["AURORA/data/something/frames/122853/first.jpg", "AURORA/data/something/frames/122853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fan next to sandals"}, {"from": "gpt", "value": ""}]} +{"id": "000000117551", "images": ["AURORA/data/something/frames/162638/first.jpg", "AURORA/data/something/frames/162638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a paperclip with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117552", "images": ["AURORA/data/something/frames/185520/first.jpg", "AURORA/data/something/frames/185520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a box of pins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117553", "images": ["AURORA/data/something/frames/23507/first.jpg", "AURORA/data/something/frames/23507/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tape onto a plank of wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000117554", "images": ["AURORA/data/something/frames/38381/first.jpg", "AURORA/data/something/frames/38381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking vitamin out of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117555", "images": ["AURORA/data/something/frames/19416/first.jpg", "AURORA/data/something/frames/19416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle cap with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117556", "images": ["AURORA/data/something/frames/199390/first.jpg", "AURORA/data/something/frames/199390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from chair with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117557", "images": ["AURORA/data/something/frames/22922/first.jpg", "AURORA/data/something/frames/22922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117558", "images": ["AURORA/data/something/frames/172947/first.jpg", "AURORA/data/something/frames/172947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting suitcase up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117559", "images": ["AURORA/data/something/frames/64851/first.jpg", "AURORA/data/something/frames/64851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting marking pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117560", "images": ["AURORA/data/something/frames/99247/first.jpg", "AURORA/data/something/frames/99247/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117561", "images": ["AURORA/data/something/frames/3215/first.jpg", "AURORA/data/something/frames/3215/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour water into bucket, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117562", "images": ["AURORA/data/something/frames/88615/first.jpg", "AURORA/data/something/frames/88615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair clips onto blue note"}, {"from": "gpt", "value": ""}]} +{"id": "000000117563", "images": ["AURORA/data/something/frames/80446/first.jpg", "AURORA/data/something/frames/80446/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000117564", "images": ["AURORA/data/something/frames/178983/first.jpg", "AURORA/data/something/frames/178983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117565", "images": ["AURORA/data/something/frames/178224/first.jpg", "AURORA/data/something/frames/178224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cup and a cup so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117566", "images": ["AURORA/data/something/frames/151541/first.jpg", "AURORA/data/something/frames/151541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing door"}, {"from": "gpt", "value": ""}]} +{"id": "000000117567", "images": ["AURORA/data/something/frames/206958/first.jpg", "AURORA/data/something/frames/206958/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117568", "images": ["AURORA/data/something/frames/128234/first.jpg", "AURORA/data/something/frames/128234/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: air hockey puck colliding with air hockey puck and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117569", "images": ["AURORA/data/something/frames/169776/first.jpg", "AURORA/data/something/frames/169776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile from behind of laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117570", "images": ["AURORA/data/something/frames/34792/first.jpg", "AURORA/data/something/frames/34792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling towel from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117571", "images": ["AURORA/data/something/frames/104869/first.jpg", "AURORA/data/something/frames/104869/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117572", "images": ["AURORA/data/something/frames/22657/first.jpg", "AURORA/data/something/frames/22657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking padlock so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117573", "images": ["AURORA/data/something/frames/76721/first.jpg", "AURORA/data/something/frames/76721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fruit out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117574", "images": ["AURORA/data/something/frames/72455/first.jpg", "AURORA/data/something/frames/72455/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping book over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117575", "images": ["AURORA/data/something/frames/118879/first.jpg", "AURORA/data/something/frames/118879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cream on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117576", "images": ["AURORA/data/something/frames/133862/first.jpg", "AURORA/data/something/frames/133862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming small green ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000117577", "images": ["AURORA/data/something/frames/71176/first.jpg", "AURORA/data/something/frames/71176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling zipper from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117578", "images": ["AURORA/data/something/frames/192597/first.jpg", "AURORA/data/something/frames/192597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cups on a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117579", "images": ["AURORA/data/something/frames/27474/first.jpg", "AURORA/data/something/frames/27474/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen drive, a lipstick and a lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117580", "images": ["AURORA/data/something/frames/129458/first.jpg", "AURORA/data/something/frames/129458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a towel from behind of napkin holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000117581", "images": ["AURORA/data/something/frames/199113/first.jpg", "AURORA/data/something/frames/199113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plastic cap into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117582", "images": ["AURORA/data/something/frames/86299/first.jpg", "AURORA/data/something/frames/86299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging plastic round out of sand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117583", "images": ["AURORA/data/something/frames/143727/first.jpg", "AURORA/data/something/frames/143727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone and xbox game away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117584", "images": ["AURORA/data/something/frames/178201/first.jpg", "AURORA/data/something/frames/178201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe onto corner"}, {"from": "gpt", "value": ""}]} +{"id": "000000117585", "images": ["AURORA/data/something/frames/72009/first.jpg", "AURORA/data/something/frames/72009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000117586", "images": ["AURORA/data/something/frames/94463/first.jpg", "AURORA/data/something/frames/94463/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117587", "images": ["AURORA/data/something/frames/195323/first.jpg", "AURORA/data/something/frames/195323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a deodorant bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117588", "images": ["AURORA/data/something/frames/55493/first.jpg", "AURORA/data/something/frames/55493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching prown fishes with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117589", "images": ["AURORA/data/something/frames/137269/first.jpg", "AURORA/data/something/frames/137269/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a pen until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117590", "images": ["AURORA/data/something/frames/92000/first.jpg", "AURORA/data/something/frames/92000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering an apple with a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000117591", "images": ["AURORA/data/something/frames/52540/first.jpg", "AURORA/data/something/frames/52540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting wallet on the edge of desk so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117592", "images": ["AURORA/data/something/frames/124199/first.jpg", "AURORA/data/something/frames/124199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling drawer out of carousel box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117593", "images": ["AURORA/data/something/frames/110169/first.jpg", "AURORA/data/something/frames/110169/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117594", "images": ["AURORA/data/something/frames/123936/first.jpg", "AURORA/data/something/frames/123936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117595", "images": ["AURORA/data/something/frames/151776/first.jpg", "AURORA/data/something/frames/151776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117596", "images": ["AURORA/data/something/frames/207618/first.jpg", "AURORA/data/something/frames/207618/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117597", "images": ["AURORA/data/something/frames/88272/first.jpg", "AURORA/data/something/frames/88272/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading white kerchief onto cutting plier"}, {"from": "gpt", "value": ""}]} +{"id": "000000117598", "images": ["AURORA/data/something/frames/60718/first.jpg", "AURORA/data/something/frames/60718/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and wax jar closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117599", "images": ["AURORA/data/something/frames/95562/first.jpg", "AURORA/data/something/frames/95562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from car with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117600", "images": ["AURORA/data/something/frames/152676/first.jpg", "AURORA/data/something/frames/152676/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning pan upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117601", "images": ["AURORA/data/something/frames/153468/first.jpg", "AURORA/data/something/frames/153468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking remote control up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117602", "images": ["AURORA/data/something/frames/173384/first.jpg", "AURORA/data/something/frames/173384/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from tea box with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117603", "images": ["AURORA/data/something/frames/29995/first.jpg", "AURORA/data/something/frames/29995/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117604", "images": ["AURORA/data/something/frames/18781/first.jpg", "AURORA/data/something/frames/18781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering dvd disk with dvd cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000117605", "images": ["AURORA/data/something/frames/159317/first.jpg", "AURORA/data/something/frames/159317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a keyset towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117606", "images": ["AURORA/data/something/frames/9684/first.jpg", "AURORA/data/something/frames/9684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117607", "images": ["AURORA/data/something/frames/177183/first.jpg", "AURORA/data/something/frames/177183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging moblie charger into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117608", "images": ["AURORA/data/something/frames/190214/first.jpg", "AURORA/data/something/frames/190214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cans with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117609", "images": ["AURORA/data/something/frames/50067/first.jpg", "AURORA/data/something/frames/50067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electrical plug into an outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117610", "images": ["AURORA/data/something/frames/51288/first.jpg", "AURORA/data/something/frames/51288/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing pomegranate peel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117611", "images": ["AURORA/data/something/frames/189302/first.jpg", "AURORA/data/something/frames/189302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending gift card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000117612", "images": ["AURORA/data/something/frames/214386/first.jpg", "AURORA/data/something/frames/214386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and other mobile phone closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117613", "images": ["AURORA/data/something/frames/54238/first.jpg", "AURORA/data/something/frames/54238/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a purse on the edge of the table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117614", "images": ["AURORA/data/something/frames/137299/first.jpg", "AURORA/data/something/frames/137299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling ground cinnamon onto peanut butter bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117615", "images": ["AURORA/data/something/frames/190123/first.jpg", "AURORA/data/something/frames/190123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117616", "images": ["AURORA/data/something/frames/98322/first.jpg", "AURORA/data/something/frames/98322/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book, a candle and a lighter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117617", "images": ["AURORA/data/something/frames/177935/first.jpg", "AURORA/data/something/frames/177935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pair of sunglasses closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117618", "images": ["AURORA/data/something/frames/15326/first.jpg", "AURORA/data/something/frames/15326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping powder up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117619", "images": ["AURORA/data/something/frames/68743/first.jpg", "AURORA/data/something/frames/68743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117620", "images": ["AURORA/data/something/frames/191793/first.jpg", "AURORA/data/something/frames/191793/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy lion and toy pig closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117621", "images": ["AURORA/data/something/frames/191139/first.jpg", "AURORA/data/something/frames/191139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117622", "images": ["AURORA/data/something/frames/193087/first.jpg", "AURORA/data/something/frames/193087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ring into a ceramic container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117623", "images": ["AURORA/data/something/frames/192351/first.jpg", "AURORA/data/something/frames/192351/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117624", "images": ["AURORA/data/something/frames/173008/first.jpg", "AURORA/data/something/frames/173008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117625", "images": ["AURORA/data/something/frames/30728/first.jpg", "AURORA/data/something/frames/30728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle and pen on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117626", "images": ["AURORA/data/something/frames/164262/first.jpg", "AURORA/data/something/frames/164262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying tablet box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117627", "images": ["AURORA/data/something/frames/206570/first.jpg", "AURORA/data/something/frames/206570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning postcard upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117628", "images": ["AURORA/data/something/frames/206935/first.jpg", "AURORA/data/something/frames/206935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bag with sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117629", "images": ["AURORA/data/something/frames/157042/first.jpg", "AURORA/data/something/frames/157042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117630", "images": ["AURORA/data/something/frames/122241/first.jpg", "AURORA/data/something/frames/122241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red colour clip box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117631", "images": ["AURORA/data/something/frames/118801/first.jpg", "AURORA/data/something/frames/118801/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting computer mouse on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117632", "images": ["AURORA/data/something/frames/149115/first.jpg", "AURORA/data/something/frames/149115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a feather until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117633", "images": ["AURORA/data/something/frames/100134/first.jpg", "AURORA/data/something/frames/100134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking laptop so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117634", "images": ["AURORA/data/something/frames/21992/first.jpg", "AURORA/data/something/frames/21992/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming light"}, {"from": "gpt", "value": ""}]} +{"id": "000000117635", "images": ["AURORA/data/something/frames/215803/first.jpg", "AURORA/data/something/frames/215803/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, bottle and cup on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117636", "images": ["AURORA/data/something/frames/213685/first.jpg", "AURORA/data/something/frames/213685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117637", "images": ["AURORA/data/something/frames/118508/first.jpg", "AURORA/data/something/frames/118508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a vase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117638", "images": ["AURORA/data/something/frames/213902/first.jpg", "AURORA/data/something/frames/213902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening file"}, {"from": "gpt", "value": ""}]} +{"id": "000000117639", "images": ["AURORA/data/something/frames/188681/first.jpg", "AURORA/data/something/frames/188681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spoon with coin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117640", "images": ["AURORA/data/something/frames/37638/first.jpg", "AURORA/data/something/frames/37638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting colorful scarf on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117641", "images": ["AURORA/data/something/frames/113337/first.jpg", "AURORA/data/something/frames/113337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering phone with wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117642", "images": ["AURORA/data/something/frames/190006/first.jpg", "AURORA/data/something/frames/190006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117643", "images": ["AURORA/data/something/frames/45713/first.jpg", "AURORA/data/something/frames/45713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping peanut butter up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117644", "images": ["AURORA/data/something/frames/70210/first.jpg", "AURORA/data/something/frames/70210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting an envelope underneath a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117645", "images": ["AURORA/data/something/frames/198293/first.jpg", "AURORA/data/something/frames/198293/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000117646", "images": ["AURORA/data/something/frames/194462/first.jpg", "AURORA/data/something/frames/194462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning granola bar upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117647", "images": ["AURORA/data/something/frames/33762/first.jpg", "AURORA/data/something/frames/33762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a salt grinder closer to a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117648", "images": ["AURORA/data/something/frames/206713/first.jpg", "AURORA/data/something/frames/206713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hand colliding with hand and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117649", "images": ["AURORA/data/something/frames/28259/first.jpg", "AURORA/data/something/frames/28259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving violin closer to pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117650", "images": ["AURORA/data/something/frames/87865/first.jpg", "AURORA/data/something/frames/87865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking the phone out of the box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117651", "images": ["AURORA/data/something/frames/95686/first.jpg", "AURORA/data/something/frames/95686/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping thermal cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117652", "images": ["AURORA/data/something/frames/186979/first.jpg", "AURORA/data/something/frames/186979/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117653", "images": ["AURORA/data/something/frames/177118/first.jpg", "AURORA/data/something/frames/177118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering travel iron-box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117654", "images": ["AURORA/data/something/frames/78602/first.jpg", "AURORA/data/something/frames/78602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purple microfiber on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117655", "images": ["AURORA/data/something/frames/134468/first.jpg", "AURORA/data/something/frames/134468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pepper onto pan"}, {"from": "gpt", "value": ""}]} +{"id": "000000117656", "images": ["AURORA/data/something/frames/23512/first.jpg", "AURORA/data/something/frames/23512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117657", "images": ["AURORA/data/something/frames/157520/first.jpg", "AURORA/data/something/frames/157520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting paper with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117658", "images": ["AURORA/data/something/frames/82742/first.jpg", "AURORA/data/something/frames/82742/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving perfume bottle and toy closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117659", "images": ["AURORA/data/something/frames/42929/first.jpg", "AURORA/data/something/frames/42929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping spice over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117660", "images": ["AURORA/data/something/frames/155021/first.jpg", "AURORA/data/something/frames/155021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping game in front of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117661", "images": ["AURORA/data/something/frames/99830/first.jpg", "AURORA/data/something/frames/99830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117662", "images": ["AURORA/data/something/frames/41303/first.jpg", "AURORA/data/something/frames/41303/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pliers closer to a key"}, {"from": "gpt", "value": ""}]} +{"id": "000000117663", "images": ["AURORA/data/something/frames/41267/first.jpg", "AURORA/data/something/frames/41267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper in front of orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000117664", "images": ["AURORA/data/something/frames/216661/first.jpg", "AURORA/data/something/frames/216661/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a towel onto the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117665", "images": ["AURORA/data/something/frames/54132/first.jpg", "AURORA/data/something/frames/54132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toothbrush behind container"}, {"from": "gpt", "value": ""}]} +{"id": "000000117666", "images": ["AURORA/data/something/frames/101774/first.jpg", "AURORA/data/something/frames/101774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117667", "images": ["AURORA/data/something/frames/190352/first.jpg", "AURORA/data/something/frames/190352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing plate, revealing trivet behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117668", "images": ["AURORA/data/something/frames/155802/first.jpg", "AURORA/data/something/frames/155802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117669", "images": ["AURORA/data/something/frames/207741/first.jpg", "AURORA/data/something/frames/207741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a stapler on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117670", "images": ["AURORA/data/something/frames/173280/first.jpg", "AURORA/data/something/frames/173280/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking blanket so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117671", "images": ["AURORA/data/something/frames/13240/first.jpg", "AURORA/data/something/frames/13240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117672", "images": ["AURORA/data/something/frames/208362/first.jpg", "AURORA/data/something/frames/208362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a champagne glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117673", "images": ["AURORA/data/something/frames/183897/first.jpg", "AURORA/data/something/frames/183897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hollow pipe, that cannot stand upright upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117674", "images": ["AURORA/data/something/frames/96417/first.jpg", "AURORA/data/something/frames/96417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a coaster from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117675", "images": ["AURORA/data/something/frames/152632/first.jpg", "AURORA/data/something/frames/152632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water bottle onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117676", "images": ["AURORA/data/something/frames/149187/first.jpg", "AURORA/data/something/frames/149187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving book away from pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117677", "images": ["AURORA/data/something/frames/191338/first.jpg", "AURORA/data/something/frames/191338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117678", "images": ["AURORA/data/something/frames/96436/first.jpg", "AURORA/data/something/frames/96436/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and lego man closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117679", "images": ["AURORA/data/something/frames/44514/first.jpg", "AURORA/data/something/frames/44514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117680", "images": ["AURORA/data/something/frames/156116/first.jpg", "AURORA/data/something/frames/156116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117681", "images": ["AURORA/data/something/frames/205949/first.jpg", "AURORA/data/something/frames/205949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding pillowcase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117682", "images": ["AURORA/data/something/frames/191583/first.jpg", "AURORA/data/something/frames/191583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117683", "images": ["AURORA/data/something/frames/95194/first.jpg", "AURORA/data/something/frames/95194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117684", "images": ["AURORA/data/something/frames/48387/first.jpg", "AURORA/data/something/frames/48387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117685", "images": ["AURORA/data/something/frames/126583/first.jpg", "AURORA/data/something/frames/126583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117686", "images": ["AURORA/data/something/frames/94947/first.jpg", "AURORA/data/something/frames/94947/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a napkin behind a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117687", "images": ["AURORA/data/something/frames/47349/first.jpg", "AURORA/data/something/frames/47349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calendar in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117688", "images": ["AURORA/data/something/frames/87568/first.jpg", "AURORA/data/something/frames/87568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white chalk away from battery"}, {"from": "gpt", "value": ""}]} +{"id": "000000117689", "images": ["AURORA/data/something/frames/82433/first.jpg", "AURORA/data/something/frames/82433/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering toy with tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117690", "images": ["AURORA/data/something/frames/88319/first.jpg", "AURORA/data/something/frames/88319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toothbrush next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117691", "images": ["AURORA/data/something/frames/6920/first.jpg", "AURORA/data/something/frames/6920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 spectacle boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117692", "images": ["AURORA/data/something/frames/174768/first.jpg", "AURORA/data/something/frames/174768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling small book from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117693", "images": ["AURORA/data/something/frames/200312/first.jpg", "AURORA/data/something/frames/200312/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting spoon up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117694", "images": ["AURORA/data/something/frames/65630/first.jpg", "AURORA/data/something/frames/65630/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mixer-jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117695", "images": ["AURORA/data/something/frames/21313/first.jpg", "AURORA/data/something/frames/21313/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking brushes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117696", "images": ["AURORA/data/something/frames/32943/first.jpg", "AURORA/data/something/frames/32943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117697", "images": ["AURORA/data/something/frames/60896/first.jpg", "AURORA/data/something/frames/60896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping remote onto pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117698", "images": ["AURORA/data/something/frames/14397/first.jpg", "AURORA/data/something/frames/14397/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coffee cup into a cupboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117699", "images": ["AURORA/data/something/frames/182728/first.jpg", "AURORA/data/something/frames/182728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117700", "images": ["AURORA/data/something/frames/60867/first.jpg", "AURORA/data/something/frames/60867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching block to block"}, {"from": "gpt", "value": ""}]} +{"id": "000000117701", "images": ["AURORA/data/something/frames/41597/first.jpg", "AURORA/data/something/frames/41597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shoe upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117702", "images": ["AURORA/data/something/frames/13099/first.jpg", "AURORA/data/something/frames/13099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000117703", "images": ["AURORA/data/something/frames/127774/first.jpg", "AURORA/data/something/frames/127774/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming a vase with a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000117704", "images": ["AURORA/data/something/frames/196379/first.jpg", "AURORA/data/something/frames/196379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing mouse from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117705", "images": ["AURORA/data/something/frames/73738/first.jpg", "AURORA/data/something/frames/73738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soap out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117706", "images": ["AURORA/data/something/frames/189828/first.jpg", "AURORA/data/something/frames/189828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a knife upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117707", "images": ["AURORA/data/something/frames/139411/first.jpg", "AURORA/data/something/frames/139411/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed animal so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117708", "images": ["AURORA/data/something/frames/15522/first.jpg", "AURORA/data/something/frames/15522/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box and a charger on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117709", "images": ["AURORA/data/something/frames/108542/first.jpg", "AURORA/data/something/frames/108542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling slipper onto carpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117710", "images": ["AURORA/data/something/frames/198417/first.jpg", "AURORA/data/something/frames/198417/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117711", "images": ["AURORA/data/something/frames/198157/first.jpg", "AURORA/data/something/frames/198157/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing white towel into wooden box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117712", "images": ["AURORA/data/something/frames/104885/first.jpg", "AURORA/data/something/frames/104885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a marker pen so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117713", "images": ["AURORA/data/something/frames/158824/first.jpg", "AURORA/data/something/frames/158824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping crayon into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117714", "images": ["AURORA/data/something/frames/45500/first.jpg", "AURORA/data/something/frames/45500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a sink"}, {"from": "gpt", "value": ""}]} +{"id": "000000117715", "images": ["AURORA/data/something/frames/204531/first.jpg", "AURORA/data/something/frames/204531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bin with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117716", "images": ["AURORA/data/something/frames/12227/first.jpg", "AURORA/data/something/frames/12227/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen into pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000117717", "images": ["AURORA/data/something/frames/201861/first.jpg", "AURORA/data/something/frames/201861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117718", "images": ["AURORA/data/something/frames/126759/first.jpg", "AURORA/data/something/frames/126759/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117719", "images": ["AURORA/data/something/frames/185952/first.jpg", "AURORA/data/something/frames/185952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a shoe brush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117720", "images": ["AURORA/data/something/frames/163872/first.jpg", "AURORA/data/something/frames/163872/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from plant with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117721", "images": ["AURORA/data/something/frames/58815/first.jpg", "AURORA/data/something/frames/58815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing leaf into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117722", "images": ["AURORA/data/something/frames/99163/first.jpg", "AURORA/data/something/frames/99163/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 puzzle pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117723", "images": ["AURORA/data/something/frames/178424/first.jpg", "AURORA/data/something/frames/178424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117724", "images": ["AURORA/data/something/frames/119715/first.jpg", "AURORA/data/something/frames/119715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling baking soda onto a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117725", "images": ["AURORA/data/something/frames/144302/first.jpg", "AURORA/data/something/frames/144302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and leadbox closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117726", "images": ["AURORA/data/something/frames/42620/first.jpg", "AURORA/data/something/frames/42620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting measuring tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117727", "images": ["AURORA/data/something/frames/105458/first.jpg", "AURORA/data/something/frames/105458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hat and wallet away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117728", "images": ["AURORA/data/something/frames/143141/first.jpg", "AURORA/data/something/frames/143141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing notecard into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117729", "images": ["AURORA/data/something/frames/217265/first.jpg", "AURORA/data/something/frames/217265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking selfie stick from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117730", "images": ["AURORA/data/something/frames/17366/first.jpg", "AURORA/data/something/frames/17366/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting lighter behind candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117731", "images": ["AURORA/data/something/frames/154244/first.jpg", "AURORA/data/something/frames/154244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling matchboxes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117732", "images": ["AURORA/data/something/frames/88835/first.jpg", "AURORA/data/something/frames/88835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coins so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117733", "images": ["AURORA/data/something/frames/134721/first.jpg", "AURORA/data/something/frames/134721/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning shampoo upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117734", "images": ["AURORA/data/something/frames/201134/first.jpg", "AURORA/data/something/frames/201134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping water off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117735", "images": ["AURORA/data/something/frames/49845/first.jpg", "AURORA/data/something/frames/49845/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering milk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117736", "images": ["AURORA/data/something/frames/25657/first.jpg", "AURORA/data/something/frames/25657/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing duster from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117737", "images": ["AURORA/data/something/frames/160129/first.jpg", "AURORA/data/something/frames/160129/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping milk off of a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117738", "images": ["AURORA/data/something/frames/211352/first.jpg", "AURORA/data/something/frames/211352/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking gift packs from a bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117739", "images": ["AURORA/data/something/frames/189290/first.jpg", "AURORA/data/something/frames/189290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping matchbox in front of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117740", "images": ["AURORA/data/something/frames/159318/first.jpg", "AURORA/data/something/frames/159318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring cereals into a glass container until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117741", "images": ["AURORA/data/something/frames/100091/first.jpg", "AURORA/data/something/frames/100091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117742", "images": ["AURORA/data/something/frames/174047/first.jpg", "AURORA/data/something/frames/174047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching glass tumbler with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117743", "images": ["AURORA/data/something/frames/45905/first.jpg", "AURORA/data/something/frames/45905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding clothes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117744", "images": ["AURORA/data/something/frames/43365/first.jpg", "AURORA/data/something/frames/43365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming window view"}, {"from": "gpt", "value": ""}]} +{"id": "000000117745", "images": ["AURORA/data/something/frames/43765/first.jpg", "AURORA/data/something/frames/43765/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking seven cookies"}, {"from": "gpt", "value": ""}]} +{"id": "000000117746", "images": ["AURORA/data/something/frames/52242/first.jpg", "AURORA/data/something/frames/52242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into laptop but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117747", "images": ["AURORA/data/something/frames/103484/first.jpg", "AURORA/data/something/frames/103484/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117748", "images": ["AURORA/data/something/frames/60628/first.jpg", "AURORA/data/something/frames/60628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a book, a container and a milk carton on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117749", "images": ["AURORA/data/something/frames/54037/first.jpg", "AURORA/data/something/frames/54037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bag of bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000117750", "images": ["AURORA/data/something/frames/18874/first.jpg", "AURORA/data/something/frames/18874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching magnet to board"}, {"from": "gpt", "value": ""}]} +{"id": "000000117751", "images": ["AURORA/data/something/frames/65996/first.jpg", "AURORA/data/something/frames/65996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wheel of train"}, {"from": "gpt", "value": ""}]} +{"id": "000000117752", "images": ["AURORA/data/something/frames/128624/first.jpg", "AURORA/data/something/frames/128624/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000117753", "images": ["AURORA/data/something/frames/142889/first.jpg", "AURORA/data/something/frames/142889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into charger but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117754", "images": ["AURORA/data/something/frames/93763/first.jpg", "AURORA/data/something/frames/93763/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000117755", "images": ["AURORA/data/something/frames/7213/first.jpg", "AURORA/data/something/frames/7213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a sandal from behind of a wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000117756", "images": ["AURORA/data/something/frames/13046/first.jpg", "AURORA/data/something/frames/13046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking book so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117757", "images": ["AURORA/data/something/frames/56042/first.jpg", "AURORA/data/something/frames/56042/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box onto a notebook so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117758", "images": ["AURORA/data/something/frames/31338/first.jpg", "AURORA/data/something/frames/31338/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing socks into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117759", "images": ["AURORA/data/something/frames/214847/first.jpg", "AURORA/data/something/frames/214847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117760", "images": ["AURORA/data/something/frames/126363/first.jpg", "AURORA/data/something/frames/126363/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cloth so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117761", "images": ["AURORA/data/something/frames/158449/first.jpg", "AURORA/data/something/frames/158449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming car"}, {"from": "gpt", "value": ""}]} +{"id": "000000117762", "images": ["AURORA/data/something/frames/173389/first.jpg", "AURORA/data/something/frames/173389/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cover from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117763", "images": ["AURORA/data/something/frames/183310/first.jpg", "AURORA/data/something/frames/183310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching a paper to a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117764", "images": ["AURORA/data/something/frames/19741/first.jpg", "AURORA/data/something/frames/19741/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117765", "images": ["AURORA/data/something/frames/137277/first.jpg", "AURORA/data/something/frames/137277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving doll and lipstick away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117766", "images": ["AURORA/data/something/frames/213552/first.jpg", "AURORA/data/something/frames/213552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117767", "images": ["AURORA/data/something/frames/217376/first.jpg", "AURORA/data/something/frames/217376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing nail paint remover from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117768", "images": ["AURORA/data/something/frames/161039/first.jpg", "AURORA/data/something/frames/161039/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into mp4"}, {"from": "gpt", "value": ""}]} +{"id": "000000117769", "images": ["AURORA/data/something/frames/68969/first.jpg", "AURORA/data/something/frames/68969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a robot with cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117770", "images": ["AURORA/data/something/frames/90542/first.jpg", "AURORA/data/something/frames/90542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117771", "images": ["AURORA/data/something/frames/15160/first.jpg", "AURORA/data/something/frames/15160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to mouse pad"}, {"from": "gpt", "value": ""}]} +{"id": "000000117772", "images": ["AURORA/data/something/frames/83910/first.jpg", "AURORA/data/something/frames/83910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling flowers onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117773", "images": ["AURORA/data/something/frames/130962/first.jpg", "AURORA/data/something/frames/130962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving juice away from coffee"}, {"from": "gpt", "value": ""}]} +{"id": "000000117774", "images": ["AURORA/data/something/frames/59029/first.jpg", "AURORA/data/something/frames/59029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of plastic boxes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000117775", "images": ["AURORA/data/something/frames/201456/first.jpg", "AURORA/data/something/frames/201456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle away from pink notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000117776", "images": ["AURORA/data/something/frames/94731/first.jpg", "AURORA/data/something/frames/94731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tissue box in front of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000117777", "images": ["AURORA/data/something/frames/143649/first.jpg", "AURORA/data/something/frames/143649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dvd away from keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117778", "images": ["AURORA/data/something/frames/148055/first.jpg", "AURORA/data/something/frames/148055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car colliding with book and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117779", "images": ["AURORA/data/something/frames/121135/first.jpg", "AURORA/data/something/frames/121135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117780", "images": ["AURORA/data/something/frames/67183/first.jpg", "AURORA/data/something/frames/67183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bicycle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117781", "images": ["AURORA/data/something/frames/4210/first.jpg", "AURORA/data/something/frames/4210/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking teabags out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117782", "images": ["AURORA/data/something/frames/133541/first.jpg", "AURORA/data/something/frames/133541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117783", "images": ["AURORA/data/something/frames/206332/first.jpg", "AURORA/data/something/frames/206332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming bike"}, {"from": "gpt", "value": ""}]} +{"id": "000000117784", "images": ["AURORA/data/something/frames/20087/first.jpg", "AURORA/data/something/frames/20087/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading vegetables onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117785", "images": ["AURORA/data/something/frames/88989/first.jpg", "AURORA/data/something/frames/88989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into the wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117786", "images": ["AURORA/data/something/frames/62343/first.jpg", "AURORA/data/something/frames/62343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a calculator away from a pencase"}, {"from": "gpt", "value": ""}]} +{"id": "000000117787", "images": ["AURORA/data/something/frames/157804/first.jpg", "AURORA/data/something/frames/157804/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117788", "images": ["AURORA/data/something/frames/152337/first.jpg", "AURORA/data/something/frames/152337/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a doll, a pen and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117789", "images": ["AURORA/data/something/frames/18906/first.jpg", "AURORA/data/something/frames/18906/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping box onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117790", "images": ["AURORA/data/something/frames/159717/first.jpg", "AURORA/data/something/frames/159717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000117791", "images": ["AURORA/data/something/frames/130860/first.jpg", "AURORA/data/something/frames/130860/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending stapler pin so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000117792", "images": ["AURORA/data/something/frames/214188/first.jpg", "AURORA/data/something/frames/214188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a videocamera up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117793", "images": ["AURORA/data/something/frames/48562/first.jpg", "AURORA/data/something/frames/48562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a candy cane upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117794", "images": ["AURORA/data/something/frames/42170/first.jpg", "AURORA/data/something/frames/42170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a cloth into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117795", "images": ["AURORA/data/something/frames/201645/first.jpg", "AURORA/data/something/frames/201645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a spoon onto the counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117796", "images": ["AURORA/data/something/frames/128047/first.jpg", "AURORA/data/something/frames/128047/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking eraser out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117797", "images": ["AURORA/data/something/frames/112815/first.jpg", "AURORA/data/something/frames/112815/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spects from box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117798", "images": ["AURORA/data/something/frames/204679/first.jpg", "AURORA/data/something/frames/204679/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117799", "images": ["AURORA/data/something/frames/141984/first.jpg", "AURORA/data/something/frames/141984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup with ruler"}, {"from": "gpt", "value": ""}]} +{"id": "000000117800", "images": ["AURORA/data/something/frames/17410/first.jpg", "AURORA/data/something/frames/17410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an energy drink can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117801", "images": ["AURORA/data/something/frames/48218/first.jpg", "AURORA/data/something/frames/48218/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vitamins and medication on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117802", "images": ["AURORA/data/something/frames/45362/first.jpg", "AURORA/data/something/frames/45362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving ice tray and mobile phone away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117803", "images": ["AURORA/data/something/frames/213371/first.jpg", "AURORA/data/something/frames/213371/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering wound"}, {"from": "gpt", "value": ""}]} +{"id": "000000117804", "images": ["AURORA/data/something/frames/49722/first.jpg", "AURORA/data/something/frames/49722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117805", "images": ["AURORA/data/something/frames/180382/first.jpg", "AURORA/data/something/frames/180382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a cup onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117806", "images": ["AURORA/data/something/frames/162448/first.jpg", "AURORA/data/something/frames/162448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of pennies so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117807", "images": ["AURORA/data/something/frames/144555/first.jpg", "AURORA/data/something/frames/144555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117808", "images": ["AURORA/data/something/frames/210207/first.jpg", "AURORA/data/something/frames/210207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117809", "images": ["AURORA/data/something/frames/195056/first.jpg", "AURORA/data/something/frames/195056/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a textsurfer upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117810", "images": ["AURORA/data/something/frames/120395/first.jpg", "AURORA/data/something/frames/120395/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding papers"}, {"from": "gpt", "value": ""}]} +{"id": "000000117811", "images": ["AURORA/data/something/frames/42849/first.jpg", "AURORA/data/something/frames/42849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 spanners onto yellow note"}, {"from": "gpt", "value": ""}]} +{"id": "000000117812", "images": ["AURORA/data/something/frames/151668/first.jpg", "AURORA/data/something/frames/151668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaf towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117813", "images": ["AURORA/data/something/frames/57299/first.jpg", "AURORA/data/something/frames/57299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000117814", "images": ["AURORA/data/something/frames/214602/first.jpg", "AURORA/data/something/frames/214602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing face wash with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000117815", "images": ["AURORA/data/something/frames/115717/first.jpg", "AURORA/data/something/frames/115717/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling spoon from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117816", "images": ["AURORA/data/something/frames/39709/first.jpg", "AURORA/data/something/frames/39709/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a tea cup to tea set"}, {"from": "gpt", "value": ""}]} +{"id": "000000117817", "images": ["AURORA/data/something/frames/129445/first.jpg", "AURORA/data/something/frames/129445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing cover into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117818", "images": ["AURORA/data/something/frames/216606/first.jpg", "AURORA/data/something/frames/216606/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming frame"}, {"from": "gpt", "value": ""}]} +{"id": "000000117819", "images": ["AURORA/data/something/frames/167013/first.jpg", "AURORA/data/something/frames/167013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117820", "images": ["AURORA/data/something/frames/198677/first.jpg", "AURORA/data/something/frames/198677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black brush from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117821", "images": ["AURORA/data/something/frames/153097/first.jpg", "AURORA/data/something/frames/153097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing cloth, revealing phone behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117822", "images": ["AURORA/data/something/frames/16429/first.jpg", "AURORA/data/something/frames/16429/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117823", "images": ["AURORA/data/something/frames/3292/first.jpg", "AURORA/data/something/frames/3292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving phone case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117824", "images": ["AURORA/data/something/frames/45055/first.jpg", "AURORA/data/something/frames/45055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117825", "images": ["AURORA/data/something/frames/23572/first.jpg", "AURORA/data/something/frames/23572/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of bottle cap so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117826", "images": ["AURORA/data/something/frames/131243/first.jpg", "AURORA/data/something/frames/131243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117827", "images": ["AURORA/data/something/frames/121738/first.jpg", "AURORA/data/something/frames/121738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117828", "images": ["AURORA/data/something/frames/131456/first.jpg", "AURORA/data/something/frames/131456/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cushion on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117829", "images": ["AURORA/data/something/frames/73703/first.jpg", "AURORA/data/something/frames/73703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a key next to a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000117830", "images": ["AURORA/data/something/frames/161088/first.jpg", "AURORA/data/something/frames/161088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wastebin with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000117831", "images": ["AURORA/data/something/frames/59938/first.jpg", "AURORA/data/something/frames/59938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a smartphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117832", "images": ["AURORA/data/something/frames/121561/first.jpg", "AURORA/data/something/frames/121561/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117833", "images": ["AURORA/data/something/frames/77808/first.jpg", "AURORA/data/something/frames/77808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: metal ball colliding with metal ball and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000117834", "images": ["AURORA/data/something/frames/67469/first.jpg", "AURORA/data/something/frames/67469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117835", "images": ["AURORA/data/something/frames/195318/first.jpg", "AURORA/data/something/frames/195318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cap with hand towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000117836", "images": ["AURORA/data/something/frames/146598/first.jpg", "AURORA/data/something/frames/146598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117837", "images": ["AURORA/data/something/frames/115894/first.jpg", "AURORA/data/something/frames/115894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping nail clippers into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117838", "images": ["AURORA/data/something/frames/168036/first.jpg", "AURORA/data/something/frames/168036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping pepper off of the counter top"}, {"from": "gpt", "value": ""}]} +{"id": "000000117839", "images": ["AURORA/data/something/frames/154294/first.jpg", "AURORA/data/something/frames/154294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving paper clip holder and marker closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117840", "images": ["AURORA/data/something/frames/148142/first.jpg", "AURORA/data/something/frames/148142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning coffee cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117841", "images": ["AURORA/data/something/frames/3879/first.jpg", "AURORA/data/something/frames/3879/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000117842", "images": ["AURORA/data/something/frames/179545/first.jpg", "AURORA/data/something/frames/179545/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of coins so the stack collapses"}, {"from": "gpt", "value": ""}]} +{"id": "000000117843", "images": ["AURORA/data/something/frames/143558/first.jpg", "AURORA/data/something/frames/143558/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a remote control next to a headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000117844", "images": ["AURORA/data/something/frames/155670/first.jpg", "AURORA/data/something/frames/155670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a mug, an eraser and a coin on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117845", "images": ["AURORA/data/something/frames/77945/first.jpg", "AURORA/data/something/frames/77945/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117846", "images": ["AURORA/data/something/frames/70341/first.jpg", "AURORA/data/something/frames/70341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117847", "images": ["AURORA/data/something/frames/151715/first.jpg", "AURORA/data/something/frames/151715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing pad lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000117848", "images": ["AURORA/data/something/frames/177461/first.jpg", "AURORA/data/something/frames/177461/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming smart phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117849", "images": ["AURORA/data/something/frames/47486/first.jpg", "AURORA/data/something/frames/47486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into wall socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117850", "images": ["AURORA/data/something/frames/135790/first.jpg", "AURORA/data/something/frames/135790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117851", "images": ["AURORA/data/something/frames/215596/first.jpg", "AURORA/data/something/frames/215596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: candy being deflected from clock"}, {"from": "gpt", "value": ""}]} +{"id": "000000117852", "images": ["AURORA/data/something/frames/34170/first.jpg", "AURORA/data/something/frames/34170/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming traffic signboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000117853", "images": ["AURORA/data/something/frames/32510/first.jpg", "AURORA/data/something/frames/32510/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power cable into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000117854", "images": ["AURORA/data/something/frames/212969/first.jpg", "AURORA/data/something/frames/212969/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117855", "images": ["AURORA/data/something/frames/181651/first.jpg", "AURORA/data/something/frames/181651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) a towel wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000117856", "images": ["AURORA/data/something/frames/211973/first.jpg", "AURORA/data/something/frames/211973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117857", "images": ["AURORA/data/something/frames/43544/first.jpg", "AURORA/data/something/frames/43544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a mouse with a wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117858", "images": ["AURORA/data/something/frames/12235/first.jpg", "AURORA/data/something/frames/12235/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen off of ipad"}, {"from": "gpt", "value": ""}]} +{"id": "000000117859", "images": ["AURORA/data/something/frames/141750/first.jpg", "AURORA/data/something/frames/141750/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of a chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000117860", "images": ["AURORA/data/something/frames/51775/first.jpg", "AURORA/data/something/frames/51775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting paper in front of candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117861", "images": ["AURORA/data/something/frames/1751/first.jpg", "AURORA/data/something/frames/1751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle and box closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117862", "images": ["AURORA/data/something/frames/38738/first.jpg", "AURORA/data/something/frames/38738/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117863", "images": ["AURORA/data/something/frames/179232/first.jpg", "AURORA/data/something/frames/179232/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping push in onto push in"}, {"from": "gpt", "value": ""}]} +{"id": "000000117864", "images": ["AURORA/data/something/frames/102701/first.jpg", "AURORA/data/something/frames/102701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a crayon into a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000117865", "images": ["AURORA/data/something/frames/119552/first.jpg", "AURORA/data/something/frames/119552/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a remote so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117866", "images": ["AURORA/data/something/frames/184511/first.jpg", "AURORA/data/something/frames/184511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117867", "images": ["AURORA/data/something/frames/114930/first.jpg", "AURORA/data/something/frames/114930/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper towel into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117868", "images": ["AURORA/data/something/frames/175789/first.jpg", "AURORA/data/something/frames/175789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a letter into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117869", "images": ["AURORA/data/something/frames/63424/first.jpg", "AURORA/data/something/frames/63424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking keys out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000117870", "images": ["AURORA/data/something/frames/128894/first.jpg", "AURORA/data/something/frames/128894/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117871", "images": ["AURORA/data/something/frames/136310/first.jpg", "AURORA/data/something/frames/136310/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117872", "images": ["AURORA/data/something/frames/18534/first.jpg", "AURORA/data/something/frames/18534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing medicine into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117873", "images": ["AURORA/data/something/frames/21421/first.jpg", "AURORA/data/something/frames/21421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117874", "images": ["AURORA/data/something/frames/105836/first.jpg", "AURORA/data/something/frames/105836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking currency"}, {"from": "gpt", "value": ""}]} +{"id": "000000117875", "images": ["AURORA/data/something/frames/63452/first.jpg", "AURORA/data/something/frames/63452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a plug from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117876", "images": ["AURORA/data/something/frames/2683/first.jpg", "AURORA/data/something/frames/2683/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a cigarette out of the pack"}, {"from": "gpt", "value": ""}]} +{"id": "000000117877", "images": ["AURORA/data/something/frames/173702/first.jpg", "AURORA/data/something/frames/173702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000117878", "images": ["AURORA/data/something/frames/156258/first.jpg", "AURORA/data/something/frames/156258/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117879", "images": ["AURORA/data/something/frames/68678/first.jpg", "AURORA/data/something/frames/68678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117880", "images": ["AURORA/data/something/frames/123792/first.jpg", "AURORA/data/something/frames/123792/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000117881", "images": ["AURORA/data/something/frames/153427/first.jpg", "AURORA/data/something/frames/153427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117882", "images": ["AURORA/data/something/frames/220119/first.jpg", "AURORA/data/something/frames/220119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil being deflected from a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117883", "images": ["AURORA/data/something/frames/74665/first.jpg", "AURORA/data/something/frames/74665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging power chord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117884", "images": ["AURORA/data/something/frames/27016/first.jpg", "AURORA/data/something/frames/27016/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping paper off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117885", "images": ["AURORA/data/something/frames/116144/first.jpg", "AURORA/data/something/frames/116144/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a lighter onto a metal box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117886", "images": ["AURORA/data/something/frames/211585/first.jpg", "AURORA/data/something/frames/211585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange post-it on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117887", "images": ["AURORA/data/something/frames/166927/first.jpg", "AURORA/data/something/frames/166927/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: remote being deflected from couch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117888", "images": ["AURORA/data/something/frames/130392/first.jpg", "AURORA/data/something/frames/130392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117889", "images": ["AURORA/data/something/frames/198965/first.jpg", "AURORA/data/something/frames/198965/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling pillows up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117890", "images": ["AURORA/data/something/frames/88011/first.jpg", "AURORA/data/something/frames/88011/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering plastic knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000117891", "images": ["AURORA/data/something/frames/50874/first.jpg", "AURORA/data/something/frames/50874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping cereal up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000117892", "images": ["AURORA/data/something/frames/82524/first.jpg", "AURORA/data/something/frames/82524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 pen onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117893", "images": ["AURORA/data/something/frames/168508/first.jpg", "AURORA/data/something/frames/168508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117894", "images": ["AURORA/data/something/frames/220335/first.jpg", "AURORA/data/something/frames/220335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching battery cover to remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000117895", "images": ["AURORA/data/something/frames/28598/first.jpg", "AURORA/data/something/frames/28598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117896", "images": ["AURORA/data/something/frames/178788/first.jpg", "AURORA/data/something/frames/178788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000117897", "images": ["AURORA/data/something/frames/186015/first.jpg", "AURORA/data/something/frames/186015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sticky note into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117898", "images": ["AURORA/data/something/frames/110396/first.jpg", "AURORA/data/something/frames/110396/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117899", "images": ["AURORA/data/something/frames/56775/first.jpg", "AURORA/data/something/frames/56775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000117900", "images": ["AURORA/data/something/frames/4940/first.jpg", "AURORA/data/something/frames/4940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving antenas of antena set"}, {"from": "gpt", "value": ""}]} +{"id": "000000117901", "images": ["AURORA/data/something/frames/74512/first.jpg", "AURORA/data/something/frames/74512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea bags out of a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117902", "images": ["AURORA/data/something/frames/76349/first.jpg", "AURORA/data/something/frames/76349/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill bottle into coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000117903", "images": ["AURORA/data/something/frames/131843/first.jpg", "AURORA/data/something/frames/131843/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bowel underneath gas stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000117904", "images": ["AURORA/data/something/frames/78898/first.jpg", "AURORA/data/something/frames/78898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving calculator up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117905", "images": ["AURORA/data/something/frames/98916/first.jpg", "AURORA/data/something/frames/98916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning bowl upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117906", "images": ["AURORA/data/something/frames/168896/first.jpg", "AURORA/data/something/frames/168896/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking bottle so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117907", "images": ["AURORA/data/something/frames/16055/first.jpg", "AURORA/data/something/frames/16055/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving power bank down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117908", "images": ["AURORA/data/something/frames/39000/first.jpg", "AURORA/data/something/frames/39000/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg next to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117909", "images": ["AURORA/data/something/frames/39745/first.jpg", "AURORA/data/something/frames/39745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering soap"}, {"from": "gpt", "value": ""}]} +{"id": "000000117910", "images": ["AURORA/data/something/frames/84546/first.jpg", "AURORA/data/something/frames/84546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering orange colour bottle cap with white sheet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117911", "images": ["AURORA/data/something/frames/168876/first.jpg", "AURORA/data/something/frames/168876/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 cigarette boxes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117912", "images": ["AURORA/data/something/frames/95309/first.jpg", "AURORA/data/something/frames/95309/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117913", "images": ["AURORA/data/something/frames/15514/first.jpg", "AURORA/data/something/frames/15514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing case, revealing pc behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000117914", "images": ["AURORA/data/something/frames/117674/first.jpg", "AURORA/data/something/frames/117674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning chair upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117915", "images": ["AURORA/data/something/frames/127213/first.jpg", "AURORA/data/something/frames/127213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 2 coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000117916", "images": ["AURORA/data/something/frames/167865/first.jpg", "AURORA/data/something/frames/167865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117917", "images": ["AURORA/data/something/frames/80518/first.jpg", "AURORA/data/something/frames/80518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117918", "images": ["AURORA/data/something/frames/112348/first.jpg", "AURORA/data/something/frames/112348/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing foldable knife from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117919", "images": ["AURORA/data/something/frames/167431/first.jpg", "AURORA/data/something/frames/167431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming banana bunch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117920", "images": ["AURORA/data/something/frames/163099/first.jpg", "AURORA/data/something/frames/163099/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping marker pen in front of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117921", "images": ["AURORA/data/something/frames/174688/first.jpg", "AURORA/data/something/frames/174688/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117922", "images": ["AURORA/data/something/frames/53898/first.jpg", "AURORA/data/something/frames/53898/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing package from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117923", "images": ["AURORA/data/something/frames/203070/first.jpg", "AURORA/data/something/frames/203070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup and orange on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117924", "images": ["AURORA/data/something/frames/194108/first.jpg", "AURORA/data/something/frames/194108/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000117925", "images": ["AURORA/data/something/frames/75548/first.jpg", "AURORA/data/something/frames/75548/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000117926", "images": ["AURORA/data/something/frames/55373/first.jpg", "AURORA/data/something/frames/55373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117927", "images": ["AURORA/data/something/frames/122602/first.jpg", "AURORA/data/something/frames/122602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spone to other spones that are already on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117928", "images": ["AURORA/data/something/frames/12008/first.jpg", "AURORA/data/something/frames/12008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117929", "images": ["AURORA/data/something/frames/130674/first.jpg", "AURORA/data/something/frames/130674/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black umbrella from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117930", "images": ["AURORA/data/something/frames/140022/first.jpg", "AURORA/data/something/frames/140022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of cover so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117931", "images": ["AURORA/data/something/frames/97477/first.jpg", "AURORA/data/something/frames/97477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning breath mint container upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117932", "images": ["AURORA/data/something/frames/74711/first.jpg", "AURORA/data/something/frames/74711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117933", "images": ["AURORA/data/something/frames/35443/first.jpg", "AURORA/data/something/frames/35443/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000117934", "images": ["AURORA/data/something/frames/209621/first.jpg", "AURORA/data/something/frames/209621/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a lamp and coasters away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117935", "images": ["AURORA/data/something/frames/3021/first.jpg", "AURORA/data/something/frames/3021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a packet on the edge of the chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117936", "images": ["AURORA/data/something/frames/96771/first.jpg", "AURORA/data/something/frames/96771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a knife so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000117937", "images": ["AURORA/data/something/frames/5903/first.jpg", "AURORA/data/something/frames/5903/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a fragrance diffuser into a wall socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000117938", "images": ["AURORA/data/something/frames/39506/first.jpg", "AURORA/data/something/frames/39506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117939", "images": ["AURORA/data/something/frames/129375/first.jpg", "AURORA/data/something/frames/129375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading kerchief onto rubix cube"}, {"from": "gpt", "value": ""}]} +{"id": "000000117940", "images": ["AURORA/data/something/frames/32619/first.jpg", "AURORA/data/something/frames/32619/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of a rubber strip so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000117941", "images": ["AURORA/data/something/frames/33910/first.jpg", "AURORA/data/something/frames/33910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing envelope just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117942", "images": ["AURORA/data/something/frames/204133/first.jpg", "AURORA/data/something/frames/204133/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000117943", "images": ["AURORA/data/something/frames/142245/first.jpg", "AURORA/data/something/frames/142245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking small stone from pile of stones"}, {"from": "gpt", "value": ""}]} +{"id": "000000117944", "images": ["AURORA/data/something/frames/13922/first.jpg", "AURORA/data/something/frames/13922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a sandal in front of a shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000117945", "images": ["AURORA/data/something/frames/53813/first.jpg", "AURORA/data/something/frames/53813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving feeding bottle and plastic bottel closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117946", "images": ["AURORA/data/something/frames/138954/first.jpg", "AURORA/data/something/frames/138954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green hair comb from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000117947", "images": ["AURORA/data/something/frames/53225/first.jpg", "AURORA/data/something/frames/53225/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping phone onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117948", "images": ["AURORA/data/something/frames/37891/first.jpg", "AURORA/data/something/frames/37891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000117949", "images": ["AURORA/data/something/frames/41260/first.jpg", "AURORA/data/something/frames/41260/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a remote with a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000117950", "images": ["AURORA/data/something/frames/125029/first.jpg", "AURORA/data/something/frames/125029/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shirt in front of shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000117951", "images": ["AURORA/data/something/frames/115127/first.jpg", "AURORA/data/something/frames/115127/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming indian weight machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000117952", "images": ["AURORA/data/something/frames/44321/first.jpg", "AURORA/data/something/frames/44321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting shoe on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117953", "images": ["AURORA/data/something/frames/36852/first.jpg", "AURORA/data/something/frames/36852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking magnifying glass out of spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117954", "images": ["AURORA/data/something/frames/108574/first.jpg", "AURORA/data/something/frames/108574/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking liner out of book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117955", "images": ["AURORA/data/something/frames/40602/first.jpg", "AURORA/data/something/frames/40602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a container upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000117956", "images": ["AURORA/data/something/frames/206632/first.jpg", "AURORA/data/something/frames/206632/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill behind bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000117957", "images": ["AURORA/data/something/frames/184038/first.jpg", "AURORA/data/something/frames/184038/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red pot holder down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117958", "images": ["AURORA/data/something/frames/204588/first.jpg", "AURORA/data/something/frames/204588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cell phone with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117959", "images": ["AURORA/data/something/frames/138084/first.jpg", "AURORA/data/something/frames/138084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000117960", "images": ["AURORA/data/something/frames/39430/first.jpg", "AURORA/data/something/frames/39430/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a lipstick lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000117961", "images": ["AURORA/data/something/frames/182381/first.jpg", "AURORA/data/something/frames/182381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering lollipop with card"}, {"from": "gpt", "value": ""}]} +{"id": "000000117962", "images": ["AURORA/data/something/frames/197012/first.jpg", "AURORA/data/something/frames/197012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting soda can next to glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117963", "images": ["AURORA/data/something/frames/170934/first.jpg", "AURORA/data/something/frames/170934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117964", "images": ["AURORA/data/something/frames/21720/first.jpg", "AURORA/data/something/frames/21720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000117965", "images": ["AURORA/data/something/frames/123334/first.jpg", "AURORA/data/something/frames/123334/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of pen so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000117966", "images": ["AURORA/data/something/frames/194897/first.jpg", "AURORA/data/something/frames/194897/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a container and another one away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000117967", "images": ["AURORA/data/something/frames/26464/first.jpg", "AURORA/data/something/frames/26464/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000117968", "images": ["AURORA/data/something/frames/206093/first.jpg", "AURORA/data/something/frames/206093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000117969", "images": ["AURORA/data/something/frames/126255/first.jpg", "AURORA/data/something/frames/126255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching block to block"}, {"from": "gpt", "value": ""}]} +{"id": "000000117970", "images": ["AURORA/data/something/frames/60729/first.jpg", "AURORA/data/something/frames/60729/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming fishes"}, {"from": "gpt", "value": ""}]} +{"id": "000000117971", "images": ["AURORA/data/something/frames/182132/first.jpg", "AURORA/data/something/frames/182132/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking silver pen among other pens on table"}, {"from": "gpt", "value": ""}]} +{"id": "000000117972", "images": ["AURORA/data/something/frames/41420/first.jpg", "AURORA/data/something/frames/41420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000117973", "images": ["AURORA/data/something/frames/14263/first.jpg", "AURORA/data/something/frames/14263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching usb to charger"}, {"from": "gpt", "value": ""}]} +{"id": "000000117974", "images": ["AURORA/data/something/frames/219524/first.jpg", "AURORA/data/something/frames/219524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 hair bands onto black pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000117975", "images": ["AURORA/data/something/frames/153239/first.jpg", "AURORA/data/something/frames/153239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto wood box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117976", "images": ["AURORA/data/something/frames/220375/first.jpg", "AURORA/data/something/frames/220375/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plant away from phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117977", "images": ["AURORA/data/something/frames/108246/first.jpg", "AURORA/data/something/frames/108246/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle in front of a rubbish bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000117978", "images": ["AURORA/data/something/frames/118752/first.jpg", "AURORA/data/something/frames/118752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting notepad with remote on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000117979", "images": ["AURORA/data/something/frames/112658/first.jpg", "AURORA/data/something/frames/112658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sauce bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000117980", "images": ["AURORA/data/something/frames/96317/first.jpg", "AURORA/data/something/frames/96317/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something next to something"}, {"from": "gpt", "value": ""}]} +{"id": "000000117981", "images": ["AURORA/data/something/frames/117165/first.jpg", "AURORA/data/something/frames/117165/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into headphones"}, {"from": "gpt", "value": ""}]} +{"id": "000000117982", "images": ["AURORA/data/something/frames/209914/first.jpg", "AURORA/data/something/frames/209914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) ball of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000117983", "images": ["AURORA/data/something/frames/128332/first.jpg", "AURORA/data/something/frames/128332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117984", "images": ["AURORA/data/something/frames/219850/first.jpg", "AURORA/data/something/frames/219850/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a comb from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117985", "images": ["AURORA/data/something/frames/98789/first.jpg", "AURORA/data/something/frames/98789/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing paint with phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000117986", "images": ["AURORA/data/something/frames/52025/first.jpg", "AURORA/data/something/frames/52025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a children's book"}, {"from": "gpt", "value": ""}]} +{"id": "000000117987", "images": ["AURORA/data/something/frames/156752/first.jpg", "AURORA/data/something/frames/156752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying battery on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000117988", "images": ["AURORA/data/something/frames/104547/first.jpg", "AURORA/data/something/frames/104547/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cover into lipstick"}, {"from": "gpt", "value": ""}]} +{"id": "000000117989", "images": ["AURORA/data/something/frames/131497/first.jpg", "AURORA/data/something/frames/131497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a box with a pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000117990", "images": ["AURORA/data/something/frames/145929/first.jpg", "AURORA/data/something/frames/145929/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing tape dispenser from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117991", "images": ["AURORA/data/something/frames/88041/first.jpg", "AURORA/data/something/frames/88041/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse in front of cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000117992", "images": ["AURORA/data/something/frames/207568/first.jpg", "AURORA/data/something/frames/207568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting flashdisk next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000117993", "images": ["AURORA/data/something/frames/219773/first.jpg", "AURORA/data/something/frames/219773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting egg"}, {"from": "gpt", "value": ""}]} +{"id": "000000117994", "images": ["AURORA/data/something/frames/37854/first.jpg", "AURORA/data/something/frames/37854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000117995", "images": ["AURORA/data/something/frames/64031/first.jpg", "AURORA/data/something/frames/64031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000117996", "images": ["AURORA/data/something/frames/70031/first.jpg", "AURORA/data/something/frames/70031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing double-sided adhesive tape from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000117997", "images": ["AURORA/data/something/frames/139884/first.jpg", "AURORA/data/something/frames/139884/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving hair comb down"}, {"from": "gpt", "value": ""}]} +{"id": "000000117998", "images": ["AURORA/data/something/frames/15588/first.jpg", "AURORA/data/something/frames/15588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000117999", "images": ["AURORA/data/something/frames/151923/first.jpg", "AURORA/data/something/frames/151923/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118000", "images": ["AURORA/data/something/frames/149720/first.jpg", "AURORA/data/something/frames/149720/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping water botle into purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118001", "images": ["AURORA/data/something/frames/112335/first.jpg", "AURORA/data/something/frames/112335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving inline skate wheel and inline skate wheel away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118002", "images": ["AURORA/data/something/frames/112154/first.jpg", "AURORA/data/something/frames/112154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into cord"}, {"from": "gpt", "value": ""}]} +{"id": "000000118003", "images": ["AURORA/data/something/frames/111998/first.jpg", "AURORA/data/something/frames/111998/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting knife into glass cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118004", "images": ["AURORA/data/something/frames/62715/first.jpg", "AURORA/data/something/frames/62715/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a ticket just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118005", "images": ["AURORA/data/something/frames/97620/first.jpg", "AURORA/data/something/frames/97620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting dollar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118006", "images": ["AURORA/data/something/frames/67297/first.jpg", "AURORA/data/something/frames/67297/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding dish cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118007", "images": ["AURORA/data/something/frames/172290/first.jpg", "AURORA/data/something/frames/172290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118008", "images": ["AURORA/data/something/frames/176020/first.jpg", "AURORA/data/something/frames/176020/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing papers into trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118009", "images": ["AURORA/data/something/frames/118112/first.jpg", "AURORA/data/something/frames/118112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fuel can towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118010", "images": ["AURORA/data/something/frames/6458/first.jpg", "AURORA/data/something/frames/6458/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting pencil up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118011", "images": ["AURORA/data/something/frames/61244/first.jpg", "AURORA/data/something/frames/61244/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging earphones into a mobile"}, {"from": "gpt", "value": ""}]} +{"id": "000000118012", "images": ["AURORA/data/something/frames/190516/first.jpg", "AURORA/data/something/frames/190516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle of tool oil upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118013", "images": ["AURORA/data/something/frames/188239/first.jpg", "AURORA/data/something/frames/188239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mobile phone from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118014", "images": ["AURORA/data/something/frames/16820/first.jpg", "AURORA/data/something/frames/16820/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking deo out of bagback"}, {"from": "gpt", "value": ""}]} +{"id": "000000118015", "images": ["AURORA/data/something/frames/103125/first.jpg", "AURORA/data/something/frames/103125/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting milk jug upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118016", "images": ["AURORA/data/something/frames/64019/first.jpg", "AURORA/data/something/frames/64019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118017", "images": ["AURORA/data/something/frames/53642/first.jpg", "AURORA/data/something/frames/53642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a bracelet from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118018", "images": ["AURORA/data/something/frames/46575/first.jpg", "AURORA/data/something/frames/46575/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a wine glass with a penny"}, {"from": "gpt", "value": ""}]} +{"id": "000000118019", "images": ["AURORA/data/something/frames/135321/first.jpg", "AURORA/data/something/frames/135321/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118020", "images": ["AURORA/data/something/frames/87604/first.jpg", "AURORA/data/something/frames/87604/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118021", "images": ["AURORA/data/something/frames/181382/first.jpg", "AURORA/data/something/frames/181382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spaghetti noodle until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118022", "images": ["AURORA/data/something/frames/201535/first.jpg", "AURORA/data/something/frames/201535/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118023", "images": ["AURORA/data/something/frames/69849/first.jpg", "AURORA/data/something/frames/69849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking teddy bear so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118024", "images": ["AURORA/data/something/frames/72304/first.jpg", "AURORA/data/something/frames/72304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a card into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118025", "images": ["AURORA/data/something/frames/188518/first.jpg", "AURORA/data/something/frames/188518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118026", "images": ["AURORA/data/something/frames/113332/first.jpg", "AURORA/data/something/frames/113332/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving horse and cow closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118027", "images": ["AURORA/data/something/frames/147059/first.jpg", "AURORA/data/something/frames/147059/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118028", "images": ["AURORA/data/something/frames/155024/first.jpg", "AURORA/data/something/frames/155024/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pebble away from metal rod"}, {"from": "gpt", "value": ""}]} +{"id": "000000118029", "images": ["AURORA/data/something/frames/166273/first.jpg", "AURORA/data/something/frames/166273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cap into backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000118030", "images": ["AURORA/data/something/frames/195086/first.jpg", "AURORA/data/something/frames/195086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming sunset"}, {"from": "gpt", "value": ""}]} +{"id": "000000118031", "images": ["AURORA/data/something/frames/176821/first.jpg", "AURORA/data/something/frames/176821/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118032", "images": ["AURORA/data/something/frames/129367/first.jpg", "AURORA/data/something/frames/129367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting two coasters onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118033", "images": ["AURORA/data/something/frames/143253/first.jpg", "AURORA/data/something/frames/143253/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118034", "images": ["AURORA/data/something/frames/178787/first.jpg", "AURORA/data/something/frames/178787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118035", "images": ["AURORA/data/something/frames/212642/first.jpg", "AURORA/data/something/frames/212642/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hammer next to a child toy"}, {"from": "gpt", "value": ""}]} +{"id": "000000118036", "images": ["AURORA/data/something/frames/142963/first.jpg", "AURORA/data/something/frames/142963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a candle with a cover"}, {"from": "gpt", "value": ""}]} +{"id": "000000118037", "images": ["AURORA/data/something/frames/114255/first.jpg", "AURORA/data/something/frames/114255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plastic container with plastic container on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118038", "images": ["AURORA/data/something/frames/110453/first.jpg", "AURORA/data/something/frames/110453/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118039", "images": ["AURORA/data/something/frames/118971/first.jpg", "AURORA/data/something/frames/118971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading old tree leaves onto small tree"}, {"from": "gpt", "value": ""}]} +{"id": "000000118040", "images": ["AURORA/data/something/frames/132707/first.jpg", "AURORA/data/something/frames/132707/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy car being deflected from another toy car"}, {"from": "gpt", "value": ""}]} +{"id": "000000118041", "images": ["AURORA/data/something/frames/9304/first.jpg", "AURORA/data/something/frames/9304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: toy colliding with toy and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118042", "images": ["AURORA/data/something/frames/10747/first.jpg", "AURORA/data/something/frames/10747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118043", "images": ["AURORA/data/something/frames/48836/first.jpg", "AURORA/data/something/frames/48836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting plush stitch onto mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118044", "images": ["AURORA/data/something/frames/21147/first.jpg", "AURORA/data/something/frames/21147/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen next to watch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118045", "images": ["AURORA/data/something/frames/17062/first.jpg", "AURORA/data/something/frames/17062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a saucepan with a lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000118046", "images": ["AURORA/data/something/frames/145084/first.jpg", "AURORA/data/something/frames/145084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle of water upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118047", "images": ["AURORA/data/something/frames/65206/first.jpg", "AURORA/data/something/frames/65206/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118048", "images": ["AURORA/data/something/frames/185722/first.jpg", "AURORA/data/something/frames/185722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming beach"}, {"from": "gpt", "value": ""}]} +{"id": "000000118049", "images": ["AURORA/data/something/frames/58520/first.jpg", "AURORA/data/something/frames/58520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spectacle box from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118050", "images": ["AURORA/data/something/frames/65968/first.jpg", "AURORA/data/something/frames/65968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wardrobe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118051", "images": ["AURORA/data/something/frames/42650/first.jpg", "AURORA/data/something/frames/42650/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118052", "images": ["AURORA/data/something/frames/135620/first.jpg", "AURORA/data/something/frames/135620/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118053", "images": ["AURORA/data/something/frames/117888/first.jpg", "AURORA/data/something/frames/117888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting hair"}, {"from": "gpt", "value": ""}]} +{"id": "000000118054", "images": ["AURORA/data/something/frames/24299/first.jpg", "AURORA/data/something/frames/24299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a lighter with a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118055", "images": ["AURORA/data/something/frames/204259/first.jpg", "AURORA/data/something/frames/204259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red spoon away from blue spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118056", "images": ["AURORA/data/something/frames/180556/first.jpg", "AURORA/data/something/frames/180556/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting blue colour bottle cap into spectacle box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118057", "images": ["AURORA/data/something/frames/84296/first.jpg", "AURORA/data/something/frames/84296/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging iphone cord into electric socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118058", "images": ["AURORA/data/something/frames/42077/first.jpg", "AURORA/data/something/frames/42077/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile and diary away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118059", "images": ["AURORA/data/something/frames/219134/first.jpg", "AURORA/data/something/frames/219134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a deodorant up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118060", "images": ["AURORA/data/something/frames/40319/first.jpg", "AURORA/data/something/frames/40319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone underneath cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118061", "images": ["AURORA/data/something/frames/69566/first.jpg", "AURORA/data/something/frames/69566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118062", "images": ["AURORA/data/something/frames/136722/first.jpg", "AURORA/data/something/frames/136722/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a plate with a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118063", "images": ["AURORA/data/something/frames/135893/first.jpg", "AURORA/data/something/frames/135893/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a nail with a hammer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118064", "images": ["AURORA/data/something/frames/124037/first.jpg", "AURORA/data/something/frames/124037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118065", "images": ["AURORA/data/something/frames/68466/first.jpg", "AURORA/data/something/frames/68466/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping the squeeze over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118066", "images": ["AURORA/data/something/frames/201017/first.jpg", "AURORA/data/something/frames/201017/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a cleansing pad with a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118067", "images": ["AURORA/data/something/frames/196516/first.jpg", "AURORA/data/something/frames/196516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing muug, revealing coin behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118068", "images": ["AURORA/data/something/frames/64651/first.jpg", "AURORA/data/something/frames/64651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing water bottle onto another water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118069", "images": ["AURORA/data/something/frames/35530/first.jpg", "AURORA/data/something/frames/35530/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118070", "images": ["AURORA/data/something/frames/62866/first.jpg", "AURORA/data/something/frames/62866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching wardrobe with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118071", "images": ["AURORA/data/something/frames/29155/first.jpg", "AURORA/data/something/frames/29155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a deodorant upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118072", "images": ["AURORA/data/something/frames/105526/first.jpg", "AURORA/data/something/frames/105526/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118073", "images": ["AURORA/data/something/frames/208112/first.jpg", "AURORA/data/something/frames/208112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a tape with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000118074", "images": ["AURORA/data/something/frames/12891/first.jpg", "AURORA/data/something/frames/12891/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving scotch tape down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118075", "images": ["AURORA/data/something/frames/13096/first.jpg", "AURORA/data/something/frames/13096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shot glass from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118076", "images": ["AURORA/data/something/frames/195109/first.jpg", "AURORA/data/something/frames/195109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toy in front of spectical box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118077", "images": ["AURORA/data/something/frames/68373/first.jpg", "AURORA/data/something/frames/68373/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pin upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118078", "images": ["AURORA/data/something/frames/18320/first.jpg", "AURORA/data/something/frames/18320/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clasp to bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118079", "images": ["AURORA/data/something/frames/104854/first.jpg", "AURORA/data/something/frames/104854/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping apple into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118080", "images": ["AURORA/data/something/frames/57009/first.jpg", "AURORA/data/something/frames/57009/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking taking adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118081", "images": ["AURORA/data/something/frames/171004/first.jpg", "AURORA/data/something/frames/171004/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118082", "images": ["AURORA/data/something/frames/114475/first.jpg", "AURORA/data/something/frames/114475/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping paint bottle into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118083", "images": ["AURORA/data/something/frames/203731/first.jpg", "AURORA/data/something/frames/203731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118084", "images": ["AURORA/data/something/frames/77785/first.jpg", "AURORA/data/something/frames/77785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of pencil case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118085", "images": ["AURORA/data/something/frames/152051/first.jpg", "AURORA/data/something/frames/152051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning green water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118086", "images": ["AURORA/data/something/frames/118298/first.jpg", "AURORA/data/something/frames/118298/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle next to bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118087", "images": ["AURORA/data/something/frames/65824/first.jpg", "AURORA/data/something/frames/65824/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118088", "images": ["AURORA/data/something/frames/189640/first.jpg", "AURORA/data/something/frames/189640/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118089", "images": ["AURORA/data/something/frames/28289/first.jpg", "AURORA/data/something/frames/28289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a crayon out of a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118090", "images": ["AURORA/data/something/frames/175432/first.jpg", "AURORA/data/something/frames/175432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118091", "images": ["AURORA/data/something/frames/95354/first.jpg", "AURORA/data/something/frames/95354/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tablet box upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118092", "images": ["AURORA/data/something/frames/126781/first.jpg", "AURORA/data/something/frames/126781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen, keychain and pouch on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118093", "images": ["AURORA/data/something/frames/157197/first.jpg", "AURORA/data/something/frames/157197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging extention into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118094", "images": ["AURORA/data/something/frames/29703/first.jpg", "AURORA/data/something/frames/29703/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118095", "images": ["AURORA/data/something/frames/158134/first.jpg", "AURORA/data/something/frames/158134/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mineral water"}, {"from": "gpt", "value": ""}]} +{"id": "000000118096", "images": ["AURORA/data/something/frames/210344/first.jpg", "AURORA/data/something/frames/210344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118097", "images": ["AURORA/data/something/frames/187254/first.jpg", "AURORA/data/something/frames/187254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118098", "images": ["AURORA/data/something/frames/99414/first.jpg", "AURORA/data/something/frames/99414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118099", "images": ["AURORA/data/something/frames/104492/first.jpg", "AURORA/data/something/frames/104492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering clock with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118100", "images": ["AURORA/data/something/frames/37528/first.jpg", "AURORA/data/something/frames/37528/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling black hair tie from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118101", "images": ["AURORA/data/something/frames/171614/first.jpg", "AURORA/data/something/frames/171614/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118102", "images": ["AURORA/data/something/frames/127761/first.jpg", "AURORA/data/something/frames/127761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toast into toaster"}, {"from": "gpt", "value": ""}]} +{"id": "000000118103", "images": ["AURORA/data/something/frames/102637/first.jpg", "AURORA/data/something/frames/102637/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cofee cup onto a backpack"}, {"from": "gpt", "value": ""}]} +{"id": "000000118104", "images": ["AURORA/data/something/frames/169770/first.jpg", "AURORA/data/something/frames/169770/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering flashlight with paper bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118105", "images": ["AURORA/data/something/frames/83315/first.jpg", "AURORA/data/something/frames/83315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118106", "images": ["AURORA/data/something/frames/150634/first.jpg", "AURORA/data/something/frames/150634/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking vegetable ice cream scoop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118107", "images": ["AURORA/data/something/frames/210861/first.jpg", "AURORA/data/something/frames/210861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing something into something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118108", "images": ["AURORA/data/something/frames/39257/first.jpg", "AURORA/data/something/frames/39257/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses off of table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118109", "images": ["AURORA/data/something/frames/50546/first.jpg", "AURORA/data/something/frames/50546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118110", "images": ["AURORA/data/something/frames/168423/first.jpg", "AURORA/data/something/frames/168423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118111", "images": ["AURORA/data/something/frames/130921/first.jpg", "AURORA/data/something/frames/130921/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118112", "images": ["AURORA/data/something/frames/148827/first.jpg", "AURORA/data/something/frames/148827/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cup in front of text books"}, {"from": "gpt", "value": ""}]} +{"id": "000000118113", "images": ["AURORA/data/something/frames/22486/first.jpg", "AURORA/data/something/frames/22486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 pennies"}, {"from": "gpt", "value": ""}]} +{"id": "000000118114", "images": ["AURORA/data/something/frames/14393/first.jpg", "AURORA/data/something/frames/14393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118115", "images": ["AURORA/data/something/frames/193856/first.jpg", "AURORA/data/something/frames/193856/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking cup and saucer from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118116", "images": ["AURORA/data/something/frames/88019/first.jpg", "AURORA/data/something/frames/88019/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pancile with sheed of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118117", "images": ["AURORA/data/something/frames/96829/first.jpg", "AURORA/data/something/frames/96829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing phone into case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118118", "images": ["AURORA/data/something/frames/76081/first.jpg", "AURORA/data/something/frames/76081/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking ball out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118119", "images": ["AURORA/data/something/frames/124013/first.jpg", "AURORA/data/something/frames/124013/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass closer to bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118120", "images": ["AURORA/data/something/frames/205598/first.jpg", "AURORA/data/something/frames/205598/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118121", "images": ["AURORA/data/something/frames/65069/first.jpg", "AURORA/data/something/frames/65069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing paper into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118122", "images": ["AURORA/data/something/frames/191875/first.jpg", "AURORA/data/something/frames/191875/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a card so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118123", "images": ["AURORA/data/something/frames/63808/first.jpg", "AURORA/data/something/frames/63808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118124", "images": ["AURORA/data/something/frames/108199/first.jpg", "AURORA/data/something/frames/108199/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118125", "images": ["AURORA/data/something/frames/194486/first.jpg", "AURORA/data/something/frames/194486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118126", "images": ["AURORA/data/something/frames/27217/first.jpg", "AURORA/data/something/frames/27217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a bottle with scissors"}, {"from": "gpt", "value": ""}]} +{"id": "000000118127", "images": ["AURORA/data/something/frames/111193/first.jpg", "AURORA/data/something/frames/111193/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster underneath cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118128", "images": ["AURORA/data/something/frames/120989/first.jpg", "AURORA/data/something/frames/120989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lime and lime closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118129", "images": ["AURORA/data/something/frames/115880/first.jpg", "AURORA/data/something/frames/115880/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118130", "images": ["AURORA/data/something/frames/185664/first.jpg", "AURORA/data/something/frames/185664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a kiwi being deflected from a litter bin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118131", "images": ["AURORA/data/something/frames/190265/first.jpg", "AURORA/data/something/frames/190265/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a card with a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118132", "images": ["AURORA/data/something/frames/12682/first.jpg", "AURORA/data/something/frames/12682/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pomegranate so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118133", "images": ["AURORA/data/something/frames/35391/first.jpg", "AURORA/data/something/frames/35391/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a beer can in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118134", "images": ["AURORA/data/something/frames/165539/first.jpg", "AURORA/data/something/frames/165539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with plastic container on it but not enough for it to slide down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118135", "images": ["AURORA/data/something/frames/111954/first.jpg", "AURORA/data/something/frames/111954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118136", "images": ["AURORA/data/something/frames/168084/first.jpg", "AURORA/data/something/frames/168084/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking headphones out of bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118137", "images": ["AURORA/data/something/frames/166205/first.jpg", "AURORA/data/something/frames/166205/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling red watch case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118138", "images": ["AURORA/data/something/frames/29050/first.jpg", "AURORA/data/something/frames/29050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a colored pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118139", "images": ["AURORA/data/something/frames/17810/first.jpg", "AURORA/data/something/frames/17810/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing shoe with clothes peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000118140", "images": ["AURORA/data/something/frames/18610/first.jpg", "AURORA/data/something/frames/18610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen onto holder so it falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118141", "images": ["AURORA/data/something/frames/103589/first.jpg", "AURORA/data/something/frames/103589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking lipstick so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118142", "images": ["AURORA/data/something/frames/183915/first.jpg", "AURORA/data/something/frames/183915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118143", "images": ["AURORA/data/something/frames/23486/first.jpg", "AURORA/data/something/frames/23486/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118144", "images": ["AURORA/data/something/frames/197377/first.jpg", "AURORA/data/something/frames/197377/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118145", "images": ["AURORA/data/something/frames/220755/first.jpg", "AURORA/data/something/frames/220755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118146", "images": ["AURORA/data/something/frames/42290/first.jpg", "AURORA/data/something/frames/42290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lighter behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118147", "images": ["AURORA/data/something/frames/146104/first.jpg", "AURORA/data/something/frames/146104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118148", "images": ["AURORA/data/something/frames/175393/first.jpg", "AURORA/data/something/frames/175393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking stuffed cat so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118149", "images": ["AURORA/data/something/frames/21781/first.jpg", "AURORA/data/something/frames/21781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking chair case up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118150", "images": ["AURORA/data/something/frames/56489/first.jpg", "AURORA/data/something/frames/56489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water behind door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118151", "images": ["AURORA/data/something/frames/55421/first.jpg", "AURORA/data/something/frames/55421/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing a pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118152", "images": ["AURORA/data/something/frames/101471/first.jpg", "AURORA/data/something/frames/101471/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging computer cord into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118153", "images": ["AURORA/data/something/frames/162318/first.jpg", "AURORA/data/something/frames/162318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering jar with lid"}, {"from": "gpt", "value": ""}]} +{"id": "000000118154", "images": ["AURORA/data/something/frames/182698/first.jpg", "AURORA/data/something/frames/182698/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting knee with paintbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000118155", "images": ["AURORA/data/something/frames/74252/first.jpg", "AURORA/data/something/frames/74252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing wrapper into yogurt cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118156", "images": ["AURORA/data/something/frames/79857/first.jpg", "AURORA/data/something/frames/79857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cereal on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118157", "images": ["AURORA/data/something/frames/201866/first.jpg", "AURORA/data/something/frames/201866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg onto a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118158", "images": ["AURORA/data/something/frames/15848/first.jpg", "AURORA/data/something/frames/15848/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing jar so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118159", "images": ["AURORA/data/something/frames/107747/first.jpg", "AURORA/data/something/frames/107747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching microphone to stand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118160", "images": ["AURORA/data/something/frames/8318/first.jpg", "AURORA/data/something/frames/8318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a marker on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118161", "images": ["AURORA/data/something/frames/54318/first.jpg", "AURORA/data/something/frames/54318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118162", "images": ["AURORA/data/something/frames/136539/first.jpg", "AURORA/data/something/frames/136539/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming fire extinguisher"}, {"from": "gpt", "value": ""}]} +{"id": "000000118163", "images": ["AURORA/data/something/frames/4963/first.jpg", "AURORA/data/something/frames/4963/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a hand with a pen on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118164", "images": ["AURORA/data/something/frames/24550/first.jpg", "AURORA/data/something/frames/24550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118165", "images": ["AURORA/data/something/frames/201800/first.jpg", "AURORA/data/something/frames/201800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning tablet box upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118166", "images": ["AURORA/data/something/frames/204053/first.jpg", "AURORA/data/something/frames/204053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping ball in front of car"}, {"from": "gpt", "value": ""}]} +{"id": "000000118167", "images": ["AURORA/data/something/frames/55788/first.jpg", "AURORA/data/something/frames/55788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring gems into small bottle until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000118168", "images": ["AURORA/data/something/frames/159537/first.jpg", "AURORA/data/something/frames/159537/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a spray bottle behind the packet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118169", "images": ["AURORA/data/something/frames/42966/first.jpg", "AURORA/data/something/frames/42966/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hanger being deflected from moving car"}, {"from": "gpt", "value": ""}]} +{"id": "000000118170", "images": ["AURORA/data/something/frames/128952/first.jpg", "AURORA/data/something/frames/128952/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a can with a napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118171", "images": ["AURORA/data/something/frames/32201/first.jpg", "AURORA/data/something/frames/32201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling glasses from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118172", "images": ["AURORA/data/something/frames/180070/first.jpg", "AURORA/data/something/frames/180070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hotpot from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118173", "images": ["AURORA/data/something/frames/103229/first.jpg", "AURORA/data/something/frames/103229/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118174", "images": ["AURORA/data/something/frames/68376/first.jpg", "AURORA/data/something/frames/68376/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118175", "images": ["AURORA/data/something/frames/215114/first.jpg", "AURORA/data/something/frames/215114/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toffee container towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118176", "images": ["AURORA/data/something/frames/169002/first.jpg", "AURORA/data/something/frames/169002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending comb so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118177", "images": ["AURORA/data/something/frames/136745/first.jpg", "AURORA/data/something/frames/136745/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cell phone with notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118178", "images": ["AURORA/data/something/frames/126058/first.jpg", "AURORA/data/something/frames/126058/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a die on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118179", "images": ["AURORA/data/something/frames/110120/first.jpg", "AURORA/data/something/frames/110120/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118180", "images": ["AURORA/data/something/frames/33495/first.jpg", "AURORA/data/something/frames/33495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging stopper into drain but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118181", "images": ["AURORA/data/something/frames/127667/first.jpg", "AURORA/data/something/frames/127667/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a receipt just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118182", "images": ["AURORA/data/something/frames/72811/first.jpg", "AURORA/data/something/frames/72811/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving button up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118183", "images": ["AURORA/data/something/frames/27358/first.jpg", "AURORA/data/something/frames/27358/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing a towel into a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118184", "images": ["AURORA/data/something/frames/196426/first.jpg", "AURORA/data/something/frames/196426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of wood blocks without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000118185", "images": ["AURORA/data/something/frames/213105/first.jpg", "AURORA/data/something/frames/213105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering cellphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118186", "images": ["AURORA/data/something/frames/66122/first.jpg", "AURORA/data/something/frames/66122/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing an envelope into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118187", "images": ["AURORA/data/something/frames/167007/first.jpg", "AURORA/data/something/frames/167007/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking book up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118188", "images": ["AURORA/data/something/frames/85935/first.jpg", "AURORA/data/something/frames/85935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cufflinks behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118189", "images": ["AURORA/data/something/frames/146051/first.jpg", "AURORA/data/something/frames/146051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet behind mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118190", "images": ["AURORA/data/something/frames/107289/first.jpg", "AURORA/data/something/frames/107289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118191", "images": ["AURORA/data/something/frames/213727/first.jpg", "AURORA/data/something/frames/213727/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking smart phone out of handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118192", "images": ["AURORA/data/something/frames/8800/first.jpg", "AURORA/data/something/frames/8800/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming poster"}, {"from": "gpt", "value": ""}]} +{"id": "000000118193", "images": ["AURORA/data/something/frames/101989/first.jpg", "AURORA/data/something/frames/101989/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking coin out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118194", "images": ["AURORA/data/something/frames/187743/first.jpg", "AURORA/data/something/frames/187743/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of something so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000118195", "images": ["AURORA/data/something/frames/15112/first.jpg", "AURORA/data/something/frames/15112/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118196", "images": ["AURORA/data/something/frames/20051/first.jpg", "AURORA/data/something/frames/20051/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming iron"}, {"from": "gpt", "value": ""}]} +{"id": "000000118197", "images": ["AURORA/data/something/frames/123467/first.jpg", "AURORA/data/something/frames/123467/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting car key on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118198", "images": ["AURORA/data/something/frames/117874/first.jpg", "AURORA/data/something/frames/117874/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a bottle and a water container closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118199", "images": ["AURORA/data/something/frames/91295/first.jpg", "AURORA/data/something/frames/91295/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet in front of mouse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118200", "images": ["AURORA/data/something/frames/129123/first.jpg", "AURORA/data/something/frames/129123/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118201", "images": ["AURORA/data/something/frames/20609/first.jpg", "AURORA/data/something/frames/20609/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coaster and remote on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118202", "images": ["AURORA/data/something/frames/139085/first.jpg", "AURORA/data/something/frames/139085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hair gum from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118203", "images": ["AURORA/data/something/frames/26381/first.jpg", "AURORA/data/something/frames/26381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a hole into a piece of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118204", "images": ["AURORA/data/something/frames/166275/first.jpg", "AURORA/data/something/frames/166275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a water can colliding with another water can and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118205", "images": ["AURORA/data/something/frames/38302/first.jpg", "AURORA/data/something/frames/38302/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a charger into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118206", "images": ["AURORA/data/something/frames/10873/first.jpg", "AURORA/data/something/frames/10873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass out of drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118207", "images": ["AURORA/data/something/frames/75268/first.jpg", "AURORA/data/something/frames/75268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a water bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118208", "images": ["AURORA/data/something/frames/104999/first.jpg", "AURORA/data/something/frames/104999/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper from behind of paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118209", "images": ["AURORA/data/something/frames/192155/first.jpg", "AURORA/data/something/frames/192155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering water bottle with cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118210", "images": ["AURORA/data/something/frames/197702/first.jpg", "AURORA/data/something/frames/197702/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow next to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118211", "images": ["AURORA/data/something/frames/94224/first.jpg", "AURORA/data/something/frames/94224/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118212", "images": ["AURORA/data/something/frames/103119/first.jpg", "AURORA/data/something/frames/103119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a calculator and paper weight on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118213", "images": ["AURORA/data/something/frames/192546/first.jpg", "AURORA/data/something/frames/192546/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pencil out of pencil holder"}, {"from": "gpt", "value": ""}]} +{"id": "000000118214", "images": ["AURORA/data/something/frames/32233/first.jpg", "AURORA/data/something/frames/32233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming toothpaste tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000118215", "images": ["AURORA/data/something/frames/175533/first.jpg", "AURORA/data/something/frames/175533/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118216", "images": ["AURORA/data/something/frames/55164/first.jpg", "AURORA/data/something/frames/55164/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a pen without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118217", "images": ["AURORA/data/something/frames/123498/first.jpg", "AURORA/data/something/frames/123498/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pink hat in front of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118218", "images": ["AURORA/data/something/frames/167192/first.jpg", "AURORA/data/something/frames/167192/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering handy"}, {"from": "gpt", "value": ""}]} +{"id": "000000118219", "images": ["AURORA/data/something/frames/40166/first.jpg", "AURORA/data/something/frames/40166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118220", "images": ["AURORA/data/something/frames/194342/first.jpg", "AURORA/data/something/frames/194342/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118221", "images": ["AURORA/data/something/frames/9633/first.jpg", "AURORA/data/something/frames/9633/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping eraser in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118222", "images": ["AURORA/data/something/frames/72135/first.jpg", "AURORA/data/something/frames/72135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118223", "images": ["AURORA/data/something/frames/54075/first.jpg", "AURORA/data/something/frames/54075/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118224", "images": ["AURORA/data/something/frames/218168/first.jpg", "AURORA/data/something/frames/218168/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering onion"}, {"from": "gpt", "value": ""}]} +{"id": "000000118225", "images": ["AURORA/data/something/frames/12696/first.jpg", "AURORA/data/something/frames/12696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118226", "images": ["AURORA/data/something/frames/4521/first.jpg", "AURORA/data/something/frames/4521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling cards up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118227", "images": ["AURORA/data/something/frames/165610/first.jpg", "AURORA/data/something/frames/165610/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a jar of peanutbutter upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118228", "images": ["AURORA/data/something/frames/123768/first.jpg", "AURORA/data/something/frames/123768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: a pencil colliding with a bottle and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118229", "images": ["AURORA/data/something/frames/187347/first.jpg", "AURORA/data/something/frames/187347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118230", "images": ["AURORA/data/something/frames/50341/first.jpg", "AURORA/data/something/frames/50341/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping air freshener over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118231", "images": ["AURORA/data/something/frames/19292/first.jpg", "AURORA/data/something/frames/19292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000118232", "images": ["AURORA/data/something/frames/58713/first.jpg", "AURORA/data/something/frames/58713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying nail polish bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118233", "images": ["AURORA/data/something/frames/61566/first.jpg", "AURORA/data/something/frames/61566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118234", "images": ["AURORA/data/something/frames/22712/first.jpg", "AURORA/data/something/frames/22712/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into power strip but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118235", "images": ["AURORA/data/something/frames/213513/first.jpg", "AURORA/data/something/frames/213513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering pen with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118236", "images": ["AURORA/data/something/frames/42866/first.jpg", "AURORA/data/something/frames/42866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118237", "images": ["AURORA/data/something/frames/38794/first.jpg", "AURORA/data/something/frames/38794/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin onto a card"}, {"from": "gpt", "value": ""}]} +{"id": "000000118238", "images": ["AURORA/data/something/frames/75781/first.jpg", "AURORA/data/something/frames/75781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a football up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118239", "images": ["AURORA/data/something/frames/111254/first.jpg", "AURORA/data/something/frames/111254/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving screw down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118240", "images": ["AURORA/data/something/frames/84984/first.jpg", "AURORA/data/something/frames/84984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something away from something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118241", "images": ["AURORA/data/something/frames/31477/first.jpg", "AURORA/data/something/frames/31477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming post box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118242", "images": ["AURORA/data/something/frames/217536/first.jpg", "AURORA/data/something/frames/217536/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping soap off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118243", "images": ["AURORA/data/something/frames/61693/first.jpg", "AURORA/data/something/frames/61693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping bottle in front of leptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118244", "images": ["AURORA/data/something/frames/201468/first.jpg", "AURORA/data/something/frames/201468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming radiator"}, {"from": "gpt", "value": ""}]} +{"id": "000000118245", "images": ["AURORA/data/something/frames/114233/first.jpg", "AURORA/data/something/frames/114233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118246", "images": ["AURORA/data/something/frames/124829/first.jpg", "AURORA/data/something/frames/124829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a padlock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118247", "images": ["AURORA/data/something/frames/108665/first.jpg", "AURORA/data/something/frames/108665/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting piggy bank onto notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118248", "images": ["AURORA/data/something/frames/219318/first.jpg", "AURORA/data/something/frames/219318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118249", "images": ["AURORA/data/something/frames/139331/first.jpg", "AURORA/data/something/frames/139331/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118250", "images": ["AURORA/data/something/frames/5571/first.jpg", "AURORA/data/something/frames/5571/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a key behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118251", "images": ["AURORA/data/something/frames/50413/first.jpg", "AURORA/data/something/frames/50413/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into cord but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118252", "images": ["AURORA/data/something/frames/193713/first.jpg", "AURORA/data/something/frames/193713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118253", "images": ["AURORA/data/something/frames/188485/first.jpg", "AURORA/data/something/frames/188485/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118254", "images": ["AURORA/data/something/frames/130735/first.jpg", "AURORA/data/something/frames/130735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118255", "images": ["AURORA/data/something/frames/55368/first.jpg", "AURORA/data/something/frames/55368/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering can with cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118256", "images": ["AURORA/data/something/frames/127452/first.jpg", "AURORA/data/something/frames/127452/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of a book without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118257", "images": ["AURORA/data/something/frames/7255/first.jpg", "AURORA/data/something/frames/7255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000118258", "images": ["AURORA/data/something/frames/82271/first.jpg", "AURORA/data/something/frames/82271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming squeezable strawberry jam"}, {"from": "gpt", "value": ""}]} +{"id": "000000118259", "images": ["AURORA/data/something/frames/59605/first.jpg", "AURORA/data/something/frames/59605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering spring"}, {"from": "gpt", "value": ""}]} +{"id": "000000118260", "images": ["AURORA/data/something/frames/145719/first.jpg", "AURORA/data/something/frames/145719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118261", "images": ["AURORA/data/something/frames/122885/first.jpg", "AURORA/data/something/frames/122885/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling books up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118262", "images": ["AURORA/data/something/frames/54069/first.jpg", "AURORA/data/something/frames/54069/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming jackfruits"}, {"from": "gpt", "value": ""}]} +{"id": "000000118263", "images": ["AURORA/data/something/frames/148151/first.jpg", "AURORA/data/something/frames/148151/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118264", "images": ["AURORA/data/something/frames/32776/first.jpg", "AURORA/data/something/frames/32776/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book underneath notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118265", "images": ["AURORA/data/something/frames/54506/first.jpg", "AURORA/data/something/frames/54506/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118266", "images": ["AURORA/data/something/frames/162700/first.jpg", "AURORA/data/something/frames/162700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping dirt up with dustpan"}, {"from": "gpt", "value": ""}]} +{"id": "000000118267", "images": ["AURORA/data/something/frames/54445/first.jpg", "AURORA/data/something/frames/54445/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning computer mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118268", "images": ["AURORA/data/something/frames/21603/first.jpg", "AURORA/data/something/frames/21603/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting jar upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118269", "images": ["AURORA/data/something/frames/11508/first.jpg", "AURORA/data/something/frames/11508/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering bottle with plastic bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118270", "images": ["AURORA/data/something/frames/182217/first.jpg", "AURORA/data/something/frames/182217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118271", "images": ["AURORA/data/something/frames/13996/first.jpg", "AURORA/data/something/frames/13996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118272", "images": ["AURORA/data/something/frames/180326/first.jpg", "AURORA/data/something/frames/180326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of tank"}, {"from": "gpt", "value": ""}]} +{"id": "000000118273", "images": ["AURORA/data/something/frames/83878/first.jpg", "AURORA/data/something/frames/83878/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from water bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118274", "images": ["AURORA/data/something/frames/78710/first.jpg", "AURORA/data/something/frames/78710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118275", "images": ["AURORA/data/something/frames/138149/first.jpg", "AURORA/data/something/frames/138149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118276", "images": ["AURORA/data/something/frames/192829/first.jpg", "AURORA/data/something/frames/192829/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending cotton swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118277", "images": ["AURORA/data/something/frames/31701/first.jpg", "AURORA/data/something/frames/31701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy car from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118278", "images": ["AURORA/data/something/frames/33946/first.jpg", "AURORA/data/something/frames/33946/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling phone from behind of camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118279", "images": ["AURORA/data/something/frames/23867/first.jpg", "AURORA/data/something/frames/23867/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning candle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118280", "images": ["AURORA/data/something/frames/108248/first.jpg", "AURORA/data/something/frames/108248/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 3 screw drivers onto brown note"}, {"from": "gpt", "value": ""}]} +{"id": "000000118281", "images": ["AURORA/data/something/frames/107551/first.jpg", "AURORA/data/something/frames/107551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a book so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118282", "images": ["AURORA/data/something/frames/34837/first.jpg", "AURORA/data/something/frames/34837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping shampoo onto floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118283", "images": ["AURORA/data/something/frames/65116/first.jpg", "AURORA/data/something/frames/65116/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting laptop with notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118284", "images": ["AURORA/data/something/frames/209951/first.jpg", "AURORA/data/something/frames/209951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: box colliding with box and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118285", "images": ["AURORA/data/something/frames/29092/first.jpg", "AURORA/data/something/frames/29092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup with spoon over, so spoon falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118286", "images": ["AURORA/data/something/frames/83762/first.jpg", "AURORA/data/something/frames/83762/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118287", "images": ["AURORA/data/something/frames/49072/first.jpg", "AURORA/data/something/frames/49072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a plate with cutlery on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118288", "images": ["AURORA/data/something/frames/134048/first.jpg", "AURORA/data/something/frames/134048/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing pens into pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118289", "images": ["AURORA/data/something/frames/181524/first.jpg", "AURORA/data/something/frames/181524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and flower closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118290", "images": ["AURORA/data/something/frames/188126/first.jpg", "AURORA/data/something/frames/188126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing hot case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118291", "images": ["AURORA/data/something/frames/152050/first.jpg", "AURORA/data/something/frames/152050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking clips out of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118292", "images": ["AURORA/data/something/frames/47566/first.jpg", "AURORA/data/something/frames/47566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox behind a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118293", "images": ["AURORA/data/something/frames/208855/first.jpg", "AURORA/data/something/frames/208855/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000118294", "images": ["AURORA/data/something/frames/3159/first.jpg", "AURORA/data/something/frames/3159/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118295", "images": ["AURORA/data/something/frames/1255/first.jpg", "AURORA/data/something/frames/1255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug head into an extension lead but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118296", "images": ["AURORA/data/something/frames/141073/first.jpg", "AURORA/data/something/frames/141073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending coat hanger so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118297", "images": ["AURORA/data/something/frames/7113/first.jpg", "AURORA/data/something/frames/7113/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a ball and a glass figure away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118298", "images": ["AURORA/data/something/frames/187696/first.jpg", "AURORA/data/something/frames/187696/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bottle with other bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118299", "images": ["AURORA/data/something/frames/101044/first.jpg", "AURORA/data/something/frames/101044/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming a dream catcher"}, {"from": "gpt", "value": ""}]} +{"id": "000000118300", "images": ["AURORA/data/something/frames/205240/first.jpg", "AURORA/data/something/frames/205240/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling coffee onto a dinner plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118301", "images": ["AURORA/data/something/frames/27779/first.jpg", "AURORA/data/something/frames/27779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing jacket into handbag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118302", "images": ["AURORA/data/something/frames/42787/first.jpg", "AURORA/data/something/frames/42787/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting candy bar upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118303", "images": ["AURORA/data/something/frames/112659/first.jpg", "AURORA/data/something/frames/112659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying bottle on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118304", "images": ["AURORA/data/something/frames/99268/first.jpg", "AURORA/data/something/frames/99268/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging allout into plug but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118305", "images": ["AURORA/data/something/frames/185040/first.jpg", "AURORA/data/something/frames/185040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing piece of bread into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118306", "images": ["AURORA/data/something/frames/25491/first.jpg", "AURORA/data/something/frames/25491/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering torch lighter with towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118307", "images": ["AURORA/data/something/frames/40681/first.jpg", "AURORA/data/something/frames/40681/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping something with something in it over, so something in it falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118308", "images": ["AURORA/data/something/frames/30014/first.jpg", "AURORA/data/something/frames/30014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) leaves of a plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118309", "images": ["AURORA/data/something/frames/57631/first.jpg", "AURORA/data/something/frames/57631/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118310", "images": ["AURORA/data/something/frames/22699/first.jpg", "AURORA/data/something/frames/22699/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting vase on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118311", "images": ["AURORA/data/something/frames/84851/first.jpg", "AURORA/data/something/frames/84851/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding t-shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118312", "images": ["AURORA/data/something/frames/84109/first.jpg", "AURORA/data/something/frames/84109/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a bottle with a box on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118313", "images": ["AURORA/data/something/frames/160082/first.jpg", "AURORA/data/something/frames/160082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a plastic bottle on the edge of a stool so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118314", "images": ["AURORA/data/something/frames/181873/first.jpg", "AURORA/data/something/frames/181873/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a cup with a stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000118315", "images": ["AURORA/data/something/frames/59866/first.jpg", "AURORA/data/something/frames/59866/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a disc out of a paper sleeve"}, {"from": "gpt", "value": ""}]} +{"id": "000000118316", "images": ["AURORA/data/something/frames/144407/first.jpg", "AURORA/data/something/frames/144407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into a socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118317", "images": ["AURORA/data/something/frames/214289/first.jpg", "AURORA/data/something/frames/214289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting purple balloon pump on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118318", "images": ["AURORA/data/something/frames/76625/first.jpg", "AURORA/data/something/frames/76625/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118319", "images": ["AURORA/data/something/frames/85534/first.jpg", "AURORA/data/something/frames/85534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring peanuts into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118320", "images": ["AURORA/data/something/frames/105278/first.jpg", "AURORA/data/something/frames/105278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting pikachu plush with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118321", "images": ["AURORA/data/something/frames/177502/first.jpg", "AURORA/data/something/frames/177502/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118322", "images": ["AURORA/data/something/frames/205583/first.jpg", "AURORA/data/something/frames/205583/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118323", "images": ["AURORA/data/something/frames/126834/first.jpg", "AURORA/data/something/frames/126834/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a book next to a spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118324", "images": ["AURORA/data/something/frames/119483/first.jpg", "AURORA/data/something/frames/119483/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118325", "images": ["AURORA/data/something/frames/217531/first.jpg", "AURORA/data/something/frames/217531/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking two plates"}, {"from": "gpt", "value": ""}]} +{"id": "000000118326", "images": ["AURORA/data/something/frames/177943/first.jpg", "AURORA/data/something/frames/177943/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring soda out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118327", "images": ["AURORA/data/something/frames/83008/first.jpg", "AURORA/data/something/frames/83008/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pillow with a stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000118328", "images": ["AURORA/data/something/frames/116888/first.jpg", "AURORA/data/something/frames/116888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming small fresh mint"}, {"from": "gpt", "value": ""}]} +{"id": "000000118329", "images": ["AURORA/data/something/frames/448/first.jpg", "AURORA/data/something/frames/448/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118330", "images": ["AURORA/data/something/frames/110423/first.jpg", "AURORA/data/something/frames/110423/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118331", "images": ["AURORA/data/something/frames/115435/first.jpg", "AURORA/data/something/frames/115435/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118332", "images": ["AURORA/data/something/frames/7068/first.jpg", "AURORA/data/something/frames/7068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb device into usb port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118333", "images": ["AURORA/data/something/frames/52685/first.jpg", "AURORA/data/something/frames/52685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118334", "images": ["AURORA/data/something/frames/153335/first.jpg", "AURORA/data/something/frames/153335/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping cup over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118335", "images": ["AURORA/data/something/frames/170390/first.jpg", "AURORA/data/something/frames/170390/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118336", "images": ["AURORA/data/something/frames/145160/first.jpg", "AURORA/data/something/frames/145160/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping silver container into plastic-container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118337", "images": ["AURORA/data/something/frames/64581/first.jpg", "AURORA/data/something/frames/64581/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118338", "images": ["AURORA/data/something/frames/36279/first.jpg", "AURORA/data/something/frames/36279/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle of lotion over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118339", "images": ["AURORA/data/something/frames/24255/first.jpg", "AURORA/data/something/frames/24255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching cucumber with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118340", "images": ["AURORA/data/something/frames/10768/first.jpg", "AURORA/data/something/frames/10768/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118341", "images": ["AURORA/data/something/frames/174868/first.jpg", "AURORA/data/something/frames/174868/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera downwards while filming red booklet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118342", "images": ["AURORA/data/something/frames/78012/first.jpg", "AURORA/data/something/frames/78012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping tissue onto bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118343", "images": ["AURORA/data/something/frames/19362/first.jpg", "AURORA/data/something/frames/19362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing cigarette lighter off of note bok"}, {"from": "gpt", "value": ""}]} +{"id": "000000118344", "images": ["AURORA/data/something/frames/115006/first.jpg", "AURORA/data/something/frames/115006/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a mirror with a comb on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118345", "images": ["AURORA/data/something/frames/94027/first.jpg", "AURORA/data/something/frames/94027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sticky note onto book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118346", "images": ["AURORA/data/something/frames/145501/first.jpg", "AURORA/data/something/frames/145501/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping mug with clementine over, so clementine falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118347", "images": ["AURORA/data/something/frames/174612/first.jpg", "AURORA/data/something/frames/174612/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000118348", "images": ["AURORA/data/something/frames/151021/first.jpg", "AURORA/data/something/frames/151021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking an earring"}, {"from": "gpt", "value": ""}]} +{"id": "000000118349", "images": ["AURORA/data/something/frames/100101/first.jpg", "AURORA/data/something/frames/100101/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118350", "images": ["AURORA/data/something/frames/146345/first.jpg", "AURORA/data/something/frames/146345/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: video game case colliding with a box and both come to a halt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118351", "images": ["AURORA/data/something/frames/4208/first.jpg", "AURORA/data/something/frames/4208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling spray onto glasses"}, {"from": "gpt", "value": ""}]} +{"id": "000000118352", "images": ["AURORA/data/something/frames/141201/first.jpg", "AURORA/data/something/frames/141201/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing keys so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118353", "images": ["AURORA/data/something/frames/7601/first.jpg", "AURORA/data/something/frames/7601/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a cotton swab so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118354", "images": ["AURORA/data/something/frames/125118/first.jpg", "AURORA/data/something/frames/125118/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000118355", "images": ["AURORA/data/something/frames/4477/first.jpg", "AURORA/data/something/frames/4477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cup in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118356", "images": ["AURORA/data/something/frames/195255/first.jpg", "AURORA/data/something/frames/195255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to coffee mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118357", "images": ["AURORA/data/something/frames/11344/first.jpg", "AURORA/data/something/frames/11344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing blanket from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118358", "images": ["AURORA/data/something/frames/57849/first.jpg", "AURORA/data/something/frames/57849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118359", "images": ["AURORA/data/something/frames/140410/first.jpg", "AURORA/data/something/frames/140410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wristwatch and a ball closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118360", "images": ["AURORA/data/something/frames/98534/first.jpg", "AURORA/data/something/frames/98534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118361", "images": ["AURORA/data/something/frames/78928/first.jpg", "AURORA/data/something/frames/78928/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water onto glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118362", "images": ["AURORA/data/something/frames/126365/first.jpg", "AURORA/data/something/frames/126365/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tumbler cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118363", "images": ["AURORA/data/something/frames/1282/first.jpg", "AURORA/data/something/frames/1282/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving aim toothpaste down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118364", "images": ["AURORA/data/something/frames/175755/first.jpg", "AURORA/data/something/frames/175755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118365", "images": ["AURORA/data/something/frames/15968/first.jpg", "AURORA/data/something/frames/15968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lipbalm and nailpolish closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118366", "images": ["AURORA/data/something/frames/149914/first.jpg", "AURORA/data/something/frames/149914/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118367", "images": ["AURORA/data/something/frames/130543/first.jpg", "AURORA/data/something/frames/130543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening medicine bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118368", "images": ["AURORA/data/something/frames/43964/first.jpg", "AURORA/data/something/frames/43964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a plank of wood"}, {"from": "gpt", "value": ""}]} +{"id": "000000118369", "images": ["AURORA/data/something/frames/192096/first.jpg", "AURORA/data/something/frames/192096/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a ruler so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118370", "images": ["AURORA/data/something/frames/170660/first.jpg", "AURORA/data/something/frames/170660/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118371", "images": ["AURORA/data/something/frames/644/first.jpg", "AURORA/data/something/frames/644/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118372", "images": ["AURORA/data/something/frames/55208/first.jpg", "AURORA/data/something/frames/55208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a cup so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118373", "images": ["AURORA/data/something/frames/18353/first.jpg", "AURORA/data/something/frames/18353/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting apple on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118374", "images": ["AURORA/data/something/frames/46275/first.jpg", "AURORA/data/something/frames/46275/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a laptop into a plug extender"}, {"from": "gpt", "value": ""}]} +{"id": "000000118375", "images": ["AURORA/data/something/frames/104511/first.jpg", "AURORA/data/something/frames/104511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing sheet of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118376", "images": ["AURORA/data/something/frames/142046/first.jpg", "AURORA/data/something/frames/142046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a wallet from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118377", "images": ["AURORA/data/something/frames/92383/first.jpg", "AURORA/data/something/frames/92383/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a pencil sharpener upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118378", "images": ["AURORA/data/something/frames/128381/first.jpg", "AURORA/data/something/frames/128381/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering chalk"}, {"from": "gpt", "value": ""}]} +{"id": "000000118379", "images": ["AURORA/data/something/frames/110203/first.jpg", "AURORA/data/something/frames/110203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding news paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118380", "images": ["AURORA/data/something/frames/93097/first.jpg", "AURORA/data/something/frames/93097/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118381", "images": ["AURORA/data/something/frames/136045/first.jpg", "AURORA/data/something/frames/136045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing white hand gel from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118382", "images": ["AURORA/data/something/frames/145333/first.jpg", "AURORA/data/something/frames/145333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking controler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118383", "images": ["AURORA/data/something/frames/143695/first.jpg", "AURORA/data/something/frames/143695/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping raw egg into the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118384", "images": ["AURORA/data/something/frames/128710/first.jpg", "AURORA/data/something/frames/128710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb bluetooth into usb port but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118385", "images": ["AURORA/data/something/frames/56993/first.jpg", "AURORA/data/something/frames/56993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting globe toy upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118386", "images": ["AURORA/data/something/frames/81577/first.jpg", "AURORA/data/something/frames/81577/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing marker from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118387", "images": ["AURORA/data/something/frames/6209/first.jpg", "AURORA/data/something/frames/6209/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving umbrella up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118388", "images": ["AURORA/data/something/frames/55953/first.jpg", "AURORA/data/something/frames/55953/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a fork and a knife on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118389", "images": ["AURORA/data/something/frames/36954/first.jpg", "AURORA/data/something/frames/36954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending tea filter so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118390", "images": ["AURORA/data/something/frames/174355/first.jpg", "AURORA/data/something/frames/174355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling marker pen from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118391", "images": ["AURORA/data/something/frames/212751/first.jpg", "AURORA/data/something/frames/212751/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the book and the magazine away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118392", "images": ["AURORA/data/something/frames/131596/first.jpg", "AURORA/data/something/frames/131596/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a spoon so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118393", "images": ["AURORA/data/something/frames/82479/first.jpg", "AURORA/data/something/frames/82479/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118394", "images": ["AURORA/data/something/frames/141955/first.jpg", "AURORA/data/something/frames/141955/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto flowers"}, {"from": "gpt", "value": ""}]} +{"id": "000000118395", "images": ["AURORA/data/something/frames/4951/first.jpg", "AURORA/data/something/frames/4951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a watch into a hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118396", "images": ["AURORA/data/something/frames/134493/first.jpg", "AURORA/data/something/frames/134493/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a sieve closer to a belt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118397", "images": ["AURORA/data/something/frames/198902/first.jpg", "AURORA/data/something/frames/198902/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a card in front of a peg"}, {"from": "gpt", "value": ""}]} +{"id": "000000118398", "images": ["AURORA/data/something/frames/77468/first.jpg", "AURORA/data/something/frames/77468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting coin into water bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118399", "images": ["AURORA/data/something/frames/98935/first.jpg", "AURORA/data/something/frames/98935/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: trying to pour cereals into a glass container, but missing so it spills next to it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118400", "images": ["AURORA/data/something/frames/61752/first.jpg", "AURORA/data/something/frames/61752/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing lotion, revealing deodorant behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118401", "images": ["AURORA/data/something/frames/62523/first.jpg", "AURORA/data/something/frames/62523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a play block with a group of play blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118402", "images": ["AURORA/data/something/frames/53883/first.jpg", "AURORA/data/something/frames/53883/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000118403", "images": ["AURORA/data/something/frames/2167/first.jpg", "AURORA/data/something/frames/2167/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118404", "images": ["AURORA/data/something/frames/192984/first.jpg", "AURORA/data/something/frames/192984/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking sunglasses out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118405", "images": ["AURORA/data/something/frames/213465/first.jpg", "AURORA/data/something/frames/213465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118406", "images": ["AURORA/data/something/frames/28567/first.jpg", "AURORA/data/something/frames/28567/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling jam onto a biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118407", "images": ["AURORA/data/something/frames/43520/first.jpg", "AURORA/data/something/frames/43520/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into computer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118408", "images": ["AURORA/data/something/frames/66140/first.jpg", "AURORA/data/something/frames/66140/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lip balm and nail polish away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118409", "images": ["AURORA/data/something/frames/49021/first.jpg", "AURORA/data/something/frames/49021/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling oil next to bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118410", "images": ["AURORA/data/something/frames/5107/first.jpg", "AURORA/data/something/frames/5107/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118411", "images": ["AURORA/data/something/frames/29115/first.jpg", "AURORA/data/something/frames/29115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a meat thermometer upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118412", "images": ["AURORA/data/something/frames/107347/first.jpg", "AURORA/data/something/frames/107347/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glove and cell phone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118413", "images": ["AURORA/data/something/frames/37054/first.jpg", "AURORA/data/something/frames/37054/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mouse onto mousepad"}, {"from": "gpt", "value": ""}]} +{"id": "000000118414", "images": ["AURORA/data/something/frames/183323/first.jpg", "AURORA/data/something/frames/183323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glass with a hairbrush"}, {"from": "gpt", "value": ""}]} +{"id": "000000118415", "images": ["AURORA/data/something/frames/1092/first.jpg", "AURORA/data/something/frames/1092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving laptop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118416", "images": ["AURORA/data/something/frames/124462/first.jpg", "AURORA/data/something/frames/124462/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting wall with flashlight"}, {"from": "gpt", "value": ""}]} +{"id": "000000118417", "images": ["AURORA/data/something/frames/95659/first.jpg", "AURORA/data/something/frames/95659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding receipt paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118418", "images": ["AURORA/data/something/frames/168781/first.jpg", "AURORA/data/something/frames/168781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118419", "images": ["AURORA/data/something/frames/125278/first.jpg", "AURORA/data/something/frames/125278/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118420", "images": ["AURORA/data/something/frames/212728/first.jpg", "AURORA/data/something/frames/212728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a bottle cap"}, {"from": "gpt", "value": ""}]} +{"id": "000000118421", "images": ["AURORA/data/something/frames/181664/first.jpg", "AURORA/data/something/frames/181664/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning chocolate upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118422", "images": ["AURORA/data/something/frames/63822/first.jpg", "AURORA/data/something/frames/63822/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a phone charger into a multi-socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118423", "images": ["AURORA/data/something/frames/193566/first.jpg", "AURORA/data/something/frames/193566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding quiz paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118424", "images": ["AURORA/data/something/frames/171781/first.jpg", "AURORA/data/something/frames/171781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving usb cable away from eraser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118425", "images": ["AURORA/data/something/frames/22635/first.jpg", "AURORA/data/something/frames/22635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118426", "images": ["AURORA/data/something/frames/199666/first.jpg", "AURORA/data/something/frames/199666/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118427", "images": ["AURORA/data/something/frames/4814/first.jpg", "AURORA/data/something/frames/4814/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a toothbrush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118428", "images": ["AURORA/data/something/frames/129217/first.jpg", "AURORA/data/something/frames/129217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing folded paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118429", "images": ["AURORA/data/something/frames/7905/first.jpg", "AURORA/data/something/frames/7905/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of cylinder without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118430", "images": ["AURORA/data/something/frames/5398/first.jpg", "AURORA/data/something/frames/5398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging electric plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118431", "images": ["AURORA/data/something/frames/10832/first.jpg", "AURORA/data/something/frames/10832/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a baking tray with pens on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118432", "images": ["AURORA/data/something/frames/161067/first.jpg", "AURORA/data/something/frames/161067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing black disc case from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118433", "images": ["AURORA/data/something/frames/188267/first.jpg", "AURORA/data/something/frames/188267/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118434", "images": ["AURORA/data/something/frames/82586/first.jpg", "AURORA/data/something/frames/82586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a notebook from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118435", "images": ["AURORA/data/something/frames/152500/first.jpg", "AURORA/data/something/frames/152500/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving red colour pencil sharpener away from wooden stick"}, {"from": "gpt", "value": ""}]} +{"id": "000000118436", "images": ["AURORA/data/something/frames/91046/first.jpg", "AURORA/data/something/frames/91046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tiolet paper closer to tiolet paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118437", "images": ["AURORA/data/something/frames/195196/first.jpg", "AURORA/data/something/frames/195196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a tissue into a trash can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118438", "images": ["AURORA/data/something/frames/30936/first.jpg", "AURORA/data/something/frames/30936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118439", "images": ["AURORA/data/something/frames/70385/first.jpg", "AURORA/data/something/frames/70385/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a pencil on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118440", "images": ["AURORA/data/something/frames/69360/first.jpg", "AURORA/data/something/frames/69360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking jar so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118441", "images": ["AURORA/data/something/frames/186713/first.jpg", "AURORA/data/something/frames/186713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a lemon into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118442", "images": ["AURORA/data/something/frames/188976/first.jpg", "AURORA/data/something/frames/188976/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting teaspoon and lime on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118443", "images": ["AURORA/data/something/frames/75490/first.jpg", "AURORA/data/something/frames/75490/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering cd with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118444", "images": ["AURORA/data/something/frames/144328/first.jpg", "AURORA/data/something/frames/144328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118445", "images": ["AURORA/data/something/frames/44255/first.jpg", "AURORA/data/something/frames/44255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper sheet into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118446", "images": ["AURORA/data/something/frames/53775/first.jpg", "AURORA/data/something/frames/53775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching bicycle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118447", "images": ["AURORA/data/something/frames/95402/first.jpg", "AURORA/data/something/frames/95402/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a remote control in front of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118448", "images": ["AURORA/data/something/frames/201241/first.jpg", "AURORA/data/something/frames/201241/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a sofa so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118449", "images": ["AURORA/data/something/frames/168812/first.jpg", "AURORA/data/something/frames/168812/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sandwich into lunchbox"}, {"from": "gpt", "value": ""}]} +{"id": "000000118450", "images": ["AURORA/data/something/frames/193859/first.jpg", "AURORA/data/something/frames/193859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering mobilephone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118451", "images": ["AURORA/data/something/frames/23186/first.jpg", "AURORA/data/something/frames/23186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118452", "images": ["AURORA/data/something/frames/29263/first.jpg", "AURORA/data/something/frames/29263/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen in front of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118453", "images": ["AURORA/data/something/frames/22290/first.jpg", "AURORA/data/something/frames/22290/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching calculator with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118454", "images": ["AURORA/data/something/frames/35156/first.jpg", "AURORA/data/something/frames/35156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing red pot holder from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118455", "images": ["AURORA/data/something/frames/35541/first.jpg", "AURORA/data/something/frames/35541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a match box with a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118456", "images": ["AURORA/data/something/frames/28403/first.jpg", "AURORA/data/something/frames/28403/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into washing machine"}, {"from": "gpt", "value": ""}]} +{"id": "000000118457", "images": ["AURORA/data/something/frames/123846/first.jpg", "AURORA/data/something/frames/123846/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling mint onto laptop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118458", "images": ["AURORA/data/something/frames/75747/first.jpg", "AURORA/data/something/frames/75747/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a ice tray on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118459", "images": ["AURORA/data/something/frames/217273/first.jpg", "AURORA/data/something/frames/217273/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a green cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118460", "images": ["AURORA/data/something/frames/15524/first.jpg", "AURORA/data/something/frames/15524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a vase with a blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118461", "images": ["AURORA/data/something/frames/109781/first.jpg", "AURORA/data/something/frames/109781/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing small sharpener from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118462", "images": ["AURORA/data/something/frames/22001/first.jpg", "AURORA/data/something/frames/22001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering television remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118463", "images": ["AURORA/data/something/frames/83447/first.jpg", "AURORA/data/something/frames/83447/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a pole with a fly swatter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118464", "images": ["AURORA/data/something/frames/38270/first.jpg", "AURORA/data/something/frames/38270/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118465", "images": ["AURORA/data/something/frames/110987/first.jpg", "AURORA/data/something/frames/110987/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118466", "images": ["AURORA/data/something/frames/186785/first.jpg", "AURORA/data/something/frames/186785/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with block"}, {"from": "gpt", "value": ""}]} +{"id": "000000118467", "images": ["AURORA/data/something/frames/171560/first.jpg", "AURORA/data/something/frames/171560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118468", "images": ["AURORA/data/something/frames/86420/first.jpg", "AURORA/data/something/frames/86420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118469", "images": ["AURORA/data/something/frames/111223/first.jpg", "AURORA/data/something/frames/111223/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving towel up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118470", "images": ["AURORA/data/something/frames/179304/first.jpg", "AURORA/data/something/frames/179304/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar of sugar upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118471", "images": ["AURORA/data/something/frames/198728/first.jpg", "AURORA/data/something/frames/198728/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottletop over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118472", "images": ["AURORA/data/something/frames/95063/first.jpg", "AURORA/data/something/frames/95063/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting coaster with cup on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118473", "images": ["AURORA/data/something/frames/143197/first.jpg", "AURORA/data/something/frames/143197/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing spanner from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118474", "images": ["AURORA/data/something/frames/95036/first.jpg", "AURORA/data/something/frames/95036/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching board with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118475", "images": ["AURORA/data/something/frames/27414/first.jpg", "AURORA/data/something/frames/27414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of mirror without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118476", "images": ["AURORA/data/something/frames/64711/first.jpg", "AURORA/data/something/frames/64711/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a notebook with a screw on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118477", "images": ["AURORA/data/something/frames/51847/first.jpg", "AURORA/data/something/frames/51847/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a candle up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118478", "images": ["AURORA/data/something/frames/15387/first.jpg", "AURORA/data/something/frames/15387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing bread into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118479", "images": ["AURORA/data/something/frames/30468/first.jpg", "AURORA/data/something/frames/30468/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pill in front of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118480", "images": ["AURORA/data/something/frames/18865/first.jpg", "AURORA/data/something/frames/18865/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into plug cage but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118481", "images": ["AURORA/data/something/frames/149043/first.jpg", "AURORA/data/something/frames/149043/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a medicine bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118482", "images": ["AURORA/data/something/frames/132250/first.jpg", "AURORA/data/something/frames/132250/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a flying disc underneath a child's chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000118483", "images": ["AURORA/data/something/frames/158769/first.jpg", "AURORA/data/something/frames/158769/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging charger into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118484", "images": ["AURORA/data/something/frames/26605/first.jpg", "AURORA/data/something/frames/26605/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a marker away from a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118485", "images": ["AURORA/data/something/frames/76139/first.jpg", "AURORA/data/something/frames/76139/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ink bottle, clip box and charger adapter on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118486", "images": ["AURORA/data/something/frames/11951/first.jpg", "AURORA/data/something/frames/11951/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving fork and spoon closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118487", "images": ["AURORA/data/something/frames/63299/first.jpg", "AURORA/data/something/frames/63299/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote and wallet on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118488", "images": ["AURORA/data/something/frames/204859/first.jpg", "AURORA/data/something/frames/204859/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat onto shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000118489", "images": ["AURORA/data/something/frames/66570/first.jpg", "AURORA/data/something/frames/66570/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking box up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118490", "images": ["AURORA/data/something/frames/175503/first.jpg", "AURORA/data/something/frames/175503/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118491", "images": ["AURORA/data/something/frames/145595/first.jpg", "AURORA/data/something/frames/145595/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hairbrush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118492", "images": ["AURORA/data/something/frames/140323/first.jpg", "AURORA/data/something/frames/140323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118493", "images": ["AURORA/data/something/frames/21852/first.jpg", "AURORA/data/something/frames/21852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting stress"}, {"from": "gpt", "value": ""}]} +{"id": "000000118494", "images": ["AURORA/data/something/frames/19580/first.jpg", "AURORA/data/something/frames/19580/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a comb in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118495", "images": ["AURORA/data/something/frames/130719/first.jpg", "AURORA/data/something/frames/130719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling pen from behind of binder"}, {"from": "gpt", "value": ""}]} +{"id": "000000118496", "images": ["AURORA/data/something/frames/132623/first.jpg", "AURORA/data/something/frames/132623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting diaper wipes into a purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118497", "images": ["AURORA/data/something/frames/87053/first.jpg", "AURORA/data/something/frames/87053/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing tissue into slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118498", "images": ["AURORA/data/something/frames/21549/first.jpg", "AURORA/data/something/frames/21549/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing hairband with white colour pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118499", "images": ["AURORA/data/something/frames/106141/first.jpg", "AURORA/data/something/frames/106141/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving remote and lighter closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118500", "images": ["AURORA/data/something/frames/105469/first.jpg", "AURORA/data/something/frames/105469/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving water bottle and water bottle so they pass each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118501", "images": ["AURORA/data/something/frames/14807/first.jpg", "AURORA/data/something/frames/14807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tape measure up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118502", "images": ["AURORA/data/something/frames/220710/first.jpg", "AURORA/data/something/frames/220710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring tea into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118503", "images": ["AURORA/data/something/frames/188061/first.jpg", "AURORA/data/something/frames/188061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mug next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000118504", "images": ["AURORA/data/something/frames/165623/first.jpg", "AURORA/data/something/frames/165623/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cable up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118505", "images": ["AURORA/data/something/frames/15143/first.jpg", "AURORA/data/something/frames/15143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pencil sharpener, a pot and a shoe on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118506", "images": ["AURORA/data/something/frames/175082/first.jpg", "AURORA/data/something/frames/175082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cellphone and mug away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118507", "images": ["AURORA/data/something/frames/109836/first.jpg", "AURORA/data/something/frames/109836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of four similar lighters"}, {"from": "gpt", "value": ""}]} +{"id": "000000118508", "images": ["AURORA/data/something/frames/144645/first.jpg", "AURORA/data/something/frames/144645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of cell phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118509", "images": ["AURORA/data/something/frames/139494/first.jpg", "AURORA/data/something/frames/139494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a bottle over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118510", "images": ["AURORA/data/something/frames/137135/first.jpg", "AURORA/data/something/frames/137135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a colored pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118511", "images": ["AURORA/data/something/frames/91255/first.jpg", "AURORA/data/something/frames/91255/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen and duct tape closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118512", "images": ["AURORA/data/something/frames/42217/first.jpg", "AURORA/data/something/frames/42217/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a pen and a pencil so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118513", "images": ["AURORA/data/something/frames/203916/first.jpg", "AURORA/data/something/frames/203916/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking water bottle so lightly that it doesn't or almost doesn't move"}, {"from": "gpt", "value": ""}]} +{"id": "000000118514", "images": ["AURORA/data/something/frames/15819/first.jpg", "AURORA/data/something/frames/15819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bread, cup and cellphone on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118515", "images": ["AURORA/data/something/frames/195600/first.jpg", "AURORA/data/something/frames/195600/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) front of fridge"}, {"from": "gpt", "value": ""}]} +{"id": "000000118516", "images": ["AURORA/data/something/frames/78566/first.jpg", "AURORA/data/something/frames/78566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a charger with a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000118517", "images": ["AURORA/data/something/frames/180050/first.jpg", "AURORA/data/something/frames/180050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hair clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000118518", "images": ["AURORA/data/something/frames/73431/first.jpg", "AURORA/data/something/frames/73431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of rubber band so that it gets stretched"}, {"from": "gpt", "value": ""}]} +{"id": "000000118519", "images": ["AURORA/data/something/frames/208954/first.jpg", "AURORA/data/something/frames/208954/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118520", "images": ["AURORA/data/something/frames/25730/first.jpg", "AURORA/data/something/frames/25730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a phone with a lighter on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118521", "images": ["AURORA/data/something/frames/128861/first.jpg", "AURORA/data/something/frames/128861/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching clip magnet to stove"}, {"from": "gpt", "value": ""}]} +{"id": "000000118522", "images": ["AURORA/data/something/frames/57628/first.jpg", "AURORA/data/something/frames/57628/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking a stack of boxes without the stack collapsing"}, {"from": "gpt", "value": ""}]} +{"id": "000000118523", "images": ["AURORA/data/something/frames/144213/first.jpg", "AURORA/data/something/frames/144213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pink golf ball being deflected from white plug adapter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118524", "images": ["AURORA/data/something/frames/135393/first.jpg", "AURORA/data/something/frames/135393/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118525", "images": ["AURORA/data/something/frames/181328/first.jpg", "AURORA/data/something/frames/181328/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box in front of jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118526", "images": ["AURORA/data/something/frames/139387/first.jpg", "AURORA/data/something/frames/139387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping dispenser over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118527", "images": ["AURORA/data/something/frames/76915/first.jpg", "AURORA/data/something/frames/76915/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118528", "images": ["AURORA/data/something/frames/163592/first.jpg", "AURORA/data/something/frames/163592/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118529", "images": ["AURORA/data/something/frames/125145/first.jpg", "AURORA/data/something/frames/125145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cord into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118530", "images": ["AURORA/data/something/frames/187284/first.jpg", "AURORA/data/something/frames/187284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring detergent into cup until it overflows"}, {"from": "gpt", "value": ""}]} +{"id": "000000118531", "images": ["AURORA/data/something/frames/188040/first.jpg", "AURORA/data/something/frames/188040/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with mobile on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118532", "images": ["AURORA/data/something/frames/65437/first.jpg", "AURORA/data/something/frames/65437/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting soft, light yellow cooking glove"}, {"from": "gpt", "value": ""}]} +{"id": "000000118533", "images": ["AURORA/data/something/frames/49387/first.jpg", "AURORA/data/something/frames/49387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 wooden sticks onto red pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118534", "images": ["AURORA/data/something/frames/101323/first.jpg", "AURORA/data/something/frames/101323/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118535", "images": ["AURORA/data/something/frames/71155/first.jpg", "AURORA/data/something/frames/71155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: digging a worm out of wheat bran"}, {"from": "gpt", "value": ""}]} +{"id": "000000118536", "images": ["AURORA/data/something/frames/210387/first.jpg", "AURORA/data/something/frames/210387/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118537", "images": ["AURORA/data/something/frames/62617/first.jpg", "AURORA/data/something/frames/62617/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting crayon behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118538", "images": ["AURORA/data/something/frames/43790/first.jpg", "AURORA/data/something/frames/43790/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving top of purse"}, {"from": "gpt", "value": ""}]} +{"id": "000000118539", "images": ["AURORA/data/something/frames/197983/first.jpg", "AURORA/data/something/frames/197983/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning starbucks cup upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118540", "images": ["AURORA/data/something/frames/102853/first.jpg", "AURORA/data/something/frames/102853/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving shoe and shoe closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118541", "images": ["AURORA/data/something/frames/144706/first.jpg", "AURORA/data/something/frames/144706/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a computer mouse upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118542", "images": ["AURORA/data/something/frames/6658/first.jpg", "AURORA/data/something/frames/6658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118543", "images": ["AURORA/data/something/frames/186837/first.jpg", "AURORA/data/something/frames/186837/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting something with something on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118544", "images": ["AURORA/data/something/frames/109239/first.jpg", "AURORA/data/something/frames/109239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118545", "images": ["AURORA/data/something/frames/181557/first.jpg", "AURORA/data/something/frames/181557/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving keys and pensil away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118546", "images": ["AURORA/data/something/frames/166887/first.jpg", "AURORA/data/something/frames/166887/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking card"}, {"from": "gpt", "value": ""}]} +{"id": "000000118547", "images": ["AURORA/data/something/frames/29783/first.jpg", "AURORA/data/something/frames/29783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: piling clothes up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118548", "images": ["AURORA/data/something/frames/215967/first.jpg", "AURORA/data/something/frames/215967/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing box with paint brush"}, {"from": "gpt", "value": ""}]} +{"id": "000000118549", "images": ["AURORA/data/something/frames/97105/first.jpg", "AURORA/data/something/frames/97105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving purse towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118550", "images": ["AURORA/data/something/frames/152949/first.jpg", "AURORA/data/something/frames/152949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118551", "images": ["AURORA/data/something/frames/193434/first.jpg", "AURORA/data/something/frames/193434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing cloth into bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118552", "images": ["AURORA/data/something/frames/72427/first.jpg", "AURORA/data/something/frames/72427/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading pate onto biscuit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118553", "images": ["AURORA/data/something/frames/126314/first.jpg", "AURORA/data/something/frames/126314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping deoderant into a drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118554", "images": ["AURORA/data/something/frames/107242/first.jpg", "AURORA/data/something/frames/107242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching tomato with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118555", "images": ["AURORA/data/something/frames/80543/first.jpg", "AURORA/data/something/frames/80543/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118556", "images": ["AURORA/data/something/frames/201629/first.jpg", "AURORA/data/something/frames/201629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting scissors on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118557", "images": ["AURORA/data/something/frames/146002/first.jpg", "AURORA/data/something/frames/146002/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking pen out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118558", "images": ["AURORA/data/something/frames/153870/first.jpg", "AURORA/data/something/frames/153870/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118559", "images": ["AURORA/data/something/frames/217459/first.jpg", "AURORA/data/something/frames/217459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a calculator onto a desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000118560", "images": ["AURORA/data/something/frames/213573/first.jpg", "AURORA/data/something/frames/213573/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ruler onto calculator"}, {"from": "gpt", "value": ""}]} +{"id": "000000118561", "images": ["AURORA/data/something/frames/56271/first.jpg", "AURORA/data/something/frames/56271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118562", "images": ["AURORA/data/something/frames/109857/first.jpg", "AURORA/data/something/frames/109857/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) top of bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118563", "images": ["AURORA/data/something/frames/188449/first.jpg", "AURORA/data/something/frames/188449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping marbles up with hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118564", "images": ["AURORA/data/something/frames/102319/first.jpg", "AURORA/data/something/frames/102319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118565", "images": ["AURORA/data/something/frames/193105/first.jpg", "AURORA/data/something/frames/193105/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting dish with dummy on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118566", "images": ["AURORA/data/something/frames/75027/first.jpg", "AURORA/data/something/frames/75027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a makeup brush so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118567", "images": ["AURORA/data/something/frames/18022/first.jpg", "AURORA/data/something/frames/18022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting book with notebook on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118568", "images": ["AURORA/data/something/frames/162291/first.jpg", "AURORA/data/something/frames/162291/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting box with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118569", "images": ["AURORA/data/something/frames/149465/first.jpg", "AURORA/data/something/frames/149465/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching pill bottle with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118570", "images": ["AURORA/data/something/frames/69033/first.jpg", "AURORA/data/something/frames/69033/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118571", "images": ["AURORA/data/something/frames/140292/first.jpg", "AURORA/data/something/frames/140292/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering nail cutter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118572", "images": ["AURORA/data/something/frames/30271/first.jpg", "AURORA/data/something/frames/30271/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a placemat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118573", "images": ["AURORA/data/something/frames/163541/first.jpg", "AURORA/data/something/frames/163541/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: approaching painting with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118574", "images": ["AURORA/data/something/frames/69142/first.jpg", "AURORA/data/something/frames/69142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) plunger of dispenser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118575", "images": ["AURORA/data/something/frames/107629/first.jpg", "AURORA/data/something/frames/107629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving stapler up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118576", "images": ["AURORA/data/something/frames/10073/first.jpg", "AURORA/data/something/frames/10073/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving tangerine and tangerine closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118577", "images": ["AURORA/data/something/frames/70183/first.jpg", "AURORA/data/something/frames/70183/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing stone with pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118578", "images": ["AURORA/data/something/frames/144971/first.jpg", "AURORA/data/something/frames/144971/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the remote and the mouse closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118579", "images": ["AURORA/data/something/frames/127516/first.jpg", "AURORA/data/something/frames/127516/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a peg into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118580", "images": ["AURORA/data/something/frames/122012/first.jpg", "AURORA/data/something/frames/122012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing ink bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118581", "images": ["AURORA/data/something/frames/151732/first.jpg", "AURORA/data/something/frames/151732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a coin into a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118582", "images": ["AURORA/data/something/frames/209656/first.jpg", "AURORA/data/something/frames/209656/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking tin out of cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118583", "images": ["AURORA/data/something/frames/219597/first.jpg", "AURORA/data/something/frames/219597/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118584", "images": ["AURORA/data/something/frames/151673/first.jpg", "AURORA/data/something/frames/151673/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nail clipper behind wallet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118585", "images": ["AURORA/data/something/frames/198264/first.jpg", "AURORA/data/something/frames/198264/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving sugar away from coffee"}, {"from": "gpt", "value": ""}]} +{"id": "000000118586", "images": ["AURORA/data/something/frames/100719/first.jpg", "AURORA/data/something/frames/100719/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming brown bracelet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118587", "images": ["AURORA/data/something/frames/132392/first.jpg", "AURORA/data/something/frames/132392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with a bottle of honey on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118588", "images": ["AURORA/data/something/frames/150362/first.jpg", "AURORA/data/something/frames/150362/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing purple microfiber from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118589", "images": ["AURORA/data/something/frames/48412/first.jpg", "AURORA/data/something/frames/48412/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting scissors with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118590", "images": ["AURORA/data/something/frames/43072/first.jpg", "AURORA/data/something/frames/43072/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing paint bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118591", "images": ["AURORA/data/something/frames/110204/first.jpg", "AURORA/data/something/frames/110204/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving jar across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118592", "images": ["AURORA/data/something/frames/133470/first.jpg", "AURORA/data/something/frames/133470/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 4 books"}, {"from": "gpt", "value": ""}]} +{"id": "000000118593", "images": ["AURORA/data/something/frames/50203/first.jpg", "AURORA/data/something/frames/50203/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118594", "images": ["AURORA/data/something/frames/100480/first.jpg", "AURORA/data/something/frames/100480/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin into a bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118595", "images": ["AURORA/data/something/frames/85414/first.jpg", "AURORA/data/something/frames/85414/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting up one end of pencil box without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118596", "images": ["AURORA/data/something/frames/217807/first.jpg", "AURORA/data/something/frames/217807/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jbl in front of candy"}, {"from": "gpt", "value": ""}]} +{"id": "000000118597", "images": ["AURORA/data/something/frames/192457/first.jpg", "AURORA/data/something/frames/192457/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking footwear up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118598", "images": ["AURORA/data/something/frames/71259/first.jpg", "AURORA/data/something/frames/71259/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring milk out of pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118599", "images": ["AURORA/data/something/frames/12993/first.jpg", "AURORA/data/something/frames/12993/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cube and a box away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118600", "images": ["AURORA/data/something/frames/59710/first.jpg", "AURORA/data/something/frames/59710/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cup in front of fork"}, {"from": "gpt", "value": ""}]} +{"id": "000000118601", "images": ["AURORA/data/something/frames/115996/first.jpg", "AURORA/data/something/frames/115996/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy closer to box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118602", "images": ["AURORA/data/something/frames/104990/first.jpg", "AURORA/data/something/frames/104990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fluorescent light bulb into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118603", "images": ["AURORA/data/something/frames/26196/first.jpg", "AURORA/data/something/frames/26196/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending diary so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118604", "images": ["AURORA/data/something/frames/189723/first.jpg", "AURORA/data/something/frames/189723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to a bottletop"}, {"from": "gpt", "value": ""}]} +{"id": "000000118605", "images": ["AURORA/data/something/frames/95277/first.jpg", "AURORA/data/something/frames/95277/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a vase on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118606", "images": ["AURORA/data/something/frames/95473/first.jpg", "AURORA/data/something/frames/95473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118607", "images": ["AURORA/data/something/frames/134207/first.jpg", "AURORA/data/something/frames/134207/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tissue just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118608", "images": ["AURORA/data/something/frames/55333/first.jpg", "AURORA/data/something/frames/55333/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a glass on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118609", "images": ["AURORA/data/something/frames/48386/first.jpg", "AURORA/data/something/frames/48386/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting charger with a remote control"}, {"from": "gpt", "value": ""}]} +{"id": "000000118610", "images": ["AURORA/data/something/frames/213646/first.jpg", "AURORA/data/something/frames/213646/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving the signal lever up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118611", "images": ["AURORA/data/something/frames/217091/first.jpg", "AURORA/data/something/frames/217091/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of deodorant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118612", "images": ["AURORA/data/something/frames/14440/first.jpg", "AURORA/data/something/frames/14440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto wheat bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118613", "images": ["AURORA/data/something/frames/81521/first.jpg", "AURORA/data/something/frames/81521/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting something that cannot actually stand upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118614", "images": ["AURORA/data/something/frames/203266/first.jpg", "AURORA/data/something/frames/203266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping sugar up with a measuring cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118615", "images": ["AURORA/data/something/frames/174724/first.jpg", "AURORA/data/something/frames/174724/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto peanut butter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118616", "images": ["AURORA/data/something/frames/60550/first.jpg", "AURORA/data/something/frames/60550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ring bell on the edge of stand of stone so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118617", "images": ["AURORA/data/something/frames/65678/first.jpg", "AURORA/data/something/frames/65678/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118618", "images": ["AURORA/data/something/frames/142355/first.jpg", "AURORA/data/something/frames/142355/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading matxhboxes onto newspaper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118619", "images": ["AURORA/data/something/frames/103922/first.jpg", "AURORA/data/something/frames/103922/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving dvd case down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118620", "images": ["AURORA/data/something/frames/78730/first.jpg", "AURORA/data/something/frames/78730/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a safety pin onto a slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118621", "images": ["AURORA/data/something/frames/98700/first.jpg", "AURORA/data/something/frames/98700/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning glass upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118622", "images": ["AURORA/data/something/frames/76262/first.jpg", "AURORA/data/something/frames/76262/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting dog with bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118623", "images": ["AURORA/data/something/frames/76188/first.jpg", "AURORA/data/something/frames/76188/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping lid in front of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118624", "images": ["AURORA/data/something/frames/42061/first.jpg", "AURORA/data/something/frames/42061/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118625", "images": ["AURORA/data/something/frames/29459/first.jpg", "AURORA/data/something/frames/29459/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchstick behind a remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118626", "images": ["AURORA/data/something/frames/26482/first.jpg", "AURORA/data/something/frames/26482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing a tissue box, revealing a dvd behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118627", "images": ["AURORA/data/something/frames/92852/first.jpg", "AURORA/data/something/frames/92852/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading chocolate onto waffel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118628", "images": ["AURORA/data/something/frames/88513/first.jpg", "AURORA/data/something/frames/88513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking red colour sharpner out of yellow container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118629", "images": ["AURORA/data/something/frames/180544/first.jpg", "AURORA/data/something/frames/180544/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering pool"}, {"from": "gpt", "value": ""}]} +{"id": "000000118630", "images": ["AURORA/data/something/frames/43177/first.jpg", "AURORA/data/something/frames/43177/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting block into hole"}, {"from": "gpt", "value": ""}]} +{"id": "000000118631", "images": ["AURORA/data/something/frames/49025/first.jpg", "AURORA/data/something/frames/49025/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing note pad from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118632", "images": ["AURORA/data/something/frames/191117/first.jpg", "AURORA/data/something/frames/191117/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keys into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118633", "images": ["AURORA/data/something/frames/161576/first.jpg", "AURORA/data/something/frames/161576/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting toys into basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118634", "images": ["AURORA/data/something/frames/126093/first.jpg", "AURORA/data/something/frames/126093/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming motorbike"}, {"from": "gpt", "value": ""}]} +{"id": "000000118635", "images": ["AURORA/data/something/frames/1754/first.jpg", "AURORA/data/something/frames/1754/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pen onto karpet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118636", "images": ["AURORA/data/something/frames/180372/first.jpg", "AURORA/data/something/frames/180372/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: removing mug, revealing tape behind"}, {"from": "gpt", "value": ""}]} +{"id": "000000118637", "images": ["AURORA/data/something/frames/55067/first.jpg", "AURORA/data/something/frames/55067/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying a soda can on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118638", "images": ["AURORA/data/something/frames/15242/first.jpg", "AURORA/data/something/frames/15242/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking color paper clip"}, {"from": "gpt", "value": ""}]} +{"id": "000000118639", "images": ["AURORA/data/something/frames/143311/first.jpg", "AURORA/data/something/frames/143311/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing green chalk from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118640", "images": ["AURORA/data/something/frames/23934/first.jpg", "AURORA/data/something/frames/23934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying cardboard box on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118641", "images": ["AURORA/data/something/frames/87684/first.jpg", "AURORA/data/something/frames/87684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking highlighter out of glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118642", "images": ["AURORA/data/something/frames/163119/first.jpg", "AURORA/data/something/frames/163119/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping container with pennies over, so pennies falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118643", "images": ["AURORA/data/something/frames/15512/first.jpg", "AURORA/data/something/frames/15512/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into socket but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118644", "images": ["AURORA/data/something/frames/149908/first.jpg", "AURORA/data/something/frames/149908/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pin in front of a handkerchief"}, {"from": "gpt", "value": ""}]} +{"id": "000000118645", "images": ["AURORA/data/something/frames/10888/first.jpg", "AURORA/data/something/frames/10888/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering an apple"}, {"from": "gpt", "value": ""}]} +{"id": "000000118646", "images": ["AURORA/data/something/frames/26635/first.jpg", "AURORA/data/something/frames/26635/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending a stick until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118647", "images": ["AURORA/data/something/frames/89783/first.jpg", "AURORA/data/something/frames/89783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a paper heart up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118648", "images": ["AURORA/data/something/frames/6731/first.jpg", "AURORA/data/something/frames/6731/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118649", "images": ["AURORA/data/something/frames/149607/first.jpg", "AURORA/data/something/frames/149607/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling pepper onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118650", "images": ["AURORA/data/something/frames/41645/first.jpg", "AURORA/data/something/frames/41645/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging an earphone into a mobile gadget"}, {"from": "gpt", "value": ""}]} +{"id": "000000118651", "images": ["AURORA/data/something/frames/89568/first.jpg", "AURORA/data/something/frames/89568/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a jar onto another jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118652", "images": ["AURORA/data/something/frames/66638/first.jpg", "AURORA/data/something/frames/66638/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping something off of something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118653", "images": ["AURORA/data/something/frames/216578/first.jpg", "AURORA/data/something/frames/216578/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone next to yellowbook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118654", "images": ["AURORA/data/something/frames/125701/first.jpg", "AURORA/data/something/frames/125701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling remote from behind of blocks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118655", "images": ["AURORA/data/something/frames/204496/first.jpg", "AURORA/data/something/frames/204496/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming printer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118656", "images": ["AURORA/data/something/frames/9166/first.jpg", "AURORA/data/something/frames/9166/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning deodorant upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118657", "images": ["AURORA/data/something/frames/54551/first.jpg", "AURORA/data/something/frames/54551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening gate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118658", "images": ["AURORA/data/something/frames/50514/first.jpg", "AURORA/data/something/frames/50514/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: picking cellphone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118659", "images": ["AURORA/data/something/frames/174626/first.jpg", "AURORA/data/something/frames/174626/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118660", "images": ["AURORA/data/something/frames/56964/first.jpg", "AURORA/data/something/frames/56964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118661", "images": ["AURORA/data/something/frames/156566/first.jpg", "AURORA/data/something/frames/156566/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning water bottle upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118662", "images": ["AURORA/data/something/frames/181782/first.jpg", "AURORA/data/something/frames/181782/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping spoon into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118663", "images": ["AURORA/data/something/frames/220513/first.jpg", "AURORA/data/something/frames/220513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking phone out of mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118664", "images": ["AURORA/data/something/frames/32068/first.jpg", "AURORA/data/something/frames/32068/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting keys with remote"}, {"from": "gpt", "value": ""}]} +{"id": "000000118665", "images": ["AURORA/data/something/frames/137808/first.jpg", "AURORA/data/something/frames/137808/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming picture"}, {"from": "gpt", "value": ""}]} +{"id": "000000118666", "images": ["AURORA/data/something/frames/12388/first.jpg", "AURORA/data/something/frames/12388/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting glass into bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118667", "images": ["AURORA/data/something/frames/142652/first.jpg", "AURORA/data/something/frames/142652/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118668", "images": ["AURORA/data/something/frames/209892/first.jpg", "AURORA/data/something/frames/209892/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup and spoon away from each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118669", "images": ["AURORA/data/something/frames/150031/first.jpg", "AURORA/data/something/frames/150031/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting usb cable upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118670", "images": ["AURORA/data/something/frames/171877/first.jpg", "AURORA/data/something/frames/171877/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118671", "images": ["AURORA/data/something/frames/99513/first.jpg", "AURORA/data/something/frames/99513/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto a knife"}, {"from": "gpt", "value": ""}]} +{"id": "000000118672", "images": ["AURORA/data/something/frames/158318/first.jpg", "AURORA/data/something/frames/158318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle being deflected from carton"}, {"from": "gpt", "value": ""}]} +{"id": "000000118673", "images": ["AURORA/data/something/frames/98211/first.jpg", "AURORA/data/something/frames/98211/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging plug into power bar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118674", "images": ["AURORA/data/something/frames/169659/first.jpg", "AURORA/data/something/frames/169659/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending plastic knife until it breaks"}, {"from": "gpt", "value": ""}]} +{"id": "000000118675", "images": ["AURORA/data/something/frames/137213/first.jpg", "AURORA/data/something/frames/137213/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a pen onto the floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118676", "images": ["AURORA/data/something/frames/168973/first.jpg", "AURORA/data/something/frames/168973/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a coin to other coins"}, {"from": "gpt", "value": ""}]} +{"id": "000000118677", "images": ["AURORA/data/something/frames/110156/first.jpg", "AURORA/data/something/frames/110156/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cookie upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118678", "images": ["AURORA/data/something/frames/201910/first.jpg", "AURORA/data/something/frames/201910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toothbrush towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118679", "images": ["AURORA/data/something/frames/60555/first.jpg", "AURORA/data/something/frames/60555/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming krishna idole"}, {"from": "gpt", "value": ""}]} +{"id": "000000118680", "images": ["AURORA/data/something/frames/217121/first.jpg", "AURORA/data/something/frames/217121/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming lorry"}, {"from": "gpt", "value": ""}]} +{"id": "000000118681", "images": ["AURORA/data/something/frames/123565/first.jpg", "AURORA/data/something/frames/123565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing napkin into mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118682", "images": ["AURORA/data/something/frames/143289/first.jpg", "AURORA/data/something/frames/143289/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118683", "images": ["AURORA/data/something/frames/51701/first.jpg", "AURORA/data/something/frames/51701/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing a piece of paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118684", "images": ["AURORA/data/something/frames/145214/first.jpg", "AURORA/data/something/frames/145214/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting ball on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118685", "images": ["AURORA/data/something/frames/174245/first.jpg", "AURORA/data/something/frames/174245/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting fluorescent light bulb next to mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118686", "images": ["AURORA/data/something/frames/122370/first.jpg", "AURORA/data/something/frames/122370/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking glass from desk"}, {"from": "gpt", "value": ""}]} +{"id": "000000118687", "images": ["AURORA/data/something/frames/68062/first.jpg", "AURORA/data/something/frames/68062/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: paper box colliding with another paper box and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118688", "images": ["AURORA/data/something/frames/181326/first.jpg", "AURORA/data/something/frames/181326/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting placemat with glass on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118689", "images": ["AURORA/data/something/frames/199111/first.jpg", "AURORA/data/something/frames/199111/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving lid of shampoo container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118690", "images": ["AURORA/data/something/frames/96588/first.jpg", "AURORA/data/something/frames/96588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending steel spoon so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118691", "images": ["AURORA/data/something/frames/180398/first.jpg", "AURORA/data/something/frames/180398/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving handle of a door lock"}, {"from": "gpt", "value": ""}]} +{"id": "000000118692", "images": ["AURORA/data/something/frames/67732/first.jpg", "AURORA/data/something/frames/67732/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting (wringing) sponge wet until water comes out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118693", "images": ["AURORA/data/something/frames/104179/first.jpg", "AURORA/data/something/frames/104179/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mobile phone up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118694", "images": ["AURORA/data/something/frames/166450/first.jpg", "AURORA/data/something/frames/166450/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting sponge on the edge of table so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118695", "images": ["AURORA/data/something/frames/167779/first.jpg", "AURORA/data/something/frames/167779/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118696", "images": ["AURORA/data/something/frames/119934/first.jpg", "AURORA/data/something/frames/119934/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting orange underneath notebook"}, {"from": "gpt", "value": ""}]} +{"id": "000000118697", "images": ["AURORA/data/something/frames/32587/first.jpg", "AURORA/data/something/frames/32587/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing thread into a coffee can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118698", "images": ["AURORA/data/something/frames/156523/first.jpg", "AURORA/data/something/frames/156523/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118699", "images": ["AURORA/data/something/frames/67306/first.jpg", "AURORA/data/something/frames/67306/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting chocolate onto tie"}, {"from": "gpt", "value": ""}]} +{"id": "000000118700", "images": ["AURORA/data/something/frames/146990/first.jpg", "AURORA/data/something/frames/146990/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118701", "images": ["AURORA/data/something/frames/133314/first.jpg", "AURORA/data/something/frames/133314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a plate on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118702", "images": ["AURORA/data/something/frames/152550/first.jpg", "AURORA/data/something/frames/152550/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a flashlight away from a smartphone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118703", "images": ["AURORA/data/something/frames/10449/first.jpg", "AURORA/data/something/frames/10449/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: laying clock on the table on its side, not upright"}, {"from": "gpt", "value": ""}]} +{"id": "000000118704", "images": ["AURORA/data/something/frames/200684/first.jpg", "AURORA/data/something/frames/200684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting clip box onto stencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118705", "images": ["AURORA/data/something/frames/30690/first.jpg", "AURORA/data/something/frames/30690/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with lotion container on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118706", "images": ["AURORA/data/something/frames/207410/first.jpg", "AURORA/data/something/frames/207410/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading peanut butter onto a plate"}, {"from": "gpt", "value": ""}]} +{"id": "000000118707", "images": ["AURORA/data/something/frames/185504/first.jpg", "AURORA/data/something/frames/185504/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118708", "images": ["AURORA/data/something/frames/17367/first.jpg", "AURORA/data/something/frames/17367/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting mouse next to keyboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000118709", "images": ["AURORA/data/something/frames/63938/first.jpg", "AURORA/data/something/frames/63938/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118710", "images": ["AURORA/data/something/frames/182551/first.jpg", "AURORA/data/something/frames/182551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving smart phone down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118711", "images": ["AURORA/data/something/frames/49208/first.jpg", "AURORA/data/something/frames/49208/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) handle of a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118712", "images": ["AURORA/data/something/frames/43615/first.jpg", "AURORA/data/something/frames/43615/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: wiping dust off of a jar"}, {"from": "gpt", "value": ""}]} +{"id": "000000118713", "images": ["AURORA/data/something/frames/56562/first.jpg", "AURORA/data/something/frames/56562/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a hairdryer into the wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118714", "images": ["AURORA/data/something/frames/219444/first.jpg", "AURORA/data/something/frames/219444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting phone onto lotion container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118715", "images": ["AURORA/data/something/frames/21830/first.jpg", "AURORA/data/something/frames/21830/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking straw"}, {"from": "gpt", "value": ""}]} +{"id": "000000118716", "images": ["AURORA/data/something/frames/76136/first.jpg", "AURORA/data/something/frames/76136/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking piece of garbage"}, {"from": "gpt", "value": ""}]} +{"id": "000000118717", "images": ["AURORA/data/something/frames/63783/first.jpg", "AURORA/data/something/frames/63783/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping pillow behind basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118718", "images": ["AURORA/data/something/frames/45444/first.jpg", "AURORA/data/something/frames/45444/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking box so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118719", "images": ["AURORA/data/something/frames/76426/first.jpg", "AURORA/data/something/frames/76426/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting eraser into box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118720", "images": ["AURORA/data/something/frames/67492/first.jpg", "AURORA/data/something/frames/67492/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking red toy car from table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118721", "images": ["AURORA/data/something/frames/188907/first.jpg", "AURORA/data/something/frames/188907/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping cow behind box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118722", "images": ["AURORA/data/something/frames/17284/first.jpg", "AURORA/data/something/frames/17284/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing toilet paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118723", "images": ["AURORA/data/something/frames/195590/first.jpg", "AURORA/data/something/frames/195590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing mircowave"}, {"from": "gpt", "value": ""}]} +{"id": "000000118724", "images": ["AURORA/data/something/frames/206602/first.jpg", "AURORA/data/something/frames/206602/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting remote, lipbalm and keychain on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118725", "images": ["AURORA/data/something/frames/53473/first.jpg", "AURORA/data/something/frames/53473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000118726", "images": ["AURORA/data/something/frames/146187/first.jpg", "AURORA/data/something/frames/146187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a can onto a table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118727", "images": ["AURORA/data/something/frames/212416/first.jpg", "AURORA/data/something/frames/212416/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118728", "images": ["AURORA/data/something/frames/116582/first.jpg", "AURORA/data/something/frames/116582/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving something up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118729", "images": ["AURORA/data/something/frames/79740/first.jpg", "AURORA/data/something/frames/79740/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a plug into socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118730", "images": ["AURORA/data/something/frames/91964/first.jpg", "AURORA/data/something/frames/91964/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing handle onto door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118731", "images": ["AURORA/data/something/frames/13540/first.jpg", "AURORA/data/something/frames/13540/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen into a pen case"}, {"from": "gpt", "value": ""}]} +{"id": "000000118732", "images": ["AURORA/data/something/frames/78494/first.jpg", "AURORA/data/something/frames/78494/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a toy car from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118733", "images": ["AURORA/data/something/frames/177586/first.jpg", "AURORA/data/something/frames/177586/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118734", "images": ["AURORA/data/something/frames/60110/first.jpg", "AURORA/data/something/frames/60110/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper just a little bit"}, {"from": "gpt", "value": ""}]} +{"id": "000000118735", "images": ["AURORA/data/something/frames/96030/first.jpg", "AURORA/data/something/frames/96030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving toy car away from toy man"}, {"from": "gpt", "value": ""}]} +{"id": "000000118736", "images": ["AURORA/data/something/frames/188482/first.jpg", "AURORA/data/something/frames/188482/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cord into outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118737", "images": ["AURORA/data/something/frames/35314/first.jpg", "AURORA/data/something/frames/35314/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving wooden stick closer to red hair band"}, {"from": "gpt", "value": ""}]} +{"id": "000000118738", "images": ["AURORA/data/something/frames/55511/first.jpg", "AURORA/data/something/frames/55511/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting a slipper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118739", "images": ["AURORA/data/something/frames/210836/first.jpg", "AURORA/data/something/frames/210836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118740", "images": ["AURORA/data/something/frames/119936/first.jpg", "AURORA/data/something/frames/119936/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a notebook upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118741", "images": ["AURORA/data/something/frames/166187/first.jpg", "AURORA/data/something/frames/166187/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting cup with pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118742", "images": ["AURORA/data/something/frames/84316/first.jpg", "AURORA/data/something/frames/84316/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a glue with screwdriver"}, {"from": "gpt", "value": ""}]} +{"id": "000000118743", "images": ["AURORA/data/something/frames/65684/first.jpg", "AURORA/data/something/frames/65684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118744", "images": ["AURORA/data/something/frames/20379/first.jpg", "AURORA/data/something/frames/20379/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pen upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118745", "images": ["AURORA/data/something/frames/123713/first.jpg", "AURORA/data/something/frames/123713/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering keys with napkin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118746", "images": ["AURORA/data/something/frames/118950/first.jpg", "AURORA/data/something/frames/118950/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a nail-brush on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118747", "images": ["AURORA/data/something/frames/178115/first.jpg", "AURORA/data/something/frames/178115/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a wallet upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118748", "images": ["AURORA/data/something/frames/132440/first.jpg", "AURORA/data/something/frames/132440/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking mobile phone from floor"}, {"from": "gpt", "value": ""}]} +{"id": "000000118749", "images": ["AURORA/data/something/frames/31658/first.jpg", "AURORA/data/something/frames/31658/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing coffee from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118750", "images": ["AURORA/data/something/frames/121668/first.jpg", "AURORA/data/something/frames/121668/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera upwards while filming waist basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118751", "images": ["AURORA/data/something/frames/207651/first.jpg", "AURORA/data/something/frames/207651/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting camera into hat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118752", "images": ["AURORA/data/something/frames/17176/first.jpg", "AURORA/data/something/frames/17176/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering something with something"}, {"from": "gpt", "value": ""}]} +{"id": "000000118753", "images": ["AURORA/data/something/frames/56889/first.jpg", "AURORA/data/something/frames/56889/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car across a surface without it falling down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118754", "images": ["AURORA/data/something/frames/116863/first.jpg", "AURORA/data/something/frames/116863/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling watch out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118755", "images": ["AURORA/data/something/frames/111677/first.jpg", "AURORA/data/something/frames/111677/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a lighter upright on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118756", "images": ["AURORA/data/something/frames/97085/first.jpg", "AURORA/data/something/frames/97085/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a book with sunglasses on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118757", "images": ["AURORA/data/something/frames/51243/first.jpg", "AURORA/data/something/frames/51243/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water onto coffee table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118758", "images": ["AURORA/data/something/frames/55773/first.jpg", "AURORA/data/something/frames/55773/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting orange cup with key"}, {"from": "gpt", "value": ""}]} +{"id": "000000118759", "images": ["AURORA/data/something/frames/27382/first.jpg", "AURORA/data/something/frames/27382/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an accumulator so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118760", "images": ["AURORA/data/something/frames/190022/first.jpg", "AURORA/data/something/frames/190022/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting a big ball with cardboard"}, {"from": "gpt", "value": ""}]} +{"id": "000000118761", "images": ["AURORA/data/something/frames/150551/first.jpg", "AURORA/data/something/frames/150551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into beaker"}, {"from": "gpt", "value": ""}]} +{"id": "000000118762", "images": ["AURORA/data/something/frames/210684/first.jpg", "AURORA/data/something/frames/210684/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending something so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118763", "images": ["AURORA/data/something/frames/134399/first.jpg", "AURORA/data/something/frames/134399/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with clip on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118764", "images": ["AURORA/data/something/frames/52343/first.jpg", "AURORA/data/something/frames/52343/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118765", "images": ["AURORA/data/something/frames/81318/first.jpg", "AURORA/data/something/frames/81318/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a wallet down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118766", "images": ["AURORA/data/something/frames/121756/first.jpg", "AURORA/data/something/frames/121756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a cigarette pack behind a lighter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118767", "images": ["AURORA/data/something/frames/84104/first.jpg", "AURORA/data/something/frames/84104/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling lipstick from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118768", "images": ["AURORA/data/something/frames/168294/first.jpg", "AURORA/data/something/frames/168294/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching paper to book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118769", "images": ["AURORA/data/something/frames/181154/first.jpg", "AURORA/data/something/frames/181154/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: scooping banana up with cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118770", "images": ["AURORA/data/something/frames/83090/first.jpg", "AURORA/data/something/frames/83090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing sunglasses so that it almost falls off but doesn't"}, {"from": "gpt", "value": ""}]} +{"id": "000000118771", "images": ["AURORA/data/something/frames/174788/first.jpg", "AURORA/data/something/frames/174788/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cup closer to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118772", "images": ["AURORA/data/something/frames/52026/first.jpg", "AURORA/data/something/frames/52026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone wire into phone but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118773", "images": ["AURORA/data/something/frames/76639/first.jpg", "AURORA/data/something/frames/76639/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting cookie jar and glass on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118774", "images": ["AURORA/data/something/frames/82090/first.jpg", "AURORA/data/something/frames/82090/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming red watch box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118775", "images": ["AURORA/data/something/frames/11477/first.jpg", "AURORA/data/something/frames/11477/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a cylindrical battery and a pocket watch so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118776", "images": ["AURORA/data/something/frames/149237/first.jpg", "AURORA/data/something/frames/149237/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing tearing a sheet of paper into two pieces into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118777", "images": ["AURORA/data/something/frames/193251/first.jpg", "AURORA/data/something/frames/193251/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting tape and scissors on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118778", "images": ["AURORA/data/something/frames/201420/first.jpg", "AURORA/data/something/frames/201420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming eggplant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118779", "images": ["AURORA/data/something/frames/136563/first.jpg", "AURORA/data/something/frames/136563/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a glue in front of a container"}, {"from": "gpt", "value": ""}]} +{"id": "000000118780", "images": ["AURORA/data/something/frames/167239/first.jpg", "AURORA/data/something/frames/167239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a bead into an organizer box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118781", "images": ["AURORA/data/something/frames/4319/first.jpg", "AURORA/data/something/frames/4319/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting 2 coasters onto a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118782", "images": ["AURORA/data/something/frames/67155/first.jpg", "AURORA/data/something/frames/67155/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving cigarette down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118783", "images": ["AURORA/data/something/frames/106098/first.jpg", "AURORA/data/something/frames/106098/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging air conditioning unit into wall but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118784", "images": ["AURORA/data/something/frames/219037/first.jpg", "AURORA/data/something/frames/219037/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing a stuffed bear off of a dresser"}, {"from": "gpt", "value": ""}]} +{"id": "000000118785", "images": ["AURORA/data/something/frames/204551/first.jpg", "AURORA/data/something/frames/204551/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a can with a pencil on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118786", "images": ["AURORA/data/something/frames/127585/first.jpg", "AURORA/data/something/frames/127585/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping small canister over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118787", "images": ["AURORA/data/something/frames/98819/first.jpg", "AURORA/data/something/frames/98819/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning cellphone upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118788", "images": ["AURORA/data/something/frames/206689/first.jpg", "AURORA/data/something/frames/206689/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting nailpolish on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118789", "images": ["AURORA/data/something/frames/158643/first.jpg", "AURORA/data/something/frames/158643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing shirt into hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118790", "images": ["AURORA/data/something/frames/41828/first.jpg", "AURORA/data/something/frames/41828/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pencil behind mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118791", "images": ["AURORA/data/something/frames/87145/first.jpg", "AURORA/data/something/frames/87145/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one spray bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118792", "images": ["AURORA/data/something/frames/207200/first.jpg", "AURORA/data/something/frames/207200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling a tail from behind of a cat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118793", "images": ["AURORA/data/something/frames/208045/first.jpg", "AURORA/data/something/frames/208045/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a hair brush on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118794", "images": ["AURORA/data/something/frames/110143/first.jpg", "AURORA/data/something/frames/110143/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stacking 3 pot"}, {"from": "gpt", "value": ""}]} +{"id": "000000118795", "images": ["AURORA/data/something/frames/39831/first.jpg", "AURORA/data/something/frames/39831/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spreading butter onto bread"}, {"from": "gpt", "value": ""}]} +{"id": "000000118796", "images": ["AURORA/data/something/frames/171488/first.jpg", "AURORA/data/something/frames/171488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: poking plush doll so that it falls over"}, {"from": "gpt", "value": ""}]} +{"id": "000000118797", "images": ["AURORA/data/something/frames/130325/first.jpg", "AURORA/data/something/frames/130325/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling sugar onto a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118798", "images": ["AURORA/data/something/frames/39672/first.jpg", "AURORA/data/something/frames/39672/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottles with bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118799", "images": ["AURORA/data/something/frames/70940/first.jpg", "AURORA/data/something/frames/70940/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing chip bag into bigger bag"}, {"from": "gpt", "value": ""}]} +{"id": "000000118800", "images": ["AURORA/data/something/frames/91488/first.jpg", "AURORA/data/something/frames/91488/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a box behind a stack"}, {"from": "gpt", "value": ""}]} +{"id": "000000118801", "images": ["AURORA/data/something/frames/114641/first.jpg", "AURORA/data/something/frames/114641/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving clock and pill bottle closer to each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118802", "images": ["AURORA/data/something/frames/81012/first.jpg", "AURORA/data/something/frames/81012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a glass"}, {"from": "gpt", "value": ""}]} +{"id": "000000118803", "images": ["AURORA/data/something/frames/39756/first.jpg", "AURORA/data/something/frames/39756/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing pen from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118804", "images": ["AURORA/data/something/frames/117524/first.jpg", "AURORA/data/something/frames/117524/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving plastic flower closer to toy duck"}, {"from": "gpt", "value": ""}]} +{"id": "000000118805", "images": ["AURORA/data/something/frames/145532/first.jpg", "AURORA/data/something/frames/145532/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping toy onto tile"}, {"from": "gpt", "value": ""}]} +{"id": "000000118806", "images": ["AURORA/data/something/frames/33671/first.jpg", "AURORA/data/something/frames/33671/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: stuffing sheet into can"}, {"from": "gpt", "value": ""}]} +{"id": "000000118807", "images": ["AURORA/data/something/frames/3839/first.jpg", "AURORA/data/something/frames/3839/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting brush, scissors and comb on the table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118808", "images": ["AURORA/data/something/frames/22200/first.jpg", "AURORA/data/something/frames/22200/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bottle colliding with bottle opener and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118809", "images": ["AURORA/data/something/frames/100026/first.jpg", "AURORA/data/something/frames/100026/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting airscrew"}, {"from": "gpt", "value": ""}]} +{"id": "000000118810", "images": ["AURORA/data/something/frames/68862/first.jpg", "AURORA/data/something/frames/68862/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a wrist band with a hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118811", "images": ["AURORA/data/something/frames/195082/first.jpg", "AURORA/data/something/frames/195082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving a beer can away from a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118812", "images": ["AURORA/data/something/frames/57070/first.jpg", "AURORA/data/something/frames/57070/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving mouse up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118813", "images": ["AURORA/data/something/frames/177266/first.jpg", "AURORA/data/something/frames/177266/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into power socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118814", "images": ["AURORA/data/something/frames/118082/first.jpg", "AURORA/data/something/frames/118082/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: folding a book page"}, {"from": "gpt", "value": ""}]} +{"id": "000000118815", "images": ["AURORA/data/something/frames/220761/first.jpg", "AURORA/data/something/frames/220761/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping an apple next to a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118816", "images": ["AURORA/data/something/frames/67092/first.jpg", "AURORA/data/something/frames/67092/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting hat behind shoe"}, {"from": "gpt", "value": ""}]} +{"id": "000000118817", "images": ["AURORA/data/something/frames/45135/first.jpg", "AURORA/data/something/frames/45135/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118818", "images": ["AURORA/data/something/frames/139001/first.jpg", "AURORA/data/something/frames/139001/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118819", "images": ["AURORA/data/something/frames/55424/first.jpg", "AURORA/data/something/frames/55424/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: touching (without moving) lightningbulb of lamp"}, {"from": "gpt", "value": ""}]} +{"id": "000000118820", "images": ["AURORA/data/something/frames/176239/first.jpg", "AURORA/data/something/frames/176239/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming old mobile phone"}, {"from": "gpt", "value": ""}]} +{"id": "000000118821", "images": ["AURORA/data/something/frames/169723/first.jpg", "AURORA/data/something/frames/169723/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging cable into connector"}, {"from": "gpt", "value": ""}]} +{"id": "000000118822", "images": ["AURORA/data/something/frames/15622/first.jpg", "AURORA/data/something/frames/15622/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding towel"}, {"from": "gpt", "value": ""}]} +{"id": "000000118823", "images": ["AURORA/data/something/frames/9407/first.jpg", "AURORA/data/something/frames/9407/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with a tissue"}, {"from": "gpt", "value": ""}]} +{"id": "000000118824", "images": ["AURORA/data/something/frames/114693/first.jpg", "AURORA/data/something/frames/114693/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a collar up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118825", "images": ["AURORA/data/something/frames/34767/first.jpg", "AURORA/data/something/frames/34767/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming purple microfiber"}, {"from": "gpt", "value": ""}]} +{"id": "000000118826", "images": ["AURORA/data/something/frames/196675/first.jpg", "AURORA/data/something/frames/196675/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering snail shell with paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118827", "images": ["AURORA/data/something/frames/196305/first.jpg", "AURORA/data/something/frames/196305/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging phone charger into wall outlet but pulling it right out as you remove your hand"}, {"from": "gpt", "value": ""}]} +{"id": "000000118828", "images": ["AURORA/data/something/frames/160835/first.jpg", "AURORA/data/something/frames/160835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving chalk up"}, {"from": "gpt", "value": ""}]} +{"id": "000000118829", "images": ["AURORA/data/something/frames/65088/first.jpg", "AURORA/data/something/frames/65088/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting pen next to pen"}, {"from": "gpt", "value": ""}]} +{"id": "000000118830", "images": ["AURORA/data/something/frames/10126/first.jpg", "AURORA/data/something/frames/10126/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting magnifying glass up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118831", "images": ["AURORA/data/something/frames/171030/first.jpg", "AURORA/data/something/frames/171030/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing bottle off of counter"}, {"from": "gpt", "value": ""}]} +{"id": "000000118832", "images": ["AURORA/data/something/frames/216565/first.jpg", "AURORA/data/something/frames/216565/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping wallet onto chair"}, {"from": "gpt", "value": ""}]} +{"id": "000000118833", "images": ["AURORA/data/something/frames/174835/first.jpg", "AURORA/data/something/frames/174835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: gummy ball being deflected from tennis ball"}, {"from": "gpt", "value": ""}]} +{"id": "000000118834", "images": ["AURORA/data/something/frames/193046/first.jpg", "AURORA/data/something/frames/193046/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving crayon closer to candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118835", "images": ["AURORA/data/something/frames/83949/first.jpg", "AURORA/data/something/frames/83949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pepper shaker on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118836", "images": ["AURORA/data/something/frames/131836/first.jpg", "AURORA/data/something/frames/131836/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118837", "images": ["AURORA/data/something/frames/171174/first.jpg", "AURORA/data/something/frames/171174/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera right while filming the tv"}, {"from": "gpt", "value": ""}]} +{"id": "000000118838", "images": ["AURORA/data/something/frames/44142/first.jpg", "AURORA/data/something/frames/44142/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: hitting chair with racket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118839", "images": ["AURORA/data/something/frames/150212/first.jpg", "AURORA/data/something/frames/150212/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: something colliding with something and both are being deflected"}, {"from": "gpt", "value": ""}]} +{"id": "000000118840", "images": ["AURORA/data/something/frames/5589/first.jpg", "AURORA/data/something/frames/5589/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking a pompom"}, {"from": "gpt", "value": ""}]} +{"id": "000000118841", "images": ["AURORA/data/something/frames/97560/first.jpg", "AURORA/data/something/frames/97560/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting laptop onto table"}, {"from": "gpt", "value": ""}]} +{"id": "000000118842", "images": ["AURORA/data/something/frames/49392/first.jpg", "AURORA/data/something/frames/49392/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting keyd"}, {"from": "gpt", "value": ""}]} +{"id": "000000118843", "images": ["AURORA/data/something/frames/171871/first.jpg", "AURORA/data/something/frames/171871/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting bottle on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118844", "images": ["AURORA/data/something/frames/6949/first.jpg", "AURORA/data/something/frames/6949/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving white colour board clip down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118845", "images": ["AURORA/data/something/frames/34330/first.jpg", "AURORA/data/something/frames/34330/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving bottle down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118846", "images": ["AURORA/data/something/frames/213968/first.jpg", "AURORA/data/something/frames/213968/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing paper into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118847", "images": ["AURORA/data/something/frames/43497/first.jpg", "AURORA/data/something/frames/43497/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning the camera left while filming plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118848", "images": ["AURORA/data/something/frames/125910/first.jpg", "AURORA/data/something/frames/125910/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118849", "images": ["AURORA/data/something/frames/214327/first.jpg", "AURORA/data/something/frames/214327/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: orange being deflected from wall"}, {"from": "gpt", "value": ""}]} +{"id": "000000118850", "images": ["AURORA/data/something/frames/154473/first.jpg", "AURORA/data/something/frames/154473/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening tin"}, {"from": "gpt", "value": ""}]} +{"id": "000000118851", "images": ["AURORA/data/something/frames/194086/first.jpg", "AURORA/data/something/frames/194086/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening a box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118852", "images": ["AURORA/data/something/frames/24813/first.jpg", "AURORA/data/something/frames/24813/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: attaching light bulb to socket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118853", "images": ["AURORA/data/something/frames/34431/first.jpg", "AURORA/data/something/frames/34431/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a pair of socks into drawer"}, {"from": "gpt", "value": ""}]} +{"id": "000000118854", "images": ["AURORA/data/something/frames/171534/first.jpg", "AURORA/data/something/frames/171534/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving leaves of plant"}, {"from": "gpt", "value": ""}]} +{"id": "000000118855", "images": ["AURORA/data/something/frames/1014/first.jpg", "AURORA/data/something/frames/1014/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering fossil with pillow"}, {"from": "gpt", "value": ""}]} +{"id": "000000118856", "images": ["AURORA/data/something/frames/139649/first.jpg", "AURORA/data/something/frames/139649/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking soda bottle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118857", "images": ["AURORA/data/something/frames/39518/first.jpg", "AURORA/data/something/frames/39518/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering white colour board clip with duster"}, {"from": "gpt", "value": ""}]} +{"id": "000000118858", "images": ["AURORA/data/something/frames/112252/first.jpg", "AURORA/data/something/frames/112252/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving charger down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118859", "images": ["AURORA/data/something/frames/187802/first.jpg", "AURORA/data/something/frames/187802/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing feeding bottle from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118860", "images": ["AURORA/data/something/frames/163771/first.jpg", "AURORA/data/something/frames/163771/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting a bell pepper with a group of bell peppers"}, {"from": "gpt", "value": ""}]} +{"id": "000000118861", "images": ["AURORA/data/something/frames/24489/first.jpg", "AURORA/data/something/frames/24489/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing flowers from left to right"}, {"from": "gpt", "value": ""}]} +{"id": "000000118862", "images": ["AURORA/data/something/frames/50186/first.jpg", "AURORA/data/something/frames/50186/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving punching machine away from stapler"}, {"from": "gpt", "value": ""}]} +{"id": "000000118863", "images": ["AURORA/data/something/frames/146714/first.jpg", "AURORA/data/something/frames/146714/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging a cable into an outlet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118864", "images": ["AURORA/data/something/frames/188755/first.jpg", "AURORA/data/something/frames/188755/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting plant with coffin on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118865", "images": ["AURORA/data/something/frames/209027/first.jpg", "AURORA/data/something/frames/209027/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering box with blanket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118866", "images": ["AURORA/data/something/frames/118434/first.jpg", "AURORA/data/something/frames/118434/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping necklace in front of door"}, {"from": "gpt", "value": ""}]} +{"id": "000000118867", "images": ["AURORA/data/something/frames/141432/first.jpg", "AURORA/data/something/frames/141432/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: spilling water next to faucet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118868", "images": ["AURORA/data/something/frames/110590/first.jpg", "AURORA/data/something/frames/110590/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting xbox game with phone on it"}, {"from": "gpt", "value": ""}]} +{"id": "000000118869", "images": ["AURORA/data/something/frames/13962/first.jpg", "AURORA/data/something/frames/13962/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: sprinkling flour onto mat"}, {"from": "gpt", "value": ""}]} +{"id": "000000118870", "images": ["AURORA/data/something/frames/201315/first.jpg", "AURORA/data/something/frames/201315/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging headphones into a tablet"}, {"from": "gpt", "value": ""}]} +{"id": "000000118871", "images": ["AURORA/data/something/frames/152835/first.jpg", "AURORA/data/something/frames/152835/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking orange"}, {"from": "gpt", "value": ""}]} +{"id": "000000118872", "images": ["AURORA/data/something/frames/112050/first.jpg", "AURORA/data/something/frames/112050/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening pouch"}, {"from": "gpt", "value": ""}]} +{"id": "000000118873", "images": ["AURORA/data/something/frames/86588/first.jpg", "AURORA/data/something/frames/86588/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking spoon"}, {"from": "gpt", "value": ""}]} +{"id": "000000118874", "images": ["AURORA/data/something/frames/51920/first.jpg", "AURORA/data/something/frames/51920/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: opening basket"}, {"from": "gpt", "value": ""}]} +{"id": "000000118875", "images": ["AURORA/data/something/frames/163685/first.jpg", "AURORA/data/something/frames/163685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking one of the glass bottles"}, {"from": "gpt", "value": ""}]} +{"id": "000000118876", "images": ["AURORA/data/something/frames/13339/first.jpg", "AURORA/data/something/frames/13339/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: twisting mascara tube"}, {"from": "gpt", "value": ""}]} +{"id": "000000118877", "images": ["AURORA/data/something/frames/91775/first.jpg", "AURORA/data/something/frames/91775/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning a picture upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118878", "images": ["AURORA/data/something/frames/154735/first.jpg", "AURORA/data/something/frames/154735/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into usb port"}, {"from": "gpt", "value": ""}]} +{"id": "000000118879", "images": ["AURORA/data/something/frames/43685/first.jpg", "AURORA/data/something/frames/43685/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: bending wire so that it deforms"}, {"from": "gpt", "value": ""}]} +{"id": "000000118880", "images": ["AURORA/data/something/frames/191149/first.jpg", "AURORA/data/something/frames/191149/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pouring water into a mug"}, {"from": "gpt", "value": ""}]} +{"id": "000000118881", "images": ["AURORA/data/something/frames/205805/first.jpg", "AURORA/data/something/frames/205805/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving big ball and small ball so they collide with each other"}, {"from": "gpt", "value": ""}]} +{"id": "000000118882", "images": ["AURORA/data/something/frames/109420/first.jpg", "AURORA/data/something/frames/109420/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a lid up completely without letting it drop down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118883", "images": ["AURORA/data/something/frames/208158/first.jpg", "AURORA/data/something/frames/208158/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: plugging usb into pc"}, {"from": "gpt", "value": ""}]} +{"id": "000000118884", "images": ["AURORA/data/something/frames/110495/first.jpg", "AURORA/data/something/frames/110495/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tipping a cup with milk over, so milk falls out"}, {"from": "gpt", "value": ""}]} +{"id": "000000118885", "images": ["AURORA/data/something/frames/161643/first.jpg", "AURORA/data/something/frames/161643/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a pen with tissue paper"}, {"from": "gpt", "value": ""}]} +{"id": "000000118886", "images": ["AURORA/data/something/frames/66961/first.jpg", "AURORA/data/something/frames/66961/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting book on the edge of chair so it is not supported and falls down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118887", "images": ["AURORA/data/something/frames/167687/first.jpg", "AURORA/data/something/frames/167687/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling paper out of bowl"}, {"from": "gpt", "value": ""}]} +{"id": "000000118888", "images": ["AURORA/data/something/frames/136015/first.jpg", "AURORA/data/something/frames/136015/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pushing an iron from right to left"}, {"from": "gpt", "value": ""}]} +{"id": "000000118889", "images": ["AURORA/data/something/frames/103594/first.jpg", "AURORA/data/something/frames/103594/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting box on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118890", "images": ["AURORA/data/something/frames/34012/first.jpg", "AURORA/data/something/frames/34012/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a matchbox in front of a book"}, {"from": "gpt", "value": ""}]} +{"id": "000000118891", "images": ["AURORA/data/something/frames/195629/first.jpg", "AURORA/data/something/frames/195629/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from scotch tape with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118892", "images": ["AURORA/data/something/frames/110670/first.jpg", "AURORA/data/something/frames/110670/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving pen away from candle"}, {"from": "gpt", "value": ""}]} +{"id": "000000118893", "images": ["AURORA/data/something/frames/194148/first.jpg", "AURORA/data/something/frames/194148/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: taking remote out of box"}, {"from": "gpt", "value": ""}]} +{"id": "000000118894", "images": ["AURORA/data/something/frames/113233/first.jpg", "AURORA/data/something/frames/113233/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: covering a watch with a cloth"}, {"from": "gpt", "value": ""}]} +{"id": "000000118895", "images": ["AURORA/data/something/frames/196408/first.jpg", "AURORA/data/something/frames/196408/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting banana upright on the table, so it falls on its side"}, {"from": "gpt", "value": ""}]} +{"id": "000000118896", "images": ["AURORA/data/something/frames/70324/first.jpg", "AURORA/data/something/frames/70324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: lifting a surface with a watch on it until it starts sliding down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118897", "images": ["AURORA/data/something/frames/87849/first.jpg", "AURORA/data/something/frames/87849/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: pulling two ends of paper so that it separates into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118898", "images": ["AURORA/data/something/frames/171194/first.jpg", "AURORA/data/something/frames/171194/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: dropping a loonie into a cup"}, {"from": "gpt", "value": ""}]} +{"id": "000000118899", "images": ["AURORA/data/something/frames/52422/first.jpg", "AURORA/data/something/frames/52422/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: turning remote upside down"}, {"from": "gpt", "value": ""}]} +{"id": "000000118900", "images": ["AURORA/data/something/frames/201542/first.jpg", "AURORA/data/something/frames/201542/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: uncovering a red pencil"}, {"from": "gpt", "value": ""}]} +{"id": "000000118901", "images": ["AURORA/data/something/frames/43344/first.jpg", "AURORA/data/something/frames/43344/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: tearing handout into two pieces"}, {"from": "gpt", "value": ""}]} +{"id": "000000118902", "images": ["AURORA/data/something/frames/23324/first.jpg", "AURORA/data/something/frames/23324/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: putting t-shirt packet on a surface"}, {"from": "gpt", "value": ""}]} +{"id": "000000118903", "images": ["AURORA/data/something/frames/12777/first.jpg", "AURORA/data/something/frames/12777/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving away from waste basket with your camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118904", "images": ["AURORA/data/something/frames/151948/first.jpg", "AURORA/data/something/frames/151948/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving car key towards the camera"}, {"from": "gpt", "value": ""}]} +{"id": "000000118905", "images": ["AURORA/data/something/frames/117425/first.jpg", "AURORA/data/something/frames/117425/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: closing small freshmints"}, {"from": "gpt", "value": ""}]} +{"id": "000000118906", "images": ["AURORA/data/something/frames/157360/first.jpg", "AURORA/data/something/frames/157360/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: unfolding a shirt"}, {"from": "gpt", "value": ""}]} +{"id": "000000118907", "images": ["AURORA/data/something/frames/117478/first.jpg", "AURORA/data/something/frames/117478/last.jpg"], "conversations": [{"from": "human", "value": "\nEditing the given image according to the following prompt: moving glass up"}, {"from": "gpt", "value": ""}]} diff --git a/data/something/valid.json b/data/something/valid.json new file mode 100644 index 0000000000000000000000000000000000000000..a09751eebe760824bdae523980a7530938866421 --- /dev/null +++ b/data/something/valid.json @@ -0,0 +1,24779 @@ +[ +{"id":"74225","label":"spinning cube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cube"]}, +{"id":"116154","label":"showing clay box on top of wallet","template":"Showing [something] on top of [something]","placeholders":["clay box","wallet"]}, +{"id":"198186","label":"wiping words off of a paper","template":"Wiping [something] off of [something]","placeholders":["words","a paper"]}, +{"id":"137878","label":"pushing scissors so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["scissors"]}, +{"id":"151151","label":"turning the camera left while filming wall mounted fan","template":"Turning the camera left while filming [something]","placeholders":["wall mounted fan"]}, +{"id":"195025","label":"showing hamburger next to glasses","template":"Showing [something] next to [something]","placeholders":["hamburger","glasses"]}, +{"id":"172305","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"92355","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"35671","label":"bending book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["book"]}, +{"id":"69703","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"177890","label":"pretending to pick a tennisball up","template":"Pretending to pick [something] up","placeholders":["a tennisball"]}, +{"id":"217571","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"202564","label":"covering salt shaker with a towel","template":"Covering [something] with [something]","placeholders":["salt shaker","a towel"]}, +{"id":"107014","label":"dropping a card in front of a coin","template":"Dropping [something] in front of [something]","placeholders":["a card","a coin"]}, +{"id":"215371","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"149956","label":"tipping jar with hand over, so charger falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["jar","hand","charger"]}, +{"id":"91336","label":"hitting a teddy bear with a stick","template":"Hitting [something] with [something]","placeholders":["a teddy bear","a stick"]}, +{"id":"194094","label":"holding toy next to remote","template":"Holding [something] next to [something]","placeholders":["toy","remote"]}, +{"id":"121269","label":"stuffing jacket into knacksac","template":"Stuffing [something] into [something]","placeholders":["jacket","knacksac"]}, +{"id":"169362","label":"taking glass from desk","template":"Taking [something] from [somewhere]","placeholders":["glass","desk"]}, +{"id":"166924","label":"pushing iphone adapter from left to right","template":"Pushing [something] from left to right","placeholders":["iphone adapter"]}, +{"id":"188509","label":"lifting up one end of duster, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["duster"]}, +{"id":"97908","label":"letting a toy train roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a toy train"]}, +{"id":"74440","label":"stuffing a charger into a box","template":"Stuffing [something] into [something]","placeholders":["a charger","a box"]}, +{"id":"104085","label":"stuffing pajamas into a bag","template":"Stuffing [something] into [something]","placeholders":["pajamas","a bag"]}, +{"id":"171745","label":"burying quarter in flower pot","template":"Burying [something] in [something]","placeholders":["quarter","flower pot"]}, +{"id":"33395","label":"covering a chappal with mat","template":"Covering [something] with [something]","placeholders":["a chappal","mat"]}, +{"id":"29495","label":"moving bowl up","template":"Moving [something] up","placeholders":["bowl"]}, +{"id":"20330","label":"showing a charger behind diaries","template":"Showing [something] behind [something]","placeholders":["a charger","diaries"]}, +{"id":"24837","label":"folding mat","template":"Folding [something]","placeholders":["mat"]}, +{"id":"147255","label":"putting battery on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["battery"]}, +{"id":"96312","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"214198","label":"putting egg into bowl","template":"Putting [something] into [something]","placeholders":["egg","bowl"]}, +{"id":"108901","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"66480","label":"pushing a hair clip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a hair clip"]}, +{"id":"136478","label":"moving door away from the camera","template":"Moving [something] away from the camera","placeholders":["door"]}, +{"id":"82561","label":"letting a can of mints roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a can of mints"]}, +{"id":"211603","label":"spinning phone so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["phone"]}, +{"id":"104732","label":"folding wool mat","template":"Folding [something]","placeholders":["wool mat"]}, +{"id":"19977","label":"removing a beer can, revealing a glass behind","template":"Removing [something], revealing [something] behind","placeholders":["a beer can","a glass"]}, +{"id":"443","label":"tilting lid with quarter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["lid","quarter"]}, +{"id":"184679","label":"plugging charger into extension cord","template":"Plugging [something] into [something]","placeholders":["charger","extension cord"]}, +{"id":"29910","label":"moving wallet down","template":"Moving [something] down","placeholders":["wallet"]}, +{"id":"160261","label":"pushing orange bowl from left to right","template":"Pushing [something] from left to right","placeholders":["orange bowl"]}, +{"id":"32708","label":"opening phone case","template":"Opening [something]","placeholders":["phone case"]}, +{"id":"132073","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"124009","label":"moving control closer to vase","template":"Moving [something] closer to [something]","placeholders":["control","vase"]}, +{"id":"139061","label":"letting glue bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glue bottle"]}, +{"id":"191800","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"51945","label":"moving remote and small remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["remote","small remote"]}, +{"id":"69417","label":"putting a banana that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a banana"]}, +{"id":"83691","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"35220","label":"wiping stain off of fridge","template":"Wiping [something] off of [something]","placeholders":["stain","fridge"]}, +{"id":"28840","label":"moving a bottle and a glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a glass"]}, +{"id":"111709","label":"turning thermos bottle upside down","template":"Turning [something] upside down","placeholders":["thermos bottle"]}, +{"id":"94330","label":"stacking 3 tin cans","template":"Stacking [number of] [something]","placeholders":["3","tin cans"]}, +{"id":"57049","label":"dropping something into something","template":"Dropping [something] into [something]","placeholders":["something","something"]}, +{"id":"24972","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"103503","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"211520","label":"hitting match box with stick","template":"Hitting [something] with [something]","placeholders":["match box","stick"]}, +{"id":"154368","label":"showing thumb up to the camera","template":"Showing [something] to the camera","placeholders":["thumb up"]}, +{"id":"64515","label":"showing a pencil behind a hammer","template":"Showing [something] behind [something]","placeholders":["a pencil","a hammer"]}, +{"id":"35628","label":"pretending to put lighter on a surface","template":"Pretending to put [something] on a surface","placeholders":["lighter"]}, +{"id":"113779","label":"stuffing tissue into box","template":"Stuffing [something] into [something]","placeholders":["tissue","box"]}, +{"id":"156507","label":"pretending to scoop suitcase up with hand","template":"Pretending to scoop [something] up with [something]","placeholders":["suitcase","hand"]}, +{"id":"136644","label":"holding paper over an ornament","template":"Holding [something] over [something]","placeholders":["paper","an ornament"]}, +{"id":"52838","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43876","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"49167","label":"pushing a lighter so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a lighter"]}, +{"id":"123630","label":"throwing usb cable in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["usb cable"]}, +{"id":"189367","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"44212","label":"putting coaster","template":"Putting [something similar to other things that are already on the table]","placeholders":["coaster"]}, +{"id":"84962","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"28209","label":"dropping something onto something","template":"Dropping [something] onto [something]","placeholders":["something","something"]}, +{"id":"96361","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"43315","label":"dropping a flip flop behind a box of origami cranes","template":"Dropping [something] behind [something]","placeholders":["a flip flop","a box of origami cranes"]}, +{"id":"114129","label":"showing piece of bread behind bottle","template":"Showing [something] behind [something]","placeholders":["piece of bread","bottle"]}, +{"id":"141732","label":"putting a cup, a knife and a spoon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a cup","a knife","a spoon"]}, +{"id":"77719","label":"putting 3 toy cars onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["3","toy cars","yellow note"]}, +{"id":"108136","label":"approaching red punching machine with your camera","template":"Approaching [something] with your camera","placeholders":["red punching machine"]}, +{"id":"97052","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"26380","label":"putting letter that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["letter"]}, +{"id":"106595","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"2645","label":"stuffing paper into a mug","template":"Stuffing [something] into [something]","placeholders":["paper","a mug"]}, +{"id":"18966","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"64373","label":"moving tablet up","template":"Moving [something] up","placeholders":["tablet"]}, +{"id":"67199","label":"putting a stapler in front of the match box","template":"Putting [something] in front of [something]","placeholders":["a stapler","the match box"]}, +{"id":"89496","label":"uncovering spoon","template":"Uncovering [something]","placeholders":["spoon"]}, +{"id":"70565","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"36620","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"164170","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"18689","label":"taking one marker","template":"Taking [one of many similar things on the table]","placeholders":["one marker"]}, +{"id":"44748","label":"lifting mobile phone with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["mobile phone","mobile phone"]}, +{"id":"153476","label":"tilting a book with a measuring tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a measuring tape"]}, +{"id":"212494","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"7675","label":"pretending to put laundry detergent onto a washing machine","template":"Pretending to put [something] onto [something]","placeholders":["laundry detergent","a washing machine"]}, +{"id":"177775","label":"turning the camera downwards while filming tea box","template":"Turning the camera downwards while filming [something]","placeholders":["tea box"]}, +{"id":"193283","label":"pretending to pour water out of a mug, but the mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a mug","the mug"]}, +{"id":"138997","label":"pretending to pick a box of juice up","template":"Pretending to pick [something] up","placeholders":["a box of juice"]}, +{"id":"20890","label":"pretending to close a box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a box"]}, +{"id":"154208","label":"moving a toy car down","template":"Moving [something] down","placeholders":["a toy car"]}, +{"id":"156912","label":"putting small sharpener on a surface","template":"Putting [something] on a surface","placeholders":["small sharpener"]}, +{"id":"201874","label":"spilling water next to a container","template":"Spilling [something] next to [something]","placeholders":["water","a container"]}, +{"id":"166797","label":"putting something similar to other things that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar to other things that are already on the table"]}, +{"id":"9037","label":"showing money on top of chair","template":"Showing [something] on top of [something]","placeholders":["money","chair"]}, +{"id":"14004","label":"touching (without moving) bottle cap of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["bottle cap","bottle"]}, +{"id":"189328","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"161257","label":"teething ring falling like a rock","template":"[Something] falling like a rock","placeholders":["teething ring"]}, +{"id":"71728","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"95667","label":"a bottle being deflected from a wall","template":"[Something] being deflected from [something]","placeholders":["a bottle","a wall"]}, +{"id":"94158","label":"pretending to be tearing a fidget spinner","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a fidget spinner"]}, +{"id":"155705","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"84062","label":"showing doctor sign to the camera","template":"Showing [something] to the camera","placeholders":["doctor sign"]}, +{"id":"161043","label":"pretending to be tearing silicone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["silicone"]}, +{"id":"35870","label":"letting a can roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a can"]}, +{"id":"183708","label":"pushing a mug from right to left","template":"Pushing [something] from right to left","placeholders":["a mug"]}, +{"id":"38954","label":"pushing a charger from left to right","template":"Pushing [something] from left to right","placeholders":["a charger"]}, +{"id":"29556","label":"pretending to put bottle next to bottle","template":"Pretending to put [something] next to [something]","placeholders":["bottle","bottle"]}, +{"id":"60790","label":"pulling two ends of hair tie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair tie"]}, +{"id":"43799","label":"uncovering jar","template":"Uncovering [something]","placeholders":["jar"]}, +{"id":"139114","label":"poking a toy bunny so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a toy bunny"]}, +{"id":"210862","label":"showing name plate to the camera","template":"Showing [something] to the camera","placeholders":["name plate"]}, +{"id":"187386","label":"holding comb over remote control","template":"Holding [something] over [something]","placeholders":["comb","remote control"]}, +{"id":"13823","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"147203","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"36317","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"39332","label":"tilting book with package on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","package"]}, +{"id":"4709","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"97677","label":"pushing striker coin with wooden stick","template":"Pushing [something] with [something]","placeholders":["striker coin","wooden stick"]}, +{"id":"193244","label":"uncovering eyeshadow","template":"Uncovering [something]","placeholders":["eyeshadow"]}, +{"id":"19088","label":"moving package down","template":"Moving [something] down","placeholders":["package"]}, +{"id":"129417","label":"putting three pieces of paper towel onto box","template":"Putting [number of] [something] onto [something]","placeholders":["three","pieces of paper towel","box"]}, +{"id":"69390","label":"moving cotton and cotton closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cotton","cotton"]}, +{"id":"147675","label":"plugging charger into extension cord","template":"Plugging [something] into [something]","placeholders":["charger","extension cord"]}, +{"id":"43138","label":"pushing blanket from left to right","template":"Pushing [something] from left to right","placeholders":["blanket"]}, +{"id":"131042","label":"taking a doll out of another doll","template":"Taking [something] out of [something]","placeholders":["a doll","another doll"]}, +{"id":"166241","label":"approaching banana leaves with your camera","template":"Approaching [something] with your camera","placeholders":["banana leaves"]}, +{"id":"83546","label":"putting tomato into bowl","template":"Putting [something] into [something]","placeholders":["tomato","bowl"]}, +{"id":"48021","label":"pretending to turn orange post-it upside down","template":"Pretending to turn [something] upside down","placeholders":["orange post-it"]}, +{"id":"216344","label":"putting picture frame in front of toiletpaper","template":"Putting [something] in front of [something]","placeholders":["picture frame","toiletpaper"]}, +{"id":"69819","label":"removing a mug, revealing a spoon behind","template":"Removing [something], revealing [something] behind","placeholders":["a mug","a spoon"]}, +{"id":"19415","label":"turning plastic bottle upside down","template":"Turning [something] upside down","placeholders":["plastic bottle"]}, +{"id":"209572","label":"rolling luggage on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["luggage"]}, +{"id":"27539","label":"bending headband so that it deforms","template":"Bending [something] so that it deforms","placeholders":["headband"]}, +{"id":"168029","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"124553","label":"throwing tea spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tea spoon"]}, +{"id":"40518","label":"tilting phone with pencil on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["phone","pencil"]}, +{"id":"51449","label":"touching (without moving) nosel of toothbrush","template":"Touching (without moving) [part] of [something]","placeholders":["nosel","toothbrush"]}, +{"id":"97706","label":"spilling yoghurt next to glass","template":"Spilling [something] next to [something]","placeholders":["yoghurt","glass"]}, +{"id":"147987","label":"moving a battery down","template":"Moving [something] down","placeholders":["a battery"]}, +{"id":"91410","label":"taking yellow colour pen of many similar colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["yellow colour pen of many similar colour pens on the table"]}, +{"id":"110768","label":"throwing green toy car onto a surface","template":"Throwing [something] onto a surface","placeholders":["green toy car"]}, +{"id":"214816","label":"poking highlighter so that it falls over","template":"Poking [something] so that it falls over","placeholders":["highlighter"]}, +{"id":"44183","label":"tilting a box with a piece of plastic on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","a piece of plastic"]}, +{"id":"77738","label":"stacking 2 toy wheels","template":"Stacking [number of] [something]","placeholders":["2","toy wheels"]}, +{"id":"153613","label":"holding pen over bottle","template":"Holding [something] over [something]","placeholders":["pen","bottle"]}, +{"id":"90979","label":"letting a small ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a small ball"]}, +{"id":"192450","label":"putting toy idol into orange bowl","template":"Putting [something] into [something]","placeholders":["toy idol","orange bowl"]}, +{"id":"26839","label":"putting 3 colour pens onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["3","colour pens","blue note"]}, +{"id":"98966","label":"pretending to open book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["book"]}, +{"id":"159182","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"37042","label":"spinning marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker"]}, +{"id":"196208","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"120594","label":"putting glasses behind glass cup","template":"Putting [something] behind [something]","placeholders":["glasses","glass cup"]}, +{"id":"218684","label":"holding a fork over a sauce container","template":"Holding [something] over [something]","placeholders":["a fork","a sauce container"]}, +{"id":"217129","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"181985","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"45474","label":"plugging wire into microcontroller but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["wire","microcontroller"]}, +{"id":"142616","label":"pouring cereal into a bowl","template":"Pouring [something] into [something]","placeholders":["cereal","a bowl"]}, +{"id":"53972","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"107532","label":"putting matchstick","template":"Putting [something similar to other things that are already on the table]","placeholders":["matchstick"]}, +{"id":"12310","label":"putting something, something and something on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["something","something","something"]}, +{"id":"38403","label":"pretending or failing to wipe water off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["water","table"]}, +{"id":"52717","label":"pretending to throw pack","template":"Pretending to throw [something]","placeholders":["pack"]}, +{"id":"165886","label":"spinning ring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ring"]}, +{"id":"99224","label":"tilting iphone with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["iphone","pen"]}, +{"id":"119911","label":"pretending to take cellphone from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","table"]}, +{"id":"216970","label":"dropping a comb into a box","template":"Dropping [something] into [something]","placeholders":["a comb","a box"]}, +{"id":"209810","label":"pouring water into a sink","template":"Pouring [something] into [something]","placeholders":["water","a sink"]}, +{"id":"95120","label":"spinning pendrive that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pendrive"]}, +{"id":"66609","label":"dropping book in front of plastic-container","template":"Dropping [something] in front of [something]","placeholders":["book","plastic-container"]}, +{"id":"95884","label":"throwing tooth paste","template":"Throwing [something]","placeholders":["tooth paste"]}, +{"id":"125327","label":"attaching a sticky note to a bowl","template":"Attaching [something] to [something]","placeholders":["a sticky note","a bowl"]}, +{"id":"43009","label":"uncovering blinds","template":"Uncovering [something]","placeholders":["blinds"]}, +{"id":"84631","label":"pretending to put orange behind a bag","template":"Pretending to put [something] behind [something]","placeholders":["orange","a bag"]}, +{"id":"120692","label":"taking a block","template":"Taking [one of many similar things on the table]","placeholders":["a block"]}, +{"id":"68578","label":"turning the camera right while filming pad lock","template":"Turning the camera right while filming [something]","placeholders":["pad lock"]}, +{"id":"110564","label":"showing that a plastic box is empty","template":"Showing that [something] is empty","placeholders":["a plastic box"]}, +{"id":"129856","label":"putting a dvd behind a tissue box","template":"Putting [something] behind [something]","placeholders":["a dvd","a tissue box"]}, +{"id":"194528","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"217077","label":"putting cutting board in front of clock","template":"Putting [something] in front of [something]","placeholders":["cutting board","clock"]}, +{"id":"29714","label":"showing number plate to the camera","template":"Showing [something] to the camera","placeholders":["number plate"]}, +{"id":"175014","label":"moving away from white board clip with your camera","template":"Moving away from [something] with your camera","placeholders":["white board clip"]}, +{"id":"160529","label":"moving silicone towards the camera","template":"Moving [something] towards the camera","placeholders":["silicone"]}, +{"id":"125183","label":"moving a pen closer to marker","template":"Moving [something] closer to [something]","placeholders":["a pen","marker"]}, +{"id":"68811","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43345","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"136567","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"99051","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"181793","label":"turning hourglass upside down","template":"Turning [something] upside down","placeholders":["hourglass"]}, +{"id":"36907","label":"pulling a spoon from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a spoon","a box"]}, +{"id":"80573","label":"squeezing a dish sponge","template":"Squeezing [something]","placeholders":["a dish sponge"]}, +{"id":"182272","label":"throwing a sock against the wall","template":"Throwing [something] against [something]","placeholders":["a sock","the wall"]}, +{"id":"25769","label":"poking sea shell so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["sea shell"]}, +{"id":"143967","label":"poking plush doll so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["plush doll"]}, +{"id":"86832","label":"moving usb cable and smarthphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb cable","smarthphone"]}, +{"id":"93613","label":"moving a fork down","template":"Moving [something] down","placeholders":["a fork"]}, +{"id":"23019","label":"digging lighter out of soil","template":"Digging [something] out of [something]","placeholders":["lighter","soil"]}, +{"id":"11672","label":"spilling cleaner onto floor","template":"Spilling [something] onto [something]","placeholders":["cleaner","floor"]}, +{"id":"68670","label":"hitting glass with spoon","template":"Hitting [something] with [something]","placeholders":["glass","spoon"]}, +{"id":"151913","label":"dropping a marker pen behind a box","template":"Dropping [something] behind [something]","placeholders":["a marker pen","a box"]}, +{"id":"96349","label":"lifting up one end of tablet box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["tablet box"]}, +{"id":"139640","label":"pretending to pick wallet up","template":"Pretending to pick [something] up","placeholders":["wallet"]}, +{"id":"211654","label":"sprinkling glitter onto paper","template":"Sprinkling [something] onto [something]","placeholders":["glitter","paper"]}, +{"id":"129019","label":"pushing phone with pen","template":"Pushing [something] with [something]","placeholders":["phone","pen"]}, +{"id":"45806","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"82769","label":"throwing a feather in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a feather"]}, +{"id":"138002","label":"tilting a plate with a battery on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plate","a battery"]}, +{"id":"132364","label":"putting knife into knife holder","template":"Putting [something] into [something]","placeholders":["knife","knife holder"]}, +{"id":"51295","label":"moving remote and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["remote","remote"]}, +{"id":"202718","label":"stacking 3 cookie packages","template":"Stacking [number of] [something]","placeholders":["3","cookie packages"]}, +{"id":"113757","label":"dropping a matchstick behind a book","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a book"]}, +{"id":"151505","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"142778","label":"tearing cleaning cloth into two pieces","template":"Tearing [something] into two pieces","placeholders":["cleaning cloth"]}, +{"id":"117601","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"141784","label":"a chip falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a chip"]}, +{"id":"174585","label":"hitting toy with hammer","template":"Hitting [something] with [something]","placeholders":["toy","hammer"]}, +{"id":"216878","label":"poking a fork so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a fork"]}, +{"id":"134197","label":"taking screw from table","template":"Taking [something] from [somewhere]","placeholders":["screw","table"]}, +{"id":"50435","label":"spinning a remote controller so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a remote controller"]}, +{"id":"40786","label":"lifting wallet with memory stick on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","memory stick"]}, +{"id":"112756","label":"holding bottle in front of fan","template":"Holding [something] in front of [something]","placeholders":["bottle","fan"]}, +{"id":"123488","label":"showing that salted snacks is inside food container","template":"Showing that [something] is inside [something]","placeholders":["salted snacks","food container"]}, +{"id":"15708","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"26563","label":"touching (without moving) outside of tank","template":"Touching (without moving) [part] of [something]","placeholders":["outside","tank"]}, +{"id":"47727","label":"holding a pen behind a cup","template":"Holding [something] behind [something]","placeholders":["a pen","a cup"]}, +{"id":"211220","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"67926","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"54357","label":"moving cigarette up","template":"Moving [something] up","placeholders":["cigarette"]}, +{"id":"47054","label":"showing that plastic case is empty","template":"Showing that [something] is empty","placeholders":["plastic case"]}, +{"id":"43855","label":"showing tube behind bottle","template":"Showing [something] behind [something]","placeholders":["tube","bottle"]}, +{"id":"13467","label":"poking a dog so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a dog"]}, +{"id":"46161","label":"laying candle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["candle"]}, +{"id":"43943","label":"remote colliding with mobile phone and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["remote","mobile phone"]}, +{"id":"96345","label":"moving silicone away from cardboard","template":"Moving [something] away from [something]","placeholders":["silicone","cardboard"]}, +{"id":"142870","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"41835","label":"putting a fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["a fork"]}, +{"id":"60868","label":"showing bottle behind book","template":"Showing [something] behind [something]","placeholders":["bottle","book"]}, +{"id":"140726","label":"throwing toy onto a surface","template":"Throwing [something] onto a surface","placeholders":["toy"]}, +{"id":"155339","label":"plugging cable into power supply","template":"Plugging [something] into [something]","placeholders":["cable","power supply"]}, +{"id":"60415","label":"wiping nutella off of a plastic spoon","template":"Wiping [something] off of [something]","placeholders":["nutella","a plastic spoon"]}, +{"id":"27484","label":"covering a pen with a shirt","template":"Covering [something] with [something]","placeholders":["a pen","a shirt"]}, +{"id":"181945","label":"poking mouse so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["mouse"]}, +{"id":"38537","label":"plugging headphone into laptop","template":"Plugging [something] into [something]","placeholders":["headphone","laptop"]}, +{"id":"103498","label":"covering toy figure with a piece of paper","template":"Covering [something] with [something]","placeholders":["toy figure","a piece of paper"]}, +{"id":"29662","label":"dropping pen next to paper","template":"Dropping [something] next to [something]","placeholders":["pen","paper"]}, +{"id":"158404","label":"putting a pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pen"]}, +{"id":"118748","label":"poking cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cup"]}, +{"id":"88654","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"43133","label":"stuffing blanket into box","template":"Stuffing [something] into [something]","placeholders":["blanket","box"]}, +{"id":"74754","label":"moving tiolet paper away from tiolet paper","template":"Moving [something] away from [something]","placeholders":["tiolet paper","tiolet paper"]}, +{"id":"19691","label":"removing lotion, revealing small bottle behind","template":"Removing [something], revealing [something] behind","placeholders":["lotion","small bottle"]}, +{"id":"142038","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"48464","label":"pretending to put a cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cup"]}, +{"id":"155421","label":"holding sponge over bed","template":"Holding [something] over [something]","placeholders":["sponge","bed"]}, +{"id":"169068","label":"piling bags up","template":"Piling [something] up","placeholders":["bags"]}, +{"id":"27404","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"135385","label":"throwing a piece of cloth onto a surface","template":"Throwing [something] onto a surface","placeholders":["a piece of cloth"]}, +{"id":"177251","label":"poking a bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a bottle"]}, +{"id":"137007","label":"pulling two ends of ballpoint pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["ballpoint pen"]}, +{"id":"22357","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"97368","label":"holding cup over lamp","template":"Holding [something] over [something]","placeholders":["cup","lamp"]}, +{"id":"55968","label":"covering doll with doily","template":"Covering [something] with [something]","placeholders":["doll","doily"]}, +{"id":"184318","label":"dropping purse onto clothes","template":"Dropping [something] onto [something]","placeholders":["purse","clothes"]}, +{"id":"9163","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181378","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"62602","label":"pen being deflected from banana","template":"[Something] being deflected from [something]","placeholders":["pen","banana"]}, +{"id":"65760","label":"scooping salt up with spoon","template":"Scooping [something] up with [something]","placeholders":["salt","spoon"]}, +{"id":"33701","label":"pushing an eraser off of a book","template":"Pushing [something] off of [something]","placeholders":["an eraser","a book"]}, +{"id":"126021","label":"plugging a charger into a laptop","template":"Plugging [something] into [something]","placeholders":["a charger","a laptop"]}, +{"id":"87711","label":"moving pen and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","marker"]}, +{"id":"93569","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"11495","label":"putting rice upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["rice"]}, +{"id":"40341","label":"pulling two ends of spponch so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["spponch"]}, +{"id":"25961","label":"moving red spoon down","template":"Moving [something] down","placeholders":["red spoon"]}, +{"id":"33659","label":"uncovering a pear","template":"Uncovering [something]","placeholders":["a pear"]}, +{"id":"77886","label":"hitting book with calculator","template":"Hitting [something] with [something]","placeholders":["book","calculator"]}, +{"id":"66421","label":"spinning a toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy"]}, +{"id":"203992","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"139642","label":"putting ruler behind mug","template":"Putting [something] behind [something]","placeholders":["ruler","mug"]}, +{"id":"217421","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"24644","label":"pretending to be tearing selfi stick","template":"Pretending to be tearing [something that is not tearable]","placeholders":["selfi stick"]}, +{"id":"26938","label":"moving box closer to car","template":"Moving [something] closer to [something]","placeholders":["box","car"]}, +{"id":"184342","label":"moving a boot down","template":"Moving [something] down","placeholders":["a boot"]}, +{"id":"130116","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"146367","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"133332","label":"pushing a glass with a banana","template":"Pushing [something] with [something]","placeholders":["a glass","a banana"]}, +{"id":"204813","label":"pushing remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote"]}, +{"id":"28909","label":"holding small stone in front of rectangular box","template":"Holding [something] in front of [something]","placeholders":["small stone","rectangular box"]}, +{"id":"132447","label":"uncovering coin","template":"Uncovering [something]","placeholders":["coin"]}, +{"id":"39137","label":"stuffing keychain into black pouch","template":"Stuffing [something] into [something]","placeholders":["keychain","black pouch"]}, +{"id":"56726","label":"wiping toothpaste off of table","template":"Wiping [something] off of [something]","placeholders":["toothpaste","table"]}, +{"id":"49546","label":"moving simcard down","template":"Moving [something] down","placeholders":["simcard"]}, +{"id":"190480","label":"putting blue pen on a surface","template":"Putting [something] on a surface","placeholders":["blue pen"]}, +{"id":"94056","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64086","label":"taking a cup out of the microwave","template":"Taking [something] out of [something]","placeholders":["a cup","the microwave"]}, +{"id":"153513","label":"putting pencil behind toy car","template":"Putting [something] behind [something]","placeholders":["pencil","toy car"]}, +{"id":"101379","label":"lifting a surface with carpet on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["carpet"]}, +{"id":"207859","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"86006","label":"twisting ribbon cable","template":"Twisting [something]","placeholders":["ribbon cable"]}, +{"id":"174410","label":"pushing can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["can"]}, +{"id":"140212","label":"poking lipstick so that it falls over","template":"Poking [something] so that it falls over","placeholders":["lipstick"]}, +{"id":"66504","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"144105","label":"lifting orange cup up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["orange cup"]}, +{"id":"204422","label":"pretending or failing to wipe ink mark off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink mark","table"]}, +{"id":"111689","label":"putting pillow into chair","template":"Putting [something] into [something]","placeholders":["pillow","chair"]}, +{"id":"199467","label":"moving board clip away from pebble","template":"Moving [something] away from [something]","placeholders":["board clip","pebble"]}, +{"id":"131283","label":"a handkerchief falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a handkerchief"]}, +{"id":"125112","label":"holding bottle in front of computer","template":"Holding [something] in front of [something]","placeholders":["bottle","computer"]}, +{"id":"207851","label":"hitting cup with cup","template":"Hitting [something] with [something]","placeholders":["cup","cup"]}, +{"id":"151641","label":"showing tibex mouse behind glas","template":"Showing [something] behind [something]","placeholders":["tibex mouse","glas"]}, +{"id":"219701","label":"pretending to put plastic screwcap into mug","template":"Pretending to put [something] into [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"92321","label":"lifting up one end of spanner, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spanner"]}, +{"id":"163739","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"46410","label":"digging rock out of dirt","template":"Digging [something] out of [something]","placeholders":["rock","dirt"]}, +{"id":"13138","label":"showing that glass jar is empty","template":"Showing that [something] is empty","placeholders":["glass jar"]}, +{"id":"9152","label":"uncovering pencil","template":"Uncovering [something]","placeholders":["pencil"]}, +{"id":"48167","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"163950","label":"throwing earphones","template":"Throwing [something]","placeholders":["earphones"]}, +{"id":"122281","label":"opening bag's chain","template":"Opening [something]","placeholders":["bag's chain"]}, +{"id":"170880","label":"spreading peanut butter onto apple slice","template":"Spreading [something] onto [something]","placeholders":["peanut butter","apple slice"]}, +{"id":"85779","label":"pretending to close a laptop without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a laptop"]}, +{"id":"161872","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"138207","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"32191","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"5668","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"80436","label":"turning the camera right while filming advertisement board","template":"Turning the camera right while filming [something]","placeholders":["advertisement board"]}, +{"id":"116286","label":"tilting napkin with plastic twist tie on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["napkin","plastic twist tie"]}, +{"id":"4448","label":"pretending to be tearing dishtowel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["dishtowel"]}, +{"id":"51999","label":"picking a ball up","template":"Picking [something] up","placeholders":["a ball"]}, +{"id":"84661","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"30256","label":"putting sunglasses into box","template":"Putting [something] into [something]","placeholders":["sunglasses","box"]}, +{"id":"118280","label":"lifting laptop with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["laptop","mouse"]}, +{"id":"104974","label":"cube falling like a rock","template":"[Something] falling like a rock","placeholders":["cube"]}, +{"id":"182774","label":"pretending to pick candle up","template":"Pretending to pick [something] up","placeholders":["candle"]}, +{"id":"88339","label":"holding cup in front of fan","template":"Holding [something] in front of [something]","placeholders":["cup","fan"]}, +{"id":"4443","label":"moving paper and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper","paper"]}, +{"id":"180344","label":"spinning baseball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["baseball"]}, +{"id":"73115","label":"pushing a piece of sponge so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a piece of sponge"]}, +{"id":"199645","label":"throwing bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle"]}, +{"id":"48730","label":"pushing marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["marker"]}, +{"id":"47106","label":"moving a pair of scissors up","template":"Moving [something] up","placeholders":["a pair of scissors"]}, +{"id":"87921","label":"pen colliding with purse and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pen","purse"]}, +{"id":"54675","label":"turning the camera right while filming small hand gel","template":"Turning the camera right while filming [something]","placeholders":["small hand gel"]}, +{"id":"27731","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"207402","label":"uncovering book","template":"Uncovering [something]","placeholders":["book"]}, +{"id":"190260","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"86035","label":"poking pillow so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pillow"]}, +{"id":"109202","label":"picking marker up","template":"Picking [something] up","placeholders":["marker"]}, +{"id":"102985","label":"moving cup and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","cup"]}, +{"id":"168229","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"39873","label":"stuffing white kerchief into purse","template":"Stuffing [something] into [something]","placeholders":["white kerchief","purse"]}, +{"id":"6483","label":"spinning purse that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["purse"]}, +{"id":"180572","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"179989","label":"spinning pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pen"]}, +{"id":"131301","label":"turning the camera right while filming jeep","template":"Turning the camera right while filming [something]","placeholders":["jeep"]}, +{"id":"152734","label":"pushing a coin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a coin"]}, +{"id":"71265","label":"showing a boot on top of a chair","template":"Showing [something] on top of [something]","placeholders":["a boot","a chair"]}, +{"id":"24601","label":"plugging phone charger into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone charger","power socket"]}, +{"id":"124806","label":"unfolding notebook","template":"Unfolding [something]","placeholders":["notebook"]}, +{"id":"4929","label":"pretending to take brush from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["brush","floor"]}, +{"id":"119183","label":"moving tree branch up","template":"Moving [something] up","placeholders":["tree branch"]}, +{"id":"208282","label":"pulling lipstick from behind of deodorant","template":"Pulling [something] from behind of [something]","placeholders":["lipstick","deodorant"]}, +{"id":"219796","label":"lifting tv remote with ninja turtle toy on it","template":"Lifting [something] with [something] on it","placeholders":["tv remote","ninja turtle toy"]}, +{"id":"50228","label":"poking a stack of pillows without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["pillows"]}, +{"id":"218363","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"171263","label":"moving a cup closer to a bottle","template":"Moving [something] closer to [something]","placeholders":["a cup","a bottle"]}, +{"id":"46937","label":"moving a small jar away from a jug","template":"Moving [something] away from [something]","placeholders":["a small jar","a jug"]}, +{"id":"159928","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"93921","label":"holding shower head behind tap","template":"Holding [something] behind [something]","placeholders":["shower head","tap"]}, +{"id":"101217","label":"moving mobile up","template":"Moving [something] up","placeholders":["mobile"]}, +{"id":"41416","label":"dropping bear in front of chair","template":"Dropping [something] in front of [something]","placeholders":["bear","chair"]}, +{"id":"29297","label":"taking hairpins","template":"Taking [one of many similar things on the table]","placeholders":["hairpins"]}, +{"id":"55161","label":"tipping mouthwash bottle over","template":"Tipping [something] over","placeholders":["mouthwash bottle"]}, +{"id":"159924","label":"tearing a sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a sheet of paper"]}, +{"id":"121523","label":"pulling two ends of book but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["book"]}, +{"id":"171596","label":"showing that plastic jar is empty","template":"Showing that [something] is empty","placeholders":["plastic jar"]}, +{"id":"108076","label":"pretending to put cd cover on a surface","template":"Pretending to put [something] on a surface","placeholders":["cd cover"]}, +{"id":"28538","label":"squeezing a soda can","template":"Squeezing [something]","placeholders":["a soda can"]}, +{"id":"125216","label":"pouring water into bucket until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","bucket"]}, +{"id":"181459","label":"holding sieve next to tap","template":"Holding [something] next to [something]","placeholders":["sieve","tap"]}, +{"id":"188731","label":"pulling cookie box from left to right","template":"Pulling [something] from left to right","placeholders":["cookie box"]}, +{"id":"8214","label":"moving tv controller closer to hair comb","template":"Moving [something] closer to [something]","placeholders":["tv controller","hair comb"]}, +{"id":"98665","label":"spilling water next to gas stove","template":"Spilling [something] next to [something]","placeholders":["water","gas stove"]}, +{"id":"114789","label":"moving jacket down","template":"Moving [something] down","placeholders":["jacket"]}, +{"id":"133200","label":"tilting beer can with crayon on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["beer can","crayon"]}, +{"id":"162595","label":"moving keys closer to phone","template":"Moving [something] closer to [something]","placeholders":["keys","phone"]}, +{"id":"205011","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"205658","label":"holding a spoon over a cup","template":"Holding [something] over [something]","placeholders":["a spoon","a cup"]}, +{"id":"17161","label":"putting red spoon that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["red spoon"]}, +{"id":"106034","label":"picking pen up","template":"Picking [something] up","placeholders":["pen"]}, +{"id":"15785","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"195941","label":"pretending to put the shampoo on a surface","template":"Pretending to put [something] on a surface","placeholders":["the shampoo"]}, +{"id":"205232","label":"spilling earrings onto the table","template":"Spilling [something] onto [something]","placeholders":["earrings","the table"]}, +{"id":"189608","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"219259","label":"laying shampoo bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["shampoo bottle"]}, +{"id":"13119","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"127636","label":"removing cup, revealing lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["cup","lighter"]}, +{"id":"15607","label":"holding mouse behind book","template":"Holding [something] behind [something]","placeholders":["mouse","book"]}, +{"id":"90648","label":"putting paperweight on a surface","template":"Putting [something] on a surface","placeholders":["paperweight"]}, +{"id":"161637","label":"moving camera closer to dry erase board","template":"Moving [something] closer to [something]","placeholders":["camera","dry erase board"]}, +{"id":"61072","label":"taking shirt from bed","template":"Taking [something] from [somewhere]","placeholders":["shirt","bed"]}, +{"id":"180765","label":"paper falling to the ground falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper falling to the ground"]}, +{"id":"209704","label":"pushing red hair band from right to left","template":"Pushing [something] from right to left","placeholders":["red hair band"]}, +{"id":"207771","label":"covering die with paper towel","template":"Covering [something] with [something]","placeholders":["die","paper towel"]}, +{"id":"35575","label":"picking purse up","template":"Picking [something] up","placeholders":["purse"]}, +{"id":"37280","label":"putting razor blade next to pink book","template":"Putting [something] next to [something]","placeholders":["razor blade","pink book"]}, +{"id":"40676","label":"turning the camera upwards while filming microwave","template":"Turning the camera upwards while filming [something]","placeholders":["microwave"]}, +{"id":"39213","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"110933","label":"holding vape behind wall","template":"Holding [something] behind [something]","placeholders":["vape","wall"]}, +{"id":"164048","label":"taking setofcompasses out of mug","template":"Taking [something] out of [something]","placeholders":["setofcompasses","mug"]}, +{"id":"195886","label":"taking coin out of cup","template":"Taking [something] out of [something]","placeholders":["coin","cup"]}, +{"id":"161206","label":"pulling something from left to right","template":"Pulling [something] from left to right","placeholders":["something"]}, +{"id":"156860","label":"holding a pen over dictionary","template":"Holding [something] over [something]","placeholders":["a pen","dictionary"]}, +{"id":"187422","label":"putting the letter a upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["the letter a"]}, +{"id":"184481","label":"moving eraser and sharpner closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eraser","sharpner"]}, +{"id":"182929","label":"stuffing a packet into a small container","template":"Stuffing [something] into [something]","placeholders":["a packet","a small container"]}, +{"id":"115602","label":"showing bannana to the camera","template":"Showing [something] to the camera","placeholders":["bannana"]}, +{"id":"204553","label":"throwing a pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pencil"]}, +{"id":"204188","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"215451","label":"pretending to throw ball","template":"Pretending to throw [something]","placeholders":["ball"]}, +{"id":"24898","label":"putting gear wheel onto black pouch","template":"Putting [something] onto [something]","placeholders":["gear wheel","black pouch"]}, +{"id":"98600","label":"pretending to scoop cereal up with measuring cup","template":"Pretending to scoop [something] up with [something]","placeholders":["cereal","measuring cup"]}, +{"id":"124507","label":"tilting book with tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","tape"]}, +{"id":"130106","label":"pretending to put plastic toy on a surface","template":"Pretending to put [something] on a surface","placeholders":["plastic toy"]}, +{"id":"125857","label":"moving an eraser up","template":"Moving [something] up","placeholders":["an eraser"]}, +{"id":"180341","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"8943","label":"taking tomato out of saucepan","template":"Taking [something] out of [something]","placeholders":["tomato","saucepan"]}, +{"id":"19993","label":"covering sketch pen with book","template":"Covering [something] with [something]","placeholders":["sketch pen","book"]}, +{"id":"68934","label":"trying to bend a remote control so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a remote control"]}, +{"id":"165134","label":"pouring juice onto glass","template":"Pouring [something] onto [something]","placeholders":["juice","glass"]}, +{"id":"20135","label":"pushing spring from left to right","template":"Pushing [something] from left to right","placeholders":["spring"]}, +{"id":"162901","label":"twisting (wringing) tissue wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["tissue"]}, +{"id":"129277","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"109688","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"59940","label":"moving cup closer to stapler","template":"Moving [something] closer to [something]","placeholders":["cup","stapler"]}, +{"id":"6785","label":"turning the camera left while filming steam cake","template":"Turning the camera left while filming [something]","placeholders":["steam cake"]}, +{"id":"151206","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"110181","label":"covering a deodorant with a towel","template":"Covering [something] with [something]","placeholders":["a deodorant","a towel"]}, +{"id":"180193","label":"moving plate and glasses closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["plate","glasses"]}, +{"id":"159983","label":"pretending or trying and failing to twist knob","template":"Pretending or trying and failing to twist [something]","placeholders":["knob"]}, +{"id":"187603","label":"putting a fork into a metalic mug","template":"Putting [something] into [something]","placeholders":["a fork","a metalic mug"]}, +{"id":"197612","label":"marker falling like a rock","template":"[Something] falling like a rock","placeholders":["marker"]}, +{"id":"131231","label":"pouring water out of bucket","template":"Pouring [something] out of [something]","placeholders":["water","bucket"]}, +{"id":"194540","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"79556","label":"pushing spinning top so it spins","template":"Pushing [something] so it spins","placeholders":["spinning top"]}, +{"id":"185884","label":"putting banana and plastic bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["banana","plastic bottle"]}, +{"id":"38859","label":"plugging earbuds into cell phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earbuds","cell phone"]}, +{"id":"131742","label":"dropping keys onto bed","template":"Dropping [something] onto [something]","placeholders":["keys","bed"]}, +{"id":"218646","label":"spilling water behind a calculator","template":"Spilling [something] behind [something]","placeholders":["water","a calculator"]}, +{"id":"22666","label":"throwing key onto a surface","template":"Throwing [something] onto a surface","placeholders":["key"]}, +{"id":"51194","label":"showing that pot is empty","template":"Showing that [something] is empty","placeholders":["pot"]}, +{"id":"190456","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"186093","label":"putting white deodorant on a surface","template":"Putting [something] on a surface","placeholders":["white deodorant"]}, +{"id":"125656","label":"moving string down","template":"Moving [something] down","placeholders":["string"]}, +{"id":"5368","label":"squeezing felt","template":"Squeezing [something]","placeholders":["felt"]}, +{"id":"34240","label":"moving stapler away from scissors","template":"Moving [something] away from [something]","placeholders":["stapler","scissors"]}, +{"id":"88413","label":"bear being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["bear","couch"]}, +{"id":"87879","label":"putting item underneath pillow","template":"Putting [something] underneath [something]","placeholders":["item","pillow"]}, +{"id":"145197","label":"tipping a pot with garlic over, so a garlic bunch falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a pot","garlic","a garlic bunch"]}, +{"id":"217432","label":"dropping wallet next to remote control","template":"Dropping [something] next to [something]","placeholders":["wallet","remote control"]}, +{"id":"146493","label":"holding rubber duck behind cactus","template":"Holding [something] behind [something]","placeholders":["rubber duck","cactus"]}, +{"id":"160044","label":"moving toy duck and plastic flower closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy duck","plastic flower"]}, +{"id":"59921","label":"showing a photo of food to the camera","template":"Showing a photo of [something] to the camera","placeholders":["food"]}, +{"id":"181548","label":"lifting clock up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["clock"]}, +{"id":"88699","label":"pushing a notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a notebook"]}, +{"id":"145183","label":"pulling clamp from right to left","template":"Pulling [something] from right to left","placeholders":["clamp"]}, +{"id":"98582","label":"pretending to spread air onto dashboard","template":"Pretending to spread air onto [something]","placeholders":["dashboard"]}, +{"id":"19159","label":"putting 3 books onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["3","books","a box"]}, +{"id":"144584","label":"putting a can in front of a pair of tweezers","template":"Putting [something] in front of [something]","placeholders":["a can","a pair of tweezers"]}, +{"id":"123873","label":"squeezing a cotton pad","template":"Squeezing [something]","placeholders":["a cotton pad"]}, +{"id":"51707","label":"holding a pencil over a sink","template":"Holding [something] over [something]","placeholders":["a pencil","a sink"]}, +{"id":"185047","label":"putting bangle, hair clip and lotion on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bangle","hair clip","lotion"]}, +{"id":"8053","label":"opening box of cards","template":"Opening [something]","placeholders":["box of cards"]}, +{"id":"92195","label":"pushing am emergency lamp off of a tv remote","template":"Pushing [something] off of [something]","placeholders":["am emergency lamp","a tv remote"]}, +{"id":"19670","label":"lifting plate with glass on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glass"]}, +{"id":"84092","label":"pushing a battery so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a battery"]}, +{"id":"63981","label":"uncovering a plant","template":"Uncovering [something]","placeholders":["a plant"]}, +{"id":"204865","label":"squeezing toy","template":"Squeezing [something]","placeholders":["toy"]}, +{"id":"126522","label":"pushing a glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a glass"]}, +{"id":"108375","label":"pushing jar from left to right","template":"Pushing [something] from left to right","placeholders":["jar"]}, +{"id":"48313","label":"putting 2 spanners onto cookie box","template":"Putting [number of] [something] onto [something]","placeholders":["2","spanners","cookie box"]}, +{"id":"56648","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"217288","label":"putting key, comb and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["key","comb","cup"]}, +{"id":"64459","label":"putting 3 white board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["3","white board clips","cookie box lid"]}, +{"id":"183565","label":"putting a remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a remote"]}, +{"id":"47452","label":"stuffing bubble wrap into plastic bag","template":"Stuffing [something] into [something]","placeholders":["bubble wrap","plastic bag"]}, +{"id":"4324","label":"turning the camera right while filming pink toothbrush case","template":"Turning the camera right while filming [something]","placeholders":["pink toothbrush case"]}, +{"id":"211561","label":"showing rubber duck behind cactus","template":"Showing [something] behind [something]","placeholders":["rubber duck","cactus"]}, +{"id":"56288","label":"stuffing bondpaper into photocopier tray","template":"Stuffing [something] into [something]","placeholders":["bondpaper","photocopier tray"]}, +{"id":"8564","label":"closing file","template":"Closing [something]","placeholders":["file"]}, +{"id":"34480","label":"putting guitar pick into guitar","template":"Putting [something] into [something]","placeholders":["guitar pick","guitar"]}, +{"id":"204782","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"219866","label":"putting orange similar to","template":"Putting [something similar to other things that are already on the table]","placeholders":["orange similar to"]}, +{"id":"89298","label":"pouring water onto bowl","template":"Pouring [something] onto [something]","placeholders":["water","bowl"]}, +{"id":"52202","label":"holding monile next to other mobile","template":"Holding [something] next to [something]","placeholders":["monile","other mobile"]}, +{"id":"184118","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"196793","label":"pushing stapler with scissors","template":"Pushing [something] with [something]","placeholders":["stapler","scissors"]}, +{"id":"12990","label":"turning an apple upside down","template":"Turning [something] upside down","placeholders":["an apple"]}, +{"id":"79414","label":"turning bin upside down","template":"Turning [something] upside down","placeholders":["bin"]}, +{"id":"24063","label":"pretending to put pumpkin on a surface","template":"Pretending to put [something] on a surface","placeholders":["pumpkin"]}, +{"id":"155937","label":"tilting a notebook with a pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","a pen"]}, +{"id":"9781","label":"moving top of mug","template":"Moving [part] of [something]","placeholders":["top","mug"]}, +{"id":"129710","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"151665","label":"wooden piece being deflected from a concrete pillar","template":"[Something] being deflected from [something]","placeholders":["wooden piece","a concrete pillar"]}, +{"id":"112644","label":"dropping clothes peg into mug","template":"Dropping [something] into [something]","placeholders":["clothes peg","mug"]}, +{"id":"52734","label":"turning the camera left while filming bag","template":"Turning the camera left while filming [something]","placeholders":["bag"]}, +{"id":"191962","label":"covering glass of water with paper towel","template":"Covering [something] with [something]","placeholders":["glass of water","paper towel"]}, +{"id":"215975","label":"pretending to pick black pouch up","template":"Pretending to pick [something] up","placeholders":["black pouch"]}, +{"id":"204753","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"212577","label":"squeezing stress ball","template":"Squeezing [something]","placeholders":["stress ball"]}, +{"id":"135631","label":"pretending to squeeze a tub of handcream","template":"Pretending to squeeze [something]","placeholders":["a tub of handcream"]}, +{"id":"83291","label":"spinning a remote control that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a remote control"]}, +{"id":"45667","label":"holding a balloon in front of a book","template":"Holding [something] in front of [something]","placeholders":["a balloon","a book"]}, +{"id":"113563","label":"turning taschentücher upside down","template":"Turning [something] upside down","placeholders":["taschentücher"]}, +{"id":"48558","label":"lifting wallet up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["wallet"]}, +{"id":"96161","label":"attaching a magnet to a refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","a refrigerator"]}, +{"id":"55429","label":"dropping a pack of gum in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a pack of gum","a cup"]}, +{"id":"71089","label":"holding a bottle over letters","template":"Holding [something] over [something]","placeholders":["a bottle","letters"]}, +{"id":"2446","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"114180","label":"pulling bottle from right to left","template":"Pulling [something] from right to left","placeholders":["bottle"]}, +{"id":"1473","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"44143","label":"lifting up one end of pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pen"]}, +{"id":"140573","label":"moving a water bottle and a cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a water bottle","a cup"]}, +{"id":"93521","label":"plugging usb stick into laptop","template":"Plugging [something] into [something]","placeholders":["usb stick","laptop"]}, +{"id":"191738","label":"moving water bottle and water bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["water bottle","water bottle"]}, +{"id":"81536","label":"moving ruler up","template":"Moving [something] up","placeholders":["ruler"]}, +{"id":"130789","label":"putting 1 bowl onto head","template":"Putting [number of] [something] onto [something]","placeholders":["1","bowl","head"]}, +{"id":"199072","label":"pretending or failing to wipe stain off of phone","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","phone"]}, +{"id":"140919","label":"folding pants","template":"Folding [something]","placeholders":["pants"]}, +{"id":"219941","label":"moving foot pedal of a bicycle","template":"Moving [part] of [something]","placeholders":["foot pedal","a bicycle"]}, +{"id":"162398","label":"pretending to close bottle cap without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle cap"]}, +{"id":"22740","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"29368","label":"moving top of cd box","template":"Moving [part] of [something]","placeholders":["top","cd box"]}, +{"id":"71981","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"162156","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"21101","label":"moving glass of left","template":"Moving [part] of [something]","placeholders":["glass","left"]}, +{"id":"75436","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"204098","label":"burying spoon in hand towel","template":"Burying [something] in [something]","placeholders":["spoon","hand towel"]}, +{"id":"68513","label":"pretending to open trunk box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["trunk box"]}, +{"id":"39277","label":"pulling speaker from left to right","template":"Pulling [something] from left to right","placeholders":["speaker"]}, +{"id":"121394","label":"moving away from white gourd with your camera","template":"Moving away from [something] with your camera","placeholders":["white gourd"]}, +{"id":"6420","label":"putting toy wheel, marker pen and punching machine on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy wheel","marker pen","punching machine"]}, +{"id":"39814","label":"plugging data cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["data cable","charger"]}, +{"id":"144562","label":"pulling red spoon from right to left","template":"Pulling [something] from right to left","placeholders":["red spoon"]}, +{"id":"69434","label":"tipping a coin over","template":"Tipping [something] over","placeholders":["a coin"]}, +{"id":"49185","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"83104","label":"throwing thorwing something","template":"Throwing [something]","placeholders":["thorwing something"]}, +{"id":"32363","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"72277","label":"pushing box with pen","template":"Pushing [something] with [something]","placeholders":["box","pen"]}, +{"id":"50070","label":"hitting a soda lids with a hammer","template":"Hitting [something] with [something]","placeholders":["a soda lids","a hammer"]}, +{"id":"2934","label":"pushing toy two wheel trolly off of table","template":"Pushing [something] off of [something]","placeholders":["toy two wheel trolly","table"]}, +{"id":"29121","label":"hitting desk with toothbrush","template":"Hitting [something] with [something]","placeholders":["desk","toothbrush"]}, +{"id":"157635","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"106056","label":"lifting red bottlecap up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["red bottlecap"]}, +{"id":"84393","label":"spilling water onto a bowl","template":"Spilling [something] onto [something]","placeholders":["water","a bowl"]}, +{"id":"102538","label":"uncovering hot pot","template":"Uncovering [something]","placeholders":["hot pot"]}, +{"id":"8746","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"1113","label":"pushing box from left to right","template":"Pushing [something] from left to right","placeholders":["box"]}, +{"id":"5269","label":"spinning golf ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["golf ball"]}, +{"id":"7189","label":"poking cube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cube"]}, +{"id":"153528","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"124831","label":"digging puzzle piece out of middle of couch seat cushions","template":"Digging [something] out of [something]","placeholders":["puzzle piece","middle of couch seat cushions"]}, +{"id":"198336","label":"taking a four-sided object","template":"Taking [one of many similar things on the table]","placeholders":["a four-sided object"]}, +{"id":"103890","label":"pushing brush from left to right","template":"Pushing [something] from left to right","placeholders":["brush"]}, +{"id":"57312","label":"moving the spoon away from the fork","template":"Moving [something] away from [something]","placeholders":["the spoon","the fork"]}, +{"id":"52771","label":"sprinkling salt onto apple","template":"Sprinkling [something] onto [something]","placeholders":["salt","apple"]}, +{"id":"198706","label":"holding index cards in front of book","template":"Holding [something] in front of [something]","placeholders":["index cards","book"]}, +{"id":"84949","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"56604","label":"putting remote into bag","template":"Putting [something] into [something]","placeholders":["remote","bag"]}, +{"id":"167002","label":"putting shoe polish liquid container on a surface","template":"Putting [something] on a surface","placeholders":["shoe polish liquid container"]}, +{"id":"88084","label":"moving notebook and pigtail away from each other","template":"Moving [something] and [something] away from each other","placeholders":["notebook","pigtail"]}, +{"id":"182780","label":"putting a little bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["a little bottle"]}, +{"id":"54100","label":"stuffing carry bag into bag","template":"Stuffing [something] into [something]","placeholders":["carry bag","bag"]}, +{"id":"161316","label":"pushing duster with white coloured pen","template":"Pushing [something] with [something]","placeholders":["duster","white coloured pen"]}, +{"id":"179694","label":"holding headphones over wallet","template":"Holding [something] over [something]","placeholders":["headphones","wallet"]}, +{"id":"97913","label":"lifting a paper up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a paper"]}, +{"id":"96214","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"103415","label":"holding tumbler","template":"Holding [something]","placeholders":["tumbler"]}, +{"id":"51732","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"181749","label":"lifting lollipop up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["lollipop"]}, +{"id":"26002","label":"plugging a phone charger into a socket","template":"Plugging [something] into [something]","placeholders":["a phone charger","a socket"]}, +{"id":"100961","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"43847","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"193916","label":"cup falling like a rock","template":"[Something] falling like a rock","placeholders":["cup"]}, +{"id":"148919","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"3304","label":"closing an oven door","template":"Closing [something]","placeholders":["an oven door"]}, +{"id":"98012","label":"pushing lipstick from right to left","template":"Pushing [something] from right to left","placeholders":["lipstick"]}, +{"id":"179542","label":"pushing button so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["button"]}, +{"id":"137291","label":"putting orange on the edge of paper so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["orange","paper"]}, +{"id":"59087","label":"picking tv remote up","template":"Picking [something] up","placeholders":["tv remote"]}, +{"id":"19019","label":"dropping a screwdriver into a box","template":"Dropping [something] into [something]","placeholders":["a screwdriver","a box"]}, +{"id":"2968","label":"putting tooth brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["tooth brush"]}, +{"id":"122992","label":"dropping a wallet next to a mouse","template":"Dropping [something] next to [something]","placeholders":["a wallet","a mouse"]}, +{"id":"148938","label":"spinning cardboard tube so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cardboard tube"]}, +{"id":"200936","label":"tilting plate with rubber duck on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","rubber duck"]}, +{"id":"87164","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"88008","label":"boot colliding with boot and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["boot","boot"]}, +{"id":"51727","label":"tipping peanut butter over","template":"Tipping [something] over","placeholders":["peanut butter"]}, +{"id":"219673","label":"pushing punching machine from left to right","template":"Pushing [something] from left to right","placeholders":["punching machine"]}, +{"id":"55231","label":"pretending to be tearing specs cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["specs cover"]}, +{"id":"192797","label":"showing bottle behind can","template":"Showing [something] behind [something]","placeholders":["bottle","can"]}, +{"id":"88259","label":"pulling paper onto paper","template":"Pulling [something] onto [something]","placeholders":["paper","paper"]}, +{"id":"54400","label":"spilling water next to a glue stick","template":"Spilling [something] next to [something]","placeholders":["water","a glue stick"]}, +{"id":"12116","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"64454","label":"tipping a tin can over","template":"Tipping [something] over","placeholders":["a tin can"]}, +{"id":"34449","label":"holding key next to keypad","template":"Holding [something] next to [something]","placeholders":["key","keypad"]}, +{"id":"120038","label":"opening diary","template":"Opening [something]","placeholders":["diary"]}, +{"id":"93281","label":"taking mouse from table","template":"Taking [something] from [somewhere]","placeholders":["mouse","table"]}, +{"id":"127009","label":"pushing stapler from right to left","template":"Pushing [something] from right to left","placeholders":["stapler"]}, +{"id":"213751","label":"opening notebook","template":"Opening [something]","placeholders":["notebook"]}, +{"id":"84172","label":"opening a beer can","template":"Opening [something]","placeholders":["a beer can"]}, +{"id":"135196","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"80667","label":"taking matchstick","template":"Taking [one of many similar things on the table]","placeholders":["matchstick"]}, +{"id":"207043","label":"uncovering a mouse","template":"Uncovering [something]","placeholders":["a mouse"]}, +{"id":"131938","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"171666","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"173710","label":"putting crayon","template":"Putting [something similar to other things that are already on the table]","placeholders":["crayon"]}, +{"id":"154026","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"139805","label":"holding shot glass","template":"Holding [something]","placeholders":["shot glass"]}, +{"id":"4698","label":"pushing dvd case onto sock","template":"Pushing [something] onto [something]","placeholders":["dvd case","sock"]}, +{"id":"39785","label":"pretending to squeeze paperweight","template":"Pretending to squeeze [something]","placeholders":["paperweight"]}, +{"id":"44129","label":"moving a bottle and another bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","another bottle"]}, +{"id":"129612","label":"pretending to pick battery up","template":"Pretending to pick [something] up","placeholders":["battery"]}, +{"id":"100116","label":"moving cup and specs away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","specs"]}, +{"id":"53780","label":"moving container across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["container"]}, +{"id":"137899","label":"key falling like a rock","template":"[Something] falling like a rock","placeholders":["key"]}, +{"id":"219962","label":"tearing putty just a little bit","template":"Tearing [something] just a little bit","placeholders":["putty"]}, +{"id":"184458","label":"pushing cup with pen","template":"Pushing [something] with [something]","placeholders":["cup","pen"]}, +{"id":"142356","label":"covering cord with hands","template":"Covering [something] with [something]","placeholders":["cord","hands"]}, +{"id":"174056","label":"pouring liquid into a cup","template":"Pouring [something] into [something]","placeholders":["liquid","a cup"]}, +{"id":"58374","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"20377","label":"pretending to pick glasses up","template":"Pretending to pick [something] up","placeholders":["glasses"]}, +{"id":"144122","label":"putting a comb on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a comb","the table"]}, +{"id":"148893","label":"putting plate on the edge of can so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["plate","can"]}, +{"id":"49968","label":"attaching clip magnet to light switch panel","template":"Attaching [something] to [something]","placeholders":["clip magnet","light switch panel"]}, +{"id":"209612","label":"spinning cap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cap"]}, +{"id":"207592","label":"tipping drinking glass with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["drinking glass","water","water"]}, +{"id":"166933","label":"covering bed with sheet","template":"Covering [something] with [something]","placeholders":["bed","sheet"]}, +{"id":"80875","label":"holding rubik cube next to card","template":"Holding [something] next to [something]","placeholders":["rubik cube","card"]}, +{"id":"104006","label":"tearing a sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a sheet of paper"]}, +{"id":"36","label":"putting a remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a remote"]}, +{"id":"7935","label":"turning the camera left while filming transformer","template":"Turning the camera left while filming [something]","placeholders":["transformer"]}, +{"id":"15300","label":"tearing flower into two pieces","template":"Tearing [something] into two pieces","placeholders":["flower"]}, +{"id":"175556","label":"squeezing cream tube","template":"Squeezing [something]","placeholders":["cream tube"]}, +{"id":"61162","label":"closing a container","template":"Closing [something]","placeholders":["a container"]}, +{"id":"203180","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"110394","label":"holding rubik cube over card","template":"Holding [something] over [something]","placeholders":["rubik cube","card"]}, +{"id":"142775","label":"plugging extension cord into outlet","template":"Plugging [something] into [something]","placeholders":["extension cord","outlet"]}, +{"id":"202729","label":"spilling water next to a plate","template":"Spilling [something] next to [something]","placeholders":["water","a plate"]}, +{"id":"76196","label":"holding glass over bailer","template":"Holding [something] over [something]","placeholders":["glass","bailer"]}, +{"id":"213684","label":"putting lighter, cigarette pack and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["lighter","cigarette pack","cup"]}, +{"id":"39615","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"132025","label":"pretending to sprinkle air onto tablet","template":"Pretending to sprinkle air onto [something]","placeholders":["tablet"]}, +{"id":"145547","label":"moving orange post-it down","template":"Moving [something] down","placeholders":["orange post-it"]}, +{"id":"155923","label":"pulling black disc case from right to left","template":"Pulling [something] from right to left","placeholders":["black disc case"]}, +{"id":"207481","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"17498","label":"attaching post-it note to book","template":"Attaching [something] to [something]","placeholders":["post-it note","book"]}, +{"id":"38591","label":"taking letter","template":"Taking [one of many similar things on the table]","placeholders":["letter"]}, +{"id":"55925","label":"turning the camera left while filming dress","template":"Turning the camera left while filming [something]","placeholders":["dress"]}, +{"id":"17257","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"185322","label":"an envelope falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["an envelope"]}, +{"id":"67287","label":"opening oven","template":"Opening [something]","placeholders":["oven"]}, +{"id":"12829","label":"removing makeup bottle, revealing lipstick behind","template":"Removing [something], revealing [something] behind","placeholders":["makeup bottle","lipstick"]}, +{"id":"48257","label":"putting a container upright on the table","template":"Putting [something] upright on the table","placeholders":["a container"]}, +{"id":"137900","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"102786","label":"putting a bottle next to pen storage","template":"Putting [something] next to [something]","placeholders":["a bottle","pen storage"]}, +{"id":"179131","label":"pretending to poke wood blocks","template":"Pretending to poke [something]","placeholders":["wood blocks"]}, +{"id":"17372","label":"spinning a fidget spinner toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner toy"]}, +{"id":"141667","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"169121","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"157468","label":"twisting cord","template":"Twisting [something]","placeholders":["cord"]}, +{"id":"24886","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"79939","label":"pretending to take a lid out of a cabinet","template":"Pretending to take [something] out of [something]","placeholders":["a lid","a cabinet"]}, +{"id":"180723","label":"spinning celllphone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["celllphone"]}, +{"id":"42073","label":"pushing an egg so it spins","template":"Pushing [something] so it spins","placeholders":["an egg"]}, +{"id":"128996","label":"rolling spray bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["spray bottle"]}, +{"id":"46354","label":"poking stuff animal so that it falls over","template":"Poking [something] so that it falls over","placeholders":["stuff animal"]}, +{"id":"44549","label":"pretending to poke a pillow","template":"Pretending to poke [something]","placeholders":["a pillow"]}, +{"id":"101453","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"175300","label":"turning a pill bottle upside down","template":"Turning [something] upside down","placeholders":["a pill bottle"]}, +{"id":"197320","label":"moving the bottle closer to the pencil case","template":"Moving [something] closer to [something]","placeholders":["the bottle","the pencil case"]}, +{"id":"36139","label":"covering coupon with pamphlet","template":"Covering [something] with [something]","placeholders":["coupon","pamphlet"]}, +{"id":"28580","label":"trying but failing to attach block to chair because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["block","chair"]}, +{"id":"181053","label":"pretending or trying and failing to twist brush","template":"Pretending or trying and failing to twist [something]","placeholders":["brush"]}, +{"id":"73519","label":"showing that vessel is empty","template":"Showing that [something] is empty","placeholders":["vessel"]}, +{"id":"170185","label":"showing that tea cup is empty","template":"Showing that [something] is empty","placeholders":["tea cup"]}, +{"id":"115519","label":"poking scissors so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["scissors"]}, +{"id":"196881","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"114209","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"175363","label":"pushing wallet so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["wallet"]}, +{"id":"34488","label":"twisting pipe","template":"Twisting [something]","placeholders":["pipe"]}, +{"id":"55896","label":"showing tender coconut to the camera","template":"Showing [something] to the camera","placeholders":["tender coconut"]}, +{"id":"127051","label":"putting black disc case on a surface","template":"Putting [something] on a surface","placeholders":["black disc case"]}, +{"id":"53797","label":"pushing a bottle off of a table","template":"Pushing [something] off of [something]","placeholders":["a bottle","a table"]}, +{"id":"112551","label":"poking a stack of computers without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["computers"]}, +{"id":"219208","label":"showing that soap is inside drawer","template":"Showing that [something] is inside [something]","placeholders":["soap","drawer"]}, +{"id":"55643","label":"poking a hole into peanut butter","template":"Poking a hole into [some substance]","placeholders":["peanut butter"]}, +{"id":"145447","label":"moving box towards the camera","template":"Moving [something] towards the camera","placeholders":["box"]}, +{"id":"161041","label":"turning the camera right while filming picture","template":"Turning the camera right while filming [something]","placeholders":["picture"]}, +{"id":"9546","label":"turning the camera upwards while filming black disc case","template":"Turning the camera upwards while filming [something]","placeholders":["black disc case"]}, +{"id":"191512","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"34768","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"96072","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"25797","label":"piling paper up","template":"Piling [something] up","placeholders":["paper"]}, +{"id":"48721","label":"tearing gift envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["gift envelope"]}, +{"id":"116458","label":"dropping mouse behind keyboard","template":"Dropping [something] behind [something]","placeholders":["mouse","keyboard"]}, +{"id":"199745","label":"moving mobile up","template":"Moving [something] up","placeholders":["mobile"]}, +{"id":"171164","label":"lifting up one end of towel, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["towel"]}, +{"id":"81877","label":"pretending to open opening bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["opening bottle"]}, +{"id":"178404","label":"moving nickel and quarter away from each other","template":"Moving [something] and [something] away from each other","placeholders":["nickel","quarter"]}, +{"id":"25929","label":"moving a spoon away from a knife","template":"Moving [something] away from [something]","placeholders":["a spoon","a knife"]}, +{"id":"68485","label":"moving hand down","template":"Moving [something] down","placeholders":["hand"]}, +{"id":"84686","label":"pushing water bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["water bottle"]}, +{"id":"194298","label":"putting coins into cash box","template":"Putting [something] into [something]","placeholders":["coins","cash box"]}, +{"id":"81898","label":"plugging a cord into an extension cord","template":"Plugging [something] into [something]","placeholders":["a cord","an extension cord"]}, +{"id":"132006","label":"pretending to put bottle onto bowl","template":"Pretending to put [something] onto [something]","placeholders":["bottle","bowl"]}, +{"id":"115508","label":"holding sunglasses over mug","template":"Holding [something] over [something]","placeholders":["sunglasses","mug"]}, +{"id":"203901","label":"opening a closet door","template":"Opening [something]","placeholders":["a closet door"]}, +{"id":"199559","label":"moving something and something so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["something","something"]}, +{"id":"68149","label":"putting spoon and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["spoon","cup"]}, +{"id":"183143","label":"rolling an avocado on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an avocado"]}, +{"id":"73154","label":"moving toy idol up","template":"Moving [something] up","placeholders":["toy idol"]}, +{"id":"214021","label":"lifting purse with keys on it","template":"Lifting [something] with [something] on it","placeholders":["purse","keys"]}, +{"id":"23496","label":"taking one of many pen","template":"Taking [one of many similar things on the table]","placeholders":["one of many pen"]}, +{"id":"159341","label":"lifting a screw driver up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a screw driver"]}, +{"id":"158255","label":"covering a toy with a blanket","template":"Covering [something] with [something]","placeholders":["a toy","a blanket"]}, +{"id":"36758","label":"pushing cup with spoon","template":"Pushing [something] with [something]","placeholders":["cup","spoon"]}, +{"id":"73746","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"56349","label":"moving cell phone down","template":"Moving [something] down","placeholders":["cell phone"]}, +{"id":"133178","label":"showing that backpack is empty","template":"Showing that [something] is empty","placeholders":["backpack"]}, +{"id":"43735","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"102829","label":"dropping envelopes in front of candle","template":"Dropping [something] in front of [something]","placeholders":["envelopes","candle"]}, +{"id":"132376","label":"showing a glas bottle behind a pair of shoes","template":"Showing [something] behind [something]","placeholders":["a glas bottle","a pair of shoes"]}, +{"id":"114323","label":"putting box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["box"]}, +{"id":"94666","label":"pushing chair so it spins","template":"Pushing [something] so it spins","placeholders":["chair"]}, +{"id":"183954","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"108046","label":"tipping block over","template":"Tipping [something] over","placeholders":["block"]}, +{"id":"80215","label":"throwing letter in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["letter"]}, +{"id":"159703","label":"digging coin out of rice","template":"Digging [something] out of [something]","placeholders":["coin","rice"]}, +{"id":"51146","label":"moving a hairband away from a puzzle piece","template":"Moving [something] away from [something]","placeholders":["a hairband","a puzzle piece"]}, +{"id":"197195","label":"showing that pencil case is empty","template":"Showing that [something] is empty","placeholders":["pencil case"]}, +{"id":"200783","label":"putting brush, remote and bag on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["brush","remote","bag"]}, +{"id":"170730","label":"attaching paper to paper","template":"Attaching [something] to [something]","placeholders":["paper","paper"]}, +{"id":"893","label":"putting cotton balls into container","template":"Putting [something] into [something]","placeholders":["cotton balls","container"]}, +{"id":"202591","label":"turning the camera left while filming green toy car","template":"Turning the camera left while filming [something]","placeholders":["green toy car"]}, +{"id":"120511","label":"showing mobile on top of bed","template":"Showing [something] on top of [something]","placeholders":["mobile","bed"]}, +{"id":"103177","label":"picking small book up","template":"Picking [something] up","placeholders":["small book"]}, +{"id":"38000","label":"letting something roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["something"]}, +{"id":"173354","label":"holding phone next to headphones","template":"Holding [something] next to [something]","placeholders":["phone","headphones"]}, +{"id":"175194","label":"showing a photo of dog to the camera","template":"Showing a photo of [something] to the camera","placeholders":["dog"]}, +{"id":"74163","label":"tearing business card into two pieces","template":"Tearing [something] into two pieces","placeholders":["business card"]}, +{"id":"150105","label":"turning the camera upwards while filming food pack","template":"Turning the camera upwards while filming [something]","placeholders":["food pack"]}, +{"id":"178548","label":"pushing black pocket knife with metal bar","template":"Pushing [something] with [something]","placeholders":["black pocket knife","metal bar"]}, +{"id":"184233","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"146417","label":"taking a tea bag out of a mug","template":"Taking [something] out of [something]","placeholders":["a tea bag","a mug"]}, +{"id":"113557","label":"attaching a matchstick to a wall","template":"Attaching [something] to [something]","placeholders":["a matchstick","a wall"]}, +{"id":"99639","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"218009","label":"showing that rubbing alchol is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["rubbing alchol","a bottle"]}, +{"id":"170123","label":"pushing controller from right to left","template":"Pushing [something] from right to left","placeholders":["controller"]}, +{"id":"92611","label":"moving clasp of jewelry box","template":"Moving [part] of [something]","placeholders":["clasp","jewelry box"]}, +{"id":"121093","label":"putting a doll on a surface","template":"Putting [something] on a surface","placeholders":["a doll"]}, +{"id":"186299","label":"uncovering pencils","template":"Uncovering [something]","placeholders":["pencils"]}, +{"id":"82325","label":"pushing a clementine so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a clementine"]}, +{"id":"182795","label":"showing a coffee cup behind a notebook","template":"Showing [something] behind [something]","placeholders":["a coffee cup","a notebook"]}, +{"id":"170213","label":"a box of medicine falling like a rock","template":"[Something] falling like a rock","placeholders":["a box of medicine"]}, +{"id":"109932","label":"spinning a toy top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy top"]}, +{"id":"128065","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"76718","label":"moving the bottle and the pencil case away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the bottle","the pencil case"]}, +{"id":"3916","label":"taking screwdriver out of the case","template":"Taking [something] out of [something]","placeholders":["screwdriver","the case"]}, +{"id":"67907","label":"pretending to take plush from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["plush","surface"]}, +{"id":"216385","label":"pretending to be tearing a cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cloth"]}, +{"id":"85174","label":"putting bottle onto bottle","template":"Putting [something] onto [something]","placeholders":["bottle","bottle"]}, +{"id":"20401","label":"poking pineapple drink container so that it falls over","template":"Poking [something] so that it falls over","placeholders":["pineapple drink container"]}, +{"id":"203086","label":"opening a microwave oven","template":"Opening [something]","placeholders":["a microwave oven"]}, +{"id":"135581","label":"covering book with newspaper","template":"Covering [something] with [something]","placeholders":["book","newspaper"]}, +{"id":"32647","label":"attaching a cap to the whitner pen","template":"Attaching [something] to [something]","placeholders":["a cap","the whitner pen"]}, +{"id":"105132","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"67687","label":"pretending to put glass onto glass","template":"Pretending to put [something] onto [something]","placeholders":["glass","glass"]}, +{"id":"127642","label":"attaching clip to belt","template":"Attaching [something] to [something]","placeholders":["clip","belt"]}, +{"id":"129778","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"146629","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"203028","label":"taking sunglasses","template":"Taking [one of many similar things on the table]","placeholders":["sunglasses"]}, +{"id":"190241","label":"dropping a bottletop behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a bottletop","a padlock"]}, +{"id":"58450","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"25966","label":"turning coaster upside down","template":"Turning [something] upside down","placeholders":["coaster"]}, +{"id":"18620","label":"pretending to pick a screwdriver up","template":"Pretending to pick [something] up","placeholders":["a screwdriver"]}, +{"id":"136097","label":"pretending to pick pretending to pick up glass up","template":"Pretending to pick [something] up","placeholders":["pretending to pick up glass"]}, +{"id":"198080","label":"pulling two ends of a book but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a book"]}, +{"id":"123899","label":"pushing a remote control so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a remote control"]}, +{"id":"146718","label":"pushing plant so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plant"]}, +{"id":"191530","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"88362","label":"tipping pencil holder with pencils over, so pencils falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["pencil holder","pencils","pencils"]}, +{"id":"10866","label":"unfolding napkin","template":"Unfolding [something]","placeholders":["napkin"]}, +{"id":"198452","label":"putting a bear next to a ball","template":"Putting [something] next to [something]","placeholders":["a bear","a ball"]}, +{"id":"205408","label":"putting a box in front of stamp pad","template":"Putting [something] in front of [something]","placeholders":["a box","stamp pad"]}, +{"id":"18715","label":"pushing smoothie so it spins","template":"Pushing [something] so it spins","placeholders":["smoothie"]}, +{"id":"118514","label":"throwing a book","template":"Throwing [something]","placeholders":["a book"]}, +{"id":"167767","label":"putting a pencil next to a cord","template":"Putting [something] next to [something]","placeholders":["a pencil","a cord"]}, +{"id":"6246","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"161997","label":"putting joystick next to remote","template":"Putting [something] next to [something]","placeholders":["joystick","remote"]}, +{"id":"143239","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"143776","label":"showing cup behind pot","template":"Showing [something] behind [something]","placeholders":["cup","pot"]}, +{"id":"151168","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"35812","label":"dropping box in front of trash can","template":"Dropping [something] in front of [something]","placeholders":["box","trash can"]}, +{"id":"7049","label":"pushing stapler with pen","template":"Pushing [something] with [something]","placeholders":["stapler","pen"]}, +{"id":"65771","label":"pulling clementine from behind of laptop screen","template":"Pulling [something] from behind of [something]","placeholders":["clementine","laptop screen"]}, +{"id":"180652","label":"showing lemon to the camera","template":"Showing [something] to the camera","placeholders":["lemon"]}, +{"id":"3869","label":"squeezing a moisturizing cream bottle","template":"Squeezing [something]","placeholders":["a moisturizing cream bottle"]}, +{"id":"215332","label":"twisting a fly swatter","template":"Twisting [something]","placeholders":["a fly swatter"]}, +{"id":"214773","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"33897","label":"pushing black umbrella from left to right","template":"Pushing [something] from left to right","placeholders":["black umbrella"]}, +{"id":"126292","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"204398","label":"moving box away from car","template":"Moving [something] away from [something]","placeholders":["box","car"]}, +{"id":"177247","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"95594","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"56447","label":"dropping phone in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["phone","pillow"]}, +{"id":"156586","label":"putting a cup in front of a remote","template":"Putting [something] in front of [something]","placeholders":["a cup","a remote"]}, +{"id":"149055","label":"moving led of coffee machine","template":"Moving [part] of [something]","placeholders":["led","coffee machine"]}, +{"id":"175295","label":"pouring suji onto bowl","template":"Pouring [something] onto [something]","placeholders":["suji","bowl"]}, +{"id":"155575","label":"twisting (wringing) rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["rag"]}, +{"id":"106207","label":"moving card across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["card"]}, +{"id":"135901","label":"moving red spoon towards the camera","template":"Moving [something] towards the camera","placeholders":["red spoon"]}, +{"id":"112457","label":"putting compass on the edge of stair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["compass","stair"]}, +{"id":"177749","label":"lifting marble flake with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["marble flake","bottle"]}, +{"id":"179425","label":"letting toilet paper roll roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["toilet paper roll"]}, +{"id":"22470","label":"pretending to put teddy bear into glass bowl","template":"Pretending to put [something] into [something]","placeholders":["teddy bear","glass bowl"]}, +{"id":"67221","label":"hitting soda can with water bottle","template":"Hitting [something] with [something]","placeholders":["soda can","water bottle"]}, +{"id":"66587","label":"tilting wallet with tac case on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["wallet","tac case"]}, +{"id":"93447","label":"lifting comb up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["comb"]}, +{"id":"39111","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"22496","label":"laying a lighter on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a lighter"]}, +{"id":"168445","label":"squeezing sunscreen bottle","template":"Squeezing [something]","placeholders":["sunscreen bottle"]}, +{"id":"175608","label":"stuffing paper clippings into a basket","template":"Stuffing [something] into [something]","placeholders":["paper clippings","a basket"]}, +{"id":"154517","label":"spinning a banana that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a banana"]}, +{"id":"23799","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"99129","label":"trying to pour water into a glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a glass"]}, +{"id":"99593","label":"dropping stapler in front of duster","template":"Dropping [something] in front of [something]","placeholders":["stapler","duster"]}, +{"id":"39565","label":"putting marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker pen"]}, +{"id":"16918","label":"pretending to be tearing notepad that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["notepad that is not tearable"]}, +{"id":"96201","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"97034","label":"moving mouse and mobile closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mouse","mobile"]}, +{"id":"138227","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"80109","label":"lifting up one end of a pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pen"]}, +{"id":"137350","label":"moving bam tin and bowl closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bam tin","bowl"]}, +{"id":"55254","label":"moving tissues up","template":"Moving [something] up","placeholders":["tissues"]}, +{"id":"10352","label":"turning the camera left while filming smart phone","template":"Turning the camera left while filming [something]","placeholders":["smart phone"]}, +{"id":"29454","label":"putting a key into a purse","template":"Putting [something] into [something]","placeholders":["a key","a purse"]}, +{"id":"128655","label":"lifting up one end of green colour pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["green colour pen"]}, +{"id":"98943","label":"folding a paper plate","template":"Folding [something]","placeholders":["a paper plate"]}, +{"id":"110371","label":"turning elephant statue upside down","template":"Turning [something] upside down","placeholders":["elephant statue"]}, +{"id":"127268","label":"lifting book with bowl on it","template":"Lifting [something] with [something] on it","placeholders":["book","bowl"]}, +{"id":"11747","label":"folding money","template":"Folding [something]","placeholders":["money"]}, +{"id":"163742","label":"moving a candle cover away from the comb","template":"Moving [something] away from [something]","placeholders":["a candle cover","the comb"]}, +{"id":"44007","label":"holding fork next to plate","template":"Holding [something] next to [something]","placeholders":["fork","plate"]}, +{"id":"108282","label":"putting gel on a surface","template":"Putting [something] on a surface","placeholders":["gel"]}, +{"id":"85979","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"80391","label":"putting currency into cash desk","template":"Putting [something] into [something]","placeholders":["currency","cash desk"]}, +{"id":"65068","label":"squeezing a peace bear","template":"Squeezing [something]","placeholders":["a peace bear"]}, +{"id":"65134","label":"moving a magnet down","template":"Moving [something] down","placeholders":["a magnet"]}, +{"id":"210472","label":"pushing double-sided adhesive tape from right to left","template":"Pushing [something] from right to left","placeholders":["double-sided adhesive tape"]}, +{"id":"82314","label":"squeezing a lemon","template":"Squeezing [something]","placeholders":["a lemon"]}, +{"id":"204636","label":"burying red-chili in shallots","template":"Burying [something] in [something]","placeholders":["red-chili","shallots"]}, +{"id":"137994","label":"pulling candle from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["candle","laptop"]}, +{"id":"115202","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"157182","label":"moving ball and ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ball","ball"]}, +{"id":"2997","label":"pushing matchbox so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["matchbox"]}, +{"id":"68560","label":"stuffing paper towel into glas","template":"Stuffing [something] into [something]","placeholders":["paper towel","glas"]}, +{"id":"160555","label":"moving toy closer to plastic glass","template":"Moving [something] closer to [something]","placeholders":["toy","plastic glass"]}, +{"id":"182982","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"32194","label":"trying to bend phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["phone"]}, +{"id":"217495","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"172000","label":"digging hair clip out of rice","template":"Digging [something] out of [something]","placeholders":["hair clip","rice"]}, +{"id":"180257","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"206266","label":"moving top of coffee maker","template":"Moving [part] of [something]","placeholders":["top","coffee maker"]}, +{"id":"27356","label":"paper clip being deflected from a bottle","template":"[Something] being deflected from [something]","placeholders":["paper clip","a bottle"]}, +{"id":"80","label":"pretending to poke pillow","template":"Pretending to poke [something]","placeholders":["pillow"]}, +{"id":"61492","label":"plugging a charger into an extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an extension cord"]}, +{"id":"119502","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"143429","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"190335","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"208342","label":"tearing a fabric softener sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["a fabric softener sheet"]}, +{"id":"4026","label":"showing house to the camera","template":"Showing [something] to the camera","placeholders":["house"]}, +{"id":"14019","label":"taking can out of trash","template":"Taking [something] out of [something]","placeholders":["can","trash"]}, +{"id":"73450","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"105603","label":"pushing ruler so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["ruler"]}, +{"id":"67550","label":"putting a pen on a desk full of pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen on a desk full of pens"]}, +{"id":"218504","label":"putting a pencase onto a calculator","template":"Putting [something] onto [something]","placeholders":["a pencase","a calculator"]}, +{"id":"119426","label":"covering branch with paper","template":"Covering [something] with [something]","placeholders":["branch","paper"]}, +{"id":"148698","label":"pushing ring so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ring"]}, +{"id":"216296","label":"dropping paper behind cup","template":"Dropping [something] behind [something]","placeholders":["paper","cup"]}, +{"id":"172098","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"157190","label":"poking can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["can"]}, +{"id":"152731","label":"squeezing my winnie the pooh plush","template":"Squeezing [something]","placeholders":["my winnie the pooh plush"]}, +{"id":"64511","label":"folding shorts","template":"Folding [something]","placeholders":["shorts"]}, +{"id":"171468","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"92623","label":"pushing flower pot onto laptop liner","template":"Pushing [something] onto [something]","placeholders":["flower pot","laptop liner"]}, +{"id":"82601","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"200233","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"70367","label":"dropping marker pen behind white toy car","template":"Dropping [something] behind [something]","placeholders":["marker pen","white toy car"]}, +{"id":"16171","label":"candy in glass colliding with dish towel and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["candy in glass","dish towel"]}, +{"id":"30381","label":"showing a screwdriver behind an orange","template":"Showing [something] behind [something]","placeholders":["a screwdriver","an orange"]}, +{"id":"139224","label":"uncovering toy car","template":"Uncovering [something]","placeholders":["toy car"]}, +{"id":"205267","label":"wiping a spill off of a counter","template":"Wiping [something] off of [something]","placeholders":["a spill","a counter"]}, +{"id":"115867","label":"wiping glass cleaner off of glass","template":"Wiping [something] off of [something]","placeholders":["glass cleaner","glass"]}, +{"id":"11013","label":"plugging hdmi cable into laptop","template":"Plugging [something] into [something]","placeholders":["hdmi cable","laptop"]}, +{"id":"160394","label":"pulling two ends of tissue so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["tissue"]}, +{"id":"23009","label":"stuffing jar candle into plastic bag","template":"Stuffing [something] into [something]","placeholders":["jar candle","plastic bag"]}, +{"id":"192030","label":"spilling grains onto a container","template":"Spilling [something] onto [something]","placeholders":["grains","a container"]}, +{"id":"9943","label":"a pillow colliding with a cup and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pillow","a cup"]}, +{"id":"113305","label":"pouring water into a bowl.","template":"Pouring [something] into [something]","placeholders":["water","a bowl."]}, +{"id":"209001","label":"pushing package from left to right","template":"Pushing [something] from left to right","placeholders":["package"]}, +{"id":"171899","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"181540","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"171372","label":"showing that block is empty","template":"Showing that [something] is empty","placeholders":["block"]}, +{"id":"8220","label":"opening bottle cap","template":"Opening [something]","placeholders":["bottle cap"]}, +{"id":"29614","label":"showing a candlestick on top of a furniture","template":"Showing [something] on top of [something]","placeholders":["a candlestick","a furniture"]}, +{"id":"184258","label":"moving potato and potato so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["potato","potato"]}, +{"id":"214569","label":"showing that padlock is inside glass jar","template":"Showing that [something] is inside [something]","placeholders":["padlock","glass jar"]}, +{"id":"31654","label":"folding paper in half","template":"Folding [something]","placeholders":["paper in half"]}, +{"id":"4602","label":"putting a pencil box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a pencil box"]}, +{"id":"181856","label":"moving rc up","template":"Moving [something] up","placeholders":["rc"]}, +{"id":"150041","label":"putting marker behind mug","template":"Putting [something] behind [something]","placeholders":["marker","mug"]}, +{"id":"197779","label":"putting a book to a pile of books","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book to a pile of books"]}, +{"id":"188180","label":"uncovering stone","template":"Uncovering [something]","placeholders":["stone"]}, +{"id":"16353","label":"stacking 4 envelopes","template":"Stacking [number of] [something]","placeholders":["4","envelopes"]}, +{"id":"144039","label":"dropping a coin onto a box","template":"Dropping [something] onto [something]","placeholders":["a coin","a box"]}, +{"id":"62236","label":"pretending to take cup of coffee from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["cup of coffee","countertop"]}, +{"id":"220","label":"dropping a peg next to a wallet","template":"Dropping [something] next to [something]","placeholders":["a peg","a wallet"]}, +{"id":"172517","label":"moving sheep and pig away from each other","template":"Moving [something] and [something] away from each other","placeholders":["sheep","pig"]}, +{"id":"15926","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"200607","label":"removing stapler, revealing pencil behind","template":"Removing [something], revealing [something] behind","placeholders":["stapler","pencil"]}, +{"id":"177070","label":"dropping a comb into a box","template":"Dropping [something] into [something]","placeholders":["a comb","a box"]}, +{"id":"24705","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"166183","label":"holding toothpicks in front of mug","template":"Holding [something] in front of [something]","placeholders":["toothpicks","mug"]}, +{"id":"120471","label":"touching (without moving) handle of faucet","template":"Touching (without moving) [part] of [something]","placeholders":["handle","faucet"]}, +{"id":"100045","label":"throwing chocolate pretzel sticks in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["chocolate pretzel sticks"]}, +{"id":"193452","label":"showing black remote to the camera","template":"Showing [something] to the camera","placeholders":["black remote"]}, +{"id":"169397","label":"putting fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["fork"]}, +{"id":"149391","label":"tilting xbox game with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["xbox game","phone"]}, +{"id":"70771","label":"tearing a post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["a post it note"]}, +{"id":"205818","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"201976","label":"moving a candle closer to another candle","template":"Moving [something] closer to [something]","placeholders":["a candle","another candle"]}, +{"id":"180785","label":"picking a bowl up","template":"Picking [something] up","placeholders":["a bowl"]}, +{"id":"86412","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"200877","label":"showing comb to the camera","template":"Showing [something] to the camera","placeholders":["comb"]}, +{"id":"175926","label":"taking pencil","template":"Taking [one of many similar things on the table]","placeholders":["pencil"]}, +{"id":"130708","label":"dropping pencil next to tape","template":"Dropping [something] next to [something]","placeholders":["pencil","tape"]}, +{"id":"136140","label":"pretending to squeeze a can of beans","template":"Pretending to squeeze [something]","placeholders":["a can of beans"]}, +{"id":"144094","label":"rolling rolling chapstick on table on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling chapstick on table"]}, +{"id":"120855","label":"stuffing blanket into box","template":"Stuffing [something] into [something]","placeholders":["blanket","box"]}, +{"id":"157922","label":"moving a ball and toys closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","toys"]}, +{"id":"132951","label":"moving apple and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["apple","glass"]}, +{"id":"19952","label":"plugging a usb into a power supply","template":"Plugging [something] into [something]","placeholders":["a usb","a power supply"]}, +{"id":"142852","label":"pushing study table from right to left","template":"Pushing [something] from right to left","placeholders":["study table"]}, +{"id":"33458","label":"spilling water next to doll","template":"Spilling [something] next to [something]","placeholders":["water","doll"]}, +{"id":"8970","label":"pulling two ends of metal rod but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["metal rod"]}, +{"id":"118252","label":"stuffing duvet into washing machine","template":"Stuffing [something] into [something]","placeholders":["duvet","washing machine"]}, +{"id":"34355","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"122558","label":"letting tomato roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tomato"]}, +{"id":"72831","label":"putting a highlighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["a highlighter"]}, +{"id":"113603","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"128353","label":"dropping a cube onto a hairclip","template":"Dropping [something] onto [something]","placeholders":["a cube","a hairclip"]}, +{"id":"111726","label":"taking tissue out of box","template":"Taking [something] out of [something]","placeholders":["tissue","box"]}, +{"id":"127348","label":"pretending to put brown case on a surface","template":"Pretending to put [something] on a surface","placeholders":["brown case"]}, +{"id":"33531","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"214723","label":"taking a marker from a bunch of markers on the table","template":"Taking [one of many similar things on the table]","placeholders":["a marker from a bunch of markers on the table"]}, +{"id":"210166","label":"stuffing a pen into a pack of tissue","template":"Stuffing [something] into [something]","placeholders":["a pen","a pack of tissue"]}, +{"id":"32334","label":"bending stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["stick"]}, +{"id":"41023","label":"pouring water out of a glass","template":"Pouring [something] out of [something]","placeholders":["water","a glass"]}, +{"id":"112309","label":"holding something over something","template":"Holding [something] over [something]","placeholders":["something","something"]}, +{"id":"190017","label":"dropping red hairband into green cup","template":"Dropping [something] into [something]","placeholders":["red hairband","green cup"]}, +{"id":"47843","label":"taking fork out of drawer","template":"Taking [something] out of [something]","placeholders":["fork","drawer"]}, +{"id":"95559","label":"moving blue coloured glasses up","template":"Moving [something] up","placeholders":["blue coloured glasses"]}, +{"id":"10016","label":"showing flowers behind bottle","template":"Showing [something] behind [something]","placeholders":["flowers","bottle"]}, +{"id":"64452","label":"moving a peg across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a peg"]}, +{"id":"115321","label":"picking mug up","template":"Picking [something] up","placeholders":["mug"]}, +{"id":"3669","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"129880","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"53300","label":"dropping book behind plastic-container","template":"Dropping [something] behind [something]","placeholders":["book","plastic-container"]}, +{"id":"174005","label":"pushing coaster with remote","template":"Pushing [something] with [something]","placeholders":["coaster","remote"]}, +{"id":"67307","label":"moving knife and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["knife","spoon"]}, +{"id":"14686","label":"dropping nail clippers next to pen","template":"Dropping [something] next to [something]","placeholders":["nail clippers","pen"]}, +{"id":"134148","label":"putting 4 buttons onto book","template":"Putting [number of] [something] onto [something]","placeholders":["4","buttons","book"]}, +{"id":"202425","label":"squeezing toy elephant","template":"Squeezing [something]","placeholders":["toy elephant"]}, +{"id":"155691","label":"putting carton in front of bottle","template":"Putting [something] in front of [something]","placeholders":["carton","bottle"]}, +{"id":"18425","label":"pouring water into plastic jar","template":"Pouring [something] into [something]","placeholders":["water","plastic jar"]}, +{"id":"92782","label":"moving toothbrush away from the camera","template":"Moving [something] away from the camera","placeholders":["toothbrush"]}, +{"id":"136336","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"89690","label":"turning ramekin upside down","template":"Turning [something] upside down","placeholders":["ramekin"]}, +{"id":"220450","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"30855","label":"moving a fork away from a knife","template":"Moving [something] away from [something]","placeholders":["a fork","a knife"]}, +{"id":"190157","label":"showing snack packaging to the camera","template":"Showing [something] to the camera","placeholders":["snack packaging"]}, +{"id":"160073","label":"turning a jar upside down","template":"Turning [something] upside down","placeholders":["a jar"]}, +{"id":"201302","label":"hitting mug with straw","template":"Hitting [something] with [something]","placeholders":["mug","straw"]}, +{"id":"51886","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"156996","label":"laying lipstick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lipstick"]}, +{"id":"101424","label":"showing green cup to the camera","template":"Showing [something] to the camera","placeholders":["green cup"]}, +{"id":"194614","label":"moving a toy panda away from a toy donkey","template":"Moving [something] away from [something]","placeholders":["a toy panda","a toy donkey"]}, +{"id":"130874","label":"tilting books with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["books","phone"]}, +{"id":"35769","label":"dropping cow in front of box","template":"Dropping [something] in front of [something]","placeholders":["cow","box"]}, +{"id":"189169","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"118271","label":"pushing magnet from right to left","template":"Pushing [something] from right to left","placeholders":["magnet"]}, +{"id":"170870","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"55550","label":"showing lighter behind earring","template":"Showing [something] behind [something]","placeholders":["lighter","earring"]}, +{"id":"93623","label":"squeezing half of a lime","template":"Squeezing [something]","placeholders":["half of a lime"]}, +{"id":"51973","label":"taking remote from table","template":"Taking [something] from [somewhere]","placeholders":["remote","table"]}, +{"id":"216042","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"114694","label":"unfolding unfolding a paper","template":"Unfolding [something]","placeholders":["unfolding a paper"]}, +{"id":"102728","label":"moving pick closer to scissor","template":"Moving [something] closer to [something]","placeholders":["pick","scissor"]}, +{"id":"218726","label":"holding wallet over desk","template":"Holding [something] over [something]","placeholders":["wallet","desk"]}, +{"id":"173292","label":"hitting stapler with eraser","template":"Hitting [something] with [something]","placeholders":["stapler","eraser"]}, +{"id":"55731","label":"holding ipad in front of car","template":"Holding [something] in front of [something]","placeholders":["ipad","car"]}, +{"id":"32531","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"102174","label":"scooping dog food up with a cup","template":"Scooping [something] up with [something]","placeholders":["dog food","a cup"]}, +{"id":"63802","label":"tilting paper with brush on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","brush"]}, +{"id":"57612","label":"pushing stapler so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["stapler"]}, +{"id":"14774","label":"showing a battery next to wallet","template":"Showing [something] next to [something]","placeholders":["a battery","wallet"]}, +{"id":"211053","label":"pretending to put a banana behind a glass","template":"Pretending to put [something] behind [something]","placeholders":["a banana","a glass"]}, +{"id":"146355","label":"pulling black lipstick from right to left","template":"Pulling [something] from right to left","placeholders":["black lipstick"]}, +{"id":"134009","label":"failing to put glass into wooden bowl because the glass does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["glass","wooden bowl","the glass"]}, +{"id":"143538","label":"putting a rock on a surface","template":"Putting [something] on a surface","placeholders":["a rock"]}, +{"id":"25343","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"125482","label":"dropping bottle into bucket","template":"Dropping [something] into [something]","placeholders":["bottle","bucket"]}, +{"id":"64605","label":"showing cat to the camera","template":"Showing [something] to the camera","placeholders":["cat"]}, +{"id":"40470","label":"showing that pail is empty","template":"Showing that [something] is empty","placeholders":["pail"]}, +{"id":"96698","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"209962","label":"taking one lighter","template":"Taking [one of many similar things on the table]","placeholders":["one lighter"]}, +{"id":"47738","label":"putting flashdisk","template":"Putting [something similar to other things that are already on the table]","placeholders":["flashdisk"]}, +{"id":"95863","label":"dropping a card into a box","template":"Dropping [something] into [something]","placeholders":["a card","a box"]}, +{"id":"170385","label":"twisting (wringing) piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["piece of cloth"]}, +{"id":"167603","label":"closing a bottle","template":"Closing [something]","placeholders":["a bottle"]}, +{"id":"76369","label":"lifting a box with a cup on it","template":"Lifting [something] with [something] on it","placeholders":["a box","a cup"]}, +{"id":"56383","label":"unfolding paper than has been folded in half","template":"Unfolding [something]","placeholders":["paper than has been folded in half"]}, +{"id":"98394","label":"putting pen, toy car and ball on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","toy car","ball"]}, +{"id":"151268","label":"picking banana leaf up","template":"Picking [something] up","placeholders":["banana leaf"]}, +{"id":"205421","label":"spilling water onto the floor","template":"Spilling [something] onto [something]","placeholders":["water","the floor"]}, +{"id":"170006","label":"holding water bottle","template":"Holding [something]","placeholders":["water bottle"]}, +{"id":"7199","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"7799","label":"taking foot ball from concrete bench","template":"Taking [something] from [somewhere]","placeholders":["foot ball","concrete bench"]}, +{"id":"36854","label":"tape colliding with deodorant and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["tape","deodorant"]}, +{"id":"35794","label":"pushing a straw so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a straw"]}, +{"id":"174123","label":"letting apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["apple"]}, +{"id":"76171","label":"plugging usb into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","computer"]}, +{"id":"89270","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"196201","label":"pretending to pour a liquid out of mug, but mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["a liquid","mug","mug"]}, +{"id":"200429","label":"holding remote next to head","template":"Holding [something] next to [something]","placeholders":["remote","head"]}, +{"id":"58959","label":"pretending to put perfume into a purse","template":"Pretending to put [something] into [something]","placeholders":["perfume","a purse"]}, +{"id":"129516","label":"pushing red coloured toy car with pen","template":"Pushing [something] with [something]","placeholders":["red coloured toy car","pen"]}, +{"id":"38974","label":"turning the camera upwards while filming violin","template":"Turning the camera upwards while filming [something]","placeholders":["violin"]}, +{"id":"140684","label":"pushing a ball off of a table","template":"Pushing [something] off of [something]","placeholders":["a ball","a table"]}, +{"id":"83915","label":"putting pill bottle onto modge modge container","template":"Putting [something] onto [something]","placeholders":["pill bottle","modge modge container"]}, +{"id":"91721","label":"tilting folder with orange on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder","orange"]}, +{"id":"200447","label":"putting red spoon and battery on the table","template":"Putting [something] and [something] on the table","placeholders":["red spoon","battery"]}, +{"id":"50362","label":"moving book closer to pillow","template":"Moving [something] closer to [something]","placeholders":["book","pillow"]}, +{"id":"182340","label":"putting cigarette pack upright on the table","template":"Putting [something] upright on the table","placeholders":["cigarette pack"]}, +{"id":"40410","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"209575","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"3734","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"49285","label":"moving glasses and plate away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glasses","plate"]}, +{"id":"872","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"101111","label":"approaching water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["water bottle"]}, +{"id":"204225","label":"spinning cologne bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cologne bottle"]}, +{"id":"180828","label":"letting soldering wire reel roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["soldering wire reel"]}, +{"id":"130528","label":"uncovering toy figure","template":"Uncovering [something]","placeholders":["toy figure"]}, +{"id":"55100","label":"pretending to put tennisball into mug","template":"Pretending to put [something] into [something]","placeholders":["tennisball","mug"]}, +{"id":"204764","label":"pushing phone from left to right","template":"Pushing [something] from left to right","placeholders":["phone"]}, +{"id":"57476","label":"letting paper towel roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["paper towel roll"]}, +{"id":"127787","label":"taking a pen out of a mug","template":"Taking [something] out of [something]","placeholders":["a pen","a mug"]}, +{"id":"209781","label":"putting a jar on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a jar"]}, +{"id":"196343","label":"plugging night light into wall outlet","template":"Plugging [something] into [something]","placeholders":["night light","wall outlet"]}, +{"id":"52799","label":"pouring water onto flowers","template":"Pouring [something] onto [something]","placeholders":["water","flowers"]}, +{"id":"93128","label":"dropping box onto toilet","template":"Dropping [something] onto [something]","placeholders":["box","toilet"]}, +{"id":"20512","label":"holding a pen behind a glass","template":"Holding [something] behind [something]","placeholders":["a pen","a glass"]}, +{"id":"47196","label":"plugging a plug into an adapter","template":"Plugging [something] into [something]","placeholders":["a plug","an adapter"]}, +{"id":"100276","label":"tilting a notebook with keys on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","keys"]}, +{"id":"157915","label":"trying but failing to attach card to table because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["card","table"]}, +{"id":"75487","label":"lifting plastic cup with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["plastic cup","scissors"]}, +{"id":"60401","label":"tipping container with tums over, so tums falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["container","tums","tums"]}, +{"id":"195730","label":"picking purple microfiber up","template":"Picking [something] up","placeholders":["purple microfiber"]}, +{"id":"199536","label":"tipping cup with finger over, so usb adaptor falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","finger","usb adaptor"]}, +{"id":"129946","label":"pushing shoe from left to right","template":"Pushing [something] from left to right","placeholders":["shoe"]}, +{"id":"97458","label":"pushing a toothbrush case so it spins","template":"Pushing [something] so it spins","placeholders":["a toothbrush case"]}, +{"id":"67466","label":"wiping food off of countertop","template":"Wiping [something] off of [something]","placeholders":["food","countertop"]}, +{"id":"1870","label":"uncovering tweezers","template":"Uncovering [something]","placeholders":["tweezers"]}, +{"id":"124039","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"174946","label":"moving a belt closer to a box","template":"Moving [something] closer to [something]","placeholders":["a belt","a box"]}, +{"id":"54550","label":"putting coin onto paper","template":"Putting [something] onto [something]","placeholders":["coin","paper"]}, +{"id":"187909","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"101804","label":"moving adapter down","template":"Moving [something] down","placeholders":["adapter"]}, +{"id":"16083","label":"covering box with towel","template":"Covering [something] with [something]","placeholders":["box","towel"]}, +{"id":"216153","label":"office chair colliding with office chair and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["office chair","office chair"]}, +{"id":"57154","label":"pushing small sunscreen lotion so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["small sunscreen lotion"]}, +{"id":"94375","label":"picking spatula up","template":"Picking [something] up","placeholders":["spatula"]}, +{"id":"16479","label":"holding toothpicks behind mug","template":"Holding [something] behind [something]","placeholders":["toothpicks","mug"]}, +{"id":"160059","label":"pretending to spread air onto a slice of bread","template":"Pretending to spread air onto [something]","placeholders":["a slice of bread"]}, +{"id":"83962","label":"lifting case with pen on it","template":"Lifting [something] with [something] on it","placeholders":["case","pen"]}, +{"id":"113755","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"76973","label":"pretending to open the milk without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the milk"]}, +{"id":"158149","label":"turning sunglasses upside down","template":"Turning [something] upside down","placeholders":["sunglasses"]}, +{"id":"79770","label":"letting glassball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glassball"]}, +{"id":"192839","label":"opening pencil case","template":"Opening [something]","placeholders":["pencil case"]}, +{"id":"38744","label":"pulling two ends of a tissue so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a tissue"]}, +{"id":"153247","label":"turning the camera right while filming truck","template":"Turning the camera right while filming [something]","placeholders":["truck"]}, +{"id":"144295","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"35939","label":"pushing a glass from right to left","template":"Pushing [something] from right to left","placeholders":["a glass"]}, +{"id":"149489","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"203879","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"209868","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"23226","label":"folding tawel","template":"Folding [something]","placeholders":["tawel"]}, +{"id":"51363","label":"taking remote out of pen stand","template":"Taking [something] out of [something]","placeholders":["remote","pen stand"]}, +{"id":"193653","label":"putting dvd box in front of matrioska","template":"Putting [something] in front of [something]","placeholders":["dvd box","matrioska"]}, +{"id":"1767","label":"picking mobile phone up","template":"Picking [something] up","placeholders":["mobile phone"]}, +{"id":"16446","label":"dropping a peg behind a box","template":"Dropping [something] behind [something]","placeholders":["a peg","a box"]}, +{"id":"109910","label":"holding toy","template":"Holding [something]","placeholders":["toy"]}, +{"id":"197410","label":"holding a measuring cup behind a bowl","template":"Holding [something] behind [something]","placeholders":["a measuring cup","a bowl"]}, +{"id":"110248","label":"pulling a flyer out of a bag","template":"Pulling [something] out of [something]","placeholders":["a flyer","a bag"]}, +{"id":"90530","label":"holding a cup in front of of a tv","template":"Holding [something] in front of [something]","placeholders":["a cup","of a tv"]}, +{"id":"88762","label":"putting plate onto cup","template":"Putting [something] onto [something]","placeholders":["plate","cup"]}, +{"id":"209519","label":"uncovering a box","template":"Uncovering [something]","placeholders":["a box"]}, +{"id":"81747","label":"digging spoon out of salt","template":"Digging [something] out of [something]","placeholders":["spoon","salt"]}, +{"id":"118316","label":"laying a vitamin bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a vitamin bottle"]}, +{"id":"91511","label":"moving a spoon up","template":"Moving [something] up","placeholders":["a spoon"]}, +{"id":"28083","label":"pushing a pencil box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pencil box"]}, +{"id":"34864","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"179566","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"62606","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"105198","label":"hitting thermos with nail clipper","template":"Hitting [something] with [something]","placeholders":["thermos","nail clipper"]}, +{"id":"46229","label":"spinning a handspinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a handspinner"]}, +{"id":"26350","label":"lifting a surface with quarter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["quarter"]}, +{"id":"96824","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"145397","label":"throwing cloth in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cloth"]}, +{"id":"38835","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"208507","label":"putting bottle onto soap dispenser so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["bottle","soap dispenser"]}, +{"id":"86308","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38574","label":"holding dog toy over box","template":"Holding [something] over [something]","placeholders":["dog toy","box"]}, +{"id":"23831","label":"lifting up one end of plastic case, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["plastic case"]}, +{"id":"85641","label":"pretending to be tearing a flexible notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a flexible notebook"]}, +{"id":"219411","label":"lifting a surface with green bottle on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["green bottle"]}, +{"id":"132830","label":"putting round box on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["round box"]}, +{"id":"38646","label":"pushing a shaving razor from left to right","template":"Pushing [something] from left to right","placeholders":["a shaving razor"]}, +{"id":"187452","label":"turning the camera upwards while filming a guitar","template":"Turning the camera upwards while filming [something]","placeholders":["a guitar"]}, +{"id":"44945","label":"poking lipstick so that it spins around","template":"Poking [something] so that it spins around","placeholders":["lipstick"]}, +{"id":"209652","label":"stuffing keys into bag","template":"Stuffing [something] into [something]","placeholders":["keys","bag"]}, +{"id":"138354","label":"plugging fan into wall outlet","template":"Plugging [something] into [something]","placeholders":["fan","wall outlet"]}, +{"id":"158107","label":"showing wallet behind glasses","template":"Showing [something] behind [something]","placeholders":["wallet","glasses"]}, +{"id":"78013","label":"moving ring up","template":"Moving [something] up","placeholders":["ring"]}, +{"id":"66302","label":"dropping a shoe next to another shoe","template":"Dropping [something] next to [something]","placeholders":["a shoe","another shoe"]}, +{"id":"121362","label":"showing purple balloon pump to the camera","template":"Showing [something] to the camera","placeholders":["purple balloon pump"]}, +{"id":"187285","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"12300","label":"dropping a box of juice in front of a box of juice","template":"Dropping [something] in front of [something]","placeholders":["a box of juice","a box of juice"]}, +{"id":"200445","label":"bending toothpic until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpic"]}, +{"id":"8131","label":"showing hair clip next to the trophy","template":"Showing [something] next to [something]","placeholders":["hair clip","the trophy"]}, +{"id":"6470","label":"letting tape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tape"]}, +{"id":"105178","label":"tipping train over","template":"Tipping [something] over","placeholders":["train"]}, +{"id":"166116","label":"turning the camera downwards while filming shelves","template":"Turning the camera downwards while filming [something]","placeholders":["shelves"]}, +{"id":"25964","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"196998","label":"holding box in front of chair","template":"Holding [something] in front of [something]","placeholders":["box","chair"]}, +{"id":"95190","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"186292","label":"unfolding bedsheet","template":"Unfolding [something]","placeholders":["bedsheet"]}, +{"id":"79406","label":"holding biscuits in front of bin","template":"Holding [something] in front of [something]","placeholders":["biscuits","bin"]}, +{"id":"135169","label":"toy falling like a rock","template":"[Something] falling like a rock","placeholders":["toy"]}, +{"id":"38674","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"151981","label":"taking banana","template":"Taking [one of many similar things on the table]","placeholders":["banana"]}, +{"id":"39585","label":"twisting (wringing) a sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a sponge"]}, +{"id":"190591","label":"moving pen away from the camera","template":"Moving [something] away from the camera","placeholders":["pen"]}, +{"id":"56762","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"124802","label":"showing plastic cup behind baseball cap","template":"Showing [something] behind [something]","placeholders":["plastic cup","baseball cap"]}, +{"id":"217177","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"16876","label":"bending pack of gum so that it deforms","template":"Bending [something] so that it deforms","placeholders":["pack of gum"]}, +{"id":"120137","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"116083","label":"wiping papers off of floor","template":"Wiping [something] off of [something]","placeholders":["papers","floor"]}, +{"id":"117857","label":"putting hand on a surface","template":"Putting [something] on a surface","placeholders":["hand"]}, +{"id":"43412","label":"putting toffee container on a surface","template":"Putting [something] on a surface","placeholders":["toffee container"]}, +{"id":"66554","label":"turning the camera upwards while filming motorbike","template":"Turning the camera upwards while filming [something]","placeholders":["motorbike"]}, +{"id":"95045","label":"holding flowervase","template":"Holding [something]","placeholders":["flowervase"]}, +{"id":"99390","label":"spilling water next to glass","template":"Spilling [something] next to [something]","placeholders":["water","glass"]}, +{"id":"61037","label":"pushing comb so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["comb"]}, +{"id":"5476","label":"attaching a marker to a lid","template":"Attaching [something] to [something]","placeholders":["a marker","a lid"]}, +{"id":"169568","label":"burying a scoth roll in stack of gravel","template":"Burying [something] in [something]","placeholders":["a scoth roll","stack of gravel"]}, +{"id":"30899","label":"putting plastic glasses","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic glasses"]}, +{"id":"103362","label":"moving cell phone up","template":"Moving [something] up","placeholders":["cell phone"]}, +{"id":"95193","label":"pretending to squeeze deo can","template":"Pretending to squeeze [something]","placeholders":["deo can"]}, +{"id":"209101","label":"picking note cards up","template":"Picking [something] up","placeholders":["note cards"]}, +{"id":"81420","label":"throwing a pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a pen"]}, +{"id":"16259","label":"pushing a chappal from left to right","template":"Pushing [something] from left to right","placeholders":["a chappal"]}, +{"id":"120527","label":"plugging plug into plug in","template":"Plugging [something] into [something]","placeholders":["plug","plug in"]}, +{"id":"61699","label":"pretending to throw bottle","template":"Pretending to throw [something]","placeholders":["bottle"]}, +{"id":"164123","label":"holding pencil behind glass","template":"Holding [something] behind [something]","placeholders":["pencil","glass"]}, +{"id":"180214","label":"pushing note pad so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["note pad"]}, +{"id":"206312","label":"pretending to close notebook without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notebook"]}, +{"id":"178590","label":"uncovering toothpaste","template":"Uncovering [something]","placeholders":["toothpaste"]}, +{"id":"45024","label":"laying doll masha on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["doll masha"]}, +{"id":"115171","label":"pretending or failing to wipe ink off of a dry erase board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","a dry erase board"]}, +{"id":"196544","label":"moving pick away from scissor","template":"Moving [something] away from [something]","placeholders":["pick","scissor"]}, +{"id":"176519","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"213068","label":"pushing black pouch bag from left to right","template":"Pushing [something] from left to right","placeholders":["black pouch bag"]}, +{"id":"183839","label":"putting mug in front of pencil","template":"Putting [something] in front of [something]","placeholders":["mug","pencil"]}, +{"id":"77674","label":"stuffing clothes into trunk","template":"Stuffing [something] into [something]","placeholders":["clothes","trunk"]}, +{"id":"160802","label":"pretending to turn deodorant upside down","template":"Pretending to turn [something] upside down","placeholders":["deodorant"]}, +{"id":"150767","label":"closing pot","template":"Closing [something]","placeholders":["pot"]}, +{"id":"105046","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"107939","label":"turning scissors upside down","template":"Turning [something] upside down","placeholders":["scissors"]}, +{"id":"136323","label":"pushing rock so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["rock"]}, +{"id":"219970","label":"spinning a knife that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a knife"]}, +{"id":"114154","label":"putting nail polish on table","template":"Putting [something similar to other things that are already on the table]","placeholders":["nail polish on table"]}, +{"id":"66301","label":"pouring water onto lemon","template":"Pouring [something] onto [something]","placeholders":["water","lemon"]}, +{"id":"220092","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"179237","label":"uncovering violet colour pocket knife","template":"Uncovering [something]","placeholders":["violet colour pocket knife"]}, +{"id":"191990","label":"pretending to pick hat up","template":"Pretending to pick [something] up","placeholders":["hat"]}, +{"id":"67596","label":"pretending to pick pencil up","template":"Pretending to pick [something] up","placeholders":["pencil"]}, +{"id":"128403","label":"putting pegs next to similar pegs","template":"Putting [something similar to other things that are already on the table]","placeholders":["pegs next to similar pegs"]}, +{"id":"168500","label":"taking sharpener out of rack","template":"Taking [something] out of [something]","placeholders":["sharpener","rack"]}, +{"id":"175770","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"136368","label":"showing speaker behind screen","template":"Showing [something] behind [something]","placeholders":["speaker","screen"]}, +{"id":"94004","label":"putting pen next to box","template":"Putting [something] next to [something]","placeholders":["pen","box"]}, +{"id":"162071","label":"pulling two ends of piece of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["piece of a paper"]}, +{"id":"82451","label":"poking jar so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["jar"]}, +{"id":"187495","label":"putting headphones on a surface","template":"Putting [something] on a surface","placeholders":["headphones"]}, +{"id":"217555","label":"turning a water bottle upside down","template":"Turning [something] upside down","placeholders":["a water bottle"]}, +{"id":"76550","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"86179","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"35313","label":"holding pen next to hole puncher","template":"Holding [something] next to [something]","placeholders":["pen","hole puncher"]}, +{"id":"26145","label":"putting safety glasses and tape on the table","template":"Putting [something] and [something] on the table","placeholders":["safety glasses","tape"]}, +{"id":"207648","label":"putting battery into mug","template":"Putting [something] into [something]","placeholders":["battery","mug"]}, +{"id":"30050","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"146478","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"203637","label":"wiping happy face off of white board","template":"Wiping [something] off of [something]","placeholders":["happy face","white board"]}, +{"id":"42587","label":"throwing a phone","template":"Throwing [something]","placeholders":["a phone"]}, +{"id":"106764","label":"tipping paper towels over","template":"Tipping [something] over","placeholders":["paper towels"]}, +{"id":"175539","label":"covering a smartphone with my hand","template":"Covering [something] with [something]","placeholders":["a smartphone","my hand"]}, +{"id":"7284","label":"tearing a papertowel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a papertowel"]}, +{"id":"36671","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"141334","label":"scooping flour up with a spoon","template":"Scooping [something] up with [something]","placeholders":["flour","a spoon"]}, +{"id":"202465","label":"moving tv remote and xbox controller closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["tv remote","xbox controller"]}, +{"id":"24133","label":"wiping water off of wash basin","template":"Wiping [something] off of [something]","placeholders":["water","wash basin"]}, +{"id":"66323","label":"dropping yellow hairband into orange cup","template":"Dropping [something] into [something]","placeholders":["yellow hairband","orange cup"]}, +{"id":"49569","label":"lifting up one end of lightning cable charger without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["lightning cable charger"]}, +{"id":"92714","label":"holding iphone adapter","template":"Holding [something]","placeholders":["iphone adapter"]}, +{"id":"134523","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"100466","label":"furk falling like a rock","template":"[Something] falling like a rock","placeholders":["furk"]}, +{"id":"28427","label":"putting rubix cube in front of board clip","template":"Putting [something] in front of [something]","placeholders":["rubix cube","board clip"]}, +{"id":"3937","label":"cellotape falling like a rock","template":"[Something] falling like a rock","placeholders":["cellotape"]}, +{"id":"216236","label":"stuffing paper into cup","template":"Stuffing [something] into [something]","placeholders":["paper","cup"]}, +{"id":"89993","label":"moving marker and marker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["marker","marker"]}, +{"id":"211441","label":"pushing joystick so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["joystick"]}, +{"id":"209578","label":"spinning tape so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["tape"]}, +{"id":"91736","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"27845","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"95600","label":"pulling a napkin from left to right","template":"Pulling [something] from left to right","placeholders":["a napkin"]}, +{"id":"178294","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"216998","label":"putting a book and a lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["a book","a lighter"]}, +{"id":"97294","label":"spilling a mug of water onto a kitchen counter.","template":"Spilling [something] onto [something]","placeholders":["a mug of water","a kitchen counter."]}, +{"id":"196884","label":"holding bread over toaster","template":"Holding [something] over [something]","placeholders":["bread","toaster"]}, +{"id":"82266","label":"pushing tea cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["tea cup"]}, +{"id":"36800","label":"pushing yellow clay box from left to right","template":"Pushing [something] from left to right","placeholders":["yellow clay box"]}, +{"id":"27672","label":"putting a coin into a container","template":"Putting [something] into [something]","placeholders":["a coin","a container"]}, +{"id":"215692","label":"tipping knickknack over","template":"Tipping [something] over","placeholders":["knickknack"]}, +{"id":"166191","label":"moving phone and controller so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["phone","controller"]}, +{"id":"11138","label":"showing a photo of a group of people on the water to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a group of people on the water"]}, +{"id":"34962","label":"pretending to open pencil case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pencil case"]}, +{"id":"217107","label":"putting 2 matchbox onto book","template":"Putting [number of] [something] onto [something]","placeholders":["2","matchbox","book"]}, +{"id":"35781","label":"turning the camera upwards while filming computer monitor","template":"Turning the camera upwards while filming [something]","placeholders":["computer monitor"]}, +{"id":"107463","label":"putting a knife, a fork and a glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a knife","a fork","a glass"]}, +{"id":"9409","label":"holding tablet box next to ink bottle","template":"Holding [something] next to [something]","placeholders":["tablet box","ink bottle"]}, +{"id":"58990","label":"pretending to put keys next to bag","template":"Pretending to put [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"36177","label":"moving pen and pencil away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","pencil"]}, +{"id":"206702","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"21225","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"217013","label":"spilling water onto medicine","template":"Spilling [something] onto [something]","placeholders":["water","medicine"]}, +{"id":"162440","label":"lifting flashlight up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["flashlight"]}, +{"id":"2697","label":"taking an eraser out of a pencil case","template":"Taking [something] out of [something]","placeholders":["an eraser","a pencil case"]}, +{"id":"184397","label":"touching (without moving) top of cloth","template":"Touching (without moving) [part] of [something]","placeholders":["top","cloth"]}, +{"id":"136942","label":"pretending to open cigarettes without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cigarettes"]}, +{"id":"90403","label":"moving a plastic bottle away from a box","template":"Moving [something] away from [something]","placeholders":["a plastic bottle","a box"]}, +{"id":"206928","label":"stuffing tablet box into black pouch","template":"Stuffing [something] into [something]","placeholders":["tablet box","black pouch"]}, +{"id":"47026","label":"holding box in front of lamp","template":"Holding [something] in front of [something]","placeholders":["box","lamp"]}, +{"id":"76365","label":"uncovering magnifying glass","template":"Uncovering [something]","placeholders":["magnifying glass"]}, +{"id":"71030","label":"moving wristwatch up","template":"Moving [something] up","placeholders":["wristwatch"]}, +{"id":"173521","label":"covering the bottle with the hoodie","template":"Covering [something] with [something]","placeholders":["the bottle","the hoodie"]}, +{"id":"19782","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"88486","label":"bending microphone so that it deforms","template":"Bending [something] so that it deforms","placeholders":["microphone"]}, +{"id":"212836","label":"moving glass closer to mug","template":"Moving [something] closer to [something]","placeholders":["glass","mug"]}, +{"id":"201575","label":"pushing a necklace off of a table","template":"Pushing [something] off of [something]","placeholders":["a necklace","a table"]}, +{"id":"148937","label":"putting box in front of notebook","template":"Putting [something] in front of [something]","placeholders":["box","notebook"]}, +{"id":"85207","label":"moving cup down","template":"Moving [something] down","placeholders":["cup"]}, +{"id":"22070","label":"letting toy wheel roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["toy wheel"]}, +{"id":"168771","label":"plugging a charger into a phone","template":"Plugging [something] into [something]","placeholders":["a charger","a phone"]}, +{"id":"125403","label":"pretending to take botle out of purse","template":"Pretending to take [something] out of [something]","placeholders":["botle","purse"]}, +{"id":"104599","label":"covering tissue with clothes","template":"Covering [something] with [something]","placeholders":["tissue","clothes"]}, +{"id":"218713","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"127431","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"71928","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"194696","label":"pretending to poke a pillow","template":"Pretending to poke [something]","placeholders":["a pillow"]}, +{"id":"178438","label":"hitting sink with towel","template":"Hitting [something] with [something]","placeholders":["sink","towel"]}, +{"id":"133328","label":"holding a book behind a book","template":"Holding [something] behind [something]","placeholders":["a book","a book"]}, +{"id":"204435","label":"throwing rubber duck in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["rubber duck"]}, +{"id":"49038","label":"a badminton bat being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["a badminton bat","wall"]}, +{"id":"95655","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"19469","label":"putting cell phone on a surface","template":"Putting [something] on a surface","placeholders":["cell phone"]}, +{"id":"147202","label":"showing air freshener behind monitor","template":"Showing [something] behind [something]","placeholders":["air freshener","monitor"]}, +{"id":"81391","label":"pushing a reactine bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a reactine bottle"]}, +{"id":"207239","label":"holding glasses behind plate","template":"Holding [something] behind [something]","placeholders":["glasses","plate"]}, +{"id":"52746","label":"bending card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["card"]}, +{"id":"38075","label":"touching (without moving) the corner cover of a book","template":"Touching (without moving) [part] of [something]","placeholders":["the corner cover","a book"]}, +{"id":"76026","label":"putting a ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a ball"]}, +{"id":"218699","label":"putting keys into bowl","template":"Putting [something] into [something]","placeholders":["keys","bowl"]}, +{"id":"215135","label":"crayon falling like a rock","template":"[Something] falling like a rock","placeholders":["crayon"]}, +{"id":"187028","label":"unfolding place mat","template":"Unfolding [something]","placeholders":["place mat"]}, +{"id":"170270","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"170284","label":"putting stone next to seashell","template":"Putting [something] next to [something]","placeholders":["stone","seashell"]}, +{"id":"7694","label":"pouring water out of kettle","template":"Pouring [something] out of [something]","placeholders":["water","kettle"]}, +{"id":"100419","label":"holding mobile phone in front of radio","template":"Holding [something] in front of [something]","placeholders":["mobile phone","radio"]}, +{"id":"189032","label":"holding cup in front of lamp","template":"Holding [something] in front of [something]","placeholders":["cup","lamp"]}, +{"id":"160452","label":"pushing a toy car from right to left","template":"Pushing [something] from right to left","placeholders":["a toy car"]}, +{"id":"143941","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"184817","label":"folding a sheet of paper","template":"Folding [something]","placeholders":["a sheet of paper"]}, +{"id":"210886","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"188411","label":"showing an orange behind a bunch of bananas","template":"Showing [something] behind [something]","placeholders":["an orange","a bunch of bananas"]}, +{"id":"84218","label":"tilting paper with rule on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","rule"]}, +{"id":"162184","label":"putting bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottles"]}, +{"id":"141429","label":"stuffing a cellphone into a bag","template":"Stuffing [something] into [something]","placeholders":["a cellphone","a bag"]}, +{"id":"70518","label":"pushing can so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["can"]}, +{"id":"92198","label":"putting 3 spoons onto stove","template":"Putting [number of] [something] onto [something]","placeholders":["3","spoons","stove"]}, +{"id":"196385","label":"turning paint brush upside down","template":"Turning [something] upside down","placeholders":["paint brush"]}, +{"id":"97896","label":"showing thread on top of box of pins","template":"Showing [something] on top of [something]","placeholders":["thread","box of pins"]}, +{"id":"174775","label":"pretending to put hand cream on a surface","template":"Pretending to put [something] on a surface","placeholders":["hand cream"]}, +{"id":"206534","label":"moving fork closer to spoon","template":"Moving [something] closer to [something]","placeholders":["fork","spoon"]}, +{"id":"87461","label":"letting toy truck roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy truck"]}, +{"id":"103842","label":"covering remote control with pillow","template":"Covering [something] with [something]","placeholders":["remote control","pillow"]}, +{"id":"175048","label":"putting scissors behind book","template":"Putting [something] behind [something]","placeholders":["scissors","book"]}, +{"id":"209109","label":"throwing empty gum wrapper","template":"Throwing [something]","placeholders":["empty gum wrapper"]}, +{"id":"20230","label":"plugging a power cord into a wall socket","template":"Plugging [something] into [something]","placeholders":["a power cord","a wall socket"]}, +{"id":"176266","label":"holding tweezers in front of mouthwash","template":"Holding [something] in front of [something]","placeholders":["tweezers","mouthwash"]}, +{"id":"3201","label":"moving away from wireless mouse with your camera","template":"Moving away from [something] with your camera","placeholders":["wireless mouse"]}, +{"id":"100799","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"33238","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"164953","label":"a book falling like a rock","template":"[Something] falling like a rock","placeholders":["a book"]}, +{"id":"30439","label":"tearing tearing paper into two pieces into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing paper into two pieces"]}, +{"id":"65966","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"92412","label":"tipping block over","template":"Tipping [something] over","placeholders":["block"]}, +{"id":"31921","label":"lifting a book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a book"]}, +{"id":"61550","label":"pouring soda into mug","template":"Pouring [something] into [something]","placeholders":["soda","mug"]}, +{"id":"127476","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"164788","label":"showing book on top of box","template":"Showing [something] on top of [something]","placeholders":["book","box"]}, +{"id":"56568","label":"opening fridge door","template":"Opening [something]","placeholders":["fridge door"]}, +{"id":"159427","label":"pretending or failing to wipe flour off of sink","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["flour","sink"]}, +{"id":"158855","label":"covering remote with plate","template":"Covering [something] with [something]","placeholders":["remote","plate"]}, +{"id":"140415","label":"pushing towel with foot","template":"Pushing [something] with [something]","placeholders":["towel","foot"]}, +{"id":"38364","label":"piling blankets up","template":"Piling [something] up","placeholders":["blankets"]}, +{"id":"91437","label":"squeezing toy football","template":"Squeezing [something]","placeholders":["toy football"]}, +{"id":"37741","label":"poking mouse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["mouse"]}, +{"id":"126884","label":"pulling a pen from behind of a book","template":"Pulling [something] from behind of [something]","placeholders":["a pen","a book"]}, +{"id":"18374","label":"stuffing a rag into a cup","template":"Stuffing [something] into [something]","placeholders":["a rag","a cup"]}, +{"id":"215058","label":"covering marker with tissue","template":"Covering [something] with [something]","placeholders":["marker","tissue"]}, +{"id":"214157","label":"putting a coaster","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coaster"]}, +{"id":"169558","label":"putting red colour spoon on a surface","template":"Putting [something] on a surface","placeholders":["red colour spoon"]}, +{"id":"147298","label":"holding hat next to blanket","template":"Holding [something] next to [something]","placeholders":["hat","blanket"]}, +{"id":"136718","label":"squeezing a ball of yarn","template":"Squeezing [something]","placeholders":["a ball of yarn"]}, +{"id":"212895","label":"letting a crayon roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a crayon"]}, +{"id":"206851","label":"moving sunglasses across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["sunglasses"]}, +{"id":"9746","label":"moving thread away from the bangle","template":"Moving [something] away from [something]","placeholders":["thread","the bangle"]}, +{"id":"51713","label":"closing cabinet door","template":"Closing [something]","placeholders":["cabinet door"]}, +{"id":"97730","label":"holding a coin","template":"Holding [something]","placeholders":["a coin"]}, +{"id":"108615","label":"squeezing cat","template":"Squeezing [something]","placeholders":["cat"]}, +{"id":"18771","label":"pretending or trying and failing to twist spanner","template":"Pretending or trying and failing to twist [something]","placeholders":["spanner"]}, +{"id":"145257","label":"putting a box behind remote","template":"Putting [something] behind [something]","placeholders":["a box","remote"]}, +{"id":"20901","label":"putting mouse behind laptop","template":"Putting [something] behind [something]","placeholders":["mouse","laptop"]}, +{"id":"203613","label":"pushing bat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bat"]}, +{"id":"53468","label":"trying to bend bat so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["bat"]}, +{"id":"19792","label":"holding bottle in front of bowl","template":"Holding [something] in front of [something]","placeholders":["bottle","bowl"]}, +{"id":"93315","label":"moving small book down","template":"Moving [something] down","placeholders":["small book"]}, +{"id":"31475","label":"dropping a cup next to text books","template":"Dropping [something] next to [something]","placeholders":["a cup","text books"]}, +{"id":"3007","label":"putting a metal cylinder underneath a mug","template":"Putting [something] underneath [something]","placeholders":["a metal cylinder","a mug"]}, +{"id":"18103","label":"putting pendrive behind mug","template":"Putting [something] behind [something]","placeholders":["pendrive","mug"]}, +{"id":"202404","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"123298","label":"pretending to pick something up","template":"Pretending to pick [something] up","placeholders":["something"]}, +{"id":"31368","label":"tearing movies brochure into two pieces","template":"Tearing [something] into two pieces","placeholders":["movies brochure"]}, +{"id":"156834","label":"showing glass behind lighter","template":"Showing [something] behind [something]","placeholders":["glass","lighter"]}, +{"id":"163114","label":"pushing toy idol so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy idol"]}, +{"id":"135014","label":"dropping a handkerchief in front of a ruler","template":"Dropping [something] in front of [something]","placeholders":["a handkerchief","a ruler"]}, +{"id":"208368","label":"lifting cereal box with tape on it","template":"Lifting [something] with [something] on it","placeholders":["cereal box","tape"]}, +{"id":"100042","label":"touching (without moving) cup of table","template":"Touching (without moving) [part] of [something]","placeholders":["cup","table"]}, +{"id":"3480","label":"throwing a key chain","template":"Throwing [something]","placeholders":["a key chain"]}, +{"id":"11978","label":"pushing empty treat bar wrap from left to right","template":"Pushing [something] from left to right","placeholders":["empty treat bar wrap"]}, +{"id":"109841","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"172317","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"135910","label":"turning the camera right while filming vacuum cleaner","template":"Turning the camera right while filming [something]","placeholders":["vacuum cleaner"]}, +{"id":"127573","label":"plugging earphones into a laptop computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earphones","a laptop computer"]}, +{"id":"119536","label":"pushing double-sided adhesive tape so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["double-sided adhesive tape"]}, +{"id":"76016","label":"putting box in front of tape dispenser","template":"Putting [something] in front of [something]","placeholders":["box","tape dispenser"]}, +{"id":"145187","label":"letting superball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["superball"]}, +{"id":"151633","label":"pretending to be tearing denim jacket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["denim jacket"]}, +{"id":"8968","label":"spreading cloth onto laptop","template":"Spreading [something] onto [something]","placeholders":["cloth","laptop"]}, +{"id":"80347","label":"throwing a tennisball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a tennisball"]}, +{"id":"20536","label":"pretending to throw stone","template":"Pretending to throw [something]","placeholders":["stone"]}, +{"id":"98652","label":"turning the camera upwards while filming brown case","template":"Turning the camera upwards while filming [something]","placeholders":["brown case"]}, +{"id":"38916","label":"spinning a wheel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a wheel"]}, +{"id":"21847","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"25472","label":"putting something similar","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar"]}, +{"id":"70039","label":"holding a ball","template":"Holding [something]","placeholders":["a ball"]}, +{"id":"205513","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"183702","label":"failing to put a bread layer into a basket because the bread does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bread layer","a basket","the bread"]}, +{"id":"59775","label":"dropping a pencil in front of a container","template":"Dropping [something] in front of [something]","placeholders":["a pencil","a container"]}, +{"id":"134425","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"82109","label":"pushing red candle from left to right","template":"Pushing [something] from left to right","placeholders":["red candle"]}, +{"id":"130886","label":"pushing a mobile phone with a book","template":"Pushing [something] with [something]","placeholders":["a mobile phone","a book"]}, +{"id":"12231","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"48204","label":"stuffing paper into beaker","template":"Stuffing [something] into [something]","placeholders":["paper","beaker"]}, +{"id":"216476","label":"uncovering headphones","template":"Uncovering [something]","placeholders":["headphones"]}, +{"id":"112503","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"208116","label":"dropping a peg next to a hanger","template":"Dropping [something] next to [something]","placeholders":["a peg","a hanger"]}, +{"id":"17055","label":"turning the camera left while filming a jar","template":"Turning the camera left while filming [something]","placeholders":["a jar"]}, +{"id":"51196","label":"pulling two ends of newspaper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["newspaper"]}, +{"id":"38723","label":"turning glue stick upside down","template":"Turning [something] upside down","placeholders":["glue stick"]}, +{"id":"50683","label":"trying to pour water into bucket, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bucket"]}, +{"id":"103055","label":"pouring water into sink","template":"Pouring [something] into [something]","placeholders":["water","sink"]}, +{"id":"141058","label":"pushing scotch tape so it spins","template":"Pushing [something] so it spins","placeholders":["scotch tape"]}, +{"id":"80069","label":"spinning a pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pencil"]}, +{"id":"113033","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"22006","label":"bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bag"]}, +{"id":"16942","label":"tilting a metronome with a spool of thread on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a metronome","a spool of thread"]}, +{"id":"80694","label":"moving magnet down","template":"Moving [something] down","placeholders":["magnet"]}, +{"id":"9373","label":"showing that dish is empty","template":"Showing that [something] is empty","placeholders":["dish"]}, +{"id":"212290","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"206977","label":"moving white car and yellow car closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["white car","yellow car"]}, +{"id":"138580","label":"holding a mouse next to a wallet","template":"Holding [something] next to [something]","placeholders":["a mouse","a wallet"]}, +{"id":"203140","label":"squeezing paper","template":"Squeezing [something]","placeholders":["paper"]}, +{"id":"115617","label":"squeezing a cream bottle","template":"Squeezing [something]","placeholders":["a cream bottle"]}, +{"id":"68631","label":"moving lid of glass bottle","template":"Moving [part] of [something]","placeholders":["lid","glass bottle"]}, +{"id":"40601","label":"glove colliding with glove and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["glove","glove"]}, +{"id":"147838","label":"showing bottle cap next to aluminium channel","template":"Showing [something] next to [something]","placeholders":["bottle cap","aluminium channel"]}, +{"id":"108578","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"178651","label":"uncovering headphones","template":"Uncovering [something]","placeholders":["headphones"]}, +{"id":"153663","label":"moving a cup away from a bottle","template":"Moving [something] away from [something]","placeholders":["a cup","a bottle"]}, +{"id":"4137","label":"bending a straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a straw"]}, +{"id":"95339","label":"moving remote control up","template":"Moving [something] up","placeholders":["remote control"]}, +{"id":"207985","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"197169","label":"lifting up one end of table without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["table"]}, +{"id":"199010","label":"pretending or trying and failing to twist a roll of masking tape","template":"Pretending or trying and failing to twist [something]","placeholders":["a roll of masking tape"]}, +{"id":"44096","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"203398","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"75498","label":"touching (without moving) adaptor of the charger","template":"Touching (without moving) [part] of [something]","placeholders":["adaptor","the charger"]}, +{"id":"4378","label":"pushing bar soap from right to left","template":"Pushing [something] from right to left","placeholders":["bar soap"]}, +{"id":"136076","label":"poking paper towels so that it falls over","template":"Poking [something] so that it falls over","placeholders":["paper towels"]}, +{"id":"102947","label":"tilting a box with a coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","a coin"]}, +{"id":"65208","label":"holding the deodorant next to the shampoo","template":"Holding [something] next to [something]","placeholders":["the deodorant","the shampoo"]}, +{"id":"10507","label":"trying to pour water into bottle, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bottle"]}, +{"id":"201854","label":"opening guitar liner","template":"Opening [something]","placeholders":["guitar liner"]}, +{"id":"166267","label":"taking box from floor","template":"Taking [something] from [somewhere]","placeholders":["box","floor"]}, +{"id":"42489","label":"pretending or failing to wipe boot polish off of surface","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["boot polish","surface"]}, +{"id":"152204","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"162973","label":"putting 1 mirror onto laptop","template":"Putting [number of] [something] onto [something]","placeholders":["1","mirror","laptop"]}, +{"id":"76986","label":"plugging a charger into the wall","template":"Plugging [something] into [something]","placeholders":["a charger","the wall"]}, +{"id":"115480","label":"folding underwear","template":"Folding [something]","placeholders":["underwear"]}, +{"id":"145974","label":"picking bag up","template":"Picking [something] up","placeholders":["bag"]}, +{"id":"210579","label":"attaching cover switch to fan regulator","template":"Attaching [something] to [something]","placeholders":["cover switch","fan regulator"]}, +{"id":"28855","label":"showing scooter to the camera","template":"Showing [something] to the camera","placeholders":["scooter"]}, +{"id":"184328","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"213259","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"162563","label":"tipping cylinder over","template":"Tipping [something] over","placeholders":["cylinder"]}, +{"id":"120445","label":"uncovering a tomato","template":"Uncovering [something]","placeholders":["a tomato"]}, +{"id":"176721","label":"putting paper onto book","template":"Putting [something] onto [something]","placeholders":["paper","book"]}, +{"id":"110673","label":"pushing white hand gel from left to right","template":"Pushing [something] from left to right","placeholders":["white hand gel"]}, +{"id":"169556","label":"showing bowl on top of carpet","template":"Showing [something] on top of [something]","placeholders":["bowl","carpet"]}, +{"id":"44659","label":"holding small green ball","template":"Holding [something]","placeholders":["small green ball"]}, +{"id":"101108","label":"tearing sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet"]}, +{"id":"52560","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"30260","label":"moving stapler towards the camera","template":"Moving [something] towards the camera","placeholders":["stapler"]}, +{"id":"104610","label":"removing basket, revealing cds behind","template":"Removing [something], revealing [something] behind","placeholders":["basket","cds"]}, +{"id":"107117","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"207150","label":"moving bucket away from the camera","template":"Moving [something] away from the camera","placeholders":["bucket"]}, +{"id":"132004","label":"dropping stapler next to ink bottle","template":"Dropping [something] next to [something]","placeholders":["stapler","ink bottle"]}, +{"id":"98853","label":"pushing a screwdriver so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a screwdriver"]}, +{"id":"25036","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"3127","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"131082","label":"covering paper clip with paper napkin","template":"Covering [something] with [something]","placeholders":["paper clip","paper napkin"]}, +{"id":"205156","label":"moving a cream tube away from the camera","template":"Moving [something] away from the camera","placeholders":["a cream tube"]}, +{"id":"156711","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"144063","label":"pretending to close tea box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["tea box"]}, +{"id":"31644","label":"holding a picture behind a case","template":"Holding [something] behind [something]","placeholders":["a picture","a case"]}, +{"id":"6793","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"193709","label":"moving green bowl closer to orange bowl","template":"Moving [something] closer to [something]","placeholders":["green bowl","orange bowl"]}, +{"id":"122887","label":"showing that coins is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["coins","a jar"]}, +{"id":"174300","label":"putting scieser on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["scieser","box"]}, +{"id":"59962","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"168562","label":"lifting a surface with candy on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["candy"]}, +{"id":"94262","label":"lifting spoon with nut on it","template":"Lifting [something] with [something] on it","placeholders":["spoon","nut"]}, +{"id":"188559","label":"holding tangerine next to mug","template":"Holding [something] next to [something]","placeholders":["tangerine","mug"]}, +{"id":"160211","label":"putting pen, pen and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","pen","pen"]}, +{"id":"213518","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"152981","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38624","label":"throwing a sock","template":"Throwing [something]","placeholders":["a sock"]}, +{"id":"116263","label":"pretending to throw a phone","template":"Pretending to throw [something]","placeholders":["a phone"]}, +{"id":"58042","label":"pretending or failing to wipe ink off of box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","box"]}, +{"id":"200839","label":"pretending to open a cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cup"]}, +{"id":"89268","label":"pushing napkins off of the table","template":"Pushing [something] off of [something]","placeholders":["napkins","the table"]}, +{"id":"38914","label":"dropping bottle behind bagback","template":"Dropping [something] behind [something]","placeholders":["bottle","bagback"]}, +{"id":"140338","label":"tilting box with lipbalm on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","lipbalm"]}, +{"id":"49806","label":"dropping remote control in front of wallet","template":"Dropping [something] in front of [something]","placeholders":["remote control","wallet"]}, +{"id":"81589","label":"moving leaf of plant","template":"Moving [part] of [something]","placeholders":["leaf","plant"]}, +{"id":"53297","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"72982","label":"pushing chocolate from left to right","template":"Pushing [something] from left to right","placeholders":["chocolate"]}, +{"id":"137146","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"113598","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"161249","label":"twisting hand towel","template":"Twisting [something]","placeholders":["hand towel"]}, +{"id":"100710","label":"putting mouse underneath table","template":"Putting [something] underneath [something]","placeholders":["mouse","table"]}, +{"id":"113508","label":"digging a fork out of the sugar","template":"Digging [something] out of [something]","placeholders":["a fork","the sugar"]}, +{"id":"98503","label":"showing a cup behind an apple","template":"Showing [something] behind [something]","placeholders":["a cup","an apple"]}, +{"id":"161111","label":"showing cup behind candle","template":"Showing [something] behind [something]","placeholders":["cup","candle"]}, +{"id":"153984","label":"pulling two ends of a hair tie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a hair tie"]}, +{"id":"211937","label":"failing to put ball into cup because ball does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["ball","cup","ball"]}, +{"id":"176187","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"49872","label":"moving phone and controller so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["phone","controller"]}, +{"id":"42504","label":"covering a pen with paper","template":"Covering [something] with [something]","placeholders":["a pen","paper"]}, +{"id":"52275","label":"plugging iron into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["iron","wall plug"]}, +{"id":"158429","label":"covering a tomato with a washcloth","template":"Covering [something] with [something]","placeholders":["a tomato","a washcloth"]}, +{"id":"43861","label":"uncovering cell phone","template":"Uncovering [something]","placeholders":["cell phone"]}, +{"id":"104388","label":"turning the camera right while filming cycle","template":"Turning the camera right while filming [something]","placeholders":["cycle"]}, +{"id":"210434","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"108421","label":"taking marking pen","template":"Taking [one of many similar things on the table]","placeholders":["marking pen"]}, +{"id":"185945","label":"taking paperclip","template":"Taking [one of many similar things on the table]","placeholders":["paperclip"]}, +{"id":"177476","label":"putting a pillow onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a pillow"]}, +{"id":"163227","label":"tilting a box with a little shoe on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a box","a little shoe"]}, +{"id":"17916","label":"closing spectacle box","template":"Closing [something]","placeholders":["spectacle box"]}, +{"id":"165313","label":"taking tape dispenser","template":"Taking [one of many similar things on the table]","placeholders":["tape dispenser"]}, +{"id":"204194","label":"moving container and cigarettes closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["container","cigarettes"]}, +{"id":"49358","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"136506","label":"putting a shoe behind deodorant","template":"Putting [something] behind [something]","placeholders":["a shoe","deodorant"]}, +{"id":"170330","label":"opening plastic box","template":"Opening [something]","placeholders":["plastic box"]}, +{"id":"86972","label":"pretending to poke glasses","template":"Pretending to poke [something]","placeholders":["glasses"]}, +{"id":"207996","label":"holding soldering wire reel next to black plastic box","template":"Holding [something] next to [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"159586","label":"poking deodorant so that it falls over","template":"Poking [something] so that it falls over","placeholders":["deodorant"]}, +{"id":"204388","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"10315","label":"removing bottle, revealing paper weight behind","template":"Removing [something], revealing [something] behind","placeholders":["bottle","paper weight"]}, +{"id":"60251","label":"pretending to put keys into bag","template":"Pretending to put [something] into [something]","placeholders":["keys","bag"]}, +{"id":"40202","label":"pretending to put jar behind monitor","template":"Pretending to put [something] behind [something]","placeholders":["jar","monitor"]}, +{"id":"140953","label":"lifting ring up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["ring"]}, +{"id":"176873","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"171029","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"63599","label":"covering flower with cup","template":"Covering [something] with [something]","placeholders":["flower","cup"]}, +{"id":"154967","label":"pushing a cylindrical box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a cylindrical box"]}, +{"id":"189662","label":"holding a toy fish","template":"Holding [something]","placeholders":["a toy fish"]}, +{"id":"3003","label":"putting granola bar into lunchbox","template":"Putting [something] into [something]","placeholders":["granola bar","lunchbox"]}, +{"id":"189919","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"108506","label":"moving glue stick away from the camera","template":"Moving [something] away from the camera","placeholders":["glue stick"]}, +{"id":"216852","label":"tearing cough drop wrapper into two pieces","template":"Tearing [something] into two pieces","placeholders":["cough drop wrapper"]}, +{"id":"136059","label":"pretending to put pen into mug","template":"Pretending to put [something] into [something]","placeholders":["pen","mug"]}, +{"id":"157249","label":"lifting notebook with pen on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","pen"]}, +{"id":"90236","label":"putting 3 white colour board clips onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["3","white colour board clips","red pouch"]}, +{"id":"121736","label":"turning tumbler upside down","template":"Turning [something] upside down","placeholders":["tumbler"]}, +{"id":"158353","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"122473","label":"touching (without moving) handle of tap","template":"Touching (without moving) [part] of [something]","placeholders":["handle","tap"]}, +{"id":"84466","label":"covering football with towel","template":"Covering [something] with [something]","placeholders":["football","towel"]}, +{"id":"54341","label":"moving a mug and a mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","a mug"]}, +{"id":"171045","label":"putting apple corer","template":"Putting [something similar to other things that are already on the table]","placeholders":["apple corer"]}, +{"id":"147490","label":"uncovering bear","template":"Uncovering [something]","placeholders":["bear"]}, +{"id":"172398","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"96257","label":"moving bar soap up","template":"Moving [something] up","placeholders":["bar soap"]}, +{"id":"167683","label":"pretending to turn football upside down","template":"Pretending to turn [something] upside down","placeholders":["football"]}, +{"id":"73217","label":"approaching ring with your camera","template":"Approaching [something] with your camera","placeholders":["ring"]}, +{"id":"200328","label":"picking racket up","template":"Picking [something] up","placeholders":["racket"]}, +{"id":"79856","label":"moving pen closer to notebook","template":"Moving [something] closer to [something]","placeholders":["pen","notebook"]}, +{"id":"155582","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"48258","label":"throwing the pen","template":"Throwing [something]","placeholders":["the pen"]}, +{"id":"173048","label":"putting glass and wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["glass","wallet"]}, +{"id":"210076","label":"showing an apple next to a jar","template":"Showing [something] next to [something]","placeholders":["an apple","a jar"]}, +{"id":"96474","label":"holding a stick","template":"Holding [something]","placeholders":["a stick"]}, +{"id":"180705","label":"twisting (wringing) colth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["colth"]}, +{"id":"213403","label":"wiping dirt off of counter","template":"Wiping [something] off of [something]","placeholders":["dirt","counter"]}, +{"id":"2100","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"162169","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"78202","label":"turning phone upside down","template":"Turning [something] upside down","placeholders":["phone"]}, +{"id":"175028","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"193214","label":"turning the camera left while filming water pipe","template":"Turning the camera left while filming [something]","placeholders":["water pipe"]}, +{"id":"65211","label":"closing pen top","template":"Closing [something]","placeholders":["pen top"]}, +{"id":"192232","label":"pushing shoe so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe"]}, +{"id":"21259","label":"dropping notebook onto table","template":"Dropping [something] onto [something]","placeholders":["notebook","table"]}, +{"id":"17390","label":"tilting folder with orange on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","orange"]}, +{"id":"8139","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"151677","label":"putting a makeup brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a makeup brush"]}, +{"id":"169434","label":"moving light reflector down","template":"Moving [something] down","placeholders":["light reflector"]}, +{"id":"34188","label":"letting something roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["something"]}, +{"id":"215836","label":"moving book and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["book","remote"]}, +{"id":"39979","label":"moving box and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["box","pen"]}, +{"id":"23014","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"164137","label":"holding a mobile over a paper","template":"Holding [something] over [something]","placeholders":["a mobile","a paper"]}, +{"id":"137683","label":"holding leaf","template":"Holding [something]","placeholders":["leaf"]}, +{"id":"164504","label":"pushing pen drive so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen drive"]}, +{"id":"54489","label":"pulling toy car from left to right","template":"Pulling [something] from left to right","placeholders":["toy car"]}, +{"id":"216106","label":"moving a candle closer to another candle","template":"Moving [something] closer to [something]","placeholders":["a candle","another candle"]}, +{"id":"213667","label":"holding ashtray in front of glass","template":"Holding [something] in front of [something]","placeholders":["ashtray","glass"]}, +{"id":"150128","label":"moving a bottle and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a box"]}, +{"id":"80575","label":"lifting up one end of blanket without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["blanket"]}, +{"id":"200695","label":"turning cell upside down","template":"Turning [something] upside down","placeholders":["cell"]}, +{"id":"68181","label":"pretending to close the small bag without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["the small bag"]}, +{"id":"10484","label":"twisting a lid","template":"Twisting [something]","placeholders":["a lid"]}, +{"id":"101633","label":"pushing cd so it spins","template":"Pushing [something] so it spins","placeholders":["cd"]}, +{"id":"139712","label":"turning the camera upwards while filming trolley","template":"Turning the camera upwards while filming [something]","placeholders":["trolley"]}, +{"id":"102673","label":"pretending to be tearing cardboard","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cardboard"]}, +{"id":"195417","label":"putting a clip on a surface","template":"Putting [something] on a surface","placeholders":["a clip"]}, +{"id":"162571","label":"dropping cufflinks behind a book","template":"Dropping [something] behind [something]","placeholders":["cufflinks","a book"]}, +{"id":"165871","label":"throwing small box in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["small box"]}, +{"id":"200700","label":"pushing spectacles so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spectacles"]}, +{"id":"68698","label":"lifting up one end of bat, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bat"]}, +{"id":"206","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"192363","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"158627","label":"burying a watch in a cloth","template":"Burying [something] in [something]","placeholders":["a watch","a cloth"]}, +{"id":"73095","label":"putting the squeeze on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["the squeeze"]}, +{"id":"42457","label":"lifting up one end of screw driver without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["screw driver"]}, +{"id":"112527","label":"taking spoon from teacup","template":"Taking [something] from [somewhere]","placeholders":["spoon","teacup"]}, +{"id":"184059","label":"holding comb in front of computer screen","template":"Holding [something] in front of [something]","placeholders":["comb","computer screen"]}, +{"id":"148709","label":"pouring water out of can","template":"Pouring [something] out of [something]","placeholders":["water","can"]}, +{"id":"142684","label":"moving glue stick and diskette away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glue stick","diskette"]}, +{"id":"76113","label":"pushing a pen onto a bearer","template":"Pushing [something] onto [something]","placeholders":["a pen","a bearer"]}, +{"id":"167337","label":"showing that purse is empty","template":"Showing that [something] is empty","placeholders":["purse"]}, +{"id":"114485","label":"holding toothpicks next to mug","template":"Holding [something] next to [something]","placeholders":["toothpicks","mug"]}, +{"id":"123603","label":"throwing sachet against mosquito bat","template":"Throwing [something] against [something]","placeholders":["sachet","mosquito bat"]}, +{"id":"110868","label":"pushing a book with a box cutter","template":"Pushing [something] with [something]","placeholders":["a book","a box cutter"]}, +{"id":"204067","label":"putting a pear","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pear"]}, +{"id":"54935","label":"pulling stool from right to left","template":"Pulling [something] from right to left","placeholders":["stool"]}, +{"id":"87943","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"107626","label":"spinning spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spoon"]}, +{"id":"146350","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"23804","label":"putting pen similar to others that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen similar to others that are already on the table"]}, +{"id":"138179","label":"taking wallet","template":"Taking [one of many similar things on the table]","placeholders":["wallet"]}, +{"id":"85790","label":"moving mug up","template":"Moving [something] up","placeholders":["mug"]}, +{"id":"47879","label":"lifting a surface with box on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["box"]}, +{"id":"195609","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"218002","label":"avocado colliding with banana and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["avocado","banana"]}, +{"id":"712","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"114612","label":"plugging an electric fan plug into a socket","template":"Plugging [something] into [something]","placeholders":["an electric fan plug","a socket"]}, +{"id":"181077","label":"turning plate upside down","template":"Turning [something] upside down","placeholders":["plate"]}, +{"id":"3360","label":"plugging flash drive into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["flash drive","computer"]}, +{"id":"87","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"93520","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"33158","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"84793","label":"tearing sponge into two pieces","template":"Tearing [something] into two pieces","placeholders":["sponge"]}, +{"id":"27945","label":"stacking 3 toys","template":"Stacking [number of] [something]","placeholders":["3","toys"]}, +{"id":"39170","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"56735","label":"moving granola bar down","template":"Moving [something] down","placeholders":["granola bar"]}, +{"id":"108286","label":"approaching bench with your camera","template":"Approaching [something] with your camera","placeholders":["bench"]}, +{"id":"41644","label":"throwing a garbage","template":"Throwing [something]","placeholders":["a garbage"]}, +{"id":"218016","label":"lifting a surface with coin on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["coin"]}, +{"id":"200847","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"165912","label":"putting a candle in front of a ring","template":"Putting [something] in front of [something]","placeholders":["a candle","a ring"]}, +{"id":"47239","label":"putting coin, calculator and a book on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["coin","calculator","a book"]}, +{"id":"144648","label":"moving away from toy giraffe with your camera","template":"Moving away from [something] with your camera","placeholders":["toy giraffe"]}, +{"id":"167570","label":"moving cufflinks closer to a cup","template":"Moving [something] closer to [something]","placeholders":["cufflinks","a cup"]}, +{"id":"29084","label":"taking watch from desk","template":"Taking [something] from [somewhere]","placeholders":["watch","desk"]}, +{"id":"95589","label":"putting card upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["card"]}, +{"id":"186396","label":"putting a bottle behind the cup","template":"Putting [something] behind [something]","placeholders":["a bottle","the cup"]}, +{"id":"101187","label":"putting a plastic container on the edge of a dresser so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a plastic container","a dresser"]}, +{"id":"45052","label":"holding yellow ball in front of duster","template":"Holding [something] in front of [something]","placeholders":["yellow ball","duster"]}, +{"id":"71100","label":"lifting up one end of a paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a paper"]}, +{"id":"15959","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"187924","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"19880","label":"showing that a plastic container is empty","template":"Showing that [something] is empty","placeholders":["a plastic container"]}, +{"id":"24712","label":"pushing cherry so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cherry"]}, +{"id":"164063","label":"showing trophy behind the clip","template":"Showing [something] behind [something]","placeholders":["trophy","the clip"]}, +{"id":"3906","label":"tearing duct tape into two pieces","template":"Tearing [something] into two pieces","placeholders":["duct tape"]}, +{"id":"192990","label":"unfolding glasses","template":"Unfolding [something]","placeholders":["glasses"]}, +{"id":"91030","label":"pouring oil onto palm","template":"Pouring [something] onto [something]","placeholders":["oil","palm"]}, +{"id":"3017","label":"dropping claw onto floor","template":"Dropping [something] onto [something]","placeholders":["claw","floor"]}, +{"id":"113226","label":"taking clothclips","template":"Taking [one of many similar things on the table]","placeholders":["clothclips"]}, +{"id":"154697","label":"pulling pencil case from left to right","template":"Pulling [something] from left to right","placeholders":["pencil case"]}, +{"id":"68883","label":"showing switch board to the camera","template":"Showing [something] to the camera","placeholders":["switch board"]}, +{"id":"146966","label":"pushing duster so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["duster"]}, +{"id":"124443","label":"showing a tablet computer behind a blood pressure monitor","template":"Showing [something] behind [something]","placeholders":["a tablet computer","a blood pressure monitor"]}, +{"id":"84389","label":"holding a box next to a glass","template":"Holding [something] next to [something]","placeholders":["a box","a glass"]}, +{"id":"129239","label":"wiping food off of sideboard","template":"Wiping [something] off of [something]","placeholders":["food","sideboard"]}, +{"id":"196658","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"67013","label":"putting skate wheel with other wheels","template":"Putting [something similar to other things that are already on the table]","placeholders":["skate wheel with other wheels"]}, +{"id":"135663","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"31652","label":"pushing a box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box"]}, +{"id":"161551","label":"squeezing a lime","template":"Squeezing [something]","placeholders":["a lime"]}, +{"id":"100250","label":"showing monitor on top of table","template":"Showing [something] on top of [something]","placeholders":["monitor","table"]}, +{"id":"71741","label":"tearing sticky note just a little bit","template":"Tearing [something] just a little bit","placeholders":["sticky note"]}, +{"id":"113228","label":"moving card across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["card"]}, +{"id":"165849","label":"uncovering a container","template":"Uncovering [something]","placeholders":["a container"]}, +{"id":"178896","label":"turning water jug upside down","template":"Turning [something] upside down","placeholders":["water jug"]}, +{"id":"12620","label":"squeezing hand sanitizer","template":"Squeezing [something]","placeholders":["hand sanitizer"]}, +{"id":"113429","label":"hitting a market with another market","template":"Hitting [something] with [something]","placeholders":["a market","another market"]}, +{"id":"180734","label":"showing that a trash bin is empty","template":"Showing that [something] is empty","placeholders":["a trash bin"]}, +{"id":"33581","label":"pulling white deodorant from right to left","template":"Pulling [something] from right to left","placeholders":["white deodorant"]}, +{"id":"108984","label":"pushing a flashlight from right to left","template":"Pushing [something] from right to left","placeholders":["a flashlight"]}, +{"id":"203205","label":"pouring something out of something","template":"Pouring [something] out of [something]","placeholders":["something","something"]}, +{"id":"26748","label":"pretending to put a watch into a bowl","template":"Pretending to put [something] into [something]","placeholders":["a watch","a bowl"]}, +{"id":"113827","label":"holding marker next to cup","template":"Holding [something] next to [something]","placeholders":["marker","cup"]}, +{"id":"215057","label":"laying tablet box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["tablet box"]}, +{"id":"107584","label":"showing escalator to the camera","template":"Showing [something] to the camera","placeholders":["escalator"]}, +{"id":"35357","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"152472","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"161547","label":"poking tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["tube"]}, +{"id":"64319","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"32721","label":"holding pineapple in front of bicycle","template":"Holding [something] in front of [something]","placeholders":["pineapple","bicycle"]}, +{"id":"181536","label":"pulling two ends of earmuffs so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["earmuffs"]}, +{"id":"43528","label":"uncovering badge","template":"Uncovering [something]","placeholders":["badge"]}, +{"id":"76642","label":"putting coin onto onion so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["coin","onion"]}, +{"id":"111947","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"115161","label":"spinning football that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["football"]}, +{"id":"209801","label":"putting bottle behind juicer","template":"Putting [something] behind [something]","placeholders":["bottle","juicer"]}, +{"id":"68156","label":"turning pencil case upside down","template":"Turning [something] upside down","placeholders":["pencil case"]}, +{"id":"216074","label":"moving nail clipper and sponge closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["nail clipper","sponge"]}, +{"id":"163710","label":"closing cream powder","template":"Closing [something]","placeholders":["cream powder"]}, +{"id":"125852","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"102850","label":"squeezing handkerchief","template":"Squeezing [something]","placeholders":["handkerchief"]}, +{"id":"136046","label":"pushing fidget spinner from right to left","template":"Pushing [something] from right to left","placeholders":["fidget spinner"]}, +{"id":"83025","label":"dropping camera onto bed","template":"Dropping [something] onto [something]","placeholders":["camera","bed"]}, +{"id":"164334","label":"dropping hairclip in front of piggybank","template":"Dropping [something] in front of [something]","placeholders":["hairclip","piggybank"]}, +{"id":"182325","label":"showing lemon behind doll","template":"Showing [something] behind [something]","placeholders":["lemon","doll"]}, +{"id":"49617","label":"putting pen onto book","template":"Putting [something] onto [something]","placeholders":["pen","book"]}, +{"id":"215405","label":"putting battery next to mug","template":"Putting [something] next to [something]","placeholders":["battery","mug"]}, +{"id":"68874","label":"pulling a watch from right to left","template":"Pulling [something] from right to left","placeholders":["a watch"]}, +{"id":"17265","label":"pushing cup with pen","template":"Pushing [something] with [something]","placeholders":["cup","pen"]}, +{"id":"46282","label":"letting spray can roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["spray can"]}, +{"id":"46392","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"43625","label":"putting a teacup onto a saucer","template":"Putting [something] onto [something]","placeholders":["a teacup","a saucer"]}, +{"id":"59226","label":"taking garlic","template":"Taking [one of many similar things on the table]","placeholders":["garlic"]}, +{"id":"10055","label":"moving marker and tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["marker","tape"]}, +{"id":"218890","label":"moving spoon down","template":"Moving [something] down","placeholders":["spoon"]}, +{"id":"151645","label":"stacking three quarters","template":"Stacking [number of] [something]","placeholders":["three","quarters"]}, +{"id":"216772","label":"pulling a pencil from right to left","template":"Pulling [something] from right to left","placeholders":["a pencil"]}, +{"id":"121170","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"164401","label":"poking shoe so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["shoe"]}, +{"id":"37520","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"170515","label":"lifting rubik's cube up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rubik's cube"]}, +{"id":"30365","label":"showing that yellow container is empty","template":"Showing that [something] is empty","placeholders":["yellow container"]}, +{"id":"193767","label":"pretending or failing to wipe ink off of paper","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","paper"]}, +{"id":"68045","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"35660","label":"tearing white paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["white paper"]}, +{"id":"109184","label":"pushing chocolate off of pillow","template":"Pushing [something] off of [something]","placeholders":["chocolate","pillow"]}, +{"id":"17202","label":"putting ipad on a surface","template":"Putting [something] on a surface","placeholders":["ipad"]}, +{"id":"13728","label":"putting 3 paper clips onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","paper clips","table"]}, +{"id":"40992","label":"putting a toothbrush and nail polish on the table","template":"Putting [something] and [something] on the table","placeholders":["a toothbrush","nail polish"]}, +{"id":"201156","label":"trying to bend nail cutter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["nail cutter"]}, +{"id":"5118","label":"pushing screw driver from right to left","template":"Pushing [something] from right to left","placeholders":["screw driver"]}, +{"id":"192944","label":"dropping smartphone in front of feet","template":"Dropping [something] in front of [something]","placeholders":["smartphone","feet"]}, +{"id":"205024","label":"putting a pen into a pencilcase","template":"Putting [something] into [something]","placeholders":["a pen","a pencilcase"]}, +{"id":"163117","label":"putting one apple to many of them","template":"Putting [something similar to other things that are already on the table]","placeholders":["one apple to many of them"]}, +{"id":"212257","label":"putting glass into bowl","template":"Putting [something] into [something]","placeholders":["glass","bowl"]}, +{"id":"56511","label":"lifting up one end of piece of wood, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["piece of wood"]}, +{"id":"82778","label":"pretending to put white candle on a surface","template":"Pretending to put [something] on a surface","placeholders":["white candle"]}, +{"id":"109072","label":"putting 6 feeding bottles onto a sterilizer","template":"Putting [number of] [something] onto [something]","placeholders":["6 feeding","bottles","a sterilizer"]}, +{"id":"10589","label":"pretending to throw a pair of socks","template":"Pretending to throw [something]","placeholders":["a pair of socks"]}, +{"id":"75517","label":"lifting basket with fruit on it","template":"Lifting [something] with [something] on it","placeholders":["basket","fruit"]}, +{"id":"170404","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"161479","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"98420","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"57188","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"93183","label":"pulling paper out of box","template":"Pulling [something] out of [something]","placeholders":["paper","box"]}, +{"id":"136410","label":"putting a cup of liquid on a surface","template":"Putting [something] on a surface","placeholders":["a cup of liquid"]}, +{"id":"76758","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"13016","label":"tearing cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["cover"]}, +{"id":"46430","label":"putting wallet, wrist watch and pen drive on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wallet","wrist watch","pen drive"]}, +{"id":"97975","label":"trying but failing to attach magnet to stove because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magnet","stove"]}, +{"id":"212636","label":"holding a teaspoon next to a jar","template":"Holding [something] next to [something]","placeholders":["a teaspoon","a jar"]}, +{"id":"182438","label":"tilting a cylindrical box with a stone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cylindrical box","a stone"]}, +{"id":"88527","label":"pouring sand onto paper","template":"Pouring [something] onto [something]","placeholders":["sand","paper"]}, +{"id":"187374","label":"bending template so that it deforms","template":"Bending [something] so that it deforms","placeholders":["template"]}, +{"id":"218094","label":"showing black hair tie to the camera","template":"Showing [something] to the camera","placeholders":["black hair tie"]}, +{"id":"102052","label":"pouring water out of a glass","template":"Pouring [something] out of [something]","placeholders":["water","a glass"]}, +{"id":"18436","label":"uncovering vitamin","template":"Uncovering [something]","placeholders":["vitamin"]}, +{"id":"119829","label":"turning the camera right while filming bush plant","template":"Turning the camera right while filming [something]","placeholders":["bush plant"]}, +{"id":"18563","label":"scooping powdered grains up with spoon","template":"Scooping [something] up with [something]","placeholders":["powdered grains","spoon"]}, +{"id":"211867","label":"pushing earring so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["earring"]}, +{"id":"68931","label":"spinning a coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a coin"]}, +{"id":"67844","label":"pretending to squeeze a powerbank","template":"Pretending to squeeze [something]","placeholders":["a powerbank"]}, +{"id":"174009","label":"taking shell out of hat","template":"Taking [something] out of [something]","placeholders":["shell","hat"]}, +{"id":"118183","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"176401","label":"putting stone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stone"]}, +{"id":"75529","label":"pushing a toy so it spins","template":"Pushing [something] so it spins","placeholders":["a toy"]}, +{"id":"88867","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"52644","label":"piling vegetables and fruits up","template":"Piling [something] up","placeholders":["vegetables and fruits"]}, +{"id":"100406","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"122633","label":"pretending to pick book up","template":"Pretending to pick [something] up","placeholders":["book"]}, +{"id":"49876","label":"holding mobile phone behind laptop","template":"Holding [something] behind [something]","placeholders":["mobile phone","laptop"]}, +{"id":"138396","label":"putting white envelope on a surface","template":"Putting [something] on a surface","placeholders":["white envelope"]}, +{"id":"176431","label":"pretending to be tearing thick cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["thick cloth"]}, +{"id":"47220","label":"uncovering a deodorant","template":"Uncovering [something]","placeholders":["a deodorant"]}, +{"id":"114275","label":"pretending to close a book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a book"]}, +{"id":"3231","label":"moving red pencil sharpner up","template":"Moving [something] up","placeholders":["red pencil sharpner"]}, +{"id":"65834","label":"moving orange post-it up","template":"Moving [something] up","placeholders":["orange post-it"]}, +{"id":"203917","label":"dropping eraser behind cup","template":"Dropping [something] behind [something]","placeholders":["eraser","cup"]}, +{"id":"39802","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"198332","label":"moving computer up","template":"Moving [something] up","placeholders":["computer"]}, +{"id":"13693","label":"tearing wipe into two pieces","template":"Tearing [something] into two pieces","placeholders":["wipe"]}, +{"id":"28614","label":"attaching a post it note to the wall","template":"Attaching [something] to [something]","placeholders":["a post it note","the wall"]}, +{"id":"142168","label":"dropping pencil onto coaster","template":"Dropping [something] onto [something]","placeholders":["pencil","coaster"]}, +{"id":"60467","label":"pushing red candle from right to left","template":"Pushing [something] from right to left","placeholders":["red candle"]}, +{"id":"202939","label":"spilling water onto a surface","template":"Spilling [something] onto [something]","placeholders":["water","a surface"]}, +{"id":"72059","label":"showing a fork on top of a plate","template":"Showing [something] on top of [something]","placeholders":["a fork","a plate"]}, +{"id":"58994","label":"taking card out of wallet","template":"Taking [something] out of [something]","placeholders":["card","wallet"]}, +{"id":"58957","label":"poking scissor so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["scissor"]}, +{"id":"94154","label":"flash light falling like a rock","template":"[Something] falling like a rock","placeholders":["flash light"]}, +{"id":"185558","label":"taking fork out of cup","template":"Taking [something] out of [something]","placeholders":["fork","cup"]}, +{"id":"28449","label":"digging blanket out of flashlight","template":"Digging [something] out of [something]","placeholders":["blanket","flashlight"]}, +{"id":"208445","label":"spreading books onto bed","template":"Spreading [something] onto [something]","placeholders":["books","bed"]}, +{"id":"59467","label":"moving a pen and a screwdriver closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pen","a screwdriver"]}, +{"id":"91210","label":"plugging charger into plug","template":"Plugging [something] into [something]","placeholders":["charger","plug"]}, +{"id":"103336","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"18873","label":"showing matchbox on top of the wallet","template":"Showing [something] on top of [something]","placeholders":["matchbox","the wallet"]}, +{"id":"69727","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"39019","label":"moving purple microfiber up","template":"Moving [something] up","placeholders":["purple microfiber"]}, +{"id":"4866","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"164500","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"122879","label":"putting glass into glass holder","template":"Putting [something] into [something]","placeholders":["glass","glass holder"]}, +{"id":"194245","label":"throwing a teddybear","template":"Throwing [something]","placeholders":["a teddybear"]}, +{"id":"178000","label":"scooping baking soda up with spoon","template":"Scooping [something] up with [something]","placeholders":["baking soda","spoon"]}, +{"id":"207132","label":"holding a stapler in front of a fan","template":"Holding [something] in front of [something]","placeholders":["a stapler","a fan"]}, +{"id":"121872","label":"lifting a box of cereal up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a box of cereal"]}, +{"id":"186084","label":"holding toy in front of jar","template":"Holding [something] in front of [something]","placeholders":["toy","jar"]}, +{"id":"45459","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"126890","label":"uncovering paper clip","template":"Uncovering [something]","placeholders":["paper clip"]}, +{"id":"154576","label":"pretending to be tearing shoe","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shoe"]}, +{"id":"148402","label":"bending blinds so that it deforms","template":"Bending [something] so that it deforms","placeholders":["blinds"]}, +{"id":"11001","label":"moving hand of doll masha","template":"Moving [part] of [something]","placeholders":["hand","doll masha"]}, +{"id":"45156","label":"taking slipper from ground","template":"Taking [something] from [somewhere]","placeholders":["slipper","ground"]}, +{"id":"50271","label":"stuffing cloth into bucket","template":"Stuffing [something] into [something]","placeholders":["cloth","bucket"]}, +{"id":"161477","label":"pushing toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy"]}, +{"id":"174523","label":"spilling water onto counter","template":"Spilling [something] onto [something]","placeholders":["water","counter"]}, +{"id":"56679","label":"putting oil bottle on a surface","template":"Putting [something] on a surface","placeholders":["oil bottle"]}, +{"id":"55329","label":"covering bag with plastic cover","template":"Covering [something] with [something]","placeholders":["bag","plastic cover"]}, +{"id":"113169","label":"holding crayons in front of a coloring book","template":"Holding [something] in front of [something]","placeholders":["crayons","a coloring book"]}, +{"id":"160586","label":"lifting a bucket with a hammer on it","template":"Lifting [something] with [something] on it","placeholders":["a bucket","a hammer"]}, +{"id":"172151","label":"showing red pot holder to the camera","template":"Showing [something] to the camera","placeholders":["red pot holder"]}, +{"id":"114815","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"138146","label":"pretending to take shirt from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["shirt","floor"]}, +{"id":"119959","label":"taking a spinner out of a box","template":"Taking [something] out of [something]","placeholders":["a spinner","a box"]}, +{"id":"40279","label":"putting thermal cup on a surface","template":"Putting [something] on a surface","placeholders":["thermal cup"]}, +{"id":"118694","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"182930","label":"taking one pencil","template":"Taking [one of many similar things on the table]","placeholders":["one pencil"]}, +{"id":"47918","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"145683","label":"throwing a lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["a lighter"]}, +{"id":"132205","label":"holding broom in front of ladder","template":"Holding [something] in front of [something]","placeholders":["broom","ladder"]}, +{"id":"146813","label":"plugging cord into cable box but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","cable box"]}, +{"id":"157043","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"174599","label":"pulling pencil case from right to left","template":"Pulling [something] from right to left","placeholders":["pencil case"]}, +{"id":"138903","label":"plugging a usb into a pc but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb","a pc"]}, +{"id":"194118","label":"showing a perfume behind a flashlight","template":"Showing [something] behind [something]","placeholders":["a perfume","a flashlight"]}, +{"id":"101276","label":"putting compass next to punching machine","template":"Putting [something] next to [something]","placeholders":["compass","punching machine"]}, +{"id":"137513","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196021","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"167631","label":"holding a knife next to a fan","template":"Holding [something] next to [something]","placeholders":["a knife","a fan"]}, +{"id":"193595","label":"covering the tape with a towel","template":"Covering [something] with [something]","placeholders":["the tape","a towel"]}, +{"id":"12708","label":"holding glass over a glass","template":"Holding [something] over [something]","placeholders":["glass","a glass"]}, +{"id":"194484","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"71658","label":"holding helmet","template":"Holding [something]","placeholders":["helmet"]}, +{"id":"184495","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"195851","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"10327","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"193319","label":"turning the camera right while filming auto rickshaw","template":"Turning the camera right while filming [something]","placeholders":["auto rickshaw"]}, +{"id":"23063","label":"showing wires behind telephone","template":"Showing [something] behind [something]","placeholders":["wires","telephone"]}, +{"id":"40109","label":"pouring orange soda into a bowl","template":"Pouring [something] into [something]","placeholders":["orange soda","a bowl"]}, +{"id":"20082","label":"moving smartphone and smartphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["smartphone","smartphone"]}, +{"id":"133794","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"155182","label":"putting 4 board clips onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["4","board clips","diary"]}, +{"id":"41347","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"165708","label":"showing calendar to the camera","template":"Showing [something] to the camera","placeholders":["calendar"]}, +{"id":"104083","label":"holding paper in front of game","template":"Holding [something] in front of [something]","placeholders":["paper","game"]}, +{"id":"188081","label":"holding a phone over a bed","template":"Holding [something] over [something]","placeholders":["a phone","a bed"]}, +{"id":"122707","label":"holding a pen in front of a dvd","template":"Holding [something] in front of [something]","placeholders":["a pen","a dvd"]}, +{"id":"186354","label":"lifting up one end of banana, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["banana"]}, +{"id":"219074","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"130875","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"162061","label":"turning the camera left while filming snacks packet","template":"Turning the camera left while filming [something]","placeholders":["snacks packet"]}, +{"id":"100771","label":"pulling two ends of remote but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["remote"]}, +{"id":"148029","label":"covering a wok with a lid","template":"Covering [something] with [something]","placeholders":["a wok","a lid"]}, +{"id":"170391","label":"putting a nail on a surface","template":"Putting [something] on a surface","placeholders":["a nail"]}, +{"id":"100064","label":"moving away from poster with your camera","template":"Moving away from [something] with your camera","placeholders":["poster"]}, +{"id":"21349","label":"putting toy, remote and box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy","remote","box"]}, +{"id":"56553","label":"moving a mug and a remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","a remote"]}, +{"id":"106803","label":"showing a photo of a part of an amusement park to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a part of an amusement park"]}, +{"id":"72128","label":"putting a ball into a helmet","template":"Putting [something] into [something]","placeholders":["a ball","a helmet"]}, +{"id":"28183","label":"taking one toy car away from many toy cars","template":"Taking [one of many similar things on the table]","placeholders":["one toy car away from many toy cars"]}, +{"id":"64726","label":"turning a plastic cup upside down","template":"Turning [something] upside down","placeholders":["a plastic cup"]}, +{"id":"69379","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"89686","label":"covering apple with hand towel","template":"Covering [something] with [something]","placeholders":["apple","hand towel"]}, +{"id":"118009","label":"pushing a bottle with a book","template":"Pushing [something] with [something]","placeholders":["a bottle","a book"]}, +{"id":"79521","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"168777","label":"folding card","template":"Folding [something]","placeholders":["card"]}, +{"id":"123789","label":"powder tin colliding with perfume bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["powder tin","perfume bottle"]}, +{"id":"112487","label":"showing that candy is inside the box","template":"Showing that [something] is inside [something]","placeholders":["candy","the box"]}, +{"id":"69952","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"143460","label":"holding something over something","template":"Holding [something] over [something]","placeholders":["something","something"]}, +{"id":"59410","label":"covering a pen with a paper","template":"Covering [something] with [something]","placeholders":["a pen","a paper"]}, +{"id":"28991","label":"throwing hand towel in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["hand towel"]}, +{"id":"188279","label":"pouring a water into a glass","template":"Pouring [something] into [something]","placeholders":["a water","a glass"]}, +{"id":"80548","label":"tearing a sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a sheet of paper"]}, +{"id":"193255","label":"pushing ring so it spins","template":"Pushing [something] so it spins","placeholders":["ring"]}, +{"id":"185714","label":"pushing hat so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hat"]}, +{"id":"195098","label":"putting cashier that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["cashier"]}, +{"id":"118858","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"15743","label":"putting pen behind mug","template":"Putting [something] behind [something]","placeholders":["pen","mug"]}, +{"id":"162789","label":"uncovering a calculator","template":"Uncovering [something]","placeholders":["a calculator"]}, +{"id":"133903","label":"showing box behind cup","template":"Showing [something] behind [something]","placeholders":["box","cup"]}, +{"id":"58896","label":"pushing napkins so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["napkins"]}, +{"id":"2314","label":"plugging mobile charger into power socket","template":"Plugging [something] into [something]","placeholders":["mobile charger","power socket"]}, +{"id":"169866","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"60802","label":"pouring soda into clear container","template":"Pouring [something] into [something]","placeholders":["soda","clear container"]}, +{"id":"203240","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"30571","label":"spinning fruit so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fruit"]}, +{"id":"83861","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"15277","label":"a flower falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a flower"]}, +{"id":"148162","label":"putting a steel wheel on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a steel wheel"]}, +{"id":"109693","label":"pretending to be tearing blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["blanket"]}, +{"id":"36226","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"22822","label":"moving away from the table with your camera","template":"Moving away from [something] with your camera","placeholders":["the table"]}, +{"id":"152577","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"128455","label":"letting old beer bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["old beer bottle"]}, +{"id":"106848","label":"moving fork up","template":"Moving [something] up","placeholders":["fork"]}, +{"id":"54351","label":"moving grinding mechanism of pepper grinder","template":"Moving [part] of [something]","placeholders":["grinding mechanism","pepper grinder"]}, +{"id":"36741","label":"stacking 6 cans","template":"Stacking [number of] [something]","placeholders":["6","cans"]}, +{"id":"77598","label":"rolling glass to drink water on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["glass to drink water"]}, +{"id":"68921","label":"pulling two ends of a shoelace so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a shoelace"]}, +{"id":"112353","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"38226","label":"pushing water bottle from right to left","template":"Pushing [something] from right to left","placeholders":["water bottle"]}, +{"id":"29578","label":"throwing nutrition bar in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["nutrition bar"]}, +{"id":"213707","label":"turning the camera upwards while filming junction box","template":"Turning the camera upwards while filming [something]","placeholders":["junction box"]}, +{"id":"41241","label":"approaching a ball with your camera","template":"Approaching [something] with your camera","placeholders":["a ball"]}, +{"id":"16205","label":"moving the ball and the cube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the ball","the cube"]}, +{"id":"138078","label":"pouring water into a glass cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass cup"]}, +{"id":"142181","label":"moving paper clip away from the camera","template":"Moving [something] away from the camera","placeholders":["paper clip"]}, +{"id":"100765","label":"pouring juice into jar","template":"Pouring [something] into [something]","placeholders":["juice","jar"]}, +{"id":"204766","label":"putting 2 hair bands onto calculator","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bands","calculator"]}, +{"id":"81026","label":"twisting (wringing) tissue wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["tissue"]}, +{"id":"193473","label":"turning the camera left while filming wastebin","template":"Turning the camera left while filming [something]","placeholders":["wastebin"]}, +{"id":"11166","label":"brush falling like a rock","template":"[Something] falling like a rock","placeholders":["brush"]}, +{"id":"173634","label":"letting tomato roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tomato"]}, +{"id":"109596","label":"pushing remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote"]}, +{"id":"143756","label":"lifting ear plugs up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["ear plugs"]}, +{"id":"76748","label":"dropping a coin onto a handkerchief","template":"Dropping [something] onto [something]","placeholders":["a coin","a handkerchief"]}, +{"id":"55366","label":"hitting a bottle with a highlighter","template":"Hitting [something] with [something]","placeholders":["a bottle","a highlighter"]}, +{"id":"23062","label":"moving a cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a cup"]}, +{"id":"46605","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"204936","label":"pretending to be tearing something that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["something that is not tearable"]}, +{"id":"148931","label":"putting candy into bowl","template":"Putting [something] into [something]","placeholders":["candy","bowl"]}, +{"id":"214165","label":"showing the thermocol piece behind a screwdiver","template":"Showing [something] behind [something]","placeholders":["the thermocol piece","a screwdiver"]}, +{"id":"188146","label":"moving paper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["paper"]}, +{"id":"1023","label":"poking lime so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lime"]}, +{"id":"38335","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"143865","label":"lifting up one end of plastic case without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["plastic case"]}, +{"id":"25413","label":"moving metal of pendrive","template":"Moving [part] of [something]","placeholders":["metal","pendrive"]}, +{"id":"39501","label":"spinning a fidget so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget"]}, +{"id":"135795","label":"putting digital clock on a surface","template":"Putting [something] on a surface","placeholders":["digital clock"]}, +{"id":"177033","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"97607","label":"hitting tin with comb","template":"Hitting [something] with [something]","placeholders":["tin","comb"]}, +{"id":"192933","label":"showing a photo of curry to the camera","template":"Showing a photo of [something] to the camera","placeholders":["curry"]}, +{"id":"208846","label":"holding glass behind stapler","template":"Holding [something] behind [something]","placeholders":["glass","stapler"]}, +{"id":"152128","label":"moving scissor closer to dumbbell","template":"Moving [something] closer to [something]","placeholders":["scissor","dumbbell"]}, +{"id":"155885","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"160837","label":"receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["receipt"]}, +{"id":"62132","label":"hitting a match box with a hair pin","template":"Hitting [something] with [something]","placeholders":["a match box","a hair pin"]}, +{"id":"211689","label":"lifting bowl with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["bowl","bottle"]}, +{"id":"159435","label":"twisting cap of dr. pepper bottle","template":"Twisting [something]","placeholders":["cap of dr. pepper bottle"]}, +{"id":"95343","label":"laying supplement bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["supplement bottle"]}, +{"id":"9914","label":"tipping vape mod over","template":"Tipping [something] over","placeholders":["vape mod"]}, +{"id":"164370","label":"picking a mug up","template":"Picking [something] up","placeholders":["a mug"]}, +{"id":"138121","label":"poking glasses so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glasses"]}, +{"id":"72410","label":"plugging data cable into charger","template":"Plugging [something] into [something]","placeholders":["data cable","charger"]}, +{"id":"184018","label":"stuffing spoon into glass","template":"Stuffing [something] into [something]","placeholders":["spoon","glass"]}, +{"id":"61086","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"112264","label":"pushing a plastic rat skeleton so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a plastic rat skeleton"]}, +{"id":"153216","label":"throwing white badge against board clip","template":"Throwing [something] against [something]","placeholders":["white badge","board clip"]}, +{"id":"91981","label":"pen colliding with chalk and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pen","chalk"]}, +{"id":"13980","label":"moving a stapler down","template":"Moving [something] down","placeholders":["a stapler"]}, +{"id":"36174","label":"holding a spoon behind a cup","template":"Holding [something] behind [something]","placeholders":["a spoon","a cup"]}, +{"id":"190430","label":"throwing a bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a bottle"]}, +{"id":"11092","label":"wristwatch falling like a rock","template":"[Something] falling like a rock","placeholders":["wristwatch"]}, +{"id":"107995","label":"holding brown case","template":"Holding [something]","placeholders":["brown case"]}, +{"id":"73665","label":"plugging sink plug into sink with running water but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["sink plug","sink with running water"]}, +{"id":"45729","label":"tilting remote control with mobile on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["remote control","mobile"]}, +{"id":"192875","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"109678","label":"holding sponge ball","template":"Holding [something]","placeholders":["sponge ball"]}, +{"id":"24303","label":"taking a pickled chili pepper out of a jar","template":"Taking [something] out of [something]","placeholders":["a pickled chili pepper","a jar"]}, +{"id":"182576","label":"piling apple up","template":"Piling [something] up","placeholders":["apple"]}, +{"id":"10700","label":"throwing juice box","template":"Throwing [something]","placeholders":["juice box"]}, +{"id":"31220","label":"moving plate away from toy","template":"Moving [something] away from [something]","placeholders":["plate","toy"]}, +{"id":"159894","label":"putting a circuit tester on a surface","template":"Putting [something] on a surface","placeholders":["a circuit tester"]}, +{"id":"84862","label":"showing decor on top of counter","template":"Showing [something] on top of [something]","placeholders":["decor","counter"]}, +{"id":"31846","label":"trying to pour gems into plastic container, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["gems","plastic container"]}, +{"id":"183490","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"73501","label":"pushing a candle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a candle"]}, +{"id":"113948","label":"putting trash into the trash can","template":"Putting [something] into [something]","placeholders":["trash","the trash can"]}, +{"id":"30647","label":"pushing dish wash bar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["dish wash bar"]}, +{"id":"141388","label":"wiping cream off of toy","template":"Wiping [something] off of [something]","placeholders":["cream","toy"]}, +{"id":"124456","label":"taking t-shirt packet from floor","template":"Taking [something] from [somewhere]","placeholders":["t-shirt packet","floor"]}, +{"id":"13184","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"59391","label":"showing book to the camera","template":"Showing [something] to the camera","placeholders":["book"]}, +{"id":"178610","label":"turning a jar of jalapenos upside down","template":"Turning [something] upside down","placeholders":["a jar of jalapenos"]}, +{"id":"210489","label":"showing a photo of movie picture to the camera","template":"Showing a photo of [something] to the camera","placeholders":["movie picture"]}, +{"id":"64186","label":"pretending to be tearing a carpet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a carpet"]}, +{"id":"160467","label":"picking flower up","template":"Picking [something] up","placeholders":["flower"]}, +{"id":"28065","label":"putting mouse on a surface","template":"Putting [something] on a surface","placeholders":["mouse"]}, +{"id":"114212","label":"putting knife","template":"Putting [something similar to other things that are already on the table]","placeholders":["knife"]}, +{"id":"73515","label":"holding a tube of lip balm","template":"Holding [something]","placeholders":["a tube of lip balm"]}, +{"id":"200524","label":"pushing pill bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pill bottle"]}, +{"id":"185784","label":"pretending to poke plastic bag","template":"Pretending to poke [something]","placeholders":["plastic bag"]}, +{"id":"67964","label":"pretending to be tearing a hat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a hat"]}, +{"id":"29146","label":"moving glass and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","spoon"]}, +{"id":"153896","label":"moving a usb stick away from a cd","template":"Moving [something] away from [something]","placeholders":["a usb stick","a cd"]}, +{"id":"18830","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"63154","label":"pushing plate so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["plate"]}, +{"id":"210288","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"79514","label":"turning mini globe upside down","template":"Turning [something] upside down","placeholders":["mini globe"]}, +{"id":"205436","label":"putting bottle cap behind cup","template":"Putting [something] behind [something]","placeholders":["bottle cap","cup"]}, +{"id":"99973","label":"pouring melted ice cream out of cup","template":"Pouring [something] out of [something]","placeholders":["melted ice cream","cup"]}, +{"id":"160422","label":"throwing keys onto a surface","template":"Throwing [something] onto a surface","placeholders":["keys"]}, +{"id":"187246","label":"failing to put a box into an envelope because the box does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a box","an envelope","the box"]}, +{"id":"113374","label":"spinning white badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["white badge"]}, +{"id":"215565","label":"putting a flower, glue and a container on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a flower","glue","a container"]}, +{"id":"165759","label":"taking ball from table","template":"Taking [something] from [somewhere]","placeholders":["ball","table"]}, +{"id":"115191","label":"pretending to throw a plug","template":"Pretending to throw [something]","placeholders":["a plug"]}, +{"id":"55204","label":"covering a watch with a paper towel","template":"Covering [something] with [something]","placeholders":["a watch","a paper towel"]}, +{"id":"119470","label":"pen being deflected from paper roll","template":"[Something] being deflected from [something]","placeholders":["pen","paper roll"]}, +{"id":"74999","label":"plugging a charger into a wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a wall plug"]}, +{"id":"199039","label":"putting a toy upright on the table","template":"Putting [something] upright on the table","placeholders":["a toy"]}, +{"id":"213316","label":"moving bottle away from bottle","template":"Moving [something] away from [something]","placeholders":["bottle","bottle"]}, +{"id":"70155","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"142590","label":"moving a handkerchief closer to a comb","template":"Moving [something] closer to [something]","placeholders":["a handkerchief","a comb"]}, +{"id":"145252","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"150645","label":"moving scissor up","template":"Moving [something] up","placeholders":["scissor"]}, +{"id":"110723","label":"pretending to sprinkle air onto a bowl","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl"]}, +{"id":"58860","label":"trying but failing to attach a sticky note to a bowl because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticky note","a bowl"]}, +{"id":"33148","label":"pretending to pick remote control up","template":"Pretending to pick [something] up","placeholders":["remote control"]}, +{"id":"150776","label":"poking a candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle"]}, +{"id":"55274","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"47417","label":"tennis balls colliding with tennis ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["tennis balls","tennis ball"]}, +{"id":"184956","label":"putting a toy on a surface","template":"Putting [something] on a surface","placeholders":["a toy"]}, +{"id":"92967","label":"pulling two ends of cotton ball so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["cotton ball"]}, +{"id":"137117","label":"taking soft ball out of box","template":"Taking [something] out of [something]","placeholders":["soft ball","box"]}, +{"id":"44194","label":"putting 2 sharpners onto duster","template":"Putting [number of] [something] onto [something]","placeholders":["2","sharpners","duster"]}, +{"id":"137928","label":"plugging battery charger into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["battery charger","laptop"]}, +{"id":"161885","label":"turning the camera right while filming banana bunch","template":"Turning the camera right while filming [something]","placeholders":["banana bunch"]}, +{"id":"167518","label":"tearing binder paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["binder paper"]}, +{"id":"61334","label":"pushing paper towel roll so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper towel roll"]}, +{"id":"210912","label":"opening food container","template":"Opening [something]","placeholders":["food container"]}, +{"id":"123068","label":"moving glasses down","template":"Moving [something] down","placeholders":["glasses"]}, +{"id":"111289","label":"pretending to put syringe into mug","template":"Pretending to put [something] into [something]","placeholders":["syringe","mug"]}, +{"id":"43627","label":"moving thread and clip away from each other","template":"Moving [something] and [something] away from each other","placeholders":["thread","clip"]}, +{"id":"78793","label":"pulling box from behind of front of","template":"Pulling [something] from behind of [something]","placeholders":["box","front of"]}, +{"id":"70585","label":"pushing a stapler from left to right","template":"Pushing [something] from left to right","placeholders":["a stapler"]}, +{"id":"149685","label":"spoon colliding with spoon and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["spoon","spoon"]}, +{"id":"72950","label":"pretending to pick jug up","template":"Pretending to pick [something] up","placeholders":["jug"]}, +{"id":"105551","label":"holding purple microfiber","template":"Holding [something]","placeholders":["purple microfiber"]}, +{"id":"9555","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"214340","label":"holding spatula","template":"Holding [something]","placeholders":["spatula"]}, +{"id":"59260","label":"mail falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["mail"]}, +{"id":"105492","label":"covering dog with blanket","template":"Covering [something] with [something]","placeholders":["dog","blanket"]}, +{"id":"110133","label":"twisting two wires","template":"Twisting [something]","placeholders":["two wires"]}, +{"id":"211019","label":"putting rubix cube that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["rubix cube"]}, +{"id":"188603","label":"putting a bottle on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a bottle","the table"]}, +{"id":"81490","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"206364","label":"chips packaging falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["chips packaging"]}, +{"id":"217641","label":"pushing mouse from left to right","template":"Pushing [something] from left to right","placeholders":["mouse"]}, +{"id":"105660","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"130317","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"214537","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"46357","label":"pushing plastic stool so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plastic stool"]}, +{"id":"157456","label":"showing small game card to the camera","template":"Showing [something] to the camera","placeholders":["small game card"]}, +{"id":"54614","label":"holding incense box","template":"Holding [something]","placeholders":["incense box"]}, +{"id":"128539","label":"pushing nail varnish so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail varnish"]}, +{"id":"140665","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"17554","label":"spilling water next to sand paper","template":"Spilling [something] next to [something]","placeholders":["water","sand paper"]}, +{"id":"173363","label":"putting cup behind shield","template":"Putting [something] behind [something]","placeholders":["cup","shield"]}, +{"id":"116900","label":"sprinkling raisins onto oatmeal","template":"Sprinkling [something] onto [something]","placeholders":["raisins","oatmeal"]}, +{"id":"112624","label":"turning the camera left while filming poster","template":"Turning the camera left while filming [something]","placeholders":["poster"]}, +{"id":"49216","label":"putting a water bottle into a refrigerator","template":"Putting [something] into [something]","placeholders":["a water bottle","a refrigerator"]}, +{"id":"118270","label":"moving a smartphone towards the camera","template":"Moving [something] towards the camera","placeholders":["a smartphone"]}, +{"id":"60004","label":"putting a shoe underneath a blanket","template":"Putting [something] underneath [something]","placeholders":["a shoe","a blanket"]}, +{"id":"146782","label":"pencil box falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil box"]}, +{"id":"210751","label":"plugging charger into computer","template":"Plugging [something] into [something]","placeholders":["charger","computer"]}, +{"id":"195911","label":"taking one comb of many similar combs on the table","template":"Taking [one of many similar things on the table]","placeholders":["one comb of many similar combs on the table"]}, +{"id":"218431","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"101461","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"11961","label":"moving something and something away from each other","template":"Moving [something] and [something] away from each other","placeholders":["something","something"]}, +{"id":"113010","label":"bending cactus so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cactus"]}, +{"id":"110460","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"74890","label":"holding notebook","template":"Holding [something]","placeholders":["notebook"]}, +{"id":"216304","label":"wiping water off of mirror","template":"Wiping [something] off of [something]","placeholders":["water","mirror"]}, +{"id":"208961","label":"putting play-doh next to mug","template":"Putting [something] next to [something]","placeholders":["play-doh","mug"]}, +{"id":"197373","label":"turning the camera left while filming van","template":"Turning the camera left while filming [something]","placeholders":["van"]}, +{"id":"31416","label":"approaching a pen with your camera","template":"Approaching [something] with your camera","placeholders":["a pen"]}, +{"id":"73602","label":"showing display clothes to the camera","template":"Showing [something] to the camera","placeholders":["display clothes"]}, +{"id":"211345","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"208340","label":"moving plate and glove closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["plate","glove"]}, +{"id":"166237","label":"pushing a bottle from right to left","template":"Pushing [something] from right to left","placeholders":["a bottle"]}, +{"id":"22909","label":"holding spoon in front of coffee mug","template":"Holding [something] in front of [something]","placeholders":["spoon","coffee mug"]}, +{"id":"134338","label":"holding mail in front of tv","template":"Holding [something] in front of [something]","placeholders":["mail","tv"]}, +{"id":"72045","label":"turning the camera right while filming toy","template":"Turning the camera right while filming [something]","placeholders":["toy"]}, +{"id":"188355","label":"putting a pencil onto a magazine","template":"Putting [something] onto [something]","placeholders":["a pencil","a magazine"]}, +{"id":"75482","label":"wiping foam soap off of counter","template":"Wiping [something] off of [something]","placeholders":["foam soap","counter"]}, +{"id":"216936","label":"wiping water off of the table","template":"Wiping [something] off of [something]","placeholders":["water","the table"]}, +{"id":"24491","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"65636","label":"stuffing sock into sock","template":"Stuffing [something] into [something]","placeholders":["sock","sock"]}, +{"id":"9567","label":"uncovering remote","template":"Uncovering [something]","placeholders":["remote"]}, +{"id":"214831","label":"bottle being deflected from ball","template":"[Something] being deflected from [something]","placeholders":["bottle","ball"]}, +{"id":"161689","label":"putting apple onto can","template":"Putting [something] onto [something]","placeholders":["apple","can"]}, +{"id":"31319","label":"pretending to put a shot glass next to a measuring cup","template":"Pretending to put [something] next to [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"99776","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"210327","label":"pulling a mouse from left to right","template":"Pulling [something] from left to right","placeholders":["a mouse"]}, +{"id":"209926","label":"pulling board clip from behind of green pouch","template":"Pulling [something] from behind of [something]","placeholders":["board clip","green pouch"]}, +{"id":"182914","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"95615","label":"putting fruit onto bowl","template":"Putting [something] onto [something]","placeholders":["fruit","bowl"]}, +{"id":"115112","label":"unfolding book","template":"Unfolding [something]","placeholders":["book"]}, +{"id":"77667","label":"trying to bend hard book so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["hard book"]}, +{"id":"104658","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"29764","label":"throwing napkin","template":"Throwing [something]","placeholders":["napkin"]}, +{"id":"115396","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"218846","label":"dropping a bottletop in front of a ruler","template":"Dropping [something] in front of [something]","placeholders":["a bottletop","a ruler"]}, +{"id":"91309","label":"throwing tissue","template":"Throwing [something]","placeholders":["tissue"]}, +{"id":"6747","label":"taking a pen from the table","template":"Taking [something] from [somewhere]","placeholders":["a pen","the table"]}, +{"id":"103255","label":"stuffing candy into candy bag","template":"Stuffing [something] into [something]","placeholders":["candy","candy bag"]}, +{"id":"203902","label":"squeezing a paper","template":"Squeezing [something]","placeholders":["a paper"]}, +{"id":"118209","label":"showing that egg carton is empty","template":"Showing that [something] is empty","placeholders":["egg carton"]}, +{"id":"211176","label":"taking a pen out of a desk organizer","template":"Taking [something] out of [something]","placeholders":["a pen","a desk organizer"]}, +{"id":"207751","label":"showing a comb next to the candle packet","template":"Showing [something] next to [something]","placeholders":["a comb","the candle packet"]}, +{"id":"107349","label":"holding perfume bottle next to a video game case","template":"Holding [something] next to [something]","placeholders":["perfume bottle","a video game case"]}, +{"id":"199743","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"62548","label":"covering empty water bottle with comforter","template":"Covering [something] with [something]","placeholders":["empty water bottle","comforter"]}, +{"id":"35330","label":"covering a ball with a cloth","template":"Covering [something] with [something]","placeholders":["a ball","a cloth"]}, +{"id":"117724","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"20376","label":"pushing baking powder from right to left","template":"Pushing [something] from right to left","placeholders":["baking powder"]}, +{"id":"185409","label":"rolling union on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["union"]}, +{"id":"136882","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"138718","label":"putting polish remover behind cup","template":"Putting [something] behind [something]","placeholders":["polish remover","cup"]}, +{"id":"86983","label":"moving eyeglasses towards the camera","template":"Moving [something] towards the camera","placeholders":["eyeglasses"]}, +{"id":"64037","label":"turning the camera downwards while filming rubix cube","template":"Turning the camera downwards while filming [something]","placeholders":["rubix cube"]}, +{"id":"47503","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"205698","label":"taking pineapple from chair","template":"Taking [something] from [somewhere]","placeholders":["pineapple","chair"]}, +{"id":"172444","label":"plugging wire into mobile phone","template":"Plugging [something] into [something]","placeholders":["wire","mobile phone"]}, +{"id":"206053","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"111309","label":"moving a glass down","template":"Moving [something] down","placeholders":["a glass"]}, +{"id":"40260","label":"hitting a glue with bottle","template":"Hitting [something] with [something]","placeholders":["a glue","bottle"]}, +{"id":"197925","label":"taking knife","template":"Taking [one of many similar things on the table]","placeholders":["knife"]}, +{"id":"129371","label":"letting toilet paper roll roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["toilet paper roll"]}, +{"id":"159214","label":"twisting (wringing) napkin wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["napkin"]}, +{"id":"94365","label":"putting a shell casing","template":"Putting [something similar to other things that are already on the table]","placeholders":["a shell casing"]}, +{"id":"147159","label":"uncovering pc mouse","template":"Uncovering [something]","placeholders":["pc mouse"]}, +{"id":"75056","label":"putting cup and saucer on a surface","template":"Putting [something] on a surface","placeholders":["cup and saucer"]}, +{"id":"192980","label":"uncovering red spoon","template":"Uncovering [something]","placeholders":["red spoon"]}, +{"id":"65326","label":"taking a bottle cap","template":"Taking [one of many similar things on the table]","placeholders":["a bottle cap"]}, +{"id":"155989","label":"covering a glass with a scarf","template":"Covering [something] with [something]","placeholders":["a glass","a scarf"]}, +{"id":"119467","label":"taking a spoon out of a mug","template":"Taking [something] out of [something]","placeholders":["a spoon","a mug"]}, +{"id":"71304","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"139260","label":"dropping a wallet behind a mouse","template":"Dropping [something] behind [something]","placeholders":["a wallet","a mouse"]}, +{"id":"113291","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"65833","label":"apple being deflected from iron","template":"[Something] being deflected from [something]","placeholders":["apple","iron"]}, +{"id":"42661","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"14230","label":"poking a lighter so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a lighter"]}, +{"id":"180099","label":"pretending to take eggs from refrigerator","template":"Pretending to take [something] from [somewhere]","placeholders":["eggs","refrigerator"]}, +{"id":"163397","label":"wiping water off of wooden floor","template":"Wiping [something] off of [something]","placeholders":["water","wooden floor"]}, +{"id":"93436","label":"poking cord so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cord"]}, +{"id":"208810","label":"squeezing squeezing ball","template":"Squeezing [something]","placeholders":["squeezing ball"]}, +{"id":"12239","label":"holding toy cell phone","template":"Holding [something]","placeholders":["toy cell phone"]}, +{"id":"23898","label":"moving canister and cup so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["canister","cup"]}, +{"id":"28984","label":"spinning something so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["something"]}, +{"id":"10405","label":"moving bucket towards the camera","template":"Moving [something] towards the camera","placeholders":["bucket"]}, +{"id":"219925","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"114092","label":"putting power bank and a rubix cube on the table","template":"Putting [something] and [something] on the table","placeholders":["power bank","a rubix cube"]}, +{"id":"87380","label":"dropping a plastic toy into a glass jar","template":"Dropping [something] into [something]","placeholders":["a plastic toy","a glass jar"]}, +{"id":"124","label":"wiping water off of desk","template":"Wiping [something] off of [something]","placeholders":["water","desk"]}, +{"id":"32472","label":"putting phone on a surface","template":"Putting [something] on a surface","placeholders":["phone"]}, +{"id":"163470","label":"closing a bottle","template":"Closing [something]","placeholders":["a bottle"]}, +{"id":"61951","label":"letting lipstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipstick"]}, +{"id":"77961","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"28606","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"180626","label":"pretending to turn a can upside down","template":"Pretending to turn [something] upside down","placeholders":["a can"]}, +{"id":"51855","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"174385","label":"pretending to be tearing brown covered note book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["brown covered note book"]}, +{"id":"78578","label":"trying but failing to attach a paper to phone because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","phone"]}, +{"id":"13481","label":"turning the camera right while filming white candle","template":"Turning the camera right while filming [something]","placeholders":["white candle"]}, +{"id":"132634","label":"pushing a spoon with a belt","template":"Pushing [something] with [something]","placeholders":["a spoon","a belt"]}, +{"id":"77892","label":"showing that a mug is empty","template":"Showing that [something] is empty","placeholders":["a mug"]}, +{"id":"188191","label":"putting orange pencil sharpner, red spoon and stapler on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["orange pencil sharpner","red spoon","stapler"]}, +{"id":"13953","label":"covering bottle with cloth","template":"Covering [something] with [something]","placeholders":["bottle","cloth"]}, +{"id":"32626","label":"hitting table with remote","template":"Hitting [something] with [something]","placeholders":["table","remote"]}, +{"id":"183501","label":"throwing tissue in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tissue"]}, +{"id":"115706","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"147645","label":"bending paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper"]}, +{"id":"166656","label":"dropping a toothpick onto a box","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a box"]}, +{"id":"132365","label":"pouring rocks onto floor","template":"Pouring [something] onto [something]","placeholders":["rocks","floor"]}, +{"id":"90199","label":"piling a mouse, makeupbrush, charger usb adaptor and tablestopper up","template":"Piling [something] up","placeholders":["a mouse, makeupbrush, charger usb adaptor and tablestopper"]}, +{"id":"211679","label":"screwdriver falling like a rock","template":"[Something] falling like a rock","placeholders":["screwdriver"]}, +{"id":"193940","label":"dropping ball onto table","template":"Dropping [something] onto [something]","placeholders":["ball","table"]}, +{"id":"134371","label":"folding magazine","template":"Folding [something]","placeholders":["magazine"]}, +{"id":"25330","label":"pretending to close magazine without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["magazine"]}, +{"id":"65291","label":"throwing pipe cleaner in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pipe cleaner"]}, +{"id":"124399","label":"poking box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["box"]}, +{"id":"112330","label":"hitting onion with a garlic","template":"Hitting [something] with [something]","placeholders":["onion","a garlic"]}, +{"id":"97632","label":"moving pen and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","remote"]}, +{"id":"89143","label":"moving a glass up","template":"Moving [something] up","placeholders":["a glass"]}, +{"id":"44507","label":"showing that white toy car is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["white toy car","green bowl"]}, +{"id":"164265","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"18135","label":"tennis ball colliding with golf ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["tennis ball","golf ball"]}, +{"id":"107287","label":"showing that metallblock is inside a box","template":"Showing that [something] is inside [something]","placeholders":["metallblock","a box"]}, +{"id":"190508","label":"holding cure for the nose in front of gift bag","template":"Holding [something] in front of [something]","placeholders":["cure for the nose","gift bag"]}, +{"id":"45887","label":"tilting tree twig with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tree twig","finger"]}, +{"id":"194800","label":"turning the camera right while filming park entrance","template":"Turning the camera right while filming [something]","placeholders":["park entrance"]}, +{"id":"168062","label":"lifting a lock with a nail polish on it","template":"Lifting [something] with [something] on it","placeholders":["a lock","a nail polish"]}, +{"id":"183390","label":"dropping a sieve next to a belt","template":"Dropping [something] next to [something]","placeholders":["a sieve","a belt"]}, +{"id":"62706","label":"poking a stuffed bird so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a stuffed bird"]}, +{"id":"104319","label":"trying to bend a tablet so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a tablet"]}, +{"id":"26366","label":"spinning a lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lighter"]}, +{"id":"180882","label":"pretending to poke blanket","template":"Pretending to poke [something]","placeholders":["blanket"]}, +{"id":"19845","label":"putting spoon into coffee mug","template":"Putting [something] into [something]","placeholders":["spoon","coffee mug"]}, +{"id":"43077","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"68479","label":"moving mouse and mobile away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mouse","mobile"]}, +{"id":"50651","label":"turning the camera upwards while filming snacks","template":"Turning the camera upwards while filming [something]","placeholders":["snacks"]}, +{"id":"174560","label":"taking a book from the shelf","template":"Taking [something] from [somewhere]","placeholders":["a book","the shelf"]}, +{"id":"112221","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"961","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"69126","label":"showing hair dryer to the camera","template":"Showing [something] to the camera","placeholders":["hair dryer"]}, +{"id":"117341","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"35438","label":"moving away from white board clip with your camera","template":"Moving away from [something] with your camera","placeholders":["white board clip"]}, +{"id":"20123","label":"moving keys away from phone","template":"Moving [something] away from [something]","placeholders":["keys","phone"]}, +{"id":"100534","label":"putting a battery and a coin on the table","template":"Putting [something] and [something] on the table","placeholders":["a battery","a coin"]}, +{"id":"187609","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"101995","label":"pouring coffee into a cup","template":"Pouring [something] into [something]","placeholders":["coffee","a cup"]}, +{"id":"87900","label":"covering shirt with blanket","template":"Covering [something] with [something]","placeholders":["shirt","blanket"]}, +{"id":"108662","label":"dropping coins into milk jug","template":"Dropping [something] into [something]","placeholders":["coins","milk jug"]}, +{"id":"217395","label":"squeezing a peanutbutter jar","template":"Squeezing [something]","placeholders":["a peanutbutter jar"]}, +{"id":"209562","label":"holding letter in front of calculater","template":"Holding [something] in front of [something]","placeholders":["letter","calculater"]}, +{"id":"108531","label":"pulling pencil out of box","template":"Pulling [something] out of [something]","placeholders":["pencil","box"]}, +{"id":"124973","label":"throwing a marker in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a marker"]}, +{"id":"53252","label":"putting lighter into cup","template":"Putting [something] into [something]","placeholders":["lighter","cup"]}, +{"id":"206631","label":"putting paint brush onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["paint brush"]}, +{"id":"84254","label":"pushing tennis ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tennis ball"]}, +{"id":"96209","label":"moving bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["bottle"]}, +{"id":"21174","label":"bending a paperclip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paperclip"]}, +{"id":"11824","label":"lifting up one end of flower pot, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["flower pot"]}, +{"id":"143033","label":"removing coffee pot, revealing lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["coffee pot","lighter"]}, +{"id":"5621","label":"pouring water into tumbler until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","tumbler"]}, +{"id":"97036","label":"lifting red pouch up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["red pouch"]}, +{"id":"12229","label":"pushing a pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pencil"]}, +{"id":"41922","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"9226","label":"a cellphone case falling like a rock","template":"[Something] falling like a rock","placeholders":["a cellphone case"]}, +{"id":"127158","label":"pouring soda out of can","template":"Pouring [something] out of [something]","placeholders":["soda","can"]}, +{"id":"43626","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"2290","label":"plugging phone charger into outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","outlet"]}, +{"id":"140254","label":"showing that something is inside something","template":"Showing that [something] is inside [something]","placeholders":["something","something"]}, +{"id":"134946","label":"moving notebook and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["notebook","pen"]}, +{"id":"115906","label":"letting toy car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy car"]}, +{"id":"25791","label":"holding cup next to mouse","template":"Holding [something] next to [something]","placeholders":["cup","mouse"]}, +{"id":"175512","label":"pushing ink bottle from right to left","template":"Pushing [something] from right to left","placeholders":["ink bottle"]}, +{"id":"165772","label":"uncovering a watch","template":"Uncovering [something]","placeholders":["a watch"]}, +{"id":"17051","label":"stuffing tissue into cylinder","template":"Stuffing [something] into [something]","placeholders":["tissue","cylinder"]}, +{"id":"14707","label":"pretending to close cd box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["cd box"]}, +{"id":"104671","label":"plugging a plug head into socket","template":"Plugging [something] into [something]","placeholders":["a plug head","socket"]}, +{"id":"38093","label":"turning bottle cap upside down","template":"Turning [something] upside down","placeholders":["bottle cap"]}, +{"id":"41140","label":"hitting a container of nuts with a pencil","template":"Hitting [something] with [something]","placeholders":["a container of nuts","a pencil"]}, +{"id":"94719","label":"dropping blackberry priv next to flip flop","template":"Dropping [something] next to [something]","placeholders":["blackberry priv","flip flop"]}, +{"id":"123918","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"51345","label":"pushing a box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box"]}, +{"id":"168091","label":"putting shopping cart on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["shopping cart"]}, +{"id":"2517","label":"putting usb, keys and spinner on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["usb","keys","spinner"]}, +{"id":"158336","label":"taking color pencil","template":"Taking [one of many similar things on the table]","placeholders":["color pencil"]}, +{"id":"169847","label":"pretending to sprinkle air onto an eraser","template":"Pretending to sprinkle air onto [something]","placeholders":["an eraser"]}, +{"id":"13776","label":"tipping a purse with money in it over, so nothing falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a purse","money in it","nothing"]}, +{"id":"128280","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"163790","label":"piling clothing up","template":"Piling [something] up","placeholders":["clothing"]}, +{"id":"67552","label":"stuffing clothing into a plastic bag","template":"Stuffing [something] into [something]","placeholders":["clothing","a plastic bag"]}, +{"id":"118797","label":"spilling drink onto surface","template":"Spilling [something] onto [something]","placeholders":["drink","surface"]}, +{"id":"144726","label":"turning the camera downwards while filming something","template":"Turning the camera downwards while filming [something]","placeholders":["something"]}, +{"id":"54618","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"43712","label":"opening battery compartment of tv remote","template":"Opening [something]","placeholders":["battery compartment of tv remote"]}, +{"id":"190789","label":"holding hole puncher next to playstation controller","template":"Holding [something] next to [something]","placeholders":["hole puncher","playstation controller"]}, +{"id":"85178","label":"holding toy behind jar","template":"Holding [something] behind [something]","placeholders":["toy","jar"]}, +{"id":"141090","label":"moving mobile phone away from the adapter","template":"Moving [something] away from [something]","placeholders":["mobile phone","the adapter"]}, +{"id":"176712","label":"plugging charger into power strip","template":"Plugging [something] into [something]","placeholders":["charger","power strip"]}, +{"id":"103872","label":"wiping jam off of a plate","template":"Wiping [something] off of [something]","placeholders":["jam","a plate"]}, +{"id":"118739","label":"spinning a fork that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a fork"]}, +{"id":"140317","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"138115","label":"stuffing car keys into a pocket","template":"Stuffing [something] into [something]","placeholders":["car keys","a pocket"]}, +{"id":"141404","label":"spinning phone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["phone"]}, +{"id":"142928","label":"moving a pen and a pencil so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a pencil"]}, +{"id":"103969","label":"moving a plastic bottle up","template":"Moving [something] up","placeholders":["a plastic bottle"]}, +{"id":"129307","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"35504","label":"dropping a coin onto a comb","template":"Dropping [something] onto [something]","placeholders":["a coin","a comb"]}, +{"id":"60731","label":"pouring water into plastic case","template":"Pouring [something] into [something]","placeholders":["water","plastic case"]}, +{"id":"14343","label":"laying a figurine on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a figurine"]}, +{"id":"23615","label":"stuffing money into bowl","template":"Stuffing [something] into [something]","placeholders":["money","bowl"]}, +{"id":"162187","label":"moving glass of lantern","template":"Moving [part] of [something]","placeholders":["glass","lantern"]}, +{"id":"198844","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"104262","label":"taking hairclip","template":"Taking [one of many similar things on the table]","placeholders":["hairclip"]}, +{"id":"165792","label":"pushing spoon from right to left","template":"Pushing [something] from right to left","placeholders":["spoon"]}, +{"id":"178208","label":"putting sticky note","template":"Putting [something similar to other things that are already on the table]","placeholders":["sticky note"]}, +{"id":"211461","label":"piling notebooks up","template":"Piling [something] up","placeholders":["notebooks"]}, +{"id":"209312","label":"hitting a wine glass with a spoon","template":"Hitting [something] with [something]","placeholders":["a wine glass","a spoon"]}, +{"id":"7493","label":"putting bottle behind shoe","template":"Putting [something] behind [something]","placeholders":["bottle","shoe"]}, +{"id":"200373","label":"dropping packet in front of chair","template":"Dropping [something] in front of [something]","placeholders":["packet","chair"]}, +{"id":"215115","label":"turning the camera upwards while filming scooty","template":"Turning the camera upwards while filming [something]","placeholders":["scooty"]}, +{"id":"149185","label":"plugging charger into tablet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","tablet"]}, +{"id":"85116","label":"ball being deflected from helmet","template":"[Something] being deflected from [something]","placeholders":["ball","helmet"]}, +{"id":"97788","label":"hitting a bicycle wheel with a shoe","template":"Hitting [something] with [something]","placeholders":["a bicycle wheel","a shoe"]}, +{"id":"103641","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"30104","label":"pushing wallet from left to right","template":"Pushing [something] from left to right","placeholders":["wallet"]}, +{"id":"18943","label":"folding bill","template":"Folding [something]","placeholders":["bill"]}, +{"id":"52999","label":"taking pencil","template":"Taking [one of many similar things on the table]","placeholders":["pencil"]}, +{"id":"170849","label":"pushing wireless mouse from right to left","template":"Pushing [something] from right to left","placeholders":["wireless mouse"]}, +{"id":"162459","label":"hitting perfume with lighter","template":"Hitting [something] with [something]","placeholders":["perfume","lighter"]}, +{"id":"74226","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"62403","label":"putting a plastic bottle that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a plastic bottle"]}, +{"id":"121139","label":"taking crackers","template":"Taking [one of many similar things on the table]","placeholders":["crackers"]}, +{"id":"207422","label":"showing keys behind wallet","template":"Showing [something] behind [something]","placeholders":["keys","wallet"]}, +{"id":"183082","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"54965","label":"closing tin container","template":"Closing [something]","placeholders":["tin container"]}, +{"id":"213409","label":"putting a bottle on a surface","template":"Putting [something] on a surface","placeholders":["a bottle"]}, +{"id":"16515","label":"pretending to take a mug out of a sink","template":"Pretending to take [something] out of [something]","placeholders":["a mug","a sink"]}, +{"id":"126939","label":"twisting aluminium foil","template":"Twisting [something]","placeholders":["aluminium foil"]}, +{"id":"86378","label":"spilling water onto desk","template":"Spilling [something] onto [something]","placeholders":["water","desk"]}, +{"id":"181381","label":"holding spectacles","template":"Holding [something]","placeholders":["spectacles"]}, +{"id":"189796","label":"putting a napkin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a napkin"]}, +{"id":"160424","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"103742","label":"putting a water bottle onto a plastic bag so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a water bottle","a plastic bag"]}, +{"id":"134580","label":"dropping crumpled paper next to trash can","template":"Dropping [something] next to [something]","placeholders":["crumpled paper","trash can"]}, +{"id":"172985","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"43331","label":"holding blanket next to hat","template":"Holding [something] next to [something]","placeholders":["blanket","hat"]}, +{"id":"25171","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"109452","label":"plugging phone charger into plug extension","template":"Plugging [something] into [something]","placeholders":["phone charger","plug extension"]}, +{"id":"1328","label":"showing white out on top of a big eraser","template":"Showing [something] on top of [something]","placeholders":["white out","a big eraser"]}, +{"id":"193830","label":"putting box underneath cup","template":"Putting [something] underneath [something]","placeholders":["box","cup"]}, +{"id":"185034","label":"turning the camera upwards while filming red watch box","template":"Turning the camera upwards while filming [something]","placeholders":["red watch box"]}, +{"id":"8418","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"192986","label":"uncovering scissors","template":"Uncovering [something]","placeholders":["scissors"]}, +{"id":"78752","label":"moving pen and lead box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","lead box"]}, +{"id":"213730","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"210425","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"205533","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"146846","label":"plugging a cord into a surge protector but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","a surge protector"]}, +{"id":"145803","label":"pulling remote from behind of box","template":"Pulling [something] from behind of [something]","placeholders":["remote","box"]}, +{"id":"132000","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"3073","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"38860","label":"showing spoon next to lipstick","template":"Showing [something] next to [something]","placeholders":["spoon","lipstick"]}, +{"id":"57676","label":"stuffing cotton into bottle","template":"Stuffing [something] into [something]","placeholders":["cotton","bottle"]}, +{"id":"200419","label":"pulling pen out of notebook","template":"Pulling [something] out of [something]","placeholders":["pen","notebook"]}, +{"id":"128042","label":"tipping pepper over","template":"Tipping [something] over","placeholders":["pepper"]}, +{"id":"194370","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"67433","label":"uncovering remote","template":"Uncovering [something]","placeholders":["remote"]}, +{"id":"178576","label":"moving usb flash drive closer to cover","template":"Moving [something] closer to [something]","placeholders":["usb flash drive","cover"]}, +{"id":"84672","label":"pouring sugar onto glass","template":"Pouring [something] onto [something]","placeholders":["sugar","glass"]}, +{"id":"5759","label":"showing cup next to paper towel","template":"Showing [something] next to [something]","placeholders":["cup","paper towel"]}, +{"id":"206699","label":"throwing crumbled paper","template":"Throwing [something]","placeholders":["crumbled paper"]}, +{"id":"32468","label":"trying but failing to attach cable to adapter because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cable","adapter"]}, +{"id":"12106","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"178445","label":"turning the camera right while filming light switch","template":"Turning the camera right while filming [something]","placeholders":["light switch"]}, +{"id":"206162","label":"turning water bottle upside down","template":"Turning [something] upside down","placeholders":["water bottle"]}, +{"id":"57548","label":"pushing a disposable saucer from left to right","template":"Pushing [something] from left to right","placeholders":["a disposable saucer"]}, +{"id":"96695","label":"pretending to open lipstick without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["lipstick"]}, +{"id":"69354","label":"unfolding socks","template":"Unfolding [something]","placeholders":["socks"]}, +{"id":"29471","label":"throwing a receipt onto a surface","template":"Throwing [something] onto a surface","placeholders":["a receipt"]}, +{"id":"106","label":"opening waste basket","template":"Opening [something]","placeholders":["waste basket"]}, +{"id":"52995","label":"touching (without moving) top of hand soap","template":"Touching (without moving) [part] of [something]","placeholders":["top","hand soap"]}, +{"id":"59183","label":"holding a washclothe next to a towel","template":"Holding [something] next to [something]","placeholders":["a washclothe","a towel"]}, +{"id":"83012","label":"hitting paper punch with remote","template":"Hitting [something] with [something]","placeholders":["paper punch","remote"]}, +{"id":"126799","label":"moving purple microfiber down","template":"Moving [something] down","placeholders":["purple microfiber"]}, +{"id":"79050","label":"burying jar lid in small tomatoes","template":"Burying [something] in [something]","placeholders":["jar lid","small tomatoes"]}, +{"id":"121356","label":"plugging a plug into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","the wall"]}, +{"id":"59179","label":"spreading pens onto the table","template":"Spreading [something] onto [something]","placeholders":["pens","the table"]}, +{"id":"194984","label":"holding cell phone next to face","template":"Holding [something] next to [something]","placeholders":["cell phone","face"]}, +{"id":"137539","label":"holding a harmonica next to a pocket knife","template":"Holding [something] next to [something]","placeholders":["a harmonica","a pocket knife"]}, +{"id":"4419","label":"wiping candy off of canister","template":"Wiping [something] off of [something]","placeholders":["candy","canister"]}, +{"id":"134296","label":"tipping a spice bottle over","template":"Tipping [something] over","placeholders":["a spice bottle"]}, +{"id":"8909","label":"bending a pen so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen"]}, +{"id":"210309","label":"moving scissors closer to mouse","template":"Moving [something] closer to [something]","placeholders":["scissors","mouse"]}, +{"id":"25214","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"157075","label":"hitting lamp with pen","template":"Hitting [something] with [something]","placeholders":["lamp","pen"]}, +{"id":"161965","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"59065","label":"pretending to spread air onto table","template":"Pretending to spread air onto [something]","placeholders":["table"]}, +{"id":"98171","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"124860","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"55585","label":"poking cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cup"]}, +{"id":"67980","label":"tipping a box over","template":"Tipping [something] over","placeholders":["a box"]}, +{"id":"78888","label":"pouring coffee into a cup","template":"Pouring [something] into [something]","placeholders":["coffee","a cup"]}, +{"id":"132084","label":"putting a spoon to other spoons on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a spoon to other spoons on the table"]}, +{"id":"3846","label":"poking a stack of wooden pieces without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["wooden pieces"]}, +{"id":"12043","label":"rolling a water bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a water bottle"]}, +{"id":"139808","label":"moving something away from the camera","template":"Moving [something] away from the camera","placeholders":["something"]}, +{"id":"160978","label":"putting a deoderant aerosol and a tube of lotion on the table","template":"Putting [something] and [something] on the table","placeholders":["a deoderant aerosol","a tube of lotion"]}, +{"id":"136958","label":"pretending to open trash can without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["trash can"]}, +{"id":"156543","label":"showing that steel glass is empty","template":"Showing that [something] is empty","placeholders":["steel glass"]}, +{"id":"102876","label":"putting lollipop, tissues and coin on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["lollipop","tissues","coin"]}, +{"id":"73081","label":"a receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a receipt"]}, +{"id":"62649","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"159299","label":"dropping a knife next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a knife","a matchbox"]}, +{"id":"2674","label":"poking table cover so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["table cover"]}, +{"id":"24053","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"39930","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"60155","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"184916","label":"showing a match box next to the box","template":"Showing [something] next to [something]","placeholders":["a match box","the box"]}, +{"id":"63663","label":"poking lime so that it spins around","template":"Poking [something] so that it spins around","placeholders":["lime"]}, +{"id":"124988","label":"holding water bottle next to green clip","template":"Holding [something] next to [something]","placeholders":["water bottle","green clip"]}, +{"id":"33157","label":"folding car's side mirror","template":"Folding [something]","placeholders":["car's side mirror"]}, +{"id":"95249","label":"water botle colliding with water botle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["water botle","water botle"]}, +{"id":"47538","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"123156","label":"pushing a sharpener so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a sharpener"]}, +{"id":"158100","label":"opening a bottle cap","template":"Opening [something]","placeholders":["a bottle cap"]}, +{"id":"183851","label":"twisting charger cable","template":"Twisting [something]","placeholders":["charger cable"]}, +{"id":"113430","label":"pretending to be tearing something that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["something that is not tearable"]}, +{"id":"90446","label":"poking a hole into clay","template":"Poking a hole into [something soft]","placeholders":["clay"]}, +{"id":"75719","label":"lifting plate with flower pot on it","template":"Lifting [something] with [something] on it","placeholders":["plate","flower pot"]}, +{"id":"75905","label":"moving bottle and tube so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["bottle","tube"]}, +{"id":"103584","label":"holding vape","template":"Holding [something]","placeholders":["vape"]}, +{"id":"44794","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"20388","label":"pretending to pick toilet paper roll up","template":"Pretending to pick [something] up","placeholders":["toilet paper roll"]}, +{"id":"130616","label":"putting bottled water and bottle of oil on the table","template":"Putting [something] and [something] on the table","placeholders":["bottled water","bottle of oil"]}, +{"id":"70897","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"111678","label":"trying to bend highlighter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["highlighter"]}, +{"id":"190933","label":"putting 1 car onto remote","template":"Putting [number of] [something] onto [something]","placeholders":["1","car","remote"]}, +{"id":"28733","label":"lifting a folder with a mouse on it","template":"Lifting [something] with [something] on it","placeholders":["a folder","a mouse"]}, +{"id":"157207","label":"putting hairband, scale and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hairband","scale","pen"]}, +{"id":"213743","label":"putting a bottle and card on the table","template":"Putting [something] and [something] on the table","placeholders":["a bottle","card"]}, +{"id":"155170","label":"showing a bottle behind stool","template":"Showing [something] behind [something]","placeholders":["a bottle","stool"]}, +{"id":"128818","label":"turning something upside down","template":"Turning [something] upside down","placeholders":["something"]}, +{"id":"215962","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"152595","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"120774","label":"pretending to pick small book up","template":"Pretending to pick [something] up","placeholders":["small book"]}, +{"id":"30487","label":"putting pen that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["pen"]}, +{"id":"40297","label":"turning a pepper shaker upside down","template":"Turning [something] upside down","placeholders":["a pepper shaker"]}, +{"id":"87991","label":"showing brown bracelet to the camera","template":"Showing [something] to the camera","placeholders":["brown bracelet"]}, +{"id":"136721","label":"tearing something just a little bit","template":"Tearing [something] just a little bit","placeholders":["something"]}, +{"id":"119146","label":"covering magnifying glass with duster","template":"Covering [something] with [something]","placeholders":["magnifying glass","duster"]}, +{"id":"139124","label":"putting fork and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["fork","spoon"]}, +{"id":"210444","label":"lifting the razor up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["the razor"]}, +{"id":"19242","label":"unfolding ipad cover","template":"Unfolding [something]","placeholders":["ipad cover"]}, +{"id":"162527","label":"moving a toy up","template":"Moving [something] up","placeholders":["a toy"]}, +{"id":"135124","label":"pretending to open cellphone without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cellphone"]}, +{"id":"186025","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"68077","label":"poking a stack of pillows so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["pillows"]}, +{"id":"126299","label":"moving cup and teaspoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","teaspoon"]}, +{"id":"99480","label":"spinning bottel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottel"]}, +{"id":"48710","label":"pulling glass from left to right","template":"Pulling [something] from left to right","placeholders":["glass"]}, +{"id":"152201","label":"putting powder tin, lock and pomegranate on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["powder tin","lock","pomegranate"]}, +{"id":"92131","label":"lifting up one end of a folder without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a folder"]}, +{"id":"98869","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"17476","label":"putting the stapler pin into the stapler","template":"Putting [something] into [something]","placeholders":["the stapler pin","the stapler"]}, +{"id":"66019","label":"lifting cup with book on it","template":"Lifting [something] with [something] on it","placeholders":["cup","book"]}, +{"id":"179909","label":"squeezing red pot holder","template":"Squeezing [something]","placeholders":["red pot holder"]}, +{"id":"21924","label":"moving cup up","template":"Moving [something] up","placeholders":["cup"]}, +{"id":"5225","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"28462","label":"dropping a lighter onto a phone","template":"Dropping [something] onto [something]","placeholders":["a lighter","a phone"]}, +{"id":"124076","label":"pulling two ends of a butterknife but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a butterknife"]}, +{"id":"215221","label":"taking one match box of many similar match boxes on the table","template":"Taking [one of many similar things on the table]","placeholders":["one match box of many similar match boxes on the table"]}, +{"id":"180769","label":"throwing chocolate pretzel sticks in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["chocolate pretzel sticks"]}, +{"id":"148770","label":"closing the book","template":"Closing [something]","placeholders":["the book"]}, +{"id":"99958","label":"putting 3 pencil sharpners onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["3","pencil sharpners","yellow note"]}, +{"id":"143415","label":"holding a plastic fork over a pot of flowers","template":"Holding [something] over [something]","placeholders":["a plastic fork","a pot of flowers"]}, +{"id":"28765","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"106497","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"90627","label":"throwing newspaper against wall","template":"Throwing [something] against [something]","placeholders":["newspaper","wall"]}, +{"id":"39641","label":"fork falling like a rock","template":"[Something] falling like a rock","placeholders":["fork"]}, +{"id":"193193","label":"putting cream tube behind apple","template":"Putting [something] behind [something]","placeholders":["cream tube","apple"]}, +{"id":"114121","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"110354","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"218705","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"69251","label":"showing a photo of tubelight to the camera","template":"Showing a photo of [something] to the camera","placeholders":["tubelight"]}, +{"id":"93162","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"218634","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"74478","label":"dropping dough onto mat","template":"Dropping [something] onto [something]","placeholders":["dough","mat"]}, +{"id":"76120","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"27860","label":"turning the camera right while filming small green ball","template":"Turning the camera right while filming [something]","placeholders":["small green ball"]}, +{"id":"183880","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"16962","label":"turning the camera left while filming water bottle","template":"Turning the camera left while filming [something]","placeholders":["water bottle"]}, +{"id":"94171","label":"moving lipstick and bag closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lipstick","bag"]}, +{"id":"216666","label":"pretending to turn a fidget spinner upside down","template":"Pretending to turn [something] upside down","placeholders":["a fidget spinner"]}, +{"id":"198272","label":"throwing a plastic bottle cap in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a plastic bottle cap"]}, +{"id":"158538","label":"pushing can from left to right","template":"Pushing [something] from left to right","placeholders":["can"]}, +{"id":"212550","label":"pouring water into a mason jar","template":"Pouring [something] into [something]","placeholders":["water","a mason jar"]}, +{"id":"111433","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"4655","label":"bending a branch until it breaks","template":"Bending [something] until it breaks","placeholders":["a branch"]}, +{"id":"57358","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"81910","label":"showing autorickshaw to the camera","template":"Showing [something] to the camera","placeholders":["autorickshaw"]}, +{"id":"197939","label":"pretending or failing to wipe stain off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","chair"]}, +{"id":"129494","label":"pouring water onto glass","template":"Pouring [something] onto [something]","placeholders":["water","glass"]}, +{"id":"86314","label":"pouring soda into a glass","template":"Pouring [something] into [something]","placeholders":["soda","a glass"]}, +{"id":"92857","label":"turning the camera right while filming purple microfiber","template":"Turning the camera right while filming [something]","placeholders":["purple microfiber"]}, +{"id":"153244","label":"pulling cloth out of case","template":"Pulling [something] out of [something]","placeholders":["cloth","case"]}, +{"id":"21816","label":"die colliding with die and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["die","die"]}, +{"id":"119433","label":"moving a water bottle up","template":"Moving [something] up","placeholders":["a water bottle"]}, +{"id":"17233","label":"attaching a cloth holder clip to a leaf","template":"Attaching [something] to [something]","placeholders":["a cloth holder clip","a leaf"]}, +{"id":"63437","label":"wiping furniture polish off of coffee table","template":"Wiping [something] off of [something]","placeholders":["furniture polish","coffee table"]}, +{"id":"3933","label":"showing that the cup is empty","template":"Showing that [something] is empty","placeholders":["the cup"]}, +{"id":"178547","label":"picking aim toothpaste up","template":"Picking [something] up","placeholders":["aim toothpaste"]}, +{"id":"41457","label":"closing a glue","template":"Closing [something]","placeholders":["a glue"]}, +{"id":"137565","label":"pretending or failing to wipe crumbs off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["crumbs","counter"]}, +{"id":"139011","label":"pretending to be tearing journal","template":"Pretending to be tearing [something that is not tearable]","placeholders":["journal"]}, +{"id":"38760","label":"pushing lotion so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lotion"]}, +{"id":"49646","label":"moving cover down","template":"Moving [something] down","placeholders":["cover"]}, +{"id":"88907","label":"rolling tablet box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tablet box"]}, +{"id":"213359","label":"putting handphone, comb and notebook on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["handphone","comb","notebook"]}, +{"id":"90621","label":"plugging a usb into a usb-port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb","a usb-port"]}, +{"id":"183769","label":"controller falling like a rock","template":"[Something] falling like a rock","placeholders":["controller"]}, +{"id":"167709","label":"lifting a bowl up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a bowl"]}, +{"id":"41605","label":"plastic falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic"]}, +{"id":"10941","label":"taking food out of the fridge","template":"Taking [something] out of [something]","placeholders":["food","the fridge"]}, +{"id":"205931","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"109224","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"40270","label":"stuffing wipes into container","template":"Stuffing [something] into [something]","placeholders":["wipes","container"]}, +{"id":"185643","label":"turning the camera left while filming the window","template":"Turning the camera left while filming [something]","placeholders":["the window"]}, +{"id":"201875","label":"attaching a magnet to a refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","a refrigerator"]}, +{"id":"89051","label":"putting something similar to","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar to"]}, +{"id":"12443","label":"putting the shampoo on a surface","template":"Putting [something] on a surface","placeholders":["the shampoo"]}, +{"id":"32058","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"39389","label":"taking stapler from pen stand","template":"Taking [something] from [somewhere]","placeholders":["stapler","pen stand"]}, +{"id":"14098","label":"holding candle next to plate","template":"Holding [something] next to [something]","placeholders":["candle","plate"]}, +{"id":"129509","label":"pushing jar with charger","template":"Pushing [something] with [something]","placeholders":["jar","charger"]}, +{"id":"45186","label":"moving cup and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","cup"]}, +{"id":"49176","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"138410","label":"stuffing glove into hat","template":"Stuffing [something] into [something]","placeholders":["glove","hat"]}, +{"id":"141098","label":"putting 2 pencil sharpners onto rubix cube","template":"Putting [number of] [something] onto [something]","placeholders":["2","pencil sharpners","rubix cube"]}, +{"id":"208341","label":"putting 2 blue spoons onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","blue spoons","blue note"]}, +{"id":"161331","label":"taking medicine from medicine bottle","template":"Taking [something] from [somewhere]","placeholders":["medicine","medicine bottle"]}, +{"id":"30889","label":"throwing paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper"]}, +{"id":"156048","label":"holding bottle behind chair","template":"Holding [something] behind [something]","placeholders":["bottle","chair"]}, +{"id":"117597","label":"pushing a deodorant from left to right","template":"Pushing [something] from left to right","placeholders":["a deodorant"]}, +{"id":"37074","label":"laying soapbox on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["soapbox"]}, +{"id":"218837","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"186707","label":"taking metal out of bowl","template":"Taking [something] out of [something]","placeholders":["metal","bowl"]}, +{"id":"143809","label":"burying a wad of tinfoil in woodchips","template":"Burying [something] in [something]","placeholders":["a wad of tinfoil","woodchips"]}, +{"id":"5227","label":"pretending to put tablet on a surface","template":"Pretending to put [something] on a surface","placeholders":["tablet"]}, +{"id":"92548","label":"dropping remote control onto sheets","template":"Dropping [something] onto [something]","placeholders":["remote control","sheets"]}, +{"id":"27547","label":"throwing spoon against a box","template":"Throwing [something] against [something]","placeholders":["spoon","a box"]}, +{"id":"179611","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"67502","label":"pouring water into bucket","template":"Pouring [something] into [something]","placeholders":["water","bucket"]}, +{"id":"46829","label":"pushing a coin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a coin"]}, +{"id":"208724","label":"plugging plug into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","power outlet"]}, +{"id":"116206","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"117045","label":"digging soil out of land","template":"Digging [something] out of [something]","placeholders":["soil","land"]}, +{"id":"59204","label":"plugging bit into screwdriver","template":"Plugging [something] into [something]","placeholders":["bit","screwdriver"]}, +{"id":"42175","label":"pretending to open a salsa jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a salsa jar"]}, +{"id":"184177","label":"putting sewing reel onto plastic box","template":"Putting [something] onto [something]","placeholders":["sewing reel","plastic box"]}, +{"id":"203044","label":"moving bowl up","template":"Moving [something] up","placeholders":["bowl"]}, +{"id":"101486","label":"poking an empty bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["an empty bottle"]}, +{"id":"190133","label":"piling electronics up","template":"Piling [something] up","placeholders":["electronics"]}, +{"id":"184075","label":"showing mouse behind mug","template":"Showing [something] behind [something]","placeholders":["mouse","mug"]}, +{"id":"210195","label":"removing book, revealing earbuds behind","template":"Removing [something], revealing [something] behind","placeholders":["book","earbuds"]}, +{"id":"180057","label":"piling a calculator and remote controllers up","template":"Piling [something] up","placeholders":["a calculator and remote controllers"]}, +{"id":"10943","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"57948","label":"holding keys","template":"Holding [something]","placeholders":["keys"]}, +{"id":"161611","label":"touching (without moving) glass of spectacles","template":"Touching (without moving) [part] of [something]","placeholders":["glass","spectacles"]}, +{"id":"26944","label":"rolling orange colour pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["orange colour pen"]}, +{"id":"47639","label":"tearing a paer towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paer towel"]}, +{"id":"73900","label":"dropping hairclip behind piggybank","template":"Dropping [something] behind [something]","placeholders":["hairclip","piggybank"]}, +{"id":"119693","label":"lifting a surface with tape on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["tape"]}, +{"id":"121088","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"140239","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"117062","label":"moving black umbrella down","template":"Moving [something] down","placeholders":["black umbrella"]}, +{"id":"44298","label":"moving away from washing machine with your camera","template":"Moving away from [something] with your camera","placeholders":["washing machine"]}, +{"id":"120932","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"181962","label":"putting ball into cup","template":"Putting [something] into [something]","placeholders":["ball","cup"]}, +{"id":"137475","label":"picking shot glass up","template":"Picking [something] up","placeholders":["shot glass"]}, +{"id":"61828","label":"putting spoon","template":"Putting [something similar to other things that are already on the table]","placeholders":["spoon"]}, +{"id":"13192","label":"pretending or failing to wipe salt off of a table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a table"]}, +{"id":"174054","label":"putting comb underneath drawer","template":"Putting [something] underneath [something]","placeholders":["comb","drawer"]}, +{"id":"76150","label":"tipping waterbottle over","template":"Tipping [something] over","placeholders":["waterbottle"]}, +{"id":"215721","label":"wiping water off of floor","template":"Wiping [something] off of [something]","placeholders":["water","floor"]}, +{"id":"200719","label":"pushing a cup from left to right","template":"Pushing [something] from left to right","placeholders":["a cup"]}, +{"id":"131421","label":"moving a kart toy across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a kart toy"]}, +{"id":"118582","label":"folding scarf","template":"Folding [something]","placeholders":["scarf"]}, +{"id":"80242","label":"lifting a pack of tissu with a ruler on it","template":"Lifting [something] with [something] on it","placeholders":["a pack of tissu","a ruler"]}, +{"id":"114878","label":"pretending to sprinkle air onto laptop power brick","template":"Pretending to sprinkle air onto [something]","placeholders":["laptop power brick"]}, +{"id":"207263","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"48080","label":"picking pen up","template":"Picking [something] up","placeholders":["pen"]}, +{"id":"82871","label":"pretending to put fruit into fruir platter","template":"Pretending to put [something] into [something]","placeholders":["fruit","fruir platter"]}, +{"id":"150604","label":"moving mp3 player up","template":"Moving [something] up","placeholders":["mp3 player"]}, +{"id":"159544","label":"moving a block of paper down","template":"Moving [something] down","placeholders":["a block of paper"]}, +{"id":"45301","label":"lifting mousepad with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["mousepad","mouse"]}, +{"id":"25933","label":"rolling lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon"]}, +{"id":"59704","label":"bending a fork so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fork"]}, +{"id":"25370","label":"pulling electrical tape from left to right","template":"Pulling [something] from left to right","placeholders":["electrical tape"]}, +{"id":"55526","label":"holding banana behind plate","template":"Holding [something] behind [something]","placeholders":["banana","plate"]}, +{"id":"53505","label":"bending a plastic fork until it breaks","template":"Bending [something] until it breaks","placeholders":["a plastic fork"]}, +{"id":"24799","label":"uncovering mug","template":"Uncovering [something]","placeholders":["mug"]}, +{"id":"24290","label":"tipping an empty bottle over","template":"Tipping [something] over","placeholders":["an empty bottle"]}, +{"id":"15633","label":"tipping toy dragon over","template":"Tipping [something] over","placeholders":["toy dragon"]}, +{"id":"118738","label":"dropping pen onto watch","template":"Dropping [something] onto [something]","placeholders":["pen","watch"]}, +{"id":"88570","label":"opening a container of lotion","template":"Opening [something]","placeholders":["a container of lotion"]}, +{"id":"67954","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"37980","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"22759","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"80611","label":"attaching a post it note to a teapot","template":"Attaching [something] to [something]","placeholders":["a post it note","a teapot"]}, +{"id":"187453","label":"putting a hairbrush next to deodorant","template":"Putting [something] next to [something]","placeholders":["a hairbrush","deodorant"]}, +{"id":"62316","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"55255","label":"putting gear wheel, white pebble and chalk on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["gear wheel","white pebble","chalk"]}, +{"id":"82714","label":"pouring peas into a thermos/can","template":"Pouring [something] into [something]","placeholders":["peas","a thermos/can"]}, +{"id":"101949","label":"plugging charger into switch","template":"Plugging [something] into [something]","placeholders":["charger","switch"]}, +{"id":"115921","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"91753","label":"turning the camera left while filming waste basket","template":"Turning the camera left while filming [something]","placeholders":["waste basket"]}, +{"id":"70957","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"62365","label":"pushing lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lighter"]}, +{"id":"215668","label":"moving cup away from pen","template":"Moving [something] away from [something]","placeholders":["cup","pen"]}, +{"id":"141149","label":"showing sunset to the camera","template":"Showing [something] to the camera","placeholders":["sunset"]}, +{"id":"118833","label":"scooping water up with cup","template":"Scooping [something] up with [something]","placeholders":["water","cup"]}, +{"id":"1759","label":"putting box, pen and lip bam on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","pen","lip bam"]}, +{"id":"215270","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"186612","label":"moving mouse closer to keyboard","template":"Moving [something] closer to [something]","placeholders":["mouse","keyboard"]}, +{"id":"172874","label":"spilling water next to a coin","template":"Spilling [something] next to [something]","placeholders":["water","a coin"]}, +{"id":"24884","label":"taking one of many markers on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many markers on the table"]}, +{"id":"163120","label":"pouring tomato sauce into a dish","template":"Pouring [something] into [something]","placeholders":["tomato sauce","a dish"]}, +{"id":"110967","label":"showing pillow on top of pillow","template":"Showing [something] on top of [something]","placeholders":["pillow","pillow"]}, +{"id":"8010","label":"throwing hair clip against green toy car","template":"Throwing [something] against [something]","placeholders":["hair clip","green toy car"]}, +{"id":"104064","label":"lifting glass with banana on it","template":"Lifting [something] with [something] on it","placeholders":["glass","banana"]}, +{"id":"192357","label":"lifting paper with green chalk on it","template":"Lifting [something] with [something] on it","placeholders":["paper","green chalk"]}, +{"id":"210572","label":"spilling rice onto a vessel","template":"Spilling [something] onto [something]","placeholders":["rice","a vessel"]}, +{"id":"161329","label":"taking match stick from the box","template":"Taking [something] from [somewhere]","placeholders":["match stick","the box"]}, +{"id":"203320","label":"tilting a video game case with an eraser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a video game case","an eraser"]}, +{"id":"163516","label":"taking conch shell from floor","template":"Taking [something] from [somewhere]","placeholders":["conch shell","floor"]}, +{"id":"218934","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"208427","label":"showing a photo of rat to the camera","template":"Showing a photo of [something] to the camera","placeholders":["rat"]}, +{"id":"70380","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"2396","label":"putting a bouncer on the edge of a foot stool so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a bouncer","a foot stool"]}, +{"id":"126899","label":"moving top of spice canister","template":"Moving [part] of [something]","placeholders":["top","spice canister"]}, +{"id":"99238","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"120920","label":"pushing mp3 player from right to left","template":"Pushing [something] from right to left","placeholders":["mp3 player"]}, +{"id":"83372","label":"closing padlock","template":"Closing [something]","placeholders":["padlock"]}, +{"id":"64662","label":"putting telephone on a surface","template":"Putting [something] on a surface","placeholders":["telephone"]}, +{"id":"178529","label":"lifting blue colour punching machine up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["blue colour punching machine"]}, +{"id":"150209","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"36868","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"99206","label":"moving glasses down","template":"Moving [something] down","placeholders":["glasses"]}, +{"id":"81888","label":"pretending to put paperweight on a surface","template":"Pretending to put [something] on a surface","placeholders":["paperweight"]}, +{"id":"165650","label":"putting stapler upright on the table","template":"Putting [something] upright on the table","placeholders":["stapler"]}, +{"id":"86488","label":"putting play-doh behind mug","template":"Putting [something] behind [something]","placeholders":["play-doh","mug"]}, +{"id":"179920","label":"moving box closer to box","template":"Moving [something] closer to [something]","placeholders":["box","box"]}, +{"id":"147731","label":"putting a bowl onto ice tray","template":"Putting [something] onto [something]","placeholders":["a bowl","ice tray"]}, +{"id":"165583","label":"dropping a tape in front of scissors","template":"Dropping [something] in front of [something]","placeholders":["a tape","scissors"]}, +{"id":"32815","label":"moving eraser and sharpener away from each other","template":"Moving [something] and [something] away from each other","placeholders":["eraser","sharpener"]}, +{"id":"124431","label":"taking one hair clip of many similar hair clips on the table","template":"Taking [one of many similar things on the table]","placeholders":["one hair clip of many similar hair clips on the table"]}, +{"id":"19509","label":"spreading ketchup onto biscuit","template":"Spreading [something] onto [something]","placeholders":["ketchup","biscuit"]}, +{"id":"49242","label":"dropping a comb behind a box","template":"Dropping [something] behind [something]","placeholders":["a comb","a box"]}, +{"id":"144899","label":"pushing a phone off of a table","template":"Pushing [something] off of [something]","placeholders":["a phone","a table"]}, +{"id":"8537","label":"plugging headphone into computer jack but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphone","computer jack"]}, +{"id":"21494","label":"dropping a tissue box behind a mug","template":"Dropping [something] behind [something]","placeholders":["a tissue box","a mug"]}, +{"id":"181501","label":"laying a container on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a container"]}, +{"id":"129410","label":"lifting a book with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a pen"]}, +{"id":"159321","label":"holding camera next to chair","template":"Holding [something] next to [something]","placeholders":["camera","chair"]}, +{"id":"216809","label":"unfolding a wrap","template":"Unfolding [something]","placeholders":["a wrap"]}, +{"id":"178689","label":"pulling two wheel toy trolley onto table","template":"Pulling [something] onto [something]","placeholders":["two wheel toy trolley","table"]}, +{"id":"12839","label":"pretending or trying and failing to twist smartphone","template":"Pretending or trying and failing to twist [something]","placeholders":["smartphone"]}, +{"id":"83382","label":"dropping a rubiks cube into a lunch box","template":"Dropping [something] into [something]","placeholders":["a rubiks cube","a lunch box"]}, +{"id":"202891","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"126351","label":"tipping a cup with pens over, so pens falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","pens","pens"]}, +{"id":"156590","label":"holding a cell phone in front of a bottle","template":"Holding [something] in front of [something]","placeholders":["a cell phone","a bottle"]}, +{"id":"89277","label":"putting lid upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["lid"]}, +{"id":"29475","label":"tearing folded sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["folded sheet of paper"]}, +{"id":"186681","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"103412","label":"sticky note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sticky note"]}, +{"id":"72244","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"132790","label":"pushing a pack of gum so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pack of gum"]}, +{"id":"63371","label":"closing filing cabinet","template":"Closing [something]","placeholders":["filing cabinet"]}, +{"id":"123636","label":"moving away from talcum powder bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["talcum powder bottle"]}, +{"id":"22596","label":"throwing highlighter pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["highlighter pen"]}, +{"id":"27386","label":"tearing a tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["a tissue"]}, +{"id":"63935","label":"showing a mug behind a laptop","template":"Showing [something] behind [something]","placeholders":["a mug","a laptop"]}, +{"id":"167982","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"147363","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"85674","label":"hitting a stabilizer with a pen","template":"Hitting [something] with [something]","placeholders":["a stabilizer","a pen"]}, +{"id":"175002","label":"putting water bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["water bottle"]}, +{"id":"54283","label":"turning a tea cup upside down","template":"Turning [something] upside down","placeholders":["a tea cup"]}, +{"id":"205686","label":"pulling glasses from right to left","template":"Pulling [something] from right to left","placeholders":["glasses"]}, +{"id":"176874","label":"spinning newspaper that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["newspaper"]}, +{"id":"154431","label":"putting a toothbrush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a toothbrush"]}, +{"id":"41274","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"9520","label":"putting 1 bell onto table","template":"Putting [number of] [something] onto [something]","placeholders":["1","bell","table"]}, +{"id":"216333","label":"putting a plug next to a candleholder","template":"Putting [something] next to [something]","placeholders":["a plug","a candleholder"]}, +{"id":"645","label":"trying but failing to attach a piece of clothing to another piece of clothing because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a piece of clothing","another piece of clothing"]}, +{"id":"84353","label":"rolling can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["can"]}, +{"id":"11307","label":"putting game piece into container","template":"Putting [something] into [something]","placeholders":["game piece","container"]}, +{"id":"22675","label":"tearing movies brochure just a little bit","template":"Tearing [something] just a little bit","placeholders":["movies brochure"]}, +{"id":"29373","label":"pulling mug from right to left","template":"Pulling [something] from right to left","placeholders":["mug"]}, +{"id":"161102","label":"letting a pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pencil"]}, +{"id":"145625","label":"showing street to the camera","template":"Showing [something] to the camera","placeholders":["street"]}, +{"id":"164510","label":"pulling two ends of flashlight but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["flashlight"]}, +{"id":"192093","label":"pushing small book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["small book"]}, +{"id":"67569","label":"pretending to be tearing wallet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["wallet"]}, +{"id":"6248","label":"pouring sugar into glass","template":"Pouring [something] into [something]","placeholders":["sugar","glass"]}, +{"id":"101569","label":"pretending to poke a stuffed toy","template":"Pretending to poke [something]","placeholders":["a stuffed toy"]}, +{"id":"144173","label":"pulling two ends of elastic so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["elastic"]}, +{"id":"118503","label":"pretending to put a votive next to a votive","template":"Pretending to put [something] next to [something]","placeholders":["a votive","a votive"]}, +{"id":"110573","label":"tearing uno card into two pieces","template":"Tearing [something] into two pieces","placeholders":["uno card"]}, +{"id":"35514","label":"letting refill roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["refill"]}, +{"id":"84877","label":"putting a marker into supplies box","template":"Putting [something] into [something]","placeholders":["a marker","supplies box"]}, +{"id":"162857","label":"removing board, revealing book behind","template":"Removing [something], revealing [something] behind","placeholders":["board","book"]}, +{"id":"64138","label":"pretending to put scissors onto book","template":"Pretending to put [something] onto [something]","placeholders":["scissors","book"]}, +{"id":"173769","label":"moving glasses down","template":"Moving [something] down","placeholders":["glasses"]}, +{"id":"102111","label":"letting old beer bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["old beer bottle"]}, +{"id":"134107","label":"moving cellphone and notebook closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cellphone","notebook"]}, +{"id":"90823","label":"holding scissor","template":"Holding [something]","placeholders":["scissor"]}, +{"id":"145999","label":"a sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sheet of paper"]}, +{"id":"2146","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"18456","label":"moving apple and banana away from each other","template":"Moving [something] and [something] away from each other","placeholders":["apple","banana"]}, +{"id":"162416","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"85032","label":"showing chair behind paper","template":"Showing [something] behind [something]","placeholders":["chair","paper"]}, +{"id":"152557","label":"turning a bottle of water upside down","template":"Turning [something] upside down","placeholders":["a bottle of water"]}, +{"id":"168096","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"102267","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"104759","label":"stuffing a money into wallet","template":"Stuffing [something] into [something]","placeholders":["a money","wallet"]}, +{"id":"18013","label":"tearing paper tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper tissue"]}, +{"id":"18208","label":"putting wallet and spanner on the table","template":"Putting [something] and [something] on the table","placeholders":["wallet","spanner"]}, +{"id":"83790","label":"pretending to close hair gel bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["hair gel bottle"]}, +{"id":"125623","label":"pouring drink out of bottle","template":"Pouring [something] out of [something]","placeholders":["drink","bottle"]}, +{"id":"153662","label":"showing that food is inside the box","template":"Showing that [something] is inside [something]","placeholders":["food","the box"]}, +{"id":"76914","label":"pretending to scoop sugar up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"15229","label":"turning smart phone upside down","template":"Turning [something] upside down","placeholders":["smart phone"]}, +{"id":"107667","label":"a monkey figure falling like a rock","template":"[Something] falling like a rock","placeholders":["a monkey figure"]}, +{"id":"125243","label":"putting tablet into floor","template":"Putting [something] into [something]","placeholders":["tablet","floor"]}, +{"id":"38901","label":"squeezing dough","template":"Squeezing [something]","placeholders":["dough"]}, +{"id":"133259","label":"touching (without moving) glas of glas","template":"Touching (without moving) [part] of [something]","placeholders":["glas","glas"]}, +{"id":"197708","label":"moving purse up","template":"Moving [something] up","placeholders":["purse"]}, +{"id":"33272","label":"bending spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["spoon"]}, +{"id":"65469","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"133762","label":"trying to bend table so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["table"]}, +{"id":"163782","label":"taking a pill bottle out of a purse","template":"Taking [something] out of [something]","placeholders":["a pill bottle","a purse"]}, +{"id":"149795","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"159235","label":"spinning a coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a coin"]}, +{"id":"139484","label":"putting a pillow","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pillow"]}, +{"id":"202600","label":"putting pen next to holder","template":"Putting [something] next to [something]","placeholders":["pen","holder"]}, +{"id":"3161","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"35408","label":"taking grape","template":"Taking [one of many similar things on the table]","placeholders":["grape"]}, +{"id":"152065","label":"closing notebook","template":"Closing [something]","placeholders":["notebook"]}, +{"id":"181357","label":"opening a fish can","template":"Opening [something]","placeholders":["a fish can"]}, +{"id":"60193","label":"putting a pencil on a surface","template":"Putting [something] on a surface","placeholders":["a pencil"]}, +{"id":"147523","label":"tipping candle over","template":"Tipping [something] over","placeholders":["candle"]}, +{"id":"104699","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"86941","label":"poking toy zelda so that it falls over","template":"Poking [something] so that it falls over","placeholders":["toy zelda"]}, +{"id":"37118","label":"sprinkling salt onto tomato pieces","template":"Sprinkling [something] onto [something]","placeholders":["salt","tomato pieces"]}, +{"id":"183796","label":"showing flowers behind cup","template":"Showing [something] behind [something]","placeholders":["flowers","cup"]}, +{"id":"53388","label":"lifting a keyboard up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a keyboard"]}, +{"id":"203100","label":"throwing a drinks mat in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a drinks mat"]}, +{"id":"74314","label":"piling boxes of matches up","template":"Piling [something] up","placeholders":["boxes of matches"]}, +{"id":"87275","label":"pushing container from right to left","template":"Pushing [something] from right to left","placeholders":["container"]}, +{"id":"189155","label":"holding mobile phone over wallet","template":"Holding [something] over [something]","placeholders":["mobile phone","wallet"]}, +{"id":"99734","label":"showing cup behind bottle","template":"Showing [something] behind [something]","placeholders":["cup","bottle"]}, +{"id":"105191","label":"turning the camera left while filming a lighter","template":"Turning the camera left while filming [something]","placeholders":["a lighter"]}, +{"id":"61010","label":"spinning bangle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bangle"]}, +{"id":"53891","label":"hitting cup with spoon","template":"Hitting [something] with [something]","placeholders":["cup","spoon"]}, +{"id":"196240","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"80317","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"213978","label":"plugging usb into port","template":"Plugging [something] into [something]","placeholders":["usb","port"]}, +{"id":"76636","label":"pushing stapler off of drawing board","template":"Pushing [something] off of [something]","placeholders":["stapler","drawing board"]}, +{"id":"131816","label":"plugging hair dryer into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["hair dryer","wall outlet"]}, +{"id":"33505","label":"tipping nose spray bottle over","template":"Tipping [something] over","placeholders":["nose spray bottle"]}, +{"id":"18788","label":"moving soap box and container away from each other","template":"Moving [something] and [something] away from each other","placeholders":["soap box","container"]}, +{"id":"214846","label":"attaching pencil sharpener cap to pencil sharpener","template":"Attaching [something] to [something]","placeholders":["pencil sharpener cap","pencil sharpener"]}, +{"id":"146557","label":"putting a shot glass next to a measuring cup","template":"Putting [something] next to [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"210479","label":"plugging otg into mobile but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["otg","mobile"]}, +{"id":"211477","label":"showing that water is inside glass","template":"Showing that [something] is inside [something]","placeholders":["water","glass"]}, +{"id":"104140","label":"turning the camera left while filming traffic signboard","template":"Turning the camera left while filming [something]","placeholders":["traffic signboard"]}, +{"id":"2310","label":"taking khaki out of bowl","template":"Taking [something] out of [something]","placeholders":["khaki","bowl"]}, +{"id":"120656","label":"lifting up one end of a tape, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a tape"]}, +{"id":"151910","label":"wiping dirt off of mirror","template":"Wiping [something] off of [something]","placeholders":["dirt","mirror"]}, +{"id":"67588","label":"lifting wallet with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","sunglasses"]}, +{"id":"137336","label":"putting hat that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["hat"]}, +{"id":"46454","label":"tilting book with coin on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","coin"]}, +{"id":"22336","label":"holding notebook over bed","template":"Holding [something] over [something]","placeholders":["notebook","bed"]}, +{"id":"173643","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"176453","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"170112","label":"pushing calculator from right to left","template":"Pushing [something] from right to left","placeholders":["calculator"]}, +{"id":"66520","label":"spreading salt onto plate","template":"Spreading [something] onto [something]","placeholders":["salt","plate"]}, +{"id":"40096","label":"squeezing a plushie","template":"Squeezing [something]","placeholders":["a plushie"]}, +{"id":"134459","label":"lifting set of compasses up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["set of compasses"]}, +{"id":"216839","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"155692","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"217464","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"52380","label":"spinning fan that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["fan"]}, +{"id":"63928","label":"spilling water next to a shoe brush","template":"Spilling [something] next to [something]","placeholders":["water","a shoe brush"]}, +{"id":"121037","label":"stuffing a blanket into a bag","template":"Stuffing [something] into [something]","placeholders":["a blanket","a bag"]}, +{"id":"69257","label":"picking pink water bottle up","template":"Picking [something] up","placeholders":["pink water bottle"]}, +{"id":"52709","label":"pushing socks with broom","template":"Pushing [something] with [something]","placeholders":["socks","broom"]}, +{"id":"122115","label":"pulling two ends of toy but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["toy"]}, +{"id":"164398","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"199077","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"25380","label":"folding cardboart","template":"Folding [something]","placeholders":["cardboart"]}, +{"id":"120700","label":"squeezing a lime","template":"Squeezing [something]","placeholders":["a lime"]}, +{"id":"204675","label":"dropping paper onto bed","template":"Dropping [something] onto [something]","placeholders":["paper","bed"]}, +{"id":"140033","label":"closing phone case","template":"Closing [something]","placeholders":["phone case"]}, +{"id":"25382","label":"pushing towel onto paper","template":"Pushing [something] onto [something]","placeholders":["towel","paper"]}, +{"id":"160867","label":"showing small green ball to the camera","template":"Showing [something] to the camera","placeholders":["small green ball"]}, +{"id":"82636","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"109964","label":"pulling two ends of a toothbrush case so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a toothbrush case"]}, +{"id":"162359","label":"covering coaster with book","template":"Covering [something] with [something]","placeholders":["coaster","book"]}, +{"id":"24919","label":"moving chap stick across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["chap stick"]}, +{"id":"62115","label":"covering mug with shirt","template":"Covering [something] with [something]","placeholders":["mug","shirt"]}, +{"id":"160623","label":"lifting mousepad with keys on it","template":"Lifting [something] with [something] on it","placeholders":["mousepad","keys"]}, +{"id":"175220","label":"pulling soda pop can from behind of coffee can","template":"Pulling [something] from behind of [something]","placeholders":["soda pop can","coffee can"]}, +{"id":"49262","label":"holding controller next to headset","template":"Holding [something] next to [something]","placeholders":["controller","headset"]}, +{"id":"171818","label":"putting knife next to mug","template":"Putting [something] next to [something]","placeholders":["knife","mug"]}, +{"id":"39289","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"71477","label":"poking a toy flywheel so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a toy flywheel"]}, +{"id":"13569","label":"poking a stack of wood blocks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["wood blocks"]}, +{"id":"100405","label":"lifting rubber up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rubber"]}, +{"id":"172619","label":"poking ipad case so that it falls over","template":"Poking [something] so that it falls over","placeholders":["ipad case"]}, +{"id":"31712","label":"pretending to poke wall","template":"Pretending to poke [something]","placeholders":["wall"]}, +{"id":"39471","label":"pretending to sprinkle air onto plant","template":"Pretending to sprinkle air onto [something]","placeholders":["plant"]}, +{"id":"100086","label":"showing jeep to the camera","template":"Showing [something] to the camera","placeholders":["jeep"]}, +{"id":"117570","label":"moving a pen down","template":"Moving [something] down","placeholders":["a pen"]}, +{"id":"91283","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"211881","label":"pushing ball so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ball"]}, +{"id":"48821","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"62788","label":"lifting a towel up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a towel"]}, +{"id":"81608","label":"lifting jar up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["jar"]}, +{"id":"139768","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"65276","label":"moving box away from the camera","template":"Moving [something] away from the camera","placeholders":["box"]}, +{"id":"51718","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"132962","label":"pretending to be tearing book case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["book case"]}, +{"id":"122556","label":"tearing aluminium foil just a little bit","template":"Tearing [something] just a little bit","placeholders":["aluminium foil"]}, +{"id":"129682","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"51051","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"50980","label":"pulling red dairy from right to left","template":"Pulling [something] from right to left","placeholders":["red dairy"]}, +{"id":"94999","label":"putting jar on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["jar","box"]}, +{"id":"120890","label":"holding marker over cup","template":"Holding [something] over [something]","placeholders":["marker","cup"]}, +{"id":"29171","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"164766","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"105367","label":"showing pinecone behind glass","template":"Showing [something] behind [something]","placeholders":["pinecone","glass"]}, +{"id":"164508","label":"burying cell phone in blanket","template":"Burying [something] in [something]","placeholders":["cell phone","blanket"]}, +{"id":"138620","label":"putting a scotch roll on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a scotch roll"]}, +{"id":"163764","label":"tipping something nearly over","template":"Tipping [something] over","placeholders":["something nearly"]}, +{"id":"182642","label":"rolling marble on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marble"]}, +{"id":"66666","label":"moving toy towards the camera","template":"Moving [something] towards the camera","placeholders":["toy"]}, +{"id":"173718","label":"pretending or failing to wipe coffee off of glass desk","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["coffee","glass desk"]}, +{"id":"93666","label":"folding a washcloth","template":"Folding [something]","placeholders":["a washcloth"]}, +{"id":"170294","label":"pretending to pick brush up","template":"Pretending to pick [something] up","placeholders":["brush"]}, +{"id":"63166","label":"lifting coin up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["coin"]}, +{"id":"92754","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"154556","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"27331","label":"pushing red booklet from left to right","template":"Pushing [something] from left to right","placeholders":["red booklet"]}, +{"id":"35178","label":"opening cover","template":"Opening [something]","placeholders":["cover"]}, +{"id":"207108","label":"uncovering binder","template":"Uncovering [something]","placeholders":["binder"]}, +{"id":"169142","label":"tearing card just a little bit","template":"Tearing [something] just a little bit","placeholders":["card"]}, +{"id":"153491","label":"box colliding with a piece of candle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["box","a piece of candle"]}, +{"id":"6904","label":"tilting notebook with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["notebook","mouse"]}, +{"id":"123947","label":"lifting suitcase up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["suitcase"]}, +{"id":"198304","label":"putting 4 colour pens onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["4","colour pens","yellow note"]}, +{"id":"49565","label":"showing that a lunch box is empty","template":"Showing that [something] is empty","placeholders":["a lunch box"]}, +{"id":"27430","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"39006","label":"pushing a bottle from right to left","template":"Pushing [something] from right to left","placeholders":["a bottle"]}, +{"id":"201799","label":"pouring water out of jug","template":"Pouring [something] out of [something]","placeholders":["water","jug"]}, +{"id":"69835","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"175713","label":"plugging phone charger into wall","template":"Plugging [something] into [something]","placeholders":["phone charger","wall"]}, +{"id":"207785","label":"putting glasses on a surface","template":"Putting [something] on a surface","placeholders":["glasses"]}, +{"id":"155308","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"69108","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"160922","label":"tilting stand with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["stand","phone"]}, +{"id":"23697","label":"tilting a water bottle with another water bottle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a water bottle","another water bottle"]}, +{"id":"121497","label":"putting books into backpack","template":"Putting [something] into [something]","placeholders":["books","backpack"]}, +{"id":"189210","label":"moving a book away from another book","template":"Moving [something] away from [something]","placeholders":["a book","another book"]}, +{"id":"84487","label":"moving glass closer to another glass","template":"Moving [something] closer to [something]","placeholders":["glass","another glass"]}, +{"id":"131385","label":"plugging switch into socket","template":"Plugging [something] into [something]","placeholders":["switch","socket"]}, +{"id":"122329","label":"putting a teaspoon next to a mug","template":"Putting [something] next to [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"68751","label":"taking marker out of can","template":"Taking [something] out of [something]","placeholders":["marker","can"]}, +{"id":"202028","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"97248","label":"moving top of heart box","template":"Moving [part] of [something]","placeholders":["top","heart box"]}, +{"id":"198172","label":"turning the camera upwards while filming vacuum cleaner","template":"Turning the camera upwards while filming [something]","placeholders":["vacuum cleaner"]}, +{"id":"7507","label":"turning the camera downwards while filming air conditioner","template":"Turning the camera downwards while filming [something]","placeholders":["air conditioner"]}, +{"id":"193934","label":"plastic rat skeleton falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic rat skeleton"]}, +{"id":"151187","label":"taking one die from group of dice","template":"Taking [one of many similar things on the table]","placeholders":["one die from group of dice"]}, +{"id":"185031","label":"turning a bottle of contact solution upside down","template":"Turning [something] upside down","placeholders":["a bottle of contact solution"]}, +{"id":"99258","label":"moving apple and khaki closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["apple","khaki"]}, +{"id":"90142","label":"pretending to put scotch tape on a surface","template":"Pretending to put [something] on a surface","placeholders":["scotch tape"]}, +{"id":"143280","label":"bending a match stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a match stick"]}, +{"id":"86839","label":"pretending to pick remote control up","template":"Pretending to pick [something] up","placeholders":["remote control"]}, +{"id":"57405","label":"throwing kerchief","template":"Throwing [something]","placeholders":["kerchief"]}, +{"id":"128939","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"18518","label":"covering stuffed animal with blanket","template":"Covering [something] with [something]","placeholders":["stuffed animal","blanket"]}, +{"id":"160546","label":"turning a phone upside down","template":"Turning [something] upside down","placeholders":["a phone"]}, +{"id":"206154","label":"bending a wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a wooden stick"]}, +{"id":"131361","label":"removing chewing gums, revealing a necklace behind","template":"Removing [something], revealing [something] behind","placeholders":["chewing gums","a necklace"]}, +{"id":"119422","label":"approaching striker coin with your camera","template":"Approaching [something] with your camera","placeholders":["striker coin"]}, +{"id":"122462","label":"holding diary in front of laptop","template":"Holding [something] in front of [something]","placeholders":["diary","laptop"]}, +{"id":"17266","label":"pretending to take a remote control from a table","template":"Pretending to take [something] from [somewhere]","placeholders":["a remote control","a table"]}, +{"id":"63706","label":"failing to put sponge into jar because sponge does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["sponge","jar","sponge"]}, +{"id":"66941","label":"turning the camera right while filming baby diaper pack","template":"Turning the camera right while filming [something]","placeholders":["baby diaper pack"]}, +{"id":"90269","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"220614","label":"pretending to take earring from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["earring","surface"]}, +{"id":"193677","label":"pretending or failing to wipe black-ink off of plastic-board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["black-ink","plastic-board"]}, +{"id":"35035","label":"putting hat next to shoe","template":"Putting [something] next to [something]","placeholders":["hat","shoe"]}, +{"id":"122000","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"60060","label":"putting kitchen paper on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["kitchen paper","table"]}, +{"id":"52648","label":"showing fire to the camera","template":"Showing [something] to the camera","placeholders":["fire"]}, +{"id":"166033","label":"throwing throwing something on the air in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["throwing something on the air"]}, +{"id":"775","label":"covering baby with blanket","template":"Covering [something] with [something]","placeholders":["baby","blanket"]}, +{"id":"199091","label":"covering glass jar with cloth","template":"Covering [something] with [something]","placeholders":["glass jar","cloth"]}, +{"id":"102570","label":"pretending to take mouse from book","template":"Pretending to take [something] from [somewhere]","placeholders":["mouse","book"]}, +{"id":"125445","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"193550","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"82237","label":"covering pen with napkin","template":"Covering [something] with [something]","placeholders":["pen","napkin"]}, +{"id":"59269","label":"attaching a pen to a comb","template":"Attaching [something] to [something]","placeholders":["a pen","a comb"]}, +{"id":"101936","label":"taking binder clips out of a cup","template":"Taking [something] out of [something]","placeholders":["binder clips","a cup"]}, +{"id":"87892","label":"pulling two ends of a tissue paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a tissue paper"]}, +{"id":"67793","label":"turning the camera right while filming granola bar","template":"Turning the camera right while filming [something]","placeholders":["granola bar"]}, +{"id":"108929","label":"pushing a book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a book"]}, +{"id":"211670","label":"attaching a sticky note to a book","template":"Attaching [something] to [something]","placeholders":["a sticky note","a book"]}, +{"id":"6060","label":"lifting a phone with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a phone","a pen"]}, +{"id":"201541","label":"trying but failing to attach magazine to battleship game because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magazine","battleship game"]}, +{"id":"167133","label":"holding nail polish next to shoe","template":"Holding [something] next to [something]","placeholders":["nail polish","shoe"]}, +{"id":"170460","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209179","label":"pushing a sieve so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a sieve"]}, +{"id":"69722","label":"showing corn icecream to the camera","template":"Showing [something] to the camera","placeholders":["corn icecream"]}, +{"id":"188403","label":"stuffing paper pieces into a tincan","template":"Stuffing [something] into [something]","placeholders":["paper pieces","a tincan"]}, +{"id":"168733","label":"uncovering something","template":"Uncovering [something]","placeholders":["something"]}, +{"id":"45771","label":"pouring water into container until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","container"]}, +{"id":"53048","label":"putting a coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin"]}, +{"id":"49228","label":"removing box, revealing bottle behind","template":"Removing [something], revealing [something] behind","placeholders":["box","bottle"]}, +{"id":"67341","label":"pushing bracelet from right to left","template":"Pushing [something] from right to left","placeholders":["bracelet"]}, +{"id":"204301","label":"showing that a bottle is empty","template":"Showing that [something] is empty","placeholders":["a bottle"]}, +{"id":"125509","label":"putting a spoon upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a spoon"]}, +{"id":"29272","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"67723","label":"opening compassbox","template":"Opening [something]","placeholders":["compassbox"]}, +{"id":"119253","label":"burying ipad in blanket","template":"Burying [something] in [something]","placeholders":["ipad","blanket"]}, +{"id":"43144","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"43293","label":"pretending to pick toy up","template":"Pretending to pick [something] up","placeholders":["toy"]}, +{"id":"177748","label":"lifting battery up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["battery"]}, +{"id":"11728","label":"hitting a bottle with a book","template":"Hitting [something] with [something]","placeholders":["a bottle","a book"]}, +{"id":"160567","label":"spilling water onto newspaper","template":"Spilling [something] onto [something]","placeholders":["water","newspaper"]}, +{"id":"85695","label":"pretending or failing to wipe flour off of a counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["flour","a counter"]}, +{"id":"212729","label":"poking lpg tank so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lpg tank"]}, +{"id":"169129","label":"plugging cable into charger","template":"Plugging [something] into [something]","placeholders":["cable","charger"]}, +{"id":"90589","label":"stuffing tissue into a glass","template":"Stuffing [something] into [something]","placeholders":["tissue","a glass"]}, +{"id":"60106","label":"trying but failing to attach horse to white board because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["horse","white board"]}, +{"id":"125149","label":"putting tape into a bag","template":"Putting [something] into [something]","placeholders":["tape","a bag"]}, +{"id":"62159","label":"failing to put an apple into a mug because the apple does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["an apple","a mug","the apple"]}, +{"id":"166059","label":"spreading hot sauce onto rice","template":"Spreading [something] onto [something]","placeholders":["hot sauce","rice"]}, +{"id":"64966","label":"pretending or failing to wipe stain off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","wall"]}, +{"id":"11590","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"85046","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"63535","label":"twisting a thermos open","template":"Twisting [something]","placeholders":["a thermos open"]}, +{"id":"171207","label":"wiping gel off of box","template":"Wiping [something] off of [something]","placeholders":["gel","box"]}, +{"id":"154519","label":"twisting rubber","template":"Twisting [something]","placeholders":["rubber"]}, +{"id":"154560","label":"taking paper","template":"Taking [one of many similar things on the table]","placeholders":["paper"]}, +{"id":"103939","label":"poking clip so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["clip"]}, +{"id":"161682","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"40398","label":"pretending or failing to wipe a stain off of a table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["a stain","a table"]}, +{"id":"102681","label":"pulling tape out of tape measure","template":"Pulling [something] out of [something]","placeholders":["tape","tape measure"]}, +{"id":"111830","label":"tearing reciept just a little bit","template":"Tearing [something] just a little bit","placeholders":["reciept"]}, +{"id":"54121","label":"a marble ball colliding with another marble ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a marble ball","another marble ball"]}, +{"id":"61182","label":"lifting box with hands on it","template":"Lifting [something] with [something] on it","placeholders":["box","hands"]}, +{"id":"75404","label":"pushing cufflinks with a book","template":"Pushing [something] with [something]","placeholders":["cufflinks","a book"]}, +{"id":"154202","label":"turning the camera left while filming camel","template":"Turning the camera left while filming [something]","placeholders":["camel"]}, +{"id":"74487","label":"holding pink box","template":"Holding [something]","placeholders":["pink box"]}, +{"id":"195805","label":"plugging the plug into the socket","template":"Plugging [something] into [something]","placeholders":["the plug","the socket"]}, +{"id":"190795","label":"turning the camera downwards while filming bottle","template":"Turning the camera downwards while filming [something]","placeholders":["bottle"]}, +{"id":"131125","label":"bending carrot until it breaks","template":"Bending [something] until it breaks","placeholders":["carrot"]}, +{"id":"220123","label":"covering card with papper","template":"Covering [something] with [something]","placeholders":["card","papper"]}, +{"id":"2047","label":"tissue box falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue box"]}, +{"id":"81132","label":"pushing an eraser so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an eraser"]}, +{"id":"32","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"1147","label":"moving mobile phone and specs closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mobile phone","specs"]}, +{"id":"215974","label":"spinning a lollipop that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lollipop"]}, +{"id":"43453","label":"pretending to poke lime","template":"Pretending to poke [something]","placeholders":["lime"]}, +{"id":"143583","label":"showing that medicine is empty","template":"Showing that [something] is empty","placeholders":["medicine"]}, +{"id":"141261","label":"tearing a plastic bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["a plastic bag"]}, +{"id":"35295","label":"plugging plug into plug socket","template":"Plugging [something] into [something]","placeholders":["plug","plug socket"]}, +{"id":"67020","label":"pretending to take spoon from table","template":"Pretending to take [something] from [somewhere]","placeholders":["spoon","table"]}, +{"id":"184107","label":"moving key chain up","template":"Moving [something] up","placeholders":["key chain"]}, +{"id":"5140","label":"taking bottle","template":"Taking [one of many similar things on the table]","placeholders":["bottle"]}, +{"id":"71847","label":"moving plate down","template":"Moving [something] down","placeholders":["plate"]}, +{"id":"133331","label":"dropping remote control onto desk","template":"Dropping [something] onto [something]","placeholders":["remote control","desk"]}, +{"id":"185267","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"172793","label":"moving headphones and seal closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["headphones","seal"]}, +{"id":"149139","label":"putting 2 toy cars onto duster","template":"Putting [number of] [something] onto [something]","placeholders":["2","toy cars","duster"]}, +{"id":"157845","label":"pouring apple juice into a glass","template":"Pouring [something] into [something]","placeholders":["apple juice","a glass"]}, +{"id":"183482","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"71433","label":"folding leaf","template":"Folding [something]","placeholders":["leaf"]}, +{"id":"198715","label":"pushing glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glass"]}, +{"id":"198475","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"18154","label":"pushing glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glass"]}, +{"id":"116658","label":"failing to put box into cup because box does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["box","cup","box"]}, +{"id":"102187","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"126211","label":"pushing fork from right to left","template":"Pushing [something] from right to left","placeholders":["fork"]}, +{"id":"29186","label":"pretending to poke bowl","template":"Pretending to poke [something]","placeholders":["bowl"]}, +{"id":"14292","label":"putting a teaspoon behind a mug","template":"Putting [something] behind [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"208472","label":"pushing something so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["something"]}, +{"id":"52696","label":"lifting notebook with spoon on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","spoon"]}, +{"id":"64006","label":"taking marker","template":"Taking [one of many similar things on the table]","placeholders":["marker"]}, +{"id":"33239","label":"squeezing can","template":"Squeezing [something]","placeholders":["can"]}, +{"id":"213104","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"37382","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"5165","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"132589","label":"pushing laptop so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["laptop"]}, +{"id":"6853","label":"turning the camera downwards while filming shampoo bottle","template":"Turning the camera downwards while filming [something]","placeholders":["shampoo bottle"]}, +{"id":"60360","label":"moving a pen and a marker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a marker"]}, +{"id":"45788","label":"pulling rubbing alcohol from behind of a soup dispenser","template":"Pulling [something] from behind of [something]","placeholders":["rubbing alcohol","a soup dispenser"]}, +{"id":"176844","label":"covering a doll with a face towel","template":"Covering [something] with [something]","placeholders":["a doll","a face towel"]}, +{"id":"207533","label":"sprinkling wheat bran onto a counter","template":"Sprinkling [something] onto [something]","placeholders":["wheat bran","a counter"]}, +{"id":"53834","label":"putting knife next to glass cup","template":"Putting [something] next to [something]","placeholders":["knife","glass cup"]}, +{"id":"98523","label":"sprinkling sugar onto plate","template":"Sprinkling [something] onto [something]","placeholders":["sugar","plate"]}, +{"id":"73330","label":"pretending to pick cellphone up","template":"Pretending to pick [something] up","placeholders":["cellphone"]}, +{"id":"534","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"89300","label":"opening oreo package","template":"Opening [something]","placeholders":["oreo package"]}, +{"id":"174121","label":"moving foot of feet","template":"Moving [part] of [something]","placeholders":["foot","feet"]}, +{"id":"81048","label":"moving earring up","template":"Moving [something] up","placeholders":["earring"]}, +{"id":"195416","label":"tilting book with bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","bottle"]}, +{"id":"169257","label":"pretending to squeeze a tennisball","template":"Pretending to squeeze [something]","placeholders":["a tennisball"]}, +{"id":"129488","label":"pulling bottle from left to right","template":"Pulling [something] from left to right","placeholders":["bottle"]}, +{"id":"9228","label":"earring falling like a rock","template":"[Something] falling like a rock","placeholders":["earring"]}, +{"id":"190364","label":"holding ruler in front of tape","template":"Holding [something] in front of [something]","placeholders":["ruler","tape"]}, +{"id":"216225","label":"dropping pillow onto floor","template":"Dropping [something] onto [something]","placeholders":["pillow","floor"]}, +{"id":"55736","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"179339","label":"taking dominoes","template":"Taking [one of many similar things on the table]","placeholders":["dominoes"]}, +{"id":"131628","label":"putting phone on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["phone"]}, +{"id":"166813","label":"throwing teddy bear against wall","template":"Throwing [something] against [something]","placeholders":["teddy bear","wall"]}, +{"id":"97447","label":"tipping phone over","template":"Tipping [something] over","placeholders":["phone"]}, +{"id":"160355","label":"tilting a notebook with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","a pen"]}, +{"id":"112080","label":"pouring canola oi into the hot pan","template":"Pouring [something] into [something]","placeholders":["canola oi","the hot pan"]}, +{"id":"98309","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"136247","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"117335","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"129901","label":"tipping a spray bottle over","template":"Tipping [something] over","placeholders":["a spray bottle"]}, +{"id":"141900","label":"dropping a textbook onto a box","template":"Dropping [something] onto [something]","placeholders":["a textbook","a box"]}, +{"id":"103377","label":"picking headphones up","template":"Picking [something] up","placeholders":["headphones"]}, +{"id":"194530","label":"pulling pen onto iphone","template":"Pulling [something] onto [something]","placeholders":["pen","iphone"]}, +{"id":"122952","label":"pretending to put candle into bag","template":"Pretending to put [something] into [something]","placeholders":["candle","bag"]}, +{"id":"141507","label":"bending paper roll so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper roll"]}, +{"id":"95874","label":"plugging a cable into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","the wall"]}, +{"id":"88820","label":"covering chapstick with a pot lid","template":"Covering [something] with [something]","placeholders":["chapstick","a pot lid"]}, +{"id":"95683","label":"covering a toy with a towel","template":"Covering [something] with [something]","placeholders":["a toy","a towel"]}, +{"id":"104527","label":"bending small magazine so that it deforms","template":"Bending [something] so that it deforms","placeholders":["small magazine"]}, +{"id":"215203","label":"covering computer with blanket","template":"Covering [something] with [something]","placeholders":["computer","blanket"]}, +{"id":"68386","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"44727","label":"poking pc so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pc"]}, +{"id":"158759","label":"pushing a mouse from left to right","template":"Pushing [something] from left to right","placeholders":["a mouse"]}, +{"id":"218282","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"72990","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"169237","label":"hitting a teddy with a spoon","template":"Hitting [something] with [something]","placeholders":["a teddy","a spoon"]}, +{"id":"83637","label":"moving a box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a box"]}, +{"id":"65311","label":"throwing tomato in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tomato"]}, +{"id":"133764","label":"covering glasses with cloth","template":"Covering [something] with [something]","placeholders":["glasses","cloth"]}, +{"id":"16687","label":"pushing a rubber duck so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a rubber duck"]}, +{"id":"106031","label":"moving tapemeasure across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["tapemeasure"]}, +{"id":"74405","label":"covering tablet with newspaper","template":"Covering [something] with [something]","placeholders":["tablet","newspaper"]}, +{"id":"197747","label":"showing balloons to the camera","template":"Showing [something] to the camera","placeholders":["balloons"]}, +{"id":"4887","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"156885","label":"tipping teacup with tea over, so tea falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["teacup","tea","tea"]}, +{"id":"141662","label":"showing red booklet to the camera","template":"Showing [something] to the camera","placeholders":["red booklet"]}, +{"id":"203074","label":"moving away from wastebin with your camera","template":"Moving away from [something] with your camera","placeholders":["wastebin"]}, +{"id":"92117","label":"pretending or trying and failing to twist paper roll","template":"Pretending or trying and failing to twist [something]","placeholders":["paper roll"]}, +{"id":"16512","label":"unfolding paper sheet","template":"Unfolding [something]","placeholders":["paper sheet"]}, +{"id":"76635","label":"holding scissors","template":"Holding [something]","placeholders":["scissors"]}, +{"id":"147022","label":"tilting keyboard with ruler on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["keyboard","ruler"]}, +{"id":"175606","label":"approaching small green ball with your camera","template":"Approaching [something] with your camera","placeholders":["small green ball"]}, +{"id":"76552","label":"hitting a ball with racket","template":"Hitting [something] with [something]","placeholders":["a ball","racket"]}, +{"id":"104280","label":"putting cup in front of outlet","template":"Putting [something] in front of [something]","placeholders":["cup","outlet"]}, +{"id":"111134","label":"covering a cream tube with a paper","template":"Covering [something] with [something]","placeholders":["a cream tube","a paper"]}, +{"id":"89658","label":"bending bed sheet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bed sheet"]}, +{"id":"767","label":"uncovering glass jar","template":"Uncovering [something]","placeholders":["glass jar"]}, +{"id":"96652","label":"tipping train car with chapstick over, so chapstick falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["train car","chapstick","chapstick"]}, +{"id":"114491","label":"pulling two ends of a sugar bag but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a sugar bag"]}, +{"id":"37841","label":"pretending to close notebook without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notebook"]}, +{"id":"220035","label":"moving cycle towards the camera","template":"Moving [something] towards the camera","placeholders":["cycle"]}, +{"id":"149505","label":"moving compass with pencil down","template":"Moving [something] down","placeholders":["compass with pencil"]}, +{"id":"49419","label":"hitting bowl with bottle","template":"Hitting [something] with [something]","placeholders":["bowl","bottle"]}, +{"id":"86126","label":"toy colliding with toy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["toy","toy"]}, +{"id":"73765","label":"dropping a ball in front of headphones","template":"Dropping [something] in front of [something]","placeholders":["a ball","headphones"]}, +{"id":"154331","label":"taking a small toy","template":"Taking [one of many similar things on the table]","placeholders":["a small toy"]}, +{"id":"9806","label":"pretending to pour water out of a bottle, but the bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a bottle","the bottle"]}, +{"id":"83760","label":"throwing shoe","template":"Throwing [something]","placeholders":["shoe"]}, +{"id":"122538","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"155213","label":"pushing glove so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glove"]}, +{"id":"174861","label":"putting yellow clay container into orange bowl","template":"Putting [something] into [something]","placeholders":["yellow clay container","orange bowl"]}, +{"id":"119272","label":"tilting book with flute on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","flute"]}, +{"id":"33834","label":"picking soda can up","template":"Picking [something] up","placeholders":["soda can"]}, +{"id":"35202","label":"stacking 2 cup","template":"Stacking [number of] [something]","placeholders":["2","cup"]}, +{"id":"30028","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"184918","label":"pretending to pick box up","template":"Pretending to pick [something] up","placeholders":["box"]}, +{"id":"70281","label":"turning the camera upwards while filming atm machine","template":"Turning the camera upwards while filming [something]","placeholders":["atm machine"]}, +{"id":"7700","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"32562","label":"stuffing pillow into pillowcase","template":"Stuffing [something] into [something]","placeholders":["pillow","pillowcase"]}, +{"id":"112003","label":"pushing towel so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towel"]}, +{"id":"22383","label":"moving the pen up","template":"Moving [something] up","placeholders":["the pen"]}, +{"id":"95173","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"45504","label":"turning the camera right while filming pick up van","template":"Turning the camera right while filming [something]","placeholders":["pick up van"]}, +{"id":"107032","label":"sprinkling water onto referigerator","template":"Sprinkling [something] onto [something]","placeholders":["water","referigerator"]}, +{"id":"124218","label":"turning the camera right while filming steps","template":"Turning the camera right while filming [something]","placeholders":["steps"]}, +{"id":"95234","label":"showing that tape measure is inside jar","template":"Showing that [something] is inside [something]","placeholders":["tape measure","jar"]}, +{"id":"102055","label":"holding a stick next to a bike","template":"Holding [something] next to [something]","placeholders":["a stick","a bike"]}, +{"id":"36341","label":"holding knife","template":"Holding [something]","placeholders":["knife"]}, +{"id":"1584","label":"pretending to take toy out of box","template":"Pretending to take [something] out of [something]","placeholders":["toy","box"]}, +{"id":"129920","label":"putting glue stick upright on the table","template":"Putting [something] upright on the table","placeholders":["glue stick"]}, +{"id":"67825","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"150802","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"53609","label":"pushing bicycle camera clamp so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bicycle camera clamp"]}, +{"id":"101585","label":"moving pen and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","spoon"]}, +{"id":"107628","label":"stacking 3 breads","template":"Stacking [number of] [something]","placeholders":["3","breads"]}, +{"id":"182550","label":"pushing highlighter pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["highlighter pen"]}, +{"id":"67266","label":"putting fork next to mug","template":"Putting [something] next to [something]","placeholders":["fork","mug"]}, +{"id":"180111","label":"pretending or trying and failing to twist remote","template":"Pretending or trying and failing to twist [something]","placeholders":["remote"]}, +{"id":"124412","label":"stacking ten twigs","template":"Stacking [number of] [something]","placeholders":["ten","twigs"]}, +{"id":"129534","label":"taking top from carmex container","template":"Taking [something] from [somewhere]","placeholders":["top","carmex container"]}, +{"id":"154312","label":"moving garlic presser towards the camera","template":"Moving [something] towards the camera","placeholders":["garlic presser"]}, +{"id":"82971","label":"holding compass next to ink bottle","template":"Holding [something] next to [something]","placeholders":["compass","ink bottle"]}, +{"id":"33329","label":"pretending to put black umbrella on a surface","template":"Pretending to put [something] on a surface","placeholders":["black umbrella"]}, +{"id":"148258","label":"taking orange","template":"Taking [one of many similar things on the table]","placeholders":["orange"]}, +{"id":"220302","label":"pulling cup from right to left","template":"Pulling [something] from right to left","placeholders":["cup"]}, +{"id":"32650","label":"showing book on top of peanut butter jar","template":"Showing [something] on top of [something]","placeholders":["book","peanut butter jar"]}, +{"id":"134700","label":"hitting glass with magnifying glass","template":"Hitting [something] with [something]","placeholders":["glass","magnifying glass"]}, +{"id":"195636","label":"plugging cable into laptop","template":"Plugging [something] into [something]","placeholders":["cable","laptop"]}, +{"id":"46158","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"166346","label":"pretending to sprinkle air onto cup","template":"Pretending to sprinkle air onto [something]","placeholders":["cup"]}, +{"id":"164606","label":"holding a tea bag over a mug","template":"Holding [something] over [something]","placeholders":["a tea bag","a mug"]}, +{"id":"9576","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"2185","label":"putting pencil on a surface","template":"Putting [something] on a surface","placeholders":["pencil"]}, +{"id":"48640","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"10979","label":"moving post-it notes down","template":"Moving [something] down","placeholders":["post-it notes"]}, +{"id":"132896","label":"dropping small empty bottle into a mug","template":"Dropping [something] into [something]","placeholders":["small empty bottle","a mug"]}, +{"id":"184596","label":"throwing a rope","template":"Throwing [something]","placeholders":["a rope"]}, +{"id":"144945","label":"putting a bottle of mustrd upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle of mustrd"]}, +{"id":"206937","label":"plugging duracell charger into outlet","template":"Plugging [something] into [something]","placeholders":["duracell charger","outlet"]}, +{"id":"13498","label":"pushing instrument so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["instrument"]}, +{"id":"59128","label":"plugging a charger into the wall","template":"Plugging [something] into [something]","placeholders":["a charger","the wall"]}, +{"id":"41668","label":"pouring drink into a glass","template":"Pouring [something] into [something]","placeholders":["drink","a glass"]}, +{"id":"74468","label":"holding quarter over paper","template":"Holding [something] over [something]","placeholders":["quarter","paper"]}, +{"id":"168937","label":"lighter being deflected from control","template":"[Something] being deflected from [something]","placeholders":["lighter","control"]}, +{"id":"91516","label":"putting cap into head","template":"Putting [something] into [something]","placeholders":["cap","head"]}, +{"id":"36379","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"26004","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"118507","label":"pushing nail varnish so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail varnish"]}, +{"id":"182859","label":"pushing a bottle with a pencil","template":"Pushing [something] with [something]","placeholders":["a bottle","a pencil"]}, +{"id":"70680","label":"throwing a pencil onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pencil"]}, +{"id":"144563","label":"showing a cup behind a container","template":"Showing [something] behind [something]","placeholders":["a cup","a container"]}, +{"id":"96350","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"160798","label":"turning the camera left while filming earphone","template":"Turning the camera left while filming [something]","placeholders":["earphone"]}, +{"id":"151740","label":"turning the camera right while filming wireless mouse","template":"Turning the camera right while filming [something]","placeholders":["wireless mouse"]}, +{"id":"144311","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"121340","label":"putting toy car into plastic bowl","template":"Putting [something] into [something]","placeholders":["toy car","plastic bowl"]}, +{"id":"187094","label":"lifting book with calculator on it","template":"Lifting [something] with [something] on it","placeholders":["book","calculator"]}, +{"id":"163013","label":"squeezing glue bottle","template":"Squeezing [something]","placeholders":["glue bottle"]}, +{"id":"60396","label":"putting mug in front of marker","template":"Putting [something] in front of [something]","placeholders":["mug","marker"]}, +{"id":"87209","label":"opening mason jar","template":"Opening [something]","placeholders":["mason jar"]}, +{"id":"36967","label":"pretending to take shirt out of closet","template":"Pretending to take [something] out of [something]","placeholders":["shirt","closet"]}, +{"id":"95042","label":"wiping water off of a table","template":"Wiping [something] off of [something]","placeholders":["water","a table"]}, +{"id":"154158","label":"pouring milk into blue cup","template":"Pouring [something] into [something]","placeholders":["milk","blue cup"]}, +{"id":"88938","label":"putting spoon next to cup","template":"Putting [something] next to [something]","placeholders":["spoon","cup"]}, +{"id":"4949","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"154852","label":"taking a tomato out of a box of tomatoes","template":"Taking [something] out of [something]","placeholders":["a tomato","a box of tomatoes"]}, +{"id":"73083","label":"moving ball across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["ball"]}, +{"id":"44577","label":"lifting up one end of wallet without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["wallet"]}, +{"id":"28624","label":"tipping pepper shaker over","template":"Tipping [something] over","placeholders":["pepper shaker"]}, +{"id":"152912","label":"putting orange in front of cup","template":"Putting [something] in front of [something]","placeholders":["orange","cup"]}, +{"id":"60407","label":"holding packing tape","template":"Holding [something]","placeholders":["packing tape"]}, +{"id":"197287","label":"lifting a surface with ring on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["ring"]}, +{"id":"111338","label":"pulling two ends of a rubberband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubberband"]}, +{"id":"115409","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"116864","label":"holding pumpkin cookie","template":"Holding [something]","placeholders":["pumpkin cookie"]}, +{"id":"75999","label":"wafer colliding with wafer and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["wafer","wafer"]}, +{"id":"63526","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"45227","label":"turning the camera right while filming jackfruits","template":"Turning the camera right while filming [something]","placeholders":["jackfruits"]}, +{"id":"96222","label":"squeezing play-doh","template":"Squeezing [something]","placeholders":["play-doh"]}, +{"id":"66432","label":"wiping marker off of a white board","template":"Wiping [something] off of [something]","placeholders":["marker","a white board"]}, +{"id":"123292","label":"pretending to be tearing remote","template":"Pretending to be tearing [something that is not tearable]","placeholders":["remote"]}, +{"id":"148454","label":"pretending to put a book on a surface","template":"Pretending to put [something] on a surface","placeholders":["a book"]}, +{"id":"77538","label":"poking tape so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tape"]}, +{"id":"104293","label":"moving a lip balm and a laser toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a lip balm","a laser toy"]}, +{"id":"177798","label":"holding chapstick behind candle","template":"Holding [something] behind [something]","placeholders":["chapstick","candle"]}, +{"id":"217782","label":"lifting clip box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["clip box"]}, +{"id":"179385","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"6774","label":"taking mouse from table","template":"Taking [something] from [somewhere]","placeholders":["mouse","table"]}, +{"id":"173425","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"41732","label":"dropping a pillow onto a bed","template":"Dropping [something] onto [something]","placeholders":["a pillow","a bed"]}, +{"id":"9729","label":"showing tape behind book","template":"Showing [something] behind [something]","placeholders":["tape","book"]}, +{"id":"173242","label":"stacking 4 coins","template":"Stacking [number of] [something]","placeholders":["4","coins"]}, +{"id":"43549","label":"moving button of light switch","template":"Moving [part] of [something]","placeholders":["button","light switch"]}, +{"id":"167907","label":"taking a pen from a glass","template":"Taking [something] from [somewhere]","placeholders":["a pen","a glass"]}, +{"id":"91216","label":"dropping a toothpick behind a belt","template":"Dropping [something] behind [something]","placeholders":["a toothpick","a belt"]}, +{"id":"211630","label":"turning the camera upwards while filming box","template":"Turning the camera upwards while filming [something]","placeholders":["box"]}, +{"id":"53007","label":"poking a pillow so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pillow"]}, +{"id":"46188","label":"pretending to put tablet on a surface","template":"Pretending to put [something] on a surface","placeholders":["tablet"]}, +{"id":"133798","label":"putting a box in front of a lip balm","template":"Putting [something] in front of [something]","placeholders":["a box","a lip balm"]}, +{"id":"192470","label":"moving glue stick and eraser away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glue stick","eraser"]}, +{"id":"92474","label":"lifting up one end of duster, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["duster"]}, +{"id":"203018","label":"putting book underneath book","template":"Putting [something] underneath [something]","placeholders":["book","book"]}, +{"id":"18785","label":"piling cell phones up","template":"Piling [something] up","placeholders":["cell phones"]}, +{"id":"207766","label":"moving bottle closer to pencil holders","template":"Moving [something] closer to [something]","placeholders":["bottle","pencil holders"]}, +{"id":"209129","label":"hitting statue with pen","template":"Hitting [something] with [something]","placeholders":["statue","pen"]}, +{"id":"169125","label":"poking a pen so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a pen"]}, +{"id":"142604","label":"failing to put basting brush into mini jar because basting brush does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["basting brush","mini jar","basting brush"]}, +{"id":"12358","label":"pretending to be tearing napkin","template":"Pretending to be tearing [something that is not tearable]","placeholders":["napkin"]}, +{"id":"151527","label":"lifting up one end of a remote without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a remote"]}, +{"id":"180046","label":"closing hand bag","template":"Closing [something]","placeholders":["hand bag"]}, +{"id":"152375","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"191558","label":"pulling vasmol bottle from left to right","template":"Pulling [something] from left to right","placeholders":["vasmol bottle"]}, +{"id":"36222","label":"holding keyboard behind backpack","template":"Holding [something] behind [something]","placeholders":["keyboard","backpack"]}, +{"id":"12621","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"130007","label":"covering paperclip with notepad","template":"Covering [something] with [something]","placeholders":["paperclip","notepad"]}, +{"id":"44978","label":"spinning lipbalm so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lipbalm"]}, +{"id":"51884","label":"holding glove in front of plate","template":"Holding [something] in front of [something]","placeholders":["glove","plate"]}, +{"id":"177810","label":"pushing face from right to left","template":"Pushing [something] from right to left","placeholders":["face"]}, +{"id":"68922","label":"moving fuel can away from the camera","template":"Moving [something] away from the camera","placeholders":["fuel can"]}, +{"id":"169513","label":"moving box and soap away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","soap"]}, +{"id":"163246","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"76274","label":"dropping cup onto cup","template":"Dropping [something] onto [something]","placeholders":["cup","cup"]}, +{"id":"71565","label":"pretending to pick purple plastic spider up","template":"Pretending to pick [something] up","placeholders":["purple plastic spider"]}, +{"id":"8551","label":"dropping a bottletop into a box","template":"Dropping [something] into [something]","placeholders":["a bottletop","a box"]}, +{"id":"153414","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"132100","label":"lifting marker up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["marker"]}, +{"id":"184818","label":"plugging a cable into a laptop power adapter","template":"Plugging [something] into [something]","placeholders":["a cable","a laptop power adapter"]}, +{"id":"165192","label":"moving head charger and head charger closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["head charger","head charger"]}, +{"id":"98584","label":"dropping sandals next to chair","template":"Dropping [something] next to [something]","placeholders":["sandals","chair"]}, +{"id":"31892","label":"lifting up one end of box without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["box"]}, +{"id":"208470","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"159635","label":"uncovering mobile phone","template":"Uncovering [something]","placeholders":["mobile phone"]}, +{"id":"214517","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"5335","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213520","label":"tilting note book with rubix cube on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["note book","rubix cube"]}, +{"id":"35659","label":"putting a box of tissues on the edge of a table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a box of tissues","a table"]}, +{"id":"89540","label":"pretending to put pebble next to glass","template":"Pretending to put [something] next to [something]","placeholders":["pebble","glass"]}, +{"id":"172748","label":"pulling two ends of a bracelet so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a bracelet"]}, +{"id":"184196","label":"putting mug in front of ruler","template":"Putting [something] in front of [something]","placeholders":["mug","ruler"]}, +{"id":"74086","label":"pushing a coin with a pen","template":"Pushing [something] with [something]","placeholders":["a coin","a pen"]}, +{"id":"8842","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"188369","label":"poking my dog so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["my dog"]}, +{"id":"174621","label":"pushing hat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hat"]}, +{"id":"145850","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"148958","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"2863","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"100149","label":"dropping a bottle into a trash can","template":"Dropping [something] into [something]","placeholders":["a bottle","a trash can"]}, +{"id":"63857","label":"putting a pellet to other pellets","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pellet to other pellets"]}, +{"id":"110553","label":"wiping dust off of table","template":"Wiping [something] off of [something]","placeholders":["dust","table"]}, +{"id":"161834","label":"poking poking plastic spray once so that it falls so that it falls over","template":"Poking [something] so that it falls over","placeholders":["poking plastic spray once so that it falls"]}, +{"id":"18944","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"74394","label":"approaching notebook with your camera","template":"Approaching [something] with your camera","placeholders":["notebook"]}, +{"id":"60261","label":"letting a coconut roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a coconut"]}, +{"id":"42793","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"102660","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"107944","label":"a water can colliding with another water can and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a water can","another water can"]}, +{"id":"127342","label":"coin of inr 2 colliding with coin of inr 1 and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["coin of inr 2","coin of inr 1"]}, +{"id":"45070","label":"turning the cup upside down","template":"Turning [something] upside down","placeholders":["the cup"]}, +{"id":"27055","label":"lifting wooden stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wooden stick"]}, +{"id":"218395","label":"covering shaker with napkin","template":"Covering [something] with [something]","placeholders":["shaker","napkin"]}, +{"id":"92214","label":"pretending to be tearing a phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a phone"]}, +{"id":"201710","label":"putting mascara bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["mascara bottle"]}, +{"id":"53020","label":"pulling a hat out of decorative shell","template":"Pulling [something] out of [something]","placeholders":["a hat","decorative shell"]}, +{"id":"168634","label":"moving bottle and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","bottle"]}, +{"id":"149646","label":"stuffing a game into an envelope","template":"Stuffing [something] into [something]","placeholders":["a game","an envelope"]}, +{"id":"99451","label":"throwing empty sachets in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["empty sachets"]}, +{"id":"169117","label":"turning the camera downwards while filming cup","template":"Turning the camera downwards while filming [something]","placeholders":["cup"]}, +{"id":"113108","label":"pretending to close perfume without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["perfume"]}, +{"id":"41412","label":"showing shoe polish brush to the camera","template":"Showing [something] to the camera","placeholders":["shoe polish brush"]}, +{"id":"187318","label":"putting 2 cans of compressed fuel onto a book","template":"Putting [number of] [something] onto [something]","placeholders":["2","cans of compressed fuel","a book"]}, +{"id":"35757","label":"pretending to open jar with honey without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar with honey"]}, +{"id":"3257","label":"throwing toy wheel in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["toy wheel"]}, +{"id":"35365","label":"opening trash can","template":"Opening [something]","placeholders":["trash can"]}, +{"id":"40312","label":"putting record book","template":"Putting [something similar to other things that are already on the table]","placeholders":["record book"]}, +{"id":"114541","label":"pushing cleaning product so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cleaning product"]}, +{"id":"139818","label":"putting wallet underneath a book","template":"Putting [something] underneath [something]","placeholders":["wallet","a book"]}, +{"id":"152719","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"141737","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"71873","label":"taking sandwich out of lunchbox","template":"Taking [something] out of [something]","placeholders":["sandwich","lunchbox"]}, +{"id":"181318","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"198362","label":"plugging cord into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","outlet"]}, +{"id":"97601","label":"moving eraser and usb cable closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eraser","usb cable"]}, +{"id":"92059","label":"pushing laptop so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["laptop"]}, +{"id":"102700","label":"scooping sand up with a toy","template":"Scooping [something] up with [something]","placeholders":["sand","a toy"]}, +{"id":"17650","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"169027","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"134067","label":"pretending to put a pencil into a cup","template":"Pretending to put [something] into [something]","placeholders":["a pencil","a cup"]}, +{"id":"111964","label":"spilling water next to glasses","template":"Spilling [something] next to [something]","placeholders":["water","glasses"]}, +{"id":"39292","label":"failing to put a box into a glass because the box does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a box","a glass","the box"]}, +{"id":"4768","label":"plugging a cable into a computer","template":"Plugging [something] into [something]","placeholders":["a cable","a computer"]}, +{"id":"163214","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"130060","label":"turning the camera right while filming white book marker","template":"Turning the camera right while filming [something]","placeholders":["white book marker"]}, +{"id":"128518","label":"putting a mug upright on the table","template":"Putting [something] upright on the table","placeholders":["a mug"]}, +{"id":"93739","label":"pretending to take a remote control from counter","template":"Pretending to take [something] from [somewhere]","placeholders":["a remote control","counter"]}, +{"id":"47791","label":"scooping sugar up with measuring cup","template":"Scooping [something] up with [something]","placeholders":["sugar","measuring cup"]}, +{"id":"211385","label":"seashell falling like a rock","template":"[Something] falling like a rock","placeholders":["seashell"]}, +{"id":"108836","label":"dropping die into cup","template":"Dropping [something] into [something]","placeholders":["die","cup"]}, +{"id":"182282","label":"moving banana and plate closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["banana","plate"]}, +{"id":"92266","label":"pretending to pick lemon up","template":"Pretending to pick [something] up","placeholders":["lemon"]}, +{"id":"23954","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"205638","label":"pretending to throw an apple","template":"Pretending to throw [something]","placeholders":["an apple"]}, +{"id":"174675","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"27820","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"130207","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"23102","label":"plugging charger into plug hole but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","plug hole"]}, +{"id":"188898","label":"putting a glass behind a cup","template":"Putting [something] behind [something]","placeholders":["a glass","a cup"]}, +{"id":"203547","label":"closing a drawer","template":"Closing [something]","placeholders":["a drawer"]}, +{"id":"125653","label":"moving glass and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","bottle"]}, +{"id":"58070","label":"spinning empty bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["empty bottle"]}, +{"id":"64105","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"153990","label":"hitting a child toy with a hammer","template":"Hitting [something] with [something]","placeholders":["a child toy","a hammer"]}, +{"id":"104040","label":"holding a paint brush in front of a doll","template":"Holding [something] in front of [something]","placeholders":["a paint brush","a doll"]}, +{"id":"75154","label":"pushing mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mug"]}, +{"id":"94202","label":"holding something","template":"Holding [something]","placeholders":["something"]}, +{"id":"208577","label":"closing umbrella","template":"Closing [something]","placeholders":["umbrella"]}, +{"id":"218730","label":"dropping shirt behind videotapes","template":"Dropping [something] behind [something]","placeholders":["shirt","videotapes"]}, +{"id":"84638","label":"spinning ring that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ring"]}, +{"id":"132415","label":"pretending to pick a smartphone up","template":"Pretending to pick [something] up","placeholders":["a smartphone"]}, +{"id":"28863","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"62321","label":"twisting (wringing) dish cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["dish cloth"]}, +{"id":"213167","label":"turning the camera upwards while filming hat","template":"Turning the camera upwards while filming [something]","placeholders":["hat"]}, +{"id":"208891","label":"taking hair pins on the table","template":"Taking [one of many similar things on the table]","placeholders":["hair pins on the table"]}, +{"id":"25435","label":"lifting tablet with paper on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","paper"]}, +{"id":"10309","label":"moving clip box up","template":"Moving [something] up","placeholders":["clip box"]}, +{"id":"18068","label":"opening a can","template":"Opening [something]","placeholders":["a can"]}, +{"id":"214419","label":"bangle being deflected from a book","template":"[Something] being deflected from [something]","placeholders":["bangle","a book"]}, +{"id":"127427","label":"dropping yellow pen next to blue pen","template":"Dropping [something] next to [something]","placeholders":["yellow pen","blue pen"]}, +{"id":"123212","label":"opening thermos","template":"Opening [something]","placeholders":["thermos"]}, +{"id":"76637","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"65067","label":"closing closing plastic spray","template":"Closing [something]","placeholders":["closing plastic spray"]}, +{"id":"73278","label":"pushing button onto printer","template":"Pushing [something] onto [something]","placeholders":["button","printer"]}, +{"id":"11713","label":"pushing plate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plate"]}, +{"id":"21655","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"164127","label":"dropping a matchbox in front of a bottletop","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a bottletop"]}, +{"id":"205040","label":"pulling a matchbox from behind of a book","template":"Pulling [something] from behind of [something]","placeholders":["a matchbox","a book"]}, +{"id":"84352","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"210950","label":"stacking four cookies","template":"Stacking [number of] [something]","placeholders":["four","cookies"]}, +{"id":"200906","label":"pretending to put fork on a surface","template":"Pretending to put [something] on a surface","placeholders":["fork"]}, +{"id":"197965","label":"moving soft drink can away from the camera","template":"Moving [something] away from the camera","placeholders":["soft drink can"]}, +{"id":"210709","label":"pretending to open a drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a drawer"]}, +{"id":"72806","label":"putting duster and blue colour spectacle box on the table","template":"Putting [something] and [something] on the table","placeholders":["duster","blue colour spectacle box"]}, +{"id":"67692","label":"putting magnet on a surface","template":"Putting [something] on a surface","placeholders":["magnet"]}, +{"id":"164131","label":"pushing spanner from right to left","template":"Pushing [something] from right to left","placeholders":["spanner"]}, +{"id":"13867","label":"attaching a battery to headphones","template":"Attaching [something] to [something]","placeholders":["a battery","headphones"]}, +{"id":"11086","label":"dropping something behind something","template":"Dropping [something] behind [something]","placeholders":["something","something"]}, +{"id":"128492","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"65849","label":"covering pen with cloth","template":"Covering [something] with [something]","placeholders":["pen","cloth"]}, +{"id":"4441","label":"stuffing cookie into box","template":"Stuffing [something] into [something]","placeholders":["cookie","box"]}, +{"id":"42005","label":"putting bowel","template":"Putting [something similar to other things that are already on the table]","placeholders":["bowel"]}, +{"id":"106051","label":"lifting cup with tissue on it","template":"Lifting [something] with [something] on it","placeholders":["cup","tissue"]}, +{"id":"165799","label":"pushing coaster from right to left","template":"Pushing [something] from right to left","placeholders":["coaster"]}, +{"id":"35662","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"216679","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"52158","label":"throwing pink ball against black chair","template":"Throwing [something] against [something]","placeholders":["pink ball","black chair"]}, +{"id":"47837","label":"opening a safe","template":"Opening [something]","placeholders":["a safe"]}, +{"id":"220224","label":"trying but failing to attach battery cover to remote because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["battery cover","remote"]}, +{"id":"3208","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"209765","label":"twisting lamp","template":"Twisting [something]","placeholders":["lamp"]}, +{"id":"140826","label":"pulling book out of plastic bag","template":"Pulling [something] out of [something]","placeholders":["book","plastic bag"]}, +{"id":"201101","label":"putting card into box","template":"Putting [something] into [something]","placeholders":["card","box"]}, +{"id":"217325","label":"covering tool with cloth","template":"Covering [something] with [something]","placeholders":["tool","cloth"]}, +{"id":"184358","label":"throwing a bottle against a cupboard","template":"Throwing [something] against [something]","placeholders":["a bottle","a cupboard"]}, +{"id":"110477","label":"putting knife into dish","template":"Putting [something] into [something]","placeholders":["knife","dish"]}, +{"id":"194797","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"120311","label":"dropping water in front of bottle","template":"Dropping [something] in front of [something]","placeholders":["water","bottle"]}, +{"id":"10013","label":"holding plastic ring","template":"Holding [something]","placeholders":["plastic ring"]}, +{"id":"159327","label":"holding notebook next to closet door","template":"Holding [something] next to [something]","placeholders":["notebook","closet door"]}, +{"id":"105867","label":"moving rock away from lighter","template":"Moving [something] away from [something]","placeholders":["rock","lighter"]}, +{"id":"9496","label":"removing wood box, revealing mobile behind","template":"Removing [something], revealing [something] behind","placeholders":["wood box","mobile"]}, +{"id":"210080","label":"showing that stapler is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["stapler","spectacle box"]}, +{"id":"172770","label":"holding toy car","template":"Holding [something]","placeholders":["toy car"]}, +{"id":"81269","label":"wiping tea off of counter","template":"Wiping [something] off of [something]","placeholders":["tea","counter"]}, +{"id":"134125","label":"poking a stuffed animal so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a stuffed animal"]}, +{"id":"27154","label":"putting a can upright on the table","template":"Putting [something] upright on the table","placeholders":["a can"]}, +{"id":"125063","label":"spinning toothpaste that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothpaste"]}, +{"id":"83649","label":"turning the camera upwards while filming me","template":"Turning the camera upwards while filming [something]","placeholders":["me"]}, +{"id":"114106","label":"putting a bag in front of a spec","template":"Putting [something] in front of [something]","placeholders":["a bag","a spec"]}, +{"id":"175430","label":"moving branch across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["branch"]}, +{"id":"150472","label":"attaching sticker to table","template":"Attaching [something] to [something]","placeholders":["sticker","table"]}, +{"id":"72679","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"34882","label":"uncovering a robot","template":"Uncovering [something]","placeholders":["a robot"]}, +{"id":"186671","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"157137","label":"moving soft drink can towards the camera","template":"Moving [something] towards the camera","placeholders":["soft drink can"]}, +{"id":"122632","label":"pretending to open a pencil case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a pencil case"]}, +{"id":"62688","label":"pretending to put glass next to glass","template":"Pretending to put [something] next to [something]","placeholders":["glass","glass"]}, +{"id":"52843","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"127977","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"135061","label":"pushing black sharpner with glue stick","template":"Pushing [something] with [something]","placeholders":["black sharpner","glue stick"]}, +{"id":"34162","label":"lifting diary with punching machine on it","template":"Lifting [something] with [something] on it","placeholders":["diary","punching machine"]}, +{"id":"123678","label":"pulling tape onto box","template":"Pulling [something] onto [something]","placeholders":["tape","box"]}, +{"id":"18619","label":"letting pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil"]}, +{"id":"174027","label":"approaching light with your camera","template":"Approaching [something] with your camera","placeholders":["light"]}, +{"id":"125947","label":"poking a hole into chocolate","template":"Poking a hole into [some substance]","placeholders":["chocolate"]}, +{"id":"80707","label":"tilting a cutting board with a dish towel on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cutting board","a dish towel"]}, +{"id":"89725","label":"showing that green cup is empty","template":"Showing that [something] is empty","placeholders":["green cup"]}, +{"id":"111509","label":"taking fork out of drawer","template":"Taking [something] out of [something]","placeholders":["fork","drawer"]}, +{"id":"135568","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"170507","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"199789","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"220360","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"219838","label":"burying stone in sand","template":"Burying [something] in [something]","placeholders":["stone","sand"]}, +{"id":"82723","label":"stacking 3 coins","template":"Stacking [number of] [something]","placeholders":["3","coins"]}, +{"id":"168986","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"126836","label":"holding pen behind bottle","template":"Holding [something] behind [something]","placeholders":["pen","bottle"]}, +{"id":"84086","label":"throwing a tennis ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["a tennis ball"]}, +{"id":"54222","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"103402","label":"pushing the air off of the air","template":"Pushing [something] off of [something]","placeholders":["the air","the air"]}, +{"id":"203567","label":"pretending to poke a bottle of cologne","template":"Pretending to poke [something]","placeholders":["a bottle of cologne"]}, +{"id":"206745","label":"putting a spoon onto a container so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a spoon","a container"]}, +{"id":"204660","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"205381","label":"moving cloth up","template":"Moving [something] up","placeholders":["cloth"]}, +{"id":"29045","label":"pretending to put a box on a surface","template":"Pretending to put [something] on a surface","placeholders":["a box"]}, +{"id":"79045","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"181241","label":"dropping ring next to bracelet","template":"Dropping [something] next to [something]","placeholders":["ring","bracelet"]}, +{"id":"156280","label":"folding a wash cloth","template":"Folding [something]","placeholders":["a wash cloth"]}, +{"id":"164703","label":"sheep falling like a rock","template":"[Something] falling like a rock","placeholders":["sheep"]}, +{"id":"136926","label":"letting a marker roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a marker"]}, +{"id":"143988","label":"pushing mp3 player off of cookie box","template":"Pushing [something] off of [something]","placeholders":["mp3 player","cookie box"]}, +{"id":"35522","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"134490","label":"closing fridge door","template":"Closing [something]","placeholders":["fridge door"]}, +{"id":"105525","label":"putting glass next to bowl","template":"Putting [something] next to [something]","placeholders":["glass","bowl"]}, +{"id":"99753","label":"holding a slipper in front of a vacuum cleaner","template":"Holding [something] in front of [something]","placeholders":["a slipper","a vacuum cleaner"]}, +{"id":"46581","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"105972","label":"tearing pamphlet into two pieces","template":"Tearing [something] into two pieces","placeholders":["pamphlet"]}, +{"id":"183491","label":"putting a bear behind a ball","template":"Putting [something] behind [something]","placeholders":["a bear","a ball"]}, +{"id":"74098","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"210140","label":"trying but failing to attach credit card to black box because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["credit card","black box"]}, +{"id":"70842","label":"pillow colliding with pillow and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pillow","pillow"]}, +{"id":"144578","label":"spinning a ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ball"]}, +{"id":"182789","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"25290","label":"putting pusher, nail cutter and nipper on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pusher","nail cutter","nipper"]}, +{"id":"219137","label":"pushing a toy tractor so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a toy tractor"]}, +{"id":"148441","label":"moving bottle cap across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["bottle cap"]}, +{"id":"29996","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"166003","label":"turning the camera left while filming ring","template":"Turning the camera left while filming [something]","placeholders":["ring"]}, +{"id":"87210","label":"moving inhaler up","template":"Moving [something] up","placeholders":["inhaler"]}, +{"id":"99090","label":"dropping a coin next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a coin","a shoe brush"]}, +{"id":"134372","label":"folding a kitchen towel","template":"Folding [something]","placeholders":["a kitchen towel"]}, +{"id":"131278","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"100358","label":"pretending to put eggs next to coffee","template":"Pretending to put [something] next to [something]","placeholders":["eggs","coffee"]}, +{"id":"146517","label":"showing a snack maker next to the jug","template":"Showing [something] next to [something]","placeholders":["a snack maker","the jug"]}, +{"id":"138577","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"185981","label":"picking candle up","template":"Picking [something] up","placeholders":["candle"]}, +{"id":"58789","label":"moving a book down","template":"Moving [something] down","placeholders":["a book"]}, +{"id":"53611","label":"plugging a lead into a wall plug","template":"Plugging [something] into [something]","placeholders":["a lead","a wall plug"]}, +{"id":"97871","label":"sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet"]}, +{"id":"142654","label":"moving tomato and mandarin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["tomato","mandarin"]}, +{"id":"131838","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"103954","label":"turning the camera upwards while filming poster","template":"Turning the camera upwards while filming [something]","placeholders":["poster"]}, +{"id":"188950","label":"sprinkling salt onto table","template":"Sprinkling [something] onto [something]","placeholders":["salt","table"]}, +{"id":"113617","label":"lifting up one end of a book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a book"]}, +{"id":"6392","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"211762","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"85972","label":"taking keys out of bowl","template":"Taking [something] out of [something]","placeholders":["keys","bowl"]}, +{"id":"11780","label":"pulling two ends of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a paper"]}, +{"id":"164847","label":"putting toys next to toys","template":"Putting [something similar to other things that are already on the table]","placeholders":["toys next to toys"]}, +{"id":"152520","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"173497","label":"taking one of many knives","template":"Taking [one of many similar things on the table]","placeholders":["one of many knives"]}, +{"id":"167119","label":"pushing mouse from right to left","template":"Pushing [something] from right to left","placeholders":["mouse"]}, +{"id":"81559","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"194875","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"197706","label":"pretending to close plastic jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["plastic jar"]}, +{"id":"9655","label":"opening container of slime","template":"Opening [something]","placeholders":["container of slime"]}, +{"id":"22416","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"17836","label":"dropping cat behind cube","template":"Dropping [something] behind [something]","placeholders":["cat","cube"]}, +{"id":"10569","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"116322","label":"putting marker and debit card on the table","template":"Putting [something] and [something] on the table","placeholders":["marker","debit card"]}, +{"id":"204410","label":"covering a salt shaker with a towel","template":"Covering [something] with [something]","placeholders":["a salt shaker","a towel"]}, +{"id":"21256","label":"stuffing plastic bags into bag","template":"Stuffing [something] into [something]","placeholders":["plastic bags","bag"]}, +{"id":"148979","label":"approaching a cat with your camera","template":"Approaching [something] with your camera","placeholders":["a cat"]}, +{"id":"181003","label":"turning the camera right while filming posters","template":"Turning the camera right while filming [something]","placeholders":["posters"]}, +{"id":"192580","label":"tilting a notebook with a jar on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","a jar"]}, +{"id":"30116","label":"uncovering mouse","template":"Uncovering [something]","placeholders":["mouse"]}, +{"id":"4336","label":"squeezing an ethernet cable","template":"Squeezing [something]","placeholders":["an ethernet cable"]}, +{"id":"20957","label":"showing that cocoa powder is inside transparent box","template":"Showing that [something] is inside [something]","placeholders":["cocoa powder","transparent box"]}, +{"id":"20355","label":"trying to bend plate so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plate"]}, +{"id":"50572","label":"putting a ball next to a bottle","template":"Putting [something] next to [something]","placeholders":["a ball","a bottle"]}, +{"id":"206260","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"120655","label":"failing to put a shoebox into a trashcan because a shoebox does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a shoebox","a trashcan","a shoebox"]}, +{"id":"188511","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"77527","label":"scooping a command hook up with post it","template":"Scooping [something] up with [something]","placeholders":["a command hook","post it"]}, +{"id":"117728","label":"putting shoe onto jar so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["shoe","jar"]}, +{"id":"120585","label":"turning the camera downwards while filming traffic light","template":"Turning the camera downwards while filming [something]","placeholders":["traffic light"]}, +{"id":"116233","label":"stuffing a wipe into a bottle","template":"Stuffing [something] into [something]","placeholders":["a wipe","a bottle"]}, +{"id":"49325","label":"spinning spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning a coin"]}, +{"id":"46148","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"162441","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"149516","label":"pretending to open food container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["food container"]}, +{"id":"124065","label":"pushing a box of tissues with a clothespin","template":"Pushing [something] with [something]","placeholders":["a box of tissues","a clothespin"]}, +{"id":"78698","label":"putting plate into pile","template":"Putting [something] into [something]","placeholders":["plate","pile"]}, +{"id":"55349","label":"putting duster and spectacle box on the table","template":"Putting [something] and [something] on the table","placeholders":["duster","spectacle box"]}, +{"id":"26202","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"108921","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"41967","label":"picking a laptop charger up","template":"Picking [something] up","placeholders":["a laptop charger"]}, +{"id":"58923","label":"moving black charger adapter up","template":"Moving [something] up","placeholders":["black charger adapter"]}, +{"id":"41321","label":"hitting a stappler with scissors","template":"Hitting [something] with [something]","placeholders":["a stappler","scissors"]}, +{"id":"46364","label":"pretending to pick stuffed toy up","template":"Pretending to pick [something] up","placeholders":["stuffed toy"]}, +{"id":"176278","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"47312","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"105366","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"191829","label":"poking notebook so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["notebook"]}, +{"id":"166871","label":"holding a mouse over a printer","template":"Holding [something] over [something]","placeholders":["a mouse","a printer"]}, +{"id":"120918","label":"lifting up one end of a screw-wrench, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a screw-wrench"]}, +{"id":"49179","label":"holding charger adapter next to glass bowl","template":"Holding [something] next to [something]","placeholders":["charger adapter","glass bowl"]}, +{"id":"82488","label":"tearing tissues into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissues"]}, +{"id":"32372","label":"plugging phone into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone","charger"]}, +{"id":"154425","label":"lifting up one end of breadboard without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["breadboard"]}, +{"id":"160256","label":"pretending to be tearing a ruler","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a ruler"]}, +{"id":"48022","label":"moving away from glass tumbler with your camera","template":"Moving away from [something] with your camera","placeholders":["glass tumbler"]}, +{"id":"151796","label":"putting flashdrive into container","template":"Putting [something] into [something]","placeholders":["flashdrive","container"]}, +{"id":"206480","label":"tearing flower just a little bit","template":"Tearing [something] just a little bit","placeholders":["flower"]}, +{"id":"120767","label":"moving lighter up","template":"Moving [something] up","placeholders":["lighter"]}, +{"id":"214705","label":"poking red diary so that it falls over","template":"Poking [something] so that it falls over","placeholders":["red diary"]}, +{"id":"195189","label":"pretending to put a doll underneath a table","template":"Pretending to put [something] underneath [something]","placeholders":["a doll","a table"]}, +{"id":"194471","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"217970","label":"holding a domino chip behind wooden box","template":"Holding [something] behind [something]","placeholders":["a domino chip","wooden box"]}, +{"id":"59756","label":"garage opener being deflected from cell phone","template":"[Something] being deflected from [something]","placeholders":["garage opener","cell phone"]}, +{"id":"149031","label":"putting five gooseberry onto a container","template":"Putting [number of] [something] onto [something]","placeholders":["five","gooseberry","a container"]}, +{"id":"50584","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"125672","label":"putting binder clips behind a cup","template":"Putting [something] behind [something]","placeholders":["binder clips","a cup"]}, +{"id":"38932","label":"pulling toy from right to left","template":"Pulling [something] from right to left","placeholders":["toy"]}, +{"id":"143179","label":"dropping a spoon next to a bowl","template":"Dropping [something] next to [something]","placeholders":["a spoon","a bowl"]}, +{"id":"219206","label":"stuffing napkin into cup","template":"Stuffing [something] into [something]","placeholders":["napkin","cup"]}, +{"id":"12959","label":"pretending to pick fork up","template":"Pretending to pick [something] up","placeholders":["fork"]}, +{"id":"75809","label":"throwing puzzle piece against couch","template":"Throwing [something] against [something]","placeholders":["puzzle piece","couch"]}, +{"id":"151322","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"35446","label":"uncovering rice jar","template":"Uncovering [something]","placeholders":["rice jar"]}, +{"id":"23222","label":"squeezing a rag","template":"Squeezing [something]","placeholders":["a rag"]}, +{"id":"133037","label":"moving an eraser and a bottlecap away from each other","template":"Moving [something] and [something] away from each other","placeholders":["an eraser","a bottlecap"]}, +{"id":"159767","label":"moving banana up","template":"Moving [something] up","placeholders":["banana"]}, +{"id":"126202","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"34311","label":"pushing toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy car"]}, +{"id":"130349","label":"putting mug in front of cassette tape","template":"Putting [something] in front of [something]","placeholders":["mug","cassette tape"]}, +{"id":"109736","label":"putting a marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["a marker"]}, +{"id":"47822","label":"spinning something so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["something"]}, +{"id":"7873","label":"showing small box on top of large box","template":"Showing [something] on top of [something]","placeholders":["small box","large box"]}, +{"id":"117490","label":"pulling dvd case from left to right","template":"Pulling [something] from left to right","placeholders":["dvd case"]}, +{"id":"63032","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"49632","label":"pushing specs so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["specs"]}, +{"id":"216211","label":"dropping a backpack onto the floor","template":"Dropping [something] onto [something]","placeholders":["a backpack","the floor"]}, +{"id":"146757","label":"putting a coat in front of a coat hanger","template":"Putting [something] in front of [something]","placeholders":["a coat","a coat hanger"]}, +{"id":"141467","label":"putting 2 staplers onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","staplers","yellow note"]}, +{"id":"88101","label":"covering cup with blanket","template":"Covering [something] with [something]","placeholders":["cup","blanket"]}, +{"id":"68496","label":"uncovering a stuffed bunny","template":"Uncovering [something]","placeholders":["a stuffed bunny"]}, +{"id":"54071","label":"taking a spoon out of a cup","template":"Taking [something] out of [something]","placeholders":["a spoon","a cup"]}, +{"id":"12871","label":"package falling like a rock","template":"[Something] falling like a rock","placeholders":["package"]}, +{"id":"176994","label":"pushing pebble from right to left","template":"Pushing [something] from right to left","placeholders":["pebble"]}, +{"id":"1431","label":"closing transperent sugar jar","template":"Closing [something]","placeholders":["transperent sugar jar"]}, +{"id":"59216","label":"squeezing a trigger","template":"Squeezing [something]","placeholders":["a trigger"]}, +{"id":"87587","label":"moving scissors away from a wallet","template":"Moving [something] away from [something]","placeholders":["scissors","a wallet"]}, +{"id":"78943","label":"pretending to pick thread up","template":"Pretending to pick [something] up","placeholders":["thread"]}, +{"id":"20480","label":"stuffing plastic bag into small gift bag","template":"Stuffing [something] into [something]","placeholders":["plastic bag","small gift bag"]}, +{"id":"121922","label":"pulling red booklet from right to left","template":"Pulling [something] from right to left","placeholders":["red booklet"]}, +{"id":"42321","label":"turning the camera downwards while filming plants","template":"Turning the camera downwards while filming [something]","placeholders":["plants"]}, +{"id":"40619","label":"dropping pen onto envelope","template":"Dropping [something] onto [something]","placeholders":["pen","envelope"]}, +{"id":"95483","label":"putting something and something on the table","template":"Putting [something] and [something] on the table","placeholders":["something","something"]}, +{"id":"46676","label":"showing fan regulator to the camera","template":"Showing [something] to the camera","placeholders":["fan regulator"]}, +{"id":"94123","label":"pushing ball off of books","template":"Pushing [something] off of [something]","placeholders":["ball","books"]}, +{"id":"7992","label":"pushing figurine so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["figurine"]}, +{"id":"60652","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"214358","label":"stacking 3 boxes","template":"Stacking [number of] [something]","placeholders":["3","boxes"]}, +{"id":"1334","label":"pouring water into flower pot","template":"Pouring [something] into [something]","placeholders":["water","flower pot"]}, +{"id":"119824","label":"moving a stapler up","template":"Moving [something] up","placeholders":["a stapler"]}, +{"id":"15602","label":"poking blender blade so that it spins around","template":"Poking [something] so that it spins around","placeholders":["blender blade"]}, +{"id":"54513","label":"moving ball and bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ball","bottle"]}, +{"id":"119359","label":"plugging usb cord into computer","template":"Plugging [something] into [something]","placeholders":["usb cord","computer"]}, +{"id":"176577","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"12607","label":"holding a cd","template":"Holding [something]","placeholders":["a cd"]}, +{"id":"119723","label":"poking plant so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["plant"]}, +{"id":"103987","label":"putting usb cable next to pink book","template":"Putting [something] next to [something]","placeholders":["usb cable","pink book"]}, +{"id":"87245","label":"pushing card with card","template":"Pushing [something] with [something]","placeholders":["card","card"]}, +{"id":"96676","label":"pushing ring so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ring"]}, +{"id":"186341","label":"moving teacup away from teacup","template":"Moving [something] away from [something]","placeholders":["teacup","teacup"]}, +{"id":"144282","label":"letting basketball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["basketball"]}, +{"id":"177728","label":"pretending to be tearing cell phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cell phone"]}, +{"id":"144685","label":"pretending to sprinkle air onto bottle","template":"Pretending to sprinkle air onto [something]","placeholders":["bottle"]}, +{"id":"19501","label":"stuffing a tissue into a tissue box","template":"Stuffing [something] into [something]","placeholders":["a tissue","a tissue box"]}, +{"id":"111545","label":"lifting up one end of a razor, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a razor"]}, +{"id":"49364","label":"approaching shampoo bottle with your camera","template":"Approaching [something] with your camera","placeholders":["shampoo bottle"]}, +{"id":"45213","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64817","label":"uncovering a toy","template":"Uncovering [something]","placeholders":["a toy"]}, +{"id":"28778","label":"dropping toothbrush in front of container","template":"Dropping [something] in front of [something]","placeholders":["toothbrush","container"]}, +{"id":"155475","label":"dropping coin in front of paper","template":"Dropping [something] in front of [something]","placeholders":["coin","paper"]}, +{"id":"91","label":"attaching a guitar pick to a ukelele","template":"Attaching [something] to [something]","placeholders":["a guitar pick","a ukelele"]}, +{"id":"52801","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"90178","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"92684","label":"pretending to put knife into mug","template":"Pretending to put [something] into [something]","placeholders":["knife","mug"]}, +{"id":"68995","label":"dropping white chalk in front of duster","template":"Dropping [something] in front of [something]","placeholders":["white chalk","duster"]}, +{"id":"67471","label":"moving box away from box","template":"Moving [something] away from [something]","placeholders":["box","box"]}, +{"id":"173679","label":"poking charger so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["charger"]}, +{"id":"106456","label":"folding sideview mirror","template":"Folding [something]","placeholders":["sideview mirror"]}, +{"id":"173519","label":"letting tape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tape"]}, +{"id":"165323","label":"turning the camera upwards while filming perfume","template":"Turning the camera upwards while filming [something]","placeholders":["perfume"]}, +{"id":"173035","label":"showing small book to the camera","template":"Showing [something] to the camera","placeholders":["small book"]}, +{"id":"154842","label":"putting pen behind box","template":"Putting [something] behind [something]","placeholders":["pen","box"]}, +{"id":"59721","label":"lifting up one end of pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil"]}, +{"id":"134862","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"178709","label":"pretending to put book into bag","template":"Pretending to put [something] into [something]","placeholders":["book","bag"]}, +{"id":"80776","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"123327","label":"letting baseball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["baseball"]}, +{"id":"69320","label":"ploythene bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["ploythene bag"]}, +{"id":"107772","label":"picking perfume bottle up","template":"Picking [something] up","placeholders":["perfume bottle"]}, +{"id":"46893","label":"throwing book against bed","template":"Throwing [something] against [something]","placeholders":["book","bed"]}, +{"id":"90889","label":"moving teaspoon of a cup","template":"Moving [part] of [something]","placeholders":["teaspoon","a cup"]}, +{"id":"187218","label":"pushing a cup off of wooden ledge","template":"Pushing [something] off of [something]","placeholders":["a cup","wooden ledge"]}, +{"id":"111511","label":"trying to pour water into the glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","the glass"]}, +{"id":"74663","label":"dropping a container into a box","template":"Dropping [something] into [something]","placeholders":["a container","a box"]}, +{"id":"105292","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"179191","label":"approaching hat with your camera","template":"Approaching [something] with your camera","placeholders":["hat"]}, +{"id":"151275","label":"pushing computer keyboard so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["computer keyboard"]}, +{"id":"85888","label":"stapler falling like a rock","template":"[Something] falling like a rock","placeholders":["stapler"]}, +{"id":"92501","label":"paper sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper sheet"]}, +{"id":"180192","label":"putting water into glass","template":"Putting [something] into [something]","placeholders":["water","glass"]}, +{"id":"204438","label":"removing a glass, revealing a banana behind","template":"Removing [something], revealing [something] behind","placeholders":["a glass","a banana"]}, +{"id":"150071","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"106357","label":"moving pencil towards the camera","template":"Moving [something] towards the camera","placeholders":["pencil"]}, +{"id":"202294","label":"putting a water bottle in front of a mallet","template":"Putting [something] in front of [something]","placeholders":["a water bottle","a mallet"]}, +{"id":"143334","label":"dropping clip into cup","template":"Dropping [something] into [something]","placeholders":["clip","cup"]}, +{"id":"140884","label":"trying but failing to attach phone to pencile because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["phone","pencile"]}, +{"id":"178493","label":"showing that eraser is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["eraser","green bowl"]}, +{"id":"61506","label":"piling things on the table up","template":"Piling [something] up","placeholders":["things on the table"]}, +{"id":"82744","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"68265","label":"tilting block with sunglasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["block","sunglasses"]}, +{"id":"117856","label":"taking a bottle","template":"Taking [one of many similar things on the table]","placeholders":["a bottle"]}, +{"id":"82610","label":"letting wood stick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["wood stick"]}, +{"id":"19621","label":"throwing a pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a pen"]}, +{"id":"91361","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"160277","label":"putting pen and paper on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","paper"]}, +{"id":"55776","label":"tilting plate with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","marker"]}, +{"id":"18678","label":"tearing a post-it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a post-it note"]}, +{"id":"68661","label":"putting grape","template":"Putting [something similar to other things that are already on the table]","placeholders":["grape"]}, +{"id":"4247","label":"taking candy out of sugar case","template":"Taking [something] out of [something]","placeholders":["candy","sugar case"]}, +{"id":"193996","label":"pouring drink onto glass","template":"Pouring [something] onto [something]","placeholders":["drink","glass"]}, +{"id":"673","label":"putting deodorant upright on the table","template":"Putting [something] upright on the table","placeholders":["deodorant"]}, +{"id":"203039","label":"approaching traffic light with your camera","template":"Approaching [something] with your camera","placeholders":["traffic light"]}, +{"id":"89708","label":"poking marker so that it spins around","template":"Poking [something] so that it spins around","placeholders":["marker"]}, +{"id":"84989","label":"pretending to put mobile behind pillow","template":"Pretending to put [something] behind [something]","placeholders":["mobile","pillow"]}, +{"id":"46708","label":"pretending to take a book from a bookcase","template":"Pretending to take [something] from [somewhere]","placeholders":["a book","a bookcase"]}, +{"id":"178909","label":"showing that water is inside cup","template":"Showing that [something] is inside [something]","placeholders":["water","cup"]}, +{"id":"164212","label":"moving birdcage towards the camera","template":"Moving [something] towards the camera","placeholders":["birdcage"]}, +{"id":"172312","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"114258","label":"pulling broom from right to left","template":"Pulling [something] from right to left","placeholders":["broom"]}, +{"id":"25958","label":"twisting shirt","template":"Twisting [something]","placeholders":["shirt"]}, +{"id":"107088","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"162387","label":"taking a napkin","template":"Taking [one of many similar things on the table]","placeholders":["a napkin"]}, +{"id":"125807","label":"turning the camera upwards while filming staircase","template":"Turning the camera upwards while filming [something]","placeholders":["staircase"]}, +{"id":"101146","label":"putting kiwi, pencil and wine glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["kiwi","pencil","wine glass"]}, +{"id":"134260","label":"holding cup behind wall","template":"Holding [something] behind [something]","placeholders":["cup","wall"]}, +{"id":"20255","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"102091","label":"moving green toy car up","template":"Moving [something] up","placeholders":["green toy car"]}, +{"id":"99332","label":"throwing a dog chew bone","template":"Throwing [something]","placeholders":["a dog chew bone"]}, +{"id":"130607","label":"uncovering uncovering microphone","template":"Uncovering [something]","placeholders":["uncovering microphone"]}, +{"id":"127461","label":"spilling water onto bowl","template":"Spilling [something] onto [something]","placeholders":["water","bowl"]}, +{"id":"45899","label":"pretending to take a game piece from it's container","template":"Pretending to take [something] from [somewhere]","placeholders":["a game piece","it's container"]}, +{"id":"10535","label":"bending a pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["a pencil"]}, +{"id":"102157","label":"stuffing knife into its slot place","template":"Stuffing [something] into [something]","placeholders":["knife","its slot place"]}, +{"id":"60447","label":"showing that saucepan is empty","template":"Showing that [something] is empty","placeholders":["saucepan"]}, +{"id":"121426","label":"tipping toothpaste over","template":"Tipping [something] over","placeholders":["toothpaste"]}, +{"id":"209091","label":"sunglasses falling like a rock","template":"[Something] falling like a rock","placeholders":["sunglasses"]}, +{"id":"207888","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"13056","label":"tearing a paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper towel"]}, +{"id":"130416","label":"putting a candle onto a candelabra","template":"Putting [something] onto [something]","placeholders":["a candle","a candelabra"]}, +{"id":"62163","label":"holding teddybear","template":"Holding [something]","placeholders":["teddybear"]}, +{"id":"87753","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"104198","label":"holding a letter behind a lamp","template":"Holding [something] behind [something]","placeholders":["a letter","a lamp"]}, +{"id":"197061","label":"holding fork over plate","template":"Holding [something] over [something]","placeholders":["fork","plate"]}, +{"id":"198500","label":"turning the camera upwards while filming shampoo bottle","template":"Turning the camera upwards while filming [something]","placeholders":["shampoo bottle"]}, +{"id":"178034","label":"pouring oil onto pan","template":"Pouring [something] onto [something]","placeholders":["oil","pan"]}, +{"id":"58890","label":"showing that a biskit packge is inside of a cup","template":"Showing that [something] is inside [something]","placeholders":["a biskit packge","of a cup"]}, +{"id":"144108","label":"moving glue stick and diskette closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glue stick","diskette"]}, +{"id":"172019","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"60266","label":"plugging plug into bottle","template":"Plugging [something] into [something]","placeholders":["plug","bottle"]}, +{"id":"146709","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"204213","label":"scooping sugar up with scoop","template":"Scooping [something] up with [something]","placeholders":["sugar","scoop"]}, +{"id":"89947","label":"dropping green toy car into pouch","template":"Dropping [something] into [something]","placeholders":["green toy car","pouch"]}, +{"id":"175660","label":"pouring water onto bucket","template":"Pouring [something] onto [something]","placeholders":["water","bucket"]}, +{"id":"103604","label":"holding keys behind a plant","template":"Holding [something] behind [something]","placeholders":["keys","a plant"]}, +{"id":"168863","label":"uncovering a watch","template":"Uncovering [something]","placeholders":["a watch"]}, +{"id":"2977","label":"tipping sugar jar over","template":"Tipping [something] over","placeholders":["sugar jar"]}, +{"id":"186875","label":"pretending to put tube onto stand","template":"Pretending to put [something] onto [something]","placeholders":["tube","stand"]}, +{"id":"116114","label":"uncovering tomato","template":"Uncovering [something]","placeholders":["tomato"]}, +{"id":"121896","label":"stuffing paper into a plant holder","template":"Stuffing [something] into [something]","placeholders":["paper","a plant holder"]}, +{"id":"76127","label":"tilting bike seat form with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["bike seat form","finger"]}, +{"id":"105483","label":"moving pc mouse away from scissors","template":"Moving [something] away from [something]","placeholders":["pc mouse","scissors"]}, +{"id":"52179","label":"a phone falling like a rock","template":"[Something] falling like a rock","placeholders":["a phone"]}, +{"id":"132505","label":"taking vegetable peeler","template":"Taking [one of many similar things on the table]","placeholders":["vegetable peeler"]}, +{"id":"93196","label":"showing pen next to scissors","template":"Showing [something] next to [something]","placeholders":["pen","scissors"]}, +{"id":"48472","label":"turning the camera left while filming backyard","template":"Turning the camera left while filming [something]","placeholders":["backyard"]}, +{"id":"172041","label":"poking candle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["candle"]}, +{"id":"147410","label":"holding red spoon in front of spectacle box","template":"Holding [something] in front of [something]","placeholders":["red spoon","spectacle box"]}, +{"id":"64846","label":"turning the camera left while filming scotch tape","template":"Turning the camera left while filming [something]","placeholders":["scotch tape"]}, +{"id":"187712","label":"uncovering muffins","template":"Uncovering [something]","placeholders":["muffins"]}, +{"id":"83150","label":"picking granola bar up","template":"Picking [something] up","placeholders":["granola bar"]}, +{"id":"131318","label":"turning the camera downwards while filming a dog in a frame","template":"Turning the camera downwards while filming [something]","placeholders":["a dog in a frame"]}, +{"id":"160877","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"192064","label":"hitting cup with stick","template":"Hitting [something] with [something]","placeholders":["cup","stick"]}, +{"id":"176798","label":"moving toffee box towards the camera","template":"Moving [something] towards the camera","placeholders":["toffee box"]}, +{"id":"21605","label":"pulling two ends of npaperote so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["npaperote"]}, +{"id":"55671","label":"moving key and padlock away from each other","template":"Moving [something] and [something] away from each other","placeholders":["key","padlock"]}, +{"id":"164617","label":"moving away from knife with your camera","template":"Moving away from [something] with your camera","placeholders":["knife"]}, +{"id":"46548","label":"tilting purse with scissors on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["purse","scissors"]}, +{"id":"107051","label":"pushing pillbox onto marlboro pack","template":"Pushing [something] onto [something]","placeholders":["pillbox","marlboro pack"]}, +{"id":"195066","label":"holding jug over ipad","template":"Holding [something] over [something]","placeholders":["jug","ipad"]}, +{"id":"85965","label":"moving xbox controller and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["xbox controller","remote"]}, +{"id":"64184","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"189226","label":"pretending to be tearing a pen","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a pen"]}, +{"id":"39826","label":"turning the camera right while filming flower","template":"Turning the camera right while filming [something]","placeholders":["flower"]}, +{"id":"220130","label":"dropping a pen next to sunglasses","template":"Dropping [something] next to [something]","placeholders":["a pen","sunglasses"]}, +{"id":"97799","label":"poking a hole into a soft pillow","template":"Poking a hole into [something soft]","placeholders":["a soft pillow"]}, +{"id":"26334","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"133859","label":"moving stone down","template":"Moving [something] down","placeholders":["stone"]}, +{"id":"31441","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150729","label":"pulling pen out of drawer","template":"Pulling [something] out of [something]","placeholders":["pen","drawer"]}, +{"id":"211927","label":"poking a clear plastic cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a clear plastic cup"]}, +{"id":"110812","label":"moving a container closer to another one","template":"Moving [something] closer to [something]","placeholders":["a container","another one"]}, +{"id":"93204","label":"hitting cup with pen","template":"Hitting [something] with [something]","placeholders":["cup","pen"]}, +{"id":"116741","label":"pushing scotch tape from left to right","template":"Pushing [something] from left to right","placeholders":["scotch tape"]}, +{"id":"32937","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"117127","label":"holding a plant next to a box","template":"Holding [something] next to [something]","placeholders":["a plant","a box"]}, +{"id":"167318","label":"moving away from red spoon with your camera","template":"Moving away from [something] with your camera","placeholders":["red spoon"]}, +{"id":"73015","label":"pulling a lipstick from left to right","template":"Pulling [something] from left to right","placeholders":["a lipstick"]}, +{"id":"124987","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"205593","label":"uncovering cup","template":"Uncovering [something]","placeholders":["cup"]}, +{"id":"194818","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"130041","label":"pouring soapy water into surface","template":"Pouring [something] into [something]","placeholders":["soapy water","surface"]}, +{"id":"42299","label":"closing letter box","template":"Closing [something]","placeholders":["letter box"]}, +{"id":"52972","label":"throwing a stone onto a surface","template":"Throwing [something] onto a surface","placeholders":["a stone"]}, +{"id":"99955","label":"picking blanket up","template":"Picking [something] up","placeholders":["blanket"]}, +{"id":"46838","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"109594","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"187580","label":"turning the camera left while filming closet","template":"Turning the camera left while filming [something]","placeholders":["closet"]}, +{"id":"63477","label":"showing that can is inside bin","template":"Showing that [something] is inside [something]","placeholders":["can","bin"]}, +{"id":"142433","label":"bending metal so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal"]}, +{"id":"99126","label":"pushing purple microfiber from left to right","template":"Pushing [something] from left to right","placeholders":["purple microfiber"]}, +{"id":"187644","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"124756","label":"throwing bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle"]}, +{"id":"175786","label":"uncovering a rose","template":"Uncovering [something]","placeholders":["a rose"]}, +{"id":"211377","label":"piling disks up","template":"Piling [something] up","placeholders":["disks"]}, +{"id":"9601","label":"dropping a tape next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a tape","a matchbox"]}, +{"id":"176624","label":"uncovering a chair","template":"Uncovering [something]","placeholders":["a chair"]}, +{"id":"3252","label":"moving box away from box","template":"Moving [something] away from [something]","placeholders":["box","box"]}, +{"id":"52153","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"40822","label":"taking highligher out of pencil cup","template":"Taking [something] out of [something]","placeholders":["highligher","pencil cup"]}, +{"id":"75699","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"68372","label":"turning the camera downwards while filming picture","template":"Turning the camera downwards while filming [something]","placeholders":["picture"]}, +{"id":"142768","label":"putting a jar in front of a glass","template":"Putting [something] in front of [something]","placeholders":["a jar","a glass"]}, +{"id":"66568","label":"pushing cup so it spins","template":"Pushing [something] so it spins","placeholders":["cup"]}, +{"id":"175484","label":"folding t-shirt","template":"Folding [something]","placeholders":["t-shirt"]}, +{"id":"177969","label":"putting a confetti start with other confetti stars that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a confetti start with other confetti stars that are already on the table"]}, +{"id":"153394","label":"covering a container with a blanket","template":"Covering [something] with [something]","placeholders":["a container","a blanket"]}, +{"id":"17590","label":"stacking 2 cards","template":"Stacking [number of] [something]","placeholders":["2","cards"]}, +{"id":"131210","label":"twisting doorknob","template":"Twisting [something]","placeholders":["doorknob"]}, +{"id":"210105","label":"showing mobile phone behind wooden crate","template":"Showing [something] behind [something]","placeholders":["mobile phone","wooden crate"]}, +{"id":"106551","label":"taking ball from ground","template":"Taking [something] from [somewhere]","placeholders":["ball","ground"]}, +{"id":"99642","label":"moving mug and cellphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mug","cellphone"]}, +{"id":"176434","label":"pushing book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["book"]}, +{"id":"145434","label":"pretending to be tearing samsung s5","template":"Pretending to be tearing [something that is not tearable]","placeholders":["samsung s5"]}, +{"id":"73496","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"7219","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"189748","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"135472","label":"pushing tupperware onto towel","template":"Pushing [something] onto [something]","placeholders":["tupperware","towel"]}, +{"id":"61413","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"3962","label":"showing pumpkin cookie to the camera","template":"Showing [something] to the camera","placeholders":["pumpkin cookie"]}, +{"id":"201362","label":"moving a phone away from the camera","template":"Moving [something] away from the camera","placeholders":["a phone"]}, +{"id":"176476","label":"tearing a sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a sheet of paper"]}, +{"id":"215098","label":"pretending to pick pencil up","template":"Pretending to pick [something] up","placeholders":["pencil"]}, +{"id":"60030","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"62848","label":"putting cup and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["cup","spoon"]}, +{"id":"72140","label":"bubbles falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bubbles"]}, +{"id":"37332","label":"throwing a box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a box"]}, +{"id":"207908","label":"holding remote in front of dog","template":"Holding [something] in front of [something]","placeholders":["remote","dog"]}, +{"id":"5553","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"150400","label":"lifting a surface with ruler on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ruler"]}, +{"id":"38391","label":"putting lipstisck on a surface","template":"Putting [something] on a surface","placeholders":["lipstisck"]}, +{"id":"23620","label":"poking note book so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["note book"]}, +{"id":"127428","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"35454","label":"hitting mouse with remote","template":"Hitting [something] with [something]","placeholders":["mouse","remote"]}, +{"id":"19600","label":"throwing charger in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["charger"]}, +{"id":"168654","label":"putting powder tin, watch and nail polish on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["powder tin","watch","nail polish"]}, +{"id":"216492","label":"removing bowl, revealing egg behind","template":"Removing [something], revealing [something] behind","placeholders":["bowl","egg"]}, +{"id":"23217","label":"putting banana next to apples","template":"Putting [something] next to [something]","placeholders":["banana","apples"]}, +{"id":"210445","label":"holding a book next to table","template":"Holding [something] next to [something]","placeholders":["a book","table"]}, +{"id":"132499","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"176808","label":"showing cow to the camera","template":"Showing [something] to the camera","placeholders":["cow"]}, +{"id":"167837","label":"lifting the lamp handle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["the lamp handle"]}, +{"id":"101071","label":"pushing can from left to right","template":"Pushing [something] from left to right","placeholders":["can"]}, +{"id":"66900","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"188165","label":"holding tablet in front of laptop","template":"Holding [something] in front of [something]","placeholders":["tablet","laptop"]}, +{"id":"7412","label":"moving candle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["candle"]}, +{"id":"174080","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"104072","label":"wiping sauce off of counter","template":"Wiping [something] off of [something]","placeholders":["sauce","counter"]}, +{"id":"102036","label":"plugging power plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power plug","socket"]}, +{"id":"49961","label":"tilting a coffee cup with a pair of scissors on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a coffee cup","a pair of scissors"]}, +{"id":"81806","label":"closing a bottle cap","template":"Closing [something]","placeholders":["a bottle cap"]}, +{"id":"218089","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"190657","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"100473","label":"lifting milk with knife on it","template":"Lifting [something] with [something] on it","placeholders":["milk","knife"]}, +{"id":"3763","label":"covering a mug with a towel","template":"Covering [something] with [something]","placeholders":["a mug","a towel"]}, +{"id":"91885","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"1167","label":"pretending to be tearing sock","template":"Pretending to be tearing [something that is not tearable]","placeholders":["sock"]}, +{"id":"145973","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"49312","label":"pretending to pick medicine up","template":"Pretending to pick [something] up","placeholders":["medicine"]}, +{"id":"38091","label":"hitting wall with stone","template":"Hitting [something] with [something]","placeholders":["wall","stone"]}, +{"id":"185743","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"216764","label":"top falling like a rock","template":"[Something] falling like a rock","placeholders":["top"]}, +{"id":"84882","label":"pretending to be tearing a plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plate"]}, +{"id":"124537","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"51867","label":"stuffing wafer into laptop","template":"Stuffing [something] into [something]","placeholders":["wafer","laptop"]}, +{"id":"18181","label":"spilling medicinal powder behind a toothbrush holder","template":"Spilling [something] behind [something]","placeholders":["medicinal powder","a toothbrush holder"]}, +{"id":"135900","label":"putting a can of instant coffee upright on the table","template":"Putting [something] upright on the table","placeholders":["a can of instant coffee"]}, +{"id":"219564","label":"dropping a card in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a card","a cup"]}, +{"id":"125744","label":"letting a cylinder roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a cylinder"]}, +{"id":"190232","label":"pushing wooden small home so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wooden small home"]}, +{"id":"177735","label":"pushing glasses with bottle","template":"Pushing [something] with [something]","placeholders":["glasses","bottle"]}, +{"id":"164263","label":"turning the camera right while filming curtains","template":"Turning the camera right while filming [something]","placeholders":["curtains"]}, +{"id":"84019","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"191587","label":"putting candle next to candles","template":"Putting [something] next to [something]","placeholders":["candle","candles"]}, +{"id":"123451","label":"showing a potted plant behind a mug","template":"Showing [something] behind [something]","placeholders":["a potted plant","a mug"]}, +{"id":"187793","label":"stacking 3 candies","template":"Stacking [number of] [something]","placeholders":["3","candies"]}, +{"id":"33444","label":"covering keys with cloth","template":"Covering [something] with [something]","placeholders":["keys","cloth"]}, +{"id":"33309","label":"holding a coffee cup","template":"Holding [something]","placeholders":["a coffee cup"]}, +{"id":"122313","label":"pretending to spread air onto a table","template":"Pretending to spread air onto [something]","placeholders":["a table"]}, +{"id":"38853","label":"opening a pen","template":"Opening [something]","placeholders":["a pen"]}, +{"id":"176125","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"32348","label":"putting a mug that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a mug"]}, +{"id":"205081","label":"putting sunglasses onto the table next to other glasses","template":"Putting [something similar to other things that are already on the table]","placeholders":["sunglasses onto the table next to other glasses"]}, +{"id":"3702","label":"pretending to pick an electric toothbrush without its head up","template":"Pretending to pick [something] up","placeholders":["an electric toothbrush without its head"]}, +{"id":"145634","label":"dropping a peg behind a plate","template":"Dropping [something] behind [something]","placeholders":["a peg","a plate"]}, +{"id":"159969","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"159205","label":"holding tissue in front of box of tissues","template":"Holding [something] in front of [something]","placeholders":["tissue","box of tissues"]}, +{"id":"5990","label":"holding gatorade next to computer","template":"Holding [something] next to [something]","placeholders":["gatorade","computer"]}, +{"id":"15818","label":"pushing paper weight from right to left","template":"Pushing [something] from right to left","placeholders":["paper weight"]}, +{"id":"4328","label":"moving away from headphones with your camera","template":"Moving away from [something] with your camera","placeholders":["headphones"]}, +{"id":"118998","label":"showing rubix cube on top of duster","template":"Showing [something] on top of [something]","placeholders":["rubix cube","duster"]}, +{"id":"166565","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"205753","label":"uncovering glue stick","template":"Uncovering [something]","placeholders":["glue stick"]}, +{"id":"27396","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"741","label":"taking cd","template":"Taking [one of many similar things on the table]","placeholders":["cd"]}, +{"id":"47770","label":"flashdisk colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["flashdisk","pen"]}, +{"id":"3670","label":"pushing pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pen"]}, +{"id":"74243","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"67804","label":"holding a toothpick over a padlock","template":"Holding [something] over [something]","placeholders":["a toothpick","a padlock"]}, +{"id":"85158","label":"putting bottle on the edge of speaker so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["bottle","speaker"]}, +{"id":"137969","label":"showing that little vase is empty","template":"Showing that [something] is empty","placeholders":["little vase"]}, +{"id":"209987","label":"taking lead pencils out of pencil box","template":"Taking [something] out of [something]","placeholders":["lead pencils","pencil box"]}, +{"id":"120661","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"158708","label":"throwing fruit in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["fruit"]}, +{"id":"190411","label":"pushing a marker so it spins","template":"Pushing [something] so it spins","placeholders":["a marker"]}, +{"id":"201054","label":"hitting cup with fork","template":"Hitting [something] with [something]","placeholders":["cup","fork"]}, +{"id":"112932","label":"moving match box up","template":"Moving [something] up","placeholders":["match box"]}, +{"id":"206667","label":"moving nail clipper up","template":"Moving [something] up","placeholders":["nail clipper"]}, +{"id":"119894","label":"turning the camera right while filming bottle","template":"Turning the camera right while filming [something]","placeholders":["bottle"]}, +{"id":"155054","label":"holding charger","template":"Holding [something]","placeholders":["charger"]}, +{"id":"177197","label":"a book falling like a rock","template":"[Something] falling like a rock","placeholders":["a book"]}, +{"id":"43376","label":"moving orange colour pencil sharpner up up","template":"Moving [something] up","placeholders":["orange colour pencil sharpner up"]}, +{"id":"214952","label":"putting sunglasses into mug","template":"Putting [something] into [something]","placeholders":["sunglasses","mug"]}, +{"id":"154849","label":"lifting up one end of spectacle box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spectacle box"]}, +{"id":"120781","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"112684","label":"spilling water onto plant vase","template":"Spilling [something] onto [something]","placeholders":["water","plant vase"]}, +{"id":"23809","label":"pretending to open a laptop without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a laptop"]}, +{"id":"142040","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"127393","label":"poking cable so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cable"]}, +{"id":"215606","label":"moving a scissors across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a scissors"]}, +{"id":"26367","label":"moving away from laterite stone with your camera","template":"Moving away from [something] with your camera","placeholders":["laterite stone"]}, +{"id":"60477","label":"pulling box from right to left","template":"Pulling [something] from right to left","placeholders":["box"]}, +{"id":"36736","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"188064","label":"trying to bend stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["stick"]}, +{"id":"207317","label":"pushing toy car so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["toy car"]}, +{"id":"193297","label":"taking frame from table","template":"Taking [something] from [somewhere]","placeholders":["frame","table"]}, +{"id":"21173","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"77202","label":"pushing silver coloured pen off of drawing board","template":"Pushing [something] off of [something]","placeholders":["silver coloured pen","drawing board"]}, +{"id":"126686","label":"putting mail","template":"Putting [something similar to other things that are already on the table]","placeholders":["mail"]}, +{"id":"165841","label":"poking stuffed animal so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["stuffed animal"]}, +{"id":"24184","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"18057","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"61568","label":"pushing speaker from right to left","template":"Pushing [something] from right to left","placeholders":["speaker"]}, +{"id":"67245","label":"moving controller down","template":"Moving [something] down","placeholders":["controller"]}, +{"id":"140169","label":"dropping hair band in front of pen","template":"Dropping [something] in front of [something]","placeholders":["hair band","pen"]}, +{"id":"5946","label":"wiping water off of sink","template":"Wiping [something] off of [something]","placeholders":["water","sink"]}, +{"id":"108436","label":"picking spectacle box up","template":"Picking [something] up","placeholders":["spectacle box"]}, +{"id":"141381","label":"opening refrigerator door","template":"Opening [something]","placeholders":["refrigerator door"]}, +{"id":"35995","label":"throwing adaptor onto a surface","template":"Throwing [something] onto a surface","placeholders":["adaptor"]}, +{"id":"115383","label":"lifting up one end of clipboard, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["clipboard"]}, +{"id":"137679","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"163567","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"156902","label":"spinning small bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["small bottle"]}, +{"id":"83646","label":"tipping a dvd over","template":"Tipping [something] over","placeholders":["a dvd"]}, +{"id":"13468","label":"stuffing card into envelope","template":"Stuffing [something] into [something]","placeholders":["card","envelope"]}, +{"id":"171405","label":"putting pen into glass","template":"Putting [something] into [something]","placeholders":["pen","glass"]}, +{"id":"37455","label":"unfolding handkerchief","template":"Unfolding [something]","placeholders":["handkerchief"]}, +{"id":"214534","label":"pushing eyeglass box so it spins","template":"Pushing [something] so it spins","placeholders":["eyeglass box"]}, +{"id":"209427","label":"pretending to sprinkle air onto mug","template":"Pretending to sprinkle air onto [something]","placeholders":["mug"]}, +{"id":"153856","label":"moving coconut away from the camera","template":"Moving [something] away from the camera","placeholders":["coconut"]}, +{"id":"184753","label":"pulling bucket from left to right","template":"Pulling [something] from left to right","placeholders":["bucket"]}, +{"id":"157447","label":"touching (without moving) the surface of memorabilia","template":"Touching (without moving) [part] of [something]","placeholders":["the surface","memorabilia"]}, +{"id":"40820","label":"putting box, spoon and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","spoon","pen"]}, +{"id":"215140","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"23093","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"121181","label":"turning the camera left while filming small hand gel","template":"Turning the camera left while filming [something]","placeholders":["small hand gel"]}, +{"id":"83066","label":"taking onion out of bowl","template":"Taking [something] out of [something]","placeholders":["onion","bowl"]}, +{"id":"63338","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"1939","label":"plugging a cable into a laptop","template":"Plugging [something] into [something]","placeholders":["a cable","a laptop"]}, +{"id":"42000","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"50207","label":"lighter colliding with ruler and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["lighter","ruler"]}, +{"id":"76606","label":"tilting paper with chalk on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper","chalk"]}, +{"id":"132827","label":"letting battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["battery"]}, +{"id":"22430","label":"pushing cologne bottle so it spins","template":"Pushing [something] so it spins","placeholders":["cologne bottle"]}, +{"id":"121549","label":"dropping brush onto blanket","template":"Dropping [something] onto [something]","placeholders":["brush","blanket"]}, +{"id":"188416","label":"dropping banana in front of basket","template":"Dropping [something] in front of [something]","placeholders":["banana","basket"]}, +{"id":"219516","label":"spilling water onto water the plants","template":"Spilling [something] onto [something]","placeholders":["water","water the plants"]}, +{"id":"124191","label":"pretending or trying and failing to twist wallet","template":"Pretending or trying and failing to twist [something]","placeholders":["wallet"]}, +{"id":"181792","label":"opening black spectacle box","template":"Opening [something]","placeholders":["black spectacle box"]}, +{"id":"217963","label":"dropping lemon next to doll","template":"Dropping [something] next to [something]","placeholders":["lemon","doll"]}, +{"id":"142633","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"157203","label":"garlic falling like a rock","template":"[Something] falling like a rock","placeholders":["garlic"]}, +{"id":"191935","label":"hitting sweet with bottle","template":"Hitting [something] with [something]","placeholders":["sweet","bottle"]}, +{"id":"6102","label":"plugging usb cord into power block but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cord","power block"]}, +{"id":"130289","label":"plugging cable into headphones but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","headphones"]}, +{"id":"186395","label":"showing sweets to the camera","template":"Showing [something] to the camera","placeholders":["sweets"]}, +{"id":"107136","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"28866","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"35538","label":"pouring a fabric conditioner into a plastic container","template":"Pouring [something] into [something]","placeholders":["a fabric conditioner","a plastic container"]}, +{"id":"34876","label":"pushing bottle cap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle cap"]}, +{"id":"98934","label":"failing to put a bottle of ketchup into a glass because the bottle of ketchup does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bottle of ketchup","a glass","the bottle of ketchup"]}, +{"id":"219511","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"39479","label":"throwing bottle against bottle","template":"Throwing [something] against [something]","placeholders":["bottle","bottle"]}, +{"id":"8249","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"116464","label":"moving a knife and a spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a knife","a spoon"]}, +{"id":"57093","label":"twisting (wringing) a rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a rag"]}, +{"id":"154013","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"136201","label":"showing watch to the camera","template":"Showing [something] to the camera","placeholders":["watch"]}, +{"id":"217957","label":"plugging a power supply into a wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a power supply","a wall socket"]}, +{"id":"42603","label":"holding coupon in front of light switch","template":"Holding [something] in front of [something]","placeholders":["coupon","light switch"]}, +{"id":"147451","label":"pulling black lipstick from left to right","template":"Pulling [something] from left to right","placeholders":["black lipstick"]}, +{"id":"72296","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"155410","label":"moving hand towards the camera","template":"Moving [something] towards the camera","placeholders":["hand"]}, +{"id":"67855","label":"putting mug in front of cup","template":"Putting [something] in front of [something]","placeholders":["mug","cup"]}, +{"id":"6732","label":"dropping book next to pillow","template":"Dropping [something] next to [something]","placeholders":["book","pillow"]}, +{"id":"157604","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"64258","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"150436","label":"showing tissue box on top of table","template":"Showing [something] on top of [something]","placeholders":["tissue box","table"]}, +{"id":"213815","label":"putting board clip and eraser on the table","template":"Putting [something] and [something] on the table","placeholders":["board clip","eraser"]}, +{"id":"92575","label":"spinning basketball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["basketball"]}, +{"id":"131033","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"119498","label":"spinning a medicine cup so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a medicine cup"]}, +{"id":"199880","label":"pretending to put a box next to a glass","template":"Pretending to put [something] next to [something]","placeholders":["a box","a glass"]}, +{"id":"47364","label":"putting microscope on a surface","template":"Putting [something] on a surface","placeholders":["microscope"]}, +{"id":"26993","label":"squeezing stapler","template":"Squeezing [something]","placeholders":["stapler"]}, +{"id":"90101","label":"plugging power cable into laptop","template":"Plugging [something] into [something]","placeholders":["power cable","laptop"]}, +{"id":"104878","label":"putting a watch behind a clock","template":"Putting [something] behind [something]","placeholders":["a watch","a clock"]}, +{"id":"44540","label":"moving mobile and other mobile away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mobile","other mobile"]}, +{"id":"165210","label":"piling blankets up","template":"Piling [something] up","placeholders":["blankets"]}, +{"id":"90217","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"83053","label":"putting a pot into an oven","template":"Putting [something] into [something]","placeholders":["a pot","an oven"]}, +{"id":"141208","label":"holding scissors over pen","template":"Holding [something] over [something]","placeholders":["scissors","pen"]}, +{"id":"69652","label":"dropping a matchbox next to a coin","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a coin"]}, +{"id":"110615","label":"taking a cockroach out of a ear","template":"Taking [something] out of [something]","placeholders":["a cockroach","a ear"]}, +{"id":"147079","label":"taking notepad","template":"Taking [one of many similar things on the table]","placeholders":["notepad"]}, +{"id":"75065","label":"wiping marker off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"83907","label":"dropping a toothpick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a toothpick","a remote"]}, +{"id":"116388","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"219989","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"156661","label":"pretending to throw crayon","template":"Pretending to throw [something]","placeholders":["crayon"]}, +{"id":"67854","label":"putting a teddy bear in front of a teddy bear","template":"Putting [something] in front of [something]","placeholders":["a teddy bear","a teddy bear"]}, +{"id":"44070","label":"dropping bra in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["bra","pillow"]}, +{"id":"71979","label":"putting dia next to 3rd dia","template":"Putting [something] next to [something]","placeholders":["dia","3rd dia"]}, +{"id":"21590","label":"moving a plush ball across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a plush ball"]}, +{"id":"209939","label":"covering pen with cloth","template":"Covering [something] with [something]","placeholders":["pen","cloth"]}, +{"id":"88132","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"8771","label":"pulling white kerchief out of orange purse","template":"Pulling [something] out of [something]","placeholders":["white kerchief","orange purse"]}, +{"id":"118341","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"57985","label":"putting a mug and a cup on the table","template":"Putting [something] and [something] on the table","placeholders":["a mug","a cup"]}, +{"id":"181337","label":"stuffing cloth into pen stand","template":"Stuffing [something] into [something]","placeholders":["cloth","pen stand"]}, +{"id":"48406","label":"attaching a loop to a hook","template":"Attaching [something] to [something]","placeholders":["a loop","a hook"]}, +{"id":"47806","label":"pulling pen out of case","template":"Pulling [something] out of [something]","placeholders":["pen","case"]}, +{"id":"43276","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"186132","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"202204","label":"pretending to poke jar","template":"Pretending to poke [something]","placeholders":["jar"]}, +{"id":"24711","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"124527","label":"putting bear next to pillow","template":"Putting [something] next to [something]","placeholders":["bear","pillow"]}, +{"id":"217905","label":"rolling earplug on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["earplug"]}, +{"id":"87807","label":"holding a phone over a table","template":"Holding [something] over [something]","placeholders":["a phone","a table"]}, +{"id":"48874","label":"uncovering a doll","template":"Uncovering [something]","placeholders":["a doll"]}, +{"id":"182635","label":"holding lip balm behind paper clips","template":"Holding [something] behind [something]","placeholders":["lip balm","paper clips"]}, +{"id":"63580","label":"lifting up one end of an eraser, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["an eraser"]}, +{"id":"90789","label":"pushing remote controller from left to right","template":"Pushing [something] from left to right","placeholders":["remote controller"]}, +{"id":"147273","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"21563","label":"pouring water out of water pitcher","template":"Pouring [something] out of [something]","placeholders":["water","water pitcher"]}, +{"id":"17347","label":"throwing paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper"]}, +{"id":"166829","label":"uncovering bracelet","template":"Uncovering [something]","placeholders":["bracelet"]}, +{"id":"136820","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"180986","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"203617","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"134879","label":"putting a pen behind book","template":"Putting [something] behind [something]","placeholders":["a pen","book"]}, +{"id":"50912","label":"pretending to squeeze a powder bottle","template":"Pretending to squeeze [something]","placeholders":["a powder bottle"]}, +{"id":"5538","label":"lifting candle up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["candle"]}, +{"id":"164688","label":"turning the camera right while filming flowers","template":"Turning the camera right while filming [something]","placeholders":["flowers"]}, +{"id":"19278","label":"pushing telephone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["telephone"]}, +{"id":"103151","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"39889","label":"covering gear wheel with black pouch","template":"Covering [something] with [something]","placeholders":["gear wheel","black pouch"]}, +{"id":"46167","label":"plugging a phone charger into a wall socket","template":"Plugging [something] into [something]","placeholders":["a phone charger","a wall socket"]}, +{"id":"126710","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"137371","label":"uncovering a clothespin","template":"Uncovering [something]","placeholders":["a clothespin"]}, +{"id":"147065","label":"plugging earphones into the computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earphones","the computer"]}, +{"id":"114325","label":"showing a bag behind stool","template":"Showing [something] behind [something]","placeholders":["a bag","stool"]}, +{"id":"207999","label":"dropping coffee in front of canister","template":"Dropping [something] in front of [something]","placeholders":["coffee","canister"]}, +{"id":"41035","label":"putting screw next to carabiner","template":"Putting [something] next to [something]","placeholders":["screw","carabiner"]}, +{"id":"189002","label":"trying to bend a wooden block so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a wooden block"]}, +{"id":"145863","label":"cup being deflected from counter","template":"[Something] being deflected from [something]","placeholders":["cup","counter"]}, +{"id":"60668","label":"pushing coin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["coin"]}, +{"id":"87666","label":"stuffing a towel into a bag","template":"Stuffing [something] into [something]","placeholders":["a towel","a bag"]}, +{"id":"120377","label":"candy colliding with candy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["candy","candy"]}, +{"id":"138379","label":"pretending to squeeze something","template":"Pretending to squeeze [something]","placeholders":["something"]}, +{"id":"116899","label":"squeezing box","template":"Squeezing [something]","placeholders":["box"]}, +{"id":"39602","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"157883","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"189590","label":"holding mouse over wallet","template":"Holding [something] over [something]","placeholders":["mouse","wallet"]}, +{"id":"150621","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"29699","label":"plugging headphones into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","computer"]}, +{"id":"123229","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"12651","label":"putting a screwdriver","template":"Putting [something similar to other things that are already on the table]","placeholders":["a screwdriver"]}, +{"id":"82560","label":"taking striped pen out of sturdy glass","template":"Taking [something] out of [something]","placeholders":["striped pen","sturdy glass"]}, +{"id":"117511","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"57408","label":"moving bottle cap across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bottle cap"]}, +{"id":"33672","label":"pretending to pick a candy up","template":"Pretending to pick [something] up","placeholders":["a candy"]}, +{"id":"92697","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"92628","label":"pushing a pen from right to left","template":"Pushing [something] from right to left","placeholders":["a pen"]}, +{"id":"170558","label":"pouring water into pot of a plant","template":"Pouring [something] into [something]","placeholders":["water","pot of a plant"]}, +{"id":"211161","label":"folding shorts","template":"Folding [something]","placeholders":["shorts"]}, +{"id":"95415","label":"tipping cup with ice over, so ice falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","ice","ice"]}, +{"id":"99964","label":"holding wallet","template":"Holding [something]","placeholders":["wallet"]}, +{"id":"27602","label":"moving a ball and a glass figure closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","a glass figure"]}, +{"id":"142836","label":"turning the camera right while filming sign board","template":"Turning the camera right while filming [something]","placeholders":["sign board"]}, +{"id":"70798","label":"pretending to put money on a surface","template":"Pretending to put [something] on a surface","placeholders":["money"]}, +{"id":"161497","label":"unfolding a tissue","template":"Unfolding [something]","placeholders":["a tissue"]}, +{"id":"21809","label":"moving spoon away from the camera","template":"Moving [something] away from the camera","placeholders":["spoon"]}, +{"id":"112028","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"160002","label":"pretending to open supplement bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["supplement bottle"]}, +{"id":"185796","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"143051","label":"pulling bar soap from left to right","template":"Pulling [something] from left to right","placeholders":["bar soap"]}, +{"id":"57909","label":"pretending to squeeze toothpaste","template":"Pretending to squeeze [something]","placeholders":["toothpaste"]}, +{"id":"183747","label":"spinning a highlighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a highlighter"]}, +{"id":"115697","label":"moving the cube and the ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the cube","the ball"]}, +{"id":"130396","label":"pushing dropping mobile charger off table so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["dropping mobile charger off table"]}, +{"id":"136968","label":"lifting up one end of bottle without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["bottle"]}, +{"id":"205726","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"220678","label":"dropping packet behind chair","template":"Dropping [something] behind [something]","placeholders":["packet","chair"]}, +{"id":"73417","label":"pretending to close a door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a door"]}, +{"id":"119246","label":"lifting plastic box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plastic box"]}, +{"id":"40056","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"157499","label":"pretending to be tearing toy","template":"Pretending to be tearing [something that is not tearable]","placeholders":["toy"]}, +{"id":"40845","label":"pushing pen off of box","template":"Pushing [something] off of [something]","placeholders":["pen","box"]}, +{"id":"154023","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"200201","label":"folding pants","template":"Folding [something]","placeholders":["pants"]}, +{"id":"59762","label":"trying to pour juice into bowl, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["juice","bowl"]}, +{"id":"127006","label":"letting lime roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lime"]}, +{"id":"85151","label":"showing controller behind mouse","template":"Showing [something] behind [something]","placeholders":["controller","mouse"]}, +{"id":"107984","label":"pretending to put earphone onto keyboard","template":"Pretending to put [something] onto [something]","placeholders":["earphone","keyboard"]}, +{"id":"186712","label":"pretending to scoop coffee up with scoop","template":"Pretending to scoop [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"5299","label":"putting sunscreen on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["sunscreen","the table"]}, +{"id":"165921","label":"tipping battery over","template":"Tipping [something] over","placeholders":["battery"]}, +{"id":"6175","label":"pulling drawer out of desk","template":"Pulling [something] out of [something]","placeholders":["drawer","desk"]}, +{"id":"96788","label":"poking remote control so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["remote control"]}, +{"id":"113610","label":"pushing toilet paper so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toilet paper"]}, +{"id":"152924","label":"touching (without moving) cap of pen","template":"Touching (without moving) [part] of [something]","placeholders":["cap","pen"]}, +{"id":"100907","label":"letting marker roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["marker"]}, +{"id":"54321","label":"moving a towel across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a towel"]}, +{"id":"193788","label":"tearing a note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a note"]}, +{"id":"46550","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"174210","label":"pretending to put bottle onto table","template":"Pretending to put [something] onto [something]","placeholders":["bottle","table"]}, +{"id":"167927","label":"putting a water bottle on the edge of a book so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a water bottle","a book"]}, +{"id":"25680","label":"pushing a mouse from left to right","template":"Pushing [something] from left to right","placeholders":["a mouse"]}, +{"id":"844","label":"turning the camera downwards while filming scotch tape","template":"Turning the camera downwards while filming [something]","placeholders":["scotch tape"]}, +{"id":"188825","label":"putting card into wallet","template":"Putting [something] into [something]","placeholders":["card","wallet"]}, +{"id":"113152","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"109334","label":"pretending to pick mobile up","template":"Pretending to pick [something] up","placeholders":["mobile"]}, +{"id":"184786","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"141800","label":"tilting a stool with a roll of tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a stool","a roll of tape"]}, +{"id":"119880","label":"turning black play cards upside down","template":"Turning [something] upside down","placeholders":["black play cards"]}, +{"id":"181980","label":"dropping hair tie onto floor","template":"Dropping [something] onto [something]","placeholders":["hair tie","floor"]}, +{"id":"90646","label":"pulling bottle from right to left","template":"Pulling [something] from right to left","placeholders":["bottle"]}, +{"id":"158672","label":"uncovering mug","template":"Uncovering [something]","placeholders":["mug"]}, +{"id":"20153","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"21894","label":"pushing rubber duck so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["rubber duck"]}, +{"id":"149681","label":"tipping little bottle over","template":"Tipping [something] over","placeholders":["little bottle"]}, +{"id":"1091","label":"sprinkling cookie crumbs onto banana pudding","template":"Sprinkling [something] onto [something]","placeholders":["cookie crumbs","banana pudding"]}, +{"id":"111318","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"38384","label":"plugging an adapter into an aoutlet","template":"Plugging [something] into [something]","placeholders":["an adapter","an aoutlet"]}, +{"id":"194468","label":"putting marker next to mug","template":"Putting [something] next to [something]","placeholders":["marker","mug"]}, +{"id":"149648","label":"stuffing key into pouch","template":"Stuffing [something] into [something]","placeholders":["key","pouch"]}, +{"id":"197733","label":"pretending to be tearing a bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a bag"]}, +{"id":"57653","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"177859","label":"turning the camera right while filming blue pen","template":"Turning the camera right while filming [something]","placeholders":["blue pen"]}, +{"id":"98316","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"220367","label":"lime being deflected from phone","template":"[Something] being deflected from [something]","placeholders":["lime","phone"]}, +{"id":"105780","label":"dropping hair tie next to slipper","template":"Dropping [something] next to [something]","placeholders":["hair tie","slipper"]}, +{"id":"178559","label":"pretending to squeeze an apple","template":"Pretending to squeeze [something]","placeholders":["an apple"]}, +{"id":"140835","label":"pretending to sprinkle air onto a cup","template":"Pretending to sprinkle air onto [something]","placeholders":["a cup"]}, +{"id":"142024","label":"putting a clip on the edge of refrigerator so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a clip","refrigerator"]}, +{"id":"176130","label":"tipping bottle of antibacterial gel with notebook over, so bottle of antibacterial gel falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["bottle of antibacterial gel","notebook","bottle of antibacterial gel"]}, +{"id":"116148","label":"pulling toy cart from left to right","template":"Pulling [something] from left to right","placeholders":["toy cart"]}, +{"id":"40794","label":"pretending to turn ink bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["ink bottle"]}, +{"id":"5182","label":"pouring coffee into a glass","template":"Pouring [something] into [something]","placeholders":["coffee","a glass"]}, +{"id":"46143","label":"throwing matchbox in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["matchbox"]}, +{"id":"59847","label":"holding controller in front of headset","template":"Holding [something] in front of [something]","placeholders":["controller","headset"]}, +{"id":"39928","label":"spinning basketball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["basketball"]}, +{"id":"193877","label":"showing that water is inside glass","template":"Showing that [something] is inside [something]","placeholders":["water","glass"]}, +{"id":"105942","label":"throwing bra in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bra"]}, +{"id":"87064","label":"putting a marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["a marker"]}, +{"id":"181779","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"148763","label":"showing a photo of emblem to the camera","template":"Showing a photo of [something] to the camera","placeholders":["emblem"]}, +{"id":"60908","label":"tearing papper just a little bit","template":"Tearing [something] just a little bit","placeholders":["papper"]}, +{"id":"9561","label":"turning the camera upwards while filming photo scenery","template":"Turning the camera upwards while filming [something]","placeholders":["photo scenery"]}, +{"id":"45088","label":"pushing a paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a paper"]}, +{"id":"81181","label":"showing that paper is inside box","template":"Showing that [something] is inside [something]","placeholders":["paper","box"]}, +{"id":"174527","label":"touching (without moving) the edge of smartphone","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","smartphone"]}, +{"id":"200178","label":"dropping trash into a trash can","template":"Dropping [something] into [something]","placeholders":["trash","a trash can"]}, +{"id":"46963","label":"taking one of many skateboard","template":"Taking [one of many similar things on the table]","placeholders":["one of many skateboard"]}, +{"id":"121267","label":"holding spectacles over tablet","template":"Holding [something] over [something]","placeholders":["spectacles","tablet"]}, +{"id":"197927","label":"uncovering marker","template":"Uncovering [something]","placeholders":["marker"]}, +{"id":"150544","label":"stuffing rice into cup","template":"Stuffing [something] into [something]","placeholders":["rice","cup"]}, +{"id":"149285","label":"letting the cup to roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["the cup to"]}, +{"id":"49836","label":"pretending to be tearing phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["phone"]}, +{"id":"50395","label":"pushing a screw from right to left","template":"Pushing [something] from right to left","placeholders":["a screw"]}, +{"id":"93872","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"11676","label":"lifting up one end of tricycle without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["tricycle"]}, +{"id":"126614","label":"turning the camera right while filming scotch tape","template":"Turning the camera right while filming [something]","placeholders":["scotch tape"]}, +{"id":"10792","label":"pretending to be tearing container lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["container lid"]}, +{"id":"187029","label":"plugging usb drive into usb port","template":"Plugging [something] into [something]","placeholders":["usb drive","usb port"]}, +{"id":"28312","label":"putting books into cabinet","template":"Putting [something] into [something]","placeholders":["books","cabinet"]}, +{"id":"778","label":"showing that a bottle is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["a bottle","a cup"]}, +{"id":"158885","label":"turning the camera left while filming transformer","template":"Turning the camera left while filming [something]","placeholders":["transformer"]}, +{"id":"180075","label":"pushing a mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a mouse"]}, +{"id":"203354","label":"picking plastic bag up","template":"Picking [something] up","placeholders":["plastic bag"]}, +{"id":"53649","label":"moving comb down","template":"Moving [something] down","placeholders":["comb"]}, +{"id":"210666","label":"twisting something","template":"Twisting [something]","placeholders":["something"]}, +{"id":"117011","label":"a roll of tape falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a roll of tape"]}, +{"id":"63587","label":"sprinkling origami stars onto spiraled notebook","template":"Sprinkling [something] onto [something]","placeholders":["origami stars","spiraled notebook"]}, +{"id":"202999","label":"moving book and lock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","lock"]}, +{"id":"177123","label":"dropping paper onto box","template":"Dropping [something] onto [something]","placeholders":["paper","box"]}, +{"id":"27827","label":"moving plastic bottle and plastic bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["plastic bottle","plastic bottle"]}, +{"id":"699","label":"pretending to squeeze cup","template":"Pretending to squeeze [something]","placeholders":["cup"]}, +{"id":"108015","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"157289","label":"closing something","template":"Closing [something]","placeholders":["something"]}, +{"id":"54354","label":"unfolding a $20 bill","template":"Unfolding [something]","placeholders":["a $20 bill"]}, +{"id":"67174","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"92580","label":"taking ribbon out of mug","template":"Taking [something] out of [something]","placeholders":["ribbon","mug"]}, +{"id":"183926","label":"plugging memory into usb but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["memory","usb"]}, +{"id":"86654","label":"rock colliding with rock and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["rock","rock"]}, +{"id":"105671","label":"taking a marker from a group of markers on the table","template":"Taking [one of many similar things on the table]","placeholders":["a marker from a group of markers on the table"]}, +{"id":"179956","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"85917","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"72507","label":"turning an ashtray upside down","template":"Turning [something] upside down","placeholders":["an ashtray"]}, +{"id":"45350","label":"lifting tablet box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["tablet box"]}, +{"id":"170686","label":"turning the camera left while filming small green ball","template":"Turning the camera left while filming [something]","placeholders":["small green ball"]}, +{"id":"101343","label":"pulling brown case from left to right","template":"Pulling [something] from left to right","placeholders":["brown case"]}, +{"id":"75398","label":"pulling two ends of plastic bag so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["plastic bag"]}, +{"id":"120176","label":"covering lighter with tissue","template":"Covering [something] with [something]","placeholders":["lighter","tissue"]}, +{"id":"134267","label":"taking umbrella","template":"Taking [one of many similar things on the table]","placeholders":["umbrella"]}, +{"id":"142785","label":"putting clothclips","template":"Putting [something similar to other things that are already on the table]","placeholders":["clothclips"]}, +{"id":"164235","label":"rolling a tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a tape"]}, +{"id":"91894","label":"pushing a lighter so it spins","template":"Pushing [something] so it spins","placeholders":["a lighter"]}, +{"id":"3548","label":"taking crayon out of box","template":"Taking [something] out of [something]","placeholders":["crayon","box"]}, +{"id":"58014","label":"uncovering nail polish remover","template":"Uncovering [something]","placeholders":["nail polish remover"]}, +{"id":"12570","label":"pushing mini book from left to right","template":"Pushing [something] from left to right","placeholders":["mini book"]}, +{"id":"130213","label":"taking receipts","template":"Taking [one of many similar things on the table]","placeholders":["receipts"]}, +{"id":"42391","label":"picking purple container up","template":"Picking [something] up","placeholders":["purple container"]}, +{"id":"126167","label":"pretending to be tearing elastic strap","template":"Pretending to be tearing [something that is not tearable]","placeholders":["elastic strap"]}, +{"id":"176110","label":"moving cup towards the camera","template":"Moving [something] towards the camera","placeholders":["cup"]}, +{"id":"192254","label":"pushing red watch case from right to left","template":"Pushing [something] from right to left","placeholders":["red watch case"]}, +{"id":"110620","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"20405","label":"putting pebble and spanner on the table","template":"Putting [something] and [something] on the table","placeholders":["pebble","spanner"]}, +{"id":"8128","label":"touching (without moving) the edge of bag","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","bag"]}, +{"id":"135241","label":"pushing white board clip from left to right","template":"Pushing [something] from left to right","placeholders":["white board clip"]}, +{"id":"76076","label":"showing that a bag is empty","template":"Showing that [something] is empty","placeholders":["a bag"]}, +{"id":"50078","label":"folding bed sheet","template":"Folding [something]","placeholders":["bed sheet"]}, +{"id":"192208","label":"taking push pins out of container","template":"Taking [something] out of [something]","placeholders":["push pins","container"]}, +{"id":"13959","label":"showing a toothbrush behind a bottle","template":"Showing [something] behind [something]","placeholders":["a toothbrush","a bottle"]}, +{"id":"15645","label":"putting chocolate bar","template":"Putting [something similar to other things that are already on the table]","placeholders":["chocolate bar"]}, +{"id":"211822","label":"letting toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy"]}, +{"id":"167693","label":"sprinkling pepper onto envelope","template":"Sprinkling [something] onto [something]","placeholders":["pepper","envelope"]}, +{"id":"105091","label":"taking glass of many similar glasses","template":"Taking [one of many similar things on the table]","placeholders":["glass of many similar glasses"]}, +{"id":"197319","label":"uncovering scissors","template":"Uncovering [something]","placeholders":["scissors"]}, +{"id":"39680","label":"pushing a lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a lighter"]}, +{"id":"119993","label":"putting a bird on a surface","template":"Putting [something] on a surface","placeholders":["a bird"]}, +{"id":"107016","label":"moving remote across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["remote"]}, +{"id":"78969","label":"twisting grass","template":"Twisting [something]","placeholders":["grass"]}, +{"id":"217238","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"147868","label":"turning the camera left while filming brown case","template":"Turning the camera left while filming [something]","placeholders":["brown case"]}, +{"id":"204296","label":"putting 1 coin onto hair oil bottle","template":"Putting [number of] [something] onto [something]","placeholders":["1","coin","hair oil bottle"]}, +{"id":"97082","label":"taking comb","template":"Taking [one of many similar things on the table]","placeholders":["comb"]}, +{"id":"135944","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213296","label":"putting paper-clip upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["paper-clip"]}, +{"id":"140321","label":"showing mug behind plant","template":"Showing [something] behind [something]","placeholders":["mug","plant"]}, +{"id":"102224","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"71060","label":"piling socks up","template":"Piling [something] up","placeholders":["socks"]}, +{"id":"14995","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"20672","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"169929","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"57753","label":"dropping bean bag onto floor","template":"Dropping [something] onto [something]","placeholders":["bean bag","floor"]}, +{"id":"184562","label":"tearing a paper sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper sheet"]}, +{"id":"209315","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"149542","label":"throwing cigarette lighter in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["cigarette lighter"]}, +{"id":"6045","label":"tilting notebook with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["notebook","pen"]}, +{"id":"66953","label":"moving green toy car towards the camera","template":"Moving [something] towards the camera","placeholders":["green toy car"]}, +{"id":"43233","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"103869","label":"turning soupbowl upside down","template":"Turning [something] upside down","placeholders":["soupbowl"]}, +{"id":"191488","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"178356","label":"moving away from flowers with your camera","template":"Moving away from [something] with your camera","placeholders":["flowers"]}, +{"id":"42228","label":"covering mobilephone with paper","template":"Covering [something] with [something]","placeholders":["mobilephone","paper"]}, +{"id":"63548","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"66319","label":"turning the camera right while filming dinosaur prototype","template":"Turning the camera right while filming [something]","placeholders":["dinosaur prototype"]}, +{"id":"85905","label":"covering keys with towel","template":"Covering [something] with [something]","placeholders":["keys","towel"]}, +{"id":"181921","label":"pretending to be tearing plastic bag of filters","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic bag of filters"]}, +{"id":"183031","label":"turning the camera left while filming old mobile phone","template":"Turning the camera left while filming [something]","placeholders":["old mobile phone"]}, +{"id":"201187","label":"showing a jug behind a box","template":"Showing [something] behind [something]","placeholders":["a jug","a box"]}, +{"id":"33513","label":"pretending to be tearing blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["blanket"]}, +{"id":"209030","label":"holding a water bottle","template":"Holding [something]","placeholders":["a water bottle"]}, +{"id":"162748","label":"moving screw up","template":"Moving [something] up","placeholders":["screw"]}, +{"id":"37745","label":"showing that a pop bottle is empty","template":"Showing that [something] is empty","placeholders":["a pop bottle"]}, +{"id":"51761","label":"showing books to the camera","template":"Showing [something] to the camera","placeholders":["books"]}, +{"id":"82424","label":"moving the arm of a teddy bear","template":"Moving [part] of [something]","placeholders":["the arm","a teddy bear"]}, +{"id":"103429","label":"moving a phone and a lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a phone","a lighter"]}, +{"id":"132614","label":"laying pig on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["pig"]}, +{"id":"133111","label":"showing that vessel is empty","template":"Showing that [something] is empty","placeholders":["vessel"]}, +{"id":"142564","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"125738","label":"poking bowl so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bowl"]}, +{"id":"198792","label":"poking towel so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["towel"]}, +{"id":"165322","label":"hitting a pillow with a fist","template":"Hitting [something] with [something]","placeholders":["a pillow","a fist"]}, +{"id":"78190","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"72552","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"21575","label":"putting pliers upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pliers"]}, +{"id":"104775","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"154264","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"126910","label":"throwing sweet potato","template":"Throwing [something]","placeholders":["sweet potato"]}, +{"id":"122777","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"106533","label":"putting 3 pens onto the table","template":"Putting [number of] [something] onto [something]","placeholders":["3","pens","the table"]}, +{"id":"34352","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"104458","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"42782","label":"opening oil bottle","template":"Opening [something]","placeholders":["oil bottle"]}, +{"id":"138899","label":"uncovering compass","template":"Uncovering [something]","placeholders":["compass"]}, +{"id":"130929","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"129551","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"155287","label":"piling things up","template":"Piling [something] up","placeholders":["things"]}, +{"id":"32579","label":"moving comb across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["comb"]}, +{"id":"161270","label":"bending cord so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cord"]}, +{"id":"125147","label":"tilting bottle with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bottle","finger"]}, +{"id":"206508","label":"moving away from banana bunch with your camera","template":"Moving away from [something] with your camera","placeholders":["banana bunch"]}, +{"id":"49334","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"10098","label":"unfolding a pink sticky note","template":"Unfolding [something]","placeholders":["a pink sticky note"]}, +{"id":"201686","label":"pushing a plastic cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a plastic cup"]}, +{"id":"49280","label":"plugging machine into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["machine","wall"]}, +{"id":"64934","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"84064","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"145196","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"177244","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"50310","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"138993","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"44722","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"85895","label":"moving a jumpdrive closer to a stapler","template":"Moving [something] closer to [something]","placeholders":["a jumpdrive","a stapler"]}, +{"id":"93909","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"105054","label":"pouring water from bottle into glass","template":"Pouring [something] into [something]","placeholders":["water from bottle","glass"]}, +{"id":"11119","label":"pulling a paper tissue out of a tissue box","template":"Pulling [something] out of [something]","placeholders":["a paper tissue","a tissue box"]}, +{"id":"11267","label":"dropping remote behind pillow","template":"Dropping [something] behind [something]","placeholders":["remote","pillow"]}, +{"id":"12448","label":"pushing toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy car"]}, +{"id":"193127","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"45244","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"203717","label":"poking a hole into marshmallow","template":"Poking a hole into [something soft]","placeholders":["marshmallow"]}, +{"id":"194955","label":"pushing toy car from left to right","template":"Pushing [something] from left to right","placeholders":["toy car"]}, +{"id":"18592","label":"pouring soda into whiskey","template":"Pouring [something] into [something]","placeholders":["soda","whiskey"]}, +{"id":"53531","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"77401","label":"moving glass and fruit closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","fruit"]}, +{"id":"12160","label":"dropping rubix cube next to pillow","template":"Dropping [something] next to [something]","placeholders":["rubix cube","pillow"]}, +{"id":"194954","label":"burying bangle in rice","template":"Burying [something] in [something]","placeholders":["bangle","rice"]}, +{"id":"113364","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"30186","label":"hitting bicycle-bell with hammer","template":"Hitting [something] with [something]","placeholders":["bicycle-bell","hammer"]}, +{"id":"203047","label":"opening pad lock","template":"Opening [something]","placeholders":["pad lock"]}, +{"id":"95737","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"190281","label":"turning the camera upwards while filming pictures","template":"Turning the camera upwards while filming [something]","placeholders":["pictures"]}, +{"id":"121393","label":"squeezing rubber duck","template":"Squeezing [something]","placeholders":["rubber duck"]}, +{"id":"127980","label":"plugging ac charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["ac charger","wall socket"]}, +{"id":"83799","label":"putting lidded cup next to container","template":"Putting [something] next to [something]","placeholders":["lidded cup","container"]}, +{"id":"177874","label":"tipping wallet over","template":"Tipping [something] over","placeholders":["wallet"]}, +{"id":"72077","label":"dropping sellotape behind box","template":"Dropping [something] behind [something]","placeholders":["sellotape","box"]}, +{"id":"164248","label":"throwing a plastic cup","template":"Throwing [something]","placeholders":["a plastic cup"]}, +{"id":"159532","label":"pouring hot water into cup","template":"Pouring [something] into [something]","placeholders":["hot water","cup"]}, +{"id":"19584","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"56794","label":"pretending to sprinkle air onto tomato","template":"Pretending to sprinkle air onto [something]","placeholders":["tomato"]}, +{"id":"111395","label":"tearing cardboard just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardboard"]}, +{"id":"193322","label":"moving bottle and box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","box"]}, +{"id":"63904","label":"pretending to put glass cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["glass cup"]}, +{"id":"91376","label":"putting wired headset on a surface","template":"Putting [something] on a surface","placeholders":["wired headset"]}, +{"id":"61610","label":"spinning a coaster that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a coaster"]}, +{"id":"62082","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"170528","label":"showing junction box to the camera","template":"Showing [something] to the camera","placeholders":["junction box"]}, +{"id":"47651","label":"showing standing box next to case with bottles","template":"Showing [something] next to [something]","placeholders":["standing box","case with bottles"]}, +{"id":"74980","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"60229","label":"hitting bottle with glass","template":"Hitting [something] with [something]","placeholders":["bottle","glass"]}, +{"id":"186166","label":"moving talcum power bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["talcum power bottle"]}, +{"id":"193671","label":"putting a box in front of a cube","template":"Putting [something] in front of [something]","placeholders":["a box","a cube"]}, +{"id":"23292","label":"stacking 3 different items","template":"Stacking [number of] [something]","placeholders":["3","different items"]}, +{"id":"41924","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"91755","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"117454","label":"lifting a surface with pen on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["pen"]}, +{"id":"100409","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"174211","label":"stuffing pant into bag","template":"Stuffing [something] into [something]","placeholders":["pant","bag"]}, +{"id":"78261","label":"tipping bear over","template":"Tipping [something] over","placeholders":["bear"]}, +{"id":"141684","label":"moving cup and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","cup"]}, +{"id":"217180","label":"spinning an orange that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["an orange"]}, +{"id":"122772","label":"folding coversheet","template":"Folding [something]","placeholders":["coversheet"]}, +{"id":"104693","label":"dropping water bottle into cd cover","template":"Dropping [something] into [something]","placeholders":["water bottle","cd cover"]}, +{"id":"78579","label":"pushing binder clip from left to right","template":"Pushing [something] from left to right","placeholders":["binder clip"]}, +{"id":"78678","label":"wiping toothpaste off of a table","template":"Wiping [something] off of [something]","placeholders":["toothpaste","a table"]}, +{"id":"16191","label":"poking a gatorade bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a gatorade bottle"]}, +{"id":"164685","label":"unfolding car's side mirror","template":"Unfolding [something]","placeholders":["car's side mirror"]}, +{"id":"183226","label":"holding notebook behind bed frame","template":"Holding [something] behind [something]","placeholders":["notebook","bed frame"]}, +{"id":"125987","label":"pretending to open container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["container"]}, +{"id":"157582","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"168622","label":"pretending to take cd case from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cd case","table"]}, +{"id":"213350","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"217620","label":"pushing canned food from right to left","template":"Pushing [something] from right to left","placeholders":["canned food"]}, +{"id":"111440","label":"turning spoon rest upside down","template":"Turning [something] upside down","placeholders":["spoon rest"]}, +{"id":"17351","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"68685","label":"gum colliding with gum and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["gum","gum"]}, +{"id":"402","label":"pushing marker off of table","template":"Pushing [something] off of [something]","placeholders":["marker","table"]}, +{"id":"144523","label":"pushing bucket from left to right","template":"Pushing [something] from left to right","placeholders":["bucket"]}, +{"id":"172835","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"169848","label":"lighter falling like a rock","template":"[Something] falling like a rock","placeholders":["lighter"]}, +{"id":"212475","label":"spilling water next to a peg","template":"Spilling [something] next to [something]","placeholders":["water","a peg"]}, +{"id":"180301","label":"picking a cell phone up","template":"Picking [something] up","placeholders":["a cell phone"]}, +{"id":"100740","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"96842","label":"lifting rule up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rule"]}, +{"id":"146552","label":"showing a photo behind the cross","template":"Showing [something] behind [something]","placeholders":["a photo","the cross"]}, +{"id":"42088","label":"tearing masking tape just a little bit","template":"Tearing [something] just a little bit","placeholders":["masking tape"]}, +{"id":"84449","label":"putting calculator and a coin on the table","template":"Putting [something] and [something] on the table","placeholders":["calculator","a coin"]}, +{"id":"203223","label":"taking wallet from floor","template":"Taking [something] from [somewhere]","placeholders":["wallet","floor"]}, +{"id":"90746","label":"dropping toy into bowl","template":"Dropping [something] into [something]","placeholders":["toy","bowl"]}, +{"id":"25962","label":"moving a lamp up","template":"Moving [something] up","placeholders":["a lamp"]}, +{"id":"70536","label":"showing diary to the camera","template":"Showing [something] to the camera","placeholders":["diary"]}, +{"id":"50772","label":"spilling water onto a ruler","template":"Spilling [something] onto [something]","placeholders":["water","a ruler"]}, +{"id":"106048","label":"tearing a leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["a leaf"]}, +{"id":"94859","label":"holding pen behind cup","template":"Holding [something] behind [something]","placeholders":["pen","cup"]}, +{"id":"76946","label":"pretending to be tearing a mouse pad","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a mouse pad"]}, +{"id":"187138","label":"turning the camera right while filming temple","template":"Turning the camera right while filming [something]","placeholders":["temple"]}, +{"id":"74575","label":"dropping a bottletop next to a remote","template":"Dropping [something] next to [something]","placeholders":["a bottletop","a remote"]}, +{"id":"44680","label":"showing a photo of a photo of mom holding a baby to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a photo of mom holding a baby"]}, +{"id":"57579","label":"approaching bolt with your camera","template":"Approaching [something] with your camera","placeholders":["bolt"]}, +{"id":"210051","label":"dropping pen next to glass","template":"Dropping [something] next to [something]","placeholders":["pen","glass"]}, +{"id":"178725","label":"pulling two ends of a cable but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a cable"]}, +{"id":"179043","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"71524","label":"showing bat behind toy","template":"Showing [something] behind [something]","placeholders":["bat","toy"]}, +{"id":"218376","label":"putting league, camera case and shoe on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["league","camera case","shoe"]}, +{"id":"179512","label":"taking a pencil from many others","template":"Taking [one of many similar things on the table]","placeholders":["a pencil from many others"]}, +{"id":"31859","label":"plugging power adapter into outlet","template":"Plugging [something] into [something]","placeholders":["power adapter","outlet"]}, +{"id":"108294","label":"uncovering can","template":"Uncovering [something]","placeholders":["can"]}, +{"id":"135954","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"98361","label":"pulling granola bar from right to left","template":"Pulling [something] from right to left","placeholders":["granola bar"]}, +{"id":"62240","label":"spilling water behind a bath-tube","template":"Spilling [something] behind [something]","placeholders":["water","a bath-tube"]}, +{"id":"70122","label":"holding magnet next to playstation controller","template":"Holding [something] next to [something]","placeholders":["magnet","playstation controller"]}, +{"id":"49916","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"179902","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"198860","label":"hitting a bottle with a spoon","template":"Hitting [something] with [something]","placeholders":["a bottle","a spoon"]}, +{"id":"53730","label":"putting screw upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["screw"]}, +{"id":"106822","label":"tipping vitamin bottle with vitamins over, so vitamins falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["vitamin bottle","vitamins","vitamins"]}, +{"id":"72929","label":"pretending to close waterbottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["waterbottle"]}, +{"id":"98636","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"90940","label":"tilting a notebook with a jar on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","a jar"]}, +{"id":"59299","label":"putting book onto book so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["book","book"]}, +{"id":"41214","label":"stacking 5 train tracks","template":"Stacking [number of] [something]","placeholders":["5","train tracks"]}, +{"id":"61621","label":"pouring water into the sink","template":"Pouring [something] into [something]","placeholders":["water","the sink"]}, +{"id":"156790","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"180692","label":"digging soil out of ground","template":"Digging [something] out of [something]","placeholders":["soil","ground"]}, +{"id":"34709","label":"pen colliding with flashdisk and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pen","flashdisk"]}, +{"id":"42640","label":"lifting up one end of paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["paper"]}, +{"id":"139766","label":"lifting up one end of pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil"]}, +{"id":"141994","label":"moving a piece of tangerine and a dish closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a piece of tangerine","a dish"]}, +{"id":"102550","label":"bending medicine tablet strip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["medicine tablet strip"]}, +{"id":"219800","label":"moving salt closer to pepper","template":"Moving [something] closer to [something]","placeholders":["salt","pepper"]}, +{"id":"39177","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"78847","label":"closing a pen","template":"Closing [something]","placeholders":["a pen"]}, +{"id":"87838","label":"pushing potted plant so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["potted plant"]}, +{"id":"191662","label":"plugging wire into mobile","template":"Plugging [something] into [something]","placeholders":["wire","mobile"]}, +{"id":"74760","label":"putting a bowl behind a jbl","template":"Putting [something] behind [something]","placeholders":["a bowl","a jbl"]}, +{"id":"148945","label":"moving a screwdriver closer to a box","template":"Moving [something] closer to [something]","placeholders":["a screwdriver","a box"]}, +{"id":"184051","label":"lifting a surface with knife on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["knife"]}, +{"id":"216657","label":"pushing a spoon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a spoon"]}, +{"id":"37666","label":"showing scotch tape to the camera","template":"Showing [something] to the camera","placeholders":["scotch tape"]}, +{"id":"98301","label":"pulling black remote from left to right","template":"Pulling [something] from left to right","placeholders":["black remote"]}, +{"id":"161014","label":"turning the camera upwards while filming bottled ponzu sauce","template":"Turning the camera upwards while filming [something]","placeholders":["bottled ponzu sauce"]}, +{"id":"38392","label":"pretending to be tearing hand towel that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["hand towel that is not tearable"]}, +{"id":"194936","label":"pretending to spread air onto banana","template":"Pretending to spread air onto [something]","placeholders":["banana"]}, +{"id":"95962","label":"poking book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["book"]}, +{"id":"202556","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"166833","label":"opening a glass jar","template":"Opening [something]","placeholders":["a glass jar"]}, +{"id":"22966","label":"putting remote behind textbook","template":"Putting [something] behind [something]","placeholders":["remote","textbook"]}, +{"id":"109192","label":"pretending to pick hand broom up","template":"Pretending to pick [something] up","placeholders":["hand broom"]}, +{"id":"44441","label":"picking pillow up","template":"Picking [something] up","placeholders":["pillow"]}, +{"id":"152155","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"158205","label":"turning glass jar upside down","template":"Turning [something] upside down","placeholders":["glass jar"]}, +{"id":"45058","label":"plugging a power box into an outlet","template":"Plugging [something] into [something]","placeholders":["a power box","an outlet"]}, +{"id":"74966","label":"lifting wooden block up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["wooden block"]}, +{"id":"134415","label":"plastic oignons being deflected from palstic choux","template":"[Something] being deflected from [something]","placeholders":["plastic oignons","palstic choux"]}, +{"id":"60426","label":"poking lighter so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lighter"]}, +{"id":"169775","label":"pretending to pick wallet up","template":"Pretending to pick [something] up","placeholders":["wallet"]}, +{"id":"60063","label":"moving rubix cube closer to yellow ball","template":"Moving [something] closer to [something]","placeholders":["rubix cube","yellow ball"]}, +{"id":"62279","label":"a phone falling like a rock","template":"[Something] falling like a rock","placeholders":["a phone"]}, +{"id":"151919","label":"rolling a duct tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a duct tape"]}, +{"id":"127204","label":"tilting book with scissors on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","scissors"]}, +{"id":"174540","label":"pretending to be tearing something that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["something that is not tearable"]}, +{"id":"77904","label":"putting paper onto fridge","template":"Putting [something] onto [something]","placeholders":["paper","fridge"]}, +{"id":"154355","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"24532","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"207871","label":"covering shoe with shirt","template":"Covering [something] with [something]","placeholders":["shoe","shirt"]}, +{"id":"66088","label":"trying but failing to attach a sticker to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticker","the wall"]}, +{"id":"192999","label":"opening waste bin","template":"Opening [something]","placeholders":["waste bin"]}, +{"id":"159145","label":"moving nail clippers closer to pen","template":"Moving [something] closer to [something]","placeholders":["nail clippers","pen"]}, +{"id":"125214","label":"spilling coffee onto the counter","template":"Spilling [something] onto [something]","placeholders":["coffee","the counter"]}, +{"id":"104739","label":"picking mouse up","template":"Picking [something] up","placeholders":["mouse"]}, +{"id":"147219","label":"moving red pen and black pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["red pen","black pen"]}, +{"id":"212006","label":"putting cassette tape behind mug","template":"Putting [something] behind [something]","placeholders":["cassette tape","mug"]}, +{"id":"105208","label":"lifting the laundry basket up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["the laundry basket"]}, +{"id":"164273","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"170235","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"216040","label":"pretending to put hat onto shoe","template":"Pretending to put [something] onto [something]","placeholders":["hat","shoe"]}, +{"id":"37328","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"70631","label":"putting pebble onto paper structure so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pebble","paper structure"]}, +{"id":"121801","label":"trying to bend steel so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["steel"]}, +{"id":"196910","label":"hitting dinosaur with car","template":"Hitting [something] with [something]","placeholders":["dinosaur","car"]}, +{"id":"148169","label":"dropping a cross onto a container","template":"Dropping [something] onto [something]","placeholders":["a cross","a container"]}, +{"id":"62725","label":"twisting belt","template":"Twisting [something]","placeholders":["belt"]}, +{"id":"181858","label":"taking one card of many cards on the table","template":"Taking [one of many similar things on the table]","placeholders":["one card of many cards on the table"]}, +{"id":"93923","label":"hitting a mouse with a spanner","template":"Hitting [something] with [something]","placeholders":["a mouse","a spanner"]}, +{"id":"82611","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"172902","label":"moving a cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cup"]}, +{"id":"108786","label":"putting a lemon into a jug","template":"Putting [something] into [something]","placeholders":["a lemon","a jug"]}, +{"id":"130905","label":"putting tv remote onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["tv remote"]}, +{"id":"52646","label":"poking a bubble bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bubble bottle"]}, +{"id":"175112","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"118974","label":"putting body moisturiser bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["body moisturiser bottle"]}, +{"id":"53974","label":"plugging cord into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","outlet"]}, +{"id":"93367","label":"letting container roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["container"]}, +{"id":"198782","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"34187","label":"putting ball onto glass","template":"Putting [something] onto [something]","placeholders":["ball","glass"]}, +{"id":"182974","label":"lifting up one end of keyboard, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["keyboard"]}, +{"id":"89104","label":"wiping cough syrup off of counter","template":"Wiping [something] off of [something]","placeholders":["cough syrup","counter"]}, +{"id":"171612","label":"pulling red pot holder from right to left","template":"Pulling [something] from right to left","placeholders":["red pot holder"]}, +{"id":"219456","label":"lifting lift pump up without dropdown up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["lift pump up without dropdown"]}, +{"id":"38922","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"128208","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"3735","label":"pushing a toy car so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toy car"]}, +{"id":"101985","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"132230","label":"spilling candies onto a plate","template":"Spilling [something] onto [something]","placeholders":["candies","a plate"]}, +{"id":"181910","label":"moving a sphere and a stone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a sphere","a stone"]}, +{"id":"10659","label":"picking mouse up","template":"Picking [something] up","placeholders":["mouse"]}, +{"id":"34615","label":"pretending to spread air onto phone","template":"Pretending to spread air onto [something]","placeholders":["phone"]}, +{"id":"128832","label":"showing wrist watch to the camera","template":"Showing [something] to the camera","placeholders":["wrist watch"]}, +{"id":"83778","label":"uncovering tv remote","template":"Uncovering [something]","placeholders":["tv remote"]}, +{"id":"151465","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"182466","label":"showing that orange bowl is empty","template":"Showing that [something] is empty","placeholders":["orange bowl"]}, +{"id":"200234","label":"stuffing paper into cup","template":"Stuffing [something] into [something]","placeholders":["paper","cup"]}, +{"id":"34412","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"171317","label":"moving pen and ruler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","ruler"]}, +{"id":"207671","label":"lifting notebook with pen on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","pen"]}, +{"id":"69783","label":"showing that the sanitizer or lotion is inside the bottle","template":"Showing that [something] is inside [something]","placeholders":["the sanitizer or lotion","the bottle"]}, +{"id":"143494","label":"holding hair brush","template":"Holding [something]","placeholders":["hair brush"]}, +{"id":"25172","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"89103","label":"unfolding piece of paper","template":"Unfolding [something]","placeholders":["piece of paper"]}, +{"id":"163743","label":"showing that crips is inside snack pot","template":"Showing that [something] is inside [something]","placeholders":["crips","snack pot"]}, +{"id":"217749","label":"tipping cereal over","template":"Tipping [something] over","placeholders":["cereal"]}, +{"id":"39512","label":"putting s phone in front of key","template":"Putting [something] in front of [something]","placeholders":["s phone","key"]}, +{"id":"40747","label":"showing a laptop behind a spray bottle","template":"Showing [something] behind [something]","placeholders":["a laptop","a spray bottle"]}, +{"id":"189696","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"110486","label":"throwing powder packet onto a surface","template":"Throwing [something] onto a surface","placeholders":["powder packet"]}, +{"id":"163025","label":"an eraser falling like a rock","template":"[Something] falling like a rock","placeholders":["an eraser"]}, +{"id":"45983","label":"moving a pen and a usb stick away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a usb stick"]}, +{"id":"113384","label":"dropping something next to something","template":"Dropping [something] next to [something]","placeholders":["something","something"]}, +{"id":"16214","label":"tipping a lighter over","template":"Tipping [something] over","placeholders":["a lighter"]}, +{"id":"53680","label":"putting plate onto coversheet","template":"Putting [something] onto [something]","placeholders":["plate","coversheet"]}, +{"id":"198737","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"54257","label":"putting cow that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["cow"]}, +{"id":"187591","label":"putting remote next to phone","template":"Putting [something] next to [something]","placeholders":["remote","phone"]}, +{"id":"179770","label":"tearing something just a little bit","template":"Tearing [something] just a little bit","placeholders":["something"]}, +{"id":"33362","label":"dropping a matchbox behind a bucket lid","template":"Dropping [something] behind [something]","placeholders":["a matchbox","a bucket lid"]}, +{"id":"138915","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"36124","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"30316","label":"pushing pumpkin cookie from right to left","template":"Pushing [something] from right to left","placeholders":["pumpkin cookie"]}, +{"id":"19583","label":"taking snack from box","template":"Taking [something] from [somewhere]","placeholders":["snack","box"]}, +{"id":"173811","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"190674","label":"spinning a deodorant can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a deodorant can"]}, +{"id":"138482","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"146988","label":"dropping spanner behind paper clip","template":"Dropping [something] behind [something]","placeholders":["spanner","paper clip"]}, +{"id":"47387","label":"holding case over speaker","template":"Holding [something] over [something]","placeholders":["case","speaker"]}, +{"id":"205496","label":"lifting lamp with double-sided adhesive tape on it","template":"Lifting [something] with [something] on it","placeholders":["lamp","double-sided adhesive tape"]}, +{"id":"100661","label":"putting a pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pencil"]}, +{"id":"14842","label":"putting candle next to paper","template":"Putting [something] next to [something]","placeholders":["candle","paper"]}, +{"id":"118049","label":"air hockey puck being deflected from air hockey mallet","template":"[Something] being deflected from [something]","placeholders":["air hockey puck","air hockey mallet"]}, +{"id":"93308","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"188413","label":"poking a hole into cake","template":"Poking a hole into [something soft]","placeholders":["cake"]}, +{"id":"46057","label":"lifting box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["box"]}, +{"id":"25805","label":"throwing book onto a surface","template":"Throwing [something] onto a surface","placeholders":["book"]}, +{"id":"39783","label":"holding a 3d optical mouse","template":"Holding [something]","placeholders":["a 3d optical mouse"]}, +{"id":"65200","label":"putting a flashlight on a surface","template":"Putting [something] on a surface","placeholders":["a flashlight"]}, +{"id":"171772","label":"pretending to take a lighter from a chair","template":"Pretending to take [something] from [somewhere]","placeholders":["a lighter","a chair"]}, +{"id":"76980","label":"moving away from toy with your camera","template":"Moving away from [something] with your camera","placeholders":["toy"]}, +{"id":"186942","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"141010","label":"showing that matchbox is inside jar","template":"Showing that [something] is inside [something]","placeholders":["matchbox","jar"]}, +{"id":"157478","label":"dropping a key behind a book","template":"Dropping [something] behind [something]","placeholders":["a key","a book"]}, +{"id":"160765","label":"taking taking knife","template":"Taking [one of many similar things on the table]","placeholders":["taking knife"]}, +{"id":"159540","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"111995","label":"opening a tube","template":"Opening [something]","placeholders":["a tube"]}, +{"id":"107701","label":"plugging a cord into a laptop","template":"Plugging [something] into [something]","placeholders":["a cord","a laptop"]}, +{"id":"117648","label":"putting apple onto a glass","template":"Putting [something] onto [something]","placeholders":["apple","a glass"]}, +{"id":"173542","label":"pretending to poke glasses","template":"Pretending to poke [something]","placeholders":["glasses"]}, +{"id":"11588","label":"lifting a surface with spoon on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["spoon"]}, +{"id":"204757","label":"moving pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pen"]}, +{"id":"155606","label":"putting pencil into jar","template":"Putting [something] into [something]","placeholders":["pencil","jar"]}, +{"id":"185958","label":"plugging usb plug into laptop","template":"Plugging [something] into [something]","placeholders":["usb plug","laptop"]}, +{"id":"365","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"78170","label":"showing something on top of something","template":"Showing [something] on top of [something]","placeholders":["something","something"]}, +{"id":"195612","label":"opening scissor","template":"Opening [something]","placeholders":["scissor"]}, +{"id":"103389","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"10975","label":"turning the camera left while filming banana bunch","template":"Turning the camera left while filming [something]","placeholders":["banana bunch"]}, +{"id":"84838","label":"pushing cube so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cube"]}, +{"id":"3540","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"204776","label":"putting coins (pennies)","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins (pennies)"]}, +{"id":"6639","label":"trying to bend stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["stick"]}, +{"id":"213669","label":"putting bottle into cup","template":"Putting [something] into [something]","placeholders":["bottle","cup"]}, +{"id":"191031","label":"moving a hammer and a nail closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a hammer","a nail"]}, +{"id":"85558","label":"putting spatula upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["spatula"]}, +{"id":"103586","label":"holding a stick in front of the clock","template":"Holding [something] in front of [something]","placeholders":["a stick","the clock"]}, +{"id":"200985","label":"moving cup away from plate","template":"Moving [something] away from [something]","placeholders":["cup","plate"]}, +{"id":"154385","label":"picking a watering can up","template":"Picking [something] up","placeholders":["a watering can"]}, +{"id":"20586","label":"pouring water into glass flower vase until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass flower vase"]}, +{"id":"62926","label":"bending a wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a wooden stick"]}, +{"id":"35421","label":"pushing toothpicks so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toothpicks"]}, +{"id":"196297","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"56670","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"163607","label":"lifting playing card with tweezers on it","template":"Lifting [something] with [something] on it","placeholders":["playing card","tweezers"]}, +{"id":"123124","label":"removing a cube, revealing a toy behind","template":"Removing [something], revealing [something] behind","placeholders":["a cube","a toy"]}, +{"id":"71173","label":"moving away from book with your camera","template":"Moving away from [something] with your camera","placeholders":["book"]}, +{"id":"80513","label":"moving potato and potato so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["potato","potato"]}, +{"id":"50150","label":"pretending to pour liquid out of can, but can is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["liquid","can","can"]}, +{"id":"52137","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"211202","label":"moving toy away from the camera","template":"Moving [something] away from the camera","placeholders":["toy"]}, +{"id":"64983","label":"holding powder bottle behind paint bottle","template":"Holding [something] behind [something]","placeholders":["powder bottle","paint bottle"]}, +{"id":"62001","label":"moving pen towards the camera","template":"Moving [something] towards the camera","placeholders":["pen"]}, +{"id":"135520","label":"removing blanket, revealing piggy bank on notebook behind","template":"Removing [something], revealing [something] behind","placeholders":["blanket","piggy bank on notebook"]}, +{"id":"180287","label":"pushing blue ballpen from right to left","template":"Pushing [something] from right to left","placeholders":["blue ballpen"]}, +{"id":"214308","label":"a pair of scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["a pair of scissors"]}, +{"id":"17446","label":"throwing a ball against a wall","template":"Throwing [something] against [something]","placeholders":["a ball","a wall"]}, +{"id":"55937","label":"picking key up","template":"Picking [something] up","placeholders":["key"]}, +{"id":"124975","label":"putting board clip that cannot stand upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["board clip that cannot stand"]}, +{"id":"128508","label":"pretending to squeeze remote","template":"Pretending to squeeze [something]","placeholders":["remote"]}, +{"id":"185198","label":"moving a stapler and a remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a stapler","a remote control"]}, +{"id":"219139","label":"moving fluorescent colour pen up","template":"Moving [something] up","placeholders":["fluorescent colour pen"]}, +{"id":"205348","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"132337","label":"hitting a wall with a stick","template":"Hitting [something] with [something]","placeholders":["a wall","a stick"]}, +{"id":"87906","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"147296","label":"pushing a pencil so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pencil"]}, +{"id":"117588","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"55818","label":"throwing headphones in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["headphones"]}, +{"id":"57826","label":"spilling water next to a peg","template":"Spilling [something] next to [something]","placeholders":["water","a peg"]}, +{"id":"149698","label":"dropping beach pebble next to plastic cup","template":"Dropping [something] next to [something]","placeholders":["beach pebble","plastic cup"]}, +{"id":"133145","label":"rolling a golf ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a golf ball"]}, +{"id":"3445","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"75049","label":"bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bag"]}, +{"id":"150419","label":"pretending to pour water out of mug, but mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","mug","mug"]}, +{"id":"149490","label":"showing green colour pen next to blue colour pen","template":"Showing [something] next to [something]","placeholders":["green colour pen","blue colour pen"]}, +{"id":"92579","label":"moving tiger down","template":"Moving [something] down","placeholders":["tiger"]}, +{"id":"16718","label":"showing that coins is inside box","template":"Showing that [something] is inside [something]","placeholders":["coins","box"]}, +{"id":"206004","label":"holding cup over table","template":"Holding [something] over [something]","placeholders":["cup","table"]}, +{"id":"168536","label":"touching (without moving) sole of shoe","template":"Touching (without moving) [part] of [something]","placeholders":["sole","shoe"]}, +{"id":"173369","label":"taking a pot out of an oven","template":"Taking [something] out of [something]","placeholders":["a pot","an oven"]}, +{"id":"106306","label":"pushing water bottle with cell phone","template":"Pushing [something] with [something]","placeholders":["water bottle","cell phone"]}, +{"id":"138238","label":"touching (without moving) part of candle","template":"Touching (without moving) [part] of [something]","placeholders":["part","candle"]}, +{"id":"57112","label":"lifting book with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["book","scissors"]}, +{"id":"35431","label":"putting shoe on a surface","template":"Putting [something] on a surface","placeholders":["shoe"]}, +{"id":"180817","label":"putting a pencil sharpener next to a pen","template":"Putting [something] next to [something]","placeholders":["a pencil sharpener","a pen"]}, +{"id":"55848","label":"taking a toy out of a box","template":"Taking [something] out of [something]","placeholders":["a toy","a box"]}, +{"id":"205301","label":"pretending to be tearing pen","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pen"]}, +{"id":"134683","label":"taking a clothespin out of a mug","template":"Taking [something] out of [something]","placeholders":["a clothespin","a mug"]}, +{"id":"29487","label":"failing to put cigarette pack into cup because cigarette pack does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["cigarette pack","cup","cigarette pack"]}, +{"id":"40861","label":"holding a lid next to a pot","template":"Holding [something] next to [something]","placeholders":["a lid","a pot"]}, +{"id":"220767","label":"squeezing pink toothbrush case","template":"Squeezing [something]","placeholders":["pink toothbrush case"]}, +{"id":"32993","label":"pushing mp3 player so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mp3 player"]}, +{"id":"53018","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"71619","label":"tilting a book with a measuring tape on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a measuring tape"]}, +{"id":"150440","label":"pretending to be tearing a cotton t-shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cotton t-shirt"]}, +{"id":"202536","label":"holding a watch in front of a mobile","template":"Holding [something] in front of [something]","placeholders":["a watch","a mobile"]}, +{"id":"54073","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"3619","label":"pushing black lipstick from left to right","template":"Pushing [something] from left to right","placeholders":["black lipstick"]}, +{"id":"137154","label":"pretending to take remote from table","template":"Pretending to take [something] from [somewhere]","placeholders":["remote","table"]}, +{"id":"125048","label":"a shampoo tube colliding with a comb and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a shampoo tube","a comb"]}, +{"id":"56156","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"169342","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"54657","label":"pushing pushing plastic spray from right to left from right to left","template":"Pushing [something] from right to left","placeholders":["pushing plastic spray from right to left"]}, +{"id":"70571","label":"squeezing flannel","template":"Squeezing [something]","placeholders":["flannel"]}, +{"id":"209016","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"8042","label":"folding jeans","template":"Folding [something]","placeholders":["jeans"]}, +{"id":"108315","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"105737","label":"pushing pillbox off of marlboro pack","template":"Pushing [something] off of [something]","placeholders":["pillbox","marlboro pack"]}, +{"id":"214111","label":"remote falling like a rock","template":"[Something] falling like a rock","placeholders":["remote"]}, +{"id":"38426","label":"showing paper bag behind cat toy","template":"Showing [something] behind [something]","placeholders":["paper bag","cat toy"]}, +{"id":"118419","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"41495","label":"showing knife to the camera","template":"Showing [something] to the camera","placeholders":["knife"]}, +{"id":"88187","label":"pulling two ends of a rope but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a rope"]}, +{"id":"37680","label":"pouring water into bucket until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","bucket"]}, +{"id":"145765","label":"holding spectacle box over cup","template":"Holding [something] over [something]","placeholders":["spectacle box","cup"]}, +{"id":"34931","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"86032","label":"putting glass upright on the table","template":"Putting [something] upright on the table","placeholders":["glass"]}, +{"id":"118166","label":"pushing heater component from right to left","template":"Pushing [something] from right to left","placeholders":["heater component"]}, +{"id":"14056","label":"pushing calculator from left to right","template":"Pushing [something] from left to right","placeholders":["calculator"]}, +{"id":"155351","label":"tearing candy wrapper into two pieces","template":"Tearing [something] into two pieces","placeholders":["candy wrapper"]}, +{"id":"32037","label":"pretending to poke a cup","template":"Pretending to poke [something]","placeholders":["a cup"]}, +{"id":"8740","label":"moving a doll and a doll so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a doll","a doll"]}, +{"id":"140042","label":"putting a spoon onto a pillow","template":"Putting [something] onto [something]","placeholders":["a spoon","a pillow"]}, +{"id":"62427","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"68352","label":"plugging headphones into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","laptop"]}, +{"id":"20683","label":"trying to bend spidol so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["spidol"]}, +{"id":"11143","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"208530","label":"moving wooden puppet across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["wooden puppet"]}, +{"id":"51308","label":"showing water bottle next to telephone","template":"Showing [something] next to [something]","placeholders":["water bottle","telephone"]}, +{"id":"197639","label":"holding sunglasses in front of box","template":"Holding [something] in front of [something]","placeholders":["sunglasses","box"]}, +{"id":"119971","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"83303","label":"poking a monitor so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a monitor"]}, +{"id":"12738","label":"pushing a wallet from right to left","template":"Pushing [something] from right to left","placeholders":["a wallet"]}, +{"id":"144470","label":"pushing a bottle from right to left","template":"Pushing [something] from right to left","placeholders":["a bottle"]}, +{"id":"116117","label":"failing to put a bottle into a vase because the bottle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bottle","a vase","the bottle"]}, +{"id":"108357","label":"spinning comb so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["comb"]}, +{"id":"193842","label":"turning a bowl upside down","template":"Turning [something] upside down","placeholders":["a bowl"]}, +{"id":"89214","label":"pretending to pick nail polish up","template":"Pretending to pick [something] up","placeholders":["nail polish"]}, +{"id":"218349","label":"moving a peace of paper across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a peace of paper"]}, +{"id":"123833","label":"putting lidded cup into container","template":"Putting [something] into [something]","placeholders":["lidded cup","container"]}, +{"id":"116984","label":"tilting a notebook with keys on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","keys"]}, +{"id":"24155","label":"laying a glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glass"]}, +{"id":"169507","label":"twisting a sock","template":"Twisting [something]","placeholders":["a sock"]}, +{"id":"111092","label":"picking a bottle up","template":"Picking [something] up","placeholders":["a bottle"]}, +{"id":"97369","label":"putting postit into cup","template":"Putting [something] into [something]","placeholders":["postit","cup"]}, +{"id":"77068","label":"moving candle and mug so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["candle","mug"]}, +{"id":"94183","label":"moving a calculator towards the camera","template":"Moving [something] towards the camera","placeholders":["a calculator"]}, +{"id":"147600","label":"dropping a spoon into a bowl","template":"Dropping [something] into [something]","placeholders":["a spoon","a bowl"]}, +{"id":"169688","label":"poking a hole into mattress","template":"Poking a hole into [something soft]","placeholders":["mattress"]}, +{"id":"119679","label":"pushing salt onto plate","template":"Pushing [something] onto [something]","placeholders":["salt","plate"]}, +{"id":"24781","label":"opening side view mirror","template":"Opening [something]","placeholders":["side view mirror"]}, +{"id":"108505","label":"taking one of many coins on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many coins on the table"]}, +{"id":"190668","label":"covering a mug with a piece of paper","template":"Covering [something] with [something]","placeholders":["a mug","a piece of paper"]}, +{"id":"212697","label":"lifting a surface with glass on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["glass"]}, +{"id":"194731","label":"turning the camera right while filming ball","template":"Turning the camera right while filming [something]","placeholders":["ball"]}, +{"id":"104347","label":"spinning teacup that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["teacup"]}, +{"id":"205710","label":"putting plant on a surface","template":"Putting [something] on a surface","placeholders":["plant"]}, +{"id":"74522","label":"bending green bean until it breaks","template":"Bending [something] until it breaks","placeholders":["green bean"]}, +{"id":"102896","label":"bending twist tie so that it deforms","template":"Bending [something] so that it deforms","placeholders":["twist tie"]}, +{"id":"206950","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"64129","label":"moving arm of glasses","template":"Moving [part] of [something]","placeholders":["arm","glasses"]}, +{"id":"187904","label":"wiping water off of a bench","template":"Wiping [something] off of [something]","placeholders":["water","a bench"]}, +{"id":"36935","label":"pretending to take sunglasses out of box","template":"Pretending to take [something] out of [something]","placeholders":["sunglasses","box"]}, +{"id":"169515","label":"spinning the bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["the bottle"]}, +{"id":"195213","label":"lifting mobile phone up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["mobile phone"]}, +{"id":"6107","label":"turning the camera right while filming motor bike","template":"Turning the camera right while filming [something]","placeholders":["motor bike"]}, +{"id":"88128","label":"poking a water bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a water bottle"]}, +{"id":"35037","label":"removing bag, revealing glasses behind","template":"Removing [something], revealing [something] behind","placeholders":["bag","glasses"]}, +{"id":"57685","label":"spilling water onto sink","template":"Spilling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"80221","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"106786","label":"dropping a comb in front of a container","template":"Dropping [something] in front of [something]","placeholders":["a comb","a container"]}, +{"id":"147885","label":"throwing earrings in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["earrings"]}, +{"id":"112889","label":"lifting a towel up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a towel"]}, +{"id":"78265","label":"holding torch over bottle","template":"Holding [something] over [something]","placeholders":["torch","bottle"]}, +{"id":"11193","label":"moving knife down","template":"Moving [something] down","placeholders":["knife"]}, +{"id":"66983","label":"holding a letter opener over a cloth","template":"Holding [something] over [something]","placeholders":["a letter opener","a cloth"]}, +{"id":"23455","label":"attaching a hose to a spirometer","template":"Attaching [something] to [something]","placeholders":["a hose","a spirometer"]}, +{"id":"152849","label":"throwing sponge","template":"Throwing [something]","placeholders":["sponge"]}, +{"id":"203640","label":"pretending to take a bottle of shampoo from a table","template":"Pretending to take [something] from [somewhere]","placeholders":["a bottle of shampoo","a table"]}, +{"id":"15345","label":"pretending to pick mouse up","template":"Pretending to pick [something] up","placeholders":["mouse"]}, +{"id":"6010","label":"uncovering cow","template":"Uncovering [something]","placeholders":["cow"]}, +{"id":"212602","label":"dropping pen in front of my leg","template":"Dropping [something] in front of [something]","placeholders":["pen","my leg"]}, +{"id":"56518","label":"taking helmet from ground","template":"Taking [something] from [somewhere]","placeholders":["helmet","ground"]}, +{"id":"100767","label":"dropping balled up paper onto counter","template":"Dropping [something] onto [something]","placeholders":["balled up paper","counter"]}, +{"id":"131135","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"2659","label":"pushing small bin off of large bin","template":"Pushing [something] off of [something]","placeholders":["small bin","large bin"]}, +{"id":"53781","label":"folding a tiny scarf","template":"Folding [something]","placeholders":["a tiny scarf"]}, +{"id":"32250","label":"lighter colliding with control and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["lighter","control"]}, +{"id":"216856","label":"putting 2 hair clips onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair clips","black pouch"]}, +{"id":"160836","label":"dropping folded napkin into cup","template":"Dropping [something] into [something]","placeholders":["folded napkin","cup"]}, +{"id":"128086","label":"spinning bottlecap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottlecap"]}, +{"id":"138353","label":"a small bottlr being deflected from a lock","template":"[Something] being deflected from [something]","placeholders":["a small bottlr","a lock"]}, +{"id":"69512","label":"putting marker pen and tubelight relay on the table","template":"Putting [something] and [something] on the table","placeholders":["marker pen","tubelight relay"]}, +{"id":"82701","label":"pretending to open notepad without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notepad"]}, +{"id":"206294","label":"holding a lighter","template":"Holding [something]","placeholders":["a lighter"]}, +{"id":"163163","label":"wiping gummy off of stool","template":"Wiping [something] off of [something]","placeholders":["gummy","stool"]}, +{"id":"190946","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"173535","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"129246","label":"uncovering tool","template":"Uncovering [something]","placeholders":["tool"]}, +{"id":"183894","label":"pretending to scoop liquid up with tablespoon","template":"Pretending to scoop [something] up with [something]","placeholders":["liquid","tablespoon"]}, +{"id":"174397","label":"moving remote and water bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["remote","water bottle"]}, +{"id":"139879","label":"showing pen behind box","template":"Showing [something] behind [something]","placeholders":["pen","box"]}, +{"id":"145046","label":"holding mail behind tv","template":"Holding [something] behind [something]","placeholders":["mail","tv"]}, +{"id":"15762","label":"tilting folder with liner on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder","liner"]}, +{"id":"6976","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"176713","label":"wiping water off of glass","template":"Wiping [something] off of [something]","placeholders":["water","glass"]}, +{"id":"9740","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"157457","label":"pretending to put box on a surface","template":"Pretending to put [something] on a surface","placeholders":["box"]}, +{"id":"212315","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"217353","label":"opening something","template":"Opening [something]","placeholders":["something"]}, +{"id":"70366","label":"moving paper weight up","template":"Moving [something] up","placeholders":["paper weight"]}, +{"id":"130901","label":"spinning place mat so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["place mat"]}, +{"id":"200043","label":"pretending to pick make-up container up","template":"Pretending to pick [something] up","placeholders":["make-up container"]}, +{"id":"64347","label":"pushing black play cards so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["black play cards"]}, +{"id":"127619","label":"tilting plan sheet with rubber on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plan sheet","rubber"]}, +{"id":"211490","label":"putting stuffed bear that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stuffed bear"]}, +{"id":"125970","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"128561","label":"throwing object","template":"Throwing [something]","placeholders":["object"]}, +{"id":"111502","label":"taking diaper","template":"Taking [one of many similar things on the table]","placeholders":["diaper"]}, +{"id":"191640","label":"pretending to poke audio helmet","template":"Pretending to poke [something]","placeholders":["audio helmet"]}, +{"id":"97370","label":"poking charger so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["charger"]}, +{"id":"79041","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"2417","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"36138","label":"pulling two ends of a claw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a claw"]}, +{"id":"145858","label":"spreading toothpaste onto toothbrush","template":"Spreading [something] onto [something]","placeholders":["toothpaste","toothbrush"]}, +{"id":"95700","label":"moving a shoe and a cat brush closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a shoe","a cat brush"]}, +{"id":"6389","label":"pretending to put bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottle"]}, +{"id":"204891","label":"pretending to be tearing a card","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a card"]}, +{"id":"62579","label":"rolling battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["battery"]}, +{"id":"1241","label":"taking one of candy packs","template":"Taking [one of many similar things on the table]","placeholders":["one of candy packs"]}, +{"id":"183134","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"115391","label":"twisting a jumper","template":"Twisting [something]","placeholders":["a jumper"]}, +{"id":"33288","label":"spinning sponge ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["sponge ball"]}, +{"id":"155620","label":"tearing paper sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper sheet"]}, +{"id":"58989","label":"showing box next to pen","template":"Showing [something] next to [something]","placeholders":["box","pen"]}, +{"id":"218231","label":"rolling can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["can"]}, +{"id":"189493","label":"pouring water out of glass","template":"Pouring [something] out of [something]","placeholders":["water","glass"]}, +{"id":"23123","label":"attaching a post-it to a monitor","template":"Attaching [something] to [something]","placeholders":["a post-it","a monitor"]}, +{"id":"89442","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"82690","label":"moving flashlight and glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["flashlight","glass"]}, +{"id":"148354","label":"pretending to put marker into mug","template":"Pretending to put [something] into [something]","placeholders":["marker","mug"]}, +{"id":"212161","label":"uncovering sketch book","template":"Uncovering [something]","placeholders":["sketch book"]}, +{"id":"161086","label":"moving a monkey figure and a monkey figure closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a monkey figure","a monkey figure"]}, +{"id":"203659","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"202184","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"108661","label":"tilting bin with container on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bin","container"]}, +{"id":"209430","label":"a comb colliding with another comb and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a comb","another comb"]}, +{"id":"83567","label":"trying to pour some grains into a glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["some grains","a glass"]}, +{"id":"101977","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"131849","label":"moving bottle and ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["bottle","ball"]}, +{"id":"201504","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"22324","label":"poking sponge so that it falls over","template":"Poking [something] so that it falls over","placeholders":["sponge"]}, +{"id":"75976","label":"plugging power cord into power board","template":"Plugging [something] into [something]","placeholders":["power cord","power board"]}, +{"id":"76073","label":"lifting up one end of envelope, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["envelope"]}, +{"id":"52058","label":"pretending to pick book up","template":"Pretending to pick [something] up","placeholders":["book"]}, +{"id":"27479","label":"uncovering whiteboard marker","template":"Uncovering [something]","placeholders":["whiteboard marker"]}, +{"id":"92909","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"216055","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"89811","label":"pushing envelope box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["envelope box"]}, +{"id":"217404","label":"moving notebook down","template":"Moving [something] down","placeholders":["notebook"]}, +{"id":"128813","label":"closing gate","template":"Closing [something]","placeholders":["gate"]}, +{"id":"150380","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"213378","label":"pulling a game out of an envelope","template":"Pulling [something] out of [something]","placeholders":["a game","an envelope"]}, +{"id":"84230","label":"rolling tablet box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tablet box"]}, +{"id":"206408","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"66269","label":"covering cell phone with envelope","template":"Covering [something] with [something]","placeholders":["cell phone","envelope"]}, +{"id":"138244","label":"putting a figurine upright on the table","template":"Putting [something] upright on the table","placeholders":["a figurine"]}, +{"id":"200366","label":"showing that yellow ball is inside cookie box","template":"Showing that [something] is inside [something]","placeholders":["yellow ball","cookie box"]}, +{"id":"184211","label":"opening pencilbox","template":"Opening [something]","placeholders":["pencilbox"]}, +{"id":"32751","label":"pushing brown bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["brown bottle"]}, +{"id":"175586","label":"pushing iron onto board","template":"Pushing [something] onto [something]","placeholders":["iron","board"]}, +{"id":"112121","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"106317","label":"squeezing pig","template":"Squeezing [something]","placeholders":["pig"]}, +{"id":"7627","label":"dropping ice into a cup","template":"Dropping [something] into [something]","placeholders":["ice","a cup"]}, +{"id":"209874","label":"pushing spanner with screw driver","template":"Pushing [something] with [something]","placeholders":["spanner","screw driver"]}, +{"id":"138894","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"127985","label":"spinning lid that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lid"]}, +{"id":"120887","label":"plugging an audio cable into headphones but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["an audio cable","headphones"]}, +{"id":"80814","label":"putting tin into cup","template":"Putting [something] into [something]","placeholders":["tin","cup"]}, +{"id":"6973","label":"taking coins (pennies)","template":"Taking [one of many similar things on the table]","placeholders":["coins (pennies)"]}, +{"id":"91802","label":"taking a remote","template":"Taking [one of many similar things on the table]","placeholders":["a remote"]}, +{"id":"197389","label":"putting a water bottle back","template":"Putting [something similar to other things that are already on the table]","placeholders":["a water bottle back"]}, +{"id":"139760","label":"moving ring away from the earing","template":"Moving [something] away from [something]","placeholders":["ring","the earing"]}, +{"id":"61881","label":"turning the camera left while filming bb-8 cup","template":"Turning the camera left while filming [something]","placeholders":["bb-8 cup"]}, +{"id":"61982","label":"moving glass canister and glass canister closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass canister","glass canister"]}, +{"id":"59379","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"202235","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"97009","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"83304","label":"plugging charger into a plug","template":"Plugging [something] into [something]","placeholders":["charger","a plug"]}, +{"id":"46005","label":"taking coloured pen","template":"Taking [one of many similar things on the table]","placeholders":["coloured pen"]}, +{"id":"60719","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"201616","label":"taking marker","template":"Taking [one of many similar things on the table]","placeholders":["marker"]}, +{"id":"181896","label":"plugging a cord into a wall","template":"Plugging [something] into [something]","placeholders":["a cord","a wall"]}, +{"id":"142062","label":"plugging usb data cable into usb slot","template":"Plugging [something] into [something]","placeholders":["usb data cable","usb slot"]}, +{"id":"201509","label":"dropping book onto shoe box","template":"Dropping [something] onto [something]","placeholders":["book","shoe box"]}, +{"id":"88103","label":"moving a remote control and a pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a remote control","a pen"]}, +{"id":"123668","label":"holding cell phone over water bottle","template":"Holding [something] over [something]","placeholders":["cell phone","water bottle"]}, +{"id":"220373","label":"tilting hat with purse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["hat","purse"]}, +{"id":"169102","label":"laying a lighter on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a lighter"]}, +{"id":"109131","label":"showing glass behind apple","template":"Showing [something] behind [something]","placeholders":["glass","apple"]}, +{"id":"50975","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"43184","label":"touching (without moving) part of scissors","template":"Touching (without moving) [part] of [something]","placeholders":["part","scissors"]}, +{"id":"143272","label":"lifting a wallet up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wallet"]}, +{"id":"158390","label":"lifting scissors up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["scissors"]}, +{"id":"199119","label":"putting beer bottle on a surface","template":"Putting [something] on a surface","placeholders":["beer bottle"]}, +{"id":"31874","label":"lifting music player with coin on it","template":"Lifting [something] with [something] on it","placeholders":["music player","coin"]}, +{"id":"42212","label":"turning the camera upwards while filming picture","template":"Turning the camera upwards while filming [something]","placeholders":["picture"]}, +{"id":"87206","label":"moving hand sanitizer across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["hand sanitizer"]}, +{"id":"72183","label":"taking file out of almirah","template":"Taking [something] out of [something]","placeholders":["file","almirah"]}, +{"id":"79071","label":"twisting off a bottle cap","template":"Twisting [something]","placeholders":["off a bottle cap"]}, +{"id":"166855","label":"showing a spray-paint can behind a keyboard","template":"Showing [something] behind [something]","placeholders":["a spray-paint can","a keyboard"]}, +{"id":"190027","label":"plugging a usb to micro-usb cord into a wall adapter","template":"Plugging [something] into [something]","placeholders":["a usb to micro-usb cord","a wall adapter"]}, +{"id":"73133","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"79097","label":"taking flowers","template":"Taking [one of many similar things on the table]","placeholders":["flowers"]}, +{"id":"77732","label":"plastic-paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic-paper"]}, +{"id":"125253","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"141783","label":"showing tape on top of box","template":"Showing [something] on top of [something]","placeholders":["tape","box"]}, +{"id":"160912","label":"pulling two ends of metal ruler but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["metal ruler"]}, +{"id":"17933","label":"pushing white deodorant from left to right","template":"Pushing [something] from left to right","placeholders":["white deodorant"]}, +{"id":"216540","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"144803","label":"showing a photo of man to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man"]}, +{"id":"85715","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"45087","label":"holding tweezers next to mouthwash","template":"Holding [something] next to [something]","placeholders":["tweezers","mouthwash"]}, +{"id":"65485","label":"plugging juice machine into electric socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["juice machine","electric socket"]}, +{"id":"76825","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"219473","label":"holding bottle behind sunglasses","template":"Holding [something] behind [something]","placeholders":["bottle","sunglasses"]}, +{"id":"202581","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"100253","label":"covering feuerzeug with papier","template":"Covering [something] with [something]","placeholders":["feuerzeug","papier"]}, +{"id":"67856","label":"putting a pen next to a pen","template":"Putting [something] next to [something]","placeholders":["a pen","a pen"]}, +{"id":"82068","label":"pretending or failing to wipe lotion off of a tablet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["lotion","a tablet"]}, +{"id":"12139","label":"uncovering toothbrushes","template":"Uncovering [something]","placeholders":["toothbrushes"]}, +{"id":"156898","label":"squeezing a staff toy","template":"Squeezing [something]","placeholders":["a staff toy"]}, +{"id":"157935","label":"taking fluorescent light bulb out of mug","template":"Taking [something] out of [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"15661","label":"spreading vegetables onto a vessel","template":"Spreading [something] onto [something]","placeholders":["vegetables","a vessel"]}, +{"id":"50974","label":"stuffing book into box","template":"Stuffing [something] into [something]","placeholders":["book","box"]}, +{"id":"83262","label":"moving book and phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["book","phone"]}, +{"id":"84359","label":"pulling two ends of a box of cards but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a box of cards"]}, +{"id":"123836","label":"stuffing a pillow into a pillow case","template":"Stuffing [something] into [something]","placeholders":["a pillow","a pillow case"]}, +{"id":"151294","label":"covering keyboard with clothes","template":"Covering [something] with [something]","placeholders":["keyboard","clothes"]}, +{"id":"212966","label":"holding keys in front of bag","template":"Holding [something] in front of [something]","placeholders":["keys","bag"]}, +{"id":"78303","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"109256","label":"pulling colorful scarf from left to right","template":"Pulling [something] from left to right","placeholders":["colorful scarf"]}, +{"id":"214988","label":"pushing wallet from right to left","template":"Pushing [something] from right to left","placeholders":["wallet"]}, +{"id":"182252","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"105275","label":"plugging stove cord into wall","template":"Plugging [something] into [something]","placeholders":["stove cord","wall"]}, +{"id":"157211","label":"moving away from wardrobe with your camera","template":"Moving away from [something] with your camera","placeholders":["wardrobe"]}, +{"id":"3659","label":"hitting a toaster oven with an egg whisk","template":"Hitting [something] with [something]","placeholders":["a toaster oven","an egg whisk"]}, +{"id":"139227","label":"holding a coin over a box","template":"Holding [something] over [something]","placeholders":["a coin","a box"]}, +{"id":"196811","label":"putting tape, ball and helmet on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["tape","ball","helmet"]}, +{"id":"139577","label":"putting pen into holder","template":"Putting [something] into [something]","placeholders":["pen","holder"]}, +{"id":"141856","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"21812","label":"holding bottle over trash can","template":"Holding [something] over [something]","placeholders":["bottle","trash can"]}, +{"id":"122269","label":"putting chocolate next to other chocolates","template":"Putting [something similar to other things that are already on the table]","placeholders":["chocolate next to other chocolates"]}, +{"id":"120355","label":"uncovering battery","template":"Uncovering [something]","placeholders":["battery"]}, +{"id":"180330","label":"lifting up one end of laptop without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["laptop"]}, +{"id":"216558","label":"showing laboratory material on top of a table","template":"Showing [something] on top of [something]","placeholders":["laboratory material","a table"]}, +{"id":"66070","label":"spilling water onto envelope","template":"Spilling [something] onto [something]","placeholders":["water","envelope"]}, +{"id":"132373","label":"tilting dumptruck bed with legos on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["dumptruck bed","legos"]}, +{"id":"215876","label":"dropping envelopes onto a chair","template":"Dropping [something] onto [something]","placeholders":["envelopes","a chair"]}, +{"id":"171441","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"201176","label":"burying pocket bible in blanket","template":"Burying [something] in [something]","placeholders":["pocket bible","blanket"]}, +{"id":"139070","label":"pushing scissors from left to right","template":"Pushing [something] from left to right","placeholders":["scissors"]}, +{"id":"205013","label":"pulling a book from right to left","template":"Pulling [something] from right to left","placeholders":["a book"]}, +{"id":"141056","label":"pulling backpack onto table","template":"Pulling [something] onto [something]","placeholders":["backpack","table"]}, +{"id":"83064","label":"holding sock in front of small pillow","template":"Holding [something] in front of [something]","placeholders":["sock","small pillow"]}, +{"id":"192020","label":"turning container upside down","template":"Turning [something] upside down","placeholders":["container"]}, +{"id":"7769","label":"throwing an apple","template":"Throwing [something]","placeholders":["an apple"]}, +{"id":"191452","label":"pushing sunglasses so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["sunglasses"]}, +{"id":"115729","label":"holding two box","template":"Holding [something]","placeholders":["two box"]}, +{"id":"183847","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"174205","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"139317","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"79473","label":"tearing flower into two pieces","template":"Tearing [something] into two pieces","placeholders":["flower"]}, +{"id":"2022","label":"pushing lighter from right to left","template":"Pushing [something] from right to left","placeholders":["lighter"]}, +{"id":"86088","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"157810","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"160076","label":"opening stein lid","template":"Opening [something]","placeholders":["stein lid"]}, +{"id":"87580","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"65677","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"155138","label":"putting a cord into an outlet","template":"Putting [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"13124","label":"putting comb next to remote control","template":"Putting [something] next to [something]","placeholders":["comb","remote control"]}, +{"id":"121899","label":"putting paper on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["paper","table"]}, +{"id":"67126","label":"twisting nail polish cap","template":"Twisting [something]","placeholders":["nail polish cap"]}, +{"id":"128649","label":"holding spoon next to fork","template":"Holding [something] next to [something]","placeholders":["spoon","fork"]}, +{"id":"177083","label":"squeezing tube","template":"Squeezing [something]","placeholders":["tube"]}, +{"id":"63501","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"87014","label":"putting highlighter on the edge of desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["highlighter","desk"]}, +{"id":"17220","label":"soda can being deflected from jug","template":"[Something] being deflected from [something]","placeholders":["soda can","jug"]}, +{"id":"218819","label":"pushing pink toothbrush case from right to left","template":"Pushing [something] from right to left","placeholders":["pink toothbrush case"]}, +{"id":"98671","label":"poking a stack of shoes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["shoes"]}, +{"id":"83415","label":"moving phone closer to glasses","template":"Moving [something] closer to [something]","placeholders":["phone","glasses"]}, +{"id":"22851","label":"tipping plastic cup over","template":"Tipping [something] over","placeholders":["plastic cup"]}, +{"id":"50434","label":"trying to pour water into plastic case, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","plastic case"]}, +{"id":"123909","label":"pushing hat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hat"]}, +{"id":"37420","label":"pushing shoe so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe"]}, +{"id":"217280","label":"turning a plastic bottle upside down","template":"Turning [something] upside down","placeholders":["a plastic bottle"]}, +{"id":"208665","label":"putting stone onto stool","template":"Putting [something] onto [something]","placeholders":["stone","stool"]}, +{"id":"181291","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"125396","label":"wiping dirt off of a chair","template":"Wiping [something] off of [something]","placeholders":["dirt","a chair"]}, +{"id":"51189","label":"pushing glue stick from left to right","template":"Pushing [something] from left to right","placeholders":["glue stick"]}, +{"id":"113254","label":"letting lipstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipstick"]}, +{"id":"126230","label":"stuffing a pillow into a case","template":"Stuffing [something] into [something]","placeholders":["a pillow","a case"]}, +{"id":"118682","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"89924","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"210586","label":"pretending to open a dishsoap container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a dishsoap container"]}, +{"id":"47979","label":"poking a card reader so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a card reader"]}, +{"id":"216407","label":"poking a candle holder so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle holder"]}, +{"id":"144763","label":"putting metal next to bowl","template":"Putting [something] next to [something]","placeholders":["metal","bowl"]}, +{"id":"111358","label":"holding gogals over mobile","template":"Holding [something] over [something]","placeholders":["gogals","mobile"]}, +{"id":"175560","label":"moving plastic cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["plastic cup"]}, +{"id":"72810","label":"unfolding a sheet of paper","template":"Unfolding [something]","placeholders":["a sheet of paper"]}, +{"id":"203314","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"175924","label":"lifting eyeglass case with clip on it","template":"Lifting [something] with [something] on it","placeholders":["eyeglass case","clip"]}, +{"id":"185108","label":"moving marker pen away from the camera","template":"Moving [something] away from the camera","placeholders":["marker pen"]}, +{"id":"118934","label":"trying to bend samsung s5 so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["samsung s5"]}, +{"id":"11881","label":"putting 2 hair bands onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bands","red pouch"]}, +{"id":"60583","label":"taking oranges","template":"Taking [one of many similar things on the table]","placeholders":["oranges"]}, +{"id":"218316","label":"holding lid over pot","template":"Holding [something] over [something]","placeholders":["lid","pot"]}, +{"id":"47335","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"144004","label":"holding remote in front of tv","template":"Holding [something] in front of [something]","placeholders":["remote","tv"]}, +{"id":"183131","label":"pushing green bowl from right to left","template":"Pushing [something] from right to left","placeholders":["green bowl"]}, +{"id":"112178","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"167536","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"38232","label":"burying a clothes peg in sand","template":"Burying [something] in [something]","placeholders":["a clothes peg","sand"]}, +{"id":"139106","label":"closing paint bottle","template":"Closing [something]","placeholders":["paint bottle"]}, +{"id":"3629","label":"turning the camera upwards while filming smart phone","template":"Turning the camera upwards while filming [something]","placeholders":["smart phone"]}, +{"id":"174333","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"144303","label":"touching (without moving) a wallet of a table","template":"Touching (without moving) [part] of [something]","placeholders":["a wallet","a table"]}, +{"id":"49396","label":"pretending to open mug without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["mug"]}, +{"id":"62545","label":"taking cube from plastic box","template":"Taking [something] from [somewhere]","placeholders":["cube","plastic box"]}, +{"id":"44413","label":"poking can so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["can"]}, +{"id":"43796","label":"moving a cell phone and a pendrive closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cell phone","a pendrive"]}, +{"id":"175736","label":"moving fork and knife closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","knife"]}, +{"id":"44024","label":"putting a nail cutter upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a nail cutter"]}, +{"id":"211702","label":"showing that plastic glass is empty","template":"Showing that [something] is empty","placeholders":["plastic glass"]}, +{"id":"218097","label":"tilting paper with rule on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper","rule"]}, +{"id":"115721","label":"showing a photo of a mouse to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a mouse"]}, +{"id":"157330","label":"covering bottle with big bottle","template":"Covering [something] with [something]","placeholders":["bottle","big bottle"]}, +{"id":"206521","label":"scooping rice up with spoon","template":"Scooping [something] up with [something]","placeholders":["rice","spoon"]}, +{"id":"112665","label":"putting pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["pen"]}, +{"id":"33210","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"175642","label":"uncovering spoon","template":"Uncovering [something]","placeholders":["spoon"]}, +{"id":"343","label":"tilting book with glass on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","glass"]}, +{"id":"56241","label":"plugging a plug into the wall","template":"Plugging [something] into [something]","placeholders":["a plug","the wall"]}, +{"id":"201792","label":"wiping butter off of plate","template":"Wiping [something] off of [something]","placeholders":["butter","plate"]}, +{"id":"105493","label":"lifting lotion container with pen on it","template":"Lifting [something] with [something] on it","placeholders":["lotion container","pen"]}, +{"id":"166294","label":"putting battery upright on the table","template":"Putting [something] upright on the table","placeholders":["battery"]}, +{"id":"96234","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"34830","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150272","label":"pushing a cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a cup"]}, +{"id":"181209","label":"moving toy closer to spectical box","template":"Moving [something] closer to [something]","placeholders":["toy","spectical box"]}, +{"id":"131666","label":"showing that toy idol is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["toy idol","green bowl"]}, +{"id":"1502","label":"throwing remote control","template":"Throwing [something]","placeholders":["remote control"]}, +{"id":"159438","label":"taking one of many pens","template":"Taking [one of many similar things on the table]","placeholders":["one of many pens"]}, +{"id":"152497","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"180089","label":"moving a phone and a tablet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a phone","a tablet"]}, +{"id":"126896","label":"attaching pen to receipt book","template":"Attaching [something] to [something]","placeholders":["pen","receipt book"]}, +{"id":"64908","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"161398","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"215797","label":"moving a cat figure and a dog figure closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cat figure","a dog figure"]}, +{"id":"190824","label":"sprinkling sugar onto table","template":"Sprinkling [something] onto [something]","placeholders":["sugar","table"]}, +{"id":"44895","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"13147","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"191418","label":"opening purse","template":"Opening [something]","placeholders":["purse"]}, +{"id":"165397","label":"moving duster away from the camera","template":"Moving [something] away from the camera","placeholders":["duster"]}, +{"id":"204196","label":"pretending to put orange onto notebook","template":"Pretending to put [something] onto [something]","placeholders":["orange","notebook"]}, +{"id":"109733","label":"putting oil container","template":"Putting [something similar to other things that are already on the table]","placeholders":["oil container"]}, +{"id":"153700","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"80885","label":"hitting a toy with a toy","template":"Hitting [something] with [something]","placeholders":["a toy","a toy"]}, +{"id":"40485","label":"pushing stick so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stick"]}, +{"id":"89248","label":"holding remote behind pillow","template":"Holding [something] behind [something]","placeholders":["remote","pillow"]}, +{"id":"26433","label":"squeezing a soft ball","template":"Squeezing [something]","placeholders":["a soft ball"]}, +{"id":"26852","label":"moving card down","template":"Moving [something] down","placeholders":["card"]}, +{"id":"122418","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"10108","label":"turning turning bottles water upside down upside down","template":"Turning [something] upside down","placeholders":["turning bottles water upside down"]}, +{"id":"80820","label":"pushing soft tissue roll from left to right","template":"Pushing [something] from left to right","placeholders":["soft tissue roll"]}, +{"id":"176716","label":"moving wooden stick down","template":"Moving [something] down","placeholders":["wooden stick"]}, +{"id":"139197","label":"tilting black file with marker pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","marker pen"]}, +{"id":"115011","label":"moving away from bismuth with your camera","template":"Moving away from [something] with your camera","placeholders":["bismuth"]}, +{"id":"167549","label":"pushing a table so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a table"]}, +{"id":"92197","label":"holding cookbook","template":"Holding [something]","placeholders":["cookbook"]}, +{"id":"102791","label":"closing freezer","template":"Closing [something]","placeholders":["freezer"]}, +{"id":"94572","label":"pouring sand into cup","template":"Pouring [something] into [something]","placeholders":["sand","cup"]}, +{"id":"85114","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"110601","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"100452","label":"stacking 5 blocks","template":"Stacking [number of] [something]","placeholders":["5","blocks"]}, +{"id":"89456","label":"poking plate so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["plate"]}, +{"id":"91409","label":"putting fruit","template":"Putting [something similar to other things that are already on the table]","placeholders":["fruit"]}, +{"id":"214690","label":"pulling two ends of a peace of bread but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a peace of bread"]}, +{"id":"73057","label":"stuffing towel into glass","template":"Stuffing [something] into [something]","placeholders":["towel","glass"]}, +{"id":"205113","label":"moving away from a sandbax with your camera","template":"Moving away from [something] with your camera","placeholders":["a sandbax"]}, +{"id":"24137","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"123975","label":"attaching a sticky note to a sheet of paper","template":"Attaching [something] to [something]","placeholders":["a sticky note","a sheet of paper"]}, +{"id":"50796","label":"taking a tablet out of bottle","template":"Taking [something] out of [something]","placeholders":["a tablet","bottle"]}, +{"id":"138389","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"7369","label":"pushing toy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["toy"]}, +{"id":"73233","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"217426","label":"plugging headphones into laptop","template":"Plugging [something] into [something]","placeholders":["headphones","laptop"]}, +{"id":"199086","label":"turning the camera right while filming hair comb","template":"Turning the camera right while filming [something]","placeholders":["hair comb"]}, +{"id":"103284","label":"unfolding blanket","template":"Unfolding [something]","placeholders":["blanket"]}, +{"id":"156751","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"107504","label":"pretending to open notebook without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notebook"]}, +{"id":"131324","label":"pushing a salt shaker so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a salt shaker"]}, +{"id":"82695","label":"picking pen up","template":"Picking [something] up","placeholders":["pen"]}, +{"id":"23393","label":"pulling two ends of crocheted yarn so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["crocheted yarn"]}, +{"id":"89832","label":"attaching lid to bottle","template":"Attaching [something] to [something]","placeholders":["lid","bottle"]}, +{"id":"87615","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"68182","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"7651","label":"pretending to spread air onto graham cracker","template":"Pretending to spread air onto [something]","placeholders":["graham cracker"]}, +{"id":"180358","label":"poking garbage can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["garbage can"]}, +{"id":"38808","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"140913","label":"pulling two ends of cotton ball so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cotton ball"]}, +{"id":"29698","label":"poking a container so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a container"]}, +{"id":"43316","label":"moving rubix cube away from the camera","template":"Moving [something] away from the camera","placeholders":["rubix cube"]}, +{"id":"176209","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"881","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"127704","label":"taking one rubber band of many similar rubber bands on the table","template":"Taking [one of many similar things on the table]","placeholders":["one rubber band of many similar rubber bands on the table"]}, +{"id":"18224","label":"stuffing cloth rags into plastic cup","template":"Stuffing [something] into [something]","placeholders":["cloth rags","plastic cup"]}, +{"id":"64282","label":"putting pen onto cup","template":"Putting [something] onto [something]","placeholders":["pen","cup"]}, +{"id":"114755","label":"scooping sheet up with pizza cutter","template":"Scooping [something] up with [something]","placeholders":["sheet","pizza cutter"]}, +{"id":"76441","label":"hitting pillow with bottle","template":"Hitting [something] with [something]","placeholders":["pillow","bottle"]}, +{"id":"155249","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"61250","label":"holding watch in front of mouse","template":"Holding [something] in front of [something]","placeholders":["watch","mouse"]}, +{"id":"63281","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"2352","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"205562","label":"uncovering cell phone charger","template":"Uncovering [something]","placeholders":["cell phone charger"]}, +{"id":"150255","label":"showing toy on top of table","template":"Showing [something] on top of [something]","placeholders":["toy","table"]}, +{"id":"70820","label":"throwing clementine in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["clementine"]}, +{"id":"176755","label":"putting a pen and a water bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["a pen","a water bottle"]}, +{"id":"102308","label":"moving cup closer to box","template":"Moving [something] closer to [something]","placeholders":["cup","box"]}, +{"id":"24462","label":"showing that oil is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["oil","bottle"]}, +{"id":"134581","label":"tipping glue bottle over","template":"Tipping [something] over","placeholders":["glue bottle"]}, +{"id":"113790","label":"moving paper and cellphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper","cellphone"]}, +{"id":"115622","label":"pushing a handkerchief so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a handkerchief"]}, +{"id":"40152","label":"bending small envelope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["small envelope"]}, +{"id":"182489","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"21912","label":"putting pen into box","template":"Putting [something] into [something]","placeholders":["pen","box"]}, +{"id":"87965","label":"putting a watch","template":"Putting [something similar to other things that are already on the table]","placeholders":["a watch"]}, +{"id":"56944","label":"pulling beads from left to right","template":"Pulling [something] from left to right","placeholders":["beads"]}, +{"id":"50321","label":"moving car key towards the camera","template":"Moving [something] towards the camera","placeholders":["car key"]}, +{"id":"19086","label":"throwing pillow against wall","template":"Throwing [something] against [something]","placeholders":["pillow","wall"]}, +{"id":"198540","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"29559","label":"stuffing cube into dish","template":"Stuffing [something] into [something]","placeholders":["cube","dish"]}, +{"id":"189827","label":"laying a computer mouse on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a computer mouse"]}, +{"id":"160870","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"92356","label":"hitting books with remote","template":"Hitting [something] with [something]","placeholders":["books","remote"]}, +{"id":"78978","label":"hitting wall with tape","template":"Hitting [something] with [something]","placeholders":["wall","tape"]}, +{"id":"131089","label":"cotton falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cotton"]}, +{"id":"183276","label":"tipping shot glass over","template":"Tipping [something] over","placeholders":["shot glass"]}, +{"id":"189156","label":"stuffing handkerchief into box","template":"Stuffing [something] into [something]","placeholders":["handkerchief","box"]}, +{"id":"28947","label":"stuffing gift into of plastic egg","template":"Stuffing [something] into [something]","placeholders":["gift","of plastic egg"]}, +{"id":"123","label":"picking brush up","template":"Picking [something] up","placeholders":["brush"]}, +{"id":"163918","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"186095","label":"pulling two ends of marker pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["marker pen"]}, +{"id":"210525","label":"letting a can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a can"]}, +{"id":"31780","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"16516","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"132288","label":"lifting up one end of a screwdriver without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a screwdriver"]}, +{"id":"92194","label":"turning a can upside down","template":"Turning [something] upside down","placeholders":["a can"]}, +{"id":"112017","label":"stuffing clothes into a drawer","template":"Stuffing [something] into [something]","placeholders":["clothes","a drawer"]}, +{"id":"205255","label":"hitting backpack with boot","template":"Hitting [something] with [something]","placeholders":["backpack","boot"]}, +{"id":"86971","label":"pretending to pick a marker up","template":"Pretending to pick [something] up","placeholders":["a marker"]}, +{"id":"182072","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"71510","label":"pretending to poke flowers","template":"Pretending to poke [something]","placeholders":["flowers"]}, +{"id":"46199","label":"money falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["money"]}, +{"id":"24643","label":"holding soaps over tooth paste","template":"Holding [something] over [something]","placeholders":["soaps","tooth paste"]}, +{"id":"214953","label":"pretending or trying and failing to twist wooden cylinder","template":"Pretending or trying and failing to twist [something]","placeholders":["wooden cylinder"]}, +{"id":"52020","label":"taking wallet out of trash can","template":"Taking [something] out of [something]","placeholders":["wallet","trash can"]}, +{"id":"112495","label":"throwing umbrella in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["umbrella"]}, +{"id":"97774","label":"laying something on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["something"]}, +{"id":"149051","label":"pretending to open ketchup bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["ketchup bottle"]}, +{"id":"53698","label":"turning the camera left while filming battery","template":"Turning the camera left while filming [something]","placeholders":["battery"]}, +{"id":"150814","label":"turning the camera right while filming wood carving","template":"Turning the camera right while filming [something]","placeholders":["wood carving"]}, +{"id":"151351","label":"piling four blocks up","template":"Piling [something] up","placeholders":["four blocks"]}, +{"id":"124129","label":"putting a mallet underneath a chair","template":"Putting [something] underneath [something]","placeholders":["a mallet","a chair"]}, +{"id":"73868","label":"stuffing a tissue into a cup","template":"Stuffing [something] into [something]","placeholders":["a tissue","a cup"]}, +{"id":"166258","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"187593","label":"plugging cord into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall"]}, +{"id":"207992","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"105620","label":"pulling a coin from behind of a padlock","template":"Pulling [something] from behind of [something]","placeholders":["a coin","a padlock"]}, +{"id":"181124","label":"spinning pin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pin"]}, +{"id":"52271","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"121692","label":"pouring coffee into bowl","template":"Pouring [something] into [something]","placeholders":["coffee","bowl"]}, +{"id":"24136","label":"lifting box with marker on it","template":"Lifting [something] with [something] on it","placeholders":["box","marker"]}, +{"id":"112584","label":"moving cucumber down","template":"Moving [something] down","placeholders":["cucumber"]}, +{"id":"220500","label":"plugging charger into power strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","power strip"]}, +{"id":"3603","label":"pretending to take remote from table","template":"Pretending to take [something] from [somewhere]","placeholders":["remote","table"]}, +{"id":"56863","label":"putting pendrive next to mug","template":"Putting [something] next to [something]","placeholders":["pendrive","mug"]}, +{"id":"176076","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"99295","label":"putting a matchbox upright on the table","template":"Putting [something] upright on the table","placeholders":["a matchbox"]}, +{"id":"139036","label":"putting a rock with other rocks","template":"Putting [something similar to other things that are already on the table]","placeholders":["a rock with other rocks"]}, +{"id":"200343","label":"lifting up one end of spectacle box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spectacle box"]}, +{"id":"74211","label":"stacking 2 toy wheels","template":"Stacking [number of] [something]","placeholders":["2","toy wheels"]}, +{"id":"115291","label":"twisting bottle cap","template":"Twisting [something]","placeholders":["bottle cap"]}, +{"id":"119902","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"81572","label":"lifting a book with a mug on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a mug"]}, +{"id":"114381","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"29493","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"94617","label":"pushing the drawer from left to right","template":"Pushing [something] from left to right","placeholders":["the drawer"]}, +{"id":"151671","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"3115","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"183003","label":"pretending to take smaller box out of larger box","template":"Pretending to take [something] out of [something]","placeholders":["smaller box","larger box"]}, +{"id":"28577","label":"pretending to turn notebook upside down","template":"Pretending to turn [something] upside down","placeholders":["notebook"]}, +{"id":"79373","label":"pushing something onto something","template":"Pushing [something] onto [something]","placeholders":["something","something"]}, +{"id":"146181","label":"moving oil bottle up","template":"Moving [something] up","placeholders":["oil bottle"]}, +{"id":"52432","label":"covering glass with plate","template":"Covering [something] with [something]","placeholders":["glass","plate"]}, +{"id":"70882","label":"putting setquare next to mug","template":"Putting [something] next to [something]","placeholders":["setquare","mug"]}, +{"id":"43899","label":"showing bottle behind shoe","template":"Showing [something] behind [something]","placeholders":["bottle","shoe"]}, +{"id":"85196","label":"lifting eyeglass case up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["eyeglass case"]}, +{"id":"10454","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"215234","label":"pulling a bottle from left to right","template":"Pulling [something] from left to right","placeholders":["a bottle"]}, +{"id":"171041","label":"putting box behind bottle","template":"Putting [something] behind [something]","placeholders":["box","bottle"]}, +{"id":"178993","label":"burying lighter in soil","template":"Burying [something] in [something]","placeholders":["lighter","soil"]}, +{"id":"93184","label":"trying but failing to attach paper to book because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","book"]}, +{"id":"94423","label":"moving coaster across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["coaster"]}, +{"id":"16887","label":"pushing bar soap from left to right","template":"Pushing [something] from left to right","placeholders":["bar soap"]}, +{"id":"104053","label":"hitting my phone with a spoon","template":"Hitting [something] with [something]","placeholders":["my phone","a spoon"]}, +{"id":"185533","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"110332","label":"showing a keyboard next to a mouse","template":"Showing [something] next to [something]","placeholders":["a keyboard","a mouse"]}, +{"id":"24455","label":"letting pipe roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pipe"]}, +{"id":"53062","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"106101","label":"attaching a t-shirt to laundry thread","template":"Attaching [something] to [something]","placeholders":["a t-shirt","laundry thread"]}, +{"id":"120242","label":"taking a ball out of cardboard box","template":"Taking [something] out of [something]","placeholders":["a ball","cardboard box"]}, +{"id":"20994","label":"moving lip gloss and coffee mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lip gloss","coffee mug"]}, +{"id":"73054","label":"moving a cell phone and a pendrive away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cell phone","a pendrive"]}, +{"id":"42151","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"6058","label":"squeezing bar soap","template":"Squeezing [something]","placeholders":["bar soap"]}, +{"id":"93206","label":"holding cup next to phone","template":"Holding [something] next to [something]","placeholders":["cup","phone"]}, +{"id":"92701","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"60986","label":"holding purple balloon pump","template":"Holding [something]","placeholders":["purple balloon pump"]}, +{"id":"148101","label":"holding lighter in front of refrigerator","template":"Holding [something] in front of [something]","placeholders":["lighter","refrigerator"]}, +{"id":"171173","label":"putting a shoe next to a box","template":"Putting [something] next to [something]","placeholders":["a shoe","a box"]}, +{"id":"14519","label":"pulling a toy car from right to left","template":"Pulling [something] from right to left","placeholders":["a toy car"]}, +{"id":"159433","label":"pulling paper out of rift","template":"Pulling [something] out of [something]","placeholders":["paper","rift"]}, +{"id":"47374","label":"pretending to be tearing a plastic bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic bag"]}, +{"id":"131883","label":"pretending or failing to wipe stain off of cloth","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","cloth"]}, +{"id":"192179","label":"pretending to poke a container","template":"Pretending to poke [something]","placeholders":["a container"]}, +{"id":"127954","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"61613","label":"rolling perfume on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["perfume"]}, +{"id":"58108","label":"approaching toothpaste tube with your camera","template":"Approaching [something] with your camera","placeholders":["toothpaste tube"]}, +{"id":"138724","label":"scooping dog food up with a cup","template":"Scooping [something] up with [something]","placeholders":["dog food","a cup"]}, +{"id":"31455","label":"pushing glass award so it spins","template":"Pushing [something] so it spins","placeholders":["glass award"]}, +{"id":"152424","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"97015","label":"pushing a toy tiger so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toy tiger"]}, +{"id":"168066","label":"dropping hairclip next to piggybank","template":"Dropping [something] next to [something]","placeholders":["hairclip","piggybank"]}, +{"id":"25092","label":"moving pencil up","template":"Moving [something] up","placeholders":["pencil"]}, +{"id":"181078","label":"pushing a box with a pencil","template":"Pushing [something] with [something]","placeholders":["a box","a pencil"]}, +{"id":"191177","label":"picking world globe up","template":"Picking [something] up","placeholders":["world globe"]}, +{"id":"84959","label":"moving ribbon up","template":"Moving [something] up","placeholders":["ribbon"]}, +{"id":"111324","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"209867","label":"pushing clip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["clip"]}, +{"id":"37195","label":"showing readymade dress to the camera","template":"Showing [something] to the camera","placeholders":["readymade dress"]}, +{"id":"112667","label":"poking a hole into a piece of cloth","template":"Poking a hole into [something soft]","placeholders":["a piece of cloth"]}, +{"id":"114731","label":"moving the handle of the purse","template":"Moving [part] of [something]","placeholders":["the handle","the purse"]}, +{"id":"77481","label":"turning body cream upside down","template":"Turning [something] upside down","placeholders":["body cream"]}, +{"id":"53960","label":"moving a pen up","template":"Moving [something] up","placeholders":["a pen"]}, +{"id":"181149","label":"plugging a headphone plug into a jack","template":"Plugging [something] into [something]","placeholders":["a headphone plug","a jack"]}, +{"id":"89731","label":"poking clip so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["clip"]}, +{"id":"176925","label":"moving rule away from highlighter pen","template":"Moving [something] away from [something]","placeholders":["rule","highlighter pen"]}, +{"id":"148668","label":"pretending to be tearing a towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a towel"]}, +{"id":"188910","label":"holding a bottle next to a jar","template":"Holding [something] next to [something]","placeholders":["a bottle","a jar"]}, +{"id":"201294","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"9644","label":"moving matchbox down","template":"Moving [something] down","placeholders":["matchbox"]}, +{"id":"143847","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"16722","label":"piling starburst up","template":"Piling [something] up","placeholders":["starburst"]}, +{"id":"41807","label":"moving plate closer to toy car","template":"Moving [something] closer to [something]","placeholders":["plate","toy car"]}, +{"id":"148261","label":"attaching cord to phone","template":"Attaching [something] to [something]","placeholders":["cord","phone"]}, +{"id":"47439","label":"a cover colliding with pen and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a cover","pen"]}, +{"id":"176261","label":"taking comb out of mug","template":"Taking [something] out of [something]","placeholders":["comb","mug"]}, +{"id":"16734","label":"putting coin that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["coin"]}, +{"id":"104588","label":"pretending to put landphone behind monitor","template":"Pretending to put [something] behind [something]","placeholders":["landphone","monitor"]}, +{"id":"25599","label":"moving wheel of bike","template":"Moving [part] of [something]","placeholders":["wheel","bike"]}, +{"id":"56463","label":"lifting up one end of pillow, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pillow"]}, +{"id":"14204","label":"showing horse to the camera","template":"Showing [something] to the camera","placeholders":["horse"]}, +{"id":"122584","label":"uncovering a cooking pan","template":"Uncovering [something]","placeholders":["a cooking pan"]}, +{"id":"100906","label":"dropping medicine bottle onto a medicine bottle","template":"Dropping [something] onto [something]","placeholders":["medicine bottle","a medicine bottle"]}, +{"id":"99226","label":"moving pencil sharpner away from pen","template":"Moving [something] away from [something]","placeholders":["pencil sharpner","pen"]}, +{"id":"207527","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"121842","label":"putting 1 laptop onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","laptop","chair"]}, +{"id":"74886","label":"plugging phone charger into wall","template":"Plugging [something] into [something]","placeholders":["phone charger","wall"]}, +{"id":"195465","label":"rolling orange on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["orange"]}, +{"id":"39731","label":"pretending to open closet door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["closet door"]}, +{"id":"140637","label":"pushing carton so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["carton"]}, +{"id":"149622","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"23178","label":"pulling small book from left to right","template":"Pulling [something] from left to right","placeholders":["small book"]}, +{"id":"156427","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"773","label":"showing calculator on top of printer","template":"Showing [something] on top of [something]","placeholders":["calculator","printer"]}, +{"id":"192598","label":"lifting plate with glasses on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glasses"]}, +{"id":"50045","label":"removing the book, revealing the key behind","template":"Removing [something], revealing [something] behind","placeholders":["the book","the key"]}, +{"id":"131362","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"40547","label":"turning the camera right while filming blanket","template":"Turning the camera right while filming [something]","placeholders":["blanket"]}, +{"id":"64291","label":"pretending to pour water out of the bottle, but the bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","the bottle","the bottle"]}, +{"id":"43039","label":"stacking three books","template":"Stacking [number of] [something]","placeholders":["three","books"]}, +{"id":"183302","label":"poking ball so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ball"]}, +{"id":"84842","label":"pushing paper cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper cup"]}, +{"id":"154845","label":"poking banana so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["banana"]}, +{"id":"142742","label":"folding sheet of paper","template":"Folding [something]","placeholders":["sheet of paper"]}, +{"id":"425","label":"holding bottle next to fan","template":"Holding [something] next to [something]","placeholders":["bottle","fan"]}, +{"id":"62212","label":"moving charger away from toy","template":"Moving [something] away from [something]","placeholders":["charger","toy"]}, +{"id":"81447","label":"turning something upside down","template":"Turning [something] upside down","placeholders":["something"]}, +{"id":"77720","label":"moving battery closer to pebble","template":"Moving [something] closer to [something]","placeholders":["battery","pebble"]}, +{"id":"219971","label":"trying to bend mobile so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["mobile"]}, +{"id":"113084","label":"lifting tablet with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","mouse"]}, +{"id":"13558","label":"taking a stapler","template":"Taking [one of many similar things on the table]","placeholders":["a stapler"]}, +{"id":"107705","label":"failing to put hand sanitizer into a desk organizer because hand sanitizer does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["hand sanitizer","a desk organizer","hand sanitizer"]}, +{"id":"129871","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"4316","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"148516","label":"bending a slice of bread until it breaks","template":"Bending [something] until it breaks","placeholders":["a slice of bread"]}, +{"id":"138625","label":"pretending to put pen next to holder","template":"Pretending to put [something] next to [something]","placeholders":["pen","holder"]}, +{"id":"61921","label":"pulling coffee cup from left to right","template":"Pulling [something] from left to right","placeholders":["coffee cup"]}, +{"id":"134199","label":"moving hairclip up","template":"Moving [something] up","placeholders":["hairclip"]}, +{"id":"131644","label":"tearing notepad into two pieces","template":"Tearing [something] into two pieces","placeholders":["notepad"]}, +{"id":"181931","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"214887","label":"pushing spice from left to right","template":"Pushing [something] from left to right","placeholders":["spice"]}, +{"id":"129979","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"104939","label":"spinning a marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a marker"]}, +{"id":"176903","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"148472","label":"pulling tablet onto mirror","template":"Pulling [something] onto [something]","placeholders":["tablet","mirror"]}, +{"id":"5328","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"34157","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"11274","label":"touching (without moving) ear of coffeecup","template":"Touching (without moving) [part] of [something]","placeholders":["ear","coffeecup"]}, +{"id":"26564","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"200926","label":"moving away from metal wall art with your camera","template":"Moving away from [something] with your camera","placeholders":["metal wall art"]}, +{"id":"120798","label":"putting a battery upright on the table","template":"Putting [something] upright on the table","placeholders":["a battery"]}, +{"id":"93464","label":"plugging usb into port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","port"]}, +{"id":"51185","label":"pretending to turn glass upside down","template":"Pretending to turn [something] upside down","placeholders":["glass"]}, +{"id":"36819","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"55817","label":"tearing envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["envelope"]}, +{"id":"23745","label":"dropping a wallet behind a bowl","template":"Dropping [something] behind [something]","placeholders":["a wallet","a bowl"]}, +{"id":"93346","label":"pushing cigarette lighter with pencil","template":"Pushing [something] with [something]","placeholders":["cigarette lighter","pencil"]}, +{"id":"134497","label":"plugging usb cable into laptop","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"97421","label":"holding a glass next to a bottle","template":"Holding [something] next to [something]","placeholders":["a glass","a bottle"]}, +{"id":"214742","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"173566","label":"turning perfume bottle upside down","template":"Turning [something] upside down","placeholders":["perfume bottle"]}, +{"id":"207901","label":"hitting container with pen","template":"Hitting [something] with [something]","placeholders":["container","pen"]}, +{"id":"59905","label":"putting orange onto notebook so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["orange","notebook"]}, +{"id":"187446","label":"pushing study table from left to right","template":"Pushing [something] from left to right","placeholders":["study table"]}, +{"id":"102339","label":"throwing a pencil against a wallet","template":"Throwing [something] against [something]","placeholders":["a pencil","a wallet"]}, +{"id":"57036","label":"pushing the shaver so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["the shaver"]}, +{"id":"31006","label":"turning a toy cradle upside down","template":"Turning [something] upside down","placeholders":["a toy cradle"]}, +{"id":"83332","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"96478","label":"unfolding pillowcase","template":"Unfolding [something]","placeholders":["pillowcase"]}, +{"id":"130128","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"16152","label":"digging coin out of flour","template":"Digging [something] out of [something]","placeholders":["coin","flour"]}, +{"id":"97671","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"86389","label":"dropping tube into bowl","template":"Dropping [something] into [something]","placeholders":["tube","bowl"]}, +{"id":"21821","label":"holding cup behind bottle","template":"Holding [something] behind [something]","placeholders":["cup","bottle"]}, +{"id":"78901","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"207707","label":"pouring water onto sink surface","template":"Pouring [something] onto [something]","placeholders":["water","sink surface"]}, +{"id":"163709","label":"plugging wall charger into home outlet","template":"Plugging [something] into [something]","placeholders":["wall charger","home outlet"]}, +{"id":"203364","label":"dropping marker onto table","template":"Dropping [something] onto [something]","placeholders":["marker","table"]}, +{"id":"69101","label":"pulling fingernail clippers from left to right","template":"Pulling [something] from left to right","placeholders":["fingernail clippers"]}, +{"id":"131418","label":"turning the camera right while filming christmas tree","template":"Turning the camera right while filming [something]","placeholders":["christmas tree"]}, +{"id":"189363","label":"pretending to take watch from table","template":"Pretending to take [something] from [somewhere]","placeholders":["watch","table"]}, +{"id":"62447","label":"putting powder bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["powder bottle"]}, +{"id":"204370","label":"pouring grains into a plate","template":"Pouring [something] into [something]","placeholders":["grains","a plate"]}, +{"id":"45558","label":"approaching pink water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["pink water bottle"]}, +{"id":"166929","label":"turning the camera right while filming wheel chair","template":"Turning the camera right while filming [something]","placeholders":["wheel chair"]}, +{"id":"212508","label":"spinning pully so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pully"]}, +{"id":"140485","label":"putting suncreen, a stuffed animal and fake flowers on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["suncreen","a stuffed animal","fake flowers"]}, +{"id":"45463","label":"covering remote with pillow","template":"Covering [something] with [something]","placeholders":["remote","pillow"]}, +{"id":"157606","label":"spinning highlighter pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["highlighter pen"]}, +{"id":"120452","label":"pretending to squeeze remote","template":"Pretending to squeeze [something]","placeholders":["remote"]}, +{"id":"212684","label":"putting 2 sheets of paper onto an envelope","template":"Putting [number of] [something] onto [something]","placeholders":["2","sheets of paper","an envelope"]}, +{"id":"186970","label":"putting roll of paper on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["roll of paper"]}, +{"id":"63801","label":"taking water bottle from table","template":"Taking [something] from [somewhere]","placeholders":["water bottle","table"]}, +{"id":"24807","label":"pretending or failing to wipe marker off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"10028","label":"pretending to throw tissues","template":"Pretending to throw [something]","placeholders":["tissues"]}, +{"id":"168963","label":"lifting a lid up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a lid"]}, +{"id":"134899","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"211057","label":"uncovering blue spoon","template":"Uncovering [something]","placeholders":["blue spoon"]}, +{"id":"187316","label":"moving soap closer to soap","template":"Moving [something] closer to [something]","placeholders":["soap","soap"]}, +{"id":"59378","label":"pushing action camera from left to right","template":"Pushing [something] from left to right","placeholders":["action camera"]}, +{"id":"207085","label":"picking a bottle up","template":"Picking [something] up","placeholders":["a bottle"]}, +{"id":"46863","label":"lifting a surface with paper on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["paper"]}, +{"id":"113421","label":"pretending to pick a pencil case up","template":"Pretending to pick [something] up","placeholders":["a pencil case"]}, +{"id":"102868","label":"holding a battery","template":"Holding [something]","placeholders":["a battery"]}, +{"id":"58248","label":"putting a box upright on the table","template":"Putting [something] upright on the table","placeholders":["a box"]}, +{"id":"34063","label":"pushing a chair from left to right","template":"Pushing [something] from left to right","placeholders":["a chair"]}, +{"id":"107918","label":"putting stapler behind comb","template":"Putting [something] behind [something]","placeholders":["stapler","comb"]}, +{"id":"142422","label":"pouring water into tumbler until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","tumbler"]}, +{"id":"129405","label":"notice paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["notice paper"]}, +{"id":"178608","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"70778","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"73228","label":"throwing remote control","template":"Throwing [something]","placeholders":["remote control"]}, +{"id":"164826","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"141418","label":"covering a pen with a sweater","template":"Covering [something] with [something]","placeholders":["a pen","a sweater"]}, +{"id":"40960","label":"poking a stack of plastic boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["plastic boxes"]}, +{"id":"206599","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"16041","label":"holding fork over plate","template":"Holding [something] over [something]","placeholders":["fork","plate"]}, +{"id":"65977","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"99091","label":"moving scissors and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["scissors","scissors"]}, +{"id":"70159","label":"putting a cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["a cup"]}, +{"id":"109071","label":"putting 3 breads onto plate","template":"Putting [number of] [something] onto [something]","placeholders":["3","breads","plate"]}, +{"id":"178872","label":"moving paper of pile of papers","template":"Moving [part] of [something]","placeholders":["paper","pile of papers"]}, +{"id":"137184","label":"taking a glass","template":"Taking [one of many similar things on the table]","placeholders":["a glass"]}, +{"id":"8827","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"11335","label":"pushing a potholder so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a potholder"]}, +{"id":"23262","label":"putting pen into bag","template":"Putting [something] into [something]","placeholders":["pen","bag"]}, +{"id":"171455","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"139537","label":"lifting a box with a cottonball on it","template":"Lifting [something] with [something] on it","placeholders":["a box","a cottonball"]}, +{"id":"136113","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"181302","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"163458","label":"lifting wood log up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wood log"]}, +{"id":"36775","label":"closing carton","template":"Closing [something]","placeholders":["carton"]}, +{"id":"180081","label":"putting a spoon into a cup","template":"Putting [something] into [something]","placeholders":["a spoon","a cup"]}, +{"id":"93609","label":"dropping a matchbox onto a plate","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a plate"]}, +{"id":"144967","label":"wiping juice off of table","template":"Wiping [something] off of [something]","placeholders":["juice","table"]}, +{"id":"39036","label":"poking a stack of clementines so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["clementines"]}, +{"id":"142843","label":"pushing a tomato so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a tomato"]}, +{"id":"9338","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"63057","label":"taking bottle from bench","template":"Taking [something] from [somewhere]","placeholders":["bottle","bench"]}, +{"id":"176392","label":"putting bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle"]}, +{"id":"141612","label":"stuffing a toy into a bag","template":"Stuffing [something] into [something]","placeholders":["a toy","a bag"]}, +{"id":"29307","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"208462","label":"pouring water out of spoon","template":"Pouring [something] out of [something]","placeholders":["water","spoon"]}, +{"id":"75993","label":"putting green bowl on a surface","template":"Putting [something] on a surface","placeholders":["green bowl"]}, +{"id":"130409","label":"dropping a coin into a bowl","template":"Dropping [something] into [something]","placeholders":["a coin","a bowl"]}, +{"id":"205323","label":"tipping water bottle with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["water bottle","water","water"]}, +{"id":"148533","label":"cup falling like a rock","template":"[Something] falling like a rock","placeholders":["cup"]}, +{"id":"50385","label":"poking tube so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tube"]}, +{"id":"133940","label":"plugging a power cord into a laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a power cord","a laptop"]}, +{"id":"208307","label":"putting red spoon and battery on the table","template":"Putting [something] and [something] on the table","placeholders":["red spoon","battery"]}, +{"id":"38329","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"15503","label":"putting badminton bat upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["badminton bat"]}, +{"id":"101726","label":"stacking 3 plates","template":"Stacking [number of] [something]","placeholders":["3","plates"]}, +{"id":"64623","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"85026","label":"turning a peanut butter jar upside down","template":"Turning [something] upside down","placeholders":["a peanut butter jar"]}, +{"id":"91836","label":"lifting up one end of pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pen"]}, +{"id":"125220","label":"sprinkling water onto sink","template":"Sprinkling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"147016","label":"pushing pear from right to left","template":"Pushing [something] from right to left","placeholders":["pear"]}, +{"id":"178035","label":"pretending to take coin out of wallet","template":"Pretending to take [something] out of [something]","placeholders":["coin","wallet"]}, +{"id":"8151","label":"showing glasses on top of pillow","template":"Showing [something] on top of [something]","placeholders":["glasses","pillow"]}, +{"id":"48289","label":"throwing spinner onto a surface","template":"Throwing [something] onto a surface","placeholders":["spinner"]}, +{"id":"101653","label":"taking plastic cap out of glass","template":"Taking [something] out of [something]","placeholders":["plastic cap","glass"]}, +{"id":"11977","label":"lifting up one end of a drumstick without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a drumstick"]}, +{"id":"196402","label":"showing scissors behind mug","template":"Showing [something] behind [something]","placeholders":["scissors","mug"]}, +{"id":"10189","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"218573","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"135434","label":"plugging a charger into a circuit","template":"Plugging [something] into [something]","placeholders":["a charger","a circuit"]}, +{"id":"188313","label":"tilting box with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","phone"]}, +{"id":"121727","label":"folding a tissue","template":"Folding [something]","placeholders":["a tissue"]}, +{"id":"55262","label":"moving pencil and snap off blade closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pencil","snap off blade"]}, +{"id":"110296","label":"throwing ball against wall","template":"Throwing [something] against [something]","placeholders":["ball","wall"]}, +{"id":"74538","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"174830","label":"putting bottle and box on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","box"]}, +{"id":"149422","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"142478","label":"moving mug and candle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["mug","candle"]}, +{"id":"124677","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"34199","label":"turning a wine glass upside down","template":"Turning [something] upside down","placeholders":["a wine glass"]}, +{"id":"79548","label":"tearing a flyer just a little bit","template":"Tearing [something] just a little bit","placeholders":["a flyer"]}, +{"id":"97210","label":"failing to put lid into cup because lid does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["lid","cup","lid"]}, +{"id":"5810","label":"pulling a napkin out of container","template":"Pulling [something] out of [something]","placeholders":["a napkin","container"]}, +{"id":"157563","label":"moving mouse and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mouse","remote"]}, +{"id":"34926","label":"taking a pair of scissors","template":"Taking [one of many similar things on the table]","placeholders":["a pair of scissors"]}, +{"id":"128376","label":"pretending to take phone out of case","template":"Pretending to take [something] out of [something]","placeholders":["phone","case"]}, +{"id":"200748","label":"pouring suji into bowl","template":"Pouring [something] into [something]","placeholders":["suji","bowl"]}, +{"id":"20466","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"73180","label":"throwing a rag against the wall","template":"Throwing [something] against [something]","placeholders":["a rag","the wall"]}, +{"id":"208794","label":"holding a bottle","template":"Holding [something]","placeholders":["a bottle"]}, +{"id":"198068","label":"pretending to be tearing a cutting board","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cutting board"]}, +{"id":"131308","label":"moving make up closer to a soda","template":"Moving [something] closer to [something]","placeholders":["make up","a soda"]}, +{"id":"61617","label":"pushing a card so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a card"]}, +{"id":"213276","label":"putting empty treat bar wrap on a surface","template":"Putting [something] on a surface","placeholders":["empty treat bar wrap"]}, +{"id":"75931","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"175595","label":"picking pillow up","template":"Picking [something] up","placeholders":["pillow"]}, +{"id":"52402","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"116399","label":"pouring water onto a chair","template":"Pouring [something] onto [something]","placeholders":["water","a chair"]}, +{"id":"15896","label":"trying to pour oil into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["oil","glass"]}, +{"id":"115808","label":"pouring beer out of a can","template":"Pouring [something] out of [something]","placeholders":["beer","a can"]}, +{"id":"173157","label":"approaching cup with your camera","template":"Approaching [something] with your camera","placeholders":["cup"]}, +{"id":"23234","label":"uncovering purse","template":"Uncovering [something]","placeholders":["purse"]}, +{"id":"15783","label":"pushing apple from left to right","template":"Pushing [something] from left to right","placeholders":["apple"]}, +{"id":"30078","label":"tilting a dvd player with a remote control on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a dvd player","a remote control"]}, +{"id":"135596","label":"moving a smartphone away from a calculator","template":"Moving [something] away from [something]","placeholders":["a smartphone","a calculator"]}, +{"id":"182519","label":"pulling car out of bag","template":"Pulling [something] out of [something]","placeholders":["car","bag"]}, +{"id":"14898","label":"lifting a notebook with a jar on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a jar"]}, +{"id":"9660","label":"throwing a balled up tissue against a wall","template":"Throwing [something] against [something]","placeholders":["a balled up tissue","a wall"]}, +{"id":"128300","label":"pouring water into a wine glass","template":"Pouring [something] into [something]","placeholders":["water","a wine glass"]}, +{"id":"217935","label":"plugging a charging cable into a charging port","template":"Plugging [something] into [something]","placeholders":["a charging cable","a charging port"]}, +{"id":"139854","label":"putting stapler into cup","template":"Putting [something] into [something]","placeholders":["stapler","cup"]}, +{"id":"143118","label":"pretending to be tearing a coaster","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a coaster"]}, +{"id":"1686","label":"pulling paper out of book","template":"Pulling [something] out of [something]","placeholders":["paper","book"]}, +{"id":"169062","label":"showing that water is inside a glass","template":"Showing that [something] is inside [something]","placeholders":["water","a glass"]}, +{"id":"215545","label":"lifting a remote control with a comb on it","template":"Lifting [something] with [something] on it","placeholders":["a remote control","a comb"]}, +{"id":"70553","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"40456","label":"turning the camera upwards while filming tooth paste","template":"Turning the camera upwards while filming [something]","placeholders":["tooth paste"]}, +{"id":"181516","label":"putting elephant statue on a surface","template":"Putting [something] on a surface","placeholders":["elephant statue"]}, +{"id":"79254","label":"pulling pillow out of bed","template":"Pulling [something] out of [something]","placeholders":["pillow","bed"]}, +{"id":"89362","label":"trying but failing to attach wire to phone because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["wire","phone"]}, +{"id":"136173","label":"putting a plate into the sink","template":"Putting [something] into [something]","placeholders":["a plate","the sink"]}, +{"id":"150165","label":"pulling two ends of elastic cloth so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["elastic cloth"]}, +{"id":"129033","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"172694","label":"stone falling like a rock","template":"[Something] falling like a rock","placeholders":["stone"]}, +{"id":"114147","label":"moving geometric compass down","template":"Moving [something] down","placeholders":["geometric compass"]}, +{"id":"6806","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"38045","label":"throwing something in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["something"]}, +{"id":"195699","label":"dropping comb into glass","template":"Dropping [something] into [something]","placeholders":["comb","glass"]}, +{"id":"186819","label":"putting clip on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["clip","slab"]}, +{"id":"79888","label":"holding glass over mug","template":"Holding [something] over [something]","placeholders":["glass","mug"]}, +{"id":"54111","label":"dropping a deck of cards onto a fidget spinner","template":"Dropping [something] onto [something]","placeholders":["a deck of cards","a fidget spinner"]}, +{"id":"133453","label":"letting a tenis ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a tenis ball"]}, +{"id":"57642","label":"plugging charger into powerpoint","template":"Plugging [something] into [something]","placeholders":["charger","powerpoint"]}, +{"id":"59109","label":"bending chocolate bar until it breaks","template":"Bending [something] until it breaks","placeholders":["chocolate bar"]}, +{"id":"78142","label":"holding toy next to jar","template":"Holding [something] next to [something]","placeholders":["toy","jar"]}, +{"id":"176739","label":"newspaper falling like a rock","template":"[Something] falling like a rock","placeholders":["newspaper"]}, +{"id":"22091","label":"taking tv remote from ground","template":"Taking [something] from [somewhere]","placeholders":["tv remote","ground"]}, +{"id":"147834","label":"dropping battery next to yellow container","template":"Dropping [something] next to [something]","placeholders":["battery","yellow container"]}, +{"id":"140733","label":"moving a shovel of a toy excavator","template":"Moving [part] of [something]","placeholders":["a shovel","a toy excavator"]}, +{"id":"23054","label":"holding broom in front of car","template":"Holding [something] in front of [something]","placeholders":["broom","car"]}, +{"id":"71752","label":"opening trash can","template":"Opening [something]","placeholders":["trash can"]}, +{"id":"39269","label":"poking a stack of dice so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["dice"]}, +{"id":"68317","label":"putting small box on the edge of bigger box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["small box","bigger box"]}, +{"id":"39513","label":"failing to put dish into candle because dish does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["dish","candle","dish"]}, +{"id":"193511","label":"putting a roll of masking tape on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a roll of masking tape"]}, +{"id":"145926","label":"lifting a notebook with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a pen"]}, +{"id":"41326","label":"pretending to pour wine out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["wine","bottle","bottle"]}, +{"id":"132839","label":"stuffing tissues into a tissue box","template":"Stuffing [something] into [something]","placeholders":["tissues","a tissue box"]}, +{"id":"125693","label":"holding can over remote","template":"Holding [something] over [something]","placeholders":["can","remote"]}, +{"id":"125419","label":"pretending to spread air onto plate","template":"Pretending to spread air onto [something]","placeholders":["plate"]}, +{"id":"209592","label":"showing that toy car is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["toy car","spectacle box"]}, +{"id":"9855","label":"spreading rice onto plastic-lid","template":"Spreading [something] onto [something]","placeholders":["rice","plastic-lid"]}, +{"id":"39056","label":"poking massage pillow so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["massage pillow"]}, +{"id":"207570","label":"attaching a note to a notice board","template":"Attaching [something] to [something]","placeholders":["a note","a notice board"]}, +{"id":"156325","label":"pushing card onto puzzle","template":"Pushing [something] onto [something]","placeholders":["card","puzzle"]}, +{"id":"219722","label":"holding toothbrush in front of toothpaste","template":"Holding [something] in front of [something]","placeholders":["toothbrush","toothpaste"]}, +{"id":"138624","label":"turning spoon upside down","template":"Turning [something] upside down","placeholders":["spoon"]}, +{"id":"92118","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"49215","label":"pretending to sprinkle air onto scissors","template":"Pretending to sprinkle air onto [something]","placeholders":["scissors"]}, +{"id":"178041","label":"trying but failing to attach card to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["card","fridge"]}, +{"id":"175312","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"10501","label":"putting a fork, a spoon and a knife on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a fork","a spoon","a knife"]}, +{"id":"78336","label":"moving toothbrush and toothpaste so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toothbrush","toothpaste"]}, +{"id":"175704","label":"throwing a paciphier in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a paciphier"]}, +{"id":"16134","label":"pulling metal keys from left to right","template":"Pulling [something] from left to right","placeholders":["metal keys"]}, +{"id":"148138","label":"pulling book from left to right","template":"Pulling [something] from left to right","placeholders":["book"]}, +{"id":"85095","label":"lifting cup with marker on it","template":"Lifting [something] with [something] on it","placeholders":["cup","marker"]}, +{"id":"10568","label":"throwing marker","template":"Throwing [something]","placeholders":["marker"]}, +{"id":"7064","label":"holding a glass in front of a pillar","template":"Holding [something] in front of [something]","placeholders":["a glass","a pillar"]}, +{"id":"107442","label":"approaching door with your camera","template":"Approaching [something] with your camera","placeholders":["door"]}, +{"id":"63915","label":"dropping a comb in front of a pen","template":"Dropping [something] in front of [something]","placeholders":["a comb","a pen"]}, +{"id":"171460","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"202831","label":"putting book that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["book"]}, +{"id":"76402","label":"pretending to take supplement from cabinet","template":"Pretending to take [something] from [somewhere]","placeholders":["supplement","cabinet"]}, +{"id":"162105","label":"pushing mug so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["mug"]}, +{"id":"35742","label":"putting a pen and a pen on the table","template":"Putting [something] and [something] on the table","placeholders":["a pen","a pen"]}, +{"id":"195049","label":"spinning glass spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["glass spinner"]}, +{"id":"72327","label":"opening a children's book","template":"Opening [something]","placeholders":["a children's book"]}, +{"id":"207394","label":"taking a sweet","template":"Taking [one of many similar things on the table]","placeholders":["a sweet"]}, +{"id":"123869","label":"moving nail polish bottle and post it notes away from each other","template":"Moving [something] and [something] away from each other","placeholders":["nail polish bottle","post it notes"]}, +{"id":"180889","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"110444","label":"tilting a tape with a coaster on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a tape","a coaster"]}, +{"id":"94899","label":"taking one binder clip of many similar binder clips on the table","template":"Taking [one of many similar things on the table]","placeholders":["one binder clip of many similar binder clips on the table"]}, +{"id":"109650","label":"pushing metal box from left to right","template":"Pushing [something] from left to right","placeholders":["metal box"]}, +{"id":"160198","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"196745","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"74580","label":"moving calculator up","template":"Moving [something] up","placeholders":["calculator"]}, +{"id":"26536","label":"failing to put an orange into a plastic bottle because the orange does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["an orange","a plastic bottle","the orange"]}, +{"id":"2957","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"51260","label":"uncovering a coffee mug","template":"Uncovering [something]","placeholders":["a coffee mug"]}, +{"id":"69437","label":"pretending to pick book up","template":"Pretending to pick [something] up","placeholders":["book"]}, +{"id":"24028","label":"showing that pieces is inside glass","template":"Showing that [something] is inside [something]","placeholders":["pieces","glass"]}, +{"id":"38946","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"11340","label":"moving wolf and wolf closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wolf","wolf"]}, +{"id":"92976","label":"tearing carbon paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["carbon paper"]}, +{"id":"65527","label":"pretending to turn glass upside down","template":"Pretending to turn [something] upside down","placeholders":["glass"]}, +{"id":"109278","label":"closing a cupboard door","template":"Closing [something]","placeholders":["a cupboard door"]}, +{"id":"167504","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"49253","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"202121","label":"stuffing cookie into jar","template":"Stuffing [something] into [something]","placeholders":["cookie","jar"]}, +{"id":"145707","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"1524","label":"covering mobile with towel","template":"Covering [something] with [something]","placeholders":["mobile","towel"]}, +{"id":"189933","label":"moving caps and caps closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["caps","caps"]}, +{"id":"148236","label":"throwing ball against mirror","template":"Throwing [something] against [something]","placeholders":["ball","mirror"]}, +{"id":"43321","label":"dropping neckalce behind door","template":"Dropping [something] behind [something]","placeholders":["neckalce","door"]}, +{"id":"185607","label":"holding straw in front of sink","template":"Holding [something] in front of [something]","placeholders":["straw","sink"]}, +{"id":"27569","label":"throwing pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pillow"]}, +{"id":"121203","label":"taking book out of backpack","template":"Taking [something] out of [something]","placeholders":["book","backpack"]}, +{"id":"9239","label":"tipping can over","template":"Tipping [something] over","placeholders":["can"]}, +{"id":"154513","label":"opening lipstick","template":"Opening [something]","placeholders":["lipstick"]}, +{"id":"191567","label":"taking knife","template":"Taking [one of many similar things on the table]","placeholders":["knife"]}, +{"id":"16725","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"54945","label":"pushing scissors from left to right","template":"Pushing [something] from left to right","placeholders":["scissors"]}, +{"id":"72364","label":"squeezing a swiss army knife","template":"Squeezing [something]","placeholders":["a swiss army knife"]}, +{"id":"28799","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"217399","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"204638","label":"aqua colliding with aqua and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["aqua","aqua"]}, +{"id":"215093","label":"letting a jar roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a jar"]}, +{"id":"132915","label":"dropping a matchbox onto a comb","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a comb"]}, +{"id":"71345","label":"showing photo to the camera","template":"Showing [something] to the camera","placeholders":["photo"]}, +{"id":"2342","label":"dropping cat onto cube","template":"Dropping [something] onto [something]","placeholders":["cat","cube"]}, +{"id":"141321","label":"taking garlic","template":"Taking [one of many similar things on the table]","placeholders":["garlic"]}, +{"id":"201906","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"101578","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"101394","label":"turning the camera downwards while filming scissors","template":"Turning the camera downwards while filming [something]","placeholders":["scissors"]}, +{"id":"218001","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"28687","label":"pushing small gear wheel from right to left","template":"Pushing [something] from right to left","placeholders":["small gear wheel"]}, +{"id":"6383","label":"stacking 4 envelopes","template":"Stacking [number of] [something]","placeholders":["4","envelopes"]}, +{"id":"32706","label":"twisting an apple","template":"Twisting [something]","placeholders":["an apple"]}, +{"id":"186664","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"121894","label":"showing a photo of man and a horse to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man and a horse"]}, +{"id":"9900","label":"tearing brochure into two pieces","template":"Tearing [something] into two pieces","placeholders":["brochure"]}, +{"id":"38085","label":"pulling anchor from right to left","template":"Pulling [something] from right to left","placeholders":["anchor"]}, +{"id":"58864","label":"holding onion behind mug","template":"Holding [something] behind [something]","placeholders":["onion","mug"]}, +{"id":"176035","label":"poking glasses box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glasses box"]}, +{"id":"39063","label":"tipping an empty water bottle over","template":"Tipping [something] over","placeholders":["an empty water bottle"]}, +{"id":"18604","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"116797","label":"picking plastic basket up","template":"Picking [something] up","placeholders":["plastic basket"]}, +{"id":"57322","label":"poking a mug so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a mug"]}, +{"id":"89713","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"51585","label":"holding keyboard behind 3g dongle","template":"Holding [something] behind [something]","placeholders":["keyboard","3g dongle"]}, +{"id":"132724","label":"holding paper over candle","template":"Holding [something] over [something]","placeholders":["paper","candle"]}, +{"id":"67512","label":"uncovering waterbottle","template":"Uncovering [something]","placeholders":["waterbottle"]}, +{"id":"102347","label":"letting small bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["small bottle"]}, +{"id":"173148","label":"pushing something from left to right","template":"Pushing [something] from left to right","placeholders":["something"]}, +{"id":"98174","label":"putting a tape upright on the table","template":"Putting [something] upright on the table","placeholders":["a tape"]}, +{"id":"122967","label":"turning waterbottle upside down","template":"Turning [something] upside down","placeholders":["waterbottle"]}, +{"id":"102714","label":"opening notebook","template":"Opening [something]","placeholders":["notebook"]}, +{"id":"4420","label":"turning the camera right while filming sandals","template":"Turning the camera right while filming [something]","placeholders":["sandals"]}, +{"id":"15567","label":"dropping lighter behind box","template":"Dropping [something] behind [something]","placeholders":["lighter","box"]}, +{"id":"92811","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"102777","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"54595","label":"moving red object up","template":"Moving [something] up","placeholders":["red object"]}, +{"id":"9011","label":"poking baby toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["baby toy"]}, +{"id":"94610","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"213048","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"104330","label":"lifting a surface with ring on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ring"]}, +{"id":"17547","label":"moving scissors away from a box","template":"Moving [something] away from [something]","placeholders":["scissors","a box"]}, +{"id":"4720","label":"pouring water into a bowl until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a bowl"]}, +{"id":"34858","label":"pushing apple so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["apple"]}, +{"id":"192198","label":"moving away from hat with your camera","template":"Moving away from [something] with your camera","placeholders":["hat"]}, +{"id":"206519","label":"turning the camera right while filming wastebin","template":"Turning the camera right while filming [something]","placeholders":["wastebin"]}, +{"id":"115917","label":"showing big bowl to the camera","template":"Showing [something] to the camera","placeholders":["big bowl"]}, +{"id":"68993","label":"taking ball","template":"Taking [one of many similar things on the table]","placeholders":["ball"]}, +{"id":"72492","label":"pretending to be tearing pillow","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pillow"]}, +{"id":"198750","label":"moving jar and bowl so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["jar","bowl"]}, +{"id":"160141","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"153598","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"38956","label":"stuffing cloth into jar","template":"Stuffing [something] into [something]","placeholders":["cloth","jar"]}, +{"id":"175751","label":"uncovering a can","template":"Uncovering [something]","placeholders":["a can"]}, +{"id":"51038","label":"moving remote away from remote","template":"Moving [something] away from [something]","placeholders":["remote","remote"]}, +{"id":"65838","label":"pretending to open the bathroom cabinet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the bathroom cabinet"]}, +{"id":"71540","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"197098","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"25173","label":"spinning mobile phone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["mobile phone"]}, +{"id":"57157","label":"throwing sandal against floor","template":"Throwing [something] against [something]","placeholders":["sandal","floor"]}, +{"id":"216535","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"218452","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"191690","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"195575","label":"putting a pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pen"]}, +{"id":"119916","label":"closing wallet","template":"Closing [something]","placeholders":["wallet"]}, +{"id":"77710","label":"pretending to close note book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["note book"]}, +{"id":"151204","label":"moving pendrive and eye kajal away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pendrive","eye kajal"]}, +{"id":"1764","label":"stuffing cloth into jar","template":"Stuffing [something] into [something]","placeholders":["cloth","jar"]}, +{"id":"163880","label":"holding headphone in front of laptop","template":"Holding [something] in front of [something]","placeholders":["headphone","laptop"]}, +{"id":"14242","label":"attaching carabiner to handle","template":"Attaching [something] to [something]","placeholders":["carabiner","handle"]}, +{"id":"11925","label":"dropping a pen into a box","template":"Dropping [something] into [something]","placeholders":["a pen","a box"]}, +{"id":"220473","label":"putting candy that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["candy"]}, +{"id":"133077","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"25820","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"90063","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"76797","label":"taking telephone receiver from table","template":"Taking [something] from [somewhere]","placeholders":["telephone receiver","table"]}, +{"id":"101223","label":"a block falling like a rock","template":"[Something] falling like a rock","placeholders":["a block"]}, +{"id":"179977","label":"pretending to poke a drum","template":"Pretending to poke [something]","placeholders":["a drum"]}, +{"id":"94801","label":"removing napkin holder, revealing salt and pepper behind","template":"Removing [something], revealing [something] behind","placeholders":["napkin holder","salt and pepper"]}, +{"id":"133517","label":"wiping toothpaste off of notepad","template":"Wiping [something] off of [something]","placeholders":["toothpaste","notepad"]}, +{"id":"115750","label":"putting a pillow that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a pillow"]}, +{"id":"139242","label":"pushing notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["notebook"]}, +{"id":"173775","label":"stuffing a scarf into a helmet","template":"Stuffing [something] into [something]","placeholders":["a scarf","a helmet"]}, +{"id":"171355","label":"pretending to pick a stapler up","template":"Pretending to pick [something] up","placeholders":["a stapler"]}, +{"id":"211062","label":"taking plastic skull","template":"Taking [one of many similar things on the table]","placeholders":["plastic skull"]}, +{"id":"138308","label":"moving candle and candle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["candle","candle"]}, +{"id":"214999","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"139344","label":"pulling a calculator from left to right","template":"Pulling [something] from left to right","placeholders":["a calculator"]}, +{"id":"132487","label":"pushing a cloth clip from right to left","template":"Pushing [something] from right to left","placeholders":["a cloth clip"]}, +{"id":"127399","label":"tilting paper with paper ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","paper ball"]}, +{"id":"119151","label":"putting a portable lamp upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a portable lamp"]}, +{"id":"129899","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"205794","label":"putting dvd case on a surface","template":"Putting [something] on a surface","placeholders":["dvd case"]}, +{"id":"184002","label":"trying but failing to attach a paper to a wooden surface because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","a wooden surface"]}, +{"id":"63842","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"80435","label":"pretending to put rubber into mug","template":"Pretending to put [something] into [something]","placeholders":["rubber","mug"]}, +{"id":"206077","label":"putting paper clip","template":"Putting [something similar to other things that are already on the table]","placeholders":["paper clip"]}, +{"id":"65777","label":"lifting a surface with lid on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["lid"]}, +{"id":"203989","label":"moving eraser and glue stick closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eraser","glue stick"]}, +{"id":"193728","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"65064","label":"showing that a trashcan is empty","template":"Showing that [something] is empty","placeholders":["a trashcan"]}, +{"id":"149423","label":"moving toy closer to clip","template":"Moving [something] closer to [something]","placeholders":["toy","clip"]}, +{"id":"139264","label":"pushing android phone so it spins","template":"Pushing [something] so it spins","placeholders":["android phone"]}, +{"id":"4331","label":"turning white out upside down","template":"Turning [something] upside down","placeholders":["white out"]}, +{"id":"213396","label":"showing that something is empty is empty","template":"Showing that [something] is empty","placeholders":["something is empty"]}, +{"id":"53345","label":"covering waterbottle with blanket","template":"Covering [something] with [something]","placeholders":["waterbottle","blanket"]}, +{"id":"142546","label":"showing usb to the camera","template":"Showing [something] to the camera","placeholders":["usb"]}, +{"id":"39875","label":"turning the camera right while filming toy giraffe","template":"Turning the camera right while filming [something]","placeholders":["toy giraffe"]}, +{"id":"135849","label":"throwing broken charger","template":"Throwing [something]","placeholders":["broken charger"]}, +{"id":"89443","label":"moving a cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cup"]}, +{"id":"214050","label":"pulling mouse from left to right","template":"Pulling [something] from left to right","placeholders":["mouse"]}, +{"id":"82015","label":"opening table drawer","template":"Opening [something]","placeholders":["table drawer"]}, +{"id":"77655","label":"pretending to close notebook without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notebook"]}, +{"id":"161938","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"24069","label":"pouring water onto wooden floor","template":"Pouring [something] onto [something]","placeholders":["water","wooden floor"]}, +{"id":"49858","label":"moving red pot holder up","template":"Moving [something] up","placeholders":["red pot holder"]}, +{"id":"62529","label":"dropping biscuit packet next to water-bottle","template":"Dropping [something] next to [something]","placeholders":["biscuit packet","water-bottle"]}, +{"id":"65409","label":"poking a stack of coasters without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["coasters"]}, +{"id":"96827","label":"twisting a towel","template":"Twisting [something]","placeholders":["a towel"]}, +{"id":"186931","label":"folding calendar","template":"Folding [something]","placeholders":["calendar"]}, +{"id":"53506","label":"unfolding sheet","template":"Unfolding [something]","placeholders":["sheet"]}, +{"id":"41755","label":"lifting a cantaloupe up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a cantaloupe"]}, +{"id":"99788","label":"putting book next to box","template":"Putting [something] next to [something]","placeholders":["book","box"]}, +{"id":"61137","label":"showing a tissue box next to a mug","template":"Showing [something] next to [something]","placeholders":["a tissue box","a mug"]}, +{"id":"80290","label":"trying but failing to attach plastic to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["plastic","wall"]}, +{"id":"180401","label":"pushing food container so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["food container"]}, +{"id":"171136","label":"picking eraser up","template":"Picking [something] up","placeholders":["eraser"]}, +{"id":"84354","label":"moving a pencil away from scissors","template":"Moving [something] away from [something]","placeholders":["a pencil","scissors"]}, +{"id":"119099","label":"hitting bed with belt","template":"Hitting [something] with [something]","placeholders":["bed","belt"]}, +{"id":"158294","label":"pushing clip box from right to left","template":"Pushing [something] from right to left","placeholders":["clip box"]}, +{"id":"88347","label":"closing purse","template":"Closing [something]","placeholders":["purse"]}, +{"id":"146130","label":"laying a salt shaker on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a salt shaker"]}, +{"id":"208669","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"77457","label":"opening a container","template":"Opening [something]","placeholders":["a container"]}, +{"id":"74201","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"28216","label":"turning coffee kuerig cup upside down","template":"Turning [something] upside down","placeholders":["coffee kuerig cup"]}, +{"id":"135785","label":"lifting box with pen on it","template":"Lifting [something] with [something] on it","placeholders":["box","pen"]}, +{"id":"31720","label":"pushing cable so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cable"]}, +{"id":"202743","label":"pretending to sprinkle air onto a cracker","template":"Pretending to sprinkle air onto [something]","placeholders":["a cracker"]}, +{"id":"53562","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"123960","label":"dropping scoop next to canister","template":"Dropping [something] next to [something]","placeholders":["scoop","canister"]}, +{"id":"194068","label":"showing soft tissue roll to the camera","template":"Showing [something] to the camera","placeholders":["soft tissue roll"]}, +{"id":"109720","label":"lifting up one end of a wooden stick without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a wooden stick"]}, +{"id":"16231","label":"pretending to pick glass up","template":"Pretending to pick [something] up","placeholders":["glass"]}, +{"id":"32452","label":"turning a pill bottle upside down","template":"Turning [something] upside down","placeholders":["a pill bottle"]}, +{"id":"26899","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"177191","label":"closing hotbox","template":"Closing [something]","placeholders":["hotbox"]}, +{"id":"172001","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"56752","label":"throwing dust mask in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["dust mask"]}, +{"id":"179142","label":"orange in the sink5 falling like a rock","template":"[Something] falling like a rock","placeholders":["orange in the sink5"]}, +{"id":"48452","label":"pretending to put clothes peg into mug","template":"Pretending to put [something] into [something]","placeholders":["clothes peg","mug"]}, +{"id":"17833","label":"pulling glas from left to right","template":"Pulling [something] from left to right","placeholders":["glas"]}, +{"id":"23202","label":"pulling remote from right to left","template":"Pulling [something] from right to left","placeholders":["remote"]}, +{"id":"169396","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"78795","label":"pulling a book out of a gym bag","template":"Pulling [something] out of [something]","placeholders":["a book","a gym bag"]}, +{"id":"148464","label":"taking teabag out of tin","template":"Taking [something] out of [something]","placeholders":["teabag","tin"]}, +{"id":"91704","label":"putting perfume on a surface","template":"Putting [something] on a surface","placeholders":["perfume"]}, +{"id":"53957","label":"moving banana closer to shoe","template":"Moving [something] closer to [something]","placeholders":["banana","shoe"]}, +{"id":"198453","label":"pretending to pick soap bar up","template":"Pretending to pick [something] up","placeholders":["soap bar"]}, +{"id":"33816","label":"putting crystal","template":"Putting [something similar to other things that are already on the table]","placeholders":["crystal"]}, +{"id":"23275","label":"poking prescription so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["prescription"]}, +{"id":"192617","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"63861","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"144753","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"40909","label":"letting a bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a bottle"]}, +{"id":"152747","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"54561","label":"pretending to put bottle onto book","template":"Pretending to put [something] onto [something]","placeholders":["bottle","book"]}, +{"id":"20872","label":"putting ipad upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["ipad"]}, +{"id":"188211","label":"letting a ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a ball"]}, +{"id":"137455","label":"lifting a surface with ball on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ball"]}, +{"id":"210611","label":"letting a container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a container"]}, +{"id":"158625","label":"tearing a flyer just a little bit","template":"Tearing [something] just a little bit","placeholders":["a flyer"]}, +{"id":"148722","label":"putting book next to other books","template":"Putting [something] next to [something]","placeholders":["book","other books"]}, +{"id":"185049","label":"putting 2 toy wheels onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","toy wheels","yellow note"]}, +{"id":"148071","label":"squeezing newspaper","template":"Squeezing [something]","placeholders":["newspaper"]}, +{"id":"203253","label":"twisting a doorknob","template":"Twisting [something]","placeholders":["a doorknob"]}, +{"id":"87836","label":"showing a book behind ink bottle","template":"Showing [something] behind [something]","placeholders":["a book","ink bottle"]}, +{"id":"15767","label":"tilting a purse with a piece of clothing on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a purse","a piece of clothing"]}, +{"id":"16584","label":"poking a hole into paper","template":"Poking a hole into [something soft]","placeholders":["paper"]}, +{"id":"55971","label":"moving sponge and nail clipper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["sponge","nail clipper"]}, +{"id":"164445","label":"putting an apple next to a glass","template":"Putting [something] next to [something]","placeholders":["an apple","a glass"]}, +{"id":"136803","label":"blue marble colliding with red marble and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["blue marble","red marble"]}, +{"id":"50909","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"157212","label":"tearing a shuttle cock just a little bit","template":"Tearing [something] just a little bit","placeholders":["a shuttle cock"]}, +{"id":"69444","label":"sprinkling something onto something","template":"Sprinkling [something] onto [something]","placeholders":["something","something"]}, +{"id":"1571","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"219699","label":"lifting a tote bag up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a tote bag"]}, +{"id":"108657","label":"plugging usb bluetooth into usb port","template":"Plugging [something] into [something]","placeholders":["usb bluetooth","usb port"]}, +{"id":"163271","label":"dropping bottle onto chair","template":"Dropping [something] onto [something]","placeholders":["bottle","chair"]}, +{"id":"98509","label":"putting book next to book","template":"Putting [something] next to [something]","placeholders":["book","book"]}, +{"id":"47827","label":"showing phone behind screen","template":"Showing [something] behind [something]","placeholders":["phone","screen"]}, +{"id":"163545","label":"taking one of the lip glosses from the table","template":"Taking [one of many similar things on the table]","placeholders":["one of the lip glosses from the table"]}, +{"id":"65141","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"45627","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"57337","label":"moving ruler down","template":"Moving [something] down","placeholders":["ruler"]}, +{"id":"218338","label":"laying moisturizer on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["moisturizer"]}, +{"id":"166647","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"216460","label":"covering paste with box","template":"Covering [something] with [something]","placeholders":["paste","box"]}, +{"id":"84977","label":"throwing pen against water bottle","template":"Throwing [something] against [something]","placeholders":["pen","water bottle"]}, +{"id":"220728","label":"trying to bend knife so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["knife"]}, +{"id":"128976","label":"opening a window","template":"Opening [something]","placeholders":["a window"]}, +{"id":"1071","label":"pretending to put a bowl on a surface","template":"Pretending to put [something] on a surface","placeholders":["a bowl"]}, +{"id":"90926","label":"closing a note book","template":"Closing [something]","placeholders":["a note book"]}, +{"id":"27944","label":"pretending to pick toothbrush up","template":"Pretending to pick [something] up","placeholders":["toothbrush"]}, +{"id":"124577","label":"dropping wrist-watch in front of plastic-container","template":"Dropping [something] in front of [something]","placeholders":["wrist-watch","plastic-container"]}, +{"id":"36281","label":"showing bus waiting shulter to the camera","template":"Showing [something] to the camera","placeholders":["bus waiting shulter"]}, +{"id":"43317","label":"spilling water next to a card","template":"Spilling [something] next to [something]","placeholders":["water","a card"]}, +{"id":"108177","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"215636","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"178760","label":"putting one spray bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["one spray bottle"]}, +{"id":"120528","label":"pushing duster so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["duster"]}, +{"id":"49583","label":"lifting mobile phone with ipod on it","template":"Lifting [something] with [something] on it","placeholders":["mobile phone","ipod"]}, +{"id":"83918","label":"bending a fork so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fork"]}, +{"id":"46969","label":"moving lighter closer to book","template":"Moving [something] closer to [something]","placeholders":["lighter","book"]}, +{"id":"38730","label":"plugging cable into power adapter","template":"Plugging [something] into [something]","placeholders":["cable","power adapter"]}, +{"id":"1697","label":"approaching waist basket with your camera","template":"Approaching [something] with your camera","placeholders":["waist basket"]}, +{"id":"141742","label":"putting camphor packet next to sugar bottle","template":"Putting [something] next to [something]","placeholders":["camphor packet","sugar bottle"]}, +{"id":"65851","label":"pretending or failing to wipe spot off of cow","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["spot","cow"]}, +{"id":"191998","label":"showing that dustbin is empty","template":"Showing that [something] is empty","placeholders":["dustbin"]}, +{"id":"126457","label":"putting pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pencil"]}, +{"id":"199705","label":"wiping ketchup off of surface","template":"Wiping [something] off of [something]","placeholders":["ketchup","surface"]}, +{"id":"47588","label":"spinning a ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a ball"]}, +{"id":"101554","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"200075","label":"poking teddy bear so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["teddy bear"]}, +{"id":"8900","label":"letting a wheel roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a wheel"]}, +{"id":"136661","label":"turning mobile phone upside down","template":"Turning [something] upside down","placeholders":["mobile phone"]}, +{"id":"21481","label":"putting pen into jar","template":"Putting [something] into [something]","placeholders":["pen","jar"]}, +{"id":"35645","label":"hitting pillow with fist","template":"Hitting [something] with [something]","placeholders":["pillow","fist"]}, +{"id":"141638","label":"lifting book with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["book","sunglasses"]}, +{"id":"110256","label":"dropping red hair band next to diary","template":"Dropping [something] next to [something]","placeholders":["red hair band","diary"]}, +{"id":"181940","label":"holding deodorant in front of box","template":"Holding [something] in front of [something]","placeholders":["deodorant","box"]}, +{"id":"173850","label":"pretending to sprinkle air onto the table","template":"Pretending to sprinkle air onto [something]","placeholders":["the table"]}, +{"id":"202211","label":"turning the camera left while filming window view","template":"Turning the camera left while filming [something]","placeholders":["window view"]}, +{"id":"57771","label":"moving a toy and another toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a toy","another toy"]}, +{"id":"169918","label":"tilting paper with coins on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","coins"]}, +{"id":"142814","label":"putting a calculator in front of stapler cover","template":"Putting [something] in front of [something]","placeholders":["a calculator","stapler cover"]}, +{"id":"7664","label":"turning the camera upwards while filming ceiling","template":"Turning the camera upwards while filming [something]","placeholders":["ceiling"]}, +{"id":"177182","label":"moving rectangular box and ramekin closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["rectangular box","ramekin"]}, +{"id":"193578","label":"stuffing pens into box","template":"Stuffing [something] into [something]","placeholders":["pens","box"]}, +{"id":"88885","label":"holding keys in front of a plant","template":"Holding [something] in front of [something]","placeholders":["keys","a plant"]}, +{"id":"113521","label":"putting color pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["color pencil"]}, +{"id":"152458","label":"bending a paper heart so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper heart"]}, +{"id":"136491","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"135323","label":"folding an envelope","template":"Folding [something]","placeholders":["an envelope"]}, +{"id":"172920","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"78443","label":"holding sock next to small pillow","template":"Holding [something] next to [something]","placeholders":["sock","small pillow"]}, +{"id":"145553","label":"showing a bird behind a lamp","template":"Showing [something] behind [something]","placeholders":["a bird","a lamp"]}, +{"id":"39700","label":"putting book behind book","template":"Putting [something] behind [something]","placeholders":["book","book"]}, +{"id":"167988","label":"folding duppatta","template":"Folding [something]","placeholders":["duppatta"]}, +{"id":"85236","label":"pretending to be tearing ruler","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ruler"]}, +{"id":"165698","label":"crackers colliding with crackers and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["crackers","crackers"]}, +{"id":"81176","label":"pretending to spread air onto curtain","template":"Pretending to spread air onto [something]","placeholders":["curtain"]}, +{"id":"101194","label":"dropping yellow ball into orange cup","template":"Dropping [something] into [something]","placeholders":["yellow ball","orange cup"]}, +{"id":"123037","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"189335","label":"dropping coin onto cloth","template":"Dropping [something] onto [something]","placeholders":["coin","cloth"]}, +{"id":"194411","label":"plugging electrical plug into wall socket","template":"Plugging [something] into [something]","placeholders":["electrical plug","wall socket"]}, +{"id":"32036","label":"showing that a bucket is empty","template":"Showing that [something] is empty","placeholders":["a bucket"]}, +{"id":"219270","label":"approaching sandal with your camera","template":"Approaching [something] with your camera","placeholders":["sandal"]}, +{"id":"28528","label":"pulling glasses from right to left","template":"Pulling [something] from right to left","placeholders":["glasses"]}, +{"id":"94236","label":"removing a large measuring cup, revealing a small measuring cup behind","template":"Removing [something], revealing [something] behind","placeholders":["a large measuring cup","a small measuring cup"]}, +{"id":"33079","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"82425","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"136393","label":"pushing a deck of cards so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a deck of cards"]}, +{"id":"77933","label":"lifting a toy plane with a sharpener on it","template":"Lifting [something] with [something] on it","placeholders":["a toy plane","a sharpener"]}, +{"id":"196089","label":"moving cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["cup"]}, +{"id":"197710","label":"holding a box behind a glass","template":"Holding [something] behind [something]","placeholders":["a box","a glass"]}, +{"id":"85244","label":"soda can colliding with deodarant and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["soda can","deodarant"]}, +{"id":"140034","label":"putting a makeup brush into a cup","template":"Putting [something] into [something]","placeholders":["a makeup brush","a cup"]}, +{"id":"95047","label":"moving a bolt down","template":"Moving [something] down","placeholders":["a bolt"]}, +{"id":"121054","label":"attaching a sticky paper to a wooden surface","template":"Attaching [something] to [something]","placeholders":["a sticky paper","a wooden surface"]}, +{"id":"197644","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"205025","label":"pretending to scoop ice cream up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["ice cream","spoon"]}, +{"id":"175235","label":"pretending to put a shoe behind the door","template":"Pretending to put [something] behind [something]","placeholders":["a shoe","the door"]}, +{"id":"64153","label":"putting little cup next to cat doll","template":"Putting [something] next to [something]","placeholders":["little cup","cat doll"]}, +{"id":"175088","label":"pushing a vase from left to right","template":"Pushing [something] from left to right","placeholders":["a vase"]}, +{"id":"155545","label":"lifting up one end of cotton, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["cotton"]}, +{"id":"182737","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"145367","label":"putting greetings card upright on the table","template":"Putting [something] upright on the table","placeholders":["greetings card"]}, +{"id":"38894","label":"throwing marker against guide","template":"Throwing [something] against [something]","placeholders":["marker","guide"]}, +{"id":"133571","label":"lifting toy with box on it","template":"Lifting [something] with [something] on it","placeholders":["toy","box"]}, +{"id":"68793","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"194076","label":"turning the camera left while filming aquarium","template":"Turning the camera left while filming [something]","placeholders":["aquarium"]}, +{"id":"154882","label":"bending a bottle of mineral water so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a bottle of mineral water"]}, +{"id":"119718","label":"showing dvd case to the camera","template":"Showing [something] to the camera","placeholders":["dvd case"]}, +{"id":"30402","label":"putting a jar upright on the table","template":"Putting [something] upright on the table","placeholders":["a jar"]}, +{"id":"158893","label":"moving mobile down","template":"Moving [something] down","placeholders":["mobile"]}, +{"id":"159257","label":"tipping a wine bottle over","template":"Tipping [something] over","placeholders":["a wine bottle"]}, +{"id":"84401","label":"turning plastic cup upside down","template":"Turning [something] upside down","placeholders":["plastic cup"]}, +{"id":"119528","label":"moving earpiece of sunglasses","template":"Moving [part] of [something]","placeholders":["earpiece","sunglasses"]}, +{"id":"155968","label":"poking a hole into a tissue","template":"Poking a hole into [some substance]","placeholders":["a tissue"]}, +{"id":"42780","label":"trying but failing to attach paper to a planner because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","a planner"]}, +{"id":"38735","label":"moving a bottle up","template":"Moving [something] up","placeholders":["a bottle"]}, +{"id":"97075","label":"putting battery upright on the table","template":"Putting [something] upright on the table","placeholders":["battery"]}, +{"id":"46978","label":"tilting plate with small bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","small bottle"]}, +{"id":"7505","label":"dropping a peanut into a bottle","template":"Dropping [something] into [something]","placeholders":["a peanut","a bottle"]}, +{"id":"198935","label":"touching (without moving) lid of lip gloss","template":"Touching (without moving) [part] of [something]","placeholders":["lid","lip gloss"]}, +{"id":"16459","label":"pushing shoe from right to left","template":"Pushing [something] from right to left","placeholders":["shoe"]}, +{"id":"212796","label":"lifting up one end of spectacle box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["spectacle box"]}, +{"id":"73021","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"172641","label":"holding flower vase","template":"Holding [something]","placeholders":["flower vase"]}, +{"id":"140718","label":"poking a hole into napkin","template":"Poking a hole into [something soft]","placeholders":["napkin"]}, +{"id":"217892","label":"lifting calculator with scissor on it","template":"Lifting [something] with [something] on it","placeholders":["calculator","scissor"]}, +{"id":"211525","label":"pretending to pick paint up","template":"Pretending to pick [something] up","placeholders":["paint"]}, +{"id":"36400","label":"putting an owl upright on the table","template":"Putting [something] upright on the table","placeholders":["an owl"]}, +{"id":"108540","label":"dropping a tube of toothpaste in front of a mirror","template":"Dropping [something] in front of [something]","placeholders":["a tube of toothpaste","a mirror"]}, +{"id":"118062","label":"spinning \\\"plastic chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["\\\"plastic chair"]}, +{"id":"108727","label":"lifting a laptop box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a laptop box"]}, +{"id":"214998","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"73539","label":"pretending to poke a stack of dice","template":"Pretending to poke [something]","placeholders":["a stack of dice"]}, +{"id":"166020","label":"tearing plastic into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic"]}, +{"id":"108484","label":"putting wood box in front of phone","template":"Putting [something] in front of [something]","placeholders":["wood box","phone"]}, +{"id":"36803","label":"moving green toy car and red toy car closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["green toy car","red toy car"]}, +{"id":"162835","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"138381","label":"pretending or failing to wipe powder off of dining table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["powder","dining table"]}, +{"id":"151326","label":"a4 paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a4 paper"]}, +{"id":"31942","label":"putting jar behind monitor","template":"Putting [something] behind [something]","placeholders":["jar","monitor"]}, +{"id":"71016","label":"taking 1 jar away from other jars","template":"Taking [one of many similar things on the table]","placeholders":["1 jar away from other jars"]}, +{"id":"53962","label":"pretending to open a cap from a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cap from a bottle"]}, +{"id":"110148","label":"showing a book on top of hot pot","template":"Showing [something] on top of [something]","placeholders":["a book","hot pot"]}, +{"id":"143041","label":"pretending to put red pot holder on a surface","template":"Pretending to put [something] on a surface","placeholders":["red pot holder"]}, +{"id":"80147","label":"poking a hole into tissue","template":"Poking a hole into [something soft]","placeholders":["tissue"]}, +{"id":"64400","label":"pushing plushie so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["plushie"]}, +{"id":"111375","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"151752","label":"burying ball in towels","template":"Burying [something] in [something]","placeholders":["ball","towels"]}, +{"id":"442","label":"stuffing a towel into a drawer","template":"Stuffing [something] into [something]","placeholders":["a towel","a drawer"]}, +{"id":"106936","label":"pulling green hair comb from right to left","template":"Pulling [something] from right to left","placeholders":["green hair comb"]}, +{"id":"22840","label":"moving spoon rest away from stove eye","template":"Moving [something] away from [something]","placeholders":["spoon rest","stove eye"]}, +{"id":"172370","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"196566","label":"stuffing papers into purse","template":"Stuffing [something] into [something]","placeholders":["papers","purse"]}, +{"id":"180696","label":"showing a roll of paper behind a bowl","template":"Showing [something] behind [something]","placeholders":["a roll of paper","a bowl"]}, +{"id":"152059","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"88448","label":"showing a jar behind another jar","template":"Showing [something] behind [something]","placeholders":["a jar","another jar"]}, +{"id":"136558","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"86804","label":"putting key on a surface","template":"Putting [something] on a surface","placeholders":["key"]}, +{"id":"208266","label":"opening letter box","template":"Opening [something]","placeholders":["letter box"]}, +{"id":"220711","label":"pulling computer mouse onto pillow","template":"Pulling [something] onto [something]","placeholders":["computer mouse","pillow"]}, +{"id":"25983","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"199375","label":"pushing revolving table top so it spins","template":"Pushing [something] so it spins","placeholders":["revolving table top"]}, +{"id":"107779","label":"spinning a pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pencil"]}, +{"id":"39273","label":"putting one coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["one coin"]}, +{"id":"107953","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"91549","label":"putting wallet onto paper so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["wallet","paper"]}, +{"id":"125709","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"116063","label":"putting a textbook in front of a coin","template":"Putting [something] in front of [something]","placeholders":["a textbook","a coin"]}, +{"id":"171833","label":"pretending to throw pen","template":"Pretending to throw [something]","placeholders":["pen"]}, +{"id":"19036","label":"removing lidded coffee cup, revealing small red cup behind","template":"Removing [something], revealing [something] behind","placeholders":["lidded coffee cup","small red cup"]}, +{"id":"9672","label":"throwing a pillow","template":"Throwing [something]","placeholders":["a pillow"]}, +{"id":"111194","label":"twisting a piece of paper","template":"Twisting [something]","placeholders":["a piece of paper"]}, +{"id":"29810","label":"uncovering bed","template":"Uncovering [something]","placeholders":["bed"]}, +{"id":"55903","label":"pretending to poke a cat","template":"Pretending to poke [something]","placeholders":["a cat"]}, +{"id":"57454","label":"letting lipstick roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["lipstick"]}, +{"id":"19486","label":"picking glass up","template":"Picking [something] up","placeholders":["glass"]}, +{"id":"148396","label":"putting red chilli","template":"Putting [something similar to other things that are already on the table]","placeholders":["red chilli"]}, +{"id":"46541","label":"a pen being deflected from a mug","template":"[Something] being deflected from [something]","placeholders":["a pen","a mug"]}, +{"id":"25277","label":"holding a soap dispenser in front of keys","template":"Holding [something] in front of [something]","placeholders":["a soap dispenser","keys"]}, +{"id":"86207","label":"putting 2 pencil sharpners onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","pencil sharpners","black pouch"]}, +{"id":"3904","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"176413","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"61965","label":"a napking falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a napking"]}, +{"id":"8941","label":"moving powerbank down","template":"Moving [something] down","placeholders":["powerbank"]}, +{"id":"180665","label":"spinning marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker"]}, +{"id":"133752","label":"letting can of coke roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["can of coke"]}, +{"id":"3928","label":"turning the camera left while filming rice cooker","template":"Turning the camera left while filming [something]","placeholders":["rice cooker"]}, +{"id":"24026","label":"pretending to put glasses on a surface","template":"Pretending to put [something] on a surface","placeholders":["glasses"]}, +{"id":"125103","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"53872","label":"poking a bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bottle"]}, +{"id":"11069","label":"key falling like a rock","template":"[Something] falling like a rock","placeholders":["key"]}, +{"id":"106612","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"194620","label":"spreading kercief onto rubix cube","template":"Spreading [something] onto [something]","placeholders":["kercief","rubix cube"]}, +{"id":"4362","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"108304","label":"pretending to be tearing cloth that is not tearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth that is not tearable"]}, +{"id":"129592","label":"stuffing book into backpack","template":"Stuffing [something] into [something]","placeholders":["book","backpack"]}, +{"id":"147091","label":"showing gate to the camera","template":"Showing [something] to the camera","placeholders":["gate"]}, +{"id":"4466","label":"a steel ball colliding with a steel ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a steel ball","a steel ball"]}, +{"id":"56755","label":"lemon falling like a rock","template":"[Something] falling like a rock","placeholders":["lemon"]}, +{"id":"178174","label":"spreading peanut butter onto bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","bread"]}, +{"id":"79720","label":"holding wire in front of wall","template":"Holding [something] in front of [something]","placeholders":["wire","wall"]}, +{"id":"211303","label":"approaching purple microfiber with your camera","template":"Approaching [something] with your camera","placeholders":["purple microfiber"]}, +{"id":"194327","label":"lifting a phone with a spinner on it","template":"Lifting [something] with [something] on it","placeholders":["a phone","a spinner"]}, +{"id":"179226","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"174610","label":"pushing flowers so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["flowers"]}, +{"id":"105854","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"87619","label":"squeezing green water bottle","template":"Squeezing [something]","placeholders":["green water bottle"]}, +{"id":"78820","label":"putting box, handphone and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","handphone","pen"]}, +{"id":"45343","label":"spreading butter onto cracker","template":"Spreading [something] onto [something]","placeholders":["butter","cracker"]}, +{"id":"65518","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"2784","label":"taking a stone","template":"Taking [one of many similar things on the table]","placeholders":["a stone"]}, +{"id":"68397","label":"showing water bottle to the camera","template":"Showing [something] to the camera","placeholders":["water bottle"]}, +{"id":"115868","label":"turning the camera upwards while filming bullet bike","template":"Turning the camera upwards while filming [something]","placeholders":["bullet bike"]}, +{"id":"189082","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"158563","label":"turning the camera left while filming animals","template":"Turning the camera left while filming [something]","placeholders":["animals"]}, +{"id":"64793","label":"stuffing book into bag","template":"Stuffing [something] into [something]","placeholders":["book","bag"]}, +{"id":"196867","label":"plugging alarm clock into wall outlet","template":"Plugging [something] into [something]","placeholders":["alarm clock","wall outlet"]}, +{"id":"10402","label":"pretending to pick ball up","template":"Pretending to pick [something] up","placeholders":["ball"]}, +{"id":"113160","label":"dropping a toothpick onto a matchbox","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a matchbox"]}, +{"id":"148629","label":"putting 3 soda pop cans onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","soda pop cans","table"]}, +{"id":"105846","label":"moving a water bottle and a book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a water bottle","a book"]}, +{"id":"84606","label":"turning purple balloon pump upside down","template":"Turning [something] upside down","placeholders":["purple balloon pump"]}, +{"id":"164238","label":"squeezing playdoh","template":"Squeezing [something]","placeholders":["playdoh"]}, +{"id":"16778","label":"picking a ball up","template":"Picking [something] up","placeholders":["a ball"]}, +{"id":"126256","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"212301","label":"pushing green hair comb from left to right","template":"Pushing [something] from left to right","placeholders":["green hair comb"]}, +{"id":"39039","label":"tipping a pen over","template":"Tipping [something] over","placeholders":["a pen"]}, +{"id":"208446","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"193490","label":"stuffing paper towels into a drawer","template":"Stuffing [something] into [something]","placeholders":["paper towels","a drawer"]}, +{"id":"101232","label":"putting paper towel roll on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["paper towel roll"]}, +{"id":"138138","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"26118","label":"moving candle and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["candle","a box"]}, +{"id":"14361","label":"pushing deodorant so it spins","template":"Pushing [something] so it spins","placeholders":["deodorant"]}, +{"id":"110785","label":"showing a cup behind a cup","template":"Showing [something] behind [something]","placeholders":["a cup","a cup"]}, +{"id":"123912","label":"newspaper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["newspaper"]}, +{"id":"133709","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"96919","label":"moving a pen and a ruler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a ruler"]}, +{"id":"124722","label":"letting container roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["container"]}, +{"id":"145870","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"10753","label":"sprinkling glitter onto paper plate","template":"Sprinkling [something] onto [something]","placeholders":["glitter","paper plate"]}, +{"id":"12384","label":"covering kettle with cap","template":"Covering [something] with [something]","placeholders":["kettle","cap"]}, +{"id":"201252","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"137974","label":"bending a rod so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a rod"]}, +{"id":"184924","label":"pen colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pen","pen"]}, +{"id":"173130","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"187078","label":"pillow falling like a rock","template":"[Something] falling like a rock","placeholders":["pillow"]}, +{"id":"78483","label":"pretending to open snacks-box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["snacks-box"]}, +{"id":"64279","label":"showing casual hat to the camera","template":"Showing [something] to the camera","placeholders":["casual hat"]}, +{"id":"56607","label":"dropping phone case next to crayon","template":"Dropping [something] next to [something]","placeholders":["phone case","crayon"]}, +{"id":"168893","label":"bending a cup until it breaks","template":"Bending [something] until it breaks","placeholders":["a cup"]}, +{"id":"165231","label":"moving hair comb up","template":"Moving [something] up","placeholders":["hair comb"]}, +{"id":"79033","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"101677","label":"tilting spiral pad notebook with watch on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["spiral pad notebook","watch"]}, +{"id":"161614","label":"putting 1 book onto pillow","template":"Putting [number of] [something] onto [something]","placeholders":["1","book","pillow"]}, +{"id":"191439","label":"turning a tv remote upside down","template":"Turning [something] upside down","placeholders":["a tv remote"]}, +{"id":"193208","label":"pulling two ends of knife but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["knife"]}, +{"id":"206759","label":"pretending to put brush on a surface","template":"Pretending to put [something] on a surface","placeholders":["brush"]}, +{"id":"201433","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"217590","label":"uncovering sunglasses","template":"Uncovering [something]","placeholders":["sunglasses"]}, +{"id":"218219","label":"a packet falling like a rock","template":"[Something] falling like a rock","placeholders":["a packet"]}, +{"id":"209561","label":"pretending to pick nailpolish up","template":"Pretending to pick [something] up","placeholders":["nailpolish"]}, +{"id":"49407","label":"putting a figure into a box","template":"Putting [something] into [something]","placeholders":["a figure","a box"]}, +{"id":"205391","label":"tearing a tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["a tissue"]}, +{"id":"130343","label":"opening a vape battery box","template":"Opening [something]","placeholders":["a vape battery box"]}, +{"id":"169038","label":"tissue box falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue box"]}, +{"id":"160315","label":"pushing spray can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spray can"]}, +{"id":"124642","label":"approaching white brick with your camera","template":"Approaching [something] with your camera","placeholders":["white brick"]}, +{"id":"61237","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"79001","label":"bending branch until it breaks","template":"Bending [something] until it breaks","placeholders":["branch"]}, +{"id":"160034","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"49220","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"70171","label":"moving a roll of tissue and a comb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a roll of tissue","a comb"]}, +{"id":"60325","label":"bending fragrance stick until it breaks","template":"Bending [something] until it breaks","placeholders":["fragrance stick"]}, +{"id":"46492","label":"taking pen out of glass","template":"Taking [something] out of [something]","placeholders":["pen","glass"]}, +{"id":"21642","label":"covering bottle with jacket","template":"Covering [something] with [something]","placeholders":["bottle","jacket"]}, +{"id":"84073","label":"touching (without moving) cover of pan","template":"Touching (without moving) [part] of [something]","placeholders":["cover","pan"]}, +{"id":"19555","label":"lifting jar with folder on it","template":"Lifting [something] with [something] on it","placeholders":["jar","folder"]}, +{"id":"11864","label":"adapter falling like a rock","template":"[Something] falling like a rock","placeholders":["adapter"]}, +{"id":"113531","label":"closing a dvd","template":"Closing [something]","placeholders":["a dvd"]}, +{"id":"111069","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"70677","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"172598","label":"closing cd box","template":"Closing [something]","placeholders":["cd box"]}, +{"id":"218702","label":"uncovering cellphone","template":"Uncovering [something]","placeholders":["cellphone"]}, +{"id":"116184","label":"moving milk away from knife","template":"Moving [something] away from [something]","placeholders":["milk","knife"]}, +{"id":"190186","label":"showing a pillow behind a water bottle","template":"Showing [something] behind [something]","placeholders":["a pillow","a water bottle"]}, +{"id":"153694","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"148204","label":"putting plastic chip","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic chip"]}, +{"id":"123574","label":"putting another pen on the floor","template":"Putting [something similar to other things that are already on the table]","placeholders":["another pen on the floor"]}, +{"id":"143160","label":"moving hand cream and banana away from each other","template":"Moving [something] and [something] away from each other","placeholders":["hand cream","banana"]}, +{"id":"209695","label":"holding folder with documents over ebook","template":"Holding [something] over [something]","placeholders":["folder with documents","ebook"]}, +{"id":"22257","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185538","label":"pretending to close mascara without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["mascara"]}, +{"id":"214513","label":"taking ironbox from table","template":"Taking [something] from [somewhere]","placeholders":["ironbox","table"]}, +{"id":"199886","label":"moving triangle and pen so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["triangle","pen"]}, +{"id":"48318","label":"spinning a boiled egg so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a boiled egg"]}, +{"id":"187937","label":"taking one of many biscuits","template":"Taking [one of many similar things on the table]","placeholders":["one of many biscuits"]}, +{"id":"91527","label":"taking a ukulele out of the case","template":"Taking [something] out of [something]","placeholders":["a ukulele","the case"]}, +{"id":"143962","label":"covering headphone with hand","template":"Covering [something] with [something]","placeholders":["headphone","hand"]}, +{"id":"169616","label":"plugging phone into usb","template":"Plugging [something] into [something]","placeholders":["phone","usb"]}, +{"id":"2031","label":"pretending to put colorful scarf on a surface","template":"Pretending to put [something] on a surface","placeholders":["colorful scarf"]}, +{"id":"29620","label":"covering rubix cube with white hand kerchief","template":"Covering [something] with [something]","placeholders":["rubix cube","white hand kerchief"]}, +{"id":"163636","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"186090","label":"turning the camera upwards while filming laterate stone","template":"Turning the camera upwards while filming [something]","placeholders":["laterate stone"]}, +{"id":"148558","label":"coin falling like a rock","template":"[Something] falling like a rock","placeholders":["coin"]}, +{"id":"93744","label":"poking poking plastic spray once so that it slightly moves so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["poking plastic spray once so that it slightly moves"]}, +{"id":"49702","label":"moving remote closer to pen/marker","template":"Moving [something] closer to [something]","placeholders":["remote","pen/marker"]}, +{"id":"133971","label":"squeezing waterbottle","template":"Squeezing [something]","placeholders":["waterbottle"]}, +{"id":"173571","label":"tipping nail polish over","template":"Tipping [something] over","placeholders":["nail polish"]}, +{"id":"40186","label":"covering legs with blanket","template":"Covering [something] with [something]","placeholders":["legs","blanket"]}, +{"id":"215258","label":"pretending to take a jar out of a shelf","template":"Pretending to take [something] out of [something]","placeholders":["a jar","a shelf"]}, +{"id":"69189","label":"pushing key so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["key"]}, +{"id":"120996","label":"pulling car key from right to left","template":"Pulling [something] from right to left","placeholders":["car key"]}, +{"id":"187082","label":"pulling two ends of a pot but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pot"]}, +{"id":"214684","label":"covering glass jar with paper towel","template":"Covering [something] with [something]","placeholders":["glass jar","paper towel"]}, +{"id":"209141","label":"twisting (wringing) a cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a cloth"]}, +{"id":"210098","label":"tilting a phone with a battery case on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a phone","a battery case"]}, +{"id":"73667","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"166247","label":"covering tape with cardboard","template":"Covering [something] with [something]","placeholders":["tape","cardboard"]}, +{"id":"42333","label":"pulling two ends of glove so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["glove"]}, +{"id":"28337","label":"turning the camera upwards while filming switch board","template":"Turning the camera upwards while filming [something]","placeholders":["switch board"]}, +{"id":"23963","label":"moving notebook up","template":"Moving [something] up","placeholders":["notebook"]}, +{"id":"163169","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"186256","label":"pushing jar lid so it spins","template":"Pushing [something] so it spins","placeholders":["jar lid"]}, +{"id":"206788","label":"pretending to poke mouse","template":"Pretending to poke [something]","placeholders":["mouse"]}, +{"id":"101590","label":"letting can roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["can"]}, +{"id":"121383","label":"tilting box with plush toy on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","plush toy"]}, +{"id":"209000","label":"uncovering drumstick","template":"Uncovering [something]","placeholders":["drumstick"]}, +{"id":"161310","label":"moving hanger and screwdriver away from each other","template":"Moving [something] and [something] away from each other","placeholders":["hanger","screwdriver"]}, +{"id":"149192","label":"unfolding handkerchief","template":"Unfolding [something]","placeholders":["handkerchief"]}, +{"id":"10540","label":"holding keys next to bag","template":"Holding [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"80165","label":"rolling a musical tabala on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a musical tabala"]}, +{"id":"65192","label":"pretending to throw nail clippers","template":"Pretending to throw [something]","placeholders":["nail clippers"]}, +{"id":"189122","label":"taking paper weight from bed","template":"Taking [something] from [somewhere]","placeholders":["paper weight","bed"]}, +{"id":"126045","label":"twisting wire","template":"Twisting [something]","placeholders":["wire"]}, +{"id":"49367","label":"spilling milk next to cookie","template":"Spilling [something] next to [something]","placeholders":["milk","cookie"]}, +{"id":"83203","label":"pulling green purse from left to right","template":"Pulling [something] from left to right","placeholders":["green purse"]}, +{"id":"42805","label":"failing to put fidget spinner into jar because fidget spinner does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["fidget spinner","jar","fidget spinner"]}, +{"id":"193613","label":"pretending to open the small bag without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the small bag"]}, +{"id":"33687","label":"pretending to pick a bag up","template":"Pretending to pick [something] up","placeholders":["a bag"]}, +{"id":"22563","label":"dropping keys next to bag","template":"Dropping [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"150314","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"107548","label":"tipping blistex chapstick over","template":"Tipping [something] over","placeholders":["blistex chapstick"]}, +{"id":"29610","label":"uncovering small gear wheel","template":"Uncovering [something]","placeholders":["small gear wheel"]}, +{"id":"171965","label":"putting paper towels in front of board","template":"Putting [something] in front of [something]","placeholders":["paper towels","board"]}, +{"id":"51744","label":"taking paper out of container","template":"Taking [something] out of [something]","placeholders":["paper","container"]}, +{"id":"145332","label":"throwing stapler against pillow","template":"Throwing [something] against [something]","placeholders":["stapler","pillow"]}, +{"id":"53129","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"176176","label":"moving red crayon closer to blue crayon","template":"Moving [something] closer to [something]","placeholders":["red crayon","blue crayon"]}, +{"id":"121016","label":"holding a pen in front of a pencil case","template":"Holding [something] in front of [something]","placeholders":["a pen","a pencil case"]}, +{"id":"26413","label":"holding pen next to iron","template":"Holding [something] next to [something]","placeholders":["pen","iron"]}, +{"id":"97509","label":"opening filing cabinet","template":"Opening [something]","placeholders":["filing cabinet"]}, +{"id":"110581","label":"lifting spectacle box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spectacle box"]}, +{"id":"69971","label":"putting a rubber bush that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a rubber bush"]}, +{"id":"88985","label":"pretending to take camera from drawer","template":"Pretending to take [something] from [somewhere]","placeholders":["camera","drawer"]}, +{"id":"3757","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"12456","label":"showing that microwave is empty","template":"Showing that [something] is empty","placeholders":["microwave"]}, +{"id":"196683","label":"lifting a container up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a container"]}, +{"id":"14323","label":"twisting hair ribbon","template":"Twisting [something]","placeholders":["hair ribbon"]}, +{"id":"39718","label":"wiping crumbs off of table","template":"Wiping [something] off of [something]","placeholders":["crumbs","table"]}, +{"id":"103321","label":"showing that a pen is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["a pen","a cup"]}, +{"id":"220068","label":"poking car so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["car"]}, +{"id":"205413","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"25864","label":"turning the camera upwards while filming notebook","template":"Turning the camera upwards while filming [something]","placeholders":["notebook"]}, +{"id":"116433","label":"letting a plastic container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a plastic container"]}, +{"id":"132612","label":"holding roll of aluminum foil behind pill bottle","template":"Holding [something] behind [something]","placeholders":["roll of aluminum foil","pill bottle"]}, +{"id":"204280","label":"lifting a surface with a pen on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a pen"]}, +{"id":"188297","label":"putting a pen on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a pen","chair"]}, +{"id":"176336","label":"showing that keys is inside bag","template":"Showing that [something] is inside [something]","placeholders":["keys","bag"]}, +{"id":"179085","label":"pretending to take pen out of holder","template":"Pretending to take [something] out of [something]","placeholders":["pen","holder"]}, +{"id":"9108","label":"lifting paper up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["paper"]}, +{"id":"60121","label":"a toy car colliding with a toy car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a toy car","a toy car"]}, +{"id":"537","label":"moving a ball and a ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a ball","a ball"]}, +{"id":"146944","label":"moving handle of a lock","template":"Moving [part] of [something]","placeholders":["handle","a lock"]}, +{"id":"14835","label":"poking dustpan so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["dustpan"]}, +{"id":"114127","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"181485","label":"plugging cord into wall","template":"Plugging [something] into [something]","placeholders":["cord","wall"]}, +{"id":"173900","label":"pushing bottle off of box","template":"Pushing [something] off of [something]","placeholders":["bottle","box"]}, +{"id":"132965","label":"folding a tshirt","template":"Folding [something]","placeholders":["a tshirt"]}, +{"id":"174184","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"44905","label":"holding mobile phone behind wallet","template":"Holding [something] behind [something]","placeholders":["mobile phone","wallet"]}, +{"id":"64907","label":"taking notebook and pen","template":"Taking [one of many similar things on the table]","placeholders":["notebook and pen"]}, +{"id":"165916","label":"putting a coin upright on the table","template":"Putting [something] upright on the table","placeholders":["a coin"]}, +{"id":"218228","label":"putting a bowl","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bowl"]}, +{"id":"28717","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"48501","label":"putting nail clippers, remote and hole punch on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["nail clippers","remote","hole punch"]}, +{"id":"90985","label":"putting a lighter upright on the table","template":"Putting [something] upright on the table","placeholders":["a lighter"]}, +{"id":"157575","label":"throwing red cup in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["red cup"]}, +{"id":"202336","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"33053","label":"putting a plant underneath a plate","template":"Putting [something] underneath [something]","placeholders":["a plant","a plate"]}, +{"id":"99492","label":"piling cookies up","template":"Piling [something] up","placeholders":["cookies"]}, +{"id":"168434","label":"showing that the jar is empty","template":"Showing that [something] is empty","placeholders":["the jar"]}, +{"id":"72624","label":"dropping a coin onto a box","template":"Dropping [something] onto [something]","placeholders":["a coin","a box"]}, +{"id":"219431","label":"pushing packet with a bottle","template":"Pushing [something] with [something]","placeholders":["packet","a bottle"]}, +{"id":"8867","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"64053","label":"pretending to put pink water bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["pink water bottle"]}, +{"id":"125022","label":"pretending to pick duster up","template":"Pretending to pick [something] up","placeholders":["duster"]}, +{"id":"29040","label":"twisting a pill bottle cap","template":"Twisting [something]","placeholders":["a pill bottle cap"]}, +{"id":"18307","label":"turning the camera left while filming dog","template":"Turning the camera left while filming [something]","placeholders":["dog"]}, +{"id":"127077","label":"holding based over based","template":"Holding [something] over [something]","placeholders":["based","based"]}, +{"id":"195395","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"68082","label":"laying a bottle of juice on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle of juice"]}, +{"id":"5009","label":"pulling zipper from right to left","template":"Pulling [something] from right to left","placeholders":["zipper"]}, +{"id":"95549","label":"holding baking powder","template":"Holding [something]","placeholders":["baking powder"]}, +{"id":"128954","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"90784","label":"stuffing a water bottle into a sock","template":"Stuffing [something] into [something]","placeholders":["a water bottle","a sock"]}, +{"id":"48697","label":"plugging a power supply into a wall socket","template":"Plugging [something] into [something]","placeholders":["a power supply","a wall socket"]}, +{"id":"42843","label":"bending a fluorescent stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fluorescent stick"]}, +{"id":"45429","label":"moving remote and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["remote","remote"]}, +{"id":"159389","label":"putting glass next to jug","template":"Putting [something] next to [something]","placeholders":["glass","jug"]}, +{"id":"170813","label":"letting a cylindrical bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a cylindrical bottle"]}, +{"id":"114052","label":"taking pears out of a bowl","template":"Taking [something] out of [something]","placeholders":["pears","a bowl"]}, +{"id":"52509","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"142650","label":"moving the wallet and the remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the wallet","the remote control"]}, +{"id":"209669","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"204534","label":"plugging plug into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","charger"]}, +{"id":"18253","label":"approaching ball with your camera","template":"Approaching [something] with your camera","placeholders":["ball"]}, +{"id":"21450","label":"poking tissue box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tissue box"]}, +{"id":"181733","label":"pulling mouse onto binder","template":"Pulling [something] onto [something]","placeholders":["mouse","binder"]}, +{"id":"82593","label":"rolling pill bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pill bottle"]}, +{"id":"121841","label":"throwing a sock against wall","template":"Throwing [something] against [something]","placeholders":["a sock","wall"]}, +{"id":"210150","label":"spinning clip so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["clip"]}, +{"id":"46475","label":"showing that a container is empty","template":"Showing that [something] is empty","placeholders":["a container"]}, +{"id":"105680","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"18642","label":"taking flashdrive out of container","template":"Taking [something] out of [something]","placeholders":["flashdrive","container"]}, +{"id":"201855","label":"pulling two ends of chopsticks so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["chopsticks"]}, +{"id":"168646","label":"putting remote","template":"Putting [something similar to other things that are already on the table]","placeholders":["remote"]}, +{"id":"133879","label":"dropping cloth into cover phone","template":"Dropping [something] into [something]","placeholders":["cloth","cover phone"]}, +{"id":"95754","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"32351","label":"closing spectacle box","template":"Closing [something]","placeholders":["spectacle box"]}, +{"id":"202209","label":"putting a coffee cup next to coffee creamer","template":"Putting [something] next to [something]","placeholders":["a coffee cup","coffee creamer"]}, +{"id":"54497","label":"piling blocks up","template":"Piling [something] up","placeholders":["blocks"]}, +{"id":"148700","label":"attaching ps4 controller to charging dock","template":"Attaching [something] to [something]","placeholders":["ps4 controller","charging dock"]}, +{"id":"44698","label":"pretending to put remote underneath blanket","template":"Pretending to put [something] underneath [something]","placeholders":["remote","blanket"]}, +{"id":"90208","label":"holding a towel over the sink","template":"Holding [something] over [something]","placeholders":["a towel","the sink"]}, +{"id":"216643","label":"letting exercise foam roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["exercise foam"]}, +{"id":"202068","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"3668","label":"moving bag up","template":"Moving [something] up","placeholders":["bag"]}, +{"id":"156915","label":"trying but failing to attach magnet to briefcase because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magnet","briefcase"]}, +{"id":"46529","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"2732","label":"throwing small box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["small box"]}, +{"id":"72887","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"161280","label":"tilting stoll with cashier on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stoll","cashier"]}, +{"id":"109321","label":"showing boating to the camera","template":"Showing [something] to the camera","placeholders":["boating"]}, +{"id":"114025","label":"plugging a usb into wall plug","template":"Plugging [something] into [something]","placeholders":["a usb","wall plug"]}, +{"id":"10144","label":"putting spoon into small bottle","template":"Putting [something] into [something]","placeholders":["spoon","small bottle"]}, +{"id":"39801","label":"pretending to pick bar soap up","template":"Pretending to pick [something] up","placeholders":["bar soap"]}, +{"id":"23763","label":"poking marker so that it falls over","template":"Poking [something] so that it falls over","placeholders":["marker"]}, +{"id":"13276","label":"pushing a peg so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a peg"]}, +{"id":"115410","label":"trying but failing to attach block to tv because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["block","tv"]}, +{"id":"43891","label":"plugging usb cable into usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","usb port"]}, +{"id":"115824","label":"putting a box onto a ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a box","a ball"]}, +{"id":"77077","label":"showing battery next to striker coin","template":"Showing [something] next to [something]","placeholders":["battery","striker coin"]}, +{"id":"123997","label":"spinning scissors that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["scissors"]}, +{"id":"177316","label":"moving medicines up","template":"Moving [something] up","placeholders":["medicines"]}, +{"id":"60470","label":"showing that battery is inside mobile","template":"Showing that [something] is inside [something]","placeholders":["battery","mobile"]}, +{"id":"75505","label":"taking phone out of mug","template":"Taking [something] out of [something]","placeholders":["phone","mug"]}, +{"id":"185053","label":"putting remote and ear phones on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","ear phones"]}, +{"id":"220730","label":"lifting a package with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["a package","sunglasses"]}, +{"id":"192411","label":"pushing chalk with ring","template":"Pushing [something] with [something]","placeholders":["chalk","ring"]}, +{"id":"189786","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"145730","label":"spilling water onto the table","template":"Spilling [something] onto [something]","placeholders":["water","the table"]}, +{"id":"34506","label":"putting 3 marker pens onto brown note","template":"Putting [number of] [something] onto [something]","placeholders":["3","marker pens","brown note"]}, +{"id":"68223","label":"squeezing toothpaste tube","template":"Squeezing [something]","placeholders":["toothpaste tube"]}, +{"id":"127666","label":"holding torch behind shoe","template":"Holding [something] behind [something]","placeholders":["torch","shoe"]}, +{"id":"170403","label":"dropping a cup onto text books","template":"Dropping [something] onto [something]","placeholders":["a cup","text books"]}, +{"id":"35818","label":"unfolding t shit","template":"Unfolding [something]","placeholders":["t shit"]}, +{"id":"207051","label":"holding car keys next to sports drink","template":"Holding [something] next to [something]","placeholders":["car keys","sports drink"]}, +{"id":"205989","label":"showing aim toothpaste to the camera","template":"Showing [something] to the camera","placeholders":["aim toothpaste"]}, +{"id":"59764","label":"stuffing mini tripod into camera bag","template":"Stuffing [something] into [something]","placeholders":["mini tripod","camera bag"]}, +{"id":"70846","label":"putting fabric","template":"Putting [something similar to other things that are already on the table]","placeholders":["fabric"]}, +{"id":"150484","label":"digging batteries out of paper","template":"Digging [something] out of [something]","placeholders":["batteries","paper"]}, +{"id":"132255","label":"tilting box with comp on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","comp"]}, +{"id":"28803","label":"putting sewing reel into plastic cup","template":"Putting [something] into [something]","placeholders":["sewing reel","plastic cup"]}, +{"id":"7655","label":"putting green toy car onto yellow clay container","template":"Putting [something] onto [something]","placeholders":["green toy car","yellow clay container"]}, +{"id":"84237","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"161327","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"104036","label":"pulling green purse from right to left","template":"Pulling [something] from right to left","placeholders":["green purse"]}, +{"id":"161506","label":"holding plate next to candle","template":"Holding [something] next to [something]","placeholders":["plate","candle"]}, +{"id":"81183","label":"putting cup and candle on the table","template":"Putting [something] and [something] on the table","placeholders":["cup","candle"]}, +{"id":"219735","label":"putting candies on a surface","template":"Putting [something] on a surface","placeholders":["candies"]}, +{"id":"124193","label":"pretending to pick razor up","template":"Pretending to pick [something] up","placeholders":["razor"]}, +{"id":"16017","label":"showing that a pot is empty","template":"Showing that [something] is empty","placeholders":["a pot"]}, +{"id":"173102","label":"stuffing key into pouch","template":"Stuffing [something] into [something]","placeholders":["key","pouch"]}, +{"id":"178220","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"47006","label":"poking a medicine bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a medicine bottle"]}, +{"id":"52775","label":"moving a cellphone and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cellphone","mouse"]}, +{"id":"204469","label":"moving nickel and quarter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["nickel","quarter"]}, +{"id":"158352","label":"pretending to spread air onto a phone","template":"Pretending to spread air onto [something]","placeholders":["a phone"]}, +{"id":"22017","label":"putting candle into bag","template":"Putting [something] into [something]","placeholders":["candle","bag"]}, +{"id":"76668","label":"pretending to throw frisbee","template":"Pretending to throw [something]","placeholders":["frisbee"]}, +{"id":"161453","label":"tilting plastic cup with scissors on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plastic cup","scissors"]}, +{"id":"45417","label":"taking crayon","template":"Taking [one of many similar things on the table]","placeholders":["crayon"]}, +{"id":"97377","label":"wiping a plastic bag off of a bed","template":"Wiping [something] off of [something]","placeholders":["a plastic bag","a bed"]}, +{"id":"33943","label":"pulling green headlight from left to right","template":"Pulling [something] from left to right","placeholders":["green headlight"]}, +{"id":"128411","label":"poking a fork so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a fork"]}, +{"id":"189395","label":"lifting up one end of comb, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["comb"]}, +{"id":"113011","label":"lifting plate with book on it","template":"Lifting [something] with [something] on it","placeholders":["plate","book"]}, +{"id":"209746","label":"pushing a comb off of a box","template":"Pushing [something] off of [something]","placeholders":["a comb","a box"]}, +{"id":"40813","label":"moving lotion bottle up","template":"Moving [something] up","placeholders":["lotion bottle"]}, +{"id":"183815","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"144421","label":"spinning a bulb so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bulb"]}, +{"id":"39206","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"199250","label":"closing closet","template":"Closing [something]","placeholders":["closet"]}, +{"id":"118314","label":"moving cup and stuffed toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","stuffed toy"]}, +{"id":"159110","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"217565","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"128187","label":"picking bowl up","template":"Picking [something] up","placeholders":["bowl"]}, +{"id":"126941","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"8828","label":"putting sunglasses, a sticky note pad and dental floss on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sunglasses","a sticky note pad","dental floss"]}, +{"id":"11742","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"33634","label":"putting green toy car onto clay container","template":"Putting [something] onto [something]","placeholders":["green toy car","clay container"]}, +{"id":"88722","label":"spatula falling like a rock","template":"[Something] falling like a rock","placeholders":["spatula"]}, +{"id":"90413","label":"showing that cage is empty","template":"Showing that [something] is empty","placeholders":["cage"]}, +{"id":"130427","label":"dropping tape onto floor","template":"Dropping [something] onto [something]","placeholders":["tape","floor"]}, +{"id":"194788","label":"pretending to be tearing a journal","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a journal"]}, +{"id":"195588","label":"holding bag","template":"Holding [something]","placeholders":["bag"]}, +{"id":"103892","label":"pretending to take mobile from book surface","template":"Pretending to take [something] from [somewhere]","placeholders":["mobile","book surface"]}, +{"id":"201096","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"55078","label":"holding paper over cups","template":"Holding [something] over [something]","placeholders":["paper","cups"]}, +{"id":"166839","label":"covering jar with towel","template":"Covering [something] with [something]","placeholders":["jar","towel"]}, +{"id":"136838","label":"opening cover","template":"Opening [something]","placeholders":["cover"]}, +{"id":"173321","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"169593","label":"showing that eraser is inside glass","template":"Showing that [something] is inside [something]","placeholders":["eraser","glass"]}, +{"id":"47907","label":"pushing brush so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["brush"]}, +{"id":"156289","label":"holding a book over a book","template":"Holding [something] over [something]","placeholders":["a book","a book"]}, +{"id":"155444","label":"moving away from keys with your camera","template":"Moving away from [something] with your camera","placeholders":["keys"]}, +{"id":"138665","label":"pushing a plastic bottle cap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a plastic bottle cap"]}, +{"id":"52683","label":"putting box and handphone on the table","template":"Putting [something] and [something] on the table","placeholders":["box","handphone"]}, +{"id":"81944","label":"closing a fridge","template":"Closing [something]","placeholders":["a fridge"]}, +{"id":"137016","label":"holding a pen next to a pencil case","template":"Holding [something] next to [something]","placeholders":["a pen","a pencil case"]}, +{"id":"54552","label":"poking door so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["door"]}, +{"id":"32934","label":"showing that money is inside a piggy bank","template":"Showing that [something] is inside [something]","placeholders":["money","a piggy bank"]}, +{"id":"98498","label":"lifting up one end of a notepad without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a notepad"]}, +{"id":"216823","label":"spilling water next to orange","template":"Spilling [something] next to [something]","placeholders":["water","orange"]}, +{"id":"102837","label":"dropping candy next to magazine","template":"Dropping [something] next to [something]","placeholders":["candy","magazine"]}, +{"id":"118865","label":"hitting towel with wallet","template":"Hitting [something] with [something]","placeholders":["towel","wallet"]}, +{"id":"117360","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"66540","label":"pretending to throw yellow hairband","template":"Pretending to throw [something]","placeholders":["yellow hairband"]}, +{"id":"59104","label":"moving toy and toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy","toy"]}, +{"id":"192209","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"149632","label":"sprinkling salt onto a sliced tomato","template":"Sprinkling [something] onto [something]","placeholders":["salt","a sliced tomato"]}, +{"id":"123040","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"163721","label":"dropping a pen behind wooden box","template":"Dropping [something] behind [something]","placeholders":["a pen","wooden box"]}, +{"id":"106103","label":"holding sunglasses next to package","template":"Holding [something] next to [something]","placeholders":["sunglasses","package"]}, +{"id":"173998","label":"plugging cord into outlet","template":"Plugging [something] into [something]","placeholders":["cord","outlet"]}, +{"id":"178430","label":"holding cup over bottle","template":"Holding [something] over [something]","placeholders":["cup","bottle"]}, +{"id":"166646","label":"putting bangle, thread and key on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bangle","thread","key"]}, +{"id":"106562","label":"plugging usb into pc but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","pc"]}, +{"id":"126014","label":"picking stone up","template":"Picking [something] up","placeholders":["stone"]}, +{"id":"169107","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"33151","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"202258","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"187462","label":"twisting clothes","template":"Twisting [something]","placeholders":["clothes"]}, +{"id":"25654","label":"moving green colour pen away from blue colour pen","template":"Moving [something] away from [something]","placeholders":["green colour pen","blue colour pen"]}, +{"id":"133565","label":"showing that paper napking is inside plastic cube","template":"Showing that [something] is inside [something]","placeholders":["paper napking","plastic cube"]}, +{"id":"87997","label":"pushing a toy truck from right to left","template":"Pushing [something] from right to left","placeholders":["a toy truck"]}, +{"id":"125918","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"203297","label":"bending tissues so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tissues"]}, +{"id":"55396","label":"putting remote onto plate","template":"Putting [something] onto [something]","placeholders":["remote","plate"]}, +{"id":"58692","label":"showing kids sandals to the camera","template":"Showing [something] to the camera","placeholders":["kids sandals"]}, +{"id":"183205","label":"putting envelope in front of card","template":"Putting [something] in front of [something]","placeholders":["envelope","card"]}, +{"id":"189495","label":"showing a mug on top of a tissue box","template":"Showing [something] on top of [something]","placeholders":["a mug","a tissue box"]}, +{"id":"166629","label":"turning the camera right while filming water bottle","template":"Turning the camera right while filming [something]","placeholders":["water bottle"]}, +{"id":"133366","label":"tissue paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue paper"]}, +{"id":"122999","label":"tearing post it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["post it note"]}, +{"id":"115281","label":"uncovering an apple","template":"Uncovering [something]","placeholders":["an apple"]}, +{"id":"196295","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"35459","label":"covering chair with blanket","template":"Covering [something] with [something]","placeholders":["chair","blanket"]}, +{"id":"129865","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"77758","label":"lifting small box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["small box"]}, +{"id":"66066","label":"spilling water next to paper","template":"Spilling [something] next to [something]","placeholders":["water","paper"]}, +{"id":"141983","label":"bending tongue cleaner so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tongue cleaner"]}, +{"id":"211776","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"113628","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"131492","label":"stuffing scissor into bucket","template":"Stuffing [something] into [something]","placeholders":["scissor","bucket"]}, +{"id":"104274","label":"putting power bank and head charger on the table","template":"Putting [something] and [something] on the table","placeholders":["power bank","head charger"]}, +{"id":"104350","label":"turning inhaler upside down","template":"Turning [something] upside down","placeholders":["inhaler"]}, +{"id":"77745","label":"throwing \\\"keys against \\\"wall","template":"Throwing [something] against [something]","placeholders":["\\\"keys","\\\"wall"]}, +{"id":"14207","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"109913","label":"letting marker pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["marker pen"]}, +{"id":"219388","label":"showing pillow to the camera","template":"Showing [something] to the camera","placeholders":["pillow"]}, +{"id":"99245","label":"dropping a card behind a cup","template":"Dropping [something] behind [something]","placeholders":["a card","a cup"]}, +{"id":"41000","label":"covering a pan with a lid","template":"Covering [something] with [something]","placeholders":["a pan","a lid"]}, +{"id":"179445","label":"dropping remote next to pillow","template":"Dropping [something] next to [something]","placeholders":["remote","pillow"]}, +{"id":"140250","label":"moving plastic tin up","template":"Moving [something] up","placeholders":["plastic tin"]}, +{"id":"73185","label":"box of matches falling like a rock","template":"[Something] falling like a rock","placeholders":["box of matches"]}, +{"id":"163441","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"181207","label":"pretending to squeeze a water bottle","template":"Pretending to squeeze [something]","placeholders":["a water bottle"]}, +{"id":"213980","label":"hitting tv with pen","template":"Hitting [something] with [something]","placeholders":["tv","pen"]}, +{"id":"84816","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"183188","label":"plugging usb into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","laptop"]}, +{"id":"170543","label":"pulling two ends of measuring tape but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["measuring tape"]}, +{"id":"10704","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"144568","label":"moving top of wipe bottle","template":"Moving [part] of [something]","placeholders":["top","wipe bottle"]}, +{"id":"92333","label":"attaching cap to marker","template":"Attaching [something] to [something]","placeholders":["cap","marker"]}, +{"id":"76714","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"8124","label":"showing that pink frozen cup is empty","template":"Showing that [something] is empty","placeholders":["pink frozen cup"]}, +{"id":"220300","label":"pouring water onto soap","template":"Pouring [something] onto [something]","placeholders":["water","soap"]}, +{"id":"18481","label":"pulling glasses from left to right","template":"Pulling [something] from left to right","placeholders":["glasses"]}, +{"id":"11639","label":"stuffed animal being deflected from door","template":"[Something] being deflected from [something]","placeholders":["stuffed animal","door"]}, +{"id":"50697","label":"stacking three coins","template":"Stacking [number of] [something]","placeholders":["three","coins"]}, +{"id":"100880","label":"picking stone up","template":"Picking [something] up","placeholders":["stone"]}, +{"id":"109218","label":"putting specs next to wire","template":"Putting [something] next to [something]","placeholders":["specs","wire"]}, +{"id":"70147","label":"opening scissors","template":"Opening [something]","placeholders":["scissors"]}, +{"id":"56969","label":"twisting scarf","template":"Twisting [something]","placeholders":["scarf"]}, +{"id":"109945","label":"moving toy tiger and toy elephant so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy tiger","toy elephant"]}, +{"id":"199524","label":"putting a mug into a sink","template":"Putting [something] into [something]","placeholders":["a mug","a sink"]}, +{"id":"195627","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"79967","label":"covering a phone with paper","template":"Covering [something] with [something]","placeholders":["a phone","paper"]}, +{"id":"151522","label":"stuffing towel into plastic bag","template":"Stuffing [something] into [something]","placeholders":["towel","plastic bag"]}, +{"id":"49478","label":"trying to bend elephant statue so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["elephant statue"]}, +{"id":"188886","label":"turning green cup upside down","template":"Turning [something] upside down","placeholders":["green cup"]}, +{"id":"119020","label":"putting marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["marker"]}, +{"id":"87773","label":"putting card","template":"Putting [something similar to other things that are already on the table]","placeholders":["card"]}, +{"id":"33184","label":"moving knife up","template":"Moving [something] up","placeholders":["knife"]}, +{"id":"157192","label":"twisting t shirt","template":"Twisting [something]","placeholders":["t shirt"]}, +{"id":"49107","label":"dropping an object onto the floor","template":"Dropping [something] onto [something]","placeholders":["an object","the floor"]}, +{"id":"123521","label":"putting water bottle into bowl","template":"Putting [something] into [something]","placeholders":["water bottle","bowl"]}, +{"id":"165705","label":"pulling a napkin from right to left","template":"Pulling [something] from right to left","placeholders":["a napkin"]}, +{"id":"134861","label":"pushing selfie stick so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["selfie stick"]}, +{"id":"6911","label":"a toy car being deflected from a jar","template":"[Something] being deflected from [something]","placeholders":["a toy car","a jar"]}, +{"id":"7955","label":"taking plastic tin out of plastic glass","template":"Taking [something] out of [something]","placeholders":["plastic tin","plastic glass"]}, +{"id":"37888","label":"pretending to take key from table","template":"Pretending to take [something] from [somewhere]","placeholders":["key","table"]}, +{"id":"36285","label":"piling dish towels up","template":"Piling [something] up","placeholders":["dish towels"]}, +{"id":"71858","label":"picking bucket up","template":"Picking [something] up","placeholders":["bucket"]}, +{"id":"140211","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"115778","label":"putting block onto plate","template":"Putting [something] onto [something]","placeholders":["block","plate"]}, +{"id":"182899","label":"throwing paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper"]}, +{"id":"51796","label":"moving thimble down","template":"Moving [something] down","placeholders":["thimble"]}, +{"id":"107239","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"123092","label":"tilting a cutting board with a flashlight on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cutting board","a flashlight"]}, +{"id":"26033","label":"dropping a coin into pocket","template":"Dropping [something] into [something]","placeholders":["a coin","pocket"]}, +{"id":"184604","label":"plugging charger into swicth","template":"Plugging [something] into [something]","placeholders":["charger","swicth"]}, +{"id":"164098","label":"pretending to open vitamins without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["vitamins"]}, +{"id":"61572","label":"putting diaper","template":"Putting [something similar to other things that are already on the table]","placeholders":["diaper"]}, +{"id":"106796","label":"putting mouse on a surface","template":"Putting [something] on a surface","placeholders":["mouse"]}, +{"id":"67884","label":"trying to bend stem so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["stem"]}, +{"id":"120427","label":"pretending to close a box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a box"]}, +{"id":"57524","label":"wiping water off of car","template":"Wiping [something] off of [something]","placeholders":["water","car"]}, +{"id":"59338","label":"moving a bottle and a bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a bottle"]}, +{"id":"45734","label":"pushing scotch tape from right to left","template":"Pushing [something] from right to left","placeholders":["scotch tape"]}, +{"id":"37639","label":"showing a photo of man to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man"]}, +{"id":"212652","label":"opening cabinet door","template":"Opening [something]","placeholders":["cabinet door"]}, +{"id":"106844","label":"turning pink toothbrush case upside down","template":"Turning [something] upside down","placeholders":["pink toothbrush case"]}, +{"id":"201371","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"85316","label":"showing that the washer is empty","template":"Showing that [something] is empty","placeholders":["the washer"]}, +{"id":"3264","label":"tilting a bottle with a tv remote control on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a bottle","a tv remote control"]}, +{"id":"209404","label":"a feather falling to the floor falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a feather falling to the floor"]}, +{"id":"188230","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"48736","label":"dropping a coin onto a rubiks cube","template":"Dropping [something] onto [something]","placeholders":["a coin","a rubiks cube"]}, +{"id":"38513","label":"pulling white kercief from behind of diary","template":"Pulling [something] from behind of [something]","placeholders":["white kercief","diary"]}, +{"id":"56237","label":"tipping a small bag over","template":"Tipping [something] over","placeholders":["a small bag"]}, +{"id":"132312","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"29504","label":"stacking 2 shot glasses","template":"Stacking [number of] [something]","placeholders":["2","shot glasses"]}, +{"id":"183368","label":"showing sock to the camera","template":"Showing [something] to the camera","placeholders":["sock"]}, +{"id":"111682","label":"dropping remote control behind wallet","template":"Dropping [something] behind [something]","placeholders":["remote control","wallet"]}, +{"id":"126279","label":"unfolding bag","template":"Unfolding [something]","placeholders":["bag"]}, +{"id":"54107","label":"dropping water bottle onto bed","template":"Dropping [something] onto [something]","placeholders":["water bottle","bed"]}, +{"id":"174342","label":"putting mug in front of sponge","template":"Putting [something] in front of [something]","placeholders":["mug","sponge"]}, +{"id":"178329","label":"putting stapler upright on the table","template":"Putting [something] upright on the table","placeholders":["stapler"]}, +{"id":"19756","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"74576","label":"pushing soap holder so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["soap holder"]}, +{"id":"185853","label":"lifting up one end of a wooden stick, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a wooden stick"]}, +{"id":"116041","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"51337","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"99070","label":"putting spoon upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["spoon"]}, +{"id":"205466","label":"moving bangle closer to hard drive","template":"Moving [something] closer to [something]","placeholders":["bangle","hard drive"]}, +{"id":"96961","label":"poking wristwatch so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["wristwatch"]}, +{"id":"147217","label":"pushing a box of juice onto a box of juice","template":"Pushing [something] onto [something]","placeholders":["a box of juice","a box of juice"]}, +{"id":"80743","label":"pushing a bucket lid so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bucket lid"]}, +{"id":"15710","label":"pushing ring from right to left","template":"Pushing [something] from right to left","placeholders":["ring"]}, +{"id":"1144","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"92452","label":"putting black umbrella on a surface","template":"Putting [something] on a surface","placeholders":["black umbrella"]}, +{"id":"2791","label":"taking one mobile of many other","template":"Taking [one of many similar things on the table]","placeholders":["one mobile of many other"]}, +{"id":"124283","label":"bending q-tip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["q-tip"]}, +{"id":"64965","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"71769","label":"pushing mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mug"]}, +{"id":"158614","label":"moving spray and bowl away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spray","bowl"]}, +{"id":"123898","label":"pulling the purse onto the towel","template":"Pulling [something] onto [something]","placeholders":["the purse","the towel"]}, +{"id":"47325","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"161313","label":"opening table drawer","template":"Opening [something]","placeholders":["table drawer"]}, +{"id":"99001","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"56258","label":"bending crayon until it breaks","template":"Bending [something] until it breaks","placeholders":["crayon"]}, +{"id":"210640","label":"putting a pen in front of a book","template":"Putting [something] in front of [something]","placeholders":["a pen","a book"]}, +{"id":"130772","label":"spilling honey onto plate","template":"Spilling [something] onto [something]","placeholders":["honey","plate"]}, +{"id":"198300","label":"pretending to squeeze handwash can","template":"Pretending to squeeze [something]","placeholders":["handwash can"]}, +{"id":"217772","label":"covering a watch with a cap","template":"Covering [something] with [something]","placeholders":["a watch","a cap"]}, +{"id":"47421","label":"dropping a ball onto a beanbag","template":"Dropping [something] onto [something]","placeholders":["a ball","a beanbag"]}, +{"id":"52415","label":"putting a container on the edge of a gle so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a container","a gle"]}, +{"id":"121949","label":"moving toothpaste closer to a tap","template":"Moving [something] closer to [something]","placeholders":["toothpaste","a tap"]}, +{"id":"172650","label":"putting tape onto box","template":"Putting [something] onto [something]","placeholders":["tape","box"]}, +{"id":"133673","label":"burying coin in hand towel","template":"Burying [something] in [something]","placeholders":["coin","hand towel"]}, +{"id":"189636","label":"taking paper out of printer","template":"Taking [something] out of [something]","placeholders":["paper","printer"]}, +{"id":"54897","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"173865","label":"pretending to take hand from metal","template":"Pretending to take [something] from [somewhere]","placeholders":["hand","metal"]}, +{"id":"86186","label":"lifting a book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a book"]}, +{"id":"190121","label":"unfolding napkin","template":"Unfolding [something]","placeholders":["napkin"]}, +{"id":"91326","label":"dropping box onto floor","template":"Dropping [something] onto [something]","placeholders":["box","floor"]}, +{"id":"128687","label":"putting pen next to wristwatch","template":"Putting [something] next to [something]","placeholders":["pen","wristwatch"]}, +{"id":"51645","label":"lifting bottle with half onnion on it","template":"Lifting [something] with [something] on it","placeholders":["bottle","half onnion"]}, +{"id":"77290","label":"plugging iphone cord into electric socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["iphone cord","electric socket"]}, +{"id":"204269","label":"covering orange color pencil sharpner with wallet","template":"Covering [something] with [something]","placeholders":["orange color pencil sharpner","wallet"]}, +{"id":"15161","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"195800","label":"showing helmet behind kettle","template":"Showing [something] behind [something]","placeholders":["helmet","kettle"]}, +{"id":"190947","label":"lifting plate with bread on it","template":"Lifting [something] with [something] on it","placeholders":["plate","bread"]}, +{"id":"33117","label":"tipping ashtray with cigarette butt over, so cigarette butt falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["ashtray","cigarette butt","cigarette butt"]}, +{"id":"141757","label":"moving a cup and plastic bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","plastic bottle"]}, +{"id":"139164","label":"something colliding with something and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["something","something"]}, +{"id":"112587","label":"holding can behind remote","template":"Holding [something] behind [something]","placeholders":["can","remote"]}, +{"id":"72485","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"169313","label":"plugging wall charger into socket","template":"Plugging [something] into [something]","placeholders":["wall charger","socket"]}, +{"id":"105966","label":"squeezing a marshmellow","template":"Squeezing [something]","placeholders":["a marshmellow"]}, +{"id":"104987","label":"stuffing pair of socks into shoe","template":"Stuffing [something] into [something]","placeholders":["pair of socks","shoe"]}, +{"id":"220644","label":"stuffing a sweatshirt into a bag","template":"Stuffing [something] into [something]","placeholders":["a sweatshirt","a bag"]}, +{"id":"126549","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"121240","label":"putting box cap that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box cap"]}, +{"id":"156357","label":"dropping clip onto container","template":"Dropping [something] onto [something]","placeholders":["clip","container"]}, +{"id":"156624","label":"taking photo from wardrobe","template":"Taking [something] from [somewhere]","placeholders":["photo","wardrobe"]}, +{"id":"124542","label":"opening bottel","template":"Opening [something]","placeholders":["bottel"]}, +{"id":"42627","label":"showing that prayer book is inside vessel","template":"Showing that [something] is inside [something]","placeholders":["prayer book","vessel"]}, +{"id":"118632","label":"scooping coffee up with scoop","template":"Scooping [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"3103","label":"taking pebble out of cookie box","template":"Taking [something] out of [something]","placeholders":["pebble","cookie box"]}, +{"id":"95488","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"46310","label":"pretending to be tearing ruler","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ruler"]}, +{"id":"108021","label":"moving sketch pen up","template":"Moving [something] up","placeholders":["sketch pen"]}, +{"id":"209960","label":"putting a container upright on the table","template":"Putting [something] upright on the table","placeholders":["a container"]}, +{"id":"91382","label":"moving chocolate towards the camera","template":"Moving [something] towards the camera","placeholders":["chocolate"]}, +{"id":"101440","label":"moving something and something closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["something","something"]}, +{"id":"95067","label":"putting 2 punching machines onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","punching machines","blue note"]}, +{"id":"40810","label":"putting spoon behind remote","template":"Putting [something] behind [something]","placeholders":["spoon","remote"]}, +{"id":"14200","label":"showing that a bowl is inside a microwave oven","template":"Showing that [something] is inside [something]","placeholders":["a bowl","a microwave oven"]}, +{"id":"64231","label":"holding small game card","template":"Holding [something]","placeholders":["small game card"]}, +{"id":"121183","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"76951","label":"throwing pen against closet","template":"Throwing [something] against [something]","placeholders":["pen","closet"]}, +{"id":"170725","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"210991","label":"twisting cable cord","template":"Twisting [something]","placeholders":["cable cord"]}, +{"id":"174797","label":"dropping paper next to box","template":"Dropping [something] next to [something]","placeholders":["paper","box"]}, +{"id":"84919","label":"stuffing crayon into crayon box","template":"Stuffing [something] into [something]","placeholders":["crayon","crayon box"]}, +{"id":"136003","label":"pretending to pick toothpaste up","template":"Pretending to pick [something] up","placeholders":["toothpaste"]}, +{"id":"132599","label":"moving tree branch down","template":"Moving [something] down","placeholders":["tree branch"]}, +{"id":"171590","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"15944","label":"taking pin","template":"Taking [one of many similar things on the table]","placeholders":["pin"]}, +{"id":"140156","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"52789","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"125021","label":"pushing a tape with a cup","template":"Pushing [something] with [something]","placeholders":["a tape","a cup"]}, +{"id":"26111","label":"stacking 2 glasses","template":"Stacking [number of] [something]","placeholders":["2","glasses"]}, +{"id":"197265","label":"putting book similar to other books that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["book similar to other books that are already on the table"]}, +{"id":"5717","label":"pretending to poke mouse","template":"Pretending to poke [something]","placeholders":["mouse"]}, +{"id":"193353","label":"taking pushpins","template":"Taking [one of many similar things on the table]","placeholders":["pushpins"]}, +{"id":"68476","label":"lifting book with book on it","template":"Lifting [something] with [something] on it","placeholders":["book","book"]}, +{"id":"220420","label":"putting a spoon onto stove","template":"Putting [something] onto [something]","placeholders":["a spoon","stove"]}, +{"id":"93515","label":"pouring lentils into container","template":"Pouring [something] into [something]","placeholders":["lentils","container"]}, +{"id":"17113","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"208503","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"159711","label":"showing that a tupper is inside a lunch box","template":"Showing that [something] is inside [something]","placeholders":["a tupper","a lunch box"]}, +{"id":"160644","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"84609","label":"pretending to take flower from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["flower","surface"]}, +{"id":"220554","label":"putting watch and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["watch","pen"]}, +{"id":"15472","label":"pushing toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy"]}, +{"id":"104724","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"151474","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"219646","label":"covering bottle with plate","template":"Covering [something] with [something]","placeholders":["bottle","plate"]}, +{"id":"127344","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"45657","label":"poking plastic bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["plastic bottle"]}, +{"id":"178448","label":"lifting ecig up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["ecig"]}, +{"id":"108918","label":"pretending to take cable from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["cable","surface"]}, +{"id":"122733","label":"spreading cream cheese onto bread","template":"Spreading [something] onto [something]","placeholders":["cream cheese","bread"]}, +{"id":"118117","label":"moving spoon across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["spoon"]}, +{"id":"209276","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"189157","label":"lifting mouse pad with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["mouse pad","mouse"]}, +{"id":"101664","label":"closing medicine bottle","template":"Closing [something]","placeholders":["medicine bottle"]}, +{"id":"98568","label":"pretending to poke shoe","template":"Pretending to poke [something]","placeholders":["shoe"]}, +{"id":"43682","label":"dropping mouse into glass","template":"Dropping [something] into [something]","placeholders":["mouse","glass"]}, +{"id":"31545","label":"tilting stone with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stone","finger"]}, +{"id":"197685","label":"pretending to sprinkle air onto a toothpick container","template":"Pretending to sprinkle air onto [something]","placeholders":["a toothpick container"]}, +{"id":"48401","label":"putting pen into jar","template":"Putting [something] into [something]","placeholders":["pen","jar"]}, +{"id":"196693","label":"holding small stone behind rectangular box","template":"Holding [something] behind [something]","placeholders":["small stone","rectangular box"]}, +{"id":"100574","label":"showing that cloth is inside case","template":"Showing that [something] is inside [something]","placeholders":["cloth","case"]}, +{"id":"100011","label":"piling clothing up","template":"Piling [something] up","placeholders":["clothing"]}, +{"id":"101982","label":"putting kaugummi-packung on a surface","template":"Putting [something] on a surface","placeholders":["kaugummi-packung"]}, +{"id":"176593","label":"closing a jar","template":"Closing [something]","placeholders":["a jar"]}, +{"id":"16363","label":"putting a comb that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a comb"]}, +{"id":"98601","label":"lifting a bowl with a book on it","template":"Lifting [something] with [something] on it","placeholders":["a bowl","a book"]}, +{"id":"13219","label":"tilting bottle with finger on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["bottle","finger"]}, +{"id":"42769","label":"putting a paint brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a paint brush"]}, +{"id":"219351","label":"pushing ball so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["ball"]}, +{"id":"61339","label":"tearing a paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper towel"]}, +{"id":"127289","label":"tearing papier into two pieces","template":"Tearing [something] into two pieces","placeholders":["papier"]}, +{"id":"159271","label":"twisting doorknob","template":"Twisting [something]","placeholders":["doorknob"]}, +{"id":"137779","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"187372","label":"lifting up one end of something without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["something"]}, +{"id":"136463","label":"pretending to turn plastic cup upside down","template":"Pretending to turn [something] upside down","placeholders":["plastic cup"]}, +{"id":"152106","label":"putting box onto prayer book","template":"Putting [something] onto [something]","placeholders":["box","prayer book"]}, +{"id":"3026","label":"plugging power cord into laptop","template":"Plugging [something] into [something]","placeholders":["power cord","laptop"]}, +{"id":"119352","label":"spinning specs box so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["specs box"]}, +{"id":"99784","label":"putting a pen next to the other pen on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen next to the other pen on the table"]}, +{"id":"131363","label":"pushing ball with broom","template":"Pushing [something] with [something]","placeholders":["ball","broom"]}, +{"id":"115961","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"96059","label":"showing bottle on top of pillow","template":"Showing [something] on top of [something]","placeholders":["bottle","pillow"]}, +{"id":"153702","label":"pretending to poke paper","template":"Pretending to poke [something]","placeholders":["paper"]}, +{"id":"24315","label":"showing that a water bottle is empty","template":"Showing that [something] is empty","placeholders":["a water bottle"]}, +{"id":"37426","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"54932","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"2076","label":"letting a steel wheel roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a steel wheel"]}, +{"id":"146189","label":"poking air freshner so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["air freshner"]}, +{"id":"103631","label":"turning the camera right while filming landscaping","template":"Turning the camera right while filming [something]","placeholders":["landscaping"]}, +{"id":"159644","label":"tipping a glass with pens over, so pens falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a glass","pens","pens"]}, +{"id":"40489","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"140315","label":"candy box falling like a rock","template":"[Something] falling like a rock","placeholders":["candy box"]}, +{"id":"71001","label":"closing a wallet","template":"Closing [something]","placeholders":["a wallet"]}, +{"id":"193675","label":"spinning audio jack that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["audio jack"]}, +{"id":"152140","label":"pretending to poke blocks","template":"Pretending to poke [something]","placeholders":["blocks"]}, +{"id":"166311","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"91655","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"24199","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"103193","label":"letting bucket roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bucket"]}, +{"id":"87569","label":"squeezing a hat","template":"Squeezing [something]","placeholders":["a hat"]}, +{"id":"25490","label":"opening a box of tea","template":"Opening [something]","placeholders":["a box of tea"]}, +{"id":"66176","label":"spinning scissor that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["scissor"]}, +{"id":"192918","label":"pushing the weighing scale so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["the weighing scale"]}, +{"id":"108982","label":"dropping a banana onto a packet","template":"Dropping [something] onto [something]","placeholders":["a banana","a packet"]}, +{"id":"26614","label":"covering lamp with blanket","template":"Covering [something] with [something]","placeholders":["lamp","blanket"]}, +{"id":"210739","label":"showing scissors next to mug","template":"Showing [something] next to [something]","placeholders":["scissors","mug"]}, +{"id":"179122","label":"putting bottle in front of juicer","template":"Putting [something] in front of [something]","placeholders":["bottle","juicer"]}, +{"id":"109666","label":"showing canned food to the camera","template":"Showing [something] to the camera","placeholders":["canned food"]}, +{"id":"187901","label":"closing juicer cap","template":"Closing [something]","placeholders":["juicer cap"]}, +{"id":"124752","label":"pretending to throw a book","template":"Pretending to throw [something]","placeholders":["a book"]}, +{"id":"190800","label":"spoon falling like a rock","template":"[Something] falling like a rock","placeholders":["spoon"]}, +{"id":"68336","label":"pretending to close something without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["something"]}, +{"id":"46159","label":"putting book upright on the table","template":"Putting [something] upright on the table","placeholders":["book"]}, +{"id":"121455","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"161579","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"105698","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"71529","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"129790","label":"moving key up","template":"Moving [something] up","placeholders":["key"]}, +{"id":"75918","label":"taking soda can","template":"Taking [one of many similar things on the table]","placeholders":["soda can"]}, +{"id":"187321","label":"pretending to be tearing plastic plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic plate"]}, +{"id":"211039","label":"squeezing a wet paper towel","template":"Squeezing [something]","placeholders":["a wet paper towel"]}, +{"id":"89329","label":"tearing pink paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["pink paper"]}, +{"id":"90374","label":"soldering wire reel falling like a rock","template":"[Something] falling like a rock","placeholders":["soldering wire reel"]}, +{"id":"168785","label":"pulling jar from right to left","template":"Pulling [something] from right to left","placeholders":["jar"]}, +{"id":"195901","label":"covering a banana with baking tray","template":"Covering [something] with [something]","placeholders":["a banana","baking tray"]}, +{"id":"177797","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"89023","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"127867","label":"pulling a tablet computer from behind of speakers","template":"Pulling [something] from behind of [something]","placeholders":["a tablet computer","speakers"]}, +{"id":"50957","label":"moving a pencase closer to a calculator","template":"Moving [something] closer to [something]","placeholders":["a pencase","a calculator"]}, +{"id":"72458","label":"rolling plastic bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["plastic bottle"]}, +{"id":"25665","label":"pushing a wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a wallet"]}, +{"id":"149099","label":"putting marker next to nail file","template":"Putting [something] next to [something]","placeholders":["marker","nail file"]}, +{"id":"136341","label":"putting 2 pens onto a desk","template":"Putting [number of] [something] onto [something]","placeholders":["2","pens","a desk"]}, +{"id":"106434","label":"putting a calculator, paper weight and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a calculator","paper weight","pen"]}, +{"id":"77129","label":"folding blanket","template":"Folding [something]","placeholders":["blanket"]}, +{"id":"135839","label":"stuffing cup into bag","template":"Stuffing [something] into [something]","placeholders":["cup","bag"]}, +{"id":"140633","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"9378","label":"holding pen next to tiger","template":"Holding [something] next to [something]","placeholders":["pen","tiger"]}, +{"id":"26469","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"187615","label":"taking tube out of box","template":"Taking [something] out of [something]","placeholders":["tube","box"]}, +{"id":"162154","label":"showing that trash can is empty","template":"Showing that [something] is empty","placeholders":["trash can"]}, +{"id":"132531","label":"pouring mike's hard lemonade out of bottle","template":"Pouring [something] out of [something]","placeholders":["mike's hard lemonade","bottle"]}, +{"id":"42873","label":"pushing a charger so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a charger"]}, +{"id":"96117","label":"poking a small trash can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a small trash can"]}, +{"id":"27323","label":"putting spoon underneath napkin","template":"Putting [something] underneath [something]","placeholders":["spoon","napkin"]}, +{"id":"194634","label":"pretending to put hammer on a surface","template":"Pretending to put [something] on a surface","placeholders":["hammer"]}, +{"id":"33894","label":"touching (without moving) top of tissue","template":"Touching (without moving) [part] of [something]","placeholders":["top","tissue"]}, +{"id":"20925","label":"moving coin down","template":"Moving [something] down","placeholders":["coin"]}, +{"id":"56852","label":"pushing a coin with an envelope","template":"Pushing [something] with [something]","placeholders":["a coin","an envelope"]}, +{"id":"42312","label":"throwing a box against a water bottle","template":"Throwing [something] against [something]","placeholders":["a box","a water bottle"]}, +{"id":"129978","label":"moving cat and cube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cat","cube"]}, +{"id":"28913","label":"dropping a ruler in front of socks","template":"Dropping [something] in front of [something]","placeholders":["a ruler","socks"]}, +{"id":"17804","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"18950","label":"squeezing a stuffed ball","template":"Squeezing [something]","placeholders":["a stuffed ball"]}, +{"id":"95929","label":"moving scissor away from tool","template":"Moving [something] away from [something]","placeholders":["scissor","tool"]}, +{"id":"129039","label":"moving sugar container closer to tomato","template":"Moving [something] closer to [something]","placeholders":["sugar container","tomato"]}, +{"id":"213177","label":"putting pendrive with other pendrives","template":"Putting [something similar to other things that are already on the table]","placeholders":["pendrive with other pendrives"]}, +{"id":"181013","label":"turning salt upside down","template":"Turning [something] upside down","placeholders":["salt"]}, +{"id":"186553","label":"throwing pillow in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pillow"]}, +{"id":"5008","label":"tilting a book with a box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a box"]}, +{"id":"140540","label":"putting balm onto mobile","template":"Putting [something] onto [something]","placeholders":["balm","mobile"]}, +{"id":"87369","label":"pushing shoe box with book","template":"Pushing [something] with [something]","placeholders":["shoe box","book"]}, +{"id":"142111","label":"putting lighter onto candle","template":"Putting [something] onto [something]","placeholders":["lighter","candle"]}, +{"id":"129889","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"89291","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"135982","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"167940","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"83504","label":"dropping a pin onto a container","template":"Dropping [something] onto [something]","placeholders":["a pin","a container"]}, +{"id":"40718","label":"taking lidded cup out of container","template":"Taking [something] out of [something]","placeholders":["lidded cup","container"]}, +{"id":"180147","label":"spinning cup that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cup"]}, +{"id":"203120","label":"removing mango, revealing dice behind","template":"Removing [something], revealing [something] behind","placeholders":["mango","dice"]}, +{"id":"174519","label":"approaching soda can with your camera","template":"Approaching [something] with your camera","placeholders":["soda can"]}, +{"id":"18431","label":"poking stuffed bear so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["stuffed bear"]}, +{"id":"75587","label":"tearing a sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a sheet of paper"]}, +{"id":"183833","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"173098","label":"putting wristlet, luggage tag and hat on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wristlet","luggage tag","hat"]}, +{"id":"99514","label":"spilling water onto sink","template":"Spilling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"140929","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"61837","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"59005","label":"pretending to pour soda pop out of a bottle, but the bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["soda pop","a bottle","the bottle"]}, +{"id":"123134","label":"moving charger and pendrive away from each other","template":"Moving [something] and [something] away from each other","placeholders":["charger","pendrive"]}, +{"id":"149879","label":"moving wheat of plate wheat","template":"Moving [part] of [something]","placeholders":["wheat","plate wheat"]}, +{"id":"18343","label":"putting binder clip similar to other binder clips that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["binder clip similar to other binder clips that are already on the table"]}, +{"id":"217420","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"143924","label":"putting a napkin, a box and a charger on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a napkin","a box","a charger"]}, +{"id":"180932","label":"tilting a cup with a card on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cup","a card"]}, +{"id":"174813","label":"pulling two ends of something so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["something"]}, +{"id":"112463","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"126450","label":"moving vape away from wallet","template":"Moving [something] away from [something]","placeholders":["vape","wallet"]}, +{"id":"127505","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"53917","label":"pretending to pick top up","template":"Pretending to pick [something] up","placeholders":["top"]}, +{"id":"95898","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"112846","label":"approaching calculator with your camera","template":"Approaching [something] with your camera","placeholders":["calculator"]}, +{"id":"124357","label":"spinning paint bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint bottle"]}, +{"id":"38394","label":"putting a lid onto a pot","template":"Putting [something] onto [something]","placeholders":["a lid","a pot"]}, +{"id":"63033","label":"putting pen into glass","template":"Putting [something] into [something]","placeholders":["pen","glass"]}, +{"id":"146621","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"132169","label":"pulling hand kercief out of pouch","template":"Pulling [something] out of [something]","placeholders":["hand kercief","pouch"]}, +{"id":"195781","label":"folding wallet","template":"Folding [something]","placeholders":["wallet"]}, +{"id":"50173","label":"turning the camera upwards while filming curtains","template":"Turning the camera upwards while filming [something]","placeholders":["curtains"]}, +{"id":"127345","label":"lifting headset with paper on it","template":"Lifting [something] with [something] on it","placeholders":["headset","paper"]}, +{"id":"48029","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"96691","label":"poking a stack of cards so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cards"]}, +{"id":"178672","label":"squeezing cloth","template":"Squeezing [something]","placeholders":["cloth"]}, +{"id":"165214","label":"moving comb down","template":"Moving [something] down","placeholders":["comb"]}, +{"id":"67898","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"176204","label":"taking one of the glasses on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of the glasses on the table"]}, +{"id":"103655","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"20053","label":"wiping juice off of counter","template":"Wiping [something] off of [something]","placeholders":["juice","counter"]}, +{"id":"91152","label":"squeezing plastic bag","template":"Squeezing [something]","placeholders":["plastic bag"]}, +{"id":"185612","label":"pushing hat from left to right","template":"Pushing [something] from left to right","placeholders":["hat"]}, +{"id":"104918","label":"unfolding wool mat","template":"Unfolding [something]","placeholders":["wool mat"]}, +{"id":"130352","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"81878","label":"taking knife from table","template":"Taking [something] from [somewhere]","placeholders":["knife","table"]}, +{"id":"146523","label":"moving a pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a pen"]}, +{"id":"97877","label":"rolling a ring on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ring"]}, +{"id":"149475","label":"spilling water next to a hanger","template":"Spilling [something] next to [something]","placeholders":["water","a hanger"]}, +{"id":"101214","label":"turning the camera upwards while filming toy giraffe","template":"Turning the camera upwards while filming [something]","placeholders":["toy giraffe"]}, +{"id":"31145","label":"putting screwdriver on a surface","template":"Putting [something] on a surface","placeholders":["screwdriver"]}, +{"id":"210816","label":"tipping a large plastic container over","template":"Tipping [something] over","placeholders":["a large plastic container"]}, +{"id":"112165","label":"covering a plush with a shirt","template":"Covering [something] with [something]","placeholders":["a plush","a shirt"]}, +{"id":"135493","label":"laying unopened drink on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["unopened drink"]}, +{"id":"80429","label":"pretending to put a bottle onto the bed","template":"Pretending to put [something] onto [something]","placeholders":["a bottle","the bed"]}, +{"id":"148845","label":"moving remote up","template":"Moving [something] up","placeholders":["remote"]}, +{"id":"12583","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"9928","label":"pushing salt shaker from right to left","template":"Pushing [something] from right to left","placeholders":["salt shaker"]}, +{"id":"111451","label":"turning lipstick upside down","template":"Turning [something] upside down","placeholders":["lipstick"]}, +{"id":"39402","label":"uncovering a razor","template":"Uncovering [something]","placeholders":["a razor"]}, +{"id":"27300","label":"stuffing hoodie into bag","template":"Stuffing [something] into [something]","placeholders":["hoodie","bag"]}, +{"id":"65281","label":"dropping a pen onto the table","template":"Dropping [something] onto [something]","placeholders":["a pen","the table"]}, +{"id":"143328","label":"closing jam-box","template":"Closing [something]","placeholders":["jam-box"]}, +{"id":"125400","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"155999","label":"pretending to close pocket diary without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["pocket diary"]}, +{"id":"149765","label":"tipping red cup with paperwad over, so paperwad falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["red cup","paperwad","paperwad"]}, +{"id":"194951","label":"holding purple container","template":"Holding [something]","placeholders":["purple container"]}, +{"id":"135606","label":"pushing bracelet so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bracelet"]}, +{"id":"491","label":"opening fridge door","template":"Opening [something]","placeholders":["fridge door"]}, +{"id":"50245","label":"pretending to open book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["book"]}, +{"id":"154369","label":"pushing a candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a candle"]}, +{"id":"95626","label":"moving pen and highlighter away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","highlighter"]}, +{"id":"172560","label":"rolling steel weight on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["steel weight"]}, +{"id":"102941","label":"moving candle away from candle","template":"Moving [something] away from [something]","placeholders":["candle","candle"]}, +{"id":"41296","label":"showing that cookie jar is empty","template":"Showing that [something] is empty","placeholders":["cookie jar"]}, +{"id":"13578","label":"pulling grass out of soil ground","template":"Pulling [something] out of [something]","placeholders":["grass","soil ground"]}, +{"id":"124854","label":"putting a pencil on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pencil"]}, +{"id":"103941","label":"putting shoes into packet","template":"Putting [something] into [something]","placeholders":["shoes","packet"]}, +{"id":"217218","label":"throwing emblem onto a surface","template":"Throwing [something] onto a surface","placeholders":["emblem"]}, +{"id":"43636","label":"turning the bottle upside down","template":"Turning [something] upside down","placeholders":["the bottle"]}, +{"id":"71989","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"177622","label":"putting screwdiver, clip and thread on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["screwdiver","clip","thread"]}, +{"id":"66130","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"67288","label":"moving mug and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mug","bottle"]}, +{"id":"6903","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"57971","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"125178","label":"tearing magazine page into two pieces","template":"Tearing [something] into two pieces","placeholders":["magazine page"]}, +{"id":"95180","label":"pretending to pour something out of something, but something is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["something","something","something"]}, +{"id":"108609","label":"pushing coffee from left to right","template":"Pushing [something] from left to right","placeholders":["coffee"]}, +{"id":"216818","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"111036","label":"stuffing a towel into a box","template":"Stuffing [something] into [something]","placeholders":["a towel","a box"]}, +{"id":"220270","label":"twisting hair","template":"Twisting [something]","placeholders":["hair"]}, +{"id":"133003","label":"putting keys behind bag","template":"Putting [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"71644","label":"holding a fork next to a can or container","template":"Holding [something] next to [something]","placeholders":["a fork","a can or container"]}, +{"id":"180020","label":"cotton falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cotton"]}, +{"id":"119669","label":"showing pen on top of holder","template":"Showing [something] on top of [something]","placeholders":["pen","holder"]}, +{"id":"152234","label":"moving blue colour pen down","template":"Moving [something] down","placeholders":["blue colour pen"]}, +{"id":"47593","label":"spilling tea onto sink","template":"Spilling [something] onto [something]","placeholders":["tea","sink"]}, +{"id":"51121","label":"turning a can upside down","template":"Turning [something] upside down","placeholders":["a can"]}, +{"id":"69836","label":"pretending to open canister without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["canister"]}, +{"id":"23437","label":"showing bootle behind book","template":"Showing [something] behind [something]","placeholders":["bootle","book"]}, +{"id":"140100","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"124651","label":"putting a pen next to container","template":"Putting [something] next to [something]","placeholders":["a pen","container"]}, +{"id":"152291","label":"showing that drawer is empty","template":"Showing that [something] is empty","placeholders":["drawer"]}, +{"id":"31723","label":"dropping lipstick tube onto floor","template":"Dropping [something] onto [something]","placeholders":["lipstick tube","floor"]}, +{"id":"197532","label":"pretending to take paper out of notebook","template":"Pretending to take [something] out of [something]","placeholders":["paper","notebook"]}, +{"id":"90483","label":"showing car keys to the camera","template":"Showing [something] to the camera","placeholders":["car keys"]}, +{"id":"217567","label":"putting stuffed animal that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stuffed animal"]}, +{"id":"49496","label":"pretending to pick a key up","template":"Pretending to pick [something] up","placeholders":["a key"]}, +{"id":"116325","label":"tilting a tablet with a block on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a tablet","a block"]}, +{"id":"182391","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"32261","label":"pretending to put something on a surface","template":"Pretending to put [something] on a surface","placeholders":["something"]}, +{"id":"91072","label":"plugging cord into power socket","template":"Plugging [something] into [something]","placeholders":["cord","power socket"]}, +{"id":"70684","label":"putting 2 bananas onto box","template":"Putting [number of] [something] onto [something]","placeholders":["2","bananas","box"]}, +{"id":"57802","label":"lifting a stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a stick"]}, +{"id":"78979","label":"plugging phone charger into electrical plug","template":"Plugging [something] into [something]","placeholders":["phone charger","electrical plug"]}, +{"id":"66550","label":"opening a bucket","template":"Opening [something]","placeholders":["a bucket"]}, +{"id":"42104","label":"holding vape behind guitar case","template":"Holding [something] behind [something]","placeholders":["vape","guitar case"]}, +{"id":"100444","label":"rolling a tennis ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a tennis ball"]}, +{"id":"60832","label":"showing that drawer is empty","template":"Showing that [something] is empty","placeholders":["drawer"]}, +{"id":"218256","label":"pretending to be tearing a tablet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a tablet"]}, +{"id":"121410","label":"taking one of containers","template":"Taking [one of many similar things on the table]","placeholders":["one of containers"]}, +{"id":"214725","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"44842","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"40536","label":"twisting ecobag","template":"Twisting [something]","placeholders":["ecobag"]}, +{"id":"201242","label":"pretending to put plant on a surface","template":"Pretending to put [something] on a surface","placeholders":["plant"]}, +{"id":"184338","label":"attaching a post it note to a map","template":"Attaching [something] to [something]","placeholders":["a post it note","a map"]}, +{"id":"81114","label":"putting a wooden piece onto the top of a plant so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a wooden piece","the top of a plant"]}, +{"id":"81725","label":"pushing comp so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["comp"]}, +{"id":"47599","label":"hitting a candle with a piece of paper","template":"Hitting [something] with [something]","placeholders":["a candle","a piece of paper"]}, +{"id":"118955","label":"lifting a book with a measuring tape on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a measuring tape"]}, +{"id":"122419","label":"throwing a tissue box against a mug","template":"Throwing [something] against [something]","placeholders":["a tissue box","a mug"]}, +{"id":"57704","label":"stuffing cards into card box","template":"Stuffing [something] into [something]","placeholders":["cards","card box"]}, +{"id":"182514","label":"picking flipflop up","template":"Picking [something] up","placeholders":["flipflop"]}, +{"id":"188763","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"72022","label":"pulling scotch tape from left to right","template":"Pulling [something] from left to right","placeholders":["scotch tape"]}, +{"id":"146427","label":"covering calculator with it's protective lid","template":"Covering [something] with [something]","placeholders":["calculator","it's protective lid"]}, +{"id":"216933","label":"pulling two ends of paper but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["paper"]}, +{"id":"61529","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"72418","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"217982","label":"holding wine bottle","template":"Holding [something]","placeholders":["wine bottle"]}, +{"id":"14012","label":"hitting mouse with finger","template":"Hitting [something] with [something]","placeholders":["mouse","finger"]}, +{"id":"137462","label":"holding bottle in front of bag","template":"Holding [something] in front of [something]","placeholders":["bottle","bag"]}, +{"id":"40237","label":"pretending or trying and failing to twist knife","template":"Pretending or trying and failing to twist [something]","placeholders":["knife"]}, +{"id":"209478","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"16624","label":"picking a calculator up","template":"Picking [something] up","placeholders":["a calculator"]}, +{"id":"26785","label":"taking a toy owl","template":"Taking [one of many similar things on the table]","placeholders":["a toy owl"]}, +{"id":"207141","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"197850","label":"turning smarthphone upside down","template":"Turning [something] upside down","placeholders":["smarthphone"]}, +{"id":"23607","label":"rolling cover on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cover"]}, +{"id":"203861","label":"lifting up one end of a book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a book"]}, +{"id":"45310","label":"hitting skateboard with a powerbank","template":"Hitting [something] with [something]","placeholders":["skateboard","a powerbank"]}, +{"id":"75454","label":"pushing hair gum so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hair gum"]}, +{"id":"97442","label":"poking leaves so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["leaves"]}, +{"id":"212504","label":"spilling water behind bucket","template":"Spilling [something] behind [something]","placeholders":["water","bucket"]}, +{"id":"30751","label":"putting shirt into cover","template":"Putting [something] into [something]","placeholders":["shirt","cover"]}, +{"id":"51426","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"135659","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"66745","label":"pretending to take a pen from a glass","template":"Pretending to take [something] from [somewhere]","placeholders":["a pen","a glass"]}, +{"id":"9482","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"92832","label":"lifting a surface with box on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["box"]}, +{"id":"363","label":"spinning ball pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ball pen"]}, +{"id":"132251","label":"pushing cell from right to left","template":"Pushing [something] from right to left","placeholders":["cell"]}, +{"id":"2733","label":"putting a tape dispenser upright on the table","template":"Putting [something] upright on the table","placeholders":["a tape dispenser"]}, +{"id":"94214","label":"lifting tray with cup on it","template":"Lifting [something] with [something] on it","placeholders":["tray","cup"]}, +{"id":"18593","label":"pretending to take carpet slippers from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["carpet slippers","ground"]}, +{"id":"186411","label":"putting a fork into a tea cup","template":"Putting [something] into [something]","placeholders":["a fork","a tea cup"]}, +{"id":"47303","label":"opening food container","template":"Opening [something]","placeholders":["food container"]}, +{"id":"68882","label":"squeezing a reindeer bear","template":"Squeezing [something]","placeholders":["a reindeer bear"]}, +{"id":"101560","label":"lifting a surface with tweezers on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["tweezers"]}, +{"id":"25515","label":"plugging a usb into a laptop","template":"Plugging [something] into [something]","placeholders":["a usb","a laptop"]}, +{"id":"115683","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"158690","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"182749","label":"showing gooseberry to the camera","template":"Showing [something] to the camera","placeholders":["gooseberry"]}, +{"id":"54443","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"100236","label":"pushing cable from left to right","template":"Pushing [something] from left to right","placeholders":["cable"]}, +{"id":"183623","label":"spilling water next to a peg","template":"Spilling [something] next to [something]","placeholders":["water","a peg"]}, +{"id":"133861","label":"pushing car audio cassette adaptor with whiteboard marker","template":"Pushing [something] with [something]","placeholders":["car audio cassette adaptor","whiteboard marker"]}, +{"id":"59929","label":"holding white toy car in front of cup","template":"Holding [something] in front of [something]","placeholders":["white toy car","cup"]}, +{"id":"167482","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"24285","label":"moving phone case up","template":"Moving [something] up","placeholders":["phone case"]}, +{"id":"43219","label":"spinning mobilephone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["mobilephone"]}, +{"id":"81790","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"152597","label":"covering a shor with a blanket","template":"Covering [something] with [something]","placeholders":["a shor","a blanket"]}, +{"id":"49163","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"6889","label":"pretending to pick red pot holder up","template":"Pretending to pick [something] up","placeholders":["red pot holder"]}, +{"id":"211484","label":"putting water bottle on a surface","template":"Putting [something] on a surface","placeholders":["water bottle"]}, +{"id":"188567","label":"putting a pencil behind a dumbbell","template":"Putting [something] behind [something]","placeholders":["a pencil","a dumbbell"]}, +{"id":"54563","label":"dropping box next to trash can","template":"Dropping [something] next to [something]","placeholders":["box","trash can"]}, +{"id":"64597","label":"dropping boot onto floor","template":"Dropping [something] onto [something]","placeholders":["boot","floor"]}, +{"id":"69778","label":"turning the camera left while filming wall","template":"Turning the camera left while filming [something]","placeholders":["wall"]}, +{"id":"98108","label":"tilting teeth brush with a teeth brush on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["teeth brush","a teeth brush"]}, +{"id":"176907","label":"turning the camera left while filming lighter","template":"Turning the camera left while filming [something]","placeholders":["lighter"]}, +{"id":"220079","label":"pretending or trying and failing to twist remote-control","template":"Pretending or trying and failing to twist [something]","placeholders":["remote-control"]}, +{"id":"95432","label":"pretending to be tearing a belt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a belt"]}, +{"id":"31875","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"7435","label":"pretending to take stapler from table","template":"Pretending to take [something] from [somewhere]","placeholders":["stapler","table"]}, +{"id":"53126","label":"spinning package that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["package"]}, +{"id":"101895","label":"dropping a qtip onto the counter","template":"Dropping [something] onto [something]","placeholders":["a qtip","the counter"]}, +{"id":"23188","label":"holding a paperclip over a pen cap","template":"Holding [something] over [something]","placeholders":["a paperclip","a pen cap"]}, +{"id":"5353","label":"holding a bottle behind christmas tree","template":"Holding [something] behind [something]","placeholders":["a bottle","christmas tree"]}, +{"id":"52930","label":"moving a mug and a dvd closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","a dvd"]}, +{"id":"155605","label":"pulling wristwatch from left to right","template":"Pulling [something] from left to right","placeholders":["wristwatch"]}, +{"id":"78067","label":"putting a box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a box"]}, +{"id":"70316","label":"pushing pen onto box","template":"Pushing [something] onto [something]","placeholders":["pen","box"]}, +{"id":"122272","label":"stuffing spectacle box into pouch","template":"Stuffing [something] into [something]","placeholders":["spectacle box","pouch"]}, +{"id":"110958","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"59218","label":"key falling like a rock","template":"[Something] falling like a rock","placeholders":["key"]}, +{"id":"52414","label":"candy wrapper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["candy wrapper"]}, +{"id":"74370","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"75335","label":"moving a matchbox across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a matchbox"]}, +{"id":"164385","label":"putting pink cologne on a surface","template":"Putting [something] on a surface","placeholders":["pink cologne"]}, +{"id":"195175","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"137160","label":"letting a small iron rod roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a small iron rod"]}, +{"id":"85889","label":"pushing towel from left to right","template":"Pushing [something] from left to right","placeholders":["towel"]}, +{"id":"148203","label":"holding green water bottle","template":"Holding [something]","placeholders":["green water bottle"]}, +{"id":"71965","label":"pushing keys so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["keys"]}, +{"id":"100234","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"22791","label":"pretending to be tearing a blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a blanket"]}, +{"id":"64951","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"8858","label":"twisting a lid onto a container","template":"Twisting [something]","placeholders":["a lid onto a container"]}, +{"id":"112949","label":"putting a coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin"]}, +{"id":"24023","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"31181","label":"putting a book on a surface","template":"Putting [something] on a surface","placeholders":["a book"]}, +{"id":"44803","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"198976","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"127935","label":"showing a remote behind a tv","template":"Showing [something] behind [something]","placeholders":["a remote","a tv"]}, +{"id":"170806","label":"pretending to take mouse from desk","template":"Pretending to take [something] from [somewhere]","placeholders":["mouse","desk"]}, +{"id":"25484","label":"holding nail polish over air freshener can","template":"Holding [something] over [something]","placeholders":["nail polish","air freshener can"]}, +{"id":"178462","label":"pretending to put a spoon on a surface","template":"Pretending to put [something] on a surface","placeholders":["a spoon"]}, +{"id":"202241","label":"showing that skillet is empty","template":"Showing that [something] is empty","placeholders":["skillet"]}, +{"id":"13820","label":"moving a tape away from sun glasses","template":"Moving [something] away from [something]","placeholders":["a tape","sun glasses"]}, +{"id":"151876","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"45389","label":"showing that a tray is empty","template":"Showing that [something] is empty","placeholders":["a tray"]}, +{"id":"211245","label":"pulling phone from behind of camera","template":"Pulling [something] from behind of [something]","placeholders":["phone","camera"]}, +{"id":"201569","label":"pulling paint tube from left to right","template":"Pulling [something] from left to right","placeholders":["paint tube"]}, +{"id":"215016","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"128682","label":"dropping a chalk into a chalk box","template":"Dropping [something] into [something]","placeholders":["a chalk","a chalk box"]}, +{"id":"112777","label":"plugging plag into wall outlet","template":"Plugging [something] into [something]","placeholders":["plag","wall outlet"]}, +{"id":"100595","label":"tipping hand soap over","template":"Tipping [something] over","placeholders":["hand soap"]}, +{"id":"91913","label":"dropping rubix cube into bowl","template":"Dropping [something] into [something]","placeholders":["rubix cube","bowl"]}, +{"id":"130127","label":"putting a pen next to a screwdriver","template":"Putting [something] next to [something]","placeholders":["a pen","a screwdriver"]}, +{"id":"218929","label":"pushing a snake ladder board so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a snake ladder board"]}, +{"id":"21691","label":"moving milk closer to knife","template":"Moving [something] closer to [something]","placeholders":["milk","knife"]}, +{"id":"60025","label":"taking newspaper from floor","template":"Taking [something] from [somewhere]","placeholders":["newspaper","floor"]}, +{"id":"201852","label":"letting a glass jar roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a glass jar"]}, +{"id":"8763","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"112745","label":"moving toy closer to plastic glass","template":"Moving [something] closer to [something]","placeholders":["toy","plastic glass"]}, +{"id":"126111","label":"pretending to scoop soup up with a spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["soup","a spoon"]}, +{"id":"8503","label":"putting 1 bag of rice onto a pot","template":"Putting [number of] [something] onto [something]","placeholders":["1","bag of rice","a pot"]}, +{"id":"6863","label":"wiping crumbs off of plate","template":"Wiping [something] off of [something]","placeholders":["crumbs","plate"]}, +{"id":"116785","label":"tearing orange paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["orange paper"]}, +{"id":"33564","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"172634","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"199855","label":"bending a piece of paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a piece of paper"]}, +{"id":"212373","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"150892","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"103485","label":"pretending to put a cable into a laptop port","template":"Pretending to put [something] into [something]","placeholders":["a cable","a laptop port"]}, +{"id":"65914","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"49463","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"123288","label":"pushing pot with stick","template":"Pushing [something] with [something]","placeholders":["pot","stick"]}, +{"id":"202867","label":"uncovering a cellphone","template":"Uncovering [something]","placeholders":["a cellphone"]}, +{"id":"180774","label":"polythene cover falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["polythene cover"]}, +{"id":"186768","label":"bending wooden reeper until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden reeper"]}, +{"id":"94925","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"147099","label":"pushing toy car from left to right","template":"Pushing [something] from left to right","placeholders":["toy car"]}, +{"id":"77707","label":"pulling black hair tie from right to left","template":"Pulling [something] from right to left","placeholders":["black hair tie"]}, +{"id":"211101","label":"taking mail","template":"Taking [one of many similar things on the table]","placeholders":["mail"]}, +{"id":"169919","label":"pouring water into a mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a mug"]}, +{"id":"134050","label":"stacking one cup onto a can","template":"Stacking [number of] [something]","placeholders":["one cup","onto a can"]}, +{"id":"75323","label":"unfolding underwear","template":"Unfolding [something]","placeholders":["underwear"]}, +{"id":"107295","label":"pretending or trying and failing to twist moprod","template":"Pretending or trying and failing to twist [something]","placeholders":["moprod"]}, +{"id":"38411","label":"opening a container","template":"Opening [something]","placeholders":["a container"]}, +{"id":"130539","label":"putting usb cable next to yellowbook","template":"Putting [something] next to [something]","placeholders":["usb cable","yellowbook"]}, +{"id":"169026","label":"throwing towel","template":"Throwing [something]","placeholders":["towel"]}, +{"id":"121585","label":"putting a musical tabala onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a musical tabala"]}, +{"id":"129496","label":"bending carrot until it breaks","template":"Bending [something] until it breaks","placeholders":["carrot"]}, +{"id":"207166","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"192226","label":"putting book underneath mobile","template":"Putting [something] underneath [something]","placeholders":["book","mobile"]}, +{"id":"82929","label":"trying to pour soda into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["soda","a cup"]}, +{"id":"37072","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"90253","label":"bending wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["wire"]}, +{"id":"138521","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"41066","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"164039","label":"pretending to take pen out of glass","template":"Pretending to take [something] out of [something]","placeholders":["pen","glass"]}, +{"id":"32583","label":"tilting coaster with avocado on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["coaster","avocado"]}, +{"id":"162338","label":"pushing torch from right to left","template":"Pushing [something] from right to left","placeholders":["torch"]}, +{"id":"108769","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"127291","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"67862","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"134947","label":"turning the camera upwards while filming brown bracelet","template":"Turning the camera upwards while filming [something]","placeholders":["brown bracelet"]}, +{"id":"452","label":"spinning fidget that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["fidget"]}, +{"id":"80228","label":"tipping pepper shaker over","template":"Tipping [something] over","placeholders":["pepper shaker"]}, +{"id":"124674","label":"opening a tap","template":"Opening [something]","placeholders":["a tap"]}, +{"id":"135976","label":"lifting ipad with pen on it","template":"Lifting [something] with [something] on it","placeholders":["ipad","pen"]}, +{"id":"94872","label":"putting a tape in front of a coil of wires","template":"Putting [something] in front of [something]","placeholders":["a tape","a coil of wires"]}, +{"id":"120936","label":"moving bottle and can away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","can"]}, +{"id":"172949","label":"pretending to pick a coffee cup up","template":"Pretending to pick [something] up","placeholders":["a coffee cup"]}, +{"id":"178666","label":"pretending to squeeze a tube of toothpaste","template":"Pretending to squeeze [something]","placeholders":["a tube of toothpaste"]}, +{"id":"98452","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"121613","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"157241","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"207756","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"22059","label":"holding remote in front of clock","template":"Holding [something] in front of [something]","placeholders":["remote","clock"]}, +{"id":"108274","label":"putting leaf","template":"Putting [something similar to other things that are already on the table]","placeholders":["leaf"]}, +{"id":"215063","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"217781","label":"stuffing paper clips box into a container","template":"Stuffing [something] into [something]","placeholders":["paper clips box","a container"]}, +{"id":"99067","label":"trying to bend a textsufer so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a textsufer"]}, +{"id":"191007","label":"pouring juice into a cup","template":"Pouring [something] into [something]","placeholders":["juice","a cup"]}, +{"id":"12888","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"154401","label":"stuffing tissue into mug","template":"Stuffing [something] into [something]","placeholders":["tissue","mug"]}, +{"id":"188573","label":"putting glue stick upright on the table","template":"Putting [something] upright on the table","placeholders":["glue stick"]}, +{"id":"97789","label":"holding coins (pennies)","template":"Holding [something]","placeholders":["coins (pennies)"]}, +{"id":"214483","label":"pushing a box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a box"]}, +{"id":"87387","label":"spinning a spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a spoon"]}, +{"id":"4917","label":"taking water bottle out of refrigerator","template":"Taking [something] out of [something]","placeholders":["water bottle","refrigerator"]}, +{"id":"157382","label":"uncovering plush doll","template":"Uncovering [something]","placeholders":["plush doll"]}, +{"id":"128530","label":"holding nail clipper in front of pencil case","template":"Holding [something] in front of [something]","placeholders":["nail clipper","pencil case"]}, +{"id":"150113","label":"pretending to put crayon into mug","template":"Pretending to put [something] into [something]","placeholders":["crayon","mug"]}, +{"id":"217900","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"167177","label":"turning the camera right while filming violin","template":"Turning the camera right while filming [something]","placeholders":["violin"]}, +{"id":"102979","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"39397","label":"dropping cigarette lighter in front of black pouch","template":"Dropping [something] in front of [something]","placeholders":["cigarette lighter","black pouch"]}, +{"id":"18570","label":"wiping cleaner off of window","template":"Wiping [something] off of [something]","placeholders":["cleaner","window"]}, +{"id":"112472","label":"lifting a compact disk up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a compact disk"]}, +{"id":"41036","label":"uncovering brush","template":"Uncovering [something]","placeholders":["brush"]}, +{"id":"32957","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"190226","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"148404","label":"holding bottle next to ashtray","template":"Holding [something] next to [something]","placeholders":["bottle","ashtray"]}, +{"id":"73965","label":"scooping crayons up with hands","template":"Scooping [something] up with [something]","placeholders":["crayons","hands"]}, +{"id":"137786","label":"putting a spoon into bucket","template":"Putting [something] into [something]","placeholders":["a spoon","bucket"]}, +{"id":"63892","label":"pushing jug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jug"]}, +{"id":"8851","label":"stacking 3 sponges","template":"Stacking [number of] [something]","placeholders":["3","sponges"]}, +{"id":"24378","label":"holding a lighter over a table","template":"Holding [something] over [something]","placeholders":["a lighter","a table"]}, +{"id":"83163","label":"moving glasses across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["glasses"]}, +{"id":"134233","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"32152","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"220758","label":"turning a mayo jar upside down","template":"Turning [something] upside down","placeholders":["a mayo jar"]}, +{"id":"216825","label":"tearing post it just a little bit","template":"Tearing [something] just a little bit","placeholders":["post it"]}, +{"id":"203974","label":"pouring water into glass bottle","template":"Pouring [something] into [something]","placeholders":["water","glass bottle"]}, +{"id":"108285","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"31431","label":"putting a mug in front of the stapler","template":"Putting [something] in front of [something]","placeholders":["a mug","the stapler"]}, +{"id":"188843","label":"pushing a marker from left to right","template":"Pushing [something] from left to right","placeholders":["a marker"]}, +{"id":"163577","label":"pretending to pick glass up","template":"Pretending to pick [something] up","placeholders":["glass"]}, +{"id":"51076","label":"lifting a surface with kitchen scissors on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["kitchen scissors"]}, +{"id":"178388","label":"lifting up one end of chair, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["chair"]}, +{"id":"173081","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"189818","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"135111","label":"spreading sauce onto a plate","template":"Spreading [something] onto [something]","placeholders":["sauce","a plate"]}, +{"id":"150305","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"149224","label":"putting candle behind frame","template":"Putting [something] behind [something]","placeholders":["candle","frame"]}, +{"id":"49283","label":"pouring milk out of container","template":"Pouring [something] out of [something]","placeholders":["milk","container"]}, +{"id":"160267","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"38515","label":"letting a medicine bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a medicine bottle"]}, +{"id":"156782","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"55101","label":"pushing marker so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["marker"]}, +{"id":"203764","label":"moving torch across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["torch"]}, +{"id":"38820","label":"closing folder","template":"Closing [something]","placeholders":["folder"]}, +{"id":"40514","label":"pretending or failing to wipe butter off of plate","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["butter","plate"]}, +{"id":"204491","label":"plugging charger into wall","template":"Plugging [something] into [something]","placeholders":["charger","wall"]}, +{"id":"55311","label":"pretending to turn a smartphone upside down","template":"Pretending to turn [something] upside down","placeholders":["a smartphone"]}, +{"id":"24349","label":"holding food container behind a man","template":"Holding [something] behind [something]","placeholders":["food container","a man"]}, +{"id":"187962","label":"spinning usb drive so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["usb drive"]}, +{"id":"195002","label":"tipping eraser over","template":"Tipping [something] over","placeholders":["eraser"]}, +{"id":"121547","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"21040","label":"pretending to be tearing change purse","template":"Pretending to be tearing [something that is not tearable]","placeholders":["change purse"]}, +{"id":"117837","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"48916","label":"holding sticky notes in front of sticky notes","template":"Holding [something] in front of [something]","placeholders":["sticky notes","sticky notes"]}, +{"id":"28970","label":"holding a matchbox over a padlock","template":"Holding [something] over [something]","placeholders":["a matchbox","a padlock"]}, +{"id":"168721","label":"dropping a cup into a paper bag","template":"Dropping [something] into [something]","placeholders":["a cup","a paper bag"]}, +{"id":"40949","label":"dropping a peg behind a cup","template":"Dropping [something] behind [something]","placeholders":["a peg","a cup"]}, +{"id":"218509","label":"uncovering a book","template":"Uncovering [something]","placeholders":["a book"]}, +{"id":"85919","label":"moving tyre of a bicycle","template":"Moving [part] of [something]","placeholders":["tyre","a bicycle"]}, +{"id":"74013","label":"spilling water next to a knife","template":"Spilling [something] next to [something]","placeholders":["water","a knife"]}, +{"id":"170548","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"84035","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"169543","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"176003","label":"showing headphones on top of a television","template":"Showing [something] on top of [something]","placeholders":["headphones","a television"]}, +{"id":"189993","label":"putting a lighter into a measuring cup","template":"Putting [something] into [something]","placeholders":["a lighter","a measuring cup"]}, +{"id":"58250","label":"lifting a surface with a mug on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a mug"]}, +{"id":"145003","label":"poking a hole into sugar","template":"Poking a hole into [something soft]","placeholders":["sugar"]}, +{"id":"184341","label":"pretending to put purple balloon pump on a surface","template":"Pretending to put [something] on a surface","placeholders":["purple balloon pump"]}, +{"id":"50619","label":"poking pan so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["pan"]}, +{"id":"192749","label":"folding blowes","template":"Folding [something]","placeholders":["blowes"]}, +{"id":"137998","label":"holding magazine next to hand bag","template":"Holding [something] next to [something]","placeholders":["magazine","hand bag"]}, +{"id":"33587","label":"showing chair next to desk","template":"Showing [something] next to [something]","placeholders":["chair","desk"]}, +{"id":"10338","label":"uncovering twizzer","template":"Uncovering [something]","placeholders":["twizzer"]}, +{"id":"77834","label":"turning a lighter upside down","template":"Turning [something] upside down","placeholders":["a lighter"]}, +{"id":"28479","label":"pushing a mouse with a wallet","template":"Pushing [something] with [something]","placeholders":["a mouse","a wallet"]}, +{"id":"176955","label":"turning tea light candle upside down","template":"Turning [something] upside down","placeholders":["tea light candle"]}, +{"id":"215686","label":"putting 2 ink bottles onto calculator","template":"Putting [number of] [something] onto [something]","placeholders":["2","ink bottles","calculator"]}, +{"id":"57022","label":"pretending to open phone without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["phone"]}, +{"id":"15776","label":"pretending to put yellow hairband next to duster","template":"Pretending to put [something] next to [something]","placeholders":["yellow hairband","duster"]}, +{"id":"26287","label":"holding pill bottle over laptop","template":"Holding [something] over [something]","placeholders":["pill bottle","laptop"]}, +{"id":"189438","label":"turning the camera downwards while filming scent bottle","template":"Turning the camera downwards while filming [something]","placeholders":["scent bottle"]}, +{"id":"97139","label":"attaching a coin to a padlock","template":"Attaching [something] to [something]","placeholders":["a coin","a padlock"]}, +{"id":"185196","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"188622","label":"tissue box being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["tissue box","couch"]}, +{"id":"97822","label":"moving away from a painting with your camera","template":"Moving away from [something] with your camera","placeholders":["a painting"]}, +{"id":"109085","label":"putting a perfume next to lotion bottle","template":"Putting [something] next to [something]","placeholders":["a perfume","lotion bottle"]}, +{"id":"138243","label":"moving arm of stuffed bear","template":"Moving [part] of [something]","placeholders":["arm","stuffed bear"]}, +{"id":"29941","label":"pulling tv remote from right to left","template":"Pulling [something] from right to left","placeholders":["tv remote"]}, +{"id":"171121","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"110140","label":"pretending to put a pen onto a bag","template":"Pretending to put [something] onto [something]","placeholders":["a pen","a bag"]}, +{"id":"178377","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"100336","label":"turning the camera right while filming orange notebook","template":"Turning the camera right while filming [something]","placeholders":["orange notebook"]}, +{"id":"168150","label":"stuffing box into cube","template":"Stuffing [something] into [something]","placeholders":["box","cube"]}, +{"id":"172025","label":"pretending to poke ipad case","template":"Pretending to poke [something]","placeholders":["ipad case"]}, +{"id":"156740","label":"pretending to put tiffen box on a surface","template":"Pretending to put [something] on a surface","placeholders":["tiffen box"]}, +{"id":"139013","label":"putting chalk into jar","template":"Putting [something] into [something]","placeholders":["chalk","jar"]}, +{"id":"8563","label":"pretending to throw plastic bottle","template":"Pretending to throw [something]","placeholders":["plastic bottle"]}, +{"id":"36373","label":"lifting up one end of bottle, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bottle"]}, +{"id":"131442","label":"closing ink bottle","template":"Closing [something]","placeholders":["ink bottle"]}, +{"id":"5249","label":"spilling water next to a box","template":"Spilling [something] next to [something]","placeholders":["water","a box"]}, +{"id":"146221","label":"dropping hair tie into cupholder","template":"Dropping [something] into [something]","placeholders":["hair tie","cupholder"]}, +{"id":"71815","label":"holding 50 peso bill","template":"Holding [something]","placeholders":["50 peso bill"]}, +{"id":"151083","label":"tilting book with remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","remote"]}, +{"id":"186033","label":"pretending to open a drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a drawer"]}, +{"id":"1027","label":"putting pencil into pencil case","template":"Putting [something] into [something]","placeholders":["pencil","pencil case"]}, +{"id":"15130","label":"uncovering a plate","template":"Uncovering [something]","placeholders":["a plate"]}, +{"id":"180385","label":"trying to bend marker so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["marker"]}, +{"id":"199966","label":"twisting blouse","template":"Twisting [something]","placeholders":["blouse"]}, +{"id":"125581","label":"pushing pink blush on from right to left","template":"Pushing [something] from right to left","placeholders":["pink blush on"]}, +{"id":"168726","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"169827","label":"throwing empty water bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["empty water bottle"]}, +{"id":"84000","label":"lifting match box with ointment tube on it","template":"Lifting [something] with [something] on it","placeholders":["match box","ointment tube"]}, +{"id":"205352","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"99398","label":"pushing small sharpener from left to right","template":"Pushing [something] from left to right","placeholders":["small sharpener"]}, +{"id":"205927","label":"showing that tin is empty","template":"Showing that [something] is empty","placeholders":["tin"]}, +{"id":"5432","label":"holding business card in front of pen","template":"Holding [something] in front of [something]","placeholders":["business card","pen"]}, +{"id":"90233","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"137165","label":"plugging cord into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall"]}, +{"id":"194379","label":"tipping pepper grinder over","template":"Tipping [something] over","placeholders":["pepper grinder"]}, +{"id":"186192","label":"hitting drum with sock","template":"Hitting [something] with [something]","placeholders":["drum","sock"]}, +{"id":"118939","label":"scooping starburst up with hand","template":"Scooping [something] up with [something]","placeholders":["starburst","hand"]}, +{"id":"104653","label":"lifting up one end of a hammer without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a hammer"]}, +{"id":"168206","label":"tilting a book with a mobile phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a mobile phone"]}, +{"id":"189063","label":"spinning quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["quarter"]}, +{"id":"193607","label":"moving striker coin away from whiteboard marker pen","template":"Moving [something] away from [something]","placeholders":["striker coin","whiteboard marker pen"]}, +{"id":"143000","label":"moving a pen and a pair of sunglasses away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a pen","a pair of sunglasses"]}, +{"id":"125443","label":"stacking 2 pill bottles","template":"Stacking [number of] [something]","placeholders":["2","pill bottles"]}, +{"id":"115580","label":"spinning a spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a spoon"]}, +{"id":"113955","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"97768","label":"putting a can in front of keys","template":"Putting [something] in front of [something]","placeholders":["a can","keys"]}, +{"id":"12211","label":"turning the camera upwards while filming ring","template":"Turning the camera upwards while filming [something]","placeholders":["ring"]}, +{"id":"180612","label":"scooping a toy up with my hand","template":"Scooping [something] up with [something]","placeholders":["a toy","my hand"]}, +{"id":"63348","label":"taking controller","template":"Taking [one of many similar things on the table]","placeholders":["controller"]}, +{"id":"95246","label":"putting a paperclip back","template":"Putting [something similar to other things that are already on the table]","placeholders":["a paperclip back"]}, +{"id":"167367","label":"putting 2 wooden sticks onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","wooden sticks","black pouch"]}, +{"id":"68544","label":"putting gear wheel next to tablet box","template":"Putting [something] next to [something]","placeholders":["gear wheel","tablet box"]}, +{"id":"59287","label":"letting ping pong ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ping pong ball"]}, +{"id":"157709","label":"lotion falling like a rock","template":"[Something] falling like a rock","placeholders":["lotion"]}, +{"id":"30017","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"171359","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"67952","label":"carry synthetic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["carry synthetic bag"]}, +{"id":"194103","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"108440","label":"dropping glue in front of paper holder","template":"Dropping [something] in front of [something]","placeholders":["glue","paper holder"]}, +{"id":"31391","label":"spinning kid toy that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["kid toy"]}, +{"id":"20782","label":"stapler falling like a rock","template":"[Something] falling like a rock","placeholders":["stapler"]}, +{"id":"189513","label":"pulling a toy skull out of a box","template":"Pulling [something] out of [something]","placeholders":["a toy skull","a box"]}, +{"id":"3525","label":"pretending or trying and failing to twist spray can","template":"Pretending or trying and failing to twist [something]","placeholders":["spray can"]}, +{"id":"192278","label":"plugging jack into speaker","template":"Plugging [something] into [something]","placeholders":["jack","speaker"]}, +{"id":"120747","label":"putting phone and computer mouse on the table","template":"Putting [something] and [something] on the table","placeholders":["phone","computer mouse"]}, +{"id":"208064","label":"putting pot holder upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pot holder"]}, +{"id":"121848","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"17700","label":"putting a glass in front of the adapter","template":"Putting [something] in front of [something]","placeholders":["a glass","the adapter"]}, +{"id":"36063","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"143952","label":"putting coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins"]}, +{"id":"50199","label":"moving a hair brush and a glass so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a hair brush","a glass"]}, +{"id":"82875","label":"piling sponge, converter, nail clipper up","template":"Piling [something] up","placeholders":["sponge, converter, nail clipper"]}, +{"id":"5469","label":"wiping chocolate off of counter","template":"Wiping [something] off of [something]","placeholders":["chocolate","counter"]}, +{"id":"120977","label":"moving pen and holder closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","holder"]}, +{"id":"73986","label":"putting a salt shaker upright on the table","template":"Putting [something] upright on the table","placeholders":["a salt shaker"]}, +{"id":"83612","label":"moving a small jar away from a big jar","template":"Moving [something] away from [something]","placeholders":["a small jar","a big jar"]}, +{"id":"14538","label":"plugging cord into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","socket"]}, +{"id":"37067","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"103829","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"66093","label":"fidget spinner being deflected from pop bottle","template":"[Something] being deflected from [something]","placeholders":["fidget spinner","pop bottle"]}, +{"id":"197696","label":"sneaker colliding with sneaker and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["sneaker","sneaker"]}, +{"id":"33574","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"110649","label":"laying tablet box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["tablet box"]}, +{"id":"163049","label":"uncovering wallet","template":"Uncovering [something]","placeholders":["wallet"]}, +{"id":"84770","label":"laying black colour marker pen cap on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["black colour marker pen cap"]}, +{"id":"110218","label":"tilting comb with pencil sharpner on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["comb","pencil sharpner"]}, +{"id":"53748","label":"moving keyboard down","template":"Moving [something] down","placeholders":["keyboard"]}, +{"id":"50290","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"47558","label":"tearing receipt into two pieces","template":"Tearing [something] into two pieces","placeholders":["receipt"]}, +{"id":"43126","label":"showing that a small container is empty","template":"Showing that [something] is empty","placeholders":["a small container"]}, +{"id":"72218","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"187940","label":"throwing onion","template":"Throwing [something]","placeholders":["onion"]}, +{"id":"28905","label":"pulling paper towel from right to left","template":"Pulling [something] from right to left","placeholders":["paper towel"]}, +{"id":"120974","label":"moving the remote and the mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the remote","the mouse"]}, +{"id":"177582","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"172706","label":"tilting folder with orange ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","orange ball"]}, +{"id":"5977","label":"failing to put a book into a mug because the book does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a book","a mug","the book"]}, +{"id":"161148","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"171192","label":"plugging a cable into a charger","template":"Plugging [something] into [something]","placeholders":["a cable","a charger"]}, +{"id":"172144","label":"putting watch, glass and doll on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["watch","glass","doll"]}, +{"id":"117965","label":"tilting book with glass on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","glass"]}, +{"id":"193055","label":"moving green colour toy car up","template":"Moving [something] up","placeholders":["green colour toy car"]}, +{"id":"141828","label":"putting medicine on a surface","template":"Putting [something] on a surface","placeholders":["medicine"]}, +{"id":"180327","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"218385","label":"letting a small iron rod roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a small iron rod"]}, +{"id":"263","label":"wiping mark off of counter","template":"Wiping [something] off of [something]","placeholders":["mark","counter"]}, +{"id":"53414","label":"removing a box, revealing a glass behind","template":"Removing [something], revealing [something] behind","placeholders":["a box","a glass"]}, +{"id":"73406","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"189874","label":"laying a can on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a can"]}, +{"id":"110162","label":"turning stacking block upside down","template":"Turning [something] upside down","placeholders":["stacking block"]}, +{"id":"95527","label":"pretending or failing to wipe stain off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","chair"]}, +{"id":"137399","label":"pretending to pick magazine up","template":"Pretending to pick [something] up","placeholders":["magazine"]}, +{"id":"12636","label":"plugging a building block into another building block but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a building block","another building block"]}, +{"id":"181528","label":"lifting up one end of a booklet without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a booklet"]}, +{"id":"3016","label":"turning the camera left while filming pink water bottle","template":"Turning the camera left while filming [something]","placeholders":["pink water bottle"]}, +{"id":"205607","label":"pretending to take sandals from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["sandals","floor"]}, +{"id":"1761","label":"pushing a book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a book"]}, +{"id":"149797","label":"pushing adhesive tape so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["adhesive tape"]}, +{"id":"185264","label":"uncovering an empty water bottle","template":"Uncovering [something]","placeholders":["an empty water bottle"]}, +{"id":"4493","label":"pretending to take tissue from clothes","template":"Pretending to take [something] from [somewhere]","placeholders":["tissue","clothes"]}, +{"id":"113242","label":"failing to put a dvd into a mug because the dvd does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a dvd","a mug","the dvd"]}, +{"id":"179073","label":"pushing book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["book"]}, +{"id":"203213","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"10606","label":"showing flower pot behind tiger figurine","template":"Showing [something] behind [something]","placeholders":["flower pot","tiger figurine"]}, +{"id":"212014","label":"dropping news paper into ground","template":"Dropping [something] into [something]","placeholders":["news paper","ground"]}, +{"id":"198138","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"162876","label":"moving a paint brush up","template":"Moving [something] up","placeholders":["a paint brush"]}, +{"id":"152836","label":"spinning a battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a battery"]}, +{"id":"125729","label":"moving blue colour pen down","template":"Moving [something] down","placeholders":["blue colour pen"]}, +{"id":"120135","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78670","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"100493","label":"cover falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cover"]}, +{"id":"175517","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"154287","label":"throwing an eye dropper in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["an eye dropper"]}, +{"id":"38824","label":"dropping coffee behind canister","template":"Dropping [something] behind [something]","placeholders":["coffee","canister"]}, +{"id":"81307","label":"squeezing a toothpaste tube","template":"Squeezing [something]","placeholders":["a toothpaste tube"]}, +{"id":"149517","label":"putting push pin","template":"Putting [something similar to other things that are already on the table]","placeholders":["push pin"]}, +{"id":"172232","label":"moving water bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["water bottle"]}, +{"id":"94104","label":"turning the camera upwards while filming instruction board","template":"Turning the camera upwards while filming [something]","placeholders":["instruction board"]}, +{"id":"164079","label":"putting a brush, an eraser and a glass of water on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a brush","an eraser","a glass of water"]}, +{"id":"145148","label":"pretending to take cellphone from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","countertop"]}, +{"id":"200318","label":"tipping pill bottle over","template":"Tipping [something] over","placeholders":["pill bottle"]}, +{"id":"77429","label":"putting pillow in front of dog","template":"Putting [something] in front of [something]","placeholders":["pillow","dog"]}, +{"id":"76993","label":"lifting hose head up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["hose head"]}, +{"id":"141069","label":"opening car bonnet","template":"Opening [something]","placeholders":["car bonnet"]}, +{"id":"57791","label":"showing book to the camera","template":"Showing [something] to the camera","placeholders":["book"]}, +{"id":"20424","label":"dropping toy tiger in front of toy elephant","template":"Dropping [something] in front of [something]","placeholders":["toy tiger","toy elephant"]}, +{"id":"137695","label":"spilling water onto bucket","template":"Spilling [something] onto [something]","placeholders":["water","bucket"]}, +{"id":"47388","label":"tipping toothbrush over","template":"Tipping [something] over","placeholders":["toothbrush"]}, +{"id":"13588","label":"spinning scissors so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["scissors"]}, +{"id":"103205","label":"pushing toy idol from left to right","template":"Pushing [something] from left to right","placeholders":["toy idol"]}, +{"id":"19995","label":"pushing knife so it spins","template":"Pushing [something] so it spins","placeholders":["knife"]}, +{"id":"174532","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"8041","label":"moving branch across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["branch"]}, +{"id":"140864","label":"putting stapler next to digital stamp","template":"Putting [something] next to [something]","placeholders":["stapler","digital stamp"]}, +{"id":"18962","label":"dropping phone behind pants","template":"Dropping [something] behind [something]","placeholders":["phone","pants"]}, +{"id":"89675","label":"pushing oil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["oil"]}, +{"id":"29666","label":"taking button","template":"Taking [one of many similar things on the table]","placeholders":["button"]}, +{"id":"40294","label":"taking a pen out of bunch of pens","template":"Taking [one of many similar things on the table]","placeholders":["a pen out of bunch of pens"]}, +{"id":"146736","label":"putting pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pencil"]}, +{"id":"14234","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"35217","label":"squeezing socks","template":"Squeezing [something]","placeholders":["socks"]}, +{"id":"198968","label":"pretending to put a pen next to a highlighter","template":"Pretending to put [something] next to [something]","placeholders":["a pen","a highlighter"]}, +{"id":"631","label":"taking hair pin","template":"Taking [one of many similar things on the table]","placeholders":["hair pin"]}, +{"id":"125034","label":"putting small freshmints on a surface","template":"Putting [something] on a surface","placeholders":["small freshmints"]}, +{"id":"67138","label":"tipping t.v tray over","template":"Tipping [something] over","placeholders":["t.v tray"]}, +{"id":"28512","label":"putting dental gel upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["dental gel"]}, +{"id":"187241","label":"removing book, revealing book behind","template":"Removing [something], revealing [something] behind","placeholders":["book","book"]}, +{"id":"27320","label":"putting a mug onto a mouse pad","template":"Putting [something] onto [something]","placeholders":["a mug","a mouse pad"]}, +{"id":"57481","label":"pretending to pick bracelet up","template":"Pretending to pick [something] up","placeholders":["bracelet"]}, +{"id":"155143","label":"lifting cap with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["cap","sunglasses"]}, +{"id":"53769","label":"moving away from something with your camera","template":"Moving away from [something] with your camera","placeholders":["something"]}, +{"id":"97746","label":"showing matchbox behind jar","template":"Showing [something] behind [something]","placeholders":["matchbox","jar"]}, +{"id":"215853","label":"uncovering soda cap","template":"Uncovering [something]","placeholders":["soda cap"]}, +{"id":"161338","label":"moving lighter across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["lighter"]}, +{"id":"171309","label":"tipping wooden doll over","template":"Tipping [something] over","placeholders":["wooden doll"]}, +{"id":"169835","label":"turning the camera upwards while filming ink bottle","template":"Turning the camera upwards while filming [something]","placeholders":["ink bottle"]}, +{"id":"144500","label":"putting 5 xbox games onto couch","template":"Putting [number of] [something] onto [something]","placeholders":["5","xbox games","couch"]}, +{"id":"52401","label":"unfolding frock","template":"Unfolding [something]","placeholders":["frock"]}, +{"id":"79738","label":"putting glass behind teacup","template":"Putting [something] behind [something]","placeholders":["glass","teacup"]}, +{"id":"175735","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"70349","label":"holding a marker","template":"Holding [something]","placeholders":["a marker"]}, +{"id":"78699","label":"pushing pencil with ruler","template":"Pushing [something] with [something]","placeholders":["pencil","ruler"]}, +{"id":"169231","label":"turning tinbox upside down","template":"Turning [something] upside down","placeholders":["tinbox"]}, +{"id":"193451","label":"picking bar soap up","template":"Picking [something] up","placeholders":["bar soap"]}, +{"id":"180526","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"184964","label":"lifting a surface with a broom on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a broom"]}, +{"id":"193142","label":"holding keys over bag","template":"Holding [something] over [something]","placeholders":["keys","bag"]}, +{"id":"103533","label":"pushing toy car from right to left","template":"Pushing [something] from right to left","placeholders":["toy car"]}, +{"id":"175214","label":"pushing stapler with spanner","template":"Pushing [something] with [something]","placeholders":["stapler","spanner"]}, +{"id":"54434","label":"opening ice cream freezer","template":"Opening [something]","placeholders":["ice cream freezer"]}, +{"id":"134838","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"25910","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"44458","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"172657","label":"pretending to close carmex bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["carmex bottle"]}, +{"id":"102448","label":"tilting recipe book with a lighter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["recipe book","a lighter"]}, +{"id":"62270","label":"moving usb and soap closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["usb","soap"]}, +{"id":"137207","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"194895","label":"pulling book out of box","template":"Pulling [something] out of [something]","placeholders":["book","box"]}, +{"id":"22463","label":"tearing something into two pieces","template":"Tearing [something] into two pieces","placeholders":["something"]}, +{"id":"3855","label":"something being deflected from something","template":"[Something] being deflected from [something]","placeholders":["something","something"]}, +{"id":"184981","label":"pretending to take a beer can from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a beer can","the table"]}, +{"id":"35306","label":"moving key and padlock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["key","padlock"]}, +{"id":"154890","label":"pushing stapler so it spins","template":"Pushing [something] so it spins","placeholders":["stapler"]}, +{"id":"208793","label":"taking a stuffed animal out of a locker","template":"Taking [something] out of [something]","placeholders":["a stuffed animal","a locker"]}, +{"id":"111294","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"32444","label":"folding paper in half","template":"Folding [something]","placeholders":["paper in half"]}, +{"id":"168467","label":"sprinkling water onto soil","template":"Sprinkling [something] onto [something]","placeholders":["water","soil"]}, +{"id":"84702","label":"turning the camera right while filming beer bottle","template":"Turning the camera right while filming [something]","placeholders":["beer bottle"]}, +{"id":"153082","label":"showing paint tube next to cactus","template":"Showing [something] next to [something]","placeholders":["paint tube","cactus"]}, +{"id":"182461","label":"a shoe colliding with filp flop and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a shoe","filp flop"]}, +{"id":"45090","label":"turning the camera right while filming bird","template":"Turning the camera right while filming [something]","placeholders":["bird"]}, +{"id":"75372","label":"approaching bag with your camera","template":"Approaching [something] with your camera","placeholders":["bag"]}, +{"id":"47429","label":"putting glass next to glass","template":"Putting [something] next to [something]","placeholders":["glass","glass"]}, +{"id":"217360","label":"uncovering candies","template":"Uncovering [something]","placeholders":["candies"]}, +{"id":"2736","label":"pretending to pick black umbrella up","template":"Pretending to pick [something] up","placeholders":["black umbrella"]}, +{"id":"145308","label":"putting a glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["a glass"]}, +{"id":"205","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"2882","label":"putting shoes underneath scooter","template":"Putting [something] underneath [something]","placeholders":["shoes","scooter"]}, +{"id":"35693","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"154510","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"95587","label":"dropping heart next to bowl","template":"Dropping [something] next to [something]","placeholders":["heart","bowl"]}, +{"id":"102446","label":"plugging a key into a door knob","template":"Plugging [something] into [something]","placeholders":["a key","a door knob"]}, +{"id":"70336","label":"turning a pack of tissue upside down","template":"Turning [something] upside down","placeholders":["a pack of tissue"]}, +{"id":"15647","label":"plugging cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","charger"]}, +{"id":"42534","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"26729","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"152146","label":"pretending to be tearing a boot cane","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a boot cane"]}, +{"id":"144166","label":"turning the camera downwards while filming shoe rack","template":"Turning the camera downwards while filming [something]","placeholders":["shoe rack"]}, +{"id":"155720","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"191965","label":"plugging a male plug into a socket","template":"Plugging [something] into [something]","placeholders":["a male plug","a socket"]}, +{"id":"7355","label":"pushing red dairy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["red dairy"]}, +{"id":"218614","label":"hitting canister with spoon","template":"Hitting [something] with [something]","placeholders":["canister","spoon"]}, +{"id":"51673","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"99731","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"20384","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"54669","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"72137","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"54011","label":"throwing cd in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cd"]}, +{"id":"67059","label":"pulling rock from left to right","template":"Pulling [something] from left to right","placeholders":["rock"]}, +{"id":"213844","label":"falling the paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling the paper"]}, +{"id":"188393","label":"putting screwdriver into jar","template":"Putting [something] into [something]","placeholders":["screwdriver","jar"]}, +{"id":"68542","label":"moving cell phone up","template":"Moving [something] up","placeholders":["cell phone"]}, +{"id":"18026","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"159935","label":"plugging something into something but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["something","something"]}, +{"id":"50512","label":"wiping spilled water off of surface","template":"Wiping [something] off of [something]","placeholders":["spilled water","surface"]}, +{"id":"19926","label":"pushing thread so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["thread"]}, +{"id":"149170","label":"uncovering a head","template":"Uncovering [something]","placeholders":["a head"]}, +{"id":"201416","label":"showing pen next to holder","template":"Showing [something] next to [something]","placeholders":["pen","holder"]}, +{"id":"180420","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"59683","label":"opening cd cover","template":"Opening [something]","placeholders":["cd cover"]}, +{"id":"17102","label":"moving markers closer to a box","template":"Moving [something] closer to [something]","placeholders":["markers","a box"]}, +{"id":"93187","label":"wiping chalk off of a mini chalkboard","template":"Wiping [something] off of [something]","placeholders":["chalk","a mini chalkboard"]}, +{"id":"157951","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"170930","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"28396","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"73461","label":"putting red spoon next to glue stick","template":"Putting [something] next to [something]","placeholders":["red spoon","glue stick"]}, +{"id":"81981","label":"pulling toilet paper out of toilet paper roll","template":"Pulling [something] out of [something]","placeholders":["toilet paper","toilet paper roll"]}, +{"id":"115740","label":"showing padlock behind glass jar","template":"Showing [something] behind [something]","placeholders":["padlock","glass jar"]}, +{"id":"124292","label":"throwing a napkin in the trash","template":"Throwing [something]","placeholders":["a napkin in the trash"]}, +{"id":"157592","label":"putting a wallet into a boot","template":"Putting [something] into [something]","placeholders":["a wallet","a boot"]}, +{"id":"63784","label":"laying angel on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["angel"]}, +{"id":"191762","label":"showing a pair of shoes behind a glas bottle","template":"Showing [something] behind [something]","placeholders":["a pair of shoes","a glas bottle"]}, +{"id":"2831","label":"putting tv remote next to pill bottle","template":"Putting [something] next to [something]","placeholders":["tv remote","pill bottle"]}, +{"id":"217569","label":"spinning an owl so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["an owl"]}, +{"id":"179780","label":"sprinkling oregano onto pasta salad","template":"Sprinkling [something] onto [something]","placeholders":["oregano","pasta salad"]}, +{"id":"158733","label":"putting mobile phone on a surface","template":"Putting [something] on a surface","placeholders":["mobile phone"]}, +{"id":"167310","label":"putting bottle next to juicer","template":"Putting [something] next to [something]","placeholders":["bottle","juicer"]}, +{"id":"124639","label":"opening clamp","template":"Opening [something]","placeholders":["clamp"]}, +{"id":"65174","label":"dropping a shuttle cock into a container","template":"Dropping [something] into [something]","placeholders":["a shuttle cock","a container"]}, +{"id":"207821","label":"putting belt onto bag","template":"Putting [something] onto [something]","placeholders":["belt","bag"]}, +{"id":"63123","label":"taking book from table","template":"Taking [something] from [somewhere]","placeholders":["book","table"]}, +{"id":"128313","label":"dropping a bottle top behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a bottle top","a padlock"]}, +{"id":"71476","label":"tilting black file with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","pen"]}, +{"id":"200556","label":"putting a paintbrush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a paintbrush"]}, +{"id":"44580","label":"touching (without moving) a lid of tupper ware","template":"Touching (without moving) [part] of [something]","placeholders":["a lid","tupper ware"]}, +{"id":"57792","label":"pretending to open apple airpods case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["apple airpods case"]}, +{"id":"150213","label":"opening peanut butter jar","template":"Opening [something]","placeholders":["peanut butter jar"]}, +{"id":"153535","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"164486","label":"taking adapter","template":"Taking [one of many similar things on the table]","placeholders":["adapter"]}, +{"id":"150457","label":"tearing white paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["white paper"]}, +{"id":"188697","label":"pretending to pick a salt grinder up","template":"Pretending to pick [something] up","placeholders":["a salt grinder"]}, +{"id":"103183","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"209309","label":"covering remote with blanket","template":"Covering [something] with [something]","placeholders":["remote","blanket"]}, +{"id":"202198","label":"showing that green cup is empty","template":"Showing that [something] is empty","placeholders":["green cup"]}, +{"id":"95255","label":"hitting chair with hairbrush","template":"Hitting [something] with [something]","placeholders":["chair","hairbrush"]}, +{"id":"37133","label":"moving part of match box","template":"Moving [part] of [something]","placeholders":["part","match box"]}, +{"id":"23995","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"71876","label":"poking flowers so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["flowers"]}, +{"id":"178006","label":"taking marker pen","template":"Taking [one of many similar things on the table]","placeholders":["marker pen"]}, +{"id":"135467","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"128833","label":"tilting card with lighter on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["card","lighter"]}, +{"id":"64706","label":"removing bouncing reindeer toy, revealing a toy robot behind","template":"Removing [something], revealing [something] behind","placeholders":["bouncing reindeer toy","a toy robot"]}, +{"id":"50826","label":"throwing pillow onto a surface","template":"Throwing [something] onto a surface","placeholders":["pillow"]}, +{"id":"38349","label":"closing drawyer","template":"Closing [something]","placeholders":["drawyer"]}, +{"id":"122866","label":"dropping a knife next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a knife","a matchbox"]}, +{"id":"138191","label":"pulling liptint from left to right","template":"Pulling [something] from left to right","placeholders":["liptint"]}, +{"id":"9153","label":"pushing bike light from left to right","template":"Pushing [something] from left to right","placeholders":["bike light"]}, +{"id":"72791","label":"pretending to be tearing pomegranate peel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pomegranate peel"]}, +{"id":"103071","label":"uncovering fish","template":"Uncovering [something]","placeholders":["fish"]}, +{"id":"41263","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"78020","label":"putting battery, pebble and toy idol on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["battery","pebble","toy idol"]}, +{"id":"213470","label":"stacking 3 blocks","template":"Stacking [number of] [something]","placeholders":["3","blocks"]}, +{"id":"134680","label":"tilting plate with banana on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","banana"]}, +{"id":"161278","label":"putting wire strippers that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["wire strippers"]}, +{"id":"210496","label":"putting mop into dustbin","template":"Putting [something] into [something]","placeholders":["mop","dustbin"]}, +{"id":"94678","label":"pushing sunglasses so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sunglasses"]}, +{"id":"62821","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"110044","label":"lifting pumpkin pie up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pumpkin pie"]}, +{"id":"61230","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"126822","label":"showing pen behind glass jar","template":"Showing [something] behind [something]","placeholders":["pen","glass jar"]}, +{"id":"119356","label":"putting a broom next to a trash shovel","template":"Putting [something] next to [something]","placeholders":["a broom","a trash shovel"]}, +{"id":"67557","label":"throwing a shoe","template":"Throwing [something]","placeholders":["a shoe"]}, +{"id":"121577","label":"moving a tape closer to sun glasses","template":"Moving [something] closer to [something]","placeholders":["a tape","sun glasses"]}, +{"id":"130692","label":"showing the beautiful christmas tree behind the couch","template":"Showing [something] behind [something]","placeholders":["the beautiful christmas tree","the couch"]}, +{"id":"25819","label":"lifting chair with cushion on it","template":"Lifting [something] with [something] on it","placeholders":["chair","cushion"]}, +{"id":"1036","label":"taking a donut out of a pot","template":"Taking [something] out of [something]","placeholders":["a donut","a pot"]}, +{"id":"31593","label":"holding cup behind wall","template":"Holding [something] behind [something]","placeholders":["cup","wall"]}, +{"id":"6962","label":"holding torchlight","template":"Holding [something]","placeholders":["torchlight"]}, +{"id":"114102","label":"holding ball behind iphone","template":"Holding [something] behind [something]","placeholders":["ball","iphone"]}, +{"id":"23801","label":"plugging a cable into a charger","template":"Plugging [something] into [something]","placeholders":["a cable","a charger"]}, +{"id":"4121","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"184825","label":"closing plastic box","template":"Closing [something]","placeholders":["plastic box"]}, +{"id":"26332","label":"dropping clip onto box","template":"Dropping [something] onto [something]","placeholders":["clip","box"]}, +{"id":"67826","label":"touching (without moving) nose of minne mouse","template":"Touching (without moving) [part] of [something]","placeholders":["nose","minne mouse"]}, +{"id":"88299","label":"turning a notebook upside down","template":"Turning [something] upside down","placeholders":["a notebook"]}, +{"id":"95274","label":"paper falling like a rock","template":"[Something] falling like a rock","placeholders":["paper"]}, +{"id":"119633","label":"pushing makeup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["makeup"]}, +{"id":"51108","label":"showing merci-packung behind tipex-maus","template":"Showing [something] behind [something]","placeholders":["merci-packung","tipex-maus"]}, +{"id":"180201","label":"sprinkling salt onto paper","template":"Sprinkling [something] onto [something]","placeholders":["salt","paper"]}, +{"id":"41859","label":"tilting toy truck with toy trailer on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["toy truck","toy trailer"]}, +{"id":"186914","label":"throwing water bottle in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["water bottle"]}, +{"id":"157165","label":"lifting a surface with ball on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["ball"]}, +{"id":"56585","label":"unfolding unfolding kerchief","template":"Unfolding [something]","placeholders":["unfolding kerchief"]}, +{"id":"64335","label":"pushing remote so it spins","template":"Pushing [something] so it spins","placeholders":["remote"]}, +{"id":"146279","label":"folding notecard","template":"Folding [something]","placeholders":["notecard"]}, +{"id":"150946","label":"bending meat stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["meat stick"]}, +{"id":"149694","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"5207","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"23981","label":"moving box and can closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["box","can"]}, +{"id":"54046","label":"dropping a matchbox next to a container","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a container"]}, +{"id":"159885","label":"lifting a surface with lotion container on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["lotion container"]}, +{"id":"175257","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"37269","label":"pushing purple microfiber so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["purple microfiber"]}, +{"id":"107976","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"125163","label":"putting straw upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["straw"]}, +{"id":"218165","label":"putting lime behind nectarine","template":"Putting [something] behind [something]","placeholders":["lime","nectarine"]}, +{"id":"188778","label":"dropping a coin into a box","template":"Dropping [something] into [something]","placeholders":["a coin","a box"]}, +{"id":"108643","label":"spinning calculator that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["calculator"]}, +{"id":"83282","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"15252","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"23021","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"179777","label":"failing to put camera into canister because camera does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["camera","canister","camera"]}, +{"id":"211935","label":"pushing charger head so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["charger head"]}, +{"id":"42536","label":"approaching a shoe with your camera","template":"Approaching [something] with your camera","placeholders":["a shoe"]}, +{"id":"110820","label":"putting a cup into a dishwasher","template":"Putting [something] into [something]","placeholders":["a cup","a dishwasher"]}, +{"id":"128205","label":"putting a smartphone on a surface","template":"Putting [something] on a surface","placeholders":["a smartphone"]}, +{"id":"142505","label":"hitting door glass with bottle","template":"Hitting [something] with [something]","placeholders":["door glass","bottle"]}, +{"id":"141995","label":"pretending to pick shot glass up","template":"Pretending to pick [something] up","placeholders":["shot glass"]}, +{"id":"197993","label":"trying to bend hard plastic piece so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["hard plastic piece"]}, +{"id":"156899","label":"squeezing a racquetball","template":"Squeezing [something]","placeholders":["a racquetball"]}, +{"id":"72922","label":"holding phone behind hand","template":"Holding [something] behind [something]","placeholders":["phone","hand"]}, +{"id":"197330","label":"tilting placemat with paper on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["placemat","paper"]}, +{"id":"110329","label":"stuffing a plastic bottle into a bag","template":"Stuffing [something] into [something]","placeholders":["a plastic bottle","a bag"]}, +{"id":"216835","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"160220","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"70040","label":"holding tiger over book","template":"Holding [something] over [something]","placeholders":["tiger","book"]}, +{"id":"116164","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"148838","label":"dropping ball behind box","template":"Dropping [something] behind [something]","placeholders":["ball","box"]}, +{"id":"192355","label":"removing bottled water, revealing nail cutter behind","template":"Removing [something], revealing [something] behind","placeholders":["bottled water","nail cutter"]}, +{"id":"125710","label":"pushing nail polish from right to left","template":"Pushing [something] from right to left","placeholders":["nail polish"]}, +{"id":"197559","label":"uncovering toy duck","template":"Uncovering [something]","placeholders":["toy duck"]}, +{"id":"149682","label":"taking diary from table","template":"Taking [something] from [somewhere]","placeholders":["diary","table"]}, +{"id":"209933","label":"holding small book","template":"Holding [something]","placeholders":["small book"]}, +{"id":"116350","label":"pushing coconut shell from right to left","template":"Pushing [something] from right to left","placeholders":["coconut shell"]}, +{"id":"111903","label":"pretending to put hat next to shoe","template":"Pretending to put [something] next to [something]","placeholders":["hat","shoe"]}, +{"id":"80488","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"43337","label":"putting compact po and bottle of water on the table","template":"Putting [something] and [something] on the table","placeholders":["compact po","bottle of water"]}, +{"id":"109704","label":"putting pen and box on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","box"]}, +{"id":"214243","label":"touching (without moving) top of scissor","template":"Touching (without moving) [part] of [something]","placeholders":["top","scissor"]}, +{"id":"22286","label":"showing mobile phone to the camera","template":"Showing [something] to the camera","placeholders":["mobile phone"]}, +{"id":"167762","label":"poking lipstick so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lipstick"]}, +{"id":"62250","label":"pushing a tape onto a book","template":"Pushing [something] onto [something]","placeholders":["a tape","a book"]}, +{"id":"42143","label":"pulling marker from behind of automon","template":"Pulling [something] from behind of [something]","placeholders":["marker","automon"]}, +{"id":"169671","label":"plugging cord into wall outlet","template":"Plugging [something] into [something]","placeholders":["cord","wall outlet"]}, +{"id":"110530","label":"pretending to put tube into box","template":"Pretending to put [something] into [something]","placeholders":["tube","box"]}, +{"id":"211313","label":"attaching clip magnet to refrigerator","template":"Attaching [something] to [something]","placeholders":["clip magnet","refrigerator"]}, +{"id":"81218","label":"holding a pen over scissors","template":"Holding [something] over [something]","placeholders":["a pen","scissors"]}, +{"id":"41762","label":"taking paint from similar items on table","template":"Taking [one of many similar things on the table]","placeholders":["paint from similar items on table"]}, +{"id":"116306","label":"piling markets up","template":"Piling [something] up","placeholders":["markets"]}, +{"id":"18288","label":"turning the camera left while filming tyre","template":"Turning the camera left while filming [something]","placeholders":["tyre"]}, +{"id":"77241","label":"spinning rock so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["rock"]}, +{"id":"113411","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"135120","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"57751","label":"throwing a hat onto a surface","template":"Throwing [something] onto a surface","placeholders":["a hat"]}, +{"id":"57533","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"160043","label":"pretending to pick a tobasco bottle up","template":"Pretending to pick [something] up","placeholders":["a tobasco bottle"]}, +{"id":"90874","label":"plugging usb cable into notebook but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","notebook"]}, +{"id":"62474","label":"pretending to pick highliner up","template":"Pretending to pick [something] up","placeholders":["highliner"]}, +{"id":"210488","label":"tearing colorful advertisement paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["colorful advertisement paper"]}, +{"id":"188203","label":"showing that the cup is empty","template":"Showing that [something] is empty","placeholders":["the cup"]}, +{"id":"153957","label":"putting 1 plate onto stand","template":"Putting [number of] [something] onto [something]","placeholders":["1","plate","stand"]}, +{"id":"44961","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"23626","label":"putting a nonstick pan onto a portable stove","template":"Putting [something] onto [something]","placeholders":["a nonstick pan","a portable stove"]}, +{"id":"197861","label":"throwing remote in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["remote"]}, +{"id":"24384","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"72745","label":"covering blue spoon with white handkerchief","template":"Covering [something] with [something]","placeholders":["blue spoon","white handkerchief"]}, +{"id":"181837","label":"moving scrap paper closer to scrap paper","template":"Moving [something] closer to [something]","placeholders":["scrap paper","scrap paper"]}, +{"id":"207899","label":"removing mug, revealing fluorescent lightbulb behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","fluorescent lightbulb"]}, +{"id":"89683","label":"squeezing cuddly turtle toy","template":"Squeezing [something]","placeholders":["cuddly turtle toy"]}, +{"id":"32641","label":"covering a headphones with a remote control","template":"Covering [something] with [something]","placeholders":["a headphones","a remote control"]}, +{"id":"15014","label":"holding controller over book","template":"Holding [something] over [something]","placeholders":["controller","book"]}, +{"id":"175872","label":"putting bottle on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["bottle","box"]}, +{"id":"163210","label":"tearing bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["bag"]}, +{"id":"11629","label":"showing that blue cup is empty","template":"Showing that [something] is empty","placeholders":["blue cup"]}, +{"id":"11020","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"57017","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"14426","label":"putting a beer can on a surface","template":"Putting [something] on a surface","placeholders":["a beer can"]}, +{"id":"78062","label":"pushing bag so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bag"]}, +{"id":"201793","label":"putting a ball","template":"Putting [something similar to other things that are already on the table]","placeholders":["a ball"]}, +{"id":"90818","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"92715","label":"tilting box with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","phone"]}, +{"id":"88774","label":"laying mug on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["mug"]}, +{"id":"60352","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"36523","label":"putting sunglasses behind mug","template":"Putting [something] behind [something]","placeholders":["sunglasses","mug"]}, +{"id":"214556","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"24846","label":"letting bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["bottle"]}, +{"id":"56475","label":"tilting paper with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper","pen"]}, +{"id":"23561","label":"holding a knife next to a cup","template":"Holding [something] next to [something]","placeholders":["a knife","a cup"]}, +{"id":"182148","label":"picking nail polish up","template":"Picking [something] up","placeholders":["nail polish"]}, +{"id":"44065","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"94819","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"186155","label":"putting stapler that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stapler"]}, +{"id":"123886","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"103195","label":"trying to bend pipe so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pipe"]}, +{"id":"5315","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"151038","label":"pushing plug adapter from right to left","template":"Pushing [something] from right to left","placeholders":["plug adapter"]}, +{"id":"135815","label":"pushing glass so it spins","template":"Pushing [something] so it spins","placeholders":["glass"]}, +{"id":"104923","label":"spinning a tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a tube"]}, +{"id":"50649","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"173269","label":"dropping a coin onto a table","template":"Dropping [something] onto [something]","placeholders":["a coin","a table"]}, +{"id":"79120","label":"closing a book","template":"Closing [something]","placeholders":["a book"]}, +{"id":"99449","label":"stuffing green coloured toy car into black pouch","template":"Stuffing [something] into [something]","placeholders":["green coloured toy car","black pouch"]}, +{"id":"20675","label":"twisting a basket handle","template":"Twisting [something]","placeholders":["a basket handle"]}, +{"id":"145487","label":"moving purple balloon pump down","template":"Moving [something] down","placeholders":["purple balloon pump"]}, +{"id":"213083","label":"twisting tube","template":"Twisting [something]","placeholders":["tube"]}, +{"id":"201968","label":"approaching chair with your camera","template":"Approaching [something] with your camera","placeholders":["chair"]}, +{"id":"18455","label":"putting 1 laptop charger onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","laptop charger","chair"]}, +{"id":"80510","label":"putting a toy on a surface","template":"Putting [something] on a surface","placeholders":["a toy"]}, +{"id":"144605","label":"holding candle over fireplace","template":"Holding [something] over [something]","placeholders":["candle","fireplace"]}, +{"id":"103980","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"1153","label":"pulling toy car from right to left","template":"Pulling [something] from right to left","placeholders":["toy car"]}, +{"id":"12327","label":"putting comb similar to other combs that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["comb similar to other combs that are already on the table"]}, +{"id":"81138","label":"lifting a coin up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a coin"]}, +{"id":"155369","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"28747","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"191956","label":"throwing wallet","template":"Throwing [something]","placeholders":["wallet"]}, +{"id":"29152","label":"moving coin towards the camera","template":"Moving [something] towards the camera","placeholders":["coin"]}, +{"id":"38900","label":"pretending to throw powder bottle","template":"Pretending to throw [something]","placeholders":["powder bottle"]}, +{"id":"35407","label":"unfolding piece of paper","template":"Unfolding [something]","placeholders":["piece of paper"]}, +{"id":"9779","label":"pretending to open canister without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["canister"]}, +{"id":"139004","label":"picking duster up","template":"Picking [something] up","placeholders":["duster"]}, +{"id":"143696","label":"holding a pencil in front of a box","template":"Holding [something] in front of [something]","placeholders":["a pencil","a box"]}, +{"id":"212098","label":"tilting chalkboard with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["chalkboard","marker"]}, +{"id":"71232","label":"pretending to take game from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["game","shelf"]}, +{"id":"66059","label":"showing that horlicks is inside container","template":"Showing that [something] is inside [something]","placeholders":["horlicks","container"]}, +{"id":"208933","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"96476","label":"lifting a surface with highlighter on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["highlighter"]}, +{"id":"218059","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"209512","label":"picking coffee cup up","template":"Picking [something] up","placeholders":["coffee cup"]}, +{"id":"16836","label":"putting an ink bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["an ink bottle"]}, +{"id":"87330","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"110961","label":"spinning miniature fan so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["miniature fan"]}, +{"id":"189231","label":"putting vase on a surface","template":"Putting [something] on a surface","placeholders":["vase"]}, +{"id":"95551","label":"plugging usb cable into laptop computer","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop computer"]}, +{"id":"220548","label":"putting remote onto box","template":"Putting [something] onto [something]","placeholders":["remote","box"]}, +{"id":"209958","label":"spinning baseball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["baseball"]}, +{"id":"126554","label":"moving post-it up","template":"Moving [something] up","placeholders":["post-it"]}, +{"id":"9501","label":"dropping book onto bed","template":"Dropping [something] onto [something]","placeholders":["book","bed"]}, +{"id":"93470","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"4452","label":"showing gear wheel on top of spectacle box","template":"Showing [something] on top of [something]","placeholders":["gear wheel","spectacle box"]}, +{"id":"69505","label":"holding remote next to can","template":"Holding [something] next to [something]","placeholders":["remote","can"]}, +{"id":"141483","label":"putting hair tie into cup","template":"Putting [something] into [something]","placeholders":["hair tie","cup"]}, +{"id":"167275","label":"pouring water into mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","mug"]}, +{"id":"32553","label":"pushing box with remote","template":"Pushing [something] with [something]","placeholders":["box","remote"]}, +{"id":"217282","label":"opening umbrella","template":"Opening [something]","placeholders":["umbrella"]}, +{"id":"128115","label":"throwing onion in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["onion"]}, +{"id":"3246","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78749","label":"poking lime so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lime"]}, +{"id":"13925","label":"bending a refill so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a refill"]}, +{"id":"25518","label":"moving a tennis ball and a tennis ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a tennis ball","a tennis ball"]}, +{"id":"9602","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"190527","label":"pushing earring so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["earring"]}, +{"id":"109418","label":"trying to bend remote control so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["remote control"]}, +{"id":"125171","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"171797","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"164029","label":"scooping ice cream up with spoon","template":"Scooping [something] up with [something]","placeholders":["ice cream","spoon"]}, +{"id":"87608","label":"dropping lid next to box","template":"Dropping [something] next to [something]","placeholders":["lid","box"]}, +{"id":"69740","label":"spilling water onto a bottle top","template":"Spilling [something] onto [something]","placeholders":["water","a bottle top"]}, +{"id":"146825","label":"plugging a lamp into the wall","template":"Plugging [something] into [something]","placeholders":["a lamp","the wall"]}, +{"id":"100955","label":"moving toothpaste up","template":"Moving [something] up","placeholders":["toothpaste"]}, +{"id":"160887","label":"moving purse and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["purse","pen"]}, +{"id":"205865","label":"turning rainboot upside down","template":"Turning [something] upside down","placeholders":["rainboot"]}, +{"id":"69151","label":"putting spoon and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["spoon","cup"]}, +{"id":"171353","label":"putting jar of peanut butter in front of bottle aspirin","template":"Putting [something] in front of [something]","placeholders":["jar of peanut butter","bottle aspirin"]}, +{"id":"205299","label":"turning a hat upside down","template":"Turning [something] upside down","placeholders":["a hat"]}, +{"id":"149892","label":"pulling spoon from behind of pan","template":"Pulling [something] from behind of [something]","placeholders":["spoon","pan"]}, +{"id":"152514","label":"putting comb upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["comb"]}, +{"id":"27828","label":"folding an envelope","template":"Folding [something]","placeholders":["an envelope"]}, +{"id":"109950","label":"dropping something in front of something","template":"Dropping [something] in front of [something]","placeholders":["something","something"]}, +{"id":"217275","label":"squeezing bread","template":"Squeezing [something]","placeholders":["bread"]}, +{"id":"99923","label":"holding drink behind body","template":"Holding [something] behind [something]","placeholders":["drink","body"]}, +{"id":"165280","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38896","label":"uncovering usb cable","template":"Uncovering [something]","placeholders":["usb cable"]}, +{"id":"125973","label":"putting cassette tape into mug","template":"Putting [something] into [something]","placeholders":["cassette tape","mug"]}, +{"id":"15545","label":"lifting sand bag up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["sand bag"]}, +{"id":"79760","label":"burying puzzle piece in middle of couch seat cushions","template":"Burying [something] in [something]","placeholders":["puzzle piece","middle of couch seat cushions"]}, +{"id":"119182","label":"dropping cushion onto floor","template":"Dropping [something] onto [something]","placeholders":["cushion","floor"]}, +{"id":"129064","label":"putting hammer on a surface","template":"Putting [something] on a surface","placeholders":["hammer"]}, +{"id":"119769","label":"showing bandage to the camera","template":"Showing [something] to the camera","placeholders":["bandage"]}, +{"id":"214876","label":"pretending to take a coin out of a cup","template":"Pretending to take [something] out of [something]","placeholders":["a coin","a cup"]}, +{"id":"118240","label":"tearing sponge just a little bit","template":"Tearing [something] just a little bit","placeholders":["sponge"]}, +{"id":"16514","label":"hitting a toy with a ball","template":"Hitting [something] with [something]","placeholders":["a toy","a ball"]}, +{"id":"18432","label":"showing remote control next to pillow","template":"Showing [something] next to [something]","placeholders":["remote control","pillow"]}, +{"id":"215973","label":"throwing a cell phone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a cell phone"]}, +{"id":"130569","label":"letting a candle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a candle"]}, +{"id":"52261","label":"lifting cushion with clock on it","template":"Lifting [something] with [something] on it","placeholders":["cushion","clock"]}, +{"id":"96092","label":"pulling stapler from right to left","template":"Pulling [something] from right to left","placeholders":["stapler"]}, +{"id":"176601","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"122474","label":"folding frock","template":"Folding [something]","placeholders":["frock"]}, +{"id":"195430","label":"lifting up one end of paper without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["paper"]}, +{"id":"140866","label":"pulling flashlight onto laptop","template":"Pulling [something] onto [something]","placeholders":["flashlight","laptop"]}, +{"id":"101419","label":"plugging headphones into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","laptop"]}, +{"id":"80166","label":"taking a mouse from the table","template":"Taking [something] from [somewhere]","placeholders":["a mouse","the table"]}, +{"id":"184459","label":"lifting box tape up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["box tape"]}, +{"id":"34430","label":"poking pot so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pot"]}, +{"id":"170397","label":"twisting bottle lid","template":"Twisting [something]","placeholders":["bottle lid"]}, +{"id":"31913","label":"holding candle over easel","template":"Holding [something] over [something]","placeholders":["candle","easel"]}, +{"id":"21630","label":"opening window","template":"Opening [something]","placeholders":["window"]}, +{"id":"109892","label":"moving perfume bottle closer to toy","template":"Moving [something] closer to [something]","placeholders":["perfume bottle","toy"]}, +{"id":"203487","label":"lifting up one end of a pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pen"]}, +{"id":"195576","label":"a sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sheet of paper"]}, +{"id":"92780","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"95433","label":"throwing a paper","template":"Throwing [something]","placeholders":["a paper"]}, +{"id":"103425","label":"pretending to squeeze onion","template":"Pretending to squeeze [something]","placeholders":["onion"]}, +{"id":"158296","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"153364","label":"pretending to squeeze lime","template":"Pretending to squeeze [something]","placeholders":["lime"]}, +{"id":"38752","label":"putting matchbox on the edge of laptop so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["matchbox","laptop"]}, +{"id":"100421","label":"pretending to take a jar from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a jar","the table"]}, +{"id":"174380","label":"throwing battery in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["battery"]}, +{"id":"202728","label":"spinning tv remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["tv remote"]}, +{"id":"32780","label":"twisting (wringing) a cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a cloth"]}, +{"id":"124326","label":"pushing a pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pencil"]}, +{"id":"137443","label":"rolling rolling pin on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling pin"]}, +{"id":"210732","label":"tearing blue fabric into two pieces","template":"Tearing [something] into two pieces","placeholders":["blue fabric"]}, +{"id":"110608","label":"turning the camera left while filming board","template":"Turning the camera left while filming [something]","placeholders":["board"]}, +{"id":"194341","label":"pushing pencil from left to right","template":"Pushing [something] from left to right","placeholders":["pencil"]}, +{"id":"154080","label":"pushing a fishing lure with a screwdriver","template":"Pushing [something] with [something]","placeholders":["a fishing lure","a screwdriver"]}, +{"id":"127560","label":"covering cellphone with handkerchief","template":"Covering [something] with [something]","placeholders":["cellphone","handkerchief"]}, +{"id":"4049","label":"opening jeep door","template":"Opening [something]","placeholders":["jeep door"]}, +{"id":"209537","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"50967","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"66261","label":"putting pen and white pebble on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","white pebble"]}, +{"id":"34019","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"80122","label":"lifting red bottlecap up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["red bottlecap"]}, +{"id":"112903","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"131775","label":"pretending or trying and failing to twist a cap","template":"Pretending or trying and failing to twist [something]","placeholders":["a cap"]}, +{"id":"195038","label":"putting glasses, scissors and nail polish on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["glasses","scissors","nail polish"]}, +{"id":"29686","label":"turning scotch tape upside down","template":"Turning [something] upside down","placeholders":["scotch tape"]}, +{"id":"109837","label":"putting scissors","template":"Putting [something similar to other things that are already on the table]","placeholders":["scissors"]}, +{"id":"211030","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"68847","label":"pretending to turn a glass upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass"]}, +{"id":"155499","label":"touching (without moving) top of lid","template":"Touching (without moving) [part] of [something]","placeholders":["top","lid"]}, +{"id":"130551","label":"tilting a notebook with a battery on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a notebook","a battery"]}, +{"id":"15907","label":"holding scissors behind purse","template":"Holding [something] behind [something]","placeholders":["scissors","purse"]}, +{"id":"90091","label":"plastic falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic"]}, +{"id":"29265","label":"tilting tuperware with playdoh on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["tuperware","playdoh"]}, +{"id":"33525","label":"moving candle and can closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["candle","can"]}, +{"id":"34040","label":"moving canister closer to paper towels","template":"Moving [something] closer to [something]","placeholders":["canister","paper towels"]}, +{"id":"152866","label":"holding business card behind pen","template":"Holding [something] behind [something]","placeholders":["business card","pen"]}, +{"id":"132191","label":"letting tumbler roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tumbler"]}, +{"id":"59787","label":"poking a bag so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a bag"]}, +{"id":"173845","label":"moving mouse away from watch","template":"Moving [something] away from [something]","placeholders":["mouse","watch"]}, +{"id":"18932","label":"letting a sphere roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a sphere"]}, +{"id":"40180","label":"tilting black file with toy car on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","toy car"]}, +{"id":"108135","label":"lifting up one end of chair without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["chair"]}, +{"id":"181658","label":"turning air conditioner remote upside down","template":"Turning [something] upside down","placeholders":["air conditioner remote"]}, +{"id":"27948","label":"holding remote control in front of television","template":"Holding [something] in front of [something]","placeholders":["remote control","television"]}, +{"id":"57662","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"5690","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"79426","label":"taking knife","template":"Taking [one of many similar things on the table]","placeholders":["knife"]}, +{"id":"4283","label":"bending a chord so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a chord"]}, +{"id":"141599","label":"taking a glass","template":"Taking [one of many similar things on the table]","placeholders":["a glass"]}, +{"id":"163915","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"216386","label":"picking a book up","template":"Picking [something] up","placeholders":["a book"]}, +{"id":"76041","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191571","label":"moving a bottle and a bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a bottle"]}, +{"id":"216370","label":"taking a cup","template":"Taking [one of many similar things on the table]","placeholders":["a cup"]}, +{"id":"149035","label":"orange being deflected from vase","template":"[Something] being deflected from [something]","placeholders":["orange","vase"]}, +{"id":"32497","label":"pushing a spray-paint can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a spray-paint can"]}, +{"id":"204335","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"164129","label":"moving a leg of a toy","template":"Moving [part] of [something]","placeholders":["a leg","a toy"]}, +{"id":"91601","label":"wiping dust off of slab","template":"Wiping [something] off of [something]","placeholders":["dust","slab"]}, +{"id":"5347","label":"turning the camera upwards while filming gate","template":"Turning the camera upwards while filming [something]","placeholders":["gate"]}, +{"id":"59796","label":"spilling water next to a pen","template":"Spilling [something] next to [something]","placeholders":["water","a pen"]}, +{"id":"5199","label":"showing car behind metal gate","template":"Showing [something] behind [something]","placeholders":["car","metal gate"]}, +{"id":"152217","label":"lifting plastic case up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["plastic case"]}, +{"id":"164683","label":"sprinkling salt onto table","template":"Sprinkling [something] onto [something]","placeholders":["salt","table"]}, +{"id":"126951","label":"moving scissors across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["scissors"]}, +{"id":"29540","label":"dropping a coin behind a box","template":"Dropping [something] behind [something]","placeholders":["a coin","a box"]}, +{"id":"125787","label":"putting a smartphone behind a book","template":"Putting [something] behind [something]","placeholders":["a smartphone","a book"]}, +{"id":"214420","label":"taking bag from floor","template":"Taking [something] from [somewhere]","placeholders":["bag","floor"]}, +{"id":"108358","label":"pretending or failing to wipe soap off of a wallet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["soap","a wallet"]}, +{"id":"111521","label":"opening piller","template":"Opening [something]","placeholders":["piller"]}, +{"id":"151426","label":"showing a hotpot behind the plate","template":"Showing [something] behind [something]","placeholders":["a hotpot","the plate"]}, +{"id":"166184","label":"moving note down","template":"Moving [something] down","placeholders":["note"]}, +{"id":"114225","label":"showing that ram is inside cup","template":"Showing that [something] is inside [something]","placeholders":["ram","cup"]}, +{"id":"36558","label":"pulling rock from right to left","template":"Pulling [something] from right to left","placeholders":["rock"]}, +{"id":"2499","label":"holding a magazine in front of a cellphone","template":"Holding [something] in front of [something]","placeholders":["a magazine","a cellphone"]}, +{"id":"24375","label":"stuffing a sponge into a glass","template":"Stuffing [something] into [something]","placeholders":["a sponge","a glass"]}, +{"id":"66399","label":"dropping hairband into green bowl","template":"Dropping [something] into [something]","placeholders":["hairband","green bowl"]}, +{"id":"159862","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"79101","label":"showing a cuddly toy to the camera","template":"Showing [something] to the camera","placeholders":["a cuddly toy"]}, +{"id":"157001","label":"trying but failing to attach paper to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","fridge"]}, +{"id":"117292","label":"plugging charger into iphone 7","template":"Plugging [something] into [something]","placeholders":["charger","iphone 7"]}, +{"id":"26104","label":"dropping lighter behind cup","template":"Dropping [something] behind [something]","placeholders":["lighter","cup"]}, +{"id":"176042","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"154155","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"9872","label":"pushing books so it spins","template":"Pushing [something] so it spins","placeholders":["books"]}, +{"id":"123641","label":"dropping bottle in front of kendama","template":"Dropping [something] in front of [something]","placeholders":["bottle","kendama"]}, +{"id":"130288","label":"turning candle holder upside down","template":"Turning [something] upside down","placeholders":["candle holder"]}, +{"id":"191799","label":"closing briefcase","template":"Closing [something]","placeholders":["briefcase"]}, +{"id":"74513","label":"pushing remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote control"]}, +{"id":"171682","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"73240","label":"moving eraser closer to usb cable","template":"Moving [something] closer to [something]","placeholders":["eraser","usb cable"]}, +{"id":"103474","label":"putting a pen that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a pen"]}, +{"id":"125027","label":"turning the camera right while filming flowers","template":"Turning the camera right while filming [something]","placeholders":["flowers"]}, +{"id":"214423","label":"moving top of bracelets holder","template":"Moving [part] of [something]","placeholders":["top","bracelets holder"]}, +{"id":"202869","label":"squeezing a canteen","template":"Squeezing [something]","placeholders":["a canteen"]}, +{"id":"35908","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"115639","label":"putting wallet in front of coaster","template":"Putting [something] in front of [something]","placeholders":["wallet","coaster"]}, +{"id":"130683","label":"putting salt and pepper on the table","template":"Putting [something] and [something] on the table","placeholders":["salt","pepper"]}, +{"id":"178102","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"204622","label":"pushing paint so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paint"]}, +{"id":"167443","label":"spinning a marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a marker"]}, +{"id":"182330","label":"pretending to put pen on a surface","template":"Pretending to put [something] on a surface","placeholders":["pen"]}, +{"id":"64611","label":"glass colliding with tube and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["glass","tube"]}, +{"id":"84008","label":"moving wallet up","template":"Moving [something] up","placeholders":["wallet"]}, +{"id":"90925","label":"pulling red pot holder from left to right","template":"Pulling [something] from left to right","placeholders":["red pot holder"]}, +{"id":"50433","label":"bangle colliding with another bangle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bangle","another bangle"]}, +{"id":"70372","label":"holding orange colour pencil next to duster","template":"Holding [something] next to [something]","placeholders":["orange colour pencil","duster"]}, +{"id":"107327","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"135454","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"136195","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"174437","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"91163","label":"pulling two ends of envelope but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["envelope"]}, +{"id":"81368","label":"picking jar up","template":"Picking [something] up","placeholders":["jar"]}, +{"id":"123907","label":"poking doll so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["doll"]}, +{"id":"151814","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"141781","label":"moving candlestick closer to candlestick","template":"Moving [something] closer to [something]","placeholders":["candlestick","candlestick"]}, +{"id":"95251","label":"pushing ceiling fan so it spins","template":"Pushing [something] so it spins","placeholders":["ceiling fan"]}, +{"id":"165532","label":"dropping ball into water","template":"Dropping [something] into [something]","placeholders":["ball","water"]}, +{"id":"62593","label":"pulling red dairy from left to right","template":"Pulling [something] from left to right","placeholders":["red dairy"]}, +{"id":"54070","label":"putting lipbam into cup","template":"Putting [something] into [something]","placeholders":["lipbam","cup"]}, +{"id":"188737","label":"showing box behind jar","template":"Showing [something] behind [something]","placeholders":["box","jar"]}, +{"id":"156170","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"76942","label":"moving pick away from eraser","template":"Moving [something] away from [something]","placeholders":["pick","eraser"]}, +{"id":"101784","label":"removing polish remover, revealing moisturizer behind","template":"Removing [something], revealing [something] behind","placeholders":["polish remover","moisturizer"]}, +{"id":"44725","label":"moving lid of liitle red box","template":"Moving [part] of [something]","placeholders":["lid","liitle red box"]}, +{"id":"210074","label":"showing wallet to the camera","template":"Showing [something] to the camera","placeholders":["wallet"]}, +{"id":"69614","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"102783","label":"pretending to open a wallet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a wallet"]}, +{"id":"144377","label":"pretending to take cd from pile","template":"Pretending to take [something] from [somewhere]","placeholders":["cd","pile"]}, +{"id":"98541","label":"putting tape next to yellowbook","template":"Putting [something] next to [something]","placeholders":["tape","yellowbook"]}, +{"id":"21829","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"146440","label":"poking a spray bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a spray bottle"]}, +{"id":"145686","label":"showing that fabric conditioner is inside of a bottle","template":"Showing that [something] is inside [something]","placeholders":["fabric conditioner","of a bottle"]}, +{"id":"203352","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"161017","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"58916","label":"uncovering the tablet","template":"Uncovering [something]","placeholders":["the tablet"]}, +{"id":"16369","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"156468","label":"putting marker pen next to tooth brush","template":"Putting [something] next to [something]","placeholders":["marker pen","tooth brush"]}, +{"id":"161465","label":"pushing sunscreen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["sunscreen"]}, +{"id":"31556","label":"purse falling like a rock","template":"[Something] falling like a rock","placeholders":["purse"]}, +{"id":"204063","label":"throwing a small teddy bear","template":"Throwing [something]","placeholders":["a small teddy bear"]}, +{"id":"37731","label":"covering a candle holder with a dishcloth","template":"Covering [something] with [something]","placeholders":["a candle holder","a dishcloth"]}, +{"id":"199641","label":"pretending to open ointment without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["ointment"]}, +{"id":"135788","label":"moving well and fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["well","fork"]}, +{"id":"198852","label":"pushing comb with bottle cap","template":"Pushing [something] with [something]","placeholders":["comb","bottle cap"]}, +{"id":"93864","label":"turning the camera downwards while filming clouds","template":"Turning the camera downwards while filming [something]","placeholders":["clouds"]}, +{"id":"142103","label":"covering bolt with sky blue colour cloth","template":"Covering [something] with [something]","placeholders":["bolt","sky blue colour cloth"]}, +{"id":"29928","label":"holding spoon over glass","template":"Holding [something] over [something]","placeholders":["spoon","glass"]}, +{"id":"16840","label":"taking brochure out of plastic box","template":"Taking [something] out of [something]","placeholders":["brochure","plastic box"]}, +{"id":"39556","label":"putting pen next to paper","template":"Putting [something] next to [something]","placeholders":["pen","paper"]}, +{"id":"84635","label":"spinning a drink can so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a drink can"]}, +{"id":"166766","label":"poking green frog doll so that it falls over","template":"Poking [something] so that it falls over","placeholders":["green frog doll"]}, +{"id":"143122","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"208107","label":"taking yellow ball out of cookie box","template":"Taking [something] out of [something]","placeholders":["yellow ball","cookie box"]}, +{"id":"58361","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"62648","label":"moving spoon away from stapler","template":"Moving [something] away from [something]","placeholders":["spoon","stapler"]}, +{"id":"118021","label":"moving calculator up","template":"Moving [something] up","placeholders":["calculator"]}, +{"id":"96385","label":"opening tub of coconut oil","template":"Opening [something]","placeholders":["tub of coconut oil"]}, +{"id":"14129","label":"putting powder bottle behind wood box","template":"Putting [something] behind [something]","placeholders":["powder bottle","wood box"]}, +{"id":"133520","label":"plugging charger into electric plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","electric plug"]}, +{"id":"184798","label":"burying an onion in rice","template":"Burying [something] in [something]","placeholders":["an onion","rice"]}, +{"id":"156241","label":"pretending to pick something up","template":"Pretending to pick [something] up","placeholders":["something"]}, +{"id":"44894","label":"a notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["a notebook"]}, +{"id":"124960","label":"pretending to take money from wallet","template":"Pretending to take [something] from [somewhere]","placeholders":["money","wallet"]}, +{"id":"182427","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"193768","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"178486","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"207802","label":"pushing green cup from left to right","template":"Pushing [something] from left to right","placeholders":["green cup"]}, +{"id":"11552","label":"dental floss container falling like a rock","template":"[Something] falling like a rock","placeholders":["dental floss container"]}, +{"id":"3227","label":"pouring water into water bottle","template":"Pouring [something] into [something]","placeholders":["water","water bottle"]}, +{"id":"13607","label":"hitting trash bin with dustpan","template":"Hitting [something] with [something]","placeholders":["trash bin","dustpan"]}, +{"id":"92938","label":"moving lamp up","template":"Moving [something] up","placeholders":["lamp"]}, +{"id":"214435","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"97587","label":"moving wheel of baby carriage","template":"Moving [part] of [something]","placeholders":["wheel","baby carriage"]}, +{"id":"152256","label":"pushing a bowl from left to right","template":"Pushing [something] from left to right","placeholders":["a bowl"]}, +{"id":"18272","label":"putting dinosaur into plate","template":"Putting [something] into [something]","placeholders":["dinosaur","plate"]}, +{"id":"23699","label":"putting cupcake onto plate","template":"Putting [something] onto [something]","placeholders":["cupcake","plate"]}, +{"id":"9443","label":"putting pint glass on a surface","template":"Putting [something] on a surface","placeholders":["pint glass"]}, +{"id":"200743","label":"dropping pen in front of box","template":"Dropping [something] in front of [something]","placeholders":["pen","box"]}, +{"id":"9748","label":"spinning eye drops so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["eye drops"]}, +{"id":"80845","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"169572","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"7909","label":"approaching white chalk piece with your camera","template":"Approaching [something] with your camera","placeholders":["white chalk piece"]}, +{"id":"218172","label":"pretending to put a shoulder bag onto flower vase","template":"Pretending to put [something] onto [something]","placeholders":["a shoulder bag","flower vase"]}, +{"id":"10193","label":"pretending to open perfume cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["perfume cap"]}, +{"id":"134419","label":"putting a calculator on a surface","template":"Putting [something] on a surface","placeholders":["a calculator"]}, +{"id":"83261","label":"pushing glasses from left to right","template":"Pushing [something] from left to right","placeholders":["glasses"]}, +{"id":"151515","label":"putting round box on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["round box"]}, +{"id":"17174","label":"putting glass behind bottle","template":"Putting [something] behind [something]","placeholders":["glass","bottle"]}, +{"id":"124896","label":"putting straw","template":"Putting [something similar to other things that are already on the table]","placeholders":["straw"]}, +{"id":"219647","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"69704","label":"letting marble roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["marble"]}, +{"id":"92437","label":"bending a tooth-stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a tooth-stick"]}, +{"id":"87247","label":"pushing shoe from left to right","template":"Pushing [something] from left to right","placeholders":["shoe"]}, +{"id":"56958","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"125207","label":"attaching a phone charger to a plug point","template":"Attaching [something] to [something]","placeholders":["a phone charger","a plug point"]}, +{"id":"105799","label":"putting a marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a marker pen"]}, +{"id":"140766","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185634","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"148192","label":"putting pencil box underneath a table","template":"Putting [something] underneath [something]","placeholders":["pencil box","a table"]}, +{"id":"65310","label":"stuffing knife into basket","template":"Stuffing [something] into [something]","placeholders":["knife","basket"]}, +{"id":"138497","label":"showing mug behind water bottle","template":"Showing [something] behind [something]","placeholders":["mug","water bottle"]}, +{"id":"34688","label":"plugging power cable into laptop","template":"Plugging [something] into [something]","placeholders":["power cable","laptop"]}, +{"id":"109423","label":"pushing pillow so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pillow"]}, +{"id":"71786","label":"closing cd cover","template":"Closing [something]","placeholders":["cd cover"]}, +{"id":"149782","label":"pretending to be tearing a cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cloth"]}, +{"id":"152378","label":"holding scissors next to glue","template":"Holding [something] next to [something]","placeholders":["scissors","glue"]}, +{"id":"95377","label":"holding can","template":"Holding [something]","placeholders":["can"]}, +{"id":"44513","label":"covering a cell phone with a piece of paper","template":"Covering [something] with [something]","placeholders":["a cell phone","a piece of paper"]}, +{"id":"19025","label":"showing battery next to pink colour pencil","template":"Showing [something] next to [something]","placeholders":["battery","pink colour pencil"]}, +{"id":"206900","label":"attaching a post-it to a chair","template":"Attaching [something] to [something]","placeholders":["a post-it","a chair"]}, +{"id":"3109","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"21693","label":"hitting a phone with a pencil","template":"Hitting [something] with [something]","placeholders":["a phone","a pencil"]}, +{"id":"4270","label":"covering garlic with box","template":"Covering [something] with [something]","placeholders":["garlic","box"]}, +{"id":"153962","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"167385","label":"poking a hole into salt","template":"Poking a hole into [some substance]","placeholders":["salt"]}, +{"id":"15705","label":"lifting coin up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["coin"]}, +{"id":"87524","label":"plugging flashcard into loptop","template":"Plugging [something] into [something]","placeholders":["flashcard","loptop"]}, +{"id":"96488","label":"showing a box behind a tv controller","template":"Showing [something] behind [something]","placeholders":["a box","a tv controller"]}, +{"id":"132207","label":"showing granola bar to the camera","template":"Showing [something] to the camera","placeholders":["granola bar"]}, +{"id":"15520","label":"putting a hair brush and a mirror on the table","template":"Putting [something] and [something] on the table","placeholders":["a hair brush","a mirror"]}, +{"id":"125592","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"120839","label":"uncovering an ipad","template":"Uncovering [something]","placeholders":["an ipad"]}, +{"id":"9935","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"93331","label":"holding moisturizer over a pamphlet","template":"Holding [something] over [something]","placeholders":["moisturizer","a pamphlet"]}, +{"id":"195691","label":"showing a cd next to a lighter","template":"Showing [something] next to [something]","placeholders":["a cd","a lighter"]}, +{"id":"184963","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"178990","label":"putting box on a surface","template":"Putting [something] on a surface","placeholders":["box"]}, +{"id":"220421","label":"pushing a penguin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a penguin"]}, +{"id":"35325","label":"pretending to pour glass out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["glass","glass","glass"]}, +{"id":"82703","label":"pushing a shoe with a stick","template":"Pushing [something] with [something]","placeholders":["a shoe","a stick"]}, +{"id":"131651","label":"opening highlighter","template":"Opening [something]","placeholders":["highlighter"]}, +{"id":"180698","label":"moving a key and a battery closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a key","a battery"]}, +{"id":"133998","label":"scooping nuts up with spoon","template":"Scooping [something] up with [something]","placeholders":["nuts","spoon"]}, +{"id":"80260","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"128454","label":"pushing a pinwheel so it spins","template":"Pushing [something] so it spins","placeholders":["a pinwheel"]}, +{"id":"26546","label":"holding keys behind a soap dispenser","template":"Holding [something] behind [something]","placeholders":["keys","a soap dispenser"]}, +{"id":"107139","label":"unfolding a receipt","template":"Unfolding [something]","placeholders":["a receipt"]}, +{"id":"59648","label":"spreading jam onto toast","template":"Spreading [something] onto [something]","placeholders":["jam","toast"]}, +{"id":"137685","label":"pushing knife so it spins","template":"Pushing [something] so it spins","placeholders":["knife"]}, +{"id":"133821","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"106558","label":"moving lip bam closer to pen","template":"Moving [something] closer to [something]","placeholders":["lip bam","pen"]}, +{"id":"60961","label":"poking cork so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cork"]}, +{"id":"34847","label":"throwing lighter in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["lighter"]}, +{"id":"93748","label":"covering pick with cloth","template":"Covering [something] with [something]","placeholders":["pick","cloth"]}, +{"id":"68135","label":"pretending to throw pillow","template":"Pretending to throw [something]","placeholders":["pillow"]}, +{"id":"201772","label":"pushing chocolate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["chocolate"]}, +{"id":"35545","label":"pretending to poke keys","template":"Pretending to poke [something]","placeholders":["keys"]}, +{"id":"206727","label":"putting can on a surface","template":"Putting [something] on a surface","placeholders":["can"]}, +{"id":"28509","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"129737","label":"sprinkling colour onto paper","template":"Sprinkling [something] onto [something]","placeholders":["colour","paper"]}, +{"id":"181400","label":"putting phone and scissors on the table","template":"Putting [something] and [something] on the table","placeholders":["phone","scissors"]}, +{"id":"100110","label":"holding glass behind bowl","template":"Holding [something] behind [something]","placeholders":["glass","bowl"]}, +{"id":"108687","label":"plugging cord into power strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","power strip"]}, +{"id":"29807","label":"taking an apple out of a bowl","template":"Taking [something] out of [something]","placeholders":["an apple","a bowl"]}, +{"id":"80491","label":"covering a cat with a blanket","template":"Covering [something] with [something]","placeholders":["a cat","a blanket"]}, +{"id":"63879","label":"putting board clip and cigarette lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["board clip","cigarette lighter"]}, +{"id":"116813","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"134524","label":"holding keychain over purse","template":"Holding [something] over [something]","placeholders":["keychain","purse"]}, +{"id":"200914","label":"showing key next to music player","template":"Showing [something] next to [something]","placeholders":["key","music player"]}, +{"id":"67643","label":"pretending to be tearing ipad case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ipad case"]}, +{"id":"63957","label":"cloth holder falling like a rock","template":"[Something] falling like a rock","placeholders":["cloth holder"]}, +{"id":"160716","label":"putting cell phone upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["cell phone"]}, +{"id":"34193","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"43274","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"34433","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"122339","label":"pretending to poke curtain","template":"Pretending to poke [something]","placeholders":["curtain"]}, +{"id":"15407","label":"tilting bottle with book on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bottle","book"]}, +{"id":"95619","label":"pretending to be tearing plastic lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic lid"]}, +{"id":"141809","label":"holding orange post-it","template":"Holding [something]","placeholders":["orange post-it"]}, +{"id":"22358","label":"throwing opener against wall","template":"Throwing [something] against [something]","placeholders":["opener","wall"]}, +{"id":"182311","label":"putting onion onto cloth","template":"Putting [something] onto [something]","placeholders":["onion","cloth"]}, +{"id":"127199","label":"squeezing a carton","template":"Squeezing [something]","placeholders":["a carton"]}, +{"id":"172608","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"53919","label":"throwing pick in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pick"]}, +{"id":"182726","label":"squeezing stress ball","template":"Squeezing [something]","placeholders":["stress ball"]}, +{"id":"139178","label":"putting waste paper into dustbin","template":"Putting [something] into [something]","placeholders":["waste paper","dustbin"]}, +{"id":"213128","label":"pulling pink blush on from left to right","template":"Pulling [something] from left to right","placeholders":["pink blush on"]}, +{"id":"165812","label":"holding case behind speaker","template":"Holding [something] behind [something]","placeholders":["case","speaker"]}, +{"id":"25869","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"187404","label":"putting a steel ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a steel ball"]}, +{"id":"155105","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"213321","label":"pulling a bracelet out of a plastic bag","template":"Pulling [something] out of [something]","placeholders":["a bracelet","a plastic bag"]}, +{"id":"139211","label":"remote control falling like a rock","template":"[Something] falling like a rock","placeholders":["remote control"]}, +{"id":"211726","label":"twisting (wringing) a wipe wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a wipe"]}, +{"id":"201989","label":"trying to bend a drumstick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a drumstick"]}, +{"id":"184241","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"99754","label":"putting toy in front of toy watch","template":"Putting [something] in front of [something]","placeholders":["toy","toy watch"]}, +{"id":"14403","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"99490","label":"opening a ukulele case","template":"Opening [something]","placeholders":["a ukulele case"]}, +{"id":"97159","label":"dropping paper clip next to medicine bottle","template":"Dropping [something] next to [something]","placeholders":["paper clip","medicine bottle"]}, +{"id":"217863","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"117940","label":"throwing notebook against bookbag","template":"Throwing [something] against [something]","placeholders":["notebook","bookbag"]}, +{"id":"54924","label":"pretending to be tearing table cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["table cloth"]}, +{"id":"179183","label":"pushing hat so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hat"]}, +{"id":"159543","label":"pushing a book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a book"]}, +{"id":"129718","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"172066","label":"tilting book with keys on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","keys"]}, +{"id":"200824","label":"throwing a tissue box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a tissue box"]}, +{"id":"99669","label":"lifting newspaper with hair brush on it","template":"Lifting [something] with [something] on it","placeholders":["newspaper","hair brush"]}, +{"id":"37562","label":"dropping a box in front of a pencil","template":"Dropping [something] in front of [something]","placeholders":["a box","a pencil"]}, +{"id":"214675","label":"moving a light switch down","template":"Moving [something] down","placeholders":["a light switch"]}, +{"id":"1591","label":"spilling water onto saucer","template":"Spilling [something] onto [something]","placeholders":["water","saucer"]}, +{"id":"207221","label":"picking a cup up","template":"Picking [something] up","placeholders":["a cup"]}, +{"id":"17637","label":"stuffing tissue into paper bag","template":"Stuffing [something] into [something]","placeholders":["tissue","paper bag"]}, +{"id":"12873","label":"approaching washing machine with your camera","template":"Approaching [something] with your camera","placeholders":["washing machine"]}, +{"id":"151380","label":"putting wallet that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["wallet"]}, +{"id":"130051","label":"throwing mechanical pencil onto a surface","template":"Throwing [something] onto a surface","placeholders":["mechanical pencil"]}, +{"id":"104985","label":"holding compact disk next to book","template":"Holding [something] next to [something]","placeholders":["compact disk","book"]}, +{"id":"76226","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"109534","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"28953","label":"putting tape on a surface","template":"Putting [something] on a surface","placeholders":["tape"]}, +{"id":"202657","label":"trying but failing to attach a cap to a jar because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a cap","a jar"]}, +{"id":"73670","label":"uncovering baby","template":"Uncovering [something]","placeholders":["baby"]}, +{"id":"64988","label":"lifting a book with a box on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a box"]}, +{"id":"54977","label":"moving bag down","template":"Moving [something] down","placeholders":["bag"]}, +{"id":"127682","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"191175","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"40897","label":"taking divider on the bottom that is similar to other divider on the table","template":"Taking [one of many similar things on the table]","placeholders":["divider on the bottom that is similar to other divider on the table"]}, +{"id":"39559","label":"poking a fork so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a fork"]}, +{"id":"3843","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"11606","label":"moving a toy car across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a toy car"]}, +{"id":"148819","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"214964","label":"throwing a pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pen"]}, +{"id":"18405","label":"holding scissors behind a bottle","template":"Holding [something] behind [something]","placeholders":["scissors","a bottle"]}, +{"id":"88484","label":"taking hacksaw blade from table","template":"Taking [something] from [somewhere]","placeholders":["hacksaw blade","table"]}, +{"id":"47769","label":"pushing bucket from right to left","template":"Pushing [something] from right to left","placeholders":["bucket"]}, +{"id":"140039","label":"moving toilet paper away from inhaler","template":"Moving [something] away from [something]","placeholders":["toilet paper","inhaler"]}, +{"id":"60661","label":"pushing kitchen roll so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["kitchen roll"]}, +{"id":"40102","label":"lifting up one end of flashlight, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["flashlight"]}, +{"id":"199620","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"114265","label":"lifting book with toy on it","template":"Lifting [something] with [something] on it","placeholders":["book","toy"]}, +{"id":"142623","label":"wiping cranberry off of the wall","template":"Wiping [something] off of [something]","placeholders":["cranberry","the wall"]}, +{"id":"60669","label":"playing card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["playing card"]}, +{"id":"189410","label":"tearing sandpaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["sandpaper"]}, +{"id":"133783","label":"letting pill bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pill bottle"]}, +{"id":"158967","label":"pushing lighter so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["lighter"]}, +{"id":"138147","label":"hitting box with comb","template":"Hitting [something] with [something]","placeholders":["box","comb"]}, +{"id":"64795","label":"turning pen holder upside down","template":"Turning [something] upside down","placeholders":["pen holder"]}, +{"id":"125793","label":"putting a pen next to pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen next to pens"]}, +{"id":"62977","label":"milk jug being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["milk jug","couch"]}, +{"id":"205285","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"87043","label":"turning the camera right while filming me","template":"Turning the camera right while filming [something]","placeholders":["me"]}, +{"id":"15283","label":"beanbag falling like a rock","template":"[Something] falling like a rock","placeholders":["beanbag"]}, +{"id":"13372","label":"approaching doorknob with your camera","template":"Approaching [something] with your camera","placeholders":["doorknob"]}, +{"id":"188281","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"120777","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"21623","label":"pretending to squeeze box","template":"Pretending to squeeze [something]","placeholders":["box"]}, +{"id":"81617","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"61091","label":"scooping dhal up with spoon","template":"Scooping [something] up with [something]","placeholders":["dhal","spoon"]}, +{"id":"107782","label":"pulling car from left to right","template":"Pulling [something] from left to right","placeholders":["car"]}, +{"id":"165840","label":"moving rectangular box and ramekin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["rectangular box","ramekin"]}, +{"id":"99316","label":"turning toy badge upside down","template":"Turning [something] upside down","placeholders":["toy badge"]}, +{"id":"183969","label":"lifting dish with apple on it","template":"Lifting [something] with [something] on it","placeholders":["dish","apple"]}, +{"id":"213404","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"131706","label":"folding childs shirt","template":"Folding [something]","placeholders":["childs shirt"]}, +{"id":"191199","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"19204","label":"pouring beer into mug","template":"Pouring [something] into [something]","placeholders":["beer","mug"]}, +{"id":"160841","label":"wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet"]}, +{"id":"164567","label":"moving a ink bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a ink bottle"]}, +{"id":"151395","label":"throwing a leaf in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a leaf"]}, +{"id":"50646","label":"moving medicines down","template":"Moving [something] down","placeholders":["medicines"]}, +{"id":"11569","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"22129","label":"approaching gate with your camera","template":"Approaching [something] with your camera","placeholders":["gate"]}, +{"id":"165593","label":"plugging electric cord into power outlet","template":"Plugging [something] into [something]","placeholders":["electric cord","power outlet"]}, +{"id":"216210","label":"turning the camera right while filming a jar","template":"Turning the camera right while filming [something]","placeholders":["a jar"]}, +{"id":"118579","label":"spreading kerchief onto diary","template":"Spreading [something] onto [something]","placeholders":["kerchief","diary"]}, +{"id":"100908","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"208016","label":"tearing a magazine just a little bit","template":"Tearing [something] just a little bit","placeholders":["a magazine"]}, +{"id":"37237","label":"showing slide next to easel","template":"Showing [something] next to [something]","placeholders":["slide","easel"]}, +{"id":"94529","label":"putting spanner on the top similar to many spanners on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["spanner on the top similar to many spanners on the table"]}, +{"id":"6173","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"35652","label":"uncovering laptop","template":"Uncovering [something]","placeholders":["laptop"]}, +{"id":"181119","label":"dropping a cell phone in front of a shoe","template":"Dropping [something] in front of [something]","placeholders":["a cell phone","a shoe"]}, +{"id":"61047","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"155237","label":"pretending to take bottle from table","template":"Pretending to take [something] from [somewhere]","placeholders":["bottle","table"]}, +{"id":"14805","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"120400","label":"pushing a shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a shoe"]}, +{"id":"211145","label":"putting the book on a surface","template":"Putting [something] on a surface","placeholders":["the book"]}, +{"id":"95848","label":"tilting book with box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","box"]}, +{"id":"122338","label":"showing newspaper on top of car bonnet","template":"Showing [something] on top of [something]","placeholders":["newspaper","car bonnet"]}, +{"id":"147873","label":"putting bracelete into jeweler","template":"Putting [something] into [something]","placeholders":["bracelete","jeweler"]}, +{"id":"81836","label":"a water bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["a water bottle"]}, +{"id":"18649","label":"showing bottle behind bottle","template":"Showing [something] behind [something]","placeholders":["bottle","bottle"]}, +{"id":"97820","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"2931","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"13248","label":"pretending to put comb into mug","template":"Pretending to put [something] into [something]","placeholders":["comb","mug"]}, +{"id":"154629","label":"uncovering something","template":"Uncovering [something]","placeholders":["something"]}, +{"id":"99256","label":"throwing roll of toilet paper against cabinet door","template":"Throwing [something] against [something]","placeholders":["roll of toilet paper","cabinet door"]}, +{"id":"31631","label":"trying to bend spoon so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["spoon"]}, +{"id":"207023","label":"opening the window","template":"Opening [something]","placeholders":["the window"]}, +{"id":"158297","label":"throwing an eraser in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["an eraser"]}, +{"id":"141132","label":"twisting lotion cap","template":"Twisting [something]","placeholders":["lotion cap"]}, +{"id":"29362","label":"pouring water into silver glass","template":"Pouring [something] into [something]","placeholders":["water","silver glass"]}, +{"id":"107908","label":"taking a spoon out of a coffee cup","template":"Taking [something] out of [something]","placeholders":["a spoon","a coffee cup"]}, +{"id":"48878","label":"pretending to put a battery next to a coin","template":"Pretending to put [something] next to [something]","placeholders":["a battery","a coin"]}, +{"id":"40910","label":"putting keys on a surface","template":"Putting [something] on a surface","placeholders":["keys"]}, +{"id":"155002","label":"tilting a roll of tape with a tape dispenser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a roll of tape","a tape dispenser"]}, +{"id":"182398","label":"pretending to pour water out of bucket, but bucket is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bucket","bucket"]}, +{"id":"55632","label":"dropping box next to cup","template":"Dropping [something] next to [something]","placeholders":["box","cup"]}, +{"id":"190506","label":"putting keys into bag","template":"Putting [something] into [something]","placeholders":["keys","bag"]}, +{"id":"65649","label":"holding keyboard next to backpack","template":"Holding [something] next to [something]","placeholders":["keyboard","backpack"]}, +{"id":"64307","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"203882","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"20549","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"41567","label":"moving cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["cup"]}, +{"id":"149647","label":"twisting (wringing) a washcloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a washcloth"]}, +{"id":"218178","label":"squeezing clear plastic hair band","template":"Squeezing [something]","placeholders":["clear plastic hair band"]}, +{"id":"38345","label":"tipping water over","template":"Tipping [something] over","placeholders":["water"]}, +{"id":"183898","label":"pretending to take black box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["black box","table"]}, +{"id":"167308","label":"folding a news paper","template":"Folding [something]","placeholders":["a news paper"]}, +{"id":"122975","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"131583","label":"putting dvds onto dvds","template":"Putting [something] onto [something]","placeholders":["dvds","dvds"]}, +{"id":"169505","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"26279","label":"stuffing paper into box","template":"Stuffing [something] into [something]","placeholders":["paper","box"]}, +{"id":"91079","label":"letting a ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a ball"]}, +{"id":"155092","label":"dropping scoop behind canister","template":"Dropping [something] behind [something]","placeholders":["scoop","canister"]}, +{"id":"35052","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"34920","label":"pretending to put shoe on a surface","template":"Pretending to put [something] on a surface","placeholders":["shoe"]}, +{"id":"19350","label":"poking plastic bag so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["plastic bag"]}, +{"id":"6482","label":"pushing phone from right to left","template":"Pushing [something] from right to left","placeholders":["phone"]}, +{"id":"48203","label":"pushing pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pencil"]}, +{"id":"176836","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"103204","label":"spilling tea next to a coin","template":"Spilling [something] next to [something]","placeholders":["tea","a coin"]}, +{"id":"215693","label":"pulling two ends of leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaf"]}, +{"id":"34235","label":"spilling water onto a plant","template":"Spilling [something] onto [something]","placeholders":["water","a plant"]}, +{"id":"218714","label":"lifting a blanket up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a blanket"]}, +{"id":"31539","label":"a ball colliding with a ball and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a ball","a ball"]}, +{"id":"50282","label":"pouring juice into can","template":"Pouring [something] into [something]","placeholders":["juice","can"]}, +{"id":"26647","label":"moving mirror and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mirror","bottle"]}, +{"id":"215561","label":"taking a tag","template":"Taking [one of many similar things on the table]","placeholders":["a tag"]}, +{"id":"44391","label":"pretending to pick wipes up","template":"Pretending to pick [something] up","placeholders":["wipes"]}, +{"id":"40013","label":"moving triangle and sun glasses away from each other","template":"Moving [something] and [something] away from each other","placeholders":["triangle","sun glasses"]}, +{"id":"107400","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"167711","label":"pulling mobile phone from right to left","template":"Pulling [something] from right to left","placeholders":["mobile phone"]}, +{"id":"32672","label":"usb cable falling like a rock","template":"[Something] falling like a rock","placeholders":["usb cable"]}, +{"id":"12749","label":"letting car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["car"]}, +{"id":"208606","label":"holding electric guitar over stool","template":"Holding [something] over [something]","placeholders":["electric guitar","stool"]}, +{"id":"202558","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"120224","label":"salt shaker falling like a rock","template":"[Something] falling like a rock","placeholders":["salt shaker"]}, +{"id":"4885","label":"pretending to pick scotch tape up","template":"Pretending to pick [something] up","placeholders":["scotch tape"]}, +{"id":"29369","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"156891","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"134845","label":"dropping an envelope behind a box","template":"Dropping [something] behind [something]","placeholders":["an envelope","a box"]}, +{"id":"90080","label":"pushing a knife so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a knife"]}, +{"id":"134378","label":"stuffing pens into vase","template":"Stuffing [something] into [something]","placeholders":["pens","vase"]}, +{"id":"18052","label":"pretending to close case without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["case"]}, +{"id":"15840","label":"bending pasta until it breaks","template":"Bending [something] until it breaks","placeholders":["pasta"]}, +{"id":"62960","label":"pretending to take tea infuser out of mug","template":"Pretending to take [something] out of [something]","placeholders":["tea infuser","mug"]}, +{"id":"54131","label":"tilting a cup with a notebook on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cup","a notebook"]}, +{"id":"43859","label":"pushing shot glass from right to left","template":"Pushing [something] from right to left","placeholders":["shot glass"]}, +{"id":"32356","label":"poking a stack of packaging handkerchiefs so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["packaging handkerchiefs"]}, +{"id":"130709","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"49839","label":"lifting a book up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a book"]}, +{"id":"88916","label":"lifting a paper up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a paper"]}, +{"id":"55315","label":"pretending to poke paper","template":"Pretending to poke [something]","placeholders":["paper"]}, +{"id":"189830","label":"picking betel nut up","template":"Picking [something] up","placeholders":["betel nut"]}, +{"id":"207518","label":"moving usb and usb cable away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb","usb cable"]}, +{"id":"125551","label":"attaching paperclip to paper","template":"Attaching [something] to [something]","placeholders":["paperclip","paper"]}, +{"id":"128078","label":"holding a measuring tape in front of helmet","template":"Holding [something] in front of [something]","placeholders":["a measuring tape","helmet"]}, +{"id":"139405","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"183917","label":"turning fabric softener upside down","template":"Turning [something] upside down","placeholders":["fabric softener"]}, +{"id":"32345","label":"pushing case from left to right","template":"Pushing [something] from left to right","placeholders":["case"]}, +{"id":"171954","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"140503","label":"lifting straw up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["straw"]}, +{"id":"144156","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"126597","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"175187","label":"uncovering fabric","template":"Uncovering [something]","placeholders":["fabric"]}, +{"id":"159995","label":"pretending to put a paper onto a box","template":"Pretending to put [something] onto [something]","placeholders":["a paper","a box"]}, +{"id":"31907","label":"stuffing calculator into pen bag","template":"Stuffing [something] into [something]","placeholders":["calculator","pen bag"]}, +{"id":"171538","label":"putting braclet onto table","template":"Putting [something] onto [something]","placeholders":["braclet","table"]}, +{"id":"1073","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"118066","label":"dropping a toy onto the bed","template":"Dropping [something] onto [something]","placeholders":["a toy","the bed"]}, +{"id":"76450","label":"taking tangerine from group of tangerines","template":"Taking [one of many similar things on the table]","placeholders":["tangerine from group of tangerines"]}, +{"id":"105370","label":"holding keychain in front of bear doll","template":"Holding [something] in front of [something]","placeholders":["keychain","bear doll"]}, +{"id":"49307","label":"pretending to put saucer underneath teacup","template":"Pretending to put [something] underneath [something]","placeholders":["saucer","teacup"]}, +{"id":"148143","label":"folding receipt paper","template":"Folding [something]","placeholders":["receipt paper"]}, +{"id":"62897","label":"putting a computer mouse on a surface","template":"Putting [something] on a surface","placeholders":["a computer mouse"]}, +{"id":"22530","label":"gluestick falling like a rock","template":"[Something] falling like a rock","placeholders":["gluestick"]}, +{"id":"100338","label":"dropping game piece onto book","template":"Dropping [something] onto [something]","placeholders":["game piece","book"]}, +{"id":"173735","label":"pulling white book marker from right to left","template":"Pulling [something] from right to left","placeholders":["white book marker"]}, +{"id":"160390","label":"dropping book onto chair","template":"Dropping [something] onto [something]","placeholders":["book","chair"]}, +{"id":"210405","label":"putting bottle onto jar","template":"Putting [something] onto [something]","placeholders":["bottle","jar"]}, +{"id":"130744","label":"dropping a matchbox next to a pencil","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a pencil"]}, +{"id":"216179","label":"failing to put an apple into a shot glass because the apple does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["an apple","a shot glass","the apple"]}, +{"id":"74720","label":"plugging phone charger into wall plug","template":"Plugging [something] into [something]","placeholders":["phone charger","wall plug"]}, +{"id":"112750","label":"pretending to sprinkle air onto floor","template":"Pretending to sprinkle air onto [something]","placeholders":["floor"]}, +{"id":"10230","label":"twisting pill bottle","template":"Twisting [something]","placeholders":["pill bottle"]}, +{"id":"53484","label":"throwing a tennis ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a tennis ball"]}, +{"id":"185570","label":"dropping a bottle top onto a plate","template":"Dropping [something] onto [something]","placeholders":["a bottle top","a plate"]}, +{"id":"28448","label":"putting box next to yellowbook","template":"Putting [something] next to [something]","placeholders":["box","yellowbook"]}, +{"id":"186661","label":"lifting up one end of comb without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["comb"]}, +{"id":"56215","label":"putting one tape dispenser onto table","template":"Putting [number of] [something] onto [something]","placeholders":["one","tape dispenser","table"]}, +{"id":"135525","label":"pushing sugar jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sugar jar"]}, +{"id":"164155","label":"putting tailoring tap into plastic bowl","template":"Putting [something] into [something]","placeholders":["tailoring tap","plastic bowl"]}, +{"id":"153105","label":"lifting telephone with box on it","template":"Lifting [something] with [something] on it","placeholders":["telephone","box"]}, +{"id":"196227","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"44982","label":"pretending to squeeze plastic funnel","template":"Pretending to squeeze [something]","placeholders":["plastic funnel"]}, +{"id":"1170","label":"showing nail varnish behind lighter","template":"Showing [something] behind [something]","placeholders":["nail varnish","lighter"]}, +{"id":"173897","label":"pouring water onto spoon","template":"Pouring [something] onto [something]","placeholders":["water","spoon"]}, +{"id":"13105","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"40","label":"poking lipstick so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["lipstick"]}, +{"id":"30680","label":"moving battery down","template":"Moving [something] down","placeholders":["battery"]}, +{"id":"80332","label":"holding binoculars in front of an anvil","template":"Holding [something] in front of [something]","placeholders":["binoculars","an anvil"]}, +{"id":"207331","label":"spilling water behind glass","template":"Spilling [something] behind [something]","placeholders":["water","glass"]}, +{"id":"198269","label":"dropping plate next to plate","template":"Dropping [something] next to [something]","placeholders":["plate","plate"]}, +{"id":"149320","label":"putting crochet needle into box","template":"Putting [something] into [something]","placeholders":["crochet needle","box"]}, +{"id":"90851","label":"moving stapler closer to scissors","template":"Moving [something] closer to [something]","placeholders":["stapler","scissors"]}, +{"id":"10617","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196534","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"214007","label":"pulling two ends of sock so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["sock"]}, +{"id":"54805","label":"spilling water next to a container","template":"Spilling [something] next to [something]","placeholders":["water","a container"]}, +{"id":"60416","label":"pretending to take a pen from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["a pen","ground"]}, +{"id":"13992","label":"dropping calculator into bowl","template":"Dropping [something] into [something]","placeholders":["calculator","bowl"]}, +{"id":"5143","label":"covering a phone with a piece of cloth","template":"Covering [something] with [something]","placeholders":["a phone","a piece of cloth"]}, +{"id":"17629","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"21300","label":"turning hole puncher upside down","template":"Turning [something] upside down","placeholders":["hole puncher"]}, +{"id":"37441","label":"letting a ring roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ring"]}, +{"id":"44586","label":"unfolding chair","template":"Unfolding [something]","placeholders":["chair"]}, +{"id":"10288","label":"bending a flexo lamp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a flexo lamp"]}, +{"id":"147119","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"129113","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"209706","label":"turning tumbler upside down","template":"Turning [something] upside down","placeholders":["tumbler"]}, +{"id":"70116","label":"dropping a glove behind a bowl","template":"Dropping [something] behind [something]","placeholders":["a glove","a bowl"]}, +{"id":"12575","label":"pieces of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["pieces of paper"]}, +{"id":"120673","label":"stacking 3 things","template":"Stacking [number of] [something]","placeholders":["3","things"]}, +{"id":"192054","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"201525","label":"pretending or trying and failing to twist comb","template":"Pretending or trying and failing to twist [something]","placeholders":["comb"]}, +{"id":"173596","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"109644","label":"putting mug in front of plastic screwcap","template":"Putting [something] in front of [something]","placeholders":["mug","plastic screwcap"]}, +{"id":"190134","label":"putting pillow onto sofa","template":"Putting [something] onto [something]","placeholders":["pillow","sofa"]}, +{"id":"1143","label":"hitting box with fork","template":"Hitting [something] with [something]","placeholders":["box","fork"]}, +{"id":"198242","label":"spinning a fidgit spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidgit spinner"]}, +{"id":"143109","label":"moving wallet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["wallet"]}, +{"id":"156613","label":"taking one of many similar coins","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar coins"]}, +{"id":"154380","label":"newspaper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["newspaper"]}, +{"id":"27419","label":"putting thing in front of drawers","template":"Putting [something] in front of [something]","placeholders":["thing","drawers"]}, +{"id":"23015","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"119171","label":"moving rack down","template":"Moving [something] down","placeholders":["rack"]}, +{"id":"98538","label":"putting a wallet upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a wallet"]}, +{"id":"88575","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"83334","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"65017","label":"putting stapler that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stapler"]}, +{"id":"32914","label":"covering white chalk with paper","template":"Covering [something] with [something]","placeholders":["white chalk","paper"]}, +{"id":"218471","label":"putting black brush on a surface","template":"Putting [something] on a surface","placeholders":["black brush"]}, +{"id":"131108","label":"twisting headphones","template":"Twisting [something]","placeholders":["headphones"]}, +{"id":"64717","label":"putting a pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a pen"]}, +{"id":"22618","label":"attaching sticky note to monitor","template":"Attaching [something] to [something]","placeholders":["sticky note","monitor"]}, +{"id":"83230","label":"pretending to be tearing bib","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bib"]}, +{"id":"3178","label":"tilting box with speaker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","speaker"]}, +{"id":"146962","label":"uncovering football","template":"Uncovering [something]","placeholders":["football"]}, +{"id":"135995","label":"moving cup closer to plate","template":"Moving [something] closer to [something]","placeholders":["cup","plate"]}, +{"id":"115389","label":"pushing wireless mouse from left to right","template":"Pushing [something] from left to right","placeholders":["wireless mouse"]}, +{"id":"149939","label":"holding stapler in front of cup","template":"Holding [something] in front of [something]","placeholders":["stapler","cup"]}, +{"id":"80659","label":"spreading butter onto toast","template":"Spreading [something] onto [something]","placeholders":["butter","toast"]}, +{"id":"108589","label":"turning shampoo bottle upside down","template":"Turning [something] upside down","placeholders":["shampoo bottle"]}, +{"id":"77398","label":"bulb syringe being deflected from dishwasher","template":"[Something] being deflected from [something]","placeholders":["bulb syringe","dishwasher"]}, +{"id":"4770","label":"spilling milk onto table","template":"Spilling [something] onto [something]","placeholders":["milk","table"]}, +{"id":"191579","label":"pulling a matchstick from behind of a book","template":"Pulling [something] from behind of [something]","placeholders":["a matchstick","a book"]}, +{"id":"18648","label":"pulling the dollar out of purse","template":"Pulling [something] out of [something]","placeholders":["the dollar","purse"]}, +{"id":"216095","label":"poking string so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["string"]}, +{"id":"139599","label":"moving fan and controller closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fan","controller"]}, +{"id":"37659","label":"pushing a bowl so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bowl"]}, +{"id":"56924","label":"lifting electronic calculator up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["electronic calculator"]}, +{"id":"39846","label":"moving sketch pen down","template":"Moving [something] down","placeholders":["sketch pen"]}, +{"id":"169464","label":"putting 3 letters onto the table","template":"Putting [number of] [something] onto [something]","placeholders":["3","letters","the table"]}, +{"id":"25282","label":"rolling rolling ball on flat surface on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling ball on flat surface"]}, +{"id":"200932","label":"pushing something from left to right","template":"Pushing [something] from left to right","placeholders":["something"]}, +{"id":"135973","label":"pretending to close small hand gel without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["small hand gel"]}, +{"id":"211506","label":"moving fork and knife away from each other","template":"Moving [something] and [something] away from each other","placeholders":["fork","knife"]}, +{"id":"137392","label":"poking a rack shelf so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a rack shelf"]}, +{"id":"52628","label":"moving remote control down","template":"Moving [something] down","placeholders":["remote control"]}, +{"id":"118743","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"206974","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"138027","label":"wiping ink off of table","template":"Wiping [something] off of [something]","placeholders":["ink","table"]}, +{"id":"211838","label":"pretending to put pebble onto glass","template":"Pretending to put [something] onto [something]","placeholders":["pebble","glass"]}, +{"id":"118245","label":"bending cotton swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cotton swab"]}, +{"id":"50123","label":"moving a pen up","template":"Moving [something] up","placeholders":["a pen"]}, +{"id":"215302","label":"letting a lemon roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a lemon"]}, +{"id":"48590","label":"pulling two ends of rubber string so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber string"]}, +{"id":"188162","label":"spinning soap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["soap"]}, +{"id":"180886","label":"taking block out of container","template":"Taking [something] out of [something]","placeholders":["block","container"]}, +{"id":"54527","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"93301","label":"moving salt away from pepper","template":"Moving [something] away from [something]","placeholders":["salt","pepper"]}, +{"id":"116978","label":"turning the camera left while filming atm machine","template":"Turning the camera left while filming [something]","placeholders":["atm machine"]}, +{"id":"9474","label":"pretending to pick flowers up","template":"Pretending to pick [something] up","placeholders":["flowers"]}, +{"id":"93579","label":"moving pages of note book","template":"Moving [part] of [something]","placeholders":["pages","note book"]}, +{"id":"5790","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"31941","label":"throwing bag in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bag"]}, +{"id":"140727","label":"dropping a toothpick onto a box","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a box"]}, +{"id":"107804","label":"showing that coffee is inside cup","template":"Showing that [something] is inside [something]","placeholders":["coffee","cup"]}, +{"id":"93247","label":"lifting the bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["the bottle"]}, +{"id":"39588","label":"pretending to close envelope without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["envelope"]}, +{"id":"203816","label":"stuffing notecard into purple container","template":"Stuffing [something] into [something]","placeholders":["notecard","purple container"]}, +{"id":"121095","label":"lifting spiral pad notebook with pencil on it","template":"Lifting [something] with [something] on it","placeholders":["spiral pad notebook","pencil"]}, +{"id":"152711","label":"holding vape over box","template":"Holding [something] over [something]","placeholders":["vape","box"]}, +{"id":"212095","label":"unfolding tote bags","template":"Unfolding [something]","placeholders":["tote bags"]}, +{"id":"156918","label":"pulling squeezable strawberry jam from left to right","template":"Pulling [something] from left to right","placeholders":["squeezable strawberry jam"]}, +{"id":"16115","label":"lifting tumbler up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["tumbler"]}, +{"id":"190435","label":"putting pendrive into mug","template":"Putting [something] into [something]","placeholders":["pendrive","mug"]}, +{"id":"110772","label":"holding cord","template":"Holding [something]","placeholders":["cord"]}, +{"id":"49938","label":"pretending or failing to wipe water off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["water","table"]}, +{"id":"65470","label":"plugging a usb into a laptop","template":"Plugging [something] into [something]","placeholders":["a usb","a laptop"]}, +{"id":"80418","label":"plugging headphones into a computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","a computer"]}, +{"id":"111896","label":"tilting a book with a mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a mouse"]}, +{"id":"85952","label":"stuffing papers into bag","template":"Stuffing [something] into [something]","placeholders":["papers","bag"]}, +{"id":"25701","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"94303","label":"lifting a wallet up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wallet"]}, +{"id":"163017","label":"plugging cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","laptop"]}, +{"id":"72127","label":"a sticky falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sticky"]}, +{"id":"5129","label":"throwing a plastic ball","template":"Throwing [something]","placeholders":["a plastic ball"]}, +{"id":"128222","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"146559","label":"spreading black pepper onto paper","template":"Spreading [something] onto [something]","placeholders":["black pepper","paper"]}, +{"id":"28957","label":"taking bond paper out of mini cabinet","template":"Taking [something] out of [something]","placeholders":["bond paper","mini cabinet"]}, +{"id":"69274","label":"taking a hair brush out of a box","template":"Taking [something] out of [something]","placeholders":["a hair brush","a box"]}, +{"id":"132942","label":"covering pens with a pillow","template":"Covering [something] with [something]","placeholders":["pens","a pillow"]}, +{"id":"49112","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"21500","label":"poking a roll of duct tape so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a roll of duct tape"]}, +{"id":"134120","label":"dropping marker into pen holder","template":"Dropping [something] into [something]","placeholders":["marker","pen holder"]}, +{"id":"105591","label":"putting sunglasses next to mug","template":"Putting [something] next to [something]","placeholders":["sunglasses","mug"]}, +{"id":"39260","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"83960","label":"holding vape next to jacket","template":"Holding [something] next to [something]","placeholders":["vape","jacket"]}, +{"id":"200337","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"119795","label":"moving towel up","template":"Moving [something] up","placeholders":["towel"]}, +{"id":"188868","label":"pushing toy gun so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["toy gun"]}, +{"id":"209768","label":"plugging plug connector into double plug socket","template":"Plugging [something] into [something]","placeholders":["plug connector","double plug socket"]}, +{"id":"60260","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"214070","label":"moving glass ball and glass ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass ball","glass ball"]}, +{"id":"108501","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"162613","label":"opening hotbox","template":"Opening [something]","placeholders":["hotbox"]}, +{"id":"183206","label":"taking a spoon","template":"Taking [one of many similar things on the table]","placeholders":["a spoon"]}, +{"id":"216140","label":"rolling a grape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a grape"]}, +{"id":"104030","label":"pulling two ends of sunglasses but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["sunglasses"]}, +{"id":"43127","label":"lifting box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["box"]}, +{"id":"178806","label":"showing toffees to the camera","template":"Showing [something] to the camera","placeholders":["toffees"]}, +{"id":"69128","label":"pulling brown bracelet from left to right","template":"Pulling [something] from left to right","placeholders":["brown bracelet"]}, +{"id":"12121","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"147286","label":"pretending to be tearing atm card","template":"Pretending to be tearing [something that is not tearable]","placeholders":["atm card"]}, +{"id":"117080","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"8609","label":"bending a plastic bottle so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a plastic bottle"]}, +{"id":"127611","label":"tearing a stickey note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a stickey note"]}, +{"id":"43928","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"44929","label":"pretending to spread air onto a table","template":"Pretending to spread air onto [something]","placeholders":["a table"]}, +{"id":"192009","label":"spinning my fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["my fidget spinner"]}, +{"id":"104378","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"190978","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"1108","label":"putting watch next to tablet","template":"Putting [something] next to [something]","placeholders":["watch","tablet"]}, +{"id":"195604","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"58221","label":"turning the camera right while filming ink bottle","template":"Turning the camera right while filming [something]","placeholders":["ink bottle"]}, +{"id":"173554","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"86574","label":"pushing iphone adapter from right to left","template":"Pushing [something] from right to left","placeholders":["iphone adapter"]}, +{"id":"203418","label":"uncovering a jbl","template":"Uncovering [something]","placeholders":["a jbl"]}, +{"id":"8453","label":"pushing nail varnish bottle from right to left","template":"Pushing [something] from right to left","placeholders":["nail varnish bottle"]}, +{"id":"61968","label":"tilting chair with watering can on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["chair","watering can"]}, +{"id":"47322","label":"twisting sock","template":"Twisting [something]","placeholders":["sock"]}, +{"id":"194167","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"86177","label":"moving toy and toy puppy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["toy","toy puppy"]}, +{"id":"180969","label":"throwing a small hollow box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a small hollow box"]}, +{"id":"185349","label":"tearing a piece of mail into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of mail"]}, +{"id":"65325","label":"dropping pen in front of glass","template":"Dropping [something] in front of [something]","placeholders":["pen","glass"]}, +{"id":"40839","label":"throwing a water bottle","template":"Throwing [something]","placeholders":["a water bottle"]}, +{"id":"158981","label":"putting sugar pack","template":"Putting [something similar to other things that are already on the table]","placeholders":["sugar pack"]}, +{"id":"107176","label":"tilting plate with glove on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","glove"]}, +{"id":"23199","label":"moving remote closer to remote","template":"Moving [something] closer to [something]","placeholders":["remote","remote"]}, +{"id":"182171","label":"pretending to take snack from box","template":"Pretending to take [something] from [somewhere]","placeholders":["snack","box"]}, +{"id":"16210","label":"tipping a pill bottle over","template":"Tipping [something] over","placeholders":["a pill bottle"]}, +{"id":"65258","label":"showing a box on top of the television","template":"Showing [something] on top of [something]","placeholders":["a box","the television"]}, +{"id":"216498","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"96343","label":"putting 2 red spoons onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","red spoons","black pouch"]}, +{"id":"128109","label":"showing that potato chips is inside the pack","template":"Showing that [something] is inside [something]","placeholders":["potato chips","the pack"]}, +{"id":"136608","label":"spinning deodrant that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["deodrant"]}, +{"id":"109513","label":"uncovering dvd disk","template":"Uncovering [something]","placeholders":["dvd disk"]}, +{"id":"42623","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"218883","label":"bending raw turmeric until it breaks","template":"Bending [something] until it breaks","placeholders":["raw turmeric"]}, +{"id":"45856","label":"failing to put shoe into jar because shoe does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["shoe","jar","shoe"]}, +{"id":"25037","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"66153","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"200413","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"150037","label":"turning the camera right while filming earphone","template":"Turning the camera right while filming [something]","placeholders":["earphone"]}, +{"id":"47610","label":"covering sunglasses with a scarf","template":"Covering [something] with [something]","placeholders":["sunglasses","a scarf"]}, +{"id":"62408","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"25345","label":"pouring coffee onto an overturned cup","template":"Pouring [something] onto [something]","placeholders":["coffee","an overturned cup"]}, +{"id":"82095","label":"putting a notebook in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a notebook","a cup"]}, +{"id":"129105","label":"pretending to take flashdisk from laptop","template":"Pretending to take [something] from [somewhere]","placeholders":["flashdisk","laptop"]}, +{"id":"16096","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"210291","label":"spilling water onto plant","template":"Spilling [something] onto [something]","placeholders":["water","plant"]}, +{"id":"143203","label":"moving coconunt down","template":"Moving [something] down","placeholders":["coconunt"]}, +{"id":"85082","label":"putting sewing reel onto plastic plate","template":"Putting [something] onto [something]","placeholders":["sewing reel","plastic plate"]}, +{"id":"32948","label":"moving pick and scissor closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pick","scissor"]}, +{"id":"159241","label":"showing pen next to box","template":"Showing [something] next to [something]","placeholders":["pen","box"]}, +{"id":"124750","label":"showing a box on top of a book","template":"Showing [something] on top of [something]","placeholders":["a box","a book"]}, +{"id":"36445","label":"tilting a plate with a candle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a plate","a candle"]}, +{"id":"31003","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"53502","label":"poking a perfume so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a perfume"]}, +{"id":"186103","label":"showing can next to book","template":"Showing [something] next to [something]","placeholders":["can","book"]}, +{"id":"47844","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"211636","label":"holding remote control next to helmet","template":"Holding [something] next to [something]","placeholders":["remote control","helmet"]}, +{"id":"53916","label":"pretending to put box on a surface","template":"Pretending to put [something] on a surface","placeholders":["box"]}, +{"id":"207974","label":"pretending to close small fresh mint without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["small fresh mint"]}, +{"id":"93819","label":"burying worms in wheat bran","template":"Burying [something] in [something]","placeholders":["worms","wheat bran"]}, +{"id":"192125","label":"putting book, mug and ball on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","mug","ball"]}, +{"id":"89852","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"51946","label":"pushing pistachio off of clementine","template":"Pushing [something] off of [something]","placeholders":["pistachio","clementine"]}, +{"id":"10213","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"218945","label":"pushing make up from left to right","template":"Pushing [something] from left to right","placeholders":["make up"]}, +{"id":"121856","label":"sprinkling sugar onto toast","template":"Sprinkling [something] onto [something]","placeholders":["sugar","toast"]}, +{"id":"39969","label":"spinning baby wipes that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["baby wipes"]}, +{"id":"160811","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"19275","label":"failing to put a vape into a usb because connection does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a vape","a usb","connection"]}, +{"id":"192186","label":"pushing glasses so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glasses"]}, +{"id":"130150","label":"tilting block with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["block","box"]}, +{"id":"146213","label":"putting lidded cup underneath container","template":"Putting [something] underneath [something]","placeholders":["lidded cup","container"]}, +{"id":"140618","label":"trying to bend plastic rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plastic rod"]}, +{"id":"15069","label":"squeezing brown sugar bag","template":"Squeezing [something]","placeholders":["brown sugar bag"]}, +{"id":"140304","label":"moving mobile phone down","template":"Moving [something] down","placeholders":["mobile phone"]}, +{"id":"6490","label":"pulling two ends of plastic cover so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["plastic cover"]}, +{"id":"41093","label":"moving jar and jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["jar","jar"]}, +{"id":"202709","label":"putting wooden bowl in front of glass","template":"Putting [something] in front of [something]","placeholders":["wooden bowl","glass"]}, +{"id":"103278","label":"putting pencil next to spiral pad notebook","template":"Putting [something] next to [something]","placeholders":["pencil","spiral pad notebook"]}, +{"id":"124418","label":"pretending to take cosmetic out of plastic box","template":"Pretending to take [something] out of [something]","placeholders":["cosmetic","plastic box"]}, +{"id":"33722","label":"moving hat and shoe so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["hat","shoe"]}, +{"id":"4088","label":"approaching colorful, wooden toy chicken car with your camera","template":"Approaching [something] with your camera","placeholders":["colorful, wooden toy chicken car"]}, +{"id":"198607","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"106253","label":"putting jar onto box","template":"Putting [something] onto [something]","placeholders":["jar","box"]}, +{"id":"142733","label":"putting sponge next to mug","template":"Putting [something] next to [something]","placeholders":["sponge","mug"]}, +{"id":"101651","label":"showing that my pan is empty","template":"Showing that [something] is empty","placeholders":["my pan"]}, +{"id":"3676","label":"touching (without moving) box of left side","template":"Touching (without moving) [part] of [something]","placeholders":["box","left side"]}, +{"id":"195646","label":"putting toy car in front of plastic bowl","template":"Putting [something] in front of [something]","placeholders":["toy car","plastic bowl"]}, +{"id":"102295","label":"holding red pot holder","template":"Holding [something]","placeholders":["red pot holder"]}, +{"id":"116845","label":"putting a tube on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a tube","table"]}, +{"id":"104829","label":"turning the camera downwards while filming iron","template":"Turning the camera downwards while filming [something]","placeholders":["iron"]}, +{"id":"106896","label":"turning the camera upwards while filming pedestal fan","template":"Turning the camera upwards while filming [something]","placeholders":["pedestal fan"]}, +{"id":"182388","label":"putting book and lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["book","lighter"]}, +{"id":"2382","label":"rolling candle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["candle"]}, +{"id":"136509","label":"pouring pure water into into another cup","template":"Pouring [something] into [something]","placeholders":["pure water","into another cup"]}, +{"id":"32117","label":"pulling a lighter from left to right","template":"Pulling [something] from left to right","placeholders":["a lighter"]}, +{"id":"75825","label":"dropping watch onto floor","template":"Dropping [something] onto [something]","placeholders":["watch","floor"]}, +{"id":"139346","label":"poking a stack of dice without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["dice"]}, +{"id":"145073","label":"putting a napkin onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a napkin"]}, +{"id":"43387","label":"putting plastic screwcap behind mug","template":"Putting [something] behind [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"169346","label":"lifting book with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["book","mouse"]}, +{"id":"217321","label":"poking the soap so that it falls over","template":"Poking [something] so that it falls over","placeholders":["the soap"]}, +{"id":"64181","label":"putting saucer underneath teacup","template":"Putting [something] underneath [something]","placeholders":["saucer","teacup"]}, +{"id":"161238","label":"a stuffed bird falling like a rock","template":"[Something] falling like a rock","placeholders":["a stuffed bird"]}, +{"id":"63078","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"103203","label":"throwing cellphone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["cellphone"]}, +{"id":"16756","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"98624","label":"pulling bottle from behind of paint bottle","template":"Pulling [something] from behind of [something]","placeholders":["bottle","paint bottle"]}, +{"id":"26625","label":"putting remote control on a surface","template":"Putting [something] on a surface","placeholders":["remote control"]}, +{"id":"124696","label":"moving box closer to bottle","template":"Moving [something] closer to [something]","placeholders":["box","bottle"]}, +{"id":"20799","label":"pushing legos from left to right","template":"Pushing [something] from left to right","placeholders":["legos"]}, +{"id":"151870","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"25064","label":"holding key behind laptop charger","template":"Holding [something] behind [something]","placeholders":["key","laptop charger"]}, +{"id":"214787","label":"throwing lighter against bed","template":"Throwing [something] against [something]","placeholders":["lighter","bed"]}, +{"id":"52755","label":"turning the camera right while filming black hat","template":"Turning the camera right while filming [something]","placeholders":["black hat"]}, +{"id":"170363","label":"picking a hat up","template":"Picking [something] up","placeholders":["a hat"]}, +{"id":"210945","label":"pretending to throw coaster","template":"Pretending to throw [something]","placeholders":["coaster"]}, +{"id":"171435","label":"taking taking one of the monkeys from the table","template":"Taking [one of many similar things on the table]","placeholders":["taking one of the monkeys from the table"]}, +{"id":"124183","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"203983","label":"rake falling like a rock","template":"[Something] falling like a rock","placeholders":["rake"]}, +{"id":"89177","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"75123","label":"folding baby blanket","template":"Folding [something]","placeholders":["baby blanket"]}, +{"id":"201325","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"72830","label":"showing that sand is inside glass","template":"Showing that [something] is inside [something]","placeholders":["sand","glass"]}, +{"id":"53135","label":"poking perfume so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["perfume"]}, +{"id":"68815","label":"burying candle in dirt","template":"Burying [something] in [something]","placeholders":["candle","dirt"]}, +{"id":"120309","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"209322","label":"stuffing cloth into cup","template":"Stuffing [something] into [something]","placeholders":["cloth","cup"]}, +{"id":"49066","label":"turning a stuffed toy upside down","template":"Turning [something] upside down","placeholders":["a stuffed toy"]}, +{"id":"204564","label":"throwing back pack onto a surface","template":"Throwing [something] onto a surface","placeholders":["back pack"]}, +{"id":"83375","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"19173","label":"uncovering brush","template":"Uncovering [something]","placeholders":["brush"]}, +{"id":"157988","label":"pulling pink toothbrush case from left to right","template":"Pulling [something] from left to right","placeholders":["pink toothbrush case"]}, +{"id":"184393","label":"covering keys with a towel","template":"Covering [something] with [something]","placeholders":["keys","a towel"]}, +{"id":"166206","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"178255","label":"moving toy away from block","template":"Moving [something] away from [something]","placeholders":["toy","block"]}, +{"id":"83026","label":"stuffing sheets into box","template":"Stuffing [something] into [something]","placeholders":["sheets","box"]}, +{"id":"59986","label":"pulling remote control from right to left","template":"Pulling [something] from right to left","placeholders":["remote control"]}, +{"id":"157769","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"106014","label":"lifting pocket up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["pocket"]}, +{"id":"6912","label":"lifting mirror with pen on it","template":"Lifting [something] with [something] on it","placeholders":["mirror","pen"]}, +{"id":"86526","label":"removing board, revealing basket behind","template":"Removing [something], revealing [something] behind","placeholders":["board","basket"]}, +{"id":"97759","label":"putting 2 pencil sharpners onto blue spectacle box","template":"Putting [number of] [something] onto [something]","placeholders":["2","pencil sharpners","blue spectacle box"]}, +{"id":"14280","label":"pretending to put a knife next to a mug","template":"Pretending to put [something] next to [something]","placeholders":["a knife","a mug"]}, +{"id":"166814","label":"moving white king and black king closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["white king","black king"]}, +{"id":"45656","label":"turning the camera left while filming tea box","template":"Turning the camera left while filming [something]","placeholders":["tea box"]}, +{"id":"157430","label":"taking ruler","template":"Taking [one of many similar things on the table]","placeholders":["ruler"]}, +{"id":"81735","label":"showing a match next to a flashlight","template":"Showing [something] next to [something]","placeholders":["a match","a flashlight"]}, +{"id":"146834","label":"putting glasses next to a bottle","template":"Putting [something] next to [something]","placeholders":["glasses","a bottle"]}, +{"id":"182226","label":"putting silverware","template":"Putting [something similar to other things that are already on the table]","placeholders":["silverware"]}, +{"id":"9352","label":"spreading lotion onto a hand","template":"Spreading [something] onto [something]","placeholders":["lotion","a hand"]}, +{"id":"120474","label":"pouring water out of glass cup","template":"Pouring [something] out of [something]","placeholders":["water","glass cup"]}, +{"id":"93960","label":"pretending to put cellphone on a surface","template":"Pretending to put [something] on a surface","placeholders":["cellphone"]}, +{"id":"139430","label":"folding a pant","template":"Folding [something]","placeholders":["a pant"]}, +{"id":"3507","label":"rolling an orange on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an orange"]}, +{"id":"110832","label":"attaching dog collar to door handle","template":"Attaching [something] to [something]","placeholders":["dog collar","door handle"]}, +{"id":"139064","label":"covering wood piece with a basket","template":"Covering [something] with [something]","placeholders":["wood piece","a basket"]}, +{"id":"23367","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"219287","label":"pulling two ends of a rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber band"]}, +{"id":"148960","label":"tipping pencil holder over","template":"Tipping [something] over","placeholders":["pencil holder"]}, +{"id":"23341","label":"moving a book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a book"]}, +{"id":"65830","label":"putting hair tie, ruler and cutlery on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hair tie","ruler","cutlery"]}, +{"id":"113592","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"66977","label":"tipping can over","template":"Tipping [something] over","placeholders":["can"]}, +{"id":"29285","label":"spinning remote controller that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote controller"]}, +{"id":"107115","label":"dropping a lid onto a glass","template":"Dropping [something] onto [something]","placeholders":["a lid","a glass"]}, +{"id":"76152","label":"pushing stuffed animal from left to right","template":"Pushing [something] from left to right","placeholders":["stuffed animal"]}, +{"id":"126874","label":"removing basket, revealing cellphone behind","template":"Removing [something], revealing [something] behind","placeholders":["basket","cellphone"]}, +{"id":"104394","label":"showing that coffee cup is empty","template":"Showing that [something] is empty","placeholders":["coffee cup"]}, +{"id":"101623","label":"moving toy tractor across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["toy tractor"]}, +{"id":"48500","label":"pushing pencil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pencil"]}, +{"id":"214974","label":"moving cup and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","cup"]}, +{"id":"121704","label":"putting glass onto glass","template":"Putting [something] onto [something]","placeholders":["glass","glass"]}, +{"id":"38851","label":"pretending to be tearing cotton towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cotton towel"]}, +{"id":"55717","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"189578","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"116310","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"163368","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"129811","label":"pushing ring from right to left","template":"Pushing [something] from right to left","placeholders":["ring"]}, +{"id":"50202","label":"showing a pencil on top of a notebook","template":"Showing [something] on top of [something]","placeholders":["a pencil","a notebook"]}, +{"id":"111999","label":"pretending or failing to wipe soap off of a wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["soap","a wall"]}, +{"id":"24505","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"196483","label":"letting water bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["water bottle"]}, +{"id":"107521","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"189987","label":"putting punching machine, spectacle and cigarette lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["punching machine","spectacle","cigarette lighter"]}, +{"id":"197427","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"12080","label":"tipping a toilet roll over","template":"Tipping [something] over","placeholders":["a toilet roll"]}, +{"id":"183010","label":"holding lighter behind foil ball","template":"Holding [something] behind [something]","placeholders":["lighter","foil ball"]}, +{"id":"184324","label":"dropping bear into chair","template":"Dropping [something] into [something]","placeholders":["bear","chair"]}, +{"id":"23071","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"141188","label":"holding pink water bottle","template":"Holding [something]","placeholders":["pink water bottle"]}, +{"id":"65140","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"175095","label":"pretending to turn black umbrella upside down","template":"Pretending to turn [something] upside down","placeholders":["black umbrella"]}, +{"id":"128335","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"91995","label":"plugging charger into power outlet","template":"Plugging [something] into [something]","placeholders":["charger","power outlet"]}, +{"id":"190833","label":"taking plate out of pile","template":"Taking [something] out of [something]","placeholders":["plate","pile"]}, +{"id":"52669","label":"stuffing tissue paper into plastic lid","template":"Stuffing [something] into [something]","placeholders":["tissue paper","plastic lid"]}, +{"id":"199199","label":"touching (without moving) an ear of a soft toy cat","template":"Touching (without moving) [part] of [something]","placeholders":["an ear","a soft toy cat"]}, +{"id":"32221","label":"pretending to put earphone on a surface","template":"Pretending to put [something] on a surface","placeholders":["earphone"]}, +{"id":"10368","label":"moving yellow ball up","template":"Moving [something] up","placeholders":["yellow ball"]}, +{"id":"190881","label":"showing people playing in the beach to the camera","template":"Showing [something] to the camera","placeholders":["people playing in the beach"]}, +{"id":"131257","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"182488","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"77942","label":"spilling water next to a pen","template":"Spilling [something] next to [something]","placeholders":["water","a pen"]}, +{"id":"186728","label":"putting an apple on a surface","template":"Putting [something] on a surface","placeholders":["an apple"]}, +{"id":"199417","label":"pretending to put keys into bag","template":"Pretending to put [something] into [something]","placeholders":["keys","bag"]}, +{"id":"52541","label":"putting hair brush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["hair brush"]}, +{"id":"182589","label":"turning pencil box upside down","template":"Turning [something] upside down","placeholders":["pencil box"]}, +{"id":"134989","label":"pushing a book from left to right","template":"Pushing [something] from left to right","placeholders":["a book"]}, +{"id":"58095","label":"holding compact disc over mirror","template":"Holding [something] over [something]","placeholders":["compact disc","mirror"]}, +{"id":"59676","label":"pushing pc mice so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pc mice"]}, +{"id":"171828","label":"approaching bismuth with your camera","template":"Approaching [something] with your camera","placeholders":["bismuth"]}, +{"id":"63668","label":"putting handkerchief into front storage kneeroom","template":"Putting [something] into [something]","placeholders":["handkerchief","front storage kneeroom"]}, +{"id":"151660","label":"stacking 4 rings","template":"Stacking [number of] [something]","placeholders":["4","rings"]}, +{"id":"188663","label":"showing pen behind hair gum","template":"Showing [something] behind [something]","placeholders":["pen","hair gum"]}, +{"id":"153448","label":"twisting fabric","template":"Twisting [something]","placeholders":["fabric"]}, +{"id":"204714","label":"soap falling like a rock","template":"[Something] falling like a rock","placeholders":["soap"]}, +{"id":"88459","label":"putting pebble, badge and toy white car on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pebble","badge","toy white car"]}, +{"id":"68170","label":"hitting bucket with knife","template":"Hitting [something] with [something]","placeholders":["bucket","knife"]}, +{"id":"3275","label":"hitting a book with a remote","template":"Hitting [something] with [something]","placeholders":["a book","a remote"]}, +{"id":"25161","label":"dropping fruits into a bowl","template":"Dropping [something] into [something]","placeholders":["fruits","a bowl"]}, +{"id":"15037","label":"stuffing tissue into jar","template":"Stuffing [something] into [something]","placeholders":["tissue","jar"]}, +{"id":"150935","label":"piling cards up","template":"Piling [something] up","placeholders":["cards"]}, +{"id":"92970","label":"lifting a wallet with a coin on it","template":"Lifting [something] with [something] on it","placeholders":["a wallet","a coin"]}, +{"id":"171956","label":"showing padlock next to glass jar","template":"Showing [something] next to [something]","placeholders":["padlock","glass jar"]}, +{"id":"28673","label":"pouring water out of glass","template":"Pouring [something] out of [something]","placeholders":["water","glass"]}, +{"id":"13887","label":"pretending to pick plant up","template":"Pretending to pick [something] up","placeholders":["plant"]}, +{"id":"98959","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"193690","label":"rolling doll on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["doll"]}, +{"id":"208574","label":"turning the camera right while filming lighter","template":"Turning the camera right while filming [something]","placeholders":["lighter"]}, +{"id":"58865","label":"pulling ipod from left to right","template":"Pulling [something] from left to right","placeholders":["ipod"]}, +{"id":"98958","label":"holding mouse in front of ipad","template":"Holding [something] in front of [something]","placeholders":["mouse","ipad"]}, +{"id":"11164","label":"yellow flower(feather) falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["yellow flower(feather)"]}, +{"id":"125096","label":"pretending to pick scissors up","template":"Pretending to pick [something] up","placeholders":["scissors"]}, +{"id":"158075","label":"spinning a lint roller that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lint roller"]}, +{"id":"37011","label":"turning a smartphone upside down","template":"Turning [something] upside down","placeholders":["a smartphone"]}, +{"id":"159097","label":"laying a plastic packaging on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a plastic packaging"]}, +{"id":"208829","label":"spilling milk onto worktop","template":"Spilling [something] onto [something]","placeholders":["milk","worktop"]}, +{"id":"20089","label":"putting marker into cap","template":"Putting [something] into [something]","placeholders":["marker","cap"]}, +{"id":"216132","label":"throwing goggles against wall","template":"Throwing [something] against [something]","placeholders":["goggles","wall"]}, +{"id":"116066","label":"poking a minion toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a minion toy"]}, +{"id":"7629","label":"laying cleaning wipes on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cleaning wipes"]}, +{"id":"55897","label":"pretending to throw comb","template":"Pretending to throw [something]","placeholders":["comb"]}, +{"id":"43206","label":"putting a travel magazine","template":"Putting [something similar to other things that are already on the table]","placeholders":["a travel magazine"]}, +{"id":"51217","label":"poking a card reader so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a card reader"]}, +{"id":"75541","label":"a toy car falling like a rock","template":"[Something] falling like a rock","placeholders":["a toy car"]}, +{"id":"150872","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"204704","label":"throwing black pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["black pencil"]}, +{"id":"34985","label":"pretending to squeeze a smartphone","template":"Pretending to squeeze [something]","placeholders":["a smartphone"]}, +{"id":"145529","label":"holding a plate behind a teapot","template":"Holding [something] behind [something]","placeholders":["a plate","a teapot"]}, +{"id":"106360","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"179908","label":"putting juice bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["juice bottles"]}, +{"id":"52921","label":"pouring water into sink","template":"Pouring [something] into [something]","placeholders":["water","sink"]}, +{"id":"40317","label":"covering bucket with towel","template":"Covering [something] with [something]","placeholders":["bucket","towel"]}, +{"id":"135269","label":"taking pasta out of plastic jar","template":"Taking [something] out of [something]","placeholders":["pasta","plastic jar"]}, +{"id":"114565","label":"tipping glass bottle with liquid over, so liquid falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["glass bottle","liquid","liquid"]}, +{"id":"164250","label":"turning the camera left while filming glass","template":"Turning the camera left while filming [something]","placeholders":["glass"]}, +{"id":"53661","label":"throwing deodorant in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["deodorant"]}, +{"id":"153325","label":"putting a wallet behind a bag","template":"Putting [something] behind [something]","placeholders":["a wallet","a bag"]}, +{"id":"73066","label":"plugging a usb cable into a power bank but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb cable","a power bank"]}, +{"id":"87379","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"40872","label":"pulling black pouch bag from left to right","template":"Pulling [something] from left to right","placeholders":["black pouch bag"]}, +{"id":"47805","label":"putting one lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["one lighter"]}, +{"id":"11541","label":"holding key over cup","template":"Holding [something] over [something]","placeholders":["key","cup"]}, +{"id":"36388","label":"lifting a surface with letter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["letter"]}, +{"id":"196898","label":"moving spectacles up","template":"Moving [something] up","placeholders":["spectacles"]}, +{"id":"152638","label":"moving red hair band and white toy car away from each other","template":"Moving [something] and [something] away from each other","placeholders":["red hair band","white toy car"]}, +{"id":"123285","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"60601","label":"spilling water onto a box","template":"Spilling [something] onto [something]","placeholders":["water","a box"]}, +{"id":"203627","label":"moving soda and box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["soda","box"]}, +{"id":"216439","label":"pretending to put pendrive into mug","template":"Pretending to put [something] into [something]","placeholders":["pendrive","mug"]}, +{"id":"146838","label":"showing that pot is empty","template":"Showing that [something] is empty","placeholders":["pot"]}, +{"id":"44658","label":"putting cone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cone"]}, +{"id":"78199","label":"taking a battery","template":"Taking [one of many similar things on the table]","placeholders":["a battery"]}, +{"id":"195177","label":"pushing battery from right to left","template":"Pushing [something] from right to left","placeholders":["battery"]}, +{"id":"87244","label":"moving marker and paper clip holder away from each other","template":"Moving [something] and [something] away from each other","placeholders":["marker","paper clip holder"]}, +{"id":"80557","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"207110","label":"spilling water next to a bottle top","template":"Spilling [something] next to [something]","placeholders":["water","a bottle top"]}, +{"id":"62563","label":"letting toy car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy car"]}, +{"id":"19490","label":"tilting folder with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","marker"]}, +{"id":"85937","label":"stacking 3 blushes in their makeup boxes","template":"Stacking [number of] [something]","placeholders":["3","blushes in their makeup boxes"]}, +{"id":"40806","label":"turning the camera upwards while filming adaptor","template":"Turning the camera upwards while filming [something]","placeholders":["adaptor"]}, +{"id":"80824","label":"turning a plate upside down","template":"Turning [something] upside down","placeholders":["a plate"]}, +{"id":"163580","label":"showing a smartphone behind a keyboard","template":"Showing [something] behind [something]","placeholders":["a smartphone","a keyboard"]}, +{"id":"169712","label":"showing keyboard behind helmet","template":"Showing [something] behind [something]","placeholders":["keyboard","helmet"]}, +{"id":"108465","label":"putting lighter next to cup","template":"Putting [something] next to [something]","placeholders":["lighter","cup"]}, +{"id":"118843","label":"putting mug in front of crayon","template":"Putting [something] in front of [something]","placeholders":["mug","crayon"]}, +{"id":"98512","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"185213","label":"spreading sauce onto roti","template":"Spreading [something] onto [something]","placeholders":["sauce","roti"]}, +{"id":"57991","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"176810","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"150560","label":"pretending to squeeze bottle","template":"Pretending to squeeze [something]","placeholders":["bottle"]}, +{"id":"157977","label":"moving white board clip away from red spoon","template":"Moving [something] away from [something]","placeholders":["white board clip","red spoon"]}, +{"id":"88228","label":"holding a teaspoon in front of a jar","template":"Holding [something] in front of [something]","placeholders":["a teaspoon","a jar"]}, +{"id":"92003","label":"moving glas and glas away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glas","glas"]}, +{"id":"108541","label":"attaching cape to bottle","template":"Attaching [something] to [something]","placeholders":["cape","bottle"]}, +{"id":"166449","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"22763","label":"pretending to squeeze something","template":"Pretending to squeeze [something]","placeholders":["something"]}, +{"id":"61946","label":"hitting a bottle with a comb","template":"Hitting [something] with [something]","placeholders":["a bottle","a comb"]}, +{"id":"51951","label":"approaching grill with your camera","template":"Approaching [something] with your camera","placeholders":["grill"]}, +{"id":"185560","label":"hitting bottle with pen","template":"Hitting [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"22302","label":"holding a plant in front of a box","template":"Holding [something] in front of [something]","placeholders":["a plant","a box"]}, +{"id":"104133","label":"showing that a pink ball is inside the milk jar","template":"Showing that [something] is inside [something]","placeholders":["a pink ball","the milk jar"]}, +{"id":"170009","label":"bending spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["spoon"]}, +{"id":"102140","label":"putting ball into bowl","template":"Putting [something] into [something]","placeholders":["ball","bowl"]}, +{"id":"26736","label":"throwing puzzle piece in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["puzzle piece"]}, +{"id":"98147","label":"moving a pen away from a battery","template":"Moving [something] away from [something]","placeholders":["a pen","a battery"]}, +{"id":"185266","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"94934","label":"holding sunglasses in front of package","template":"Holding [something] in front of [something]","placeholders":["sunglasses","package"]}, +{"id":"95721","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"157914","label":"burying plastic spoon in salt","template":"Burying [something] in [something]","placeholders":["plastic spoon","salt"]}, +{"id":"158767","label":"pushing romote controller so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["romote controller"]}, +{"id":"88179","label":"holding a glass next to a glass","template":"Holding [something] next to [something]","placeholders":["a glass","a glass"]}, +{"id":"204297","label":"attaching a spoon to a book","template":"Attaching [something] to [something]","placeholders":["a spoon","a book"]}, +{"id":"76590","label":"turning pink water bottle upside down","template":"Turning [something] upside down","placeholders":["pink water bottle"]}, +{"id":"64850","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"15685","label":"moving eye kajal closer to pendrive","template":"Moving [something] closer to [something]","placeholders":["eye kajal","pendrive"]}, +{"id":"214573","label":"turning the camera left while filming a paint bottle","template":"Turning the camera left while filming [something]","placeholders":["a paint bottle"]}, +{"id":"183430","label":"letting something roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["something"]}, +{"id":"173544","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"26875","label":"letting a scotch roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a scotch roll"]}, +{"id":"208792","label":"folding purse","template":"Folding [something]","placeholders":["purse"]}, +{"id":"218594","label":"pushing pumpkin cookie from left to right","template":"Pushing [something] from left to right","placeholders":["pumpkin cookie"]}, +{"id":"141070","label":"showing a cup behind a fan","template":"Showing [something] behind [something]","placeholders":["a cup","a fan"]}, +{"id":"52193","label":"pretending to put cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["cup"]}, +{"id":"91414","label":"rolling rolling plastic spray on a flat surface on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling plastic spray on a flat surface"]}, +{"id":"134153","label":"holding a marker in front of a pencil case","template":"Holding [something] in front of [something]","placeholders":["a marker","a pencil case"]}, +{"id":"186844","label":"throwing matchbox onto a surface","template":"Throwing [something] onto a surface","placeholders":["matchbox"]}, +{"id":"99929","label":"poking waterbottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["waterbottle"]}, +{"id":"172077","label":"dropping box behind trash can","template":"Dropping [something] behind [something]","placeholders":["box","trash can"]}, +{"id":"160784","label":"taking a toy car","template":"Taking [one of many similar things on the table]","placeholders":["a toy car"]}, +{"id":"40758","label":"dropping paper onto table","template":"Dropping [something] onto [something]","placeholders":["paper","table"]}, +{"id":"106886","label":"putting remote control that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["remote control"]}, +{"id":"211109","label":"turning the camera upwards while filming chair","template":"Turning the camera upwards while filming [something]","placeholders":["chair"]}, +{"id":"140946","label":"turning an espadrille upside down","template":"Turning [something] upside down","placeholders":["an espadrille"]}, +{"id":"29922","label":"spilling water next to a scooter","template":"Spilling [something] next to [something]","placeholders":["water","a scooter"]}, +{"id":"120624","label":"pushing ornament so it spins","template":"Pushing [something] so it spins","placeholders":["ornament"]}, +{"id":"184373","label":"turning the camera right while filming water tap","template":"Turning the camera right while filming [something]","placeholders":["water tap"]}, +{"id":"131392","label":"turning the camera left while filming brown bracelet","template":"Turning the camera left while filming [something]","placeholders":["brown bracelet"]}, +{"id":"208367","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"66213","label":"bending paperclip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paperclip"]}, +{"id":"216525","label":"stuffing book into bag","template":"Stuffing [something] into [something]","placeholders":["book","bag"]}, +{"id":"86136","label":"twisting tie","template":"Twisting [something]","placeholders":["tie"]}, +{"id":"158341","label":"pushing bottle of water from right to left","template":"Pushing [something] from right to left","placeholders":["bottle of water"]}, +{"id":"159873","label":"poking battery so that it falls over","template":"Poking [something] so that it falls over","placeholders":["battery"]}, +{"id":"48978","label":"turning the camera upwards while filming induction cooker","template":"Turning the camera upwards while filming [something]","placeholders":["induction cooker"]}, +{"id":"159309","label":"moving something and something closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["something","something"]}, +{"id":"61007","label":"turning candle upside down","template":"Turning [something] upside down","placeholders":["candle"]}, +{"id":"15753","label":"a sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sheet of paper"]}, +{"id":"8561","label":"pushing helmet from left to right","template":"Pushing [something] from left to right","placeholders":["helmet"]}, +{"id":"948","label":"trying to bend a stapler so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a stapler"]}, +{"id":"206622","label":"pushing empty milk mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["empty milk mug"]}, +{"id":"621","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"195644","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"48045","label":"lifting folder with phone on it","template":"Lifting [something] with [something] on it","placeholders":["folder","phone"]}, +{"id":"191905","label":"poking a hole into dough","template":"Poking a hole into [something soft]","placeholders":["dough"]}, +{"id":"19903","label":"letting a bottle cap roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a bottle cap"]}, +{"id":"157054","label":"pretending to close wooden box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["wooden box"]}, +{"id":"15634","label":"stacking 2 glass","template":"Stacking [number of] [something]","placeholders":["2","glass"]}, +{"id":"108250","label":"poking picture so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["picture"]}, +{"id":"135871","label":"covering a tablet with cap","template":"Covering [something] with [something]","placeholders":["a tablet","cap"]}, +{"id":"198251","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"10514","label":"taking sun glass from car seat","template":"Taking [something] from [somewhere]","placeholders":["sun glass","car seat"]}, +{"id":"175148","label":"touching (without moving) a doorknob of a door","template":"Touching (without moving) [part] of [something]","placeholders":["a doorknob","a door"]}, +{"id":"36064","label":"pretending to take ball from table","template":"Pretending to take [something] from [somewhere]","placeholders":["ball","table"]}, +{"id":"182490","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"148274","label":"pulling two ends of leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaf"]}, +{"id":"188343","label":"piling dirty clothes up","template":"Piling [something] up","placeholders":["dirty clothes"]}, +{"id":"183249","label":"holding a smartphone","template":"Holding [something]","placeholders":["a smartphone"]}, +{"id":"54216","label":"approaching pen holder with your camera","template":"Approaching [something] with your camera","placeholders":["pen holder"]}, +{"id":"30813","label":"throwing a jar in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a jar"]}, +{"id":"135409","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"133032","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"37393","label":"moving lever of wine key","template":"Moving [part] of [something]","placeholders":["lever","wine key"]}, +{"id":"3775","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"152407","label":"moving cap and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cap","box"]}, +{"id":"37641","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"215477","label":"holding a lid in front of a pot","template":"Holding [something] in front of [something]","placeholders":["a lid","a pot"]}, +{"id":"151402","label":"pretending to take magnet out of refrigerator","template":"Pretending to take [something] out of [something]","placeholders":["magnet","refrigerator"]}, +{"id":"7232","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"189047","label":"throwing keys","template":"Throwing [something]","placeholders":["keys"]}, +{"id":"188097","label":"covering dedorant with tablet","template":"Covering [something] with [something]","placeholders":["dedorant","tablet"]}, +{"id":"202431","label":"throwing can in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["can"]}, +{"id":"12699","label":"pretending to throw a highlighter","template":"Pretending to throw [something]","placeholders":["a highlighter"]}, +{"id":"141433","label":"pretending or failing to wipe paint off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","counter"]}, +{"id":"101083","label":"dropping a box next to a coin","template":"Dropping [something] next to [something]","placeholders":["a box","a coin"]}, +{"id":"64543","label":"moving book closer to chair","template":"Moving [something] closer to [something]","placeholders":["book","chair"]}, +{"id":"141287","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"172379","label":"moving lip bam away from pen","template":"Moving [something] away from [something]","placeholders":["lip bam","pen"]}, +{"id":"140845","label":"turning the camera right while filming indoor plant","template":"Turning the camera right while filming [something]","placeholders":["indoor plant"]}, +{"id":"51125","label":"spilling water onto floor","template":"Spilling [something] onto [something]","placeholders":["water","floor"]}, +{"id":"67849","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191360","label":"holding a pen next to a pencil case","template":"Holding [something] next to [something]","placeholders":["a pen","a pencil case"]}, +{"id":"23997","label":"lifting up one end of pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pen"]}, +{"id":"21199","label":"an orange falling like a rock","template":"[Something] falling like a rock","placeholders":["an orange"]}, +{"id":"153291","label":"pushing container lid from right to left","template":"Pushing [something] from right to left","placeholders":["container lid"]}, +{"id":"18554","label":"tv remote falling like a rock","template":"[Something] falling like a rock","placeholders":["tv remote"]}, +{"id":"130721","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"123168","label":"moving away from ring with your camera","template":"Moving away from [something] with your camera","placeholders":["ring"]}, +{"id":"40445","label":"putting a perfume bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a perfume bottle"]}, +{"id":"49084","label":"squeezing a pencil case","template":"Squeezing [something]","placeholders":["a pencil case"]}, +{"id":"71971","label":"moving away from a hairbrush with your camera","template":"Moving away from [something] with your camera","placeholders":["a hairbrush"]}, +{"id":"57609","label":"cigarettes falling like a rock","template":"[Something] falling like a rock","placeholders":["cigarettes"]}, +{"id":"144277","label":"lifting up one end of pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil"]}, +{"id":"58925","label":"unfolding a kitchen towel","template":"Unfolding [something]","placeholders":["a kitchen towel"]}, +{"id":"26080","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"184409","label":"car colliding with car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["car","car"]}, +{"id":"149523","label":"showing pot to the camera","template":"Showing [something] to the camera","placeholders":["pot"]}, +{"id":"17491","label":"plugging cellphone cord into outlet strip","template":"Plugging [something] into [something]","placeholders":["cellphone cord","outlet strip"]}, +{"id":"214465","label":"putting slime into tuperware","template":"Putting [something] into [something]","placeholders":["slime","tuperware"]}, +{"id":"73785","label":"putting box on the edge of counter so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["box","counter"]}, +{"id":"6545","label":"pretending to put paper into a cup","template":"Pretending to put [something] into [something]","placeholders":["paper","a cup"]}, +{"id":"151780","label":"putting wooden piece onto leaf of a plant which cannot support it so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["wooden piece","leaf of a plant which cannot support it"]}, +{"id":"123895","label":"moving away from wall light with your camera","template":"Moving away from [something] with your camera","placeholders":["wall light"]}, +{"id":"84718","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"97818","label":"uncovering plastic jar","template":"Uncovering [something]","placeholders":["plastic jar"]}, +{"id":"48465","label":"lifting a compact disk with a remote on it","template":"Lifting [something] with [something] on it","placeholders":["a compact disk","a remote"]}, +{"id":"149500","label":"poking a can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a can"]}, +{"id":"188693","label":"pushing cap from left to right","template":"Pushing [something] from left to right","placeholders":["cap"]}, +{"id":"138150","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"200654","label":"dropping a phone behind a toy car","template":"Dropping [something] behind [something]","placeholders":["a phone","a toy car"]}, +{"id":"159813","label":"pushing green chalk so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["green chalk"]}, +{"id":"52682","label":"plugging earphone into earphone jack","template":"Plugging [something] into [something]","placeholders":["earphone","earphone jack"]}, +{"id":"119450","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"65937","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"206241","label":"plugging charging cable into portable game device but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charging cable","portable game device"]}, +{"id":"121646","label":"dropping plastic container onto bucket","template":"Dropping [something] onto [something]","placeholders":["plastic container","bucket"]}, +{"id":"175614","label":"pretending to put book next to bag","template":"Pretending to put [something] next to [something]","placeholders":["book","bag"]}, +{"id":"49034","label":"putting brush on a surface","template":"Putting [something] on a surface","placeholders":["brush"]}, +{"id":"197890","label":"holding a pen over a speaker","template":"Holding [something] over [something]","placeholders":["a pen","a speaker"]}, +{"id":"102863","label":"attaching tape to paper","template":"Attaching [something] to [something]","placeholders":["tape","paper"]}, +{"id":"81053","label":"moving mouse closer to keyboard","template":"Moving [something] closer to [something]","placeholders":["mouse","keyboard"]}, +{"id":"217458","label":"pushing a tape so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a tape"]}, +{"id":"182704","label":"stacking 2 boxes","template":"Stacking [number of] [something]","placeholders":["2","boxes"]}, +{"id":"115924","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"172015","label":"pouring gravy into container","template":"Pouring [something] into [something]","placeholders":["gravy","container"]}, +{"id":"204232","label":"pretending to turn bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["bowl"]}, +{"id":"38158","label":"pulling diper out of diper pack","template":"Pulling [something] out of [something]","placeholders":["diper","diper pack"]}, +{"id":"200020","label":"stuffing ropes into bag","template":"Stuffing [something] into [something]","placeholders":["ropes","bag"]}, +{"id":"183363","label":"bending tissue until it breaks","template":"Bending [something] until it breaks","placeholders":["tissue"]}, +{"id":"139316","label":"spinning tape that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["tape"]}, +{"id":"18623","label":"rolling clementine on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["clementine"]}, +{"id":"210220","label":"taking one coin","template":"Taking [one of many similar things on the table]","placeholders":["one coin"]}, +{"id":"83024","label":"showing a tissue box behind a mug","template":"Showing [something] behind [something]","placeholders":["a tissue box","a mug"]}, +{"id":"50664","label":"tipping popcorn bucket over","template":"Tipping [something] over","placeholders":["popcorn bucket"]}, +{"id":"58550","label":"moving pencil and snap off blade away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pencil","snap off blade"]}, +{"id":"78326","label":"pushing a balloon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a balloon"]}, +{"id":"208749","label":"moving lever of faucet","template":"Moving [part] of [something]","placeholders":["lever","faucet"]}, +{"id":"5871","label":"wiping water off of mobile","template":"Wiping [something] off of [something]","placeholders":["water","mobile"]}, +{"id":"43923","label":"putting a marker and scissors on the table","template":"Putting [something] and [something] on the table","placeholders":["a marker","scissors"]}, +{"id":"176323","label":"plugging an audio cable into headphones","template":"Plugging [something] into [something]","placeholders":["an audio cable","headphones"]}, +{"id":"32648","label":"pretending to put a block of paper on a surface","template":"Pretending to put [something] on a surface","placeholders":["a block of paper"]}, +{"id":"69489","label":"attaching brush to vacuum hose","template":"Attaching [something] to [something]","placeholders":["brush","vacuum hose"]}, +{"id":"55757","label":"touching (without moving) button of controller","template":"Touching (without moving) [part] of [something]","placeholders":["button","controller"]}, +{"id":"61763","label":"holding remote over table","template":"Holding [something] over [something]","placeholders":["remote","table"]}, +{"id":"212982","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"43313","label":"stacking 3 notebooks","template":"Stacking [number of] [something]","placeholders":["3","notebooks"]}, +{"id":"37495","label":"pouring water out of waterbottle","template":"Pouring [something] out of [something]","placeholders":["water","waterbottle"]}, +{"id":"19827","label":"pretending to pick ball up","template":"Pretending to pick [something] up","placeholders":["ball"]}, +{"id":"120100","label":"showing total station survey instrument to the camera","template":"Showing [something] to the camera","placeholders":["total station survey instrument"]}, +{"id":"109010","label":"trying to bend scissor so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissor"]}, +{"id":"116421","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"92362","label":"putting wood onto paper so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["wood","paper"]}, +{"id":"154650","label":"brush falling like a rock","template":"[Something] falling like a rock","placeholders":["brush"]}, +{"id":"147466","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"179064","label":"putting a marker into a pencil case","template":"Putting [something] into [something]","placeholders":["a marker","a pencil case"]}, +{"id":"41130","label":"covering a stuffed rabbit with a blanket","template":"Covering [something] with [something]","placeholders":["a stuffed rabbit","a blanket"]}, +{"id":"103242","label":"tearing paper ticket into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper ticket"]}, +{"id":"171245","label":"moving remote away from remote","template":"Moving [something] away from [something]","placeholders":["remote","remote"]}, +{"id":"204515","label":"putting putting a figure of monkey to other monkey figures on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["putting a figure of monkey to other monkey figures on the table"]}, +{"id":"215766","label":"tipping a tv table over","template":"Tipping [something] over","placeholders":["a tv table"]}, +{"id":"176005","label":"lifting plate up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plate"]}, +{"id":"150752","label":"pushing marker from right to left","template":"Pushing [something] from right to left","placeholders":["marker"]}, +{"id":"175664","label":"folding a currency note","template":"Folding [something]","placeholders":["a currency note"]}, +{"id":"216301","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"57122","label":"pushing coin purse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["coin purse"]}, +{"id":"155568","label":"sprinkling cheese onto bread","template":"Sprinkling [something] onto [something]","placeholders":["cheese","bread"]}, +{"id":"202101","label":"putting drinking bottle behind plastic cup","template":"Putting [something] behind [something]","placeholders":["drinking bottle","plastic cup"]}, +{"id":"117338","label":"pretending to put cup next to towel","template":"Pretending to put [something] next to [something]","placeholders":["cup","towel"]}, +{"id":"83189","label":"wiping soda off of a counter","template":"Wiping [something] off of [something]","placeholders":["soda","a counter"]}, +{"id":"215220","label":"folding folding","template":"Folding [something]","placeholders":["folding"]}, +{"id":"32897","label":"plugging juiccer into electric socket","template":"Plugging [something] into [something]","placeholders":["juiccer","electric socket"]}, +{"id":"134534","label":"folding pamphlet","template":"Folding [something]","placeholders":["pamphlet"]}, +{"id":"39217","label":"poking tape so that it spins around","template":"Poking [something] so that it spins around","placeholders":["tape"]}, +{"id":"54664","label":"dropping ball into box","template":"Dropping [something] into [something]","placeholders":["ball","box"]}, +{"id":"7568","label":"attaching magnet to bero","template":"Attaching [something] to [something]","placeholders":["magnet","bero"]}, +{"id":"130272","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"100157","label":"pouring water onto waterbottle","template":"Pouring [something] onto [something]","placeholders":["water","waterbottle"]}, +{"id":"79396","label":"showing pen on top of ipad","template":"Showing [something] on top of [something]","placeholders":["pen","ipad"]}, +{"id":"37069","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"186085","label":"pushing a pin so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pin"]}, +{"id":"207801","label":"putting 2 staplers onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","staplers","red pouch"]}, +{"id":"153165","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"85380","label":"showing cup next to telephone","template":"Showing [something] next to [something]","placeholders":["cup","telephone"]}, +{"id":"218913","label":"holding bottle next to kendama","template":"Holding [something] next to [something]","placeholders":["bottle","kendama"]}, +{"id":"42974","label":"tearing paper-board just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper-board"]}, +{"id":"132843","label":"showing a pen on top of a bottle of pills","template":"Showing [something] on top of [something]","placeholders":["a pen","a bottle of pills"]}, +{"id":"126981","label":"attaching earphones to mobile","template":"Attaching [something] to [something]","placeholders":["earphones","mobile"]}, +{"id":"47711","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"175889","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"208501","label":"pretending to be tearing a plastic lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic lid"]}, +{"id":"46003","label":"moving away from plastic jar with your camera","template":"Moving away from [something] with your camera","placeholders":["plastic jar"]}, +{"id":"173725","label":"spilling water onto bottle","template":"Spilling [something] onto [something]","placeholders":["water","bottle"]}, +{"id":"106827","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"204224","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"136584","label":"pretending to be tearing cell phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cell phone"]}, +{"id":"192777","label":"stuffing clothes into red bag","template":"Stuffing [something] into [something]","placeholders":["clothes","red bag"]}, +{"id":"6741","label":"putting salad dressing upright on the table","template":"Putting [something] upright on the table","placeholders":["salad dressing"]}, +{"id":"110393","label":"showing pen to the camera","template":"Showing [something] to the camera","placeholders":["pen"]}, +{"id":"89893","label":"putting mouse next to laptop","template":"Putting [something] next to [something]","placeholders":["mouse","laptop"]}, +{"id":"33507","label":"poking phone so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["phone"]}, +{"id":"214451","label":"touching (without moving) corner of notebook","template":"Touching (without moving) [part] of [something]","placeholders":["corner","notebook"]}, +{"id":"57344","label":"spilling water behind gas stove","template":"Spilling [something] behind [something]","placeholders":["water","gas stove"]}, +{"id":"19021","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"216098","label":"pouring popcorn into cup","template":"Pouring [something] into [something]","placeholders":["popcorn","cup"]}, +{"id":"65315","label":"tomatoe falling like a rock","template":"[Something] falling like a rock","placeholders":["tomatoe"]}, +{"id":"75317","label":"poking mouse so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["mouse"]}, +{"id":"17651","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"206705","label":"closing spectical box","template":"Closing [something]","placeholders":["spectical box"]}, +{"id":"7211","label":"holding a glass over a cell phone","template":"Holding [something] over [something]","placeholders":["a glass","a cell phone"]}, +{"id":"118589","label":"moving remote down","template":"Moving [something] down","placeholders":["remote"]}, +{"id":"36787","label":"moving car key down","template":"Moving [something] down","placeholders":["car key"]}, +{"id":"48777","label":"trying to bend toothbrush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["toothbrush"]}, +{"id":"92656","label":"covering notepad with towel","template":"Covering [something] with [something]","placeholders":["notepad","towel"]}, +{"id":"26842","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"138613","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"201591","label":"covering bag with cloth","template":"Covering [something] with [something]","placeholders":["bag","cloth"]}, +{"id":"140291","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"44772","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"107594","label":"opening black plastic box","template":"Opening [something]","placeholders":["black plastic box"]}, +{"id":"177364","label":"sprinkling salt onto plate","template":"Sprinkling [something] onto [something]","placeholders":["salt","plate"]}, +{"id":"158990","label":"taking toys out of basket","template":"Taking [something] out of [something]","placeholders":["toys","basket"]}, +{"id":"29483","label":"moving key up","template":"Moving [something] up","placeholders":["key"]}, +{"id":"112474","label":"closing cabinet door","template":"Closing [something]","placeholders":["cabinet door"]}, +{"id":"50932","label":"pretending to put coin behind remote control","template":"Pretending to put [something] behind [something]","placeholders":["coin","remote control"]}, +{"id":"192250","label":"removing mug, revealing soap behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","soap"]}, +{"id":"202407","label":"dropping paper into a bowl","template":"Dropping [something] into [something]","placeholders":["paper","a bowl"]}, +{"id":"12618","label":"removing cd stack, revealing tennis ball behind","template":"Removing [something], revealing [something] behind","placeholders":["cd stack","tennis ball"]}, +{"id":"43190","label":"pushing wallet off of couch","template":"Pushing [something] off of [something]","placeholders":["wallet","couch"]}, +{"id":"69918","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"101034","label":"pushing white board clip with white chalk","template":"Pushing [something] with [something]","placeholders":["white board clip","white chalk"]}, +{"id":"36466","label":"dropping a pocket knife onto a box","template":"Dropping [something] onto [something]","placeholders":["a pocket knife","a box"]}, +{"id":"174884","label":"moving a can up","template":"Moving [something] up","placeholders":["a can"]}, +{"id":"94159","label":"moving a scotch roll and a scotch roll so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a scotch roll","a scotch roll"]}, +{"id":"56185","label":"stuffing pens into a plastic","template":"Stuffing [something] into [something]","placeholders":["pens","a plastic"]}, +{"id":"206230","label":"moving wallet up","template":"Moving [something] up","placeholders":["wallet"]}, +{"id":"134945","label":"spinning earring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["earring"]}, +{"id":"54607","label":"rolling yellow marker on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["yellow marker"]}, +{"id":"141860","label":"putting clothe into bucket","template":"Putting [something] into [something]","placeholders":["clothe","bucket"]}, +{"id":"189243","label":"attaching a sticky note to a cabinet","template":"Attaching [something] to [something]","placeholders":["a sticky note","a cabinet"]}, +{"id":"140281","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"14030","label":"dropping pen in front of watch","template":"Dropping [something] in front of [something]","placeholders":["pen","watch"]}, +{"id":"165254","label":"putting glue bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["glue bottle"]}, +{"id":"134716","label":"moving duct tape closer to vase","template":"Moving [something] closer to [something]","placeholders":["duct tape","vase"]}, +{"id":"159474","label":"paint bottle colliding with paint bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["paint bottle","paint bottle"]}, +{"id":"43291","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"195353","label":"dropping a toothpick onto a ruler","template":"Dropping [something] onto [something]","placeholders":["a toothpick","a ruler"]}, +{"id":"24293","label":"hitting butterfly hairclip with fly swatter","template":"Hitting [something] with [something]","placeholders":["butterfly hairclip","fly swatter"]}, +{"id":"88723","label":"putting bag in front of box","template":"Putting [something] in front of [something]","placeholders":["bag","box"]}, +{"id":"164497","label":"turning the camera right while filming usb","template":"Turning the camera right while filming [something]","placeholders":["usb"]}, +{"id":"143761","label":"putting a mug on a surface","template":"Putting [something] on a surface","placeholders":["a mug"]}, +{"id":"61801","label":"squeezing leather-bag","template":"Squeezing [something]","placeholders":["leather-bag"]}, +{"id":"64481","label":"lifting scissors up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["scissors"]}, +{"id":"94667","label":"dropping paper into box","template":"Dropping [something] into [something]","placeholders":["paper","box"]}, +{"id":"186373","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"96574","label":"taking a car out of a parking lot","template":"Taking [something] out of [something]","placeholders":["a car","a parking lot"]}, +{"id":"6036","label":"plugging power cord into surge protector","template":"Plugging [something] into [something]","placeholders":["power cord","surge protector"]}, +{"id":"133163","label":"pulling jewellry out of a jewellry box","template":"Pulling [something] out of [something]","placeholders":["jewellry","a jewellry box"]}, +{"id":"165149","label":"showing glasses on top of hamburger","template":"Showing [something] on top of [something]","placeholders":["glasses","hamburger"]}, +{"id":"165153","label":"plugging a power adapter into a socket","template":"Plugging [something] into [something]","placeholders":["a power adapter","a socket"]}, +{"id":"44689","label":"turning the camera upwards while filming old mobile phone","template":"Turning the camera upwards while filming [something]","placeholders":["old mobile phone"]}, +{"id":"155316","label":"putting mug and marker on the table","template":"Putting [something] and [something] on the table","placeholders":["mug","marker"]}, +{"id":"113477","label":"spilling water behind control","template":"Spilling [something] behind [something]","placeholders":["water","control"]}, +{"id":"113070","label":"hitting a mask with jacket","template":"Hitting [something] with [something]","placeholders":["a mask","jacket"]}, +{"id":"168617","label":"pretending to put paper knot into glass","template":"Pretending to put [something] into [something]","placeholders":["paper knot","glass"]}, +{"id":"117110","label":"holding water bottle over bag","template":"Holding [something] over [something]","placeholders":["water bottle","bag"]}, +{"id":"16695","label":"pretending to turn red pot holder upside down","template":"Pretending to turn [something] upside down","placeholders":["red pot holder"]}, +{"id":"125957","label":"spilling coffe onto a glass cup","template":"Spilling [something] onto [something]","placeholders":["coffe","a glass cup"]}, +{"id":"68","label":"holding marker in front of toy","template":"Holding [something] in front of [something]","placeholders":["marker","toy"]}, +{"id":"66828","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"44503","label":"spinning deodorant so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["deodorant"]}, +{"id":"78802","label":"pouring creamer into mug","template":"Pouring [something] into [something]","placeholders":["creamer","mug"]}, +{"id":"88356","label":"putting a glass next to the book","template":"Putting [something] next to [something]","placeholders":["a glass","the book"]}, +{"id":"169789","label":"pushing phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["phone"]}, +{"id":"158130","label":"dropping wallet next to mouse","template":"Dropping [something] next to [something]","placeholders":["wallet","mouse"]}, +{"id":"215657","label":"pushing scissors from left to right","template":"Pushing [something] from left to right","placeholders":["scissors"]}, +{"id":"56496","label":"showing flag to the camera","template":"Showing [something] to the camera","placeholders":["flag"]}, +{"id":"38989","label":"picking pink hair clip up","template":"Picking [something] up","placeholders":["pink hair clip"]}, +{"id":"20535","label":"lifting book with pencil on it","template":"Lifting [something] with [something] on it","placeholders":["book","pencil"]}, +{"id":"66606","label":"pushing a tissue box from right to left","template":"Pushing [something] from right to left","placeholders":["a tissue box"]}, +{"id":"158901","label":"twisting lid","template":"Twisting [something]","placeholders":["lid"]}, +{"id":"93167","label":"pretending to close a wallet without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a wallet"]}, +{"id":"143283","label":"tilting a magazine with a pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a magazine","a pencil"]}, +{"id":"64434","label":"pulling two ends of mobile case but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["mobile case"]}, +{"id":"95719","label":"poking a hole into balm","template":"Poking a hole into [some substance]","placeholders":["balm"]}, +{"id":"77708","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"83527","label":"opening pencil crayon case","template":"Opening [something]","placeholders":["pencil crayon case"]}, +{"id":"127850","label":"putting a chappal on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a chappal","table"]}, +{"id":"801","label":"putting a phone on a surface","template":"Putting [something] on a surface","placeholders":["a phone"]}, +{"id":"57857","label":"covering usb cable with cloth","template":"Covering [something] with [something]","placeholders":["usb cable","cloth"]}, +{"id":"8957","label":"pretending to take shoe out of closet","template":"Pretending to take [something] out of [something]","placeholders":["shoe","closet"]}, +{"id":"151588","label":"tilting a book with a phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a phone"]}, +{"id":"184845","label":"putting doll in front of idol","template":"Putting [something] in front of [something]","placeholders":["doll","idol"]}, +{"id":"208757","label":"letting canister roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["canister"]}, +{"id":"57783","label":"pushing the bluetooth speaker so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["the bluetooth speaker"]}, +{"id":"24018","label":"dropping a highlighter into a bucket","template":"Dropping [something] into [something]","placeholders":["a highlighter","a bucket"]}, +{"id":"2098","label":"moving pincer down","template":"Moving [something] down","placeholders":["pincer"]}, +{"id":"54936","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"185106","label":"plugging charger into block","template":"Plugging [something] into [something]","placeholders":["charger","block"]}, +{"id":"219476","label":"putting bar soap on a surface","template":"Putting [something] on a surface","placeholders":["bar soap"]}, +{"id":"130786","label":"holding food container in front of car","template":"Holding [something] in front of [something]","placeholders":["food container","car"]}, +{"id":"207351","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"130703","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"136255","label":"putting shirt into hamper","template":"Putting [something] into [something]","placeholders":["shirt","hamper"]}, +{"id":"109563","label":"pretending to take blue colour pe from table","template":"Pretending to take [something] from [somewhere]","placeholders":["blue colour pe","table"]}, +{"id":"113882","label":"uncovering watch","template":"Uncovering [something]","placeholders":["watch"]}, +{"id":"75486","label":"pushing a tape so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a tape"]}, +{"id":"77092","label":"pulling book from right to left","template":"Pulling [something] from right to left","placeholders":["book"]}, +{"id":"33679","label":"a wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["a wallet"]}, +{"id":"137991","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"5265","label":"spinning a 3d gift card that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a 3d gift card"]}, +{"id":"187789","label":"plugging cord into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall"]}, +{"id":"52622","label":"moving can closer to can","template":"Moving [something] closer to [something]","placeholders":["can","can"]}, +{"id":"10471","label":"poking a flashlight so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a flashlight"]}, +{"id":"14490","label":"lifting book with pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","pen"]}, +{"id":"180618","label":"showing grapes to the camera","template":"Showing [something] to the camera","placeholders":["grapes"]}, +{"id":"163547","label":"putting yellowbook next to pink book","template":"Putting [something] next to [something]","placeholders":["yellowbook","pink book"]}, +{"id":"72152","label":"showing gear behind toy wheel","template":"Showing [something] behind [something]","placeholders":["gear","toy wheel"]}, +{"id":"156859","label":"pretending to open cabinet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cabinet"]}, +{"id":"123295","label":"covering coaster with box","template":"Covering [something] with [something]","placeholders":["coaster","box"]}, +{"id":"24427","label":"taking rocks","template":"Taking [one of many similar things on the table]","placeholders":["rocks"]}, +{"id":"37170","label":"holding a pen in front of a glass","template":"Holding [something] in front of [something]","placeholders":["a pen","a glass"]}, +{"id":"61404","label":"dropping a box onto a sock","template":"Dropping [something] onto [something]","placeholders":["a box","a sock"]}, +{"id":"104460","label":"holding a watch behind a mobile","template":"Holding [something] behind [something]","placeholders":["a watch","a mobile"]}, +{"id":"14330","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"155334","label":"moving pen towards the camera","template":"Moving [something] towards the camera","placeholders":["pen"]}, +{"id":"120438","label":"throwing throwing lighter in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["throwing lighter"]}, +{"id":"9116","label":"showing that a plastic cup is empty","template":"Showing that [something] is empty","placeholders":["a plastic cup"]}, +{"id":"46175","label":"tilting a cutting board with a potholder on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cutting board","a potholder"]}, +{"id":"183863","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"142849","label":"putting doll on a surface","template":"Putting [something] on a surface","placeholders":["doll"]}, +{"id":"37174","label":"lifting up one end of a towel without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a towel"]}, +{"id":"215257","label":"pretending or failing to wipe spot off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["spot","wall"]}, +{"id":"220334","label":"throwing a paper","template":"Throwing [something]","placeholders":["a paper"]}, +{"id":"125982","label":"pretending to close powder without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["powder"]}, +{"id":"103102","label":"touching (without moving) a knob of a drawer","template":"Touching (without moving) [part] of [something]","placeholders":["a knob","a drawer"]}, +{"id":"154057","label":"moving pebble closer to spanner","template":"Moving [something] closer to [something]","placeholders":["pebble","spanner"]}, +{"id":"58530","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"143651","label":"pretending to be tearing coaster","template":"Pretending to be tearing [something that is not tearable]","placeholders":["coaster"]}, +{"id":"109433","label":"holding pen in front of handbag","template":"Holding [something] in front of [something]","placeholders":["pen","handbag"]}, +{"id":"18663","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"35767","label":"moving nail clippers away from pen","template":"Moving [something] away from [something]","placeholders":["nail clippers","pen"]}, +{"id":"14206","label":"lifting paper up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["paper"]}, +{"id":"68459","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"181578","label":"pushing a phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a phone"]}, +{"id":"26579","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"78118","label":"turning the camera left while filming one tea light candle","template":"Turning the camera left while filming [something]","placeholders":["one tea light candle"]}, +{"id":"205422","label":"putting color paper clip","template":"Putting [something similar to other things that are already on the table]","placeholders":["color paper clip"]}, +{"id":"96494","label":"holding a pen next to scissors","template":"Holding [something] next to [something]","placeholders":["a pen","scissors"]}, +{"id":"91018","label":"sprinkling flour onto sausage","template":"Sprinkling [something] onto [something]","placeholders":["flour","sausage"]}, +{"id":"212599","label":"poking a stack of boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["boxes"]}, +{"id":"173361","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"157925","label":"taking battery","template":"Taking [one of many similar things on the table]","placeholders":["battery"]}, +{"id":"110962","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"127436","label":"spilling water onto the floor","template":"Spilling [something] onto [something]","placeholders":["water","the floor"]}, +{"id":"203910","label":"putting tea infuser into mug","template":"Putting [something] into [something]","placeholders":["tea infuser","mug"]}, +{"id":"147513","label":"tipping dental floss over","template":"Tipping [something] over","placeholders":["dental floss"]}, +{"id":"167166","label":"plugging nightlight into socket","template":"Plugging [something] into [something]","placeholders":["nightlight","socket"]}, +{"id":"116821","label":"uncovering a banana","template":"Uncovering [something]","placeholders":["a banana"]}, +{"id":"107752","label":"bending paper cilp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper cilp"]}, +{"id":"117867","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"128957","label":"showing a flower pot on top of a porch","template":"Showing [something] on top of [something]","placeholders":["a flower pot","a porch"]}, +{"id":"144230","label":"taking snacks packet","template":"Taking [one of many similar things on the table]","placeholders":["snacks packet"]}, +{"id":"81228","label":"pushing a $20 bill onto a cigarette pack","template":"Pushing [something] onto [something]","placeholders":["a $20 bill","a cigarette pack"]}, +{"id":"139497","label":"plastic rock falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic rock"]}, +{"id":"42428","label":"putting black scissor that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["black scissor"]}, +{"id":"161987","label":"taking book out of shelves","template":"Taking [something] out of [something]","placeholders":["book","shelves"]}, +{"id":"106740","label":"holding red spoon next to red punching machine","template":"Holding [something] next to [something]","placeholders":["red spoon","red punching machine"]}, +{"id":"93214","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"81620","label":"moving toy and cylinder so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toy","cylinder"]}, +{"id":"76638","label":"burying egg in salt","template":"Burying [something] in [something]","placeholders":["egg","salt"]}, +{"id":"86966","label":"putting candle into glas","template":"Putting [something] into [something]","placeholders":["candle","glas"]}, +{"id":"123821","label":"turning the camera left while filming traffic light","template":"Turning the camera left while filming [something]","placeholders":["traffic light"]}, +{"id":"67477","label":"dropping green bowl in front of red pouch","template":"Dropping [something] in front of [something]","placeholders":["green bowl","red pouch"]}, +{"id":"174556","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"143298","label":"lifting book with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","a pen"]}, +{"id":"74824","label":"dropping onion onto bucket","template":"Dropping [something] onto [something]","placeholders":["onion","bucket"]}, +{"id":"149791","label":"moving a ball and another ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","another ball"]}, +{"id":"113780","label":"showing hot sauce behind bottle","template":"Showing [something] behind [something]","placeholders":["hot sauce","bottle"]}, +{"id":"129318","label":"holding a piece of paper behind ballpen","template":"Holding [something] behind [something]","placeholders":["a piece of paper","ballpen"]}, +{"id":"61119","label":"plugging a plug into a plug extender but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a plug extender"]}, +{"id":"150905","label":"showing white envelope to the camera","template":"Showing [something] to the camera","placeholders":["white envelope"]}, +{"id":"27550","label":"lifting plate with cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","cup"]}, +{"id":"53387","label":"pretending to close tablet-box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["tablet-box"]}, +{"id":"60604","label":"piling dvds up","template":"Piling [something] up","placeholders":["dvds"]}, +{"id":"100780","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"19688","label":"showing that the wooden plate is empty","template":"Showing that [something] is empty","placeholders":["the wooden plate"]}, +{"id":"122748","label":"pushing dvd case from right to left","template":"Pushing [something] from right to left","placeholders":["dvd case"]}, +{"id":"20245","label":"poking a hole into butter","template":"Poking a hole into [something soft]","placeholders":["butter"]}, +{"id":"103066","label":"wiping crayon off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["crayon","whiteboard"]}, +{"id":"117558","label":"tipping cereal box over","template":"Tipping [something] over","placeholders":["cereal box"]}, +{"id":"213468","label":"taking bottle out of cup","template":"Taking [something] out of [something]","placeholders":["bottle","cup"]}, +{"id":"21906","label":"taking mineral water","template":"Taking [one of many similar things on the table]","placeholders":["mineral water"]}, +{"id":"145729","label":"moving watch down","template":"Moving [something] down","placeholders":["watch"]}, +{"id":"93165","label":"showing a lock next to the onion","template":"Showing [something] next to [something]","placeholders":["a lock","the onion"]}, +{"id":"185497","label":"putting shampoo bottler onto paperboard so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["shampoo bottler","paperboard"]}, +{"id":"142438","label":"moving backpack down","template":"Moving [something] down","placeholders":["backpack"]}, +{"id":"108718","label":"tearing brown paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["brown paper"]}, +{"id":"90272","label":"lifting cup up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["cup"]}, +{"id":"94933","label":"turning spray bottle upside down","template":"Turning [something] upside down","placeholders":["spray bottle"]}, +{"id":"211620","label":"taking strawberry out of bowl","template":"Taking [something] out of [something]","placeholders":["strawberry","bowl"]}, +{"id":"70593","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"86949","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"1056","label":"stacking 2 toy cars","template":"Stacking [number of] [something]","placeholders":["2","toy cars"]}, +{"id":"133612","label":"laying glue stick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glue stick"]}, +{"id":"24388","label":"moving a mug and another mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","another mug"]}, +{"id":"164578","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"96267","label":"taking toffee eclairs from jar","template":"Taking [something] from [somewhere]","placeholders":["toffee eclairs","jar"]}, +{"id":"94783","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"125131","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"155172","label":"holding a stick over the step","template":"Holding [something] over [something]","placeholders":["a stick","the step"]}, +{"id":"171329","label":"dropping pen onto bowl","template":"Dropping [something] onto [something]","placeholders":["pen","bowl"]}, +{"id":"25252","label":"turning the camera left while filming toothpaste tube","template":"Turning the camera left while filming [something]","placeholders":["toothpaste tube"]}, +{"id":"161695","label":"holding a bottle in front of a laptop","template":"Holding [something] in front of [something]","placeholders":["a bottle","a laptop"]}, +{"id":"38439","label":"holding pen behind iron","template":"Holding [something] behind [something]","placeholders":["pen","iron"]}, +{"id":"180602","label":"tearing index card into two pieces","template":"Tearing [something] into two pieces","placeholders":["index card"]}, +{"id":"18971","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"145061","label":"pulling blinds from right to left","template":"Pulling [something] from right to left","placeholders":["blinds"]}, +{"id":"131427","label":"putting book next to book","template":"Putting [something] next to [something]","placeholders":["book","book"]}, +{"id":"9462","label":"dropping an alarm clock onto a bed","template":"Dropping [something] onto [something]","placeholders":["an alarm clock","a bed"]}, +{"id":"16212","label":"putting sunglasses next to remote control","template":"Putting [something] next to [something]","placeholders":["sunglasses","remote control"]}, +{"id":"40301","label":"dropping keys into bag","template":"Dropping [something] into [something]","placeholders":["keys","bag"]}, +{"id":"33449","label":"showing phone behind plastic cup","template":"Showing [something] behind [something]","placeholders":["phone","plastic cup"]}, +{"id":"128199","label":"turning a marker upside down","template":"Turning [something] upside down","placeholders":["a marker"]}, +{"id":"93339","label":"moving cup away from stapler","template":"Moving [something] away from [something]","placeholders":["cup","stapler"]}, +{"id":"101158","label":"turning red pot holder upside down","template":"Turning [something] upside down","placeholders":["red pot holder"]}, +{"id":"69339","label":"hair brush falling like a rock","template":"[Something] falling like a rock","placeholders":["hair brush"]}, +{"id":"97002","label":"turning the camera right while filming snacks packets","template":"Turning the camera right while filming [something]","placeholders":["snacks packets"]}, +{"id":"89139","label":"showing black toy wheel next to orange pencil sharpner","template":"Showing [something] next to [something]","placeholders":["black toy wheel","orange pencil sharpner"]}, +{"id":"220062","label":"pretending or trying and failing to twist toy car","template":"Pretending or trying and failing to twist [something]","placeholders":["toy car"]}, +{"id":"65028","label":"showing a bottle on top of box","template":"Showing [something] on top of [something]","placeholders":["a bottle","box"]}, +{"id":"49914","label":"bending bulb syringe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bulb syringe"]}, +{"id":"136284","label":"throwing litle crown","template":"Throwing [something]","placeholders":["litle crown"]}, +{"id":"92487","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"207257","label":"pulling soft elmo from left to right","template":"Pulling [something] from left to right","placeholders":["soft elmo"]}, +{"id":"107816","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"106257","label":"dropping cucumber next to lemon","template":"Dropping [something] next to [something]","placeholders":["cucumber","lemon"]}, +{"id":"36396","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"1461","label":"twisting plastic scale","template":"Twisting [something]","placeholders":["plastic scale"]}, +{"id":"118596","label":"throwing santa hat in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["santa hat"]}, +{"id":"43492","label":"moving glue bottle closer to camera","template":"Moving [something] closer to [something]","placeholders":["glue bottle","camera"]}, +{"id":"98924","label":"pushing nail polish so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail polish"]}, +{"id":"84175","label":"pouring water onto a glass","template":"Pouring [something] onto [something]","placeholders":["water","a glass"]}, +{"id":"165145","label":"putting plastic jar onto stopper so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["plastic jar","stopper"]}, +{"id":"178022","label":"pushing something so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["something"]}, +{"id":"43117","label":"pulling cloth out of plastic container","template":"Pulling [something] out of [something]","placeholders":["cloth","plastic container"]}, +{"id":"59074","label":"pretending to be tearing a pen","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a pen"]}, +{"id":"209907","label":"holding paint brushes over paint","template":"Holding [something] over [something]","placeholders":["paint brushes","paint"]}, +{"id":"143297","label":"moving a dvd away from a mug","template":"Moving [something] away from [something]","placeholders":["a dvd","a mug"]}, +{"id":"22287","label":"rolling a pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pen"]}, +{"id":"43849","label":"dropping a matchbox in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a toothbrush"]}, +{"id":"62853","label":"plugging kettle into socket","template":"Plugging [something] into [something]","placeholders":["kettle","socket"]}, +{"id":"4163","label":"tearing a polythene cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["a polythene cover"]}, +{"id":"175597","label":"opening a jar of vitamins","template":"Opening [something]","placeholders":["a jar of vitamins"]}, +{"id":"213842","label":"lifting up one end of laptop, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["laptop"]}, +{"id":"28130","label":"stacking 3 ping pong balls","template":"Stacking [number of] [something]","placeholders":["3","ping pong balls"]}, +{"id":"38038","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"130097","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"16660","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"33392","label":"folding news paper","template":"Folding [something]","placeholders":["news paper"]}, +{"id":"32263","label":"rolling pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pen"]}, +{"id":"57483","label":"lifting up one end of a laptop, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a laptop"]}, +{"id":"94406","label":"putting book, box, bam..etc into table","template":"Putting [something] into [something]","placeholders":["book, box, bam..etc","table"]}, +{"id":"83769","label":"pushing supplement bottle from right to left","template":"Pushing [something] from right to left","placeholders":["supplement bottle"]}, +{"id":"108787","label":"pulling yellow container from left to right","template":"Pulling [something] from left to right","placeholders":["yellow container"]}, +{"id":"70666","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"174198","label":"putting jar into box","template":"Putting [something] into [something]","placeholders":["jar","box"]}, +{"id":"220306","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"142549","label":"turning the camera upwards while filming colorful scarf","template":"Turning the camera upwards while filming [something]","placeholders":["colorful scarf"]}, +{"id":"200650","label":"squeezing washcloth","template":"Squeezing [something]","placeholders":["washcloth"]}, +{"id":"160187","label":"pretending to open big door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["big door"]}, +{"id":"173320","label":"approaching pink toothbrush case with your camera","template":"Approaching [something] with your camera","placeholders":["pink toothbrush case"]}, +{"id":"198240","label":"bending cracker until it breaks","template":"Bending [something] until it breaks","placeholders":["cracker"]}, +{"id":"78034","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"147919","label":"stuffing a sharpener into a pencil case","template":"Stuffing [something] into [something]","placeholders":["a sharpener","a pencil case"]}, +{"id":"40642","label":"covering matchbox with box cap","template":"Covering [something] with [something]","placeholders":["matchbox","box cap"]}, +{"id":"134574","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"117107","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"213036","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"148805","label":"putting a candle","template":"Putting [something similar to other things that are already on the table]","placeholders":["a candle"]}, +{"id":"113746","label":"holding peanut butter jar next to soda can","template":"Holding [something] next to [something]","placeholders":["peanut butter jar","soda can"]}, +{"id":"24316","label":"moving card up","template":"Moving [something] up","placeholders":["card"]}, +{"id":"152618","label":"taking water","template":"Taking [one of many similar things on the table]","placeholders":["water"]}, +{"id":"103796","label":"dropping book next to chair","template":"Dropping [something] next to [something]","placeholders":["book","chair"]}, +{"id":"193311","label":"moving cucumber up","template":"Moving [something] up","placeholders":["cucumber"]}, +{"id":"184267","label":"letting electrical tape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["electrical tape"]}, +{"id":"93270","label":"moving a small jar and a small jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a small jar","a small jar"]}, +{"id":"164342","label":"opening hand bag","template":"Opening [something]","placeholders":["hand bag"]}, +{"id":"216550","label":"pulling black umbrella from left to right","template":"Pulling [something] from left to right","placeholders":["black umbrella"]}, +{"id":"75233","label":"moving striker coin up","template":"Moving [something] up","placeholders":["striker coin"]}, +{"id":"161627","label":"pushing a toothbrush onto an envelope","template":"Pushing [something] onto [something]","placeholders":["a toothbrush","an envelope"]}, +{"id":"115503","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"102189","label":"putting striker coin next to white board clip","template":"Putting [something] next to [something]","placeholders":["striker coin","white board clip"]}, +{"id":"196598","label":"pretending to poke charger","template":"Pretending to poke [something]","placeholders":["charger"]}, +{"id":"87576","label":"tilting a pack of paper with a spray-paint can on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a pack of paper","a spray-paint can"]}, +{"id":"109858","label":"putting toy behind toy watch","template":"Putting [something] behind [something]","placeholders":["toy","toy watch"]}, +{"id":"209538","label":"pretending to poke toy","template":"Pretending to poke [something]","placeholders":["toy"]}, +{"id":"163929","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"67581","label":"pen being deflected from calculator cover","template":"[Something] being deflected from [something]","placeholders":["pen","calculator cover"]}, +{"id":"42753","label":"tipping a scooter over","template":"Tipping [something] over","placeholders":["a scooter"]}, +{"id":"243","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"60595","label":"showing a pen next to a spoon","template":"Showing [something] next to [something]","placeholders":["a pen","a spoon"]}, +{"id":"134896","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"135745","label":"pushing a spoon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a spoon"]}, +{"id":"99866","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"31944","label":"spinning marker pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker pen"]}, +{"id":"68449","label":"putting usb cable on a surface","template":"Putting [something] on a surface","placeholders":["usb cable"]}, +{"id":"77861","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"51251","label":"picking wallet up","template":"Picking [something] up","placeholders":["wallet"]}, +{"id":"65595","label":"squeezing plastic bottle","template":"Squeezing [something]","placeholders":["plastic bottle"]}, +{"id":"130443","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"174892","label":"holding foil ball next to lighter","template":"Holding [something] next to [something]","placeholders":["foil ball","lighter"]}, +{"id":"132122","label":"dropping a matchbox next to a plate","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a plate"]}, +{"id":"115741","label":"letting battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["battery"]}, +{"id":"156573","label":"tipping papertowel over","template":"Tipping [something] over","placeholders":["papertowel"]}, +{"id":"41003","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"133719","label":"spilling a cup of water onto the counter","template":"Spilling [something] onto [something]","placeholders":["a cup of water","the counter"]}, +{"id":"46610","label":"putting candy bar on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["candy bar","table"]}, +{"id":"70919","label":"pretending to take matchbox from table","template":"Pretending to take [something] from [somewhere]","placeholders":["matchbox","table"]}, +{"id":"80272","label":"putting a glass behind flowers","template":"Putting [something] behind [something]","placeholders":["a glass","flowers"]}, +{"id":"174923","label":"taking cups from a table","template":"Taking [one of many similar things on the table]","placeholders":["cups from a table"]}, +{"id":"135948","label":"covering a key with a note book","template":"Covering [something] with [something]","placeholders":["a key","a note book"]}, +{"id":"216965","label":"turning the camera upwards while filming rice cooker","template":"Turning the camera upwards while filming [something]","placeholders":["rice cooker"]}, +{"id":"138102","label":"putting squeezable strawberry jam on a surface","template":"Putting [something] on a surface","placeholders":["squeezable strawberry jam"]}, +{"id":"30162","label":"putting a bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle"]}, +{"id":"210799","label":"taking a sheet out of a box","template":"Taking [something] out of [something]","placeholders":["a sheet","a box"]}, +{"id":"132708","label":"showing briefs to the camera","template":"Showing [something] to the camera","placeholders":["briefs"]}, +{"id":"218522","label":"dropping a cup into the sink","template":"Dropping [something] into [something]","placeholders":["a cup","the sink"]}, +{"id":"79291","label":"moving a cup closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a cup","a mug"]}, +{"id":"97247","label":"taking tumbler","template":"Taking [one of many similar things on the table]","placeholders":["tumbler"]}, +{"id":"38152","label":"lifting a peanut can with a pringles can on it","template":"Lifting [something] with [something] on it","placeholders":["a peanut can","a pringles can"]}, +{"id":"12954","label":"tearing gift cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["gift cover"]}, +{"id":"203742","label":"pushing towel so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towel"]}, +{"id":"34974","label":"ball being deflected from vent","template":"[Something] being deflected from [something]","placeholders":["ball","vent"]}, +{"id":"142533","label":"putting a fridge magnet upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a fridge magnet"]}, +{"id":"39937","label":"putting a coin next to other coins on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin next to other coins on the table"]}, +{"id":"87650","label":"pushing a chair so it spins","template":"Pushing [something] so it spins","placeholders":["a chair"]}, +{"id":"170459","label":"dropping coin into pen stand","template":"Dropping [something] into [something]","placeholders":["coin","pen stand"]}, +{"id":"34120","label":"pushing phone with pen","template":"Pushing [something] with [something]","placeholders":["phone","pen"]}, +{"id":"195933","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"42455","label":"tearing yellow paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["yellow paper"]}, +{"id":"181183","label":"taking lipstick out of a box","template":"Taking [something] out of [something]","placeholders":["lipstick","a box"]}, +{"id":"172416","label":"plugging a usb cable into a desktop microphone","template":"Plugging [something] into [something]","placeholders":["a usb cable","a desktop microphone"]}, +{"id":"22359","label":"pushing plush from left to right","template":"Pushing [something] from left to right","placeholders":["plush"]}, +{"id":"146754","label":"plugging power cord into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power cord","a socket"]}, +{"id":"210519","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"160596","label":"moving a cup and hitting another cup so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a cup","hitting another cup"]}, +{"id":"85526","label":"trying to bend controller so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["controller"]}, +{"id":"129272","label":"lifting plastic package up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["plastic package"]}, +{"id":"200199","label":"stuffing pants into a drawer","template":"Stuffing [something] into [something]","placeholders":["pants","a drawer"]}, +{"id":"115828","label":"pretending to be tearing book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["book"]}, +{"id":"34833","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"177146","label":"showing plate behind cup","template":"Showing [something] behind [something]","placeholders":["plate","cup"]}, +{"id":"152539","label":"laying globe toy on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["globe toy"]}, +{"id":"137203","label":"hitting a roll of wiping paper with a stick","template":"Hitting [something] with [something]","placeholders":["a roll of wiping paper","a stick"]}, +{"id":"44181","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"18454","label":"trying to pour water into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a cup"]}, +{"id":"193554","label":"pulling marker from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["marker","laptop"]}, +{"id":"39486","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"171804","label":"pushing packaging handkerchiefs off of table","template":"Pushing [something] off of [something]","placeholders":["packaging handkerchiefs","table"]}, +{"id":"59078","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"174316","label":"showing rubix cube on top of duster","template":"Showing [something] on top of [something]","placeholders":["rubix cube","duster"]}, +{"id":"127072","label":"bending lid so that it deforms","template":"Bending [something] so that it deforms","placeholders":["lid"]}, +{"id":"220290","label":"closing refrigerator","template":"Closing [something]","placeholders":["refrigerator"]}, +{"id":"165011","label":"hitting coffee cup with spoon","template":"Hitting [something] with [something]","placeholders":["coffee cup","spoon"]}, +{"id":"45510","label":"taking eggs out of a bowl","template":"Taking [something] out of [something]","placeholders":["eggs","a bowl"]}, +{"id":"71980","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"176748","label":"holding a pen in front of a microwave","template":"Holding [something] in front of [something]","placeholders":["a pen","a microwave"]}, +{"id":"163353","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"95967","label":"holding a clarinet case behind a stuffed giraffe","template":"Holding [something] behind [something]","placeholders":["a clarinet case","a stuffed giraffe"]}, +{"id":"139447","label":"pushing belt from right to left","template":"Pushing [something] from right to left","placeholders":["belt"]}, +{"id":"200168","label":"pretending to open fridge without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["fridge"]}, +{"id":"100279","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"203531","label":"showing that trash can is empty","template":"Showing that [something] is empty","placeholders":["trash can"]}, +{"id":"199979","label":"stuffing glasses into case","template":"Stuffing [something] into [something]","placeholders":["glasses","case"]}, +{"id":"102402","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"37006","label":"rolling white colour battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["white colour battery"]}, +{"id":"79793","label":"something colliding with something and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["something","something"]}, +{"id":"57831","label":"turning aim toothpaste upside down","template":"Turning [something] upside down","placeholders":["aim toothpaste"]}, +{"id":"115405","label":"throwing a pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pen"]}, +{"id":"7903","label":"pretending to open a pencase without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a pencase"]}, +{"id":"202308","label":"moving pen drive down","template":"Moving [something] down","placeholders":["pen drive"]}, +{"id":"91037","label":"putting fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["fork"]}, +{"id":"132863","label":"spilling water onto a plant","template":"Spilling [something] onto [something]","placeholders":["water","a plant"]}, +{"id":"134426","label":"turning cellphone upside down","template":"Turning [something] upside down","placeholders":["cellphone"]}, +{"id":"154238","label":"pushing a bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bag"]}, +{"id":"157009","label":"putting pen next to watch","template":"Putting [something] next to [something]","placeholders":["pen","watch"]}, +{"id":"170188","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"117507","label":"lego falling like a rock","template":"[Something] falling like a rock","placeholders":["lego"]}, +{"id":"60951","label":"tearing cloth just a little bit","template":"Tearing [something] just a little bit","placeholders":["cloth"]}, +{"id":"197826","label":"spinning medicin bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["medicin bottle"]}, +{"id":"133456","label":"pushing scissors off of a box","template":"Pushing [something] off of [something]","placeholders":["scissors","a box"]}, +{"id":"43980","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"186794","label":"pushing crayon with crayon","template":"Pushing [something] with [something]","placeholders":["crayon","crayon"]}, +{"id":"212126","label":"dropping a water bottle onto the floor","template":"Dropping [something] onto [something]","placeholders":["a water bottle","the floor"]}, +{"id":"212147","label":"putting a book near other books","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book near other books"]}, +{"id":"136541","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"198481","label":"flower petal falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["flower petal"]}, +{"id":"46745","label":"showing that tablet box is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["tablet box","green bowl"]}, +{"id":"163786","label":"moving away from sardine fishes with your camera","template":"Moving away from [something] with your camera","placeholders":["sardine fishes"]}, +{"id":"184693","label":"dropping a wallet in front of a peg","template":"Dropping [something] in front of [something]","placeholders":["a wallet","a peg"]}, +{"id":"198752","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"123984","label":"spinning a toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy"]}, +{"id":"185685","label":"scooping animal feed up with container","template":"Scooping [something] up with [something]","placeholders":["animal feed","container"]}, +{"id":"182545","label":"tilting box with razor blade on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","razor blade"]}, +{"id":"190654","label":"folding a towel","template":"Folding [something]","placeholders":["a towel"]}, +{"id":"137367","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"8727","label":"ball colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","pen"]}, +{"id":"121345","label":"approaching water pipe with your camera","template":"Approaching [something] with your camera","placeholders":["water pipe"]}, +{"id":"2173","label":"lifting a wooden stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wooden stick"]}, +{"id":"217024","label":"pulling two ends of cotton so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cotton"]}, +{"id":"212913","label":"tilting plate with onion on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","onion"]}, +{"id":"42680","label":"twisting inhaler","template":"Twisting [something]","placeholders":["inhaler"]}, +{"id":"8521","label":"plugging lamp into outlet","template":"Plugging [something] into [something]","placeholders":["lamp","outlet"]}, +{"id":"209341","label":"putting an apple onto a plate","template":"Putting [something] onto [something]","placeholders":["an apple","a plate"]}, +{"id":"98052","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"165270","label":"holding a pen in front of a cup","template":"Holding [something] in front of [something]","placeholders":["a pen","a cup"]}, +{"id":"80258","label":"putting jar behind box","template":"Putting [something] behind [something]","placeholders":["jar","box"]}, +{"id":"51935","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"175806","label":"uncovering clock","template":"Uncovering [something]","placeholders":["clock"]}, +{"id":"152758","label":"tilting a keyboard with a battery on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a keyboard","a battery"]}, +{"id":"117307","label":"showing trimmer behind man","template":"Showing [something] behind [something]","placeholders":["trimmer","man"]}, +{"id":"15978","label":"holding a mug behind papper roll","template":"Holding [something] behind [something]","placeholders":["a mug","papper roll"]}, +{"id":"16119","label":"tilting a book with a block on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a block"]}, +{"id":"198351","label":"a pencil box colliding with anothe box and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pencil box","anothe box"]}, +{"id":"149009","label":"lifting a surface with box on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["box"]}, +{"id":"56887","label":"moving white board clip away from green toy car","template":"Moving [something] away from [something]","placeholders":["white board clip","green toy car"]}, +{"id":"159090","label":"throwing shoe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["shoe"]}, +{"id":"180388","label":"plugging a charger into an extension cord","template":"Plugging [something] into [something]","placeholders":["a charger","an extension cord"]}, +{"id":"149450","label":"dropping biscuit packet into plate","template":"Dropping [something] into [something]","placeholders":["biscuit packet","plate"]}, +{"id":"8067","label":"wallet colliding with wallet and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["wallet","wallet"]}, +{"id":"186727","label":"moving a book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a book"]}, +{"id":"183275","label":"beach pebble falling like a rock","template":"[Something] falling like a rock","placeholders":["beach pebble"]}, +{"id":"196804","label":"pretending to pick plate up","template":"Pretending to pick [something] up","placeholders":["plate"]}, +{"id":"199208","label":"pop bottle colliding with fidget spinner and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pop bottle","fidget spinner"]}, +{"id":"118461","label":"removing mug, revealing pendrive behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","pendrive"]}, +{"id":"61093","label":"dropping cloth onto apple","template":"Dropping [something] onto [something]","placeholders":["cloth","apple"]}, +{"id":"20540","label":"pushing chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["chair"]}, +{"id":"56770","label":"opening coffee thermo","template":"Opening [something]","placeholders":["coffee thermo"]}, +{"id":"102982","label":"hitting bowl with spoon","template":"Hitting [something] with [something]","placeholders":["bowl","spoon"]}, +{"id":"84145","label":"plugging power adapter into wall outlet","template":"Plugging [something] into [something]","placeholders":["power adapter","wall outlet"]}, +{"id":"180581","label":"trying to bend a metal bar so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a metal bar"]}, +{"id":"6540","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"67640","label":"pushing hat from right to left","template":"Pushing [something] from right to left","placeholders":["hat"]}, +{"id":"165082","label":"holding a pencil next to keys","template":"Holding [something] next to [something]","placeholders":["a pencil","keys"]}, +{"id":"66915","label":"pushing cupcake case from left to right","template":"Pushing [something] from left to right","placeholders":["cupcake case"]}, +{"id":"8806","label":"taking a play block from a group of play blocks","template":"Taking [one of many similar things on the table]","placeholders":["a play block from a group of play blocks"]}, +{"id":"119998","label":"uncovering a container","template":"Uncovering [something]","placeholders":["a container"]}, +{"id":"6216","label":"approaching wireless mouse with your camera","template":"Approaching [something] with your camera","placeholders":["wireless mouse"]}, +{"id":"148647","label":"showing that bolt is inside green bowl","template":"Showing that [something] is inside [something]","placeholders":["bolt","green bowl"]}, +{"id":"148628","label":"pretending or failing to wipe salt off of a table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a table"]}, +{"id":"126414","label":"holding bottle next to sunglasses","template":"Holding [something] next to [something]","placeholders":["bottle","sunglasses"]}, +{"id":"200105","label":"poking yogurt so that it falls over","template":"Poking [something] so that it falls over","placeholders":["yogurt"]}, +{"id":"67666","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"726","label":"poking a candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle"]}, +{"id":"213912","label":"pretending to put leaf behind bike","template":"Pretending to put [something] behind [something]","placeholders":["leaf","bike"]}, +{"id":"169768","label":"putting ink bottle and toy globe on the table","template":"Putting [something] and [something] on the table","placeholders":["ink bottle","toy globe"]}, +{"id":"35301","label":"moving cylinder and fruit closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cylinder","fruit"]}, +{"id":"108416","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"111483","label":"moving match box and a nail polish bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["match box","a nail polish bottle"]}, +{"id":"205828","label":"moving tipex-maus up","template":"Moving [something] up","placeholders":["tipex-maus"]}, +{"id":"141352","label":"pretending to sprinkle air onto cup","template":"Pretending to sprinkle air onto [something]","placeholders":["cup"]}, +{"id":"218695","label":"pushing one face mask from left to right","template":"Pushing [something] from left to right","placeholders":["one face mask"]}, +{"id":"115610","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"94592","label":"moving a fingernail file away from a book","template":"Moving [something] away from [something]","placeholders":["a fingernail file","a book"]}, +{"id":"141715","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"5693","label":"moving container and container so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["container","container"]}, +{"id":"187174","label":"attaching sticky note to box","template":"Attaching [something] to [something]","placeholders":["sticky note","box"]}, +{"id":"188939","label":"taking onion","template":"Taking [one of many similar things on the table]","placeholders":["onion"]}, +{"id":"208338","label":"pretending or failing to wipe salt off of a wallet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a wallet"]}, +{"id":"90365","label":"taking lemon out of the bowl","template":"Taking [something] out of [something]","placeholders":["lemon","the bowl"]}, +{"id":"131264","label":"taking books","template":"Taking [one of many similar things on the table]","placeholders":["books"]}, +{"id":"178613","label":"trying but failing to attach bottle cap to comb because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["bottle cap","comb"]}, +{"id":"173234","label":"putting notebook and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["notebook","pen"]}, +{"id":"220768","label":"tipping tumbler with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["tumbler","water","water"]}, +{"id":"118320","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"93258","label":"pushing a drawer with a hanger","template":"Pushing [something] with [something]","placeholders":["a drawer","a hanger"]}, +{"id":"162797","label":"moving a matchbox closer to a plate","template":"Moving [something] closer to [something]","placeholders":["a matchbox","a plate"]}, +{"id":"156105","label":"putting crayon onto lid","template":"Putting [something] onto [something]","placeholders":["crayon","lid"]}, +{"id":"159752","label":"showing a pen to the camera","template":"Showing [something] to the camera","placeholders":["a pen"]}, +{"id":"79235","label":"showing mouse behind box","template":"Showing [something] behind [something]","placeholders":["mouse","box"]}, +{"id":"174605","label":"picking spoon up","template":"Picking [something] up","placeholders":["spoon"]}, +{"id":"53519","label":"pretending to put a shot glass into a measuring cup","template":"Pretending to put [something] into [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"216705","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"60238","label":"pulling matches from left to right","template":"Pulling [something] from left to right","placeholders":["matches"]}, +{"id":"78492","label":"plugging power plug into electric socket","template":"Plugging [something] into [something]","placeholders":["power plug","electric socket"]}, +{"id":"74298","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"132348","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"191563","label":"showing eraser behind glue stick","template":"Showing [something] behind [something]","placeholders":["eraser","glue stick"]}, +{"id":"43582","label":"dropping keys behind a cup","template":"Dropping [something] behind [something]","placeholders":["keys","a cup"]}, +{"id":"30540","label":"lifting a candle with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["a candle","a lighter"]}, +{"id":"83805","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"155260","label":"pouring water out of a pitcher","template":"Pouring [something] out of [something]","placeholders":["water","a pitcher"]}, +{"id":"168107","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"47072","label":"pulling cup from behind of cup","template":"Pulling [something] from behind of [something]","placeholders":["cup","cup"]}, +{"id":"101132","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"62339","label":"squeezing wooden block","template":"Squeezing [something]","placeholders":["wooden block"]}, +{"id":"214921","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"107128","label":"picking pillow up","template":"Picking [something] up","placeholders":["pillow"]}, +{"id":"79933","label":"covering baloon with beanie","template":"Covering [something] with [something]","placeholders":["baloon","beanie"]}, +{"id":"101353","label":"pushing a can so it spins","template":"Pushing [something] so it spins","placeholders":["a can"]}, +{"id":"33128","label":"letting a bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a bottle"]}, +{"id":"69479","label":"lifting remote up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["remote"]}, +{"id":"109579","label":"dropping a matchstick behind a ball","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a ball"]}, +{"id":"53410","label":"dropping a pen onto carpet","template":"Dropping [something] onto [something]","placeholders":["a pen","carpet"]}, +{"id":"56020","label":"spinning a chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a chair"]}, +{"id":"30910","label":"trying but failing to attach santa hat to door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["santa hat","door"]}, +{"id":"19814","label":"pulling a tissue out of a box","template":"Pulling [something] out of [something]","placeholders":["a tissue","a box"]}, +{"id":"26435","label":"tilting folder cardboard with toy car on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder cardboard","toy car"]}, +{"id":"23843","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"41695","label":"pretending to be tearing a blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a blanket"]}, +{"id":"174542","label":"putting scissor, adapter and usb light on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["scissor","adapter","usb light"]}, +{"id":"62822","label":"removing mug, revealing ruler behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","ruler"]}, +{"id":"159088","label":"putting a steel container that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a steel container"]}, +{"id":"5570","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"11608","label":"holding a bible","template":"Holding [something]","placeholders":["a bible"]}, +{"id":"57586","label":"tilting book with coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","coin"]}, +{"id":"176790","label":"throwing a baby blanket","template":"Throwing [something]","placeholders":["a baby blanket"]}, +{"id":"19250","label":"poking charger so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["charger"]}, +{"id":"19690","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"3478","label":"moving keys up","template":"Moving [something] up","placeholders":["keys"]}, +{"id":"189646","label":"putting tangerine to group of tangerines","template":"Putting [something similar to other things that are already on the table]","placeholders":["tangerine to group of tangerines"]}, +{"id":"191791","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"44574","label":"attaching a lightning cable to a power adapter","template":"Attaching [something] to [something]","placeholders":["a lightning cable","a power adapter"]}, +{"id":"142547","label":"letting makeup bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["makeup bottle"]}, +{"id":"38109","label":"failing to put stapler into pin holder because stapler does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["stapler","pin holder","stapler"]}, +{"id":"146689","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"12104","label":"putting keys and spinner on the table","template":"Putting [something] and [something] on the table","placeholders":["keys","spinner"]}, +{"id":"68053","label":"dropping bottle onto kendama","template":"Dropping [something] onto [something]","placeholders":["bottle","kendama"]}, +{"id":"100418","label":"spilling water next to a pencil","template":"Spilling [something] next to [something]","placeholders":["water","a pencil"]}, +{"id":"139190","label":"turning the camera left while filming bottle","template":"Turning the camera left while filming [something]","placeholders":["bottle"]}, +{"id":"128319","label":"stuffing usb cable into bucket","template":"Stuffing [something] into [something]","placeholders":["usb cable","bucket"]}, +{"id":"169676","label":"hitting a bin with a paper toilet","template":"Hitting [something] with [something]","placeholders":["a bin","a paper toilet"]}, +{"id":"106347","label":"taking plastic glasses","template":"Taking [one of many similar things on the table]","placeholders":["plastic glasses"]}, +{"id":"38481","label":"covering a book with another book","template":"Covering [something] with [something]","placeholders":["a book","another book"]}, +{"id":"44366","label":"lifting up one end of clock without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["clock"]}, +{"id":"8414","label":"putting pebble into glass","template":"Putting [something] into [something]","placeholders":["pebble","glass"]}, +{"id":"130541","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"65740","label":"pushing stuffed toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stuffed toy"]}, +{"id":"189604","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"14333","label":"showing that a fork is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["a fork","a cup"]}, +{"id":"23135","label":"holding banana over paper","template":"Holding [something] over [something]","placeholders":["banana","paper"]}, +{"id":"81191","label":"pretending to put an envelope onto a bowl","template":"Pretending to put [something] onto [something]","placeholders":["an envelope","a bowl"]}, +{"id":"142638","label":"pushing can from right to left","template":"Pushing [something] from right to left","placeholders":["can"]}, +{"id":"112031","label":"covering ball with newspaper","template":"Covering [something] with [something]","placeholders":["ball","newspaper"]}, +{"id":"8518","label":"removing mug, revealing keys behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","keys"]}, +{"id":"106711","label":"putting pen onto diary","template":"Putting [something] onto [something]","placeholders":["pen","diary"]}, +{"id":"125726","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"77634","label":"plugging an electrical plug into an electrical outlet","template":"Plugging [something] into [something]","placeholders":["an electrical plug","an electrical outlet"]}, +{"id":"164800","label":"dropping spatula next to pan","template":"Dropping [something] next to [something]","placeholders":["spatula","pan"]}, +{"id":"75034","label":"pushing calculator from right to left","template":"Pushing [something] from right to left","placeholders":["calculator"]}, +{"id":"67651","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"37108","label":"twisting a pepper grinder","template":"Twisting [something]","placeholders":["a pepper grinder"]}, +{"id":"146281","label":"dropping pen next to bottle","template":"Dropping [something] next to [something]","placeholders":["pen","bottle"]}, +{"id":"133935","label":"pretending to put a cushion on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cushion"]}, +{"id":"23836","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"95340","label":"laying an egg on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["an egg"]}, +{"id":"91251","label":"trying but failing to attach cap to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cap","fridge"]}, +{"id":"132948","label":"showing puppies to the camera","template":"Showing [something] to the camera","placeholders":["puppies"]}, +{"id":"115557","label":"squeezing orange","template":"Squeezing [something]","placeholders":["orange"]}, +{"id":"77033","label":"throwing bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle"]}, +{"id":"44683","label":"moving away from battery with your camera","template":"Moving away from [something] with your camera","placeholders":["battery"]}, +{"id":"162135","label":"turning the camera downwards while filming highlighter","template":"Turning the camera downwards while filming [something]","placeholders":["highlighter"]}, +{"id":"37190","label":"putting candy on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["candy","table"]}, +{"id":"203782","label":"dropping phone next to pants","template":"Dropping [something] next to [something]","placeholders":["phone","pants"]}, +{"id":"85675","label":"lifting a surface with bowl on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["bowl"]}, +{"id":"175172","label":"lifting sketch pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["sketch pen"]}, +{"id":"194649","label":"moving a candle down","template":"Moving [something] down","placeholders":["a candle"]}, +{"id":"525","label":"dropping candle in front of box","template":"Dropping [something] in front of [something]","placeholders":["candle","box"]}, +{"id":"49031","label":"taking apple corer","template":"Taking [one of many similar things on the table]","placeholders":["apple corer"]}, +{"id":"43075","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"93371","label":"putting cassette into player","template":"Putting [something] into [something]","placeholders":["cassette","player"]}, +{"id":"76280","label":"showing that cardboard box is empty","template":"Showing that [something] is empty","placeholders":["cardboard box"]}, +{"id":"200190","label":"holding cup in front of dog","template":"Holding [something] in front of [something]","placeholders":["cup","dog"]}, +{"id":"28459","label":"spinning a ring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ring"]}, +{"id":"25948","label":"putting 4 books onto a plate","template":"Putting [number of] [something] onto [something]","placeholders":["4","books","a plate"]}, +{"id":"139468","label":"plugging chwrger into outlet","template":"Plugging [something] into [something]","placeholders":["chwrger","outlet"]}, +{"id":"27675","label":"moving watch towards the camera","template":"Moving [something] towards the camera","placeholders":["watch"]}, +{"id":"91942","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"66458","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"64664","label":"uncovering bag","template":"Uncovering [something]","placeholders":["bag"]}, +{"id":"62995","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"45641","label":"pretending or failing to wipe soap off of a wallet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["soap","a wallet"]}, +{"id":"110234","label":"lifting green colour bowl up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["green colour bowl"]}, +{"id":"84910","label":"pretending to put nail polish behind cup","template":"Pretending to put [something] behind [something]","placeholders":["nail polish","cup"]}, +{"id":"203336","label":"holding pen in front of roll of tape","template":"Holding [something] in front of [something]","placeholders":["pen","roll of tape"]}, +{"id":"208898","label":"pretending to pick plastic bag up","template":"Pretending to pick [something] up","placeholders":["plastic bag"]}, +{"id":"35249","label":"dropping torch next to shoe","template":"Dropping [something] next to [something]","placeholders":["torch","shoe"]}, +{"id":"114107","label":"pretending to be tearing ipad cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["ipad cover"]}, +{"id":"71829","label":"laying 3d postit on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["3d postit"]}, +{"id":"89511","label":"showing a coin next to scissors","template":"Showing [something] next to [something]","placeholders":["a coin","scissors"]}, +{"id":"208993","label":"showing clock to the camera","template":"Showing [something] to the camera","placeholders":["clock"]}, +{"id":"136244","label":"taking paper knot out of glass","template":"Taking [something] out of [something]","placeholders":["paper knot","glass"]}, +{"id":"153487","label":"pretending to poke nail polish","template":"Pretending to poke [something]","placeholders":["nail polish"]}, +{"id":"207204","label":"moving microscope and coin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["microscope","coin"]}, +{"id":"7996","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"73625","label":"showing that water is inside a glass","template":"Showing that [something] is inside [something]","placeholders":["water","a glass"]}, +{"id":"16963","label":"pretending to take container from almirah","template":"Pretending to take [something] from [somewhere]","placeholders":["container","almirah"]}, +{"id":"67242","label":"covering box with cloth","template":"Covering [something] with [something]","placeholders":["box","cloth"]}, +{"id":"106378","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"134678","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"91948","label":"showing orange post-it to the camera","template":"Showing [something] to the camera","placeholders":["orange post-it"]}, +{"id":"192168","label":"closing waterbottle","template":"Closing [something]","placeholders":["waterbottle"]}, +{"id":"205826","label":"holding a pencil","template":"Holding [something]","placeholders":["a pencil"]}, +{"id":"171961","label":"throwing a wallet","template":"Throwing [something]","placeholders":["a wallet"]}, +{"id":"100919","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"219091","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"122743","label":"covering a cup with a book","template":"Covering [something] with [something]","placeholders":["a cup","a book"]}, +{"id":"97407","label":"moving away from water tape with your camera","template":"Moving away from [something] with your camera","placeholders":["water tape"]}, +{"id":"126852","label":"pulling a hairbrush from right to left","template":"Pulling [something] from right to left","placeholders":["a hairbrush"]}, +{"id":"72439","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"201780","label":"moving magnet away from magnet","template":"Moving [something] away from [something]","placeholders":["magnet","magnet"]}, +{"id":"70350","label":"showing cakes to the camera","template":"Showing [something] to the camera","placeholders":["cakes"]}, +{"id":"179514","label":"moving pen and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","phone"]}, +{"id":"79288","label":"putting new papers","template":"Putting [something similar to other things that are already on the table]","placeholders":["new papers"]}, +{"id":"151453","label":"putting 2 hairbands onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["2","hairbands","diary"]}, +{"id":"111686","label":"pretending to turn tissue box upside down","template":"Pretending to turn [something] upside down","placeholders":["tissue box"]}, +{"id":"35222","label":"pushing an envelope onto a lid","template":"Pushing [something] onto [something]","placeholders":["an envelope","a lid"]}, +{"id":"69744","label":"pretending to put a mug into a sink","template":"Pretending to put [something] into [something]","placeholders":["a mug","a sink"]}, +{"id":"3689","label":"wiping soap off of floor","template":"Wiping [something] off of [something]","placeholders":["soap","floor"]}, +{"id":"106321","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"26199","label":"piling candy mints up","template":"Piling [something] up","placeholders":["candy mints"]}, +{"id":"191525","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"118077","label":"plugging charger into the wall","template":"Plugging [something] into [something]","placeholders":["charger","the wall"]}, +{"id":"69096","label":"showing that bin is empty","template":"Showing that [something] is empty","placeholders":["bin"]}, +{"id":"68425","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"215010","label":"dropping lemon behind doll","template":"Dropping [something] behind [something]","placeholders":["lemon","doll"]}, +{"id":"158485","label":"moving eraser and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["eraser","pen"]}, +{"id":"210183","label":"pouring soda into cup","template":"Pouring [something] into [something]","placeholders":["soda","cup"]}, +{"id":"109456","label":"pouring tea into a glass","template":"Pouring [something] into [something]","placeholders":["tea","a glass"]}, +{"id":"61941","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"66776","label":"moving spoon up","template":"Moving [something] up","placeholders":["spoon"]}, +{"id":"170766","label":"holding a pen in front of the tablet","template":"Holding [something] in front of [something]","placeholders":["a pen","the tablet"]}, +{"id":"86490","label":"moving bag away from floor","template":"Moving [something] away from [something]","placeholders":["bag","floor"]}, +{"id":"116195","label":"pushing a glasses case so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a glasses case"]}, +{"id":"95974","label":"pretending to be tearing a tobacco packet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a tobacco packet"]}, +{"id":"159108","label":"throwing a soft toy in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a soft toy"]}, +{"id":"197923","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"43733","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"82859","label":"holding fork in front of plate","template":"Holding [something] in front of [something]","placeholders":["fork","plate"]}, +{"id":"50709","label":"plugging adaptor into plug","template":"Plugging [something] into [something]","placeholders":["adaptor","plug"]}, +{"id":"77440","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"4204","label":"pushing socks so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["socks"]}, +{"id":"127304","label":"lifting laptop with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["laptop","mobile phone"]}, +{"id":"51233","label":"spreading sugar onto paper","template":"Spreading [something] onto [something]","placeholders":["sugar","paper"]}, +{"id":"55263","label":"stuffing napkin into cup","template":"Stuffing [something] into [something]","placeholders":["napkin","cup"]}, +{"id":"108444","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"22285","label":"holding cup over tv","template":"Holding [something] over [something]","placeholders":["cup","tv"]}, +{"id":"74278","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"35962","label":"opening dishwasher","template":"Opening [something]","placeholders":["dishwasher"]}, +{"id":"848","label":"showing spoon behind pan","template":"Showing [something] behind [something]","placeholders":["spoon","pan"]}, +{"id":"188208","label":"spreading choclate ice cream onto the bread","template":"Spreading [something] onto [something]","placeholders":["choclate ice cream","the bread"]}, +{"id":"141123","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"7288","label":"taking stapler out of cookie box","template":"Taking [something] out of [something]","placeholders":["stapler","cookie box"]}, +{"id":"90334","label":"spinning blue lighter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["blue lighter"]}, +{"id":"206524","label":"plugging cable into laptop","template":"Plugging [something] into [something]","placeholders":["cable","laptop"]}, +{"id":"27141","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"17649","label":"moving glass and glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","glass"]}, +{"id":"124332","label":"moving pen and pencil closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","pencil"]}, +{"id":"103213","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"14575","label":"letting dog toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["dog toy"]}, +{"id":"76987","label":"dropping a coin behind a box","template":"Dropping [something] behind [something]","placeholders":["a coin","a box"]}, +{"id":"182605","label":"dropping ereaser into cup","template":"Dropping [something] into [something]","placeholders":["ereaser","cup"]}, +{"id":"26761","label":"pushing tissue box onto floor","template":"Pushing [something] onto [something]","placeholders":["tissue box","floor"]}, +{"id":"57326","label":"moving box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["box"]}, +{"id":"216172","label":"turning the camera upwards while filming one tea light candle","template":"Turning the camera upwards while filming [something]","placeholders":["one tea light candle"]}, +{"id":"47283","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"173729","label":"putting teacup on a surface","template":"Putting [something] on a surface","placeholders":["teacup"]}, +{"id":"30230","label":"moving incense stick up","template":"Moving [something] up","placeholders":["incense stick"]}, +{"id":"59376","label":"tipping card over","template":"Tipping [something] over","placeholders":["card"]}, +{"id":"115882","label":"moving camera away from dry erase board","template":"Moving [something] away from [something]","placeholders":["camera","dry erase board"]}, +{"id":"3907","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"41439","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"142572","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"118214","label":"pretending to put pen into cup","template":"Pretending to put [something] into [something]","placeholders":["pen","cup"]}, +{"id":"201755","label":"stuffing smarthphone into container","template":"Stuffing [something] into [something]","placeholders":["smarthphone","container"]}, +{"id":"76070","label":"tearing a leaf just a little bit","template":"Tearing [something] just a little bit","placeholders":["a leaf"]}, +{"id":"133389","label":"dropping a knife onto a plate","template":"Dropping [something] onto [something]","placeholders":["a knife","a plate"]}, +{"id":"33867","label":"showing cup next to ball","template":"Showing [something] next to [something]","placeholders":["cup","ball"]}, +{"id":"24815","label":"pulling glass from right to left","template":"Pulling [something] from right to left","placeholders":["glass"]}, +{"id":"202314","label":"tearing aluminium foil into two pieces","template":"Tearing [something] into two pieces","placeholders":["aluminium foil"]}, +{"id":"39687","label":"dropping candle into box","template":"Dropping [something] into [something]","placeholders":["candle","box"]}, +{"id":"37129","label":"moving usb stick up","template":"Moving [something] up","placeholders":["usb stick"]}, +{"id":"28170","label":"moving tv remote and baby spoon bottle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["tv remote","baby spoon bottle"]}, +{"id":"219073","label":"pushing foldable pocket knife so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["foldable pocket knife"]}, +{"id":"19982","label":"holding glue","template":"Holding [something]","placeholders":["glue"]}, +{"id":"181345","label":"pulling a short out of a sock","template":"Pulling [something] out of [something]","placeholders":["a short","a sock"]}, +{"id":"215687","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"24929","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"63853","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"62102","label":"pulling a box from behind of a wall","template":"Pulling [something] from behind of [something]","placeholders":["a box","a wall"]}, +{"id":"11178","label":"poking a hole into paper","template":"Poking a hole into [something soft]","placeholders":["paper"]}, +{"id":"146986","label":"uncovering a mouse","template":"Uncovering [something]","placeholders":["a mouse"]}, +{"id":"178422","label":"holding box in front of emergency light","template":"Holding [something] in front of [something]","placeholders":["box","emergency light"]}, +{"id":"134509","label":"letting car roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["car"]}, +{"id":"147122","label":"pushing bottle with pen","template":"Pushing [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"116934","label":"tilting book with board clip on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","board clip"]}, +{"id":"112391","label":"pouring milk into a cup","template":"Pouring [something] into [something]","placeholders":["milk","a cup"]}, +{"id":"68567","label":"pulling cup from behind of canister","template":"Pulling [something] from behind of [something]","placeholders":["cup","canister"]}, +{"id":"63756","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"110656","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"101813","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"14379","label":"covering paper with paper","template":"Covering [something] with [something]","placeholders":["paper","paper"]}, +{"id":"96438","label":"burying a plug in a blanket","template":"Burying [something] in [something]","placeholders":["a plug","a blanket"]}, +{"id":"175051","label":"tilting a video game case with a pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a video game case","a pencil"]}, +{"id":"47281","label":"moving pen closer to cup","template":"Moving [something] closer to [something]","placeholders":["pen","cup"]}, +{"id":"131466","label":"dryer sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["dryer sheet"]}, +{"id":"76735","label":"bending hanger until it breaks","template":"Bending [something] until it breaks","placeholders":["hanger"]}, +{"id":"86224","label":"twisting wash cloth","template":"Twisting [something]","placeholders":["wash cloth"]}, +{"id":"132792","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"29105","label":"taking card from cards","template":"Taking [one of many similar things on the table]","placeholders":["card from cards"]}, +{"id":"109474","label":"lifting a surface with wrist watch on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["wrist watch"]}, +{"id":"64157","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"87048","label":"folding dish cloth","template":"Folding [something]","placeholders":["dish cloth"]}, +{"id":"44374","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"18670","label":"throwing a toy dragon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a toy dragon"]}, +{"id":"37726","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"126083","label":"picking phone up","template":"Picking [something] up","placeholders":["phone"]}, +{"id":"68263","label":"holding a mouse","template":"Holding [something]","placeholders":["a mouse"]}, +{"id":"140426","label":"throwing a highlighter against a bottle","template":"Throwing [something] against [something]","placeholders":["a highlighter","a bottle"]}, +{"id":"168990","label":"moving teddy bear and stuffed toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["teddy bear","stuffed toy"]}, +{"id":"132944","label":"pretending to take box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["box","table"]}, +{"id":"167011","label":"stuffing tissue into shoe","template":"Stuffing [something] into [something]","placeholders":["tissue","shoe"]}, +{"id":"58448","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"64962","label":"moving tissue box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["tissue box"]}, +{"id":"157099","label":"turning the camera downwards while filming toy giraffe","template":"Turning the camera downwards while filming [something]","placeholders":["toy giraffe"]}, +{"id":"203238","label":"plugging cable into battery but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","battery"]}, +{"id":"165344","label":"poking blocks so that it falls over","template":"Poking [something] so that it falls over","placeholders":["blocks"]}, +{"id":"12301","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"150509","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"30826","label":"laying black spectacle box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["black spectacle box"]}, +{"id":"85113","label":"scooping suitcase up with hand","template":"Scooping [something] up with [something]","placeholders":["suitcase","hand"]}, +{"id":"203082","label":"holding remote","template":"Holding [something]","placeholders":["remote"]}, +{"id":"193316","label":"taking a binder clip out of a drawstring bag","template":"Taking [something] out of [something]","placeholders":["a binder clip","a drawstring bag"]}, +{"id":"22079","label":"putting a remote control on a surface","template":"Putting [something] on a surface","placeholders":["a remote control"]}, +{"id":"218666","label":"plugging usb into port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","port"]}, +{"id":"16629","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"210804","label":"putting pencils","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencils"]}, +{"id":"173393","label":"dropping a pin onto a box","template":"Dropping [something] onto [something]","placeholders":["a pin","a box"]}, +{"id":"134329","label":"poking a jewellry box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a jewellry box"]}, +{"id":"3043","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"192143","label":"moving ps4 controller up","template":"Moving [something] up","placeholders":["ps4 controller"]}, +{"id":"38583","label":"picking orange post-it up","template":"Picking [something] up","placeholders":["orange post-it"]}, +{"id":"198001","label":"moving sellotape down","template":"Moving [something] down","placeholders":["sellotape"]}, +{"id":"90311","label":"turning orange cup upside down","template":"Turning [something] upside down","placeholders":["orange cup"]}, +{"id":"211788","label":"covering a spoon with a cloth","template":"Covering [something] with [something]","placeholders":["a spoon","a cloth"]}, +{"id":"189476","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"54447","label":"pushing sticky notes cube so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["sticky notes cube"]}, +{"id":"147302","label":"covering screwdriver with paper","template":"Covering [something] with [something]","placeholders":["screwdriver","paper"]}, +{"id":"12303","label":"putting wood next to pillow","template":"Putting [something] next to [something]","placeholders":["wood","pillow"]}, +{"id":"196040","label":"holding a fork behind a glass","template":"Holding [something] behind [something]","placeholders":["a fork","a glass"]}, +{"id":"94351","label":"covering plastic tin with cloth","template":"Covering [something] with [something]","placeholders":["plastic tin","cloth"]}, +{"id":"37415","label":"putting cd cover that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cd cover"]}, +{"id":"22863","label":"moving a mobile down","template":"Moving [something] down","placeholders":["a mobile"]}, +{"id":"213383","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"193773","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"66676","label":"putting granola bar on a surface","template":"Putting [something] on a surface","placeholders":["granola bar"]}, +{"id":"11960","label":"putting a mushroom lamp on a surface","template":"Putting [something] on a surface","placeholders":["a mushroom lamp"]}, +{"id":"13824","label":"tearing sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet"]}, +{"id":"19813","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"113149","label":"pulling two ends of colour pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["colour pen"]}, +{"id":"24998","label":"lifting can with ball on it","template":"Lifting [something] with [something] on it","placeholders":["can","ball"]}, +{"id":"1985","label":"holding sock over small pillow","template":"Holding [something] over [something]","placeholders":["sock","small pillow"]}, +{"id":"70639","label":"putting a bottle on a surface","template":"Putting [something] on a surface","placeholders":["a bottle"]}, +{"id":"38104","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"18512","label":"putting 2 white board clips onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","white board clips","red pouch"]}, +{"id":"15688","label":"pouring water into flask","template":"Pouring [something] into [something]","placeholders":["water","flask"]}, +{"id":"58185","label":"pretending to poke battleship game","template":"Pretending to poke [something]","placeholders":["battleship game"]}, +{"id":"98583","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"90782","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"130223","label":"showing dates to the camera","template":"Showing [something] to the camera","placeholders":["dates"]}, +{"id":"89570","label":"tilting folder with scotch tape roll on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["folder","scotch tape roll"]}, +{"id":"66960","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"111010","label":"dropping pen behind glass","template":"Dropping [something] behind [something]","placeholders":["pen","glass"]}, +{"id":"45257","label":"tipping a tissue box over","template":"Tipping [something] over","placeholders":["a tissue box"]}, +{"id":"93930","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"177788","label":"moving a ruler and masking tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ruler","masking tape"]}, +{"id":"214382","label":"lifting lotion tube up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["lotion tube"]}, +{"id":"27314","label":"putting pill bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["pill bottle"]}, +{"id":"32355","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"134760","label":"putting string into a jar","template":"Putting [something] into [something]","placeholders":["string","a jar"]}, +{"id":"28521","label":"moving black usb and silver usb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["black usb","silver usb"]}, +{"id":"101339","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"131038","label":"trying to pour water into glass cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass cup"]}, +{"id":"128519","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"106279","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"116932","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"197610","label":"holding wallet","template":"Holding [something]","placeholders":["wallet"]}, +{"id":"192259","label":"lifting bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["bottle"]}, +{"id":"18537","label":"tearing garlic into two pieces","template":"Tearing [something] into two pieces","placeholders":["garlic"]}, +{"id":"25146","label":"moving a bowl across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a bowl"]}, +{"id":"127415","label":"wiping liquid off of table","template":"Wiping [something] off of [something]","placeholders":["liquid","table"]}, +{"id":"146324","label":"moving key down","template":"Moving [something] down","placeholders":["key"]}, +{"id":"99400","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"116953","label":"turning the camera left while filming a fidget spinner","template":"Turning the camera left while filming [something]","placeholders":["a fidget spinner"]}, +{"id":"6841","label":"putting fork into mug","template":"Putting [something] into [something]","placeholders":["fork","mug"]}, +{"id":"178086","label":"holding highlighter pen behind fishbowl","template":"Holding [something] behind [something]","placeholders":["highlighter pen","fishbowl"]}, +{"id":"82588","label":"lifting water bottle with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["water bottle","mobile phone"]}, +{"id":"44093","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"218463","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"14041","label":"turning wicker basket upside down","template":"Turning [something] upside down","placeholders":["wicker basket"]}, +{"id":"217242","label":"pushing a battery from left to right","template":"Pushing [something] from left to right","placeholders":["a battery"]}, +{"id":"88893","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"106515","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"92375","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"54356","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"4943","label":"lifting mobile with mobile on it","template":"Lifting [something] with [something] on it","placeholders":["mobile","mobile"]}, +{"id":"14736","label":"piling coasters up","template":"Piling [something] up","placeholders":["coasters"]}, +{"id":"198597","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"211179","label":"uncovering smart watch","template":"Uncovering [something]","placeholders":["smart watch"]}, +{"id":"151141","label":"showing that a soupe plat is empty","template":"Showing that [something] is empty","placeholders":["a soupe plat"]}, +{"id":"145076","label":"pretending to take banana from fridge","template":"Pretending to take [something] from [somewhere]","placeholders":["banana","fridge"]}, +{"id":"166476","label":"pushing keys so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["keys"]}, +{"id":"103556","label":"stacking 4 blocks","template":"Stacking [number of] [something]","placeholders":["4","blocks"]}, +{"id":"74367","label":"moving a magnet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a magnet"]}, +{"id":"138733","label":"tilting a box with a toy on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a box","a toy"]}, +{"id":"107207","label":"pretending or failing to wipe crayon off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["crayon","whiteboard"]}, +{"id":"15225","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"105407","label":"dropping keys into bowl","template":"Dropping [something] into [something]","placeholders":["keys","bowl"]}, +{"id":"181923","label":"pushing a container off of a box","template":"Pushing [something] off of [something]","placeholders":["a container","a box"]}, +{"id":"150169","label":"wiping orange juice off of counter","template":"Wiping [something] off of [something]","placeholders":["orange juice","counter"]}, +{"id":"144541","label":"turning glas upside down","template":"Turning [something] upside down","placeholders":["glas"]}, +{"id":"89133","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"163952","label":"pretending to squeeze statue","template":"Pretending to squeeze [something]","placeholders":["statue"]}, +{"id":"145710","label":"lifting up one end of mobile phone, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["mobile phone"]}, +{"id":"148299","label":"putting notebook on a surface","template":"Putting [something] on a surface","placeholders":["notebook"]}, +{"id":"110875","label":"showing torch behind shoe","template":"Showing [something] behind [something]","placeholders":["torch","shoe"]}, +{"id":"107330","label":"tipping toothpick holder with toothpicks over, so toothpicks falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["toothpick holder","toothpicks","toothpicks"]}, +{"id":"41456","label":"moving away from doors with your camera","template":"Moving away from [something] with your camera","placeholders":["doors"]}, +{"id":"175282","label":"trying but failing to attach cover to box because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cover","box"]}, +{"id":"149999","label":"cup falling like a rock","template":"[Something] falling like a rock","placeholders":["cup"]}, +{"id":"170517","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"116390","label":"pushing plate from left to right","template":"Pushing [something] from left to right","placeholders":["plate"]}, +{"id":"72436","label":"putting a shot glass in front of a measuring cup","template":"Putting [something] in front of [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"180749","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"167476","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"206939","label":"pushing shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["shoe"]}, +{"id":"96769","label":"dropping a card behind a plate","template":"Dropping [something] behind [something]","placeholders":["a card","a plate"]}, +{"id":"1585","label":"throwing a top onto a surface","template":"Throwing [something] onto a surface","placeholders":["a top"]}, +{"id":"181022","label":"dropping a ball into a tube","template":"Dropping [something] into [something]","placeholders":["a ball","a tube"]}, +{"id":"92046","label":"holding toothbrush behind alarm clock","template":"Holding [something] behind [something]","placeholders":["toothbrush","alarm clock"]}, +{"id":"37559","label":"taking fork from holder","template":"Taking [something] from [somewhere]","placeholders":["fork","holder"]}, +{"id":"70282","label":"taking a cup out of a cooler.","template":"Taking [something] out of [something]","placeholders":["a cup","a cooler."]}, +{"id":"7434","label":"rolling a can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a can"]}, +{"id":"214528","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"143366","label":"pulling pasta out of jar","template":"Pulling [something] out of [something]","placeholders":["pasta","jar"]}, +{"id":"181146","label":"holding a spinner behind a box","template":"Holding [something] behind [something]","placeholders":["a spinner","a box"]}, +{"id":"83680","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"9739","label":"taking pen out of a bag","template":"Taking [something] out of [something]","placeholders":["pen","a bag"]}, +{"id":"83875","label":"dropping a card next to a plate","template":"Dropping [something] next to [something]","placeholders":["a card","a plate"]}, +{"id":"142727","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"143114","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"107951","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"6950","label":"pushing dental floss container so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["dental floss container"]}, +{"id":"21979","label":"turning paper upside down","template":"Turning [something] upside down","placeholders":["paper"]}, +{"id":"153968","label":"holding phone next to a bouguet","template":"Holding [something] next to [something]","placeholders":["phone","a bouguet"]}, +{"id":"213964","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"64096","label":"folding dollar bill","template":"Folding [something]","placeholders":["dollar bill"]}, +{"id":"211559","label":"tilting box with bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","bottle"]}, +{"id":"130052","label":"putting glue stick upright on the table","template":"Putting [something] upright on the table","placeholders":["glue stick"]}, +{"id":"111220","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"165863","label":"putting a peg upright on the table","template":"Putting [something] upright on the table","placeholders":["a peg"]}, +{"id":"80430","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"77222","label":"pulling granola bar from left to right","template":"Pulling [something] from left to right","placeholders":["granola bar"]}, +{"id":"181804","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"32705","label":"moving towel closer to towel","template":"Moving [something] closer to [something]","placeholders":["towel","towel"]}, +{"id":"162583","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"89594","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"34165","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"172183","label":"tearing a polythene cover into two pieces","template":"Tearing [something] into two pieces","placeholders":["a polythene cover"]}, +{"id":"111829","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"68538","label":"moving fork down","template":"Moving [something] down","placeholders":["fork"]}, +{"id":"214284","label":"pulling two ends of a rubberband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubberband"]}, +{"id":"173485","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"16329","label":"putting bottle similar to other bottles on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle similar to other bottles on the table"]}, +{"id":"192372","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"205405","label":"taking one of many pens","template":"Taking [one of many similar things on the table]","placeholders":["one of many pens"]}, +{"id":"28959","label":"dropping coin onto bowl","template":"Dropping [something] onto [something]","placeholders":["coin","bowl"]}, +{"id":"137079","label":"throwing a pillow against a table","template":"Throwing [something] against [something]","placeholders":["a pillow","a table"]}, +{"id":"124822","label":"a shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["a shoe"]}, +{"id":"215517","label":"attaching a charger to phone","template":"Attaching [something] to [something]","placeholders":["a charger","phone"]}, +{"id":"125352","label":"bending a toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["a toothpick"]}, +{"id":"463","label":"poking paint tube so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["paint tube"]}, +{"id":"75449","label":"pushing purple microfiber so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["purple microfiber"]}, +{"id":"59120","label":"sprinkling water onto paper","template":"Sprinkling [something] onto [something]","placeholders":["water","paper"]}, +{"id":"17328","label":"pushing charging adapter so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["charging adapter"]}, +{"id":"159519","label":"holding bag over ground","template":"Holding [something] over [something]","placeholders":["bag","ground"]}, +{"id":"130623","label":"pretending to sprinkle air onto cup of water","template":"Pretending to sprinkle air onto [something]","placeholders":["cup of water"]}, +{"id":"170760","label":"tilting a cup with a notebook on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cup","a notebook"]}, +{"id":"92401","label":"letting ball toy roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball toy"]}, +{"id":"189326","label":"putting blender onto base","template":"Putting [something] onto [something]","placeholders":["blender","base"]}, +{"id":"146297","label":"pushing mug from left to right","template":"Pushing [something] from left to right","placeholders":["mug"]}, +{"id":"181908","label":"tearing post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["post it note"]}, +{"id":"82817","label":"removing a bear can, revealing a cup behind","template":"Removing [something], revealing [something] behind","placeholders":["a bear can","a cup"]}, +{"id":"197725","label":"bending a chip until it breaks","template":"Bending [something] until it breaks","placeholders":["a chip"]}, +{"id":"162809","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"114357","label":"dropping bottle onto ground","template":"Dropping [something] onto [something]","placeholders":["bottle","ground"]}, +{"id":"151880","label":"putting book that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["book"]}, +{"id":"86635","label":"covering stepstool with blanket","template":"Covering [something] with [something]","placeholders":["stepstool","blanket"]}, +{"id":"1967","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"37883","label":"showing a key next to a cup","template":"Showing [something] next to [something]","placeholders":["a key","a cup"]}, +{"id":"12017","label":"poking a hole into silly putty","template":"Poking a hole into [something soft]","placeholders":["silly putty"]}, +{"id":"53081","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"132074","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"181220","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"166445","label":"throwing stuffed animal against wall","template":"Throwing [something] against [something]","placeholders":["stuffed animal","wall"]}, +{"id":"163078","label":"pushing bracelet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bracelet"]}, +{"id":"90517","label":"throwing wrist-watch against water-bottle","template":"Throwing [something] against [something]","placeholders":["wrist-watch","water-bottle"]}, +{"id":"86892","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"140872","label":"pretending to be tearing tablet case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tablet case"]}, +{"id":"80712","label":"moving scissors and remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["scissors","remote control"]}, +{"id":"134047","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"23994","label":"stacking 2 juice boxes","template":"Stacking [number of] [something]","placeholders":["2","juice boxes"]}, +{"id":"78574","label":"pouring coffee into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["coffee","a cup"]}, +{"id":"56105","label":"plugging a cord into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","an outlet"]}, +{"id":"102477","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"172812","label":"taking sandals from floor","template":"Taking [something] from [somewhere]","placeholders":["sandals","floor"]}, +{"id":"84955","label":"stuffing notebook into bookbag","template":"Stuffing [something] into [something]","placeholders":["notebook","bookbag"]}, +{"id":"86069","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"183503","label":"taking essential oil bottle","template":"Taking [one of many similar things on the table]","placeholders":["essential oil bottle"]}, +{"id":"120613","label":"pretending to be tearing my phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["my phone"]}, +{"id":"206654","label":"folding umbrella","template":"Folding [something]","placeholders":["umbrella"]}, +{"id":"135618","label":"moving lid of electric kettle","template":"Moving [part] of [something]","placeholders":["lid","electric kettle"]}, +{"id":"158143","label":"holding nail polish next to cup","template":"Holding [something] next to [something]","placeholders":["nail polish","cup"]}, +{"id":"173949","label":"putting pen into glass","template":"Putting [something] into [something]","placeholders":["pen","glass"]}, +{"id":"12671","label":"touching (without moving) knob of timer","template":"Touching (without moving) [part] of [something]","placeholders":["knob","timer"]}, +{"id":"191859","label":"squeezing iphone adapter","template":"Squeezing [something]","placeholders":["iphone adapter"]}, +{"id":"88931","label":"showing that popcorn tin is empty","template":"Showing that [something] is empty","placeholders":["popcorn tin"]}, +{"id":"157206","label":"ball being deflected from wardrobe door","template":"[Something] being deflected from [something]","placeholders":["ball","wardrobe door"]}, +{"id":"23868","label":"showing that pompoms is inside container","template":"Showing that [something] is inside [something]","placeholders":["pompoms","container"]}, +{"id":"99084","label":"moving newspaper up","template":"Moving [something] up","placeholders":["newspaper"]}, +{"id":"45447","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"140049","label":"covering box with napkin","template":"Covering [something] with [something]","placeholders":["box","napkin"]}, +{"id":"140464","label":"pushing steel pipe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["steel pipe"]}, +{"id":"5272","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"187821","label":"putting scissors into a box","template":"Putting [something] into [something]","placeholders":["scissors","a box"]}, +{"id":"134008","label":"closing perfume bottle","template":"Closing [something]","placeholders":["perfume bottle"]}, +{"id":"217460","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"155524","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"71437","label":"putting ball on a surface","template":"Putting [something] on a surface","placeholders":["ball"]}, +{"id":"76652","label":"wiping chocolate candy off of sink","template":"Wiping [something] off of [something]","placeholders":["chocolate candy","sink"]}, +{"id":"90644","label":"putting pink book next to yellowbook","template":"Putting [something] next to [something]","placeholders":["pink book","yellowbook"]}, +{"id":"197222","label":"holding glove over plate","template":"Holding [something] over [something]","placeholders":["glove","plate"]}, +{"id":"91726","label":"twisting (wringing) a dish cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a dish cloth"]}, +{"id":"1586","label":"pretending to pour water out of a plastic container, but the container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a plastic container","the container"]}, +{"id":"187060","label":"pushing roll of paper so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["roll of paper"]}, +{"id":"144118","label":"holding purple container over notecard","template":"Holding [something] over [something]","placeholders":["purple container","notecard"]}, +{"id":"76290","label":"holding toy car next to clip","template":"Holding [something] next to [something]","placeholders":["toy car","clip"]}, +{"id":"194012","label":"pushing a fork so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a fork"]}, +{"id":"87826","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"55138","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"26017","label":"dropping a keybound into a glas","template":"Dropping [something] into [something]","placeholders":["a keybound","a glas"]}, +{"id":"104134","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"179100","label":"holding book over laptop","template":"Holding [something] over [something]","placeholders":["book","laptop"]}, +{"id":"167092","label":"pushing tape roll so it spins","template":"Pushing [something] so it spins","placeholders":["tape roll"]}, +{"id":"106042","label":"uncovering electronic component","template":"Uncovering [something]","placeholders":["electronic component"]}, +{"id":"89774","label":"turning the camera left while filming violin","template":"Turning the camera left while filming [something]","placeholders":["violin"]}, +{"id":"55799","label":"pushing remote control from right to left","template":"Pushing [something] from right to left","placeholders":["remote control"]}, +{"id":"131321","label":"moving toffee box away from the camera","template":"Moving [something] away from the camera","placeholders":["toffee box"]}, +{"id":"213858","label":"plugging phone wire into phone","template":"Plugging [something] into [something]","placeholders":["phone wire","phone"]}, +{"id":"109320","label":"tipping cup with peppermints over, so peppermints falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","peppermints","peppermints"]}, +{"id":"130117","label":"pulling a plastic can from left to right","template":"Pulling [something] from left to right","placeholders":["a plastic can"]}, +{"id":"103182","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"45141","label":"hitting a pair of sunglasses with a large wooden spoon","template":"Hitting [something] with [something]","placeholders":["a pair of sunglasses","a large wooden spoon"]}, +{"id":"34542","label":"moving big marble and small marble so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["big marble","small marble"]}, +{"id":"88030","label":"showing green bowl to the camera","template":"Showing [something] to the camera","placeholders":["green bowl"]}, +{"id":"145731","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"68482","label":"putting clips into a container","template":"Putting [something] into [something]","placeholders":["clips","a container"]}, +{"id":"19268","label":"putting spoon","template":"Putting [something similar to other things that are already on the table]","placeholders":["spoon"]}, +{"id":"51687","label":"moving small pillow and iphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["small pillow","iphone"]}, +{"id":"127459","label":"holding coke zero in front of keurig","template":"Holding [something] in front of [something]","placeholders":["coke zero","keurig"]}, +{"id":"9995","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"85696","label":"picking something up","template":"Picking [something] up","placeholders":["something"]}, +{"id":"54662","label":"lifting bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["bottle"]}, +{"id":"110898","label":"putting fragrance on a surface","template":"Putting [something] on a surface","placeholders":["fragrance"]}, +{"id":"115553","label":"holding scissors","template":"Holding [something]","placeholders":["scissors"]}, +{"id":"68808","label":"putting the phone into the box","template":"Putting [something] into [something]","placeholders":["the phone","the box"]}, +{"id":"24930","label":"tilting diary with cutting plier on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["diary","cutting plier"]}, +{"id":"204029","label":"covering battery with cookie box lid","template":"Covering [something] with [something]","placeholders":["battery","cookie box lid"]}, +{"id":"107660","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"74375","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"210088","label":"dropping cell phone onto blanket","template":"Dropping [something] onto [something]","placeholders":["cell phone","blanket"]}, +{"id":"153319","label":"poking a stack of toys so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["toys"]}, +{"id":"96555","label":"attaching a cap to a bottle of perfume","template":"Attaching [something] to [something]","placeholders":["a cap","a bottle of perfume"]}, +{"id":"200667","label":"pushing white envelope from right to left","template":"Pushing [something] from right to left","placeholders":["white envelope"]}, +{"id":"11752","label":"tipping paint can over","template":"Tipping [something] over","placeholders":["paint can"]}, +{"id":"83572","label":"putting a shoe onto a math book","template":"Putting [something] onto [something]","placeholders":["a shoe","a math book"]}, +{"id":"18905","label":"turning the camera right while filming ladder","template":"Turning the camera right while filming [something]","placeholders":["ladder"]}, +{"id":"52036","label":"moving eraser closer to sharpener","template":"Moving [something] closer to [something]","placeholders":["eraser","sharpener"]}, +{"id":"36265","label":"taking one bottle","template":"Taking [one of many similar things on the table]","placeholders":["one bottle"]}, +{"id":"63280","label":"picking spoon up","template":"Picking [something] up","placeholders":["spoon"]}, +{"id":"185128","label":"hitting toy zelda with ruler","template":"Hitting [something] with [something]","placeholders":["toy zelda","ruler"]}, +{"id":"47249","label":"moving food container away from the camera","template":"Moving [something] away from the camera","placeholders":["food container"]}, +{"id":"149527","label":"showing clip next to the bangle","template":"Showing [something] next to [something]","placeholders":["clip","the bangle"]}, +{"id":"188682","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"128743","label":"putting notebook next to piggy bank","template":"Putting [something] next to [something]","placeholders":["notebook","piggy bank"]}, +{"id":"31228","label":"moving a match box towards the camera","template":"Moving [something] towards the camera","placeholders":["a match box"]}, +{"id":"166008","label":"pretending to scoop water up with cup","template":"Pretending to scoop [something] up with [something]","placeholders":["water","cup"]}, +{"id":"210570","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"147609","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"95660","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"81115","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"99336","label":"moving cup closer to mug","template":"Moving [something] closer to [something]","placeholders":["cup","mug"]}, +{"id":"107965","label":"pushing paper punch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["paper punch"]}, +{"id":"38120","label":"pouring something into something until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["something","something"]}, +{"id":"89512","label":"putting 2 wrist watch onto handkerchief","template":"Putting [number of] [something] onto [something]","placeholders":["2","wrist watch","handkerchief"]}, +{"id":"196133","label":"putting mug in front of rubber","template":"Putting [something] in front of [something]","placeholders":["mug","rubber"]}, +{"id":"138950","label":"letting water bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["water bottle"]}, +{"id":"220794","label":"pretending or trying and failing to twist cardboard","template":"Pretending or trying and failing to twist [something]","placeholders":["cardboard"]}, +{"id":"24020","label":"plugging a plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","an outlet"]}, +{"id":"111253","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"206082","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"71283","label":"bending an ointment tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an ointment tube"]}, +{"id":"126955","label":"pulling white candle from left to right","template":"Pulling [something] from left to right","placeholders":["white candle"]}, +{"id":"183252","label":"rolling a spray can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray can"]}, +{"id":"4955","label":"hair comb falling like a rock","template":"[Something] falling like a rock","placeholders":["hair comb"]}, +{"id":"194609","label":"turning the camera right while filming picture","template":"Turning the camera right while filming [something]","placeholders":["picture"]}, +{"id":"114003","label":"putting candle on a surface","template":"Putting [something] on a surface","placeholders":["candle"]}, +{"id":"144789","label":"putting phone in front of remote","template":"Putting [something] in front of [something]","placeholders":["phone","remote"]}, +{"id":"200621","label":"covering a teddy bear with a bandanna","template":"Covering [something] with [something]","placeholders":["a teddy bear","a bandanna"]}, +{"id":"128221","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"183531","label":"attaching sheep bottom to sheep head","template":"Attaching [something] to [something]","placeholders":["sheep bottom","sheep head"]}, +{"id":"220502","label":"taking packet from chair","template":"Taking [something] from [somewhere]","placeholders":["packet","chair"]}, +{"id":"166425","label":"soft ball falling like a rock","template":"[Something] falling like a rock","placeholders":["soft ball"]}, +{"id":"206639","label":"moving book and lotion closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","lotion"]}, +{"id":"56951","label":"moving bold marker pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bold marker pen"]}, +{"id":"103427","label":"pulling a charger from behind of a teddy bear","template":"Pulling [something] from behind of [something]","placeholders":["a charger","a teddy bear"]}, +{"id":"22564","label":"opening new tab in web browser","template":"Opening [something]","placeholders":["new tab in web browser"]}, +{"id":"190590","label":"putting bottle in front of glass","template":"Putting [something] in front of [something]","placeholders":["bottle","glass"]}, +{"id":"149310","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"140548","label":"lifting box with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["box","bottle"]}, +{"id":"94333","label":"taking crayons out of crayon box","template":"Taking [something] out of [something]","placeholders":["crayons","crayon box"]}, +{"id":"111670","label":"tilting a hand with a rubber on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a hand","a rubber"]}, +{"id":"66846","label":"trying to bend screwdriver so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["screwdriver"]}, +{"id":"115115","label":"moving yellow colour marker pen down","template":"Moving [something] down","placeholders":["yellow colour marker pen"]}, +{"id":"146095","label":"sprinkling nail varnish onto paper","template":"Sprinkling [something] onto [something]","placeholders":["nail varnish","paper"]}, +{"id":"44710","label":"burying coin in powder","template":"Burying [something] in [something]","placeholders":["coin","powder"]}, +{"id":"16188","label":"pulling two ends of waste plastic water pocket but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["waste plastic water pocket"]}, +{"id":"212010","label":"taking egg","template":"Taking [one of many similar things on the table]","placeholders":["egg"]}, +{"id":"102105","label":"pulling nail cutter from right to left","template":"Pulling [something] from right to left","placeholders":["nail cutter"]}, +{"id":"35185","label":"showing that yellow colour container is empty","template":"Showing that [something] is empty","placeholders":["yellow colour container"]}, +{"id":"34130","label":"plugging usb charger into plug converter","template":"Plugging [something] into [something]","placeholders":["usb charger","plug converter"]}, +{"id":"117470","label":"spinning ballpen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ballpen"]}, +{"id":"78968","label":"putting coin into mug","template":"Putting [something] into [something]","placeholders":["coin","mug"]}, +{"id":"116450","label":"showing dinosaur prototype to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur prototype"]}, +{"id":"205672","label":"pretending to pick tape dispenser up","template":"Pretending to pick [something] up","placeholders":["tape dispenser"]}, +{"id":"116695","label":"trying but failing to attach lego man to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["lego man","wall"]}, +{"id":"74931","label":"putting plastic box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["plastic box"]}, +{"id":"13251","label":"showing that khaki is inside bowl","template":"Showing that [something] is inside [something]","placeholders":["khaki","bowl"]}, +{"id":"159158","label":"taking a rubberband","template":"Taking [one of many similar things on the table]","placeholders":["a rubberband"]}, +{"id":"126929","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"124382","label":"turning the camera downwards while filming toy idol","template":"Turning the camera downwards while filming [something]","placeholders":["toy idol"]}, +{"id":"64431","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"134169","label":"putting shoe, pen bag and lipstick on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["shoe","pen bag","lipstick"]}, +{"id":"121060","label":"holding water bottle flip next to thermos bottle","template":"Holding [something] next to [something]","placeholders":["water bottle flip","thermos bottle"]}, +{"id":"2456","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"216202","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"144417","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"124406","label":"moving cellphone away from tablet","template":"Moving [something] away from [something]","placeholders":["cellphone","tablet"]}, +{"id":"18508","label":"dropping a peg behind a cup","template":"Dropping [something] behind [something]","placeholders":["a peg","a cup"]}, +{"id":"129090","label":"stuffing laundry into a basket","template":"Stuffing [something] into [something]","placeholders":["laundry","a basket"]}, +{"id":"20293","label":"pulling two ends of spoon but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["spoon"]}, +{"id":"123372","label":"pretending or failing to wipe sauce off of hummus container","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["sauce","hummus container"]}, +{"id":"98825","label":"dropping a matchbox next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a spoon"]}, +{"id":"141570","label":"uncovering scissors","template":"Uncovering [something]","placeholders":["scissors"]}, +{"id":"108403","label":"lifting up one end of bicycle, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bicycle"]}, +{"id":"106638","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"197487","label":"pushing green purse from left to right","template":"Pushing [something] from left to right","placeholders":["green purse"]}, +{"id":"163830","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"130587","label":"attaching pen to pen cap","template":"Attaching [something] to [something]","placeholders":["pen","pen cap"]}, +{"id":"116590","label":"pretending to take a vessel from vessel stock","template":"Pretending to take [something] from [somewhere]","placeholders":["a vessel","vessel stock"]}, +{"id":"94830","label":"pretending to pick earring up","template":"Pretending to pick [something] up","placeholders":["earring"]}, +{"id":"165685","label":"holding a peg over a box","template":"Holding [something] over [something]","placeholders":["a peg","a box"]}, +{"id":"177434","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"138944","label":"pretending or failing to wipe dirt off of a face","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","a face"]}, +{"id":"38879","label":"closing container","template":"Closing [something]","placeholders":["container"]}, +{"id":"14653","label":"pushing remote control so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["remote control"]}, +{"id":"132617","label":"moving basket and computer mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["basket","computer mouse"]}, +{"id":"99215","label":"trying to bend a spoon so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a spoon"]}, +{"id":"71182","label":"putting quarter into lid","template":"Putting [something] into [something]","placeholders":["quarter","lid"]}, +{"id":"150288","label":"putting a key into a lock","template":"Putting [something] into [something]","placeholders":["a key","a lock"]}, +{"id":"16981","label":"tilting a block with an apple on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a block","an apple"]}, +{"id":"44543","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"199515","label":"spilling juice onto surface","template":"Spilling [something] onto [something]","placeholders":["juice","surface"]}, +{"id":"159628","label":"moving paper closer to wallet","template":"Moving [something] closer to [something]","placeholders":["paper","wallet"]}, +{"id":"36630","label":"covering toy with bowl","template":"Covering [something] with [something]","placeholders":["toy","bowl"]}, +{"id":"136263","label":"throwing deodorant against pillow","template":"Throwing [something] against [something]","placeholders":["deodorant","pillow"]}, +{"id":"9705","label":"pulling rubix cube from right to left","template":"Pulling [something] from right to left","placeholders":["rubix cube"]}, +{"id":"111459","label":"putting flower, pen and watch on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["flower","pen","watch"]}, +{"id":"145045","label":"dropping lemon onto cutting board","template":"Dropping [something] onto [something]","placeholders":["lemon","cutting board"]}, +{"id":"220639","label":"approaching adaptor with your camera","template":"Approaching [something] with your camera","placeholders":["adaptor"]}, +{"id":"27224","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"113622","label":"showing that a plastic bag is inside a washer","template":"Showing that [something] is inside [something]","placeholders":["a plastic bag","a washer"]}, +{"id":"170461","label":"pushing green headlight from right to left","template":"Pushing [something] from right to left","placeholders":["green headlight"]}, +{"id":"184917","label":"moving pencil and ballpen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pencil","ballpen"]}, +{"id":"84107","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"69936","label":"putting a minion on the edge of a rubix cube so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a minion","a rubix cube"]}, +{"id":"131663","label":"letting a small container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a small container"]}, +{"id":"106175","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"61198","label":"pouring water onto bathing soap","template":"Pouring [something] onto [something]","placeholders":["water","bathing soap"]}, +{"id":"13825","label":"putting marker into cup","template":"Putting [something] into [something]","placeholders":["marker","cup"]}, +{"id":"184641","label":"trying but failing to attach a note to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a note","the wall"]}, +{"id":"142231","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"127219","label":"putting pen into mug","template":"Putting [something] into [something]","placeholders":["pen","mug"]}, +{"id":"119886","label":"throwing spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["spoon"]}, +{"id":"43830","label":"scooping chocolate powder up with spoon","template":"Scooping [something] up with [something]","placeholders":["chocolate powder","spoon"]}, +{"id":"161120","label":"pretending to turn subglasses upside down","template":"Pretending to turn [something] upside down","placeholders":["subglasses"]}, +{"id":"192169","label":"plugging plug into wall outlet","template":"Plugging [something] into [something]","placeholders":["plug","wall outlet"]}, +{"id":"14702","label":"plugging bulb into wall receptacle","template":"Plugging [something] into [something]","placeholders":["bulb","wall receptacle"]}, +{"id":"93959","label":"pretending to sprinkle air onto a bowl","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl"]}, +{"id":"143331","label":"holding cup in front of picture","template":"Holding [something] in front of [something]","placeholders":["cup","picture"]}, +{"id":"12024","label":"dropping a lime into a bowl","template":"Dropping [something] into [something]","placeholders":["a lime","a bowl"]}, +{"id":"13176","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"206736","label":"pretending to take mobile phone from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["mobile phone","floor"]}, +{"id":"161659","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"113311","label":"attaching a magnet to a fridge","template":"Attaching [something] to [something]","placeholders":["a magnet","a fridge"]}, +{"id":"109098","label":"taking tomato","template":"Taking [one of many similar things on the table]","placeholders":["tomato"]}, +{"id":"57457","label":"letting yellow marker pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["yellow marker pen"]}, +{"id":"101228","label":"lifting spoon with cap on it","template":"Lifting [something] with [something] on it","placeholders":["spoon","cap"]}, +{"id":"61207","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"30461","label":"pulling two ends of hair tie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair tie"]}, +{"id":"11795","label":"lifting a surface with scissors on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["scissors"]}, +{"id":"72925","label":"pulling a marker out of a pencil holder","template":"Pulling [something] out of [something]","placeholders":["a marker","a pencil holder"]}, +{"id":"40411","label":"taking bottle","template":"Taking [one of many similar things on the table]","placeholders":["bottle"]}, +{"id":"212650","label":"hitting stone with hammer","template":"Hitting [something] with [something]","placeholders":["stone","hammer"]}, +{"id":"185946","label":"putting thread on the edge of cardboard so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["thread","cardboard"]}, +{"id":"54087","label":"putting 2 white spoons onto duster","template":"Putting [number of] [something] onto [something]","placeholders":["2","white spoons","duster"]}, +{"id":"153558","label":"plugging usb into block but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","block"]}, +{"id":"183559","label":"putting whistle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["whistle"]}, +{"id":"21755","label":"lifting up one end of pillow without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pillow"]}, +{"id":"220346","label":"squeezing transparent, plastic toy ball","template":"Squeezing [something]","placeholders":["transparent, plastic toy ball"]}, +{"id":"189194","label":"showing that food is inside microwave oven","template":"Showing that [something] is inside [something]","placeholders":["food","microwave oven"]}, +{"id":"95118","label":"putting pen into tray","template":"Putting [something] into [something]","placeholders":["pen","tray"]}, +{"id":"182000","label":"lifting up one end of comb without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["comb"]}, +{"id":"5372","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"7266","label":"moving a jar and another jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a jar","another jar"]}, +{"id":"55629","label":"putting a bobby pin upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a bobby pin"]}, +{"id":"183182","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"174766","label":"covering toy idol with black pouch","template":"Covering [something] with [something]","placeholders":["toy idol","black pouch"]}, +{"id":"109267","label":"pushing a box with a pencil","template":"Pushing [something] with [something]","placeholders":["a box","a pencil"]}, +{"id":"47665","label":"uncovering spoon","template":"Uncovering [something]","placeholders":["spoon"]}, +{"id":"155363","label":"toy falling like a rock","template":"[Something] falling like a rock","placeholders":["toy"]}, +{"id":"147245","label":"letting a coconut roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a coconut"]}, +{"id":"48456","label":"pulling remote from right to left","template":"Pulling [something] from right to left","placeholders":["remote"]}, +{"id":"69916","label":"tilting a frying-pan with a fish filet on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a frying-pan","a fish filet"]}, +{"id":"208876","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"64518","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"182619","label":"tilting wallet with tac case on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["wallet","tac case"]}, +{"id":"134711","label":"putting apple, spoon and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["apple","spoon","cup"]}, +{"id":"84442","label":"tilting a box with an eraser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a box","an eraser"]}, +{"id":"25434","label":"poking a ukelele so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a ukelele"]}, +{"id":"118720","label":"plugging cable into wall socket","template":"Plugging [something] into [something]","placeholders":["cable","wall socket"]}, +{"id":"23720","label":"pushing phone from right to left","template":"Pushing [something] from right to left","placeholders":["phone"]}, +{"id":"25683","label":"putting keys onto bag","template":"Putting [something] onto [something]","placeholders":["keys","bag"]}, +{"id":"37453","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"99815","label":"moving nail polish bottle and post it notes closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["nail polish bottle","post it notes"]}, +{"id":"109499","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"73994","label":"holding envelope behind cup","template":"Holding [something] behind [something]","placeholders":["envelope","cup"]}, +{"id":"9668","label":"stuffing rice into a bowl","template":"Stuffing [something] into [something]","placeholders":["rice","a bowl"]}, +{"id":"56129","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"55227","label":"poking a clear plastic cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a clear plastic cup"]}, +{"id":"98080","label":"putting the cup behind bowl","template":"Putting [something] behind [something]","placeholders":["the cup","bowl"]}, +{"id":"149058","label":"tearing advertisement into two pieces","template":"Tearing [something] into two pieces","placeholders":["advertisement"]}, +{"id":"71351","label":"pouring soy sauce into a glass","template":"Pouring [something] into [something]","placeholders":["soy sauce","a glass"]}, +{"id":"165072","label":"hitting hand sanitizer with straw","template":"Hitting [something] with [something]","placeholders":["hand sanitizer","straw"]}, +{"id":"71321","label":"twisting a gait belt","template":"Twisting [something]","placeholders":["a gait belt"]}, +{"id":"111063","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"209791","label":"plugging a plug into an electrical power strip","template":"Plugging [something] into [something]","placeholders":["a plug","an electrical power strip"]}, +{"id":"109375","label":"holding chocolate over mobile","template":"Holding [something] over [something]","placeholders":["chocolate","mobile"]}, +{"id":"177715","label":"putting camera clamp onto white note","template":"Putting [something] onto [something]","placeholders":["camera clamp","white note"]}, +{"id":"163230","label":"pushing trash can from left to right","template":"Pushing [something] from left to right","placeholders":["trash can"]}, +{"id":"89019","label":"tearing card into two pieces","template":"Tearing [something] into two pieces","placeholders":["card"]}, +{"id":"189832","label":"lifting plate with glove on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glove"]}, +{"id":"76871","label":"pushing a bag so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bag"]}, +{"id":"135765","label":"putting glas on a surface","template":"Putting [something] on a surface","placeholders":["glas"]}, +{"id":"140944","label":"foil paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["foil paper"]}, +{"id":"149651","label":"pushing shoe box from left to right","template":"Pushing [something] from left to right","placeholders":["shoe box"]}, +{"id":"47752","label":"wiping liquid off of a table","template":"Wiping [something] off of [something]","placeholders":["liquid","a table"]}, +{"id":"138799","label":"throwing cup in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cup"]}, +{"id":"154635","label":"dropping ball in front of box","template":"Dropping [something] in front of [something]","placeholders":["ball","box"]}, +{"id":"121865","label":"moving clip up","template":"Moving [something] up","placeholders":["clip"]}, +{"id":"57161","label":"twisting a scarf","template":"Twisting [something]","placeholders":["a scarf"]}, +{"id":"41760","label":"pouring water onto a bowl","template":"Pouring [something] onto [something]","placeholders":["water","a bowl"]}, +{"id":"25126","label":"putting ring onto auto toy","template":"Putting [something] onto [something]","placeholders":["ring","auto toy"]}, +{"id":"202338","label":"pulling two ends of rubber-sheet so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber-sheet"]}, +{"id":"114606","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"215820","label":"uncovering mug","template":"Uncovering [something]","placeholders":["mug"]}, +{"id":"94234","label":"pretending to pick controller up","template":"Pretending to pick [something] up","placeholders":["controller"]}, +{"id":"83363","label":"unfolding shorts","template":"Unfolding [something]","placeholders":["shorts"]}, +{"id":"97909","label":"holding headphones over hand","template":"Holding [something] over [something]","placeholders":["headphones","hand"]}, +{"id":"130852","label":"pouring water out of bucket","template":"Pouring [something] out of [something]","placeholders":["water","bucket"]}, +{"id":"159965","label":"holding a glove over a bucket","template":"Holding [something] over [something]","placeholders":["a glove","a bucket"]}, +{"id":"125893","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"22721","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"114340","label":"twisting a bandanna","template":"Twisting [something]","placeholders":["a bandanna"]}, +{"id":"99616","label":"putting cds into basket","template":"Putting [something] into [something]","placeholders":["cds","basket"]}, +{"id":"84238","label":"holding a wallet over the bottle","template":"Holding [something] over [something]","placeholders":["a wallet","the bottle"]}, +{"id":"187253","label":"putting apple and khaki on the table","template":"Putting [something] and [something] on the table","placeholders":["apple","khaki"]}, +{"id":"202896","label":"dropping pen onto tea towel","template":"Dropping [something] onto [something]","placeholders":["pen","tea towel"]}, +{"id":"113466","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"191100","label":"putting pen onto notebook","template":"Putting [something] onto [something]","placeholders":["pen","notebook"]}, +{"id":"147281","label":"approaching generator set with your camera","template":"Approaching [something] with your camera","placeholders":["generator set"]}, +{"id":"136471","label":"putting candy","template":"Putting [something similar to other things that are already on the table]","placeholders":["candy"]}, +{"id":"164742","label":"dropping a card in front of a container","template":"Dropping [something] in front of [something]","placeholders":["a card","a container"]}, +{"id":"1919","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"190624","label":"uncovering glue stick","template":"Uncovering [something]","placeholders":["glue stick"]}, +{"id":"55537","label":"spreading perfume onto air","template":"Spreading [something] onto [something]","placeholders":["perfume","air"]}, +{"id":"191792","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"94881","label":"pretending or trying and failing to twist jar lid","template":"Pretending or trying and failing to twist [something]","placeholders":["jar lid"]}, +{"id":"163986","label":"spilling water onto large bowl","template":"Spilling [something] onto [something]","placeholders":["water","large bowl"]}, +{"id":"107787","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"169169","label":"holding water bottle next to iced coffee cup","template":"Holding [something] next to [something]","placeholders":["water bottle","iced coffee cup"]}, +{"id":"125679","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"158480","label":"moving toy away from box","template":"Moving [something] away from [something]","placeholders":["toy","box"]}, +{"id":"218067","label":"wiping dust off of phone","template":"Wiping [something] off of [something]","placeholders":["dust","phone"]}, +{"id":"128842","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"167009","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"15534","label":"rolling a polished stone on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a polished stone"]}, +{"id":"71831","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"67254","label":"moving a keyset away from the camera","template":"Moving [something] away from the camera","placeholders":["a keyset"]}, +{"id":"197960","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"188271","label":"holding phone over pants","template":"Holding [something] over [something]","placeholders":["phone","pants"]}, +{"id":"160075","label":"pretending to open the wallet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the wallet"]}, +{"id":"137210","label":"moving nailpolish up","template":"Moving [something] up","placeholders":["nailpolish"]}, +{"id":"209024","label":"moving sheild closer to drum","template":"Moving [something] closer to [something]","placeholders":["sheild","drum"]}, +{"id":"15038","label":"uncovering a book","template":"Uncovering [something]","placeholders":["a book"]}, +{"id":"186817","label":"spinning coaster so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coaster"]}, +{"id":"85816","label":"hitting a table with a shoe","template":"Hitting [something] with [something]","placeholders":["a table","a shoe"]}, +{"id":"62056","label":"pretending to put glue stick on a surface","template":"Pretending to put [something] on a surface","placeholders":["glue stick"]}, +{"id":"4701","label":"squeezing balls","template":"Squeezing [something]","placeholders":["balls"]}, +{"id":"77768","label":"moving a box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a box"]}, +{"id":"48172","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"87488","label":"picking shoe polish brush up","template":"Picking [something] up","placeholders":["shoe polish brush"]}, +{"id":"111424","label":"moving a lid across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a lid"]}, +{"id":"146707","label":"taking battery","template":"Taking [one of many similar things on the table]","placeholders":["battery"]}, +{"id":"80439","label":"moving bottle and water container away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","water container"]}, +{"id":"192204","label":"putting a wooden block on a surface","template":"Putting [something] on a surface","placeholders":["a wooden block"]}, +{"id":"13208","label":"bending pen until it breaks","template":"Bending [something] until it breaks","placeholders":["pen"]}, +{"id":"38204","label":"covering a glass with a tea towel","template":"Covering [something] with [something]","placeholders":["a glass","a tea towel"]}, +{"id":"205544","label":"holding pen in front of watch","template":"Holding [something] in front of [something]","placeholders":["pen","watch"]}, +{"id":"70974","label":"showing pen drive behind pincer","template":"Showing [something] behind [something]","placeholders":["pen drive","pincer"]}, +{"id":"191873","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"39759","label":"lifting up one end of cone shape object without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["cone shape object"]}, +{"id":"9894","label":"putting a spirometer upright on the table","template":"Putting [something] upright on the table","placeholders":["a spirometer"]}, +{"id":"106604","label":"putting a bottle on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bottle on the table"]}, +{"id":"207781","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"165780","label":"moving a coin closer to a box","template":"Moving [something] closer to [something]","placeholders":["a coin","a box"]}, +{"id":"171792","label":"twisting cap off pill bottle","template":"Twisting [something]","placeholders":["cap off pill bottle"]}, +{"id":"29514","label":"holding something next to something","template":"Holding [something] next to [something]","placeholders":["something","something"]}, +{"id":"197013","label":"pretending to put small hand gel on a surface","template":"Pretending to put [something] on a surface","placeholders":["small hand gel"]}, +{"id":"219659","label":"hitting bottle beer with bottle water","template":"Hitting [something] with [something]","placeholders":["bottle beer","bottle water"]}, +{"id":"88959","label":"throwing usb in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["usb"]}, +{"id":"212762","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"8161","label":"poking a bag so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bag"]}, +{"id":"184849","label":"putting battery on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["battery"]}, +{"id":"164310","label":"putting chair on a surface","template":"Putting [something] on a surface","placeholders":["chair"]}, +{"id":"137252","label":"taking pencil","template":"Taking [one of many similar things on the table]","placeholders":["pencil"]}, +{"id":"20493","label":"throwing a pen","template":"Throwing [something]","placeholders":["a pen"]}, +{"id":"71122","label":"stuffing paper into box","template":"Stuffing [something] into [something]","placeholders":["paper","box"]}, +{"id":"195341","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"45391","label":"moving note and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["note","pen"]}, +{"id":"156437","label":"pretending to open cd box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cd box"]}, +{"id":"138531","label":"tilting a thermos with a box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a thermos","a box"]}, +{"id":"44533","label":"uncovering aerrings","template":"Uncovering [something]","placeholders":["aerrings"]}, +{"id":"114859","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"181379","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"139759","label":"throwing santa hat onto a surface","template":"Throwing [something] onto a surface","placeholders":["santa hat"]}, +{"id":"107474","label":"opening white hand gel","template":"Opening [something]","placeholders":["white hand gel"]}, +{"id":"76930","label":"holding game over control","template":"Holding [something] over [something]","placeholders":["game","control"]}, +{"id":"217520","label":"moving magazine up","template":"Moving [something] up","placeholders":["magazine"]}, +{"id":"180604","label":"plugging usb connector into computer","template":"Plugging [something] into [something]","placeholders":["usb connector","computer"]}, +{"id":"202934","label":"pushing an envelope so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["an envelope"]}, +{"id":"167052","label":"putting comb onto cup","template":"Putting [something] onto [something]","placeholders":["comb","cup"]}, +{"id":"130873","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"113040","label":"notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["notebook"]}, +{"id":"88277","label":"taking calculator from slab","template":"Taking [something] from [somewhere]","placeholders":["calculator","slab"]}, +{"id":"111996","label":"taking journal books","template":"Taking [one of many similar things on the table]","placeholders":["journal books"]}, +{"id":"204961","label":"pushing small game card from left to right","template":"Pushing [something] from left to right","placeholders":["small game card"]}, +{"id":"189691","label":"stacking 4 coins","template":"Stacking [number of] [something]","placeholders":["4","coins"]}, +{"id":"10220","label":"pouring water into bowl of water","template":"Pouring [something] into [something]","placeholders":["water","bowl of water"]}, +{"id":"179683","label":"showing a photo of candles to the camera","template":"Showing a photo of [something] to the camera","placeholders":["candles"]}, +{"id":"122713","label":"moving a case up","template":"Moving [something] up","placeholders":["a case"]}, +{"id":"154214","label":"putting juicer, bowl and bottle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["juicer","bowl","bottle"]}, +{"id":"102115","label":"spinning a remote control that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a remote control"]}, +{"id":"128653","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"6155","label":"turning a jug upside down","template":"Turning [something] upside down","placeholders":["a jug"]}, +{"id":"153417","label":"dropping bottle into bed","template":"Dropping [something] into [something]","placeholders":["bottle","bed"]}, +{"id":"50571","label":"pretending to sprinkle air onto vitamin bottle","template":"Pretending to sprinkle air onto [something]","placeholders":["vitamin bottle"]}, +{"id":"174138","label":"unfolding envelope","template":"Unfolding [something]","placeholders":["envelope"]}, +{"id":"90690","label":"unfolding socks","template":"Unfolding [something]","placeholders":["socks"]}, +{"id":"161223","label":"marble colliding with stationary marble and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["marble","stationary marble"]}, +{"id":"155925","label":"showing a photo of myself to the camera","template":"Showing a photo of [something] to the camera","placeholders":["myself"]}, +{"id":"62711","label":"moving paper and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper","paper"]}, +{"id":"188902","label":"showing ball on top of cup","template":"Showing [something] on top of [something]","placeholders":["ball","cup"]}, +{"id":"133577","label":"tilting a plastic box with a screwdriver on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plastic box","a screwdriver"]}, +{"id":"23992","label":"touching (without moving) the edge of hat","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","hat"]}, +{"id":"202524","label":"bending net so that it deforms","template":"Bending [something] so that it deforms","placeholders":["net"]}, +{"id":"214739","label":"showing that orange cup is empty","template":"Showing that [something] is empty","placeholders":["orange cup"]}, +{"id":"213014","label":"poking towel so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["towel"]}, +{"id":"177542","label":"uncovering tin","template":"Uncovering [something]","placeholders":["tin"]}, +{"id":"52845","label":"dropping a charger onto a case","template":"Dropping [something] onto [something]","placeholders":["a charger","a case"]}, +{"id":"184413","label":"pushing a case so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a case"]}, +{"id":"63735","label":"putting mug in front of plastic comb","template":"Putting [something] in front of [something]","placeholders":["mug","plastic comb"]}, +{"id":"162309","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"96112","label":"putting 2 board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["2","board clips","cookie box lid"]}, +{"id":"27841","label":"showing that seeds is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["seeds","a jar"]}, +{"id":"215085","label":"laying mug on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["mug"]}, +{"id":"71793","label":"letting bottled water roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottled water"]}, +{"id":"116294","label":"showing a cone behind a fence","template":"Showing [something] behind [something]","placeholders":["a cone","a fence"]}, +{"id":"161969","label":"lifting up one end of remote, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote"]}, +{"id":"149904","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"52437","label":"moving smartphone and smartphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["smartphone","smartphone"]}, +{"id":"16784","label":"pretending to throw card","template":"Pretending to throw [something]","placeholders":["card"]}, +{"id":"85676","label":"pouring soda into cup","template":"Pouring [something] into [something]","placeholders":["soda","cup"]}, +{"id":"135887","label":"pretending to pick nail cutter up","template":"Pretending to pick [something] up","placeholders":["nail cutter"]}, +{"id":"106178","label":"taking wallet out of bag","template":"Taking [something] out of [something]","placeholders":["wallet","bag"]}, +{"id":"23253","label":"putting a glass upright on the table","template":"Putting [something] upright on the table","placeholders":["a glass"]}, +{"id":"92090","label":"pretending or failing to wipe stain off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","table"]}, +{"id":"185654","label":"lifting up one end of remote without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["remote"]}, +{"id":"56785","label":"turning the camera left while filming something","template":"Turning the camera left while filming [something]","placeholders":["something"]}, +{"id":"71461","label":"pushing bottle of water from left to right","template":"Pushing [something] from left to right","placeholders":["bottle of water"]}, +{"id":"87962","label":"pushing toy train from right to left","template":"Pushing [something] from right to left","placeholders":["toy train"]}, +{"id":"197100","label":"moving usb and soap away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb","soap"]}, +{"id":"65387","label":"hitting a book with a stapler","template":"Hitting [something] with [something]","placeholders":["a book","a stapler"]}, +{"id":"31358","label":"attaching pen to cape","template":"Attaching [something] to [something]","placeholders":["pen","cape"]}, +{"id":"64823","label":"showing foundation stone to the camera","template":"Showing [something] to the camera","placeholders":["foundation stone"]}, +{"id":"105409","label":"moving eraser away from sharpner","template":"Moving [something] away from [something]","placeholders":["eraser","sharpner"]}, +{"id":"80748","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"158595","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"196033","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"88320","label":"tilting a cutting board with a wooden spoon on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cutting board","a wooden spoon"]}, +{"id":"37611","label":"pulling red candle from right to left","template":"Pulling [something] from right to left","placeholders":["red candle"]}, +{"id":"74814","label":"putting more forks on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["more forks on the table"]}, +{"id":"121973","label":"moving watch and mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["watch","mouse"]}, +{"id":"18441","label":"plugging a plug into a plug socket","template":"Plugging [something] into [something]","placeholders":["a plug","a plug socket"]}, +{"id":"37124","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"144247","label":"taking cup out of cup","template":"Taking [something] out of [something]","placeholders":["cup","cup"]}, +{"id":"147102","label":"pulling a keychain out of a glass jar","template":"Pulling [something] out of [something]","placeholders":["a keychain","a glass jar"]}, +{"id":"191696","label":"pushing nail polish bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["nail polish bottle"]}, +{"id":"132628","label":"pushing rock so it spins","template":"Pushing [something] so it spins","placeholders":["rock"]}, +{"id":"30379","label":"pretending to put pink cologne on a surface","template":"Pretending to put [something] on a surface","placeholders":["pink cologne"]}, +{"id":"100646","label":"lifting book with glue on it","template":"Lifting [something] with [something] on it","placeholders":["book","glue"]}, +{"id":"8493","label":"ball being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["ball","wall"]}, +{"id":"83389","label":"pushing blue ballpen from left to right","template":"Pushing [something] from left to right","placeholders":["blue ballpen"]}, +{"id":"81941","label":"piling paper up","template":"Piling [something] up","placeholders":["paper"]}, +{"id":"117808","label":"dropping rubik cube behind card","template":"Dropping [something] behind [something]","placeholders":["rubik cube","card"]}, +{"id":"90414","label":"moving away from smart phone with your camera","template":"Moving away from [something] with your camera","placeholders":["smart phone"]}, +{"id":"153717","label":"poking keys so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["keys"]}, +{"id":"206970","label":"spinning ring so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ring"]}, +{"id":"91105","label":"putting kindle on a surface","template":"Putting [something] on a surface","placeholders":["kindle"]}, +{"id":"3033","label":"turning the camera left while filming emergency lamp","template":"Turning the camera left while filming [something]","placeholders":["emergency lamp"]}, +{"id":"120093","label":"moving watch and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","mouse"]}, +{"id":"150888","label":"putting the car key into contact","template":"Putting [something] into [something]","placeholders":["the car key","contact"]}, +{"id":"114663","label":"moving red punching machine away from hairclip","template":"Moving [something] away from [something]","placeholders":["red punching machine","hairclip"]}, +{"id":"33756","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"79899","label":"tilting a bucket with a book on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a bucket","a book"]}, +{"id":"83218","label":"taking brush from many brushes","template":"Taking [one of many similar things on the table]","placeholders":["brush from many brushes"]}, +{"id":"106375","label":"plugging cord into laptop","template":"Plugging [something] into [something]","placeholders":["cord","laptop"]}, +{"id":"160421","label":"pouring water out of mug","template":"Pouring [something] out of [something]","placeholders":["water","mug"]}, +{"id":"164596","label":"poking a hole into powder","template":"Poking a hole into [some substance]","placeholders":["powder"]}, +{"id":"151607","label":"moving lady away from the camera","template":"Moving [something] away from the camera","placeholders":["lady"]}, +{"id":"93135","label":"taking cable from floor","template":"Taking [something] from [somewhere]","placeholders":["cable","floor"]}, +{"id":"171917","label":"putting mouse into mouse pad","template":"Putting [something] into [something]","placeholders":["mouse","mouse pad"]}, +{"id":"189265","label":"moving orange and orange so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["orange","orange"]}, +{"id":"128250","label":"hitting cup with scissors","template":"Hitting [something] with [something]","placeholders":["cup","scissors"]}, +{"id":"135927","label":"pouring water onto a plate","template":"Pouring [something] onto [something]","placeholders":["water","a plate"]}, +{"id":"169971","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181018","label":"showing a toy car behind a cellphone","template":"Showing [something] behind [something]","placeholders":["a toy car","a cellphone"]}, +{"id":"17115","label":"pretending to put cigarette onto tv remote","template":"Pretending to put [something] onto [something]","placeholders":["cigarette","tv remote"]}, +{"id":"9227","label":"mobile falling like a rock","template":"[Something] falling like a rock","placeholders":["mobile"]}, +{"id":"131352","label":"poking a glass so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a glass"]}, +{"id":"153314","label":"pretending to be tearing a stone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a stone"]}, +{"id":"217444","label":"turning lamp upside down","template":"Turning [something] upside down","placeholders":["lamp"]}, +{"id":"27612","label":"covering a spoon with a napkin","template":"Covering [something] with [something]","placeholders":["a spoon","a napkin"]}, +{"id":"201478","label":"uncovering a wrist band","template":"Uncovering [something]","placeholders":["a wrist band"]}, +{"id":"149533","label":"opening spectacle box","template":"Opening [something]","placeholders":["spectacle box"]}, +{"id":"202459","label":"throwing tomato in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tomato"]}, +{"id":"70611","label":"moving a cup and a jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cup","a jar"]}, +{"id":"49887","label":"badminton bat colliding with another badminton bat and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["badminton bat","another badminton bat"]}, +{"id":"171711","label":"moving cup and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","cup"]}, +{"id":"31856","label":"touching (without moving) pencil of pencil holder","template":"Touching (without moving) [part] of [something]","placeholders":["pencil","pencil holder"]}, +{"id":"102269","label":"trying but failing to attach pencil to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["pencil","wall"]}, +{"id":"18598","label":"moving battery closer to rubix cube","template":"Moving [something] closer to [something]","placeholders":["battery","rubix cube"]}, +{"id":"15461","label":"moving paper weight and stapler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["paper weight","stapler"]}, +{"id":"44330","label":"taking one penny","template":"Taking [one of many similar things on the table]","placeholders":["one penny"]}, +{"id":"145576","label":"attaching hammer to handle","template":"Attaching [something] to [something]","placeholders":["hammer","handle"]}, +{"id":"132936","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"133496","label":"tilting tumbler with can on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tumbler","can"]}, +{"id":"75760","label":"plugging flash drive into computer","template":"Plugging [something] into [something]","placeholders":["flash drive","computer"]}, +{"id":"151143","label":"tilting plate with banana on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","banana"]}, +{"id":"43854","label":"closing cream","template":"Closing [something]","placeholders":["cream"]}, +{"id":"91826","label":"pushing a piece of paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a piece of paper"]}, +{"id":"118706","label":"covering phone with rag","template":"Covering [something] with [something]","placeholders":["phone","rag"]}, +{"id":"180804","label":"throwing a watch","template":"Throwing [something]","placeholders":["a watch"]}, +{"id":"14316","label":"pretending to turn glass upside down","template":"Pretending to turn [something] upside down","placeholders":["glass"]}, +{"id":"181202","label":"pushing a glasses case so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a glasses case"]}, +{"id":"90333","label":"putting a pen into a desk organizer","template":"Putting [something] into [something]","placeholders":["a pen","a desk organizer"]}, +{"id":"126565","label":"laying something on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["something"]}, +{"id":"62951","label":"moving soft glove towards the camera","template":"Moving [something] towards the camera","placeholders":["soft glove"]}, +{"id":"207237","label":"throwing deck of cards onto a surface","template":"Throwing [something] onto a surface","placeholders":["deck of cards"]}, +{"id":"150153","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"100503","label":"dropping remote onto chair","template":"Dropping [something] onto [something]","placeholders":["remote","chair"]}, +{"id":"66525","label":"stuffing notebook into bag","template":"Stuffing [something] into [something]","placeholders":["notebook","bag"]}, +{"id":"4931","label":"folding envelope","template":"Folding [something]","placeholders":["envelope"]}, +{"id":"180887","label":"moving car key part of a keychain","template":"Moving [part] of [something]","placeholders":["car key part","a keychain"]}, +{"id":"218830","label":"removing shoe, revealing bowl behind","template":"Removing [something], revealing [something] behind","placeholders":["shoe","bowl"]}, +{"id":"85305","label":"twisting a piece of paper","template":"Twisting [something]","placeholders":["a piece of paper"]}, +{"id":"207122","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"205192","label":"plugging power cord into laptop computer","template":"Plugging [something] into [something]","placeholders":["power cord","laptop computer"]}, +{"id":"48323","label":"taking a card out of a box","template":"Taking [something] out of [something]","placeholders":["a card","a box"]}, +{"id":"154751","label":"pushing onion so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["onion"]}, +{"id":"209508","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"135513","label":"dropping a bottle behind a box","template":"Dropping [something] behind [something]","placeholders":["a bottle","a box"]}, +{"id":"33649","label":"moving a toothbrush closer to a box","template":"Moving [something] closer to [something]","placeholders":["a toothbrush","a box"]}, +{"id":"35162","label":"putting a wrist watch next to eyeglasses","template":"Putting [something] next to [something]","placeholders":["a wrist watch","eyeglasses"]}, +{"id":"74681","label":"putting candle on a surface","template":"Putting [something] on a surface","placeholders":["candle"]}, +{"id":"137981","label":"holding knife behind plate","template":"Holding [something] behind [something]","placeholders":["knife","plate"]}, +{"id":"192273","label":"wiping a coin off of a phone","template":"Wiping [something] off of [something]","placeholders":["a coin","a phone"]}, +{"id":"11638","label":"showing a photo of man to the camera","template":"Showing a photo of [something] to the camera","placeholders":["man"]}, +{"id":"96568","label":"holding box behind bottle","template":"Holding [something] behind [something]","placeholders":["box","bottle"]}, +{"id":"160092","label":"putting 2 hairbands onto pink note","template":"Putting [number of] [something] onto [something]","placeholders":["2","hairbands","pink note"]}, +{"id":"145551","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"34475","label":"taking a phone out of hat","template":"Taking [something] out of [something]","placeholders":["a phone","hat"]}, +{"id":"167714","label":"covering a pencil with a ruler","template":"Covering [something] with [something]","placeholders":["a pencil","a ruler"]}, +{"id":"131096","label":"putting three books onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["three","books","chair"]}, +{"id":"66395","label":"turning the camera right while filming waist basket","template":"Turning the camera right while filming [something]","placeholders":["waist basket"]}, +{"id":"60738","label":"trying to pour water into mug, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","mug"]}, +{"id":"32918","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"6240","label":"turning mouse upside down","template":"Turning [something] upside down","placeholders":["mouse"]}, +{"id":"208346","label":"moving spoon and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["spoon","cup"]}, +{"id":"116055","label":"pushing a remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a remote control"]}, +{"id":"58396","label":"covering remote with tissue","template":"Covering [something] with [something]","placeholders":["remote","tissue"]}, +{"id":"24002","label":"tilting can with ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["can","ball"]}, +{"id":"44257","label":"putting plant upright on the table","template":"Putting [something] upright on the table","placeholders":["plant"]}, +{"id":"35525","label":"laying body cent bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["body cent bottle"]}, +{"id":"151544","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"2205","label":"lifting black spectacles up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["black spectacles"]}, +{"id":"181853","label":"holding toy car in front of clip","template":"Holding [something] in front of [something]","placeholders":["toy car","clip"]}, +{"id":"75025","label":"dropping keyboard in front of backpack","template":"Dropping [something] in front of [something]","placeholders":["keyboard","backpack"]}, +{"id":"25510","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"166698","label":"closing a closet","template":"Closing [something]","placeholders":["a closet"]}, +{"id":"123998","label":"covering magnifying gless with black cloth","template":"Covering [something] with [something]","placeholders":["magnifying gless","black cloth"]}, +{"id":"134697","label":"plugging earphones into a laptop","template":"Plugging [something] into [something]","placeholders":["earphones","a laptop"]}, +{"id":"105356","label":"moving a bangle towards the camera","template":"Moving [something] towards the camera","placeholders":["a bangle"]}, +{"id":"10342","label":"moving a pen down","template":"Moving [something] down","placeholders":["a pen"]}, +{"id":"74411","label":"removing mug, revealing knife behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","knife"]}, +{"id":"47720","label":"uncovering apple","template":"Uncovering [something]","placeholders":["apple"]}, +{"id":"167210","label":"rubik's cube colliding with jbl speaker and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["rubik's cube","jbl speaker"]}, +{"id":"175245","label":"holding pen in front of bottle","template":"Holding [something] in front of [something]","placeholders":["pen","bottle"]}, +{"id":"175776","label":"moving a toothpick container closer to a comb","template":"Moving [something] closer to [something]","placeholders":["a toothpick container","a comb"]}, +{"id":"201684","label":"pulling a deck out of basket","template":"Pulling [something] out of [something]","placeholders":["a deck","basket"]}, +{"id":"214941","label":"putting pillow next to pillow","template":"Putting [something] next to [something]","placeholders":["pillow","pillow"]}, +{"id":"103887","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"148897","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"158217","label":"a book falling like a rock","template":"[Something] falling like a rock","placeholders":["a book"]}, +{"id":"22021","label":"unfolding washcloth","template":"Unfolding [something]","placeholders":["washcloth"]}, +{"id":"4113","label":"dropping a box next to a coin","template":"Dropping [something] next to [something]","placeholders":["a box","a coin"]}, +{"id":"151883","label":"moving a lighter and a phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a lighter","a phone"]}, +{"id":"43438","label":"pulling two ends of hairband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hairband"]}, +{"id":"57933","label":"opening carton","template":"Opening [something]","placeholders":["carton"]}, +{"id":"175849","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"153553","label":"plugging mobile charger into socket","template":"Plugging [something] into [something]","placeholders":["mobile charger","socket"]}, +{"id":"89611","label":"putting tape next to pink book","template":"Putting [something] next to [something]","placeholders":["tape","pink book"]}, +{"id":"30284","label":"holding toy behind jar","template":"Holding [something] behind [something]","placeholders":["toy","jar"]}, +{"id":"195131","label":"moving an apple away from the camera","template":"Moving [something] away from the camera","placeholders":["an apple"]}, +{"id":"175113","label":"moving plant away from the camera","template":"Moving [something] away from the camera","placeholders":["plant"]}, +{"id":"102433","label":"showing glove next to window","template":"Showing [something] next to [something]","placeholders":["glove","window"]}, +{"id":"166502","label":"pretending or failing to wipe ink off of tape","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","tape"]}, +{"id":"69425","label":"spilling water next to a matchbox","template":"Spilling [something] next to [something]","placeholders":["water","a matchbox"]}, +{"id":"20656","label":"pretending to pour water out of a pitcher, but the pitcher is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a pitcher","the pitcher"]}, +{"id":"187274","label":"moving bottle and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","box"]}, +{"id":"113053","label":"leaflet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaflet"]}, +{"id":"155377","label":"lifting a bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a bottle"]}, +{"id":"42590","label":"holding a toothbrush","template":"Holding [something]","placeholders":["a toothbrush"]}, +{"id":"28620","label":"a deodorant falling like a rock","template":"[Something] falling like a rock","placeholders":["a deodorant"]}, +{"id":"52761","label":"dropping a wallet next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a wallet","a matchbox"]}, +{"id":"167435","label":"dropping toy car into spectacle box","template":"Dropping [something] into [something]","placeholders":["toy car","spectacle box"]}, +{"id":"15144","label":"trying but failing to attach paper to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","fridge"]}, +{"id":"58934","label":"moving nail cutter away from toothbrush","template":"Moving [something] away from [something]","placeholders":["nail cutter","toothbrush"]}, +{"id":"105007","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"94239","label":"showing that compact disk is inside cd writer","template":"Showing that [something] is inside [something]","placeholders":["compact disk","cd writer"]}, +{"id":"89321","label":"taking a cable out of a drawer","template":"Taking [something] out of [something]","placeholders":["a cable","a drawer"]}, +{"id":"186430","label":"showing monitor behind fan","template":"Showing [something] behind [something]","placeholders":["monitor","fan"]}, +{"id":"35563","label":"dropping hairband into orange coloured cup","template":"Dropping [something] into [something]","placeholders":["hairband","orange coloured cup"]}, +{"id":"151288","label":"pulling a paint brush out of a pen box","template":"Pulling [something] out of [something]","placeholders":["a paint brush","a pen box"]}, +{"id":"33399","label":"tipping a book over","template":"Tipping [something] over","placeholders":["a book"]}, +{"id":"115164","label":"moving handle of bucket","template":"Moving [part] of [something]","placeholders":["handle","bucket"]}, +{"id":"78091","label":"putting coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins"]}, +{"id":"37715","label":"moving flag down","template":"Moving [something] down","placeholders":["flag"]}, +{"id":"203562","label":"pushing an apple from right to left","template":"Pushing [something] from right to left","placeholders":["an apple"]}, +{"id":"140877","label":"pretending or failing to wipe paint off of oven","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","oven"]}, +{"id":"190581","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"10071","label":"opening opening a box","template":"Opening [something]","placeholders":["opening a box"]}, +{"id":"20861","label":"taking textbook from shelf","template":"Taking [something] from [somewhere]","placeholders":["textbook","shelf"]}, +{"id":"85942","label":"pushing a glass with a pen","template":"Pushing [something] with [something]","placeholders":["a glass","a pen"]}, +{"id":"85019","label":"pushing plant so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plant"]}, +{"id":"51445","label":"putting a pen next to sunglasses","template":"Putting [something] next to [something]","placeholders":["a pen","sunglasses"]}, +{"id":"43491","label":"tipping paper roll over","template":"Tipping [something] over","placeholders":["paper roll"]}, +{"id":"127045","label":"stuffing crumpled paper into a cup","template":"Stuffing [something] into [something]","placeholders":["crumpled paper","a cup"]}, +{"id":"109859","label":"spinning a spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinning top"]}, +{"id":"64510","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"11048","label":"holding bottle over food container","template":"Holding [something] over [something]","placeholders":["bottle","food container"]}, +{"id":"128394","label":"putting 2 red spoon onto calculator","template":"Putting [number of] [something] onto [something]","placeholders":["2","red spoon","calculator"]}, +{"id":"189274","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"113500","label":"turning cologne upside down","template":"Turning [something] upside down","placeholders":["cologne"]}, +{"id":"84755","label":"twisting oven mitt","template":"Twisting [something]","placeholders":["oven mitt"]}, +{"id":"126991","label":"throwing a tennis ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a tennis ball"]}, +{"id":"121069","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"95734","label":"moving crayons and pencilbox away from each other","template":"Moving [something] and [something] away from each other","placeholders":["crayons","pencilbox"]}, +{"id":"114319","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"75873","label":"pushing rubber so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["rubber"]}, +{"id":"77638","label":"pushing gear with metal rod","template":"Pushing [something] with [something]","placeholders":["gear","metal rod"]}, +{"id":"28102","label":"lifting up one end of purple colour pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["purple colour pen"]}, +{"id":"200159","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"58800","label":"pulling two ends of charger so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["charger"]}, +{"id":"185453","label":"moving candle closer to box","template":"Moving [something] closer to [something]","placeholders":["candle","box"]}, +{"id":"91680","label":"showing small box behind large box","template":"Showing [something] behind [something]","placeholders":["small box","large box"]}, +{"id":"67829","label":"twisting a lid","template":"Twisting [something]","placeholders":["a lid"]}, +{"id":"67902","label":"letting red ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["red ball"]}, +{"id":"35971","label":"letting a marker roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a marker"]}, +{"id":"213845","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"26534","label":"opening hot case","template":"Opening [something]","placeholders":["hot case"]}, +{"id":"6733","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"84309","label":"putting charger next to yellowbook","template":"Putting [something] next to [something]","placeholders":["charger","yellowbook"]}, +{"id":"106553","label":"moving away from tv with your camera","template":"Moving away from [something] with your camera","placeholders":["tv"]}, +{"id":"205017","label":"pretending to poke money","template":"Pretending to poke [something]","placeholders":["money"]}, +{"id":"178973","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"100109","label":"covering screw with aluminium foil","template":"Covering [something] with [something]","placeholders":["screw","aluminium foil"]}, +{"id":"16688","label":"bending candy so that it deforms","template":"Bending [something] so that it deforms","placeholders":["candy"]}, +{"id":"96026","label":"closing car bonnet","template":"Closing [something]","placeholders":["car bonnet"]}, +{"id":"126473","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"98312","label":"rolling big onion on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["big onion"]}, +{"id":"55966","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"137174","label":"folding dish towel","template":"Folding [something]","placeholders":["dish towel"]}, +{"id":"98350","label":"moving away from dogs with your camera","template":"Moving away from [something] with your camera","placeholders":["dogs"]}, +{"id":"86755","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"210019","label":"plugging power cable into socket","template":"Plugging [something] into [something]","placeholders":["power cable","socket"]}, +{"id":"48132","label":"throwing a silver ball","template":"Throwing [something]","placeholders":["a silver ball"]}, +{"id":"110490","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"63398","label":"holding pen next to bracelet","template":"Holding [something] next to [something]","placeholders":["pen","bracelet"]}, +{"id":"98552","label":"pouring ping pong balls onto table","template":"Pouring [something] onto [something]","placeholders":["ping pong balls","table"]}, +{"id":"176629","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"205018","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"170664","label":"pulling two ends of a remote control but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a remote control"]}, +{"id":"208732","label":"showing jacket on top of chair","template":"Showing [something] on top of [something]","placeholders":["jacket","chair"]}, +{"id":"153812","label":"holding a spinner next to a box","template":"Holding [something] next to [something]","placeholders":["a spinner","a box"]}, +{"id":"215988","label":"pretending to put a bottle into a carton","template":"Pretending to put [something] into [something]","placeholders":["a bottle","a carton"]}, +{"id":"153423","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"147743","label":"pouring water onto dirt","template":"Pouring [something] onto [something]","placeholders":["water","dirt"]}, +{"id":"169323","label":"folding paper sheet","template":"Folding [something]","placeholders":["paper sheet"]}, +{"id":"162794","label":"spilling water next to pepper","template":"Spilling [something] next to [something]","placeholders":["water","pepper"]}, +{"id":"131012","label":"moving moving something and close each other closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["moving something","close each other"]}, +{"id":"46325","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"17467","label":"putting 3 pill bottles onto box","template":"Putting [number of] [something] onto [something]","placeholders":["3","pill bottles","box"]}, +{"id":"124740","label":"opening green paint bottle","template":"Opening [something]","placeholders":["green paint bottle"]}, +{"id":"77805","label":"showing that soap oil is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["soap oil","a bottle"]}, +{"id":"66786","label":"putting a mug on a surface","template":"Putting [something] on a surface","placeholders":["a mug"]}, +{"id":"35293","label":"pretending to sprinkle air onto a donut","template":"Pretending to sprinkle air onto [something]","placeholders":["a donut"]}, +{"id":"203571","label":"poking cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cup"]}, +{"id":"67280","label":"uncovering key chain","template":"Uncovering [something]","placeholders":["key chain"]}, +{"id":"116146","label":"folding a washclothe","template":"Folding [something]","placeholders":["a washclothe"]}, +{"id":"197179","label":"moving ruler and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ruler","scissors"]}, +{"id":"183008","label":"moving sunglasses up","template":"Moving [something] up","placeholders":["sunglasses"]}, +{"id":"106909","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"208322","label":"tearing plastic just a little bit","template":"Tearing [something] just a little bit","placeholders":["plastic"]}, +{"id":"53280","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"216694","label":"tearing post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["post it note"]}, +{"id":"26641","label":"moving stapler closer to punching machine","template":"Moving [something] closer to [something]","placeholders":["stapler","punching machine"]}, +{"id":"218058","label":"shoe being deflected from tripod","template":"[Something] being deflected from [something]","placeholders":["shoe","tripod"]}, +{"id":"115373","label":"uncovering pillows","template":"Uncovering [something]","placeholders":["pillows"]}, +{"id":"43356","label":"poking headphones so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["headphones"]}, +{"id":"2387","label":"putting school bag","template":"Putting [something similar to other things that are already on the table]","placeholders":["school bag"]}, +{"id":"220576","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"216078","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"172009","label":"tearing movie ticket into two pieces","template":"Tearing [something] into two pieces","placeholders":["movie ticket"]}, +{"id":"152599","label":"moving wooden stick closer to battery","template":"Moving [something] closer to [something]","placeholders":["wooden stick","battery"]}, +{"id":"33301","label":"tipping a padlock over","template":"Tipping [something] over","placeholders":["a padlock"]}, +{"id":"66119","label":"throwing bracelet onto a surface","template":"Throwing [something] onto a surface","placeholders":["bracelet"]}, +{"id":"206677","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"138977","label":"closing the window","template":"Closing [something]","placeholders":["the window"]}, +{"id":"19238","label":"turning the camera left while filming green headlight","template":"Turning the camera left while filming [something]","placeholders":["green headlight"]}, +{"id":"215832","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"37264","label":"putting a plastic bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a plastic bottle"]}, +{"id":"158291","label":"pretending to open ointment-box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["ointment-box"]}, +{"id":"13923","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"94601","label":"scooping cereal up with spoon","template":"Scooping [something] up with [something]","placeholders":["cereal","spoon"]}, +{"id":"168837","label":"moving adaptor away from the camera","template":"Moving [something] away from the camera","placeholders":["adaptor"]}, +{"id":"105705","label":"turning the camera left while filming tank","template":"Turning the camera left while filming [something]","placeholders":["tank"]}, +{"id":"16323","label":"moving a fork closer to a spoon","template":"Moving [something] closer to [something]","placeholders":["a fork","a spoon"]}, +{"id":"25917","label":"moving black trash can closer to white trash can","template":"Moving [something] closer to [something]","placeholders":["black trash can","white trash can"]}, +{"id":"177878","label":"wiping markings off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["markings","whiteboard"]}, +{"id":"64594","label":"moving a car and a car so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a car","a car"]}, +{"id":"144391","label":"holding cup next to vape","template":"Holding [something] next to [something]","placeholders":["cup","vape"]}, +{"id":"175878","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"14377","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"156532","label":"putting sharpener next to sticky note","template":"Putting [something] next to [something]","placeholders":["sharpener","sticky note"]}, +{"id":"177721","label":"taking usb cable out of laptop","template":"Taking [something] out of [something]","placeholders":["usb cable","laptop"]}, +{"id":"42618","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"25759","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"185141","label":"tearing paper plate just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper plate"]}, +{"id":"19953","label":"uncovering pick","template":"Uncovering [something]","placeholders":["pick"]}, +{"id":"17984","label":"taking a pencil out of a mug","template":"Taking [something] out of [something]","placeholders":["a pencil","a mug"]}, +{"id":"211409","label":"throwing paper sheet in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["paper sheet"]}, +{"id":"119378","label":"pouring water into a mug","template":"Pouring [something] into [something]","placeholders":["water","a mug"]}, +{"id":"147878","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"60218","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"102277","label":"moving cat and cube away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cat","cube"]}, +{"id":"128426","label":"putting receipts","template":"Putting [something similar to other things that are already on the table]","placeholders":["receipts"]}, +{"id":"193243","label":"pretending or failing to wipe label off of laptop","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["label","laptop"]}, +{"id":"220555","label":"tearing flower just a little bit","template":"Tearing [something] just a little bit","placeholders":["flower"]}, +{"id":"179609","label":"toilet paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["toilet paper"]}, +{"id":"206961","label":"stuffing paper into cup","template":"Stuffing [something] into [something]","placeholders":["paper","cup"]}, +{"id":"165387","label":"sprinkling salt onto an eraser","template":"Sprinkling [something] onto [something]","placeholders":["salt","an eraser"]}, +{"id":"73832","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"59558","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"219477","label":"dropping a coin behind a container","template":"Dropping [something] behind [something]","placeholders":["a coin","a container"]}, +{"id":"206562","label":"dropping marker in front of remote","template":"Dropping [something] in front of [something]","placeholders":["marker","remote"]}, +{"id":"65381","label":"pushing jacket so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jacket"]}, +{"id":"220117","label":"turning the camera right while filming biscuit packets","template":"Turning the camera right while filming [something]","placeholders":["biscuit packets"]}, +{"id":"201202","label":"removing mug, revealing compact cassette behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","compact cassette"]}, +{"id":"81513","label":"moving an orange highlighter and a pink highlighter away from each other","template":"Moving [something] and [something] away from each other","placeholders":["an orange highlighter","a pink highlighter"]}, +{"id":"152254","label":"dropping a bag next to table","template":"Dropping [something] next to [something]","placeholders":["a bag","table"]}, +{"id":"63693","label":"letting toy ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy ball"]}, +{"id":"57686","label":"uncovering keys","template":"Uncovering [something]","placeholders":["keys"]}, +{"id":"172424","label":"post-il falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["post-il"]}, +{"id":"108066","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"162991","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"77754","label":"stuffing wipe into box","template":"Stuffing [something] into [something]","placeholders":["wipe","box"]}, +{"id":"42588","label":"twisting plastic wire","template":"Twisting [something]","placeholders":["plastic wire"]}, +{"id":"146197","label":"holding pc mouse","template":"Holding [something]","placeholders":["pc mouse"]}, +{"id":"79018","label":"spinning a can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a can"]}, +{"id":"101917","label":"trying but failing to attach clip to ring because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["clip","ring"]}, +{"id":"117866","label":"pushing a penguin off of a book","template":"Pushing [something] off of [something]","placeholders":["a penguin","a book"]}, +{"id":"88490","label":"uncovering sunglasses","template":"Uncovering [something]","placeholders":["sunglasses"]}, +{"id":"32140","label":"covering tray with cloth","template":"Covering [something] with [something]","placeholders":["tray","cloth"]}, +{"id":"50447","label":"stuffing clothes into a drawer","template":"Stuffing [something] into [something]","placeholders":["clothes","a drawer"]}, +{"id":"168974","label":"turning the camera upwards while filming banana bunch","template":"Turning the camera upwards while filming [something]","placeholders":["banana bunch"]}, +{"id":"21692","label":"pretending to pick coffee cup up","template":"Pretending to pick [something] up","placeholders":["coffee cup"]}, +{"id":"171144","label":"putting nail polish bottle on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["nail polish bottle","table"]}, +{"id":"37100","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"178583","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"104562","label":"letting car roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["car"]}, +{"id":"84028","label":"suitcase being deflected from sofa","template":"[Something] being deflected from [something]","placeholders":["suitcase","sofa"]}, +{"id":"181859","label":"putting eraser and pencil on the table","template":"Putting [something] and [something] on the table","placeholders":["eraser","pencil"]}, +{"id":"173218","label":"putting a canister upright on the table","template":"Putting [something] upright on the table","placeholders":["a canister"]}, +{"id":"31359","label":"lifting chair up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["chair"]}, +{"id":"117036","label":"holding one apple over apple packet","template":"Holding [something] over [something]","placeholders":["one apple","apple packet"]}, +{"id":"4736","label":"hitting a bucket with a bat","template":"Hitting [something] with [something]","placeholders":["a bucket","a bat"]}, +{"id":"188270","label":"a napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a napkin"]}, +{"id":"65006","label":"lifting up one end of bottle, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bottle"]}, +{"id":"128016","label":"pouring paper clip into plastic box","template":"Pouring [something] into [something]","placeholders":["paper clip","plastic box"]}, +{"id":"112358","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"116605","label":"folding rexona deo lotion","template":"Folding [something]","placeholders":["rexona deo lotion"]}, +{"id":"89350","label":"trying but failing to attach playing card to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["playing card","wall"]}, +{"id":"114326","label":"moving battery up","template":"Moving [something] up","placeholders":["battery"]}, +{"id":"159775","label":"plugging usb into hospots","template":"Plugging [something] into [something]","placeholders":["usb","hospots"]}, +{"id":"218215","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"27662","label":"covering keys with cloth","template":"Covering [something] with [something]","placeholders":["keys","cloth"]}, +{"id":"9368","label":"taking apple airpod out of apple airpods case","template":"Taking [something] out of [something]","placeholders":["apple airpod","apple airpods case"]}, +{"id":"25859","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"215252","label":"pouring oil into a measuring vessel","template":"Pouring [something] into [something]","placeholders":["oil","a measuring vessel"]}, +{"id":"87227","label":"spilling graims next to a glass jar","template":"Spilling [something] next to [something]","placeholders":["graims","a glass jar"]}, +{"id":"185459","label":"pretending to pour juice out of juice pack, but juice pack is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["juice","juice pack","juice pack"]}, +{"id":"212793","label":"dropping a quarter onto the floor","template":"Dropping [something] onto [something]","placeholders":["a quarter","the floor"]}, +{"id":"129948","label":"pretending to scoop rice up with a measuring cup","template":"Pretending to scoop [something] up with [something]","placeholders":["rice","a measuring cup"]}, +{"id":"99661","label":"poking a clear plastic cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a clear plastic cup"]}, +{"id":"156377","label":"tipping a small cylinder over","template":"Tipping [something] over","placeholders":["a small cylinder"]}, +{"id":"157959","label":"turning the camera left while filming window","template":"Turning the camera left while filming [something]","placeholders":["window"]}, +{"id":"93939","label":"lifting hairbrush up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["hairbrush"]}, +{"id":"108694","label":"spinning lip balm that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lip balm"]}, +{"id":"92529","label":"spinning round tape that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["round tape"]}, +{"id":"13390","label":"putting stapler onto red pouch","template":"Putting [something] onto [something]","placeholders":["stapler","red pouch"]}, +{"id":"35775","label":"moving biscuit pack away from the camera","template":"Moving [something] away from the camera","placeholders":["biscuit pack"]}, +{"id":"51932","label":"covering a hamper with its lid","template":"Covering [something] with [something]","placeholders":["a hamper","its lid"]}, +{"id":"69210","label":"showing a photo of a leader to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a leader"]}, +{"id":"76491","label":"spilling water onto counter","template":"Spilling [something] onto [something]","placeholders":["water","counter"]}, +{"id":"18477","label":"pouring grains out of a container","template":"Pouring [something] out of [something]","placeholders":["grains","a container"]}, +{"id":"135226","label":"holding torch in front of shoe","template":"Holding [something] in front of [something]","placeholders":["torch","shoe"]}, +{"id":"219936","label":"moving cap and grape away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cap","grape"]}, +{"id":"124090","label":"digging red-chili out of shallots","template":"Digging [something] out of [something]","placeholders":["red-chili","shallots"]}, +{"id":"161748","label":"dropping plastic in front of bowl","template":"Dropping [something] in front of [something]","placeholders":["plastic","bowl"]}, +{"id":"173460","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"26067","label":"dropping a matchbox in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a toothbrush"]}, +{"id":"30290","label":"putting fish into bag","template":"Putting [something] into [something]","placeholders":["fish","bag"]}, +{"id":"64909","label":"taking glass out of cabinet","template":"Taking [something] out of [something]","placeholders":["glass","cabinet"]}, +{"id":"16604","label":"holding a book in front of a door","template":"Holding [something] in front of [something]","placeholders":["a book","a door"]}, +{"id":"93306","label":"dropping lime next to egg","template":"Dropping [something] next to [something]","placeholders":["lime","egg"]}, +{"id":"17840","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"99578","label":"pouring water into a jug","template":"Pouring [something] into [something]","placeholders":["water","a jug"]}, +{"id":"37631","label":"pushing stapler off of phone","template":"Pushing [something] off of [something]","placeholders":["stapler","phone"]}, +{"id":"148405","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"152135","label":"moving the tab part of a soda can","template":"Moving [part] of [something]","placeholders":["the tab part","a soda can"]}, +{"id":"212616","label":"putting a pen on the edge of a decorative \"k\" so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a pen","a decorative \"k\""]}, +{"id":"121823","label":"spinning a deodorant bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a deodorant bottle"]}, +{"id":"157854","label":"plugging a cable into a charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a charger"]}, +{"id":"199096","label":"trying but failing to attach tomato to cat because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["tomato","cat"]}, +{"id":"136901","label":"plugging headphone into laptop","template":"Plugging [something] into [something]","placeholders":["headphone","laptop"]}, +{"id":"84301","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"213308","label":"moving remote controller up","template":"Moving [something] up","placeholders":["remote controller"]}, +{"id":"27587","label":"covering cellphone with towel","template":"Covering [something] with [something]","placeholders":["cellphone","towel"]}, +{"id":"187013","label":"moving chalk piece up","template":"Moving [something] up","placeholders":["chalk piece"]}, +{"id":"205263","label":"putting battery, sharpner and pebble on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["battery","sharpner","pebble"]}, +{"id":"46338","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"33692","label":"moving spoon down","template":"Moving [something] down","placeholders":["spoon"]}, +{"id":"212972","label":"pushing spoon from left to right","template":"Pushing [something] from left to right","placeholders":["spoon"]}, +{"id":"92553","label":"putting sharpener on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["sharpener","slab"]}, +{"id":"163152","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"146045","label":"showing a photo of a bulb to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a bulb"]}, +{"id":"135030","label":"remote being deflected from chair","template":"[Something] being deflected from [something]","placeholders":["remote","chair"]}, +{"id":"171180","label":"putting a coconut shell onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a coconut shell"]}, +{"id":"64574","label":"picking a shoebox up","template":"Picking [something] up","placeholders":["a shoebox"]}, +{"id":"168289","label":"putting 15 news papers onto floor","template":"Putting [number of] [something] onto [something]","placeholders":["15","news papers","floor"]}, +{"id":"86157","label":"tearing cardboard just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardboard"]}, +{"id":"110823","label":"tearing card into two pieces","template":"Tearing [something] into two pieces","placeholders":["card"]}, +{"id":"100314","label":"putting a key upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a key"]}, +{"id":"39511","label":"tipping a plank of wood over","template":"Tipping [something] over","placeholders":["a plank of wood"]}, +{"id":"145951","label":"moving the botyle away from the pencil case","template":"Moving [something] away from [something]","placeholders":["the botyle","the pencil case"]}, +{"id":"218728","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"106450","label":"showing mouthwash behind alcohol","template":"Showing [something] behind [something]","placeholders":["mouthwash","alcohol"]}, +{"id":"26992","label":"lifting a bracelet up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a bracelet"]}, +{"id":"3179","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"34400","label":"tearing a paper napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper napkin"]}, +{"id":"49589","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"186011","label":"moving seat of rotating chair","template":"Moving [part] of [something]","placeholders":["seat","rotating chair"]}, +{"id":"63590","label":"dropping something onto something","template":"Dropping [something] onto [something]","placeholders":["something","something"]}, +{"id":"90847","label":"dropping pen next to cup","template":"Dropping [something] next to [something]","placeholders":["pen","cup"]}, +{"id":"5687","label":"plugging a plug into a power cord","template":"Plugging [something] into [something]","placeholders":["a plug","a power cord"]}, +{"id":"91923","label":"pretending to put something behind something","template":"Pretending to put [something] behind [something]","placeholders":["something","something"]}, +{"id":"152641","label":"holding glove behind plate","template":"Holding [something] behind [something]","placeholders":["glove","plate"]}, +{"id":"158321","label":"putting coin similar to other coins that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin similar to other coins that are already on the table"]}, +{"id":"45424","label":"pushing bottle with pen","template":"Pushing [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"67850","label":"pushing wallet with pen","template":"Pushing [something] with [something]","placeholders":["wallet","pen"]}, +{"id":"176021","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"131368","label":"moving pink water bottle down","template":"Moving [something] down","placeholders":["pink water bottle"]}, +{"id":"94531","label":"moving watch and car keys closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","car keys"]}, +{"id":"72753","label":"putting napkin and wooden bowl on the table","template":"Putting [something] and [something] on the table","placeholders":["napkin","wooden bowl"]}, +{"id":"213887","label":"moving box away from can","template":"Moving [something] away from [something]","placeholders":["box","can"]}, +{"id":"158223","label":"moving button down","template":"Moving [something] down","placeholders":["button"]}, +{"id":"27560","label":"dropping a coin into a bowl","template":"Dropping [something] into [something]","placeholders":["a coin","a bowl"]}, +{"id":"185208","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"8712","label":"lifting plate with pen on it","template":"Lifting [something] with [something] on it","placeholders":["plate","pen"]}, +{"id":"46943","label":"poking glass of water so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["glass of water"]}, +{"id":"133173","label":"poking small, clockwork wolverine toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["small, clockwork wolverine toy"]}, +{"id":"22007","label":"turning nail polish bottle upside down","template":"Turning [something] upside down","placeholders":["nail polish bottle"]}, +{"id":"201036","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"81534","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"206828","label":"touching (without moving) cover of book","template":"Touching (without moving) [part] of [something]","placeholders":["cover","book"]}, +{"id":"65958","label":"tipping tissue box over","template":"Tipping [something] over","placeholders":["tissue box"]}, +{"id":"167027","label":"holding torch over shoe","template":"Holding [something] over [something]","placeholders":["torch","shoe"]}, +{"id":"165992","label":"twisting women's underwear","template":"Twisting [something]","placeholders":["women's underwear"]}, +{"id":"131506","label":"attaching sticker note to notebook","template":"Attaching [something] to [something]","placeholders":["sticker note","notebook"]}, +{"id":"94676","label":"plugging heater into plug","template":"Plugging [something] into [something]","placeholders":["heater","plug"]}, +{"id":"190282","label":"lifting up one end of box without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["box"]}, +{"id":"163311","label":"pretending to close a box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a box"]}, +{"id":"42804","label":"pushing bracelet from left to right","template":"Pushing [something] from left to right","placeholders":["bracelet"]}, +{"id":"209327","label":"tearing playingcard just a little bit","template":"Tearing [something] just a little bit","placeholders":["playingcard"]}, +{"id":"117901","label":"pulling two ends of stick but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["stick"]}, +{"id":"34089","label":"holding toy behind remote","template":"Holding [something] behind [something]","placeholders":["toy","remote"]}, +{"id":"215286","label":"pushing a garbage bin from left to right","template":"Pushing [something] from left to right","placeholders":["a garbage bin"]}, +{"id":"52486","label":"turning the camera downwards while filming my hand","template":"Turning the camera downwards while filming [something]","placeholders":["my hand"]}, +{"id":"101591","label":"turning the camera left while filming black remote","template":"Turning the camera left while filming [something]","placeholders":["black remote"]}, +{"id":"109810","label":"pretending or failing to wipe paint off of picture","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","picture"]}, +{"id":"135799","label":"moving stapler down","template":"Moving [something] down","placeholders":["stapler"]}, +{"id":"34383","label":"taking lighter","template":"Taking [one of many similar things on the table]","placeholders":["lighter"]}, +{"id":"186984","label":"picking pink toothbrush case up","template":"Picking [something] up","placeholders":["pink toothbrush case"]}, +{"id":"28135","label":"moving nail clipper down","template":"Moving [something] down","placeholders":["nail clipper"]}, +{"id":"131180","label":"tilting box with flashdisk on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","flashdisk"]}, +{"id":"176664","label":"letting baseball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["baseball"]}, +{"id":"60622","label":"stacking 3 cds","template":"Stacking [number of] [something]","placeholders":["3","cds"]}, +{"id":"130186","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"193548","label":"tipping a cup with pens over, so the pens falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","pens","the pens"]}, +{"id":"13207","label":"letting car roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["car"]}, +{"id":"92927","label":"poking ramekin so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["ramekin"]}, +{"id":"92347","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"40935","label":"plugging a flash drive into a port","template":"Plugging [something] into [something]","placeholders":["a flash drive","a port"]}, +{"id":"14358","label":"turning the camera right while filming cup","template":"Turning the camera right while filming [something]","placeholders":["cup"]}, +{"id":"173877","label":"showing a matchbox on top of the jug","template":"Showing [something] on top of [something]","placeholders":["a matchbox","the jug"]}, +{"id":"174021","label":"putting a banana upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a banana"]}, +{"id":"49723","label":"pushing pillow so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pillow"]}, +{"id":"173494","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"6726","label":"closing peanut butter jar","template":"Closing [something]","placeholders":["peanut butter jar"]}, +{"id":"65726","label":"poking a stuffed toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a stuffed toy"]}, +{"id":"176369","label":"moving calculator towards the camera","template":"Moving [something] towards the camera","placeholders":["calculator"]}, +{"id":"1265","label":"showing a photo of glass to the camera","template":"Showing a photo of [something] to the camera","placeholders":["glass"]}, +{"id":"168611","label":"putting jar into box","template":"Putting [something] into [something]","placeholders":["jar","box"]}, +{"id":"220208","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"30926","label":"pouring medicine onto a table","template":"Pouring [something] onto [something]","placeholders":["medicine","a table"]}, +{"id":"209944","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"177176","label":"putting cell phone behind clock","template":"Putting [something] behind [something]","placeholders":["cell phone","clock"]}, +{"id":"110251","label":"dropping power bank into shoes","template":"Dropping [something] into [something]","placeholders":["power bank","shoes"]}, +{"id":"136736","label":"dropping hair brush onto towel","template":"Dropping [something] onto [something]","placeholders":["hair brush","towel"]}, +{"id":"168331","label":"putting chewing gums on the edge of a jbl so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["chewing gums","a jbl"]}, +{"id":"217219","label":"spreading cloth onto table","template":"Spreading [something] onto [something]","placeholders":["cloth","table"]}, +{"id":"29804","label":"dropping bottle into bagback","template":"Dropping [something] into [something]","placeholders":["bottle","bagback"]}, +{"id":"210658","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"138747","label":"showing note book behind glass pot with pens","template":"Showing [something] behind [something]","placeholders":["note book","glass pot with pens"]}, +{"id":"10902","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"51600","label":"uncovering toy idol","template":"Uncovering [something]","placeholders":["toy idol"]}, +{"id":"12817","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"145103","label":"holding black play cards","template":"Holding [something]","placeholders":["black play cards"]}, +{"id":"108924","label":"taking a straw out of a cup","template":"Taking [something] out of [something]","placeholders":["a straw","a cup"]}, +{"id":"132398","label":"holding remote behind couch","template":"Holding [something] behind [something]","placeholders":["remote","couch"]}, +{"id":"208297","label":"turning bottle of rubbing alcohol upside down","template":"Turning [something] upside down","placeholders":["bottle of rubbing alcohol"]}, +{"id":"138293","label":"tilting box with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","phone"]}, +{"id":"183468","label":"pushing sugarpot with toothpic","template":"Pushing [something] with [something]","placeholders":["sugarpot","toothpic"]}, +{"id":"32184","label":"approaching a vacuum cleaner with your camera","template":"Approaching [something] with your camera","placeholders":["a vacuum cleaner"]}, +{"id":"216847","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"172867","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"28708","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"157532","label":"piling ram up","template":"Piling [something] up","placeholders":["ram"]}, +{"id":"22616","label":"holding an apple in front of a pitcher","template":"Holding [something] in front of [something]","placeholders":["an apple","a pitcher"]}, +{"id":"114870","label":"putting something upright on the table","template":"Putting [something] upright on the table","placeholders":["something"]}, +{"id":"95419","label":"taking a teaspoon out of a drawer","template":"Taking [something] out of [something]","placeholders":["a teaspoon","a drawer"]}, +{"id":"73664","label":"small tube being deflected from jar","template":"[Something] being deflected from [something]","placeholders":["small tube","jar"]}, +{"id":"169771","label":"pulling calculator from left to right","template":"Pulling [something] from left to right","placeholders":["calculator"]}, +{"id":"183987","label":"pouring water into my mouth","template":"Pouring [something] into [something]","placeholders":["water","my mouth"]}, +{"id":"147830","label":"plugging charging cord into smartphone","template":"Plugging [something] into [something]","placeholders":["charging cord","smartphone"]}, +{"id":"73286","label":"stuffing a tube into a bag","template":"Stuffing [something] into [something]","placeholders":["a tube","a bag"]}, +{"id":"149552","label":"taking box from floor","template":"Taking [something] from [somewhere]","placeholders":["box","floor"]}, +{"id":"166527","label":"dropping a toothpick into a cup","template":"Dropping [something] into [something]","placeholders":["a toothpick","a cup"]}, +{"id":"108028","label":"moving plate and banana away from each other","template":"Moving [something] and [something] away from each other","placeholders":["plate","banana"]}, +{"id":"99546","label":"taking screwdriver","template":"Taking [one of many similar things on the table]","placeholders":["screwdriver"]}, +{"id":"122321","label":"unfolding hat","template":"Unfolding [something]","placeholders":["hat"]}, +{"id":"135547","label":"pretending to put green water bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["green water bottle"]}, +{"id":"191239","label":"trying to bend metal rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal rod"]}, +{"id":"183663","label":"pretending to put a tomato behind a mug","template":"Pretending to put [something] behind [something]","placeholders":["a tomato","a mug"]}, +{"id":"46889","label":"showing leaf to the camera","template":"Showing [something] to the camera","placeholders":["leaf"]}, +{"id":"10622","label":"approaching bicycle with your camera","template":"Approaching [something] with your camera","placeholders":["bicycle"]}, +{"id":"80770","label":"putting a highlighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["a highlighter"]}, +{"id":"170290","label":"holding food container","template":"Holding [something]","placeholders":["food container"]}, +{"id":"154489","label":"pretending to sprinkle air onto paper","template":"Pretending to sprinkle air onto [something]","placeholders":["paper"]}, +{"id":"126237","label":"pulling toy truck from left to right","template":"Pulling [something] from left to right","placeholders":["toy truck"]}, +{"id":"6591","label":"putting stapler next to glue stick","template":"Putting [something] next to [something]","placeholders":["stapler","glue stick"]}, +{"id":"209007","label":"pushing granola bar from left to right","template":"Pushing [something] from left to right","placeholders":["granola bar"]}, +{"id":"119640","label":"pretending to pour water out of a cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","cup"]}, +{"id":"59153","label":"pushing mascara so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["mascara"]}, +{"id":"24070","label":"opening pant zip","template":"Opening [something]","placeholders":["pant zip"]}, +{"id":"19426","label":"touching (without moving) lid of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["lid","bottle"]}, +{"id":"142109","label":"pretending or failing to wipe stain off of fridge","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","fridge"]}, +{"id":"106900","label":"tilting appointment book with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["appointment book","pen"]}, +{"id":"17011","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"184270","label":"taking paper","template":"Taking [one of many similar things on the table]","placeholders":["paper"]}, +{"id":"69091","label":"putting mug in front of matchbox","template":"Putting [something] in front of [something]","placeholders":["mug","matchbox"]}, +{"id":"33296","label":"putting shoe underneath bed","template":"Putting [something] underneath [something]","placeholders":["shoe","bed"]}, +{"id":"44219","label":"pushing cards so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cards"]}, +{"id":"19163","label":"putting boxes","template":"Putting [something similar to other things that are already on the table]","placeholders":["boxes"]}, +{"id":"110137","label":"ball being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["ball","wall"]}, +{"id":"134905","label":"lifting plate with muffin on it","template":"Lifting [something] with [something] on it","placeholders":["plate","muffin"]}, +{"id":"34102","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"768","label":"trying to bend a stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a stick"]}, +{"id":"238","label":"showing that dust bin is empty","template":"Showing that [something] is empty","placeholders":["dust bin"]}, +{"id":"171126","label":"putting essential oil bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["essential oil bottle"]}, +{"id":"1700","label":"hitting cup with card","template":"Hitting [something] with [something]","placeholders":["cup","card"]}, +{"id":"139349","label":"pretending to be tearing cardboard","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cardboard"]}, +{"id":"114926","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"210559","label":"picking purple balloon pump up","template":"Picking [something] up","placeholders":["purple balloon pump"]}, +{"id":"113300","label":"putting a beer can in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a beer can","a cup"]}, +{"id":"166831","label":"twisting (wringing) wash cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wash cloth"]}, +{"id":"149528","label":"pushing a jumpdrive so it spins","template":"Pushing [something] so it spins","placeholders":["a jumpdrive"]}, +{"id":"29429","label":"holding bottled water","template":"Holding [something]","placeholders":["bottled water"]}, +{"id":"116203","label":"pushing plush so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plush"]}, +{"id":"118587","label":"holding something next to something","template":"Holding [something] next to [something]","placeholders":["something","something"]}, +{"id":"198842","label":"pretending to take cutting tool from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["cutting tool","floor"]}, +{"id":"129391","label":"moving tape dispenser and mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["tape dispenser","mouse"]}, +{"id":"8529","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"124423","label":"lifting paper roll up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["paper roll"]}, +{"id":"179626","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"154417","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"81740","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"144787","label":"stuffing mobile into bag","template":"Stuffing [something] into [something]","placeholders":["mobile","bag"]}, +{"id":"47357","label":"moving a lighter up","template":"Moving [something] up","placeholders":["a lighter"]}, +{"id":"166452","label":"attaching cap to pen","template":"Attaching [something] to [something]","placeholders":["cap","pen"]}, +{"id":"35850","label":"pretending or failing to wipe text off of receipt","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["text","receipt"]}, +{"id":"218843","label":"folding mat","template":"Folding [something]","placeholders":["mat"]}, +{"id":"20462","label":"moving toy idol up","template":"Moving [something] up","placeholders":["toy idol"]}, +{"id":"65733","label":"holding cards over paper","template":"Holding [something] over [something]","placeholders":["cards","paper"]}, +{"id":"10935","label":"showing that a pepsi bottle is empty","template":"Showing that [something] is empty","placeholders":["a pepsi bottle"]}, +{"id":"103831","label":"throwing plastic eyeball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["plastic eyeball"]}, +{"id":"37158","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"54833","label":"tilting calculator with ruler on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["calculator","ruler"]}, +{"id":"67465","label":"poking hat so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["hat"]}, +{"id":"172870","label":"dropping coin next to handkerchief","template":"Dropping [something] next to [something]","placeholders":["coin","handkerchief"]}, +{"id":"38332","label":"putting cable into bag","template":"Putting [something] into [something]","placeholders":["cable","bag"]}, +{"id":"216496","label":"holding a remote","template":"Holding [something]","placeholders":["a remote"]}, +{"id":"110897","label":"failing to put book into cup because book does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["book","cup","book"]}, +{"id":"143246","label":"putting something similar on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar on the table"]}, +{"id":"105257","label":"turning a jug upside down","template":"Turning [something] upside down","placeholders":["a jug"]}, +{"id":"14341","label":"tipping a pencil holder over","template":"Tipping [something] over","placeholders":["a pencil holder"]}, +{"id":"193211","label":"showing bracelet on top of wallet","template":"Showing [something] on top of [something]","placeholders":["bracelet","wallet"]}, +{"id":"29244","label":"putting green water bottle on a surface","template":"Putting [something] on a surface","placeholders":["green water bottle"]}, +{"id":"141353","label":"plugging usb cable into tablet","template":"Plugging [something] into [something]","placeholders":["usb cable","tablet"]}, +{"id":"209666","label":"turning the camera left while filming ad board","template":"Turning the camera left while filming [something]","placeholders":["ad board"]}, +{"id":"171946","label":"putting flash drive and lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["flash drive","lighter"]}, +{"id":"204570","label":"rolling a round block on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a round block"]}, +{"id":"186022","label":"showing spoon behind mug","template":"Showing [something] behind [something]","placeholders":["spoon","mug"]}, +{"id":"39485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"216966","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"11416","label":"pouring water out of beaker","template":"Pouring [something] out of [something]","placeholders":["water","beaker"]}, +{"id":"61575","label":"plugging plug into jack","template":"Plugging [something] into [something]","placeholders":["plug","jack"]}, +{"id":"99989","label":"stacking two small containers into a bigger one","template":"Stacking [number of] [something]","placeholders":["two small containers","into a bigger one"]}, +{"id":"217550","label":"rolling yellow like tennis ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["yellow like tennis ball"]}, +{"id":"115014","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"148751","label":"pouring grains onto small bottle","template":"Pouring [something] onto [something]","placeholders":["grains","small bottle"]}, +{"id":"9853","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"83655","label":"pretending to put timepiece onto basket","template":"Pretending to put [something] onto [something]","placeholders":["timepiece","basket"]}, +{"id":"209705","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"46467","label":"moving tin and tin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["tin","tin"]}, +{"id":"896","label":"putting pen, candle and lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","candle","lighter"]}, +{"id":"97293","label":"tipping usb wall adapter over","template":"Tipping [something] over","placeholders":["usb wall adapter"]}, +{"id":"75836","label":"showing that a pill bottle is empty","template":"Showing that [something] is empty","placeholders":["a pill bottle"]}, +{"id":"160657","label":"usb cable falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["usb cable"]}, +{"id":"144730","label":"putting fork onto cup","template":"Putting [something] onto [something]","placeholders":["fork","cup"]}, +{"id":"116897","label":"moving pincer up","template":"Moving [something] up","placeholders":["pincer"]}, +{"id":"173624","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"124638","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191468","label":"stuffing cord into drawer","template":"Stuffing [something] into [something]","placeholders":["cord","drawer"]}, +{"id":"157786","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"183879","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"145627","label":"plugging usb cord into wall jack","template":"Plugging [something] into [something]","placeholders":["usb cord","wall jack"]}, +{"id":"197913","label":"taking one phone","template":"Taking [one of many similar things on the table]","placeholders":["one phone"]}, +{"id":"27545","label":"moving body spray bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["body spray bottle"]}, +{"id":"193397","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"153442","label":"holding tablet pc","template":"Holding [something]","placeholders":["tablet pc"]}, +{"id":"19018","label":"holding pen next to bottle","template":"Holding [something] next to [something]","placeholders":["pen","bottle"]}, +{"id":"95575","label":"moving a small jar closer to a big jar","template":"Moving [something] closer to [something]","placeholders":["a small jar","a big jar"]}, +{"id":"104890","label":"pretending to take lipstick out of tumbler","template":"Pretending to take [something] out of [something]","placeholders":["lipstick","tumbler"]}, +{"id":"60523","label":"moving a padlock away from a shoe","template":"Moving [something] away from [something]","placeholders":["a padlock","a shoe"]}, +{"id":"89559","label":"poking a book so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a book"]}, +{"id":"20773","label":"pretending to throw paper","template":"Pretending to throw [something]","placeholders":["paper"]}, +{"id":"50992","label":"picking green water bottle up","template":"Picking [something] up","placeholders":["green water bottle"]}, +{"id":"153507","label":"pushing hard covered book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hard covered book"]}, +{"id":"99441","label":"covering pencil with sheet","template":"Covering [something] with [something]","placeholders":["pencil","sheet"]}, +{"id":"4914","label":"tilting a bottle with a tv remote control on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a bottle","a tv remote control"]}, +{"id":"44912","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"70174","label":"stuffing a reusable grocery bag into its holder","template":"Stuffing [something] into [something]","placeholders":["a reusable grocery bag","its holder"]}, +{"id":"162511","label":"pulling jar from left to right","template":"Pulling [something] from left to right","placeholders":["jar"]}, +{"id":"73283","label":"spinning a pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pencil"]}, +{"id":"169972","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"204375","label":"pretending to take book out of bag","template":"Pretending to take [something] out of [something]","placeholders":["book","bag"]}, +{"id":"74448","label":"dropping bear next to chair","template":"Dropping [something] next to [something]","placeholders":["bear","chair"]}, +{"id":"58633","label":"turning the camera downwards while filming notebook","template":"Turning the camera downwards while filming [something]","placeholders":["notebook"]}, +{"id":"9172","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"28988","label":"plugging speaker into laptop","template":"Plugging [something] into [something]","placeholders":["speaker","laptop"]}, +{"id":"170643","label":"pretending to pick a car up","template":"Pretending to pick [something] up","placeholders":["a car"]}, +{"id":"199475","label":"hitting cup with roll","template":"Hitting [something] with [something]","placeholders":["cup","roll"]}, +{"id":"40467","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"99688","label":"approaching flowers with your camera","template":"Approaching [something] with your camera","placeholders":["flowers"]}, +{"id":"170835","label":"pouring beer into a mug","template":"Pouring [something] into [something]","placeholders":["beer","a mug"]}, +{"id":"165093","label":"a plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a plastic bag"]}, +{"id":"76037","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"214453","label":"putting spoon on a surface","template":"Putting [something] on a surface","placeholders":["spoon"]}, +{"id":"191340","label":"showing dates to the camera","template":"Showing [something] to the camera","placeholders":["dates"]}, +{"id":"13332","label":"plugging a plug into plug socket","template":"Plugging [something] into [something]","placeholders":["a plug","plug socket"]}, +{"id":"40563","label":"holding bottle next to trash can","template":"Holding [something] next to [something]","placeholders":["bottle","trash can"]}, +{"id":"20284","label":"piling poker chips up","template":"Piling [something] up","placeholders":["poker chips"]}, +{"id":"91638","label":"pretending to take medicine out of medicine bottle","template":"Pretending to take [something] out of [something]","placeholders":["medicine","medicine bottle"]}, +{"id":"189961","label":"putting flowers","template":"Putting [something similar to other things that are already on the table]","placeholders":["flowers"]}, +{"id":"167971","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"55425","label":"twisting (wringing) cleaning cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cleaning cloth"]}, +{"id":"28348","label":"holding scissors next to a lighter","template":"Holding [something] next to [something]","placeholders":["scissors","a lighter"]}, +{"id":"191","label":"removing bucket, revealing thread behind","template":"Removing [something], revealing [something] behind","placeholders":["bucket","thread"]}, +{"id":"40084","label":"piling towels up","template":"Piling [something] up","placeholders":["towels"]}, +{"id":"158456","label":"moving bowl down","template":"Moving [something] down","placeholders":["bowl"]}, +{"id":"59578","label":"picking a tv remote up","template":"Picking [something] up","placeholders":["a tv remote"]}, +{"id":"185684","label":"pushing chair from left to right","template":"Pushing [something] from left to right","placeholders":["chair"]}, +{"id":"167440","label":"covering remote with a magazine","template":"Covering [something] with [something]","placeholders":["remote","a magazine"]}, +{"id":"37272","label":"pushing a bottle from left to right","template":"Pushing [something] from left to right","placeholders":["a bottle"]}, +{"id":"199100","label":"holding cup in front of envelope","template":"Holding [something] in front of [something]","placeholders":["cup","envelope"]}, +{"id":"67293","label":"putting vegetable peeler","template":"Putting [something similar to other things that are already on the table]","placeholders":["vegetable peeler"]}, +{"id":"77730","label":"hitting a pencil case with a pen","template":"Hitting [something] with [something]","placeholders":["a pencil case","a pen"]}, +{"id":"173128","label":"holding smartphone in front of calculator","template":"Holding [something] in front of [something]","placeholders":["smartphone","calculator"]}, +{"id":"51253","label":"picking a can of soda up","template":"Picking [something] up","placeholders":["a can of soda"]}, +{"id":"119816","label":"throwing shoe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["shoe"]}, +{"id":"118118","label":"dropping a shoe brush onto a box","template":"Dropping [something] onto [something]","placeholders":["a shoe brush","a box"]}, +{"id":"159354","label":"pistachio being deflected from mug","template":"[Something] being deflected from [something]","placeholders":["pistachio","mug"]}, +{"id":"116499","label":"pulling two ends of band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["band"]}, +{"id":"151473","label":"moving a pen up","template":"Moving [something] up","placeholders":["a pen"]}, +{"id":"52704","label":"pulling something from left to right","template":"Pulling [something] from left to right","placeholders":["something"]}, +{"id":"25249","label":"pretending to put battery charger next to box","template":"Pretending to put [something] next to [something]","placeholders":["battery charger","box"]}, +{"id":"215808","label":"putting pen into cup","template":"Putting [something] into [something]","placeholders":["pen","cup"]}, +{"id":"36216","label":"plugging charger into plug socket","template":"Plugging [something] into [something]","placeholders":["charger","plug socket"]}, +{"id":"62943","label":"closed small umbrella falling like a rock","template":"[Something] falling like a rock","placeholders":["closed small umbrella"]}, +{"id":"112893","label":"pretending to open small fresh mint without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["small fresh mint"]}, +{"id":"150873","label":"showing dinosaur model to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur model"]}, +{"id":"214631","label":"spilling tea onto napkin","template":"Spilling [something] onto [something]","placeholders":["tea","napkin"]}, +{"id":"38907","label":"lifting a surface with hat on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["hat"]}, +{"id":"82000","label":"pushing battery with pencil","template":"Pushing [something] with [something]","placeholders":["battery","pencil"]}, +{"id":"103694","label":"turning the camera upwards while filming board","template":"Turning the camera upwards while filming [something]","placeholders":["board"]}, +{"id":"13224","label":"putting a paint brush on the edge of a table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a paint brush","a table"]}, +{"id":"82410","label":"scooping sugar up with plastic scope","template":"Scooping [something] up with [something]","placeholders":["sugar","plastic scope"]}, +{"id":"133996","label":"pretending to pour water out of a cup, but the cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","the cup"]}, +{"id":"60535","label":"tearing leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["leaf"]}, +{"id":"65278","label":"plugging guitar cable into amplifier","template":"Plugging [something] into [something]","placeholders":["guitar cable","amplifier"]}, +{"id":"141363","label":"moving phone and wristwatch away from each other","template":"Moving [something] and [something] away from each other","placeholders":["phone","wristwatch"]}, +{"id":"146434","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"117525","label":"spinning something that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["something"]}, +{"id":"127019","label":"trying to bend a lego pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a lego pen"]}, +{"id":"134313","label":"moving glass and can so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["glass","can"]}, +{"id":"87489","label":"turning the camera right while filming boay","template":"Turning the camera right while filming [something]","placeholders":["boay"]}, +{"id":"44726","label":"throwing wooden puppet in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["wooden puppet"]}, +{"id":"106988","label":"tipping a spray bottle over","template":"Tipping [something] over","placeholders":["a spray bottle"]}, +{"id":"151140","label":"pulling thermal cup from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["thermal cup","laptop"]}, +{"id":"72890","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"114754","label":"bending cardboard so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cardboard"]}, +{"id":"159461","label":"taking a pen out of box","template":"Taking [something] out of [something]","placeholders":["a pen","box"]}, +{"id":"108710","label":"pouring oil onto crust of bread","template":"Pouring [something] onto [something]","placeholders":["oil","crust of bread"]}, +{"id":"33285","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196239","label":"pulling keys out of a lock","template":"Pulling [something] out of [something]","placeholders":["keys","a lock"]}, +{"id":"104841","label":"pretending to take notebook from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["notebook","floor"]}, +{"id":"182342","label":"poking a case so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a case"]}, +{"id":"139047","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"151082","label":"tilting book with nail polish on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","nail polish"]}, +{"id":"110024","label":"turning the camera upwards while filming radiator","template":"Turning the camera upwards while filming [something]","placeholders":["radiator"]}, +{"id":"133827","label":"lifting plate with sandwich on it","template":"Lifting [something] with [something] on it","placeholders":["plate","sandwich"]}, +{"id":"156695","label":"letting something roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["something"]}, +{"id":"68610","label":"pulling a mouse from right to left","template":"Pulling [something] from right to left","placeholders":["a mouse"]}, +{"id":"138183","label":"putting a cd case on a surface","template":"Putting [something] on a surface","placeholders":["a cd case"]}, +{"id":"84890","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"43354","label":"poking coffee cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["coffee cup"]}, +{"id":"36196","label":"letting canister roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["canister"]}, +{"id":"16715","label":"uncovering garlic","template":"Uncovering [something]","placeholders":["garlic"]}, +{"id":"124861","label":"moving a pencil away from a salt shaker","template":"Moving [something] away from [something]","placeholders":["a pencil","a salt shaker"]}, +{"id":"105087","label":"pretending to pick mascara up","template":"Pretending to pick [something] up","placeholders":["mascara"]}, +{"id":"193369","label":"tissue box falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue box"]}, +{"id":"23384","label":"tearing reciept into two pieces","template":"Tearing [something] into two pieces","placeholders":["reciept"]}, +{"id":"59942","label":"putting phone underneath camera","template":"Putting [something] underneath [something]","placeholders":["phone","camera"]}, +{"id":"102008","label":"squeezing a ketchup packet","template":"Squeezing [something]","placeholders":["a ketchup packet"]}, +{"id":"204806","label":"covering something with something","template":"Covering [something] with [something]","placeholders":["something","something"]}, +{"id":"24244","label":"hitting white wall with hand","template":"Hitting [something] with [something]","placeholders":["white wall","hand"]}, +{"id":"120997","label":"taking mug from jeep bonnet","template":"Taking [something] from [somewhere]","placeholders":["mug","jeep bonnet"]}, +{"id":"36515","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"90675","label":"pulling two ends of eraser putty so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["eraser putty"]}, +{"id":"176452","label":"taking sharpener out of pencil case","template":"Taking [something] out of [something]","placeholders":["sharpener","pencil case"]}, +{"id":"50494","label":"pretending or failing to wipe marker off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"127651","label":"pushing a bucket so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bucket"]}, +{"id":"109488","label":"showing that a bottle is empty","template":"Showing that [something] is empty","placeholders":["a bottle"]}, +{"id":"70567","label":"putting bowl next to glass","template":"Putting [something] next to [something]","placeholders":["bowl","glass"]}, +{"id":"123505","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"92206","label":"poking a stack of cups so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cups"]}, +{"id":"111205","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"81169","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"16561","label":"lifting tray with a glass on it","template":"Lifting [something] with [something] on it","placeholders":["tray","a glass"]}, +{"id":"178029","label":"putting passport on a surface","template":"Putting [something] on a surface","placeholders":["passport"]}, +{"id":"40232","label":"pulling battery from behind of mug","template":"Pulling [something] from behind of [something]","placeholders":["battery","mug"]}, +{"id":"181729","label":"tipping a pencil holder with a yo-yo over, so the yo-yo falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a pencil holder","a yo-yo","the yo-yo"]}, +{"id":"150002","label":"turning the camera upwards while filming hair dryer","template":"Turning the camera upwards while filming [something]","placeholders":["hair dryer"]}, +{"id":"63218","label":"holding spectacle box behind cup","template":"Holding [something] behind [something]","placeholders":["spectacle box","cup"]}, +{"id":"45059","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"121116","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"165618","label":"touching (without moving) keyboard of laptop","template":"Touching (without moving) [part] of [something]","placeholders":["keyboard","laptop"]}, +{"id":"19007","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"198297","label":"approaching violin with your camera","template":"Approaching [something] with your camera","placeholders":["violin"]}, +{"id":"100380","label":"dollar bill falling falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["dollar bill falling"]}, +{"id":"176180","label":"holding wire next to a chair","template":"Holding [something] next to [something]","placeholders":["wire","a chair"]}, +{"id":"188257","label":"pushing punching machine from right to left","template":"Pushing [something] from right to left","placeholders":["punching machine"]}, +{"id":"5720","label":"turning the camera upwards while filming green headlight","template":"Turning the camera upwards while filming [something]","placeholders":["green headlight"]}, +{"id":"16224","label":"covering bowl with lid","template":"Covering [something] with [something]","placeholders":["bowl","lid"]}, +{"id":"46974","label":"unfolding a drawing on paper","template":"Unfolding [something]","placeholders":["a drawing on paper"]}, +{"id":"123773","label":"pulling two ends of hair band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair band"]}, +{"id":"167461","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"45220","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"57847","label":"spinning white pebble so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["white pebble"]}, +{"id":"107092","label":"pushing pushing wallet off table so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pushing wallet off table"]}, +{"id":"99693","label":"trying to bend iron rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["iron rod"]}, +{"id":"64759","label":"twisting (wringing) purple sock wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["purple sock"]}, +{"id":"143387","label":"pushing a box from right to left","template":"Pushing [something] from right to left","placeholders":["a box"]}, +{"id":"105081","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"103145","label":"pretending to put screwdriver on a surface","template":"Pretending to put [something] on a surface","placeholders":["screwdriver"]}, +{"id":"187165","label":"putting 4 envelopes onto tables","template":"Putting [number of] [something] onto [something]","placeholders":["4","envelopes","tables"]}, +{"id":"117770","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"13564","label":"pouring water onto an absorbent cloth","template":"Pouring [something] onto [something]","placeholders":["water","an absorbent cloth"]}, +{"id":"11771","label":"tilting paper with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","pen"]}, +{"id":"142592","label":"turning a bag of gum upside down","template":"Turning [something] upside down","placeholders":["a bag of gum"]}, +{"id":"35146","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"66803","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"131951","label":"putting watch, keys and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["watch","keys","pen"]}, +{"id":"207778","label":"pretending to poke tape measure","template":"Pretending to poke [something]","placeholders":["tape measure"]}, +{"id":"209534","label":"showing an apple next to a cup","template":"Showing [something] next to [something]","placeholders":["an apple","a cup"]}, +{"id":"44593","label":"rolling tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tape"]}, +{"id":"217791","label":"poking a stack of bricks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["bricks"]}, +{"id":"46398","label":"holding a cup next to a cup","template":"Holding [something] next to [something]","placeholders":["a cup","a cup"]}, +{"id":"144373","label":"spinning a water bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a water bottle"]}, +{"id":"141542","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"45123","label":"tearing white sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["white sheet of paper"]}, +{"id":"9221","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"20502","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"8775","label":"pretending to be tearing a dvd case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a dvd case"]}, +{"id":"52129","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"26164","label":"opening tablet box","template":"Opening [something]","placeholders":["tablet box"]}, +{"id":"216700","label":"hitting glasses with pencil","template":"Hitting [something] with [something]","placeholders":["glasses","pencil"]}, +{"id":"102120","label":"putting a drill on a surface","template":"Putting [something] on a surface","placeholders":["a drill"]}, +{"id":"157184","label":"putting helmet behind a flower","template":"Putting [something] behind [something]","placeholders":["helmet","a flower"]}, +{"id":"151775","label":"showing van to the camera","template":"Showing [something] to the camera","placeholders":["van"]}, +{"id":"204754","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"166575","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"194603","label":"taking a wire out of many wire looking like objects","template":"Taking [one of many similar things on the table]","placeholders":["a wire out of many wire looking like objects"]}, +{"id":"160578","label":"holding ring","template":"Holding [something]","placeholders":["ring"]}, +{"id":"191188","label":"putting plate that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["plate"]}, +{"id":"154335","label":"pretending to put water bottle next to bowl","template":"Pretending to put [something] next to [something]","placeholders":["water bottle","bowl"]}, +{"id":"108781","label":"lifting plate with glass tumbler on it","template":"Lifting [something] with [something] on it","placeholders":["plate","glass tumbler"]}, +{"id":"18688","label":"pushing cart so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cart"]}, +{"id":"161635","label":"dropping a pen onto a table","template":"Dropping [something] onto [something]","placeholders":["a pen","a table"]}, +{"id":"106819","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"26652","label":"stuffing a book into a bookshelf","template":"Stuffing [something] into [something]","placeholders":["a book","a bookshelf"]}, +{"id":"169350","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"215715","label":"tipping a perfume bottle over","template":"Tipping [something] over","placeholders":["a perfume bottle"]}, +{"id":"95225","label":"holding pen over jar","template":"Holding [something] over [something]","placeholders":["pen","jar"]}, +{"id":"95566","label":"trying to bend bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["bottle"]}, +{"id":"143023","label":"taking a card","template":"Taking [one of many similar things on the table]","placeholders":["a card"]}, +{"id":"64203","label":"taking a bangle from a jar","template":"Taking [something] from [somewhere]","placeholders":["a bangle","a jar"]}, +{"id":"156528","label":"showing bike to the camera","template":"Showing [something] to the camera","placeholders":["bike"]}, +{"id":"12958","label":"throwing a peace bear against a pillow","template":"Throwing [something] against [something]","placeholders":["a peace bear","a pillow"]}, +{"id":"133886","label":"dropping keyboard onto backpack","template":"Dropping [something] onto [something]","placeholders":["keyboard","backpack"]}, +{"id":"207116","label":"trying to bend a pencil so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pencil"]}, +{"id":"83466","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"144827","label":"approaching scotch tape with your camera","template":"Approaching [something] with your camera","placeholders":["scotch tape"]}, +{"id":"209812","label":"showing that walnuts is inside glass jar","template":"Showing that [something] is inside [something]","placeholders":["walnuts","glass jar"]}, +{"id":"192942","label":"pretending to poke a pencil case","template":"Pretending to poke [something]","placeholders":["a pencil case"]}, +{"id":"109244","label":"removing sunglasses, revealing microscope behind","template":"Removing [something], revealing [something] behind","placeholders":["sunglasses","microscope"]}, +{"id":"147797","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"92107","label":"uncovering legs","template":"Uncovering [something]","placeholders":["legs"]}, +{"id":"53802","label":"tilting paper with cards on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","cards"]}, +{"id":"149504","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"174120","label":"pushing water bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["water bottle"]}, +{"id":"86593","label":"putting a pen on a surface","template":"Putting [something] on a surface","placeholders":["a pen"]}, +{"id":"173229","label":"pushing an apple so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an apple"]}, +{"id":"185773","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"134585","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"83119","label":"folding a pink sticky note","template":"Folding [something]","placeholders":["a pink sticky note"]}, +{"id":"19923","label":"putting 3 books onto couch","template":"Putting [number of] [something] onto [something]","placeholders":["3","books","couch"]}, +{"id":"48521","label":"moving bowl up","template":"Moving [something] up","placeholders":["bowl"]}, +{"id":"204109","label":"plugging usb into adaptor but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","adaptor"]}, +{"id":"210262","label":"twisting (wringing) paper wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["paper"]}, +{"id":"150840","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"38197","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"70903","label":"attaching receipt to card","template":"Attaching [something] to [something]","placeholders":["receipt","card"]}, +{"id":"45943","label":"tipping a glass over","template":"Tipping [something] over","placeholders":["a glass"]}, +{"id":"141189","label":"pulling a box from behind of a stack","template":"Pulling [something] from behind of [something]","placeholders":["a box","a stack"]}, +{"id":"172124","label":"moving a pencil and a pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pencil","a pen"]}, +{"id":"112199","label":"pretending to put black hat on a surface","template":"Pretending to put [something] on a surface","placeholders":["black hat"]}, +{"id":"197794","label":"putting sponze, purse and plate on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sponze","purse","plate"]}, +{"id":"93989","label":"putting clothes peg next to mug","template":"Putting [something] next to [something]","placeholders":["clothes peg","mug"]}, +{"id":"172139","label":"moving a container away from another one","template":"Moving [something] away from [something]","placeholders":["a container","another one"]}, +{"id":"158185","label":"spinning calculator that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["calculator"]}, +{"id":"127048","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"141557","label":"moving toy bullet pack and toy bullet pack closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy bullet pack","toy bullet pack"]}, +{"id":"183995","label":"pushing a tube from right to left","template":"Pushing [something] from right to left","placeholders":["a tube"]}, +{"id":"164903","label":"turning the camera left while filming jacket","template":"Turning the camera left while filming [something]","placeholders":["jacket"]}, +{"id":"137162","label":"folding a piece of clothe","template":"Folding [something]","placeholders":["a piece of clothe"]}, +{"id":"208864","label":"approaching iron with your camera","template":"Approaching [something] with your camera","placeholders":["iron"]}, +{"id":"75149","label":"trying to pour water from cup into a glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water from cup","a glass"]}, +{"id":"97970","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"19248","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213220","label":"showing a hat on top of a hanger","template":"Showing [something] on top of [something]","placeholders":["a hat","a hanger"]}, +{"id":"19117","label":"tilting black file with red coloured toy car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","red coloured toy car"]}, +{"id":"95029","label":"unfolding unfolding tissue","template":"Unfolding [something]","placeholders":["unfolding tissue"]}, +{"id":"26526","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"219923","label":"putting a painting brush","template":"Putting [something similar to other things that are already on the table]","placeholders":["a painting brush"]}, +{"id":"204122","label":"throwing a pillow in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a pillow"]}, +{"id":"137577","label":"pushing car so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["car"]}, +{"id":"49431","label":"pretending to scoop coffee up with scoop","template":"Pretending to scoop [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"89751","label":"wiping water off of a desk","template":"Wiping [something] off of [something]","placeholders":["water","a desk"]}, +{"id":"141632","label":"dropping a coin into a box","template":"Dropping [something] into [something]","placeholders":["a coin","a box"]}, +{"id":"186663","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"177999","label":"unfolding earphone","template":"Unfolding [something]","placeholders":["earphone"]}, +{"id":"209249","label":"spinning a paint brush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a paint brush"]}, +{"id":"185813","label":"bending hanger so that it deforms","template":"Bending [something] so that it deforms","placeholders":["hanger"]}, +{"id":"133986","label":"pretending to put coin on a surface","template":"Pretending to put [something] on a surface","placeholders":["coin"]}, +{"id":"102812","label":"moving helmet and helmet so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["helmet","helmet"]}, +{"id":"67800","label":"covering fan with blanket","template":"Covering [something] with [something]","placeholders":["fan","blanket"]}, +{"id":"52309","label":"touching (without moving) cover of book","template":"Touching (without moving) [part] of [something]","placeholders":["cover","book"]}, +{"id":"164849","label":"pretending to put tablet into bed","template":"Pretending to put [something] into [something]","placeholders":["tablet","bed"]}, +{"id":"146501","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"77841","label":"moving pen away from the camera","template":"Moving [something] away from the camera","placeholders":["pen"]}, +{"id":"179597","label":"poking stuffed panda bear so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["stuffed panda bear"]}, +{"id":"41043","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"68709","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"180633","label":"pretending to put bottled ponzu sauce on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottled ponzu sauce"]}, +{"id":"116686","label":"trying but failing to attach clip to cabinet door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["clip","cabinet door"]}, +{"id":"186136","label":"tipping cup with liquic over, so liquid falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","liquic","liquid"]}, +{"id":"156198","label":"touching (without moving) a side of a pitcher","template":"Touching (without moving) [part] of [something]","placeholders":["a side","a pitcher"]}, +{"id":"73112","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"127526","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"207720","label":"pushing pink toothbrush case from left to right","template":"Pushing [something] from left to right","placeholders":["pink toothbrush case"]}, +{"id":"108212","label":"moving a comb away from a box","template":"Moving [something] away from [something]","placeholders":["a comb","a box"]}, +{"id":"210620","label":"tearing receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["receipt"]}, +{"id":"41278","label":"tearing a note just a little bit","template":"Tearing [something] just a little bit","placeholders":["a note"]}, +{"id":"9586","label":"picking watch up","template":"Picking [something] up","placeholders":["watch"]}, +{"id":"212950","label":"plugging cord into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","wall plug"]}, +{"id":"111262","label":"pulling black umbrella from right to left","template":"Pulling [something] from right to left","placeholders":["black umbrella"]}, +{"id":"92734","label":"putting sharpener behind sticky note","template":"Putting [something] behind [something]","placeholders":["sharpener","sticky note"]}, +{"id":"168058","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"180443","label":"bending sheet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["sheet"]}, +{"id":"122055","label":"pulling a calculator out of a bag","template":"Pulling [something] out of [something]","placeholders":["a calculator","a bag"]}, +{"id":"171214","label":"showing that pills is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["pills","bottle"]}, +{"id":"143655","label":"taking spoon out of cup","template":"Taking [something] out of [something]","placeholders":["spoon","cup"]}, +{"id":"41637","label":"putting bunny doll in front of books","template":"Putting [something] in front of [something]","placeholders":["bunny doll","books"]}, +{"id":"141956","label":"moving pen closer to duster","template":"Moving [something] closer to [something]","placeholders":["pen","duster"]}, +{"id":"213817","label":"poking a hole into a tomato","template":"Poking a hole into [something soft]","placeholders":["a tomato"]}, +{"id":"102761","label":"pushing phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["phone"]}, +{"id":"183166","label":"bending a chopstick until it breaks","template":"Bending [something] until it breaks","placeholders":["a chopstick"]}, +{"id":"45579","label":"envelope falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["envelope"]}, +{"id":"27147","label":"moving potato and potato closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["potato","potato"]}, +{"id":"47782","label":"plugging a charger into a plugging but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a plugging"]}, +{"id":"112318","label":"picking toilet paper up","template":"Picking [something] up","placeholders":["toilet paper"]}, +{"id":"152540","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"1602","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"162322","label":"dropping fish into bowl of water","template":"Dropping [something] into [something]","placeholders":["fish","bowl of water"]}, +{"id":"15258","label":"pouring soda into glass","template":"Pouring [something] into [something]","placeholders":["soda","glass"]}, +{"id":"187397","label":"holding cup over box","template":"Holding [something] over [something]","placeholders":["cup","box"]}, +{"id":"140639","label":"taking the keys out of the glass","template":"Taking [something] out of [something]","placeholders":["the keys","the glass"]}, +{"id":"170734","label":"opening packet","template":"Opening [something]","placeholders":["packet"]}, +{"id":"138140","label":"wiping cleaner off of floor","template":"Wiping [something] off of [something]","placeholders":["cleaner","floor"]}, +{"id":"175186","label":"pulling one tealight candle from right to left","template":"Pulling [something] from right to left","placeholders":["one tealight candle"]}, +{"id":"124705","label":"hitting bear doll with toothbrush","template":"Hitting [something] with [something]","placeholders":["bear doll","toothbrush"]}, +{"id":"66338","label":"trying to bend a boxcutter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a boxcutter"]}, +{"id":"215518","label":"rolling car on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["car"]}, +{"id":"42","label":"putting a coin underneath a card","template":"Putting [something] underneath [something]","placeholders":["a coin","a card"]}, +{"id":"134668","label":"wiping liquid off of table","template":"Wiping [something] off of [something]","placeholders":["liquid","table"]}, +{"id":"154686","label":"putting 3 dice onto book","template":"Putting [number of] [something] onto [something]","placeholders":["3","dice","book"]}, +{"id":"122025","label":"showing cook books behind a toy","template":"Showing [something] behind [something]","placeholders":["cook books","a toy"]}, +{"id":"142506","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"24859","label":"putting comb in front of cup","template":"Putting [something] in front of [something]","placeholders":["comb","cup"]}, +{"id":"148983","label":"putting pen into mug","template":"Putting [something] into [something]","placeholders":["pen","mug"]}, +{"id":"51677","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"85848","label":"putting a pen to other pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen to other pens"]}, +{"id":"131591","label":"spinning globe that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["globe"]}, +{"id":"96872","label":"plugging phone into plug","template":"Plugging [something] into [something]","placeholders":["phone","plug"]}, +{"id":"49926","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"196916","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"146827","label":"showing a photo of children to the camera","template":"Showing a photo of [something] to the camera","placeholders":["children"]}, +{"id":"126312","label":"turning the camera upwards while filming bottle","template":"Turning the camera upwards while filming [something]","placeholders":["bottle"]}, +{"id":"175930","label":"uncovering mp4 player","template":"Uncovering [something]","placeholders":["mp4 player"]}, +{"id":"129387","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"139250","label":"opening mail box","template":"Opening [something]","placeholders":["mail box"]}, +{"id":"17480","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"7963","label":"putting a pen into a box","template":"Putting [something] into [something]","placeholders":["a pen","a box"]}, +{"id":"13421","label":"moving wallet and phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wallet","phone"]}, +{"id":"115954","label":"spilling water onto towel","template":"Spilling [something] onto [something]","placeholders":["water","towel"]}, +{"id":"108206","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"135330","label":"poking a pencil case so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pencil case"]}, +{"id":"140496","label":"dropping marker onto envelope","template":"Dropping [something] onto [something]","placeholders":["marker","envelope"]}, +{"id":"17537","label":"dropping cup behind cup","template":"Dropping [something] behind [something]","placeholders":["cup","cup"]}, +{"id":"91544","label":"pushing torch from left to right","template":"Pushing [something] from left to right","placeholders":["torch"]}, +{"id":"96366","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"70591","label":"plugging headphones into a cellphone","template":"Plugging [something] into [something]","placeholders":["headphones","a cellphone"]}, +{"id":"150592","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"171980","label":"picking remote up","template":"Picking [something] up","placeholders":["remote"]}, +{"id":"180603","label":"sprinkling powder onto floor","template":"Sprinkling [something] onto [something]","placeholders":["powder","floor"]}, +{"id":"90289","label":"keychain falling like a rock","template":"[Something] falling like a rock","placeholders":["keychain"]}, +{"id":"124791","label":"putting mug in front of pen","template":"Putting [something] in front of [something]","placeholders":["mug","pen"]}, +{"id":"9680","label":"plugging headphones into a computer","template":"Plugging [something] into [something]","placeholders":["headphones","a computer"]}, +{"id":"25891","label":"approaching sofa chair with your camera","template":"Approaching [something] with your camera","placeholders":["sofa chair"]}, +{"id":"186803","label":"covering a lid with a paper heart","template":"Covering [something] with [something]","placeholders":["a lid","a paper heart"]}, +{"id":"165562","label":"holding a trophy","template":"Holding [something]","placeholders":["a trophy"]}, +{"id":"190730","label":"newspaper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["newspaper"]}, +{"id":"3503","label":"showing a bottle on top of a table","template":"Showing [something] on top of [something]","placeholders":["a bottle","a table"]}, +{"id":"154322","label":"showing cube on top of box of sticks","template":"Showing [something] on top of [something]","placeholders":["cube","box of sticks"]}, +{"id":"183975","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"191939","label":"putting a card with other cards on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a card with other cards on the table"]}, +{"id":"9398","label":"covering rc with cushion","template":"Covering [something] with [something]","placeholders":["rc","cushion"]}, +{"id":"184837","label":"putting a pouch on a surface","template":"Putting [something] on a surface","placeholders":["a pouch"]}, +{"id":"159601","label":"pretending to throw wallet","template":"Pretending to throw [something]","placeholders":["wallet"]}, +{"id":"30564","label":"pretending to take post-it from table","template":"Pretending to take [something] from [somewhere]","placeholders":["post-it","table"]}, +{"id":"40204","label":"moving lighter closer to lighter","template":"Moving [something] closer to [something]","placeholders":["lighter","lighter"]}, +{"id":"212411","label":"moving a cell phone and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cell phone","paper"]}, +{"id":"40844","label":"putting charger next to pink book","template":"Putting [something] next to [something]","placeholders":["charger","pink book"]}, +{"id":"146539","label":"moving a cup and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","a box"]}, +{"id":"111489","label":"covering a stappler with a paper","template":"Covering [something] with [something]","placeholders":["a stappler","a paper"]}, +{"id":"10436","label":"pushing a pencil from right to left","template":"Pushing [something] from right to left","placeholders":["a pencil"]}, +{"id":"1736","label":"covering an ipad with a shirt","template":"Covering [something] with [something]","placeholders":["an ipad","a shirt"]}, +{"id":"43158","label":"putting glass onto letters","template":"Putting [something] onto [something]","placeholders":["glass","letters"]}, +{"id":"85527","label":"pushing box from left to right","template":"Pushing [something] from left to right","placeholders":["box"]}, +{"id":"149932","label":"lifting binder with calculator on it","template":"Lifting [something] with [something] on it","placeholders":["binder","calculator"]}, +{"id":"97311","label":"tilting folder cardboard with toy car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder cardboard","toy car"]}, +{"id":"24411","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"73583","label":"dropping a cup behind text books","template":"Dropping [something] behind [something]","placeholders":["a cup","text books"]}, +{"id":"138650","label":"dropping eye drops onto table","template":"Dropping [something] onto [something]","placeholders":["eye drops","table"]}, +{"id":"134106","label":"holding a measuring tape behind helmet","template":"Holding [something] behind [something]","placeholders":["a measuring tape","helmet"]}, +{"id":"2339","label":"pretending to take pillow from couch","template":"Pretending to take [something] from [somewhere]","placeholders":["pillow","couch"]}, +{"id":"60678","label":"moving something up","template":"Moving [something] up","placeholders":["something"]}, +{"id":"61167","label":"trying to bend glue stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["glue stick"]}, +{"id":"91685","label":"picking pencil up","template":"Picking [something] up","placeholders":["pencil"]}, +{"id":"9530","label":"tilting card with pebble on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["card","pebble"]}, +{"id":"126525","label":"papaer falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["papaer"]}, +{"id":"204731","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"18706","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"218259","label":"picking black play cards up","template":"Picking [something] up","placeholders":["black play cards"]}, +{"id":"31682","label":"pretending to pick orange up","template":"Pretending to pick [something] up","placeholders":["orange"]}, +{"id":"109343","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"169155","label":"putting something behind something","template":"Putting [something] behind [something]","placeholders":["something","something"]}, +{"id":"111239","label":"dropping chocolate onto desk","template":"Dropping [something] onto [something]","placeholders":["chocolate","desk"]}, +{"id":"54671","label":"turning empty cup upside down","template":"Turning [something] upside down","placeholders":["empty cup"]}, +{"id":"58270","label":"poking a hole into pillow","template":"Poking a hole into [something soft]","placeholders":["pillow"]}, +{"id":"128629","label":"spinning tape so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["tape"]}, +{"id":"136553","label":"plugging phone charger into power socket","template":"Plugging [something] into [something]","placeholders":["phone charger","power socket"]}, +{"id":"155305","label":"showing a pen next to a marker","template":"Showing [something] next to [something]","placeholders":["a pen","a marker"]}, +{"id":"26326","label":"putting book behind bag","template":"Putting [something] behind [something]","placeholders":["book","bag"]}, +{"id":"170618","label":"moving nail polish up","template":"Moving [something] up","placeholders":["nail polish"]}, +{"id":"52976","label":"uncovering sock","template":"Uncovering [something]","placeholders":["sock"]}, +{"id":"72604","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"36607","label":"folding washcloth","template":"Folding [something]","placeholders":["washcloth"]}, +{"id":"140413","label":"putting matchbox behind mirror","template":"Putting [something] behind [something]","placeholders":["matchbox","mirror"]}, +{"id":"75462","label":"putting shirt in front of basket","template":"Putting [something] in front of [something]","placeholders":["shirt","basket"]}, +{"id":"6339","label":"pushing green purse from right to left","template":"Pushing [something] from right to left","placeholders":["green purse"]}, +{"id":"26800","label":"pouring wine into glass","template":"Pouring [something] into [something]","placeholders":["wine","glass"]}, +{"id":"5184","label":"showing car behind column","template":"Showing [something] behind [something]","placeholders":["car","column"]}, +{"id":"12679","label":"moving belt down","template":"Moving [something] down","placeholders":["belt"]}, +{"id":"92034","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"194392","label":"putting mug, marker and stapler on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["mug","marker","stapler"]}, +{"id":"70931","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"166303","label":"putting a coffee cup next to a salt shaker","template":"Putting [something] next to [something]","placeholders":["a coffee cup","a salt shaker"]}, +{"id":"26649","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"30935","label":"tearing a post it note just a little bit","template":"Tearing [something] just a little bit","placeholders":["a post it note"]}, +{"id":"6750","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"203631","label":"turning a teddy panda bear upside down","template":"Turning [something] upside down","placeholders":["a teddy panda bear"]}, +{"id":"97527","label":"throwing shirt","template":"Throwing [something]","placeholders":["shirt"]}, +{"id":"191790","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"182452","label":"throwing usb cable","template":"Throwing [something]","placeholders":["usb cable"]}, +{"id":"77534","label":"tearing a tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a tissue paper"]}, +{"id":"68255","label":"spinning spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spinner"]}, +{"id":"170041","label":"pretending to poke plant","template":"Pretending to poke [something]","placeholders":["plant"]}, +{"id":"44432","label":"taking a soda can of many soda cans on a table","template":"Taking [one of many similar things on the table]","placeholders":["a soda can of many soda cans on a table"]}, +{"id":"200285","label":"bending torch so that it deforms","template":"Bending [something] so that it deforms","placeholders":["torch"]}, +{"id":"162979","label":"touching (without moving) a page of a dictionary","template":"Touching (without moving) [part] of [something]","placeholders":["a page","a dictionary"]}, +{"id":"127266","label":"holding book over cat","template":"Holding [something] over [something]","placeholders":["book","cat"]}, +{"id":"208496","label":"tipping something over","template":"Tipping [something] over","placeholders":["something"]}, +{"id":"154456","label":"moving magnet closer to magnet","template":"Moving [something] closer to [something]","placeholders":["magnet","magnet"]}, +{"id":"29507","label":"tilting box surface with tape on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box surface","tape"]}, +{"id":"165393","label":"covering tv remote with plastic bag","template":"Covering [something] with [something]","placeholders":["tv remote","plastic bag"]}, +{"id":"12868","label":"pushing marker from left to right","template":"Pushing [something] from left to right","placeholders":["marker"]}, +{"id":"172134","label":"plugging charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall socket"]}, +{"id":"105387","label":"pretending to open magazine without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["magazine"]}, +{"id":"106119","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"150548","label":"plugging charger into tablet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","tablet"]}, +{"id":"97445","label":"showing that pile of clothes is inside basket","template":"Showing that [something] is inside [something]","placeholders":["pile of clothes","basket"]}, +{"id":"17688","label":"pushing a book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a book"]}, +{"id":"178660","label":"trying to bend bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["bottle"]}, +{"id":"119917","label":"moving a scotch roll across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a scotch roll"]}, +{"id":"140238","label":"pushing key from left to right","template":"Pushing [something] from left to right","placeholders":["key"]}, +{"id":"179067","label":"picking flower up","template":"Picking [something] up","placeholders":["flower"]}, +{"id":"177104","label":"dropping coaster in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["coaster","pillow"]}, +{"id":"32457","label":"trying but failing to attach sock to envelope because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["sock","envelope"]}, +{"id":"158203","label":"showing a watch to the camera","template":"Showing [something] to the camera","placeholders":["a watch"]}, +{"id":"95795","label":"spinning stapler that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["stapler"]}, +{"id":"135350","label":"showing scissors to the camera","template":"Showing [something] to the camera","placeholders":["scissors"]}, +{"id":"22739","label":"moving towel away from towel","template":"Moving [something] away from [something]","placeholders":["towel","towel"]}, +{"id":"113983","label":"letting basketball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["basketball"]}, +{"id":"140044","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"74748","label":"twisting (wringing) washcloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["washcloth"]}, +{"id":"104278","label":"pushing calculator from left to right","template":"Pushing [something] from left to right","placeholders":["calculator"]}, +{"id":"113191","label":"tearing paperboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["paperboard"]}, +{"id":"98030","label":"a marker being deflected from a candle","template":"[Something] being deflected from [something]","placeholders":["a marker","a candle"]}, +{"id":"86065","label":"pretending to pick toy mario up","template":"Pretending to pick [something] up","placeholders":["toy mario"]}, +{"id":"57815","label":"dropping pen into cup","template":"Dropping [something] into [something]","placeholders":["pen","cup"]}, +{"id":"49298","label":"tilting cutting board with lid on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["cutting board","lid"]}, +{"id":"89640","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"76888","label":"moving away from chapstick with your camera","template":"Moving away from [something] with your camera","placeholders":["chapstick"]}, +{"id":"36207","label":"pretending to close cup board without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["cup board"]}, +{"id":"93317","label":"tearing a notecard into two pieces","template":"Tearing [something] into two pieces","placeholders":["a notecard"]}, +{"id":"63325","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"136583","label":"pushing ruler so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ruler"]}, +{"id":"143119","label":"putting tissue box on a surface","template":"Putting [something] on a surface","placeholders":["tissue box"]}, +{"id":"70751","label":"picking a notbook up","template":"Picking [something] up","placeholders":["a notbook"]}, +{"id":"145496","label":"holding tangerine over mug","template":"Holding [something] over [something]","placeholders":["tangerine","mug"]}, +{"id":"64503","label":"piling notebooks up","template":"Piling [something] up","placeholders":["notebooks"]}, +{"id":"26498","label":"pulling two ends of a bean bag so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a bean bag"]}, +{"id":"148626","label":"showing a pen on top of a notepad","template":"Showing [something] on top of [something]","placeholders":["a pen","a notepad"]}, +{"id":"17636","label":"dropping sellotape onto box","template":"Dropping [something] onto [something]","placeholders":["sellotape","box"]}, +{"id":"118132","label":"poking an apple so that it falls over","template":"Poking [something] so that it falls over","placeholders":["an apple"]}, +{"id":"61276","label":"poking towel so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["towel"]}, +{"id":"29304","label":"turning box upside down","template":"Turning [something] upside down","placeholders":["box"]}, +{"id":"99162","label":"pretending to put plate into sink","template":"Pretending to put [something] into [something]","placeholders":["plate","sink"]}, +{"id":"155006","label":"covering bottle with cloth","template":"Covering [something] with [something]","placeholders":["bottle","cloth"]}, +{"id":"136227","label":"putting carom coin onto powder tin","template":"Putting [something] onto [something]","placeholders":["carom coin","powder tin"]}, +{"id":"180950","label":"turning the camera left while filming bottle","template":"Turning the camera left while filming [something]","placeholders":["bottle"]}, +{"id":"5082","label":"bending paper clip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paper clip"]}, +{"id":"65210","label":"poking something so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["something"]}, +{"id":"180227","label":"poking a hole into cardboard","template":"Poking a hole into [something soft]","placeholders":["cardboard"]}, +{"id":"161158","label":"rolling dumbell on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["dumbell"]}, +{"id":"191201","label":"putting tourch next to rubix cube","template":"Putting [something] next to [something]","placeholders":["tourch","rubix cube"]}, +{"id":"110022","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"93640","label":"stuffing towel into box","template":"Stuffing [something] into [something]","placeholders":["towel","box"]}, +{"id":"166061","label":"dropping phone behind pillow","template":"Dropping [something] behind [something]","placeholders":["phone","pillow"]}, +{"id":"116084","label":"bending something until it breaks","template":"Bending [something] until it breaks","placeholders":["something"]}, +{"id":"163174","label":"taking screw out of bottle","template":"Taking [something] out of [something]","placeholders":["screw","bottle"]}, +{"id":"57433","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"63108","label":"trying to pour water into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a cup"]}, +{"id":"148042","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"60149","label":"pushing trashcan so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["trashcan"]}, +{"id":"186252","label":"putting cup into cup holder","template":"Putting [something] into [something]","placeholders":["cup","cup holder"]}, +{"id":"161448","label":"letting a bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a bottle"]}, +{"id":"698","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"96047","label":"lifting up one end of pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pen"]}, +{"id":"76254","label":"pretending to be tearing carry bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["carry bag"]}, +{"id":"32312","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"25513","label":"taking book out of cupboard","template":"Taking [something] out of [something]","placeholders":["book","cupboard"]}, +{"id":"189910","label":"moving away from a chair with your camera","template":"Moving away from [something] with your camera","placeholders":["a chair"]}, +{"id":"50968","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"135130","label":"poking a charger so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a charger"]}, +{"id":"115399","label":"putting a calculator in front of the pen","template":"Putting [something] in front of [something]","placeholders":["a calculator","the pen"]}, +{"id":"135479","label":"wiping cream off of furniture","template":"Wiping [something] off of [something]","placeholders":["cream","furniture"]}, +{"id":"119565","label":"dropping bottle in front of dustbin","template":"Dropping [something] in front of [something]","placeholders":["bottle","dustbin"]}, +{"id":"116330","label":"putting book next to bag","template":"Putting [something] next to [something]","placeholders":["book","bag"]}, +{"id":"51527","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"123522","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"213766","label":"showing shell fish to the camera","template":"Showing [something] to the camera","placeholders":["shell fish"]}, +{"id":"10631","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"67125","label":"tilting lumber with pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["lumber","pencil"]}, +{"id":"67872","label":"squeezing toy","template":"Squeezing [something]","placeholders":["toy"]}, +{"id":"179843","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"193399","label":"throwing book against wall","template":"Throwing [something] against [something]","placeholders":["book","wall"]}, +{"id":"183079","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"67977","label":"putting a book in front of a candle","template":"Putting [something] in front of [something]","placeholders":["a book","a candle"]}, +{"id":"122018","label":"stuffing sharpener into rack","template":"Stuffing [something] into [something]","placeholders":["sharpener","rack"]}, +{"id":"155915","label":"tipping a covered bottle over","template":"Tipping [something] over","placeholders":["a covered bottle"]}, +{"id":"197391","label":"opening a closet","template":"Opening [something]","placeholders":["a closet"]}, +{"id":"201350","label":"dropping piece into glass","template":"Dropping [something] into [something]","placeholders":["piece","glass"]}, +{"id":"65000","label":"tilting tissue with remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tissue","remote"]}, +{"id":"113274","label":"showing that teapot is empty","template":"Showing that [something] is empty","placeholders":["teapot"]}, +{"id":"110104","label":"pushing pan from right to left","template":"Pushing [something] from right to left","placeholders":["pan"]}, +{"id":"131147","label":"poking can so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["can"]}, +{"id":"198243","label":"opening a laptop","template":"Opening [something]","placeholders":["a laptop"]}, +{"id":"197535","label":"showing a wine cork on top of a book","template":"Showing [something] on top of [something]","placeholders":["a wine cork","a book"]}, +{"id":"7634","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"146645","label":"rolling a metal container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a metal container"]}, +{"id":"96049","label":"putting cup behind mug","template":"Putting [something] behind [something]","placeholders":["cup","mug"]}, +{"id":"208397","label":"pretending to turn book upside down","template":"Pretending to turn [something] upside down","placeholders":["book"]}, +{"id":"181428","label":"plugging electric cord into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["electric cord","power outlet"]}, +{"id":"162094","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"213934","label":"attaching plug to machine","template":"Attaching [something] to [something]","placeholders":["plug","machine"]}, +{"id":"74596","label":"moving a phone towards the camera","template":"Moving [something] towards the camera","placeholders":["a phone"]}, +{"id":"171227","label":"putting pen behind notebook","template":"Putting [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"85427","label":"throwing pipeapple in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pipeapple"]}, +{"id":"152197","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"175715","label":"covering a phone with a book","template":"Covering [something] with [something]","placeholders":["a phone","a book"]}, +{"id":"72969","label":"pushing cable so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cable"]}, +{"id":"211485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"23379","label":"crayon colliding with crayon and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["crayon","crayon"]}, +{"id":"53038","label":"stuffing cloth into cup","template":"Stuffing [something] into [something]","placeholders":["cloth","cup"]}, +{"id":"125681","label":"approaching toy idol with your camera","template":"Approaching [something] with your camera","placeholders":["toy idol"]}, +{"id":"94633","label":"turning the camera right while filming car","template":"Turning the camera right while filming [something]","placeholders":["car"]}, +{"id":"114056","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"92923","label":"stacking 5 books","template":"Stacking [number of] [something]","placeholders":["5","books"]}, +{"id":"153645","label":"pouring soda out of a bottle","template":"Pouring [something] out of [something]","placeholders":["soda","a bottle"]}, +{"id":"67430","label":"moving lid of plastic jar","template":"Moving [part] of [something]","placeholders":["lid","plastic jar"]}, +{"id":"70696","label":"dropping chocolate in front of glass","template":"Dropping [something] in front of [something]","placeholders":["chocolate","glass"]}, +{"id":"107291","label":"moving note book up","template":"Moving [something] up","placeholders":["note book"]}, +{"id":"33666","label":"touching (without moving) top of soap","template":"Touching (without moving) [part] of [something]","placeholders":["top","soap"]}, +{"id":"192925","label":"putting canned food on a surface","template":"Putting [something] on a surface","placeholders":["canned food"]}, +{"id":"85337","label":"trying but failing to attach a toy frog to a door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a toy frog","a door"]}, +{"id":"19618","label":"turning the camera left while filming hat","template":"Turning the camera left while filming [something]","placeholders":["hat"]}, +{"id":"152476","label":"spreading peanut butter onto rice cake","template":"Spreading [something] onto [something]","placeholders":["peanut butter","rice cake"]}, +{"id":"123620","label":"scooping salsa up with chip","template":"Scooping [something] up with [something]","placeholders":["salsa","chip"]}, +{"id":"27362","label":"letting a coconut roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a coconut"]}, +{"id":"133624","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"35071","label":"remote falling like a rock","template":"[Something] falling like a rock","placeholders":["remote"]}, +{"id":"41547","label":"stacking three pieces of paper towel","template":"Stacking [number of] [something]","placeholders":["three","pieces of paper towel"]}, +{"id":"162652","label":"covering a battery with a letter","template":"Covering [something] with [something]","placeholders":["a battery","a letter"]}, +{"id":"28203","label":"putting thread spool behind jar","template":"Putting [something] behind [something]","placeholders":["thread spool","jar"]}, +{"id":"55035","label":"putting deo behind book","template":"Putting [something] behind [something]","placeholders":["deo","book"]}, +{"id":"200694","label":"moving a cup and a jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","a jar"]}, +{"id":"100492","label":"dropping tape into candle","template":"Dropping [something] into [something]","placeholders":["tape","candle"]}, +{"id":"95811","label":"pulling chord out of vacuum cleaner","template":"Pulling [something] out of [something]","placeholders":["chord","vacuum cleaner"]}, +{"id":"87284","label":"tipping plastic cup with table tennis balls over, so table tennis balls falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["plastic cup","table tennis balls","table tennis balls"]}, +{"id":"200106","label":"plugging charger into switch but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","switch"]}, +{"id":"3752","label":"putting paper onto paper","template":"Putting [something] onto [something]","placeholders":["paper","paper"]}, +{"id":"74763","label":"hitting table with paperweight","template":"Hitting [something] with [something]","placeholders":["table","paperweight"]}, +{"id":"68127","label":"pushing metal box with highlighter","template":"Pushing [something] with [something]","placeholders":["metal box","highlighter"]}, +{"id":"86174","label":"dropping a coin next to a remote","template":"Dropping [something] next to [something]","placeholders":["a coin","a remote"]}, +{"id":"177367","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"82861","label":"pouring water onto a glass","template":"Pouring [something] onto [something]","placeholders":["water","a glass"]}, +{"id":"163187","label":"moving a box away from the spray bottle","template":"Moving [something] away from [something]","placeholders":["a box","the spray bottle"]}, +{"id":"147742","label":"holding a paint brush behind a doll","template":"Holding [something] behind [something]","placeholders":["a paint brush","a doll"]}, +{"id":"58794","label":"dropping a balloon into a bowl","template":"Dropping [something] into [something]","placeholders":["a balloon","a bowl"]}, +{"id":"143700","label":"plugging power plug into socket","template":"Plugging [something] into [something]","placeholders":["power plug","socket"]}, +{"id":"207659","label":"moving hair comb closer to hair brush","template":"Moving [something] closer to [something]","placeholders":["hair comb","hair brush"]}, +{"id":"202503","label":"putting shirt into basket","template":"Putting [something] into [something]","placeholders":["shirt","basket"]}, +{"id":"102746","label":"putting wallet, luggage tag and box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wallet","luggage tag","box"]}, +{"id":"54813","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"4205","label":"dropping a book onto a table","template":"Dropping [something] onto [something]","placeholders":["a book","a table"]}, +{"id":"123370","label":"spinning pack of cigarettes that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pack of cigarettes"]}, +{"id":"207296","label":"dropping pen next to box","template":"Dropping [something] next to [something]","placeholders":["pen","box"]}, +{"id":"214030","label":"plugging phone charger into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone charger","wall plug"]}, +{"id":"177027","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"65710","label":"wiping a smiley face off of a whiteboard","template":"Wiping [something] off of [something]","placeholders":["a smiley face","a whiteboard"]}, +{"id":"178049","label":"pretending to put lighter on a surface","template":"Pretending to put [something] on a surface","placeholders":["lighter"]}, +{"id":"203633","label":"dropping an ecig onto the floor","template":"Dropping [something] onto [something]","placeholders":["an ecig","the floor"]}, +{"id":"130699","label":"laying a thermos on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a thermos"]}, +{"id":"152272","label":"plugging cord into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","power socket"]}, +{"id":"39537","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"30426","label":"showing hair clip on top of black pouch","template":"Showing [something] on top of [something]","placeholders":["hair clip","black pouch"]}, +{"id":"152698","label":"picking an orange up","template":"Picking [something] up","placeholders":["an orange"]}, +{"id":"113865","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"100196","label":"tilting brown note with spectacles on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["brown note","spectacles"]}, +{"id":"218954","label":"taking a highlighter out of a pencil-case","template":"Taking [something] out of [something]","placeholders":["a highlighter","a pencil-case"]}, +{"id":"171053","label":"holding ball next to iphone","template":"Holding [something] next to [something]","placeholders":["ball","iphone"]}, +{"id":"75649","label":"putting slipper underneath chair","template":"Putting [something] underneath [something]","placeholders":["slipper","chair"]}, +{"id":"122403","label":"stuffing paper into bottle","template":"Stuffing [something] into [something]","placeholders":["paper","bottle"]}, +{"id":"126698","label":"pulling stapler from right to left","template":"Pulling [something] from right to left","placeholders":["stapler"]}, +{"id":"59470","label":"tipping container with coffee grounds over, so coffee falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["container","coffee grounds","coffee"]}, +{"id":"196117","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"186862","label":"putting a toy car","template":"Putting [something similar to other things that are already on the table]","placeholders":["a toy car"]}, +{"id":"125198","label":"pretending to put a sellotape into a plastic box","template":"Pretending to put [something] into [something]","placeholders":["a sellotape","a plastic box"]}, +{"id":"166344","label":"wiping flour off of bowl","template":"Wiping [something] off of [something]","placeholders":["flour","bowl"]}, +{"id":"52922","label":"dropping pen onto floor","template":"Dropping [something] onto [something]","placeholders":["pen","floor"]}, +{"id":"163835","label":"moving knife and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["knife","fork"]}, +{"id":"55325","label":"pretending or trying and failing to twist water bottle","template":"Pretending or trying and failing to twist [something]","placeholders":["water bottle"]}, +{"id":"53320","label":"moving wristwatch and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wristwatch","phone"]}, +{"id":"79758","label":"turning the camera upwards while filming bike","template":"Turning the camera upwards while filming [something]","placeholders":["bike"]}, +{"id":"113782","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"195650","label":"pretending to take tea light candle out of bag","template":"Pretending to take [something] out of [something]","placeholders":["tea light candle","bag"]}, +{"id":"81621","label":"opening container","template":"Opening [something]","placeholders":["container"]}, +{"id":"120367","label":"pushing red toy car onto battery","template":"Pushing [something] onto [something]","placeholders":["red toy car","battery"]}, +{"id":"122669","label":"putting marker onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["marker"]}, +{"id":"176851","label":"letting car roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["car"]}, +{"id":"202652","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"82961","label":"moving cards and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cards","paper"]}, +{"id":"88268","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"188953","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"16181","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"101934","label":"putting a coin into a jar","template":"Putting [something] into [something]","placeholders":["a coin","a jar"]}, +{"id":"102","label":"pretending to take a rubix cube from top of a book","template":"Pretending to take [something] from [somewhere]","placeholders":["a rubix cube","top of a book"]}, +{"id":"209071","label":"poking water bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["water bottle"]}, +{"id":"37797","label":"moving a banana and a pomengranate closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a banana","a pomengranate"]}, +{"id":"183666","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"206551","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"87956","label":"putting bottled water in front of nail cutter","template":"Putting [something] in front of [something]","placeholders":["bottled water","nail cutter"]}, +{"id":"39021","label":"moving magnet up","template":"Moving [something] up","placeholders":["magnet"]}, +{"id":"13646","label":"moving little jar and little jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["little jar","little jar"]}, +{"id":"27024","label":"throwing water bottle against wall","template":"Throwing [something] against [something]","placeholders":["water bottle","wall"]}, +{"id":"118778","label":"holding a bottle over a flashlight","template":"Holding [something] over [something]","placeholders":["a bottle","a flashlight"]}, +{"id":"71564","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"107748","label":"wrench falling like a rock","template":"[Something] falling like a rock","placeholders":["wrench"]}, +{"id":"193797","label":"pretending to sprinkle air onto table decor","template":"Pretending to sprinkle air onto [something]","placeholders":["table decor"]}, +{"id":"220816","label":"throwing bathrobe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bathrobe"]}, +{"id":"120358","label":"showing that paper clips is inside a plastic box","template":"Showing that [something] is inside [something]","placeholders":["paper clips","a plastic box"]}, +{"id":"76647","label":"putting candle, toy and perfume bottle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["candle","toy","perfume bottle"]}, +{"id":"97946","label":"holding a paint brush over a doll","template":"Holding [something] over [something]","placeholders":["a paint brush","a doll"]}, +{"id":"56829","label":"pretending to take a shot glass out of a measuring cup","template":"Pretending to take [something] out of [something]","placeholders":["a shot glass","a measuring cup"]}, +{"id":"160006","label":"rolling a round rubber bush on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a round rubber bush"]}, +{"id":"148836","label":"showing box behind plush","template":"Showing [something] behind [something]","placeholders":["box","plush"]}, +{"id":"5853","label":"pushing a card so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a card"]}, +{"id":"36710","label":"showing a photo of a carrots to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a carrots"]}, +{"id":"1425","label":"covering light bulb with napkin","template":"Covering [something] with [something]","placeholders":["light bulb","napkin"]}, +{"id":"143589","label":"pouring something into something","template":"Pouring [something] into [something]","placeholders":["something","something"]}, +{"id":"217149","label":"wiping cereal off of bed","template":"Wiping [something] off of [something]","placeholders":["cereal","bed"]}, +{"id":"29132","label":"pretending to be tearing tearing a plastic cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tearing a plastic cover"]}, +{"id":"146248","label":"dropping an envelope in front of a remote","template":"Dropping [something] in front of [something]","placeholders":["an envelope","a remote"]}, +{"id":"169960","label":"showing coin on top of container","template":"Showing [something] on top of [something]","placeholders":["coin","container"]}, +{"id":"102218","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"153067","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"44152","label":"lifting a surface with a fork on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a fork"]}, +{"id":"63632","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"74297","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"17440","label":"pretending to take cube from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cube","table"]}, +{"id":"4427","label":"unfolding a napkin","template":"Unfolding [something]","placeholders":["a napkin"]}, +{"id":"87208","label":"dropping ear plug carrying case in front of a water bottle","template":"Dropping [something] in front of [something]","placeholders":["ear plug carrying case","a water bottle"]}, +{"id":"69702","label":"pulling brown bracelet from right to left","template":"Pulling [something] from right to left","placeholders":["brown bracelet"]}, +{"id":"93814","label":"moving remote away from coaster","template":"Moving [something] away from [something]","placeholders":["remote","coaster"]}, +{"id":"192596","label":"tilting box with waterbottle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","waterbottle"]}, +{"id":"94328","label":"throwing a computer duster in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a computer duster"]}, +{"id":"20649","label":"covering comb with plate","template":"Covering [something] with [something]","placeholders":["comb","plate"]}, +{"id":"24451","label":"removing glass, revealing highlighter behind","template":"Removing [something], revealing [something] behind","placeholders":["glass","highlighter"]}, +{"id":"89805","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"183051","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"29293","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"193487","label":"plugging adapter into socket","template":"Plugging [something] into [something]","placeholders":["adapter","socket"]}, +{"id":"166475","label":"approaching dogs with your camera","template":"Approaching [something] with your camera","placeholders":["dogs"]}, +{"id":"124976","label":"throwing remote onto a surface","template":"Throwing [something] onto a surface","placeholders":["remote"]}, +{"id":"76863","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"127108","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"43079","label":"putting lotion upright on the table","template":"Putting [something] upright on the table","placeholders":["lotion"]}, +{"id":"28283","label":"pretending to pick firm plastic up","template":"Pretending to pick [something] up","placeholders":["firm plastic"]}, +{"id":"10922","label":"showing a backpack on top of a chair","template":"Showing [something] on top of [something]","placeholders":["a backpack","a chair"]}, +{"id":"17878","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"205288","label":"pushing notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["notebook"]}, +{"id":"20824","label":"spilling water onto plate","template":"Spilling [something] onto [something]","placeholders":["water","plate"]}, +{"id":"133819","label":"pretending to open a container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a container"]}, +{"id":"107292","label":"dropping marker onto scale","template":"Dropping [something] onto [something]","placeholders":["marker","scale"]}, +{"id":"81792","label":"sprinkling water onto alovera shrub","template":"Sprinkling [something] onto [something]","placeholders":["water","alovera shrub"]}, +{"id":"11976","label":"letting a musical tabla roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a musical tabla"]}, +{"id":"187032","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"169730","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"77230","label":"tipping a container with soap in it over, so soap falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a container","soap in it","soap"]}, +{"id":"94882","label":"putting rubix cube into cookie box","template":"Putting [something] into [something]","placeholders":["rubix cube","cookie box"]}, +{"id":"111202","label":"touching (without moving) cover of plastic box","template":"Touching (without moving) [part] of [something]","placeholders":["cover","plastic box"]}, +{"id":"169328","label":"pushing empty treat bar wrap from right to left","template":"Pushing [something] from right to left","placeholders":["empty treat bar wrap"]}, +{"id":"41432","label":"putting nutrition bar that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["nutrition bar"]}, +{"id":"112554","label":"pushing cell from left to right","template":"Pushing [something] from left to right","placeholders":["cell"]}, +{"id":"80963","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"106417","label":"putting a coin into a plastic bag","template":"Putting [something] into [something]","placeholders":["a coin","a plastic bag"]}, +{"id":"101772","label":"showing plush dragon behind globe","template":"Showing [something] behind [something]","placeholders":["plush dragon","globe"]}, +{"id":"216066","label":"taking mobile phone from car dashboard","template":"Taking [something] from [somewhere]","placeholders":["mobile phone","car dashboard"]}, +{"id":"61773","label":"moving bowls down","template":"Moving [something] down","placeholders":["bowls"]}, +{"id":"120935","label":"pulling green headlight from right to left","template":"Pulling [something] from right to left","placeholders":["green headlight"]}, +{"id":"65579","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"211963","label":"scooping cat litter up with a scoop","template":"Scooping [something] up with [something]","placeholders":["cat litter","a scoop"]}, +{"id":"18322","label":"dropping wipe onto box","template":"Dropping [something] onto [something]","placeholders":["wipe","box"]}, +{"id":"27442","label":"throwing toothpaste","template":"Throwing [something]","placeholders":["toothpaste"]}, +{"id":"70814","label":"pretending or failing to wipe emblem off of cup","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["emblem","cup"]}, +{"id":"52138","label":"approaching toy with your camera","template":"Approaching [something] with your camera","placeholders":["toy"]}, +{"id":"142509","label":"covering phone with paper","template":"Covering [something] with [something]","placeholders":["phone","paper"]}, +{"id":"161170","label":"plugging cord into computer","template":"Plugging [something] into [something]","placeholders":["cord","computer"]}, +{"id":"139218","label":"spilling pens behind a case","template":"Spilling [something] behind [something]","placeholders":["pens","a case"]}, +{"id":"178579","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"106135","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"117714","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"55868","label":"pretending to take bottle from stone","template":"Pretending to take [something] from [somewhere]","placeholders":["bottle","stone"]}, +{"id":"100159","label":"pushing \\\"magnet\\\"spin\\\"push so it spins","template":"Pushing [something] so it spins","placeholders":["\\\"magnet\\\"spin\\\"push"]}, +{"id":"99519","label":"putting binder clips next to a cup","template":"Putting [something] next to [something]","placeholders":["binder clips","a cup"]}, +{"id":"120515","label":"holding purple container in front of notecard","template":"Holding [something] in front of [something]","placeholders":["purple container","notecard"]}, +{"id":"127727","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"113585","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"127897","label":"moving knife and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["knife","fork"]}, +{"id":"72452","label":"pulling toothpaste from right to left","template":"Pulling [something] from right to left","placeholders":["toothpaste"]}, +{"id":"69441","label":"unfolding drawstring bag","template":"Unfolding [something]","placeholders":["drawstring bag"]}, +{"id":"30229","label":"pretending to open red dairy without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["red dairy"]}, +{"id":"214477","label":"pretending to poke a can","template":"Pretending to poke [something]","placeholders":["a can"]}, +{"id":"5746","label":"stuffing cotton filling into pillow","template":"Stuffing [something] into [something]","placeholders":["cotton filling","pillow"]}, +{"id":"120180","label":"putting a smartphone on a surface","template":"Putting [something] on a surface","placeholders":["a smartphone"]}, +{"id":"187784","label":"showing toy car to the camera","template":"Showing [something] to the camera","placeholders":["toy car"]}, +{"id":"29744","label":"holding glasses in front of plate","template":"Holding [something] in front of [something]","placeholders":["glasses","plate"]}, +{"id":"155415","label":"putting bottle into paper bin","template":"Putting [something] into [something]","placeholders":["bottle","paper bin"]}, +{"id":"21664","label":"pushing book from right to left","template":"Pushing [something] from right to left","placeholders":["book"]}, +{"id":"20588","label":"putting dictionary on the edge of pencil box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["dictionary","pencil box"]}, +{"id":"6127","label":"dropping a coin behind a shoe brush","template":"Dropping [something] behind [something]","placeholders":["a coin","a shoe brush"]}, +{"id":"74828","label":"putting charger adapter on a surface","template":"Putting [something] on a surface","placeholders":["charger adapter"]}, +{"id":"202589","label":"holding calculator next to table lamp","template":"Holding [something] next to [something]","placeholders":["calculator","table lamp"]}, +{"id":"136210","label":"tearing tea bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["tea bag"]}, +{"id":"186474","label":"showing that spectacle is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["spectacle","spectacle box"]}, +{"id":"90361","label":"pushing small bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["small bottle"]}, +{"id":"29569","label":"turning the camera right while filming audio sistem","template":"Turning the camera right while filming [something]","placeholders":["audio sistem"]}, +{"id":"108232","label":"showing that fork is inside pan","template":"Showing that [something] is inside [something]","placeholders":["fork","pan"]}, +{"id":"67146","label":"bending a chopstick until it breaks","template":"Bending [something] until it breaks","placeholders":["a chopstick"]}, +{"id":"180462","label":"holding phone next to bottle","template":"Holding [something] next to [something]","placeholders":["phone","bottle"]}, +{"id":"79814","label":"pushing a matchstick onto a comb","template":"Pushing [something] onto [something]","placeholders":["a matchstick","a comb"]}, +{"id":"207874","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"59723","label":"turning the camera left while filming tv","template":"Turning the camera left while filming [something]","placeholders":["tv"]}, +{"id":"162736","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"215694","label":"showing that small box is empty","template":"Showing that [something] is empty","placeholders":["small box"]}, +{"id":"112291","label":"lifting glass up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["glass"]}, +{"id":"154527","label":"showing a shell on top of book","template":"Showing [something] on top of [something]","placeholders":["a shell","book"]}, +{"id":"78865","label":"throwing yellow chalk piece onto a surface","template":"Throwing [something] onto a surface","placeholders":["yellow chalk piece"]}, +{"id":"109773","label":"holding bottle of water","template":"Holding [something]","placeholders":["bottle of water"]}, +{"id":"110025","label":"attaching tape to paper","template":"Attaching [something] to [something]","placeholders":["tape","paper"]}, +{"id":"204475","label":"digging pocket bible out of blanket","template":"Digging [something] out of [something]","placeholders":["pocket bible","blanket"]}, +{"id":"212638","label":"pretending to scoop dhal up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["dhal","spoon"]}, +{"id":"20620","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"169138","label":"moving a cup away from a book","template":"Moving [something] away from [something]","placeholders":["a cup","a book"]}, +{"id":"36087","label":"turning the camera left while filming pill bottle","template":"Turning the camera left while filming [something]","placeholders":["pill bottle"]}, +{"id":"56259","label":"pushing blue colour spectacle box with red spoon","template":"Pushing [something] with [something]","placeholders":["blue colour spectacle box","red spoon"]}, +{"id":"167449","label":"bracelet falling like a rock","template":"[Something] falling like a rock","placeholders":["bracelet"]}, +{"id":"101391","label":"putting a sandal that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a sandal"]}, +{"id":"151271","label":"plugging pendrive into usb port","template":"Plugging [something] into [something]","placeholders":["pendrive","usb port"]}, +{"id":"172391","label":"a spinner falling like a rock","template":"[Something] falling like a rock","placeholders":["a spinner"]}, +{"id":"212579","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"162844","label":"putting fidget spinner behind jar","template":"Putting [something] behind [something]","placeholders":["fidget spinner","jar"]}, +{"id":"156133","label":"letting something roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["something"]}, +{"id":"25652","label":"showing pens behind a case","template":"Showing [something] behind [something]","placeholders":["pens","a case"]}, +{"id":"150758","label":"putting bowl into plate","template":"Putting [something] into [something]","placeholders":["bowl","plate"]}, +{"id":"115040","label":"putting rubix cube in front of battery","template":"Putting [something] in front of [something]","placeholders":["rubix cube","battery"]}, +{"id":"54423","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"99450","label":"putting 2 black toy wheels onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","black toy wheels","yellow note"]}, +{"id":"108469","label":"pushing white badge from right to left","template":"Pushing [something] from right to left","placeholders":["white badge"]}, +{"id":"174209","label":"plugging pendrive into laptop","template":"Plugging [something] into [something]","placeholders":["pendrive","laptop"]}, +{"id":"162798","label":"moving soda and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["soda","box"]}, +{"id":"148462","label":"moving lotion closer to flask","template":"Moving [something] closer to [something]","placeholders":["lotion","flask"]}, +{"id":"73284","label":"taking chalk out of box of chalk","template":"Taking [something] out of [something]","placeholders":["chalk","box of chalk"]}, +{"id":"204524","label":"pouring water into a plate","template":"Pouring [something] into [something]","placeholders":["water","a plate"]}, +{"id":"100896","label":"hitting box with note","template":"Hitting [something] with [something]","placeholders":["box","note"]}, +{"id":"167434","label":"showing that hot case is empty","template":"Showing that [something] is empty","placeholders":["hot case"]}, +{"id":"156235","label":"wooden pice colliding with other wooden piece and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["wooden pice","other wooden piece"]}, +{"id":"98918","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"152923","label":"holding tablet box next to punching machine","template":"Holding [something] next to [something]","placeholders":["tablet box","punching machine"]}, +{"id":"168639","label":"showing that a bag is empty","template":"Showing that [something] is empty","placeholders":["a bag"]}, +{"id":"197771","label":"pushing tv remote controller so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["tv remote controller"]}, +{"id":"187529","label":"poking toy car so that it spins around","template":"Poking [something] so that it spins around","placeholders":["toy car"]}, +{"id":"59778","label":"tipping tamper over","template":"Tipping [something] over","placeholders":["tamper"]}, +{"id":"4381","label":"pretending to take toothbrush from bin","template":"Pretending to take [something] from [somewhere]","placeholders":["toothbrush","bin"]}, +{"id":"187546","label":"throwing a plastic bottle against a door","template":"Throwing [something] against [something]","placeholders":["a plastic bottle","a door"]}, +{"id":"200287","label":"pretending to take marker out of mug","template":"Pretending to take [something] out of [something]","placeholders":["marker","mug"]}, +{"id":"55394","label":"moving small statue away from the camera","template":"Moving [something] away from the camera","placeholders":["small statue"]}, +{"id":"115265","label":"tilting game with flowers on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["game","flowers"]}, +{"id":"180028","label":"covering a phone with a blanket","template":"Covering [something] with [something]","placeholders":["a phone","a blanket"]}, +{"id":"177825","label":"pretending to take a pullover from a drawer","template":"Pretending to take [something] from [somewhere]","placeholders":["a pullover","a drawer"]}, +{"id":"123240","label":"stacking 2 bowls","template":"Stacking [number of] [something]","placeholders":["2","bowls"]}, +{"id":"192855","label":"spinning smiley ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["smiley ball"]}, +{"id":"209640","label":"stuffing tissue paper into plastic bag","template":"Stuffing [something] into [something]","placeholders":["tissue paper","plastic bag"]}, +{"id":"210932","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"115545","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"144689","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"83822","label":"moving purple container down","template":"Moving [something] down","placeholders":["purple container"]}, +{"id":"108536","label":"pretending to put cassete tape into mug","template":"Pretending to put [something] into [something]","placeholders":["cassete tape","mug"]}, +{"id":"155995","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"152813","label":"pushing pencil from left to right","template":"Pushing [something] from left to right","placeholders":["pencil"]}, +{"id":"103899","label":"throwing pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pillow"]}, +{"id":"90056","label":"moving book and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","bottle"]}, +{"id":"46853","label":"covering bangles with leaf","template":"Covering [something] with [something]","placeholders":["bangles","leaf"]}, +{"id":"77924","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"208971","label":"spinning adapter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["adapter"]}, +{"id":"19108","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"139527","label":"pushing orange post-it so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["orange post-it"]}, +{"id":"76627","label":"pulling shirt out of bag","template":"Pulling [something] out of [something]","placeholders":["shirt","bag"]}, +{"id":"213650","label":"pretending to be tearing stretch band","template":"Pretending to be tearing [something that is not tearable]","placeholders":["stretch band"]}, +{"id":"127844","label":"squeezing dvd case","template":"Squeezing [something]","placeholders":["dvd case"]}, +{"id":"171064","label":"stuffing pen into plastic cup","template":"Stuffing [something] into [something]","placeholders":["pen","plastic cup"]}, +{"id":"123377","label":"stuffing a dishcloth into a small cup","template":"Stuffing [something] into [something]","placeholders":["a dishcloth","a small cup"]}, +{"id":"7635","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"168143","label":"moving scissors closer to hair brush","template":"Moving [something] closer to [something]","placeholders":["scissors","hair brush"]}, +{"id":"211216","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"67421","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"60567","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"88503","label":"trying to pour something into something, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["something","something"]}, +{"id":"191932","label":"turning the camera upwards while filming black remote","template":"Turning the camera upwards while filming [something]","placeholders":["black remote"]}, +{"id":"99506","label":"lifting up one end of a towel, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a towel"]}, +{"id":"149435","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"15177","label":"putting white cup and red cup on the table","template":"Putting [something] and [something] on the table","placeholders":["white cup","red cup"]}, +{"id":"81202","label":"lifting glass with pinecone on it","template":"Lifting [something] with [something] on it","placeholders":["glass","pinecone"]}, +{"id":"134958","label":"piling containers up","template":"Piling [something] up","placeholders":["containers"]}, +{"id":"43343","label":"holding remote behind comb","template":"Holding [something] behind [something]","placeholders":["remote","comb"]}, +{"id":"128786","label":"letting a can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a can"]}, +{"id":"24975","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"67876","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"86392","label":"folding a dish towel","template":"Folding [something]","placeholders":["a dish towel"]}, +{"id":"180793","label":"moving candle up","template":"Moving [something] up","placeholders":["candle"]}, +{"id":"14401","label":"pushing a sticky notes pad so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a sticky notes pad"]}, +{"id":"131943","label":"pulling pen from behind of box","template":"Pulling [something] from behind of [something]","placeholders":["pen","box"]}, +{"id":"189978","label":"turning the camera right while filming bushes","template":"Turning the camera right while filming [something]","placeholders":["bushes"]}, +{"id":"133625","label":"lifting plate with onion on it","template":"Lifting [something] with [something] on it","placeholders":["plate","onion"]}, +{"id":"92838","label":"putting ruler next to calculator","template":"Putting [something] next to [something]","placeholders":["ruler","calculator"]}, +{"id":"91117","label":"lifting up one end of notebook, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["notebook"]}, +{"id":"197302","label":"covering apple tv remote with coaster","template":"Covering [something] with [something]","placeholders":["apple tv remote","coaster"]}, +{"id":"106892","label":"trying to pour water into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","cup"]}, +{"id":"125199","label":"turning the camera left while filming clock","template":"Turning the camera left while filming [something]","placeholders":["clock"]}, +{"id":"63988","label":"pushing plastic bag from right to left","template":"Pushing [something] from right to left","placeholders":["plastic bag"]}, +{"id":"78377","label":"pushing supplement bottle from left to right","template":"Pushing [something] from left to right","placeholders":["supplement bottle"]}, +{"id":"41754","label":"pretending to pick candle up","template":"Pretending to pick [something] up","placeholders":["candle"]}, +{"id":"29762","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"139489","label":"pushing stapler off of rubix cube","template":"Pushing [something] off of [something]","placeholders":["stapler","rubix cube"]}, +{"id":"195652","label":"taking one of many similar crayons","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar crayons"]}, +{"id":"155983","label":"dropping a remote into a box","template":"Dropping [something] into [something]","placeholders":["a remote","a box"]}, +{"id":"45945","label":"pretending to pick lighter up","template":"Pretending to pick [something] up","placeholders":["lighter"]}, +{"id":"157880","label":"putting water bottle into bowl","template":"Putting [something] into [something]","placeholders":["water bottle","bowl"]}, +{"id":"174516","label":"plugging a charging cable into a cell phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charging cable","a cell phone"]}, +{"id":"96422","label":"moving a wallet away from deodorant","template":"Moving [something] away from [something]","placeholders":["a wallet","deodorant"]}, +{"id":"185635","label":"plugging adaptor into socket","template":"Plugging [something] into [something]","placeholders":["adaptor","socket"]}, +{"id":"10925","label":"lifting note up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["note"]}, +{"id":"129382","label":"kleenex falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["kleenex"]}, +{"id":"105170","label":"spilling water onto a peg","template":"Spilling [something] onto [something]","placeholders":["water","a peg"]}, +{"id":"167472","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"171371","label":"compass falling like a rock","template":"[Something] falling like a rock","placeholders":["compass"]}, +{"id":"140339","label":"attaching keyring to a clip","template":"Attaching [something] to [something]","placeholders":["keyring","a clip"]}, +{"id":"27536","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"99509","label":"holding the wallet behind the book","template":"Holding [something] behind [something]","placeholders":["the wallet","the book"]}, +{"id":"155607","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"138958","label":"putting spoon on the edge of bowl so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["spoon","bowl"]}, +{"id":"147014","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"201428","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"17312","label":"trying to pour coffee into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["coffee","a cup"]}, +{"id":"13508","label":"moving away from rubber band packets with your camera","template":"Moving away from [something] with your camera","placeholders":["rubber band packets"]}, +{"id":"208773","label":"unfolding coat","template":"Unfolding [something]","placeholders":["coat"]}, +{"id":"65251","label":"taking a tomato","template":"Taking [one of many similar things on the table]","placeholders":["a tomato"]}, +{"id":"199300","label":"moving soda can away from glass","template":"Moving [something] away from [something]","placeholders":["soda can","glass"]}, +{"id":"37066","label":"pushing black remote from right to left","template":"Pushing [something] from right to left","placeholders":["black remote"]}, +{"id":"153343","label":"dropping pink ball onto floor","template":"Dropping [something] onto [something]","placeholders":["pink ball","floor"]}, +{"id":"189654","label":"lifting a surface with tape on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["tape"]}, +{"id":"149725","label":"showing a candle behind a pen","template":"Showing [something] behind [something]","placeholders":["a candle","a pen"]}, +{"id":"154181","label":"turning the camera left while filming rubiks cube","template":"Turning the camera left while filming [something]","placeholders":["rubiks cube"]}, +{"id":"59222","label":"stacking 3 pencil sharpners","template":"Stacking [number of] [something]","placeholders":["3","pencil sharpners"]}, +{"id":"95695","label":"poking a hole into powdered grain","template":"Poking a hole into [some substance]","placeholders":["powdered grain"]}, +{"id":"135245","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"202806","label":"dropping a spoon into a cup","template":"Dropping [something] into [something]","placeholders":["a spoon","a cup"]}, +{"id":"88450","label":"pretending to pick black pouch up","template":"Pretending to pick [something] up","placeholders":["black pouch"]}, +{"id":"64669","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"169719","label":"pretending to pick pendrive up","template":"Pretending to pick [something] up","placeholders":["pendrive"]}, +{"id":"199369","label":"tearing a little piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a little piece of paper"]}, +{"id":"207044","label":"pulling red booklet from left to right","template":"Pulling [something] from left to right","placeholders":["red booklet"]}, +{"id":"10996","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"53390","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"142454","label":"pushing moving a coing slightly so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["moving a coing slightly"]}, +{"id":"119713","label":"pushing a package so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a package"]}, +{"id":"75325","label":"taking a pencil","template":"Taking [one of many similar things on the table]","placeholders":["a pencil"]}, +{"id":"46447","label":"burying a pen in buttons","template":"Burying [something] in [something]","placeholders":["a pen","buttons"]}, +{"id":"179705","label":"pushing torch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["torch"]}, +{"id":"110345","label":"moving a thermocol away from the clip","template":"Moving [something] away from [something]","placeholders":["a thermocol","the clip"]}, +{"id":"217790","label":"spilling water next to a balloon","template":"Spilling [something] next to [something]","placeholders":["water","a balloon"]}, +{"id":"50279","label":"showing mobile phone next to the adapter","template":"Showing [something] next to [something]","placeholders":["mobile phone","the adapter"]}, +{"id":"194594","label":"showing bananas behind a tomato","template":"Showing [something] behind [something]","placeholders":["bananas","a tomato"]}, +{"id":"13331","label":"showing that pen is inside holder","template":"Showing that [something] is inside [something]","placeholders":["pen","holder"]}, +{"id":"31027","label":"trying to pour cold water into a water glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["cold water","a water glass"]}, +{"id":"88925","label":"approaching vacuum cleaner with your camera","template":"Approaching [something] with your camera","placeholders":["vacuum cleaner"]}, +{"id":"58352","label":"pulling two ends of a comb but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a comb"]}, +{"id":"26293","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"135265","label":"stacking 3 rings","template":"Stacking [number of] [something]","placeholders":["3","rings"]}, +{"id":"126385","label":"holding a pair of shoes","template":"Holding [something]","placeholders":["a pair of shoes"]}, +{"id":"4168","label":"holding purple container next to notecard","template":"Holding [something] next to [something]","placeholders":["purple container","notecard"]}, +{"id":"141245","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"12521","label":"putting a dvd onto a tissue box","template":"Putting [something] onto [something]","placeholders":["a dvd","a tissue box"]}, +{"id":"85087","label":"taking a water bottle out of a basket","template":"Taking [something] out of [something]","placeholders":["a water bottle","a basket"]}, +{"id":"54104","label":"pushing bolt with red spoon","template":"Pushing [something] with [something]","placeholders":["bolt","red spoon"]}, +{"id":"146309","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"15729","label":"bending pretzel until it breaks","template":"Bending [something] until it breaks","placeholders":["pretzel"]}, +{"id":"61876","label":"moving notebook and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["notebook","pen"]}, +{"id":"84403","label":"lifting wood with glass on it","template":"Lifting [something] with [something] on it","placeholders":["wood","glass"]}, +{"id":"34916","label":"holding remote control","template":"Holding [something]","placeholders":["remote control"]}, +{"id":"200795","label":"putting lighter into mug","template":"Putting [something] into [something]","placeholders":["lighter","mug"]}, +{"id":"92546","label":"hitting glass with marker","template":"Hitting [something] with [something]","placeholders":["glass","marker"]}, +{"id":"113492","label":"pulling two ends of cloth so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cloth"]}, +{"id":"27856","label":"holding vitamin in front of door knob","template":"Holding [something] in front of [something]","placeholders":["vitamin","door knob"]}, +{"id":"137219","label":"pushing tennis ball with cd stack","template":"Pushing [something] with [something]","placeholders":["tennis ball","cd stack"]}, +{"id":"6317","label":"pulling lock handle from behind of door","template":"Pulling [something] from behind of [something]","placeholders":["lock handle","door"]}, +{"id":"201135","label":"putting a brush onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a brush"]}, +{"id":"65177","label":"tearing something into two pieces","template":"Tearing [something] into two pieces","placeholders":["something"]}, +{"id":"106413","label":"poking ring so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ring"]}, +{"id":"144342","label":"pretending to open cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cup"]}, +{"id":"164069","label":"putting tooth brush on a surface","template":"Putting [something] on a surface","placeholders":["tooth brush"]}, +{"id":"144614","label":"putting fork into bowl","template":"Putting [something] into [something]","placeholders":["fork","bowl"]}, +{"id":"120252","label":"moving mp4 and mp4 case away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mp4","mp4 case"]}, +{"id":"93125","label":"closing meter box","template":"Closing [something]","placeholders":["meter box"]}, +{"id":"55783","label":"scooping coffee up with scoop","template":"Scooping [something] up with [something]","placeholders":["coffee","scoop"]}, +{"id":"52170","label":"poking a pack of cigarettes so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pack of cigarettes"]}, +{"id":"196522","label":"pushing hair brush onto mouse pad","template":"Pushing [something] onto [something]","placeholders":["hair brush","mouse pad"]}, +{"id":"98800","label":"pushing black lipstick from right to left","template":"Pushing [something] from right to left","placeholders":["black lipstick"]}, +{"id":"182935","label":"putting something into something","template":"Putting [something] into [something]","placeholders":["something","something"]}, +{"id":"50850","label":"bending a cell phone case so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a cell phone case"]}, +{"id":"57528","label":"pretending to pick fork up","template":"Pretending to pick [something] up","placeholders":["fork"]}, +{"id":"3125","label":"spilling coke onto paper","template":"Spilling [something] onto [something]","placeholders":["coke","paper"]}, +{"id":"97643","label":"poking chair so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["chair"]}, +{"id":"21488","label":"a notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["a notebook"]}, +{"id":"61181","label":"showing a photo of a cat to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a cat"]}, +{"id":"84547","label":"trying to bend weight so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["weight"]}, +{"id":"128275","label":"pushing toy train from left to right","template":"Pushing [something] from left to right","placeholders":["toy train"]}, +{"id":"143136","label":"dropping bottle in front of car","template":"Dropping [something] in front of [something]","placeholders":["bottle","car"]}, +{"id":"23643","label":"pretending to put water bottle behind water-can","template":"Pretending to put [something] behind [something]","placeholders":["water bottle","water-can"]}, +{"id":"62941","label":"pushing jar so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jar"]}, +{"id":"201200","label":"holding mobile in front of pillow","template":"Holding [something] in front of [something]","placeholders":["mobile","pillow"]}, +{"id":"194965","label":"holding a playstation controller","template":"Holding [something]","placeholders":["a playstation controller"]}, +{"id":"120164","label":"moving accelarator of scooter","template":"Moving [part] of [something]","placeholders":["accelarator","scooter"]}, +{"id":"10928","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"85465","label":"pushing coin so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["coin"]}, +{"id":"200972","label":"moving candle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["candle"]}, +{"id":"201728","label":"pushing a soft toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a soft toy"]}, +{"id":"2199","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"30125","label":"pushing flavor juice so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["flavor juice"]}, +{"id":"150302","label":"tilting glass with blue pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["glass","blue pen"]}, +{"id":"61889","label":"covering a rubiks cube with a piece of paper","template":"Covering [something] with [something]","placeholders":["a rubiks cube","a piece of paper"]}, +{"id":"103292","label":"putting liner next to book","template":"Putting [something] next to [something]","placeholders":["liner","book"]}, +{"id":"176474","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"158793","label":"tipping perfume over","template":"Tipping [something] over","placeholders":["perfume"]}, +{"id":"134268","label":"spreading rice onto plate","template":"Spreading [something] onto [something]","placeholders":["rice","plate"]}, +{"id":"185976","label":"moving black play cards down","template":"Moving [something] down","placeholders":["black play cards"]}, +{"id":"11551","label":"showing chair to the camera","template":"Showing [something] to the camera","placeholders":["chair"]}, +{"id":"204130","label":"removing teddy bear, revealing a bottle behind","template":"Removing [something], revealing [something] behind","placeholders":["teddy bear","a bottle"]}, +{"id":"64475","label":"holding a picture behind christmas tree","template":"Holding [something] behind [something]","placeholders":["a picture","christmas tree"]}, +{"id":"5017","label":"pouring ground coffee into a jar","template":"Pouring [something] into [something]","placeholders":["ground coffee","a jar"]}, +{"id":"21311","label":"holding mobile charger","template":"Holding [something]","placeholders":["mobile charger"]}, +{"id":"153788","label":"pretending to put a luck cat on a surface","template":"Pretending to put [something] on a surface","placeholders":["a luck cat"]}, +{"id":"177818","label":"putting a pen onto a charger","template":"Putting [something] onto [something]","placeholders":["a pen","a charger"]}, +{"id":"213709","label":"pulling a napkin from behind of cans","template":"Pulling [something] from behind of [something]","placeholders":["a napkin","cans"]}, +{"id":"204395","label":"taking knife out of mug","template":"Taking [something] out of [something]","placeholders":["knife","mug"]}, +{"id":"94920","label":"throwing tape in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tape"]}, +{"id":"35777","label":"tilting mirror with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["mirror","pen"]}, +{"id":"116256","label":"putting a can upright on the table","template":"Putting [something] upright on the table","placeholders":["a can"]}, +{"id":"9605","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"647","label":"pushing toy car with pencil","template":"Pushing [something] with [something]","placeholders":["toy car","pencil"]}, +{"id":"218375","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"85571","label":"turning the camera upwards while filming pink water bottle","template":"Turning the camera upwards while filming [something]","placeholders":["pink water bottle"]}, +{"id":"173807","label":"tipping a ketchup bottle over","template":"Tipping [something] over","placeholders":["a ketchup bottle"]}, +{"id":"79560","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"9025","label":"stacking 2 sandal","template":"Stacking [number of] [something]","placeholders":["2","sandal"]}, +{"id":"179518","label":"pulling two ends of paper piece so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper piece"]}, +{"id":"106039","label":"spinning soft ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["soft ball"]}, +{"id":"67070","label":"tearing toiletpaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["toiletpaper"]}, +{"id":"51923","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"14565","label":"pretending to put cap onto jug","template":"Pretending to put [something] onto [something]","placeholders":["cap","jug"]}, +{"id":"87685","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"140210","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"96217","label":"spreading rice onto spoon","template":"Spreading [something] onto [something]","placeholders":["rice","spoon"]}, +{"id":"177113","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"39883","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"159264","label":"pushing mug from right to left","template":"Pushing [something] from right to left","placeholders":["mug"]}, +{"id":"195315","label":"dropping wallet onto candle","template":"Dropping [something] onto [something]","placeholders":["wallet","candle"]}, +{"id":"104832","label":"turning the camera left while filming mug","template":"Turning the camera left while filming [something]","placeholders":["mug"]}, +{"id":"143235","label":"letting sock roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["sock"]}, +{"id":"60212","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"171849","label":"spinning comb that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["comb"]}, +{"id":"72826","label":"taking spanner on the right among many spanners on the table","template":"Taking [one of many similar things on the table]","placeholders":["spanner on the right among many spanners on the table"]}, +{"id":"188732","label":"putting ketchup bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["ketchup bottle"]}, +{"id":"9789","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"160208","label":"lifting book up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["book"]}, +{"id":"196535","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"154077","label":"taking one coin","template":"Taking [one of many similar things on the table]","placeholders":["one coin"]}, +{"id":"193727","label":"pretending to be tearing tissue paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tissue paper"]}, +{"id":"154981","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"165629","label":"stacking 3 containers","template":"Stacking [number of] [something]","placeholders":["3","containers"]}, +{"id":"138697","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"13947","label":"digging coin out of flour","template":"Digging [something] out of [something]","placeholders":["coin","flour"]}, +{"id":"87675","label":"pushing stapler so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stapler"]}, +{"id":"31268","label":"taking one pen from the floor","template":"Taking [one of many similar things on the table]","placeholders":["one pen from the floor"]}, +{"id":"62472","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"182600","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"189850","label":"uncovering coin","template":"Uncovering [something]","placeholders":["coin"]}, +{"id":"206028","label":"putting a pear into the box","template":"Putting [something] into [something]","placeholders":["a pear","the box"]}, +{"id":"182462","label":"lifting paper with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["paper","a lighter"]}, +{"id":"16248","label":"dropping white spoon into glass bowl","template":"Dropping [something] into [something]","placeholders":["white spoon","glass bowl"]}, +{"id":"217840","label":"lipstick falling like a rock","template":"[Something] falling like a rock","placeholders":["lipstick"]}, +{"id":"101335","label":"plugging usb cable into a laptop usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","a laptop usb port"]}, +{"id":"108172","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"66982","label":"moving a flower away from the camera","template":"Moving [something] away from the camera","placeholders":["a flower"]}, +{"id":"29917","label":"holding a mason jar next to a laptop","template":"Holding [something] next to [something]","placeholders":["a mason jar","a laptop"]}, +{"id":"117779","label":"holding mobile phone over laptop","template":"Holding [something] over [something]","placeholders":["mobile phone","laptop"]}, +{"id":"155594","label":"moving screen of laptop","template":"Moving [part] of [something]","placeholders":["screen","laptop"]}, +{"id":"92013","label":"poking a remote so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a remote"]}, +{"id":"103579","label":"holding toy","template":"Holding [something]","placeholders":["toy"]}, +{"id":"85413","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"150072","label":"pretending to take frame from table","template":"Pretending to take [something] from [somewhere]","placeholders":["frame","table"]}, +{"id":"199601","label":"showing that a wine glass is empty","template":"Showing that [something] is empty","placeholders":["a wine glass"]}, +{"id":"91984","label":"taking a ring out of jewelry box","template":"Taking [something] out of [something]","placeholders":["a ring","jewelry box"]}, +{"id":"13269","label":"turning the camera left while filming small book","template":"Turning the camera left while filming [something]","placeholders":["small book"]}, +{"id":"176845","label":"covering rock with towel","template":"Covering [something] with [something]","placeholders":["rock","towel"]}, +{"id":"125532","label":"moving water bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["water bottle"]}, +{"id":"20974","label":"tipping a clock over","template":"Tipping [something] over","placeholders":["a clock"]}, +{"id":"23465","label":"turning birthday card upside down","template":"Turning [something] upside down","placeholders":["birthday card"]}, +{"id":"203451","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"31589","label":"dropping game behind paper","template":"Dropping [something] behind [something]","placeholders":["game","paper"]}, +{"id":"95537","label":"putting cube onto bowl","template":"Putting [something] onto [something]","placeholders":["cube","bowl"]}, +{"id":"199236","label":"lifting up one end of a pencil, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pencil"]}, +{"id":"37291","label":"tearing notepad paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["notepad paper"]}, +{"id":"144888","label":"burying remote in blanket","template":"Burying [something] in [something]","placeholders":["remote","blanket"]}, +{"id":"28082","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"79000","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"114333","label":"bending tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tube"]}, +{"id":"214567","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"6773","label":"pretending to pick orange post-it up","template":"Pretending to pick [something] up","placeholders":["orange post-it"]}, +{"id":"71198","label":"putting a toy excavator on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a toy excavator"]}, +{"id":"94575","label":"tearing napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["napkin"]}, +{"id":"156285","label":"touching (without moving) paper of table","template":"Touching (without moving) [part] of [something]","placeholders":["paper","table"]}, +{"id":"1422","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"27595","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"187726","label":"pretending to open bootle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bootle"]}, +{"id":"177507","label":"pulling two ends of leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaf"]}, +{"id":"34509","label":"moving body spray can up","template":"Moving [something] up","placeholders":["body spray can"]}, +{"id":"121323","label":"bending thick paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["thick paper"]}, +{"id":"84915","label":"moving clip closer to remote","template":"Moving [something] closer to [something]","placeholders":["clip","remote"]}, +{"id":"183374","label":"pulling toy plane from left to right","template":"Pulling [something] from left to right","placeholders":["toy plane"]}, +{"id":"33562","label":"pretending to scoop pennies up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["pennies","spoon"]}, +{"id":"148986","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"123364","label":"turning a tissue box upside down","template":"Turning [something] upside down","placeholders":["a tissue box"]}, +{"id":"208782","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"187215","label":"pushing red bottlecap from left to right","template":"Pushing [something] from left to right","placeholders":["red bottlecap"]}, +{"id":"159127","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"216111","label":"covering cup with shirt","template":"Covering [something] with [something]","placeholders":["cup","shirt"]}, +{"id":"152696","label":"pushing black file so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["black file"]}, +{"id":"120822","label":"poking power bank so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["power bank"]}, +{"id":"155531","label":"pushing the slipper with the foot","template":"Pushing [something] with [something]","placeholders":["the slipper","the foot"]}, +{"id":"63161","label":"dropping a paper clip behind a box","template":"Dropping [something] behind [something]","placeholders":["a paper clip","a box"]}, +{"id":"157400","label":"poking a hole into pillow","template":"Poking a hole into [something soft]","placeholders":["pillow"]}, +{"id":"13685","label":"board falling like a rock","template":"[Something] falling like a rock","placeholders":["board"]}, +{"id":"145113","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"150774","label":"covering a candle with a towel","template":"Covering [something] with [something]","placeholders":["a candle","a towel"]}, +{"id":"205873","label":"pushing bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bag"]}, +{"id":"30792","label":"squeezing a lemon","template":"Squeezing [something]","placeholders":["a lemon"]}, +{"id":"38377","label":"turning the camera left while filming bus","template":"Turning the camera left while filming [something]","placeholders":["bus"]}, +{"id":"211126","label":"a toy car colliding with a marble ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a toy car","a marble ball"]}, +{"id":"8465","label":"putting teddy bear that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["teddy bear"]}, +{"id":"73799","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"24164","label":"unfolding mat","template":"Unfolding [something]","placeholders":["mat"]}, +{"id":"70462","label":"pack of paper tissues falling like a rock","template":"[Something] falling like a rock","placeholders":["pack of paper tissues"]}, +{"id":"31326","label":"showing that the jar is empty","template":"Showing that [something] is empty","placeholders":["the jar"]}, +{"id":"7292","label":"dropping plastic bottle into bucket water","template":"Dropping [something] into [something]","placeholders":["plastic bottle","bucket water"]}, +{"id":"128801","label":"holding a bead behind a glass","template":"Holding [something] behind [something]","placeholders":["a bead","a glass"]}, +{"id":"41417","label":"letting something roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["something"]}, +{"id":"159371","label":"putting water into cup","template":"Putting [something] into [something]","placeholders":["water","cup"]}, +{"id":"166456","label":"moving away from bottle cap with your camera","template":"Moving away from [something] with your camera","placeholders":["bottle cap"]}, +{"id":"196775","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"215056","label":"plugging an airwick scent into a plug","template":"Plugging [something] into [something]","placeholders":["an airwick scent","a plug"]}, +{"id":"2689","label":"pretending to pick ruler up","template":"Pretending to pick [something] up","placeholders":["ruler"]}, +{"id":"201589","label":"closing black plastic box","template":"Closing [something]","placeholders":["black plastic box"]}, +{"id":"213462","label":"dropping a comb next to the laptop","template":"Dropping [something] next to [something]","placeholders":["a comb","the laptop"]}, +{"id":"203405","label":"laying pitcher on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["pitcher"]}, +{"id":"162121","label":"tipping a glass over","template":"Tipping [something] over","placeholders":["a glass"]}, +{"id":"67045","label":"salt spreader falling like a rock","template":"[Something] falling like a rock","placeholders":["salt spreader"]}, +{"id":"116624","label":"putting toy idol into blue colour spectacle box","template":"Putting [something] into [something]","placeholders":["toy idol","blue colour spectacle box"]}, +{"id":"117244","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"92374","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"209319","label":"moving rock and rock away from each other","template":"Moving [something] and [something] away from each other","placeholders":["rock","rock"]}, +{"id":"76414","label":"showing green toy car on top of blue spectacle box","template":"Showing [something] on top of [something]","placeholders":["green toy car","blue spectacle box"]}, +{"id":"52371","label":"attaching usb cable to adapter","template":"Attaching [something] to [something]","placeholders":["usb cable","adapter"]}, +{"id":"89533","label":"taking one bottle from similar bottles on the table","template":"Taking [one of many similar things on the table]","placeholders":["one bottle from similar bottles on the table"]}, +{"id":"120228","label":"spreading jelly onto bread","template":"Spreading [something] onto [something]","placeholders":["jelly","bread"]}, +{"id":"130457","label":"attaching sticker to whiteboard","template":"Attaching [something] to [something]","placeholders":["sticker","whiteboard"]}, +{"id":"93839","label":"pushing watch so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["watch"]}, +{"id":"67019","label":"approaching plant with your camera","template":"Approaching [something] with your camera","placeholders":["plant"]}, +{"id":"196321","label":"putting cube onto battery so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["cube","battery"]}, +{"id":"132082","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"190023","label":"attaching magnet to refrigerator","template":"Attaching [something] to [something]","placeholders":["magnet","refrigerator"]}, +{"id":"51877","label":"lifting a paper plate up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a paper plate"]}, +{"id":"193760","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"36121","label":"lifting a pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pen"]}, +{"id":"24175","label":"uncovering books","template":"Uncovering [something]","placeholders":["books"]}, +{"id":"33232","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"137833","label":"tearing tearing something into two pieces into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing something into two pieces"]}, +{"id":"166000","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"143762","label":"moving baby toy up","template":"Moving [something] up","placeholders":["baby toy"]}, +{"id":"24474","label":"holding umbrela behind door","template":"Holding [something] behind [something]","placeholders":["umbrela","door"]}, +{"id":"97541","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"115567","label":"touching (without moving) the edge of button","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","button"]}, +{"id":"174407","label":"putting pencil box behind globe","template":"Putting [something] behind [something]","placeholders":["pencil box","globe"]}, +{"id":"89126","label":"dropping pen onto counter","template":"Dropping [something] onto [something]","placeholders":["pen","counter"]}, +{"id":"84464","label":"spinning white badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["white badge"]}, +{"id":"7636","label":"moving stapler across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["stapler"]}, +{"id":"196399","label":"squeezing sunscreen","template":"Squeezing [something]","placeholders":["sunscreen"]}, +{"id":"55640","label":"pretending to be tearing tissues","template":"Pretending to be tearing [something that is not tearable]","placeholders":["tissues"]}, +{"id":"166031","label":"bending a pen refill tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen refill tube"]}, +{"id":"105371","label":"moving toothbrush and toothpaste closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toothbrush","toothpaste"]}, +{"id":"11046","label":"dropping controller next to headset","template":"Dropping [something] next to [something]","placeholders":["controller","headset"]}, +{"id":"66000","label":"taking paper punch from slab","template":"Taking [something] from [somewhere]","placeholders":["paper punch","slab"]}, +{"id":"109353","label":"opening lip balm","template":"Opening [something]","placeholders":["lip balm"]}, +{"id":"49894","label":"moving usb cable closer to eraser","template":"Moving [something] closer to [something]","placeholders":["usb cable","eraser"]}, +{"id":"207429","label":"spinning a quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a quarter"]}, +{"id":"4074","label":"putting spray bottle, book and spoon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["spray bottle","book","spoon"]}, +{"id":"208124","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"118355","label":"plugging cord into charger","template":"Plugging [something] into [something]","placeholders":["cord","charger"]}, +{"id":"127511","label":"dropping a pencil onto a towel","template":"Dropping [something] onto [something]","placeholders":["a pencil","a towel"]}, +{"id":"116514","label":"dropping a groundnut next to keys","template":"Dropping [something] next to [something]","placeholders":["a groundnut","keys"]}, +{"id":"113441","label":"moving paper closer to the computer","template":"Moving [something] closer to [something]","placeholders":["paper","the computer"]}, +{"id":"41405","label":"showing bottle behind pen","template":"Showing [something] behind [something]","placeholders":["bottle","pen"]}, +{"id":"86130","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"53060","label":"pretending to turn perfume upside down","template":"Pretending to turn [something] upside down","placeholders":["perfume"]}, +{"id":"176570","label":"showing tv next to wall","template":"Showing [something] next to [something]","placeholders":["tv","wall"]}, +{"id":"106391","label":"stacking 4 containers of tape","template":"Stacking [number of] [something]","placeholders":["4","containers of tape"]}, +{"id":"153466","label":"moving rock closer to lighter","template":"Moving [something] closer to [something]","placeholders":["rock","lighter"]}, +{"id":"56220","label":"rolling bodybuilding weight on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bodybuilding weight"]}, +{"id":"170727","label":"putting scotch tape on a surface","template":"Putting [something] on a surface","placeholders":["scotch tape"]}, +{"id":"34562","label":"moving thermocol and comb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["thermocol","comb"]}, +{"id":"190356","label":"holding phone next to remote","template":"Holding [something] next to [something]","placeholders":["phone","remote"]}, +{"id":"13504","label":"dropping a glasses box onto a desk","template":"Dropping [something] onto [something]","placeholders":["a glasses box","a desk"]}, +{"id":"21063","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"18893","label":"pushing wine bottle from right to left","template":"Pushing [something] from right to left","placeholders":["wine bottle"]}, +{"id":"63185","label":"letting rolling pin roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["rolling pin"]}, +{"id":"34529","label":"pretending to pick ink pack up","template":"Pretending to pick [something] up","placeholders":["ink pack"]}, +{"id":"77021","label":"plugging charger into plug","template":"Plugging [something] into [something]","placeholders":["charger","plug"]}, +{"id":"157052","label":"dropping pencil in front of tape","template":"Dropping [something] in front of [something]","placeholders":["pencil","tape"]}, +{"id":"112478","label":"putting marker into pen case","template":"Putting [something] into [something]","placeholders":["marker","pen case"]}, +{"id":"47293","label":"throwing a pen against the door","template":"Throwing [something] against [something]","placeholders":["a pen","the door"]}, +{"id":"52333","label":"holding glass bottle","template":"Holding [something]","placeholders":["glass bottle"]}, +{"id":"168928","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"166578","label":"lifting a book with a mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a mobile phone"]}, +{"id":"92842","label":"moving small shot glass and big shot glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["small shot glass","big shot glass"]}, +{"id":"150466","label":"a receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a receipt"]}, +{"id":"133692","label":"moving pen and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","cup"]}, +{"id":"144528","label":"pushing pebble from right to left","template":"Pushing [something] from right to left","placeholders":["pebble"]}, +{"id":"136812","label":"toy plane falling like a rock","template":"[Something] falling like a rock","placeholders":["toy plane"]}, +{"id":"185531","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"217346","label":"taking jeans pant","template":"Taking [one of many similar things on the table]","placeholders":["jeans pant"]}, +{"id":"154539","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"117784","label":"poking a computer mouse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a computer mouse"]}, +{"id":"60625","label":"showing violin on top of pillow","template":"Showing [something] on top of [something]","placeholders":["violin","pillow"]}, +{"id":"54056","label":"covering toothbrushes with hand towel","template":"Covering [something] with [something]","placeholders":["toothbrushes","hand towel"]}, +{"id":"174741","label":"pushing a chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a chair"]}, +{"id":"108981","label":"pushing toy truck so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy truck"]}, +{"id":"1750","label":"lifting a book with nail varnish on it","template":"Lifting [something] with [something] on it","placeholders":["a book","nail varnish"]}, +{"id":"143934","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"113530","label":"pushing tie so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tie"]}, +{"id":"129582","label":"tearing paer into two pieces","template":"Tearing [something] into two pieces","placeholders":["paer"]}, +{"id":"206035","label":"uncovering hair clip","template":"Uncovering [something]","placeholders":["hair clip"]}, +{"id":"114625","label":"putting remote control on a surface","template":"Putting [something] on a surface","placeholders":["remote control"]}, +{"id":"220842","label":"pretending to poke a little statue","template":"Pretending to poke [something]","placeholders":["a little statue"]}, +{"id":"173110","label":"turning the camera left while filming chick","template":"Turning the camera left while filming [something]","placeholders":["chick"]}, +{"id":"150924","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"10359","label":"tilting book with bat on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","bat"]}, +{"id":"133009","label":"picking wrist watch up","template":"Picking [something] up","placeholders":["wrist watch"]}, +{"id":"52094","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"112313","label":"plugging power cable into socket","template":"Plugging [something] into [something]","placeholders":["power cable","socket"]}, +{"id":"219062","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"217069","label":"moving razor down","template":"Moving [something] down","placeholders":["razor"]}, +{"id":"108226","label":"turning the camera downwards while filming cup","template":"Turning the camera downwards while filming [something]","placeholders":["cup"]}, +{"id":"205678","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"129921","label":"lifting wooden block up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wooden block"]}, +{"id":"111935","label":"pretending to open closet door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["closet door"]}, +{"id":"216977","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"106730","label":"dropping a banana into a packet","template":"Dropping [something] into [something]","placeholders":["a banana","a packet"]}, +{"id":"116602","label":"putting a spoon into a mug","template":"Putting [something] into [something]","placeholders":["a spoon","a mug"]}, +{"id":"134941","label":"tilting spoon with coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["spoon","coin"]}, +{"id":"63307","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"205154","label":"pulling zipper from left to right","template":"Pulling [something] from left to right","placeholders":["zipper"]}, +{"id":"18580","label":"moving chalk piece up","template":"Moving [something] up","placeholders":["chalk piece"]}, +{"id":"103337","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"619","label":"pretending to pour water out of a glass of water, but the glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a glass of water","the glass"]}, +{"id":"76434","label":"covering an ipad with a cardboard","template":"Covering [something] with [something]","placeholders":["an ipad","a cardboard"]}, +{"id":"220729","label":"throwing mobile onto a surface","template":"Throwing [something] onto a surface","placeholders":["mobile"]}, +{"id":"153031","label":"small box falling like a rock","template":"[Something] falling like a rock","placeholders":["small box"]}, +{"id":"150896","label":"showing that sticky tape is inside teapot","template":"Showing that [something] is inside [something]","placeholders":["sticky tape","teapot"]}, +{"id":"108987","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"19198","label":"approaching tables and chairs with your camera","template":"Approaching [something] with your camera","placeholders":["tables and chairs"]}, +{"id":"138001","label":"putting a keybound on a surface","template":"Putting [something] on a surface","placeholders":["a keybound"]}, +{"id":"65666","label":"turning the camera left while filming notebook","template":"Turning the camera left while filming [something]","placeholders":["notebook"]}, +{"id":"36268","label":"putting water bottle next to water bottle","template":"Putting [something] next to [something]","placeholders":["water bottle","water bottle"]}, +{"id":"199668","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"40880","label":"lifting rectanglular box with keys on it","template":"Lifting [something] with [something] on it","placeholders":["rectanglular box","keys"]}, +{"id":"214093","label":"lifting a pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pen"]}, +{"id":"113042","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"187396","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"15646","label":"stuffing dirty clothes into bag","template":"Stuffing [something] into [something]","placeholders":["dirty clothes","bag"]}, +{"id":"76689","label":"putting water into a cup","template":"Putting [something] into [something]","placeholders":["water","a cup"]}, +{"id":"54224","label":"pushing remote from left to right","template":"Pushing [something] from left to right","placeholders":["remote"]}, +{"id":"202185","label":"pretending to pick an apple up","template":"Pretending to pick [something] up","placeholders":["an apple"]}, +{"id":"10122","label":"bending hair pin so that it deforms","template":"Bending [something] so that it deforms","placeholders":["hair pin"]}, +{"id":"38555","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"182027","label":"plugging earphones into a laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["earphones","a laptop"]}, +{"id":"139449","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"20334","label":"pretending to turn a bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["a bottle"]}, +{"id":"68803","label":"stacking 4 dvds","template":"Stacking [number of] [something]","placeholders":["4","dvds"]}, +{"id":"33547","label":"removing remote, revealing a pen behind","template":"Removing [something], revealing [something] behind","placeholders":["remote","a pen"]}, +{"id":"158343","label":"pushing bottle cap from right to left","template":"Pushing [something] from right to left","placeholders":["bottle cap"]}, +{"id":"16913","label":"pretending to scoop cocoa up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["cocoa","spoon"]}, +{"id":"177451","label":"dropping a wallet into a box","template":"Dropping [something] into [something]","placeholders":["a wallet","a box"]}, +{"id":"93985","label":"dropping clear plastic pot onto windowsill","template":"Dropping [something] onto [something]","placeholders":["clear plastic pot","windowsill"]}, +{"id":"50886","label":"moving calculator down","template":"Moving [something] down","placeholders":["calculator"]}, +{"id":"30223","label":"dropping coins into coffee can","template":"Dropping [something] into [something]","placeholders":["coins","coffee can"]}, +{"id":"21526","label":"pushing firm plastic so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["firm plastic"]}, +{"id":"109252","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"39182","label":"stuffing plastic clothes hangar into couch cushion opening","template":"Stuffing [something] into [something]","placeholders":["plastic clothes hangar","couch cushion opening"]}, +{"id":"154030","label":"holding candle next to owl statue","template":"Holding [something] next to [something]","placeholders":["candle","owl statue"]}, +{"id":"94613","label":"covering pillows with a blanket","template":"Covering [something] with [something]","placeholders":["pillows","a blanket"]}, +{"id":"217890","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"23704","label":"dropping stuffed animal into basket","template":"Dropping [something] into [something]","placeholders":["stuffed animal","basket"]}, +{"id":"15422","label":"paper receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper receipt"]}, +{"id":"210058","label":"rolling a metal cylinder on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a metal cylinder"]}, +{"id":"58947","label":"moving candle closer to lamp","template":"Moving [something] closer to [something]","placeholders":["candle","lamp"]}, +{"id":"38208","label":"pulling paper out of dress","template":"Pulling [something] out of [something]","placeholders":["paper","dress"]}, +{"id":"117124","label":"throwing bottle against a wall","template":"Throwing [something] against [something]","placeholders":["bottle","a wall"]}, +{"id":"218903","label":"tilting box with bottle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","bottle"]}, +{"id":"19805","label":"putting a coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin"]}, +{"id":"110797","label":"dropping a box of juice onto plastic cover","template":"Dropping [something] onto [something]","placeholders":["a box of juice","plastic cover"]}, +{"id":"23180","label":"pretending to close glass door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["glass door"]}, +{"id":"80980","label":"covering sunglasses with a paper","template":"Covering [something] with [something]","placeholders":["sunglasses","a paper"]}, +{"id":"199978","label":"pretending to scoop water up with glass","template":"Pretending to scoop [something] up with [something]","placeholders":["water","glass"]}, +{"id":"92378","label":"squeezing lotion","template":"Squeezing [something]","placeholders":["lotion"]}, +{"id":"32833","label":"pushing duster with red spoon","template":"Pushing [something] with [something]","placeholders":["duster","red spoon"]}, +{"id":"220688","label":"taking jar out of pot","template":"Taking [something] out of [something]","placeholders":["jar","pot"]}, +{"id":"7902","label":"dropping toy into cup","template":"Dropping [something] into [something]","placeholders":["toy","cup"]}, +{"id":"123627","label":"dropping screw driver onto marker pen","template":"Dropping [something] onto [something]","placeholders":["screw driver","marker pen"]}, +{"id":"176988","label":"putting coin into duffel bag","template":"Putting [something] into [something]","placeholders":["coin","duffel bag"]}, +{"id":"176314","label":"showing that juice is inside jar","template":"Showing that [something] is inside [something]","placeholders":["juice","jar"]}, +{"id":"62149","label":"pouring water into glass cup","template":"Pouring [something] into [something]","placeholders":["water","glass cup"]}, +{"id":"18398","label":"dropping a handkerchief in front of a matchbox","template":"Dropping [something] in front of [something]","placeholders":["a handkerchief","a matchbox"]}, +{"id":"56273","label":"pretending to turn bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["bowl"]}, +{"id":"162960","label":"moving hair clip closer to white toy car","template":"Moving [something] closer to [something]","placeholders":["hair clip","white toy car"]}, +{"id":"125237","label":"letting a pen roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a pen"]}, +{"id":"90398","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"182059","label":"taking crystal","template":"Taking [one of many similar things on the table]","placeholders":["crystal"]}, +{"id":"183304","label":"pretending to put paper onto desk","template":"Pretending to put [something] onto [something]","placeholders":["paper","desk"]}, +{"id":"139875","label":"spoon falling like a rock","template":"[Something] falling like a rock","placeholders":["spoon"]}, +{"id":"53303","label":"pretending to pick keys up","template":"Pretending to pick [something] up","placeholders":["keys"]}, +{"id":"90487","label":"turning toy car upside down","template":"Turning [something] upside down","placeholders":["toy car"]}, +{"id":"58475","label":"pretending to pour something out of something, but something is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["something","something","something"]}, +{"id":"33375","label":"lifting a surface with candy on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["candy"]}, +{"id":"160050","label":"taking a glass","template":"Taking [one of many similar things on the table]","placeholders":["a glass"]}, +{"id":"216360","label":"tipping paper towels over","template":"Tipping [something] over","placeholders":["paper towels"]}, +{"id":"136037","label":"plugging usb cable into usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","usb port"]}, +{"id":"35790","label":"stuffing shirt into cup","template":"Stuffing [something] into [something]","placeholders":["shirt","cup"]}, +{"id":"43088","label":"dropping block next to candle","template":"Dropping [something] next to [something]","placeholders":["block","candle"]}, +{"id":"186734","label":"pulling orange post-it from right to left","template":"Pulling [something] from right to left","placeholders":["orange post-it"]}, +{"id":"153195","label":"pretending to be tearing a hat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a hat"]}, +{"id":"40969","label":"putting an apple into a fruit basket","template":"Putting [something] into [something]","placeholders":["an apple","a fruit basket"]}, +{"id":"50441","label":"poking a pillow so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a pillow"]}, +{"id":"97640","label":"lifting an index card with a quarter on it","template":"Lifting [something] with [something] on it","placeholders":["an index card","a quarter"]}, +{"id":"104851","label":"showing cup on top of water bottle","template":"Showing [something] on top of [something]","placeholders":["cup","water bottle"]}, +{"id":"171925","label":"throwing battery","template":"Throwing [something]","placeholders":["battery"]}, +{"id":"64552","label":"putting yellow colour marker on the top similar to other markers on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["yellow colour marker on the top similar to other markers on the table"]}, +{"id":"108641","label":"turning the camera downwards while filming violin","template":"Turning the camera downwards while filming [something]","placeholders":["violin"]}, +{"id":"214642","label":"putting something in front of something","template":"Putting [something] in front of [something]","placeholders":["something","something"]}, +{"id":"177318","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"61746","label":"closing perfume","template":"Closing [something]","placeholders":["perfume"]}, +{"id":"212841","label":"pulling two ends of elastic band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["elastic band"]}, +{"id":"74133","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"46326","label":"lifting folder with keys on it","template":"Lifting [something] with [something] on it","placeholders":["folder","keys"]}, +{"id":"150004","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"74767","label":"pretending to put a bottle into bowl","template":"Pretending to put [something] into [something]","placeholders":["a bottle","bowl"]}, +{"id":"117615","label":"moving pen and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","remote"]}, +{"id":"92805","label":"putting something into something","template":"Putting [something] into [something]","placeholders":["something","something"]}, +{"id":"13617","label":"uncovering toothbrush","template":"Uncovering [something]","placeholders":["toothbrush"]}, +{"id":"162949","label":"ball colliding with ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","ball"]}, +{"id":"99269","label":"holding bottle behind phone","template":"Holding [something] behind [something]","placeholders":["bottle","phone"]}, +{"id":"10446","label":"moving rubix cube closer to spectacle box","template":"Moving [something] closer to [something]","placeholders":["rubix cube","spectacle box"]}, +{"id":"122065","label":"pushing an ashtray so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an ashtray"]}, +{"id":"131932","label":"squeezing pouch","template":"Squeezing [something]","placeholders":["pouch"]}, +{"id":"218216","label":"squeezing a lemmon","template":"Squeezing [something]","placeholders":["a lemmon"]}, +{"id":"159181","label":"touching (without moving) the body of the mirror","template":"Touching (without moving) [part] of [something]","placeholders":["the body","the mirror"]}, +{"id":"136266","label":"plugging inlet into outlet","template":"Plugging [something] into [something]","placeholders":["inlet","outlet"]}, +{"id":"136601","label":"touching (without moving) top of mouse","template":"Touching (without moving) [part] of [something]","placeholders":["top","mouse"]}, +{"id":"216515","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"170626","label":"pushing a woodenbox with a plastic plate","template":"Pushing [something] with [something]","placeholders":["a woodenbox","a plastic plate"]}, +{"id":"124122","label":"moving a card towards the camera","template":"Moving [something] towards the camera","placeholders":["a card"]}, +{"id":"99146","label":"spinning lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lighter"]}, +{"id":"96665","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"185357","label":"tipping canister with lemon over, so lemon falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["canister","lemon","lemon"]}, +{"id":"130021","label":"showing jar next to cup","template":"Showing [something] next to [something]","placeholders":["jar","cup"]}, +{"id":"205944","label":"moving rack up","template":"Moving [something] up","placeholders":["rack"]}, +{"id":"82829","label":"twisting shirt","template":"Twisting [something]","placeholders":["shirt"]}, +{"id":"85075","label":"taking a marker out of a can","template":"Taking [something] out of [something]","placeholders":["a marker","a can"]}, +{"id":"106669","label":"putting envelope on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["envelope","chair"]}, +{"id":"176548","label":"pretending to be tearing a portable hard drive","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a portable hard drive"]}, +{"id":"178603","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"68084","label":"squeezing glue","template":"Squeezing [something]","placeholders":["glue"]}, +{"id":"121737","label":"putting a coin into a piggy bank","template":"Putting [something] into [something]","placeholders":["a coin","a piggy bank"]}, +{"id":"57055","label":"taking a spoon","template":"Taking [one of many similar things on the table]","placeholders":["a spoon"]}, +{"id":"51198","label":"laying glue stick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glue stick"]}, +{"id":"39780","label":"dropping controller in front of headset","template":"Dropping [something] in front of [something]","placeholders":["controller","headset"]}, +{"id":"84967","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"148565","label":"holding something behind something","template":"Holding [something] behind [something]","placeholders":["something","something"]}, +{"id":"34256","label":"showing textbook to the camera","template":"Showing [something] to the camera","placeholders":["textbook"]}, +{"id":"185860","label":"poking a stack of envelopes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["envelopes"]}, +{"id":"97057","label":"putting a glass onto a matt/coaster","template":"Putting [something] onto [something]","placeholders":["a glass","a matt/coaster"]}, +{"id":"101761","label":"turning the camera right while filming krishna idole","template":"Turning the camera right while filming [something]","placeholders":["krishna idole"]}, +{"id":"138230","label":"moving phone and wristwatch closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["phone","wristwatch"]}, +{"id":"133810","label":"taking a banana out of a glass","template":"Taking [something] out of [something]","placeholders":["a banana","a glass"]}, +{"id":"61346","label":"paper towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper towel"]}, +{"id":"168047","label":"lifting glove up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["glove"]}, +{"id":"81709","label":"uncovering eye of stove","template":"Uncovering [something]","placeholders":["eye of stove"]}, +{"id":"220691","label":"turning the camera left while filming the mouse","template":"Turning the camera left while filming [something]","placeholders":["the mouse"]}, +{"id":"93870","label":"trying but failing to attach lighter to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["lighter","fridge"]}, +{"id":"94509","label":"pulling food packet out of plastic container","template":"Pulling [something] out of [something]","placeholders":["food packet","plastic container"]}, +{"id":"117199","label":"pretending to turn pink toothbrush case upside down","template":"Pretending to turn [something] upside down","placeholders":["pink toothbrush case"]}, +{"id":"200656","label":"moving ball closer to sunglasses","template":"Moving [something] closer to [something]","placeholders":["ball","sunglasses"]}, +{"id":"205033","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"204186","label":"putting battery upright on the table","template":"Putting [something] upright on the table","placeholders":["battery"]}, +{"id":"100872","label":"stuffing laundry into basket","template":"Stuffing [something] into [something]","placeholders":["laundry","basket"]}, +{"id":"176564","label":"putting calculator, pen and wallet on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["calculator","pen","wallet"]}, +{"id":"173923","label":"attaching cup to cup","template":"Attaching [something] to [something]","placeholders":["cup","cup"]}, +{"id":"6199","label":"putting an immersion blender base upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["an immersion blender base"]}, +{"id":"208085","label":"putting blue spoon into orange bowl","template":"Putting [something] into [something]","placeholders":["blue spoon","orange bowl"]}, +{"id":"194691","label":"letting a marker roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a marker"]}, +{"id":"166604","label":"putting a pan onto a stove","template":"Putting [something] onto [something]","placeholders":["a pan","a stove"]}, +{"id":"174914","label":"moving pencil away from the camera","template":"Moving [something] away from the camera","placeholders":["pencil"]}, +{"id":"53422","label":"throwing mobile in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["mobile"]}, +{"id":"166259","label":"throwing a plastic chair in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a plastic chair"]}, +{"id":"38895","label":"unfolding kitchen towel","template":"Unfolding [something]","placeholders":["kitchen towel"]}, +{"id":"72820","label":"trying to pour water into a glass container, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a glass container"]}, +{"id":"147542","label":"throwing charger adapter in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["charger adapter"]}, +{"id":"131185","label":"plugging a tv into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a tv","a wall outlet"]}, +{"id":"26580","label":"pretending to sprinkle air onto cat","template":"Pretending to sprinkle air onto [something]","placeholders":["cat"]}, +{"id":"122382","label":"laying drinking bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["drinking bottle"]}, +{"id":"91378","label":"pretending to take box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["box","table"]}, +{"id":"56621","label":"moving pen closer to cup","template":"Moving [something] closer to [something]","placeholders":["pen","cup"]}, +{"id":"15581","label":"tipping pop can over","template":"Tipping [something] over","placeholders":["pop can"]}, +{"id":"44551","label":"moving glasses and perfum closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glasses","perfum"]}, +{"id":"54103","label":"pushing a toy car off of a table","template":"Pushing [something] off of [something]","placeholders":["a toy car","a table"]}, +{"id":"97299","label":"bending key chain so that it deforms","template":"Bending [something] so that it deforms","placeholders":["key chain"]}, +{"id":"86545","label":"taking water bottle from chair","template":"Taking [something] from [somewhere]","placeholders":["water bottle","chair"]}, +{"id":"18951","label":"stuffing book into books","template":"Stuffing [something] into [something]","placeholders":["book","books"]}, +{"id":"55027","label":"holding onion in front of mug","template":"Holding [something] in front of [something]","placeholders":["onion","mug"]}, +{"id":"176549","label":"rolling pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pen"]}, +{"id":"152026","label":"stuffing napkins into toilet paper roll","template":"Stuffing [something] into [something]","placeholders":["napkins","toilet paper roll"]}, +{"id":"45925","label":"squeezing kitchen sponge","template":"Squeezing [something]","placeholders":["kitchen sponge"]}, +{"id":"121954","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"42838","label":"spreading mayonase onto bread","template":"Spreading [something] onto [something]","placeholders":["mayonase","bread"]}, +{"id":"138809","label":"moving spoon down","template":"Moving [something] down","placeholders":["spoon"]}, +{"id":"98914","label":"turning the camera downwards while filming gate","template":"Turning the camera downwards while filming [something]","placeholders":["gate"]}, +{"id":"200548","label":"holding straw next to sink","template":"Holding [something] next to [something]","placeholders":["straw","sink"]}, +{"id":"106402","label":"putting a can opener, toy ambulance and a lemon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a can opener","toy ambulance","a lemon"]}, +{"id":"156256","label":"pulling cigaret out of marlboro pack","template":"Pulling [something] out of [something]","placeholders":["cigaret","marlboro pack"]}, +{"id":"81300","label":"approaching soda bottle with your camera","template":"Approaching [something] with your camera","placeholders":["soda bottle"]}, +{"id":"41877","label":"squeezing a stuff toy","template":"Squeezing [something]","placeholders":["a stuff toy"]}, +{"id":"119096","label":"putting khaki into bowl","template":"Putting [something] into [something]","placeholders":["khaki","bowl"]}, +{"id":"95465","label":"poking a stack of sugar cubes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["sugar cubes"]}, +{"id":"76867","label":"turning the camera right while filming gate","template":"Turning the camera right while filming [something]","placeholders":["gate"]}, +{"id":"152145","label":"plugging a charging cable into a cell phone","template":"Plugging [something] into [something]","placeholders":["a charging cable","a cell phone"]}, +{"id":"76988","label":"stuffing plastic bag into drinking glass","template":"Stuffing [something] into [something]","placeholders":["plastic bag","drinking glass"]}, +{"id":"115929","label":"lifting rock up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["rock"]}, +{"id":"1533","label":"throwing vanity bag in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["vanity bag"]}, +{"id":"206586","label":"dropping an eraser onto a table","template":"Dropping [something] onto [something]","placeholders":["an eraser","a table"]}, +{"id":"195304","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"36293","label":"spinning medicine bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["medicine bottle"]}, +{"id":"10907","label":"pretending to put green headlight on a surface","template":"Pretending to put [something] on a surface","placeholders":["green headlight"]}, +{"id":"44347","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"76055","label":"lifting up one end of note, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["note"]}, +{"id":"28772","label":"touching (without moving) head of toys","template":"Touching (without moving) [part] of [something]","placeholders":["head","toys"]}, +{"id":"127384","label":"tearing teabag into two pieces","template":"Tearing [something] into two pieces","placeholders":["teabag"]}, +{"id":"188245","label":"opening a dvd","template":"Opening [something]","placeholders":["a dvd"]}, +{"id":"20628","label":"spilling coffee grounds behind cup","template":"Spilling [something] behind [something]","placeholders":["coffee grounds","cup"]}, +{"id":"568","label":"moving a trophy across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a trophy"]}, +{"id":"30173","label":"holding pillow next to chair","template":"Holding [something] next to [something]","placeholders":["pillow","chair"]}, +{"id":"44850","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"51559","label":"covering humidifier with towel","template":"Covering [something] with [something]","placeholders":["humidifier","towel"]}, +{"id":"108368","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"173875","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"218971","label":"putting deo into bagback","template":"Putting [something] into [something]","placeholders":["deo","bagback"]}, +{"id":"208801","label":"plugging headphones into a smartphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","a smartphone"]}, +{"id":"184986","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"33837","label":"showing pen behind notebook","template":"Showing [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"118150","label":"throwing basketball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["basketball"]}, +{"id":"82772","label":"opening a chinese food box","template":"Opening [something]","placeholders":["a chinese food box"]}, +{"id":"106349","label":"showing that pen is inside holder","template":"Showing that [something] is inside [something]","placeholders":["pen","holder"]}, +{"id":"215984","label":"pretending to close glass without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["glass"]}, +{"id":"211154","label":"pretending to put keys next to bag","template":"Pretending to put [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"161053","label":"moving a mug and another mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a mug","another mug"]}, +{"id":"180805","label":"moving a shoe and a purse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a shoe","a purse"]}, +{"id":"30829","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"156666","label":"spilling milk onto table mat","template":"Spilling [something] onto [something]","placeholders":["milk","table mat"]}, +{"id":"85985","label":"dropping pencil into floor","template":"Dropping [something] into [something]","placeholders":["pencil","floor"]}, +{"id":"63141","label":"putting silicone onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["silicone"]}, +{"id":"28050","label":"spinning a raw egg that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a raw egg"]}, +{"id":"110857","label":"showing snack to the camera","template":"Showing [something] to the camera","placeholders":["snack"]}, +{"id":"114784","label":"putting bottle behind cup","template":"Putting [something] behind [something]","placeholders":["bottle","cup"]}, +{"id":"171169","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"132553","label":"taking pen out of jar","template":"Taking [something] out of [something]","placeholders":["pen","jar"]}, +{"id":"14438","label":"wiping dish soap off of a laundry machine","template":"Wiping [something] off of [something]","placeholders":["dish soap","a laundry machine"]}, +{"id":"7750","label":"spinning a popsicle stick that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a popsicle stick"]}, +{"id":"6300","label":"moving a large ball and a small ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a large ball","a small ball"]}, +{"id":"24224","label":"pretending to close face powder without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["face powder"]}, +{"id":"4071","label":"turning the camera right while filming white toy car","template":"Turning the camera right while filming [something]","placeholders":["white toy car"]}, +{"id":"64032","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"127576","label":"dropping controller behind headset","template":"Dropping [something] behind [something]","placeholders":["controller","headset"]}, +{"id":"10201","label":"lifting up one end of bottle without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["bottle"]}, +{"id":"5767","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"199838","label":"hitting a beaker with a pen","template":"Hitting [something] with [something]","placeholders":["a beaker","a pen"]}, +{"id":"202663","label":"spinning a scotch roll so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a scotch roll"]}, +{"id":"111604","label":"poking a stack of boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["boxes"]}, +{"id":"139092","label":"pretending or failing to wipe stain off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","table"]}, +{"id":"191802","label":"closing bottle","template":"Closing [something]","placeholders":["bottle"]}, +{"id":"30178","label":"pulling two ends of a piece of plastic so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a piece of plastic"]}, +{"id":"77781","label":"pretending to pick jar up","template":"Pretending to pick [something] up","placeholders":["jar"]}, +{"id":"30860","label":"pretending to open a cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cup"]}, +{"id":"95469","label":"throwing bear onto a surface","template":"Throwing [something] onto a surface","placeholders":["bear"]}, +{"id":"31068","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"53740","label":"pushing hairspraiy bottle so it spins","template":"Pushing [something] so it spins","placeholders":["hairspraiy bottle"]}, +{"id":"117331","label":"putting a mug next to a bottle","template":"Putting [something] next to [something]","placeholders":["a mug","a bottle"]}, +{"id":"112544","label":"putting cable that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cable"]}, +{"id":"15812","label":"moving paper away from the camera","template":"Moving [something] away from the camera","placeholders":["paper"]}, +{"id":"97201","label":"uncovering a bangle","template":"Uncovering [something]","placeholders":["a bangle"]}, +{"id":"113132","label":"putting pot on a surface","template":"Putting [something] on a surface","placeholders":["pot"]}, +{"id":"177809","label":"dropping wallet onto rug","template":"Dropping [something] onto [something]","placeholders":["wallet","rug"]}, +{"id":"85067","label":"putting rubix cube in front of toy car","template":"Putting [something] in front of [something]","placeholders":["rubix cube","toy car"]}, +{"id":"182165","label":"twisting bottle top","template":"Twisting [something]","placeholders":["bottle top"]}, +{"id":"10786","label":"pretending to put small fresh mint on a surface","template":"Pretending to put [something] on a surface","placeholders":["small fresh mint"]}, +{"id":"55178","label":"tipping a bottle of glue over","template":"Tipping [something] over","placeholders":["a bottle of glue"]}, +{"id":"93638","label":"uncovering a cardboard","template":"Uncovering [something]","placeholders":["a cardboard"]}, +{"id":"99735","label":"plugging a charger into a cell phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a cell phone"]}, +{"id":"9675","label":"plugging usb into phone charger","template":"Plugging [something] into [something]","placeholders":["usb","phone charger"]}, +{"id":"171477","label":"closing kitchen cabinet","template":"Closing [something]","placeholders":["kitchen cabinet"]}, +{"id":"104808","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"144970","label":"plugging charger into ipad","template":"Plugging [something] into [something]","placeholders":["charger","ipad"]}, +{"id":"142383","label":"squeezing ball shaped spring","template":"Squeezing [something]","placeholders":["ball shaped spring"]}, +{"id":"211841","label":"small paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["small paper"]}, +{"id":"113244","label":"rolling marble on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marble"]}, +{"id":"6368","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"56841","label":"turning milk mug upside down","template":"Turning [something] upside down","placeholders":["milk mug"]}, +{"id":"174723","label":"putting sock, book and glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sock","book","glass"]}, +{"id":"22875","label":"a tissue box colliding with another tissue box and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a tissue box","another tissue box"]}, +{"id":"128681","label":"tipping cup with crackers over, so cracker falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","crackers","cracker"]}, +{"id":"18596","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"156353","label":"letting wallet roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["wallet"]}, +{"id":"15034","label":"plugging baby monitor cord into power outlet","template":"Plugging [something] into [something]","placeholders":["baby monitor cord","power outlet"]}, +{"id":"49969","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"27155","label":"turning stul upside down","template":"Turning [something] upside down","placeholders":["stul"]}, +{"id":"45621","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"137870","label":"holding a ball over a stool","template":"Holding [something] over [something]","placeholders":["a ball","a stool"]}, +{"id":"210229","label":"stuffing cloth into mug","template":"Stuffing [something] into [something]","placeholders":["cloth","mug"]}, +{"id":"11665","label":"squeezing ketchup","template":"Squeezing [something]","placeholders":["ketchup"]}, +{"id":"129620","label":"putting ball pump upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["ball pump"]}, +{"id":"21759","label":"putting pendrive","template":"Putting [something similar to other things that are already on the table]","placeholders":["pendrive"]}, +{"id":"28887","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"112885","label":"dropping a box onto a book","template":"Dropping [something] onto [something]","placeholders":["a box","a book"]}, +{"id":"4829","label":"stuffing cover into cup","template":"Stuffing [something] into [something]","placeholders":["cover","cup"]}, +{"id":"179592","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"20807","label":"pulling two ends of putty so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["putty"]}, +{"id":"136522","label":"uncovering a stappler","template":"Uncovering [something]","placeholders":["a stappler"]}, +{"id":"139972","label":"poking a pack of cards so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pack of cards"]}, +{"id":"89049","label":"removing bottle, revealing marker behind","template":"Removing [something], revealing [something] behind","placeholders":["bottle","marker"]}, +{"id":"21308","label":"pretending to open camera cover without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["camera cover"]}, +{"id":"163546","label":"holding pen in front of monitor","template":"Holding [something] in front of [something]","placeholders":["pen","monitor"]}, +{"id":"43181","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"206131","label":"putting a pen on a surface","template":"Putting [something] on a surface","placeholders":["a pen"]}, +{"id":"37250","label":"turning a marmalade jar upside down","template":"Turning [something] upside down","placeholders":["a marmalade jar"]}, +{"id":"67389","label":"dropping sellotape into box","template":"Dropping [something] into [something]","placeholders":["sellotape","box"]}, +{"id":"46848","label":"tilting a candelabra with a candle on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a candelabra","a candle"]}, +{"id":"128225","label":"putting a tea light candle on the table with other candles","template":"Putting [something similar to other things that are already on the table]","placeholders":["a tea light candle on the table with other candles"]}, +{"id":"111103","label":"pulling a pencil case from right to left","template":"Pulling [something] from right to left","placeholders":["a pencil case"]}, +{"id":"61437","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"218641","label":"pulling curtain from left to right","template":"Pulling [something] from left to right","placeholders":["curtain"]}, +{"id":"119063","label":"holding stapler over comb","template":"Holding [something] over [something]","placeholders":["stapler","comb"]}, +{"id":"11044","label":"closing highlighter","template":"Closing [something]","placeholders":["highlighter"]}, +{"id":"50758","label":"turning the camera upwards while filming chandelier","template":"Turning the camera upwards while filming [something]","placeholders":["chandelier"]}, +{"id":"42367","label":"pushing water bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["water bottle"]}, +{"id":"130206","label":"pretending to take fragance from table","template":"Pretending to take [something] from [somewhere]","placeholders":["fragance","table"]}, +{"id":"43684","label":"turning the camera left while filming krishna idole","template":"Turning the camera left while filming [something]","placeholders":["krishna idole"]}, +{"id":"160195","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"171789","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"3873","label":"squeezing paper tube","template":"Squeezing [something]","placeholders":["paper tube"]}, +{"id":"8659","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"46173","label":"lifting usb stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["usb stick"]}, +{"id":"187004","label":"charger falling like a rock","template":"[Something] falling like a rock","placeholders":["charger"]}, +{"id":"83896","label":"laying sun protection cream bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["sun protection cream bottle"]}, +{"id":"106598","label":"covering a stuffed animal with a blanket","template":"Covering [something] with [something]","placeholders":["a stuffed animal","a blanket"]}, +{"id":"164488","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"209475","label":"putting body spray bottle on a surface","template":"Putting [something] on a surface","placeholders":["body spray bottle"]}, +{"id":"94778","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"101096","label":"pretending to poke glass","template":"Pretending to poke [something]","placeholders":["glass"]}, +{"id":"212458","label":"pretending to pour liquid out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["liquid","cup","cup"]}, +{"id":"40731","label":"pretending to open refrigerator without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["refrigerator"]}, +{"id":"112873","label":"putting notebook into box","template":"Putting [something] into [something]","placeholders":["notebook","box"]}, +{"id":"218562","label":"showing a photo of children to the camera","template":"Showing a photo of [something] to the camera","placeholders":["children"]}, +{"id":"212885","label":"opening marker pen cap","template":"Opening [something]","placeholders":["marker pen cap"]}, +{"id":"181204","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"191550","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"178176","label":"putting 4 pens onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["4","pens","diary"]}, +{"id":"65026","label":"moving pencil away from the camera","template":"Moving [something] away from the camera","placeholders":["pencil"]}, +{"id":"25372","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"125075","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"16599","label":"pretending to pick headphone up","template":"Pretending to pick [something] up","placeholders":["headphone"]}, +{"id":"77529","label":"showing bottle on top of table","template":"Showing [something] on top of [something]","placeholders":["bottle","table"]}, +{"id":"74077","label":"pretending or trying and failing to twist a penny","template":"Pretending or trying and failing to twist [something]","placeholders":["a penny"]}, +{"id":"127287","label":"showing a bottle behind a lighter","template":"Showing [something] behind [something]","placeholders":["a bottle","a lighter"]}, +{"id":"35153","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"103369","label":"turning the camera right while filming car","template":"Turning the camera right while filming [something]","placeholders":["car"]}, +{"id":"47061","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"183991","label":"taking one domino token","template":"Taking [one of many similar things on the table]","placeholders":["one domino token"]}, +{"id":"126013","label":"handkerchief falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["handkerchief"]}, +{"id":"37882","label":"pretending to put air on a surface","template":"Pretending to put [something] on a surface","placeholders":["air"]}, +{"id":"192140","label":"putting plastic comb behind mug","template":"Putting [something] behind [something]","placeholders":["plastic comb","mug"]}, +{"id":"191918","label":"dropping shoe behind bin","template":"Dropping [something] behind [something]","placeholders":["shoe","bin"]}, +{"id":"94273","label":"putting videogame underneath bed","template":"Putting [something] underneath [something]","placeholders":["videogame","bed"]}, +{"id":"202432","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"13123","label":"approaching a picture with your camera","template":"Approaching [something] with your camera","placeholders":["a picture"]}, +{"id":"202816","label":"spinning clothclip that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["clothclip"]}, +{"id":"183695","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"190235","label":"turning the camera left while filming motor bike","template":"Turning the camera left while filming [something]","placeholders":["motor bike"]}, +{"id":"154968","label":"moving flower towards the camera","template":"Moving [something] towards the camera","placeholders":["flower"]}, +{"id":"139204","label":"poking a hole into soft doh","template":"Poking a hole into [something soft]","placeholders":["soft doh"]}, +{"id":"134988","label":"holding sunglasses behind package","template":"Holding [something] behind [something]","placeholders":["sunglasses","package"]}, +{"id":"68350","label":"lifting firm plastic up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["firm plastic"]}, +{"id":"40879","label":"stuffing iphone into a sock","template":"Stuffing [something] into [something]","placeholders":["iphone","a sock"]}, +{"id":"179712","label":"holding purple container behind notecard","template":"Holding [something] behind [something]","placeholders":["purple container","notecard"]}, +{"id":"146657","label":"dropping plate in front of plate","template":"Dropping [something] in front of [something]","placeholders":["plate","plate"]}, +{"id":"51014","label":"tearing letter into two pieces","template":"Tearing [something] into two pieces","placeholders":["letter"]}, +{"id":"35831","label":"putting 1 laptop onto pillow","template":"Putting [number of] [something] onto [something]","placeholders":["1","laptop","pillow"]}, +{"id":"179280","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"159951","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"211878","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"149231","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"138344","label":"moving phone closer to box","template":"Moving [something] closer to [something]","placeholders":["phone","box"]}, +{"id":"626","label":"showing jeep to the camera","template":"Showing [something] to the camera","placeholders":["jeep"]}, +{"id":"144626","label":"moving earth of globe","template":"Moving [part] of [something]","placeholders":["earth","globe"]}, +{"id":"72913","label":"pushing small book from right to left","template":"Pushing [something] from right to left","placeholders":["small book"]}, +{"id":"164457","label":"moving spoon and box so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["spoon","box"]}, +{"id":"68118","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"218044","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"111033","label":"lifting up one end of straw, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["straw"]}, +{"id":"196821","label":"pulling a peg from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a peg","a box"]}, +{"id":"29049","label":"pouring soda out of a soda can","template":"Pouring [something] out of [something]","placeholders":["soda","a soda can"]}, +{"id":"115569","label":"pretending to close eyeglass cases without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["eyeglass cases"]}, +{"id":"171101","label":"stuffing sweatshirt into bag","template":"Stuffing [something] into [something]","placeholders":["sweatshirt","bag"]}, +{"id":"64943","label":"tilting a cutting board with a spoon on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cutting board","a spoon"]}, +{"id":"104485","label":"rubber duck falling like a rock","template":"[Something] falling like a rock","placeholders":["rubber duck"]}, +{"id":"15941","label":"squeezing thin box","template":"Squeezing [something]","placeholders":["thin box"]}, +{"id":"49103","label":"pretending to throw a pen","template":"Pretending to throw [something]","placeholders":["a pen"]}, +{"id":"153712","label":"wiping water off of desk","template":"Wiping [something] off of [something]","placeholders":["water","desk"]}, +{"id":"177899","label":"plugging adapter into outlet","template":"Plugging [something] into [something]","placeholders":["adapter","outlet"]}, +{"id":"123173","label":"putting bag next to cupboard","template":"Putting [something] next to [something]","placeholders":["bag","cupboard"]}, +{"id":"41735","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"123353","label":"pushing highlighter pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["highlighter pen"]}, +{"id":"116822","label":"hitting book with book","template":"Hitting [something] with [something]","placeholders":["book","book"]}, +{"id":"47343","label":"hitting cup with spoon","template":"Hitting [something] with [something]","placeholders":["cup","spoon"]}, +{"id":"2963","label":"attaching a magnet to refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","refrigerator"]}, +{"id":"194192","label":"moving a mug and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a mug","scissors"]}, +{"id":"4784","label":"pushing pepper so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pepper"]}, +{"id":"220781","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"87111","label":"hitting stone with lemon","template":"Hitting [something] with [something]","placeholders":["stone","lemon"]}, +{"id":"664","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"6079","label":"ball being deflected from a wall","template":"[Something] being deflected from [something]","placeholders":["ball","a wall"]}, +{"id":"173943","label":"stuffing a bottle into a plastic bag","template":"Stuffing [something] into [something]","placeholders":["a bottle","a plastic bag"]}, +{"id":"105890","label":"pushing a hanger so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a hanger"]}, +{"id":"197315","label":"bending metal pipe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal pipe"]}, +{"id":"119313","label":"throwing control in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["control"]}, +{"id":"124981","label":"moving bearings and speaker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bearings","speaker"]}, +{"id":"203395","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"158544","label":"moving a sheet of paper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a sheet of paper"]}, +{"id":"173323","label":"hitting tumbler with glass","template":"Hitting [something] with [something]","placeholders":["tumbler","glass"]}, +{"id":"17248","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"111059","label":"pretending to squeeze glass","template":"Pretending to squeeze [something]","placeholders":["glass"]}, +{"id":"199252","label":"pushing small sunscreen lotion from left to right","template":"Pushing [something] from left to right","placeholders":["small sunscreen lotion"]}, +{"id":"135609","label":"hitting can with knife","template":"Hitting [something] with [something]","placeholders":["can","knife"]}, +{"id":"164623","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"106256","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"152453","label":"opening gate","template":"Opening [something]","placeholders":["gate"]}, +{"id":"84242","label":"pushing orange post-it from right to left","template":"Pushing [something] from right to left","placeholders":["orange post-it"]}, +{"id":"45228","label":"moving a bottle and another bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","another bottle"]}, +{"id":"115528","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"218718","label":"removing plastik bag, revealing vase behind","template":"Removing [something], revealing [something] behind","placeholders":["plastik bag","vase"]}, +{"id":"69235","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"73037","label":"touching (without moving) pull part of light","template":"Touching (without moving) [part] of [something]","placeholders":["pull part","light"]}, +{"id":"164973","label":"throwing remote in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["remote"]}, +{"id":"181841","label":"showing a book next to a stapler","template":"Showing [something] next to [something]","placeholders":["a book","a stapler"]}, +{"id":"171852","label":"covering earring with bottle","template":"Covering [something] with [something]","placeholders":["earring","bottle"]}, +{"id":"67735","label":"letting roll along flat surface roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["roll along flat surface"]}, +{"id":"179411","label":"pushing nail varnish from left to right","template":"Pushing [something] from left to right","placeholders":["nail varnish"]}, +{"id":"21558","label":"putting coin onto fidget spinner","template":"Putting [something] onto [something]","placeholders":["coin","fidget spinner"]}, +{"id":"22561","label":"pretending to be tearing shoe","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shoe"]}, +{"id":"86141","label":"plugging cellphone charge plug into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cellphone charge plug","wall socket"]}, +{"id":"187293","label":"holding a laptop","template":"Holding [something]","placeholders":["a laptop"]}, +{"id":"42148","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"184809","label":"moving towel away from towel","template":"Moving [something] away from [something]","placeholders":["towel","towel"]}, +{"id":"154749","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"138877","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"120158","label":"gum colliding with gum and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["gum","gum"]}, +{"id":"91071","label":"pushing spinner so it spins","template":"Pushing [something] so it spins","placeholders":["spinner"]}, +{"id":"30805","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"36715","label":"trying but failing to attach usb cable to a computer port because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["usb cable","a computer port"]}, +{"id":"168325","label":"putting pen behind diary","template":"Putting [something] behind [something]","placeholders":["pen","diary"]}, +{"id":"105256","label":"throwing napkin","template":"Throwing [something]","placeholders":["napkin"]}, +{"id":"207290","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"120960","label":"uncovering goggles","template":"Uncovering [something]","placeholders":["goggles"]}, +{"id":"151101","label":"pulling tape measure from right to left","template":"Pulling [something] from right to left","placeholders":["tape measure"]}, +{"id":"142132","label":"trying to bend plastic brush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plastic brush"]}, +{"id":"208689","label":"moving charger and pendrive closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["charger","pendrive"]}, +{"id":"80735","label":"putting plastic comb into mug","template":"Putting [something] into [something]","placeholders":["plastic comb","mug"]}, +{"id":"26512","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"145153","label":"opening cabinet","template":"Opening [something]","placeholders":["cabinet"]}, +{"id":"105925","label":"taking measuring tape from ground","template":"Taking [something] from [somewhere]","placeholders":["measuring tape","ground"]}, +{"id":"11922","label":"showing birds to the camera","template":"Showing [something] to the camera","placeholders":["birds"]}, +{"id":"61495","label":"twisting a hairspray can","template":"Twisting [something]","placeholders":["a hairspray can"]}, +{"id":"110847","label":"pretending to turn a glass upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass"]}, +{"id":"65680","label":"showing iphone adapter to the camera","template":"Showing [something] to the camera","placeholders":["iphone adapter"]}, +{"id":"141259","label":"showing lip protectant behind got2b gel","template":"Showing [something] behind [something]","placeholders":["lip protectant","got2b gel"]}, +{"id":"59264","label":"putting lighter onto sunglasses so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["lighter","sunglasses"]}, +{"id":"78843","label":"putting one more glass bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["one more glass bottle"]}, +{"id":"84412","label":"lifting brush up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["brush"]}, +{"id":"111090","label":"trying but failing to attach sticky note to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["sticky note","wall"]}, +{"id":"190334","label":"moving fork and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["fork","spoon"]}, +{"id":"120431","label":"soap falling like a rock","template":"[Something] falling like a rock","placeholders":["soap"]}, +{"id":"78716","label":"moving remote towards the camera","template":"Moving [something] towards the camera","placeholders":["remote"]}, +{"id":"112723","label":"covering remote control with paper","template":"Covering [something] with [something]","placeholders":["remote control","paper"]}, +{"id":"30118","label":"spilling water behind paper","template":"Spilling [something] behind [something]","placeholders":["water","paper"]}, +{"id":"154723","label":"pretending to be tearing magazine","template":"Pretending to be tearing [something that is not tearable]","placeholders":["magazine"]}, +{"id":"97604","label":"putting cream behind knife","template":"Putting [something] behind [something]","placeholders":["cream","knife"]}, +{"id":"36352","label":"pushing ketchup bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["ketchup bottle"]}, +{"id":"90103","label":"lifting up one end of wallet, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["wallet"]}, +{"id":"45086","label":"pretending to squeeze a can","template":"Pretending to squeeze [something]","placeholders":["a can"]}, +{"id":"218826","label":"plugging a plug adapter into a wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug adapter","a wall socket"]}, +{"id":"40863","label":"putting one poker chip into a group with many poker chips","template":"Putting [something similar to other things that are already on the table]","placeholders":["one poker chip into a group with many poker chips"]}, +{"id":"143931","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"41780","label":"closing laptop","template":"Closing [something]","placeholders":["laptop"]}, +{"id":"12931","label":"bending wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden stick"]}, +{"id":"7278","label":"pretending or failing to wipe name off of tablet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["name","tablet"]}, +{"id":"129732","label":"trying to bend scissors so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissors"]}, +{"id":"193536","label":"a card falling like a rock","template":"[Something] falling like a rock","placeholders":["a card"]}, +{"id":"138712","label":"showing sign board to the camera","template":"Showing [something] to the camera","placeholders":["sign board"]}, +{"id":"62879","label":"putting an envelop on a surface","template":"Putting [something] on a surface","placeholders":["an envelop"]}, +{"id":"124982","label":"opening a perfume bottle","template":"Opening [something]","placeholders":["a perfume bottle"]}, +{"id":"85446","label":"pushing purple balloon pump from left to right","template":"Pushing [something] from left to right","placeholders":["purple balloon pump"]}, +{"id":"33778","label":"holding pen behind bag","template":"Holding [something] behind [something]","placeholders":["pen","bag"]}, +{"id":"69359","label":"plugging a charger into a computer","template":"Plugging [something] into [something]","placeholders":["a charger","a computer"]}, +{"id":"31878","label":"stacking 5 books","template":"Stacking [number of] [something]","placeholders":["5","books"]}, +{"id":"149428","label":"dropping a matchstick onto an envelope","template":"Dropping [something] onto [something]","placeholders":["a matchstick","an envelope"]}, +{"id":"85017","label":"digging ball out of sand","template":"Digging [something] out of [something]","placeholders":["ball","sand"]}, +{"id":"147799","label":"covering notebook with hat","template":"Covering [something] with [something]","placeholders":["notebook","hat"]}, +{"id":"144581","label":"cellphone falling like a rock","template":"[Something] falling like a rock","placeholders":["cellphone"]}, +{"id":"128532","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"90642","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"45107","label":"putting mobile on to a table","template":"Putting [something similar to other things that are already on the table]","placeholders":["mobile on to a table"]}, +{"id":"26192","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"35644","label":"showing fork on top of plate","template":"Showing [something] on top of [something]","placeholders":["fork","plate"]}, +{"id":"95706","label":"plugging a cord into a phone","template":"Plugging [something] into [something]","placeholders":["a cord","a phone"]}, +{"id":"160763","label":"moving a pen across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a pen"]}, +{"id":"122822","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"73137","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"1730","label":"throwing santa hat in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["santa hat"]}, +{"id":"116149","label":"putting car and book on the table","template":"Putting [something] and [something] on the table","placeholders":["car","book"]}, +{"id":"193529","label":"pushing a tin from left to right","template":"Pushing [something] from left to right","placeholders":["a tin"]}, +{"id":"28145","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"83069","label":"uncovering soap holder","template":"Uncovering [something]","placeholders":["soap holder"]}, +{"id":"26734","label":"turning a box of tissues upside down","template":"Turning [something] upside down","placeholders":["a box of tissues"]}, +{"id":"17315","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"210549","label":"rolling toy on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["toy"]}, +{"id":"110918","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"140933","label":"covering bottle with pillow","template":"Covering [something] with [something]","placeholders":["bottle","pillow"]}, +{"id":"55125","label":"laying boot on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["boot"]}, +{"id":"172395","label":"taking white chalk from table","template":"Taking [something] from [somewhere]","placeholders":["white chalk","table"]}, +{"id":"105481","label":"putting the bowl in front of glass","template":"Putting [something] in front of [something]","placeholders":["the bowl","glass"]}, +{"id":"20374","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"63638","label":"showing that pens is inside mug","template":"Showing that [something] is inside [something]","placeholders":["pens","mug"]}, +{"id":"214314","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"153961","label":"putting carbon paper into the bill book","template":"Putting [something] into [something]","placeholders":["carbon paper","the bill book"]}, +{"id":"208683","label":"holding old mobile phone","template":"Holding [something]","placeholders":["old mobile phone"]}, +{"id":"124897","label":"showing pen behind calculator","template":"Showing [something] behind [something]","placeholders":["pen","calculator"]}, +{"id":"26327","label":"putting a small bottle and a fidget cube on the table","template":"Putting [something] and [something] on the table","placeholders":["a small bottle","a fidget cube"]}, +{"id":"115694","label":"covering round case with towel","template":"Covering [something] with [something]","placeholders":["round case","towel"]}, +{"id":"104227","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"109558","label":"pushing small box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["small box"]}, +{"id":"95285","label":"moving night light and fig closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["night light","fig"]}, +{"id":"97576","label":"showing a cup on top of a mixer grinder","template":"Showing [something] on top of [something]","placeholders":["a cup","a mixer grinder"]}, +{"id":"218361","label":"turning the camera right while filming fruits","template":"Turning the camera right while filming [something]","placeholders":["fruits"]}, +{"id":"86099","label":"putting fry pan that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["fry pan"]}, +{"id":"112088","label":"opening hand cream tube","template":"Opening [something]","placeholders":["hand cream tube"]}, +{"id":"3871","label":"putting coloured pen into pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["coloured pen into pens"]}, +{"id":"24498","label":"covering cat with towel","template":"Covering [something] with [something]","placeholders":["cat","towel"]}, +{"id":"100186","label":"a battery falling like a rock","template":"[Something] falling like a rock","placeholders":["a battery"]}, +{"id":"197549","label":"turning the camera downwards while filming small green ball","template":"Turning the camera downwards while filming [something]","placeholders":["small green ball"]}, +{"id":"45951","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"134653","label":"tearing a paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper towel"]}, +{"id":"150075","label":"plugging a usb connector into charging port","template":"Plugging [something] into [something]","placeholders":["a usb connector","charging port"]}, +{"id":"85616","label":"plugging plug into surge protector but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","surge protector"]}, +{"id":"130469","label":"pushing toy wheel with wooden stick","template":"Pushing [something] with [something]","placeholders":["toy wheel","wooden stick"]}, +{"id":"108152","label":"poking phone so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["phone"]}, +{"id":"9578","label":"dropping a ruler onto a notebook","template":"Dropping [something] onto [something]","placeholders":["a ruler","a notebook"]}, +{"id":"121804","label":"moving spoon up","template":"Moving [something] up","placeholders":["spoon"]}, +{"id":"196406","label":"lifting book with power bank on it","template":"Lifting [something] with [something] on it","placeholders":["book","power bank"]}, +{"id":"10191","label":"pretending to close the door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["the door"]}, +{"id":"120503","label":"throwing the bottle","template":"Throwing [something]","placeholders":["the bottle"]}, +{"id":"178551","label":"putting bolt screw, gear wheel and pencil sharpner on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bolt screw","gear wheel","pencil sharpner"]}, +{"id":"133337","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"139288","label":"poking toy globe so that it spins around","template":"Poking [something] so that it spins around","placeholders":["toy globe"]}, +{"id":"138067","label":"moving towel away from towel","template":"Moving [something] away from [something]","placeholders":["towel","towel"]}, +{"id":"83306","label":"moving sun glass towards the camera","template":"Moving [something] towards the camera","placeholders":["sun glass"]}, +{"id":"65009","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"107100","label":"putting mobile phone similar to other mobile phones that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["mobile phone similar to other mobile phones that are already on the table"]}, +{"id":"9186","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"218347","label":"turning the camera right while filming one tea light candle","template":"Turning the camera right while filming [something]","placeholders":["one tea light candle"]}, +{"id":"62906","label":"moving away from car with your camera","template":"Moving away from [something] with your camera","placeholders":["car"]}, +{"id":"208451","label":"showing marker behind pen","template":"Showing [something] behind [something]","placeholders":["marker","pen"]}, +{"id":"14541","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"36725","label":"uncovering tablet","template":"Uncovering [something]","placeholders":["tablet"]}, +{"id":"97520","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"200714","label":"spilling water behind doll","template":"Spilling [something] behind [something]","placeholders":["water","doll"]}, +{"id":"68421","label":"putting glass of water on a surface","template":"Putting [something] on a surface","placeholders":["glass of water"]}, +{"id":"19182","label":"\\'' paper\\''fall\\''down falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["\\'' paper\\''fall\\''down"]}, +{"id":"190860","label":"a mobile phone falling like a rock","template":"[Something] falling like a rock","placeholders":["a mobile phone"]}, +{"id":"135565","label":"picking board clip up","template":"Picking [something] up","placeholders":["board clip"]}, +{"id":"54579","label":"plugging adaptor into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["adaptor","socket"]}, +{"id":"121659","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"156130","label":"putting mug in front of fork","template":"Putting [something] in front of [something]","placeholders":["mug","fork"]}, +{"id":"49751","label":"throwing nickel onto a surface","template":"Throwing [something] onto a surface","placeholders":["nickel"]}, +{"id":"29141","label":"throwing remote control in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["remote control"]}, +{"id":"12856","label":"pretending to put pen onto book","template":"Pretending to put [something] onto [something]","placeholders":["pen","book"]}, +{"id":"25779","label":"showing a onion on top of a bottle","template":"Showing [something] on top of [something]","placeholders":["a onion","a bottle"]}, +{"id":"17182","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"195294","label":"pretending to close food container without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["food container"]}, +{"id":"127763","label":"throwing pipe","template":"Throwing [something]","placeholders":["pipe"]}, +{"id":"78306","label":"putting notebook upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["notebook"]}, +{"id":"64595","label":"twisting (wringing) kerchief wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["kerchief"]}, +{"id":"206949","label":"showing broken stones to the camera","template":"Showing [something] to the camera","placeholders":["broken stones"]}, +{"id":"153575","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"90266","label":"dropping bulb syringe into sink","template":"Dropping [something] into [something]","placeholders":["bulb syringe","sink"]}, +{"id":"88927","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"73975","label":"pushing bottle with box","template":"Pushing [something] with [something]","placeholders":["bottle","box"]}, +{"id":"8634","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"69875","label":"pretending to poke doll","template":"Pretending to poke [something]","placeholders":["doll"]}, +{"id":"42565","label":"spinning a lego that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a lego"]}, +{"id":"175308","label":"pulling mouse from right to left","template":"Pulling [something] from right to left","placeholders":["mouse"]}, +{"id":"66669","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"109760","label":"moving toy puppy closer to toy","template":"Moving [something] closer to [something]","placeholders":["toy puppy","toy"]}, +{"id":"212833","label":"a toy car colliding with a toy car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a toy car","a toy car"]}, +{"id":"84939","label":"plugging charger into telephone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","telephone"]}, +{"id":"59719","label":"taking brush from purse","template":"Taking [something] from [somewhere]","placeholders":["brush","purse"]}, +{"id":"209710","label":"razor blade falling like a rock","template":"[Something] falling like a rock","placeholders":["razor blade"]}, +{"id":"44634","label":"pushing keys so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["keys"]}, +{"id":"68987","label":"showing a teaspoon on top of a mug","template":"Showing [something] on top of [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"168300","label":"pushing bottle with box","template":"Pushing [something] with [something]","placeholders":["bottle","box"]}, +{"id":"203829","label":"putting something underneath something","template":"Putting [something] underneath [something]","placeholders":["something","something"]}, +{"id":"125657","label":"trying to bend iron stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["iron stick"]}, +{"id":"69340","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"94264","label":"moving keyring of airpod case","template":"Moving [part] of [something]","placeholders":["keyring","airpod case"]}, +{"id":"42516","label":"showing card to the camera","template":"Showing [something] to the camera","placeholders":["card"]}, +{"id":"38431","label":"pushing phone so it spins","template":"Pushing [something] so it spins","placeholders":["phone"]}, +{"id":"141744","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"211564","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"1322","label":"pulling two ends of rubberband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubberband"]}, +{"id":"144633","label":"putting pink toothbrush case on a surface","template":"Putting [something] on a surface","placeholders":["pink toothbrush case"]}, +{"id":"79206","label":"moving my phone down","template":"Moving [something] down","placeholders":["my phone"]}, +{"id":"117431","label":"pushing a watch from right to left","template":"Pushing [something] from right to left","placeholders":["a watch"]}, +{"id":"24347","label":"throwing hook against wall","template":"Throwing [something] against [something]","placeholders":["hook","wall"]}, +{"id":"74629","label":"holding remote","template":"Holding [something]","placeholders":["remote"]}, +{"id":"159874","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"199008","label":"pretending to turn a bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["a bottle"]}, +{"id":"122533","label":"rolling an hourglass on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an hourglass"]}, +{"id":"88159","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"6891","label":"moving eraser across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["eraser"]}, +{"id":"137338","label":"tilting deo bottle with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["deo bottle","box"]}, +{"id":"161574","label":"picking a mini clothespin up","template":"Picking [something] up","placeholders":["a mini clothespin"]}, +{"id":"153594","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"30495","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"92388","label":"pushing ring so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ring"]}, +{"id":"87632","label":"turning the camera left while filming flowers","template":"Turning the camera left while filming [something]","placeholders":["flowers"]}, +{"id":"45900","label":"holding coconut over the cooker","template":"Holding [something] over [something]","placeholders":["coconut","the cooker"]}, +{"id":"213899","label":"turning the camera downwards while filming banana bunch","template":"Turning the camera downwards while filming [something]","placeholders":["banana bunch"]}, +{"id":"49683","label":"dropping rubix cube behind a pillow","template":"Dropping [something] behind [something]","placeholders":["rubix cube","a pillow"]}, +{"id":"4407","label":"throwing clementine in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["clementine"]}, +{"id":"172561","label":"putting bottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bottle"]}, +{"id":"186144","label":"putting iron roll on a surface","template":"Putting [something] on a surface","placeholders":["iron roll"]}, +{"id":"62582","label":"twisting a piece of paper","template":"Twisting [something]","placeholders":["a piece of paper"]}, +{"id":"6426","label":"burying coin in flour","template":"Burying [something] in [something]","placeholders":["coin","flour"]}, +{"id":"208228","label":"pretending to take the nose from the dog's face","template":"Pretending to take [something] from [somewhere]","placeholders":["the nose","the dog's face"]}, +{"id":"207284","label":"backpack falling like a rock","template":"[Something] falling like a rock","placeholders":["backpack"]}, +{"id":"85360","label":"turning the camera right while filming flower","template":"Turning the camera right while filming [something]","placeholders":["flower"]}, +{"id":"106452","label":"tipping a tin with tea leaves over, so tea leaves falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a tin","tea leaves","tea leaves"]}, +{"id":"157675","label":"taking sticky note","template":"Taking [one of many similar things on the table]","placeholders":["sticky note"]}, +{"id":"196103","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"168324","label":"turning the camera left while filming toy giraffe","template":"Turning the camera left while filming [something]","placeholders":["toy giraffe"]}, +{"id":"156455","label":"pretending to open note book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["note book"]}, +{"id":"98847","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"61215","label":"putting spectacle box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["spectacle box"]}, +{"id":"203107","label":"covering controller with pillow","template":"Covering [something] with [something]","placeholders":["controller","pillow"]}, +{"id":"146418","label":"showing toaster next to microwave","template":"Showing [something] next to [something]","placeholders":["toaster","microwave"]}, +{"id":"161657","label":"covering a watch with a hand","template":"Covering [something] with [something]","placeholders":["a watch","a hand"]}, +{"id":"134584","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"137099","label":"pulling two ends of a cloth but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a cloth"]}, +{"id":"79910","label":"pulling two ends of hair elastic so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair elastic"]}, +{"id":"101859","label":"pushing container from left to right","template":"Pushing [something] from left to right","placeholders":["container"]}, +{"id":"47097","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"85702","label":"scooping cereal up with measuring cup","template":"Scooping [something] up with [something]","placeholders":["cereal","measuring cup"]}, +{"id":"120147","label":"throwing puzzle piece in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["puzzle piece"]}, +{"id":"98076","label":"stacking 4 cups","template":"Stacking [number of] [something]","placeholders":["4","cups"]}, +{"id":"77722","label":"plugging plugg into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plugg","charger"]}, +{"id":"147947","label":"pushing a glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a glass"]}, +{"id":"7632","label":"moving envelopes across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["envelopes"]}, +{"id":"180103","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"49241","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"175737","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"40982","label":"trying but failing to attach paper to ball because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","ball"]}, +{"id":"109978","label":"moving table up","template":"Moving [something] up","placeholders":["table"]}, +{"id":"204882","label":"attaching bottle to cap","template":"Attaching [something] to [something]","placeholders":["bottle","cap"]}, +{"id":"194332","label":"covering headphones with clothing","template":"Covering [something] with [something]","placeholders":["headphones","clothing"]}, +{"id":"196047","label":"turning the camera left while filming gate","template":"Turning the camera left while filming [something]","placeholders":["gate"]}, +{"id":"219940","label":"bending spaghetti until it breaks","template":"Bending [something] until it breaks","placeholders":["spaghetti"]}, +{"id":"157576","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"161706","label":"pulling a measuring tape from left to right","template":"Pulling [something] from left to right","placeholders":["a measuring tape"]}, +{"id":"112895","label":"pouring animal feed out of container","template":"Pouring [something] out of [something]","placeholders":["animal feed","container"]}, +{"id":"33681","label":"pretending to sprinkle air onto a bowl of tomatoes","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl of tomatoes"]}, +{"id":"42130","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"16007","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"108784","label":"pushing marker pen from left to right","template":"Pushing [something] from left to right","placeholders":["marker pen"]}, +{"id":"196269","label":"turning soup bowl upside down","template":"Turning [something] upside down","placeholders":["soup bowl"]}, +{"id":"21651","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"103077","label":"turning the camera right while filming ball","template":"Turning the camera right while filming [something]","placeholders":["ball"]}, +{"id":"172482","label":"poking a box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a box"]}, +{"id":"181261","label":"bending a book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a book"]}, +{"id":"115644","label":"showing ring to the camera","template":"Showing [something] to the camera","placeholders":["ring"]}, +{"id":"140527","label":"moving away from water tap with your camera","template":"Moving away from [something] with your camera","placeholders":["water tap"]}, +{"id":"186245","label":"pushing a beaker so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a beaker"]}, +{"id":"202275","label":"pushing a mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a mouse"]}, +{"id":"218202","label":"attaching stopper to vial","template":"Attaching [something] to [something]","placeholders":["stopper","vial"]}, +{"id":"49005","label":"opening fridge","template":"Opening [something]","placeholders":["fridge"]}, +{"id":"132551","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"150254","label":"moving book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["book"]}, +{"id":"189104","label":"stacking 6 books","template":"Stacking [number of] [something]","placeholders":["6","books"]}, +{"id":"180337","label":"holding an envelope in front of a playstation controller","template":"Holding [something] in front of [something]","placeholders":["an envelope","a playstation controller"]}, +{"id":"143105","label":"rolling a steel ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a steel ball"]}, +{"id":"85240","label":"folding banana leaf","template":"Folding [something]","placeholders":["banana leaf"]}, +{"id":"181583","label":"laying a green box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a green box"]}, +{"id":"48363","label":"putting charger adapter into orange bowl","template":"Putting [something] into [something]","placeholders":["charger adapter","orange bowl"]}, +{"id":"37282","label":"tearing notecard just a little bit","template":"Tearing [something] just a little bit","placeholders":["notecard"]}, +{"id":"19069","label":"opening empty clay container","template":"Opening [something]","placeholders":["empty clay container"]}, +{"id":"194100","label":"squeezing a furball","template":"Squeezing [something]","placeholders":["a furball"]}, +{"id":"37052","label":"moving toy down","template":"Moving [something] down","placeholders":["toy"]}, +{"id":"176432","label":"letting an apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["an apple"]}, +{"id":"4138","label":"stuffing paper into bowl","template":"Stuffing [something] into [something]","placeholders":["paper","bowl"]}, +{"id":"203569","label":"putting pad lock","template":"Putting [something similar to other things that are already on the table]","placeholders":["pad lock"]}, +{"id":"72108","label":"trying to pour water into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a cup"]}, +{"id":"96520","label":"lifting iphone with pen on it","template":"Lifting [something] with [something] on it","placeholders":["iphone","pen"]}, +{"id":"177786","label":"pretending or failing to wipe paint off of corner","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","corner"]}, +{"id":"201724","label":"attaching a little piece of paper to a sheet of paper","template":"Attaching [something] to [something]","placeholders":["a little piece of paper","a sheet of paper"]}, +{"id":"181944","label":"moving leaf up","template":"Moving [something] up","placeholders":["leaf"]}, +{"id":"70702","label":"pretending to close book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["book"]}, +{"id":"90653","label":"holding mobile phone next to laptop","template":"Holding [something] next to [something]","placeholders":["mobile phone","laptop"]}, +{"id":"142100","label":"throwing popcorn tin","template":"Throwing [something]","placeholders":["popcorn tin"]}, +{"id":"82816","label":"throwing nail clippers in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["nail clippers"]}, +{"id":"129223","label":"tearing paper tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper tissue"]}, +{"id":"51249","label":"letting a plastic flusk roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a plastic flusk"]}, +{"id":"137868","label":"showing that ladle is empty","template":"Showing that [something] is empty","placeholders":["ladle"]}, +{"id":"192296","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"53036","label":"putting a notebook on a surface","template":"Putting [something] on a surface","placeholders":["a notebook"]}, +{"id":"43527","label":"tipping lighter over","template":"Tipping [something] over","placeholders":["lighter"]}, +{"id":"92215","label":"putting the keys into the glass","template":"Putting [something] into [something]","placeholders":["the keys","the glass"]}, +{"id":"17582","label":"holding book in front of painting","template":"Holding [something] in front of [something]","placeholders":["book","painting"]}, +{"id":"58605","label":"a cube falling like a rock","template":"[Something] falling like a rock","placeholders":["a cube"]}, +{"id":"51870","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"32149","label":"plugging mains plug into socket","template":"Plugging [something] into [something]","placeholders":["mains plug","socket"]}, +{"id":"62627","label":"pretending to be tearing towel material","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel material"]}, +{"id":"186118","label":"tilting book with phone on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","phone"]}, +{"id":"76243","label":"covering phone with book","template":"Covering [something] with [something]","placeholders":["phone","book"]}, +{"id":"116335","label":"throwing a book onto a surface","template":"Throwing [something] onto a surface","placeholders":["a book"]}, +{"id":"184572","label":"pulling bottle from left to right","template":"Pulling [something] from left to right","placeholders":["bottle"]}, +{"id":"197719","label":"poking a hole into notebook paper","template":"Poking a hole into [something soft]","placeholders":["notebook paper"]}, +{"id":"72712","label":"pouring water into container","template":"Pouring [something] into [something]","placeholders":["water","container"]}, +{"id":"55391","label":"piling something up","template":"Piling [something] up","placeholders":["something"]}, +{"id":"81358","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"17995","label":"moving a box closer to a cube","template":"Moving [something] closer to [something]","placeholders":["a box","a cube"]}, +{"id":"184121","label":"pulling two ends of thread so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["thread"]}, +{"id":"142440","label":"turning the camera upwards while filming lighter","template":"Turning the camera upwards while filming [something]","placeholders":["lighter"]}, +{"id":"152357","label":"piling binders up","template":"Piling [something] up","placeholders":["binders"]}, +{"id":"86421","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"42628","label":"putting ice cream scoop","template":"Putting [something similar to other things that are already on the table]","placeholders":["ice cream scoop"]}, +{"id":"96619","label":"moving bottle and ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["bottle","ball"]}, +{"id":"93549","label":"turning the camera left while filming water tap","template":"Turning the camera left while filming [something]","placeholders":["water tap"]}, +{"id":"181152","label":"pretending to put pen onto diary","template":"Pretending to put [something] onto [something]","placeholders":["pen","diary"]}, +{"id":"40930","label":"pretending to turn an apple upside down","template":"Pretending to turn [something] upside down","placeholders":["an apple"]}, +{"id":"6196","label":"showing a fidget spinner on top of a paper","template":"Showing [something] on top of [something]","placeholders":["a fidget spinner","a paper"]}, +{"id":"2251","label":"rolling lip balm on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lip balm"]}, +{"id":"212356","label":"covering cashew with cap","template":"Covering [something] with [something]","placeholders":["cashew","cap"]}, +{"id":"141934","label":"twisting twisting bottle cap","template":"Twisting [something]","placeholders":["twisting bottle cap"]}, +{"id":"33766","label":"moving headphones up","template":"Moving [something] up","placeholders":["headphones"]}, +{"id":"209994","label":"poking a pill bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a pill bottle"]}, +{"id":"185502","label":"stuffing paper into jar","template":"Stuffing [something] into [something]","placeholders":["paper","jar"]}, +{"id":"83693","label":"showing a photo of a paintbrush to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a paintbrush"]}, +{"id":"198062","label":"hitting coconut tree with hand","template":"Hitting [something] with [something]","placeholders":["coconut tree","hand"]}, +{"id":"24566","label":"touching (without moving) front of door","template":"Touching (without moving) [part] of [something]","placeholders":["front","door"]}, +{"id":"121142","label":"putting a ring on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a ring"]}, +{"id":"217615","label":"pretending to poke book","template":"Pretending to poke [something]","placeholders":["book"]}, +{"id":"86039","label":"plugging usb pin into laptop","template":"Plugging [something] into [something]","placeholders":["usb pin","laptop"]}, +{"id":"166132","label":"moving soda can closer to glass","template":"Moving [something] closer to [something]","placeholders":["soda can","glass"]}, +{"id":"28021","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"23550","label":"pushing something so it spins","template":"Pushing [something] so it spins","placeholders":["something"]}, +{"id":"102318","label":"showing pineapple to the camera","template":"Showing [something] to the camera","placeholders":["pineapple"]}, +{"id":"37110","label":"lifting plate with avocado on it","template":"Lifting [something] with [something] on it","placeholders":["plate","avocado"]}, +{"id":"90106","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"63041","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"132062","label":"pushing remote with comb","template":"Pushing [something] with [something]","placeholders":["remote","comb"]}, +{"id":"75383","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"176777","label":"moving rule up","template":"Moving [something] up","placeholders":["rule"]}, +{"id":"188301","label":"putting glasses, marker and gift card on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["glasses","marker","gift card"]}, +{"id":"179870","label":"pretending to put soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["soap"]}, +{"id":"215219","label":"putting brick next to brick","template":"Putting [something] next to [something]","placeholders":["brick","brick"]}, +{"id":"74529","label":"spinning toyfan so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toyfan"]}, +{"id":"30105","label":"poking alcohol bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["alcohol bottle"]}, +{"id":"37442","label":"dropping coin into box","template":"Dropping [something] into [something]","placeholders":["coin","box"]}, +{"id":"6342","label":"poking a lotion tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a lotion tube"]}, +{"id":"111853","label":"moving key up","template":"Moving [something] up","placeholders":["key"]}, +{"id":"193535","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"28519","label":"lipstick falling like a rock","template":"[Something] falling like a rock","placeholders":["lipstick"]}, +{"id":"137883","label":"pouring rubbing alcohol out of a bottle","template":"Pouring [something] out of [something]","placeholders":["rubbing alcohol","a bottle"]}, +{"id":"168537","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"66036","label":"stacking 3 white board clips","template":"Stacking [number of] [something]","placeholders":["3","white board clips"]}, +{"id":"45462","label":"moving lid of lavandin container","template":"Moving [part] of [something]","placeholders":["lid","lavandin container"]}, +{"id":"20106","label":"unfolding folded paper","template":"Unfolding [something]","placeholders":["folded paper"]}, +{"id":"111818","label":"lifting a towel up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a towel"]}, +{"id":"44700","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"198462","label":"adapter colliding with rock and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["adapter","rock"]}, +{"id":"176811","label":"squeezing foam block","template":"Squeezing [something]","placeholders":["foam block"]}, +{"id":"140161","label":"moving lighter up","template":"Moving [something] up","placeholders":["lighter"]}, +{"id":"1464","label":"closing kitchen cabinet","template":"Closing [something]","placeholders":["kitchen cabinet"]}, +{"id":"26984","label":"moving game down","template":"Moving [something] down","placeholders":["game"]}, +{"id":"162305","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"33327","label":"opening mobile phone cover","template":"Opening [something]","placeholders":["mobile phone cover"]}, +{"id":"198111","label":"dropping a card in front of a hard disk drive","template":"Dropping [something] in front of [something]","placeholders":["a card","a hard disk drive"]}, +{"id":"136876","label":"dropping orange colour sharpner in front of duster","template":"Dropping [something] in front of [something]","placeholders":["orange colour sharpner","duster"]}, +{"id":"22881","label":"moving tie across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["tie"]}, +{"id":"70548","label":"pouring dr.pepper into cup","template":"Pouring [something] into [something]","placeholders":["dr.pepper","cup"]}, +{"id":"45995","label":"hitting glass with tool","template":"Hitting [something] with [something]","placeholders":["glass","tool"]}, +{"id":"201692","label":"pushing blue lighter from left to right","template":"Pushing [something] from left to right","placeholders":["blue lighter"]}, +{"id":"68659","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"192369","label":"moving cub up","template":"Moving [something] up","placeholders":["cub"]}, +{"id":"128259","label":"turning the camera left while filming cat","template":"Turning the camera left while filming [something]","placeholders":["cat"]}, +{"id":"18100","label":"pulling stapler from left to right","template":"Pulling [something] from left to right","placeholders":["stapler"]}, +{"id":"161875","label":"spilling water onto a plant","template":"Spilling [something] onto [something]","placeholders":["water","a plant"]}, +{"id":"184687","label":"plugging a usb cord into a charger","template":"Plugging [something] into [something]","placeholders":["a usb cord","a charger"]}, +{"id":"128602","label":"plugging charger into mobile phone","template":"Plugging [something] into [something]","placeholders":["charger","mobile phone"]}, +{"id":"168365","label":"moving computer case down","template":"Moving [something] down","placeholders":["computer case"]}, +{"id":"178100","label":"a dice falling like a rock","template":"[Something] falling like a rock","placeholders":["a dice"]}, +{"id":"146732","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"105994","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"87458","label":"moving remote closer to coaster","template":"Moving [something] closer to [something]","placeholders":["remote","coaster"]}, +{"id":"140709","label":"spinning knife so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["knife"]}, +{"id":"75412","label":"pretending to open cup without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cup"]}, +{"id":"116983","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"89502","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"75639","label":"pulling notebook out of bookbag","template":"Pulling [something] out of [something]","placeholders":["notebook","bookbag"]}, +{"id":"98888","label":"uncovering water bottle","template":"Uncovering [something]","placeholders":["water bottle"]}, +{"id":"18437","label":"putting flashdisk next to yellowbook","template":"Putting [something] next to [something]","placeholders":["flashdisk","yellowbook"]}, +{"id":"997","label":"putting pencil, sharpener and eraser on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pencil","sharpener","eraser"]}, +{"id":"86352","label":"folding kitchen towel","template":"Folding [something]","placeholders":["kitchen towel"]}, +{"id":"215391","label":"pretending to put a jacket onto a bed","template":"Pretending to put [something] onto [something]","placeholders":["a jacket","a bed"]}, +{"id":"50606","label":"pretending to squeeze ball","template":"Pretending to squeeze [something]","placeholders":["ball"]}, +{"id":"33885","label":"pretending to put a hemet underneath scooter","template":"Pretending to put [something] underneath [something]","placeholders":["a hemet","scooter"]}, +{"id":"143225","label":"stuffing pot holder into vase","template":"Stuffing [something] into [something]","placeholders":["pot holder","vase"]}, +{"id":"88589","label":"moving fork away from spoon","template":"Moving [something] away from [something]","placeholders":["fork","spoon"]}, +{"id":"188708","label":"moving the remote away from the mouse","template":"Moving [something] away from [something]","placeholders":["the remote","the mouse"]}, +{"id":"214227","label":"trying to bend a marker so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a marker"]}, +{"id":"51931","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"55721","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"169828","label":"holding a marble over a frying pan","template":"Holding [something] over [something]","placeholders":["a marble","a frying pan"]}, +{"id":"152774","label":"uncovering watch","template":"Uncovering [something]","placeholders":["watch"]}, +{"id":"151912","label":"holding a cup over a book","template":"Holding [something] over [something]","placeholders":["a cup","a book"]}, +{"id":"79055","label":"putting scissors that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["scissors"]}, +{"id":"81211","label":"pretending or trying and failing to twist waterbottle","template":"Pretending or trying and failing to twist [something]","placeholders":["waterbottle"]}, +{"id":"175153","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"65798","label":"moving away from iron with your camera","template":"Moving away from [something] with your camera","placeholders":["iron"]}, +{"id":"96404","label":"dropping lemon behind shoe","template":"Dropping [something] behind [something]","placeholders":["lemon","shoe"]}, +{"id":"108891","label":"pretending to pick small plant up","template":"Pretending to pick [something] up","placeholders":["small plant"]}, +{"id":"169000","label":"holding mouse in front of wallet","template":"Holding [something] in front of [something]","placeholders":["mouse","wallet"]}, +{"id":"57220","label":"moving toy away from toy","template":"Moving [something] away from [something]","placeholders":["toy","toy"]}, +{"id":"182807","label":"putting a different label skateboard next to another skateboard","template":"Putting [something similar to other things that are already on the table]","placeholders":["a different label skateboard next to another skateboard"]}, +{"id":"147448","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"217201","label":"dropping small box into medium tupperware container","template":"Dropping [something] into [something]","placeholders":["small box","medium tupperware container"]}, +{"id":"85753","label":"pouring coke into a cup","template":"Pouring [something] into [something]","placeholders":["coke","a cup"]}, +{"id":"3160","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"69661","label":"moving plate up","template":"Moving [something] up","placeholders":["plate"]}, +{"id":"184007","label":"poking a folder so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a folder"]}, +{"id":"86955","label":"moving toilette paper and toilette paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toilette paper","toilette paper"]}, +{"id":"158425","label":"moving salt shaker and pepper mill closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["salt shaker","pepper mill"]}, +{"id":"45674","label":"letting toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy"]}, +{"id":"54444","label":"holding candy over waste basket","template":"Holding [something] over [something]","placeholders":["candy","waste basket"]}, +{"id":"175481","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"35267","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"213356","label":"holding hair clip in front of box","template":"Holding [something] in front of [something]","placeholders":["hair clip","box"]}, +{"id":"78872","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"161367","label":"throwing a heating pad","template":"Throwing [something]","placeholders":["a heating pad"]}, +{"id":"87770","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"71","label":"trying but failing to attach a hook to a wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a hook","a wall"]}, +{"id":"12597","label":"pretending to put a sock into drawer","template":"Pretending to put [something] into [something]","placeholders":["a sock","drawer"]}, +{"id":"37275","label":"pretending to take trimmer from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["trimmer","bed"]}, +{"id":"48034","label":"poking a stack of nail polish so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["nail polish"]}, +{"id":"181879","label":"putting coffee into a cup","template":"Putting [something] into [something]","placeholders":["coffee","a cup"]}, +{"id":"4540","label":"holding brush over wallet","template":"Holding [something] over [something]","placeholders":["brush","wallet"]}, +{"id":"217189","label":"pretending to be tearing pencil-pouch","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pencil-pouch"]}, +{"id":"215789","label":"check falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["check"]}, +{"id":"5576","label":"putting remote on a surface","template":"Putting [something] on a surface","placeholders":["remote"]}, +{"id":"36459","label":"taking shoe polish container from piller","template":"Taking [something] from [somewhere]","placeholders":["shoe polish container","piller"]}, +{"id":"141650","label":"plugging plug into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","outlet"]}, +{"id":"31159","label":"showing that screw is inside white soup bowl","template":"Showing that [something] is inside [something]","placeholders":["screw","white soup bowl"]}, +{"id":"20740","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"162418","label":"poking nail polish so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["nail polish"]}, +{"id":"180580","label":"closing compassbox","template":"Closing [something]","placeholders":["compassbox"]}, +{"id":"200381","label":"holding a rubber/eraser in front of a hairdryer","template":"Holding [something] in front of [something]","placeholders":["a rubber/eraser","a hairdryer"]}, +{"id":"31139","label":"lifting a book with a plug on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a plug"]}, +{"id":"95803","label":"pouring water onto plant","template":"Pouring [something] onto [something]","placeholders":["water","plant"]}, +{"id":"84344","label":"moving mobile and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mobile","remote"]}, +{"id":"38082","label":"holding a tv remote control over a can of air freshener","template":"Holding [something] over [something]","placeholders":["a tv remote control","a can of air freshener"]}, +{"id":"65011","label":"laying a book on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a book"]}, +{"id":"102101","label":"putting feeding bottle into pot","template":"Putting [something] into [something]","placeholders":["feeding bottle","pot"]}, +{"id":"190051","label":"showing a flower next to the photo","template":"Showing [something] next to [something]","placeholders":["a flower","the photo"]}, +{"id":"105837","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"29488","label":"piling potholders up","template":"Piling [something] up","placeholders":["potholders"]}, +{"id":"67624","label":"pretending to put a phone next to a key ring","template":"Pretending to put [something] next to [something]","placeholders":["a phone","a key ring"]}, +{"id":"177211","label":"sprinkling sesame seeds onto an oven tray","template":"Sprinkling [something] onto [something]","placeholders":["sesame seeds","an oven tray"]}, +{"id":"195673","label":"covering mobile phone with blanket","template":"Covering [something] with [something]","placeholders":["mobile phone","blanket"]}, +{"id":"40597","label":"moving blinds up","template":"Moving [something] up","placeholders":["blinds"]}, +{"id":"116200","label":"dropping eraser onto notebook","template":"Dropping [something] onto [something]","placeholders":["eraser","notebook"]}, +{"id":"152429","label":"throwing spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["spoon"]}, +{"id":"110093","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"71758","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"19598","label":"holding pink toothbrush case","template":"Holding [something]","placeholders":["pink toothbrush case"]}, +{"id":"29538","label":"moving candy towards the camera","template":"Moving [something] towards the camera","placeholders":["candy"]}, +{"id":"128173","label":"folding receipt","template":"Folding [something]","placeholders":["receipt"]}, +{"id":"176804","label":"pushing android cornet from left to right","template":"Pushing [something] from left to right","placeholders":["android cornet"]}, +{"id":"140514","label":"dropping cufflinks onto a handkerchief","template":"Dropping [something] onto [something]","placeholders":["cufflinks","a handkerchief"]}, +{"id":"97553","label":"pretending to pick purple container up","template":"Pretending to pick [something] up","placeholders":["purple container"]}, +{"id":"91427","label":"throwing comb in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["comb"]}, +{"id":"6452","label":"spilling water next to a container","template":"Spilling [something] next to [something]","placeholders":["water","a container"]}, +{"id":"89036","label":"dropping a comb in front of a knife","template":"Dropping [something] in front of [something]","placeholders":["a comb","a knife"]}, +{"id":"154955","label":"approaching bottle with your camera","template":"Approaching [something] with your camera","placeholders":["bottle"]}, +{"id":"128343","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"194338","label":"stuffing cd into case","template":"Stuffing [something] into [something]","placeholders":["cd","case"]}, +{"id":"17120","label":"poking sellotape so that it falls over","template":"Poking [something] so that it falls over","placeholders":["sellotape"]}, +{"id":"174589","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"125487","label":"dropping a water bottle onto the floor","template":"Dropping [something] onto [something]","placeholders":["a water bottle","the floor"]}, +{"id":"191021","label":"moving phone towards the camera","template":"Moving [something] towards the camera","placeholders":["phone"]}, +{"id":"148067","label":"dropping a comb onto an envelope","template":"Dropping [something] onto [something]","placeholders":["a comb","an envelope"]}, +{"id":"25653","label":"dropping a handkerchief in front of a peg","template":"Dropping [something] in front of [something]","placeholders":["a handkerchief","a peg"]}, +{"id":"37595","label":"moving cup and tuperware away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","tuperware"]}, +{"id":"204942","label":"moving a bottle and another bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a bottle","another bottle"]}, +{"id":"204713","label":"moving away from mirror with your camera","template":"Moving away from [something] with your camera","placeholders":["mirror"]}, +{"id":"17064","label":"moving handle of glass bottle","template":"Moving [part] of [something]","placeholders":["handle","glass bottle"]}, +{"id":"148407","label":"uncovering stuffed animal","template":"Uncovering [something]","placeholders":["stuffed animal"]}, +{"id":"108613","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"156815","label":"showing that trash is inside trash can","template":"Showing that [something] is inside [something]","placeholders":["trash","trash can"]}, +{"id":"168983","label":"putting phone that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["phone"]}, +{"id":"30654","label":"covering teacup with saucer","template":"Covering [something] with [something]","placeholders":["teacup","saucer"]}, +{"id":"26431","label":"throwing book against rock","template":"Throwing [something] against [something]","placeholders":["book","rock"]}, +{"id":"159068","label":"moving plastic flower away from toy duck","template":"Moving [something] away from [something]","placeholders":["plastic flower","toy duck"]}, +{"id":"157815","label":"stacking 2 cans","template":"Stacking [number of] [something]","placeholders":["2","cans"]}, +{"id":"82891","label":"taking candy out of box","template":"Taking [something] out of [something]","placeholders":["candy","box"]}, +{"id":"145613","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"10037","label":"pushing toilet paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toilet paper"]}, +{"id":"19283","label":"moving calculator closer to box","template":"Moving [something] closer to [something]","placeholders":["calculator","box"]}, +{"id":"133927","label":"taking yogurt out of freezer","template":"Taking [something] out of [something]","placeholders":["yogurt","freezer"]}, +{"id":"89079","label":"spreading butter onto bread","template":"Spreading [something] onto [something]","placeholders":["butter","bread"]}, +{"id":"119643","label":"lifting up one end of marker, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["marker"]}, +{"id":"31518","label":"showing that pocket watch is inside small box","template":"Showing that [something] is inside [something]","placeholders":["pocket watch","small box"]}, +{"id":"179641","label":"lifting up one end of marker, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["marker"]}, +{"id":"108992","label":"bending twist ties so that it deforms","template":"Bending [something] so that it deforms","placeholders":["twist ties"]}, +{"id":"146726","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"105734","label":"putting fork with other forks","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork with other forks"]}, +{"id":"12462","label":"turning the camera downwards while filming ring","template":"Turning the camera downwards while filming [something]","placeholders":["ring"]}, +{"id":"64810","label":"pushing a pen from right to left","template":"Pushing [something] from right to left","placeholders":["a pen"]}, +{"id":"207555","label":"opening carmex bottle","template":"Opening [something]","placeholders":["carmex bottle"]}, +{"id":"190983","label":"opening bottled water","template":"Opening [something]","placeholders":["bottled water"]}, +{"id":"5095","label":"pretending to put chain into bottle","template":"Pretending to put [something] into [something]","placeholders":["chain","bottle"]}, +{"id":"136860","label":"moving tool away from scissor","template":"Moving [something] away from [something]","placeholders":["tool","scissor"]}, +{"id":"21538","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"181248","label":"tearing aluminum foil into two pieces","template":"Tearing [something] into two pieces","placeholders":["aluminum foil"]}, +{"id":"176048","label":"pushing a screw from left to right","template":"Pushing [something] from left to right","placeholders":["a screw"]}, +{"id":"8164","label":"closing canister","template":"Closing [something]","placeholders":["canister"]}, +{"id":"179515","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"105386","label":"turning the camera upwards while filming green water bottle","template":"Turning the camera upwards while filming [something]","placeholders":["green water bottle"]}, +{"id":"53635","label":"pushing a fan so it spins","template":"Pushing [something] so it spins","placeholders":["a fan"]}, +{"id":"93850","label":"moving spoon across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["spoon"]}, +{"id":"121015","label":"moving screwdriver across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["screwdriver"]}, +{"id":"27072","label":"showing that chalk piece is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["chalk piece","spectacle box"]}, +{"id":"218476","label":"approaching flower with your camera","template":"Approaching [something] with your camera","placeholders":["flower"]}, +{"id":"208894","label":"taking container","template":"Taking [one of many similar things on the table]","placeholders":["container"]}, +{"id":"112295","label":"putting belt into bowl","template":"Putting [something] into [something]","placeholders":["belt","bowl"]}, +{"id":"96898","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"153682","label":"pushing white book marker from right to left","template":"Pushing [something] from right to left","placeholders":["white book marker"]}, +{"id":"107878","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"182483","label":"pretending to sprinkle air onto a belt","template":"Pretending to sprinkle air onto [something]","placeholders":["a belt"]}, +{"id":"139307","label":"pretending to scoop cereal up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["cereal","spoon"]}, +{"id":"15725","label":"pretending to take post it's out of a metal box","template":"Pretending to take [something] out of [something]","placeholders":["post it's","a metal box"]}, +{"id":"36858","label":"spilling water onto orange","template":"Spilling [something] onto [something]","placeholders":["water","orange"]}, +{"id":"30133","label":"burying net in dustbin","template":"Burying [something] in [something]","placeholders":["net","dustbin"]}, +{"id":"153407","label":"squeezing paper","template":"Squeezing [something]","placeholders":["paper"]}, +{"id":"46363","label":"putting id card on a surface","template":"Putting [something] on a surface","placeholders":["id card"]}, +{"id":"43124","label":"rolling aerosol bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["aerosol bottle"]}, +{"id":"68388","label":"holding toy","template":"Holding [something]","placeholders":["toy"]}, +{"id":"211992","label":"dropping block onto table","template":"Dropping [something] onto [something]","placeholders":["block","table"]}, +{"id":"148556","label":"moving analogue stick of controller","template":"Moving [part] of [something]","placeholders":["analogue stick","controller"]}, +{"id":"210656","label":"moving a pencil away from a book","template":"Moving [something] away from [something]","placeholders":["a pencil","a book"]}, +{"id":"123891","label":"covering eye of stove with towel","template":"Covering [something] with [something]","placeholders":["eye of stove","towel"]}, +{"id":"3571","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"71348","label":"showing cable behind book","template":"Showing [something] behind [something]","placeholders":["cable","book"]}, +{"id":"205653","label":"putting toy in front of goggles","template":"Putting [something] in front of [something]","placeholders":["toy","goggles"]}, +{"id":"133223","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"104573","label":"holding an iphone 7","template":"Holding [something]","placeholders":["an iphone 7"]}, +{"id":"51335","label":"holding keys over a phone","template":"Holding [something] over [something]","placeholders":["keys","a phone"]}, +{"id":"19680","label":"putting red colour pen similar to other colour pens on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["red colour pen similar to other colour pens on the table"]}, +{"id":"63680","label":"putting pink water bottle on a surface","template":"Putting [something] on a surface","placeholders":["pink water bottle"]}, +{"id":"116311","label":"putting a pair of spectacles onto a dashboard","template":"Putting [something] onto [something]","placeholders":["a pair of spectacles","a dashboard"]}, +{"id":"126356","label":"plugging wire into power bank","template":"Plugging [something] into [something]","placeholders":["wire","power bank"]}, +{"id":"162007","label":"holding pen next to marker","template":"Holding [something] next to [something]","placeholders":["pen","marker"]}, +{"id":"195261","label":"moving plastic bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["plastic bottle"]}, +{"id":"4595","label":"showing that scissors is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["scissors","a jar"]}, +{"id":"106798","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"146965","label":"pushing candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["candle"]}, +{"id":"165861","label":"uncovering baby doll","template":"Uncovering [something]","placeholders":["baby doll"]}, +{"id":"188500","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"113826","label":"tearing paper sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper sheet"]}, +{"id":"172022","label":"taking rubber glow out of bowl","template":"Taking [something] out of [something]","placeholders":["rubber glow","bowl"]}, +{"id":"171710","label":"holding a letter opener","template":"Holding [something]","placeholders":["a letter opener"]}, +{"id":"73442","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"1042","label":"pretending to put a cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cup"]}, +{"id":"164609","label":"pushing plushie with charger","template":"Pushing [something] with [something]","placeholders":["plushie","charger"]}, +{"id":"56888","label":"turning the camera right while filming generator set","template":"Turning the camera right while filming [something]","placeholders":["generator set"]}, +{"id":"44578","label":"trying but failing to attach a different pen cap to a pen because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a different pen cap","a pen"]}, +{"id":"124401","label":"poking jar so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["jar"]}, +{"id":"125282","label":"putting a pen onto a book","template":"Putting [something] onto [something]","placeholders":["a pen","a book"]}, +{"id":"13716","label":"stacking 3 notebooks","template":"Stacking [number of] [something]","placeholders":["3","notebooks"]}, +{"id":"178987","label":"hitting block with spoon","template":"Hitting [something] with [something]","placeholders":["block","spoon"]}, +{"id":"182684","label":"tilting paper roll with plastic knife on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["paper roll","plastic knife"]}, +{"id":"195519","label":"putting rocks on a surface","template":"Putting [something] on a surface","placeholders":["rocks"]}, +{"id":"109191","label":"pretending to open juice carton without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["juice carton"]}, +{"id":"121967","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"190611","label":"pushing remote off of coaster","template":"Pushing [something] off of [something]","placeholders":["remote","coaster"]}, +{"id":"114204","label":"moving bolt away from the camera","template":"Moving [something] away from the camera","placeholders":["bolt"]}, +{"id":"122024","label":"showing that coin is inside purse","template":"Showing that [something] is inside [something]","placeholders":["coin","purse"]}, +{"id":"185287","label":"turning water bottle upside down","template":"Turning [something] upside down","placeholders":["water bottle"]}, +{"id":"168244","label":"twisting a cable","template":"Twisting [something]","placeholders":["a cable"]}, +{"id":"499","label":"holding umbrella in front of telivision","template":"Holding [something] in front of [something]","placeholders":["umbrella","telivision"]}, +{"id":"42272","label":"tearing a receipt into two pieces","template":"Tearing [something] into two pieces","placeholders":["a receipt"]}, +{"id":"115323","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"178364","label":"pushing a tape with a box","template":"Pushing [something] with [something]","placeholders":["a tape","a box"]}, +{"id":"145945","label":"pretending to pick a backpack up","template":"Pretending to pick [something] up","placeholders":["a backpack"]}, +{"id":"28005","label":"a wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["a wallet"]}, +{"id":"198200","label":"putting spoon into bowl","template":"Putting [something] into [something]","placeholders":["spoon","bowl"]}, +{"id":"91387","label":"lifting hammer with sponge on it","template":"Lifting [something] with [something] on it","placeholders":["hammer","sponge"]}, +{"id":"133407","label":"moving lid of rectangular box","template":"Moving [part] of [something]","placeholders":["lid","rectangular box"]}, +{"id":"148038","label":"tearing a newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a newspaper"]}, +{"id":"94525","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"142863","label":"pulling game console from behind of carry case","template":"Pulling [something] from behind of [something]","placeholders":["game console","carry case"]}, +{"id":"193480","label":"showing scotch tape to the camera","template":"Showing [something] to the camera","placeholders":["scotch tape"]}, +{"id":"135287","label":"letting pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil"]}, +{"id":"160229","label":"folding tea towel","template":"Folding [something]","placeholders":["tea towel"]}, +{"id":"63821","label":"holding remote control","template":"Holding [something]","placeholders":["remote control"]}, +{"id":"78455","label":"pushing orange notebook from right to left","template":"Pushing [something] from right to left","placeholders":["orange notebook"]}, +{"id":"79242","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"95143","label":"bending a chop stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a chop stick"]}, +{"id":"78438","label":"opening a pickle jar","template":"Opening [something]","placeholders":["a pickle jar"]}, +{"id":"109864","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"62253","label":"pretending to take pen out of drawer","template":"Pretending to take [something] out of [something]","placeholders":["pen","drawer"]}, +{"id":"196308","label":"moving book and book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","book"]}, +{"id":"6968","label":"moving green chalk towards the camera","template":"Moving [something] towards the camera","placeholders":["green chalk"]}, +{"id":"103392","label":"dropping a pencil into a box","template":"Dropping [something] into [something]","placeholders":["a pencil","a box"]}, +{"id":"85212","label":"moving star away from square","template":"Moving [something] away from [something]","placeholders":["star","square"]}, +{"id":"192909","label":"throwing a pen against a pack of tissue","template":"Throwing [something] against [something]","placeholders":["a pen","a pack of tissue"]}, +{"id":"219102","label":"pretending or failing to wipe dry erase marker off of a white board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dry erase marker","a white board"]}, +{"id":"12054","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"134888","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"65817","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"4522","label":"picking glasses up","template":"Picking [something] up","placeholders":["glasses"]}, +{"id":"86705","label":"lifting mouse mat with card on it","template":"Lifting [something] with [something] on it","placeholders":["mouse mat","card"]}, +{"id":"71226","label":"a note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a note"]}, +{"id":"15658","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"210603","label":"moving a box up","template":"Moving [something] up","placeholders":["a box"]}, +{"id":"152767","label":"moving cup and wallet so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["cup","wallet"]}, +{"id":"123289","label":"spilling oil onto sink","template":"Spilling [something] onto [something]","placeholders":["oil","sink"]}, +{"id":"136072","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"137261","label":"pulling two ends of small piece of paper but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["small piece of paper"]}, +{"id":"63839","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"34555","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"37619","label":"pushing a toy so it spins","template":"Pushing [something] so it spins","placeholders":["a toy"]}, +{"id":"113825","label":"putting something that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["something"]}, +{"id":"18645","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"157798","label":"putting perfume bottle behind hairclip","template":"Putting [something] behind [something]","placeholders":["perfume bottle","hairclip"]}, +{"id":"108412","label":"wristwatch falling like a rock","template":"[Something] falling like a rock","placeholders":["wristwatch"]}, +{"id":"18125","label":"turning the camera right while filming slippers","template":"Turning the camera right while filming [something]","placeholders":["slippers"]}, +{"id":"163859","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"190823","label":"lifting knife with bowl on it","template":"Lifting [something] with [something] on it","placeholders":["knife","bowl"]}, +{"id":"62220","label":"pretending to put scissors on a surface","template":"Pretending to put [something] on a surface","placeholders":["scissors"]}, +{"id":"159779","label":"showing a cup behind a coffee cup","template":"Showing [something] behind [something]","placeholders":["a cup","a coffee cup"]}, +{"id":"217906","label":"letting pencil roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pencil"]}, +{"id":"36871","label":"pulling a mouse from left to right","template":"Pulling [something] from left to right","placeholders":["a mouse"]}, +{"id":"178515","label":"opening a tupperware container","template":"Opening [something]","placeholders":["a tupperware container"]}, +{"id":"7037","label":"spinning paint bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint bottle"]}, +{"id":"62842","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"166678","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"214286","label":"showing a rock next to a snow globe","template":"Showing [something] next to [something]","placeholders":["a rock","a snow globe"]}, +{"id":"2277","label":"showing rubber duck next to cactus","template":"Showing [something] next to [something]","placeholders":["rubber duck","cactus"]}, +{"id":"21814","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"115324","label":"tilting book with rectangular box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","rectangular box"]}, +{"id":"175006","label":"pretending to poke cup","template":"Pretending to poke [something]","placeholders":["cup"]}, +{"id":"23728","label":"putting pebble on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["pebble"]}, +{"id":"64604","label":"poking tape so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tape"]}, +{"id":"69772","label":"holding bottle over bag","template":"Holding [something] over [something]","placeholders":["bottle","bag"]}, +{"id":"60125","label":"pushing a wallet from left to right","template":"Pushing [something] from left to right","placeholders":["a wallet"]}, +{"id":"80952","label":"holding lighter in front of mt. dew","template":"Holding [something] in front of [something]","placeholders":["lighter","mt. dew"]}, +{"id":"51138","label":"unfolding pillow case","template":"Unfolding [something]","placeholders":["pillow case"]}, +{"id":"100801","label":"squeezing a beanies babies","template":"Squeezing [something]","placeholders":["a beanies babies"]}, +{"id":"207877","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"179557","label":"attaching a pen cap to a pen","template":"Attaching [something] to [something]","placeholders":["a pen cap","a pen"]}, +{"id":"162605","label":"moving striker coin up","template":"Moving [something] up","placeholders":["striker coin"]}, +{"id":"24441","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"34097","label":"rolling air spray on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["air spray"]}, +{"id":"84417","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"24300","label":"covering tablet box with red pouch","template":"Covering [something] with [something]","placeholders":["tablet box","red pouch"]}, +{"id":"167361","label":"pushing can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["can"]}, +{"id":"59277","label":"touching (without moving) case of a mouse","template":"Touching (without moving) [part] of [something]","placeholders":["case","a mouse"]}, +{"id":"132691","label":"lifting paperboard with a wallet on it","template":"Lifting [something] with [something] on it","placeholders":["paperboard","a wallet"]}, +{"id":"206287","label":"trying but failing to attach tape roll to a refrigerator because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["tape roll","a refrigerator"]}, +{"id":"106999","label":"stuffing a wooden block into a soft lunchbox","template":"Stuffing [something] into [something]","placeholders":["a wooden block","a soft lunchbox"]}, +{"id":"144082","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"86300","label":"putting medicine bottle upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["medicine bottle"]}, +{"id":"218413","label":"pushing a container so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a container"]}, +{"id":"40281","label":"pretending to be tearing cable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cable"]}, +{"id":"203322","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"171520","label":"holding wallet behind notepad","template":"Holding [something] behind [something]","placeholders":["wallet","notepad"]}, +{"id":"197103","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185083","label":"pushing bottle cap from right to left","template":"Pushing [something] from right to left","placeholders":["bottle cap"]}, +{"id":"47038","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"48352","label":"moving a glass and a hair brush so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a glass","a hair brush"]}, +{"id":"172490","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"159217","label":"opening container","template":"Opening [something]","placeholders":["container"]}, +{"id":"22417","label":"covering marker with paper","template":"Covering [something] with [something]","placeholders":["marker","paper"]}, +{"id":"116638","label":"putting a charger onto a box","template":"Putting [something] onto [something]","placeholders":["a charger","a box"]}, +{"id":"165710","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"50793","label":"cookie mold falling like a rock","template":"[Something] falling like a rock","placeholders":["cookie mold"]}, +{"id":"3385","label":"dropping a ball into a mug","template":"Dropping [something] into [something]","placeholders":["a ball","a mug"]}, +{"id":"174448","label":"pretending to pick spoon up","template":"Pretending to pick [something] up","placeholders":["spoon"]}, +{"id":"11373","label":"holding cup over hand bag","template":"Holding [something] over [something]","placeholders":["cup","hand bag"]}, +{"id":"17518","label":"throwing paper against wall","template":"Throwing [something] against [something]","placeholders":["paper","wall"]}, +{"id":"179613","label":"pushing green toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["green toy car"]}, +{"id":"57315","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"214520","label":"putting necklace next to keyboard","template":"Putting [something] next to [something]","placeholders":["necklace","keyboard"]}, +{"id":"6460","label":"taking one coin of many similar coins on the table","template":"Taking [one of many similar things on the table]","placeholders":["one coin of many similar coins on the table"]}, +{"id":"103001","label":"pushing coaster with coaster","template":"Pushing [something] with [something]","placeholders":["coaster","coaster"]}, +{"id":"116880","label":"showing a stuffed dog on top of a kids couch","template":"Showing [something] on top of [something]","placeholders":["a stuffed dog","a kids couch"]}, +{"id":"218050","label":"folding one dollar bill","template":"Folding [something]","placeholders":["one dollar bill"]}, +{"id":"5730","label":"pushing a box with a pen","template":"Pushing [something] with [something]","placeholders":["a box","a pen"]}, +{"id":"71222","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"205253","label":"dropping a tube of toothpaste in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a tube of toothpaste","a toothbrush"]}, +{"id":"48744","label":"stuffing a towel into a pitcher","template":"Stuffing [something] into [something]","placeholders":["a towel","a pitcher"]}, +{"id":"53402","label":"putting shoe on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["shoe"]}, +{"id":"187311","label":"tilting iphone with sock on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["iphone","sock"]}, +{"id":"105509","label":"moving a box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a box"]}, +{"id":"7158","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"142617","label":"wiping leaves off of a table","template":"Wiping [something] off of [something]","placeholders":["leaves","a table"]}, +{"id":"139147","label":"pulling two ends of straw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["straw"]}, +{"id":"48714","label":"spinning football that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["football"]}, +{"id":"200378","label":"putting flashdrive next to container","template":"Putting [something] next to [something]","placeholders":["flashdrive","container"]}, +{"id":"85011","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"211138","label":"spinning rubber duck so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["rubber duck"]}, +{"id":"84327","label":"twisting pen","template":"Twisting [something]","placeholders":["pen"]}, +{"id":"1657","label":"turning the camera right while filming black remote","template":"Turning the camera right while filming [something]","placeholders":["black remote"]}, +{"id":"162068","label":"putting sponge upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["sponge"]}, +{"id":"182579","label":"pushing a chair with my hands","template":"Pushing [something] with [something]","placeholders":["a chair","my hands"]}, +{"id":"138709","label":"putting chip clip, chip clip and chocolate on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["chip clip","chip clip","chocolate"]}, +{"id":"117309","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"24327","label":"dropping torch in front of shoe","template":"Dropping [something] in front of [something]","placeholders":["torch","shoe"]}, +{"id":"165514","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"105094","label":"holding pentel pen over glue bottle","template":"Holding [something] over [something]","placeholders":["pentel pen","glue bottle"]}, +{"id":"193738","label":"pretending to take card from table","template":"Pretending to take [something] from [somewhere]","placeholders":["card","table"]}, +{"id":"210319","label":"moving music player up","template":"Moving [something] up","placeholders":["music player"]}, +{"id":"113913","label":"putting plastic twist tie","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic twist tie"]}, +{"id":"123684","label":"approaching sandals with your camera","template":"Approaching [something] with your camera","placeholders":["sandals"]}, +{"id":"109636","label":"pouring water out of a kettle","template":"Pouring [something] out of [something]","placeholders":["water","a kettle"]}, +{"id":"87386","label":"poking lipstick so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lipstick"]}, +{"id":"160955","label":"moving razor up","template":"Moving [something] up","placeholders":["razor"]}, +{"id":"85924","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"128347","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"210649","label":"putting brush in front of pen","template":"Putting [something] in front of [something]","placeholders":["brush","pen"]}, +{"id":"76829","label":"throwing ball against cupboard","template":"Throwing [something] against [something]","placeholders":["ball","cupboard"]}, +{"id":"20968","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"173576","label":"stacking 2 books on 3","template":"Stacking [number of] [something]","placeholders":["2","books on 3"]}, +{"id":"192585","label":"stuffing a tennis ball into its plastic box","template":"Stuffing [something] into [something]","placeholders":["a tennis ball","its plastic box"]}, +{"id":"13037","label":"moving lens closer to camera","template":"Moving [something] closer to [something]","placeholders":["lens","camera"]}, +{"id":"38331","label":"poking a hole into paper","template":"Poking a hole into [something soft]","placeholders":["paper"]}, +{"id":"47227","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"77332","label":"bending notebook so that it deforms","template":"Bending [something] so that it deforms","placeholders":["notebook"]}, +{"id":"138941","label":"showing bottle behind jar","template":"Showing [something] behind [something]","placeholders":["bottle","jar"]}, +{"id":"28237","label":"pulling two ends of hair tie so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["hair tie"]}, +{"id":"45172","label":"hitting teddy with remote control","template":"Hitting [something] with [something]","placeholders":["teddy","remote control"]}, +{"id":"62735","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"75866","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"97399","label":"taking a dolar bill out of a wallet","template":"Taking [something] out of [something]","placeholders":["a dolar bill","a wallet"]}, +{"id":"161099","label":"dropping headphones onto the floor","template":"Dropping [something] onto [something]","placeholders":["headphones","the floor"]}, +{"id":"51397","label":"throwing highlighter pen against board clip","template":"Throwing [something] against [something]","placeholders":["highlighter pen","board clip"]}, +{"id":"103982","label":"squeezing napkin","template":"Squeezing [something]","placeholders":["napkin"]}, +{"id":"149515","label":"putting paper, pen and rubber band on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["paper","pen","rubber band"]}, +{"id":"30520","label":"moving pen closer to holder","template":"Moving [something] closer to [something]","placeholders":["pen","holder"]}, +{"id":"150672","label":"pouring juice into a cup","template":"Pouring [something] into [something]","placeholders":["juice","a cup"]}, +{"id":"130132","label":"putting knife on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["knife"]}, +{"id":"80339","label":"taking toothbrush from bin","template":"Taking [something] from [somewhere]","placeholders":["toothbrush","bin"]}, +{"id":"41873","label":"pouring something into something","template":"Pouring [something] into [something]","placeholders":["something","something"]}, +{"id":"217205","label":"picking tomato up","template":"Picking [something] up","placeholders":["tomato"]}, +{"id":"132652","label":"pouring water onto a rag","template":"Pouring [something] onto [something]","placeholders":["water","a rag"]}, +{"id":"55484","label":"closing tin","template":"Closing [something]","placeholders":["tin"]}, +{"id":"147929","label":"moving block and toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["block","toy"]}, +{"id":"18445","label":"closing plastic box","template":"Closing [something]","placeholders":["plastic box"]}, +{"id":"210621","label":"stuffing sandwich into bag","template":"Stuffing [something] into [something]","placeholders":["sandwich","bag"]}, +{"id":"211903","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"102540","label":"stacking 3 blocks","template":"Stacking [number of] [something]","placeholders":["3","blocks"]}, +{"id":"14077","label":"dropping pen onto box","template":"Dropping [something] onto [something]","placeholders":["pen","box"]}, +{"id":"106833","label":"dropping a book behind a screen","template":"Dropping [something] behind [something]","placeholders":["a book","a screen"]}, +{"id":"62486","label":"taking matchstick","template":"Taking [one of many similar things on the table]","placeholders":["matchstick"]}, +{"id":"43695","label":"hitting a pillow with a book","template":"Hitting [something] with [something]","placeholders":["a pillow","a book"]}, +{"id":"19764","label":"turning the camera right while filming jeep","template":"Turning the camera right while filming [something]","placeholders":["jeep"]}, +{"id":"216218","label":"pretending to put soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["soap"]}, +{"id":"166056","label":"squeezing bag","template":"Squeezing [something]","placeholders":["bag"]}, +{"id":"176362","label":"pushing cable so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cable"]}, +{"id":"180485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"36824","label":"scooping water up with mug","template":"Scooping [something] up with [something]","placeholders":["water","mug"]}, +{"id":"187399","label":"spilling water onto a sink","template":"Spilling [something] onto [something]","placeholders":["water","a sink"]}, +{"id":"74525","label":"moving ball and ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ball","ball"]}, +{"id":"187928","label":"pouring coffee into a mug","template":"Pouring [something] into [something]","placeholders":["coffee","a mug"]}, +{"id":"214597","label":"covering cup with towel","template":"Covering [something] with [something]","placeholders":["cup","towel"]}, +{"id":"207835","label":"opening stove oven","template":"Opening [something]","placeholders":["stove oven"]}, +{"id":"112803","label":"pretending to open case without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["case"]}, +{"id":"25574","label":"pencil sharpener falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil sharpener"]}, +{"id":"136817","label":"turning the camera downwards while filming toy idol","template":"Turning the camera downwards while filming [something]","placeholders":["toy idol"]}, +{"id":"37252","label":"spilling turmeric behind hot case","template":"Spilling [something] behind [something]","placeholders":["turmeric","hot case"]}, +{"id":"94982","label":"moving pencil down","template":"Moving [something] down","placeholders":["pencil"]}, +{"id":"10353","label":"dropping tube behind bed","template":"Dropping [something] behind [something]","placeholders":["tube","bed"]}, +{"id":"38642","label":"pulling stuffed toy out of cup","template":"Pulling [something] out of [something]","placeholders":["stuffed toy","cup"]}, +{"id":"21387","label":"throwing lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["lighter"]}, +{"id":"90320","label":"pushing a flower pot from right to left","template":"Pushing [something] from right to left","placeholders":["a flower pot"]}, +{"id":"16788","label":"rolling tumbler on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tumbler"]}, +{"id":"58832","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"38837","label":"showing fidget spinner behind bottle","template":"Showing [something] behind [something]","placeholders":["fidget spinner","bottle"]}, +{"id":"175920","label":"putting toy onto cup","template":"Putting [something] onto [something]","placeholders":["toy","cup"]}, +{"id":"211046","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"186512","label":"picking green toy car up","template":"Picking [something] up","placeholders":["green toy car"]}, +{"id":"99100","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"74268","label":"pushing blue colour bottle cap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["blue colour bottle cap"]}, +{"id":"87101","label":"moving a cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cup"]}, +{"id":"17494","label":"moving away from shampoo bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["shampoo bottle"]}, +{"id":"204742","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"20636","label":"tipping cotton rounds over","template":"Tipping [something] over","placeholders":["cotton rounds"]}, +{"id":"177478","label":"holding a bottle over a keyboard","template":"Holding [something] over [something]","placeholders":["a bottle","a keyboard"]}, +{"id":"174387","label":"poking a cup of soda so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup of soda"]}, +{"id":"67808","label":"turning the camera upwards while filming toothpaste tube","template":"Turning the camera upwards while filming [something]","placeholders":["toothpaste tube"]}, +{"id":"179265","label":"twisting t-shirt","template":"Twisting [something]","placeholders":["t-shirt"]}, +{"id":"61373","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"171592","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"95608","label":"pushing walnut so it spins","template":"Pushing [something] so it spins","placeholders":["walnut"]}, +{"id":"207966","label":"tearing card just a little bit","template":"Tearing [something] just a little bit","placeholders":["card"]}, +{"id":"122850","label":"pushing key so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["key"]}, +{"id":"83530","label":"pretending to put a plate underneath a plant","template":"Pretending to put [something] underneath [something]","placeholders":["a plate","a plant"]}, +{"id":"52869","label":"pushing glass bottle so it spins","template":"Pushing [something] so it spins","placeholders":["glass bottle"]}, +{"id":"93756","label":"plugging a plug into outlet","template":"Plugging [something] into [something]","placeholders":["a plug","outlet"]}, +{"id":"140432","label":"tilting a phone with a keyboard on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a phone","a keyboard"]}, +{"id":"129077","label":"pushing a shoe with a shoe","template":"Pushing [something] with [something]","placeholders":["a shoe","a shoe"]}, +{"id":"96938","label":"pretending to put a mouse on a surface","template":"Pretending to put [something] on a surface","placeholders":["a mouse"]}, +{"id":"113792","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"13704","label":"twisting a comb","template":"Twisting [something]","placeholders":["a comb"]}, +{"id":"19455","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"178859","label":"showing a photo of girl to the camera","template":"Showing a photo of [something] to the camera","placeholders":["girl"]}, +{"id":"207156","label":"hitting a book with a pen","template":"Hitting [something] with [something]","placeholders":["a book","a pen"]}, +{"id":"139074","label":"dropping cup into cup","template":"Dropping [something] into [something]","placeholders":["cup","cup"]}, +{"id":"64098","label":"tilting box with tub on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","tub"]}, +{"id":"195860","label":"a badminton bat colliding with another bat and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a badminton bat","another bat"]}, +{"id":"55292","label":"pretending to take glasses from lap","template":"Pretending to take [something] from [somewhere]","placeholders":["glasses","lap"]}, +{"id":"207436","label":"tearing leaflet just a little bit","template":"Tearing [something] just a little bit","placeholders":["leaflet"]}, +{"id":"62750","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"195332","label":"bending an envolope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an envolope"]}, +{"id":"207079","label":"holding torch in front of bottle","template":"Holding [something] in front of [something]","placeholders":["torch","bottle"]}, +{"id":"116747","label":"a tube falling like a rock","template":"[Something] falling like a rock","placeholders":["a tube"]}, +{"id":"218551","label":"rolling a plastic bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a plastic bottle"]}, +{"id":"167384","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"219937","label":"pouring boiling water into glass","template":"Pouring [something] into [something]","placeholders":["boiling water","glass"]}, +{"id":"174735","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"2571","label":"putting stamps, perfume and a pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["stamps","perfume","a pen"]}, +{"id":"144120","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"201638","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"150146","label":"stuffing napkin into mug","template":"Stuffing [something] into [something]","placeholders":["napkin","mug"]}, +{"id":"202252","label":"holding a shoe over the cylinder","template":"Holding [something] over [something]","placeholders":["a shoe","the cylinder"]}, +{"id":"132470","label":"poking laundry pods so that it falls over","template":"Poking [something] so that it falls over","placeholders":["laundry pods"]}, +{"id":"59063","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"104531","label":"hitting pencil with cup","template":"Hitting [something] with [something]","placeholders":["pencil","cup"]}, +{"id":"3881","label":"pouring coffee into cup","template":"Pouring [something] into [something]","placeholders":["coffee","cup"]}, +{"id":"118897","label":"putting a card upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a card"]}, +{"id":"9235","label":"turning the camera upwards while filming water bottle","template":"Turning the camera upwards while filming [something]","placeholders":["water bottle"]}, +{"id":"218310","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"133353","label":"pushing a bangle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bangle"]}, +{"id":"216242","label":"pretending to put iron roll on a surface","template":"Pretending to put [something] on a surface","placeholders":["iron roll"]}, +{"id":"45193","label":"taking book of other books","template":"Taking [one of many similar things on the table]","placeholders":["book of other books"]}, +{"id":"61754","label":"putting ball","template":"Putting [something similar to other things that are already on the table]","placeholders":["ball"]}, +{"id":"149740","label":"putting a little box next to the bread packet","template":"Putting [something] next to [something]","placeholders":["a little box","the bread packet"]}, +{"id":"102268","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"83569","label":"putting book","template":"Putting [something similar to other things that are already on the table]","placeholders":["book"]}, +{"id":"32690","label":"dropping cufflinks onto an envelope","template":"Dropping [something] onto [something]","placeholders":["cufflinks","an envelope"]}, +{"id":"30427","label":"lifting a book with a wrist watch on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a wrist watch"]}, +{"id":"78690","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"156002","label":"squeezing lemon","template":"Squeezing [something]","placeholders":["lemon"]}, +{"id":"171933","label":"pulling vasmol bottle from right to left","template":"Pulling [something] from right to left","placeholders":["vasmol bottle"]}, +{"id":"43946","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"100174","label":"holding a cellphone over a box","template":"Holding [something] over [something]","placeholders":["a cellphone","a box"]}, +{"id":"41228","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"58146","label":"pouring water into copper pot","template":"Pouring [something] into [something]","placeholders":["water","copper pot"]}, +{"id":"91990","label":"dropping pencil into stool","template":"Dropping [something] into [something]","placeholders":["pencil","stool"]}, +{"id":"124693","label":"bending (opening) closed book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["(opening) closed book"]}, +{"id":"127394","label":"picking remote control up","template":"Picking [something] up","placeholders":["remote control"]}, +{"id":"123437","label":"spinning toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toy"]}, +{"id":"21181","label":"moving wristband down","template":"Moving [something] down","placeholders":["wristband"]}, +{"id":"37890","label":"tearing tearing a piece of paper just a little bit just a little bit","template":"Tearing [something] just a little bit","placeholders":["tearing a piece of paper just a little bit"]}, +{"id":"177702","label":"holding slipper in front of thermos","template":"Holding [something] in front of [something]","placeholders":["slipper","thermos"]}, +{"id":"70789","label":"holding a pillow over a dog","template":"Holding [something] over [something]","placeholders":["a pillow","a dog"]}, +{"id":"167706","label":"moving thread and cell phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["thread","cell phone"]}, +{"id":"144160","label":"moving belt up","template":"Moving [something] up","placeholders":["belt"]}, +{"id":"49772","label":"turning the camera upwards while filming usb","template":"Turning the camera upwards while filming [something]","placeholders":["usb"]}, +{"id":"46713","label":"pushing marker pen so it spins","template":"Pushing [something] so it spins","placeholders":["marker pen"]}, +{"id":"118439","label":"tearing a envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["a envelope"]}, +{"id":"15589","label":"closing white hand gel","template":"Closing [something]","placeholders":["white hand gel"]}, +{"id":"114686","label":"moving mp3 across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["mp3"]}, +{"id":"25335","label":"pulling a mug from left to right","template":"Pulling [something] from left to right","placeholders":["a mug"]}, +{"id":"199953","label":"pushing black hair tie from left to right","template":"Pushing [something] from left to right","placeholders":["black hair tie"]}, +{"id":"137843","label":"opening cabinet","template":"Opening [something]","placeholders":["cabinet"]}, +{"id":"186986","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"15402","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"59587","label":"stacking 3 blocks","template":"Stacking [number of] [something]","placeholders":["3","blocks"]}, +{"id":"191702","label":"removing mug, revealing clothes peg behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","clothes peg"]}, +{"id":"55356","label":"uncovering a case","template":"Uncovering [something]","placeholders":["a case"]}, +{"id":"83743","label":"throwing a pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pencil"]}, +{"id":"76962","label":"showing pencil box to the camera","template":"Showing [something] to the camera","placeholders":["pencil box"]}, +{"id":"117030","label":"covering box with cap","template":"Covering [something] with [something]","placeholders":["box","cap"]}, +{"id":"68006","label":"putting a beer can next to beer mug","template":"Putting [something] next to [something]","placeholders":["a beer can","beer mug"]}, +{"id":"135458","label":"showing a teaspoon behind a mug","template":"Showing [something] behind [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"780","label":"bending a lamp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a lamp"]}, +{"id":"169740","label":"letting plastic jar roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["plastic jar"]}, +{"id":"164001","label":"taking box from drawer","template":"Taking [something] from [somewhere]","placeholders":["box","drawer"]}, +{"id":"168475","label":"tilting tv remote with ninja turtle toy on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tv remote","ninja turtle toy"]}, +{"id":"96723","label":"squeezing a toilet roll","template":"Squeezing [something]","placeholders":["a toilet roll"]}, +{"id":"215403","label":"twisting a washcloth","template":"Twisting [something]","placeholders":["a washcloth"]}, +{"id":"189474","label":"pretending to put a plant onto a book","template":"Pretending to put [something] onto [something]","placeholders":["a plant","a book"]}, +{"id":"157213","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"48290","label":"pouring water into a mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a mug"]}, +{"id":"64058","label":"pushing a clip so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a clip"]}, +{"id":"137363","label":"trying but failing to attach a sticky note to paper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticky note","paper"]}, +{"id":"203770","label":"covering striker coin with blue spectacle box","template":"Covering [something] with [something]","placeholders":["striker coin","blue spectacle box"]}, +{"id":"44815","label":"putting bottle onto table","template":"Putting [something] onto [something]","placeholders":["bottle","table"]}, +{"id":"43779","label":"rolling cylindrical box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cylindrical box"]}, +{"id":"127151","label":"moving bailer up","template":"Moving [something] up","placeholders":["bailer"]}, +{"id":"204628","label":"picking a ribbon up","template":"Picking [something] up","placeholders":["a ribbon"]}, +{"id":"174913","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"10711","label":"pretending to poke a chess piece","template":"Pretending to poke [something]","placeholders":["a chess piece"]}, +{"id":"94935","label":"moving paper and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper","paper"]}, +{"id":"219858","label":"stuffing nail clipper into rack","template":"Stuffing [something] into [something]","placeholders":["nail clipper","rack"]}, +{"id":"16445","label":"approaching stone with your camera","template":"Approaching [something] with your camera","placeholders":["stone"]}, +{"id":"106337","label":"putting sugar into a cup","template":"Putting [something] into [something]","placeholders":["sugar","a cup"]}, +{"id":"65607","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"157238","label":"removing a jbl, revealing a card behind","template":"Removing [something], revealing [something] behind","placeholders":["a jbl","a card"]}, +{"id":"48360","label":"moving the remote closer to the mouse","template":"Moving [something] closer to [something]","placeholders":["the remote","the mouse"]}, +{"id":"141975","label":"pushing controller so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["controller"]}, +{"id":"186054","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"50461","label":"squeezing can","template":"Squeezing [something]","placeholders":["can"]}, +{"id":"161008","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"193937","label":"putting battery into box","template":"Putting [something] into [something]","placeholders":["battery","box"]}, +{"id":"182296","label":"turning the camera right while filming small bottle","template":"Turning the camera right while filming [something]","placeholders":["small bottle"]}, +{"id":"218449","label":"pushing towel so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towel"]}, +{"id":"171983","label":"bending can so that it deforms","template":"Bending [something] so that it deforms","placeholders":["can"]}, +{"id":"47392","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"163401","label":"pouring pasta into trophy","template":"Pouring [something] into [something]","placeholders":["pasta","trophy"]}, +{"id":"201155","label":"holding toilet paper behind fragrant perfumes","template":"Holding [something] behind [something]","placeholders":["toilet paper","fragrant perfumes"]}, +{"id":"191064","label":"pretending to squeeze a remote","template":"Pretending to squeeze [something]","placeholders":["a remote"]}, +{"id":"39249","label":"covering a coaster with paper","template":"Covering [something] with [something]","placeholders":["a coaster","paper"]}, +{"id":"43631","label":"pushing eggs so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["eggs"]}, +{"id":"126650","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"58664","label":"tipping a coffee cup over","template":"Tipping [something] over","placeholders":["a coffee cup"]}, +{"id":"193791","label":"piling chocolate up","template":"Piling [something] up","placeholders":["chocolate"]}, +{"id":"104269","label":"pretending or failing to wipe nail paint off of furniture","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["nail paint","furniture"]}, +{"id":"19730","label":"putting sharpener underneath calculator","template":"Putting [something] underneath [something]","placeholders":["sharpener","calculator"]}, +{"id":"109335","label":"spinning a battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a battery"]}, +{"id":"179655","label":"pretending to put box onto drawer","template":"Pretending to put [something] onto [something]","placeholders":["box","drawer"]}, +{"id":"193177","label":"plugging usb stick into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb stick","laptop"]}, +{"id":"92505","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"205491","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"88560","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"36900","label":"putting book upright on the table","template":"Putting [something] upright on the table","placeholders":["book"]}, +{"id":"68841","label":"closing a folder","template":"Closing [something]","placeholders":["a folder"]}, +{"id":"166093","label":"poking something so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["something"]}, +{"id":"22518","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"31850","label":"paper sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper sheet"]}, +{"id":"30393","label":"dropping a matchbox next to a peg","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a peg"]}, +{"id":"77165","label":"throwing flipflop against the wall","template":"Throwing [something] against [something]","placeholders":["flipflop","the wall"]}, +{"id":"120731","label":"throwing cloth against floor","template":"Throwing [something] against [something]","placeholders":["cloth","floor"]}, +{"id":"86780","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"83167","label":"moving a toy mouse and block away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a toy mouse","block"]}, +{"id":"203468","label":"throwing a book","template":"Throwing [something]","placeholders":["a book"]}, +{"id":"48119","label":"showing bike to the camera","template":"Showing [something] to the camera","placeholders":["bike"]}, +{"id":"1286","label":"tearing napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["napkin"]}, +{"id":"94105","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"127033","label":"taking a spatula out of a drawer","template":"Taking [something] out of [something]","placeholders":["a spatula","a drawer"]}, +{"id":"100917","label":"pushing a staff toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a staff toy"]}, +{"id":"56901","label":"stuffing a sock into a show","template":"Stuffing [something] into [something]","placeholders":["a sock","a show"]}, +{"id":"26925","label":"turning the camera right while filming brown case","template":"Turning the camera right while filming [something]","placeholders":["brown case"]}, +{"id":"58205","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"211294","label":"dropping carton box onto plastic-container","template":"Dropping [something] onto [something]","placeholders":["carton box","plastic-container"]}, +{"id":"156718","label":"moving marker and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["marker","marker"]}, +{"id":"220337","label":"moving a comb away from the camera","template":"Moving [something] away from the camera","placeholders":["a comb"]}, +{"id":"41499","label":"turning wrist watch upside down","template":"Turning [something] upside down","placeholders":["wrist watch"]}, +{"id":"86175","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"135258","label":"poking a figurine so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a figurine"]}, +{"id":"125294","label":"pretending to take orange out of bag","template":"Pretending to take [something] out of [something]","placeholders":["orange","bag"]}, +{"id":"10916","label":"twisting purse","template":"Twisting [something]","placeholders":["purse"]}, +{"id":"158554","label":"turning the camera left while filming ball","template":"Turning the camera left while filming [something]","placeholders":["ball"]}, +{"id":"60753","label":"pretending to put weight next to cup","template":"Pretending to put [something] next to [something]","placeholders":["weight","cup"]}, +{"id":"168672","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"154377","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"100085","label":"dropping envelope next to hat","template":"Dropping [something] next to [something]","placeholders":["envelope","hat"]}, +{"id":"104313","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"8187","label":"holding spoon over tablet","template":"Holding [something] over [something]","placeholders":["spoon","tablet"]}, +{"id":"12027","label":"moving candlestick away from candlestick","template":"Moving [something] away from [something]","placeholders":["candlestick","candlestick"]}, +{"id":"21773","label":"putting egg on a surface","template":"Putting [something] on a surface","placeholders":["egg"]}, +{"id":"25352","label":"throwing basket","template":"Throwing [something]","placeholders":["basket"]}, +{"id":"44938","label":"uncovering cookies box","template":"Uncovering [something]","placeholders":["cookies box"]}, +{"id":"169189","label":"moving white colour marker pen up","template":"Moving [something] up","placeholders":["white colour marker pen"]}, +{"id":"38281","label":"twisting (wringing) towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["towel"]}, +{"id":"48944","label":"putting face wash upright on the table","template":"Putting [something] upright on the table","placeholders":["face wash"]}, +{"id":"140171","label":"picking wallet up","template":"Picking [something] up","placeholders":["wallet"]}, +{"id":"58714","label":"showing that soda bottle is empty","template":"Showing that [something] is empty","placeholders":["soda bottle"]}, +{"id":"150756","label":"unfolding a placemat","template":"Unfolding [something]","placeholders":["a placemat"]}, +{"id":"124985","label":"spinning banana that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["banana"]}, +{"id":"40726","label":"plugging charging cable into cell phone","template":"Plugging [something] into [something]","placeholders":["charging cable","cell phone"]}, +{"id":"195308","label":"plugging inlet into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["inlet","outlet"]}, +{"id":"89759","label":"pretending or failing to wipe strawberry off of highchair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["strawberry","highchair"]}, +{"id":"1234","label":"pulling two ends of a sock so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a sock"]}, +{"id":"93809","label":"turning the camera left while filming baby diaper","template":"Turning the camera left while filming [something]","placeholders":["baby diaper"]}, +{"id":"55232","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"128055","label":"putting limon into jar","template":"Putting [something] into [something]","placeholders":["limon","jar"]}, +{"id":"134413","label":"covering scissors with tissue","template":"Covering [something] with [something]","placeholders":["scissors","tissue"]}, +{"id":"5822","label":"putting sunglasses into a bag","template":"Putting [something] into [something]","placeholders":["sunglasses","a bag"]}, +{"id":"136480","label":"uncovering dice","template":"Uncovering [something]","placeholders":["dice"]}, +{"id":"211356","label":"picking keys up","template":"Picking [something] up","placeholders":["keys"]}, +{"id":"122022","label":"putting pen onto binder","template":"Putting [something] onto [something]","placeholders":["pen","binder"]}, +{"id":"123131","label":"taking remote","template":"Taking [one of many similar things on the table]","placeholders":["remote"]}, +{"id":"95946","label":"pushing a basket with a chair","template":"Pushing [something] with [something]","placeholders":["a basket","a chair"]}, +{"id":"109005","label":"pretending to close something without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["something"]}, +{"id":"194537","label":"attaching mobile charger to plug socket","template":"Attaching [something] to [something]","placeholders":["mobile charger","plug socket"]}, +{"id":"188056","label":"putting glass bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["glass bottle"]}, +{"id":"213838","label":"putting car, small tin and baloon on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["car","small tin","baloon"]}, +{"id":"118981","label":"pushing wood so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wood"]}, +{"id":"163792","label":"pushing plastic bottle from right to left","template":"Pushing [something] from right to left","placeholders":["plastic bottle"]}, +{"id":"125394","label":"putting container","template":"Putting [something similar to other things that are already on the table]","placeholders":["container"]}, +{"id":"11080","label":"scooping rice up with a measuring cup","template":"Scooping [something] up with [something]","placeholders":["rice","a measuring cup"]}, +{"id":"218511","label":"putting a folder on a surface","template":"Putting [something] on a surface","placeholders":["a folder"]}, +{"id":"114334","label":"putting onion into bowl","template":"Putting [something] into [something]","placeholders":["onion","bowl"]}, +{"id":"107715","label":"turning the camera right while filming kitchen platform","template":"Turning the camera right while filming [something]","placeholders":["kitchen platform"]}, +{"id":"95217","label":"spinning ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["ball"]}, +{"id":"80502","label":"moving comb away from basket","template":"Moving [something] away from [something]","placeholders":["comb","basket"]}, +{"id":"49434","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"178198","label":"pretending to be tearing phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["phone"]}, +{"id":"115452","label":"attaching a clip to a bag of sugar","template":"Attaching [something] to [something]","placeholders":["a clip","a bag of sugar"]}, +{"id":"199272","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"175848","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"135422","label":"pretending to be tearing nylon-bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["nylon-bag"]}, +{"id":"72134","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"206449","label":"tilting water bottle with plastic knife on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["water bottle","plastic knife"]}, +{"id":"97360","label":"tearing flower just a little bit","template":"Tearing [something] just a little bit","placeholders":["flower"]}, +{"id":"5423","label":"pushing a marker pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a marker pen"]}, +{"id":"96542","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"142794","label":"showing that holder is empty","template":"Showing that [something] is empty","placeholders":["holder"]}, +{"id":"161889","label":"holding paper towel behind ipad","template":"Holding [something] behind [something]","placeholders":["paper towel","ipad"]}, +{"id":"23132","label":"pushing smarthphone with book","template":"Pushing [something] with [something]","placeholders":["smarthphone","book"]}, +{"id":"73968","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"143969","label":"opening red dairy","template":"Opening [something]","placeholders":["red dairy"]}, +{"id":"169669","label":"spinning cd cover that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cd cover"]}, +{"id":"107759","label":"throwing a cube in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a cube"]}, +{"id":"190339","label":"bending a shoe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a shoe"]}, +{"id":"61114","label":"putting bag upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["bag"]}, +{"id":"131612","label":"spinning remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["remote"]}, +{"id":"4937","label":"pretending to pick cofee jar up","template":"Pretending to pick [something] up","placeholders":["cofee jar"]}, +{"id":"94754","label":"closing dishwasher","template":"Closing [something]","placeholders":["dishwasher"]}, +{"id":"54431","label":"turning the camera upwards while filming elephant statue","template":"Turning the camera upwards while filming [something]","placeholders":["elephant statue"]}, +{"id":"32313","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"15281","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"115429","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"8233","label":"lifting white board with binoculars on it","template":"Lifting [something] with [something] on it","placeholders":["white board","binoculars"]}, +{"id":"48636","label":"letting football roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["football"]}, +{"id":"209940","label":"spilling water next to a pen","template":"Spilling [something] next to [something]","placeholders":["water","a pen"]}, +{"id":"190717","label":"throwing candy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["candy"]}, +{"id":"116685","label":"hitting paper punch with a scissor","template":"Hitting [something] with [something]","placeholders":["paper punch","a scissor"]}, +{"id":"162644","label":"twisting (wringing) something wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["something"]}, +{"id":"113316","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"209678","label":"turning the camera downwards while filming lighter","template":"Turning the camera downwards while filming [something]","placeholders":["lighter"]}, +{"id":"20800","label":"closing almara","template":"Closing [something]","placeholders":["almara"]}, +{"id":"216152","label":"pushing screwdriver so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["screwdriver"]}, +{"id":"134287","label":"pretending to take a folder from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["a folder","shelf"]}, +{"id":"11281","label":"spinning transparent plastic bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["transparent plastic bottle"]}, +{"id":"35824","label":"plugging a cable into a phone","template":"Plugging [something] into [something]","placeholders":["a cable","a phone"]}, +{"id":"91096","label":"closing hand cream tube","template":"Closing [something]","placeholders":["hand cream tube"]}, +{"id":"204176","label":"plastic casing colliding with plastic cover and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["plastic casing","plastic cover"]}, +{"id":"89034","label":"laying box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["box"]}, +{"id":"101669","label":"dropping grape into glass","template":"Dropping [something] into [something]","placeholders":["grape","glass"]}, +{"id":"156825","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"132699","label":"moving away from computer screen with your camera","template":"Moving away from [something] with your camera","placeholders":["computer screen"]}, +{"id":"200763","label":"moving eraser and usb cable away from each other","template":"Moving [something] and [something] away from each other","placeholders":["eraser","usb cable"]}, +{"id":"208509","label":"stuffing tissue paper into paper bag","template":"Stuffing [something] into [something]","placeholders":["tissue paper","paper bag"]}, +{"id":"153559","label":"showing that bowl is empty","template":"Showing that [something] is empty","placeholders":["bowl"]}, +{"id":"134085","label":"moving small stone and large stone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["small stone","large stone"]}, +{"id":"187359","label":"putting pennies on table","template":"Putting [something similar to other things that are already on the table]","placeholders":["pennies on table"]}, +{"id":"215072","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"39852","label":"dropping a box in front of a comb","template":"Dropping [something] in front of [something]","placeholders":["a box","a comb"]}, +{"id":"143821","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"105544","label":"lifting a surface with a banana on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a banana"]}, +{"id":"218487","label":"pushing candle with figurine","template":"Pushing [something] with [something]","placeholders":["candle","figurine"]}, +{"id":"14293","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"218162","label":"touching (without moving) wheat of plate wheat","template":"Touching (without moving) [part] of [something]","placeholders":["wheat","plate wheat"]}, +{"id":"49823","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"137318","label":"covering headphones with sheet","template":"Covering [something] with [something]","placeholders":["headphones","sheet"]}, +{"id":"30387","label":"throwing the hair clip","template":"Throwing [something]","placeholders":["the hair clip"]}, +{"id":"145254","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"166796","label":"pushing a felt tip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a felt tip"]}, +{"id":"188044","label":"spinning a carrom coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a carrom coin"]}, +{"id":"8845","label":"putting white badge that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["white badge"]}, +{"id":"51630","label":"lifting glass with spoon on it","template":"Lifting [something] with [something] on it","placeholders":["glass","spoon"]}, +{"id":"186413","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"56771","label":"putting pen, pen and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","pen","pen"]}, +{"id":"116401","label":"putting teabag into cup","template":"Putting [something] into [something]","placeholders":["teabag","cup"]}, +{"id":"182258","label":"taking comb from window sill","template":"Taking [something] from [somewhere]","placeholders":["comb","window sill"]}, +{"id":"175921","label":"showing that water is inside tank","template":"Showing that [something] is inside [something]","placeholders":["water","tank"]}, +{"id":"157721","label":"block being deflected from chair","template":"[Something] being deflected from [something]","placeholders":["block","chair"]}, +{"id":"206242","label":"poking an apple so that it falls over","template":"Poking [something] so that it falls over","placeholders":["an apple"]}, +{"id":"83120","label":"taking pod out of box","template":"Taking [something] out of [something]","placeholders":["pod","box"]}, +{"id":"140970","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"188339","label":"opening card folder","template":"Opening [something]","placeholders":["card folder"]}, +{"id":"76344","label":"plugging charger into power board but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","power board"]}, +{"id":"86313","label":"moving roll plaster up","template":"Moving [something] up","placeholders":["roll plaster"]}, +{"id":"28956","label":"battery falling like a rock","template":"[Something] falling like a rock","placeholders":["battery"]}, +{"id":"146294","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"195827","label":"holding brush over box","template":"Holding [something] over [something]","placeholders":["brush","box"]}, +{"id":"125012","label":"pushing cooking utensil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cooking utensil"]}, +{"id":"66647","label":"pushing a chair so it spins","template":"Pushing [something] so it spins","placeholders":["a chair"]}, +{"id":"4941","label":"putting tennis ball behind cd stack","template":"Putting [something] behind [something]","placeholders":["tennis ball","cd stack"]}, +{"id":"53227","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"129897","label":"putting package on a surface","template":"Putting [something] on a surface","placeholders":["package"]}, +{"id":"80533","label":"closing small box","template":"Closing [something]","placeholders":["small box"]}, +{"id":"202213","label":"poking toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["toy"]}, +{"id":"199173","label":"putting a bottle of water on a surface","template":"Putting [something] on a surface","placeholders":["a bottle of water"]}, +{"id":"65274","label":"putting 2 spanners onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["2","spanners","diary"]}, +{"id":"25340","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"170631","label":"taking a mug out of a sink","template":"Taking [something] out of [something]","placeholders":["a mug","a sink"]}, +{"id":"116292","label":"pretending to pour water out of a cup, but the cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","the cup"]}, +{"id":"58144","label":"putting a straw into a cup","template":"Putting [something] into [something]","placeholders":["a straw","a cup"]}, +{"id":"148408","label":"pulling two ends of comb but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["comb"]}, +{"id":"31317","label":"poking a glass so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a glass"]}, +{"id":"42383","label":"letting cylinder roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cylinder"]}, +{"id":"75344","label":"showing book behind towel","template":"Showing [something] behind [something]","placeholders":["book","towel"]}, +{"id":"175678","label":"dropping wallet in front of couch","template":"Dropping [something] in front of [something]","placeholders":["wallet","couch"]}, +{"id":"212276","label":"covering tablet with paper","template":"Covering [something] with [something]","placeholders":["tablet","paper"]}, +{"id":"159276","label":"charger falling like a rock","template":"[Something] falling like a rock","placeholders":["charger"]}, +{"id":"118689","label":"putting a camera lens upright on the table","template":"Putting [something] upright on the table","placeholders":["a camera lens"]}, +{"id":"17380","label":"holding bottle in front of kendama","template":"Holding [something] in front of [something]","placeholders":["bottle","kendama"]}, +{"id":"95424","label":"folding plastic","template":"Folding [something]","placeholders":["plastic"]}, +{"id":"165434","label":"approaching a puzzle cube with your camera","template":"Approaching [something] with your camera","placeholders":["a puzzle cube"]}, +{"id":"133644","label":"stuffing box into christmas stocking","template":"Stuffing [something] into [something]","placeholders":["box","christmas stocking"]}, +{"id":"89566","label":"pushing a cork light so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a cork light"]}, +{"id":"198536","label":"pouring water into can","template":"Pouring [something] into [something]","placeholders":["water","can"]}, +{"id":"156853","label":"taking eyeglasses out of eyeglass case","template":"Taking [something] out of [something]","placeholders":["eyeglasses","eyeglass case"]}, +{"id":"97810","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"85344","label":"paperroll colliding with paperroll and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["paperroll","paperroll"]}, +{"id":"205245","label":"throwing a coin","template":"Throwing [something]","placeholders":["a coin"]}, +{"id":"67822","label":"turning the camera downwards while filming swiffer sweeper","template":"Turning the camera downwards while filming [something]","placeholders":["swiffer sweeper"]}, +{"id":"204864","label":"turning the camera right while filming person","template":"Turning the camera right while filming [something]","placeholders":["person"]}, +{"id":"175277","label":"rolling an apple on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an apple"]}, +{"id":"198712","label":"putting glass and highlighter on the table","template":"Putting [something] and [something] on the table","placeholders":["glass","highlighter"]}, +{"id":"35432","label":"turning the camera upwards while filming earphone","template":"Turning the camera upwards while filming [something]","placeholders":["earphone"]}, +{"id":"170820","label":"bending lamp so that it deforms","template":"Bending [something] so that it deforms","placeholders":["lamp"]}, +{"id":"129736","label":"putting shoulder straps","template":"Putting [something similar to other things that are already on the table]","placeholders":["shoulder straps"]}, +{"id":"10869","label":"moving scissor closer to pick","template":"Moving [something] closer to [something]","placeholders":["scissor","pick"]}, +{"id":"7519","label":"putting a remote upright on the table","template":"Putting [something] upright on the table","placeholders":["a remote"]}, +{"id":"106070","label":"pulling plug out of socket","template":"Pulling [something] out of [something]","placeholders":["plug","socket"]}, +{"id":"59598","label":"putting wallet in front of comb","template":"Putting [something] in front of [something]","placeholders":["wallet","comb"]}, +{"id":"12560","label":"folding scarf","template":"Folding [something]","placeholders":["scarf"]}, +{"id":"144885","label":"putting fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork"]}, +{"id":"129678","label":"moving towel closer to towel","template":"Moving [something] closer to [something]","placeholders":["towel","towel"]}, +{"id":"110353","label":"lifting a surface with highlighter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["highlighter"]}, +{"id":"50260","label":"putting lipstick upright on the table","template":"Putting [something] upright on the table","placeholders":["lipstick"]}, +{"id":"158988","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"190976","label":"pushing remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote control"]}, +{"id":"154609","label":"pushing a pencil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pencil"]}, +{"id":"210566","label":"green chalk falling like a rock","template":"[Something] falling like a rock","placeholders":["green chalk"]}, +{"id":"136214","label":"putting a candle next to plantpot","template":"Putting [something] next to [something]","placeholders":["a candle","plantpot"]}, +{"id":"62085","label":"moving a matchbox closer to a plate","template":"Moving [something] closer to [something]","placeholders":["a matchbox","a plate"]}, +{"id":"208588","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"205364","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"123799","label":"covering keys with cushion","template":"Covering [something] with [something]","placeholders":["keys","cushion"]}, +{"id":"81915","label":"pushing knife from right to left","template":"Pushing [something] from right to left","placeholders":["knife"]}, +{"id":"177468","label":"pretending to put a box underneath a hat","template":"Pretending to put [something] underneath [something]","placeholders":["a box","a hat"]}, +{"id":"14408","label":"turning small fresh mint upside down","template":"Turning [something] upside down","placeholders":["small fresh mint"]}, +{"id":"199081","label":"twisting polythene bag","template":"Twisting [something]","placeholders":["polythene bag"]}, +{"id":"20708","label":"moving wooden puppet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["wooden puppet"]}, +{"id":"137353","label":"moving hair down","template":"Moving [something] down","placeholders":["hair"]}, +{"id":"160234","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"29156","label":"throwing lime against wall","template":"Throwing [something] against [something]","placeholders":["lime","wall"]}, +{"id":"182036","label":"pretending to throw a toy","template":"Pretending to throw [something]","placeholders":["a toy"]}, +{"id":"9450","label":"moving a pillow and another pillow so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pillow","another pillow"]}, +{"id":"19546","label":"moving a coin and another coin closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a coin","another coin"]}, +{"id":"198667","label":"pulling book out of plastic bag","template":"Pulling [something] out of [something]","placeholders":["book","plastic bag"]}, +{"id":"44173","label":"holding sock behind small pillow","template":"Holding [something] behind [something]","placeholders":["sock","small pillow"]}, +{"id":"115382","label":"opening sunglasses case","template":"Opening [something]","placeholders":["sunglasses case"]}, +{"id":"143007","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"72653","label":"lifting wallet with tac case on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","tac case"]}, +{"id":"196760","label":"putting a cylinder on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a cylinder"]}, +{"id":"53504","label":"poking bracelet so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bracelet"]}, +{"id":"209912","label":"dropping a box next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a box","a spoon"]}, +{"id":"53182","label":"squeezing plastic bag with contents inside","template":"Squeezing [something]","placeholders":["plastic bag with contents inside"]}, +{"id":"153754","label":"stacking 3 remotes","template":"Stacking [number of] [something]","placeholders":["3","remotes"]}, +{"id":"15754","label":"covering pen with book","template":"Covering [something] with [something]","placeholders":["pen","book"]}, +{"id":"44380","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"58273","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"127768","label":"trying to bend straw so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["straw"]}, +{"id":"81065","label":"removing a glue, revealing a container behind","template":"Removing [something], revealing [something] behind","placeholders":["a glue","a container"]}, +{"id":"81154","label":"moving pincer up","template":"Moving [something] up","placeholders":["pincer"]}, +{"id":"112155","label":"pulling two ends of a tissu so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a tissu"]}, +{"id":"123010","label":"moving jar away from jar","template":"Moving [something] away from [something]","placeholders":["jar","jar"]}, +{"id":"180475","label":"closing diary","template":"Closing [something]","placeholders":["diary"]}, +{"id":"153451","label":"poking purse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["purse"]}, +{"id":"124133","label":"remote falling like a rock","template":"[Something] falling like a rock","placeholders":["remote"]}, +{"id":"55151","label":"pushing a box so it spins","template":"Pushing [something] so it spins","placeholders":["a box"]}, +{"id":"70642","label":"picking dvd case up","template":"Picking [something] up","placeholders":["dvd case"]}, +{"id":"211509","label":"pretending to pick pink toothbrush case up","template":"Pretending to pick [something] up","placeholders":["pink toothbrush case"]}, +{"id":"39346","label":"showing can behind box","template":"Showing [something] behind [something]","placeholders":["can","box"]}, +{"id":"215794","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"179427","label":"taking a pill","template":"Taking [one of many similar things on the table]","placeholders":["a pill"]}, +{"id":"127607","label":"throwing shoe polish container in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["shoe polish container"]}, +{"id":"157285","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"70533","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"470","label":"plugging a plug into a power converter but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a power converter"]}, +{"id":"114099","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"184515","label":"pretending to pick banana up","template":"Pretending to pick [something] up","placeholders":["banana"]}, +{"id":"181572","label":"moving a phone handset away from a ring with keys","template":"Moving [something] away from [something]","placeholders":["a phone handset","a ring with keys"]}, +{"id":"148866","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"32321","label":"approaching pebble with your camera","template":"Approaching [something] with your camera","placeholders":["pebble"]}, +{"id":"212626","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"199466","label":"failing to put a candle into a cutp because the candle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a candle","a cutp","the candle"]}, +{"id":"33924","label":"moving yellow colour pen up","template":"Moving [something] up","placeholders":["yellow colour pen"]}, +{"id":"190031","label":"throwing a pillow onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pillow"]}, +{"id":"15313","label":"taking a spice out of spices","template":"Taking [one of many similar things on the table]","placeholders":["a spice out of spices"]}, +{"id":"213863","label":"showing a pen behind a charger","template":"Showing [something] behind [something]","placeholders":["a pen","a charger"]}, +{"id":"103095","label":"pulling mouse from behind of book","template":"Pulling [something] from behind of [something]","placeholders":["mouse","book"]}, +{"id":"41598","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"218878","label":"holding bottle next to monitor screen","template":"Holding [something] next to [something]","placeholders":["bottle","monitor screen"]}, +{"id":"168003","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"58849","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"125318","label":"holding banana over vase","template":"Holding [something] over [something]","placeholders":["banana","vase"]}, +{"id":"112509","label":"putting cereal box on a surface","template":"Putting [something] on a surface","placeholders":["cereal box"]}, +{"id":"98136","label":"pretending to open a water botle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a water botle"]}, +{"id":"103345","label":"putting shampoo bottle into hole","template":"Putting [something] into [something]","placeholders":["shampoo bottle","hole"]}, +{"id":"167306","label":"putting clip, jar and toy on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["clip","jar","toy"]}, +{"id":"122780","label":"pretending to put sunglasses into box","template":"Pretending to put [something] into [something]","placeholders":["sunglasses","box"]}, +{"id":"25231","label":"tilting book with cable holder on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","cable holder"]}, +{"id":"32762","label":"pretending to open refridgerator without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["refridgerator"]}, +{"id":"188576","label":"turning peanut butter upside down","template":"Turning [something] upside down","placeholders":["peanut butter"]}, +{"id":"182869","label":"letting grape roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["grape"]}, +{"id":"117272","label":"covering a clip with a lid","template":"Covering [something] with [something]","placeholders":["a clip","a lid"]}, +{"id":"30392","label":"lifting mouse with pen on it","template":"Lifting [something] with [something] on it","placeholders":["mouse","pen"]}, +{"id":"177095","label":"trying to bend a bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a bottle"]}, +{"id":"188525","label":"uncovering sunglasses","template":"Uncovering [something]","placeholders":["sunglasses"]}, +{"id":"34647","label":"pretending to take silver plate out of sugar bottle","template":"Pretending to take [something] out of [something]","placeholders":["silver plate","sugar bottle"]}, +{"id":"207188","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"8007","label":"putting stapler into mug","template":"Putting [something] into [something]","placeholders":["stapler","mug"]}, +{"id":"123034","label":"putting spoon onto box so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["spoon","box"]}, +{"id":"109310","label":"lifting envelope with pen on it","template":"Lifting [something] with [something] on it","placeholders":["envelope","pen"]}, +{"id":"53765","label":"turning the camera left while filming cigarette lighter","template":"Turning the camera left while filming [something]","placeholders":["cigarette lighter"]}, +{"id":"4970","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"110988","label":"turning a coffee carafe upside down","template":"Turning [something] upside down","placeholders":["a coffee carafe"]}, +{"id":"165287","label":"moving a battery closer to a lighter","template":"Moving [something] closer to [something]","placeholders":["a battery","a lighter"]}, +{"id":"85395","label":"tilting book with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","box"]}, +{"id":"89503","label":"putting a bobby pin","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bobby pin"]}, +{"id":"156473","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"53049","label":"pushing container lid from left to right","template":"Pushing [something] from left to right","placeholders":["container lid"]}, +{"id":"216007","label":"holding a cup in front of pillows","template":"Holding [something] in front of [something]","placeholders":["a cup","pillows"]}, +{"id":"87512","label":"bending bottle so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bottle"]}, +{"id":"63998","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"146405","label":"pushing a container so it spins","template":"Pushing [something] so it spins","placeholders":["a container"]}, +{"id":"36460","label":"pulling the purse from right to left","template":"Pulling [something] from right to left","placeholders":["the purse"]}, +{"id":"205403","label":"putting milk into a glass","template":"Putting [something] into [something]","placeholders":["milk","a glass"]}, +{"id":"4820","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"198402","label":"putting box that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["box"]}, +{"id":"148362","label":"envelope being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["envelope","couch"]}, +{"id":"43004","label":"closing gate","template":"Closing [something]","placeholders":["gate"]}, +{"id":"152249","label":"tipping cigarette pack over","template":"Tipping [something] over","placeholders":["cigarette pack"]}, +{"id":"165274","label":"tipping soap over","template":"Tipping [something] over","placeholders":["soap"]}, +{"id":"37437","label":"moving green chalk down","template":"Moving [something] down","placeholders":["green chalk"]}, +{"id":"173133","label":"twisting (wringing) a sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a sponge"]}, +{"id":"169373","label":"lifting up one end of cell phone, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["cell phone"]}, +{"id":"14136","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"213173","label":"taking headphones","template":"Taking [one of many similar things on the table]","placeholders":["headphones"]}, +{"id":"212080","label":"moving cup and scissors closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","scissors"]}, +{"id":"78559","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"139370","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"58029","label":"putting fruit into bowl","template":"Putting [something] into [something]","placeholders":["fruit","bowl"]}, +{"id":"167866","label":"throwing a ball against the floor so it bounces","template":"Throwing [something] against [something]","placeholders":["a ball","the floor so it bounces"]}, +{"id":"192432","label":"dropping a paper ball into the trash can","template":"Dropping [something] into [something]","placeholders":["a paper ball","the trash can"]}, +{"id":"61839","label":"stacking 3 containers","template":"Stacking [number of] [something]","placeholders":["3","containers"]}, +{"id":"169271","label":"moving the signal lever down","template":"Moving [something] down","placeholders":["the signal lever"]}, +{"id":"146232","label":"spilling water next to a cup","template":"Spilling [something] next to [something]","placeholders":["water","a cup"]}, +{"id":"191164","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"79981","label":"pushing tapeline from right to left","template":"Pushing [something] from right to left","placeholders":["tapeline"]}, +{"id":"48010","label":"taking currency from car seat","template":"Taking [something] from [somewhere]","placeholders":["currency","car seat"]}, +{"id":"29554","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"196623","label":"pushing black brush from left to right","template":"Pushing [something] from left to right","placeholders":["black brush"]}, +{"id":"80967","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"45094","label":"poking paint tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["paint tube"]}, +{"id":"13210","label":"putting 3 hair bands onto cookie box","template":"Putting [number of] [something] onto [something]","placeholders":["3","hair bands","cookie box"]}, +{"id":"55428","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"183730","label":"pushing granola bar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["granola bar"]}, +{"id":"59771","label":"tipping pencil box over","template":"Tipping [something] over","placeholders":["pencil box"]}, +{"id":"30152","label":"showing umbrella to the camera","template":"Showing [something] to the camera","placeholders":["umbrella"]}, +{"id":"109189","label":"turning the camera right while filming steam cake","template":"Turning the camera right while filming [something]","placeholders":["steam cake"]}, +{"id":"50997","label":"lifting up one end of note book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["note book"]}, +{"id":"130322","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"128520","label":"plugging a plug into the socket to the wall","template":"Plugging [something] into [something]","placeholders":["a plug","the socket to the wall"]}, +{"id":"119055","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"88127","label":"throwing brush against box","template":"Throwing [something] against [something]","placeholders":["brush","box"]}, +{"id":"130016","label":"trying to bend plastic card so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["plastic card"]}, +{"id":"129725","label":"lifting plate with banana on it","template":"Lifting [something] with [something] on it","placeholders":["plate","banana"]}, +{"id":"54869","label":"lifting folder with marker on it","template":"Lifting [something] with [something] on it","placeholders":["folder","marker"]}, +{"id":"133121","label":"moving note book up","template":"Moving [something] up","placeholders":["note book"]}, +{"id":"15132","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"101107","label":"putting spray bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["spray bottle"]}, +{"id":"28557","label":"pretending or failing to wipe scratch off of desk","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["scratch","desk"]}, +{"id":"74141","label":"pushing controller so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["controller"]}, +{"id":"38220","label":"pushing pink box from left to right","template":"Pushing [something] from left to right","placeholders":["pink box"]}, +{"id":"157283","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"199410","label":"pushing compass from right to left","template":"Pushing [something] from right to left","placeholders":["compass"]}, +{"id":"15627","label":"pretending to put box on a surface","template":"Pretending to put [something] on a surface","placeholders":["box"]}, +{"id":"89949","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"31390","label":"pretending to open pot cover without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pot cover"]}, +{"id":"179576","label":"a ruler falling like a rock","template":"[Something] falling like a rock","placeholders":["a ruler"]}, +{"id":"54980","label":"dropping a phone in front of a pillow","template":"Dropping [something] in front of [something]","placeholders":["a phone","a pillow"]}, +{"id":"172718","label":"moving a phone handset closer to a ring with keys","template":"Moving [something] closer to [something]","placeholders":["a phone handset","a ring with keys"]}, +{"id":"131294","label":"pretending or failing to wipe dirt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","a plank of wood"]}, +{"id":"127755","label":"moving remote and water bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["remote","water bottle"]}, +{"id":"16566","label":"putting a glass behind a bottle","template":"Putting [something] behind [something]","placeholders":["a glass","a bottle"]}, +{"id":"45054","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"50577","label":"approaching sandal for men with your camera","template":"Approaching [something] with your camera","placeholders":["sandal for men"]}, +{"id":"112148","label":"poking a plastic bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a plastic bottle"]}, +{"id":"204838","label":"moving a pencil closer to scissors","template":"Moving [something] closer to [something]","placeholders":["a pencil","scissors"]}, +{"id":"122193","label":"throwing can of soda in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["can of soda"]}, +{"id":"206048","label":"spinning a chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a chair"]}, +{"id":"137612","label":"covering cup with paper towel","template":"Covering [something] with [something]","placeholders":["cup","paper towel"]}, +{"id":"6735","label":"pushing face wash so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["face wash"]}, +{"id":"208139","label":"moving toy tiger and toy elephant so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toy tiger","toy elephant"]}, +{"id":"89763","label":"uncovering earphones","template":"Uncovering [something]","placeholders":["earphones"]}, +{"id":"134532","label":"pouring water into lid","template":"Pouring [something] into [something]","placeholders":["water","lid"]}, +{"id":"24301","label":"pulling stick out of cup","template":"Pulling [something] out of [something]","placeholders":["stick","cup"]}, +{"id":"95725","label":"fork falling like a rock","template":"[Something] falling like a rock","placeholders":["fork"]}, +{"id":"173026","label":"lifting box with handphone on it","template":"Lifting [something] with [something] on it","placeholders":["box","handphone"]}, +{"id":"110907","label":"pretending to sprinkle air onto a box","template":"Pretending to sprinkle air onto [something]","placeholders":["a box"]}, +{"id":"117183","label":"sprinkling sugar onto table","template":"Sprinkling [something] onto [something]","placeholders":["sugar","table"]}, +{"id":"177010","label":"putting tissue into box","template":"Putting [something] into [something]","placeholders":["tissue","box"]}, +{"id":"67358","label":"turning a glass cup upside down","template":"Turning [something] upside down","placeholders":["a glass cup"]}, +{"id":"100491","label":"folding tote bag","template":"Folding [something]","placeholders":["tote bag"]}, +{"id":"189337","label":"pulling a pen from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a pen","a box"]}, +{"id":"4024","label":"putting phone behind mug","template":"Putting [something] behind [something]","placeholders":["phone","mug"]}, +{"id":"117556","label":"taking a cup of mineral water on the table","template":"Taking [one of many similar things on the table]","placeholders":["a cup of mineral water on the table"]}, +{"id":"74839","label":"moving perfume bottle and toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["perfume bottle","toy"]}, +{"id":"13944","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"31093","label":"holding bottle in front of bottle","template":"Holding [something] in front of [something]","placeholders":["bottle","bottle"]}, +{"id":"176232","label":"pretending or failing to wipe emblem off of coaster","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["emblem","coaster"]}, +{"id":"84992","label":"poking a kleenex box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a kleenex box"]}, +{"id":"180656","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"184100","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"184150","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"157974","label":"approaching nail cutter with your camera","template":"Approaching [something] with your camera","placeholders":["nail cutter"]}, +{"id":"208627","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"14747","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"50115","label":"showing that a glasses case is empty","template":"Showing that [something] is empty","placeholders":["a glasses case"]}, +{"id":"99143","label":"piling clementines up","template":"Piling [something] up","placeholders":["clementines"]}, +{"id":"58874","label":"burying candy mint in blanket","template":"Burying [something] in [something]","placeholders":["candy mint","blanket"]}, +{"id":"136441","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"147772","label":"pretending to put pen into box","template":"Pretending to put [something] into [something]","placeholders":["pen","box"]}, +{"id":"38771","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"207945","label":"taking marker out of cup","template":"Taking [something] out of [something]","placeholders":["marker","cup"]}, +{"id":"180211","label":"moving small end of phone cord","template":"Moving [part] of [something]","placeholders":["small end","phone cord"]}, +{"id":"104418","label":"moving glass and jug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","jug"]}, +{"id":"170749","label":"pushing pushing mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pushing mouse"]}, +{"id":"23746","label":"putting a pen behind a pencil case","template":"Putting [something] behind [something]","placeholders":["a pen","a pencil case"]}, +{"id":"13842","label":"moving a market across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a market"]}, +{"id":"85992","label":"rolling baby powder on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["baby powder"]}, +{"id":"4136","label":"pretending to put a mug next to another mug","template":"Pretending to put [something] next to [something]","placeholders":["a mug","another mug"]}, +{"id":"76616","label":"attaching mobile to flip cover","template":"Attaching [something] to [something]","placeholders":["mobile","flip cover"]}, +{"id":"156201","label":"putting book, candle and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","candle","pen"]}, +{"id":"200263","label":"pretending to pick squeezable strawberry jam up","template":"Pretending to pick [something] up","placeholders":["squeezable strawberry jam"]}, +{"id":"15990","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"113404","label":"putting glasses box on a surface","template":"Putting [something] on a surface","placeholders":["glasses box"]}, +{"id":"156245","label":"twisting usb-stick","template":"Twisting [something]","placeholders":["usb-stick"]}, +{"id":"8356","label":"pretending to put a notebook onto a cardboard box","template":"Pretending to put [something] onto [something]","placeholders":["a notebook","a cardboard box"]}, +{"id":"219326","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"84431","label":"stacking 2 nail polish","template":"Stacking [number of] [something]","placeholders":["2","nail polish"]}, +{"id":"105351","label":"dropping pillow onto bed","template":"Dropping [something] onto [something]","placeholders":["pillow","bed"]}, +{"id":"72270","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"59824","label":"showing a photo of a hindu deity to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a hindu deity"]}, +{"id":"116592","label":"pulling binoculars from right to left","template":"Pulling [something] from right to left","placeholders":["binoculars"]}, +{"id":"8542","label":"waterbottle falling like a rock","template":"[Something] falling like a rock","placeholders":["waterbottle"]}, +{"id":"165248","label":"lifting keys up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["keys"]}, +{"id":"185918","label":"putting notebook behind box","template":"Putting [something] behind [something]","placeholders":["notebook","box"]}, +{"id":"126892","label":"turning the camera right while filming bottle","template":"Turning the camera right while filming [something]","placeholders":["bottle"]}, +{"id":"166637","label":"opening sandwichera","template":"Opening [something]","placeholders":["sandwichera"]}, +{"id":"154598","label":"dropping a peg behind a book","template":"Dropping [something] behind [something]","placeholders":["a peg","a book"]}, +{"id":"16361","label":"pretending to be tearing handkerchief","template":"Pretending to be tearing [something that is not tearable]","placeholders":["handkerchief"]}, +{"id":"197760","label":"holding a smartphone","template":"Holding [something]","placeholders":["a smartphone"]}, +{"id":"200978","label":"turning the camera left while filming a bottle of water","template":"Turning the camera left while filming [something]","placeholders":["a bottle of water"]}, +{"id":"37704","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"58177","label":"pretending to pick a pencil case up","template":"Pretending to pick [something] up","placeholders":["a pencil case"]}, +{"id":"25592","label":"holding water bottle next to coke bottle","template":"Holding [something] next to [something]","placeholders":["water bottle","coke bottle"]}, +{"id":"16984","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"49263","label":"pretending to take something out of something","template":"Pretending to take [something] out of [something]","placeholders":["something","something"]}, +{"id":"146789","label":"pushing something off of something","template":"Pushing [something] off of [something]","placeholders":["something","something"]}, +{"id":"53222","label":"pushing a small bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a small bottle"]}, +{"id":"207528","label":"lifting envelope with coins on it","template":"Lifting [something] with [something] on it","placeholders":["envelope","coins"]}, +{"id":"8547","label":"showing shoe to the camera","template":"Showing [something] to the camera","placeholders":["shoe"]}, +{"id":"170966","label":"dropping red hairband next to tablet box","template":"Dropping [something] next to [something]","placeholders":["red hairband","tablet box"]}, +{"id":"43724","label":"spilling water onto a thermos","template":"Spilling [something] onto [something]","placeholders":["water","a thermos"]}, +{"id":"157613","label":"plugging charger into pluge but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","pluge"]}, +{"id":"166636","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"72169","label":"moving pen drive closer to wallet","template":"Moving [something] closer to [something]","placeholders":["pen drive","wallet"]}, +{"id":"37606","label":"putting fork next to cup","template":"Putting [something] next to [something]","placeholders":["fork","cup"]}, +{"id":"84613","label":"rolling rolling pin on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling pin"]}, +{"id":"19390","label":"moving away from notebook with your camera","template":"Moving away from [something] with your camera","placeholders":["notebook"]}, +{"id":"87931","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"145860","label":"putting wireless phone upright on the table","template":"Putting [something] upright on the table","placeholders":["wireless phone"]}, +{"id":"75092","label":"holding small stone next to rectangular box","template":"Holding [something] next to [something]","placeholders":["small stone","rectangular box"]}, +{"id":"200999","label":"picking a cup up","template":"Picking [something] up","placeholders":["a cup"]}, +{"id":"27476","label":"pouring something onto something","template":"Pouring [something] onto [something]","placeholders":["something","something"]}, +{"id":"25838","label":"putting mug in front of setsquare","template":"Putting [something] in front of [something]","placeholders":["mug","setsquare"]}, +{"id":"12265","label":"pretending to pick table cloth up","template":"Pretending to pick [something] up","placeholders":["table cloth"]}, +{"id":"23449","label":"pretending to put napkins into napkin holder","template":"Pretending to put [something] into [something]","placeholders":["napkins","napkin holder"]}, +{"id":"2519","label":"hitting candy with candy","template":"Hitting [something] with [something]","placeholders":["candy","candy"]}, +{"id":"69213","label":"poking a stack of boxs without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["boxs"]}, +{"id":"95516","label":"putting calculator onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["calculator"]}, +{"id":"85733","label":"pouring water into washbasin","template":"Pouring [something] into [something]","placeholders":["water","washbasin"]}, +{"id":"92139","label":"tipping cup with ball over, so ball falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","ball","ball"]}, +{"id":"9344","label":"covering duster with scarf","template":"Covering [something] with [something]","placeholders":["duster","scarf"]}, +{"id":"138988","label":"pushing glass from left to right","template":"Pushing [something] from left to right","placeholders":["glass"]}, +{"id":"150669","label":"pulling a glass from left to right","template":"Pulling [something] from left to right","placeholders":["a glass"]}, +{"id":"66584","label":"dropping paper in front of box","template":"Dropping [something] in front of [something]","placeholders":["paper","box"]}, +{"id":"60109","label":"putting a straw into a cup","template":"Putting [something] into [something]","placeholders":["a straw","a cup"]}, +{"id":"173288","label":"putting hand cream tube on a surface","template":"Putting [something] on a surface","placeholders":["hand cream tube"]}, +{"id":"42163","label":"holding mobile phone in front of laptop","template":"Holding [something] in front of [something]","placeholders":["mobile phone","laptop"]}, +{"id":"11382","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"20283","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"77175","label":"twisting wire","template":"Twisting [something]","placeholders":["wire"]}, +{"id":"91196","label":"dropping marker into cup","template":"Dropping [something] into [something]","placeholders":["marker","cup"]}, +{"id":"67965","label":"laying a glue stick on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glue stick"]}, +{"id":"162086","label":"taking a case","template":"Taking [one of many similar things on the table]","placeholders":["a case"]}, +{"id":"132146","label":"poking a hole into dirt","template":"Poking a hole into [some substance]","placeholders":["dirt"]}, +{"id":"188147","label":"pretending to be tearing sheet of paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["sheet of paper"]}, +{"id":"94126","label":"squeezing a plushie","template":"Squeezing [something]","placeholders":["a plushie"]}, +{"id":"209739","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"122248","label":"putting a mug behind a pan","template":"Putting [something] behind [something]","placeholders":["a mug","a pan"]}, +{"id":"87361","label":"pulling two ends of headphones so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["headphones"]}, +{"id":"52945","label":"dropping cow onto pillow","template":"Dropping [something] onto [something]","placeholders":["cow","pillow"]}, +{"id":"39702","label":"moving away from chair with your camera","template":"Moving away from [something] with your camera","placeholders":["chair"]}, +{"id":"115030","label":"picking plate up","template":"Picking [something] up","placeholders":["plate"]}, +{"id":"215414","label":"putting calculator on a surface","template":"Putting [something] on a surface","placeholders":["calculator"]}, +{"id":"83458","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"55141","label":"dropping eraser into blue glass bowl","template":"Dropping [something] into [something]","placeholders":["eraser","blue glass bowl"]}, +{"id":"81992","label":"showing clothes behind a window","template":"Showing [something] behind [something]","placeholders":["clothes","a window"]}, +{"id":"203725","label":"lifting a surface with phone on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["phone"]}, +{"id":"215361","label":"showing one tealight candle to the camera","template":"Showing [something] to the camera","placeholders":["one tealight candle"]}, +{"id":"141799","label":"hitting a shower curtain with a hair iron","template":"Hitting [something] with [something]","placeholders":["a shower curtain","a hair iron"]}, +{"id":"89670","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"84335","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"194203","label":"hitting drum with lighter","template":"Hitting [something] with [something]","placeholders":["drum","lighter"]}, +{"id":"146631","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"204274","label":"tilting book with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","mouse"]}, +{"id":"95729","label":"uncovering a book","template":"Uncovering [something]","placeholders":["a book"]}, +{"id":"18697","label":"closing bottle cap","template":"Closing [something]","placeholders":["bottle cap"]}, +{"id":"100391","label":"showing pen behind holder","template":"Showing [something] behind [something]","placeholders":["pen","holder"]}, +{"id":"124099","label":"pushing container with screw","template":"Pushing [something] with [something]","placeholders":["container","screw"]}, +{"id":"190128","label":"holding pen next to watch","template":"Holding [something] next to [something]","placeholders":["pen","watch"]}, +{"id":"76952","label":"closing card folder","template":"Closing [something]","placeholders":["card folder"]}, +{"id":"164984","label":"bending dog biscuit until it breaks","template":"Bending [something] until it breaks","placeholders":["dog biscuit"]}, +{"id":"145229","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"50232","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"41463","label":"laying container on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["container"]}, +{"id":"164659","label":"pushing knife so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["knife"]}, +{"id":"99362","label":"pushing hair gel bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair gel bottle"]}, +{"id":"91330","label":"putting musical tabala that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["musical tabala"]}, +{"id":"5820","label":"spinning toothpaste tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothpaste tube"]}, +{"id":"68822","label":"spilling water next to a padlock","template":"Spilling [something] next to [something]","placeholders":["water","a padlock"]}, +{"id":"31678","label":"tipping a bowl over","template":"Tipping [something] over","placeholders":["a bowl"]}, +{"id":"35805","label":"holding the paper over the book","template":"Holding [something] over [something]","placeholders":["the paper","the book"]}, +{"id":"131487","label":"pushing cigarette box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cigarette box"]}, +{"id":"65041","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"201177","label":"stuffing cookies into a box","template":"Stuffing [something] into [something]","placeholders":["cookies","a box"]}, +{"id":"162464","label":"hitting speaker with gum bottle","template":"Hitting [something] with [something]","placeholders":["speaker","gum bottle"]}, +{"id":"84572","label":"turning the camera right while filming telephone junction box","template":"Turning the camera right while filming [something]","placeholders":["telephone junction box"]}, +{"id":"104873","label":"tearing index card into two pieces","template":"Tearing [something] into two pieces","placeholders":["index card"]}, +{"id":"157015","label":"holding a glass of water in front of computer monitor","template":"Holding [something] in front of [something]","placeholders":["a glass of water","computer monitor"]}, +{"id":"35817","label":"dropping plastic onto floor","template":"Dropping [something] onto [something]","placeholders":["plastic","floor"]}, +{"id":"149098","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"195085","label":"stuffing shorts into a bag","template":"Stuffing [something] into [something]","placeholders":["shorts","a bag"]}, +{"id":"170900","label":"plugging something into something but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["something","something"]}, +{"id":"124567","label":"holding pill bottle next to cheese grater","template":"Holding [something] next to [something]","placeholders":["pill bottle","cheese grater"]}, +{"id":"23388","label":"pretending to take a glass from my table","template":"Pretending to take [something] from [somewhere]","placeholders":["a glass","my table"]}, +{"id":"3899","label":"taking currency from table","template":"Taking [something] from [somewhere]","placeholders":["currency","table"]}, +{"id":"112588","label":"moving white pebble down","template":"Moving [something] down","placeholders":["white pebble"]}, +{"id":"150245","label":"dropping phone in front of pants","template":"Dropping [something] in front of [something]","placeholders":["phone","pants"]}, +{"id":"119819","label":"taking timepiece out of basket","template":"Taking [something] out of [something]","placeholders":["timepiece","basket"]}, +{"id":"146762","label":"removing a beer can, revealing a teaspoon behind","template":"Removing [something], revealing [something] behind","placeholders":["a beer can","a teaspoon"]}, +{"id":"46281","label":"opening cabinet","template":"Opening [something]","placeholders":["cabinet"]}, +{"id":"129298","label":"dropping paper in front of cup","template":"Dropping [something] in front of [something]","placeholders":["paper","cup"]}, +{"id":"44523","label":"tipping a tin can over","template":"Tipping [something] over","placeholders":["a tin can"]}, +{"id":"13998","label":"hitting a toy car with a book","template":"Hitting [something] with [something]","placeholders":["a toy car","a book"]}, +{"id":"31664","label":"moving hand up","template":"Moving [something] up","placeholders":["hand"]}, +{"id":"142521","label":"putting a remote control on a surface","template":"Putting [something] on a surface","placeholders":["a remote control"]}, +{"id":"31098","label":"taking hair band from table","template":"Taking [something] from [somewhere]","placeholders":["hair band","table"]}, +{"id":"93868","label":"pulling dvd case from right to left","template":"Pulling [something] from right to left","placeholders":["dvd case"]}, +{"id":"28942","label":"holding remote next to can","template":"Holding [something] next to [something]","placeholders":["remote","can"]}, +{"id":"83323","label":"removing calculator, revealing eraser behind","template":"Removing [something], revealing [something] behind","placeholders":["calculator","eraser"]}, +{"id":"79785","label":"moving pen away from remote","template":"Moving [something] away from [something]","placeholders":["pen","remote"]}, +{"id":"145090","label":"lifting stencil with wooden stick on it","template":"Lifting [something] with [something] on it","placeholders":["stencil","wooden stick"]}, +{"id":"95943","label":"covering stroller with towel","template":"Covering [something] with [something]","placeholders":["stroller","towel"]}, +{"id":"61318","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"69587","label":"moving a bottle and a bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a bottle"]}, +{"id":"76926","label":"pretending to put book underneath book","template":"Pretending to put [something] underneath [something]","placeholders":["book","book"]}, +{"id":"72928","label":"pretending to be tearing wallet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["wallet"]}, +{"id":"110273","label":"tipping cup with grape over, so grape falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","grape","grape"]}, +{"id":"17519","label":"pulling a pen from left to right","template":"Pulling [something] from left to right","placeholders":["a pen"]}, +{"id":"136269","label":"pushing red pot holder from left to right","template":"Pushing [something] from left to right","placeholders":["red pot holder"]}, +{"id":"171333","label":"putting a pencil case underneath a sweater","template":"Putting [something] underneath [something]","placeholders":["a pencil case","a sweater"]}, +{"id":"67859","label":"pouring something into something until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["something","something"]}, +{"id":"66909","label":"twisting a lip balm lid","template":"Twisting [something]","placeholders":["a lip balm lid"]}, +{"id":"6220","label":"moving tupperware across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["tupperware"]}, +{"id":"180303","label":"pushing pen stand from left to right","template":"Pushing [something] from left to right","placeholders":["pen stand"]}, +{"id":"162039","label":"tearing toilet paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["toilet paper"]}, +{"id":"779","label":"putting coin behind mug","template":"Putting [something] behind [something]","placeholders":["coin","mug"]}, +{"id":"25303","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"9821","label":"moving magnet closer to magnifying glass","template":"Moving [something] closer to [something]","placeholders":["magnet","magnifying glass"]}, +{"id":"143249","label":"bending plastic card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["plastic card"]}, +{"id":"217635","label":"showing that green liquid is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["green liquid","a bottle"]}, +{"id":"151722","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"153194","label":"car colliding with train and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["car","train"]}, +{"id":"70542","label":"taking a car out of parking lot","template":"Taking [something] out of [something]","placeholders":["a car","parking lot"]}, +{"id":"132740","label":"uncovering flashlight","template":"Uncovering [something]","placeholders":["flashlight"]}, +{"id":"57240","label":"pulling diaper wipes out of the bag","template":"Pulling [something] out of [something]","placeholders":["diaper wipes","the bag"]}, +{"id":"139833","label":"uncovering a cell phone","template":"Uncovering [something]","placeholders":["a cell phone"]}, +{"id":"76727","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"77019","label":"hitting pillow with clothes","template":"Hitting [something] with [something]","placeholders":["pillow","clothes"]}, +{"id":"55628","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"114961","label":"moving toothpaste tube and toothpaste tube so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toothpaste tube","toothpaste tube"]}, +{"id":"84300","label":"pulling a lighter from behind of a bottle","template":"Pulling [something] from behind of [something]","placeholders":["a lighter","a bottle"]}, +{"id":"28379","label":"showing that cookie box is empty","template":"Showing that [something] is empty","placeholders":["cookie box"]}, +{"id":"87969","label":"trying to pour water into watering can, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","watering can"]}, +{"id":"96063","label":"spinning lipstick so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lipstick"]}, +{"id":"66355","label":"holding onion next to mug","template":"Holding [something] next to [something]","placeholders":["onion","mug"]}, +{"id":"85402","label":"pretending to put a lighter on a surface","template":"Pretending to put [something] on a surface","placeholders":["a lighter"]}, +{"id":"105359","label":"putting a book in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a book","a cup"]}, +{"id":"6848","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"177178","label":"showing railway track to the camera","template":"Showing [something] to the camera","placeholders":["railway track"]}, +{"id":"175887","label":"turning the camera downwards while filming wastebin","template":"Turning the camera downwards while filming [something]","placeholders":["wastebin"]}, +{"id":"151807","label":"putting spects into box","template":"Putting [something] into [something]","placeholders":["spects","box"]}, +{"id":"34339","label":"hitting table with book","template":"Hitting [something] with [something]","placeholders":["table","book"]}, +{"id":"79890","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"200068","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"174784","label":"wiping toothpaste off of a desk","template":"Wiping [something] off of [something]","placeholders":["toothpaste","a desk"]}, +{"id":"220342","label":"pulling a pen out of a glass","template":"Pulling [something] out of [something]","placeholders":["a pen","a glass"]}, +{"id":"196818","label":"plugging black cord into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["black cord","outlet"]}, +{"id":"69483","label":"letting toilet paper roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toilet paper"]}, +{"id":"12317","label":"squeezing cotton","template":"Squeezing [something]","placeholders":["cotton"]}, +{"id":"118368","label":"putting clip that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["clip"]}, +{"id":"129545","label":"moving yellow hairband down","template":"Moving [something] down","placeholders":["yellow hairband"]}, +{"id":"220382","label":"poking calculator so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["calculator"]}, +{"id":"149823","label":"putting comb behind wallet","template":"Putting [something] behind [something]","placeholders":["comb","wallet"]}, +{"id":"143540","label":"plugging charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["charger","wall outlet"]}, +{"id":"214557","label":"putting a book in front of a mug","template":"Putting [something] in front of [something]","placeholders":["a book","a mug"]}, +{"id":"106779","label":"notes falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["notes"]}, +{"id":"73287","label":"moving top of keurig","template":"Moving [part] of [something]","placeholders":["top","keurig"]}, +{"id":"57287","label":"pushing candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["candle"]}, +{"id":"128019","label":"plugging a cable into a adapter but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a adapter"]}, +{"id":"101502","label":"showing that coffee mug is empty","template":"Showing that [something] is empty","placeholders":["coffee mug"]}, +{"id":"96844","label":"twisting a ceramic frog","template":"Twisting [something]","placeholders":["a ceramic frog"]}, +{"id":"106398","label":"tearing chapati just a little bit","template":"Tearing [something] just a little bit","placeholders":["chapati"]}, +{"id":"191246","label":"spinning a tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a tube"]}, +{"id":"25483","label":"pretending to pick toy up","template":"Pretending to pick [something] up","placeholders":["toy"]}, +{"id":"104108","label":"moving coin away from the camera","template":"Moving [something] away from the camera","placeholders":["coin"]}, +{"id":"187687","label":"pushing calculator so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["calculator"]}, +{"id":"46578","label":"taking scissors out of box","template":"Taking [something] out of [something]","placeholders":["scissors","box"]}, +{"id":"98201","label":"putting muffin and bulb syringe on the table","template":"Putting [something] and [something] on the table","placeholders":["muffin","bulb syringe"]}, +{"id":"2872","label":"plugging usb cable into smarthphone","template":"Plugging [something] into [something]","placeholders":["usb cable","smarthphone"]}, +{"id":"57770","label":"pouring water out of mason jar","template":"Pouring [something] out of [something]","placeholders":["water","mason jar"]}, +{"id":"158618","label":"closing a container","template":"Closing [something]","placeholders":["a container"]}, +{"id":"132932","label":"plugging power cable into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power cable","socket"]}, +{"id":"152753","label":"stickynote falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["stickynote"]}, +{"id":"128124","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196060","label":"spinning poker chip so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["poker chip"]}, +{"id":"108638","label":"squeezing soda can","template":"Squeezing [something]","placeholders":["soda can"]}, +{"id":"27010","label":"pushing spinner so it spins","template":"Pushing [something] so it spins","placeholders":["spinner"]}, +{"id":"188678","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"205218","label":"putting a trophy next to a speaker","template":"Putting [something] next to [something]","placeholders":["a trophy","a speaker"]}, +{"id":"103499","label":"pretending to be tearing t-shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["t-shirt"]}, +{"id":"113952","label":"trying to bend iron stick so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["iron stick"]}, +{"id":"83441","label":"putting stick upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["stick"]}, +{"id":"132209","label":"tilting plate with glasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","glasses"]}, +{"id":"65637","label":"showing lever on top of toy wheel","template":"Showing [something] on top of [something]","placeholders":["lever","toy wheel"]}, +{"id":"32984","label":"dropping a bottletop onto a wallet","template":"Dropping [something] onto [something]","placeholders":["a bottletop","a wallet"]}, +{"id":"153707","label":"lifting a can of mints with an aerosol can on it","template":"Lifting [something] with [something] on it","placeholders":["a can of mints","an aerosol can"]}, +{"id":"39175","label":"pulling tissue out of tissue box","template":"Pulling [something] out of [something]","placeholders":["tissue","tissue box"]}, +{"id":"28395","label":"closing vanity bag","template":"Closing [something]","placeholders":["vanity bag"]}, +{"id":"202780","label":"moving ashtray down","template":"Moving [something] down","placeholders":["ashtray"]}, +{"id":"193456","label":"spreading salt onto raw chicken meat","template":"Spreading [something] onto [something]","placeholders":["salt","raw chicken meat"]}, +{"id":"201229","label":"matchbox falling like a rock","template":"[Something] falling like a rock","placeholders":["matchbox"]}, +{"id":"19087","label":"putting gum","template":"Putting [something similar to other things that are already on the table]","placeholders":["gum"]}, +{"id":"89883","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"91355","label":"holding a bathing soap","template":"Holding [something]","placeholders":["a bathing soap"]}, +{"id":"86438","label":"putting coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["coins"]}, +{"id":"194319","label":"pouring water into bottle","template":"Pouring [something] into [something]","placeholders":["water","bottle"]}, +{"id":"87076","label":"poking poking drawer so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["poking drawer"]}, +{"id":"19474","label":"pulling a necklace out of a basket","template":"Pulling [something] out of [something]","placeholders":["a necklace","a basket"]}, +{"id":"201781","label":"putting pebble next to glass","template":"Putting [something] next to [something]","placeholders":["pebble","glass"]}, +{"id":"95371","label":"lifting box with remote on it","template":"Lifting [something] with [something] on it","placeholders":["box","remote"]}, +{"id":"30947","label":"dropping a box in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a box","a book"]}, +{"id":"65947","label":"attaching a toy brick to a toy brick","template":"Attaching [something] to [something]","placeholders":["a toy brick","a toy brick"]}, +{"id":"77557","label":"pretending to sprinkle air onto a bowl with apples","template":"Pretending to sprinkle air onto [something]","placeholders":["a bowl with apples"]}, +{"id":"29234","label":"covering doll with blanket","template":"Covering [something] with [something]","placeholders":["doll","blanket"]}, +{"id":"127410","label":"tearing receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["receipt"]}, +{"id":"56251","label":"moving a bottle closer to a cup","template":"Moving [something] closer to [something]","placeholders":["a bottle","a cup"]}, +{"id":"84827","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"171376","label":"tearing advertising brochure just a little bit","template":"Tearing [something] just a little bit","placeholders":["advertising brochure"]}, +{"id":"29585","label":"putting quarter that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["quarter"]}, +{"id":"79193","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"188377","label":"sprinkling sugar onto buttered toast","template":"Sprinkling [something] onto [something]","placeholders":["sugar","buttered toast"]}, +{"id":"55149","label":"putting rubber into mug","template":"Putting [something] into [something]","placeholders":["rubber","mug"]}, +{"id":"31509","label":"spreading butter onto bread","template":"Spreading [something] onto [something]","placeholders":["butter","bread"]}, +{"id":"38951","label":"uncovering doll","template":"Uncovering [something]","placeholders":["doll"]}, +{"id":"155301","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"206752","label":"pretending to put a votive behind a votive","template":"Pretending to put [something] behind [something]","placeholders":["a votive","a votive"]}, +{"id":"95328","label":"putting water bottle and pocket knife on the table","template":"Putting [something] and [something] on the table","placeholders":["water bottle","pocket knife"]}, +{"id":"89434","label":"pushing a phone so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a phone"]}, +{"id":"128502","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"118229","label":"putting 2 red spoons onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","red spoons","black pouch"]}, +{"id":"172090","label":"moving washcloth across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["washcloth"]}, +{"id":"59804","label":"holding soft tissue roll","template":"Holding [something]","placeholders":["soft tissue roll"]}, +{"id":"34190","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"208953","label":"pretending to put a lit onto a pan","template":"Pretending to put [something] onto [something]","placeholders":["a lit","a pan"]}, +{"id":"85939","label":"putting toy onto spectical box","template":"Putting [something] onto [something]","placeholders":["toy","spectical box"]}, +{"id":"33170","label":"opening a chest","template":"Opening [something]","placeholders":["a chest"]}, +{"id":"134849","label":"plugging charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall socket"]}, +{"id":"80555","label":"moving matchbox and cellphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["matchbox","cellphone"]}, +{"id":"7414","label":"scooping a pacifier up with my hand","template":"Scooping [something] up with [something]","placeholders":["a pacifier","my hand"]}, +{"id":"100117","label":"moving top of tea box","template":"Moving [part] of [something]","placeholders":["top","tea box"]}, +{"id":"41978","label":"approaching a fidget spinner with your camera","template":"Approaching [something] with your camera","placeholders":["a fidget spinner"]}, +{"id":"17320","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"83295","label":"moving glass away from bottle","template":"Moving [something] away from [something]","placeholders":["glass","bottle"]}, +{"id":"73249","label":"putting earphone next to yellowbook","template":"Putting [something] next to [something]","placeholders":["earphone","yellowbook"]}, +{"id":"207083","label":"pretending to put shoe underneath bed","template":"Pretending to put [something] underneath [something]","placeholders":["shoe","bed"]}, +{"id":"43503","label":"moving mug closer to mug","template":"Moving [something] closer to [something]","placeholders":["mug","mug"]}, +{"id":"192879","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"211134","label":"bending a label so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a label"]}, +{"id":"185728","label":"putting 3 spools of thread onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["3","spools of thread","a box"]}, +{"id":"125127","label":"letting a musical tabla roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a musical tabla"]}, +{"id":"35487","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"29715","label":"tipping a stuffed bird over","template":"Tipping [something] over","placeholders":["a stuffed bird"]}, +{"id":"220453","label":"squeezing pink water bottle","template":"Squeezing [something]","placeholders":["pink water bottle"]}, +{"id":"130183","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"179398","label":"rolling kitchen towel on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["kitchen towel"]}, +{"id":"147083","label":"holding battery in front of mouse","template":"Holding [something] in front of [something]","placeholders":["battery","mouse"]}, +{"id":"18271","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"91959","label":"showing that soda is empty","template":"Showing that [something] is empty","placeholders":["soda"]}, +{"id":"220583","label":"pushing watch from right to left","template":"Pushing [something] from right to left","placeholders":["watch"]}, +{"id":"57756","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"46789","label":"poking toilet roll so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["toilet roll"]}, +{"id":"35716","label":"bending an envelope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an envelope"]}, +{"id":"84570","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"216857","label":"moving bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["bottle"]}, +{"id":"205243","label":"putting card","template":"Putting [something similar to other things that are already on the table]","placeholders":["card"]}, +{"id":"14384","label":"tipping candle with bubblegum over, so bubblegum falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["candle","bubblegum","bubblegum"]}, +{"id":"196369","label":"showing fork to the camera","template":"Showing [something] to the camera","placeholders":["fork"]}, +{"id":"95037","label":"pushing a set of keys so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a set of keys"]}, +{"id":"127956","label":"putting cassette tape next to mug","template":"Putting [something] next to [something]","placeholders":["cassette tape","mug"]}, +{"id":"32471","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"41159","label":"throwing a wooden piece in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a wooden piece"]}, +{"id":"69023","label":"spinning can so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["can"]}, +{"id":"78401","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"35074","label":"turning the camera left while filming world globe","template":"Turning the camera left while filming [something]","placeholders":["world globe"]}, +{"id":"199935","label":"covering bottle with tea towel","template":"Covering [something] with [something]","placeholders":["bottle","tea towel"]}, +{"id":"186888","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"172333","label":"lifting bottle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["bottle"]}, +{"id":"22118","label":"tearing a cloth into two pieces","template":"Tearing [something] into two pieces","placeholders":["a cloth"]}, +{"id":"4048","label":"putting 2 toy cars onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["2","toy cars","diary"]}, +{"id":"183231","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"116903","label":"pretending to pick vape up","template":"Pretending to pick [something] up","placeholders":["vape"]}, +{"id":"78911","label":"plugging power plug into electric socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power plug","electric socket"]}, +{"id":"140578","label":"lifting up one end of remote, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote"]}, +{"id":"203254","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"217276","label":"marble colliding with marble and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["marble","marble"]}, +{"id":"169844","label":"pretending to poke a stuffed tiger","template":"Pretending to poke [something]","placeholders":["a stuffed tiger"]}, +{"id":"143703","label":"folding a note","template":"Folding [something]","placeholders":["a note"]}, +{"id":"208629","label":"uncovering orange","template":"Uncovering [something]","placeholders":["orange"]}, +{"id":"122032","label":"pulling box onto table","template":"Pulling [something] onto [something]","placeholders":["box","table"]}, +{"id":"12675","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"194840","label":"covering foldable knife with punching machine","template":"Covering [something] with [something]","placeholders":["foldable knife","punching machine"]}, +{"id":"567","label":"dropping a comb in front of a toothbrush","template":"Dropping [something] in front of [something]","placeholders":["a comb","a toothbrush"]}, +{"id":"54471","label":"holding keyd","template":"Holding [something]","placeholders":["keyd"]}, +{"id":"21688","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"14830","label":"pushing wheel so it spins","template":"Pushing [something] so it spins","placeholders":["wheel"]}, +{"id":"217630","label":"pretending to take kays out of bag","template":"Pretending to take [something] out of [something]","placeholders":["kays","bag"]}, +{"id":"166776","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"119800","label":"covering ballpen with towel","template":"Covering [something] with [something]","placeholders":["ballpen","towel"]}, +{"id":"184446","label":"pretending or trying and failing to twist a phone","template":"Pretending or trying and failing to twist [something]","placeholders":["a phone"]}, +{"id":"207613","label":"pretending to poke a bottle","template":"Pretending to poke [something]","placeholders":["a bottle"]}, +{"id":"158568","label":"showing cell phone behind wireless phone","template":"Showing [something] behind [something]","placeholders":["cell phone","wireless phone"]}, +{"id":"186406","label":"covering a container with a blanket","template":"Covering [something] with [something]","placeholders":["a container","a blanket"]}, +{"id":"182911","label":"uncovering decoration box","template":"Uncovering [something]","placeholders":["decoration box"]}, +{"id":"36808","label":"lifting book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["book"]}, +{"id":"49824","label":"opening pot","template":"Opening [something]","placeholders":["pot"]}, +{"id":"4946","label":"putting tissues on a surface","template":"Putting [something] on a surface","placeholders":["tissues"]}, +{"id":"190525","label":"trying but failing to attach clip magnet to door handle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["clip magnet","door handle"]}, +{"id":"201373","label":"closing yellow clay container","template":"Closing [something]","placeholders":["yellow clay container"]}, +{"id":"121443","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"175473","label":"lifting a surface with a watch on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a watch"]}, +{"id":"58820","label":"dropping a bag into the drawer","template":"Dropping [something] into [something]","placeholders":["a bag","the drawer"]}, +{"id":"156977","label":"touching (without moving) title of book","template":"Touching (without moving) [part] of [something]","placeholders":["title","book"]}, +{"id":"93294","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"211984","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"136767","label":"moving aroma diffuser and trophie closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["aroma diffuser","trophie"]}, +{"id":"142225","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"126281","label":"holding a box in front of a glass","template":"Holding [something] in front of [something]","placeholders":["a box","a glass"]}, +{"id":"82359","label":"closing trash can","template":"Closing [something]","placeholders":["trash can"]}, +{"id":"196119","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"56653","label":"moving pen closer to red spoon","template":"Moving [something] closer to [something]","placeholders":["pen","red spoon"]}, +{"id":"169837","label":"folding wrag","template":"Folding [something]","placeholders":["wrag"]}, +{"id":"57822","label":"pink golf ball falling like a rock","template":"[Something] falling like a rock","placeholders":["pink golf ball"]}, +{"id":"124242","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"191109","label":"picking plate up","template":"Picking [something] up","placeholders":["plate"]}, +{"id":"142177","label":"showing food pot behind sauce","template":"Showing [something] behind [something]","placeholders":["food pot","sauce"]}, +{"id":"5950","label":"lifting paper up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["paper"]}, +{"id":"72272","label":"holding shaker in front of cup","template":"Holding [something] in front of [something]","placeholders":["shaker","cup"]}, +{"id":"22370","label":"dropping ruler onto mobile phone","template":"Dropping [something] onto [something]","placeholders":["ruler","mobile phone"]}, +{"id":"107256","label":"tilting a cell phone with a toy on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cell phone","a toy"]}, +{"id":"117370","label":"lifting a surface with glass bottle on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["glass bottle"]}, +{"id":"57930","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"182133","label":"unfolding reciept","template":"Unfolding [something]","placeholders":["reciept"]}, +{"id":"31974","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"178064","label":"pretending to open a soda can without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a soda can"]}, +{"id":"129977","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"80172","label":"pretending to open a brown covered note book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a brown covered note book"]}, +{"id":"164624","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"65413","label":"pushing plushie from right to left","template":"Pushing [something] from right to left","placeholders":["plushie"]}, +{"id":"159929","label":"pretending to put coin onto paper","template":"Pretending to put [something] onto [something]","placeholders":["coin","paper"]}, +{"id":"83847","label":"throwing battery","template":"Throwing [something]","placeholders":["battery"]}, +{"id":"11273","label":"pulling two ends of tray but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["tray"]}, +{"id":"114766","label":"rolling tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tape"]}, +{"id":"124947","label":"covering a computer mouse with a paper","template":"Covering [something] with [something]","placeholders":["a computer mouse","a paper"]}, +{"id":"80884","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"133449","label":"turning pillow upside down","template":"Turning [something] upside down","placeholders":["pillow"]}, +{"id":"39635","label":"tipping soda pop can over","template":"Tipping [something] over","placeholders":["soda pop can"]}, +{"id":"115541","label":"dropping rubix cube into orange bowl","template":"Dropping [something] into [something]","placeholders":["rubix cube","orange bowl"]}, +{"id":"92691","label":"plugging a plug into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a socket"]}, +{"id":"22562","label":"moving ceramic ball and mug so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ceramic ball","mug"]}, +{"id":"5219","label":"failing to put shoe into tissue box because shoe does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["shoe","tissue box","shoe"]}, +{"id":"200357","label":"dropping hair clip next to green bowl","template":"Dropping [something] next to [something]","placeholders":["hair clip","green bowl"]}, +{"id":"144198","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"35707","label":"putting chalk on a surface","template":"Putting [something] on a surface","placeholders":["chalk"]}, +{"id":"97493","label":"removing a can, revealing a pair of tweezers behind","template":"Removing [something], revealing [something] behind","placeholders":["a can","a pair of tweezers"]}, +{"id":"200484","label":"pushing magnet from right to left","template":"Pushing [something] from right to left","placeholders":["magnet"]}, +{"id":"119019","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64132","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"4257","label":"letting something roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["something"]}, +{"id":"91683","label":"moving a stapler up","template":"Moving [something] up","placeholders":["a stapler"]}, +{"id":"202680","label":"opening plastic container","template":"Opening [something]","placeholders":["plastic container"]}, +{"id":"78627","label":"rolling jbl speakers on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["jbl speakers"]}, +{"id":"46296","label":"moving wristwatch up","template":"Moving [something] up","placeholders":["wristwatch"]}, +{"id":"105744","label":"letting grape roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["grape"]}, +{"id":"26928","label":"pushing mobile with mobile","template":"Pushing [something] with [something]","placeholders":["mobile","mobile"]}, +{"id":"43192","label":"lifting paper with cards on it","template":"Lifting [something] with [something] on it","placeholders":["paper","cards"]}, +{"id":"209558","label":"moving a pen and a pencil so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a pencil"]}, +{"id":"216243","label":"spilling water onto surface","template":"Spilling [something] onto [something]","placeholders":["water","surface"]}, +{"id":"20760","label":"pretending to take hair clip from table","template":"Pretending to take [something] from [somewhere]","placeholders":["hair clip","table"]}, +{"id":"113265","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"38096","label":"picking indian almond up","template":"Picking [something] up","placeholders":["indian almond"]}, +{"id":"93249","label":"moving leaf up","template":"Moving [something] up","placeholders":["leaf"]}, +{"id":"160988","label":"moving bike closer to chair","template":"Moving [something] closer to [something]","placeholders":["bike","chair"]}, +{"id":"153090","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"102063","label":"holding dog toy behind fan","template":"Holding [something] behind [something]","placeholders":["dog toy","fan"]}, +{"id":"76998","label":"lifting up one end of folder, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["folder"]}, +{"id":"5685","label":"pretending to open a beer bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a beer bottle"]}, +{"id":"89697","label":"trying but failing to attach a paper to a paper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","a paper"]}, +{"id":"208350","label":"plugging usb cord into usb hub","template":"Plugging [something] into [something]","placeholders":["usb cord","usb hub"]}, +{"id":"83063","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"52198","label":"putting bottle onto cup","template":"Putting [something] onto [something]","placeholders":["bottle","cup"]}, +{"id":"107007","label":"putting hair clip that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["hair clip"]}, +{"id":"189788","label":"moving tape measure down","template":"Moving [something] down","placeholders":["tape measure"]}, +{"id":"214029","label":"holding a spec in front of the switch board","template":"Holding [something] in front of [something]","placeholders":["a spec","the switch board"]}, +{"id":"30671","label":"holding small stone over paper","template":"Holding [something] over [something]","placeholders":["small stone","paper"]}, +{"id":"200578","label":"pouring coffee into mug","template":"Pouring [something] into [something]","placeholders":["coffee","mug"]}, +{"id":"55121","label":"pushing a coin so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a coin"]}, +{"id":"170289","label":"throwing bottle in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bottle"]}, +{"id":"17838","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"139308","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"208063","label":"tipping a book over","template":"Tipping [something] over","placeholders":["a book"]}, +{"id":"137678","label":"throwing a keyring onto a surface","template":"Throwing [something] onto a surface","placeholders":["a keyring"]}, +{"id":"121617","label":"pushing a hair curler so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a hair curler"]}, +{"id":"48526","label":"showing a photo of a table to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a table"]}, +{"id":"5804","label":"moving a card away from a box","template":"Moving [something] away from [something]","placeholders":["a card","a box"]}, +{"id":"81430","label":"stacking 3 book/dvd case/booklet","template":"Stacking [number of] [something]","placeholders":["3","book/dvd case/booklet"]}, +{"id":"75240","label":"moving a water bottle closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a water bottle","a mug"]}, +{"id":"189373","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"53528","label":"pulling two ends of a pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a pen"]}, +{"id":"220045","label":"holding book in front of books","template":"Holding [something] in front of [something]","placeholders":["book","books"]}, +{"id":"54973","label":"putting 2 hair clips onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair clips","yellow note"]}, +{"id":"71770","label":"covering tape with shirt","template":"Covering [something] with [something]","placeholders":["tape","shirt"]}, +{"id":"65609","label":"taking pen from stool","template":"Taking [something] from [somewhere]","placeholders":["pen","stool"]}, +{"id":"108186","label":"putting bottle and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","pen"]}, +{"id":"203875","label":"squeezing squeezing power bank","template":"Squeezing [something]","placeholders":["squeezing power bank"]}, +{"id":"57691","label":"holding an eraser","template":"Holding [something]","placeholders":["an eraser"]}, +{"id":"211943","label":"trying to pour tea into a cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["tea","a cup"]}, +{"id":"198919","label":"tilting purse with keychain on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["purse","keychain"]}, +{"id":"140875","label":"bending wooden reeper until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden reeper"]}, +{"id":"211255","label":"holding auto toy","template":"Holding [something]","placeholders":["auto toy"]}, +{"id":"81113","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"67285","label":"moving sheild away from drum","template":"Moving [something] away from [something]","placeholders":["sheild","drum"]}, +{"id":"189110","label":"throwing towel in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["towel"]}, +{"id":"168685","label":"showing pen to the camera","template":"Showing [something] to the camera","placeholders":["pen"]}, +{"id":"152226","label":"throwing a junggling ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a junggling ball"]}, +{"id":"187888","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43517","label":"pretending to pick microsd card up","template":"Pretending to pick [something] up","placeholders":["microsd card"]}, +{"id":"47014","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"39894","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"142895","label":"moving wood down","template":"Moving [something] down","placeholders":["wood"]}, +{"id":"182882","label":"moving an eraser and a bottlecap closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["an eraser","a bottlecap"]}, +{"id":"111961","label":"closing the door","template":"Closing [something]","placeholders":["the door"]}, +{"id":"147000","label":"letting empty bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["empty bottle"]}, +{"id":"50040","label":"lifting orange bowl up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["orange bowl"]}, +{"id":"143551","label":"pretending or failing to wipe chip off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["chip","chair"]}, +{"id":"200050","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"83237","label":"pretending to squeeze socks","template":"Pretending to squeeze [something]","placeholders":["socks"]}, +{"id":"23522","label":"putting a q-tip upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a q-tip"]}, +{"id":"101614","label":"pouring milk into glass","template":"Pouring [something] into [something]","placeholders":["milk","glass"]}, +{"id":"103948","label":"poking red bottlecap so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["red bottlecap"]}, +{"id":"187563","label":"package colliding with package and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["package","package"]}, +{"id":"94045","label":"throwing box against book","template":"Throwing [something] against [something]","placeholders":["box","book"]}, +{"id":"88138","label":"showing that case is empty","template":"Showing that [something] is empty","placeholders":["case"]}, +{"id":"193659","label":"taking a card out of the bag","template":"Taking [something] out of [something]","placeholders":["a card","the bag"]}, +{"id":"181581","label":"showing a photo of a car to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a car"]}, +{"id":"69608","label":"taking currency from table","template":"Taking [something] from [somewhere]","placeholders":["currency","table"]}, +{"id":"164943","label":"trying to bend an ink pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["an ink pen"]}, +{"id":"49773","label":"squeezing a cottonball","template":"Squeezing [something]","placeholders":["a cottonball"]}, +{"id":"75340","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"128828","label":"folding documents","template":"Folding [something]","placeholders":["documents"]}, +{"id":"92550","label":"pretending to turn the bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["the bottle"]}, +{"id":"54941","label":"moving potato and potato away from each other","template":"Moving [something] and [something] away from each other","placeholders":["potato","potato"]}, +{"id":"84721","label":"pretending to close vitamins without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["vitamins"]}, +{"id":"91684","label":"turning the camera upwards while filming pipes","template":"Turning the camera upwards while filming [something]","placeholders":["pipes"]}, +{"id":"185482","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"90490","label":"plugging cabel into switch but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cabel","switch"]}, +{"id":"96671","label":"picking tea tumbler up","template":"Picking [something] up","placeholders":["tea tumbler"]}, +{"id":"17181","label":"showing roundabout children's play equipment to the camera","template":"Showing [something] to the camera","placeholders":["roundabout children's play equipment"]}, +{"id":"91637","label":"stuffing a rag into canister","template":"Stuffing [something] into [something]","placeholders":["a rag","canister"]}, +{"id":"35234","label":"tipping a pill bottle over","template":"Tipping [something] over","placeholders":["a pill bottle"]}, +{"id":"27892","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"54739","label":"pulling two ends of pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["pen"]}, +{"id":"102171","label":"spreading books onto chair","template":"Spreading [something] onto [something]","placeholders":["books","chair"]}, +{"id":"120079","label":"scooping sugar up with a spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","a spoon"]}, +{"id":"137576","label":"pretending to sprinkle air onto keyboard","template":"Pretending to sprinkle air onto [something]","placeholders":["keyboard"]}, +{"id":"146224","label":"pretending to turn a jar upside down","template":"Pretending to turn [something] upside down","placeholders":["a jar"]}, +{"id":"112090","label":"putting paper underneath books","template":"Putting [something] underneath [something]","placeholders":["paper","books"]}, +{"id":"108337","label":"showing a shoe behind a shoe","template":"Showing [something] behind [something]","placeholders":["a shoe","a shoe"]}, +{"id":"64531","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"59546","label":"pushing small freshmints from right to left","template":"Pushing [something] from right to left","placeholders":["small freshmints"]}, +{"id":"129519","label":"putting a cylindrical box in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a cylindrical box","a cup"]}, +{"id":"156515","label":"piling cushions up","template":"Piling [something] up","placeholders":["cushions"]}, +{"id":"172967","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"90357","label":"pulling mobile phone from right to left","template":"Pulling [something] from right to left","placeholders":["mobile phone"]}, +{"id":"3866","label":"taking marker out of mug","template":"Taking [something] out of [something]","placeholders":["marker","mug"]}, +{"id":"179739","label":"dropping magazine onto floor","template":"Dropping [something] onto [something]","placeholders":["magazine","floor"]}, +{"id":"117781","label":"putting a phone next to a key ring","template":"Putting [something] next to [something]","placeholders":["a phone","a key ring"]}, +{"id":"196568","label":"bending matchstick until it breaks","template":"Bending [something] until it breaks","placeholders":["matchstick"]}, +{"id":"114772","label":"putting phone on a surface","template":"Putting [something] on a surface","placeholders":["phone"]}, +{"id":"90916","label":"moving pen away from glass","template":"Moving [something] away from [something]","placeholders":["pen","glass"]}, +{"id":"87616","label":"moving wooden puppet down","template":"Moving [something] down","placeholders":["wooden puppet"]}, +{"id":"98227","label":"putting leather bag underneath table","template":"Putting [something] underneath [something]","placeholders":["leather bag","table"]}, +{"id":"79154","label":"moving something and something closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["something","something"]}, +{"id":"69499","label":"lifting spanner up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spanner"]}, +{"id":"186044","label":"putting a bulb underneath scooter","template":"Putting [something] underneath [something]","placeholders":["a bulb","scooter"]}, +{"id":"177523","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"41553","label":"pouring tea from glass onto a cup","template":"Pouring [something] onto [something]","placeholders":["tea from glass","a cup"]}, +{"id":"73306","label":"pulling packet out of jar","template":"Pulling [something] out of [something]","placeholders":["packet","jar"]}, +{"id":"89190","label":"covering a stuffed animal with a pillow","template":"Covering [something] with [something]","placeholders":["a stuffed animal","a pillow"]}, +{"id":"203848","label":"covering a book with a blanket","template":"Covering [something] with [something]","placeholders":["a book","a blanket"]}, +{"id":"93475","label":"covering eraser with cloth","template":"Covering [something] with [something]","placeholders":["eraser","cloth"]}, +{"id":"62508","label":"dropping watch onto carpet","template":"Dropping [something] onto [something]","placeholders":["watch","carpet"]}, +{"id":"80026","label":"sprinkling baby powder onto desk","template":"Sprinkling [something] onto [something]","placeholders":["baby powder","desk"]}, +{"id":"128538","label":"taking straightner from table","template":"Taking [something] from [somewhere]","placeholders":["straightner","table"]}, +{"id":"188948","label":"pretending to turn scotch tape upside down","template":"Pretending to turn [something] upside down","placeholders":["scotch tape"]}, +{"id":"98593","label":"putting notebook next to flower","template":"Putting [something] next to [something]","placeholders":["notebook","flower"]}, +{"id":"143946","label":"pretending to close container without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["container"]}, +{"id":"84894","label":"failing to put grains packet into plastic container because plastic container does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["grains packet","plastic container","plastic container"]}, +{"id":"129654","label":"pulling a box from left to right","template":"Pulling [something] from left to right","placeholders":["a box"]}, +{"id":"58289","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"43323","label":"turning the camera left while filming boat","template":"Turning the camera left while filming [something]","placeholders":["boat"]}, +{"id":"31877","label":"pushing pencil box from left to right","template":"Pushing [something] from left to right","placeholders":["pencil box"]}, +{"id":"19983","label":"stuffing a thermometer into a drawer","template":"Stuffing [something] into [something]","placeholders":["a thermometer","a drawer"]}, +{"id":"219481","label":"putting a trimmer on a surface","template":"Putting [something] on a surface","placeholders":["a trimmer"]}, +{"id":"38898","label":"holding coffee mug in front of plant","template":"Holding [something] in front of [something]","placeholders":["coffee mug","plant"]}, +{"id":"137747","label":"putting box, flower and key on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","flower","key"]}, +{"id":"128243","label":"wiping milk off of wood table","template":"Wiping [something] off of [something]","placeholders":["milk","wood table"]}, +{"id":"76129","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"34028","label":"moving spoon and stapler away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","stapler"]}, +{"id":"177181","label":"showing figure behind wallet","template":"Showing [something] behind [something]","placeholders":["figure","wallet"]}, +{"id":"174854","label":"opening the cover of a paperback book","template":"Opening [something]","placeholders":["the cover of a paperback book"]}, +{"id":"73297","label":"poking a nailpolish bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a nailpolish bottle"]}, +{"id":"109980","label":"pretending to poke spoon","template":"Pretending to poke [something]","placeholders":["spoon"]}, +{"id":"123926","label":"moving a glass jar up","template":"Moving [something] up","placeholders":["a glass jar"]}, +{"id":"130986","label":"putting hollow pipe on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["hollow pipe"]}, +{"id":"19852","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"125531","label":"pretending to take a ball from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a ball","the table"]}, +{"id":"52630","label":"dropping a ball into a bucket","template":"Dropping [something] into [something]","placeholders":["a ball","a bucket"]}, +{"id":"207782","label":"putting toy on a surface","template":"Putting [something] on a surface","placeholders":["toy"]}, +{"id":"199509","label":"opening candle","template":"Opening [something]","placeholders":["candle"]}, +{"id":"167392","label":"stuffing a sweatshirt into a bag","template":"Stuffing [something] into [something]","placeholders":["a sweatshirt","a bag"]}, +{"id":"51768","label":"moving a coaster and remote control closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a coaster","remote control"]}, +{"id":"8956","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"184905","label":"moving something towards the camera","template":"Moving [something] towards the camera","placeholders":["something"]}, +{"id":"13409","label":"showing that milk is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["milk","a cup"]}, +{"id":"157090","label":"putting keys behind bag","template":"Putting [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"200835","label":"pretending to put cloth on a surface","template":"Pretending to put [something] on a surface","placeholders":["cloth"]}, +{"id":"74973","label":"tipping cigarette pack with cigarette over, so cigarette falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cigarette pack","cigarette","cigarette"]}, +{"id":"19175","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"79595","label":"pulling two ends of a scarf so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a scarf"]}, +{"id":"11418","label":"lifting sand bag up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["sand bag"]}, +{"id":"135641","label":"plugging cellphone cord into outlet strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cellphone cord","outlet strip"]}, +{"id":"119177","label":"dropping coins into a jar","template":"Dropping [something] into [something]","placeholders":["coins","a jar"]}, +{"id":"204293","label":"flashlight falling like a rock","template":"[Something] falling like a rock","placeholders":["flashlight"]}, +{"id":"215591","label":"putting crayon into mug","template":"Putting [something] into [something]","placeholders":["crayon","mug"]}, +{"id":"65550","label":"turning glasses upside down","template":"Turning [something] upside down","placeholders":["glasses"]}, +{"id":"87257","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"128892","label":"closing mobile phone cover","template":"Closing [something]","placeholders":["mobile phone cover"]}, +{"id":"15179","label":"putting books into bag","template":"Putting [something] into [something]","placeholders":["books","bag"]}, +{"id":"25922","label":"putting a bottle behind bowl","template":"Putting [something] behind [something]","placeholders":["a bottle","bowl"]}, +{"id":"13441","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"18067","label":"holding candlestick in front of globe","template":"Holding [something] in front of [something]","placeholders":["candlestick","globe"]}, +{"id":"61424","label":"touching (without moving) the container of a candle","template":"Touching (without moving) [part] of [something]","placeholders":["the container","a candle"]}, +{"id":"88617","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"196340","label":"putting coin next to pencil","template":"Putting [something] next to [something]","placeholders":["coin","pencil"]}, +{"id":"209619","label":"turning the camera upwards while filming picture","template":"Turning the camera upwards while filming [something]","placeholders":["picture"]}, +{"id":"76217","label":"spreading peanut butter onto toast","template":"Spreading [something] onto [something]","placeholders":["peanut butter","toast"]}, +{"id":"37136","label":"pushing toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toy"]}, +{"id":"23480","label":"covering a candle with a plastic lid","template":"Covering [something] with [something]","placeholders":["a candle","a plastic lid"]}, +{"id":"209363","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"19620","label":"tearing a post-it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["a post-it note"]}, +{"id":"50612","label":"showing that the thermos is empty","template":"Showing that [something] is empty","placeholders":["the thermos"]}, +{"id":"209686","label":"moving teddy bear and stuffed toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["teddy bear","stuffed toy"]}, +{"id":"156465","label":"pretending to pick eraser up","template":"Pretending to pick [something] up","placeholders":["eraser"]}, +{"id":"211470","label":"holding flower next to glasses","template":"Holding [something] next to [something]","placeholders":["flower","glasses"]}, +{"id":"218248","label":"pulling water bottle from behind of television","template":"Pulling [something] from behind of [something]","placeholders":["water bottle","television"]}, +{"id":"158681","label":"pushing empty soda bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["empty soda bottle"]}, +{"id":"62503","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"106326","label":"spilling coffee onto table","template":"Spilling [something] onto [something]","placeholders":["coffee","table"]}, +{"id":"220052","label":"moving a cup and a fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a cup","a fork"]}, +{"id":"65086","label":"taking discount cards","template":"Taking [one of many similar things on the table]","placeholders":["discount cards"]}, +{"id":"65220","label":"opening kitchen cabinet","template":"Opening [something]","placeholders":["kitchen cabinet"]}, +{"id":"99106","label":"tearing pomegranate peel just a little bit","template":"Tearing [something] just a little bit","placeholders":["pomegranate peel"]}, +{"id":"121709","label":"pushing a bottle with a bottle","template":"Pushing [something] with [something]","placeholders":["a bottle","a bottle"]}, +{"id":"38160","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"15210","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"122604","label":"putting toy idol next to hair band","template":"Putting [something] next to [something]","placeholders":["toy idol","hair band"]}, +{"id":"62151","label":"throwing wallet in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["wallet"]}, +{"id":"163933","label":"letting a scotch roll roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a scotch roll"]}, +{"id":"15724","label":"uncovering slippers","template":"Uncovering [something]","placeholders":["slippers"]}, +{"id":"209553","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"67525","label":"pushing orange notebook from left to right","template":"Pushing [something] from left to right","placeholders":["orange notebook"]}, +{"id":"214485","label":"moving shampoo bottle and tumbler closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["shampoo bottle","tumbler"]}, +{"id":"55951","label":"lifting cutting board with lid on it","template":"Lifting [something] with [something] on it","placeholders":["cutting board","lid"]}, +{"id":"114957","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"55452","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"212195","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"183420","label":"showing gear wheel next to green toy car","template":"Showing [something] next to [something]","placeholders":["gear wheel","green toy car"]}, +{"id":"46965","label":"dropping a card next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a card","a shoe brush"]}, +{"id":"154894","label":"holding pill over bottle","template":"Holding [something] over [something]","placeholders":["pill","bottle"]}, +{"id":"69508","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"18567","label":"pretending to close trunk box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["trunk box"]}, +{"id":"123383","label":"pretending to be tearing bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bag"]}, +{"id":"73388","label":"dropping a hairclip next to a keybound","template":"Dropping [something] next to [something]","placeholders":["a hairclip","a keybound"]}, +{"id":"150709","label":"putting marker upright on the table","template":"Putting [something] upright on the table","placeholders":["marker"]}, +{"id":"35063","label":"piling blankets up","template":"Piling [something] up","placeholders":["blankets"]}, +{"id":"173258","label":"moving cloth and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cloth","cup"]}, +{"id":"216982","label":"holding a bottle behind a laptop","template":"Holding [something] behind [something]","placeholders":["a bottle","a laptop"]}, +{"id":"172225","label":"plugging usb cable into powerbank","template":"Plugging [something] into [something]","placeholders":["usb cable","powerbank"]}, +{"id":"65822","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"6422","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"121085","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"43262","label":"rolling an apple on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an apple"]}, +{"id":"188196","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"179063","label":"uncovering cans","template":"Uncovering [something]","placeholders":["cans"]}, +{"id":"202040","label":"spilling water onto a chair","template":"Spilling [something] onto [something]","placeholders":["water","a chair"]}, +{"id":"191667","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"22216","label":"lifting something up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["something"]}, +{"id":"136018","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"16667","label":"lifting glue stick up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["glue stick"]}, +{"id":"55635","label":"pouring water onto plate","template":"Pouring [something] onto [something]","placeholders":["water","plate"]}, +{"id":"18160","label":"stacking 3 sticky notes","template":"Stacking [number of] [something]","placeholders":["3","sticky notes"]}, +{"id":"159330","label":"wiping salt off of a table","template":"Wiping [something] off of [something]","placeholders":["salt","a table"]}, +{"id":"25499","label":"lifting a glasses case up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a glasses case"]}, +{"id":"205981","label":"covering red spoon with cookie box lid","template":"Covering [something] with [something]","placeholders":["red spoon","cookie box lid"]}, +{"id":"141930","label":"moving mic and speaker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mic","speaker"]}, +{"id":"117960","label":"taking iron box from table","template":"Taking [something] from [somewhere]","placeholders":["iron box","table"]}, +{"id":"74628","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"128034","label":"moving notebook towards the camera","template":"Moving [something] towards the camera","placeholders":["notebook"]}, +{"id":"207810","label":"touching (without moving) handle of door","template":"Touching (without moving) [part] of [something]","placeholders":["handle","door"]}, +{"id":"191435","label":"uncovering lighter","template":"Uncovering [something]","placeholders":["lighter"]}, +{"id":"131120","label":"putting a glass next to other already on table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a glass next to other already on table"]}, +{"id":"55552","label":"putting a bottle into a vase","template":"Putting [something] into [something]","placeholders":["a bottle","a vase"]}, +{"id":"210371","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"134767","label":"moving pen and ruler closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","ruler"]}, +{"id":"101181","label":"lifting a bottle up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a bottle"]}, +{"id":"84729","label":"moving a body pillow and a smaller pillow away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a body pillow","a smaller pillow"]}, +{"id":"108841","label":"lifting a wooden stick up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a wooden stick"]}, +{"id":"177590","label":"opening a can","template":"Opening [something]","placeholders":["a can"]}, +{"id":"98251","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"163654","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"169292","label":"taking leaf","template":"Taking [one of many similar things on the table]","placeholders":["leaf"]}, +{"id":"128494","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209485","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"74815","label":"putting camera underneath table","template":"Putting [something] underneath [something]","placeholders":["camera","table"]}, +{"id":"91484","label":"dropping cigarette lighter in front of battery","template":"Dropping [something] in front of [something]","placeholders":["cigarette lighter","battery"]}, +{"id":"67171","label":"lifting a surface with bowl on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["bowl"]}, +{"id":"200433","label":"moving badge down","template":"Moving [something] down","placeholders":["badge"]}, +{"id":"43021","label":"rolling glass on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["glass"]}, +{"id":"186285","label":"putting cutting board upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["cutting board"]}, +{"id":"71966","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"68920","label":"letting toy roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toy"]}, +{"id":"44816","label":"putting a can behind a can","template":"Putting [something] behind [something]","placeholders":["a can","a can"]}, +{"id":"125234","label":"plugging phone changer into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone changer","outlet"]}, +{"id":"72541","label":"turning the camera left while filming mobile phone","template":"Turning the camera left while filming [something]","placeholders":["mobile phone"]}, +{"id":"195830","label":"moving phone and notebook closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["phone","notebook"]}, +{"id":"113707","label":"covering goggles with cloth","template":"Covering [something] with [something]","placeholders":["goggles","cloth"]}, +{"id":"218616","label":"lifting coin with coin on it","template":"Lifting [something] with [something] on it","placeholders":["coin","coin"]}, +{"id":"141133","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"10101","label":"plugging a charging cord into a bluetooth","template":"Plugging [something] into [something]","placeholders":["a charging cord","a bluetooth"]}, +{"id":"217049","label":"lime colliding with lime and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["lime","lime"]}, +{"id":"26650","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"169945","label":"putting button","template":"Putting [something similar to other things that are already on the table]","placeholders":["button"]}, +{"id":"47164","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"130407","label":"picking comb up","template":"Picking [something] up","placeholders":["comb"]}, +{"id":"212401","label":"holding a magazine next to a dog water bowl","template":"Holding [something] next to [something]","placeholders":["a magazine","a dog water bowl"]}, +{"id":"47739","label":"attaching usb to laptop","template":"Attaching [something] to [something]","placeholders":["usb","laptop"]}, +{"id":"65433","label":"squeezing a can","template":"Squeezing [something]","placeholders":["a can"]}, +{"id":"134701","label":"putting ink bottle and clip box on the table","template":"Putting [something] and [something] on the table","placeholders":["ink bottle","clip box"]}, +{"id":"201473","label":"stuffing paper into block","template":"Stuffing [something] into [something]","placeholders":["paper","block"]}, +{"id":"46193","label":"moving bottle towards the camera","template":"Moving [something] towards the camera","placeholders":["bottle"]}, +{"id":"104061","label":"plugging mouse into laptop","template":"Plugging [something] into [something]","placeholders":["mouse","laptop"]}, +{"id":"13680","label":"putting notebook and pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["notebook and pen"]}, +{"id":"203065","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"210917","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"209684","label":"holding white toy car next to green toy car","template":"Holding [something] next to [something]","placeholders":["white toy car","green toy car"]}, +{"id":"136695","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"196329","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"157167","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"27048","label":"pouring water into a bowl","template":"Pouring [something] into [something]","placeholders":["water","a bowl"]}, +{"id":"202463","label":"pushing lipbalm off of table","template":"Pushing [something] off of [something]","placeholders":["lipbalm","table"]}, +{"id":"208453","label":"pushing case so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["case"]}, +{"id":"188913","label":"putting toy wheel in front of rubix cube","template":"Putting [something] in front of [something]","placeholders":["toy wheel","rubix cube"]}, +{"id":"161711","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"126217","label":"moving mug and glass so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["mug","glass"]}, +{"id":"184814","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"89781","label":"holding a mug over a hat","template":"Holding [something] over [something]","placeholders":["a mug","a hat"]}, +{"id":"208684","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"82785","label":"pushing a tissue box off of a table","template":"Pushing [something] off of [something]","placeholders":["a tissue box","a table"]}, +{"id":"68032","label":"opening soda can","template":"Opening [something]","placeholders":["soda can"]}, +{"id":"123269","label":"pretending to sprinkle air onto cat","template":"Pretending to sprinkle air onto [something]","placeholders":["cat"]}, +{"id":"188627","label":"pretending to pour sauce out of frying-pan, but frying-pan is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["sauce","frying-pan","frying-pan"]}, +{"id":"52171","label":"holding usb flash drive","template":"Holding [something]","placeholders":["usb flash drive"]}, +{"id":"139515","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"144694","label":"plugging a cable into a phone","template":"Plugging [something] into [something]","placeholders":["a cable","a phone"]}, +{"id":"156446","label":"attaching mega block to mega block","template":"Attaching [something] to [something]","placeholders":["mega block","mega block"]}, +{"id":"134172","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"134501","label":"poking a stack of shoes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["shoes"]}, +{"id":"192841","label":"tipping trash can with trash over, so trash falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["trash can","trash","trash"]}, +{"id":"26207","label":"pushing palstic glass so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["palstic glass"]}, +{"id":"61328","label":"showing that pink cup is empty","template":"Showing that [something] is empty","placeholders":["pink cup"]}, +{"id":"205853","label":"pushing mouse with mug","template":"Pushing [something] with [something]","placeholders":["mouse","mug"]}, +{"id":"144792","label":"holding ipad next to plastic cup","template":"Holding [something] next to [something]","placeholders":["ipad","plastic cup"]}, +{"id":"12793","label":"moving torch and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["torch","bottle"]}, +{"id":"169931","label":"poking a stack of blocks without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["blocks"]}, +{"id":"36593","label":"moving ramekin closer to ramekin","template":"Moving [something] closer to [something]","placeholders":["ramekin","ramekin"]}, +{"id":"189126","label":"tipping candle over","template":"Tipping [something] over","placeholders":["candle"]}, +{"id":"211203","label":"tilting wallet with comb on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["wallet","comb"]}, +{"id":"123552","label":"poking a hole into modelling clay","template":"Poking a hole into [something soft]","placeholders":["modelling clay"]}, +{"id":"134661","label":"pretending to put orange next to glasses","template":"Pretending to put [something] next to [something]","placeholders":["orange","glasses"]}, +{"id":"42532","label":"trying but failing to attach rubber band to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["rubber band","fridge"]}, +{"id":"211871","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"31012","label":"pushing pillow off of bed","template":"Pushing [something] off of [something]","placeholders":["pillow","bed"]}, +{"id":"22782","label":"putting a card upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a card"]}, +{"id":"30489","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"146394","label":"showing bag behind scissors","template":"Showing [something] behind [something]","placeholders":["bag","scissors"]}, +{"id":"168783","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"193202","label":"letting a scotch roll roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a scotch roll"]}, +{"id":"117637","label":"moving a glass across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a glass"]}, +{"id":"28285","label":"uncovering teacup","template":"Uncovering [something]","placeholders":["teacup"]}, +{"id":"158531","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"47613","label":"showing that a soda can is empty","template":"Showing that [something] is empty","placeholders":["a soda can"]}, +{"id":"80475","label":"wiping marker off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"81950","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"120157","label":"poking salt shaker so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["salt shaker"]}, +{"id":"82226","label":"pretending to be tearing drumstick","template":"Pretending to be tearing [something that is not tearable]","placeholders":["drumstick"]}, +{"id":"28041","label":"turning the camera left while filming lamp","template":"Turning the camera left while filming [something]","placeholders":["lamp"]}, +{"id":"217373","label":"closing red dairy","template":"Closing [something]","placeholders":["red dairy"]}, +{"id":"69584","label":"dropping stapler next to rubix cube","template":"Dropping [something] next to [something]","placeholders":["stapler","rubix cube"]}, +{"id":"26489","label":"covering smartphone with recipe book","template":"Covering [something] with [something]","placeholders":["smartphone","recipe book"]}, +{"id":"31679","label":"showing orange cup behind red colour clip box","template":"Showing [something] behind [something]","placeholders":["orange cup","red colour clip box"]}, +{"id":"72400","label":"trying to pour water into a bowl, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","a bowl"]}, +{"id":"152222","label":"lifting radio up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["radio"]}, +{"id":"137772","label":"pushing nail polish from left to right","template":"Pushing [something] from left to right","placeholders":["nail polish"]}, +{"id":"131054","label":"twisting pencil case","template":"Twisting [something]","placeholders":["pencil case"]}, +{"id":"130173","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"119812","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"168638","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"140274","label":"closing a tap","template":"Closing [something]","placeholders":["a tap"]}, +{"id":"41816","label":"showing car next to bike","template":"Showing [something] next to [something]","placeholders":["car","bike"]}, +{"id":"73957","label":"putting toothbrush on a surface","template":"Putting [something] on a surface","placeholders":["toothbrush"]}, +{"id":"66739","label":"plugging a plug into socket","template":"Plugging [something] into [something]","placeholders":["a plug","socket"]}, +{"id":"5630","label":"pretending to pick apple up","template":"Pretending to pick [something] up","placeholders":["apple"]}, +{"id":"99234","label":"pulling diaper from left to right","template":"Pulling [something] from left to right","placeholders":["diaper"]}, +{"id":"142212","label":"pushing black pencil sharpner with screw driver","template":"Pushing [something] with [something]","placeholders":["black pencil sharpner","screw driver"]}, +{"id":"133665","label":"pulling can from behind of sofa","template":"Pulling [something] from behind of [something]","placeholders":["can","sofa"]}, +{"id":"27009","label":"putting matchbox into mug","template":"Putting [something] into [something]","placeholders":["matchbox","mug"]}, +{"id":"114276","label":"showing jar behind deodorant","template":"Showing [something] behind [something]","placeholders":["jar","deodorant"]}, +{"id":"1481","label":"holding pen behind roll of tape","template":"Holding [something] behind [something]","placeholders":["pen","roll of tape"]}, +{"id":"105273","label":"moving keyboard up","template":"Moving [something] up","placeholders":["keyboard"]}, +{"id":"122910","label":"closing wooden box","template":"Closing [something]","placeholders":["wooden box"]}, +{"id":"100849","label":"trying to bend a hammer so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a hammer"]}, +{"id":"201889","label":"putting box in front of purse","template":"Putting [something] in front of [something]","placeholders":["box","purse"]}, +{"id":"132413","label":"putting paper underneath book","template":"Putting [something] underneath [something]","placeholders":["paper","book"]}, +{"id":"83984","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"69393","label":"taking a onion from a cover","template":"Taking [something] from [somewhere]","placeholders":["a onion","a cover"]}, +{"id":"308","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"93524","label":"pulling two ends of a toy but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a toy"]}, +{"id":"103563","label":"moving key down","template":"Moving [something] down","placeholders":["key"]}, +{"id":"888","label":"spreading honey onto plate","template":"Spreading [something] onto [something]","placeholders":["honey","plate"]}, +{"id":"104088","label":"spinning hair brush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["hair brush"]}, +{"id":"158964","label":"bending straw so that it deforms","template":"Bending [something] so that it deforms","placeholders":["straw"]}, +{"id":"103136","label":"turning body spray upside down","template":"Turning [something] upside down","placeholders":["body spray"]}, +{"id":"43350","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"60466","label":"showing spoon on top of mug","template":"Showing [something] on top of [something]","placeholders":["spoon","mug"]}, +{"id":"186632","label":"closing a cupboard","template":"Closing [something]","placeholders":["a cupboard"]}, +{"id":"131351","label":"squeezing foot cream","template":"Squeezing [something]","placeholders":["foot cream"]}, +{"id":"153174","label":"dropping a feeding bottle in front of camera","template":"Dropping [something] in front of [something]","placeholders":["a feeding bottle","camera"]}, +{"id":"83648","label":"showing acrobatic show to the camera","template":"Showing [something] to the camera","placeholders":["acrobatic show"]}, +{"id":"148014","label":"putting spring and stapler on the table","template":"Putting [something] and [something] on the table","placeholders":["spring","stapler"]}, +{"id":"135112","label":"poking sneaker so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["sneaker"]}, +{"id":"178554","label":"taking hairbrush","template":"Taking [one of many similar things on the table]","placeholders":["hairbrush"]}, +{"id":"180728","label":"putting scissors into drawer","template":"Putting [something] into [something]","placeholders":["scissors","drawer"]}, +{"id":"97039","label":"turning the camera downwards while filming pictures","template":"Turning the camera downwards while filming [something]","placeholders":["pictures"]}, +{"id":"215189","label":"rolling rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["rolling ball"]}, +{"id":"154372","label":"putting divide into box","template":"Putting [something] into [something]","placeholders":["divide","box"]}, +{"id":"196092","label":"closing wallet","template":"Closing [something]","placeholders":["wallet"]}, +{"id":"119858","label":"holding paper in front of cabinet","template":"Holding [something] in front of [something]","placeholders":["paper","cabinet"]}, +{"id":"179523","label":"poking tube so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tube"]}, +{"id":"195662","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"31045","label":"covering a red pencil with a piece of paper","template":"Covering [something] with [something]","placeholders":["a red pencil","a piece of paper"]}, +{"id":"119257","label":"taking the lipstick out of the purse","template":"Taking [something] out of [something]","placeholders":["the lipstick","the purse"]}, +{"id":"98917","label":"moving ball of mouse","template":"Moving [part] of [something]","placeholders":["ball","mouse"]}, +{"id":"158789","label":"trying to pour water into mug, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","mug"]}, +{"id":"105173","label":"spilling water next to a pencil","template":"Spilling [something] next to [something]","placeholders":["water","a pencil"]}, +{"id":"171019","label":"a bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["a bottle"]}, +{"id":"91241","label":"pushing bottle cap from left to right","template":"Pushing [something] from left to right","placeholders":["bottle cap"]}, +{"id":"200417","label":"pushing a fan from right to left","template":"Pushing [something] from right to left","placeholders":["a fan"]}, +{"id":"133738","label":"moving black play cards up","template":"Moving [something] up","placeholders":["black play cards"]}, +{"id":"182118","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"129824","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"46186","label":"holding bottle over sunglasses","template":"Holding [something] over [something]","placeholders":["bottle","sunglasses"]}, +{"id":"83617","label":"pretending to scoop protein powder up with a spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["protein powder","a spoon"]}, +{"id":"105880","label":"throwing television remote in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["television remote"]}, +{"id":"25013","label":"putting three blocks onto pillow","template":"Putting [number of] [something] onto [something]","placeholders":["three","blocks","pillow"]}, +{"id":"154714","label":"putting egg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["egg"]}, +{"id":"200099","label":"dropping lid behind box","template":"Dropping [something] behind [something]","placeholders":["lid","box"]}, +{"id":"82959","label":"unfolding a dish towel","template":"Unfolding [something]","placeholders":["a dish towel"]}, +{"id":"9574","label":"pushing a water bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a water bottle"]}, +{"id":"126933","label":"turning pen upside down","template":"Turning [something] upside down","placeholders":["pen"]}, +{"id":"124679","label":"holding mug over plastic canister","template":"Holding [something] over [something]","placeholders":["mug","plastic canister"]}, +{"id":"210563","label":"putting paper underneath tablet","template":"Putting [something] underneath [something]","placeholders":["paper","tablet"]}, +{"id":"110223","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"62498","label":"throwing usb cable in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["usb cable"]}, +{"id":"196448","label":"pushing nail paint remover from left to right","template":"Pushing [something] from left to right","placeholders":["nail paint remover"]}, +{"id":"187914","label":"holding bb-8 cup","template":"Holding [something]","placeholders":["bb-8 cup"]}, +{"id":"18814","label":"covering coin with paper","template":"Covering [something] with [something]","placeholders":["coin","paper"]}, +{"id":"193889","label":"showing that bin is empty","template":"Showing that [something] is empty","placeholders":["bin"]}, +{"id":"47838","label":"dropping a peg next to an envelope","template":"Dropping [something] next to [something]","placeholders":["a peg","an envelope"]}, +{"id":"80909","label":"dropping hammer behind couch","template":"Dropping [something] behind [something]","placeholders":["hammer","couch"]}, +{"id":"174093","label":"moving cup and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","spoon"]}, +{"id":"145648","label":"turning the camera downwards while filming books","template":"Turning the camera downwards while filming [something]","placeholders":["books"]}, +{"id":"80800","label":"pretending or failing to wipe fingerprints off of cell phone","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["fingerprints","cell phone"]}, +{"id":"165663","label":"pulling two ends of box but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["box"]}, +{"id":"67036","label":"hitting mug with cable","template":"Hitting [something] with [something]","placeholders":["mug","cable"]}, +{"id":"60895","label":"pushing a stuffed animal off of a couch","template":"Pushing [something] off of [something]","placeholders":["a stuffed animal","a couch"]}, +{"id":"170139","label":"holding a matchbox over a padlock","template":"Holding [something] over [something]","placeholders":["a matchbox","a padlock"]}, +{"id":"47614","label":"moving lid of glass jar","template":"Moving [part] of [something]","placeholders":["lid","glass jar"]}, +{"id":"140416","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"30354","label":"throwing powder bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["powder bottle"]}, +{"id":"198834","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"88675","label":"showing coin on top of box","template":"Showing [something] on top of [something]","placeholders":["coin","box"]}, +{"id":"138128","label":"pretending to put cellphone on a surface","template":"Pretending to put [something] on a surface","placeholders":["cellphone"]}, +{"id":"219934","label":"scooping rice up with spoon","template":"Scooping [something] up with [something]","placeholders":["rice","spoon"]}, +{"id":"110931","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"83595","label":"taking muffin out of bin","template":"Taking [something] out of [something]","placeholders":["muffin","bin"]}, +{"id":"99298","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"87436","label":"pushing spoon from right to left","template":"Pushing [something] from right to left","placeholders":["spoon"]}, +{"id":"42282","label":"putting keys into drawer","template":"Putting [something] into [something]","placeholders":["keys","drawer"]}, +{"id":"169352","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"143733","label":"pretending or trying and failing to twist a pen","template":"Pretending or trying and failing to twist [something]","placeholders":["a pen"]}, +{"id":"194764","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"34597","label":"turning the camera left while filming black hat","template":"Turning the camera left while filming [something]","placeholders":["black hat"]}, +{"id":"195603","label":"moving lid of ceramic jar","template":"Moving [part] of [something]","placeholders":["lid","ceramic jar"]}, +{"id":"13187","label":"covering cup with cloth","template":"Covering [something] with [something]","placeholders":["cup","cloth"]}, +{"id":"196741","label":"spilling wine onto a plate","template":"Spilling [something] onto [something]","placeholders":["wine","a plate"]}, +{"id":"65035","label":"putting peeler, keychain and mobile on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["peeler","keychain","mobile"]}, +{"id":"121728","label":"holding mobile next to chair's arm rest","template":"Holding [something] next to [something]","placeholders":["mobile","chair's arm rest"]}, +{"id":"103776","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"195531","label":"pushing toy car onto ramp","template":"Pushing [something] onto [something]","placeholders":["toy car","ramp"]}, +{"id":"19011","label":"lifting up one end of tablet without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["tablet"]}, +{"id":"156833","label":"letting orange roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["orange"]}, +{"id":"54567","label":"attaching a paper to a wall","template":"Attaching [something] to [something]","placeholders":["a paper","a wall"]}, +{"id":"75242","label":"holding toy in front of jar","template":"Holding [something] in front of [something]","placeholders":["toy","jar"]}, +{"id":"59030","label":"pouring milk out of cup","template":"Pouring [something] out of [something]","placeholders":["milk","cup"]}, +{"id":"151432","label":"moving a chestnut across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a chestnut"]}, +{"id":"103475","label":"moving stapler up","template":"Moving [something] up","placeholders":["stapler"]}, +{"id":"195913","label":"pulling a small container from left to right","template":"Pulling [something] from left to right","placeholders":["a small container"]}, +{"id":"128896","label":"sprinkling dessert sprinkles onto a piece of pie.","template":"Sprinkling [something] onto [something]","placeholders":["dessert sprinkles","a piece of pie."]}, +{"id":"209121","label":"throwing plastic bag in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["plastic bag"]}, +{"id":"7698","label":"tilting a book with sunglasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","sunglasses"]}, +{"id":"91013","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"56033","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"131339","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"113236","label":"moving a cup away from the camera","template":"Moving [something] away from the camera","placeholders":["a cup"]}, +{"id":"204394","label":"turning a mobile phone upside down","template":"Turning [something] upside down","placeholders":["a mobile phone"]}, +{"id":"107392","label":"throwing pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pillow"]}, +{"id":"39972","label":"letting tape roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tape"]}, +{"id":"126265","label":"tilting a bottle with water on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a bottle","water"]}, +{"id":"110208","label":"laying lamp on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lamp"]}, +{"id":"33688","label":"putting remote control, wallet and mechanical pencil on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote control","wallet","mechanical pencil"]}, +{"id":"51970","label":"opening water tank","template":"Opening [something]","placeholders":["water tank"]}, +{"id":"5226","label":"uncovering wood spoon","template":"Uncovering [something]","placeholders":["wood spoon"]}, +{"id":"98324","label":"pretending to squeeze a rubber-band ball","template":"Pretending to squeeze [something]","placeholders":["a rubber-band ball"]}, +{"id":"59701","label":"moving smarthphone and book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["smarthphone","book"]}, +{"id":"53508","label":"pretending to take snacks from box","template":"Pretending to take [something] from [somewhere]","placeholders":["snacks","box"]}, +{"id":"26349","label":"tissue paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue paper"]}, +{"id":"55716","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"125137","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"67068","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"124515","label":"throwing an avocado peel onto a surface","template":"Throwing [something] onto a surface","placeholders":["an avocado peel"]}, +{"id":"143265","label":"pushing green water bottle from right to left","template":"Pushing [something] from right to left","placeholders":["green water bottle"]}, +{"id":"204770","label":"tearing tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing tissue"]}, +{"id":"4761","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"215639","label":"holding a cup in front of a clock","template":"Holding [something] in front of [something]","placeholders":["a cup","a clock"]}, +{"id":"152138","label":"dropping rubber onto table","template":"Dropping [something] onto [something]","placeholders":["rubber","table"]}, +{"id":"201098","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"32384","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"90942","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"207247","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"214128","label":"moving top of box","template":"Moving [part] of [something]","placeholders":["top","box"]}, +{"id":"37541","label":"poking box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["box"]}, +{"id":"212575","label":"showing a photo of a wallclock to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a wallclock"]}, +{"id":"173011","label":"pushing a jewellry box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a jewellry box"]}, +{"id":"134649","label":"covering lotion tube with paper","template":"Covering [something] with [something]","placeholders":["lotion tube","paper"]}, +{"id":"145549","label":"throwing key onto a surface","template":"Throwing [something] onto a surface","placeholders":["key"]}, +{"id":"72451","label":"plugging auxiliary cord into speaker","template":"Plugging [something] into [something]","placeholders":["auxiliary cord","speaker"]}, +{"id":"122071","label":"pulling purse from left to right","template":"Pulling [something] from left to right","placeholders":["purse"]}, +{"id":"55781","label":"pulling white book marker from left to right","template":"Pulling [something] from left to right","placeholders":["white book marker"]}, +{"id":"94975","label":"turning the purse upside down","template":"Turning [something] upside down","placeholders":["the purse"]}, +{"id":"156545","label":"putting punching machine that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["punching machine"]}, +{"id":"218589","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"114783","label":"putting book in front of bag","template":"Putting [something] in front of [something]","placeholders":["book","bag"]}, +{"id":"188350","label":"showing that cinnamon roll is inside container","template":"Showing that [something] is inside [something]","placeholders":["cinnamon roll","container"]}, +{"id":"6039","label":"pushing a toy car from right to left","template":"Pushing [something] from right to left","placeholders":["a toy car"]}, +{"id":"15065","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"174755","label":"bending tie so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tie"]}, +{"id":"180180","label":"pen colliding with cutter and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pen","cutter"]}, +{"id":"206965","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"143971","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"65016","label":"closing cream tube","template":"Closing [something]","placeholders":["cream tube"]}, +{"id":"90817","label":"approaching tyre with your camera","template":"Approaching [something] with your camera","placeholders":["tyre"]}, +{"id":"55167","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"123961","label":"putting pencil onto stapler","template":"Putting [something] onto [something]","placeholders":["pencil","stapler"]}, +{"id":"74258","label":"unfolding blanket","template":"Unfolding [something]","placeholders":["blanket"]}, +{"id":"9741","label":"spinning chopstick that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["chopstick"]}, +{"id":"88816","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"202337","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"92833","label":"pushing telephone from left to right","template":"Pushing [something] from left to right","placeholders":["telephone"]}, +{"id":"52051","label":"spinning a container that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a container"]}, +{"id":"48739","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"132704","label":"showing packet behind flower vase","template":"Showing [something] behind [something]","placeholders":["packet","flower vase"]}, +{"id":"8959","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"174114","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"17584","label":"pushing a coin so it spins","template":"Pushing [something] so it spins","placeholders":["a coin"]}, +{"id":"73972","label":"holding a tape over a coil of wires","template":"Holding [something] over [something]","placeholders":["a tape","a coil of wires"]}, +{"id":"63719","label":"picking sunglasses up","template":"Picking [something] up","placeholders":["sunglasses"]}, +{"id":"158781","label":"dropping a wrapper into the garbage","template":"Dropping [something] into [something]","placeholders":["a wrapper","the garbage"]}, +{"id":"220773","label":"plugging cable into charger","template":"Plugging [something] into [something]","placeholders":["cable","charger"]}, +{"id":"164036","label":"pulling a lipstick from right to left","template":"Pulling [something] from right to left","placeholders":["a lipstick"]}, +{"id":"213589","label":"pretending to close a jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a jar"]}, +{"id":"161282","label":"opening pot","template":"Opening [something]","placeholders":["pot"]}, +{"id":"41243","label":"pretending to sprinkle air onto a rain boot","template":"Pretending to sprinkle air onto [something]","placeholders":["a rain boot"]}, +{"id":"209112","label":"tilting stool with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stool","pen"]}, +{"id":"34149","label":"pretending to take pencils out of a box","template":"Pretending to take [something] out of [something]","placeholders":["pencils","a box"]}, +{"id":"122630","label":"holding mouse over mousepad","template":"Holding [something] over [something]","placeholders":["mouse","mousepad"]}, +{"id":"117327","label":"a bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["a bottle"]}, +{"id":"117935","label":"pretending to put orange underneath notebook","template":"Pretending to put [something] underneath [something]","placeholders":["orange","notebook"]}, +{"id":"67333","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"40187","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"153746","label":"tipping lotion tube over","template":"Tipping [something] over","placeholders":["lotion tube"]}, +{"id":"16654","label":"pushing a scrunchie off of a pen","template":"Pushing [something] off of [something]","placeholders":["a scrunchie","a pen"]}, +{"id":"69817","label":"putting notebook onto notebook","template":"Putting [something] onto [something]","placeholders":["notebook","notebook"]}, +{"id":"207574","label":"putting down another clementine","template":"Putting [something similar to other things that are already on the table]","placeholders":["down another clementine"]}, +{"id":"24027","label":"pushing plate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plate"]}, +{"id":"207000","label":"touching (without moving) the body of a bottle","template":"Touching (without moving) [part] of [something]","placeholders":["the body","a bottle"]}, +{"id":"13717","label":"scooping formula up with measuring scoop","template":"Scooping [something] up with [something]","placeholders":["formula","measuring scoop"]}, +{"id":"137591","label":"holding vape next to drawer","template":"Holding [something] next to [something]","placeholders":["vape","drawer"]}, +{"id":"180741","label":"holding earphone","template":"Holding [something]","placeholders":["earphone"]}, +{"id":"200251","label":"tilting mouse pad with mouse on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["mouse pad","mouse"]}, +{"id":"104561","label":"coin falling like a rock","template":"[Something] falling like a rock","placeholders":["coin"]}, +{"id":"62126","label":"hitting a closed disposable water bottle with a can of beans","template":"Hitting [something] with [something]","placeholders":["a closed disposable water bottle","a can of beans"]}, +{"id":"94398","label":"moving screw down","template":"Moving [something] down","placeholders":["screw"]}, +{"id":"86407","label":"moving ball and ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ball","ball"]}, +{"id":"123478","label":"putting hair clip, toy idol and battery on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hair clip","toy idol","battery"]}, +{"id":"14195","label":"pushing pushing plastic spray so that it falls off of table so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pushing plastic spray so that it falls off of table"]}, +{"id":"211586","label":"moving spoon closer to stapler","template":"Moving [something] closer to [something]","placeholders":["spoon","stapler"]}, +{"id":"55874","label":"moving the back cover of a remote control","template":"Moving [part] of [something]","placeholders":["the back cover","a remote control"]}, +{"id":"1629","label":"tilting a box with earphones on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","earphones"]}, +{"id":"77668","label":"turning the camera upwards while filming scotch tape","template":"Turning the camera upwards while filming [something]","placeholders":["scotch tape"]}, +{"id":"160772","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"79321","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"16665","label":"covering a penny with a tissue","template":"Covering [something] with [something]","placeholders":["a penny","a tissue"]}, +{"id":"130751","label":"showing a photo of a bee to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a bee"]}, +{"id":"126462","label":"pretending to poke a jar","template":"Pretending to poke [something]","placeholders":["a jar"]}, +{"id":"70008","label":"pushing joystick with a scissor","template":"Pushing [something] with [something]","placeholders":["joystick","a scissor"]}, +{"id":"184633","label":"picking laser pointer up","template":"Picking [something] up","placeholders":["laser pointer"]}, +{"id":"182537","label":"lifting paper with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["paper","bottle"]}, +{"id":"128968","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"203832","label":"throwing wallet against wall","template":"Throwing [something] against [something]","placeholders":["wallet","wall"]}, +{"id":"90592","label":"spilling water next to a bowl","template":"Spilling [something] next to [something]","placeholders":["water","a bowl"]}, +{"id":"54649","label":"dropping a book onto a bed","template":"Dropping [something] onto [something]","placeholders":["a book","a bed"]}, +{"id":"69453","label":"scooping die up with spoon","template":"Scooping [something] up with [something]","placeholders":["die","spoon"]}, +{"id":"99183","label":"moving stapler and puncher closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["stapler","puncher"]}, +{"id":"84026","label":"squeezing lemon","template":"Squeezing [something]","placeholders":["lemon"]}, +{"id":"92536","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"161588","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"7474","label":"taking cup from coaster","template":"Taking [something] from [somewhere]","placeholders":["cup","coaster"]}, +{"id":"152046","label":"throwing water bottle","template":"Throwing [something]","placeholders":["water bottle"]}, +{"id":"165846","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"163839","label":"pushing tape so it spins","template":"Pushing [something] so it spins","placeholders":["tape"]}, +{"id":"172428","label":"moving tape down","template":"Moving [something] down","placeholders":["tape"]}, +{"id":"148606","label":"stuffing pen into notebook","template":"Stuffing [something] into [something]","placeholders":["pen","notebook"]}, +{"id":"193958","label":"red marker colliding with blue marker and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["red marker","blue marker"]}, +{"id":"27512","label":"pulling two ends of rubber so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber"]}, +{"id":"188276","label":"covering cigarette lighter with cookie box lid","template":"Covering [something] with [something]","placeholders":["cigarette lighter","cookie box lid"]}, +{"id":"204623","label":"putting bottle in front of tennis ball","template":"Putting [something] in front of [something]","placeholders":["bottle","tennis ball"]}, +{"id":"68903","label":"bending candle until it breaks","template":"Bending [something] until it breaks","placeholders":["candle"]}, +{"id":"74672","label":"tiger falling like a rock","template":"[Something] falling like a rock","placeholders":["tiger"]}, +{"id":"180629","label":"pretending to put a candle underneath a plate","template":"Pretending to put [something] underneath [something]","placeholders":["a candle","a plate"]}, +{"id":"75628","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"81852","label":"stuffing receipt into jar","template":"Stuffing [something] into [something]","placeholders":["receipt","jar"]}, +{"id":"157454","label":"burying a pillow in a blanket","template":"Burying [something] in [something]","placeholders":["a pillow","a blanket"]}, +{"id":"22937","label":"putting 4 books onto table","template":"Putting [number of] [something] onto [something]","placeholders":["4","books","table"]}, +{"id":"23947","label":"putting clementine on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["clementine"]}, +{"id":"44113","label":"pulling two ends of usb light but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["usb light"]}, +{"id":"198806","label":"moving a cellphone up","template":"Moving [something] up","placeholders":["a cellphone"]}, +{"id":"135586","label":"putting a glass and keys on the table","template":"Putting [something] and [something] on the table","placeholders":["a glass","keys"]}, +{"id":"21156","label":"pretending to pour tea out of mug, but mug is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["tea","mug","mug"]}, +{"id":"69392","label":"putting bottle onto stool","template":"Putting [something] onto [something]","placeholders":["bottle","stool"]}, +{"id":"149338","label":"moving bottle and cup closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","cup"]}, +{"id":"201811","label":"taking bottle","template":"Taking [one of many similar things on the table]","placeholders":["bottle"]}, +{"id":"212580","label":"holding a cup behind a vase of flowers","template":"Holding [something] behind [something]","placeholders":["a cup","a vase of flowers"]}, +{"id":"199206","label":"pushing black disc case from left to right","template":"Pushing [something] from left to right","placeholders":["black disc case"]}, +{"id":"110594","label":"pushing shaver from left to right","template":"Pushing [something] from left to right","placeholders":["shaver"]}, +{"id":"24623","label":"pushing cufflinks with a bowl","template":"Pushing [something] with [something]","placeholders":["cufflinks","a bowl"]}, +{"id":"64267","label":"putting book onto can","template":"Putting [something] onto [something]","placeholders":["book","can"]}, +{"id":"32654","label":"moving figurine across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["figurine"]}, +{"id":"79615","label":"throwing a pillow in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a pillow"]}, +{"id":"217678","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"71008","label":"poking nail polish so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["nail polish"]}, +{"id":"94380","label":"twisting waterbottle","template":"Twisting [something]","placeholders":["waterbottle"]}, +{"id":"60836","label":"showing marker pen behind wallet","template":"Showing [something] behind [something]","placeholders":["marker pen","wallet"]}, +{"id":"77208","label":"pulling box from left to right","template":"Pulling [something] from left to right","placeholders":["box"]}, +{"id":"136909","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"11136","label":"spinning swiss army knife that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["swiss army knife"]}, +{"id":"174077","label":"covering remote with cloth","template":"Covering [something] with [something]","placeholders":["remote","cloth"]}, +{"id":"28931","label":"poking fan pole so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["fan pole"]}, +{"id":"161387","label":"uncovering tv remote","template":"Uncovering [something]","placeholders":["tv remote"]}, +{"id":"131213","label":"plugging wire into microcontroller","template":"Plugging [something] into [something]","placeholders":["wire","microcontroller"]}, +{"id":"46164","label":"putting sun glasses into case","template":"Putting [something] into [something]","placeholders":["sun glasses","case"]}, +{"id":"204706","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"42068","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"22179","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"150303","label":"throwing shoe against wooden puppet","template":"Throwing [something] against [something]","placeholders":["shoe","wooden puppet"]}, +{"id":"5709","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"153520","label":"pushing glasses case from left to right","template":"Pushing [something] from left to right","placeholders":["glasses case"]}, +{"id":"175280","label":"putting jar on the edge of box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["jar","box"]}, +{"id":"1489","label":"pushing a candle with a key","template":"Pushing [something] with [something]","placeholders":["a candle","a key"]}, +{"id":"38016","label":"showing router next to monitor","template":"Showing [something] next to [something]","placeholders":["router","monitor"]}, +{"id":"208897","label":"lifting notebook with mobile phone on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","mobile phone"]}, +{"id":"173377","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"12565","label":"dropping pen behind watch","template":"Dropping [something] behind [something]","placeholders":["pen","watch"]}, +{"id":"201860","label":"tipping a speaker over","template":"Tipping [something] over","placeholders":["a speaker"]}, +{"id":"69324","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"147227","label":"pulling drawer out of washing machine","template":"Pulling [something] out of [something]","placeholders":["drawer","washing machine"]}, +{"id":"128777","label":"turning the camera right while filming small book","template":"Turning the camera right while filming [something]","placeholders":["small book"]}, +{"id":"64398","label":"pushing hair paste so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair paste"]}, +{"id":"180703","label":"approaching car with your camera","template":"Approaching [something] with your camera","placeholders":["car"]}, +{"id":"199977","label":"turning the camera upwards while filming pill bottle","template":"Turning the camera upwards while filming [something]","placeholders":["pill bottle"]}, +{"id":"53088","label":"showing mobile behind a table","template":"Showing [something] behind [something]","placeholders":["mobile","a table"]}, +{"id":"133702","label":"picking nailpolish up","template":"Picking [something] up","placeholders":["nailpolish"]}, +{"id":"46397","label":"pushing stapler with a scissor","template":"Pushing [something] with [something]","placeholders":["stapler","a scissor"]}, +{"id":"159589","label":"turning the camera upwards while filming small book","template":"Turning the camera upwards while filming [something]","placeholders":["small book"]}, +{"id":"23170","label":"moving lever of hole punch","template":"Moving [part] of [something]","placeholders":["lever","hole punch"]}, +{"id":"190404","label":"lifting calculator with pink coloured hair clip on it","template":"Lifting [something] with [something] on it","placeholders":["calculator","pink coloured hair clip"]}, +{"id":"155078","label":"moving a candle and a candle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a candle","a candle"]}, +{"id":"51959","label":"piling toothbrushes up","template":"Piling [something] up","placeholders":["toothbrushes"]}, +{"id":"17226","label":"stacking 2 napkins","template":"Stacking [number of] [something]","placeholders":["2","napkins"]}, +{"id":"185805","label":"pretending to pick pencil sharpner up","template":"Pretending to pick [something] up","placeholders":["pencil sharpner"]}, +{"id":"6770","label":"holding paper next to discount card","template":"Holding [something] next to [something]","placeholders":["paper","discount card"]}, +{"id":"175036","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"46013","label":"tilting stone with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["stone","finger"]}, +{"id":"18886","label":"letting vapor rub roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["vapor rub"]}, +{"id":"38741","label":"holding glasses over plate","template":"Holding [something] over [something]","placeholders":["glasses","plate"]}, +{"id":"149150","label":"showing that stapler is inside orange bowl","template":"Showing that [something] is inside [something]","placeholders":["stapler","orange bowl"]}, +{"id":"72216","label":"pushing a bag so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bag"]}, +{"id":"74960","label":"pulling gymnastic bands from left to right","template":"Pulling [something] from left to right","placeholders":["gymnastic bands"]}, +{"id":"117452","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"203338","label":"moving note up","template":"Moving [something] up","placeholders":["note"]}, +{"id":"171224","label":"pretending to put hairclip on a surface","template":"Pretending to put [something] on a surface","placeholders":["hairclip"]}, +{"id":"131553","label":"moving bowl down","template":"Moving [something] down","placeholders":["bowl"]}, +{"id":"61122","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"42053","label":"trying but failing to attach notebook to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["notebook","wall"]}, +{"id":"76690","label":"pretending to poke a cup","template":"Pretending to poke [something]","placeholders":["a cup"]}, +{"id":"145277","label":"tilting stand with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["stand","phone"]}, +{"id":"145082","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"193180","label":"throwing ball against deodorant","template":"Throwing [something] against [something]","placeholders":["ball","deodorant"]}, +{"id":"102724","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"62808","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"110861","label":"squeezing tissue","template":"Squeezing [something]","placeholders":["tissue"]}, +{"id":"60333","label":"pulling two ends of cotton webbing but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["cotton webbing"]}, +{"id":"156897","label":"twisting shoe","template":"Twisting [something]","placeholders":["shoe"]}, +{"id":"70876","label":"orange being deflected from wascher","template":"[Something] being deflected from [something]","placeholders":["orange","wascher"]}, +{"id":"125341","label":"tipping a pencil case over","template":"Tipping [something] over","placeholders":["a pencil case"]}, +{"id":"63431","label":"holding a measuring cup next to a bowl","template":"Holding [something] next to [something]","placeholders":["a measuring cup","a bowl"]}, +{"id":"213123","label":"throwing pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pencil"]}, +{"id":"218495","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"215465","label":"holding a teaspoon over a jar","template":"Holding [something] over [something]","placeholders":["a teaspoon","a jar"]}, +{"id":"174928","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"162917","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"51349","label":"putting water bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["water bottle"]}, +{"id":"142554","label":"lifting up one end of paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["paper"]}, +{"id":"3307","label":"letting clementine roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["clementine"]}, +{"id":"209204","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"179941","label":"putting four screws onto magnetic tray","template":"Putting [number of] [something] onto [something]","placeholders":["four","screws","magnetic tray"]}, +{"id":"114937","label":"moving can away from funnel","template":"Moving [something] away from [something]","placeholders":["can","funnel"]}, +{"id":"151323","label":"showing main switch to the camera","template":"Showing [something] to the camera","placeholders":["main switch"]}, +{"id":"127517","label":"covering a bowl with a cloth","template":"Covering [something] with [something]","placeholders":["a bowl","a cloth"]}, +{"id":"65801","label":"showing that chip bag is empty","template":"Showing that [something] is empty","placeholders":["chip bag"]}, +{"id":"207800","label":"moving cup and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","bottle"]}, +{"id":"47301","label":"poking jar so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["jar"]}, +{"id":"30972","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"101032","label":"putting a glass underneath a hat","template":"Putting [something] underneath [something]","placeholders":["a glass","a hat"]}, +{"id":"45776","label":"covering a chair with a blanket","template":"Covering [something] with [something]","placeholders":["a chair","a blanket"]}, +{"id":"196334","label":"dropping hair band next to tablet box","template":"Dropping [something] next to [something]","placeholders":["hair band","tablet box"]}, +{"id":"99863","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"13168","label":"pushing colorful scarf from right to left","template":"Pushing [something] from right to left","placeholders":["colorful scarf"]}, +{"id":"78718","label":"pulling wipe out of box","template":"Pulling [something] out of [something]","placeholders":["wipe","box"]}, +{"id":"80006","label":"wiping bottle cap off of table","template":"Wiping [something] off of [something]","placeholders":["bottle cap","table"]}, +{"id":"89840","label":"laying glass bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass bottle"]}, +{"id":"40154","label":"pushing a bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a bottle"]}, +{"id":"134316","label":"touching (without moving) body of stethescope","template":"Touching (without moving) [part] of [something]","placeholders":["body","stethescope"]}, +{"id":"36941","label":"candle falling like a rock","template":"[Something] falling like a rock","placeholders":["candle"]}, +{"id":"182267","label":"tearing plastic into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic"]}, +{"id":"132986","label":"moving away from person with your camera","template":"Moving away from [something] with your camera","placeholders":["person"]}, +{"id":"158027","label":"unfolding calendar","template":"Unfolding [something]","placeholders":["calendar"]}, +{"id":"216706","label":"putting hat, box and glasses on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hat","box","glasses"]}, +{"id":"108143","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"70103","label":"showing a window behind a sink","template":"Showing [something] behind [something]","placeholders":["a window","a sink"]}, +{"id":"1852","label":"letting a pencil roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pencil"]}, +{"id":"20009","label":"showing a dog next to a small chair","template":"Showing [something] next to [something]","placeholders":["a dog","a small chair"]}, +{"id":"154658","label":"taking pens","template":"Taking [one of many similar things on the table]","placeholders":["pens"]}, +{"id":"145892","label":"moving the arm of a doll","template":"Moving [part] of [something]","placeholders":["the arm","a doll"]}, +{"id":"83542","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"180510","label":"moving a pen away from a spoon","template":"Moving [something] away from [something]","placeholders":["a pen","a spoon"]}, +{"id":"47351","label":"unfolding t-shirt","template":"Unfolding [something]","placeholders":["t-shirt"]}, +{"id":"60991","label":"moving coaster across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["coaster"]}, +{"id":"125602","label":"putting hairclip on a surface","template":"Putting [something] on a surface","placeholders":["hairclip"]}, +{"id":"108265","label":"rolling highlighter on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["highlighter"]}, +{"id":"192997","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"79647","label":"putting mouse on a surface","template":"Putting [something] on a surface","placeholders":["mouse"]}, +{"id":"199158","label":"opening clothes dryer","template":"Opening [something]","placeholders":["clothes dryer"]}, +{"id":"97888","label":"pretending to spread air onto paper","template":"Pretending to spread air onto [something]","placeholders":["paper"]}, +{"id":"97815","label":"pretending to pick controller up","template":"Pretending to pick [something] up","placeholders":["controller"]}, +{"id":"77164","label":"pushing a mug so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a mug"]}, +{"id":"40654","label":"lifting up one end of pillow, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pillow"]}, +{"id":"180759","label":"pretending to be tearing carry bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["carry bag"]}, +{"id":"10647","label":"putting plastic tin, watch and clip on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["plastic tin","watch","clip"]}, +{"id":"115444","label":"lifting a wallet with a medicine bottle on it","template":"Lifting [something] with [something] on it","placeholders":["a wallet","a medicine bottle"]}, +{"id":"200114","label":"moving away from painting with your camera","template":"Moving away from [something] with your camera","placeholders":["painting"]}, +{"id":"109434","label":"moving stapler away from duster","template":"Moving [something] away from [something]","placeholders":["stapler","duster"]}, +{"id":"143711","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"42322","label":"pushing tissue box off of table","template":"Pushing [something] off of [something]","placeholders":["tissue box","table"]}, +{"id":"141962","label":"moving magnet closer to magnet","template":"Moving [something] closer to [something]","placeholders":["magnet","magnet"]}, +{"id":"165808","label":"lifting plastic case up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plastic case"]}, +{"id":"19406","label":"picking a glove up","template":"Picking [something] up","placeholders":["a glove"]}, +{"id":"175215","label":"covering tailoring tap with cloth","template":"Covering [something] with [something]","placeholders":["tailoring tap","cloth"]}, +{"id":"142885","label":"holding toothbrush behind watch","template":"Holding [something] behind [something]","placeholders":["toothbrush","watch"]}, +{"id":"105727","label":"putting pen cap onto pen","template":"Putting [something] onto [something]","placeholders":["pen cap","pen"]}, +{"id":"153038","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"201035","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"26612","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"32836","label":"poking a hole into a pillow","template":"Poking a hole into [something soft]","placeholders":["a pillow"]}, +{"id":"63388","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"62881","label":"throwing apple in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["apple"]}, +{"id":"215516","label":"putting lotion into a cup","template":"Putting [something] into [something]","placeholders":["lotion","a cup"]}, +{"id":"1268","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"48774","label":"turning the camera right while filming colorful scarf","template":"Turning the camera right while filming [something]","placeholders":["colorful scarf"]}, +{"id":"86665","label":"a pencil colliding with a pack of tissu and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pencil","a pack of tissu"]}, +{"id":"3055","label":"trying to bend pencil so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pencil"]}, +{"id":"40673","label":"poking a hole into bedsheet","template":"Poking a hole into [something soft]","placeholders":["bedsheet"]}, +{"id":"190378","label":"moving leaf down","template":"Moving [something] down","placeholders":["leaf"]}, +{"id":"124289","label":"pretending to put setofcompasses into mug","template":"Pretending to put [something] into [something]","placeholders":["setofcompasses","mug"]}, +{"id":"9701","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"187933","label":"moving wristband up","template":"Moving [something] up","placeholders":["wristband"]}, +{"id":"94945","label":"pushing towel so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["towel"]}, +{"id":"52494","label":"taking battery","template":"Taking [one of many similar things on the table]","placeholders":["battery"]}, +{"id":"28921","label":"pushing a notebook so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a notebook"]}, +{"id":"123812","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"24965","label":"pulling a doll out of a bag","template":"Pulling [something] out of [something]","placeholders":["a doll","a bag"]}, +{"id":"181088","label":"showing leaf to the camera","template":"Showing [something] to the camera","placeholders":["leaf"]}, +{"id":"15579","label":"poking a snowman so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a snowman"]}, +{"id":"67970","label":"moving container and container so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["container","container"]}, +{"id":"132151","label":"closing advent calendar","template":"Closing [something]","placeholders":["advent calendar"]}, +{"id":"74431","label":"plugging usb cable into phone charger","template":"Plugging [something] into [something]","placeholders":["usb cable","phone charger"]}, +{"id":"139908","label":"spinning a fidget so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget"]}, +{"id":"101676","label":"moving cable of charger","template":"Moving [part] of [something]","placeholders":["cable","charger"]}, +{"id":"133130","label":"putting a banana onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a banana"]}, +{"id":"81505","label":"laying dental floss on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["dental floss"]}, +{"id":"156153","label":"picking glasses up","template":"Picking [something] up","placeholders":["glasses"]}, +{"id":"11134","label":"moving key closer to box","template":"Moving [something] closer to [something]","placeholders":["key","box"]}, +{"id":"185387","label":"poking candle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["candle"]}, +{"id":"149200","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"52832","label":"twisting lamp knob","template":"Twisting [something]","placeholders":["lamp knob"]}, +{"id":"166692","label":"putting scissors next to yellowbook","template":"Putting [something] next to [something]","placeholders":["scissors","yellowbook"]}, +{"id":"87924","label":"holding plate next to helmet","template":"Holding [something] next to [something]","placeholders":["plate","helmet"]}, +{"id":"27728","label":"plugging charger into extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","extension cord"]}, +{"id":"195869","label":"throwing a roll of tape against a tent","template":"Throwing [something] against [something]","placeholders":["a roll of tape","a tent"]}, +{"id":"193562","label":"pretending to poke an owl","template":"Pretending to poke [something]","placeholders":["an owl"]}, +{"id":"215000","label":"moving candle up","template":"Moving [something] up","placeholders":["candle"]}, +{"id":"17337","label":"a skateboard colliding with a toy car and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a skateboard","a toy car"]}, +{"id":"150712","label":"uncovering glass","template":"Uncovering [something]","placeholders":["glass"]}, +{"id":"172411","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"154959","label":"approaching coconuts with your camera","template":"Approaching [something] with your camera","placeholders":["coconuts"]}, +{"id":"144629","label":"moving wallet and mouse away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wallet","mouse"]}, +{"id":"210725","label":"putting cup onto the television","template":"Putting [something] onto [something]","placeholders":["cup","the television"]}, +{"id":"135432","label":"trying to bend remote so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["remote"]}, +{"id":"3797","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"52720","label":"putting a glass onto a tray","template":"Putting [something] onto [something]","placeholders":["a glass","a tray"]}, +{"id":"82622","label":"rolling pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pen"]}, +{"id":"48888","label":"picking mobile up","template":"Picking [something] up","placeholders":["mobile"]}, +{"id":"13189","label":"holding box in front of tv","template":"Holding [something] in front of [something]","placeholders":["box","tv"]}, +{"id":"36635","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"180149","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"146836","label":"tearing cardboard just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardboard"]}, +{"id":"169617","label":"plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic bag"]}, +{"id":"161271","label":"wiping cleaning fluid off of goggles","template":"Wiping [something] off of [something]","placeholders":["cleaning fluid","goggles"]}, +{"id":"157404","label":"holding pen in front of notebook","template":"Holding [something] in front of [something]","placeholders":["pen","notebook"]}, +{"id":"200689","label":"showing road tarring machine to the camera","template":"Showing [something] to the camera","placeholders":["road tarring machine"]}, +{"id":"158283","label":"moving lighter and scissors away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lighter","scissors"]}, +{"id":"39597","label":"showing duster behind battery","template":"Showing [something] behind [something]","placeholders":["duster","battery"]}, +{"id":"53727","label":"putting lid, saucepan and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["lid","saucepan","cup"]}, +{"id":"147471","label":"tilting mouse pad with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["mouse pad","mouse"]}, +{"id":"73175","label":"plugging the usb cable into the laptop","template":"Plugging [something] into [something]","placeholders":["the usb cable","the laptop"]}, +{"id":"106928","label":"ice tray colliding with thermocol and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["ice tray","thermocol"]}, +{"id":"140153","label":"holding bottle behind trash can","template":"Holding [something] behind [something]","placeholders":["bottle","trash can"]}, +{"id":"139391","label":"moving a matchbox away from a comb","template":"Moving [something] away from [something]","placeholders":["a matchbox","a comb"]}, +{"id":"164792","label":"taking yellow colour pen among the many colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["yellow colour pen among the many colour pens on the table"]}, +{"id":"144262","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"83682","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"207471","label":"sprinkling colony onto paper","template":"Sprinkling [something] onto [something]","placeholders":["colony","paper"]}, +{"id":"158786","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"216472","label":"picking red pot holder up","template":"Picking [something] up","placeholders":["red pot holder"]}, +{"id":"100180","label":"stacking 3 toy wheels","template":"Stacking [number of] [something]","placeholders":["3","toy wheels"]}, +{"id":"186622","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"152741","label":"pretending to scoop milk powder up with the scooper","template":"Pretending to scoop [something] up with [something]","placeholders":["milk powder","the scooper"]}, +{"id":"97547","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"190956","label":"moving controller up","template":"Moving [something] up","placeholders":["controller"]}, +{"id":"33185","label":"spreading matches onto the freezer","template":"Spreading [something] onto [something]","placeholders":["matches","the freezer"]}, +{"id":"18622","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"96165","label":"pretending to take a cracker from container","template":"Pretending to take [something] from [somewhere]","placeholders":["a cracker","container"]}, +{"id":"130939","label":"tearing 4 layers of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["4 layers of paper"]}, +{"id":"38014","label":"burying guitar pick in rice","template":"Burying [something] in [something]","placeholders":["guitar pick","rice"]}, +{"id":"151203","label":"twisting (wringing) wipe wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wipe"]}, +{"id":"114335","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"81006","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"69177","label":"hitting a bottle with a clip","template":"Hitting [something] with [something]","placeholders":["a bottle","a clip"]}, +{"id":"108191","label":"turning the camera left while filming flowers","template":"Turning the camera left while filming [something]","placeholders":["flowers"]}, +{"id":"122550","label":"putting dental floss and nail clippers on the table","template":"Putting [something] and [something] on the table","placeholders":["dental floss","nail clippers"]}, +{"id":"99048","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"38477","label":"moving candle away from box","template":"Moving [something] away from [something]","placeholders":["candle","box"]}, +{"id":"112316","label":"hitting digger with car","template":"Hitting [something] with [something]","placeholders":["digger","car"]}, +{"id":"57746","label":"squeezing oven mit","template":"Squeezing [something]","placeholders":["oven mit"]}, +{"id":"188672","label":"dropping pen behind cup","template":"Dropping [something] behind [something]","placeholders":["pen","cup"]}, +{"id":"57530","label":"taking tissue out of box","template":"Taking [something] out of [something]","placeholders":["tissue","box"]}, +{"id":"60990","label":"dropping clay box into cup","template":"Dropping [something] into [something]","placeholders":["clay box","cup"]}, +{"id":"30233","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"186133","label":"stacking 4 smoothie, ashtray, paper, monster","template":"Stacking [number of] [something]","placeholders":["4","smoothie, ashtray, paper, monster"]}, +{"id":"211653","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"208741","label":"closing water tin","template":"Closing [something]","placeholders":["water tin"]}, +{"id":"124967","label":"pushing remote control so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote control"]}, +{"id":"178202","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"116810","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"106519","label":"dropping a lid into a box","template":"Dropping [something] into [something]","placeholders":["a lid","a box"]}, +{"id":"63866","label":"lemon falling like a rock","template":"[Something] falling like a rock","placeholders":["lemon"]}, +{"id":"66165","label":"taking magnifying glass from table","template":"Taking [something] from [somewhere]","placeholders":["magnifying glass","table"]}, +{"id":"186481","label":"squeezing tissues","template":"Squeezing [something]","placeholders":["tissues"]}, +{"id":"66194","label":"holding sunglasses over package","template":"Holding [something] over [something]","placeholders":["sunglasses","package"]}, +{"id":"111628","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"91110","label":"pushing sharpie so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sharpie"]}, +{"id":"207558","label":"lifting a stick up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a stick"]}, +{"id":"41845","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"145994","label":"stacking 3 matchbox","template":"Stacking [number of] [something]","placeholders":["3","matchbox"]}, +{"id":"144449","label":"turning container upside down","template":"Turning [something] upside down","placeholders":["container"]}, +{"id":"83759","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"218125","label":"pouring water into chair","template":"Pouring [something] into [something]","placeholders":["water","chair"]}, +{"id":"58427","label":"putting pen into a group of pen like objects","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen into a group of pen like objects"]}, +{"id":"46085","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"72951","label":"moving away from flowers with your camera","template":"Moving away from [something] with your camera","placeholders":["flowers"]}, +{"id":"2583","label":"tennis ball being deflected from bottle","template":"[Something] being deflected from [something]","placeholders":["tennis ball","bottle"]}, +{"id":"37287","label":"rolling a jar on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a jar"]}, +{"id":"49346","label":"pouring water onto cup","template":"Pouring [something] onto [something]","placeholders":["water","cup"]}, +{"id":"29848","label":"putting a beer can next to a mug","template":"Putting [something] next to [something]","placeholders":["a beer can","a mug"]}, +{"id":"72618","label":"pulling spoon from left to right","template":"Pulling [something] from left to right","placeholders":["spoon"]}, +{"id":"64583","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"16026","label":"covering onion with cloth","template":"Covering [something] with [something]","placeholders":["onion","cloth"]}, +{"id":"13991","label":"spinning a mouse that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a mouse"]}, +{"id":"203442","label":"showing that a plate is inside the drawer","template":"Showing that [something] is inside [something]","placeholders":["a plate","the drawer"]}, +{"id":"179309","label":"putting a dish towel next to a mug","template":"Putting [something] next to [something]","placeholders":["a dish towel","a mug"]}, +{"id":"106441","label":"taking a water bottle out of a refrigerator","template":"Taking [something] out of [something]","placeholders":["a water bottle","a refrigerator"]}, +{"id":"75293","label":"lifting up one end of marker without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["marker"]}, +{"id":"86568","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"116568","label":"putting a remote onto a table","template":"Putting [something] onto [something]","placeholders":["a remote","a table"]}, +{"id":"81817","label":"opening jam-box","template":"Opening [something]","placeholders":["jam-box"]}, +{"id":"148506","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"163289","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"134957","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"161868","label":"poking glasses so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glasses"]}, +{"id":"2034","label":"dropping ball into laundry basket","template":"Dropping [something] into [something]","placeholders":["ball","laundry basket"]}, +{"id":"74302","label":"putting a book upright on the table","template":"Putting [something] upright on the table","placeholders":["a book"]}, +{"id":"10033","label":"turning perfume upside down","template":"Turning [something] upside down","placeholders":["perfume"]}, +{"id":"106444","label":"spinning white badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["white badge"]}, +{"id":"199365","label":"moving away from rice cooker with your camera","template":"Moving away from [something] with your camera","placeholders":["rice cooker"]}, +{"id":"176609","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"140635","label":"pulling a cup from left to right","template":"Pulling [something] from left to right","placeholders":["a cup"]}, +{"id":"197217","label":"showing watch next to camera","template":"Showing [something] next to [something]","placeholders":["watch","camera"]}, +{"id":"61708","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"19044","label":"putting a lighter next to other lighters","template":"Putting [something similar to other things that are already on the table]","placeholders":["a lighter next to other lighters"]}, +{"id":"135682","label":"holding ipad in front of television","template":"Holding [something] in front of [something]","placeholders":["ipad","television"]}, +{"id":"31255","label":"plugging charger into a socket","template":"Plugging [something] into [something]","placeholders":["charger","a socket"]}, +{"id":"203858","label":"closing mail box","template":"Closing [something]","placeholders":["mail box"]}, +{"id":"2774","label":"putting dishcloth upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["dishcloth"]}, +{"id":"128480","label":"closing zipper bag","template":"Closing [something]","placeholders":["zipper bag"]}, +{"id":"204116","label":"trying to bend cell phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["cell phone"]}, +{"id":"143448","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"182735","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"171504","label":"putting basketball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["basketball"]}, +{"id":"91157","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"107791","label":"covering tv remote with pillow","template":"Covering [something] with [something]","placeholders":["tv remote","pillow"]}, +{"id":"97856","label":"plugging plastic bag into glass bottle","template":"Plugging [something] into [something]","placeholders":["plastic bag","glass bottle"]}, +{"id":"18746","label":"lifting tablet with a canister on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","a canister"]}, +{"id":"187095","label":"showing apple on top of cutting board","template":"Showing [something] on top of [something]","placeholders":["apple","cutting board"]}, +{"id":"153947","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"203147","label":"taking scissors out of sewing box","template":"Taking [something] out of [something]","placeholders":["scissors","sewing box"]}, +{"id":"112864","label":"putting forks together on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["forks together on the table"]}, +{"id":"62225","label":"pushing ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["ball"]}, +{"id":"87663","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"98666","label":"putting a can next to a bag","template":"Putting [something] next to [something]","placeholders":["a can","a bag"]}, +{"id":"9250","label":"putting soap on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["soap","the table"]}, +{"id":"163803","label":"pushing book with metal strip","template":"Pushing [something] with [something]","placeholders":["book","metal strip"]}, +{"id":"135630","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"22039","label":"pushing red hair band with pen","template":"Pushing [something] with [something]","placeholders":["red hair band","pen"]}, +{"id":"164957","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"88256","label":"lifting plate with apple on it","template":"Lifting [something] with [something] on it","placeholders":["plate","apple"]}, +{"id":"30020","label":"moving a rubbik cube and rubbik cube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a rubbik cube","rubbik cube"]}, +{"id":"12895","label":"taking one of many pen on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many pen on the table"]}, +{"id":"175162","label":"putting a shell into a box","template":"Putting [something] into [something]","placeholders":["a shell","a box"]}, +{"id":"98247","label":"tipping paper towel roll over","template":"Tipping [something] over","placeholders":["paper towel roll"]}, +{"id":"48438","label":"spilling water next to a ball","template":"Spilling [something] next to [something]","placeholders":["water","a ball"]}, +{"id":"59950","label":"plugging charger into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","power socket"]}, +{"id":"120144","label":"taking timepiece from well wall","template":"Taking [something] from [somewhere]","placeholders":["timepiece","well wall"]}, +{"id":"70779","label":"putting a fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a fork"]}, +{"id":"120745","label":"turning the camera upwards while filming plant","template":"Turning the camera upwards while filming [something]","placeholders":["plant"]}, +{"id":"215878","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"174279","label":"pulling pulling power bank from left to right from left to right","template":"Pulling [something] from left to right","placeholders":["pulling power bank from left to right"]}, +{"id":"39437","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"69501","label":"pushing remote from right to left","template":"Pushing [something] from right to left","placeholders":["remote"]}, +{"id":"55976","label":"holding a cup next to a water bottle","template":"Holding [something] next to [something]","placeholders":["a cup","a water bottle"]}, +{"id":"209979","label":"dropping a figutine into a mug","template":"Dropping [something] into [something]","placeholders":["a figutine","a mug"]}, +{"id":"81972","label":"pulling water bottle from right to left","template":"Pulling [something] from right to left","placeholders":["water bottle"]}, +{"id":"65444","label":"turning something upside down","template":"Turning [something] upside down","placeholders":["something"]}, +{"id":"113588","label":"putting glass next to box","template":"Putting [something] next to [something]","placeholders":["glass","box"]}, +{"id":"90256","label":"showing black pouch behind green bowl","template":"Showing [something] behind [something]","placeholders":["black pouch","green bowl"]}, +{"id":"102796","label":"spilling water onto a plate","template":"Spilling [something] onto [something]","placeholders":["water","a plate"]}, +{"id":"115530","label":"moving red pen and blue pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["red pen","blue pen"]}, +{"id":"200339","label":"tearing white paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["white paper"]}, +{"id":"56093","label":"uncovering the watch","template":"Uncovering [something]","placeholders":["the watch"]}, +{"id":"86998","label":"moving toy-car and toy-car so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy-car","toy-car"]}, +{"id":"147771","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"57640","label":"burying a lid in salad","template":"Burying [something] in [something]","placeholders":["a lid","salad"]}, +{"id":"141476","label":"pushing a box of juice so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box of juice"]}, +{"id":"65087","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"208285","label":"moving cup up","template":"Moving [something] up","placeholders":["cup"]}, +{"id":"166583","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"22037","label":"pushing lid off of iid","template":"Pushing [something] off of [something]","placeholders":["lid","iid"]}, +{"id":"44955","label":"wiping water off of a plank of wood","template":"Wiping [something] off of [something]","placeholders":["water","a plank of wood"]}, +{"id":"89116","label":"sprinkling water onto wall","template":"Sprinkling [something] onto [something]","placeholders":["water","wall"]}, +{"id":"46733","label":"turning empty coffee mug upside down","template":"Turning [something] upside down","placeholders":["empty coffee mug"]}, +{"id":"40193","label":"throwing ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["ball"]}, +{"id":"136527","label":"uncovering candles","template":"Uncovering [something]","placeholders":["candles"]}, +{"id":"125325","label":"turning the camera upwards while filming flower","template":"Turning the camera upwards while filming [something]","placeholders":["flower"]}, +{"id":"3921","label":"uncovering apple tv remote","template":"Uncovering [something]","placeholders":["apple tv remote"]}, +{"id":"113793","label":"attaching back to remote","template":"Attaching [something] to [something]","placeholders":["back","remote"]}, +{"id":"64064","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"94217","label":"throwing a shoe","template":"Throwing [something]","placeholders":["a shoe"]}, +{"id":"80326","label":"pushing case from right to left","template":"Pushing [something] from right to left","placeholders":["case"]}, +{"id":"161298","label":"moving glass closer to mug","template":"Moving [something] closer to [something]","placeholders":["glass","mug"]}, +{"id":"83911","label":"putting a roll of paper towels on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a roll of paper towels"]}, +{"id":"212299","label":"throwing ball","template":"Throwing [something]","placeholders":["ball"]}, +{"id":"170836","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"88869","label":"attaching magnet to magnet","template":"Attaching [something] to [something]","placeholders":["magnet","magnet"]}, +{"id":"90888","label":"moving microscope and coin closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["microscope","coin"]}, +{"id":"47113","label":"covering glass with cotton towel","template":"Covering [something] with [something]","placeholders":["glass","cotton towel"]}, +{"id":"124373","label":"holding can in front of remote","template":"Holding [something] in front of [something]","placeholders":["can","remote"]}, +{"id":"100990","label":"moving away from small green ball with your camera","template":"Moving away from [something] with your camera","placeholders":["small green ball"]}, +{"id":"76109","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"14108","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"98524","label":"holding vitamin water over stove top","template":"Holding [something] over [something]","placeholders":["vitamin water","stove top"]}, +{"id":"180944","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"106076","label":"putting 6 pen onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["6","pen","a box"]}, +{"id":"97551","label":"putting a vase upright on the table","template":"Putting [something] upright on the table","placeholders":["a vase"]}, +{"id":"188053","label":"dropping stick into small bottle","template":"Dropping [something] into [something]","placeholders":["stick","small bottle"]}, +{"id":"196434","label":"holding a green pen","template":"Holding [something]","placeholders":["a green pen"]}, +{"id":"9207","label":"spinning a box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a box"]}, +{"id":"198413","label":"attaching charger adapter to charging socket","template":"Attaching [something] to [something]","placeholders":["charger adapter","charging socket"]}, +{"id":"54495","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"200580","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"157374","label":"plugging a wire into an electrical outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a wire","an electrical outlet"]}, +{"id":"66594","label":"pretending to turn green bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["green bowl"]}, +{"id":"199306","label":"pretending or failing to wipe ink off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","whiteboard"]}, +{"id":"184974","label":"pushing pan so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pan"]}, +{"id":"215970","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"68279","label":"stuffing socks into cushion","template":"Stuffing [something] into [something]","placeholders":["socks","cushion"]}, +{"id":"189074","label":"putting pen next to mug","template":"Putting [something] next to [something]","placeholders":["pen","mug"]}, +{"id":"115728","label":"touching (without moving) pull part of blinds","template":"Touching (without moving) [part] of [something]","placeholders":["pull part","blinds"]}, +{"id":"61986","label":"pretending to scoop plastic bag up with paper","template":"Pretending to scoop [something] up with [something]","placeholders":["plastic bag","paper"]}, +{"id":"101103","label":"pretending to throw a plastic container","template":"Pretending to throw [something]","placeholders":["a plastic container"]}, +{"id":"69581","label":"laying peanut butter on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["peanut butter"]}, +{"id":"213919","label":"poking a stack of containers without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["containers"]}, +{"id":"117326","label":"plugging cord into wall","template":"Plugging [something] into [something]","placeholders":["cord","wall"]}, +{"id":"139795","label":"dropping cap onto pillow","template":"Dropping [something] onto [something]","placeholders":["cap","pillow"]}, +{"id":"34860","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"11015","label":"holding cup in front of mirror","template":"Holding [something] in front of [something]","placeholders":["cup","mirror"]}, +{"id":"201087","label":"taking a book of many books","template":"Taking [one of many similar things on the table]","placeholders":["a book of many books"]}, +{"id":"69208","label":"putting pebble underneath glass","template":"Putting [something] underneath [something]","placeholders":["pebble","glass"]}, +{"id":"145448","label":"dropping container next to book","template":"Dropping [something] next to [something]","placeholders":["container","book"]}, +{"id":"167180","label":"moving sunglasses and keys closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["sunglasses","keys"]}, +{"id":"84834","label":"poking the hairbrush so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["the hairbrush"]}, +{"id":"187421","label":"banana falling like a rock","template":"[Something] falling like a rock","placeholders":["banana"]}, +{"id":"212736","label":"throwing paperball against wall","template":"Throwing [something] against [something]","placeholders":["paperball","wall"]}, +{"id":"141176","label":"dropping a lighter into a plant holder","template":"Dropping [something] into [something]","placeholders":["a lighter","a plant holder"]}, +{"id":"47117","label":"moving a dvd closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a dvd","a mug"]}, +{"id":"203306","label":"holding wallet behind couch","template":"Holding [something] behind [something]","placeholders":["wallet","couch"]}, +{"id":"122692","label":"twisting a cloth","template":"Twisting [something]","placeholders":["a cloth"]}, +{"id":"212311","label":"moving bottle and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","bottle"]}, +{"id":"124964","label":"pushing book so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["book"]}, +{"id":"5633","label":"pretending or failing to wipe peanut butter off of wall tile","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["peanut butter","wall tile"]}, +{"id":"168904","label":"putting tape","template":"Putting [something similar to other things that are already on the table]","placeholders":["tape"]}, +{"id":"210447","label":"plugging an adapter into wall outlet","template":"Plugging [something] into [something]","placeholders":["an adapter","wall outlet"]}, +{"id":"90474","label":"pretending to close laptop screen without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["laptop screen"]}, +{"id":"91087","label":"poking pen so that it falls over","template":"Poking [something] so that it falls over","placeholders":["pen"]}, +{"id":"80836","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"31674","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"28027","label":"dropping glass bottle onto waste basket","template":"Dropping [something] onto [something]","placeholders":["glass bottle","waste basket"]}, +{"id":"2767","label":"taking cassette out of player","template":"Taking [something] out of [something]","placeholders":["cassette","player"]}, +{"id":"47816","label":"dropping a card onto a comb","template":"Dropping [something] onto [something]","placeholders":["a card","a comb"]}, +{"id":"192407","label":"pouring water into glass container until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass container"]}, +{"id":"97396","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"112970","label":"putting a battery and powerbank on the table","template":"Putting [something] and [something] on the table","placeholders":["a battery","powerbank"]}, +{"id":"152842","label":"moving pigtail closer to sock","template":"Moving [something] closer to [something]","placeholders":["pigtail","sock"]}, +{"id":"144676","label":"pushing phone cover so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["phone cover"]}, +{"id":"53686","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"182121","label":"putting keys behind mug","template":"Putting [something] behind [something]","placeholders":["keys","mug"]}, +{"id":"106494","label":"moving container and cigarettes away from each other","template":"Moving [something] and [something] away from each other","placeholders":["container","cigarettes"]}, +{"id":"33094","label":"putting glass onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["glass"]}, +{"id":"49891","label":"turning stapler upside down","template":"Turning [something] upside down","placeholders":["stapler"]}, +{"id":"212064","label":"tearing a sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a sheet of paper"]}, +{"id":"102661","label":"putting coin onto face wash","template":"Putting [something] onto [something]","placeholders":["coin","face wash"]}, +{"id":"17789","label":"putting apple onto floor","template":"Putting [something] onto [something]","placeholders":["apple","floor"]}, +{"id":"12033","label":"moving coin up","template":"Moving [something] up","placeholders":["coin"]}, +{"id":"204549","label":"putting waterbottle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["waterbottle"]}, +{"id":"153193","label":"pouring soda into cup","template":"Pouring [something] into [something]","placeholders":["soda","cup"]}, +{"id":"88000","label":"hitting coconut leaf with stick","template":"Hitting [something] with [something]","placeholders":["coconut leaf","stick"]}, +{"id":"112422","label":"trying to bend perfume so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["perfume"]}, +{"id":"107874","label":"showing phone behind lime","template":"Showing [something] behind [something]","placeholders":["phone","lime"]}, +{"id":"75848","label":"lifting a notebook with a shoe polish on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a shoe polish"]}, +{"id":"154229","label":"squeezing stapler","template":"Squeezing [something]","placeholders":["stapler"]}, +{"id":"199714","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"18016","label":"putting christmas tree upright on the table","template":"Putting [something] upright on the table","placeholders":["christmas tree"]}, +{"id":"41422","label":"stuffing cooked vegetables into pepers","template":"Stuffing [something] into [something]","placeholders":["cooked vegetables","pepers"]}, +{"id":"219238","label":"putting tiger on a surface","template":"Putting [something] on a surface","placeholders":["tiger"]}, +{"id":"104708","label":"pretending to put harddrive case on a surface","template":"Pretending to put [something] on a surface","placeholders":["harddrive case"]}, +{"id":"54658","label":"putting scissors and marker on the table","template":"Putting [something] and [something] on the table","placeholders":["scissors","marker"]}, +{"id":"95924","label":"holding a sock in front of a book","template":"Holding [something] in front of [something]","placeholders":["a sock","a book"]}, +{"id":"84406","label":"pretending to close closet door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["closet door"]}, +{"id":"23378","label":"pushing glass so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["glass"]}, +{"id":"181663","label":"covering bed with blanket","template":"Covering [something] with [something]","placeholders":["bed","blanket"]}, +{"id":"105114","label":"taking bottle out of bowl","template":"Taking [something] out of [something]","placeholders":["bottle","bowl"]}, +{"id":"161906","label":"pulling drawer out of kitchen board","template":"Pulling [something] out of [something]","placeholders":["drawer","kitchen board"]}, +{"id":"112988","label":"holding remote in front of can","template":"Holding [something] in front of [something]","placeholders":["remote","can"]}, +{"id":"146475","label":"spinning a fidget that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a fidget"]}, +{"id":"69880","label":"bending microphone so that it deforms","template":"Bending [something] so that it deforms","placeholders":["microphone"]}, +{"id":"145175","label":"plugging headphones into a smartphone","template":"Plugging [something] into [something]","placeholders":["headphones","a smartphone"]}, +{"id":"20995","label":"moving door of microwave","template":"Moving [part] of [something]","placeholders":["door","microwave"]}, +{"id":"40871","label":"plugging cord into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","laptop"]}, +{"id":"27941","label":"stacking 3 board clips","template":"Stacking [number of] [something]","placeholders":["3","board clips"]}, +{"id":"75949","label":"covering a pen with a piece of paper","template":"Covering [something] with [something]","placeholders":["a pen","a piece of paper"]}, +{"id":"173272","label":"holding calendar in front of computer monitor","template":"Holding [something] in front of [something]","placeholders":["calendar","computer monitor"]}, +{"id":"69774","label":"putting remote that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["remote"]}, +{"id":"143961","label":"pouring water into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a cup"]}, +{"id":"143325","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"11799","label":"showing something behind something","template":"Showing [something] behind [something]","placeholders":["something","something"]}, +{"id":"204006","label":"showing swing to the camera","template":"Showing [something] to the camera","placeholders":["swing"]}, +{"id":"126930","label":"pushing car from right to left","template":"Pushing [something] from right to left","placeholders":["car"]}, +{"id":"18744","label":"dropping a box of juice behind a box of juice","template":"Dropping [something] behind [something]","placeholders":["a box of juice","a box of juice"]}, +{"id":"114567","label":"spinning plastic bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["plastic bottle"]}, +{"id":"36015","label":"stuffing bag into bag","template":"Stuffing [something] into [something]","placeholders":["bag","bag"]}, +{"id":"186572","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"71898","label":"twisting plastic bag","template":"Twisting [something]","placeholders":["plastic bag"]}, +{"id":"116326","label":"rolling a lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a lemon"]}, +{"id":"95317","label":"pushing jar so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jar"]}, +{"id":"111926","label":"pushing stapler from left to right","template":"Pushing [something] from left to right","placeholders":["stapler"]}, +{"id":"78533","label":"bending a toothpaste so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a toothpaste"]}, +{"id":"192192","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"29860","label":"attaching wire to adapter","template":"Attaching [something] to [something]","placeholders":["wire","adapter"]}, +{"id":"195930","label":"showing that bag is empty","template":"Showing that [something] is empty","placeholders":["bag"]}, +{"id":"154433","label":"turning a remote upside down","template":"Turning [something] upside down","placeholders":["a remote"]}, +{"id":"213734","label":"uncovering remote control","template":"Uncovering [something]","placeholders":["remote control"]}, +{"id":"123703","label":"showing a photo of ben 10 to the camera","template":"Showing a photo of [something] to the camera","placeholders":["ben 10"]}, +{"id":"195885","label":"showing a radiator behind a bike seat","template":"Showing [something] behind [something]","placeholders":["a radiator","a bike seat"]}, +{"id":"16723","label":"touching (without moving) roller of mouse","template":"Touching (without moving) [part] of [something]","placeholders":["roller","mouse"]}, +{"id":"27084","label":"turning the camera left while filming radiator","template":"Turning the camera left while filming [something]","placeholders":["radiator"]}, +{"id":"198072","label":"pushing a pen so it spins","template":"Pushing [something] so it spins","placeholders":["a pen"]}, +{"id":"154533","label":"attaching cap to cardreader","template":"Attaching [something] to [something]","placeholders":["cap","cardreader"]}, +{"id":"10430","label":"approaching green water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["green water bottle"]}, +{"id":"157723","label":"moving pin and tube closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pin","tube"]}, +{"id":"185616","label":"turning the camera downwards while filming a panorama","template":"Turning the camera downwards while filming [something]","placeholders":["a panorama"]}, +{"id":"197574","label":"pulling bar soap from right to left","template":"Pulling [something] from right to left","placeholders":["bar soap"]}, +{"id":"88321","label":"holding keyboard over backpack","template":"Holding [something] over [something]","placeholders":["keyboard","backpack"]}, +{"id":"200602","label":"showing mobile phone to the camera","template":"Showing [something] to the camera","placeholders":["mobile phone"]}, +{"id":"120878","label":"holding glass of water over cellphone","template":"Holding [something] over [something]","placeholders":["glass of water","cellphone"]}, +{"id":"90331","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"66016","label":"pretending to open a cupboard door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cupboard door"]}, +{"id":"100339","label":"folding business card","template":"Folding [something]","placeholders":["business card"]}, +{"id":"177854","label":"pushing a notebook off of a bed","template":"Pushing [something] off of [something]","placeholders":["a notebook","a bed"]}, +{"id":"194035","label":"putting lamp on a surface","template":"Putting [something] on a surface","placeholders":["lamp"]}, +{"id":"48476","label":"stuffing keys into bag","template":"Stuffing [something] into [something]","placeholders":["keys","bag"]}, +{"id":"159574","label":"bending book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["book"]}, +{"id":"39211","label":"moving scissors and lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["scissors","lighter"]}, +{"id":"79730","label":"poking a plastic tube so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a plastic tube"]}, +{"id":"110930","label":"moving cover of notebook","template":"Moving [part] of [something]","placeholders":["cover","notebook"]}, +{"id":"112597","label":"throwing a pool float","template":"Throwing [something]","placeholders":["a pool float"]}, +{"id":"26608","label":"rolling water bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["water bottle"]}, +{"id":"165181","label":"plastic bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic bottle"]}, +{"id":"9075","label":"putting book on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["book","slab"]}, +{"id":"171297","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"41500","label":"plugging a kettle plug into wall socket","template":"Plugging [something] into [something]","placeholders":["a kettle plug","wall socket"]}, +{"id":"43721","label":"tilting tuperware with playdoh on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tuperware","playdoh"]}, +{"id":"151158","label":"taking game from shelf","template":"Taking [something] from [somewhere]","placeholders":["game","shelf"]}, +{"id":"9665","label":"putting 3 white colour board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["3","white colour board clips","cookie box lid"]}, +{"id":"145867","label":"tipping mousse over","template":"Tipping [something] over","placeholders":["mousse"]}, +{"id":"45321","label":"plugging male plug into female plug","template":"Plugging [something] into [something]","placeholders":["male plug","female plug"]}, +{"id":"117618","label":"unfolding a cloth","template":"Unfolding [something]","placeholders":["a cloth"]}, +{"id":"149274","label":"pretending to open dropper bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["dropper bottle"]}, +{"id":"108951","label":"uncovering flip flops","template":"Uncovering [something]","placeholders":["flip flops"]}, +{"id":"212164","label":"pushing white deodorant from right to left","template":"Pushing [something] from right to left","placeholders":["white deodorant"]}, +{"id":"153589","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"175464","label":"turning the camera right while filming switches","template":"Turning the camera right while filming [something]","placeholders":["switches"]}, +{"id":"169110","label":"lifting a pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pen"]}, +{"id":"185336","label":"pulling two ends of a rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber band"]}, +{"id":"168952","label":"hitting a toy with a pencil","template":"Hitting [something] with [something]","placeholders":["a toy","a pencil"]}, +{"id":"185955","label":"lifting scissors with sharpener on it","template":"Lifting [something] with [something] on it","placeholders":["scissors","sharpener"]}, +{"id":"217570","label":"pulling iphone out of notebook","template":"Pulling [something] out of [something]","placeholders":["iphone","notebook"]}, +{"id":"136034","label":"spilling water onto paper towel","template":"Spilling [something] onto [something]","placeholders":["water","paper towel"]}, +{"id":"32192","label":"taking bracelet out of jewelry box","template":"Taking [something] out of [something]","placeholders":["bracelet","jewelry box"]}, +{"id":"6366","label":"throwing a stapler onto a surface","template":"Throwing [something] onto a surface","placeholders":["a stapler"]}, +{"id":"28710","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"82630","label":"showing that sun glass is inside pouch","template":"Showing that [something] is inside [something]","placeholders":["sun glass","pouch"]}, +{"id":"161234","label":"holding mobile phone","template":"Holding [something]","placeholders":["mobile phone"]}, +{"id":"215824","label":"tearing a paper plate just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper plate"]}, +{"id":"18381","label":"moving away from earphone with your camera","template":"Moving away from [something] with your camera","placeholders":["earphone"]}, +{"id":"57972","label":"uncovering frog statue","template":"Uncovering [something]","placeholders":["frog statue"]}, +{"id":"23505","label":"lifting a toy car up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a toy car"]}, +{"id":"70342","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"144557","label":"pushing cloths onto carry bag","template":"Pushing [something] onto [something]","placeholders":["cloths","carry bag"]}, +{"id":"175609","label":"unfolding cover","template":"Unfolding [something]","placeholders":["cover"]}, +{"id":"169818","label":"throwing a ball against a wall","template":"Throwing [something] against [something]","placeholders":["a ball","a wall"]}, +{"id":"8111","label":"taking remote from stool","template":"Taking [something] from [somewhere]","placeholders":["remote","stool"]}, +{"id":"159361","label":"dropping a balloon onto a box","template":"Dropping [something] onto [something]","placeholders":["a balloon","a box"]}, +{"id":"157340","label":"wiping ketchup off of a counter","template":"Wiping [something] off of [something]","placeholders":["ketchup","a counter"]}, +{"id":"54143","label":"stacking 3 sticky notepads","template":"Stacking [number of] [something]","placeholders":["3","sticky notepads"]}, +{"id":"146086","label":"holding a pen","template":"Holding [something]","placeholders":["a pen"]}, +{"id":"23849","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"77619","label":"throwing a coin","template":"Throwing [something]","placeholders":["a coin"]}, +{"id":"197920","label":"taking red colour pen out of many colour pens on table","template":"Taking [one of many similar things on the table]","placeholders":["red colour pen out of many colour pens on table"]}, +{"id":"162669","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"59055","label":"holding two face powder","template":"Holding [something]","placeholders":["two face powder"]}, +{"id":"170379","label":"lifting up one end of bread loaf, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bread loaf"]}, +{"id":"50342","label":"tilting book with box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","box"]}, +{"id":"212376","label":"pushing wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["wallet"]}, +{"id":"142576","label":"pretending to put book on a surface","template":"Pretending to put [something] on a surface","placeholders":["book"]}, +{"id":"132397","label":"moving ice cream container towards the camera","template":"Moving [something] towards the camera","placeholders":["ice cream container"]}, +{"id":"213042","label":"plugging cord into laptop","template":"Plugging [something] into [something]","placeholders":["cord","laptop"]}, +{"id":"93895","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"1580","label":"throwing doll in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["doll"]}, +{"id":"119510","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"122993","label":"lifting up one end of a comb without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a comb"]}, +{"id":"191153","label":"pulling two ends of bottle but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["bottle"]}, +{"id":"174952","label":"stuffing a tin into a handbag","template":"Stuffing [something] into [something]","placeholders":["a tin","a handbag"]}, +{"id":"48716","label":"stacking 3 cards","template":"Stacking [number of] [something]","placeholders":["3","cards"]}, +{"id":"185586","label":"pulling two ends of a rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber band"]}, +{"id":"205616","label":"pulling two ends of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a paper"]}, +{"id":"127205","label":"moving yellow car and white car away from each other","template":"Moving [something] and [something] away from each other","placeholders":["yellow car","white car"]}, +{"id":"81136","label":"putting book in front of mouse","template":"Putting [something] in front of [something]","placeholders":["book","mouse"]}, +{"id":"2069","label":"stuffing cotton into tote bag","template":"Stuffing [something] into [something]","placeholders":["cotton","tote bag"]}, +{"id":"167159","label":"moving ball and ball away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ball","ball"]}, +{"id":"109167","label":"putting one die to group of dice","template":"Putting [something similar to other things that are already on the table]","placeholders":["one die to group of dice"]}, +{"id":"100676","label":"post-it falling like a rock","template":"[Something] falling like a rock","placeholders":["post-it"]}, +{"id":"166251","label":"showing that toothbrush is inside cup","template":"Showing that [something] is inside [something]","placeholders":["toothbrush","cup"]}, +{"id":"35038","label":"poking spoon so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["spoon"]}, +{"id":"91078","label":"approaching wardrobe key with your camera","template":"Approaching [something] with your camera","placeholders":["wardrobe key"]}, +{"id":"146664","label":"closing jeep door","template":"Closing [something]","placeholders":["jeep door"]}, +{"id":"194318","label":"throwing ball against match box","template":"Throwing [something] against [something]","placeholders":["ball","match box"]}, +{"id":"901","label":"turning the camera right while filming cup","template":"Turning the camera right while filming [something]","placeholders":["cup"]}, +{"id":"216381","label":"tipping something with something in it over, so something in it falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["something","something in it","something in it"]}, +{"id":"209343","label":"putting knife into sheath","template":"Putting [something] into [something]","placeholders":["knife","sheath"]}, +{"id":"52409","label":"approaching flowers with your camera","template":"Approaching [something] with your camera","placeholders":["flowers"]}, +{"id":"95730","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"193606","label":"putting a yellow marker next to other markers on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a yellow marker next to other markers on the table"]}, +{"id":"14208","label":"pretending to take coin from coin","template":"Pretending to take [something] from [somewhere]","placeholders":["coin","coin"]}, +{"id":"171439","label":"moving scrap paper away from scrap paper","template":"Moving [something] away from [something]","placeholders":["scrap paper","scrap paper"]}, +{"id":"160038","label":"dropping phone in front of pillow","template":"Dropping [something] in front of [something]","placeholders":["phone","pillow"]}, +{"id":"62770","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"41675","label":"taking a cellphone","template":"Taking [one of many similar things on the table]","placeholders":["a cellphone"]}, +{"id":"147782","label":"showing cream tube behind the bowl","template":"Showing [something] behind [something]","placeholders":["cream tube","the bowl"]}, +{"id":"195337","label":"showing play doh container to the camera","template":"Showing [something] to the camera","placeholders":["play doh container"]}, +{"id":"50754","label":"trying to bend metal spoon so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal spoon"]}, +{"id":"9094","label":"dropping container in front of basket","template":"Dropping [something] in front of [something]","placeholders":["container","basket"]}, +{"id":"162986","label":"lifting plate with cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","cup"]}, +{"id":"206768","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"22865","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"122104","label":"pretending to close ketchup bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["ketchup bottle"]}, +{"id":"165580","label":"pushing stick of deodorant off of bed","template":"Pushing [something] off of [something]","placeholders":["stick of deodorant","bed"]}, +{"id":"8001","label":"pretending to poke candle","template":"Pretending to poke [something]","placeholders":["candle"]}, +{"id":"101120","label":"spinning umperla that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["umperla"]}, +{"id":"194336","label":"lifting up one end of wood log, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["wood log"]}, +{"id":"181683","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"48420","label":"l stick falling like a rock","template":"[Something] falling like a rock","placeholders":["l stick"]}, +{"id":"184961","label":"poking dinosaur figure so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["dinosaur figure"]}, +{"id":"37713","label":"trying but failing to attach a paper to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a paper","the wall"]}, +{"id":"150311","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"171602","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"7741","label":"pushing candle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["candle"]}, +{"id":"5472","label":"putting a pen, an eraser and a glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pen","an eraser","a glass"]}, +{"id":"197841","label":"taking silver plate out of sugar bottle","template":"Taking [something] out of [something]","placeholders":["silver plate","sugar bottle"]}, +{"id":"99266","label":"pulling casio from behind of pillow","template":"Pulling [something] from behind of [something]","placeholders":["casio","pillow"]}, +{"id":"204032","label":"holding mobile over study table","template":"Holding [something] over [something]","placeholders":["mobile","study table"]}, +{"id":"87845","label":"putting tv control upright on the table","template":"Putting [something] upright on the table","placeholders":["tv control"]}, +{"id":"85463","label":"rubberband falling like a rock","template":"[Something] falling like a rock","placeholders":["rubberband"]}, +{"id":"217858","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"201329","label":"pretending to throw ketchup bottle","template":"Pretending to throw [something]","placeholders":["ketchup bottle"]}, +{"id":"151059","label":"trying but failing to attach paper to a refrigerator because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper","a refrigerator"]}, +{"id":"80406","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"189783","label":"holding pencil over gift box","template":"Holding [something] over [something]","placeholders":["pencil","gift box"]}, +{"id":"129687","label":"touching (without moving) cap of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["cap","bottle"]}, +{"id":"150220","label":"putting hammer upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["hammer"]}, +{"id":"191641","label":"bending a large carrot until it breaks","template":"Bending [something] until it breaks","placeholders":["a large carrot"]}, +{"id":"168327","label":"pretending to sprinkle air onto glass","template":"Pretending to sprinkle air onto [something]","placeholders":["glass"]}, +{"id":"120426","label":"showing that a marker is inside a pencil holder","template":"Showing that [something] is inside [something]","placeholders":["a marker","a pencil holder"]}, +{"id":"146933","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"143352","label":"showing that milk is inside a bottle","template":"Showing that [something] is inside [something]","placeholders":["milk","a bottle"]}, +{"id":"60455","label":"dropping keys onto bag","template":"Dropping [something] onto [something]","placeholders":["keys","bag"]}, +{"id":"36074","label":"uncovering paper","template":"Uncovering [something]","placeholders":["paper"]}, +{"id":"19832","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"142512","label":"plugging cord into headset","template":"Plugging [something] into [something]","placeholders":["cord","headset"]}, +{"id":"98864","label":"turning the camera right while filming dinosaur model","template":"Turning the camera right while filming [something]","placeholders":["dinosaur model"]}, +{"id":"115386","label":"hand towel being deflected from cabinet","template":"[Something] being deflected from [something]","placeholders":["hand towel","cabinet"]}, +{"id":"216410","label":"dropping ball into measuring jug","template":"Dropping [something] into [something]","placeholders":["ball","measuring jug"]}, +{"id":"210811","label":"dropping wrist-watch onto plastic-container","template":"Dropping [something] onto [something]","placeholders":["wrist-watch","plastic-container"]}, +{"id":"160418","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"195925","label":"rolling shampoo bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["shampoo bottle"]}, +{"id":"130198","label":"moving wallet across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["wallet"]}, +{"id":"124932","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"163396","label":"stickers falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["stickers"]}, +{"id":"179295","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"72269","label":"putting a dvd next to a tissue box","template":"Putting [something] next to [something]","placeholders":["a dvd","a tissue box"]}, +{"id":"190407","label":"showing wine bottles to the camera","template":"Showing [something] to the camera","placeholders":["wine bottles"]}, +{"id":"122492","label":"twisting something","template":"Twisting [something]","placeholders":["something"]}, +{"id":"127713","label":"showing medicine bottle behind plastic cube","template":"Showing [something] behind [something]","placeholders":["medicine bottle","plastic cube"]}, +{"id":"70959","label":"turning stuffed animal upside down","template":"Turning [something] upside down","placeholders":["stuffed animal"]}, +{"id":"129834","label":"pushing coaster off of table","template":"Pushing [something] off of [something]","placeholders":["coaster","table"]}, +{"id":"67177","label":"showing cigarette lighter on top of duster","template":"Showing [something] on top of [something]","placeholders":["cigarette lighter","duster"]}, +{"id":"108361","label":"moving a paint brush down","template":"Moving [something] down","placeholders":["a paint brush"]}, +{"id":"197975","label":"pushing specs with book","template":"Pushing [something] with [something]","placeholders":["specs","book"]}, +{"id":"81258","label":"pulling one tealight candle from left to right","template":"Pulling [something] from left to right","placeholders":["one tealight candle"]}, +{"id":"190267","label":"putting a round glass paperweight with other paperweights on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a round glass paperweight with other paperweights on the table"]}, +{"id":"164059","label":"plugging extension plug into wall plug","template":"Plugging [something] into [something]","placeholders":["extension plug","wall plug"]}, +{"id":"189300","label":"pretending to be tearing a mousepad","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a mousepad"]}, +{"id":"201219","label":"holding book in front of shoe","template":"Holding [something] in front of [something]","placeholders":["book","shoe"]}, +{"id":"215894","label":"attaching a lightbulb to a candlewarmer","template":"Attaching [something] to [something]","placeholders":["a lightbulb","a candlewarmer"]}, +{"id":"110358","label":"moving sugar bowl up","template":"Moving [something] up","placeholders":["sugar bowl"]}, +{"id":"155599","label":"approaching black microwave with your camera","template":"Approaching [something] with your camera","placeholders":["black microwave"]}, +{"id":"217895","label":"dropping a matchstick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a remote"]}, +{"id":"52805","label":"taking a candle","template":"Taking [one of many similar things on the table]","placeholders":["a candle"]}, +{"id":"196030","label":"putting a tomato behind a mug","template":"Putting [something] behind [something]","placeholders":["a tomato","a mug"]}, +{"id":"145776","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"70956","label":"putting hairband on a surface","template":"Putting [something] on a surface","placeholders":["hairband"]}, +{"id":"62553","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"82165","label":"plugging charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall outlet"]}, +{"id":"123033","label":"holding keys over a box","template":"Holding [something] over [something]","placeholders":["keys","a box"]}, +{"id":"164199","label":"holding envelope next to cup","template":"Holding [something] next to [something]","placeholders":["envelope","cup"]}, +{"id":"99908","label":"closing a microwave oven door","template":"Closing [something]","placeholders":["a microwave oven door"]}, +{"id":"70283","label":"putting brush","template":"Putting [something similar to other things that are already on the table]","placeholders":["brush"]}, +{"id":"9991","label":"moving note book up","template":"Moving [something] up","placeholders":["note book"]}, +{"id":"149591","label":"turning a painting upside down","template":"Turning [something] upside down","placeholders":["a painting"]}, +{"id":"190163","label":"showing a coconut shell on top of the powder tin","template":"Showing [something] on top of [something]","placeholders":["a coconut shell","the powder tin"]}, +{"id":"43819","label":"putting a pencil into a glass","template":"Putting [something] into [something]","placeholders":["a pencil","a glass"]}, +{"id":"172565","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"193292","label":"pushing a candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a candle"]}, +{"id":"156458","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"68527","label":"taking jalebi sweet from packet","template":"Taking [something] from [somewhere]","placeholders":["jalebi sweet","packet"]}, +{"id":"204105","label":"covering a cat with a blanket","template":"Covering [something] with [something]","placeholders":["a cat","a blanket"]}, +{"id":"198082","label":"moving a small jar closer to a jug","template":"Moving [something] closer to [something]","placeholders":["a small jar","a jug"]}, +{"id":"198342","label":"putting wax jar on a surface","template":"Putting [something] on a surface","placeholders":["wax jar"]}, +{"id":"112707","label":"pretending to open jam-box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jam-box"]}, +{"id":"168278","label":"pouring water into water bottle","template":"Pouring [something] into [something]","placeholders":["water","water bottle"]}, +{"id":"116516","label":"poking paper towels so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["paper towels"]}, +{"id":"34779","label":"holding knife next to pillow","template":"Holding [something] next to [something]","placeholders":["knife","pillow"]}, +{"id":"40616","label":"unfolding a sheet of paper","template":"Unfolding [something]","placeholders":["a sheet of paper"]}, +{"id":"58412","label":"lifting a glasses case up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a glasses case"]}, +{"id":"210221","label":"throwing eraser","template":"Throwing [something]","placeholders":["eraser"]}, +{"id":"199151","label":"plugging a charger into a socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a socket"]}, +{"id":"211066","label":"tearing a box just a little bit","template":"Tearing [something] just a little bit","placeholders":["a box"]}, +{"id":"1729","label":"showing that sink is empty","template":"Showing that [something] is empty","placeholders":["sink"]}, +{"id":"186388","label":"putting lunchbox on a surface","template":"Putting [something] on a surface","placeholders":["lunchbox"]}, +{"id":"150994","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"81419","label":"pushing bittle with spoon","template":"Pushing [something] with [something]","placeholders":["bittle","spoon"]}, +{"id":"56041","label":"tearing card into two pieces","template":"Tearing [something] into two pieces","placeholders":["card"]}, +{"id":"92260","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"17296","label":"pretending to take comb from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["comb","bed"]}, +{"id":"112470","label":"dropping ball into cup","template":"Dropping [something] into [something]","placeholders":["ball","cup"]}, +{"id":"191867","label":"wiping a tissue off of a table","template":"Wiping [something] off of [something]","placeholders":["a tissue","a table"]}, +{"id":"36205","label":"holding a computer mouse next to a keyboard","template":"Holding [something] next to [something]","placeholders":["a computer mouse","a keyboard"]}, +{"id":"170438","label":"poking a hole into slime","template":"Poking a hole into [something soft]","placeholders":["slime"]}, +{"id":"97274","label":"moving a toy car and a fridge magnet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a toy car","a fridge magnet"]}, +{"id":"14662","label":"putting dice into plastic cup","template":"Putting [something] into [something]","placeholders":["dice","plastic cup"]}, +{"id":"39097","label":"putting wallet into drawer","template":"Putting [something] into [something]","placeholders":["wallet","drawer"]}, +{"id":"117461","label":"covering pendrive with simba plush","template":"Covering [something] with [something]","placeholders":["pendrive","simba plush"]}, +{"id":"41384","label":"twisting napkin","template":"Twisting [something]","placeholders":["napkin"]}, +{"id":"119534","label":"moving a strawberry candy and a lemon candy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a strawberry candy","a lemon candy"]}, +{"id":"122527","label":"failing to put phone into bottle because phone does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["phone","bottle","phone"]}, +{"id":"143401","label":"pushing marker pen from right to left","template":"Pushing [something] from right to left","placeholders":["marker pen"]}, +{"id":"45645","label":"pretending to take toothbrush from roof","template":"Pretending to take [something] from [somewhere]","placeholders":["toothbrush","roof"]}, +{"id":"88599","label":"putting pebble onto glass","template":"Putting [something] onto [something]","placeholders":["pebble","glass"]}, +{"id":"161146","label":"pushing screwdriver so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["screwdriver"]}, +{"id":"54280","label":"putting a pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen"]}, +{"id":"173817","label":"turning tin upside down","template":"Turning [something] upside down","placeholders":["tin"]}, +{"id":"32343","label":"turning an ipad upside down","template":"Turning [something] upside down","placeholders":["an ipad"]}, +{"id":"196256","label":"holding a plate over a sink","template":"Holding [something] over [something]","placeholders":["a plate","a sink"]}, +{"id":"85892","label":"moving box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["box"]}, +{"id":"154186","label":"spinning a ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ball"]}, +{"id":"58840","label":"throwing lemon in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["lemon"]}, +{"id":"139756","label":"showing lipbalm behind coffee","template":"Showing [something] behind [something]","placeholders":["lipbalm","coffee"]}, +{"id":"108728","label":"holding a catcher next to the door","template":"Holding [something] next to [something]","placeholders":["a catcher","the door"]}, +{"id":"54331","label":"moving lid of metal can","template":"Moving [part] of [something]","placeholders":["lid","metal can"]}, +{"id":"141576","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"35901","label":"hitting a box with a pencil","template":"Hitting [something] with [something]","placeholders":["a box","a pencil"]}, +{"id":"135188","label":"pushing wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["wallet"]}, +{"id":"212341","label":"showing that magnifying glass is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["magnifying glass","spectacle box"]}, +{"id":"159829","label":"pushing geometric compass with marker pen","template":"Pushing [something] with [something]","placeholders":["geometric compass","marker pen"]}, +{"id":"117385","label":"holding cup in front of sheild","template":"Holding [something] in front of [something]","placeholders":["cup","sheild"]}, +{"id":"26051","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"104079","label":"a childs block falling like a rock","template":"[Something] falling like a rock","placeholders":["a childs block"]}, +{"id":"190482","label":"uncovering pebble","template":"Uncovering [something]","placeholders":["pebble"]}, +{"id":"211034","label":"squeezing polythene","template":"Squeezing [something]","placeholders":["polythene"]}, +{"id":"160375","label":"showing controller next to a coffee pot","template":"Showing [something] next to [something]","placeholders":["controller","a coffee pot"]}, +{"id":"70679","label":"showing that yellow container is empty","template":"Showing that [something] is empty","placeholders":["yellow container"]}, +{"id":"23814","label":"plugging mobile charger into socket","template":"Plugging [something] into [something]","placeholders":["mobile charger","socket"]}, +{"id":"63671","label":"putting wallet behind the cream tube","template":"Putting [something] behind [something]","placeholders":["wallet","the cream tube"]}, +{"id":"32896","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"59090","label":"throwing metal against bowl","template":"Throwing [something] against [something]","placeholders":["metal","bowl"]}, +{"id":"31938","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"29287","label":"covering lantern with jacket","template":"Covering [something] with [something]","placeholders":["lantern","jacket"]}, +{"id":"167126","label":"trying to bend key so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["key"]}, +{"id":"62954","label":"hitting a mop bucket with a mop stick","template":"Hitting [something] with [something]","placeholders":["a mop bucket","a mop stick"]}, +{"id":"178047","label":"spilling water onto a table","template":"Spilling [something] onto [something]","placeholders":["water","a table"]}, +{"id":"199457","label":"tearing a bun into two pieces","template":"Tearing [something] into two pieces","placeholders":["a bun"]}, +{"id":"144207","label":"moving away from lighter with your camera","template":"Moving away from [something] with your camera","placeholders":["lighter"]}, +{"id":"152743","label":"uncovering cd","template":"Uncovering [something]","placeholders":["cd"]}, +{"id":"191335","label":"holding a pillow","template":"Holding [something]","placeholders":["a pillow"]}, +{"id":"12315","label":"putting perfume bottle in front of clip","template":"Putting [something] in front of [something]","placeholders":["perfume bottle","clip"]}, +{"id":"179068","label":"throwing small box onto a surface","template":"Throwing [something] onto a surface","placeholders":["small box"]}, +{"id":"5216","label":"stuffing tissue into tissue box","template":"Stuffing [something] into [something]","placeholders":["tissue","tissue box"]}, +{"id":"34048","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"33274","label":"putting a hairclip upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a hairclip"]}, +{"id":"176842","label":"bending text book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["text book"]}, +{"id":"160447","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"184866","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"113961","label":"putting orange on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["orange"]}, +{"id":"98791","label":"showing hanger to the camera","template":"Showing [something] to the camera","placeholders":["hanger"]}, +{"id":"199354","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"45894","label":"twisting handkerchief","template":"Twisting [something]","placeholders":["handkerchief"]}, +{"id":"126691","label":"unfolding a washclothe","template":"Unfolding [something]","placeholders":["a washclothe"]}, +{"id":"145754","label":"tipping a plastic cup over","template":"Tipping [something] over","placeholders":["a plastic cup"]}, +{"id":"215765","label":"putting cell phone and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["cell phone","cup"]}, +{"id":"213619","label":"moving box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["box"]}, +{"id":"144826","label":"showing a candle next to the match box","template":"Showing [something] next to [something]","placeholders":["a candle","the match box"]}, +{"id":"25965","label":"putting a pen behind a measuring cup","template":"Putting [something] behind [something]","placeholders":["a pen","a measuring cup"]}, +{"id":"7449","label":"rolling a glue stick on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a glue stick"]}, +{"id":"5532","label":"putting a paper clip on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a paper clip on the table"]}, +{"id":"27494","label":"taking water bottle","template":"Taking [one of many similar things on the table]","placeholders":["water bottle"]}, +{"id":"181820","label":"plugging a phone charger into the wall outlet","template":"Plugging [something] into [something]","placeholders":["a phone charger","the wall outlet"]}, +{"id":"181444","label":"ad paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["ad paper"]}, +{"id":"56097","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"198202","label":"pretending to turn cards upside down","template":"Pretending to turn [something] upside down","placeholders":["cards"]}, +{"id":"16943","label":"dropping wallet behind couch","template":"Dropping [something] behind [something]","placeholders":["wallet","couch"]}, +{"id":"27861","label":"dropping skateboard in front of robot","template":"Dropping [something] in front of [something]","placeholders":["skateboard","robot"]}, +{"id":"131429","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"43241","label":"touching (without moving) cap of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["cap","bottle"]}, +{"id":"38904","label":"throwing comb","template":"Throwing [something]","placeholders":["comb"]}, +{"id":"138274","label":"throwing pomegranate against water-can","template":"Throwing [something] against [something]","placeholders":["pomegranate","water-can"]}, +{"id":"56826","label":"uncovering bed","template":"Uncovering [something]","placeholders":["bed"]}, +{"id":"211749","label":"toy car colliding with another toy car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["toy car","another toy car"]}, +{"id":"25768","label":"dropping paper behind wineglass","template":"Dropping [something] behind [something]","placeholders":["paper","wineglass"]}, +{"id":"38421","label":"hitting bed with pillow","template":"Hitting [something] with [something]","placeholders":["bed","pillow"]}, +{"id":"183980","label":"pulling glas from right to left","template":"Pulling [something] from right to left","placeholders":["glas"]}, +{"id":"201372","label":"putting a box next to a bucket","template":"Putting [something] next to [something]","placeholders":["a box","a bucket"]}, +{"id":"87844","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"187685","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"16776","label":"pretending to put red watch box on a surface","template":"Pretending to put [something] on a surface","placeholders":["red watch box"]}, +{"id":"13804","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"50485","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"204061","label":"throwing stapler onto a surface","template":"Throwing [something] onto a surface","placeholders":["stapler"]}, +{"id":"114460","label":"dropping pen onto box","template":"Dropping [something] onto [something]","placeholders":["pen","box"]}, +{"id":"116497","label":"throwing a book","template":"Throwing [something]","placeholders":["a book"]}, +{"id":"197831","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"126557","label":"holding a book over a pen","template":"Holding [something] over [something]","placeholders":["a book","a pen"]}, +{"id":"187315","label":"lifting powerbank with airpods case on it","template":"Lifting [something] with [something] on it","placeholders":["powerbank","airpods case"]}, +{"id":"155565","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"94733","label":"uncovering the bottle","template":"Uncovering [something]","placeholders":["the bottle"]}, +{"id":"110579","label":"bending notebook so that it deforms","template":"Bending [something] so that it deforms","placeholders":["notebook"]}, +{"id":"133315","label":"pretending to be tearing shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shirt"]}, +{"id":"55230","label":"turning the camera upwards while filming wastebin","template":"Turning the camera upwards while filming [something]","placeholders":["wastebin"]}, +{"id":"11214","label":"showing an air conditioner on top of the wall","template":"Showing [something] on top of [something]","placeholders":["an air conditioner","the wall"]}, +{"id":"172242","label":"spinning spoon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spoon"]}, +{"id":"116279","label":"pushing mouse from right to left","template":"Pushing [something] from right to left","placeholders":["mouse"]}, +{"id":"199373","label":"putting a hairclip onto a deodorant","template":"Putting [something] onto [something]","placeholders":["a hairclip","a deodorant"]}, +{"id":"93854","label":"plugging adaptor into plug","template":"Plugging [something] into [something]","placeholders":["adaptor","plug"]}, +{"id":"124044","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"167347","label":"putting napkins in front of shakers","template":"Putting [something] in front of [something]","placeholders":["napkins","shakers"]}, +{"id":"137733","label":"plugging usb cable into phone","template":"Plugging [something] into [something]","placeholders":["usb cable","phone"]}, +{"id":"72697","label":"poking battleship game so that it falls over","template":"Poking [something] so that it falls over","placeholders":["battleship game"]}, +{"id":"148605","label":"candle falling like a rock","template":"[Something] falling like a rock","placeholders":["candle"]}, +{"id":"152269","label":"plugging box into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["box","wall"]}, +{"id":"195270","label":"showing wine bottles to the camera","template":"Showing [something] to the camera","placeholders":["wine bottles"]}, +{"id":"125248","label":"pretending to be tearing calender","template":"Pretending to be tearing [something that is not tearable]","placeholders":["calender"]}, +{"id":"192654","label":"taking bowl out of microwave","template":"Taking [something] out of [something]","placeholders":["bowl","microwave"]}, +{"id":"60963","label":"pouring orange juice out of jug","template":"Pouring [something] out of [something]","placeholders":["orange juice","jug"]}, +{"id":"34674","label":"pulling green water bottle from right to left","template":"Pulling [something] from right to left","placeholders":["green water bottle"]}, +{"id":"178932","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"192843","label":"showing mirror behind pillow","template":"Showing [something] behind [something]","placeholders":["mirror","pillow"]}, +{"id":"176411","label":"putting pen into cup","template":"Putting [something] into [something]","placeholders":["pen","cup"]}, +{"id":"195783","label":"tipping block over","template":"Tipping [something] over","placeholders":["block"]}, +{"id":"41337","label":"spinning onion that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["onion"]}, +{"id":"108798","label":"showing picture to the camera","template":"Showing [something] to the camera","placeholders":["picture"]}, +{"id":"66462","label":"pulling pink water bottle from left to right","template":"Pulling [something] from left to right","placeholders":["pink water bottle"]}, +{"id":"102994","label":"showing a fork next to a knife","template":"Showing [something] next to [something]","placeholders":["a fork","a knife"]}, +{"id":"102693","label":"taking one of many chocolates","template":"Taking [one of many similar things on the table]","placeholders":["one of many chocolates"]}, +{"id":"199038","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"97173","label":"pretending or failing to wipe hard candy off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["hard candy","counter"]}, +{"id":"2329","label":"dropping fork onto table","template":"Dropping [something] onto [something]","placeholders":["fork","table"]}, +{"id":"105135","label":"stacking 2 spanners","template":"Stacking [number of] [something]","placeholders":["2","spanners"]}, +{"id":"69602","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"166902","label":"moving a pen and a pencil so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a pen","a pencil"]}, +{"id":"200511","label":"showing pen next to blue pen cap","template":"Showing [something] next to [something]","placeholders":["pen","blue pen cap"]}, +{"id":"43134","label":"putting a travel mug on a surface","template":"Putting [something] on a surface","placeholders":["a travel mug"]}, +{"id":"3053","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"34617","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"120443","label":"laying jar on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["jar"]}, +{"id":"85124","label":"showing children's slid to the camera","template":"Showing [something] to the camera","placeholders":["children's slid"]}, +{"id":"89608","label":"pretending to pick a book up","template":"Pretending to pick [something] up","placeholders":["a book"]}, +{"id":"70556","label":"covering key with tissue","template":"Covering [something] with [something]","placeholders":["key","tissue"]}, +{"id":"153296","label":"tilting table with bucket on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["table","bucket"]}, +{"id":"198617","label":"squeezing toilet paper","template":"Squeezing [something]","placeholders":["toilet paper"]}, +{"id":"73350","label":"throwing car keys in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["car keys"]}, +{"id":"220229","label":"touching (without moving) the tip of scissors","template":"Touching (without moving) [part] of [something]","placeholders":["the tip","scissors"]}, +{"id":"56806","label":"showing dinosaur prototype to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur prototype"]}, +{"id":"99274","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"192103","label":"antler falling like a rock","template":"[Something] falling like a rock","placeholders":["antler"]}, +{"id":"89830","label":"pushing compact disc from left to right","template":"Pushing [something] from left to right","placeholders":["compact disc"]}, +{"id":"73397","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"135381","label":"pretending to pick a bunch of keys up","template":"Pretending to pick [something] up","placeholders":["a bunch of keys"]}, +{"id":"51531","label":"holding purse in front of picture","template":"Holding [something] in front of [something]","placeholders":["purse","picture"]}, +{"id":"122635","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"1938","label":"holding a container","template":"Holding [something]","placeholders":["a container"]}, +{"id":"193442","label":"marker falling like a rock","template":"[Something] falling like a rock","placeholders":["marker"]}, +{"id":"19853","label":"putting book, lighter and charger on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","lighter","charger"]}, +{"id":"22364","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"62344","label":"letting a hollow pipe roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a hollow pipe"]}, +{"id":"88480","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"84867","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"84598","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"194686","label":"tipping glass bottle over","template":"Tipping [something] over","placeholders":["glass bottle"]}, +{"id":"211247","label":"pushing a spinner so it spins","template":"Pushing [something] so it spins","placeholders":["a spinner"]}, +{"id":"26475","label":"holding water bottle behind glass","template":"Holding [something] behind [something]","placeholders":["water bottle","glass"]}, +{"id":"27267","label":"moving thimble up","template":"Moving [something] up","placeholders":["thimble"]}, +{"id":"175022","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"14453","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"169849","label":"pretending to poke a battery","template":"Pretending to poke [something]","placeholders":["a battery"]}, +{"id":"165834","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"213060","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"67399","label":"moving key chain down","template":"Moving [something] down","placeholders":["key chain"]}, +{"id":"16328","label":"spilling water onto a sock","template":"Spilling [something] onto [something]","placeholders":["water","a sock"]}, +{"id":"75814","label":"throwing sport shoe in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["sport shoe"]}, +{"id":"46538","label":"picking basket up","template":"Picking [something] up","placeholders":["basket"]}, +{"id":"209154","label":"throwing board clip against stapler","template":"Throwing [something] against [something]","placeholders":["board clip","stapler"]}, +{"id":"156677","label":"plugging usb into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","computer"]}, +{"id":"55153","label":"moving top of potty","template":"Moving [part] of [something]","placeholders":["top","potty"]}, +{"id":"157156","label":"showing blue lighter to the camera","template":"Showing [something] to the camera","placeholders":["blue lighter"]}, +{"id":"7379","label":"putting pencil and brown colour sketch on the table","template":"Putting [something] and [something] on the table","placeholders":["pencil","brown colour sketch"]}, +{"id":"161366","label":"turning remote upside down","template":"Turning [something] upside down","placeholders":["remote"]}, +{"id":"99812","label":"moving a candle and a candle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a candle","a candle"]}, +{"id":"120556","label":"moving shoe and shoe away from each other","template":"Moving [something] and [something] away from each other","placeholders":["shoe","shoe"]}, +{"id":"68128","label":"taking spoon out of container","template":"Taking [something] out of [something]","placeholders":["spoon","container"]}, +{"id":"63160","label":"pretending to open small container without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["small container"]}, +{"id":"83740","label":"a key chain falling like a rock","template":"[Something] falling like a rock","placeholders":["a key chain"]}, +{"id":"177407","label":"pretending to take glass from table","template":"Pretending to take [something] from [somewhere]","placeholders":["glass","table"]}, +{"id":"119994","label":"pushing face wash so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["face wash"]}, +{"id":"119322","label":"showing that cloth is inside case","template":"Showing that [something] is inside [something]","placeholders":["cloth","case"]}, +{"id":"151431","label":"dropping cleaning cloth onto floor","template":"Dropping [something] onto [something]","placeholders":["cleaning cloth","floor"]}, +{"id":"83581","label":"letting exercise cylinder roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["exercise cylinder"]}, +{"id":"147671","label":"throwing pillow onto a surface","template":"Throwing [something] onto a surface","placeholders":["pillow"]}, +{"id":"2104","label":"pushing book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["book"]}, +{"id":"5807","label":"throwing a comb against motorcycle","template":"Throwing [something] against [something]","placeholders":["a comb","motorcycle"]}, +{"id":"179990","label":"pushing small freshmints from left to right","template":"Pushing [something] from left to right","placeholders":["small freshmints"]}, +{"id":"100589","label":"candy falling like a rock","template":"[Something] falling like a rock","placeholders":["candy"]}, +{"id":"108088","label":"tipping an owl over","template":"Tipping [something] over","placeholders":["an owl"]}, +{"id":"132866","label":"pretending to squeeze a metal ash-try","template":"Pretending to squeeze [something]","placeholders":["a metal ash-try"]}, +{"id":"149246","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"186221","label":"tipping a box over","template":"Tipping [something] over","placeholders":["a box"]}, +{"id":"104455","label":"putting comb next to toy","template":"Putting [something] next to [something]","placeholders":["comb","toy"]}, +{"id":"199117","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"108280","label":"stuffing towel into cup","template":"Stuffing [something] into [something]","placeholders":["towel","cup"]}, +{"id":"183649","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"181094","label":"pushing a container so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a container"]}, +{"id":"140150","label":"pulling box out of christmas stocking","template":"Pulling [something] out of [something]","placeholders":["box","christmas stocking"]}, +{"id":"141696","label":"turning a tv remote upside down","template":"Turning [something] upside down","placeholders":["a tv remote"]}, +{"id":"98615","label":"putting a vape upright on the table","template":"Putting [something] upright on the table","placeholders":["a vape"]}, +{"id":"64687","label":"putting knife into container","template":"Putting [something] into [something]","placeholders":["knife","container"]}, +{"id":"192123","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"140575","label":"pushing soap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["soap"]}, +{"id":"124050","label":"lifting up one end of dvd, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["dvd"]}, +{"id":"43954","label":"pushing green face powder from left to right","template":"Pushing [something] from left to right","placeholders":["green face powder"]}, +{"id":"125909","label":"holding mosquito bat","template":"Holding [something]","placeholders":["mosquito bat"]}, +{"id":"8593","label":"tilting lid with sponge on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["lid","sponge"]}, +{"id":"118909","label":"holding pouch","template":"Holding [something]","placeholders":["pouch"]}, +{"id":"143508","label":"putting a peg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a peg"]}, +{"id":"5492","label":"putting a bottle on the edge of a counter so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a bottle","a counter"]}, +{"id":"212492","label":"falling receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling receipt"]}, +{"id":"55360","label":"unfolding a handkerchief","template":"Unfolding [something]","placeholders":["a handkerchief"]}, +{"id":"161722","label":"picking calculator up","template":"Picking [something] up","placeholders":["calculator"]}, +{"id":"67939","label":"picking the remote up","template":"Picking [something] up","placeholders":["the remote"]}, +{"id":"48955","label":"holding tablet box","template":"Holding [something]","placeholders":["tablet box"]}, +{"id":"203413","label":"bending hanger so that it deforms","template":"Bending [something] so that it deforms","placeholders":["hanger"]}, +{"id":"206083","label":"pretending to take cellphone from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","floor"]}, +{"id":"159326","label":"dropping pen behind glass","template":"Dropping [something] behind [something]","placeholders":["pen","glass"]}, +{"id":"202246","label":"pretending to put bracelet next to tree","template":"Pretending to put [something] next to [something]","placeholders":["bracelet","tree"]}, +{"id":"98127","label":"approaching jeep with your camera","template":"Approaching [something] with your camera","placeholders":["jeep"]}, +{"id":"25379","label":"holding phone over bottle","template":"Holding [something] over [something]","placeholders":["phone","bottle"]}, +{"id":"164183","label":"turning cards upside down","template":"Turning [something] upside down","placeholders":["cards"]}, +{"id":"199215","label":"lifting books with bottle on it","template":"Lifting [something] with [something] on it","placeholders":["books","bottle"]}, +{"id":"166239","label":"pushing tissues from right to left","template":"Pushing [something] from right to left","placeholders":["tissues"]}, +{"id":"197669","label":"moving bottle and bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","bottle"]}, +{"id":"150869","label":"twisting water bottle lid","template":"Twisting [something]","placeholders":["water bottle lid"]}, +{"id":"174709","label":"spilling water onto dishes","template":"Spilling [something] onto [something]","placeholders":["water","dishes"]}, +{"id":"19122","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"75793","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"220183","label":"tape being deflected from cushion","template":"[Something] being deflected from [something]","placeholders":["tape","cushion"]}, +{"id":"370","label":"holding pen next to a book","template":"Holding [something] next to [something]","placeholders":["pen","a book"]}, +{"id":"183432","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"24630","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"103091","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"6161","label":"stacking five notebooks","template":"Stacking [number of] [something]","placeholders":["five","notebooks"]}, +{"id":"130836","label":"putting a mug that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a mug"]}, +{"id":"10335","label":"moving top of soap","template":"Moving [part] of [something]","placeholders":["top","soap"]}, +{"id":"9614","label":"putting a pen in pile of pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen in pile of pens"]}, +{"id":"180022","label":"attaching magnet to dishwasher","template":"Attaching [something] to [something]","placeholders":["magnet","dishwasher"]}, +{"id":"72196","label":"taking a biro out of a plastic box","template":"Taking [something] out of [something]","placeholders":["a biro","a plastic box"]}, +{"id":"198950","label":"showing a screwdiver next to the lotion tin","template":"Showing [something] next to [something]","placeholders":["a screwdiver","the lotion tin"]}, +{"id":"177812","label":"squeezing socks","template":"Squeezing [something]","placeholders":["socks"]}, +{"id":"62430","label":"moving powerbank and airpods case closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["powerbank","airpods case"]}, +{"id":"161302","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"153637","label":"pretending to throw a ball","template":"Pretending to throw [something]","placeholders":["a ball"]}, +{"id":"80906","label":"closing the oven","template":"Closing [something]","placeholders":["the oven"]}, +{"id":"170918","label":"stuffing tissue into a jar","template":"Stuffing [something] into [something]","placeholders":["tissue","a jar"]}, +{"id":"126159","label":"pushing baby pram with plastic bottle","template":"Pushing [something] with [something]","placeholders":["baby pram","plastic bottle"]}, +{"id":"3082","label":"plugging plug into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","outlet"]}, +{"id":"147468","label":"trying but failing to attach cell to cell because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["cell","cell"]}, +{"id":"36255","label":"dropping tomato into bowl","template":"Dropping [something] into [something]","placeholders":["tomato","bowl"]}, +{"id":"93414","label":"holding remote behind can","template":"Holding [something] behind [something]","placeholders":["remote","can"]}, +{"id":"208560","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"214731","label":"pretending to put pink toothbrush case on a surface","template":"Pretending to put [something] on a surface","placeholders":["pink toothbrush case"]}, +{"id":"96878","label":"putting teabag","template":"Putting [something similar to other things that are already on the table]","placeholders":["teabag"]}, +{"id":"43428","label":"moving away from measuring tape with your camera","template":"Moving away from [something] with your camera","placeholders":["measuring tape"]}, +{"id":"80818","label":"throwing earcup","template":"Throwing [something]","placeholders":["earcup"]}, +{"id":"160013","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"212","label":"putting paint tube next to cactus","template":"Putting [something] next to [something]","placeholders":["paint tube","cactus"]}, +{"id":"85066","label":"plugging a usb cable into a desktop microphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb cable","a desktop microphone"]}, +{"id":"110716","label":"pretending to put soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["soap"]}, +{"id":"73131","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"71103","label":"lifting up one end of a pencil without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pencil"]}, +{"id":"159073","label":"pulling two ends of straw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["straw"]}, +{"id":"86616","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"66545","label":"plugging a plug into a wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","a wall plug"]}, +{"id":"152151","label":"pretending to open a book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a book"]}, +{"id":"60960","label":"unfolding a tissue","template":"Unfolding [something]","placeholders":["a tissue"]}, +{"id":"59884","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"111579","label":"showing that matchbox is empty","template":"Showing that [something] is empty","placeholders":["matchbox"]}, +{"id":"90792","label":"throwing plastic bottle against rock","template":"Throwing [something] against [something]","placeholders":["plastic bottle","rock"]}, +{"id":"161687","label":"pouring coffee out of a glass","template":"Pouring [something] out of [something]","placeholders":["coffee","a glass"]}, +{"id":"203473","label":"turning the camera downwards while filming old mobile phone","template":"Turning the camera downwards while filming [something]","placeholders":["old mobile phone"]}, +{"id":"114096","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"10411","label":"tipping a bag over","template":"Tipping [something] over","placeholders":["a bag"]}, +{"id":"200490","label":"moving lid of cream container","template":"Moving [part] of [something]","placeholders":["lid","cream container"]}, +{"id":"67325","label":"moving a toothpick container closer to a plate","template":"Moving [something] closer to [something]","placeholders":["a toothpick container","a plate"]}, +{"id":"12499","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"197889","label":"pretending to put fruit behind jar","template":"Pretending to put [something] behind [something]","placeholders":["fruit","jar"]}, +{"id":"49534","label":"rolling box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["box"]}, +{"id":"115061","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"146601","label":"laying a glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glass"]}, +{"id":"72315","label":"putting a chair in front of the door","template":"Putting [something] in front of [something]","placeholders":["a chair","the door"]}, +{"id":"93845","label":"pouring water out of a jug","template":"Pouring [something] out of [something]","placeholders":["water","a jug"]}, +{"id":"164718","label":"holding bananas in front of clock","template":"Holding [something] in front of [something]","placeholders":["bananas","clock"]}, +{"id":"186786","label":"moving a shoe and another shoe so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a shoe","another shoe"]}, +{"id":"70528","label":"putting block that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["block"]}, +{"id":"48705","label":"plugging cord into electrical outlet","template":"Plugging [something] into [something]","placeholders":["cord","electrical outlet"]}, +{"id":"143243","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"120910","label":"squeezing a rubber ducky","template":"Squeezing [something]","placeholders":["a rubber ducky"]}, +{"id":"170105","label":"covering a calculator with a cloth","template":"Covering [something] with [something]","placeholders":["a calculator","a cloth"]}, +{"id":"188811","label":"putting spoon behind cup","template":"Putting [something] behind [something]","placeholders":["spoon","cup"]}, +{"id":"75635","label":"pushing toy gun off of laptop","template":"Pushing [something] off of [something]","placeholders":["toy gun","laptop"]}, +{"id":"61311","label":"pretending to turn remote upside down","template":"Pretending to turn [something] upside down","placeholders":["remote"]}, +{"id":"31592","label":"tilting yellow note book with black pocket knife on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["yellow note book","black pocket knife"]}, +{"id":"217074","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"29086","label":"folding handout","template":"Folding [something]","placeholders":["handout"]}, +{"id":"184198","label":"poking notebook so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["notebook"]}, +{"id":"28327","label":"putting a plastic container onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a plastic container"]}, +{"id":"59238","label":"putting marker on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker"]}, +{"id":"2677","label":"putting metal rod on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["metal rod"]}, +{"id":"192722","label":"tilting dvd case with glasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["dvd case","glasses"]}, +{"id":"179892","label":"lifting book with glasses on it","template":"Lifting [something] with [something] on it","placeholders":["book","glasses"]}, +{"id":"36298","label":"putting a pen on the table near pencils","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen on the table near pencils"]}, +{"id":"169814","label":"tilting a book with a mug on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a mug"]}, +{"id":"17014","label":"tearing take-out menu into two pieces","template":"Tearing [something] into two pieces","placeholders":["take-out menu"]}, +{"id":"16724","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"187807","label":"squeezing lemon","template":"Squeezing [something]","placeholders":["lemon"]}, +{"id":"50807","label":"moving basketball up","template":"Moving [something] up","placeholders":["basketball"]}, +{"id":"139524","label":"moving scissor away from pick","template":"Moving [something] away from [something]","placeholders":["scissor","pick"]}, +{"id":"158229","label":"showing violin behind vase","template":"Showing [something] behind [something]","placeholders":["violin","vase"]}, +{"id":"53121","label":"removing water bottle, revealing a container behind","template":"Removing [something], revealing [something] behind","placeholders":["water bottle","a container"]}, +{"id":"169842","label":"pretending to pick handkerchief up","template":"Pretending to pick [something] up","placeholders":["handkerchief"]}, +{"id":"186952","label":"moving lip bam and pen closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lip bam","pen"]}, +{"id":"157010","label":"putting cup, stapler and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["cup","stapler","scissors"]}, +{"id":"57794","label":"pushing aim toothpaste so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["aim toothpaste"]}, +{"id":"177002","label":"putting comb onto toy","template":"Putting [something] onto [something]","placeholders":["comb","toy"]}, +{"id":"217026","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"49256","label":"lifting up one end of a ar of soap, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a ar of soap"]}, +{"id":"31627","label":"moving tab of soda can","template":"Moving [part] of [something]","placeholders":["tab","soda can"]}, +{"id":"191966","label":"plugging usb into phone charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","phone charger"]}, +{"id":"12454","label":"covering spoon with plate","template":"Covering [something] with [something]","placeholders":["spoon","plate"]}, +{"id":"89232","label":"moving soap and nail cutter so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["soap","nail cutter"]}, +{"id":"134682","label":"holding cup over the tap","template":"Holding [something] over [something]","placeholders":["cup","the tap"]}, +{"id":"92825","label":"lifting remote up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["remote"]}, +{"id":"634","label":"opening hot case","template":"Opening [something]","placeholders":["hot case"]}, +{"id":"29503","label":"moving away from hair dryer with your camera","template":"Moving away from [something] with your camera","placeholders":["hair dryer"]}, +{"id":"155826","label":"spilling water behind jar","template":"Spilling [something] behind [something]","placeholders":["water","jar"]}, +{"id":"13933","label":"attaching lid to bottle","template":"Attaching [something] to [something]","placeholders":["lid","bottle"]}, +{"id":"171834","label":"putting ashtray underneath table","template":"Putting [something] underneath [something]","placeholders":["ashtray","table"]}, +{"id":"125162","label":"spilling water next to a handkerchief","template":"Spilling [something] next to [something]","placeholders":["water","a handkerchief"]}, +{"id":"87024","label":"removing mug, revealing clip behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","clip"]}, +{"id":"153049","label":"bending tape measurer so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tape measurer"]}, +{"id":"66500","label":"pretending to sprinkle air onto someone's head","template":"Pretending to sprinkle air onto [something]","placeholders":["someone's head"]}, +{"id":"85694","label":"covering a cup with a rag","template":"Covering [something] with [something]","placeholders":["a cup","a rag"]}, +{"id":"18152","label":"showing split ac vent to the camera","template":"Showing [something] to the camera","placeholders":["split ac vent"]}, +{"id":"97259","label":"pouring water onto headlight of scooter","template":"Pouring [something] onto [something]","placeholders":["water","headlight of scooter"]}, +{"id":"89405","label":"opening banana","template":"Opening [something]","placeholders":["banana"]}, +{"id":"65007","label":"putting box in front of remote","template":"Putting [something] in front of [something]","placeholders":["box","remote"]}, +{"id":"163756","label":"lifting a mug with paper towel on it","template":"Lifting [something] with [something] on it","placeholders":["a mug","paper towel"]}, +{"id":"197580","label":"moving watch towards the camera","template":"Moving [something] towards the camera","placeholders":["watch"]}, +{"id":"26644","label":"tilting ketchup bottle with tv remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["ketchup bottle","tv remote"]}, +{"id":"64707","label":"holding scissors behind bottle","template":"Holding [something] behind [something]","placeholders":["scissors","bottle"]}, +{"id":"68400","label":"moving a phone and a lighter so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a phone","a lighter"]}, +{"id":"122173","label":"tilting plastic cup with scissors on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plastic cup","scissors"]}, +{"id":"53492","label":"putting candle on a surface","template":"Putting [something] on a surface","placeholders":["candle"]}, +{"id":"112662","label":"holding casual hat","template":"Holding [something]","placeholders":["casual hat"]}, +{"id":"141300","label":"stuffing clothes into basket","template":"Stuffing [something] into [something]","placeholders":["clothes","basket"]}, +{"id":"133777","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"84130","label":"wiping cooking plane off of dirt","template":"Wiping [something] off of [something]","placeholders":["cooking plane","dirt"]}, +{"id":"103123","label":"putting a bottle onto a cell phone so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a bottle","a cell phone"]}, +{"id":"79298","label":"pulling shoe from behind of wall","template":"Pulling [something] from behind of [something]","placeholders":["shoe","wall"]}, +{"id":"130879","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"99704","label":"moving away from traffic light with your camera","template":"Moving away from [something] with your camera","placeholders":["traffic light"]}, +{"id":"151510","label":"throwing a pillow","template":"Throwing [something]","placeholders":["a pillow"]}, +{"id":"75609","label":"bending stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["stick"]}, +{"id":"24984","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"56001","label":"folding a pair of mens boxers","template":"Folding [something]","placeholders":["a pair of mens boxers"]}, +{"id":"7729","label":"pushing container off of counter","template":"Pushing [something] off of [something]","placeholders":["container","counter"]}, +{"id":"161729","label":"putting earphone onto keyboard","template":"Putting [something] onto [something]","placeholders":["earphone","keyboard"]}, +{"id":"146640","label":"showing that mug is empty","template":"Showing that [something] is empty","placeholders":["mug"]}, +{"id":"75763","label":"putting tablet box into coffe cup","template":"Putting [something] into [something]","placeholders":["tablet box","coffe cup"]}, +{"id":"154344","label":"putting top in front of pan","template":"Putting [something] in front of [something]","placeholders":["top","pan"]}, +{"id":"179394","label":"lifting a lighter up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a lighter"]}, +{"id":"51065","label":"putting a coconut on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a coconut"]}, +{"id":"120493","label":"showing picture to the camera","template":"Showing [something] to the camera","placeholders":["picture"]}, +{"id":"190961","label":"dropping a peg behind a cup","template":"Dropping [something] behind [something]","placeholders":["a peg","a cup"]}, +{"id":"75375","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"62147","label":"holding remote over mug","template":"Holding [something] over [something]","placeholders":["remote","mug"]}, +{"id":"27243","label":"moving away from fence with your camera","template":"Moving away from [something] with your camera","placeholders":["fence"]}, +{"id":"76726","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"36913","label":"uncovering rock","template":"Uncovering [something]","placeholders":["rock"]}, +{"id":"51007","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"90218","label":"rolling toy car's wheels on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["toy car's wheels"]}, +{"id":"211829","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"4581","label":"pushing a toy off of the table","template":"Pushing [something] off of [something]","placeholders":["a toy","the table"]}, +{"id":"99072","label":"putting the cube onto the fan so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["the cube","the fan"]}, +{"id":"170429","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"91793","label":"pretending to be tearing rock","template":"Pretending to be tearing [something that is not tearable]","placeholders":["rock"]}, +{"id":"34441","label":"pulling two ends of a stick but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a stick"]}, +{"id":"44819","label":"pretending to take glass from desk","template":"Pretending to take [something] from [somewhere]","placeholders":["glass","desk"]}, +{"id":"200198","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"197052","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"215539","label":"pretending to poke a remote","template":"Pretending to poke [something]","placeholders":["a remote"]}, +{"id":"186266","label":"pouring water into a bowl","template":"Pouring [something] into [something]","placeholders":["water","a bowl"]}, +{"id":"15490","label":"plugging a power supply cord into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a power supply cord","laptop"]}, +{"id":"98925","label":"piling plastic fruit up","template":"Piling [something] up","placeholders":["plastic fruit"]}, +{"id":"86631","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"146728","label":"turning container upside down","template":"Turning [something] upside down","placeholders":["container"]}, +{"id":"91033","label":"showing portable gen set to the camera","template":"Showing [something] to the camera","placeholders":["portable gen set"]}, +{"id":"163959","label":"poking a pencil case so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a pencil case"]}, +{"id":"149458","label":"holding rubik cube in front of card","template":"Holding [something] in front of [something]","placeholders":["rubik cube","card"]}, +{"id":"111838","label":"picking dustpan up","template":"Picking [something] up","placeholders":["dustpan"]}, +{"id":"160927","label":"pouring water onto countertop","template":"Pouring [something] onto [something]","placeholders":["water","countertop"]}, +{"id":"127582","label":"showing a hairbrush on top of a 20 lb. weight","template":"Showing [something] on top of [something]","placeholders":["a hairbrush","a 20 lb. weight"]}, +{"id":"203624","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"131954","label":"tearing booklet into two pieces","template":"Tearing [something] into two pieces","placeholders":["booklet"]}, +{"id":"102754","label":"stuffing clothes into backpack","template":"Stuffing [something] into [something]","placeholders":["clothes","backpack"]}, +{"id":"65004","label":"throwing book in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["book"]}, +{"id":"202448","label":"putting candles","template":"Putting [something similar to other things that are already on the table]","placeholders":["candles"]}, +{"id":"130876","label":"putting book next to book","template":"Putting [something] next to [something]","placeholders":["book","book"]}, +{"id":"124486","label":"letting pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil"]}, +{"id":"14594","label":"moving a sneaker away from a backpack","template":"Moving [something] away from [something]","placeholders":["a sneaker","a backpack"]}, +{"id":"69683","label":"plugging cord into amp but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","amp"]}, +{"id":"96210","label":"moving away from safety helmet with your camera","template":"Moving away from [something] with your camera","placeholders":["safety helmet"]}, +{"id":"210152","label":"holding straw over sink","template":"Holding [something] over [something]","placeholders":["straw","sink"]}, +{"id":"63696","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"215289","label":"holding a football behind a basket ball","template":"Holding [something] behind [something]","placeholders":["a football","a basket ball"]}, +{"id":"94286","label":"covering mobile with tissue paper","template":"Covering [something] with [something]","placeholders":["mobile","tissue paper"]}, +{"id":"100877","label":"keys falling like a rock","template":"[Something] falling like a rock","placeholders":["keys"]}, +{"id":"207898","label":"pushing typewriter so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["typewriter"]}, +{"id":"23500","label":"holding a steel glass","template":"Holding [something]","placeholders":["a steel glass"]}, +{"id":"56404","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"155489","label":"pretending to be tearing a pillow","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a pillow"]}, +{"id":"146684","label":"turning the camera left while filming pictures","template":"Turning the camera left while filming [something]","placeholders":["pictures"]}, +{"id":"150496","label":"moving flat box closer to flat box","template":"Moving [something] closer to [something]","placeholders":["flat box","flat box"]}, +{"id":"197466","label":"pretending to put a watch next to a bowl","template":"Pretending to put [something] next to [something]","placeholders":["a watch","a bowl"]}, +{"id":"158303","label":"pushing plastic bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plastic bag"]}, +{"id":"50882","label":"lifting ruler with paper on it","template":"Lifting [something] with [something] on it","placeholders":["ruler","paper"]}, +{"id":"199445","label":"tape falling like a rock","template":"[Something] falling like a rock","placeholders":["tape"]}, +{"id":"10285","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"64755","label":"dropping drop something onto something","template":"Dropping [something] onto [something]","placeholders":["drop something","something"]}, +{"id":"129543","label":"twisting a bottle top","template":"Twisting [something]","placeholders":["a bottle top"]}, +{"id":"145976","label":"holding bottle in front of laptop","template":"Holding [something] in front of [something]","placeholders":["bottle","laptop"]}, +{"id":"86025","label":"uncovering cashew","template":"Uncovering [something]","placeholders":["cashew"]}, +{"id":"77368","label":"lifting computer mouse with ios usb charger adaptor on it","template":"Lifting [something] with [something] on it","placeholders":["computer mouse","ios usb charger adaptor"]}, +{"id":"83716","label":"taking tea infuser out of mug","template":"Taking [something] out of [something]","placeholders":["tea infuser","mug"]}, +{"id":"196020","label":"showing a stapler on top of a fan","template":"Showing [something] on top of [something]","placeholders":["a stapler","a fan"]}, +{"id":"16284","label":"bending bag so that it deforms","template":"Bending [something] so that it deforms","placeholders":["bag"]}, +{"id":"107921","label":"lifting up one end of book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["book"]}, +{"id":"135528","label":"purple container colliding with purple container and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["purple container","purple container"]}, +{"id":"94093","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"80613","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"203449","label":"attaching a sticky note to the wall","template":"Attaching [something] to [something]","placeholders":["a sticky note","the wall"]}, +{"id":"150483","label":"putting ipad upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["ipad"]}, +{"id":"120312","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"41116","label":"taking toothpick","template":"Taking [one of many similar things on the table]","placeholders":["toothpick"]}, +{"id":"160089","label":"picking microsd adapter up","template":"Picking [something] up","placeholders":["microsd adapter"]}, +{"id":"73342","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"123179","label":"putting rubber band similar to other rubber bands that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["rubber band similar to other rubber bands that are already on the table"]}, +{"id":"193901","label":"pulling wristwatch from left to right","template":"Pulling [something] from left to right","placeholders":["wristwatch"]}, +{"id":"1869","label":"tilting bottle with knife on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["bottle","knife"]}, +{"id":"13497","label":"putting a wristwatch next to a bottle","template":"Putting [something] next to [something]","placeholders":["a wristwatch","a bottle"]}, +{"id":"113048","label":"liner falling like a rock","template":"[Something] falling like a rock","placeholders":["liner"]}, +{"id":"182501","label":"opening window","template":"Opening [something]","placeholders":["window"]}, +{"id":"33102","label":"pushing a tv controller with a hair brush","template":"Pushing [something] with [something]","placeholders":["a tv controller","a hair brush"]}, +{"id":"30766","label":"poking padlock so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["padlock"]}, +{"id":"131389","label":"putting bobby pin next to pencil","template":"Putting [something] next to [something]","placeholders":["bobby pin","pencil"]}, +{"id":"106485","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"199741","label":"opening closet","template":"Opening [something]","placeholders":["closet"]}, +{"id":"74750","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"143420","label":"stuffing napkin into glass","template":"Stuffing [something] into [something]","placeholders":["napkin","glass"]}, +{"id":"10154","label":"turning the camera right while filming mosquito repellent","template":"Turning the camera right while filming [something]","placeholders":["mosquito repellent"]}, +{"id":"201342","label":"putting jar on a surface","template":"Putting [something] on a surface","placeholders":["jar"]}, +{"id":"52497","label":"closing glass jar","template":"Closing [something]","placeholders":["glass jar"]}, +{"id":"88701","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"168954","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"17545","label":"lifting a lighter up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a lighter"]}, +{"id":"11652","label":"pretending to pour milk out of a bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["milk","a bottle","bottle"]}, +{"id":"59511","label":"taking tissus from tissue box","template":"Taking [something] from [somewhere]","placeholders":["tissus","tissue box"]}, +{"id":"172216","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"211857","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"161435","label":"plugging a plug into an adaptor but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","an adaptor"]}, +{"id":"84719","label":"paper sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper sheet"]}, +{"id":"53153","label":"pretending to pour coffee out of carafe, but carafe is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["coffee","carafe","carafe"]}, +{"id":"146574","label":"closing a coffee mug","template":"Closing [something]","placeholders":["a coffee mug"]}, +{"id":"160612","label":"putting 2 hair bows onto phone","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bows","phone"]}, +{"id":"120872","label":"pushing pincer so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pincer"]}, +{"id":"76273","label":"throwing wallet","template":"Throwing [something]","placeholders":["wallet"]}, +{"id":"124448","label":"plugging hdmi cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["hdmi cable","laptop"]}, +{"id":"29178","label":"pushing jar with tripod","template":"Pushing [something] with [something]","placeholders":["jar","tripod"]}, +{"id":"76465","label":"taking battery from floor","template":"Taking [something] from [somewhere]","placeholders":["battery","floor"]}, +{"id":"141906","label":"throwing a stick","template":"Throwing [something]","placeholders":["a stick"]}, +{"id":"3667","label":"pretending to be tearing checkbook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["checkbook"]}, +{"id":"44716","label":"bending a wooden stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a wooden stick"]}, +{"id":"190474","label":"rolling a pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a pencil"]}, +{"id":"19645","label":"spinning contact lense case that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["contact lense case"]}, +{"id":"157934","label":"hitting a cooking pot with a chopstick","template":"Hitting [something] with [something]","placeholders":["a cooking pot","a chopstick"]}, +{"id":"142200","label":"spilling water next to a sharpener","template":"Spilling [something] next to [something]","placeholders":["water","a sharpener"]}, +{"id":"88397","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"186609","label":"moving post-it notes up","template":"Moving [something] up","placeholders":["post-it notes"]}, +{"id":"57197","label":"putting bottle in front of marker","template":"Putting [something] in front of [something]","placeholders":["bottle","marker"]}, +{"id":"153182","label":"taking coin from box","template":"Taking [something] from [somewhere]","placeholders":["coin","box"]}, +{"id":"4411","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"212727","label":"turning the camera downwards while filming me","template":"Turning the camera downwards while filming [something]","placeholders":["me"]}, +{"id":"146025","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"65644","label":"showing that the can is empty","template":"Showing that [something] is empty","placeholders":["the can"]}, +{"id":"78984","label":"tearing sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet"]}, +{"id":"36339","label":"turning the camera right while filming dining room","template":"Turning the camera right while filming [something]","placeholders":["dining room"]}, +{"id":"165413","label":"opening a yogurt container","template":"Opening [something]","placeholders":["a yogurt container"]}, +{"id":"20598","label":"putting a tablet computer upright on the table","template":"Putting [something] upright on the table","placeholders":["a tablet computer"]}, +{"id":"103126","label":"tilting a dustpan with balloon spindles on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a dustpan","balloon spindles"]}, +{"id":"46264","label":"throwing wallet onto a surface","template":"Throwing [something] onto a surface","placeholders":["wallet"]}, +{"id":"51528","label":"letting container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["container"]}, +{"id":"160896","label":"moving toy closer to toy","template":"Moving [something] closer to [something]","placeholders":["toy","toy"]}, +{"id":"214216","label":"showing vitamin water behind wrist band","template":"Showing [something] behind [something]","placeholders":["vitamin water","wrist band"]}, +{"id":"17149","label":"opening a cabinet","template":"Opening [something]","placeholders":["a cabinet"]}, +{"id":"65434","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"27659","label":"pushing hammer so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hammer"]}, +{"id":"119546","label":"plugging a cord into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","the wall"]}, +{"id":"197445","label":"pushing a bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a bottle","scissors"]}, +{"id":"171693","label":"putting mobile phone upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["mobile phone"]}, +{"id":"164346","label":"putting lighter and lighter on the table","template":"Putting [something] and [something] on the table","placeholders":["lighter","lighter"]}, +{"id":"20243","label":"plugging two pin into socket","template":"Plugging [something] into [something]","placeholders":["two pin","socket"]}, +{"id":"10207","label":"picking a flashlight up","template":"Picking [something] up","placeholders":["a flashlight"]}, +{"id":"22418","label":"moving box and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","bottle"]}, +{"id":"83227","label":"tilting bike seat form with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["bike seat form","finger"]}, +{"id":"185982","label":"moving something towards the camera","template":"Moving [something] towards the camera","placeholders":["something"]}, +{"id":"183706","label":"turning the camera left while filming pink toothbrush case","template":"Turning the camera left while filming [something]","placeholders":["pink toothbrush case"]}, +{"id":"122582","label":"picking a book up","template":"Picking [something] up","placeholders":["a book"]}, +{"id":"101197","label":"turning mix cup upside down","template":"Turning [something] upside down","placeholders":["mix cup"]}, +{"id":"20718","label":"plastic hair brush falling like a rock","template":"[Something] falling like a rock","placeholders":["plastic hair brush"]}, +{"id":"91630","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"55310","label":"tipping cup with pennies over, so pennies falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","pennies","pennies"]}, +{"id":"49667","label":"attaching peg to usb cable","template":"Attaching [something] to [something]","placeholders":["peg","usb cable"]}, +{"id":"77990","label":"poking a stack of blocks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["blocks"]}, +{"id":"123585","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"61044","label":"dropping paper in front of face","template":"Dropping [something] in front of [something]","placeholders":["paper","face"]}, +{"id":"152112","label":"showing goat to the camera","template":"Showing [something] to the camera","placeholders":["goat"]}, +{"id":"25688","label":"pushing compressed air can so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["compressed air can"]}, +{"id":"182836","label":"pulling two ends of the wrench but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["the wrench"]}, +{"id":"123982","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"50906","label":"putting plastic container on a surface","template":"Putting [something] on a surface","placeholders":["plastic container"]}, +{"id":"178084","label":"plugging cord into extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","extension cord"]}, +{"id":"36297","label":"showing scissors on top of calculator","template":"Showing [something] on top of [something]","placeholders":["scissors","calculator"]}, +{"id":"2426","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"209649","label":"pushing pebble with wooden stick","template":"Pushing [something] with [something]","placeholders":["pebble","wooden stick"]}, +{"id":"49131","label":"letting a container roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a container"]}, +{"id":"30467","label":"stuffing paper into an envelope","template":"Stuffing [something] into [something]","placeholders":["paper","an envelope"]}, +{"id":"92639","label":"putting cereal into mouth","template":"Putting [something] into [something]","placeholders":["cereal","mouth"]}, +{"id":"151044","label":"putting cell phone on a surface","template":"Putting [something] on a surface","placeholders":["cell phone"]}, +{"id":"2259","label":"pretending to pick shoe up","template":"Pretending to pick [something] up","placeholders":["shoe"]}, +{"id":"78618","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"171279","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"158208","label":"throwing scissors onto a surface","template":"Throwing [something] onto a surface","placeholders":["scissors"]}, +{"id":"113589","label":"throwing top against door","template":"Throwing [something] against [something]","placeholders":["top","door"]}, +{"id":"205149","label":"poking a cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a cup"]}, +{"id":"176086","label":"tipping a water bottle over","template":"Tipping [something] over","placeholders":["a water bottle"]}, +{"id":"52130","label":"taking silverware","template":"Taking [one of many similar things on the table]","placeholders":["silverware"]}, +{"id":"152091","label":"moving away from old mobile phone with your camera","template":"Moving away from [something] with your camera","placeholders":["old mobile phone"]}, +{"id":"42729","label":"letting a circular box roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a circular box"]}, +{"id":"115392","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"53788","label":"hitting red toy car with marker pen","template":"Hitting [something] with [something]","placeholders":["red toy car","marker pen"]}, +{"id":"171273","label":"pushing a bright green toy car so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bright green toy car"]}, +{"id":"171374","label":"dropping battery behind cup","template":"Dropping [something] behind [something]","placeholders":["battery","cup"]}, +{"id":"12463","label":"throwing sock against door","template":"Throwing [something] against [something]","placeholders":["sock","door"]}, +{"id":"177687","label":"showing toothbrushes next to cup","template":"Showing [something] next to [something]","placeholders":["toothbrushes","cup"]}, +{"id":"67153","label":"turning the camera downwards while filming brown case","template":"Turning the camera downwards while filming [something]","placeholders":["brown case"]}, +{"id":"106438","label":"letting yellow marker pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["yellow marker pen"]}, +{"id":"131059","label":"rolling nail polish bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["nail polish bottle"]}, +{"id":"62193","label":"pushing shoe box from right to left","template":"Pushing [something] from right to left","placeholders":["shoe box"]}, +{"id":"83183","label":"pushing tire gauge so it spins","template":"Pushing [something] so it spins","placeholders":["tire gauge"]}, +{"id":"151753","label":"pretending to open cream tube without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cream tube"]}, +{"id":"203847","label":"pretending to be tearing slicer","template":"Pretending to be tearing [something that is not tearable]","placeholders":["slicer"]}, +{"id":"30509","label":"plugging headphones into laptop","template":"Plugging [something] into [something]","placeholders":["headphones","laptop"]}, +{"id":"119930","label":"lifting up one end of banana without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["banana"]}, +{"id":"124878","label":"stuffing paper into a box","template":"Stuffing [something] into [something]","placeholders":["paper","a box"]}, +{"id":"49099","label":"approaching granola bar with your camera","template":"Approaching [something] with your camera","placeholders":["granola bar"]}, +{"id":"131557","label":"moving lime and lime away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lime","lime"]}, +{"id":"144615","label":"opening purse","template":"Opening [something]","placeholders":["purse"]}, +{"id":"23907","label":"laying a container on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a container"]}, +{"id":"160768","label":"throwing metal bar","template":"Throwing [something]","placeholders":["metal bar"]}, +{"id":"211900","label":"showing duster behind hair clip","template":"Showing [something] behind [something]","placeholders":["duster","hair clip"]}, +{"id":"126582","label":"moving punching machine closer to wallet","template":"Moving [something] closer to [something]","placeholders":["punching machine","wallet"]}, +{"id":"185757","label":"pushing a coin with another coin","template":"Pushing [something] with [something]","placeholders":["a coin","another coin"]}, +{"id":"68618","label":"tilting pin box with book on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["pin box","book"]}, +{"id":"99750","label":"spinning rake that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["rake"]}, +{"id":"46507","label":"putting an eraser that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["an eraser"]}, +{"id":"3793","label":"dropping a yellow pen in front of a screen","template":"Dropping [something] in front of [something]","placeholders":["a yellow pen","a screen"]}, +{"id":"92489","label":"plugging a plug adapter into a wall socket","template":"Plugging [something] into [something]","placeholders":["a plug adapter","a wall socket"]}, +{"id":"133432","label":"spinning spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spinner"]}, +{"id":"75388","label":"throwing a pen against the couch","template":"Throwing [something] against [something]","placeholders":["a pen","the couch"]}, +{"id":"149612","label":"moving glass and bottle away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","bottle"]}, +{"id":"213059","label":"rolling powder bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["powder bottle"]}, +{"id":"135355","label":"putting wine key and chapstick on the table","template":"Putting [something] and [something] on the table","placeholders":["wine key","chapstick"]}, +{"id":"174956","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"28601","label":"moving rocks and rocks away from each other","template":"Moving [something] and [something] away from each other","placeholders":["rocks","rocks"]}, +{"id":"26971","label":"touching (without moving) keys of keyboard","template":"Touching (without moving) [part] of [something]","placeholders":["keys","keyboard"]}, +{"id":"199245","label":"moving hairclip and ice tray closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["hairclip","ice tray"]}, +{"id":"167436","label":"tearing printer paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["printer paper"]}, +{"id":"184772","label":"pouring soda out of cup","template":"Pouring [something] out of [something]","placeholders":["soda","cup"]}, +{"id":"142357","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"109948","label":"taking car out of basket","template":"Taking [something] out of [something]","placeholders":["car","basket"]}, +{"id":"212394","label":"bending a paper clip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper clip"]}, +{"id":"114682","label":"putting 3 pennies onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","pennies","table"]}, +{"id":"86565","label":"pushing white badge with wooden stick","template":"Pushing [something] with [something]","placeholders":["white badge","wooden stick"]}, +{"id":"24659","label":"touching (without moving) front of book","template":"Touching (without moving) [part] of [something]","placeholders":["front","book"]}, +{"id":"150690","label":"showing canister next to clock","template":"Showing [something] next to [something]","placeholders":["canister","clock"]}, +{"id":"99273","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"182096","label":"pulling pink blush on from right to left","template":"Pulling [something] from right to left","placeholders":["pink blush on"]}, +{"id":"74983","label":"putting mug on a surface","template":"Putting [something] on a surface","placeholders":["mug"]}, +{"id":"89896","label":"throwing tape in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tape"]}, +{"id":"185777","label":"removing mug, revealing play-doh behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","play-doh"]}, +{"id":"45452","label":"pushing lotion container so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lotion container"]}, +{"id":"150301","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"191701","label":"lifting marker pen up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["marker pen"]}, +{"id":"30315","label":"pushing plate from left to right","template":"Pushing [something] from left to right","placeholders":["plate"]}, +{"id":"93580","label":"poking cigarrete butt so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cigarrete butt"]}, +{"id":"175117","label":"letting an air freshener roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["an air freshener"]}, +{"id":"179278","label":"tilting dvd with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["dvd","phone"]}, +{"id":"62813","label":"putting cards on a surface","template":"Putting [something] on a surface","placeholders":["cards"]}, +{"id":"91906","label":"plastic bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic bag"]}, +{"id":"128074","label":"pushing candle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["candle"]}, +{"id":"189657","label":"throwing bat against bat","template":"Throwing [something] against [something]","placeholders":["bat","bat"]}, +{"id":"11687","label":"plugging a charger into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a phone"]}, +{"id":"77265","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"150381","label":"throwing a pack of tissue","template":"Throwing [something]","placeholders":["a pack of tissue"]}, +{"id":"15365","label":"pretending to put a watch behind a bowl","template":"Pretending to put [something] behind [something]","placeholders":["a watch","a bowl"]}, +{"id":"108595","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"174934","label":"holding teddy bear","template":"Holding [something]","placeholders":["teddy bear"]}, +{"id":"74524","label":"a laptop falling like a rock","template":"[Something] falling like a rock","placeholders":["a laptop"]}, +{"id":"198460","label":"a piece of kitchen towel falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of kitchen towel"]}, +{"id":"4093","label":"holding a plant over a box","template":"Holding [something] over [something]","placeholders":["a plant","a box"]}, +{"id":"476","label":"pushing green bowl with spoon","template":"Pushing [something] with [something]","placeholders":["green bowl","spoon"]}, +{"id":"142530","label":"covering smartphone with pillow","template":"Covering [something] with [something]","placeholders":["smartphone","pillow"]}, +{"id":"159882","label":"taking an adapter from an outlet","template":"Taking [something] from [somewhere]","placeholders":["an adapter","an outlet"]}, +{"id":"128457","label":"holding green cup","template":"Holding [something]","placeholders":["green cup"]}, +{"id":"84998","label":"throwing highlighter in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["highlighter"]}, +{"id":"31914","label":"turning the camera right while filming pictures","template":"Turning the camera right while filming [something]","placeholders":["pictures"]}, +{"id":"50639","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"184108","label":"dropping a shirt into a laundry basket","template":"Dropping [something] into [something]","placeholders":["a shirt","a laundry basket"]}, +{"id":"106813","label":"dropping knife next to fork","template":"Dropping [something] next to [something]","placeholders":["knife","fork"]}, +{"id":"173125","label":"showing that container is inside cooler","template":"Showing that [something] is inside [something]","placeholders":["container","cooler"]}, +{"id":"156401","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"204017","label":"taking one button from many buttons","template":"Taking [one of many similar things on the table]","placeholders":["one button from many buttons"]}, +{"id":"212051","label":"magnet falling like a rock","template":"[Something] falling like a rock","placeholders":["magnet"]}, +{"id":"5916","label":"taking game piece out of container","template":"Taking [something] out of [something]","placeholders":["game piece","container"]}, +{"id":"88381","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"4446","label":"moving pencil pouch across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pencil pouch"]}, +{"id":"141169","label":"holding rubber duck over faucet","template":"Holding [something] over [something]","placeholders":["rubber duck","faucet"]}, +{"id":"76039","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"112174","label":"putting plastic screwcap next to mug","template":"Putting [something] next to [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"60381","label":"pulling two ends of samsung s5 but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["samsung s5"]}, +{"id":"1568","label":"moving key away from comb","template":"Moving [something] away from [something]","placeholders":["key","comb"]}, +{"id":"218533","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"170484","label":"showing a photo of a lock to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a lock"]}, +{"id":"77354","label":"pretending to take screwdriver from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["screwdriver","countertop"]}, +{"id":"202156","label":"holding a stick","template":"Holding [something]","placeholders":["a stick"]}, +{"id":"50244","label":"showing paint tube on top of cactus","template":"Showing [something] on top of [something]","placeholders":["paint tube","cactus"]}, +{"id":"155642","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"14337","label":"squeezing fevicol can","template":"Squeezing [something]","placeholders":["fevicol can"]}, +{"id":"202332","label":"plugging headphone into phone","template":"Plugging [something] into [something]","placeholders":["headphone","phone"]}, +{"id":"115579","label":"moving ball across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["ball"]}, +{"id":"26673","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"38930","label":"pushing toothpic pot so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["toothpic pot"]}, +{"id":"167701","label":"stuffing clothes into a bag","template":"Stuffing [something] into [something]","placeholders":["clothes","a bag"]}, +{"id":"183125","label":"dropping a peg behind a box","template":"Dropping [something] behind [something]","placeholders":["a peg","a box"]}, +{"id":"188434","label":"trying but failing to attach pen to receipt book because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["pen","receipt book"]}, +{"id":"171595","label":"moving water bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["water bottle"]}, +{"id":"183767","label":"nail clipper colliding with pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["nail clipper","pen"]}, +{"id":"118374","label":"rolling a beauty sponge on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a beauty sponge"]}, +{"id":"106625","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"169574","label":"putting laptop similar to other laptops that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["laptop similar to other laptops that are already on the table"]}, +{"id":"69312","label":"putting tube underneath bed","template":"Putting [something] underneath [something]","placeholders":["tube","bed"]}, +{"id":"55417","label":"pretending or failing to wipe sticker off of light switch","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["sticker","light switch"]}, +{"id":"51695","label":"pushing a rock from right to left","template":"Pushing [something] from right to left","placeholders":["a rock"]}, +{"id":"66923","label":"moving a powder tin towards the camera","template":"Moving [something] towards the camera","placeholders":["a powder tin"]}, +{"id":"34517","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"202803","label":"moving spon down","template":"Moving [something] down","placeholders":["spon"]}, +{"id":"209440","label":"showing tablet next to laptop bag","template":"Showing [something] next to [something]","placeholders":["tablet","laptop bag"]}, +{"id":"214178","label":"throwing bottle cap in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bottle cap"]}, +{"id":"157524","label":"spinning spoon that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spoon"]}, +{"id":"63313","label":"putting coaster underneath cup","template":"Putting [something] underneath [something]","placeholders":["coaster","cup"]}, +{"id":"183775","label":"taking mouse from pad","template":"Taking [something] from [somewhere]","placeholders":["mouse","pad"]}, +{"id":"53315","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"182168","label":"tilting a spoon with an apple on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a spoon","an apple"]}, +{"id":"43179","label":"squeezing bottle trigger","template":"Squeezing [something]","placeholders":["bottle trigger"]}, +{"id":"109557","label":"putting paint tube behind cactus","template":"Putting [something] behind [something]","placeholders":["paint tube","cactus"]}, +{"id":"77582","label":"tilting laptop with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["laptop","mouse"]}, +{"id":"140935","label":"lifting a bucket with a toy bulldozer on it","template":"Lifting [something] with [something] on it","placeholders":["a bucket","a toy bulldozer"]}, +{"id":"184864","label":"holding nail cutter","template":"Holding [something]","placeholders":["nail cutter"]}, +{"id":"81367","label":"piling toy cars up","template":"Piling [something] up","placeholders":["toy cars"]}, +{"id":"199182","label":"covering a baby doll with a blanket","template":"Covering [something] with [something]","placeholders":["a baby doll","a blanket"]}, +{"id":"109722","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"209976","label":"pushing mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mouse"]}, +{"id":"23979","label":"index card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["index card"]}, +{"id":"134500","label":"moving usb cable away from usb","template":"Moving [something] away from [something]","placeholders":["usb cable","usb"]}, +{"id":"159131","label":"covering coin with paper","template":"Covering [something] with [something]","placeholders":["coin","paper"]}, +{"id":"21158","label":"showing motor bike to the camera","template":"Showing [something] to the camera","placeholders":["motor bike"]}, +{"id":"182806","label":"twisting a plastic bag","template":"Twisting [something]","placeholders":["a plastic bag"]}, +{"id":"39048","label":"hitting a bag with a door hook","template":"Hitting [something] with [something]","placeholders":["a bag","a door hook"]}, +{"id":"69470","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"63365","label":"moving cup away from plant","template":"Moving [something] away from [something]","placeholders":["cup","plant"]}, +{"id":"108156","label":"a flower falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a flower"]}, +{"id":"156240","label":"moving flower down","template":"Moving [something] down","placeholders":["flower"]}, +{"id":"21438","label":"opening small freshmints","template":"Opening [something]","placeholders":["small freshmints"]}, +{"id":"84277","label":"uncovering screwdriver","template":"Uncovering [something]","placeholders":["screwdriver"]}, +{"id":"4808","label":"pretending to pick paper up","template":"Pretending to pick [something] up","placeholders":["paper"]}, +{"id":"147153","label":"spinning tiffen box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["tiffen box"]}, +{"id":"70659","label":"dropping bottle behind kendama","template":"Dropping [something] behind [something]","placeholders":["bottle","kendama"]}, +{"id":"190154","label":"turning the camera right while filming dinosaur model","template":"Turning the camera right while filming [something]","placeholders":["dinosaur model"]}, +{"id":"92150","label":"moving calculator down","template":"Moving [something] down","placeholders":["calculator"]}, +{"id":"151290","label":"rolling lotion container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lotion container"]}, +{"id":"92925","label":"plugging mouse into laptop","template":"Plugging [something] into [something]","placeholders":["mouse","laptop"]}, +{"id":"25736","label":"approaching toothbrush with your camera","template":"Approaching [something] with your camera","placeholders":["toothbrush"]}, +{"id":"6879","label":"lifting book with book on it","template":"Lifting [something] with [something] on it","placeholders":["book","book"]}, +{"id":"172284","label":"plugging charger into plug hole","template":"Plugging [something] into [something]","placeholders":["charger","plug hole"]}, +{"id":"34993","label":"pretending or failing to wipe paint off of painting","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","painting"]}, +{"id":"101856","label":"pouring water into plant","template":"Pouring [something] into [something]","placeholders":["water","plant"]}, +{"id":"107303","label":"turning the camera right while filming pumpkin","template":"Turning the camera right while filming [something]","placeholders":["pumpkin"]}, +{"id":"44827","label":"throwing black cloth","template":"Throwing [something]","placeholders":["black cloth"]}, +{"id":"10773","label":"picking a hair accessoire up","template":"Picking [something] up","placeholders":["a hair accessoire"]}, +{"id":"72569","label":"pushing rubix cube so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["rubix cube"]}, +{"id":"170634","label":"moving nailpolish down","template":"Moving [something] down","placeholders":["nailpolish"]}, +{"id":"136067","label":"uncovering toothbrush","template":"Uncovering [something]","placeholders":["toothbrush"]}, +{"id":"139202","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"25393","label":"pouring syrup into glass","template":"Pouring [something] into [something]","placeholders":["syrup","glass"]}, +{"id":"140620","label":"uncovering ball","template":"Uncovering [something]","placeholders":["ball"]}, +{"id":"144126","label":"taking a pencil of school materials","template":"Taking [one of many similar things on the table]","placeholders":["a pencil of school materials"]}, +{"id":"92056","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"104601","label":"taking tea out of box","template":"Taking [something] out of [something]","placeholders":["tea","box"]}, +{"id":"83133","label":"pushing a spoon onto a plate","template":"Pushing [something] onto [something]","placeholders":["a spoon","a plate"]}, +{"id":"78437","label":"wiping a lotion off of the table","template":"Wiping [something] off of [something]","placeholders":["a lotion","the table"]}, +{"id":"49897","label":"putting a toy tiger that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a toy tiger"]}, +{"id":"122884","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"124792","label":"folding ipad cover","template":"Folding [something]","placeholders":["ipad cover"]}, +{"id":"135026","label":"removing computer mouse, revealing key behind","template":"Removing [something], revealing [something] behind","placeholders":["computer mouse","key"]}, +{"id":"5058","label":"putting a piece of paper and a glass of cordial on the table","template":"Putting [something] and [something] on the table","placeholders":["a piece of paper","a glass of cordial"]}, +{"id":"32952","label":"pretending to put candle on a surface","template":"Pretending to put [something] on a surface","placeholders":["candle"]}, +{"id":"181410","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"140945","label":"lifting a box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a box"]}, +{"id":"41496","label":"hitting a wallet with a textsurfer","template":"Hitting [something] with [something]","placeholders":["a wallet","a textsurfer"]}, +{"id":"40865","label":"spinning a spectacle box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a spectacle box"]}, +{"id":"54764","label":"moving a book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a book"]}, +{"id":"168948","label":"pushing a deck of cards off of table","template":"Pushing [something] off of [something]","placeholders":["a deck of cards","table"]}, +{"id":"208698","label":"pushing bottle cap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle cap"]}, +{"id":"21565","label":"putting a musical tabala on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a musical tabala"]}, +{"id":"120142","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"26966","label":"putting cut tomatoes into a bowl","template":"Putting [something] into [something]","placeholders":["cut tomatoes","a bowl"]}, +{"id":"64506","label":"taking yellow highlighter","template":"Taking [one of many similar things on the table]","placeholders":["yellow highlighter"]}, +{"id":"88368","label":"water bottel falling like a rock","template":"[Something] falling like a rock","placeholders":["water bottel"]}, +{"id":"52769","label":"pulling scotch tape from right to left","template":"Pulling [something] from right to left","placeholders":["scotch tape"]}, +{"id":"169085","label":"turning the camera left while filming fan","template":"Turning the camera left while filming [something]","placeholders":["fan"]}, +{"id":"120364","label":"turning the camera right while filming readymade dresses","template":"Turning the camera right while filming [something]","placeholders":["readymade dresses"]}, +{"id":"147269","label":"pushing felt pen with pen","template":"Pushing [something] with [something]","placeholders":["felt pen","pen"]}, +{"id":"16203","label":"holding marker pen","template":"Holding [something]","placeholders":["marker pen"]}, +{"id":"98879","label":"putting bottle and bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","bottle"]}, +{"id":"9317","label":"dropping pen behind notebook","template":"Dropping [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"131967","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"152262","label":"putting a spoon upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a spoon"]}, +{"id":"36254","label":"poking a hole into glue","template":"Poking a hole into [some substance]","placeholders":["glue"]}, +{"id":"11334","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"83541","label":"moving glass and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","glass"]}, +{"id":"8590","label":"dropping pillow onto floor","template":"Dropping [something] onto [something]","placeholders":["pillow","floor"]}, +{"id":"135962","label":"folding hat","template":"Folding [something]","placeholders":["hat"]}, +{"id":"1168","label":"pushing book off of table","template":"Pushing [something] off of [something]","placeholders":["book","table"]}, +{"id":"36328","label":"lifting plastic screw cap up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["plastic screw cap"]}, +{"id":"56795","label":"turning remote control upside down","template":"Turning [something] upside down","placeholders":["remote control"]}, +{"id":"137973","label":"lifting book with tissue paper on it","template":"Lifting [something] with [something] on it","placeholders":["book","tissue paper"]}, +{"id":"193333","label":"putting spoon on a surface","template":"Putting [something] on a surface","placeholders":["spoon"]}, +{"id":"20396","label":"moving glass and fruit away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","fruit"]}, +{"id":"160164","label":"pretending to put earphone into bag","template":"Pretending to put [something] into [something]","placeholders":["earphone","bag"]}, +{"id":"84140","label":"holding coffee mug","template":"Holding [something]","placeholders":["coffee mug"]}, +{"id":"75384","label":"pouring water onto frying pan","template":"Pouring [something] onto [something]","placeholders":["water","frying pan"]}, +{"id":"105969","label":"spinning lotion that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lotion"]}, +{"id":"4995","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"214017","label":"digging sunglass out of clothes bag","template":"Digging [something] out of [something]","placeholders":["sunglass","clothes bag"]}, +{"id":"206094","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"75685","label":"putting egg","template":"Putting [something similar to other things that are already on the table]","placeholders":["egg"]}, +{"id":"75766","label":"stacking six books","template":"Stacking [number of] [something]","placeholders":["six","books"]}, +{"id":"105444","label":"putting cd that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cd"]}, +{"id":"108425","label":"lifting wallet up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["wallet"]}, +{"id":"6954","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"167356","label":"moving a monkey figure and a monkey figure away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a monkey figure","a monkey figure"]}, +{"id":"9497","label":"hitting bottle with nail cutter","template":"Hitting [something] with [something]","placeholders":["bottle","nail cutter"]}, +{"id":"50256","label":"pushing mouse with pen","template":"Pushing [something] with [something]","placeholders":["mouse","pen"]}, +{"id":"217306","label":"taking a marker","template":"Taking [one of many similar things on the table]","placeholders":["a marker"]}, +{"id":"68391","label":"lifting a book with a toy robot on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a toy robot"]}, +{"id":"191006","label":"uncovering a wok","template":"Uncovering [something]","placeholders":["a wok"]}, +{"id":"162881","label":"putting a coin next to pen","template":"Putting [something] next to [something]","placeholders":["a coin","pen"]}, +{"id":"171981","label":"throwing ball of paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball of paper"]}, +{"id":"207417","label":"moving toy away from clip","template":"Moving [something] away from [something]","placeholders":["toy","clip"]}, +{"id":"169459","label":"spinning a plastic bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a plastic bottle"]}, +{"id":"151614","label":"pouring milk out of a jug","template":"Pouring [something] out of [something]","placeholders":["milk","a jug"]}, +{"id":"202442","label":"lifting phone with (edge of cover) up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["phone with (edge of cover)"]}, +{"id":"96775","label":"showing that backpack is empty","template":"Showing that [something] is empty","placeholders":["backpack"]}, +{"id":"157474","label":"spinning a ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a ball"]}, +{"id":"25704","label":"putting flowers","template":"Putting [something similar to other things that are already on the table]","placeholders":["flowers"]}, +{"id":"47817","label":"dropping controller onto headset","template":"Dropping [something] onto [something]","placeholders":["controller","headset"]}, +{"id":"114986","label":"scooping flour up with measuring cup","template":"Scooping [something] up with [something]","placeholders":["flour","measuring cup"]}, +{"id":"128956","label":"unfolding a towel","template":"Unfolding [something]","placeholders":["a towel"]}, +{"id":"129615","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"104368","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"218377","label":"moving towel up","template":"Moving [something] up","placeholders":["towel"]}, +{"id":"102782","label":"pulling purple balloon pump from right to left","template":"Pulling [something] from right to left","placeholders":["purple balloon pump"]}, +{"id":"181615","label":"showing that buttons is inside lid","template":"Showing that [something] is inside [something]","placeholders":["buttons","lid"]}, +{"id":"46169","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"206987","label":"putting pen next to cloth","template":"Putting [something] next to [something]","placeholders":["pen","cloth"]}, +{"id":"145492","label":"dropping a glue stick behind a box","template":"Dropping [something] behind [something]","placeholders":["a glue stick","a box"]}, +{"id":"15498","label":"pulling a mouse from behind of a helmet","template":"Pulling [something] from behind of [something]","placeholders":["a mouse","a helmet"]}, +{"id":"31540","label":"putting hand sanitizer upright on the table","template":"Putting [something] upright on the table","placeholders":["hand sanitizer"]}, +{"id":"38070","label":"moving clock closer to wear","template":"Moving [something] closer to [something]","placeholders":["clock","wear"]}, +{"id":"24321","label":"turning the camera right while filming shampoo bottle","template":"Turning the camera right while filming [something]","placeholders":["shampoo bottle"]}, +{"id":"23230","label":"putting box, book and gum on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["box","book","gum"]}, +{"id":"200080","label":"stuffing a face towel into a small bag","template":"Stuffing [something] into [something]","placeholders":["a face towel","a small bag"]}, +{"id":"103201","label":"holding a cup next to a trophy","template":"Holding [something] next to [something]","placeholders":["a cup","a trophy"]}, +{"id":"107441","label":"putting a hairclip into a glas","template":"Putting [something] into [something]","placeholders":["a hairclip","a glas"]}, +{"id":"29019","label":"showing that a coin is inside a jar","template":"Showing that [something] is inside [something]","placeholders":["a coin","a jar"]}, +{"id":"134541","label":"moving head charger and head charger away from each other","template":"Moving [something] and [something] away from each other","placeholders":["head charger","head charger"]}, +{"id":"91418","label":"moving spoon up","template":"Moving [something] up","placeholders":["spoon"]}, +{"id":"24958","label":"pretending to pick lipstick up","template":"Pretending to pick [something] up","placeholders":["lipstick"]}, +{"id":"194218","label":"lifting notebook with mouse on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","mouse"]}, +{"id":"4114","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"135837","label":"tipping tissues over","template":"Tipping [something] over","placeholders":["tissues"]}, +{"id":"105271","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"23147","label":"digging candy mint out of blanket","template":"Digging [something] out of [something]","placeholders":["candy mint","blanket"]}, +{"id":"155310","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"185280","label":"covering remote control with hand","template":"Covering [something] with [something]","placeholders":["remote control","hand"]}, +{"id":"193869","label":"tilting a plastic container with a thermometer on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plastic container","a thermometer"]}, +{"id":"44303","label":"putting plant on a surface","template":"Putting [something] on a surface","placeholders":["plant"]}, +{"id":"125901","label":"pushing package of gum so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["package of gum"]}, +{"id":"143793","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"76808","label":"putting punching machine that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["punching machine"]}, +{"id":"31560","label":"touching (without moving) switch of light","template":"Touching (without moving) [part] of [something]","placeholders":["switch","light"]}, +{"id":"146870","label":"putting 2 striker coins onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","striker coins","black pouch"]}, +{"id":"107160","label":"letting tape roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tape"]}, +{"id":"36641","label":"bending spaghetti until it breaks","template":"Bending [something] until it breaks","placeholders":["spaghetti"]}, +{"id":"26281","label":"putting mug","template":"Putting [something similar to other things that are already on the table]","placeholders":["mug"]}, +{"id":"8252","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"195007","label":"pushing a watch from right to left","template":"Pushing [something] from right to left","placeholders":["a watch"]}, +{"id":"50765","label":"stuffing notebooks into eco bag","template":"Stuffing [something] into [something]","placeholders":["notebooks","eco bag"]}, +{"id":"112971","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"92475","label":"opening mixer-jar","template":"Opening [something]","placeholders":["mixer-jar"]}, +{"id":"164584","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"87170","label":"bending wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["wire"]}, +{"id":"62930","label":"plugging an electric plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["an electric plug","an outlet"]}, +{"id":"218360","label":"taking one book of many similar books on the table","template":"Taking [one of many similar things on the table]","placeholders":["one book of many similar books on the table"]}, +{"id":"132472","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"95927","label":"plugging a charger into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","an outlet"]}, +{"id":"17965","label":"holding the remote contol next to the laptop","template":"Holding [something] next to [something]","placeholders":["the remote contol","the laptop"]}, +{"id":"64862","label":"putting fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork"]}, +{"id":"16767","label":"taking a toy out of a toy box","template":"Taking [something] out of [something]","placeholders":["a toy","a toy box"]}, +{"id":"8461","label":"twisting hair band","template":"Twisting [something]","placeholders":["hair band"]}, +{"id":"124081","label":"stacking 11 coins","template":"Stacking [number of] [something]","placeholders":["11","coins"]}, +{"id":"71827","label":"putting toothbrush next to smart phone","template":"Putting [something] next to [something]","placeholders":["toothbrush","smart phone"]}, +{"id":"22668","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"164031","label":"dropping mouse in front of keyboard","template":"Dropping [something] in front of [something]","placeholders":["mouse","keyboard"]}, +{"id":"7492","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"96158","label":"pushing toy so it spins","template":"Pushing [something] so it spins","placeholders":["toy"]}, +{"id":"47958","label":"moving mouse away from keyboard","template":"Moving [something] away from [something]","placeholders":["mouse","keyboard"]}, +{"id":"124125","label":"stuffing plastic bags into a plastic bag","template":"Stuffing [something] into [something]","placeholders":["plastic bags","a plastic bag"]}, +{"id":"167046","label":"throwing shoe onto a surface","template":"Throwing [something] onto a surface","placeholders":["shoe"]}, +{"id":"45017","label":"rubber being deflected from pencil sharpener","template":"[Something] being deflected from [something]","placeholders":["rubber","pencil sharpener"]}, +{"id":"55733","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"68900","label":"moving pencil closer to spoon","template":"Moving [something] closer to [something]","placeholders":["pencil","spoon"]}, +{"id":"110845","label":"plugging a usb drive into an adapter","template":"Plugging [something] into [something]","placeholders":["a usb drive","an adapter"]}, +{"id":"157672","label":"hitting cup with ball","template":"Hitting [something] with [something]","placeholders":["cup","ball"]}, +{"id":"83920","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"180173","label":"putting one screw","template":"Putting [something similar to other things that are already on the table]","placeholders":["one screw"]}, +{"id":"29894","label":"twisting a lid off","template":"Twisting [something]","placeholders":["a lid off"]}, +{"id":"137875","label":"rolling mic on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["mic"]}, +{"id":"145462","label":"moving a fork away from a pencil","template":"Moving [something] away from [something]","placeholders":["a fork","a pencil"]}, +{"id":"38164","label":"throwing green colour toy car in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["green colour toy car"]}, +{"id":"149239","label":"poking a toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a toy"]}, +{"id":"145653","label":"turning the camera left while filming car","template":"Turning the camera left while filming [something]","placeholders":["car"]}, +{"id":"8643","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"167147","label":"pretending to squeeze salt","template":"Pretending to squeeze [something]","placeholders":["salt"]}, +{"id":"188895","label":"putting ribbon reel that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["ribbon reel"]}, +{"id":"77223","label":"covering scissor with cloth","template":"Covering [something] with [something]","placeholders":["scissor","cloth"]}, +{"id":"135861","label":"coaster falling like a rock","template":"[Something] falling like a rock","placeholders":["coaster"]}, +{"id":"77592","label":"remote being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["remote","couch"]}, +{"id":"209593","label":"putting tumblers","template":"Putting [something similar to other things that are already on the table]","placeholders":["tumblers"]}, +{"id":"121640","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"57897","label":"poking a glass so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a glass"]}, +{"id":"93723","label":"uncovering coupon","template":"Uncovering [something]","placeholders":["coupon"]}, +{"id":"37911","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"63586","label":"clip colliding with bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["clip","bottle"]}, +{"id":"26698","label":"letting balloon pump roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["balloon pump"]}, +{"id":"117605","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"73270","label":"twisting envelope","template":"Twisting [something]","placeholders":["envelope"]}, +{"id":"80680","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"101156","label":"putting eraser on a surface","template":"Putting [something] on a surface","placeholders":["eraser"]}, +{"id":"23152","label":"uncovering gear wheel","template":"Uncovering [something]","placeholders":["gear wheel"]}, +{"id":"29127","label":"dropping ball into bucket","template":"Dropping [something] into [something]","placeholders":["ball","bucket"]}, +{"id":"152200","label":"poking an apple so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["an apple"]}, +{"id":"145347","label":"pulling soda pop can from behind of coffee can","template":"Pulling [something] from behind of [something]","placeholders":["soda pop can","coffee can"]}, +{"id":"118293","label":"putting remote and earphones on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","earphones"]}, +{"id":"109533","label":"turning the camera left while filming audio sistem","template":"Turning the camera left while filming [something]","placeholders":["audio sistem"]}, +{"id":"44500","label":"throwing socks in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["socks"]}, +{"id":"62771","label":"pretending to take pin from bown","template":"Pretending to take [something] from [somewhere]","placeholders":["pin","bown"]}, +{"id":"209224","label":"hitting bleacher with hat","template":"Hitting [something] with [something]","placeholders":["bleacher","hat"]}, +{"id":"133812","label":"piling folders up","template":"Piling [something] up","placeholders":["folders"]}, +{"id":"179656","label":"poking a stack of cards so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cards"]}, +{"id":"44055","label":"plugging usb into box but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","box"]}, +{"id":"95071","label":"twisting pouch","template":"Twisting [something]","placeholders":["pouch"]}, +{"id":"14001","label":"pulling tissue out of tissue box","template":"Pulling [something] out of [something]","placeholders":["tissue","tissue box"]}, +{"id":"181666","label":"hitting a pillow with a hockey stick","template":"Hitting [something] with [something]","placeholders":["a pillow","a hockey stick"]}, +{"id":"2684","label":"putting box wood underneath heart wood","template":"Putting [something] underneath [something]","placeholders":["box wood","heart wood"]}, +{"id":"58306","label":"dropping toy onto bed","template":"Dropping [something] onto [something]","placeholders":["toy","bed"]}, +{"id":"103720","label":"cotton falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cotton"]}, +{"id":"60831","label":"moving gear wheel closer to battery","template":"Moving [something] closer to [something]","placeholders":["gear wheel","battery"]}, +{"id":"41824","label":"moving lighter away from lighter","template":"Moving [something] away from [something]","placeholders":["lighter","lighter"]}, +{"id":"217388","label":"picking tablet up","template":"Picking [something] up","placeholders":["tablet"]}, +{"id":"162481","label":"trying to bend electronic cigarette so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["electronic cigarette"]}, +{"id":"135281","label":"letting a tube of lip balm roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a tube of lip balm"]}, +{"id":"19942","label":"pretending to take mouse from pad","template":"Pretending to take [something] from [somewhere]","placeholders":["mouse","pad"]}, +{"id":"37928","label":"pulling colorful scarf from right to left","template":"Pulling [something] from right to left","placeholders":["colorful scarf"]}, +{"id":"81442","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"2252","label":"pretending to pick pick up nothing up","template":"Pretending to pick [something] up","placeholders":["pick up nothing"]}, +{"id":"122169","label":"putting a bottle behind another bottle","template":"Putting [something] behind [something]","placeholders":["a bottle","another bottle"]}, +{"id":"107226","label":"plugging usb into adaptor","template":"Plugging [something] into [something]","placeholders":["usb","adaptor"]}, +{"id":"68667","label":"holding remote next to laptop screen","template":"Holding [something] next to [something]","placeholders":["remote","laptop screen"]}, +{"id":"183179","label":"opening drawyer","template":"Opening [something]","placeholders":["drawyer"]}, +{"id":"53103","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"217671","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"4659","label":"letting a pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pen"]}, +{"id":"66591","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"3427","label":"throwing cigarette lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["cigarette lighter"]}, +{"id":"114672","label":"putting a spinner into a box","template":"Putting [something] into [something]","placeholders":["a spinner","a box"]}, +{"id":"94366","label":"twisting bottlecap","template":"Twisting [something]","placeholders":["bottlecap"]}, +{"id":"198126","label":"removing a bottle, revealing key chain behind","template":"Removing [something], revealing [something] behind","placeholders":["a bottle","key chain"]}, +{"id":"50301","label":"holding a knife in front of a pitcher","template":"Holding [something] in front of [something]","placeholders":["a knife","a pitcher"]}, +{"id":"151270","label":"uncovering a vessel","template":"Uncovering [something]","placeholders":["a vessel"]}, +{"id":"44821","label":"moving away from toothpaste tube with your camera","template":"Moving away from [something] with your camera","placeholders":["toothpaste tube"]}, +{"id":"178023","label":"moving mouse down","template":"Moving [something] down","placeholders":["mouse"]}, +{"id":"65250","label":"contact case falling like a rock","template":"[Something] falling like a rock","placeholders":["contact case"]}, +{"id":"143820","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"48015","label":"touching (without moving) top of match box","template":"Touching (without moving) [part] of [something]","placeholders":["top","match box"]}, +{"id":"24604","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"61803","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"5455","label":"uncovering bangles","template":"Uncovering [something]","placeholders":["bangles"]}, +{"id":"62410","label":"touching (without moving) flower of plant","template":"Touching (without moving) [part] of [something]","placeholders":["flower","plant"]}, +{"id":"166806","label":"pretending to open car perfume tin without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["car perfume tin"]}, +{"id":"117031","label":"putting red pot holder on a surface","template":"Putting [something] on a surface","placeholders":["red pot holder"]}, +{"id":"83901","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"48432","label":"putting scissor on the edge of slab so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["scissor","slab"]}, +{"id":"161595","label":"covering red chili with small box","template":"Covering [something] with [something]","placeholders":["red chili","small box"]}, +{"id":"24305","label":"moving mouse closer to keyboard","template":"Moving [something] closer to [something]","placeholders":["mouse","keyboard"]}, +{"id":"83961","label":"toy truck colliding with cup and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["toy truck","cup"]}, +{"id":"55458","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"641","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213166","label":"putting pitcher upright on the table","template":"Putting [something] upright on the table","placeholders":["pitcher"]}, +{"id":"117614","label":"pretending to open tiffin box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["tiffin box"]}, +{"id":"120754","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"103953","label":"uncovering a flask cover","template":"Uncovering [something]","placeholders":["a flask cover"]}, +{"id":"148093","label":"putting a fork on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a fork on the table"]}, +{"id":"201181","label":"bending a pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["a pencil"]}, +{"id":"62458","label":"taking a bell pepper","template":"Taking [one of many similar things on the table]","placeholders":["a bell pepper"]}, +{"id":"104517","label":"moving comb and calculator closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["comb","calculator"]}, +{"id":"47264","label":"dropping apple into garbage","template":"Dropping [something] into [something]","placeholders":["apple","garbage"]}, +{"id":"45078","label":"covering pen with folder","template":"Covering [something] with [something]","placeholders":["pen","folder"]}, +{"id":"50029","label":"pretending to pick purple microfiber up","template":"Pretending to pick [something] up","placeholders":["purple microfiber"]}, +{"id":"94410","label":"pretending to open shelf without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["shelf"]}, +{"id":"197634","label":"unfolding coversheet","template":"Unfolding [something]","placeholders":["coversheet"]}, +{"id":"82134","label":"moving a deodorant and a glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a deodorant","a glass"]}, +{"id":"1819","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"108341","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"90043","label":"covering blue colour pen with white sheet","template":"Covering [something] with [something]","placeholders":["blue colour pen","white sheet"]}, +{"id":"104162","label":"closing a laptop","template":"Closing [something]","placeholders":["a laptop"]}, +{"id":"117086","label":"adapter falling like a rock","template":"[Something] falling like a rock","placeholders":["adapter"]}, +{"id":"86694","label":"moving glass and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","glass"]}, +{"id":"84304","label":"touching (without moving) arm of action figure","template":"Touching (without moving) [part] of [something]","placeholders":["arm","action figure"]}, +{"id":"49586","label":"twisting wash cloth","template":"Twisting [something]","placeholders":["wash cloth"]}, +{"id":"192449","label":"letting thumbtack roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["thumbtack"]}, +{"id":"63593","label":"pretending to be tearing cellphone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cellphone"]}, +{"id":"61603","label":"pretending to be tearing water bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["water bottle"]}, +{"id":"186424","label":"taking glass","template":"Taking [one of many similar things on the table]","placeholders":["glass"]}, +{"id":"143524","label":"touching (without moving) hand rest of chair","template":"Touching (without moving) [part] of [something]","placeholders":["hand rest","chair"]}, +{"id":"126853","label":"dollar falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["dollar"]}, +{"id":"86489","label":"stuffing sugar into sugar container","template":"Stuffing [something] into [something]","placeholders":["sugar","sugar container"]}, +{"id":"88017","label":"showing nail polish to the camera","template":"Showing [something] to the camera","placeholders":["nail polish"]}, +{"id":"141375","label":"pulling a bottle from left to right","template":"Pulling [something] from left to right","placeholders":["a bottle"]}, +{"id":"206796","label":"pushing bottle with pen","template":"Pushing [something] with [something]","placeholders":["bottle","pen"]}, +{"id":"104298","label":"putting matchbox behind mug","template":"Putting [something] behind [something]","placeholders":["matchbox","mug"]}, +{"id":"62796","label":"tearing letter just a little bit","template":"Tearing [something] just a little bit","placeholders":["letter"]}, +{"id":"28111","label":"pushing an envelope so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an envelope"]}, +{"id":"116520","label":"scooping rocks up with trowel","template":"Scooping [something] up with [something]","placeholders":["rocks","trowel"]}, +{"id":"166665","label":"turning the camera right while filming flower","template":"Turning the camera right while filming [something]","placeholders":["flower"]}, +{"id":"80699","label":"turning the camera right while filming red watch box","template":"Turning the camera right while filming [something]","placeholders":["red watch box"]}, +{"id":"156641","label":"tipping a cup over","template":"Tipping [something] over","placeholders":["a cup"]}, +{"id":"193371","label":"pouring water into a measuring cup","template":"Pouring [something] into [something]","placeholders":["water","a measuring cup"]}, +{"id":"183171","label":"holding iphone next to banana","template":"Holding [something] next to [something]","placeholders":["iphone","banana"]}, +{"id":"83781","label":"dropping a peg in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a peg","a cup"]}, +{"id":"37985","label":"putting ruler into mug","template":"Putting [something] into [something]","placeholders":["ruler","mug"]}, +{"id":"90030","label":"poking ball so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ball"]}, +{"id":"63127","label":"tilting tablet with mouse on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["tablet","mouse"]}, +{"id":"61375","label":"holding cup next to scissors","template":"Holding [something] next to [something]","placeholders":["cup","scissors"]}, +{"id":"177883","label":"pushing keys from right to left","template":"Pushing [something] from right to left","placeholders":["keys"]}, +{"id":"113093","label":"sticker pack falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sticker pack"]}, +{"id":"58797","label":"pushing cable so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cable"]}, +{"id":"181164","label":"pretending to open frask without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["frask"]}, +{"id":"161130","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"132360","label":"closing a box","template":"Closing [something]","placeholders":["a box"]}, +{"id":"24706","label":"moving tree branch up","template":"Moving [something] up","placeholders":["tree branch"]}, +{"id":"65519","label":"wiping picture off of white board","template":"Wiping [something] off of [something]","placeholders":["picture","white board"]}, +{"id":"80072","label":"tilting book with scissors on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","scissors"]}, +{"id":"110043","label":"showing kissan jam to the camera","template":"Showing [something] to the camera","placeholders":["kissan jam"]}, +{"id":"133262","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"153985","label":"plugging a mobile phone into the socket","template":"Plugging [something] into [something]","placeholders":["a mobile phone","the socket"]}, +{"id":"33257","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"185578","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"29727","label":"putting mouse onto keyboard","template":"Putting [something] onto [something]","placeholders":["mouse","keyboard"]}, +{"id":"179922","label":"folding a hand towel","template":"Folding [something]","placeholders":["a hand towel"]}, +{"id":"53521","label":"throwing remote control onto a surface","template":"Throwing [something] onto a surface","placeholders":["remote control"]}, +{"id":"138850","label":"squeezing a plush toy","template":"Squeezing [something]","placeholders":["a plush toy"]}, +{"id":"141102","label":"moving canister away from paper towels","template":"Moving [something] away from [something]","placeholders":["canister","paper towels"]}, +{"id":"30791","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"115757","label":"holding phone in front of pants","template":"Holding [something] in front of [something]","placeholders":["phone","pants"]}, +{"id":"14731","label":"pulling speaker from right to left","template":"Pulling [something] from right to left","placeholders":["speaker"]}, +{"id":"31957","label":"unfolding notecard","template":"Unfolding [something]","placeholders":["notecard"]}, +{"id":"168796","label":"opening opening a manicure set","template":"Opening [something]","placeholders":["opening a manicure set"]}, +{"id":"74305","label":"spilling ketchup onto sink","template":"Spilling [something] onto [something]","placeholders":["ketchup","sink"]}, +{"id":"190447","label":"attaching mobile to charger","template":"Attaching [something] to [something]","placeholders":["mobile","charger"]}, +{"id":"36022","label":"opening printer","template":"Opening [something]","placeholders":["printer"]}, +{"id":"42449","label":"showing peppermint on top of water bottle","template":"Showing [something] on top of [something]","placeholders":["peppermint","water bottle"]}, +{"id":"160396","label":"uncovering remote","template":"Uncovering [something]","placeholders":["remote"]}, +{"id":"81061","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"72101","label":"moving toothbrush and toothpaste so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toothbrush","toothpaste"]}, +{"id":"147306","label":"pouring milk into bowl","template":"Pouring [something] into [something]","placeholders":["milk","bowl"]}, +{"id":"181523","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"153109","label":"opening the water container","template":"Opening [something]","placeholders":["the water container"]}, +{"id":"107888","label":"holding cup over pillow","template":"Holding [something] over [something]","placeholders":["cup","pillow"]}, +{"id":"53234","label":"pretending to put the mate next to bowl","template":"Pretending to put [something] next to [something]","placeholders":["the mate","bowl"]}, +{"id":"63237","label":"pretending to close supplement bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["supplement bottle"]}, +{"id":"107029","label":"pretending to take a beer can from the tabke","template":"Pretending to take [something] from [somewhere]","placeholders":["a beer can","the tabke"]}, +{"id":"172281","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"210125","label":"wiping jelly off of a book","template":"Wiping [something] off of [something]","placeholders":["jelly","a book"]}, +{"id":"15035","label":"turning the camera left while filming vanity bag","template":"Turning the camera left while filming [something]","placeholders":["vanity bag"]}, +{"id":"155358","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"173088","label":"holding a bottle","template":"Holding [something]","placeholders":["a bottle"]}, +{"id":"131001","label":"putting cloth clip on a surface","template":"Putting [something] on a surface","placeholders":["cloth clip"]}, +{"id":"73884","label":"hitting a helmet with a pencil","template":"Hitting [something] with [something]","placeholders":["a helmet","a pencil"]}, +{"id":"190342","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"56320","label":"showing a watch next to a desk lamp","template":"Showing [something] next to [something]","placeholders":["a watch","a desk lamp"]}, +{"id":"17045","label":"holding stapler next to hole puncher","template":"Holding [something] next to [something]","placeholders":["stapler","hole puncher"]}, +{"id":"216559","label":"putting a soda can on a surface","template":"Putting [something] on a surface","placeholders":["a soda can"]}, +{"id":"91344","label":"pushing knife so it spins","template":"Pushing [something] so it spins","placeholders":["knife"]}, +{"id":"113950","label":"turning wallet upside down","template":"Turning [something] upside down","placeholders":["wallet"]}, +{"id":"91798","label":"pulling toy truck from right to left","template":"Pulling [something] from right to left","placeholders":["toy truck"]}, +{"id":"173246","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"101552","label":"unfolding a piece of paper","template":"Unfolding [something]","placeholders":["a piece of paper"]}, +{"id":"148219","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"34894","label":"moving brush and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["brush","paper"]}, +{"id":"123711","label":"pushing brown bracelet from right to left","template":"Pushing [something] from right to left","placeholders":["brown bracelet"]}, +{"id":"111006","label":"touching (without moving) clasp of box","template":"Touching (without moving) [part] of [something]","placeholders":["clasp","box"]}, +{"id":"63640","label":"covering toothbrush with plate","template":"Covering [something] with [something]","placeholders":["toothbrush","plate"]}, +{"id":"180605","label":"holding purse behind plate","template":"Holding [something] behind [something]","placeholders":["purse","plate"]}, +{"id":"140122","label":"poking stapler so that it spins around","template":"Poking [something] so that it spins around","placeholders":["stapler"]}, +{"id":"182761","label":"spinning marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["marker"]}, +{"id":"218267","label":"holding a pen behind a cup","template":"Holding [something] behind [something]","placeholders":["a pen","a cup"]}, +{"id":"158765","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"81503","label":"bending tortilla until it breaks","template":"Bending [something] until it breaks","placeholders":["tortilla"]}, +{"id":"211835","label":"covering mug with towel","template":"Covering [something] with [something]","placeholders":["mug","towel"]}, +{"id":"92079","label":"stuffing spoon into cup","template":"Stuffing [something] into [something]","placeholders":["spoon","cup"]}, +{"id":"166754","label":"unfolding magazine","template":"Unfolding [something]","placeholders":["magazine"]}, +{"id":"85036","label":"adhesive can colliding with candle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["adhesive can","candle"]}, +{"id":"118902","label":"hitting a book with a bottle","template":"Hitting [something] with [something]","placeholders":["a book","a bottle"]}, +{"id":"73897","label":"holding green hair comb","template":"Holding [something]","placeholders":["green hair comb"]}, +{"id":"129492","label":"unfolding sheet of paper","template":"Unfolding [something]","placeholders":["sheet of paper"]}, +{"id":"164395","label":"twisting wire","template":"Twisting [something]","placeholders":["wire"]}, +{"id":"217931","label":"letting marker pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["marker pen"]}, +{"id":"16039","label":"showing green toy car on top of spectacle box","template":"Showing [something] on top of [something]","placeholders":["green toy car","spectacle box"]}, +{"id":"9858","label":"pushing a cup off of the counter","template":"Pushing [something] off of [something]","placeholders":["a cup","the counter"]}, +{"id":"73160","label":"squeezing phone case","template":"Squeezing [something]","placeholders":["phone case"]}, +{"id":"141498","label":"opening body lotion","template":"Opening [something]","placeholders":["body lotion"]}, +{"id":"132860","label":"trying to bend a dipper so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a dipper"]}, +{"id":"206775","label":"uncovering a watch","template":"Uncovering [something]","placeholders":["a watch"]}, +{"id":"149756","label":"putting toothbrush behind mug","template":"Putting [something] behind [something]","placeholders":["toothbrush","mug"]}, +{"id":"16537","label":"moving knife up","template":"Moving [something] up","placeholders":["knife"]}, +{"id":"213417","label":"dropping box onto pillow","template":"Dropping [something] onto [something]","placeholders":["box","pillow"]}, +{"id":"88834","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"164435","label":"putting package that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["package"]}, +{"id":"100536","label":"dropping case onto phone","template":"Dropping [something] onto [something]","placeholders":["case","phone"]}, +{"id":"4338","label":"showing a camera behind a videocamera","template":"Showing [something] behind [something]","placeholders":["a camera","a videocamera"]}, +{"id":"63823","label":"moving pincer down","template":"Moving [something] down","placeholders":["pincer"]}, +{"id":"171619","label":"turning the camera upwards while filming ball","template":"Turning the camera upwards while filming [something]","placeholders":["ball"]}, +{"id":"127296","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"1682","label":"putting 3 pens onto book","template":"Putting [number of] [something] onto [something]","placeholders":["3","pens","book"]}, +{"id":"46544","label":"opening toilet lid","template":"Opening [something]","placeholders":["toilet lid"]}, +{"id":"85418","label":"dropping keys in front of bag","template":"Dropping [something] in front of [something]","placeholders":["keys","bag"]}, +{"id":"68639","label":"approaching a small vacuum with your camera","template":"Approaching [something] with your camera","placeholders":["a small vacuum"]}, +{"id":"24263","label":"bubble wrap falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bubble wrap"]}, +{"id":"13167","label":"dropping badminton bat behind a pair of shoes","template":"Dropping [something] behind [something]","placeholders":["badminton bat","a pair of shoes"]}, +{"id":"169887","label":"poking teething ring so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["teething ring"]}, +{"id":"202033","label":"a notebook falling like a rock","template":"[Something] falling like a rock","placeholders":["a notebook"]}, +{"id":"182155","label":"spilling milk onto a plate","template":"Spilling [something] onto [something]","placeholders":["milk","a plate"]}, +{"id":"65196","label":"holding a bag in front of a picture","template":"Holding [something] in front of [something]","placeholders":["a bag","a picture"]}, +{"id":"166768","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"196350","label":"taking a coin from a jar","template":"Taking [something] from [somewhere]","placeholders":["a coin","a jar"]}, +{"id":"159740","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"29308","label":"putting green bowl that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["green bowl"]}, +{"id":"152533","label":"plugging microphone into laptop","template":"Plugging [something] into [something]","placeholders":["microphone","laptop"]}, +{"id":"1475","label":"turning the camera downwards while filming earphone","template":"Turning the camera downwards while filming [something]","placeholders":["earphone"]}, +{"id":"60517","label":"throwing tote bag onto a surface","template":"Throwing [something] onto a surface","placeholders":["tote bag"]}, +{"id":"204701","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"178838","label":"taking notebook out of box","template":"Taking [something] out of [something]","placeholders":["notebook","box"]}, +{"id":"179450","label":"folding bag","template":"Folding [something]","placeholders":["bag"]}, +{"id":"65676","label":"throwing tape","template":"Throwing [something]","placeholders":["tape"]}, +{"id":"77820","label":"putting 5 markers onto a table","template":"Putting [number of] [something] onto [something]","placeholders":["5","markers","a table"]}, +{"id":"114852","label":"spreading almond butter onto bread","template":"Spreading [something] onto [something]","placeholders":["almond butter","bread"]}, +{"id":"38462","label":"moving lip gloss and coffee mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lip gloss","coffee mug"]}, +{"id":"11769","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"114347","label":"taking belt out of duffel bag","template":"Taking [something] out of [something]","placeholders":["belt","duffel bag"]}, +{"id":"12870","label":"putting stamp pad that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["stamp pad"]}, +{"id":"147633","label":"putting a jar on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a jar"]}, +{"id":"1915","label":"spilling water onto mug","template":"Spilling [something] onto [something]","placeholders":["water","mug"]}, +{"id":"190758","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"97523","label":"plugging usb cable into usb slot","template":"Plugging [something] into [something]","placeholders":["usb cable","usb slot"]}, +{"id":"106124","label":"throwing bottle in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bottle"]}, +{"id":"111179","label":"pulling two ends of ruler but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["ruler"]}, +{"id":"55222","label":"tilting a cup with a card on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a cup","a card"]}, +{"id":"106237","label":"tilting a book with a box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a box"]}, +{"id":"87002","label":"pushing lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lighter"]}, +{"id":"191184","label":"putting pen in front of scissors","template":"Putting [something] in front of [something]","placeholders":["pen","scissors"]}, +{"id":"100087","label":"moving a pen and a marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pen","a marker"]}, +{"id":"77812","label":"moving a jar and another jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a jar","another jar"]}, +{"id":"149818","label":"poking flower so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["flower"]}, +{"id":"185519","label":"pretending to put a dvd case next to soda bottle","template":"Pretending to put [something] next to [something]","placeholders":["a dvd case","soda bottle"]}, +{"id":"58495","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"84094","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"82661","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"194380","label":"closing car door","template":"Closing [something]","placeholders":["car door"]}, +{"id":"73814","label":"pulling two ends of marker so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["marker"]}, +{"id":"198863","label":"turning the camera left while filming green water bottle","template":"Turning the camera left while filming [something]","placeholders":["green water bottle"]}, +{"id":"174376","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"175160","label":"pushing usb stick with ruler","template":"Pushing [something] with [something]","placeholders":["usb stick","ruler"]}, +{"id":"32811","label":"taking a wine glass","template":"Taking [one of many similar things on the table]","placeholders":["a wine glass"]}, +{"id":"68196","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"106955","label":"moving powerbank closer to radio","template":"Moving [something] closer to [something]","placeholders":["powerbank","radio"]}, +{"id":"142253","label":"holding candle in front of globe","template":"Holding [something] in front of [something]","placeholders":["candle","globe"]}, +{"id":"188988","label":"pushing candle with candle","template":"Pushing [something] with [something]","placeholders":["candle","candle"]}, +{"id":"92158","label":"pulling key from left to right","template":"Pulling [something] from left to right","placeholders":["key"]}, +{"id":"212818","label":"moving usb away from usb cable","template":"Moving [something] away from [something]","placeholders":["usb","usb cable"]}, +{"id":"146384","label":"pushing paint tube from left to right","template":"Pushing [something] from left to right","placeholders":["paint tube"]}, +{"id":"188983","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"207940","label":"dropping torch into shoe","template":"Dropping [something] into [something]","placeholders":["torch","shoe"]}, +{"id":"144130","label":"plugging extension plug into wall plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["extension plug","wall plug"]}, +{"id":"217331","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"95586","label":"stuffing calculator into envelope","template":"Stuffing [something] into [something]","placeholders":["calculator","envelope"]}, +{"id":"194017","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"108842","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"193726","label":"spinning lemon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lemon"]}, +{"id":"125449","label":"poking a hole into a tissue paper","template":"Poking a hole into [something soft]","placeholders":["a tissue paper"]}, +{"id":"87390","label":"closing plastic box","template":"Closing [something]","placeholders":["plastic box"]}, +{"id":"196386","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"178125","label":"covering wallet with cloth","template":"Covering [something] with [something]","placeholders":["wallet","cloth"]}, +{"id":"38899","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"30348","label":"holding smiley ball over diary","template":"Holding [something] over [something]","placeholders":["smiley ball","diary"]}, +{"id":"100400","label":"scooping ground coffee up with spoon","template":"Scooping [something] up with [something]","placeholders":["ground coffee","spoon"]}, +{"id":"100764","label":"pushing a paper from right to left","template":"Pushing [something] from right to left","placeholders":["a paper"]}, +{"id":"219951","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"144710","label":"picking vape up","template":"Picking [something] up","placeholders":["vape"]}, +{"id":"153348","label":"poking small, clockwork wolverine toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["small, clockwork wolverine toy"]}, +{"id":"140978","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"7092","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"143998","label":"picking toothpick up","template":"Picking [something] up","placeholders":["toothpick"]}, +{"id":"214951","label":"dropping pepper in front of a belt","template":"Dropping [something] in front of [something]","placeholders":["pepper","a belt"]}, +{"id":"141707","label":"throwing a pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pen"]}, +{"id":"69353","label":"moving nail polish closer to cup","template":"Moving [something] closer to [something]","placeholders":["nail polish","cup"]}, +{"id":"137692","label":"throwing a hanger onto a surface","template":"Throwing [something] onto a surface","placeholders":["a hanger"]}, +{"id":"220677","label":"lifting folder with box on it","template":"Lifting [something] with [something] on it","placeholders":["folder","box"]}, +{"id":"114425","label":"rolling ping pong ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ping pong ball"]}, +{"id":"136192","label":"closing pressure cooker","template":"Closing [something]","placeholders":["pressure cooker"]}, +{"id":"658","label":"pretending to be tearing a raincoat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a raincoat"]}, +{"id":"135643","label":"moving toy car and toy wheel so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy car","toy wheel"]}, +{"id":"216532","label":"pushing apple from right to left","template":"Pushing [something] from right to left","placeholders":["apple"]}, +{"id":"185741","label":"moving roll of tape across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["roll of tape"]}, +{"id":"57621","label":"pretending to take perfume from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["perfume","shelf"]}, +{"id":"219868","label":"unfolding paper towel","template":"Unfolding [something]","placeholders":["paper towel"]}, +{"id":"219554","label":"moving a cup across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a cup"]}, +{"id":"23207","label":"showing orange notebook to the camera","template":"Showing [something] to the camera","placeholders":["orange notebook"]}, +{"id":"100136","label":"lemon falling like a rock","template":"[Something] falling like a rock","placeholders":["lemon"]}, +{"id":"121115","label":"plugging power plug into outlet","template":"Plugging [something] into [something]","placeholders":["power plug","outlet"]}, +{"id":"196487","label":"pulling red watch case from left to right","template":"Pulling [something] from left to right","placeholders":["red watch case"]}, +{"id":"66981","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"137171","label":"throwing a claw","template":"Throwing [something]","placeholders":["a claw"]}, +{"id":"120387","label":"squeezing inflatable coozie","template":"Squeezing [something]","placeholders":["inflatable coozie"]}, +{"id":"157894","label":"lifting paperclip holder with paperclips on it","template":"Lifting [something] with [something] on it","placeholders":["paperclip holder","paperclips"]}, +{"id":"99185","label":"showing that paper is inside bowl","template":"Showing that [something] is inside [something]","placeholders":["paper","bowl"]}, +{"id":"53015","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"21553","label":"dropping rubix cube into green bowl","template":"Dropping [something] into [something]","placeholders":["rubix cube","green bowl"]}, +{"id":"118075","label":"putting tape and keys on the table","template":"Putting [something] and [something] on the table","placeholders":["tape","keys"]}, +{"id":"149061","label":"putting something on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["something"]}, +{"id":"14278","label":"putting mug in front of pendrive","template":"Putting [something] in front of [something]","placeholders":["mug","pendrive"]}, +{"id":"35493","label":"dropping a matchbox next to a card","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a card"]}, +{"id":"42521","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"177760","label":"holding hair dryer","template":"Holding [something]","placeholders":["hair dryer"]}, +{"id":"137436","label":"lifting a surface with a banana on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a banana"]}, +{"id":"119481","label":"removing something, revealing something behind","template":"Removing [something], revealing [something] behind","placeholders":["something","something"]}, +{"id":"159180","label":"pushing phone from left to right","template":"Pushing [something] from left to right","placeholders":["phone"]}, +{"id":"187854","label":"putting a binder onto a box","template":"Putting [something] onto [something]","placeholders":["a binder","a box"]}, +{"id":"31492","label":"pulling two ends of cotton ball but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["cotton ball"]}, +{"id":"99597","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"51406","label":"holding a box next to a cellphone","template":"Holding [something] next to [something]","placeholders":["a box","a cellphone"]}, +{"id":"162918","label":"stuffing paper into plastic cup","template":"Stuffing [something] into [something]","placeholders":["paper","plastic cup"]}, +{"id":"23764","label":"pushing a box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a box"]}, +{"id":"36097","label":"moving a glass of water up","template":"Moving [something] up","placeholders":["a glass of water"]}, +{"id":"125849","label":"spilling water onto paper","template":"Spilling [something] onto [something]","placeholders":["water","paper"]}, +{"id":"18710","label":"putting remote behind jug","template":"Putting [something] behind [something]","placeholders":["remote","jug"]}, +{"id":"72554","label":"taking candy","template":"Taking [one of many similar things on the table]","placeholders":["candy"]}, +{"id":"195728","label":"rolling spool of thread on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["spool of thread"]}, +{"id":"59656","label":"putting can on a surface","template":"Putting [something] on a surface","placeholders":["can"]}, +{"id":"220065","label":"stuffing flowers into box","template":"Stuffing [something] into [something]","placeholders":["flowers","box"]}, +{"id":"141072","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"100653","label":"moving cup and packet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","packet"]}, +{"id":"204990","label":"holding comb behind computer screen","template":"Holding [something] behind [something]","placeholders":["comb","computer screen"]}, +{"id":"116061","label":"letting mouse roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["mouse"]}, +{"id":"73674","label":"moving a box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a box"]}, +{"id":"9219","label":"pouring coffee into mug","template":"Pouring [something] into [something]","placeholders":["coffee","mug"]}, +{"id":"90688","label":"holding cup next to hand bag","template":"Holding [something] next to [something]","placeholders":["cup","hand bag"]}, +{"id":"214942","label":"ball colliding with another ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","another ball"]}, +{"id":"66183","label":"putting spoon onto cup","template":"Putting [something] onto [something]","placeholders":["spoon","cup"]}, +{"id":"13695","label":"pretending to pick mobile phone up","template":"Pretending to pick [something] up","placeholders":["mobile phone"]}, +{"id":"112098","label":"showing fridge to the camera","template":"Showing [something] to the camera","placeholders":["fridge"]}, +{"id":"92712","label":"lifting white colour board clip up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["white colour board clip"]}, +{"id":"170796","label":"letting ring roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ring"]}, +{"id":"81664","label":"throwing bag against wall","template":"Throwing [something] against [something]","placeholders":["bag","wall"]}, +{"id":"103529","label":"sprinkling seeds onto vegetables","template":"Sprinkling [something] onto [something]","placeholders":["seeds","vegetables"]}, +{"id":"86586","label":"pretending to poke ramekin","template":"Pretending to poke [something]","placeholders":["ramekin"]}, +{"id":"9653","label":"putting mirror behind box","template":"Putting [something] behind [something]","placeholders":["mirror","box"]}, +{"id":"16575","label":"dropping game next to paper","template":"Dropping [something] next to [something]","placeholders":["game","paper"]}, +{"id":"67650","label":"taking bottle from floor","template":"Taking [something] from [somewhere]","placeholders":["bottle","floor"]}, +{"id":"110595","label":"dropping remote control in front of table","template":"Dropping [something] in front of [something]","placeholders":["remote control","table"]}, +{"id":"122023","label":"taking cotton buds","template":"Taking [one of many similar things on the table]","placeholders":["cotton buds"]}, +{"id":"19489","label":"lifting marker up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["marker"]}, +{"id":"166038","label":"plugging box into wall","template":"Plugging [something] into [something]","placeholders":["box","wall"]}, +{"id":"67240","label":"bending cookie until it breaks","template":"Bending [something] until it breaks","placeholders":["cookie"]}, +{"id":"132160","label":"poking bag pin so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bag pin"]}, +{"id":"79214","label":"covering phone with folder","template":"Covering [something] with [something]","placeholders":["phone","folder"]}, +{"id":"177209","label":"uncovering a teddy","template":"Uncovering [something]","placeholders":["a teddy"]}, +{"id":"110683","label":"dropping toy in front of tv stand","template":"Dropping [something] in front of [something]","placeholders":["toy","tv stand"]}, +{"id":"207926","label":"opening small box","template":"Opening [something]","placeholders":["small box"]}, +{"id":"43082","label":"pretending or failing to wipe stickers off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stickers","table"]}, +{"id":"198804","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"20796","label":"unfolding scarf","template":"Unfolding [something]","placeholders":["scarf"]}, +{"id":"45189","label":"picking hat up","template":"Picking [something] up","placeholders":["hat"]}, +{"id":"122982","label":"spinning a marker so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a marker"]}, +{"id":"179769","label":"putting glasses case upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["glasses case"]}, +{"id":"7443","label":"showing a photo of family photo to the camera","template":"Showing a photo of [something] to the camera","placeholders":["family photo"]}, +{"id":"142139","label":"tipping remote over","template":"Tipping [something] over","placeholders":["remote"]}, +{"id":"191581","label":"showing pebble on top of striker coin","template":"Showing [something] on top of [something]","placeholders":["pebble","striker coin"]}, +{"id":"64357","label":"pretending to turn scissors upside down","template":"Pretending to turn [something] upside down","placeholders":["scissors"]}, +{"id":"60258","label":"pouring water into plastic case until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","plastic case"]}, +{"id":"3988","label":"throwing onion in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["onion"]}, +{"id":"184906","label":"showing that coffee cup is empty","template":"Showing that [something] is empty","placeholders":["coffee cup"]}, +{"id":"38673","label":"plugging cable into phone charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","phone charger"]}, +{"id":"175725","label":"poking stuffed toy so that it falls over","template":"Poking [something] so that it falls over","placeholders":["stuffed toy"]}, +{"id":"8251","label":"holding mug","template":"Holding [something]","placeholders":["mug"]}, +{"id":"163217","label":"pouring water onto plant","template":"Pouring [something] onto [something]","placeholders":["water","plant"]}, +{"id":"119101","label":"spinning bangle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bangle"]}, +{"id":"57119","label":"pretending to open envelope without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["envelope"]}, +{"id":"166562","label":"pushing orange bowl from right to left","template":"Pushing [something] from right to left","placeholders":["orange bowl"]}, +{"id":"152094","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"124217","label":"moving away from something with your camera","template":"Moving away from [something] with your camera","placeholders":["something"]}, +{"id":"220461","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"1452","label":"dropping a ball into a bowl","template":"Dropping [something] into [something]","placeholders":["a ball","a bowl"]}, +{"id":"88462","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"163893","label":"moving white mug closer to black mug","template":"Moving [something] closer to [something]","placeholders":["white mug","black mug"]}, +{"id":"12582","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"141992","label":"pushing tissue so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tissue"]}, +{"id":"217115","label":"putting 1 phone onto papers","template":"Putting [number of] [something] onto [something]","placeholders":["1","phone","papers"]}, +{"id":"201633","label":"plugging headphones into an ipod","template":"Plugging [something] into [something]","placeholders":["headphones","an ipod"]}, +{"id":"6585","label":"pretending to be tearing a cap","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a cap"]}, +{"id":"186861","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"121071","label":"moving glass closer to glass","template":"Moving [something] closer to [something]","placeholders":["glass","glass"]}, +{"id":"80757","label":"pushing tissues from left to right","template":"Pushing [something] from left to right","placeholders":["tissues"]}, +{"id":"110937","label":"twisting sock","template":"Twisting [something]","placeholders":["sock"]}, +{"id":"5157","label":"putting chickpea","template":"Putting [something similar to other things that are already on the table]","placeholders":["chickpea"]}, +{"id":"199203","label":"taking blue colour pen among the many colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["blue colour pen among the many colour pens on the table"]}, +{"id":"163711","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"88048","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"197873","label":"putting money into wallet","template":"Putting [something] into [something]","placeholders":["money","wallet"]}, +{"id":"9737","label":"hitting a glass with a coaster","template":"Hitting [something] with [something]","placeholders":["a glass","a coaster"]}, +{"id":"64380","label":"pouring milk into cup","template":"Pouring [something] into [something]","placeholders":["milk","cup"]}, +{"id":"107550","label":"showing small box next to large box","template":"Showing [something] next to [something]","placeholders":["small box","large box"]}, +{"id":"84207","label":"holding a wrench","template":"Holding [something]","placeholders":["a wrench"]}, +{"id":"204739","label":"putting coin underneath bag","template":"Putting [something] underneath [something]","placeholders":["coin","bag"]}, +{"id":"125435","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"195366","label":"taking pink golf ball","template":"Taking [one of many similar things on the table]","placeholders":["pink golf ball"]}, +{"id":"207591","label":"dropping apple into bowl","template":"Dropping [something] into [something]","placeholders":["apple","bowl"]}, +{"id":"83767","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"18086","label":"lifting plate with coffee cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","coffee cup"]}, +{"id":"129683","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"163930","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"182229","label":"pulling remote from left to right","template":"Pulling [something] from left to right","placeholders":["remote"]}, +{"id":"191590","label":"moving ring and ring closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ring","ring"]}, +{"id":"72310","label":"holding pencil over tape","template":"Holding [something] over [something]","placeholders":["pencil","tape"]}, +{"id":"189745","label":"pushing action camera from right to left","template":"Pushing [something] from right to left","placeholders":["action camera"]}, +{"id":"93526","label":"dropping a pen onto an envelope","template":"Dropping [something] onto [something]","placeholders":["a pen","an envelope"]}, +{"id":"12340","label":"lifting up one end of birthday card, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["birthday card"]}, +{"id":"151843","label":"pushing stapler from right to left","template":"Pushing [something] from right to left","placeholders":["stapler"]}, +{"id":"50519","label":"hitting shoe with torch","template":"Hitting [something] with [something]","placeholders":["shoe","torch"]}, +{"id":"176333","label":"taking water bottle","template":"Taking [one of many similar things on the table]","placeholders":["water bottle"]}, +{"id":"13736","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"23231","label":"holding chocolate next to mobile","template":"Holding [something] next to [something]","placeholders":["chocolate","mobile"]}, +{"id":"78762","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"91142","label":"pushing candle with book","template":"Pushing [something] with [something]","placeholders":["candle","book"]}, +{"id":"176009","label":"rolling duct tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["duct tape"]}, +{"id":"168875","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"169707","label":"throwing plastic plate holder in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["plastic plate holder"]}, +{"id":"125865","label":"pushing nail polish bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["nail polish bottle"]}, +{"id":"111350","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"125356","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"191250","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"89189","label":"holding scissors in front of clock","template":"Holding [something] in front of [something]","placeholders":["scissors","clock"]}, +{"id":"176222","label":"taking plastic out of basket","template":"Taking [something] out of [something]","placeholders":["plastic","basket"]}, +{"id":"39041","label":"pulling two ends of spring so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["spring"]}, +{"id":"187076","label":"moving away from sapodilla with your camera","template":"Moving away from [something] with your camera","placeholders":["sapodilla"]}, +{"id":"155374","label":"holding bicycle bell next to rubix cube","template":"Holding [something] next to [something]","placeholders":["bicycle bell","rubix cube"]}, +{"id":"189780","label":"taking tea","template":"Taking [one of many similar things on the table]","placeholders":["tea"]}, +{"id":"45106","label":"orange colliding with orange and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["orange","orange"]}, +{"id":"111944","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"95506","label":"letting a pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pencil"]}, +{"id":"65448","label":"covering a mug with a dish towel","template":"Covering [something] with [something]","placeholders":["a mug","a dish towel"]}, +{"id":"165518","label":"pretending to pick a shoe up","template":"Pretending to pick [something] up","placeholders":["a shoe"]}, +{"id":"148145","label":"opening handbag","template":"Opening [something]","placeholders":["handbag"]}, +{"id":"74810","label":"throwing keys onto a surface","template":"Throwing [something] onto a surface","placeholders":["keys"]}, +{"id":"86009","label":"pushing a ball so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a ball"]}, +{"id":"78060","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"50656","label":"showing hammer on top of blender","template":"Showing [something] on top of [something]","placeholders":["hammer","blender"]}, +{"id":"95893","label":"tearing toilet paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["toilet paper"]}, +{"id":"176719","label":"dropping spoon into glass","template":"Dropping [something] into [something]","placeholders":["spoon","glass"]}, +{"id":"90150","label":"pretending to pick a tablet stand up","template":"Pretending to pick [something] up","placeholders":["a tablet stand"]}, +{"id":"125286","label":"moving a ice tray away from the cup","template":"Moving [something] away from [something]","placeholders":["a ice tray","the cup"]}, +{"id":"193439","label":"closing magazine","template":"Closing [something]","placeholders":["magazine"]}, +{"id":"43037","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"124061","label":"moving a stapler and a bracelet closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a stapler","a bracelet"]}, +{"id":"211344","label":"putting controller underneath couch","template":"Putting [something] underneath [something]","placeholders":["controller","couch"]}, +{"id":"99760","label":"pulling punch from right to left","template":"Pulling [something] from right to left","placeholders":["punch"]}, +{"id":"180102","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"41925","label":"poking a book so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a book"]}, +{"id":"183973","label":"a container falling like a rock","template":"[Something] falling like a rock","placeholders":["a container"]}, +{"id":"187079","label":"taking packet out of basket","template":"Taking [something] out of [something]","placeholders":["packet","basket"]}, +{"id":"218270","label":"putting coin into ashtray","template":"Putting [something] into [something]","placeholders":["coin","ashtray"]}, +{"id":"161608","label":"turning the camera downwards while filming white candle","template":"Turning the camera downwards while filming [something]","placeholders":["white candle"]}, +{"id":"204619","label":"moving away from cup with your camera","template":"Moving away from [something] with your camera","placeholders":["cup"]}, +{"id":"179423","label":"picking car key up","template":"Picking [something] up","placeholders":["car key"]}, +{"id":"200482","label":"lifting ecig up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["ecig"]}, +{"id":"80618","label":"covering comb with wipes","template":"Covering [something] with [something]","placeholders":["comb","wipes"]}, +{"id":"12799","label":"showing that paper is inside glass","template":"Showing that [something] is inside [something]","placeholders":["paper","glass"]}, +{"id":"68554","label":"showing that liquid is inside waterbottle","template":"Showing that [something] is inside [something]","placeholders":["liquid","waterbottle"]}, +{"id":"35565","label":"moving the pencil case up","template":"Moving [something] up","placeholders":["the pencil case"]}, +{"id":"49883","label":"putting a pocket knife, a container and a hand bag on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pocket knife","a container","a hand bag"]}, +{"id":"121079","label":"spreading perfume onto pillow","template":"Spreading [something] onto [something]","placeholders":["perfume","pillow"]}, +{"id":"62211","label":"spinning soap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["soap"]}, +{"id":"71277","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"111422","label":"pushing white candle from left to right","template":"Pushing [something] from left to right","placeholders":["white candle"]}, +{"id":"14732","label":"moving plate and glove away from each other","template":"Moving [something] and [something] away from each other","placeholders":["plate","glove"]}, +{"id":"35550","label":"pretending to be tearing plate","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plate"]}, +{"id":"25776","label":"taking envelope out of drawer","template":"Taking [something] out of [something]","placeholders":["envelope","drawer"]}, +{"id":"31817","label":"rolling an orange on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an orange"]}, +{"id":"209616","label":"stuffing a cd into a case","template":"Stuffing [something] into [something]","placeholders":["a cd","a case"]}, +{"id":"39127","label":"folding book","template":"Folding [something]","placeholders":["book"]}, +{"id":"69776","label":"twisting bottle","template":"Twisting [something]","placeholders":["bottle"]}, +{"id":"148106","label":"holding bottle behind bottle","template":"Holding [something] behind [something]","placeholders":["bottle","bottle"]}, +{"id":"142184","label":"showing water tank to the camera","template":"Showing [something] to the camera","placeholders":["water tank"]}, +{"id":"82168","label":"putting hat on a surface","template":"Putting [something] on a surface","placeholders":["hat"]}, +{"id":"166057","label":"stacking books on sofa","template":"Stacking [number of] [something]","placeholders":["books on","sofa"]}, +{"id":"14422","label":"holding cup next to glass cleaner","template":"Holding [something] next to [something]","placeholders":["cup","glass cleaner"]}, +{"id":"19666","label":"showing that the cup noodle is empty","template":"Showing that [something] is empty","placeholders":["the cup noodle"]}, +{"id":"72766","label":"pulling magnifying glass from right to left","template":"Pulling [something] from right to left","placeholders":["magnifying glass"]}, +{"id":"16867","label":"opening pen","template":"Opening [something]","placeholders":["pen"]}, +{"id":"24038","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"29220","label":"rolling a battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a battery"]}, +{"id":"152114","label":"uncovering a wallet","template":"Uncovering [something]","placeholders":["a wallet"]}, +{"id":"59043","label":"spinning nail polish so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["nail polish"]}, +{"id":"62624","label":"pouring something onto something","template":"Pouring [something] onto [something]","placeholders":["something","something"]}, +{"id":"73757","label":"holding mp3 player next to hole puncher","template":"Holding [something] next to [something]","placeholders":["mp3 player","hole puncher"]}, +{"id":"41714","label":"poking an apple so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["an apple"]}, +{"id":"26407","label":"holding a card","template":"Holding [something]","placeholders":["a card"]}, +{"id":"494","label":"squeezing a toy football","template":"Squeezing [something]","placeholders":["a toy football"]}, +{"id":"135008","label":"turning can upside down","template":"Turning [something] upside down","placeholders":["can"]}, +{"id":"26206","label":"spinning round globe so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["round globe"]}, +{"id":"214489","label":"pretending to pick granola bar up","template":"Pretending to pick [something] up","placeholders":["granola bar"]}, +{"id":"196132","label":"pretending to pick a pen up","template":"Pretending to pick [something] up","placeholders":["a pen"]}, +{"id":"128477","label":"taking scissors out of drawer","template":"Taking [something] out of [something]","placeholders":["scissors","drawer"]}, +{"id":"27730","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"61246","label":"pushing tennis ball from right to left","template":"Pushing [something] from right to left","placeholders":["tennis ball"]}, +{"id":"158963","label":"pretending to take candy out of vase","template":"Pretending to take [something] out of [something]","placeholders":["candy","vase"]}, +{"id":"29634","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"83948","label":"moving notebook closer to plastic cup","template":"Moving [something] closer to [something]","placeholders":["notebook","plastic cup"]}, +{"id":"131653","label":"putting lip balm on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["lip balm"]}, +{"id":"43071","label":"twisting (wringing) a rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a rag"]}, +{"id":"107257","label":"plugging a cable into a computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a computer"]}, +{"id":"187237","label":"showing a photo of a singer to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a singer"]}, +{"id":"18001","label":"dropping ice cube into cup","template":"Dropping [something] into [something]","placeholders":["ice cube","cup"]}, +{"id":"2560","label":"pushing a bottletop so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a bottletop"]}, +{"id":"60981","label":"putting stick on a surface","template":"Putting [something] on a surface","placeholders":["stick"]}, +{"id":"19162","label":"pushing a pen with a pencil","template":"Pushing [something] with [something]","placeholders":["a pen","a pencil"]}, +{"id":"38937","label":"showing badge to the camera","template":"Showing [something] to the camera","placeholders":["badge"]}, +{"id":"11628","label":"showing red spoon next to white spoon","template":"Showing [something] next to [something]","placeholders":["red spoon","white spoon"]}, +{"id":"160839","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"158046","label":"taking one of many books","template":"Taking [one of many similar things on the table]","placeholders":["one of many books"]}, +{"id":"47059","label":"digging nail polish out of pile of nail polish","template":"Digging [something] out of [something]","placeholders":["nail polish","pile of nail polish"]}, +{"id":"94544","label":"pouring water into a mug until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a mug"]}, +{"id":"195326","label":"turning plastic bowl upside down","template":"Turning [something] upside down","placeholders":["plastic bowl"]}, +{"id":"51798","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"184037","label":"hitting a bin with a marker","template":"Hitting [something] with [something]","placeholders":["a bin","a marker"]}, +{"id":"139238","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"64308","label":"pretending to be tearing yellow duster cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["yellow duster cloth"]}, +{"id":"51655","label":"putting modem onto table","template":"Putting [something] onto [something]","placeholders":["modem","table"]}, +{"id":"156041","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"25632","label":"poking water bottle so that it spins around","template":"Poking [something] so that it spins around","placeholders":["water bottle"]}, +{"id":"139048","label":"pretending to be tearing a phone","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a phone"]}, +{"id":"119449","label":"pretending to scoop snack up with paper","template":"Pretending to scoop [something] up with [something]","placeholders":["snack","paper"]}, +{"id":"132234","label":"twisting lid off nail polish","template":"Twisting [something]","placeholders":["lid off nail polish"]}, +{"id":"32538","label":"moving ball and bottle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["ball","bottle"]}, +{"id":"24034","label":"moving a pen and a smartphone so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a smartphone"]}, +{"id":"16016","label":"moving toy car and toy car so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["toy car","toy car"]}, +{"id":"200229","label":"poking a pepper shaker so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a pepper shaker"]}, +{"id":"178407","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"105773","label":"pretending to poke cord","template":"Pretending to poke [something]","placeholders":["cord"]}, +{"id":"204382","label":"moving tape dispenser and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["tape dispenser","mouse"]}, +{"id":"22140","label":"covering stone with cap","template":"Covering [something] with [something]","placeholders":["stone","cap"]}, +{"id":"201467","label":"moving plant towards the camera","template":"Moving [something] towards the camera","placeholders":["plant"]}, +{"id":"43917","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"12464","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"33557","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"192032","label":"pulling two ends of a hairbrush but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a hairbrush"]}, +{"id":"56299","label":"dropping battery in front of glass","template":"Dropping [something] in front of [something]","placeholders":["battery","glass"]}, +{"id":"118572","label":"putting glasses underneath desk","template":"Putting [something] underneath [something]","placeholders":["glasses","desk"]}, +{"id":"143643","label":"pushing brown case from left to right","template":"Pushing [something] from left to right","placeholders":["brown case"]}, +{"id":"151224","label":"poking candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["candle"]}, +{"id":"1630","label":"moving a marker across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a marker"]}, +{"id":"183535","label":"pulling torch from left to right","template":"Pulling [something] from left to right","placeholders":["torch"]}, +{"id":"180436","label":"tilting box with notebook on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","notebook"]}, +{"id":"209208","label":"throwing a rock in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a rock"]}, +{"id":"123379","label":"toilet paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["toilet paper"]}, +{"id":"161422","label":"pretending to take shoe from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["shoe","floor"]}, +{"id":"170842","label":"squeezing a face wash tube","template":"Squeezing [something]","placeholders":["a face wash tube"]}, +{"id":"21859","label":"squeezing a plastic bottle","template":"Squeezing [something]","placeholders":["a plastic bottle"]}, +{"id":"202165","label":"pretending to be tearing pad of paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["pad of paper"]}, +{"id":"39980","label":"moving lid of pan","template":"Moving [part] of [something]","placeholders":["lid","pan"]}, +{"id":"123133","label":"tearing note paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["note paper"]}, +{"id":"163062","label":"putting orange","template":"Putting [something similar to other things that are already on the table]","placeholders":["orange"]}, +{"id":"193868","label":"twisting a brochure","template":"Twisting [something]","placeholders":["a brochure"]}, +{"id":"35883","label":"putting a remote control onto a book","template":"Putting [something] onto [something]","placeholders":["a remote control","a book"]}, +{"id":"82004","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"145242","label":"putting a bottle of mustard on a surface","template":"Putting [something] on a surface","placeholders":["a bottle of mustard"]}, +{"id":"138104","label":"taking screwdriver out of toolbox","template":"Taking [something] out of [something]","placeholders":["screwdriver","toolbox"]}, +{"id":"58085","label":"folding jacket","template":"Folding [something]","placeholders":["jacket"]}, +{"id":"29139","label":"stuffing napkin into cup holder","template":"Stuffing [something] into [something]","placeholders":["napkin","cup holder"]}, +{"id":"1886","label":"piling boxes up","template":"Piling [something] up","placeholders":["boxes"]}, +{"id":"116005","label":"holding comb over counter","template":"Holding [something] over [something]","placeholders":["comb","counter"]}, +{"id":"198465","label":"pushing something onto something","template":"Pushing [something] onto [something]","placeholders":["something","something"]}, +{"id":"135394","label":"dropping battery cell onto stool","template":"Dropping [something] onto [something]","placeholders":["battery cell","stool"]}, +{"id":"45861","label":"holding a pocket knife behind a piece of paper","template":"Holding [something] behind [something]","placeholders":["a pocket knife","a piece of paper"]}, +{"id":"94213","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"202300","label":"dropping pen onto pencil case","template":"Dropping [something] onto [something]","placeholders":["pen","pencil case"]}, +{"id":"157868","label":"pushing toy wheel with red colour pen","template":"Pushing [something] with [something]","placeholders":["toy wheel","red colour pen"]}, +{"id":"50964","label":"rolling metal rod on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["metal rod"]}, +{"id":"188853","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"140163","label":"putting a fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["a fork"]}, +{"id":"197146","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"31221","label":"pushing a wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a wallet"]}, +{"id":"191457","label":"holding toy next to jar","template":"Holding [something] next to [something]","placeholders":["toy","jar"]}, +{"id":"77770","label":"poking a stuffed animal so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a stuffed animal"]}, +{"id":"33325","label":"tilting phone with pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["phone","pencil"]}, +{"id":"41579","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"117500","label":"stuffing a pen into a pencase","template":"Stuffing [something] into [something]","placeholders":["a pen","a pencase"]}, +{"id":"59557","label":"moving control away from vase","template":"Moving [something] away from [something]","placeholders":["control","vase"]}, +{"id":"146676","label":"tilting notebook with eraser on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["notebook","eraser"]}, +{"id":"18485","label":"putting sharpener onto sticky note","template":"Putting [something] onto [something]","placeholders":["sharpener","sticky note"]}, +{"id":"193593","label":"smoking paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["smoking paper"]}, +{"id":"218305","label":"stuffing a sock into a shoe","template":"Stuffing [something] into [something]","placeholders":["a sock","a shoe"]}, +{"id":"99674","label":"showing grasses to the camera","template":"Showing [something] to the camera","placeholders":["grasses"]}, +{"id":"150162","label":"holding a candle over owl statue","template":"Holding [something] over [something]","placeholders":["a candle","owl statue"]}, +{"id":"138355","label":"putting cup on a surface","template":"Putting [something] on a surface","placeholders":["cup"]}, +{"id":"157981","label":"dropping a matchbox next to a pin","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a pin"]}, +{"id":"157784","label":"pretending to sprinkle air onto leg","template":"Pretending to sprinkle air onto [something]","placeholders":["leg"]}, +{"id":"199464","label":"taking pom poms out of a container","template":"Taking [something] out of [something]","placeholders":["pom poms","a container"]}, +{"id":"148753","label":"dropping slipper in front of handbag","template":"Dropping [something] in front of [something]","placeholders":["slipper","handbag"]}, +{"id":"50966","label":"dropping pet bottle in front of feet","template":"Dropping [something] in front of [something]","placeholders":["pet bottle","feet"]}, +{"id":"7716","label":"pushing ink bottle with spring","template":"Pushing [something] with [something]","placeholders":["ink bottle","spring"]}, +{"id":"121159","label":"pretending to sprinkle air onto hair","template":"Pretending to sprinkle air onto [something]","placeholders":["hair"]}, +{"id":"42682","label":"pretending to be tearing credit card","template":"Pretending to be tearing [something that is not tearable]","placeholders":["credit card"]}, +{"id":"24408","label":"wiping sauce off of hummus container","template":"Wiping [something] off of [something]","placeholders":["sauce","hummus container"]}, +{"id":"86525","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"149390","label":"twisting mp4 case","template":"Twisting [something]","placeholders":["mp4 case"]}, +{"id":"73513","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"155721","label":"turning a plastic tub upside down","template":"Turning [something] upside down","placeholders":["a plastic tub"]}, +{"id":"198635","label":"closing pouch","template":"Closing [something]","placeholders":["pouch"]}, +{"id":"161343","label":"pretending to pick a book up","template":"Pretending to pick [something] up","placeholders":["a book"]}, +{"id":"180596","label":"dropping a bag behind a table","template":"Dropping [something] behind [something]","placeholders":["a bag","a table"]}, +{"id":"1451","label":"pretending or failing to wipe paint off of painting","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","painting"]}, +{"id":"136835","label":"bending a book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a book"]}, +{"id":"165649","label":"throwing lighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["lighter"]}, +{"id":"5270","label":"dropping pen onto paper","template":"Dropping [something] onto [something]","placeholders":["pen","paper"]}, +{"id":"10295","label":"taking spoon out of cup","template":"Taking [something] out of [something]","placeholders":["spoon","cup"]}, +{"id":"176249","label":"moving pencile up","template":"Moving [something] up","placeholders":["pencile"]}, +{"id":"92699","label":"moving a book up","template":"Moving [something] up","placeholders":["a book"]}, +{"id":"55519","label":"taking bottle from table","template":"Taking [something] from [somewhere]","placeholders":["bottle","table"]}, +{"id":"157253","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"55775","label":"rolling umbrella on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["umbrella"]}, +{"id":"215310","label":"dropping block in front of candle","template":"Dropping [something] in front of [something]","placeholders":["block","candle"]}, +{"id":"202489","label":"putting a can on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a can"]}, +{"id":"144305","label":"touching (without moving) top of toy","template":"Touching (without moving) [part] of [something]","placeholders":["top","toy"]}, +{"id":"195268","label":"holding paper over game","template":"Holding [something] over [something]","placeholders":["paper","game"]}, +{"id":"167135","label":"moving box up","template":"Moving [something] up","placeholders":["box"]}, +{"id":"219030","label":"squeezing paper towel","template":"Squeezing [something]","placeholders":["paper towel"]}, +{"id":"147034","label":"pushing belt so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["belt"]}, +{"id":"15987","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"215855","label":"poking a bottle of nail varnish so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bottle of nail varnish"]}, +{"id":"38684","label":"tipping salsa jar over","template":"Tipping [something] over","placeholders":["salsa jar"]}, +{"id":"215751","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"142966","label":"moving purple container up","template":"Moving [something] up","placeholders":["purple container"]}, +{"id":"81665","label":"dropping mouse next to keyboard","template":"Dropping [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"182144","label":"attaching cap to a ballpen","template":"Attaching [something] to [something]","placeholders":["cap","a ballpen"]}, +{"id":"177140","label":"moving moving stone up up","template":"Moving [something] up","placeholders":["moving stone up"]}, +{"id":"87220","label":"opening face cream pack","template":"Opening [something]","placeholders":["face cream pack"]}, +{"id":"187302","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"133017","label":"holding glass next to glass","template":"Holding [something] next to [something]","placeholders":["glass","glass"]}, +{"id":"125814","label":"throwing a lemon candy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a lemon candy"]}, +{"id":"87493","label":"putting laundry into a washing machine","template":"Putting [something] into [something]","placeholders":["laundry","a washing machine"]}, +{"id":"34571","label":"putting skipping rope, scale and stapler on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["skipping rope","scale","stapler"]}, +{"id":"91140","label":"pushing a water bottle so it spins","template":"Pushing [something] so it spins","placeholders":["a water bottle"]}, +{"id":"20830","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"30163","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"204298","label":"taking pendrive from computer table","template":"Taking [something] from [somewhere]","placeholders":["pendrive","computer table"]}, +{"id":"155570","label":"pretending to be tearing cd","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cd"]}, +{"id":"84541","label":"pushing orange so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["orange"]}, +{"id":"71944","label":"moving toilet paper closer to inhaler","template":"Moving [something] closer to [something]","placeholders":["toilet paper","inhaler"]}, +{"id":"208553","label":"holding mobile phone over notebook","template":"Holding [something] over [something]","placeholders":["mobile phone","notebook"]}, +{"id":"113586","label":"pretending to put helmet next to scooter","template":"Pretending to put [something] next to [something]","placeholders":["helmet","scooter"]}, +{"id":"173478","label":"folding shorts","template":"Folding [something]","placeholders":["shorts"]}, +{"id":"108047","label":"holding a lighter next to a phone","template":"Holding [something] next to [something]","placeholders":["a lighter","a phone"]}, +{"id":"204343","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"137288","label":"pushing clip onto phone","template":"Pushing [something] onto [something]","placeholders":["clip","phone"]}, +{"id":"231","label":"holding pen","template":"Holding [something]","placeholders":["pen"]}, +{"id":"65916","label":"tipping pen with book over, so pen falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["pen","book","pen"]}, +{"id":"64948","label":"picking lever up","template":"Picking [something] up","placeholders":["lever"]}, +{"id":"20457","label":"pushing colony bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["colony bottle"]}, +{"id":"24109","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"60442","label":"bending toothbrush stick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothbrush stick"]}, +{"id":"34166","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"14116","label":"tipping pig over","template":"Tipping [something] over","placeholders":["pig"]}, +{"id":"7613","label":"dropping case in front of phone","template":"Dropping [something] in front of [something]","placeholders":["case","phone"]}, +{"id":"155745","label":"folding piece of paper","template":"Folding [something]","placeholders":["piece of paper"]}, +{"id":"64412","label":"hitting jar with glass","template":"Hitting [something] with [something]","placeholders":["jar","glass"]}, +{"id":"134024","label":"throwing wood in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["wood"]}, +{"id":"74892","label":"pretending to put mister on a surface","template":"Pretending to put [something] on a surface","placeholders":["mister"]}, +{"id":"183136","label":"bending paperclip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["paperclip"]}, +{"id":"37333","label":"pretending or failing to wipe stain off of shirt","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","shirt"]}, +{"id":"74856","label":"throwing a electric bulb in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a electric bulb"]}, +{"id":"37062","label":"digging ring out of blanket","template":"Digging [something] out of [something]","placeholders":["ring","blanket"]}, +{"id":"64905","label":"putting book, watch and remote on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["book","watch","remote"]}, +{"id":"106879","label":"showing razor to the camera","template":"Showing [something] to the camera","placeholders":["razor"]}, +{"id":"12056","label":"moving wristwatch down","template":"Moving [something] down","placeholders":["wristwatch"]}, +{"id":"125638","label":"pretending to close a jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a jar"]}, +{"id":"187731","label":"showing bottle on top of stapler","template":"Showing [something] on top of [something]","placeholders":["bottle","stapler"]}, +{"id":"140364","label":"holding a pen behind a pencil case","template":"Holding [something] behind [something]","placeholders":["a pen","a pencil case"]}, +{"id":"144714","label":"showing that pen is inside orange bowl","template":"Showing that [something] is inside [something]","placeholders":["pen","orange bowl"]}, +{"id":"152358","label":"turning a remote upside down","template":"Turning [something] upside down","placeholders":["a remote"]}, +{"id":"179144","label":"pretending or trying and failing to twist calculator","template":"Pretending or trying and failing to twist [something]","placeholders":["calculator"]}, +{"id":"129927","label":"moving box and can away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","can"]}, +{"id":"47482","label":"scooping iced tea mix up with a spoon","template":"Scooping [something] up with [something]","placeholders":["iced tea mix","a spoon"]}, +{"id":"212279","label":"pushing a box from left to right","template":"Pushing [something] from left to right","placeholders":["a box"]}, +{"id":"157166","label":"pushing stapler with tooth brush","template":"Pushing [something] with [something]","placeholders":["stapler","tooth brush"]}, +{"id":"199495","label":"poking prescription so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["prescription"]}, +{"id":"102311","label":"plugging charger into multi-plug","template":"Plugging [something] into [something]","placeholders":["charger","multi-plug"]}, +{"id":"102537","label":"pulling two ends of roller but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["roller"]}, +{"id":"42411","label":"moving sugar closer to coffee","template":"Moving [something] closer to [something]","placeholders":["sugar","coffee"]}, +{"id":"88253","label":"moving remote across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["remote"]}, +{"id":"93859","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"42986","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"99838","label":"pulling cellphone from right to left","template":"Pulling [something] from right to left","placeholders":["cellphone"]}, +{"id":"157299","label":"pretending to put folder onto desk","template":"Pretending to put [something] onto [something]","placeholders":["folder","desk"]}, +{"id":"76629","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"197154","label":"putting a ruler behind a flowerpot","template":"Putting [something] behind [something]","placeholders":["a ruler","a flowerpot"]}, +{"id":"5646","label":"moving perfume bottle and wax jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["perfume bottle","wax jar"]}, +{"id":"165368","label":"tearing sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet of paper"]}, +{"id":"131606","label":"moving carom coin closer to rubber band","template":"Moving [something] closer to [something]","placeholders":["carom coin","rubber band"]}, +{"id":"62189","label":"pushing one tealight candle from left to right","template":"Pushing [something] from left to right","placeholders":["one tealight candle"]}, +{"id":"174873","label":"putting roll of tape next to towel","template":"Putting [something] next to [something]","placeholders":["roll of tape","towel"]}, +{"id":"87468","label":"plugging a plug into a wall socket","template":"Plugging [something] into [something]","placeholders":["a plug","a wall socket"]}, +{"id":"29243","label":"tilting coaster with banana on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["coaster","banana"]}, +{"id":"40842","label":"burying screw in flowerpot","template":"Burying [something] in [something]","placeholders":["screw","flowerpot"]}, +{"id":"188772","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"111019","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"98413","label":"picking keys up","template":"Picking [something] up","placeholders":["keys"]}, +{"id":"114022","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"194162","label":"lifting up one end of paper, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["paper"]}, +{"id":"25918","label":"pushing box from left to right","template":"Pushing [something] from left to right","placeholders":["box"]}, +{"id":"33342","label":"moving paper down","template":"Moving [something] down","placeholders":["paper"]}, +{"id":"191733","label":"pretending to squeeze tape","template":"Pretending to squeeze [something]","placeholders":["tape"]}, +{"id":"190483","label":"hitting a ball with another ball","template":"Hitting [something] with [something]","placeholders":["a ball","another ball"]}, +{"id":"17384","label":"taking a coin","template":"Taking [one of many similar things on the table]","placeholders":["a coin"]}, +{"id":"112997","label":"pouring grains into a glass jar until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["grains","a glass jar"]}, +{"id":"16498","label":"putting a container upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a container"]}, +{"id":"86156","label":"pretending to take plate from shelf","template":"Pretending to take [something] from [somewhere]","placeholders":["plate","shelf"]}, +{"id":"11775","label":"plugging plug into switch board","template":"Plugging [something] into [something]","placeholders":["plug","switch board"]}, +{"id":"172524","label":"stuffing bubble wrap into an envelope","template":"Stuffing [something] into [something]","placeholders":["bubble wrap","an envelope"]}, +{"id":"32443","label":"putting 2 toys onto can","template":"Putting [number of] [something] onto [something]","placeholders":["2","toys","can"]}, +{"id":"163540","label":"pretending to be tearing blanket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["blanket"]}, +{"id":"199115","label":"taking one screw","template":"Taking [one of many similar things on the table]","placeholders":["one screw"]}, +{"id":"136157","label":"tipping a cup with coffee beans over, so coffee beans falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","coffee beans","coffee beans"]}, +{"id":"131817","label":"pretending to pick dvd case up","template":"Pretending to pick [something] up","placeholders":["dvd case"]}, +{"id":"152384","label":"twisting a piece of cloth","template":"Twisting [something]","placeholders":["a piece of cloth"]}, +{"id":"218744","label":"wiping water off of counter","template":"Wiping [something] off of [something]","placeholders":["water","counter"]}, +{"id":"62471","label":"squeezing a stuffed toy","template":"Squeezing [something]","placeholders":["a stuffed toy"]}, +{"id":"209032","label":"attaching pin to pillow","template":"Attaching [something] to [something]","placeholders":["pin","pillow"]}, +{"id":"212856","label":"putting toy, block and comb on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy","block","comb"]}, +{"id":"196121","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"48416","label":"lifting book with pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","pen"]}, +{"id":"76809","label":"tearing a receipt into two pieces","template":"Tearing [something] into two pieces","placeholders":["a receipt"]}, +{"id":"32563","label":"showing papaya to the camera","template":"Showing [something] to the camera","placeholders":["papaya"]}, +{"id":"85020","label":"moving bottle and can closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","can"]}, +{"id":"213615","label":"putting white badge that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["white badge"]}, +{"id":"163810","label":"throwing marker against wall","template":"Throwing [something] against [something]","placeholders":["marker","wall"]}, +{"id":"191795","label":"throwing a soft toy onto a surface","template":"Throwing [something] onto a surface","placeholders":["a soft toy"]}, +{"id":"171814","label":"tearing rose paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["rose paper"]}, +{"id":"46345","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"171588","label":"throwing a stuffed toy against a wall","template":"Throwing [something] against [something]","placeholders":["a stuffed toy","a wall"]}, +{"id":"220782","label":"pretending to squeeze a slothespin","template":"Pretending to squeeze [something]","placeholders":["a slothespin"]}, +{"id":"47921","label":"pushing a wallet so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a wallet"]}, +{"id":"7372","label":"pretending to put top into container","template":"Pretending to put [something] into [something]","placeholders":["top","container"]}, +{"id":"156230","label":"poking rubber duck so that it falls over","template":"Poking [something] so that it falls over","placeholders":["rubber duck"]}, +{"id":"74608","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"192818","label":"turning the camera left while filming family","template":"Turning the camera left while filming [something]","placeholders":["family"]}, +{"id":"113302","label":"potato colliding with potato and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["potato","potato"]}, +{"id":"130824","label":"bending toothpaste so that it deforms","template":"Bending [something] so that it deforms","placeholders":["toothpaste"]}, +{"id":"58049","label":"twisting (wringing) rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["rag"]}, +{"id":"100820","label":"taking a writing implement","template":"Taking [one of many similar things on the table]","placeholders":["a writing implement"]}, +{"id":"10877","label":"rolling coconut on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["coconut"]}, +{"id":"140340","label":"pushing colorful scarf from left to right","template":"Pushing [something] from left to right","placeholders":["colorful scarf"]}, +{"id":"151894","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"63757","label":"moving light lamp up","template":"Moving [something] up","placeholders":["light lamp"]}, +{"id":"166968","label":"throwing block in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["block"]}, +{"id":"44959","label":"bending pasta until it breaks","template":"Bending [something] until it breaks","placeholders":["pasta"]}, +{"id":"151467","label":"pushing pill bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pill bottle"]}, +{"id":"145865","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"66648","label":"spinning a cup that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a cup"]}, +{"id":"88799","label":"showing laptop next to mobile phone","template":"Showing [something] next to [something]","placeholders":["laptop","mobile phone"]}, +{"id":"70714","label":"moving mouse closer to watch","template":"Moving [something] closer to [something]","placeholders":["mouse","watch"]}, +{"id":"31749","label":"holding mouse over cup","template":"Holding [something] over [something]","placeholders":["mouse","cup"]}, +{"id":"109125","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181356","label":"pushing baking powder from left to right","template":"Pushing [something] from left to right","placeholders":["baking powder"]}, +{"id":"197104","label":"bending instruction booklet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["instruction booklet"]}, +{"id":"106143","label":"moving lid closer to straw","template":"Moving [something] closer to [something]","placeholders":["lid","straw"]}, +{"id":"104402","label":"covering box with blanket","template":"Covering [something] with [something]","placeholders":["box","blanket"]}, +{"id":"8221","label":"lifting up one end of a usb cable adaptor, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a usb cable adaptor"]}, +{"id":"137033","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"43560","label":"taking aa battery","template":"Taking [one of many similar things on the table]","placeholders":["aa battery"]}, +{"id":"210724","label":"pushing ball so it spins","template":"Pushing [something] so it spins","placeholders":["ball"]}, +{"id":"14152","label":"opening a wallet","template":"Opening [something]","placeholders":["a wallet"]}, +{"id":"170067","label":"cat falling like a rock","template":"[Something] falling like a rock","placeholders":["cat"]}, +{"id":"135778","label":"touching (without moving) front of door","template":"Touching (without moving) [part] of [something]","placeholders":["front","door"]}, +{"id":"77546","label":"covering pendrive with green coloured cup","template":"Covering [something] with [something]","placeholders":["pendrive","green coloured cup"]}, +{"id":"25186","label":"putting a biscuit","template":"Putting [something similar to other things that are already on the table]","placeholders":["a biscuit"]}, +{"id":"23358","label":"taking battery out of mug","template":"Taking [something] out of [something]","placeholders":["battery","mug"]}, +{"id":"212827","label":"showing cell phone next to water bottle","template":"Showing [something] next to [something]","placeholders":["cell phone","water bottle"]}, +{"id":"71022","label":"stacking 3 pencil sharpners","template":"Stacking [number of] [something]","placeholders":["3","pencil sharpners"]}, +{"id":"220247","label":"taking one plate","template":"Taking [one of many similar things on the table]","placeholders":["one plate"]}, +{"id":"157617","label":"dropping keyboard next to backpack","template":"Dropping [something] next to [something]","placeholders":["keyboard","backpack"]}, +{"id":"70851","label":"covering clothespin with a tissue","template":"Covering [something] with [something]","placeholders":["clothespin","a tissue"]}, +{"id":"82267","label":"pulling two ends of cleaning cloth but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["cleaning cloth"]}, +{"id":"150705","label":"putting a pill box on a surface","template":"Putting [something] on a surface","placeholders":["a pill box"]}, +{"id":"89877","label":"folding folding kerchief","template":"Folding [something]","placeholders":["folding kerchief"]}, +{"id":"150511","label":"pushing key so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["key"]}, +{"id":"10124","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"179875","label":"moving smart phone down","template":"Moving [something] down","placeholders":["smart phone"]}, +{"id":"160186","label":"plugging phone charger into outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","outlet"]}, +{"id":"82448","label":"moving bottle closer to cup","template":"Moving [something] closer to [something]","placeholders":["bottle","cup"]}, +{"id":"205489","label":"spinning pack of tissue that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pack of tissue"]}, +{"id":"213579","label":"dropping book onto chair","template":"Dropping [something] onto [something]","placeholders":["book","chair"]}, +{"id":"45416","label":"turning the camera right while filming green water bottle","template":"Turning the camera right while filming [something]","placeholders":["green water bottle"]}, +{"id":"109307","label":"pulling orange post-it from left to right","template":"Pulling [something] from left to right","placeholders":["orange post-it"]}, +{"id":"127994","label":"dropping pen onto book","template":"Dropping [something] onto [something]","placeholders":["pen","book"]}, +{"id":"179725","label":"lifting up one end of coaster without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["coaster"]}, +{"id":"48706","label":"putting a pencil, a pen and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pencil","a pen","scissors"]}, +{"id":"40962","label":"covering a pen with a book","template":"Covering [something] with [something]","placeholders":["a pen","a book"]}, +{"id":"216552","label":"showing paper bag on top of purple container","template":"Showing [something] on top of [something]","placeholders":["paper bag","purple container"]}, +{"id":"200180","label":"folding a towel","template":"Folding [something]","placeholders":["a towel"]}, +{"id":"90522","label":"uncovering table","template":"Uncovering [something]","placeholders":["table"]}, +{"id":"162390","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"129263","label":"putting bottle onto bowl","template":"Putting [something] onto [something]","placeholders":["bottle","bowl"]}, +{"id":"88901","label":"trying to bend screwdriver so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["screwdriver"]}, +{"id":"182237","label":"taking book","template":"Taking [one of many similar things on the table]","placeholders":["book"]}, +{"id":"166398","label":"attaching cap to pen","template":"Attaching [something] to [something]","placeholders":["cap","pen"]}, +{"id":"213062","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"26972","label":"turning the camera upwards while filming tv","template":"Turning the camera upwards while filming [something]","placeholders":["tv"]}, +{"id":"124781","label":"trying to pour milk into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["milk","cup"]}, +{"id":"72812","label":"pretending to open fridge without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["fridge"]}, +{"id":"196539","label":"poking box so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["box"]}, +{"id":"156369","label":"moving banana towards the camera","template":"Moving [something] towards the camera","placeholders":["banana"]}, +{"id":"29717","label":"moving block and toy away from each other","template":"Moving [something] and [something] away from each other","placeholders":["block","toy"]}, +{"id":"70290","label":"putting a pen with other pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen with other pens"]}, +{"id":"76510","label":"moving glass and lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","lighter"]}, +{"id":"1317","label":"lifting up one end of duster without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["duster"]}, +{"id":"83377","label":"pretending or failing to wipe ink off of napkin","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","napkin"]}, +{"id":"84961","label":"dropping newspaper behind bag","template":"Dropping [something] behind [something]","placeholders":["newspaper","bag"]}, +{"id":"45719","label":"putting mobile phone next to remote","template":"Putting [something] next to [something]","placeholders":["mobile phone","remote"]}, +{"id":"52267","label":"plugging charger into power strip","template":"Plugging [something] into [something]","placeholders":["charger","power strip"]}, +{"id":"153371","label":"poking magnet clip so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["magnet clip"]}, +{"id":"180197","label":"taking remote control from bed","template":"Taking [something] from [somewhere]","placeholders":["remote control","bed"]}, +{"id":"121124","label":"pretending to squeeze mobile","template":"Pretending to squeeze [something]","placeholders":["mobile"]}, +{"id":"191570","label":"putting car keys on a surface","template":"Putting [something] on a surface","placeholders":["car keys"]}, +{"id":"65762","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"12610","label":"poking glass so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["glass"]}, +{"id":"150143","label":"wiping tea off of a table","template":"Wiping [something] off of [something]","placeholders":["tea","a table"]}, +{"id":"76157","label":"letting a small bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a small bottle"]}, +{"id":"55675","label":"unfolding papers","template":"Unfolding [something]","placeholders":["papers"]}, +{"id":"1488","label":"putting stapler in front of ointment","template":"Putting [something] in front of [something]","placeholders":["stapler","ointment"]}, +{"id":"160196","label":"pretending to pick remote up","template":"Pretending to pick [something] up","placeholders":["remote"]}, +{"id":"217361","label":"uncovering key","template":"Uncovering [something]","placeholders":["key"]}, +{"id":"220191","label":"moving big rock up","template":"Moving [something] up","placeholders":["big rock"]}, +{"id":"150085","label":"pushing a glue bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a glue bottle","scissors"]}, +{"id":"39589","label":"covering a mouse with a sheet of paper","template":"Covering [something] with [something]","placeholders":["a mouse","a sheet of paper"]}, +{"id":"158329","label":"moving a can down","template":"Moving [something] down","placeholders":["a can"]}, +{"id":"85705","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"12467","label":"throwing a slipper","template":"Throwing [something]","placeholders":["a slipper"]}, +{"id":"86201","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"29924","label":"holding glass over mug","template":"Holding [something] over [something]","placeholders":["glass","mug"]}, +{"id":"77020","label":"putting 2 remotes onto tissue","template":"Putting [number of] [something] onto [something]","placeholders":["2","remotes","tissue"]}, +{"id":"218740","label":"trying to bend a lighter so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a lighter"]}, +{"id":"219653","label":"holding box over chair","template":"Holding [something] over [something]","placeholders":["box","chair"]}, +{"id":"64456","label":"holding a cup in front of a box","template":"Holding [something] in front of [something]","placeholders":["a cup","a box"]}, +{"id":"39134","label":"putting headphones underneath a bed","template":"Putting [something] underneath [something]","placeholders":["headphones","a bed"]}, +{"id":"86581","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"124215","label":"pretending to pick roll of toilet paper up","template":"Pretending to pick [something] up","placeholders":["roll of toilet paper"]}, +{"id":"55119","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"117763","label":"moving block away from box","template":"Moving [something] away from [something]","placeholders":["block","box"]}, +{"id":"99550","label":"tearing chapati into two pieces","template":"Tearing [something] into two pieces","placeholders":["chapati"]}, +{"id":"102275","label":"covering a box with a napkin","template":"Covering [something] with [something]","placeholders":["a box","a napkin"]}, +{"id":"154564","label":"wiping water off of floor","template":"Wiping [something] off of [something]","placeholders":["water","floor"]}, +{"id":"86353","label":"plugging a plug into the socket to the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","the socket to the wall"]}, +{"id":"135077","label":"putting toothbrush upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["toothbrush"]}, +{"id":"84163","label":"cloth falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cloth"]}, +{"id":"192920","label":"holding a ball","template":"Holding [something]","placeholders":["a ball"]}, +{"id":"207303","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"211430","label":"plugging cable into charger","template":"Plugging [something] into [something]","placeholders":["cable","charger"]}, +{"id":"164427","label":"tipping bottle with vitamins over, so vitamins falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["bottle","vitamins","vitamins"]}, +{"id":"204387","label":"spinning bottle spray that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle spray"]}, +{"id":"108193","label":"showing that coffee is inside a mug","template":"Showing that [something] is inside [something]","placeholders":["coffee","a mug"]}, +{"id":"71368","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"8562","label":"moving a box away from a cube","template":"Moving [something] away from [something]","placeholders":["a box","a cube"]}, +{"id":"11244","label":"turning shoe brush upside down","template":"Turning [something] upside down","placeholders":["shoe brush"]}, +{"id":"74229","label":"moving pen and tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","tape"]}, +{"id":"78247","label":"pulling two ends of a paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a paper"]}, +{"id":"29580","label":"twisting pot holder","template":"Twisting [something]","placeholders":["pot holder"]}, +{"id":"3651","label":"putting shaving brush onto box so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["shaving brush","box"]}, +{"id":"1491","label":"holding comb next to jar","template":"Holding [something] next to [something]","placeholders":["comb","jar"]}, +{"id":"147346","label":"pretending to put nailpolish on a surface","template":"Pretending to put [something] on a surface","placeholders":["nailpolish"]}, +{"id":"162833","label":"putting keys next to bowl","template":"Putting [something] next to [something]","placeholders":["keys","bowl"]}, +{"id":"108670","label":"lifting a spoon with an apple on it","template":"Lifting [something] with [something] on it","placeholders":["a spoon","an apple"]}, +{"id":"111520","label":"squeezing towel","template":"Squeezing [something]","placeholders":["towel"]}, +{"id":"178287","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"52561","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"141032","label":"putting baking powder on a surface","template":"Putting [something] on a surface","placeholders":["baking powder"]}, +{"id":"220233","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"76849","label":"pretending to throw remote control","template":"Pretending to throw [something]","placeholders":["remote control"]}, +{"id":"179648","label":"dropping book next to book","template":"Dropping [something] next to [something]","placeholders":["book","book"]}, +{"id":"192817","label":"pushing a pen off of a table","template":"Pushing [something] off of [something]","placeholders":["a pen","a table"]}, +{"id":"217921","label":"moving hat and shoe so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["hat","shoe"]}, +{"id":"37113","label":"pop bottle colliding with fidget spinner and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["pop bottle","fidget spinner"]}, +{"id":"155438","label":"putting a bottle next to an iron","template":"Putting [something] next to [something]","placeholders":["a bottle","an iron"]}, +{"id":"36879","label":"pretending or failing to wipe water off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["water","table"]}, +{"id":"99824","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"60638","label":"taking glass jar from box","template":"Taking [something] from [somewhere]","placeholders":["glass jar","box"]}, +{"id":"20096","label":"putting wooden stick, battery and striker on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["wooden stick","battery","striker"]}, +{"id":"119652","label":"showing tyre to the camera","template":"Showing [something] to the camera","placeholders":["tyre"]}, +{"id":"93987","label":"moving cow up","template":"Moving [something] up","placeholders":["cow"]}, +{"id":"161930","label":"pushing stuffed animal from right to left","template":"Pushing [something] from right to left","placeholders":["stuffed animal"]}, +{"id":"77807","label":"pretending to put bar soap on a surface","template":"Pretending to put [something] on a surface","placeholders":["bar soap"]}, +{"id":"46571","label":"moving book across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["book"]}, +{"id":"122043","label":"moving towel down","template":"Moving [something] down","placeholders":["towel"]}, +{"id":"1320","label":"pretending to turn vaporizer upside down","template":"Pretending to turn [something] upside down","placeholders":["vaporizer"]}, +{"id":"62533","label":"tearing bandaids into two pieces","template":"Tearing [something] into two pieces","placeholders":["bandaids"]}, +{"id":"122847","label":"batery colliding with batery and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["batery","batery"]}, +{"id":"212378","label":"moving glas and glas closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glas","glas"]}, +{"id":"150617","label":"poking string so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["string"]}, +{"id":"64089","label":"taking ball","template":"Taking [one of many similar things on the table]","placeholders":["ball"]}, +{"id":"204778","label":"moving scissors away from a box","template":"Moving [something] away from [something]","placeholders":["scissors","a box"]}, +{"id":"98577","label":"pushing bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle"]}, +{"id":"130956","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"84056","label":"dropping a pack of gum onto a notebook","template":"Dropping [something] onto [something]","placeholders":["a pack of gum","a notebook"]}, +{"id":"47359","label":"pretending to put coin into mug","template":"Pretending to put [something] into [something]","placeholders":["coin","mug"]}, +{"id":"67015","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"59375","label":"poking a stack of envelopes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["envelopes"]}, +{"id":"140370","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"4651","label":"closing tumbler cap","template":"Closing [something]","placeholders":["tumbler cap"]}, +{"id":"213960","label":"pushing a mug so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a mug"]}, +{"id":"138200","label":"dropping keys onto the table","template":"Dropping [something] onto [something]","placeholders":["keys","the table"]}, +{"id":"134949","label":"pulling pink toothbrush case from right to left","template":"Pulling [something] from right to left","placeholders":["pink toothbrush case"]}, +{"id":"73891","label":"pushing mug from right to left","template":"Pushing [something] from right to left","placeholders":["mug"]}, +{"id":"64482","label":"holding remote over desk","template":"Holding [something] over [something]","placeholders":["remote","desk"]}, +{"id":"203672","label":"small paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["small paper"]}, +{"id":"81960","label":"putting tissues and block on the table","template":"Putting [something] and [something] on the table","placeholders":["tissues","block"]}, +{"id":"72154","label":"plugging key into lock but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["key","lock"]}, +{"id":"18389","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"131016","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"88324","label":"pretending to pour tea out of a teapot, but the teapot is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["tea","a teapot","the teapot"]}, +{"id":"132836","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"137811","label":"wiping ac outlet off of paper","template":"Wiping [something] off of [something]","placeholders":["ac outlet","paper"]}, +{"id":"157484","label":"showing cheese packet behind mug","template":"Showing [something] behind [something]","placeholders":["cheese packet","mug"]}, +{"id":"57873","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"182920","label":"uncovering an ipad","template":"Uncovering [something]","placeholders":["an ipad"]}, +{"id":"91634","label":"dropping a shoe brush into a box","template":"Dropping [something] into [something]","placeholders":["a shoe brush","a box"]}, +{"id":"154652","label":"tearing toilet paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["toilet paper"]}, +{"id":"171492","label":"pretending to close box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["box"]}, +{"id":"117190","label":"plugging cable into tablet","template":"Plugging [something] into [something]","placeholders":["cable","tablet"]}, +{"id":"106432","label":"pushing battery from left to right","template":"Pushing [something] from left to right","placeholders":["battery"]}, +{"id":"7609","label":"lifting dvd box with scotch tape on it","template":"Lifting [something] with [something] on it","placeholders":["dvd box","scotch tape"]}, +{"id":"214306","label":"poking a hole into rice","template":"Poking a hole into [some substance]","placeholders":["rice"]}, +{"id":"213207","label":"hitting a plate with a fork","template":"Hitting [something] with [something]","placeholders":["a plate","a fork"]}, +{"id":"118121","label":"uncovering cd","template":"Uncovering [something]","placeholders":["cd"]}, +{"id":"49808","label":"pushing lighter so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lighter"]}, +{"id":"65119","label":"showing violin next to pillow","template":"Showing [something] next to [something]","placeholders":["violin","pillow"]}, +{"id":"58136","label":"putting glasses next to a watch","template":"Putting [something] next to [something]","placeholders":["glasses","a watch"]}, +{"id":"102030","label":"moving bam box away from the bowl","template":"Moving [something] away from [something]","placeholders":["bam box","the bowl"]}, +{"id":"50015","label":"taking a jar out of a shelf","template":"Taking [something] out of [something]","placeholders":["a jar","a shelf"]}, +{"id":"187387","label":"dropping spectacle box next to orange cup","template":"Dropping [something] next to [something]","placeholders":["spectacle box","orange cup"]}, +{"id":"193365","label":"pulling two ends of a leather piece but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a leather piece"]}, +{"id":"71913","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"47709","label":"spilling water next to a box","template":"Spilling [something] next to [something]","placeholders":["water","a box"]}, +{"id":"217226","label":"putting sponge into bowl","template":"Putting [something] into [something]","placeholders":["sponge","bowl"]}, +{"id":"24902","label":"pulling a watch from left to right","template":"Pulling [something] from left to right","placeholders":["a watch"]}, +{"id":"72854","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"106474","label":"plugging phone charger into electrical outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","electrical outlet"]}, +{"id":"15150","label":"trying to bend a pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a pen"]}, +{"id":"94524","label":"holding granola bar","template":"Holding [something]","placeholders":["granola bar"]}, +{"id":"49120","label":"plugging plug into adapter but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","adapter"]}, +{"id":"49832","label":"throwing a tennis ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a tennis ball"]}, +{"id":"116012","label":"putting a shoes that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a shoes"]}, +{"id":"123776","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"140576","label":"plugging charger into wall socket","template":"Plugging [something] into [something]","placeholders":["charger","wall socket"]}, +{"id":"199060","label":"showing apple to the camera","template":"Showing [something] to the camera","placeholders":["apple"]}, +{"id":"140936","label":"lifting can with lemon on it","template":"Lifting [something] with [something] on it","placeholders":["can","lemon"]}, +{"id":"61766","label":"tearing cloth just a little bit","template":"Tearing [something] just a little bit","placeholders":["cloth"]}, +{"id":"78960","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"20655","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"205377","label":"plugging a charging cord into a charging base","template":"Plugging [something] into [something]","placeholders":["a charging cord","a charging base"]}, +{"id":"46469","label":"controller falling like a rock","template":"[Something] falling like a rock","placeholders":["controller"]}, +{"id":"4391","label":"pushing a charger from right to left","template":"Pushing [something] from right to left","placeholders":["a charger"]}, +{"id":"83045","label":"attaching top to kettle","template":"Attaching [something] to [something]","placeholders":["top","kettle"]}, +{"id":"43112","label":"holding comb in front of cup","template":"Holding [something] in front of [something]","placeholders":["comb","cup"]}, +{"id":"76654","label":"stuffing tool into bucket","template":"Stuffing [something] into [something]","placeholders":["tool","bucket"]}, +{"id":"117457","label":"pretending to pick sandal up","template":"Pretending to pick [something] up","placeholders":["sandal"]}, +{"id":"128734","label":"putting hairpin on a surface","template":"Putting [something] on a surface","placeholders":["hairpin"]}, +{"id":"84537","label":"trying but failing to attach a stamp to a shirt because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a stamp","a shirt"]}, +{"id":"143947","label":"pushing brown bracelet from left to right","template":"Pushing [something] from left to right","placeholders":["brown bracelet"]}, +{"id":"86087","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"31940","label":"pretending to put pear into plate","template":"Pretending to put [something] into [something]","placeholders":["pear","plate"]}, +{"id":"199944","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"15603","label":"covering a spoon with an envelope","template":"Covering [something] with [something]","placeholders":["a spoon","an envelope"]}, +{"id":"179661","label":"holding gum next to spray bottle","template":"Holding [something] next to [something]","placeholders":["gum","spray bottle"]}, +{"id":"11123","label":"pouring cream onto a plate","template":"Pouring [something] onto [something]","placeholders":["cream","a plate"]}, +{"id":"168243","label":"pretending to spread air onto a hand","template":"Pretending to spread air onto [something]","placeholders":["a hand"]}, +{"id":"206039","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"114408","label":"poking cigarettes so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cigarettes"]}, +{"id":"147280","label":"rolling a golf ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a golf ball"]}, +{"id":"94943","label":"bending magnet so that it deforms","template":"Bending [something] so that it deforms","placeholders":["magnet"]}, +{"id":"12511","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"74338","label":"stuffing pen into purse","template":"Stuffing [something] into [something]","placeholders":["pen","purse"]}, +{"id":"61042","label":"tearing a cardboard bit just a little bit","template":"Tearing [something] just a little bit","placeholders":["a cardboard bit"]}, +{"id":"18041","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"57484","label":"throwing shirt","template":"Throwing [something]","placeholders":["shirt"]}, +{"id":"155147","label":"poking a hole into dirt","template":"Poking a hole into [something soft]","placeholders":["dirt"]}, +{"id":"192972","label":"turning the camera upwards while filming toy","template":"Turning the camera upwards while filming [something]","placeholders":["toy"]}, +{"id":"117871","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"174259","label":"wiping water off of glass","template":"Wiping [something] off of [something]","placeholders":["water","glass"]}, +{"id":"94238","label":"piling boxes up","template":"Piling [something] up","placeholders":["boxes"]}, +{"id":"7440","label":"taking a ball","template":"Taking [one of many similar things on the table]","placeholders":["a ball"]}, +{"id":"39528","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"215426","label":"moving eye drops across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["eye drops"]}, +{"id":"72727","label":"putting board clip, bolt and chalk on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["board clip","bolt","chalk"]}, +{"id":"211423","label":"showing atm machine to the camera","template":"Showing [something] to the camera","placeholders":["atm machine"]}, +{"id":"105262","label":"pretending to be tearing durable material","template":"Pretending to be tearing [something that is not tearable]","placeholders":["durable material"]}, +{"id":"75045","label":"putting a stone onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a stone"]}, +{"id":"12605","label":"plugging usb cable into laptop","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"113679","label":"pretending to put aim toothpaste on a surface","template":"Pretending to put [something] on a surface","placeholders":["aim toothpaste"]}, +{"id":"73923","label":"putting wallet and harmonica on the table","template":"Putting [something] and [something] on the table","placeholders":["wallet","harmonica"]}, +{"id":"125802","label":"covering hair band with black pouch","template":"Covering [something] with [something]","placeholders":["hair band","black pouch"]}, +{"id":"81501","label":"dropping stuffed animal next to stuffed animal","template":"Dropping [something] next to [something]","placeholders":["stuffed animal","stuffed animal"]}, +{"id":"12833","label":"pretending to put mouse on a surface","template":"Pretending to put [something] on a surface","placeholders":["mouse"]}, +{"id":"215647","label":"dropping a matchbox next to a pencil","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a pencil"]}, +{"id":"118455","label":"holding a stone","template":"Holding [something]","placeholders":["a stone"]}, +{"id":"79253","label":"moving keys and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["keys","phone"]}, +{"id":"154912","label":"spinning a bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a bottle"]}, +{"id":"160354","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"134546","label":"squeezing toy","template":"Squeezing [something]","placeholders":["toy"]}, +{"id":"91162","label":"putting paper into a folder","template":"Putting [something] into [something]","placeholders":["paper","a folder"]}, +{"id":"23873","label":"turning the camera upwards while filming carton box","template":"Turning the camera upwards while filming [something]","placeholders":["carton box"]}, +{"id":"4387","label":"putting a remote into a box","template":"Putting [something] into [something]","placeholders":["a remote","a box"]}, +{"id":"208605","label":"spinning nivea creme so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["nivea creme"]}, +{"id":"62731","label":"putting a toy horse underneath a coffee table","template":"Putting [something] underneath [something]","placeholders":["a toy horse","a coffee table"]}, +{"id":"220085","label":"moving laptop up","template":"Moving [something] up","placeholders":["laptop"]}, +{"id":"162570","label":"pretending to close notepad without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["notepad"]}, +{"id":"78814","label":"holding a calculator","template":"Holding [something]","placeholders":["a calculator"]}, +{"id":"138177","label":"moving eye kajal away from pendrive","template":"Moving [something] away from [something]","placeholders":["eye kajal","pendrive"]}, +{"id":"28464","label":"taking pizza cutter","template":"Taking [one of many similar things on the table]","placeholders":["pizza cutter"]}, +{"id":"178743","label":"pretending to pick keys up","template":"Pretending to pick [something] up","placeholders":["keys"]}, +{"id":"102622","label":"holding fork next to toy","template":"Holding [something] next to [something]","placeholders":["fork","toy"]}, +{"id":"86548","label":"piling something up","template":"Piling [something] up","placeholders":["something"]}, +{"id":"188726","label":"moving top of pen drive","template":"Moving [part] of [something]","placeholders":["top","pen drive"]}, +{"id":"108935","label":"holding purse in front of helmet","template":"Holding [something] in front of [something]","placeholders":["purse","helmet"]}, +{"id":"38073","label":"piling novels up","template":"Piling [something] up","placeholders":["novels"]}, +{"id":"190682","label":"showing lipstick behind lighter","template":"Showing [something] behind [something]","placeholders":["lipstick","lighter"]}, +{"id":"116615","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"11177","label":"showing waste basket to the camera","template":"Showing [something] to the camera","placeholders":["waste basket"]}, +{"id":"20864","label":"holding mug behind flower vase","template":"Holding [something] behind [something]","placeholders":["mug","flower vase"]}, +{"id":"150023","label":"pulling a toy from behind of the couch","template":"Pulling [something] from behind of [something]","placeholders":["a toy","the couch"]}, +{"id":"29279","label":"moving left foot and right foot so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["left foot","right foot"]}, +{"id":"2059","label":"red crayon colliding with blue crayon and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["red crayon","blue crayon"]}, +{"id":"40814","label":"throwing ear muffs in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ear muffs"]}, +{"id":"191277","label":"cloth falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["cloth"]}, +{"id":"113373","label":"poking remote so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["remote"]}, +{"id":"143113","label":"lifting a surface with lighter on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["lighter"]}, +{"id":"130068","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"41779","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"64480","label":"plugging chord into outlet","template":"Plugging [something] into [something]","placeholders":["chord","outlet"]}, +{"id":"103583","label":"turning a bowl upside down","template":"Turning [something] upside down","placeholders":["a bowl"]}, +{"id":"78659","label":"trying to bend trying to bend plastic spray and nothing happens so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["trying to bend plastic spray and nothing happens"]}, +{"id":"120106","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"97834","label":"tilting an index with a quarter on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["an index","a quarter"]}, +{"id":"206945","label":"pretending to put battery into mug","template":"Pretending to put [something] into [something]","placeholders":["battery","mug"]}, +{"id":"150329","label":"putting marble","template":"Putting [something similar to other things that are already on the table]","placeholders":["marble"]}, +{"id":"73312","label":"uncovering cellphone","template":"Uncovering [something]","placeholders":["cellphone"]}, +{"id":"55572","label":"laying toy on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["toy"]}, +{"id":"125324","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"77940","label":"throwing small silver ball","template":"Throwing [something]","placeholders":["small silver ball"]}, +{"id":"28328","label":"lifting dvd with phone on it","template":"Lifting [something] with [something] on it","placeholders":["dvd","phone"]}, +{"id":"159992","label":"a piece of napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of napkin"]}, +{"id":"66067","label":"dropping a peg onto a comb","template":"Dropping [something] onto [something]","placeholders":["a peg","a comb"]}, +{"id":"31109","label":"holding torch behind bottle","template":"Holding [something] behind [something]","placeholders":["torch","bottle"]}, +{"id":"112419","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"188022","label":"pushing granola bar from right to left","template":"Pushing [something] from right to left","placeholders":["granola bar"]}, +{"id":"140180","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"130831","label":"poking a cup so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a cup"]}, +{"id":"86510","label":"taking paper mat","template":"Taking [one of many similar things on the table]","placeholders":["paper mat"]}, +{"id":"205685","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"69019","label":"putting belt, calculator and lock on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["belt","calculator","lock"]}, +{"id":"90776","label":"throwing powder bottle against soap powder packet","template":"Throwing [something] against [something]","placeholders":["powder bottle","soap powder packet"]}, +{"id":"220385","label":"lifting the razor up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["the razor"]}, +{"id":"154554","label":"spinning lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lighter"]}, +{"id":"40101","label":"moving plate away from the camera","template":"Moving [something] away from the camera","placeholders":["plate"]}, +{"id":"26699","label":"spinning lemon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lemon"]}, +{"id":"48077","label":"putting mugs","template":"Putting [something similar to other things that are already on the table]","placeholders":["mugs"]}, +{"id":"16482","label":"unfolding an envelope","template":"Unfolding [something]","placeholders":["an envelope"]}, +{"id":"186289","label":"letting a pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pen"]}, +{"id":"95431","label":"putting pen into penstand","template":"Putting [something] into [something]","placeholders":["pen","penstand"]}, +{"id":"102620","label":"moving a remote away from a comb","template":"Moving [something] away from [something]","placeholders":["a remote","a comb"]}, +{"id":"72702","label":"throwing banana in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["banana"]}, +{"id":"187808","label":"bending tape measure so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tape measure"]}, +{"id":"175742","label":"pushing a battery from right to left","template":"Pushing [something] from right to left","placeholders":["a battery"]}, +{"id":"11175","label":"putting a spinner next to a box","template":"Putting [something] next to [something]","placeholders":["a spinner","a box"]}, +{"id":"187496","label":"pushing stapler from left to right","template":"Pushing [something] from left to right","placeholders":["stapler"]}, +{"id":"175142","label":"holding a bucket in front of car","template":"Holding [something] in front of [something]","placeholders":["a bucket","car"]}, +{"id":"98604","label":"showing speaker on top of container","template":"Showing [something] on top of [something]","placeholders":["speaker","container"]}, +{"id":"79237","label":"tearing piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["piece of paper"]}, +{"id":"75216","label":"taking one of many similar things on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar things on the table"]}, +{"id":"125290","label":"spreading lentiles onto plate","template":"Spreading [something] onto [something]","placeholders":["lentiles","plate"]}, +{"id":"86896","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"116099","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"210441","label":"pushing black pouch bag from right to left","template":"Pushing [something] from right to left","placeholders":["black pouch bag"]}, +{"id":"174303","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"67096","label":"moving hairspray down","template":"Moving [something] down","placeholders":["hairspray"]}, +{"id":"50811","label":"squeezing a beanie","template":"Squeezing [something]","placeholders":["a beanie"]}, +{"id":"183763","label":"poking a water bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a water bottle"]}, +{"id":"47451","label":"tilting a jar with an eraser on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a jar","an eraser"]}, +{"id":"82867","label":"laying a bottle of tool oil on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle of tool oil"]}, +{"id":"60095","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"57553","label":"pretending to put mobile phone on a surface","template":"Pretending to put [something] on a surface","placeholders":["mobile phone"]}, +{"id":"211224","label":"wiping milk off of table","template":"Wiping [something] off of [something]","placeholders":["milk","table"]}, +{"id":"12331","label":"taking measurement spoon out of cupboard","template":"Taking [something] out of [something]","placeholders":["measurement spoon","cupboard"]}, +{"id":"15266","label":"pouring water out of a jar","template":"Pouring [something] out of [something]","placeholders":["water","a jar"]}, +{"id":"182527","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"111236","label":"putting bay leaves upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["bay leaves"]}, +{"id":"79690","label":"lifting up one end of a stick, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a stick"]}, +{"id":"78583","label":"spreading pens onto flat surface","template":"Spreading [something] onto [something]","placeholders":["pens","flat surface"]}, +{"id":"67103","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"35719","label":"pulling two ends of plastic bag so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["plastic bag"]}, +{"id":"213741","label":"folding tea towel","template":"Folding [something]","placeholders":["tea towel"]}, +{"id":"27206","label":"pushing bottle with book","template":"Pushing [something] with [something]","placeholders":["bottle","book"]}, +{"id":"72889","label":"stuffing papper into a cup","template":"Stuffing [something] into [something]","placeholders":["papper","a cup"]}, +{"id":"3413","label":"plugging a charger into a power plug","template":"Plugging [something] into [something]","placeholders":["a charger","a power plug"]}, +{"id":"71778","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"190464","label":"holding bottle over fan","template":"Holding [something] over [something]","placeholders":["bottle","fan"]}, +{"id":"194830","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"55513","label":"dropping a lighter into a beach bucket","template":"Dropping [something] into [something]","placeholders":["a lighter","a beach bucket"]}, +{"id":"82026","label":"sprinkling baking soda onto ground","template":"Sprinkling [something] onto [something]","placeholders":["baking soda","ground"]}, +{"id":"69755","label":"spilling water onto banana","template":"Spilling [something] onto [something]","placeholders":["water","banana"]}, +{"id":"5173","label":"tiger toy colliding with elephant toy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["tiger toy","elephant toy"]}, +{"id":"79717","label":"showing snacks packet to the camera","template":"Showing [something] to the camera","placeholders":["snacks packet"]}, +{"id":"105144","label":"pulling white candle from right to left","template":"Pulling [something] from right to left","placeholders":["white candle"]}, +{"id":"156264","label":"holding bottle behind chair","template":"Holding [something] behind [something]","placeholders":["bottle","chair"]}, +{"id":"91388","label":"pulling two ends of paper towel so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper towel"]}, +{"id":"53175","label":"pushing notebook so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["notebook"]}, +{"id":"201366","label":"uncovering a card","template":"Uncovering [something]","placeholders":["a card"]}, +{"id":"86145","label":"picking a spectacle case up","template":"Picking [something] up","placeholders":["a spectacle case"]}, +{"id":"69735","label":"twisting (wringing) something wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["something"]}, +{"id":"88607","label":"lifting remote up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["remote"]}, +{"id":"65130","label":"moving a wallet up","template":"Moving [something] up","placeholders":["a wallet"]}, +{"id":"105110","label":"pulling knife from behind of monitor","template":"Pulling [something] from behind of [something]","placeholders":["knife","monitor"]}, +{"id":"77274","label":"pushing ball off of table","template":"Pushing [something] off of [something]","placeholders":["ball","table"]}, +{"id":"151324","label":"pushing a pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pen"]}, +{"id":"129572","label":"showing a shoe behind a parsley plant","template":"Showing [something] behind [something]","placeholders":["a shoe","a parsley plant"]}, +{"id":"27177","label":"poking pumpkin so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pumpkin"]}, +{"id":"25430","label":"turning book upside down","template":"Turning [something] upside down","placeholders":["book"]}, +{"id":"108238","label":"holding a remote","template":"Holding [something]","placeholders":["a remote"]}, +{"id":"109237","label":"plugging extension cord into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["extension cord","wall outlet"]}, +{"id":"10977","label":"twisting stopper","template":"Twisting [something]","placeholders":["stopper"]}, +{"id":"158936","label":"pulling pulling power bank from right to left from right to left","template":"Pulling [something] from right to left","placeholders":["pulling power bank from right to left"]}, +{"id":"149424","label":"moving thread down","template":"Moving [something] down","placeholders":["thread"]}, +{"id":"101862","label":"uncovering scissor","template":"Uncovering [something]","placeholders":["scissor"]}, +{"id":"182755","label":"putting sports water bottle and green water bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["sports water bottle","green water bottle"]}, +{"id":"30209","label":"moving a chair across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a chair"]}, +{"id":"185144","label":"putting hair pin","template":"Putting [something similar to other things that are already on the table]","placeholders":["hair pin"]}, +{"id":"162328","label":"squeezing wooden hand grippers","template":"Squeezing [something]","placeholders":["wooden hand grippers"]}, +{"id":"38566","label":"dropping q-tips into a coffee can","template":"Dropping [something] into [something]","placeholders":["q-tips","a coffee can"]}, +{"id":"105268","label":"a tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a tissue"]}, +{"id":"5875","label":"covering mug with cloth","template":"Covering [something] with [something]","placeholders":["mug","cloth"]}, +{"id":"92349","label":"moving ball up","template":"Moving [something] up","placeholders":["ball"]}, +{"id":"188722","label":"moving battery closer to other battery","template":"Moving [something] closer to [something]","placeholders":["battery","other battery"]}, +{"id":"68762","label":"moving jeep away from the camera","template":"Moving [something] away from the camera","placeholders":["jeep"]}, +{"id":"112521","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"111614","label":"showing that eraser is inside plastic case","template":"Showing that [something] is inside [something]","placeholders":["eraser","plastic case"]}, +{"id":"74764","label":"a speaker colliding with a shirt and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a speaker","a shirt"]}, +{"id":"8642","label":"pushing a battery from left to right","template":"Pushing [something] from left to right","placeholders":["a battery"]}, +{"id":"102916","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"110111","label":"tearing post it note into two pieces","template":"Tearing [something] into two pieces","placeholders":["post it note"]}, +{"id":"219234","label":"covering shoe with towel","template":"Covering [something] with [something]","placeholders":["shoe","towel"]}, +{"id":"153618","label":"rolling cloth clip on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cloth clip"]}, +{"id":"123900","label":"lifting towel up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["towel"]}, +{"id":"35399","label":"squeezing a wet sponge","template":"Squeezing [something]","placeholders":["a wet sponge"]}, +{"id":"125277","label":"moving scissors away from a bottle","template":"Moving [something] away from [something]","placeholders":["scissors","a bottle"]}, +{"id":"66247","label":"holding peppermill over painting","template":"Holding [something] over [something]","placeholders":["peppermill","painting"]}, +{"id":"128760","label":"putting 1 cd onto laptop","template":"Putting [number of] [something] onto [something]","placeholders":["1","cd","laptop"]}, +{"id":"22577","label":"dropping pen onto table","template":"Dropping [something] onto [something]","placeholders":["pen","table"]}, +{"id":"32759","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"90552","label":"holding a ball in front of cupboard","template":"Holding [something] in front of [something]","placeholders":["a ball","cupboard"]}, +{"id":"84160","label":"putting lemon into basket","template":"Putting [something] into [something]","placeholders":["lemon","basket"]}, +{"id":"78000","label":"dropping a bottletop onto a box","template":"Dropping [something] onto [something]","placeholders":["a bottletop","a box"]}, +{"id":"201459","label":"opening plastic box","template":"Opening [something]","placeholders":["plastic box"]}, +{"id":"67207","label":"tearing cardboard into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardboard"]}, +{"id":"209497","label":"showing a teaspoon next to a mug","template":"Showing [something] next to [something]","placeholders":["a teaspoon","a mug"]}, +{"id":"170193","label":"showing a glass behind an apple","template":"Showing [something] behind [something]","placeholders":["a glass","an apple"]}, +{"id":"159921","label":"dropping badminton bat in front of a pair of shoes","template":"Dropping [something] in front of [something]","placeholders":["badminton bat","a pair of shoes"]}, +{"id":"207791","label":"holding a carrot next to the gas cylinder","template":"Holding [something] next to [something]","placeholders":["a carrot","the gas cylinder"]}, +{"id":"145643","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"26291","label":"pushing hair gel bottle with nail paint remover","template":"Pushing [something] with [something]","placeholders":["hair gel bottle","nail paint remover"]}, +{"id":"13464","label":"a remote control falling like a rock","template":"[Something] falling like a rock","placeholders":["a remote control"]}, +{"id":"120363","label":"tearing notebook page into two pieces","template":"Tearing [something] into two pieces","placeholders":["notebook page"]}, +{"id":"219128","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"186913","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"121911","label":"throwing ball against basket","template":"Throwing [something] against [something]","placeholders":["ball","basket"]}, +{"id":"182928","label":"taking a pencil","template":"Taking [one of many similar things on the table]","placeholders":["a pencil"]}, +{"id":"218510","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"62500","label":"rolling a spray can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray can"]}, +{"id":"101473","label":"showing telephone behind glass","template":"Showing [something] behind [something]","placeholders":["telephone","glass"]}, +{"id":"116608","label":"poking a lemon so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a lemon"]}, +{"id":"4636","label":"pushing blanket so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["blanket"]}, +{"id":"169915","label":"lifting ipad with water bottle on it","template":"Lifting [something] with [something] on it","placeholders":["ipad","water bottle"]}, +{"id":"65950","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"73804","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"182831","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"171099","label":"poking butter knife so that it spins around","template":"Poking [something] so that it spins around","placeholders":["butter knife"]}, +{"id":"147533","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"51921","label":"lifting the handle of a lamp up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["the handle of a lamp"]}, +{"id":"129181","label":"putting cup behind canister","template":"Putting [something] behind [something]","placeholders":["cup","canister"]}, +{"id":"178550","label":"moving match box down","template":"Moving [something] down","placeholders":["match box"]}, +{"id":"157759","label":"folding reciept","template":"Folding [something]","placeholders":["reciept"]}, +{"id":"86401","label":"pushing brown case from right to left","template":"Pushing [something] from right to left","placeholders":["brown case"]}, +{"id":"144404","label":"pushing scotch tape so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["scotch tape"]}, +{"id":"30072","label":"lifting up one end of envelope, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["envelope"]}, +{"id":"152154","label":"pretending or failing to wipe something off of something","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["something","something"]}, +{"id":"22984","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"32294","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"148793","label":"holding helmet","template":"Holding [something]","placeholders":["helmet"]}, +{"id":"198150","label":"moving toy duck and plastic flower away from each other","template":"Moving [something] and [something] away from each other","placeholders":["toy duck","plastic flower"]}, +{"id":"89166","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"5248","label":"lifting a candle up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a candle"]}, +{"id":"208314","label":"piling felt pen up","template":"Piling [something] up","placeholders":["felt pen"]}, +{"id":"81098","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"73896","label":"pretending to squeeze a block","template":"Pretending to squeeze [something]","placeholders":["a block"]}, +{"id":"171081","label":"putting clock in front of cup","template":"Putting [something] in front of [something]","placeholders":["clock","cup"]}, +{"id":"121504","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"75481","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"101681","label":"putting 6 dog treats onto chopping board","template":"Putting [number of] [something] onto [something]","placeholders":["6","dog treats","chopping board"]}, +{"id":"213334","label":"moving punching machine up","template":"Moving [something] up","placeholders":["punching machine"]}, +{"id":"184423","label":"dropping a comb next to a peg","template":"Dropping [something] next to [something]","placeholders":["a comb","a peg"]}, +{"id":"55398","label":"poking a stack of clementines without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["clementines"]}, +{"id":"196954","label":"taking toy out of box","template":"Taking [something] out of [something]","placeholders":["toy","box"]}, +{"id":"5880","label":"moving a playstation controller down","template":"Moving [something] down","placeholders":["a playstation controller"]}, +{"id":"42768","label":"holding black pen next to orange kindle","template":"Holding [something] next to [something]","placeholders":["black pen","orange kindle"]}, +{"id":"14270","label":"tearing sheet of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet of paper"]}, +{"id":"18366","label":"bending envelope so that it deforms","template":"Bending [something] so that it deforms","placeholders":["envelope"]}, +{"id":"167596","label":"tearing plastic bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["plastic bag"]}, +{"id":"41450","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"92391","label":"holding a shoe in front of an ipad","template":"Holding [something] in front of [something]","placeholders":["a shoe","an ipad"]}, +{"id":"134471","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"89099","label":"pulling chopsticks out of package","template":"Pulling [something] out of [something]","placeholders":["chopsticks","package"]}, +{"id":"88732","label":"putting phone underneath mug","template":"Putting [something] underneath [something]","placeholders":["phone","mug"]}, +{"id":"24394","label":"taking pencil out of cup","template":"Taking [something] out of [something]","placeholders":["pencil","cup"]}, +{"id":"81255","label":"pulling two ends of a charger so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a charger"]}, +{"id":"131403","label":"pushing medical box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["medical box"]}, +{"id":"197689","label":"pretending to sprinkle air onto something","template":"Pretending to sprinkle air onto [something]","placeholders":["something"]}, +{"id":"143509","label":"pouring koolaid into a bowl","template":"Pouring [something] into [something]","placeholders":["koolaid","a bowl"]}, +{"id":"81395","label":"showing that jar is empty","template":"Showing that [something] is empty","placeholders":["jar"]}, +{"id":"29472","label":"putting felt pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["felt pen"]}, +{"id":"25938","label":"moving notepad across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["notepad"]}, +{"id":"85169","label":"putting a woollen yarn into a box","template":"Putting [something] into [something]","placeholders":["a woollen yarn","a box"]}, +{"id":"161027","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"81730","label":"holding cards over timepiece","template":"Holding [something] over [something]","placeholders":["cards","timepiece"]}, +{"id":"100458","label":"taking plate from desk","template":"Taking [something] from [somewhere]","placeholders":["plate","desk"]}, +{"id":"129432","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"89825","label":"pretending to put lid onto cup","template":"Pretending to put [something] onto [something]","placeholders":["lid","cup"]}, +{"id":"195005","label":"picking a spoon up","template":"Picking [something] up","placeholders":["a spoon"]}, +{"id":"176329","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"217021","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"94382","label":"showing ruler next to notebook","template":"Showing [something] next to [something]","placeholders":["ruler","notebook"]}, +{"id":"118393","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"155569","label":"showing a photo of a mandala to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a mandala"]}, +{"id":"82162","label":"throwing flashdisk","template":"Throwing [something]","placeholders":["flashdisk"]}, +{"id":"176188","label":"spinning top toy that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["top toy"]}, +{"id":"79168","label":"moving a key away from a pen","template":"Moving [something] away from [something]","placeholders":["a key","a pen"]}, +{"id":"155824","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"83895","label":"dropping book onto books","template":"Dropping [something] onto [something]","placeholders":["book","books"]}, +{"id":"214793","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"112092","label":"showing an angel statue next to a candle","template":"Showing [something] next to [something]","placeholders":["an angel statue","a candle"]}, +{"id":"54367","label":"poking a steel container so that it spins around","template":"Poking [something] so that it spins around","placeholders":["a steel container"]}, +{"id":"16243","label":"pushing glue stick so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["glue stick"]}, +{"id":"175714","label":"pretending to poke bracelet","template":"Pretending to poke [something]","placeholders":["bracelet"]}, +{"id":"124261","label":"throwing tissues","template":"Throwing [something]","placeholders":["tissues"]}, +{"id":"130837","label":"moving box closer to can","template":"Moving [something] closer to [something]","placeholders":["box","can"]}, +{"id":"35183","label":"covering tv remote with towel","template":"Covering [something] with [something]","placeholders":["tv remote","towel"]}, +{"id":"125402","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"207773","label":"showing a vase of flowers next to a lemon","template":"Showing [something] next to [something]","placeholders":["a vase of flowers","a lemon"]}, +{"id":"127248","label":"turning a card upside down","template":"Turning [something] upside down","placeholders":["a card"]}, +{"id":"64912","label":"pouring water out of glass","template":"Pouring [something] out of [something]","placeholders":["water","glass"]}, +{"id":"81179","label":"showing white toy car on top of red pouch","template":"Showing [something] on top of [something]","placeholders":["white toy car","red pouch"]}, +{"id":"165442","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"175805","label":"spinning paint tube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint tube"]}, +{"id":"99945","label":"turning box upside down","template":"Turning [something] upside down","placeholders":["box"]}, +{"id":"4120","label":"poking a cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a cup"]}, +{"id":"108867","label":"squeezing plastic eyeball","template":"Squeezing [something]","placeholders":["plastic eyeball"]}, +{"id":"208950","label":"plugging toaster into socket","template":"Plugging [something] into [something]","placeholders":["toaster","socket"]}, +{"id":"158909","label":"plugging a power cord into a laptop","template":"Plugging [something] into [something]","placeholders":["a power cord","a laptop"]}, +{"id":"124393","label":"taking documents out of bag","template":"Taking [something] out of [something]","placeholders":["documents","bag"]}, +{"id":"188937","label":"picking headphones up","template":"Picking [something] up","placeholders":["headphones"]}, +{"id":"10473","label":"turning the camera left while filming banana","template":"Turning the camera left while filming [something]","placeholders":["banana"]}, +{"id":"45522","label":"moving red spoon away from the camera","template":"Moving [something] away from the camera","placeholders":["red spoon"]}, +{"id":"60361","label":"lifting up one end of cloth without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["cloth"]}, +{"id":"74604","label":"plugging a charger into a plug","template":"Plugging [something] into [something]","placeholders":["a charger","a plug"]}, +{"id":"100021","label":"showing toy next to box","template":"Showing [something] next to [something]","placeholders":["toy","box"]}, +{"id":"107990","label":"laying red cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["red cup"]}, +{"id":"34047","label":"covering toothbrush with notebook","template":"Covering [something] with [something]","placeholders":["toothbrush","notebook"]}, +{"id":"121487","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"101117","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"214149","label":"putting tissue box on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["tissue box","table"]}, +{"id":"203721","label":"dropping bottle next to kendama","template":"Dropping [something] next to [something]","placeholders":["bottle","kendama"]}, +{"id":"69439","label":"wiping water off of a mirror","template":"Wiping [something] off of [something]","placeholders":["water","a mirror"]}, +{"id":"29191","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"32741","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"53592","label":"moving basketball down","template":"Moving [something] down","placeholders":["basketball"]}, +{"id":"89750","label":"putting adaptor that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["adaptor"]}, +{"id":"113329","label":"taking a book from a pile of books","template":"Taking [one of many similar things on the table]","placeholders":["a book from a pile of books"]}, +{"id":"69350","label":"small tin falling like a rock","template":"[Something] falling like a rock","placeholders":["small tin"]}, +{"id":"113626","label":"holding paper over scissors","template":"Holding [something] over [something]","placeholders":["paper","scissors"]}, +{"id":"109268","label":"lifting brush with paper on it","template":"Lifting [something] with [something] on it","placeholders":["brush","paper"]}, +{"id":"16749","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"193403","label":"putting a lunchbox behind a computer","template":"Putting [something] behind [something]","placeholders":["a lunchbox","a computer"]}, +{"id":"39205","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"179673","label":"poking candle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["candle"]}, +{"id":"162861","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"177991","label":"unfolding money","template":"Unfolding [something]","placeholders":["money"]}, +{"id":"93699","label":"holding tablet box over cookie box","template":"Holding [something] over [something]","placeholders":["tablet box","cookie box"]}, +{"id":"173426","label":"putting selfie stick behind wooden box","template":"Putting [something] behind [something]","placeholders":["selfie stick","wooden box"]}, +{"id":"42592","label":"showing that water is inside the brita pitcher","template":"Showing that [something] is inside [something]","placeholders":["water","the brita pitcher"]}, +{"id":"100579","label":"putting mug in front of play-doh","template":"Putting [something] in front of [something]","placeholders":["mug","play-doh"]}, +{"id":"213168","label":"covering remote control with hand","template":"Covering [something] with [something]","placeholders":["remote control","hand"]}, +{"id":"5863","label":"pretending to squeeze pillow","template":"Pretending to squeeze [something]","placeholders":["pillow"]}, +{"id":"36308","label":"stuffing pant into bag","template":"Stuffing [something] into [something]","placeholders":["pant","bag"]}, +{"id":"201813","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"84441","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"46997","label":"putting razor blade next to yellowbook","template":"Putting [something] next to [something]","placeholders":["razor blade","yellowbook"]}, +{"id":"195136","label":"approaching toy with your camera","template":"Approaching [something] with your camera","placeholders":["toy"]}, +{"id":"131851","label":"holding keys behind christmas tree","template":"Holding [something] behind [something]","placeholders":["keys","christmas tree"]}, +{"id":"145503","label":"pushing cup off of table","template":"Pushing [something] off of [something]","placeholders":["cup","table"]}, +{"id":"184810","label":"touching (without moving) lid of box","template":"Touching (without moving) [part] of [something]","placeholders":["lid","box"]}, +{"id":"122039","label":"holding a bottle in front of a hand weight","template":"Holding [something] in front of [something]","placeholders":["a bottle","a hand weight"]}, +{"id":"139652","label":"pushing a box with a book","template":"Pushing [something] with [something]","placeholders":["a box","a book"]}, +{"id":"99304","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"157086","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"64685","label":"putting a cup in front of a spoon","template":"Putting [something] in front of [something]","placeholders":["a cup","a spoon"]}, +{"id":"129940","label":"turning a pillow upside down","template":"Turning [something] upside down","placeholders":["a pillow"]}, +{"id":"43904","label":"putting a remote","template":"Putting [something similar to other things that are already on the table]","placeholders":["a remote"]}, +{"id":"49552","label":"piling envelopes up","template":"Piling [something] up","placeholders":["envelopes"]}, +{"id":"211632","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"22700","label":"pulling two ends of a thread so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a thread"]}, +{"id":"28815","label":"taking one spoon from many spoons on the table","template":"Taking [one of many similar things on the table]","placeholders":["one spoon from many spoons on the table"]}, +{"id":"46642","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"98886","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"45340","label":"telcom powder box falling like a rock","template":"[Something] falling like a rock","placeholders":["telcom powder box"]}, +{"id":"72298","label":"taking shoes from floor","template":"Taking [something] from [somewhere]","placeholders":["shoes","floor"]}, +{"id":"52971","label":"pushing aim toothpaste from right to left","template":"Pushing [something] from right to left","placeholders":["aim toothpaste"]}, +{"id":"155511","label":"covering an electric fan with a towel","template":"Covering [something] with [something]","placeholders":["an electric fan","a towel"]}, +{"id":"72734","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"75183","label":"pushing a wrist watch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a wrist watch"]}, +{"id":"193863","label":"covering a can with a basket","template":"Covering [something] with [something]","placeholders":["a can","a basket"]}, +{"id":"211354","label":"lipstick colliding with another lipstick and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["lipstick","another lipstick"]}, +{"id":"64794","label":"pushing bottle with bowl","template":"Pushing [something] with [something]","placeholders":["bottle","bowl"]}, +{"id":"56120","label":"stacking 3 book","template":"Stacking [number of] [something]","placeholders":["3","book"]}, +{"id":"107138","label":"closing tin","template":"Closing [something]","placeholders":["tin"]}, +{"id":"131342","label":"covering bottle with teatowel","template":"Covering [something] with [something]","placeholders":["bottle","teatowel"]}, +{"id":"144529","label":"showing that mug is empty","template":"Showing that [something] is empty","placeholders":["mug"]}, +{"id":"206183","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"192642","label":"taking jar out of box","template":"Taking [something] out of [something]","placeholders":["jar","box"]}, +{"id":"146799","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"152732","label":"pretending to take candle from mantle","template":"Pretending to take [something] from [somewhere]","placeholders":["candle","mantle"]}, +{"id":"90618","label":"moving calculator away from box","template":"Moving [something] away from [something]","placeholders":["calculator","box"]}, +{"id":"112522","label":"lifting remote control up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["remote control"]}, +{"id":"130003","label":"putting water bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["water bottle"]}, +{"id":"121225","label":"dropping pill bottle into sink","template":"Dropping [something] into [something]","placeholders":["pill bottle","sink"]}, +{"id":"24132","label":"piling cups up","template":"Piling [something] up","placeholders":["cups"]}, +{"id":"183163","label":"covering cork with hat","template":"Covering [something] with [something]","placeholders":["cork","hat"]}, +{"id":"117177","label":"holding plate over helmet","template":"Holding [something] over [something]","placeholders":["plate","helmet"]}, +{"id":"65191","label":"dropping a coin next to a belt","template":"Dropping [something] next to [something]","placeholders":["a coin","a belt"]}, +{"id":"42556","label":"pulling door from left to right","template":"Pulling [something] from left to right","placeholders":["door"]}, +{"id":"188962","label":"trying but failing to attach a comb to a book because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a comb","a book"]}, +{"id":"157256","label":"bending plastic card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["plastic card"]}, +{"id":"196501","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"126786","label":"lifting writing pad with papers on it","template":"Lifting [something] with [something] on it","placeholders":["writing pad","papers"]}, +{"id":"29281","label":"letting a spool of thread roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a spool of thread"]}, +{"id":"8703","label":"throwing nose plunger","template":"Throwing [something]","placeholders":["nose plunger"]}, +{"id":"44812","label":"moving candle and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["candle","pen"]}, +{"id":"52135","label":"trying but failing to attach a bag to chair because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a bag","chair"]}, +{"id":"209457","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"50157","label":"pretending to take remote out of box","template":"Pretending to take [something] out of [something]","placeholders":["remote","box"]}, +{"id":"98091","label":"holding letter over calculater","template":"Holding [something] over [something]","placeholders":["letter","calculater"]}, +{"id":"124435","label":"pushing glue from left to right","template":"Pushing [something] from left to right","placeholders":["glue"]}, +{"id":"88126","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"10695","label":"banknote falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["banknote"]}, +{"id":"190808","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"112714","label":"pretending to close the bathroom cabinet without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["the bathroom cabinet"]}, +{"id":"43464","label":"pretending to pick pincer up","template":"Pretending to pick [something] up","placeholders":["pincer"]}, +{"id":"75125","label":"lifting notebook with glass on it","template":"Lifting [something] with [something] on it","placeholders":["notebook","glass"]}, +{"id":"126191","label":"showing wash basin to the camera","template":"Showing [something] to the camera","placeholders":["wash basin"]}, +{"id":"8210","label":"putting 1 envelope onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","envelope","chair"]}, +{"id":"6695","label":"holding water botle over purse","template":"Holding [something] over [something]","placeholders":["water botle","purse"]}, +{"id":"142911","label":"pretending to put a sandle underneath a bed","template":"Pretending to put [something] underneath [something]","placeholders":["a sandle","a bed"]}, +{"id":"79932","label":"putting a bottle in front of eraser","template":"Putting [something] in front of [something]","placeholders":["a bottle","eraser"]}, +{"id":"3568","label":"pretending to put pencils into a box","template":"Pretending to put [something] into [something]","placeholders":["pencils","a box"]}, +{"id":"124285","label":"lifting an apple up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["an apple"]}, +{"id":"166428","label":"stuffing a book into a purse","template":"Stuffing [something] into [something]","placeholders":["a book","a purse"]}, +{"id":"2123","label":"moving sandals towards the camera","template":"Moving [something] towards the camera","placeholders":["sandals"]}, +{"id":"199577","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"166634","label":"pushing canned food from left to right","template":"Pushing [something] from left to right","placeholders":["canned food"]}, +{"id":"72016","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"209928","label":"attaching charger to phone","template":"Attaching [something] to [something]","placeholders":["charger","phone"]}, +{"id":"94199","label":"piling cards up","template":"Piling [something] up","placeholders":["cards"]}, +{"id":"205741","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"133448","label":"pretending to put cup into cup holder","template":"Pretending to put [something] into [something]","placeholders":["cup","cup holder"]}, +{"id":"164064","label":"holding a measuring tape over a helmet","template":"Holding [something] over [something]","placeholders":["a measuring tape","a helmet"]}, +{"id":"188398","label":"pulling a pencil case from left to right","template":"Pulling [something] from left to right","placeholders":["a pencil case"]}, +{"id":"60296","label":"holding cell phone next to laptop","template":"Holding [something] next to [something]","placeholders":["cell phone","laptop"]}, +{"id":"131451","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"198927","label":"holding notebook in front of window","template":"Holding [something] in front of [something]","placeholders":["notebook","window"]}, +{"id":"82704","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"115564","label":"moving lid of cloves organizer","template":"Moving [part] of [something]","placeholders":["lid","cloves organizer"]}, +{"id":"61998","label":"tipping gallon jug over","template":"Tipping [something] over","placeholders":["gallon jug"]}, +{"id":"174255","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"162332","label":"turning a coin upside down","template":"Turning [something] upside down","placeholders":["a coin"]}, +{"id":"113012","label":"pretending or failing to wipe stain off of surface","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","surface"]}, +{"id":"106715","label":"pushing coaster so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["coaster"]}, +{"id":"220483","label":"touching (without moving) phone of the folder","template":"Touching (without moving) [part] of [something]","placeholders":["phone","the folder"]}, +{"id":"219740","label":"pretending to throw piggy bank","template":"Pretending to throw [something]","placeholders":["piggy bank"]}, +{"id":"5417","label":"picking bottle up","template":"Picking [something] up","placeholders":["bottle"]}, +{"id":"190898","label":"digging a mallet out of stack of gravel","template":"Digging [something] out of [something]","placeholders":["a mallet","stack of gravel"]}, +{"id":"58097","label":"plugging a cord into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","a phone"]}, +{"id":"193976","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"177885","label":"putting fluorescent light bulb behind mug","template":"Putting [something] behind [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"73758","label":"taking a screw away from many screws","template":"Taking [one of many similar things on the table]","placeholders":["a screw away from many screws"]}, +{"id":"87192","label":"moving remote controller down","template":"Moving [something] down","placeholders":["remote controller"]}, +{"id":"74408","label":"lifting up one end of envelope without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["envelope"]}, +{"id":"119129","label":"showing cup behind something","template":"Showing [something] behind [something]","placeholders":["cup","something"]}, +{"id":"216489","label":"lifting figurine up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["figurine"]}, +{"id":"35846","label":"piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of paper"]}, +{"id":"178399","label":"plugging headphone into mobilephone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphone","mobilephone"]}, +{"id":"129562","label":"lifting cell phone with marker on it","template":"Lifting [something] with [something] on it","placeholders":["cell phone","marker"]}, +{"id":"139366","label":"spinning candy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["candy"]}, +{"id":"115330","label":"holding shoe next to nail polish","template":"Holding [something] next to [something]","placeholders":["shoe","nail polish"]}, +{"id":"106483","label":"wiping ground tea off of table","template":"Wiping [something] off of [something]","placeholders":["ground tea","table"]}, +{"id":"85315","label":"pretending to turn a glass bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass bottle"]}, +{"id":"75967","label":"putting sticky note in front of sharpener","template":"Putting [something] in front of [something]","placeholders":["sticky note","sharpener"]}, +{"id":"187835","label":"plugging guitar cable into amplifier but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["guitar cable","amplifier"]}, +{"id":"83464","label":"showing flower to the camera","template":"Showing [something] to the camera","placeholders":["flower"]}, +{"id":"167391","label":"lifting up one end of paper without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["paper"]}, +{"id":"106134","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"110665","label":"holding pen in front of bottle","template":"Holding [something] in front of [something]","placeholders":["pen","bottle"]}, +{"id":"192714","label":"lifting knife with soap on it","template":"Lifting [something] with [something] on it","placeholders":["knife","soap"]}, +{"id":"37976","label":"moving vape closer to wallet","template":"Moving [something] closer to [something]","placeholders":["vape","wallet"]}, +{"id":"92239","label":"pretending to poke hat","template":"Pretending to poke [something]","placeholders":["hat"]}, +{"id":"191233","label":"poking tape measure so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tape measure"]}, +{"id":"171527","label":"pouring water into jar","template":"Pouring [something] into [something]","placeholders":["water","jar"]}, +{"id":"32578","label":"scooping puzzle piece up with hand","template":"Scooping [something] up with [something]","placeholders":["puzzle piece","hand"]}, +{"id":"84921","label":"putting a usb stick into a plastic box","template":"Putting [something] into [something]","placeholders":["a usb stick","a plastic box"]}, +{"id":"53348","label":"battery falling like a rock","template":"[Something] falling like a rock","placeholders":["battery"]}, +{"id":"65018","label":"pretending to put water bottle into bowl","template":"Pretending to put [something] into [something]","placeholders":["water bottle","bowl"]}, +{"id":"171369","label":"pretending to put chalk on a surface","template":"Pretending to put [something] on a surface","placeholders":["chalk"]}, +{"id":"200047","label":"showing that cooler is empty","template":"Showing that [something] is empty","placeholders":["cooler"]}, +{"id":"25072","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"61220","label":"dropping charger behind watch","template":"Dropping [something] behind [something]","placeholders":["charger","watch"]}, +{"id":"173043","label":"covering toy with bowl","template":"Covering [something] with [something]","placeholders":["toy","bowl"]}, +{"id":"33742","label":"picking a shoe up","template":"Picking [something] up","placeholders":["a shoe"]}, +{"id":"2355","label":"spilling water onto cup","template":"Spilling [something] onto [something]","placeholders":["water","cup"]}, +{"id":"2600","label":"rolling powerbank on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["powerbank"]}, +{"id":"74509","label":"sprinkling cleaning powder onto a bathtub","template":"Sprinkling [something] onto [something]","placeholders":["cleaning powder","a bathtub"]}, +{"id":"58958","label":"putting spice with spices","template":"Putting [something similar to other things that are already on the table]","placeholders":["spice with spices"]}, +{"id":"32629","label":"lifting a pineapple up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pineapple"]}, +{"id":"84116","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"157596","label":"tilting lid with chalk on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["lid","chalk"]}, +{"id":"80553","label":"throwing a picture onto a surface","template":"Throwing [something] onto a surface","placeholders":["a picture"]}, +{"id":"40159","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"45616","label":"pretending to close a shoebox without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a shoebox"]}, +{"id":"167750","label":"letting guava roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["guava"]}, +{"id":"127307","label":"pushing red booklet from right to left","template":"Pushing [something] from right to left","placeholders":["red booklet"]}, +{"id":"208090","label":"taking a grape out of a small bag","template":"Taking [something] out of [something]","placeholders":["a grape","a small bag"]}, +{"id":"36247","label":"throwing scissors against wall","template":"Throwing [something] against [something]","placeholders":["scissors","wall"]}, +{"id":"26814","label":"showing chair to the camera","template":"Showing [something] to the camera","placeholders":["chair"]}, +{"id":"44068","label":"putting a hanky that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a hanky"]}, +{"id":"170218","label":"pretending to be tearing thick envelope","template":"Pretending to be tearing [something that is not tearable]","placeholders":["thick envelope"]}, +{"id":"177716","label":"moving pick and scissor away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pick","scissor"]}, +{"id":"199243","label":"pretending or failing to wipe paint off of chair","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["paint","chair"]}, +{"id":"84082","label":"pretending to close a refrigerator without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a refrigerator"]}, +{"id":"12128","label":"putting a pencil beetween others","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pencil beetween others"]}, +{"id":"33359","label":"putting plastic container that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["plastic container"]}, +{"id":"75489","label":"stuffing jacket into bag","template":"Stuffing [something] into [something]","placeholders":["jacket","bag"]}, +{"id":"30095","label":"lifting book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["book"]}, +{"id":"112843","label":"holding glass behind ashtray","template":"Holding [something] behind [something]","placeholders":["glass","ashtray"]}, +{"id":"6016","label":"pretending to be tearing hand towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["hand towel"]}, +{"id":"138952","label":"poking tape so that it falls over","template":"Poking [something] so that it falls over","placeholders":["tape"]}, +{"id":"108023","label":"twisting the lid on a bottle","template":"Twisting [something]","placeholders":["the lid on a bottle"]}, +{"id":"12475","label":"pretending to put a mallet next to a scotch roll","template":"Pretending to put [something] next to [something]","placeholders":["a mallet","a scotch roll"]}, +{"id":"115590","label":"glasses box colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["glasses box","bottle"]}, +{"id":"137925","label":"taking pen from stool","template":"Taking [something] from [somewhere]","placeholders":["pen","stool"]}, +{"id":"204696","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"3506","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"82786","label":"holding phone in front of face","template":"Holding [something] in front of [something]","placeholders":["phone","face"]}, +{"id":"148378","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"2533","label":"moving book closer to remotes","template":"Moving [something] closer to [something]","placeholders":["book","remotes"]}, +{"id":"5756","label":"stuffing an encyclopedia into a shelf","template":"Stuffing [something] into [something]","placeholders":["an encyclopedia","a shelf"]}, +{"id":"30622","label":"putting 4 colour chalks onto diary","template":"Putting [number of] [something] onto [something]","placeholders":["4","colour chalks","diary"]}, +{"id":"104891","label":"putting soda can","template":"Putting [something similar to other things that are already on the table]","placeholders":["soda can"]}, +{"id":"131678","label":"putting pens together","template":"Putting [something similar to other things that are already on the table]","placeholders":["pens together"]}, +{"id":"123682","label":"spinning a multitool that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a multitool"]}, +{"id":"138321","label":"pulling black disc case from left to right","template":"Pulling [something] from left to right","placeholders":["black disc case"]}, +{"id":"41513","label":"removing tablecloth, revealing comb behind","template":"Removing [something], revealing [something] behind","placeholders":["tablecloth","comb"]}, +{"id":"196654","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"167326","label":"taking lipstick","template":"Taking [one of many similar things on the table]","placeholders":["lipstick"]}, +{"id":"187530","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"89223","label":"poking a coffee cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a coffee cup"]}, +{"id":"185229","label":"spinning deodorant spray so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["deodorant spray"]}, +{"id":"52438","label":"moving bowl closer to sunglasses","template":"Moving [something] closer to [something]","placeholders":["bowl","sunglasses"]}, +{"id":"152718","label":"putting tape onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["tape"]}, +{"id":"63350","label":"putting lid and wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["lid","wallet"]}, +{"id":"149129","label":"trying to bend phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["phone"]}, +{"id":"219489","label":"opening letter envelope","template":"Opening [something]","placeholders":["letter envelope"]}, +{"id":"75316","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"150304","label":"plugging electrical adaptor into electrical socket","template":"Plugging [something] into [something]","placeholders":["electrical adaptor","electrical socket"]}, +{"id":"128172","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"69583","label":"opening the container","template":"Opening [something]","placeholders":["the container"]}, +{"id":"15872","label":"squeezing a hand cream","template":"Squeezing [something]","placeholders":["a hand cream"]}, +{"id":"78191","label":"putting toys into a bag","template":"Putting [something] into [something]","placeholders":["toys","a bag"]}, +{"id":"43065","label":"putting black play cards on a surface","template":"Putting [something] on a surface","placeholders":["black play cards"]}, +{"id":"138974","label":"pushing a wallet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a wallet"]}, +{"id":"213679","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"75252","label":"plugging a cablle into a laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cablle","a laptop"]}, +{"id":"109198","label":"dropping tube in front of bed","template":"Dropping [something] in front of [something]","placeholders":["tube","bed"]}, +{"id":"24335","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"4077","label":"unfolding something","template":"Unfolding [something]","placeholders":["something"]}, +{"id":"165379","label":"pretending to turn a beer can upside down","template":"Pretending to turn [something] upside down","placeholders":["a beer can"]}, +{"id":"122388","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"15970","label":"turning wallet upside down","template":"Turning [something] upside down","placeholders":["wallet"]}, +{"id":"18531","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"126702","label":"moving pen and pen so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["pen","pen"]}, +{"id":"133085","label":"pretending to put small book on a surface","template":"Pretending to put [something] on a surface","placeholders":["small book"]}, +{"id":"213483","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"113120","label":"moving red teacup and white teacup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["red teacup","white teacup"]}, +{"id":"161450","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"26544","label":"tilting tape with watch on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["tape","watch"]}, +{"id":"78467","label":"spinning a full water bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a full water bottle"]}, +{"id":"32018","label":"hitting pen with marker","template":"Hitting [something] with [something]","placeholders":["pen","marker"]}, +{"id":"131183","label":"letting a pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pen"]}, +{"id":"108464","label":"pulling blanket from right to left","template":"Pulling [something] from right to left","placeholders":["blanket"]}, +{"id":"75326","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"34155","label":"pretending or failing to wipe smudge off of sunglasses","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["smudge","sunglasses"]}, +{"id":"71929","label":"pushing wrist watch from left to right","template":"Pushing [something] from left to right","placeholders":["wrist watch"]}, +{"id":"34343","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"100621","label":"letting pencil cell roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pencil cell"]}, +{"id":"143502","label":"pretending to squeeze a lemon","template":"Pretending to squeeze [something]","placeholders":["a lemon"]}, +{"id":"65876","label":"showing earphone to the camera","template":"Showing [something] to the camera","placeholders":["earphone"]}, +{"id":"170087","label":"stacking 3 small bowls","template":"Stacking [number of] [something]","placeholders":["3","small bowls"]}, +{"id":"56827","label":"pulling puzzle piece out of plastic bag","template":"Pulling [something] out of [something]","placeholders":["puzzle piece","plastic bag"]}, +{"id":"109524","label":"stuffing flowers into cup","template":"Stuffing [something] into [something]","placeholders":["flowers","cup"]}, +{"id":"78450","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"99082","label":"pretending to close a drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a drawer"]}, +{"id":"4372","label":"opening fridge","template":"Opening [something]","placeholders":["fridge"]}, +{"id":"192703","label":"holding usb","template":"Holding [something]","placeholders":["usb"]}, +{"id":"72953","label":"holding pen behind tiger","template":"Holding [something] behind [something]","placeholders":["pen","tiger"]}, +{"id":"197847","label":"moving a jumpdrive away from a stapler","template":"Moving [something] away from [something]","placeholders":["a jumpdrive","a stapler"]}, +{"id":"30705","label":"showing a pen on top of a glas","template":"Showing [something] on top of [something]","placeholders":["a pen","a glas"]}, +{"id":"62873","label":"pulling a pen from right to left","template":"Pulling [something] from right to left","placeholders":["a pen"]}, +{"id":"128044","label":"pushing cufflinks so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cufflinks"]}, +{"id":"111792","label":"dropping a pen next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a pen","a matchbox"]}, +{"id":"214480","label":"throwing pen in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pen"]}, +{"id":"72746","label":"showing ball behind box","template":"Showing [something] behind [something]","placeholders":["ball","box"]}, +{"id":"206137","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"21113","label":"dropping cleaning sponge into sink","template":"Dropping [something] into [something]","placeholders":["cleaning sponge","sink"]}, +{"id":"69694","label":"moving a doll and a doll so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a doll","a doll"]}, +{"id":"175315","label":"showing green water bottle to the camera","template":"Showing [something] to the camera","placeholders":["green water bottle"]}, +{"id":"24012","label":"pushing a pencil so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a pencil"]}, +{"id":"73438","label":"removing cup, revealing lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["cup","lighter"]}, +{"id":"37037","label":"lifting chair up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["chair"]}, +{"id":"86435","label":"plugging a charger into an extension chord","template":"Plugging [something] into [something]","placeholders":["a charger","an extension chord"]}, +{"id":"48695","label":"moving tool closer to scissor","template":"Moving [something] closer to [something]","placeholders":["tool","scissor"]}, +{"id":"27918","label":"trying to bend a remote so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a remote"]}, +{"id":"28981","label":"moving mouse and notebook closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mouse","notebook"]}, +{"id":"112179","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"26064","label":"hitting a cup with a chopstick","template":"Hitting [something] with [something]","placeholders":["a cup","a chopstick"]}, +{"id":"128516","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"22795","label":"pushing comb so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["comb"]}, +{"id":"101596","label":"a lighter falling like a rock","template":"[Something] falling like a rock","placeholders":["a lighter"]}, +{"id":"190032","label":"stacking glasses with glasses","template":"Stacking [number of] [something]","placeholders":["glasses","with glasses"]}, +{"id":"162581","label":"moving ball and ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["ball","ball"]}, +{"id":"32442","label":"moving big white color ball and small orange color ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["big white color ball","small orange color ball"]}, +{"id":"3216","label":"plugging cord into outlet","template":"Plugging [something] into [something]","placeholders":["cord","outlet"]}, +{"id":"106390","label":"moving sunglass and sunglass so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["sunglass","sunglass"]}, +{"id":"4386","label":"putting camera case in front of speedlite","template":"Putting [something] in front of [something]","placeholders":["camera case","speedlite"]}, +{"id":"147018","label":"throwing toy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["toy"]}, +{"id":"98438","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"133739","label":"moving string up","template":"Moving [something] up","placeholders":["string"]}, +{"id":"38004","label":"putting spray bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["spray bottle"]}, +{"id":"200529","label":"pushing a box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a box"]}, +{"id":"8361","label":"plugging mobile charger into power socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["mobile charger","power socket"]}, +{"id":"111337","label":"putting pen onto book","template":"Putting [something] onto [something]","placeholders":["pen","book"]}, +{"id":"27593","label":"turning ink bottle upside down","template":"Turning [something] upside down","placeholders":["ink bottle"]}, +{"id":"138953","label":"moving a wristwatch and charger away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a wristwatch","charger"]}, +{"id":"117117","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"213580","label":"pretending to pick chair case up","template":"Pretending to pick [something] up","placeholders":["chair case"]}, +{"id":"69636","label":"picking a hairbrush up","template":"Picking [something] up","placeholders":["a hairbrush"]}, +{"id":"115770","label":"throwing a packaging onto a surface","template":"Throwing [something] onto a surface","placeholders":["a packaging"]}, +{"id":"41013","label":"poking a hole into a styrofoam block","template":"Poking a hole into [some substance]","placeholders":["a styrofoam block"]}, +{"id":"211938","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"199277","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"89648","label":"stacking 4 coasters","template":"Stacking [number of] [something]","placeholders":["4","coasters"]}, +{"id":"120818","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"180850","label":"pushing bucket with bat","template":"Pushing [something] with [something]","placeholders":["bucket","bat"]}, +{"id":"214599","label":"stuffing pillow into pillowcase","template":"Stuffing [something] into [something]","placeholders":["pillow","pillowcase"]}, +{"id":"100901","label":"putting action figure that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["action figure"]}, +{"id":"171109","label":"pretending to turn small book upside down","template":"Pretending to turn [something] upside down","placeholders":["small book"]}, +{"id":"164177","label":"showing water bottle next to bowl","template":"Showing [something] next to [something]","placeholders":["water bottle","bowl"]}, +{"id":"156213","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"97391","label":"pouring water into a measuring cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a measuring cup"]}, +{"id":"209243","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"88787","label":"bending chopsticks until it breaks","template":"Bending [something] until it breaks","placeholders":["chopsticks"]}, +{"id":"99177","label":"hitting a spray can with a lighter","template":"Hitting [something] with [something]","placeholders":["a spray can","a lighter"]}, +{"id":"143913","label":"lifting up one end of wood log, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["wood log"]}, +{"id":"21329","label":"stuffing water into container","template":"Stuffing [something] into [something]","placeholders":["water","container"]}, +{"id":"216505","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"46201","label":"hitting toy car with pen","template":"Hitting [something] with [something]","placeholders":["toy car","pen"]}, +{"id":"183742","label":"moving a cellphone up","template":"Moving [something] up","placeholders":["a cellphone"]}, +{"id":"34675","label":"moving a wallet away from a pencil","template":"Moving [something] away from [something]","placeholders":["a wallet","a pencil"]}, +{"id":"33067","label":"sprinkling salt onto a table","template":"Sprinkling [something] onto [something]","placeholders":["salt","a table"]}, +{"id":"96143","label":"putting nail polish, bottle and tube on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["nail polish","bottle","tube"]}, +{"id":"87265","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"205141","label":"turning orange bowl upside down","template":"Turning [something] upside down","placeholders":["orange bowl"]}, +{"id":"192570","label":"showing that white container is empty","template":"Showing that [something] is empty","placeholders":["white container"]}, +{"id":"128572","label":"moving soap and nail cutter so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["soap","nail cutter"]}, +{"id":"52879","label":"moving notebook and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["notebook","pen"]}, +{"id":"218922","label":"pretending or failing to wipe drawings off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["drawings","wall"]}, +{"id":"150441","label":"piling small blocks up","template":"Piling [something] up","placeholders":["small blocks"]}, +{"id":"12763","label":"bending cardboard tube until it breaks","template":"Bending [something] until it breaks","placeholders":["cardboard tube"]}, +{"id":"40480","label":"pretending or failing to wipe salt off of a box","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a box"]}, +{"id":"88815","label":"putting toy next to toy watch","template":"Putting [something] next to [something]","placeholders":["toy","toy watch"]}, +{"id":"181807","label":"moving spoon and box so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["spoon","box"]}, +{"id":"28230","label":"attaching carabinier hook to a keyring","template":"Attaching [something] to [something]","placeholders":["carabinier hook","a keyring"]}, +{"id":"115615","label":"pretending to open a box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a box"]}, +{"id":"145132","label":"bending chenille stick so that it deforms","template":"Bending [something] so that it deforms","placeholders":["chenille stick"]}, +{"id":"16509","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"58953","label":"twisting sliper","template":"Twisting [something]","placeholders":["sliper"]}, +{"id":"210969","label":"holding clock next to mouse","template":"Holding [something] next to [something]","placeholders":["clock","mouse"]}, +{"id":"162242","label":"removing a cup, revealing a lighter behind","template":"Removing [something], revealing [something] behind","placeholders":["a cup","a lighter"]}, +{"id":"203660","label":"showing that a watch is inside a box","template":"Showing that [something] is inside [something]","placeholders":["a watch","a box"]}, +{"id":"63960","label":"moving wristwatch and phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wristwatch","phone"]}, +{"id":"155928","label":"putting yellow container next to blue spectacle box","template":"Putting [something] next to [something]","placeholders":["yellow container","blue spectacle box"]}, +{"id":"36703","label":"turning dvd case upside down","template":"Turning [something] upside down","placeholders":["dvd case"]}, +{"id":"45066","label":"dropping a tissue box next to a mug","template":"Dropping [something] next to [something]","placeholders":["a tissue box","a mug"]}, +{"id":"124682","label":"moving pen and holder away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","holder"]}, +{"id":"36414","label":"showing spects on top of book","template":"Showing [something] on top of [something]","placeholders":["spects","book"]}, +{"id":"12129","label":"twisting (wringing) a face cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a face cloth"]}, +{"id":"161541","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"203566","label":"throwing a doll in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a doll"]}, +{"id":"37859","label":"pretending to turn dvd case upside down","template":"Pretending to turn [something] upside down","placeholders":["dvd case"]}, +{"id":"47160","label":"pushing grape off of table","template":"Pushing [something] off of [something]","placeholders":["grape","table"]}, +{"id":"141436","label":"letting tape roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tape roll"]}, +{"id":"210537","label":"pretending to poke cube","template":"Pretending to poke [something]","placeholders":["cube"]}, +{"id":"99174","label":"pushing watch from right to left","template":"Pushing [something] from right to left","placeholders":["watch"]}, +{"id":"71516","label":"showing that wax container is empty","template":"Showing that [something] is empty","placeholders":["wax container"]}, +{"id":"5435","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"10051","label":"showing that ciggaretes is inside pack","template":"Showing that [something] is inside [something]","placeholders":["ciggaretes","pack"]}, +{"id":"208455","label":"plugging plug cable into plug holder","template":"Plugging [something] into [something]","placeholders":["plug cable","plug holder"]}, +{"id":"138510","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"86882","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"197066","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"79026","label":"putting a plastic cup behind a bucket","template":"Putting [something] behind [something]","placeholders":["a plastic cup","a bucket"]}, +{"id":"140400","label":"poking book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["book"]}, +{"id":"218881","label":"dishcloth being deflected from cabinet","template":"[Something] being deflected from [something]","placeholders":["dishcloth","cabinet"]}, +{"id":"44133","label":"picking a box up","template":"Picking [something] up","placeholders":["a box"]}, +{"id":"152502","label":"dropping a matchbox behind a cup","template":"Dropping [something] behind [something]","placeholders":["a matchbox","a cup"]}, +{"id":"115418","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"45091","label":"plugging mobile charger into electical outlet","template":"Plugging [something] into [something]","placeholders":["mobile charger","electical outlet"]}, +{"id":"159442","label":"laying a bottle of mustard on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle of mustard"]}, +{"id":"105308","label":"plugging cord into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","socket"]}, +{"id":"13055","label":"putting soft tissue roll on a surface","template":"Putting [something] on a surface","placeholders":["soft tissue roll"]}, +{"id":"20519","label":"spilling soda onto towel","template":"Spilling [something] onto [something]","placeholders":["soda","towel"]}, +{"id":"176966","label":"putting a pot in front of a bracelet","template":"Putting [something] in front of [something]","placeholders":["a pot","a bracelet"]}, +{"id":"62850","label":"pretending to pick plush up","template":"Pretending to pick [something] up","placeholders":["plush"]}, +{"id":"27803","label":"poking a hole into thermocol","template":"Poking a hole into [something soft]","placeholders":["thermocol"]}, +{"id":"187093","label":"moving a roll of duct tape down","template":"Moving [something] down","placeholders":["a roll of duct tape"]}, +{"id":"188665","label":"pulling aim toothpaste from right to left","template":"Pulling [something] from right to left","placeholders":["aim toothpaste"]}, +{"id":"198766","label":"holding cup over box","template":"Holding [something] over [something]","placeholders":["cup","box"]}, +{"id":"60845","label":"folding a bandana","template":"Folding [something]","placeholders":["a bandana"]}, +{"id":"98297","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"173351","label":"showing grasshopper to the camera","template":"Showing [something] to the camera","placeholders":["grasshopper"]}, +{"id":"23998","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"199098","label":"throwing lid onto a surface","template":"Throwing [something] onto a surface","placeholders":["lid"]}, +{"id":"31706","label":"pulling a marker from left to right","template":"Pulling [something] from left to right","placeholders":["a marker"]}, +{"id":"90617","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"151706","label":"pushing notebook from right to left","template":"Pushing [something] from right to left","placeholders":["notebook"]}, +{"id":"102321","label":"trying to pour water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","glass"]}, +{"id":"98828","label":"burying sketch pen in sand","template":"Burying [something] in [something]","placeholders":["sketch pen","sand"]}, +{"id":"114264","label":"putting perfume bottle on a surface","template":"Putting [something] on a surface","placeholders":["perfume bottle"]}, +{"id":"81162","label":"putting pebble behind glass","template":"Putting [something] behind [something]","placeholders":["pebble","glass"]}, +{"id":"9895","label":"wiping soap off of a table","template":"Wiping [something] off of [something]","placeholders":["soap","a table"]}, +{"id":"75835","label":"putting remote on the edge of mug so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["remote","mug"]}, +{"id":"19106","label":"covering a mug with a napkin","template":"Covering [something] with [something]","placeholders":["a mug","a napkin"]}, +{"id":"219046","label":"covering a book with a piece of paper","template":"Covering [something] with [something]","placeholders":["a book","a piece of paper"]}, +{"id":"186236","label":"holding red watch case","template":"Holding [something]","placeholders":["red watch case"]}, +{"id":"10186","label":"putting keychain onto basket","template":"Putting [something] onto [something]","placeholders":["keychain","basket"]}, +{"id":"130776","label":"pretending to take fork from table","template":"Pretending to take [something] from [somewhere]","placeholders":["fork","table"]}, +{"id":"127215","label":"showing that the box is empty","template":"Showing that [something] is empty","placeholders":["the box"]}, +{"id":"186240","label":"throwing purse in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["purse"]}, +{"id":"22283","label":"dropping towel onto toilet","template":"Dropping [something] onto [something]","placeholders":["towel","toilet"]}, +{"id":"114842","label":"moving wallet and hat closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wallet","hat"]}, +{"id":"61595","label":"rolling roll of paper on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["roll of paper"]}, +{"id":"127533","label":"showing peanut to the camera","template":"Showing [something] to the camera","placeholders":["peanut"]}, +{"id":"11386","label":"scooping ice cream up with an ice-cream scoop","template":"Scooping [something] up with [something]","placeholders":["ice cream","an ice-cream scoop"]}, +{"id":"14117","label":"stacking number of something","template":"Stacking [number of] [something]","placeholders":["number of","something"]}, +{"id":"44811","label":"pushing orange bowl from right to left","template":"Pushing [something] from right to left","placeholders":["orange bowl"]}, +{"id":"123597","label":"trying but failing to attach wooden reeper to wooden reeper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["wooden reeper","wooden reeper"]}, +{"id":"100240","label":"plugging usb cable into smarthphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","smarthphone"]}, +{"id":"125614","label":"tilting game with flowers on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["game","flowers"]}, +{"id":"106488","label":"pulling purple microfiber from right to left","template":"Pulling [something] from right to left","placeholders":["purple microfiber"]}, +{"id":"65201","label":"throwing phone","template":"Throwing [something]","placeholders":["phone"]}, +{"id":"196028","label":"lifting a block up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a block"]}, +{"id":"79991","label":"moving pen and flower away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","flower"]}, +{"id":"43612","label":"moving a tv remote across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a tv remote"]}, +{"id":"54766","label":"poking audio helmet so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["audio helmet"]}, +{"id":"17486","label":"moving keys away from pen","template":"Moving [something] away from [something]","placeholders":["keys","pen"]}, +{"id":"84373","label":"lifting paper with paper ball on it","template":"Lifting [something] with [something] on it","placeholders":["paper","paper ball"]}, +{"id":"48351","label":"opening glass jar","template":"Opening [something]","placeholders":["glass jar"]}, +{"id":"33617","label":"spreading crunchy peanut butter onto a cracker","template":"Spreading [something] onto [something]","placeholders":["crunchy peanut butter","a cracker"]}, +{"id":"16741","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"162607","label":"pulling notecard out of purple container","template":"Pulling [something] out of [something]","placeholders":["notecard","purple container"]}, +{"id":"218394","label":"turning flashlight upside down","template":"Turning [something] upside down","placeholders":["flashlight"]}, +{"id":"12124","label":"turning the camera left while filming eggplant","template":"Turning the camera left while filming [something]","placeholders":["eggplant"]}, +{"id":"106359","label":"moving lighter and glass away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lighter","glass"]}, +{"id":"146083","label":"failing to put basket into adhesive tape because basket does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["basket","adhesive tape","basket"]}, +{"id":"217625","label":"poking a book so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a book"]}, +{"id":"138617","label":"spilling water onto paper towel","template":"Spilling [something] onto [something]","placeholders":["water","paper towel"]}, +{"id":"149864","label":"lifting spring up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spring"]}, +{"id":"201066","label":"turning marker pen upside down","template":"Turning [something] upside down","placeholders":["marker pen"]}, +{"id":"64104","label":"showing petrol station kiosk to the camera","template":"Showing [something] to the camera","placeholders":["petrol station kiosk"]}, +{"id":"85103","label":"moving one extreme of fan","template":"Moving [part] of [something]","placeholders":["one extreme","fan"]}, +{"id":"62591","label":"spinning cell phone that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cell phone"]}, +{"id":"155980","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"218735","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"123665","label":"putting hand sanitizer, dental floss and nail polish on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hand sanitizer","dental floss","nail polish"]}, +{"id":"15922","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"113141","label":"moving usb cable and smarthphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["usb cable","smarthphone"]}, +{"id":"154049","label":"pretending to throw newspaper","template":"Pretending to throw [something]","placeholders":["newspaper"]}, +{"id":"56702","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"185794","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"93147","label":"dropping ball behind chair","template":"Dropping [something] behind [something]","placeholders":["ball","chair"]}, +{"id":"27034","label":"plugging charger into laptop","template":"Plugging [something] into [something]","placeholders":["charger","laptop"]}, +{"id":"110948","label":"lifting up one end of plastic case, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["plastic case"]}, +{"id":"104677","label":"pulling bottled pesto sauce from left to right","template":"Pulling [something] from left to right","placeholders":["bottled pesto sauce"]}, +{"id":"127161","label":"holding glass in front of a bottle","template":"Holding [something] in front of [something]","placeholders":["glass","a bottle"]}, +{"id":"102548","label":"throwing a stuffed animal in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a stuffed animal"]}, +{"id":"209410","label":"stuffing striker coin into black pouch","template":"Stuffing [something] into [something]","placeholders":["striker coin","black pouch"]}, +{"id":"37244","label":"pulling two ends of scrunchie so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["scrunchie"]}, +{"id":"206488","label":"plugging plug into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","socket"]}, +{"id":"182263","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"35323","label":"plugging power adapter into socket","template":"Plugging [something] into [something]","placeholders":["power adapter","socket"]}, +{"id":"191681","label":"moving battery down","template":"Moving [something] down","placeholders":["battery"]}, +{"id":"119331","label":"uncovering eraser","template":"Uncovering [something]","placeholders":["eraser"]}, +{"id":"131302","label":"showing poster to the camera","template":"Showing [something] to the camera","placeholders":["poster"]}, +{"id":"40464","label":"pretending to open handcrafted pocket diary without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["handcrafted pocket diary"]}, +{"id":"96407","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"174164","label":"taking camera from drawer","template":"Taking [something] from [somewhere]","placeholders":["camera","drawer"]}, +{"id":"39343","label":"pushing toy with bat","template":"Pushing [something] with [something]","placeholders":["toy","bat"]}, +{"id":"46569","label":"opening a container of rice","template":"Opening [something]","placeholders":["a container of rice"]}, +{"id":"45985","label":"football falling like a rock","template":"[Something] falling like a rock","placeholders":["football"]}, +{"id":"193729","label":"putting glass behind box","template":"Putting [something] behind [something]","placeholders":["glass","box"]}, +{"id":"32364","label":"putting a phone on the edge of a tissue box so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a phone","a tissue box"]}, +{"id":"192360","label":"moving phone closer to tissue box","template":"Moving [something] closer to [something]","placeholders":["phone","tissue box"]}, +{"id":"179520","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"90565","label":"stacking 3 pots","template":"Stacking [number of] [something]","placeholders":["3","pots"]}, +{"id":"98360","label":"plugging phone into desk","template":"Plugging [something] into [something]","placeholders":["phone","desk"]}, +{"id":"150588","label":"uncovering toothbrush","template":"Uncovering [something]","placeholders":["toothbrush"]}, +{"id":"179463","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"59662","label":"pushing face wash so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["face wash"]}, +{"id":"89976","label":"turning the camera upwards while filming mug","template":"Turning the camera upwards while filming [something]","placeholders":["mug"]}, +{"id":"220118","label":"holding paper","template":"Holding [something]","placeholders":["paper"]}, +{"id":"127957","label":"pouring water into the bowl","template":"Pouring [something] into [something]","placeholders":["water","the bowl"]}, +{"id":"34605","label":"sock colliding with book and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["sock","book"]}, +{"id":"126945","label":"plugging charger into iphone 7 but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","iphone 7"]}, +{"id":"79993","label":"showing stroller to the camera","template":"Showing [something] to the camera","placeholders":["stroller"]}, +{"id":"178167","label":"pushing the glass so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["the glass"]}, +{"id":"45016","label":"putting marker","template":"Putting [something similar to other things that are already on the table]","placeholders":["marker"]}, +{"id":"95252","label":"tipping jar with candy over, so candy falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["jar","candy","candy"]}, +{"id":"64635","label":"lifting toothbrush up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["toothbrush"]}, +{"id":"99389","label":"tearing a napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["a napkin"]}, +{"id":"77689","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"73338","label":"moving coin down","template":"Moving [something] down","placeholders":["coin"]}, +{"id":"77539","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"195895","label":"showing cup and saucer to the camera","template":"Showing [something] to the camera","placeholders":["cup and saucer"]}, +{"id":"107831","label":"turning the camera downwards while filming punching machine","template":"Turning the camera downwards while filming [something]","placeholders":["punching machine"]}, +{"id":"211573","label":"holding mobile","template":"Holding [something]","placeholders":["mobile"]}, +{"id":"27283","label":"moving lighter down","template":"Moving [something] down","placeholders":["lighter"]}, +{"id":"142880","label":"pulling a bottle from right to left","template":"Pulling [something] from right to left","placeholders":["a bottle"]}, +{"id":"168348","label":"uncovering a mason jar","template":"Uncovering [something]","placeholders":["a mason jar"]}, +{"id":"202045","label":"moving lid of hair dryer","template":"Moving [part] of [something]","placeholders":["lid","hair dryer"]}, +{"id":"12985","label":"moving clasp of charger","template":"Moving [part] of [something]","placeholders":["clasp","charger"]}, +{"id":"53836","label":"taking a sock out of drawer","template":"Taking [something] out of [something]","placeholders":["a sock","drawer"]}, +{"id":"211095","label":"picking a stuffed bob-omb up","template":"Picking [something] up","placeholders":["a stuffed bob-omb"]}, +{"id":"163638","label":"holding glass behind a bottle","template":"Holding [something] behind [something]","placeholders":["glass","a bottle"]}, +{"id":"17710","label":"putting plastic into basket","template":"Putting [something] into [something]","placeholders":["plastic","basket"]}, +{"id":"213638","label":"trying to bend a remote control so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a remote control"]}, +{"id":"14314","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"2346","label":"lifting up one end of remote, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote"]}, +{"id":"182063","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"34760","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"13850","label":"pretending to pick purple balloon pump up","template":"Pretending to pick [something] up","placeholders":["purple balloon pump"]}, +{"id":"10243","label":"removing hat, revealing remote behind","template":"Removing [something], revealing [something] behind","placeholders":["hat","remote"]}, +{"id":"147964","label":"pretending to scoop water up with scooper","template":"Pretending to scoop [something] up with [something]","placeholders":["water","scooper"]}, +{"id":"39742","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"145364","label":"pushing paper weight so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["paper weight"]}, +{"id":"161347","label":"lifting a notebook with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a lighter"]}, +{"id":"219147","label":"turning peanut butter upside down","template":"Turning [something] upside down","placeholders":["peanut butter"]}, +{"id":"90324","label":"moving a dial of a telephone","template":"Moving [part] of [something]","placeholders":["a dial","a telephone"]}, +{"id":"220446","label":"putting wallet into bag","template":"Putting [something] into [something]","placeholders":["wallet","bag"]}, +{"id":"122529","label":"pretending to turn bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["bowl"]}, +{"id":"28022","label":"moving a ring up","template":"Moving [something] up","placeholders":["a ring"]}, +{"id":"67940","label":"showing that water is inside the bottle","template":"Showing that [something] is inside [something]","placeholders":["water","the bottle"]}, +{"id":"122642","label":"throwing match box in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["match box"]}, +{"id":"107399","label":"spilling water onto plate","template":"Spilling [something] onto [something]","placeholders":["water","plate"]}, +{"id":"173063","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"212832","label":"putting stapler upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["stapler"]}, +{"id":"126184","label":"putting screw nail upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["screw nail"]}, +{"id":"196423","label":"holding a en in front of a pencil case","template":"Holding [something] in front of [something]","placeholders":["a en","a pencil case"]}, +{"id":"205184","label":"rolling pencil on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["pencil"]}, +{"id":"23005","label":"putting remote in front of seal pad","template":"Putting [something] in front of [something]","placeholders":["remote","seal pad"]}, +{"id":"167629","label":"holding a toothpick over a cup","template":"Holding [something] over [something]","placeholders":["a toothpick","a cup"]}, +{"id":"179370","label":"putting board clip onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["board clip"]}, +{"id":"140309","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"120436","label":"plugging an adapter into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["an adapter","an outlet"]}, +{"id":"122041","label":"lifting a pencil up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a pencil"]}, +{"id":"23108","label":"poking metal beam so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["metal beam"]}, +{"id":"29725","label":"spinning spinning kada so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning kada"]}, +{"id":"170068","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"97562","label":"putting a pen on a table with more pens on it","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen on a table with more pens on it"]}, +{"id":"66519","label":"covering pen with a bag","template":"Covering [something] with [something]","placeholders":["pen","a bag"]}, +{"id":"153449","label":"hitting brick+table with fidget spinner","template":"Hitting [something] with [something]","placeholders":["brick+table","fidget spinner"]}, +{"id":"71457","label":"putting a tub upright on the table","template":"Putting [something] upright on the table","placeholders":["a tub"]}, +{"id":"84869","label":"dropping duster onto cookie box","template":"Dropping [something] onto [something]","placeholders":["duster","cookie box"]}, +{"id":"70226","label":"putting spoon into cup","template":"Putting [something] into [something]","placeholders":["spoon","cup"]}, +{"id":"76658","label":"pushing a pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a pen"]}, +{"id":"147043","label":"lifting tuperware with playdoh on it","template":"Lifting [something] with [something] on it","placeholders":["tuperware","playdoh"]}, +{"id":"57470","label":"pushing table lamp so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["table lamp"]}, +{"id":"103915","label":"putting scissors, glasses and phone on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["scissors","glasses","phone"]}, +{"id":"159492","label":"putting coins into a bowl","template":"Putting [something] into [something]","placeholders":["coins","a bowl"]}, +{"id":"108070","label":"lifting up one end of mouse, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["mouse"]}, +{"id":"51057","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"148642","label":"taking yarn out of box","template":"Taking [something] out of [something]","placeholders":["yarn","box"]}, +{"id":"88064","label":"lifting a wallet with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["a wallet","sunglasses"]}, +{"id":"32417","label":"laying lotion on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lotion"]}, +{"id":"41929","label":"moving cufflinks closer to a belt","template":"Moving [something] closer to [something]","placeholders":["cufflinks","a belt"]}, +{"id":"186552","label":"somethimg with colliding with something and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["somethimg with","something"]}, +{"id":"179178","label":"touching (without moving) the top of a block","template":"Touching (without moving) [part] of [something]","placeholders":["the top","a block"]}, +{"id":"38318","label":"covering a smartphone with a hoodie","template":"Covering [something] with [something]","placeholders":["a smartphone","a hoodie"]}, +{"id":"30636","label":"taking receipts from a table","template":"Taking [one of many similar things on the table]","placeholders":["receipts from a table"]}, +{"id":"55287","label":"closing container","template":"Closing [something]","placeholders":["container"]}, +{"id":"58186","label":"tilting a bottle with a box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a bottle","a box"]}, +{"id":"24744","label":"twisting (wringing) a cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a cloth"]}, +{"id":"47530","label":"turning the camera right while filming board","template":"Turning the camera right while filming [something]","placeholders":["board"]}, +{"id":"157057","label":"putting a doll upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a doll"]}, +{"id":"162969","label":"plugging glade plugin into electrical wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["glade plugin","electrical wall socket"]}, +{"id":"4516","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"151103","label":"moving a stopper of a pen","template":"Moving [part] of [something]","placeholders":["a stopper","a pen"]}, +{"id":"171656","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"37959","label":"pretending to squeeze note","template":"Pretending to squeeze [something]","placeholders":["note"]}, +{"id":"91945","label":"pulling a tissue out of a tissue box","template":"Pulling [something] out of [something]","placeholders":["a tissue","a tissue box"]}, +{"id":"82216","label":"poking a hole into ballone","template":"Poking a hole into [something soft]","placeholders":["ballone"]}, +{"id":"201132","label":"pushing a fork so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a fork"]}, +{"id":"192676","label":"letting a iron rod roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a iron rod"]}, +{"id":"129251","label":"tilting plate with glasses on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","glasses"]}, +{"id":"112682","label":"pretending to open book without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["book"]}, +{"id":"57867","label":"showing that scissors is inside mug","template":"Showing that [something] is inside [something]","placeholders":["scissors","mug"]}, +{"id":"35803","label":"moving car closer to duster","template":"Moving [something] closer to [something]","placeholders":["car","duster"]}, +{"id":"58332","label":"letting ring roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ring"]}, +{"id":"193776","label":"showing plush behind cable","template":"Showing [something] behind [something]","placeholders":["plush","cable"]}, +{"id":"86373","label":"holding a cup","template":"Holding [something]","placeholders":["a cup"]}, +{"id":"214571","label":"hitting paper with paper","template":"Hitting [something] with [something]","placeholders":["paper","paper"]}, +{"id":"166004","label":"uncovering popcorn","template":"Uncovering [something]","placeholders":["popcorn"]}, +{"id":"166506","label":"twisting a ribbon","template":"Twisting [something]","placeholders":["a ribbon"]}, +{"id":"125224","label":"turning jar upside down","template":"Turning [something] upside down","placeholders":["jar"]}, +{"id":"165519","label":"pretending to take the hair tie from the bed","template":"Pretending to take [something] from [somewhere]","placeholders":["the hair tie","the bed"]}, +{"id":"70178","label":"putting jar underneath box","template":"Putting [something] underneath [something]","placeholders":["jar","box"]}, +{"id":"81605","label":"pouring water onto bucket","template":"Pouring [something] onto [something]","placeholders":["water","bucket"]}, +{"id":"123207","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"202844","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"21502","label":"attaching a phone to its cover","template":"Attaching [something] to [something]","placeholders":["a phone","its cover"]}, +{"id":"202634","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"71955","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"36498","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"149360","label":"holding a mouse over a wallet","template":"Holding [something] over [something]","placeholders":["a mouse","a wallet"]}, +{"id":"173753","label":"pushing paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper"]}, +{"id":"51518","label":"sprinkling candy onto butter","template":"Sprinkling [something] onto [something]","placeholders":["candy","butter"]}, +{"id":"95347","label":"moving orange colour pen up","template":"Moving [something] up","placeholders":["orange colour pen"]}, +{"id":"31270","label":"trying but failing to attach pencil to fridge because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["pencil","fridge"]}, +{"id":"125283","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"141921","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"157421","label":"moving glass and flashlight away from each other","template":"Moving [something] and [something] away from each other","placeholders":["glass","flashlight"]}, +{"id":"136438","label":"stuffing letter into envelope","template":"Stuffing [something] into [something]","placeholders":["letter","envelope"]}, +{"id":"69106","label":"touching (without moving) handle of iron","template":"Touching (without moving) [part] of [something]","placeholders":["handle","iron"]}, +{"id":"89927","label":"moving bolt closer to white badge","template":"Moving [something] closer to [something]","placeholders":["bolt","white badge"]}, +{"id":"18055","label":"putting two seashells onto table","template":"Putting [number of] [something] onto [something]","placeholders":["two","seashells","table"]}, +{"id":"137095","label":"letting a sphere roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a sphere"]}, +{"id":"54459","label":"plugging phone into charger","template":"Plugging [something] into [something]","placeholders":["phone","charger"]}, +{"id":"156966","label":"covering a smartphone with a tissu","template":"Covering [something] with [something]","placeholders":["a smartphone","a tissu"]}, +{"id":"159713","label":"showing small cup to the camera","template":"Showing [something] to the camera","placeholders":["small cup"]}, +{"id":"78868","label":"throwing a pillow against a wall","template":"Throwing [something] against [something]","placeholders":["a pillow","a wall"]}, +{"id":"131045","label":"showing a banana behind a pear","template":"Showing [something] behind [something]","placeholders":["a banana","a pear"]}, +{"id":"51754","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"99896","label":"holding teapot over cup","template":"Holding [something] over [something]","placeholders":["teapot","cup"]}, +{"id":"169306","label":"stuffing wipes into container","template":"Stuffing [something] into [something]","placeholders":["wipes","container"]}, +{"id":"35963","label":"moving pen away from holder","template":"Moving [something] away from [something]","placeholders":["pen","holder"]}, +{"id":"123629","label":"spinning a phone so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a phone"]}, +{"id":"27926","label":"plugging microwave into socket","template":"Plugging [something] into [something]","placeholders":["microwave","socket"]}, +{"id":"88984","label":"dropping a peg next to a fork","template":"Dropping [something] next to [something]","placeholders":["a peg","a fork"]}, +{"id":"88251","label":"squeezing yarn","template":"Squeezing [something]","placeholders":["yarn"]}, +{"id":"2137","label":"showing that bag is empty","template":"Showing that [something] is empty","placeholders":["bag"]}, +{"id":"67762","label":"pulling piece of paper onto notebook","template":"Pulling [something] onto [something]","placeholders":["piece of paper","notebook"]}, +{"id":"14715","label":"pulling a notebook from left to right","template":"Pulling [something] from left to right","placeholders":["a notebook"]}, +{"id":"190769","label":"putting kolleg block on the edge of table edge so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["kolleg block","table edge"]}, +{"id":"180630","label":"covering box with napkin","template":"Covering [something] with [something]","placeholders":["box","napkin"]}, +{"id":"152656","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"50391","label":"tearing notebook page just a little bit","template":"Tearing [something] just a little bit","placeholders":["notebook page"]}, +{"id":"181556","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"82674","label":"moving knife down","template":"Moving [something] down","placeholders":["knife"]}, +{"id":"11888","label":"holding control next to game","template":"Holding [something] next to [something]","placeholders":["control","game"]}, +{"id":"61092","label":"lifting stapler up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["stapler"]}, +{"id":"158739","label":"letting a potato roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a potato"]}, +{"id":"205435","label":"holding spoon in front of bed","template":"Holding [something] in front of [something]","placeholders":["spoon","bed"]}, +{"id":"114865","label":"taking one of many coins","template":"Taking [one of many similar things on the table]","placeholders":["one of many coins"]}, +{"id":"142677","label":"pretending to pick cable up","template":"Pretending to pick [something] up","placeholders":["cable"]}, +{"id":"76138","label":"showing horse to the camera","template":"Showing [something] to the camera","placeholders":["horse"]}, +{"id":"74528","label":"pretending to turn a cup upside down","template":"Pretending to turn [something] upside down","placeholders":["a cup"]}, +{"id":"99808","label":"dropping yellow ball into orange bowl","template":"Dropping [something] into [something]","placeholders":["yellow ball","orange bowl"]}, +{"id":"15050","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"55871","label":"pushing chair with leg","template":"Pushing [something] with [something]","placeholders":["chair","leg"]}, +{"id":"181882","label":"putting coins into box","template":"Putting [something] into [something]","placeholders":["coins","box"]}, +{"id":"79534","label":"pushing world globe from left to right","template":"Pushing [something] from left to right","placeholders":["world globe"]}, +{"id":"10049","label":"a ring being deflected from a mug","template":"[Something] being deflected from [something]","placeholders":["a ring","a mug"]}, +{"id":"135934","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"73207","label":"covering vicks vapourb with bedsheet","template":"Covering [something] with [something]","placeholders":["vicks vapourb","bedsheet"]}, +{"id":"33422","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"184621","label":"currency falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["currency"]}, +{"id":"17914","label":"covering a cooking pot with its cover","template":"Covering [something] with [something]","placeholders":["a cooking pot","its cover"]}, +{"id":"33241","label":"pretending to put sunscreen on a surface","template":"Pretending to put [something] on a surface","placeholders":["sunscreen"]}, +{"id":"136354","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"39356","label":"showing a photo of a popcorn to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a popcorn"]}, +{"id":"146642","label":"poking a stack of dice without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["dice"]}, +{"id":"19431","label":"removing mug, revealing crayon behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","crayon"]}, +{"id":"23541","label":"plugging a plug into plug socket","template":"Plugging [something] into [something]","placeholders":["a plug","plug socket"]}, +{"id":"92682","label":"covering a container with a lid","template":"Covering [something] with [something]","placeholders":["a container","a lid"]}, +{"id":"182222","label":"spinning quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["quarter"]}, +{"id":"107148","label":"pretending to put a battery on a surface","template":"Pretending to put [something] on a surface","placeholders":["a battery"]}, +{"id":"149208","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"31880","label":"moving book closer to light switch","template":"Moving [something] closer to [something]","placeholders":["book","light switch"]}, +{"id":"67044","label":"dropping wallet onto book","template":"Dropping [something] onto [something]","placeholders":["wallet","book"]}, +{"id":"162803","label":"hitting a bottle with a comb","template":"Hitting [something] with [something]","placeholders":["a bottle","a comb"]}, +{"id":"81991","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"173301","label":"tearing newspaper into two pieces","template":"Tearing [something] into two pieces","placeholders":["newspaper"]}, +{"id":"40471","label":"approaching water bottle with your camera","template":"Approaching [something] with your camera","placeholders":["water bottle"]}, +{"id":"157716","label":"pretending to scoop popcorn up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["popcorn","spoon"]}, +{"id":"148120","label":"tearing laminated paper mat just a little bit","template":"Tearing [something] just a little bit","placeholders":["laminated paper mat"]}, +{"id":"17198","label":"pushing remote with fork","template":"Pushing [something] with [something]","placeholders":["remote","fork"]}, +{"id":"91199","label":"moving duct tape and duct tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["duct tape","duct tape"]}, +{"id":"108163","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"167457","label":"putting spring onto wallet","template":"Putting [something] onto [something]","placeholders":["spring","wallet"]}, +{"id":"186569","label":"pretending or failing to wipe ink off of light switch","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","light switch"]}, +{"id":"125741","label":"pulling aim toothpaste from left to right","template":"Pulling [something] from left to right","placeholders":["aim toothpaste"]}, +{"id":"167918","label":"holding remote controller in front of laptop","template":"Holding [something] in front of [something]","placeholders":["remote controller","laptop"]}, +{"id":"47229","label":"stacking 4 children's books","template":"Stacking [number of] [something]","placeholders":["4","children's books"]}, +{"id":"215082","label":"pretending to open a bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bottle"]}, +{"id":"44824","label":"pushing a toy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toy"]}, +{"id":"2528","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"100049","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"154011","label":"putting a jbl onto chewing gums so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a jbl","chewing gums"]}, +{"id":"218064","label":"pouring water into steel glass","template":"Pouring [something] into [something]","placeholders":["water","steel glass"]}, +{"id":"94651","label":"pretending to poke jar","template":"Pretending to poke [something]","placeholders":["jar"]}, +{"id":"44822","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"147548","label":"moving medicine up","template":"Moving [something] up","placeholders":["medicine"]}, +{"id":"72770","label":"holding mouse next to keyboard","template":"Holding [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"185485","label":"tilting book with keys on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","keys"]}, +{"id":"126970","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"184282","label":"covering gear wheel with red pouch","template":"Covering [something] with [something]","placeholders":["gear wheel","red pouch"]}, +{"id":"21639","label":"moving spoon and fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["spoon","fork"]}, +{"id":"130777","label":"bending book so that it deforms","template":"Bending [something] so that it deforms","placeholders":["book"]}, +{"id":"83348","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"84600","label":"holding cards in front of paper","template":"Holding [something] in front of [something]","placeholders":["cards","paper"]}, +{"id":"26309","label":"showing flowers to the camera","template":"Showing [something] to the camera","placeholders":["flowers"]}, +{"id":"173805","label":"pretending to take a piece of cloth from a pouch","template":"Pretending to take [something] from [somewhere]","placeholders":["a piece of cloth","a pouch"]}, +{"id":"184904","label":"pushing stacking blocks so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["stacking blocks"]}, +{"id":"102659","label":"moving pink toothbrush case down","template":"Moving [something] down","placeholders":["pink toothbrush case"]}, +{"id":"146385","label":"holding a pen","template":"Holding [something]","placeholders":["a pen"]}, +{"id":"133969","label":"tilting dvd box with scotch tape on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["dvd box","scotch tape"]}, +{"id":"151821","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"18963","label":"picking coin up","template":"Picking [something] up","placeholders":["coin"]}, +{"id":"158112","label":"moving display of laptop","template":"Moving [part] of [something]","placeholders":["display","laptop"]}, +{"id":"124741","label":"showing that container is empty","template":"Showing that [something] is empty","placeholders":["container"]}, +{"id":"107539","label":"lifting a book up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a book"]}, +{"id":"61772","label":"tearing plastic-cover into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic-cover"]}, +{"id":"95949","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"168176","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"138772","label":"closing notebook","template":"Closing [something]","placeholders":["notebook"]}, +{"id":"188691","label":"wiping something off of something","template":"Wiping [something] off of [something]","placeholders":["something","something"]}, +{"id":"104364","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"48691","label":"taking buttons","template":"Taking [one of many similar things on the table]","placeholders":["buttons"]}, +{"id":"109151","label":"pushing a gallon of bleach so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a gallon of bleach"]}, +{"id":"115507","label":"tilting a teaspoon with a cutting board on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a teaspoon","a cutting board"]}, +{"id":"128053","label":"dropping a sandal behind a box","template":"Dropping [something] behind [something]","placeholders":["a sandal","a box"]}, +{"id":"180082","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"186864","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"203884","label":"poking deoderant so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["deoderant"]}, +{"id":"142226","label":"laying videotape on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["videotape"]}, +{"id":"202310","label":"pretending or trying and failing to twist a medicine bottle","template":"Pretending or trying and failing to twist [something]","placeholders":["a medicine bottle"]}, +{"id":"116507","label":"putting brush on a surface","template":"Putting [something] on a surface","placeholders":["brush"]}, +{"id":"48879","label":"attaching credit card to black box","template":"Attaching [something] to [something]","placeholders":["credit card","black box"]}, +{"id":"168268","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"99986","label":"pushing one tealight candle from right to left","template":"Pushing [something] from right to left","placeholders":["one tealight candle"]}, +{"id":"95507","label":"taking sponge out of mug","template":"Taking [something] out of [something]","placeholders":["sponge","mug"]}, +{"id":"127081","label":"moving stick up","template":"Moving [something] up","placeholders":["stick"]}, +{"id":"58717","label":"moving door of washing machine","template":"Moving [part] of [something]","placeholders":["door","washing machine"]}, +{"id":"169646","label":"dropping paper behind body","template":"Dropping [something] behind [something]","placeholders":["paper","body"]}, +{"id":"10070","label":"pushing an usb from right to left","template":"Pushing [something] from right to left","placeholders":["an usb"]}, +{"id":"132053","label":"removing a bag, revealing a hair brush behind","template":"Removing [something], revealing [something] behind","placeholders":["a bag","a hair brush"]}, +{"id":"209637","label":"turning metal box upside down","template":"Turning [something] upside down","placeholders":["metal box"]}, +{"id":"161288","label":"pulling a lead out of a plug","template":"Pulling [something] out of [something]","placeholders":["a lead","a plug"]}, +{"id":"17132","label":"pretending to throw a shoe","template":"Pretending to throw [something]","placeholders":["a shoe"]}, +{"id":"199341","label":"opening paint tube","template":"Opening [something]","placeholders":["paint tube"]}, +{"id":"70540","label":"throwing pick","template":"Throwing [something]","placeholders":["pick"]}, +{"id":"197866","label":"spilling water next to a salt shaker","template":"Spilling [something] next to [something]","placeholders":["water","a salt shaker"]}, +{"id":"7216","label":"putting three pin plug onto box","template":"Putting [something] onto [something]","placeholders":["three pin plug","box"]}, +{"id":"46385","label":"taking gum","template":"Taking [one of many similar things on the table]","placeholders":["gum"]}, +{"id":"20889","label":"putting cooler in front of glass","template":"Putting [something] in front of [something]","placeholders":["cooler","glass"]}, +{"id":"51590","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"46725","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"93983","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"132956","label":"tilting a book with a pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pen"]}, +{"id":"88829","label":"pretending to sprinkle air onto a figurine","template":"Pretending to sprinkle air onto [something]","placeholders":["a figurine"]}, +{"id":"74260","label":"lifting up one end of a paper without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a paper"]}, +{"id":"114145","label":"lifting bottle up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["bottle"]}, +{"id":"70608","label":"putting letter into envelope","template":"Putting [something] into [something]","placeholders":["letter","envelope"]}, +{"id":"129255","label":"laying plastic cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["plastic cup"]}, +{"id":"113920","label":"dropping bear behind chair","template":"Dropping [something] behind [something]","placeholders":["bear","chair"]}, +{"id":"140058","label":"dropping bottle behind dustbin","template":"Dropping [something] behind [something]","placeholders":["bottle","dustbin"]}, +{"id":"103410","label":"throwing lid in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["lid"]}, +{"id":"30588","label":"picking water bottle up","template":"Picking [something] up","placeholders":["water bottle"]}, +{"id":"72005","label":"tilting sheet of paper with salt on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["sheet of paper","salt"]}, +{"id":"9632","label":"turning snack cup upside down","template":"Turning [something] upside down","placeholders":["snack cup"]}, +{"id":"145219","label":"uncovering air conditioner and window from blinds","template":"Uncovering [something]","placeholders":["air conditioner and window from blinds"]}, +{"id":"127300","label":"wiping milk off of table","template":"Wiping [something] off of [something]","placeholders":["milk","table"]}, +{"id":"153493","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"117154","label":"attaching toothbrush to toothbrush handle","template":"Attaching [something] to [something]","placeholders":["toothbrush","toothbrush handle"]}, +{"id":"56419","label":"showing puppies to the camera","template":"Showing [something] to the camera","placeholders":["puppies"]}, +{"id":"40972","label":"a peace of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a peace of paper"]}, +{"id":"198125","label":"dropping black cloth into cookie box","template":"Dropping [something] into [something]","placeholders":["black cloth","cookie box"]}, +{"id":"148848","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"59360","label":"putting bottled ponzu sauce on a surface","template":"Putting [something] on a surface","placeholders":["bottled ponzu sauce"]}, +{"id":"154998","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"108360","label":"showing coconut shell behind the oil bottle","template":"Showing [something] behind [something]","placeholders":["coconut shell","the oil bottle"]}, +{"id":"98224","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"105459","label":"piling tomatoes up","template":"Piling [something] up","placeholders":["tomatoes"]}, +{"id":"129939","label":"putting notebook onto box","template":"Putting [something] onto [something]","placeholders":["notebook","box"]}, +{"id":"152678","label":"picking biscuit pack up","template":"Picking [something] up","placeholders":["biscuit pack"]}, +{"id":"171440","label":"taking paper from desk","template":"Taking [something] from [somewhere]","placeholders":["paper","desk"]}, +{"id":"170148","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"75832","label":"lifting up one end of book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["book"]}, +{"id":"216150","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"86783","label":"pretending to pick a remote control up","template":"Pretending to pick [something] up","placeholders":["a remote control"]}, +{"id":"173","label":"removing cup, revealing little cup behind","template":"Removing [something], revealing [something] behind","placeholders":["cup","little cup"]}, +{"id":"142710","label":"closing a door","template":"Closing [something]","placeholders":["a door"]}, +{"id":"177390","label":"taking sandal from floor","template":"Taking [something] from [somewhere]","placeholders":["sandal","floor"]}, +{"id":"180417","label":"pushing cap from right to left","template":"Pushing [something] from right to left","placeholders":["cap"]}, +{"id":"125525","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"146072","label":"digging ball out of ground","template":"Digging [something] out of [something]","placeholders":["ball","ground"]}, +{"id":"133190","label":"bending canela until it breaks","template":"Bending [something] until it breaks","placeholders":["canela"]}, +{"id":"115653","label":"letting dumbell roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["dumbell"]}, +{"id":"129845","label":"a car toy colliding with a car toy and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a car toy","a car toy"]}, +{"id":"4150","label":"moving cough drop closer to cough drop","template":"Moving [something] closer to [something]","placeholders":["cough drop","cough drop"]}, +{"id":"168946","label":"putting 4 pens onto a black file","template":"Putting [number of] [something] onto [something]","placeholders":["4","pens","a black file"]}, +{"id":"153198","label":"pushing remote control from left to right","template":"Pushing [something] from left to right","placeholders":["remote control"]}, +{"id":"15914","label":"picking a microphone up","template":"Picking [something] up","placeholders":["a microphone"]}, +{"id":"180895","label":"letting basketball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["basketball"]}, +{"id":"24959","label":"poking a hole into slime","template":"Poking a hole into [something soft]","placeholders":["slime"]}, +{"id":"22313","label":"tearing a leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["a leaf"]}, +{"id":"143787","label":"poking an apple so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["an apple"]}, +{"id":"85601","label":"putting a marker among other markers on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a marker among other markers on the table"]}, +{"id":"12584","label":"putting raw chicken meat into bowl","template":"Putting [something] into [something]","placeholders":["raw chicken meat","bowl"]}, +{"id":"39793","label":"pushing tumbler so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["tumbler"]}, +{"id":"118717","label":"holding cards behind paper","template":"Holding [something] behind [something]","placeholders":["cards","paper"]}, +{"id":"112614","label":"bending a fake flower so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a fake flower"]}, +{"id":"53979","label":"digging egg out of salt","template":"Digging [something] out of [something]","placeholders":["egg","salt"]}, +{"id":"122190","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"72519","label":"unfolding newspaper","template":"Unfolding [something]","placeholders":["newspaper"]}, +{"id":"20048","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"35951","label":"trimmer falling like a rock","template":"[Something] falling like a rock","placeholders":["trimmer"]}, +{"id":"44385","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209009","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"183094","label":"pretending to squeeze perfume","template":"Pretending to squeeze [something]","placeholders":["perfume"]}, +{"id":"197171","label":"folding a paper note","template":"Folding [something]","placeholders":["a paper note"]}, +{"id":"16359","label":"pretending to poke a cup","template":"Pretending to poke [something]","placeholders":["a cup"]}, +{"id":"138590","label":"twisting washing machine nob","template":"Twisting [something]","placeholders":["washing machine nob"]}, +{"id":"160183","label":"dropping a matchbox in front of a handkerchief","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a handkerchief"]}, +{"id":"191516","label":"pretending to squeeze a bottle","template":"Pretending to squeeze [something]","placeholders":["a bottle"]}, +{"id":"208727","label":"scissors colliding with a book and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["scissors","a book"]}, +{"id":"167036","label":"burying coin in flour","template":"Burying [something] in [something]","placeholders":["coin","flour"]}, +{"id":"132274","label":"dropping purse onto floor","template":"Dropping [something] onto [something]","placeholders":["purse","floor"]}, +{"id":"186560","label":"pushing candle from left to right","template":"Pushing [something] from left to right","placeholders":["candle"]}, +{"id":"205127","label":"moving banana down","template":"Moving [something] down","placeholders":["banana"]}, +{"id":"41075","label":"pushing something from right to left","template":"Pushing [something] from right to left","placeholders":["something"]}, +{"id":"141065","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"122659","label":"dropping a sponge into a plastic bowl","template":"Dropping [something] into [something]","placeholders":["a sponge","a plastic bowl"]}, +{"id":"85932","label":"pencil falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil"]}, +{"id":"149624","label":"putting ball next to airplane","template":"Putting [something] next to [something]","placeholders":["ball","airplane"]}, +{"id":"139571","label":"spinning toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toy"]}, +{"id":"202675","label":"pretending to take brush out of drawer","template":"Pretending to take [something] out of [something]","placeholders":["brush","drawer"]}, +{"id":"52276","label":"putting 3 plastic bags onto a box","template":"Putting [number of] [something] onto [something]","placeholders":["3","plastic bags","a box"]}, +{"id":"52698","label":"wiping marker off of a board","template":"Wiping [something] off of [something]","placeholders":["marker","a board"]}, +{"id":"50863","label":"pretending to take nail polish from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["nail polish","countertop"]}, +{"id":"197127","label":"putting fork onto napkin","template":"Putting [something] onto [something]","placeholders":["fork","napkin"]}, +{"id":"35637","label":"piling plates up","template":"Piling [something] up","placeholders":["plates"]}, +{"id":"74716","label":"holding box","template":"Holding [something]","placeholders":["box"]}, +{"id":"88623","label":"flannel falling like a rock","template":"[Something] falling like a rock","placeholders":["flannel"]}, +{"id":"106567","label":"turning kitchen roll upside down","template":"Turning [something] upside down","placeholders":["kitchen roll"]}, +{"id":"3362","label":"putting the bottle next to the bowl","template":"Putting [something] next to [something]","placeholders":["the bottle","the bowl"]}, +{"id":"136459","label":"tilting plate with cards on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","cards"]}, +{"id":"144502","label":"pretending or trying and failing to twist a mustard bottle cap","template":"Pretending or trying and failing to twist [something]","placeholders":["a mustard bottle cap"]}, +{"id":"43919","label":"pretending to poke bottle","template":"Pretending to poke [something]","placeholders":["bottle"]}, +{"id":"59046","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"72309","label":"turning the camera downwards while filming red watch box","template":"Turning the camera downwards while filming [something]","placeholders":["red watch box"]}, +{"id":"180295","label":"moving a ruler and masking tape away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a ruler","masking tape"]}, +{"id":"119434","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"218468","label":"pulling scissor from left to right","template":"Pulling [something] from left to right","placeholders":["scissor"]}, +{"id":"113071","label":"moving banana away from the camera","template":"Moving [something] away from the camera","placeholders":["banana"]}, +{"id":"112465","label":"pretending to squeeze a ceramic mug","template":"Pretending to squeeze [something]","placeholders":["a ceramic mug"]}, +{"id":"200108","label":"holding cushion over chair","template":"Holding [something] over [something]","placeholders":["cushion","chair"]}, +{"id":"3986","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"53557","label":"spinning hand fan that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["hand fan"]}, +{"id":"74976","label":"dropping cloth onto coaster","template":"Dropping [something] onto [something]","placeholders":["cloth","coaster"]}, +{"id":"70912","label":"tipping cup with water over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","water","water"]}, +{"id":"83971","label":"spinning deodorant that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["deodorant"]}, +{"id":"192731","label":"lifting plate with watermelon on it","template":"Lifting [something] with [something] on it","placeholders":["plate","watermelon"]}, +{"id":"120500","label":"spinning brush so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["brush"]}, +{"id":"185188","label":"uncovering a table tennis ball","template":"Uncovering [something]","placeholders":["a table tennis ball"]}, +{"id":"165202","label":"spilling water onto chair","template":"Spilling [something] onto [something]","placeholders":["water","chair"]}, +{"id":"119990","label":"putting roll of paper towels upright on the table","template":"Putting [something] upright on the table","placeholders":["roll of paper towels"]}, +{"id":"45688","label":"putting vessel onto mixer grinder","template":"Putting [something] onto [something]","placeholders":["vessel","mixer grinder"]}, +{"id":"131064","label":"covering books with bag","template":"Covering [something] with [something]","placeholders":["books","bag"]}, +{"id":"208718","label":"pulling headphones from right to left","template":"Pulling [something] from right to left","placeholders":["headphones"]}, +{"id":"89375","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"166394","label":"putting matchstick","template":"Putting [something similar to other things that are already on the table]","placeholders":["matchstick"]}, +{"id":"119685","label":"moving cup away from tv remote","template":"Moving [something] away from [something]","placeholders":["cup","tv remote"]}, +{"id":"30925","label":"poking cigarettes so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cigarettes"]}, +{"id":"120454","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"106705","label":"putting tubes into glass beaker","template":"Putting [something] into [something]","placeholders":["tubes","glass beaker"]}, +{"id":"135039","label":"pushing aim toothpaste from left to right","template":"Pushing [something] from left to right","placeholders":["aim toothpaste"]}, +{"id":"120787","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"67088","label":"pretending to pick eletronic calculator up","template":"Pretending to pick [something] up","placeholders":["eletronic calculator"]}, +{"id":"92076","label":"moving dry cells towards the camera","template":"Moving [something] towards the camera","placeholders":["dry cells"]}, +{"id":"124052","label":"throwing orange color ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["orange color ball"]}, +{"id":"204430","label":"pushing a roll of toilet paper onto a box","template":"Pushing [something] onto [something]","placeholders":["a roll of toilet paper","a box"]}, +{"id":"72066","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"5524","label":"marker pen falling like a rock","template":"[Something] falling like a rock","placeholders":["marker pen"]}, +{"id":"69496","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"91170","label":"pretending to take blinds from porch","template":"Pretending to take [something] from [somewhere]","placeholders":["blinds","porch"]}, +{"id":"77203","label":"plugging charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall outlet"]}, +{"id":"168603","label":"lifting wallet with eraser on it","template":"Lifting [something] with [something] on it","placeholders":["wallet","eraser"]}, +{"id":"117094","label":"wiping dust off of table","template":"Wiping [something] off of [something]","placeholders":["dust","table"]}, +{"id":"196391","label":"lifting up one end of spoon without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["spoon"]}, +{"id":"48582","label":"moving ball down","template":"Moving [something] down","placeholders":["ball"]}, +{"id":"206735","label":"removing bottle, revealing sharpener behind","template":"Removing [something], revealing [something] behind","placeholders":["bottle","sharpener"]}, +{"id":"167028","label":"lifting box with razor blade on it","template":"Lifting [something] with [something] on it","placeholders":["box","razor blade"]}, +{"id":"58090","label":"plugging ethernet cable into laptop","template":"Plugging [something] into [something]","placeholders":["ethernet cable","laptop"]}, +{"id":"159174","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"63798","label":"tilting plate with tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","tape"]}, +{"id":"41886","label":"showing kettle behind backpack","template":"Showing [something] behind [something]","placeholders":["kettle","backpack"]}, +{"id":"206264","label":"rolling water ballon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["water ballon"]}, +{"id":"20592","label":"putting a sweet next to the other sweets","template":"Putting [something similar to other things that are already on the table]","placeholders":["a sweet next to the other sweets"]}, +{"id":"155191","label":"holding candle","template":"Holding [something]","placeholders":["candle"]}, +{"id":"105884","label":"stuffing cardigan into bag","template":"Stuffing [something] into [something]","placeholders":["cardigan","bag"]}, +{"id":"182569","label":"holding fishing gear behind stereo","template":"Holding [something] behind [something]","placeholders":["fishing gear","stereo"]}, +{"id":"52424","label":"dropping a comb in front of a shoe brush","template":"Dropping [something] in front of [something]","placeholders":["a comb","a shoe brush"]}, +{"id":"111807","label":"holding stick","template":"Holding [something]","placeholders":["stick"]}, +{"id":"119087","label":"hitting a pet food bowl with a flipflop","template":"Hitting [something] with [something]","placeholders":["a pet food bowl","a flipflop"]}, +{"id":"128515","label":"uncovering a small container","template":"Uncovering [something]","placeholders":["a small container"]}, +{"id":"134241","label":"pretending to pick leaf up","template":"Pretending to pick [something] up","placeholders":["leaf"]}, +{"id":"175722","label":"holding lighter over foil ball","template":"Holding [something] over [something]","placeholders":["lighter","foil ball"]}, +{"id":"90824","label":"lifting a book with a cup on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a cup"]}, +{"id":"98663","label":"tilting placemat with paper on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["placemat","paper"]}, +{"id":"197005","label":"holding orange notebook","template":"Holding [something]","placeholders":["orange notebook"]}, +{"id":"1369","label":"moving a water bottle across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a water bottle"]}, +{"id":"176552","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"220724","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"212092","label":"turning the camera left while filming hair comb","template":"Turning the camera left while filming [something]","placeholders":["hair comb"]}, +{"id":"10812","label":"attaching head of pen to body of pen","template":"Attaching [something] to [something]","placeholders":["head of pen","body of pen"]}, +{"id":"35758","label":"folding blanket","template":"Folding [something]","placeholders":["blanket"]}, +{"id":"180205","label":"taking a pillow","template":"Taking [one of many similar things on the table]","placeholders":["a pillow"]}, +{"id":"16859","label":"throwing puzzle piece","template":"Throwing [something]","placeholders":["puzzle piece"]}, +{"id":"191949","label":"dropping keys behind bag","template":"Dropping [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"72263","label":"spilling water onto a polythene bag","template":"Spilling [something] onto [something]","placeholders":["water","a polythene bag"]}, +{"id":"213956","label":"dropping stapler next to pink hairclip","template":"Dropping [something] next to [something]","placeholders":["stapler","pink hairclip"]}, +{"id":"170676","label":"stacking 2 sets of coins","template":"Stacking [number of] [something]","placeholders":["2 sets of","coins"]}, +{"id":"44130","label":"showing duster behind battery","template":"Showing [something] behind [something]","placeholders":["duster","battery"]}, +{"id":"144928","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"188634","label":"moving coconut towards the camera","template":"Moving [something] towards the camera","placeholders":["coconut"]}, +{"id":"150744","label":"turning the camera downwards while filming black remote","template":"Turning the camera downwards while filming [something]","placeholders":["black remote"]}, +{"id":"139784","label":"hitting spoon with fork","template":"Hitting [something] with [something]","placeholders":["spoon","fork"]}, +{"id":"81322","label":"pushing a textsurfer from left to right","template":"Pushing [something] from left to right","placeholders":["a textsurfer"]}, +{"id":"1152","label":"turning the camera left while filming the wall","template":"Turning the camera left while filming [something]","placeholders":["the wall"]}, +{"id":"44378","label":"pretending to squeeze book","template":"Pretending to squeeze [something]","placeholders":["book"]}, +{"id":"156929","label":"taking one plastic cover of many similar plastic covers on the table","template":"Taking [one of many similar things on the table]","placeholders":["one plastic cover of many similar plastic covers on the table"]}, +{"id":"119223","label":"putting paper roll upright on the table","template":"Putting [something] upright on the table","placeholders":["paper roll"]}, +{"id":"208363","label":"spilling coffee onto coffee table","template":"Spilling [something] onto [something]","placeholders":["coffee","coffee table"]}, +{"id":"136579","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"55300","label":"pushing plate from right to left","template":"Pushing [something] from right to left","placeholders":["plate"]}, +{"id":"19116","label":"tilting plate with bread on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","bread"]}, +{"id":"213541","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"77709","label":"turning notebook upside down","template":"Turning [something] upside down","placeholders":["notebook"]}, +{"id":"213228","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"77606","label":"pushing dvd case from left to right","template":"Pushing [something] from left to right","placeholders":["dvd case"]}, +{"id":"111708","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"135254","label":"putting clothes peg into mug","template":"Putting [something] into [something]","placeholders":["clothes peg","mug"]}, +{"id":"118193","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"69206","label":"taking twine out of vase","template":"Taking [something] out of [something]","placeholders":["twine","vase"]}, +{"id":"138392","label":"turning paint bottle upside down","template":"Turning [something] upside down","placeholders":["paint bottle"]}, +{"id":"12911","label":"holding plastic cup","template":"Holding [something]","placeholders":["plastic cup"]}, +{"id":"164587","label":"moving ball and ball so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["ball","ball"]}, +{"id":"139077","label":"tilting dvd box with scotch tape on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["dvd box","scotch tape"]}, +{"id":"115139","label":"letting tube roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["tube"]}, +{"id":"135917","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"112340","label":"putting pencil underneath table","template":"Putting [something] underneath [something]","placeholders":["pencil","table"]}, +{"id":"82514","label":"spreading butter onto toast","template":"Spreading [something] onto [something]","placeholders":["butter","toast"]}, +{"id":"112542","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"55963","label":"holding bottle in front of glass desk","template":"Holding [something] in front of [something]","placeholders":["bottle","glass desk"]}, +{"id":"58696","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"65790","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"213545","label":"moving bus and box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bus","box"]}, +{"id":"168262","label":"putting a small bear next to a large bear","template":"Putting [something] next to [something]","placeholders":["a small bear","a large bear"]}, +{"id":"209459","label":"pushing pushing plastic spay so that it almost falls off but doesn't so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pushing plastic spay so that it almost falls off but doesn't"]}, +{"id":"116945","label":"covering cow with pillow","template":"Covering [something] with [something]","placeholders":["cow","pillow"]}, +{"id":"149395","label":"putting glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass"]}, +{"id":"175228","label":"lifting a tape with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["a tape","scissors"]}, +{"id":"206947","label":"uncovering bed","template":"Uncovering [something]","placeholders":["bed"]}, +{"id":"73559","label":"pretending to take chager out of outlet","template":"Pretending to take [something] out of [something]","placeholders":["chager","outlet"]}, +{"id":"187799","label":"moving usb closer to usb cable","template":"Moving [something] closer to [something]","placeholders":["usb","usb cable"]}, +{"id":"60712","label":"pretending to take black cloth out of green cup","template":"Pretending to take [something] out of [something]","placeholders":["black cloth","green cup"]}, +{"id":"36529","label":"taking orange of many similar","template":"Taking [one of many similar things on the table]","placeholders":["orange of many similar"]}, +{"id":"217557","label":"pulling a pen from left to right","template":"Pulling [something] from left to right","placeholders":["a pen"]}, +{"id":"101365","label":"twisting a cap","template":"Twisting [something]","placeholders":["a cap"]}, +{"id":"117328","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78916","label":"pushing smartphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["smartphone"]}, +{"id":"19383","label":"pretending to spread air onto an arm","template":"Pretending to spread air onto [something]","placeholders":["an arm"]}, +{"id":"29999","label":"pushing glasses from left to right","template":"Pushing [something] from left to right","placeholders":["glasses"]}, +{"id":"197762","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"18435","label":"pretending to take coin from box","template":"Pretending to take [something] from [somewhere]","placeholders":["coin","box"]}, +{"id":"172583","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"168233","label":"holding a nail next to the glass","template":"Holding [something] next to [something]","placeholders":["a nail","the glass"]}, +{"id":"160457","label":"pushing a purple pen so it spins","template":"Pushing [something] so it spins","placeholders":["a purple pen"]}, +{"id":"121671","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"190494","label":"dropping a clothes hanger behind a basket","template":"Dropping [something] behind [something]","placeholders":["a clothes hanger","a basket"]}, +{"id":"210975","label":"touching (without moving) the hand of a doll","template":"Touching (without moving) [part] of [something]","placeholders":["the hand","a doll"]}, +{"id":"152209","label":"pushing book from left to right","template":"Pushing [something] from left to right","placeholders":["book"]}, +{"id":"29667","label":"a ticket falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a ticket"]}, +{"id":"186123","label":"pushing sunglasses with bottle","template":"Pushing [something] with [something]","placeholders":["sunglasses","bottle"]}, +{"id":"138821","label":"trying to bend tablet so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["tablet"]}, +{"id":"160477","label":"sprinkling water onto plant","template":"Sprinkling [something] onto [something]","placeholders":["water","plant"]}, +{"id":"54893","label":"pulling apple from left to right","template":"Pulling [something] from left to right","placeholders":["apple"]}, +{"id":"24879","label":"pushing small sunscreen lotion from right to left","template":"Pushing [something] from right to left","placeholders":["small sunscreen lotion"]}, +{"id":"110655","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"209566","label":"spilling water next to a fork","template":"Spilling [something] next to [something]","placeholders":["water","a fork"]}, +{"id":"68946","label":"stuffing playdoh into its container","template":"Stuffing [something] into [something]","placeholders":["playdoh","its container"]}, +{"id":"71563","label":"pushing orange bowl from left to right","template":"Pushing [something] from left to right","placeholders":["orange bowl"]}, +{"id":"17103","label":"bending cup so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cup"]}, +{"id":"130178","label":"pulling jar from right to left","template":"Pulling [something] from right to left","placeholders":["jar"]}, +{"id":"40302","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"22114","label":"putting plate","template":"Putting [something similar to other things that are already on the table]","placeholders":["plate"]}, +{"id":"182852","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"149937","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"152168","label":"spinning cantaloupe so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cantaloupe"]}, +{"id":"137056","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"134687","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"216143","label":"putting big bottle in front of small bottle","template":"Putting [something] in front of [something]","placeholders":["big bottle","small bottle"]}, +{"id":"179150","label":"pretending to take bottle out of bowl","template":"Pretending to take [something] out of [something]","placeholders":["bottle","bowl"]}, +{"id":"111536","label":"attaching lid to container","template":"Attaching [something] to [something]","placeholders":["lid","container"]}, +{"id":"139019","label":"pulling torch from right to left","template":"Pulling [something] from right to left","placeholders":["torch"]}, +{"id":"184666","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"161732","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"15877","label":"spinning a light bulb so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a light bulb"]}, +{"id":"135024","label":"approaching a window with your camera","template":"Approaching [something] with your camera","placeholders":["a window"]}, +{"id":"60687","label":"trying but failing to attach a wallet to a picture because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a wallet","a picture"]}, +{"id":"55380","label":"moving one leg of the doll","template":"Moving [part] of [something]","placeholders":["one leg","the doll"]}, +{"id":"29316","label":"pushing gift box with purse","template":"Pushing [something] with [something]","placeholders":["gift box","purse"]}, +{"id":"23536","label":"plugging air freshener into socket","template":"Plugging [something] into [something]","placeholders":["air freshener","socket"]}, +{"id":"169687","label":"putting knife into mug","template":"Putting [something] into [something]","placeholders":["knife","mug"]}, +{"id":"197143","label":"taking ball point pen","template":"Taking [one of many similar things on the table]","placeholders":["ball point pen"]}, +{"id":"33250","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"26708","label":"trying to bend spanner so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["spanner"]}, +{"id":"207205","label":"pretending to pick a child's toy up","template":"Pretending to pick [something] up","placeholders":["a child's toy"]}, +{"id":"60656","label":"moving cable down","template":"Moving [something] down","placeholders":["cable"]}, +{"id":"122253","label":"holding soldering wire reel over black plastic box","template":"Holding [something] over [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"60129","label":"tipping blocks over","template":"Tipping [something] over","placeholders":["blocks"]}, +{"id":"132850","label":"trying to pour water into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","cup"]}, +{"id":"104025","label":"turning the camera upwards while filming iron","template":"Turning the camera upwards while filming [something]","placeholders":["iron"]}, +{"id":"111120","label":"laying a battery on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a battery"]}, +{"id":"3020","label":"turning duster upside down","template":"Turning [something] upside down","placeholders":["duster"]}, +{"id":"174759","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"83526","label":"rolling toy on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["toy"]}, +{"id":"186714","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"93897","label":"pushing flower so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["flower"]}, +{"id":"214066","label":"turning the camera left while filming motorbike","template":"Turning the camera left while filming [something]","placeholders":["motorbike"]}, +{"id":"4804","label":"pushing red marker pen off of blue marker pen","template":"Pushing [something] off of [something]","placeholders":["red marker pen","blue marker pen"]}, +{"id":"159909","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"91009","label":"pushing knife from left to right","template":"Pushing [something] from left to right","placeholders":["knife"]}, +{"id":"63323","label":"holding bootle next to screen","template":"Holding [something] next to [something]","placeholders":["bootle","screen"]}, +{"id":"33831","label":"putting pen and spool of thread on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","spool of thread"]}, +{"id":"14097","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"104073","label":"dropping a wallet onto the floor","template":"Dropping [something] onto [something]","placeholders":["a wallet","the floor"]}, +{"id":"31366","label":"pretending to sprinkle air onto card","template":"Pretending to sprinkle air onto [something]","placeholders":["card"]}, +{"id":"78358","label":"holding candle in front of picture","template":"Holding [something] in front of [something]","placeholders":["candle","picture"]}, +{"id":"195051","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"50872","label":"sprinkling powdered sugar onto a jar","template":"Sprinkling [something] onto [something]","placeholders":["powdered sugar","a jar"]}, +{"id":"152479","label":"pulling beaker onto phone","template":"Pulling [something] onto [something]","placeholders":["beaker","phone"]}, +{"id":"73531","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"138814","label":"pretending to put something next to something","template":"Pretending to put [something] next to [something]","placeholders":["something","something"]}, +{"id":"77221","label":"putting glasses upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["glasses"]}, +{"id":"169351","label":"paper boat falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper boat"]}, +{"id":"162351","label":"showing watches to the camera","template":"Showing [something] to the camera","placeholders":["watches"]}, +{"id":"83168","label":"putting a tomato","template":"Putting [something similar to other things that are already on the table]","placeholders":["a tomato"]}, +{"id":"121681","label":"holding hole puncher over playstation controller","template":"Holding [something] over [something]","placeholders":["hole puncher","playstation controller"]}, +{"id":"5294","label":"moving opener of water tap","template":"Moving [part] of [something]","placeholders":["opener","water tap"]}, +{"id":"122810","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"201597","label":"pretending to take cup from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cup","table"]}, +{"id":"78056","label":"putting pizza cutter","template":"Putting [something similar to other things that are already on the table]","placeholders":["pizza cutter"]}, +{"id":"172666","label":"putting mug in front of knife","template":"Putting [something] in front of [something]","placeholders":["mug","knife"]}, +{"id":"77125","label":"moving a cushion across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cushion"]}, +{"id":"135034","label":"letting a plush ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a plush ball"]}, +{"id":"131374","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"109443","label":"taking peanut butter jar from cabinet","template":"Taking [something] from [somewhere]","placeholders":["peanut butter jar","cabinet"]}, +{"id":"172769","label":"holding chapstick over cup","template":"Holding [something] over [something]","placeholders":["chapstick","cup"]}, +{"id":"205120","label":"lifting blue colour glasses up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["blue colour glasses"]}, +{"id":"99271","label":"spilling water onto concrete","template":"Spilling [something] onto [something]","placeholders":["water","concrete"]}, +{"id":"9119","label":"pushing powerbank so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["powerbank"]}, +{"id":"160495","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"15657","label":"uncovering usb","template":"Uncovering [something]","placeholders":["usb"]}, +{"id":"186607","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"104478","label":"holding cap in front of water bottle","template":"Holding [something] in front of [something]","placeholders":["cap","water bottle"]}, +{"id":"177671","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"137138","label":"poking waterbottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["waterbottle"]}, +{"id":"149534","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"107036","label":"putting memory card reader and memory card on the table","template":"Putting [something] and [something] on the table","placeholders":["memory card reader","memory card"]}, +{"id":"94632","label":"pulling black hairclip from left to right","template":"Pulling [something] from left to right","placeholders":["black hairclip"]}, +{"id":"174453","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"214827","label":"failing to put a book into a shoe because the book does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a book","a shoe","the book"]}, +{"id":"51607","label":"spilling blocks onto floor","template":"Spilling [something] onto [something]","placeholders":["blocks","floor"]}, +{"id":"77531","label":"plugging headphone into cellphone","template":"Plugging [something] into [something]","placeholders":["headphone","cellphone"]}, +{"id":"37029","label":"taking lighter","template":"Taking [one of many similar things on the table]","placeholders":["lighter"]}, +{"id":"5705","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"69854","label":"putting plastic screwcap into mug","template":"Putting [something] into [something]","placeholders":["plastic screwcap","mug"]}, +{"id":"98419","label":"unfolding handkerchief","template":"Unfolding [something]","placeholders":["handkerchief"]}, +{"id":"122060","label":"putting a shoulder bag onto a globe which cant support it so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a shoulder bag","a globe which cant support it"]}, +{"id":"142936","label":"lifting cell phone with water bottle on it","template":"Lifting [something] with [something] on it","placeholders":["cell phone","water bottle"]}, +{"id":"154128","label":"turning the camera left while filming phone case","template":"Turning the camera left while filming [something]","placeholders":["phone case"]}, +{"id":"203286","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"130446","label":"taking leaves out of tree","template":"Taking [something] out of [something]","placeholders":["leaves","tree"]}, +{"id":"8713","label":"plugging light into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["light","socket"]}, +{"id":"153630","label":"squeezing kerchief","template":"Squeezing [something]","placeholders":["kerchief"]}, +{"id":"29583","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"114907","label":"twisting (wringing) face cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["face cloth"]}, +{"id":"122534","label":"taking a screwdriver","template":"Taking [one of many similar things on the table]","placeholders":["a screwdriver"]}, +{"id":"178054","label":"pulling jacket from right to left","template":"Pulling [something] from right to left","placeholders":["jacket"]}, +{"id":"88039","label":"wiping orange juice off of counter","template":"Wiping [something] off of [something]","placeholders":["orange juice","counter"]}, +{"id":"122161","label":"a dollar bill falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a dollar bill"]}, +{"id":"93560","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"26289","label":"moving wallet and knife closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wallet","knife"]}, +{"id":"42581","label":"pushing torch with dvd case","template":"Pushing [something] with [something]","placeholders":["torch","dvd case"]}, +{"id":"189936","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"190899","label":"putting a pencil on a surface","template":"Putting [something] on a surface","placeholders":["a pencil"]}, +{"id":"198683","label":"pushing pink box from right to left","template":"Pushing [something] from right to left","placeholders":["pink box"]}, +{"id":"191438","label":"lifting up one end of charger, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["charger"]}, +{"id":"216777","label":"holding ink over hand","template":"Holding [something] over [something]","placeholders":["ink","hand"]}, +{"id":"209406","label":"poking glass so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["glass"]}, +{"id":"148002","label":"pretending to squeeze oven mitt","template":"Pretending to squeeze [something]","placeholders":["oven mitt"]}, +{"id":"165513","label":"showing a money box behind a bag","template":"Showing [something] behind [something]","placeholders":["a money box","a bag"]}, +{"id":"121290","label":"picking tape measure up","template":"Picking [something] up","placeholders":["tape measure"]}, +{"id":"70655","label":"holding controller over headset","template":"Holding [something] over [something]","placeholders":["controller","headset"]}, +{"id":"172087","label":"taking hairband from table","template":"Taking [something] from [somewhere]","placeholders":["hairband","table"]}, +{"id":"102830","label":"tipping hand soap over","template":"Tipping [something] over","placeholders":["hand soap"]}, +{"id":"192399","label":"putting pen on the edge of glass so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["pen","glass"]}, +{"id":"60988","label":"pushing calculator with a bottle","template":"Pushing [something] with [something]","placeholders":["calculator","a bottle"]}, +{"id":"202588","label":"putting ruler on a surface","template":"Putting [something] on a surface","placeholders":["ruler"]}, +{"id":"123956","label":"turning the camera downwards while filming toy idol","template":"Turning the camera downwards while filming [something]","placeholders":["toy idol"]}, +{"id":"21338","label":"plugging charger into the wall","template":"Plugging [something] into [something]","placeholders":["charger","the wall"]}, +{"id":"87627","label":"poking curtain so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["curtain"]}, +{"id":"177974","label":"moving mobile and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mobile","remote"]}, +{"id":"212414","label":"pouring water into bucket until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","bucket"]}, +{"id":"24406","label":"holding gourd","template":"Holding [something]","placeholders":["gourd"]}, +{"id":"114562","label":"moving a cup closer to a book","template":"Moving [something] closer to [something]","placeholders":["a cup","a book"]}, +{"id":"13902","label":"turning the camera upwards while filming soft drink","template":"Turning the camera upwards while filming [something]","placeholders":["soft drink"]}, +{"id":"7244","label":"pretending or failing to wipe ink dot off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink dot","whiteboard"]}, +{"id":"112743","label":"twisting toys","template":"Twisting [something]","placeholders":["toys"]}, +{"id":"204602","label":"dropping cellphone behind book","template":"Dropping [something] behind [something]","placeholders":["cellphone","book"]}, +{"id":"192223","label":"moving ball and glass sheaker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["ball","glass sheaker"]}, +{"id":"6108","label":"squeezing purple balloon pump","template":"Squeezing [something]","placeholders":["purple balloon pump"]}, +{"id":"213324","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"45161","label":"moving book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["book"]}, +{"id":"215032","label":"covering the ball with a towel","template":"Covering [something] with [something]","placeholders":["the ball","a towel"]}, +{"id":"41299","label":"pretending to open glass jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["glass jar"]}, +{"id":"139586","label":"putting knife behind mug","template":"Putting [something] behind [something]","placeholders":["knife","mug"]}, +{"id":"34302","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"156112","label":"showing that measuring cup is empty","template":"Showing that [something] is empty","placeholders":["measuring cup"]}, +{"id":"48295","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"5465","label":"moving led of thermos","template":"Moving [part] of [something]","placeholders":["led","thermos"]}, +{"id":"26587","label":"pushing glasses from right to left","template":"Pushing [something] from right to left","placeholders":["glasses"]}, +{"id":"191023","label":"putting usb cable into laptop","template":"Putting [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"103575","label":"holding blue lighter","template":"Holding [something]","placeholders":["blue lighter"]}, +{"id":"213594","label":"covering headphones with a towel","template":"Covering [something] with [something]","placeholders":["headphones","a towel"]}, +{"id":"182632","label":"putting a toothpick upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a toothpick"]}, +{"id":"106342","label":"stacking 2 board clips","template":"Stacking [number of] [something]","placeholders":["2","board clips"]}, +{"id":"30918","label":"picking tote bag up","template":"Picking [something] up","placeholders":["tote bag"]}, +{"id":"122497","label":"twisting a top off a drink","template":"Twisting [something]","placeholders":["a top off a drink"]}, +{"id":"212046","label":"dropping a card next to a plate","template":"Dropping [something] next to [something]","placeholders":["a card","a plate"]}, +{"id":"217723","label":"holding water bottle","template":"Holding [something]","placeholders":["water bottle"]}, +{"id":"163305","label":"picking a shoe up","template":"Picking [something] up","placeholders":["a shoe"]}, +{"id":"145268","label":"putting bowl on a surface","template":"Putting [something] on a surface","placeholders":["bowl"]}, +{"id":"26072","label":"holding pouch behind lamp","template":"Holding [something] behind [something]","placeholders":["pouch","lamp"]}, +{"id":"62021","label":"pretending to poke a book","template":"Pretending to poke [something]","placeholders":["a book"]}, +{"id":"205521","label":"putting battery onto rubix cube","template":"Putting [something] onto [something]","placeholders":["battery","rubix cube"]}, +{"id":"4377","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"94528","label":"turning the camera left while filming red booklet","template":"Turning the camera left while filming [something]","placeholders":["red booklet"]}, +{"id":"27664","label":"plugging charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall outlet"]}, +{"id":"144486","label":"squeezing tennis ball","template":"Squeezing [something]","placeholders":["tennis ball"]}, +{"id":"178765","label":"tipping something over","template":"Tipping [something] over","placeholders":["something"]}, +{"id":"5186","label":"moving away from bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["bottle"]}, +{"id":"19335","label":"showing mouse next to laptop","template":"Showing [something] next to [something]","placeholders":["mouse","laptop"]}, +{"id":"92574","label":"pouring water out of a jar","template":"Pouring [something] out of [something]","placeholders":["water","a jar"]}, +{"id":"39009","label":"hitting lamp with finger","template":"Hitting [something] with [something]","placeholders":["lamp","finger"]}, +{"id":"163669","label":"spinning a toy that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a toy"]}, +{"id":"131779","label":"unfolding a wash cloth","template":"Unfolding [something]","placeholders":["a wash cloth"]}, +{"id":"12095","label":"closing cabinet","template":"Closing [something]","placeholders":["cabinet"]}, +{"id":"204548","label":"covering stapler with red pouch","template":"Covering [something] with [something]","placeholders":["stapler","red pouch"]}, +{"id":"191320","label":"pulling clementine from behind of gift bag","template":"Pulling [something] from behind of [something]","placeholders":["clementine","gift bag"]}, +{"id":"117720","label":"tilting book with bat on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","bat"]}, +{"id":"63816","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"149000","label":"moving pc mouse closer to scissors","template":"Moving [something] closer to [something]","placeholders":["pc mouse","scissors"]}, +{"id":"16293","label":"plugging charger into mobile but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","mobile"]}, +{"id":"13939","label":"putting globe and unicorn on the table","template":"Putting [something] and [something] on the table","placeholders":["globe","unicorn"]}, +{"id":"197275","label":"showing a photo of a dog to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a dog"]}, +{"id":"506","label":"pretending to spread air onto paper","template":"Pretending to spread air onto [something]","placeholders":["paper"]}, +{"id":"107267","label":"spinning a key chain so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a key chain"]}, +{"id":"58579","label":"moving pick and usb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pick","usb"]}, +{"id":"102432","label":"pretending to take paper from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["paper","bed"]}, +{"id":"173824","label":"moving scissors away from a sieve","template":"Moving [something] away from [something]","placeholders":["scissors","a sieve"]}, +{"id":"75821","label":"taking coin","template":"Taking [one of many similar things on the table]","placeholders":["coin"]}, +{"id":"167705","label":"moving envelope across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["envelope"]}, +{"id":"210365","label":"covering a shoe with a hand","template":"Covering [something] with [something]","placeholders":["a shoe","a hand"]}, +{"id":"134457","label":"uncovering pencil","template":"Uncovering [something]","placeholders":["pencil"]}, +{"id":"97930","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"121246","label":"pushing something so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["something"]}, +{"id":"134626","label":"moving a cup away from a bottle","template":"Moving [something] away from [something]","placeholders":["a cup","a bottle"]}, +{"id":"60521","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"52047","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"34095","label":"picking teddy bear up","template":"Picking [something] up","placeholders":["teddy bear"]}, +{"id":"100115","label":"tilting comic book with paperclip dispenser on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["comic book","paperclip dispenser"]}, +{"id":"194852","label":"pulling marker onto santa hat","template":"Pulling [something] onto [something]","placeholders":["marker","santa hat"]}, +{"id":"37956","label":"lifting glasses with paper on it","template":"Lifting [something] with [something] on it","placeholders":["glasses","paper"]}, +{"id":"188086","label":"taking one of many similar","template":"Taking [one of many similar things on the table]","placeholders":["one of many similar"]}, +{"id":"142969","label":"moving nail polish away from the camera","template":"Moving [something] away from the camera","placeholders":["nail polish"]}, +{"id":"186642","label":"unfolding shirt","template":"Unfolding [something]","placeholders":["shirt"]}, +{"id":"155756","label":"moving lighter down","template":"Moving [something] down","placeholders":["lighter"]}, +{"id":"153893","label":"squeezing yellow ball","template":"Squeezing [something]","placeholders":["yellow ball"]}, +{"id":"115473","label":"throwing \\\"pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["\\\"pencil"]}, +{"id":"146395","label":"spilling water onto sink","template":"Spilling [something] onto [something]","placeholders":["water","sink"]}, +{"id":"125998","label":"pretending to pick a tablet pen up","template":"Pretending to pick [something] up","placeholders":["a tablet pen"]}, +{"id":"133166","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"104764","label":"pouring water onto bottle","template":"Pouring [something] onto [something]","placeholders":["water","bottle"]}, +{"id":"163103","label":"pushing casual hat from left to right","template":"Pushing [something] from left to right","placeholders":["casual hat"]}, +{"id":"31361","label":"piling cd's up","template":"Piling [something] up","placeholders":["cd's"]}, +{"id":"36772","label":"dropping rubix cube in front of a pillow","template":"Dropping [something] in front of [something]","placeholders":["rubix cube","a pillow"]}, +{"id":"11863","label":"tilting pen with screwdriver on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["pen","screwdriver"]}, +{"id":"127490","label":"pretending to poke mug","template":"Pretending to poke [something]","placeholders":["mug"]}, +{"id":"94505","label":"twisting the towel","template":"Twisting [something]","placeholders":["the towel"]}, +{"id":"145907","label":"taking a bracelet out of a jewelry box","template":"Taking [something] out of [something]","placeholders":["a bracelet","a jewelry box"]}, +{"id":"23892","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"76833","label":"moving pan across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pan"]}, +{"id":"153783","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"101018","label":"taking candles","template":"Taking [one of many similar things on the table]","placeholders":["candles"]}, +{"id":"132411","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"111472","label":"moving a candle up","template":"Moving [something] up","placeholders":["a candle"]}, +{"id":"99350","label":"dropping cow into box","template":"Dropping [something] into [something]","placeholders":["cow","box"]}, +{"id":"216563","label":"squeezing an orange","template":"Squeezing [something]","placeholders":["an orange"]}, +{"id":"12152","label":"turning a nailpolish bottle upside down","template":"Turning [something] upside down","placeholders":["a nailpolish bottle"]}, +{"id":"156254","label":"pouring water out of bowl","template":"Pouring [something] out of [something]","placeholders":["water","bowl"]}, +{"id":"10914","label":"moving candle-bottle and candle-bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["candle-bottle","candle-bottle"]}, +{"id":"153664","label":"trying to bend a light bulb so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a light bulb"]}, +{"id":"155132","label":"moving battery and battery closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["battery","battery"]}, +{"id":"188158","label":"bending a strip of paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a strip of paper"]}, +{"id":"15636","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"156616","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"43591","label":"laying a book on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a book"]}, +{"id":"181564","label":"covering a teddy with a blanket","template":"Covering [something] with [something]","placeholders":["a teddy","a blanket"]}, +{"id":"69266","label":"showing seeds packets to the camera","template":"Showing [something] to the camera","placeholders":["seeds packets"]}, +{"id":"204892","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"29133","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"185615","label":"showing phone on top of pillow","template":"Showing [something] on top of [something]","placeholders":["phone","pillow"]}, +{"id":"121011","label":"pushing key with pencil","template":"Pushing [something] with [something]","placeholders":["key","pencil"]}, +{"id":"98735","label":"moving little spray of container box","template":"Moving [part] of [something]","placeholders":["little spray","container box"]}, +{"id":"193623","label":"pushing talcum powder so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["talcum powder"]}, +{"id":"87855","label":"covering key with paper","template":"Covering [something] with [something]","placeholders":["key","paper"]}, +{"id":"15047","label":"holding cup behind chair","template":"Holding [something] behind [something]","placeholders":["cup","chair"]}, +{"id":"96703","label":"pretending to poke package","template":"Pretending to poke [something]","placeholders":["package"]}, +{"id":"156905","label":"pushing thread from right to left","template":"Pushing [something] from right to left","placeholders":["thread"]}, +{"id":"74683","label":"approaching t shirts with your camera","template":"Approaching [something] with your camera","placeholders":["t shirts"]}, +{"id":"92799","label":"tearing printer paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["printer paper"]}, +{"id":"41869","label":"tearing receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["receipt"]}, +{"id":"136303","label":"pretending to squeeze a wooden toy","template":"Pretending to squeeze [something]","placeholders":["a wooden toy"]}, +{"id":"127983","label":"dropping wallet next to magnifying glass","template":"Dropping [something] next to [something]","placeholders":["wallet","magnifying glass"]}, +{"id":"181110","label":"tilting brown covered note with spectacle on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["brown covered note","spectacle"]}, +{"id":"172962","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"26041","label":"holding a box cutter","template":"Holding [something]","placeholders":["a box cutter"]}, +{"id":"33400","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"44412","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"171824","label":"pushing a glue with a bottle","template":"Pushing [something] with [something]","placeholders":["a glue","a bottle"]}, +{"id":"189615","label":"pulling a matchbox from behind of a box","template":"Pulling [something] from behind of [something]","placeholders":["a matchbox","a box"]}, +{"id":"115190","label":"stuffing bottle into box","template":"Stuffing [something] into [something]","placeholders":["bottle","box"]}, +{"id":"120423","label":"turning a water container upside down","template":"Turning [something] upside down","placeholders":["a water container"]}, +{"id":"132485","label":"pushing a chair with the arms","template":"Pushing [something] with [something]","placeholders":["a chair","the arms"]}, +{"id":"77814","label":"touching (without moving) sensor of lamp","template":"Touching (without moving) [part] of [something]","placeholders":["sensor","lamp"]}, +{"id":"173252","label":"showing that fish flakes is inside jar","template":"Showing that [something] is inside [something]","placeholders":["fish flakes","jar"]}, +{"id":"217964","label":"piling laundry up","template":"Piling [something] up","placeholders":["laundry"]}, +{"id":"63425","label":"dropping a container onto a box","template":"Dropping [something] onto [something]","placeholders":["a container","a box"]}, +{"id":"87011","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"13017","label":"tearing the paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["the paper"]}, +{"id":"30245","label":"pushing bag so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bag"]}, +{"id":"96964","label":"lifting envelope up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["envelope"]}, +{"id":"42173","label":"pretending to be tearing measuring tape","template":"Pretending to be tearing [something that is not tearable]","placeholders":["measuring tape"]}, +{"id":"200057","label":"taking cap","template":"Taking [one of many similar things on the table]","placeholders":["cap"]}, +{"id":"120796","label":"pretending to scoop fruit loops up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["fruit loops","spoon"]}, +{"id":"150347","label":"stuffing tissue into box","template":"Stuffing [something] into [something]","placeholders":["tissue","box"]}, +{"id":"115710","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"199138","label":"putting plastic comb next to mug","template":"Putting [something] next to [something]","placeholders":["plastic comb","mug"]}, +{"id":"114553","label":"putting sponge into mug","template":"Putting [something] into [something]","placeholders":["sponge","mug"]}, +{"id":"126821","label":"letting paper towel roll roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["paper towel roll"]}, +{"id":"67788","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"88218","label":"touching (without moving) back camera of smartphone","template":"Touching (without moving) [part] of [something]","placeholders":["back camera","smartphone"]}, +{"id":"115613","label":"closing window","template":"Closing [something]","placeholders":["window"]}, +{"id":"171838","label":"tilting paperboard with deodorant on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paperboard","deodorant"]}, +{"id":"96298","label":"moving key closer to comb","template":"Moving [something] closer to [something]","placeholders":["key","comb"]}, +{"id":"157432","label":"lifting a cup with a card on it","template":"Lifting [something] with [something] on it","placeholders":["a cup","a card"]}, +{"id":"14550","label":"pretending to pick toy idol up","template":"Pretending to pick [something] up","placeholders":["toy idol"]}, +{"id":"212349","label":"taking spoon from plate","template":"Taking [something] from [somewhere]","placeholders":["spoon","plate"]}, +{"id":"155286","label":"throwing shoes onto a surface","template":"Throwing [something] onto a surface","placeholders":["shoes"]}, +{"id":"83573","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"160945","label":"covering popcorn with lid","template":"Covering [something] with [something]","placeholders":["popcorn","lid"]}, +{"id":"97385","label":"holding control in front of game","template":"Holding [something] in front of [something]","placeholders":["control","game"]}, +{"id":"188433","label":"pulling bottled ponzu sauce from left to right","template":"Pulling [something] from left to right","placeholders":["bottled ponzu sauce"]}, +{"id":"210710","label":"turning the camera right while filming posters","template":"Turning the camera right while filming [something]","placeholders":["posters"]}, +{"id":"11410","label":"pushing paper towels so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["paper towels"]}, +{"id":"155526","label":"opening notebook","template":"Opening [something]","placeholders":["notebook"]}, +{"id":"121735","label":"putting a book","template":"Putting [something similar to other things that are already on the table]","placeholders":["a book"]}, +{"id":"75129","label":"spreading jelly onto bread","template":"Spreading [something] onto [something]","placeholders":["jelly","bread"]}, +{"id":"78080","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"62758","label":"pretending to squeeze cushion","template":"Pretending to squeeze [something]","placeholders":["cushion"]}, +{"id":"16552","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"147427","label":"holding box over note book","template":"Holding [something] over [something]","placeholders":["box","note book"]}, +{"id":"128589","label":"putting 2 water bottles onto wooden board","template":"Putting [number of] [something] onto [something]","placeholders":["2","water bottles","wooden board"]}, +{"id":"164610","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"176219","label":"spilling water behind book","template":"Spilling [something] behind [something]","placeholders":["water","book"]}, +{"id":"122075","label":"lifting up one end of flashlight without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["flashlight"]}, +{"id":"145759","label":"pouring water into wine glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","wine glass"]}, +{"id":"174374","label":"plugging a memory stick into a usb port","template":"Plugging [something] into [something]","placeholders":["a memory stick","a usb port"]}, +{"id":"89153","label":"pretending to poke pig","template":"Pretending to poke [something]","placeholders":["pig"]}, +{"id":"62435","label":"squeezing silicone","template":"Squeezing [something]","placeholders":["silicone"]}, +{"id":"166365","label":"moving an orange basket ball and a black basket ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["an orange basket ball","a black basket ball"]}, +{"id":"18601","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"117195","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"39264","label":"moving a bottle and a glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a glass"]}, +{"id":"209856","label":"moving box away from container","template":"Moving [something] away from [something]","placeholders":["box","container"]}, +{"id":"163449","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"150689","label":"ball colliding with bowl and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["ball","bowl"]}, +{"id":"121193","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"43987","label":"lifting a sponge with a straw on it","template":"Lifting [something] with [something] on it","placeholders":["a sponge","a straw"]}, +{"id":"152938","label":"twisting a bag strap","template":"Twisting [something]","placeholders":["a bag strap"]}, +{"id":"112404","label":"dropping pen onto table","template":"Dropping [something] onto [something]","placeholders":["pen","table"]}, +{"id":"5926","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"53331","label":"dropping a book onto the bed","template":"Dropping [something] onto [something]","placeholders":["a book","the bed"]}, +{"id":"94516","label":"tilting binder with calculator on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["binder","calculator"]}, +{"id":"199487","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"48393","label":"picking board clip up","template":"Picking [something] up","placeholders":["board clip"]}, +{"id":"22251","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"79650","label":"spinning phone case that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["phone case"]}, +{"id":"190938","label":"a sock falling like a rock","template":"[Something] falling like a rock","placeholders":["a sock"]}, +{"id":"8513","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"71544","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"44655","label":"taking candle out of glas","template":"Taking [something] out of [something]","placeholders":["candle","glas"]}, +{"id":"122400","label":"putting vitamin into bottle","template":"Putting [something] into [something]","placeholders":["vitamin","bottle"]}, +{"id":"53511","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"158724","label":"lifting a book with a plant on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a plant"]}, +{"id":"11859","label":"lifting a book with a mobile on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a mobile"]}, +{"id":"126770","label":"pretending to pick a pencil up","template":"Pretending to pick [something] up","placeholders":["a pencil"]}, +{"id":"155680","label":"hitting a fan with a shoe","template":"Hitting [something] with [something]","placeholders":["a fan","a shoe"]}, +{"id":"88889","label":"putting spoon, fork and knife on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["spoon","fork","knife"]}, +{"id":"177296","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"180780","label":"pretending to turn notepad upside down","template":"Pretending to turn [something] upside down","placeholders":["notepad"]}, +{"id":"167754","label":"tilting a file with reading glasses on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a file","reading glasses"]}, +{"id":"63195","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"214754","label":"squeezing squeeze toy","template":"Squeezing [something]","placeholders":["squeeze toy"]}, +{"id":"131090","label":"turning a nail polish upside down","template":"Turning [something] upside down","placeholders":["a nail polish"]}, +{"id":"158426","label":"taking pencil out of jar","template":"Taking [something] out of [something]","placeholders":["pencil","jar"]}, +{"id":"35281","label":"pushing a plastic bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a plastic bottle","scissors"]}, +{"id":"46263","label":"spinning water bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["water bottle"]}, +{"id":"44395","label":"putting something on the edge of something so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["something","something"]}, +{"id":"89601","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"142632","label":"holding book next to books","template":"Holding [something] next to [something]","placeholders":["book","books"]}, +{"id":"198861","label":"putting ligher into box","template":"Putting [something] into [something]","placeholders":["ligher","box"]}, +{"id":"115934","label":"stacking 3 cans","template":"Stacking [number of] [something]","placeholders":["3","cans"]}, +{"id":"135498","label":"pushing coin with scissor","template":"Pushing [something] with [something]","placeholders":["coin","scissor"]}, +{"id":"99170","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"122001","label":"pretending to poke ball","template":"Pretending to poke [something]","placeholders":["ball"]}, +{"id":"30763","label":"spilling water onto a box","template":"Spilling [something] onto [something]","placeholders":["water","a box"]}, +{"id":"146009","label":"hitting metal pencil case with wrist watch","template":"Hitting [something] with [something]","placeholders":["metal pencil case","wrist watch"]}, +{"id":"55860","label":"piling paper up","template":"Piling [something] up","placeholders":["paper"]}, +{"id":"9254","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"66079","label":"lifting book with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["book","sunglasses"]}, +{"id":"154626","label":"uncovering a box","template":"Uncovering [something]","placeholders":["a box"]}, +{"id":"139051","label":"trying but failing to attach a sticky note to a box because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a sticky note","a box"]}, +{"id":"13122","label":"putting a pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pencil"]}, +{"id":"67720","label":"turning the camera right while filming hair dryer","template":"Turning the camera right while filming [something]","placeholders":["hair dryer"]}, +{"id":"160604","label":"putting pens into pencil case","template":"Putting [something] into [something]","placeholders":["pens","pencil case"]}, +{"id":"65600","label":"trying to pour soda into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["soda","cup"]}, +{"id":"49599","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"144203","label":"wallet falling falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet falling"]}, +{"id":"15966","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"138967","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"76069","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"149268","label":"folding shirt","template":"Folding [something]","placeholders":["shirt"]}, +{"id":"24760","label":"moving phone and xbox game closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["phone","xbox game"]}, +{"id":"177238","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"18345","label":"holding a sock","template":"Holding [something]","placeholders":["a sock"]}, +{"id":"15451","label":"taking a tea light candle away from a group of candles","template":"Taking [one of many similar things on the table]","placeholders":["a tea light candle away from a group of candles"]}, +{"id":"62083","label":"pulling two ends of sock so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["sock"]}, +{"id":"118091","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"2970","label":"covering tablet with handkerchief","template":"Covering [something] with [something]","placeholders":["tablet","handkerchief"]}, +{"id":"147131","label":"moving away from pen with your camera","template":"Moving away from [something] with your camera","placeholders":["pen"]}, +{"id":"93652","label":"lifting black spectacles up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["black spectacles"]}, +{"id":"22839","label":"throwing soap powder packet","template":"Throwing [something]","placeholders":["soap powder packet"]}, +{"id":"11248","label":"lifting blue colour spectacle box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["blue colour spectacle box"]}, +{"id":"103661","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"130147","label":"putting play-doh into mug","template":"Putting [something] into [something]","placeholders":["play-doh","mug"]}, +{"id":"96136","label":"showing a photo of a key to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a key"]}, +{"id":"99977","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"179716","label":"holding remote in front of cup","template":"Holding [something] in front of [something]","placeholders":["remote","cup"]}, +{"id":"218479","label":"taking keys","template":"Taking [one of many similar things on the table]","placeholders":["keys"]}, +{"id":"104468","label":"pushing pink blush on from left to right","template":"Pushing [something] from left to right","placeholders":["pink blush on"]}, +{"id":"192531","label":"putting cylinderical bluetooth speaker on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["cylinderical bluetooth speaker"]}, +{"id":"26630","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"192719","label":"rolling a nail polish bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a nail polish bottle"]}, +{"id":"17535","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"2324","label":"hitting a rubix cube with a hammer","template":"Hitting [something] with [something]","placeholders":["a rubix cube","a hammer"]}, +{"id":"189371","label":"pulling two ends of a leaf so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a leaf"]}, +{"id":"92373","label":"stuffing napkin into candle","template":"Stuffing [something] into [something]","placeholders":["napkin","candle"]}, +{"id":"196364","label":"putting toy wheel into green bowl","template":"Putting [something] into [something]","placeholders":["toy wheel","green bowl"]}, +{"id":"187409","label":"pretending to put battery into box","template":"Pretending to put [something] into [something]","placeholders":["battery","box"]}, +{"id":"162371","label":"pretending to put an eraser behind a glass","template":"Pretending to put [something] behind [something]","placeholders":["an eraser","a glass"]}, +{"id":"120000","label":"bending metal wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal wire"]}, +{"id":"200662","label":"dropping phone behind cup","template":"Dropping [something] behind [something]","placeholders":["phone","cup"]}, +{"id":"126386","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"133641","label":"pushing glass with brush","template":"Pushing [something] with [something]","placeholders":["glass","brush"]}, +{"id":"111723","label":"plugging pen into bowl","template":"Plugging [something] into [something]","placeholders":["pen","bowl"]}, +{"id":"130669","label":"wiping milk off of counter","template":"Wiping [something] off of [something]","placeholders":["milk","counter"]}, +{"id":"173220","label":"moving marker and jar away from each other","template":"Moving [something] and [something] away from each other","placeholders":["marker","jar"]}, +{"id":"219299","label":"showing that soda is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["soda","bottle"]}, +{"id":"30537","label":"twisting a water bottle","template":"Twisting [something]","placeholders":["a water bottle"]}, +{"id":"201987","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"105913","label":"holding medication next to gamepad","template":"Holding [something] next to [something]","placeholders":["medication","gamepad"]}, +{"id":"87038","label":"squeezing a pack of cigarettes","template":"Squeezing [something]","placeholders":["a pack of cigarettes"]}, +{"id":"55639","label":"laying roll of paper towels on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["roll of paper towels"]}, +{"id":"23835","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"3038","label":"identy card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["identy card"]}, +{"id":"126847","label":"showing that chips packet is empty","template":"Showing that [something] is empty","placeholders":["chips packet"]}, +{"id":"119903","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"25846","label":"putting crayons, pencilbox and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["crayons","pencilbox","scissors"]}, +{"id":"203953","label":"putting a mouse onto a mouse pad","template":"Putting [something] onto [something]","placeholders":["a mouse","a mouse pad"]}, +{"id":"133030","label":"a shoe colliding with another shoe and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a shoe","another shoe"]}, +{"id":"164547","label":"turning canned food upside down","template":"Turning [something] upside down","placeholders":["canned food"]}, +{"id":"66962","label":"pulling two ends of a pencil but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pencil"]}, +{"id":"107432","label":"letting bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["bottle"]}, +{"id":"207893","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"170043","label":"pushing a usb so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a usb"]}, +{"id":"39583","label":"putting a [pen amongst other pens","template":"Putting [something similar to other things that are already on the table]","placeholders":["a [pen amongst other pens"]}, +{"id":"132966","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"187388","label":"spinning an empty coke bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["an empty coke bottle"]}, +{"id":"196314","label":"wiping liquid hand soap off of counter","template":"Wiping [something] off of [something]","placeholders":["liquid hand soap","counter"]}, +{"id":"122981","label":"twisting (wringing) tissue wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["tissue"]}, +{"id":"149697","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"89367","label":"turning mug upside down","template":"Turning [something] upside down","placeholders":["mug"]}, +{"id":"138229","label":"showing something behind something","template":"Showing [something] behind [something]","placeholders":["something","something"]}, +{"id":"4689","label":"moving yo-yo and marble so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["yo-yo","marble"]}, +{"id":"127592","label":"bending a pipe cleaner so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pipe cleaner"]}, +{"id":"197349","label":"putting remote, cell phone and paper on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote","cell phone","paper"]}, +{"id":"27792","label":"pouring vodka into cup","template":"Pouring [something] into [something]","placeholders":["vodka","cup"]}, +{"id":"71417","label":"putting tiger toy on a surface","template":"Putting [something] on a surface","placeholders":["tiger toy"]}, +{"id":"32992","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"76846","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"162614","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"95786","label":"pretending to put a can into a cup","template":"Pretending to put [something] into [something]","placeholders":["a can","a cup"]}, +{"id":"44047","label":"pretending to be tearing handkerchief","template":"Pretending to be tearing [something that is not tearable]","placeholders":["handkerchief"]}, +{"id":"67810","label":"pushing a shoe so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a shoe"]}, +{"id":"196076","label":"lifting a plate with mexican dip container on it","template":"Lifting [something] with [something] on it","placeholders":["a plate","mexican dip container"]}, +{"id":"219708","label":"moving something away from the camera","template":"Moving [something] away from the camera","placeholders":["something"]}, +{"id":"11360","label":"showing that cookie box is empty","template":"Showing that [something] is empty","placeholders":["cookie box"]}, +{"id":"33456","label":"turning the camera right while filming tea box","template":"Turning the camera right while filming [something]","placeholders":["tea box"]}, +{"id":"145001","label":"putting eraser on the edge of window so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["eraser","window"]}, +{"id":"184846","label":"taking table salt","template":"Taking [one of many similar things on the table]","placeholders":["table salt"]}, +{"id":"195091","label":"tearing cardstock just a little bit","template":"Tearing [something] just a little bit","placeholders":["cardstock"]}, +{"id":"66930","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"155059","label":"pulling wire onto tablet","template":"Pulling [something] onto [something]","placeholders":["wire","tablet"]}, +{"id":"1705","label":"closing waste bin","template":"Closing [something]","placeholders":["waste bin"]}, +{"id":"152716","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"29729","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"1521","label":"moving cup and banana closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","banana"]}, +{"id":"129914","label":"putting toothpaste onto toothbrush","template":"Putting [something] onto [something]","placeholders":["toothpaste","toothbrush"]}, +{"id":"26495","label":"squeezing eye-drops bottle","template":"Squeezing [something]","placeholders":["eye-drops bottle"]}, +{"id":"191134","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150318","label":"holding purse next to bear doll","template":"Holding [something] next to [something]","placeholders":["purse","bear doll"]}, +{"id":"173712","label":"taking a thermometer out of a drawer","template":"Taking [something] out of [something]","placeholders":["a thermometer","a drawer"]}, +{"id":"80200","label":"pulling two ends of a straw but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a straw"]}, +{"id":"149222","label":"dropping spatula onto stove","template":"Dropping [something] onto [something]","placeholders":["spatula","stove"]}, +{"id":"17246","label":"pretending or failing to wipe design off of bottle","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["design","bottle"]}, +{"id":"111809","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"193078","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"107850","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"123531","label":"poking bus ticket so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bus ticket"]}, +{"id":"32267","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"215656","label":"showing pebble next to striker coin","template":"Showing [something] next to [something]","placeholders":["pebble","striker coin"]}, +{"id":"9679","label":"putting calculator in front of eraser","template":"Putting [something] in front of [something]","placeholders":["calculator","eraser"]}, +{"id":"8739","label":"pushing purple balloon pump from right to left","template":"Pushing [something] from right to left","placeholders":["purple balloon pump"]}, +{"id":"218887","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"220641","label":"plugging charger into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","socket"]}, +{"id":"145051","label":"pretending to squeeze a water bottle","template":"Pretending to squeeze [something]","placeholders":["a water bottle"]}, +{"id":"215783","label":"holding cup in front of chair","template":"Holding [something] in front of [something]","placeholders":["cup","chair"]}, +{"id":"78863","label":"holding a cup over a pillow","template":"Holding [something] over [something]","placeholders":["a cup","a pillow"]}, +{"id":"142853","label":"poking water bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["water bottle"]}, +{"id":"130937","label":"moving cup and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","cup"]}, +{"id":"171127","label":"putting a pencil next to a magazine","template":"Putting [something] next to [something]","placeholders":["a pencil","a magazine"]}, +{"id":"97298","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"16733","label":"plugging power supply cord into laptop","template":"Plugging [something] into [something]","placeholders":["power supply cord","laptop"]}, +{"id":"99996","label":"spilling seltzer onto grape juice","template":"Spilling [something] onto [something]","placeholders":["seltzer","grape juice"]}, +{"id":"14859","label":"taking box from table","template":"Taking [something] from [somewhere]","placeholders":["box","table"]}, +{"id":"132868","label":"uncovering green toy car","template":"Uncovering [something]","placeholders":["green toy car"]}, +{"id":"74719","label":"pulling towel from right to left","template":"Pulling [something] from right to left","placeholders":["towel"]}, +{"id":"117865","label":"dropping yellow ball into glass bowl","template":"Dropping [something] into [something]","placeholders":["yellow ball","glass bowl"]}, +{"id":"167671","label":"covering teething ring with bib","template":"Covering [something] with [something]","placeholders":["teething ring","bib"]}, +{"id":"37084","label":"pencil and pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil and pen"]}, +{"id":"8283","label":"taking a bobby pin","template":"Taking [one of many similar things on the table]","placeholders":["a bobby pin"]}, +{"id":"44585","label":"pouring water into jar until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","jar"]}, +{"id":"33311","label":"putting a tablet upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a tablet"]}, +{"id":"44014","label":"failing to put a razor blade into a flask because the flask does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a razor blade","a flask","the flask"]}, +{"id":"39872","label":"pushing a pencil so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pencil"]}, +{"id":"32532","label":"putting a pen and a bottle on the table","template":"Putting [something] and [something] on the table","placeholders":["a pen","a bottle"]}, +{"id":"73584","label":"holding a painting brush","template":"Holding [something]","placeholders":["a painting brush"]}, +{"id":"174635","label":"lifting a pencil up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a pencil"]}, +{"id":"107069","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"135930","label":"letting pen roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pen"]}, +{"id":"151592","label":"putting a pen similar to the other pens that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pen similar to the other pens that are already on the table"]}, +{"id":"97094","label":"moving chair towards the camera","template":"Moving [something] towards the camera","placeholders":["chair"]}, +{"id":"141825","label":"putting vial on a surface","template":"Putting [something] on a surface","placeholders":["vial"]}, +{"id":"56265","label":"pretending to be tearing headphones","template":"Pretending to be tearing [something that is not tearable]","placeholders":["headphones"]}, +{"id":"50750","label":"plugging a cord into a computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","a computer"]}, +{"id":"35501","label":"showing that tea is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["tea","a cup"]}, +{"id":"201173","label":"putting a steel piece on the edge of steel stick so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a steel piece","steel stick"]}, +{"id":"4818","label":"putting fork among forks","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork among forks"]}, +{"id":"122709","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"163869","label":"moving a fork closer to a pencil","template":"Moving [something] closer to [something]","placeholders":["a fork","a pencil"]}, +{"id":"94725","label":"holding book behind books","template":"Holding [something] behind [something]","placeholders":["book","books"]}, +{"id":"52979","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"69679","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"81376","label":"moving action figure across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["action figure"]}, +{"id":"110521","label":"pushing the tea bag so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["the tea bag"]}, +{"id":"4752","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"38817","label":"spinning wallet that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["wallet"]}, +{"id":"73507","label":"taking paint tube","template":"Taking [one of many similar things on the table]","placeholders":["paint tube"]}, +{"id":"145414","label":"poking a mug so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a mug"]}, +{"id":"186056","label":"pretending to put cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["cup"]}, +{"id":"114030","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"33121","label":"packaging foam falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["packaging foam"]}, +{"id":"162914","label":"trying but failing to attach plastic hook to door because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["plastic hook","door"]}, +{"id":"143570","label":"turning salt shaker upside down","template":"Turning [something] upside down","placeholders":["salt shaker"]}, +{"id":"189482","label":"opening bottle","template":"Opening [something]","placeholders":["bottle"]}, +{"id":"4143","label":"poking candle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["candle"]}, +{"id":"163521","label":"putting fork next to knife","template":"Putting [something] next to [something]","placeholders":["fork","knife"]}, +{"id":"142939","label":"holding bottle in front of sunglasses","template":"Holding [something] in front of [something]","placeholders":["bottle","sunglasses"]}, +{"id":"137894","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"28832","label":"pretending to put a candle onto a candelabra","template":"Pretending to put [something] onto [something]","placeholders":["a candle","a candelabra"]}, +{"id":"54969","label":"showing backpack behind box","template":"Showing [something] behind [something]","placeholders":["backpack","box"]}, +{"id":"14257","label":"hitting pan with spoon","template":"Hitting [something] with [something]","placeholders":["pan","spoon"]}, +{"id":"193707","label":"turning the camera right while filming traffic light","template":"Turning the camera right while filming [something]","placeholders":["traffic light"]}, +{"id":"204125","label":"putting plastic cup on a surface","template":"Putting [something] on a surface","placeholders":["plastic cup"]}, +{"id":"76281","label":"pretending or failing to wipe picture off of book spine","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["picture","book spine"]}, +{"id":"16809","label":"pushing sugarpot so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sugarpot"]}, +{"id":"48460","label":"lifting book up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["book"]}, +{"id":"194353","label":"pretending to close fridge without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["fridge"]}, +{"id":"69064","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"46846","label":"closing a water tank","template":"Closing [something]","placeholders":["a water tank"]}, +{"id":"112347","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"7525","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"133411","label":"covering luggage tag with paper","template":"Covering [something] with [something]","placeholders":["luggage tag","paper"]}, +{"id":"36752","label":"pushing a key so it spins","template":"Pushing [something] so it spins","placeholders":["a key"]}, +{"id":"197952","label":"pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["something"]}, +{"id":"192810","label":"putting bowl","template":"Putting [something similar to other things that are already on the table]","placeholders":["bowl"]}, +{"id":"94638","label":"pulling two ends of napkin so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["napkin"]}, +{"id":"138117","label":"putting a pen on a surface","template":"Putting [something] on a surface","placeholders":["a pen"]}, +{"id":"132229","label":"mesh cup falling like a rock","template":"[Something] falling like a rock","placeholders":["mesh cup"]}, +{"id":"10161","label":"holding business card over pen","template":"Holding [something] over [something]","placeholders":["business card","pen"]}, +{"id":"50773","label":"poking the water recipient so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["the water recipient"]}, +{"id":"49229","label":"letting tin can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["tin can"]}, +{"id":"74732","label":"pushing compass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["compass"]}, +{"id":"193163","label":"pushing bottle so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bottle"]}, +{"id":"153593","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"217922","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"144926","label":"lifting bunch of keys with pencil on it","template":"Lifting [something] with [something] on it","placeholders":["bunch of keys","pencil"]}, +{"id":"117581","label":"pretending to sprinkle air onto bananas","template":"Pretending to sprinkle air onto [something]","placeholders":["bananas"]}, +{"id":"85931","label":"spreading coins onto mirror","template":"Spreading [something] onto [something]","placeholders":["coins","mirror"]}, +{"id":"40860","label":"dropping a pin into a box","template":"Dropping [something] into [something]","placeholders":["a pin","a box"]}, +{"id":"174990","label":"tilting book with mouse on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","mouse"]}, +{"id":"155109","label":"putting dice on table of similar items","template":"Putting [something similar to other things that are already on the table]","placeholders":["dice on table of similar items"]}, +{"id":"24994","label":"lifting up one end of toothbrush, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["toothbrush"]}, +{"id":"178899","label":"putting paper underneath stand","template":"Putting [something] underneath [something]","placeholders":["paper","stand"]}, +{"id":"132104","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"217301","label":"pushing green cup from right to left","template":"Pushing [something] from right to left","placeholders":["green cup"]}, +{"id":"51858","label":"taking keys out of mug","template":"Taking [something] out of [something]","placeholders":["keys","mug"]}, +{"id":"187867","label":"pushing a screwdriver off of a box","template":"Pushing [something] off of [something]","placeholders":["a screwdriver","a box"]}, +{"id":"145237","label":"pouring water into the sink","template":"Pouring [something] into [something]","placeholders":["water","the sink"]}, +{"id":"144798","label":"hitting bottle with scale","template":"Hitting [something] with [something]","placeholders":["bottle","scale"]}, +{"id":"156236","label":"throwing pack of gum onto a surface","template":"Throwing [something] onto a surface","placeholders":["pack of gum"]}, +{"id":"162226","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"129314","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"146809","label":"moving watch and wallet closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","wallet"]}, +{"id":"198024","label":"pretending to throw an ice cream wrapper","template":"Pretending to throw [something]","placeholders":["an ice cream wrapper"]}, +{"id":"115794","label":"pulling pen from behind of cup","template":"Pulling [something] from behind of [something]","placeholders":["pen","cup"]}, +{"id":"49990","label":"throwing headphones in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["headphones"]}, +{"id":"172112","label":"pretending to scoop air up with my hands","template":"Pretending to scoop [something] up with [something]","placeholders":["air","my hands"]}, +{"id":"212430","label":"pretending to turn ink bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["ink bottle"]}, +{"id":"205812","label":"holding mobile behind chair","template":"Holding [something] behind [something]","placeholders":["mobile","chair"]}, +{"id":"137384","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"54990","label":"poking a stack of onion so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["onion"]}, +{"id":"135935","label":"putting knife upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["knife"]}, +{"id":"44608","label":"pulling two ends of exercise band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["exercise band"]}, +{"id":"66100","label":"hitting a mouse with a stapler","template":"Hitting [something] with [something]","placeholders":["a mouse","a stapler"]}, +{"id":"180067","label":"tipping water bottle over","template":"Tipping [something] over","placeholders":["water bottle"]}, +{"id":"107835","label":"pushing metal pad so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["metal pad"]}, +{"id":"53968","label":"putting sandal on a surface","template":"Putting [something] on a surface","placeholders":["sandal"]}, +{"id":"57420","label":"pretending to take a post-it from a post-it stack","template":"Pretending to take [something] from [somewhere]","placeholders":["a post-it","a post-it stack"]}, +{"id":"47953","label":"opening oven","template":"Opening [something]","placeholders":["oven"]}, +{"id":"81261","label":"tearing envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["envelope"]}, +{"id":"77390","label":"pushing red bottlecap from right to left","template":"Pushing [something] from right to left","placeholders":["red bottlecap"]}, +{"id":"42720","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"43950","label":"lifting up one end of a tub without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a tub"]}, +{"id":"201319","label":"moving plastic bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["plastic bottle"]}, +{"id":"24302","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"59142","label":"moving scotch tape up","template":"Moving [something] up","placeholders":["scotch tape"]}, +{"id":"209847","label":"pushing socks so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["socks"]}, +{"id":"95613","label":"tilting spoon with cap on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["spoon","cap"]}, +{"id":"134311","label":"moving cufflinks closer to a box","template":"Moving [something] closer to [something]","placeholders":["cufflinks","a box"]}, +{"id":"75452","label":"piece of roll falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["piece of roll"]}, +{"id":"42956","label":"approaching keys with your camera","template":"Approaching [something] with your camera","placeholders":["keys"]}, +{"id":"73045","label":"tearing a paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper towel"]}, +{"id":"175372","label":"pushing a cup from right to left","template":"Pushing [something] from right to left","placeholders":["a cup"]}, +{"id":"202114","label":"moving coin and watch away from each other","template":"Moving [something] and [something] away from each other","placeholders":["coin","watch"]}, +{"id":"202559","label":"showing that cigarette pack is empty","template":"Showing that [something] is empty","placeholders":["cigarette pack"]}, +{"id":"170639","label":"putting pencil next to wooden stick","template":"Putting [something] next to [something]","placeholders":["pencil","wooden stick"]}, +{"id":"191022","label":"holding remote in front of light switch","template":"Holding [something] in front of [something]","placeholders":["remote","light switch"]}, +{"id":"154512","label":"pushing ink bottle from right to left","template":"Pushing [something] from right to left","placeholders":["ink bottle"]}, +{"id":"160879","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"16559","label":"putting water bottle next to bowl","template":"Putting [something] next to [something]","placeholders":["water bottle","bowl"]}, +{"id":"214406","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"71643","label":"wiping butter off of plate","template":"Wiping [something] off of [something]","placeholders":["butter","plate"]}, +{"id":"165046","label":"showing that a box is empty","template":"Showing that [something] is empty","placeholders":["a box"]}, +{"id":"186949","label":"bending wooden reeper until it breaks","template":"Bending [something] until it breaks","placeholders":["wooden reeper"]}, +{"id":"201445","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"52071","label":"pretending to be tearing a notebook","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a notebook"]}, +{"id":"115277","label":"scooping popcorn up with spoon","template":"Scooping [something] up with [something]","placeholders":["popcorn","spoon"]}, +{"id":"19766","label":"tearing plastic just a little bit","template":"Tearing [something] just a little bit","placeholders":["plastic"]}, +{"id":"71978","label":"pot holder being deflected from chalkboard","template":"[Something] being deflected from [something]","placeholders":["pot holder","chalkboard"]}, +{"id":"76768","label":"putting candle into glass","template":"Putting [something] into [something]","placeholders":["candle","glass"]}, +{"id":"140369","label":"dropping a container next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a container","a shoe brush"]}, +{"id":"88961","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"104152","label":"dropping pen into glass","template":"Dropping [something] into [something]","placeholders":["pen","glass"]}, +{"id":"4288","label":"taking green colour pen among many colour pens on the table","template":"Taking [one of many similar things on the table]","placeholders":["green colour pen among many colour pens on the table"]}, +{"id":"212306","label":"pretending to close dvd without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["dvd"]}, +{"id":"137064","label":"taking wafer","template":"Taking [one of many similar things on the table]","placeholders":["wafer"]}, +{"id":"124255","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"209151","label":"pushing canderelbox so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["canderelbox"]}, +{"id":"129580","label":"pushing calculator with pen","template":"Pushing [something] with [something]","placeholders":["calculator","pen"]}, +{"id":"16505","label":"moving the bottle and the pencil case closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the bottle","the pencil case"]}, +{"id":"61267","label":"showing a photo of people to the camera","template":"Showing a photo of [something] to the camera","placeholders":["people"]}, +{"id":"220825","label":"pushing a glass from right to left","template":"Pushing [something] from right to left","placeholders":["a glass"]}, +{"id":"52645","label":"bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["bottle"]}, +{"id":"475","label":"moving bag up","template":"Moving [something] up","placeholders":["bag"]}, +{"id":"203783","label":"showing that food pot is empty","template":"Showing that [something] is empty","placeholders":["food pot"]}, +{"id":"143765","label":"putting folder underneath desk","template":"Putting [something] underneath [something]","placeholders":["folder","desk"]}, +{"id":"191232","label":"pushing drawing notebook from left to right","template":"Pushing [something] from left to right","placeholders":["drawing notebook"]}, +{"id":"33956","label":"trying to pour coconut water into glass, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["coconut water","glass"]}, +{"id":"125041","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"93454","label":"moving plastic ball and plastic ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["plastic ball","plastic ball"]}, +{"id":"55181","label":"pretending to poke cat","template":"Pretending to poke [something]","placeholders":["cat"]}, +{"id":"37182","label":"pretending to pick nail varnish up","template":"Pretending to pick [something] up","placeholders":["nail varnish"]}, +{"id":"168282","label":"moving lipstick up","template":"Moving [something] up","placeholders":["lipstick"]}, +{"id":"81223","label":"putting a bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bottle"]}, +{"id":"44930","label":"sprinkling water onto ground","template":"Sprinkling [something] onto [something]","placeholders":["water","ground"]}, +{"id":"194372","label":"holding cushion in front of chair","template":"Holding [something] in front of [something]","placeholders":["cushion","chair"]}, +{"id":"39318","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"125761","label":"throwing napkin onto a surface","template":"Throwing [something] onto a surface","placeholders":["napkin"]}, +{"id":"169724","label":"approaching toy with your camera","template":"Approaching [something] with your camera","placeholders":["toy"]}, +{"id":"211929","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"92488","label":"tilting tree twig with finger on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["tree twig","finger"]}, +{"id":"103685","label":"unfolding blanket","template":"Unfolding [something]","placeholders":["blanket"]}, +{"id":"32616","label":"letting a musical tabl roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a musical tabl"]}, +{"id":"17657","label":"putting a pencil next to other similar objects on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pencil next to other similar objects on the table"]}, +{"id":"44451","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"17532","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"205724","label":"lifting blue colour pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["blue colour pen"]}, +{"id":"71742","label":"showing rice cooker to the camera","template":"Showing [something] to the camera","placeholders":["rice cooker"]}, +{"id":"75666","label":"pretending to close jewellry box without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jewellry box"]}, +{"id":"28351","label":"showing iron to the camera","template":"Showing [something] to the camera","placeholders":["iron"]}, +{"id":"54391","label":"moving elf closer to buddha","template":"Moving [something] closer to [something]","placeholders":["elf","buddha"]}, +{"id":"203612","label":"tilting book with mobile on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","mobile"]}, +{"id":"94267","label":"holding stone","template":"Holding [something]","placeholders":["stone"]}, +{"id":"85293","label":"trying to bend tv remote so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["tv remote"]}, +{"id":"10652","label":"tipping canister over","template":"Tipping [something] over","placeholders":["canister"]}, +{"id":"127806","label":"moving cycle away from the camera","template":"Moving [something] away from the camera","placeholders":["cycle"]}, +{"id":"16589","label":"touching (without moving) part of towel","template":"Touching (without moving) [part] of [something]","placeholders":["part","towel"]}, +{"id":"80032","label":"throwing ball against wall and chair","template":"Throwing [something] against [something]","placeholders":["ball","wall and chair"]}, +{"id":"136595","label":"tilting spoon with cap on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["spoon","cap"]}, +{"id":"73888","label":"moving a water bottle away from a mug","template":"Moving [something] away from [something]","placeholders":["a water bottle","a mug"]}, +{"id":"147322","label":"pretending to pick glass up","template":"Pretending to pick [something] up","placeholders":["glass"]}, +{"id":"179039","label":"pulling a figurine from right to left","template":"Pulling [something] from right to left","placeholders":["a figurine"]}, +{"id":"155117","label":"letting exercise foam roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["exercise foam"]}, +{"id":"36639","label":"closing battery compartment of tv remote","template":"Closing [something]","placeholders":["battery compartment of tv remote"]}, +{"id":"46778","label":"pushing marker pen from left to right","template":"Pushing [something] from left to right","placeholders":["marker pen"]}, +{"id":"195729","label":"putting green cup onto duster","template":"Putting [something] onto [something]","placeholders":["green cup","duster"]}, +{"id":"217109","label":"plugging charger cable into cell phone","template":"Plugging [something] into [something]","placeholders":["charger cable","cell phone"]}, +{"id":"177650","label":"approaching the wall with your camera","template":"Approaching [something] with your camera","placeholders":["the wall"]}, +{"id":"11944","label":"folding bed sheet","template":"Folding [something]","placeholders":["bed sheet"]}, +{"id":"4903","label":"plugging vga 9 pin plug into laptop","template":"Plugging [something] into [something]","placeholders":["vga 9 pin plug","laptop"]}, +{"id":"16215","label":"pulling pulling plastic spray from right to left from right to left","template":"Pulling [something] from right to left","placeholders":["pulling plastic spray from right to left"]}, +{"id":"36238","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"46141","label":"removing glass, revealing scissor behind","template":"Removing [something], revealing [something] behind","placeholders":["glass","scissor"]}, +{"id":"137966","label":"plugging plug into plug socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","plug socket"]}, +{"id":"181899","label":"pulling bottle from right to left","template":"Pulling [something] from right to left","placeholders":["bottle"]}, +{"id":"142940","label":"putting mug and canister on the table","template":"Putting [something] and [something] on the table","placeholders":["mug","canister"]}, +{"id":"159005","label":"picking jacket up","template":"Picking [something] up","placeholders":["jacket"]}, +{"id":"41741","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"207991","label":"pretending to pick pink water bottle up","template":"Pretending to pick [something] up","placeholders":["pink water bottle"]}, +{"id":"149508","label":"moving watch and glasses closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["watch","glasses"]}, +{"id":"15415","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"131887","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"220496","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"118392","label":"taking spoon out of drawer","template":"Taking [something] out of [something]","placeholders":["spoon","drawer"]}, +{"id":"80697","label":"throwing a clementine in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a clementine"]}, +{"id":"27776","label":"plugging electric plug into an electric outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["electric plug","an electric outlet"]}, +{"id":"154500","label":"taking chocolate bar","template":"Taking [one of many similar things on the table]","placeholders":["chocolate bar"]}, +{"id":"178117","label":"pouring water into a bowl","template":"Pouring [something] into [something]","placeholders":["water","a bowl"]}, +{"id":"151772","label":"plugging a charger into a laptop","template":"Plugging [something] into [something]","placeholders":["a charger","a laptop"]}, +{"id":"102544","label":"poking tape measure so that it spins around","template":"Poking [something] so that it spins around","placeholders":["tape measure"]}, +{"id":"122617","label":"taking medicine from box","template":"Taking [something] from [somewhere]","placeholders":["medicine","box"]}, +{"id":"127658","label":"holding lemon over cup","template":"Holding [something] over [something]","placeholders":["lemon","cup"]}, +{"id":"13057","label":"covering coaster with pillow","template":"Covering [something] with [something]","placeholders":["coaster","pillow"]}, +{"id":"58619","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"62004","label":"pretending to be tearing felt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["felt"]}, +{"id":"149363","label":"putting the mate onto helmet","template":"Putting [something] onto [something]","placeholders":["the mate","helmet"]}, +{"id":"21378","label":"pretending to pick socks up","template":"Pretending to pick [something] up","placeholders":["socks"]}, +{"id":"16609","label":"putting cellphone that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["cellphone"]}, +{"id":"101819","label":"plugging charger into extension cord","template":"Plugging [something] into [something]","placeholders":["charger","extension cord"]}, +{"id":"22355","label":"putting book on a surface","template":"Putting [something] on a surface","placeholders":["book"]}, +{"id":"89400","label":"taking padlock from glass jar","template":"Taking [something] from [somewhere]","placeholders":["padlock","glass jar"]}, +{"id":"138804","label":"moving cup across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["cup"]}, +{"id":"152916","label":"moving salt and pepper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["salt","pepper"]}, +{"id":"43061","label":"putting binder upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["binder"]}, +{"id":"40189","label":"pretending to pick batery up","template":"Pretending to pick [something] up","placeholders":["batery"]}, +{"id":"86277","label":"taking pen out of cup","template":"Taking [something] out of [something]","placeholders":["pen","cup"]}, +{"id":"63317","label":"pretending to take coaster from table","template":"Pretending to take [something] from [somewhere]","placeholders":["coaster","table"]}, +{"id":"210726","label":"putting scissors upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["scissors"]}, +{"id":"149425","label":"pretending to scoop puzzle piece up with hand","template":"Pretending to scoop [something] up with [something]","placeholders":["puzzle piece","hand"]}, +{"id":"183215","label":"pretending or failing to wipe crayon off of paper","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["crayon","paper"]}, +{"id":"117638","label":"pushing a toy car from left to right","template":"Pushing [something] from left to right","placeholders":["a toy car"]}, +{"id":"13893","label":"showing a toothbrush next to calculator","template":"Showing [something] next to [something]","placeholders":["a toothbrush","calculator"]}, +{"id":"55099","label":"moving usb and usb cable closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["usb","usb cable"]}, +{"id":"12333","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"12055","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"90243","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"157717","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"122816","label":"moving an eyeglass case towards the camera","template":"Moving [something] towards the camera","placeholders":["an eyeglass case"]}, +{"id":"93555","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"91902","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"121078","label":"approaching glasses with your camera","template":"Approaching [something] with your camera","placeholders":["glasses"]}, +{"id":"92119","label":"covering plastic knife with towel","template":"Covering [something] with [something]","placeholders":["plastic knife","towel"]}, +{"id":"66895","label":"throwing nail polish","template":"Throwing [something]","placeholders":["nail polish"]}, +{"id":"195074","label":"holding tea spoon in front of jar","template":"Holding [something] in front of [something]","placeholders":["tea spoon","jar"]}, +{"id":"171503","label":"pretending to poke pillow","template":"Pretending to poke [something]","placeholders":["pillow"]}, +{"id":"40907","label":"holding pencil holder over shoe brush","template":"Holding [something] over [something]","placeholders":["pencil holder","shoe brush"]}, +{"id":"184890","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"219665","label":"pouring water onto the little globe","template":"Pouring [something] onto [something]","placeholders":["water","the little globe"]}, +{"id":"94090","label":"putting battery on a surface","template":"Putting [something] on a surface","placeholders":["battery"]}, +{"id":"213998","label":"opening umbrella","template":"Opening [something]","placeholders":["umbrella"]}, +{"id":"192912","label":"pushing hair clip so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hair clip"]}, +{"id":"207295","label":"pouring water out of a cup","template":"Pouring [something] out of [something]","placeholders":["water","a cup"]}, +{"id":"175726","label":"spilling water next to laptop","template":"Spilling [something] next to [something]","placeholders":["water","laptop"]}, +{"id":"87607","label":"putting an egg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["an egg"]}, +{"id":"34848","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"220318","label":"putting soft ball into box","template":"Putting [something] into [something]","placeholders":["soft ball","box"]}, +{"id":"212353","label":"putting water bottle onto wooden ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["water bottle","wooden ball"]}, +{"id":"166714","label":"throwing spoon onto a surface","template":"Throwing [something] onto a surface","placeholders":["spoon"]}, +{"id":"69911","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"2399","label":"holding paper over a mug","template":"Holding [something] over [something]","placeholders":["paper","a mug"]}, +{"id":"104745","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"27809","label":"uncovering a bird cage","template":"Uncovering [something]","placeholders":["a bird cage"]}, +{"id":"1484","label":"putting mug in front of fluorescent light bulb","template":"Putting [something] in front of [something]","placeholders":["mug","fluorescent light bulb"]}, +{"id":"129210","label":"moving paper and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper","paper"]}, +{"id":"64254","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"173028","label":"pretending to pick a book up","template":"Pretending to pick [something] up","placeholders":["a book"]}, +{"id":"212253","label":"turning the camera right while filming black hair tie","template":"Turning the camera right while filming [something]","placeholders":["black hair tie"]}, +{"id":"152333","label":"putting banana leaf","template":"Putting [something similar to other things that are already on the table]","placeholders":["banana leaf"]}, +{"id":"120110","label":"touching (without moving) the frame of sunglasses","template":"Touching (without moving) [part] of [something]","placeholders":["the frame","sunglasses"]}, +{"id":"126004","label":"covering a coin with paper","template":"Covering [something] with [something]","placeholders":["a coin","paper"]}, +{"id":"107346","label":"holding rock over flashlight","template":"Holding [something] over [something]","placeholders":["rock","flashlight"]}, +{"id":"63145","label":"stuffing bags into box","template":"Stuffing [something] into [something]","placeholders":["bags","box"]}, +{"id":"114711","label":"unfolding handout","template":"Unfolding [something]","placeholders":["handout"]}, +{"id":"86740","label":"plugging cord into wall socket","template":"Plugging [something] into [something]","placeholders":["cord","wall socket"]}, +{"id":"160106","label":"pulling a pencil from left to right","template":"Pulling [something] from left to right","placeholders":["a pencil"]}, +{"id":"215793","label":"moving a doll across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a doll"]}, +{"id":"25815","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"175654","label":"moving something and something away from each other","template":"Moving [something] and [something] away from each other","placeholders":["something","something"]}, +{"id":"191030","label":"uncovering cup","template":"Uncovering [something]","placeholders":["cup"]}, +{"id":"83202","label":"spinning spoon so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spoon"]}, +{"id":"67963","label":"tilting gluestick with notepad on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["gluestick","notepad"]}, +{"id":"68779","label":"spinning plastic cap that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["plastic cap"]}, +{"id":"7818","label":"removing cleaner, revealing glass behind","template":"Removing [something], revealing [something] behind","placeholders":["cleaner","glass"]}, +{"id":"24715","label":"dropping balls into cup","template":"Dropping [something] into [something]","placeholders":["balls","cup"]}, +{"id":"192674","label":"pretending to take rc from bed","template":"Pretending to take [something] from [somewhere]","placeholders":["rc","bed"]}, +{"id":"133555","label":"pretending to poke a wallet","template":"Pretending to poke [something]","placeholders":["a wallet"]}, +{"id":"159091","label":"letting ribbon roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ribbon"]}, +{"id":"72239","label":"putting fork similar to many forks on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork similar to many forks on the table"]}, +{"id":"42754","label":"moving usb and usb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["usb","usb"]}, +{"id":"213488","label":"candy colliding with candy and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["candy","candy"]}, +{"id":"188112","label":"pushing a toy truck from left to right","template":"Pushing [something] from left to right","placeholders":["a toy truck"]}, +{"id":"13022","label":"hitting the counter with a knife","template":"Hitting [something] with [something]","placeholders":["the counter","a knife"]}, +{"id":"49659","label":"sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet"]}, +{"id":"50618","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"34745","label":"plugging jack into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["jack","computer"]}, +{"id":"175746","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"67117","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"140874","label":"twisting washcloth","template":"Twisting [something]","placeholders":["washcloth"]}, +{"id":"211453","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"184891","label":"putting a phone underneath a water bottle","template":"Putting [something] underneath [something]","placeholders":["a phone","a water bottle"]}, +{"id":"167452","label":"trying but failing to attach a tv remote to an airconditioner remote because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a tv remote","an airconditioner remote"]}, +{"id":"93979","label":"holding cup next to shoe","template":"Holding [something] next to [something]","placeholders":["cup","shoe"]}, +{"id":"12107","label":"putting soda pop can behind coffee can","template":"Putting [something] behind [something]","placeholders":["soda pop can","coffee can"]}, +{"id":"36377","label":"failing to put a bouncing reindeer toy into a small box because the reindeer does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bouncing reindeer toy","a small box","the reindeer"]}, +{"id":"184538","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"8683","label":"pretending to pour water out of container, but container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","container","container"]}, +{"id":"145150","label":"covering case with towel","template":"Covering [something] with [something]","placeholders":["case","towel"]}, +{"id":"5085","label":"pushing box with pen","template":"Pushing [something] with [something]","placeholders":["box","pen"]}, +{"id":"160931","label":"pretending to pick black colour pen cap up","template":"Pretending to pick [something] up","placeholders":["black colour pen cap"]}, +{"id":"92343","label":"attaching mobile to flip cover case","template":"Attaching [something] to [something]","placeholders":["mobile","flip cover case"]}, +{"id":"72705","label":"spinning sky remote that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["sky remote"]}, +{"id":"85258","label":"pushing blue lighter from right to left","template":"Pushing [something] from right to left","placeholders":["blue lighter"]}, +{"id":"206857","label":"pos-it falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["pos-it"]}, +{"id":"117547","label":"holding a remote control","template":"Holding [something]","placeholders":["a remote control"]}, +{"id":"38117","label":"moving a pack of tissues closer to a wallet","template":"Moving [something] closer to [something]","placeholders":["a pack of tissues","a wallet"]}, +{"id":"178214","label":"moving remote closer to remote","template":"Moving [something] closer to [something]","placeholders":["remote","remote"]}, +{"id":"192867","label":"tearing plastic into two pieces","template":"Tearing [something] into two pieces","placeholders":["plastic"]}, +{"id":"42903","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"54227","label":"plugging a usb cord into a charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a usb cord","a charger"]}, +{"id":"94498","label":"stuffing pillow into pillowcase","template":"Stuffing [something] into [something]","placeholders":["pillow","pillowcase"]}, +{"id":"206954","label":"hitting sachet with chopstick","template":"Hitting [something] with [something]","placeholders":["sachet","chopstick"]}, +{"id":"42610","label":"plugging a charger into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","a phone"]}, +{"id":"177964","label":"throwing stuffed animal","template":"Throwing [something]","placeholders":["stuffed animal"]}, +{"id":"73535","label":"showing a photo of watercan to the camera","template":"Showing a photo of [something] to the camera","placeholders":["watercan"]}, +{"id":"191903","label":"dropping red hair band in front of spectacle box","template":"Dropping [something] in front of [something]","placeholders":["red hair band","spectacle box"]}, +{"id":"33797","label":"plugging charger cable into ipod","template":"Plugging [something] into [something]","placeholders":["charger cable","ipod"]}, +{"id":"13583","label":"pushing dog toy so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["dog toy"]}, +{"id":"102948","label":"putting spoon on a surface","template":"Putting [something] on a surface","placeholders":["spoon"]}, +{"id":"90011","label":"moving cards and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cards","paper"]}, +{"id":"56620","label":"dropping pencils onto the floor","template":"Dropping [something] onto [something]","placeholders":["pencils","the floor"]}, +{"id":"72564","label":"piling bags of cookies up","template":"Piling [something] up","placeholders":["bags of cookies"]}, +{"id":"205079","label":"tearing ripping napkin in half into two pieces","template":"Tearing [something] into two pieces","placeholders":["ripping napkin in half"]}, +{"id":"157431","label":"tilting black file with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["black file","pen"]}, +{"id":"138504","label":"closing a diary","template":"Closing [something]","placeholders":["a diary"]}, +{"id":"191560","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"125398","label":"pretending to be tearing cup holder","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cup holder"]}, +{"id":"139585","label":"stuffing change into a bag","template":"Stuffing [something] into [something]","placeholders":["change","a bag"]}, +{"id":"33353","label":"moving a pink bunny closer to a carrot","template":"Moving [something] closer to [something]","placeholders":["a pink bunny","a carrot"]}, +{"id":"72063","label":"piling boxes up","template":"Piling [something] up","placeholders":["boxes"]}, +{"id":"185483","label":"moving bottle and statue closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","statue"]}, +{"id":"86560","label":"spinning bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["bottle"]}, +{"id":"42742","label":"putting tea light candle onto ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["tea light candle","ball"]}, +{"id":"218443","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"90380","label":"plugging earbuds into ps4 controller","template":"Plugging [something] into [something]","placeholders":["earbuds","ps4 controller"]}, +{"id":"114927","label":"falling rock on kitchen counter falling like a rock","template":"[Something] falling like a rock","placeholders":["falling rock on kitchen counter"]}, +{"id":"60164","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"113944","label":"moving toothpaste tube and toothpaste tube so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toothpaste tube","toothpaste tube"]}, +{"id":"15156","label":"lifting pigtail with corrector pen on it","template":"Lifting [something] with [something] on it","placeholders":["pigtail","corrector pen"]}, +{"id":"35022","label":"stuffing cotton into pot","template":"Stuffing [something] into [something]","placeholders":["cotton","pot"]}, +{"id":"35569","label":"bending a plastic pipe so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a plastic pipe"]}, +{"id":"74614","label":"pushing id card so it spins","template":"Pushing [something] so it spins","placeholders":["id card"]}, +{"id":"62506","label":"pretending to pick spoon up","template":"Pretending to pick [something] up","placeholders":["spoon"]}, +{"id":"218482","label":"plugging cord into phone","template":"Plugging [something] into [something]","placeholders":["cord","phone"]}, +{"id":"49888","label":"pushing stapler with colour pen","template":"Pushing [something] with [something]","placeholders":["stapler","colour pen"]}, +{"id":"48861","label":"moving a mouse up","template":"Moving [something] up","placeholders":["a mouse"]}, +{"id":"78129","label":"dropping sharpner next to white colour board clip","template":"Dropping [something] next to [something]","placeholders":["sharpner","white colour board clip"]}, +{"id":"10018","label":"spilling water next to flower pot","template":"Spilling [something] next to [something]","placeholders":["water","flower pot"]}, +{"id":"70685","label":"tearing a paper heart into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper heart"]}, +{"id":"124924","label":"lifting a box up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a box"]}, +{"id":"7612","label":"showing that black colour sharpner is inside yellow container","template":"Showing that [something] is inside [something]","placeholders":["black colour sharpner","yellow container"]}, +{"id":"191646","label":"putting a pear onto the book","template":"Putting [something] onto [something]","placeholders":["a pear","the book"]}, +{"id":"181561","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"52295","label":"moving a sphere and a stone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a sphere","a stone"]}, +{"id":"206638","label":"moving binoculars away from bracelet","template":"Moving [something] away from [something]","placeholders":["binoculars","bracelet"]}, +{"id":"174814","label":"turning the camera downwards while filming water bottle","template":"Turning the camera downwards while filming [something]","placeholders":["water bottle"]}, +{"id":"104635","label":"pushing phone so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["phone"]}, +{"id":"96942","label":"pretending to squeeze candle","template":"Pretending to squeeze [something]","placeholders":["candle"]}, +{"id":"127683","label":"taking a pen from a desk drawer","template":"Taking [something] from [somewhere]","placeholders":["a pen","a desk drawer"]}, +{"id":"106291","label":"pretending to pour juice out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["juice","bottle","bottle"]}, +{"id":"62117","label":"pushing battery charger from right to left","template":"Pushing [something] from right to left","placeholders":["battery charger"]}, +{"id":"178691","label":"trying to bend rod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["rod"]}, +{"id":"54428","label":"showing pen on top of bottle","template":"Showing [something] on top of [something]","placeholders":["pen","bottle"]}, +{"id":"212644","label":"stacking four boxes","template":"Stacking [number of] [something]","placeholders":["four","boxes"]}, +{"id":"2322","label":"pushing a chess board from right to left","template":"Pushing [something] from right to left","placeholders":["a chess board"]}, +{"id":"179755","label":"dropping tablet into container","template":"Dropping [something] into [something]","placeholders":["tablet","container"]}, +{"id":"31231","label":"showing wall light to the camera","template":"Showing [something] to the camera","placeholders":["wall light"]}, +{"id":"206826","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"216913","label":"folding notebook","template":"Folding [something]","placeholders":["notebook"]}, +{"id":"137968","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"72089","label":"attaching clip to handle","template":"Attaching [something] to [something]","placeholders":["clip","handle"]}, +{"id":"150265","label":"pushing a matchbox so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a matchbox"]}, +{"id":"20456","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"188857","label":"moving lighter closer to tv remote","template":"Moving [something] closer to [something]","placeholders":["lighter","tv remote"]}, +{"id":"159804","label":"tipping wallet over","template":"Tipping [something] over","placeholders":["wallet"]}, +{"id":"111066","label":"moving a coin away from a spoon","template":"Moving [something] away from [something]","placeholders":["a coin","a spoon"]}, +{"id":"218135","label":"plugging power cable into socket","template":"Plugging [something] into [something]","placeholders":["power cable","socket"]}, +{"id":"194501","label":"throwing bear in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["bear"]}, +{"id":"195877","label":"stuffing shirt into drawer","template":"Stuffing [something] into [something]","placeholders":["shirt","drawer"]}, +{"id":"31839","label":"throwing plastic bottle against sofa","template":"Throwing [something] against [something]","placeholders":["plastic bottle","sofa"]}, +{"id":"192672","label":"pretending to close closet door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["closet door"]}, +{"id":"12828","label":"poking a card reader so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a card reader"]}, +{"id":"54966","label":"throwing keys","template":"Throwing [something]","placeholders":["keys"]}, +{"id":"152224","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"114314","label":"taking pencil from educational kits","template":"Taking [one of many similar things on the table]","placeholders":["pencil from educational kits"]}, +{"id":"217802","label":"stuffing a shirt into a toilet paper roll","template":"Stuffing [something] into [something]","placeholders":["a shirt","a toilet paper roll"]}, +{"id":"171926","label":"pretending to put camphor packet next to sugar bottle","template":"Pretending to put [something] next to [something]","placeholders":["camphor packet","sugar bottle"]}, +{"id":"207421","label":"pushing nail varnish bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["nail varnish bottle"]}, +{"id":"72576","label":"closing hot case","template":"Closing [something]","placeholders":["hot case"]}, +{"id":"53650","label":"toy car being deflected from mug","template":"[Something] being deflected from [something]","placeholders":["toy car","mug"]}, +{"id":"94371","label":"putting bowl in front of pencil sharpener","template":"Putting [something] in front of [something]","placeholders":["bowl","pencil sharpener"]}, +{"id":"176356","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"76838","label":"showing tape behind water bottle","template":"Showing [something] behind [something]","placeholders":["tape","water bottle"]}, +{"id":"177656","label":"poking a stack of containers so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["containers"]}, +{"id":"30481","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"43477","label":"pushing table from left to right","template":"Pushing [something] from left to right","placeholders":["table"]}, +{"id":"80262","label":"showing suitcase on top of sofa","template":"Showing [something] on top of [something]","placeholders":["suitcase","sofa"]}, +{"id":"144859","label":"sprinkling water onto plants","template":"Sprinkling [something] onto [something]","placeholders":["water","plants"]}, +{"id":"177545","label":"money falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["money"]}, +{"id":"71054","label":"pushing pencil from right to left","template":"Pushing [something] from right to left","placeholders":["pencil"]}, +{"id":"12503","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"220610","label":"throwing bottleflip in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bottleflip"]}, +{"id":"154348","label":"stuffing cigarette into a pack of cigarettes","template":"Stuffing [something] into [something]","placeholders":["cigarette","a pack of cigarettes"]}, +{"id":"112848","label":"styrofoam piece falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["styrofoam piece"]}, +{"id":"11210","label":"lifting up one end of clock, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["clock"]}, +{"id":"96471","label":"pushing cellphone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cellphone"]}, +{"id":"74125","label":"turning the camera upwards while filming traffic light","template":"Turning the camera upwards while filming [something]","placeholders":["traffic light"]}, +{"id":"63204","label":"turning a stapler upside down","template":"Turning [something] upside down","placeholders":["a stapler"]}, +{"id":"51535","label":"throwing stuffed animal in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["stuffed animal"]}, +{"id":"23126","label":"turning the camera upwards while filming love birds","template":"Turning the camera upwards while filming [something]","placeholders":["love birds"]}, +{"id":"111388","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"138537","label":"laying electronic cigarette on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["electronic cigarette"]}, +{"id":"171868","label":"twisting jarlid","template":"Twisting [something]","placeholders":["jarlid"]}, +{"id":"114543","label":"moving scissors and remote control away from each other","template":"Moving [something] and [something] away from each other","placeholders":["scissors","remote control"]}, +{"id":"55927","label":"covering remote with cloth","template":"Covering [something] with [something]","placeholders":["remote","cloth"]}, +{"id":"39750","label":"holding a ball over a glass jar","template":"Holding [something] over [something]","placeholders":["a ball","a glass jar"]}, +{"id":"151631","label":"covering box with fabric","template":"Covering [something] with [something]","placeholders":["box","fabric"]}, +{"id":"5154","label":"pretending or failing to wipe marker off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"205567","label":"putting ink bottle, spanner and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["ink bottle","spanner","pen"]}, +{"id":"83098","label":"spinning charger that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["charger"]}, +{"id":"83492","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"220089","label":"squeezing cloth book","template":"Squeezing [something]","placeholders":["cloth book"]}, +{"id":"47916","label":"pushing a sharpener with a box","template":"Pushing [something] with [something]","placeholders":["a sharpener","a box"]}, +{"id":"19508","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"100122","label":"picking wiimote up","template":"Picking [something] up","placeholders":["wiimote"]}, +{"id":"60486","label":"spreading soap onto cabinet","template":"Spreading [something] onto [something]","placeholders":["soap","cabinet"]}, +{"id":"100819","label":"pulling a lighter from right to left","template":"Pulling [something] from right to left","placeholders":["a lighter"]}, +{"id":"160246","label":"a steel glass colliding with another steel glass and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a steel glass","another steel glass"]}, +{"id":"48082","label":"throwing paper onto a surface","template":"Throwing [something] onto a surface","placeholders":["paper"]}, +{"id":"115764","label":"dropping a coin next to a matchbox","template":"Dropping [something] next to [something]","placeholders":["a coin","a matchbox"]}, +{"id":"124748","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"181866","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"166720","label":"throwing water bottle in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["water bottle"]}, +{"id":"84385","label":"taking pen out of holder","template":"Taking [something] out of [something]","placeholders":["pen","holder"]}, +{"id":"10025","label":"dropping pen behind box","template":"Dropping [something] behind [something]","placeholders":["pen","box"]}, +{"id":"107887","label":"lifting up one end of wood log without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["wood log"]}, +{"id":"28043","label":"turning bag upside down","template":"Turning [something] upside down","placeholders":["bag"]}, +{"id":"28140","label":"taking mice from table","template":"Taking [something] from [somewhere]","placeholders":["mice","table"]}, +{"id":"220250","label":"throwing soft toy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["soft toy"]}, +{"id":"167745","label":"throwing earcup in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["earcup"]}, +{"id":"66877","label":"tilting block with box on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["block","box"]}, +{"id":"169163","label":"dropping duster next to green bowl","template":"Dropping [something] next to [something]","placeholders":["duster","green bowl"]}, +{"id":"171217","label":"pushing duster so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["duster"]}, +{"id":"166717","label":"dropping scoop in front of canister","template":"Dropping [something] in front of [something]","placeholders":["scoop","canister"]}, +{"id":"101523","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"145958","label":"showing mobile to the camera","template":"Showing [something] to the camera","placeholders":["mobile"]}, +{"id":"78430","label":"pretending to sprinkle air onto floor","template":"Pretending to sprinkle air onto [something]","placeholders":["floor"]}, +{"id":"108720","label":"uncovering wifi pod","template":"Uncovering [something]","placeholders":["wifi pod"]}, +{"id":"56254","label":"closing basket","template":"Closing [something]","placeholders":["basket"]}, +{"id":"84500","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"190818","label":"poking mobile battery so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["mobile battery"]}, +{"id":"98897","label":"picking flowers up","template":"Picking [something] up","placeholders":["flowers"]}, +{"id":"212171","label":"dropping paint brush behind paper holder","template":"Dropping [something] behind [something]","placeholders":["paint brush","paper holder"]}, +{"id":"199147","label":"digging a piece of garlic out of rice","template":"Digging [something] out of [something]","placeholders":["a piece of garlic","rice"]}, +{"id":"170439","label":"squeezing pig","template":"Squeezing [something]","placeholders":["pig"]}, +{"id":"54508","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"21482","label":"hitting food container with sandal","template":"Hitting [something] with [something]","placeholders":["food container","sandal"]}, +{"id":"203","label":"putting a bowl on a surface","template":"Putting [something] on a surface","placeholders":["a bowl"]}, +{"id":"156106","label":"turning the camera downwards while filming rice cooker","template":"Turning the camera downwards while filming [something]","placeholders":["rice cooker"]}, +{"id":"126638","label":"pulling cloth from behind of pillow","template":"Pulling [something] from behind of [something]","placeholders":["cloth","pillow"]}, +{"id":"32235","label":"moving cup and wallet so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["cup","wallet"]}, +{"id":"174895","label":"lifting water jug up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["water jug"]}, +{"id":"156949","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"155958","label":"pushing white book marker from left to right","template":"Pushing [something] from left to right","placeholders":["white book marker"]}, +{"id":"65402","label":"pretending to turn orange bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["orange bowl"]}, +{"id":"164692","label":"pretending to squeeze box","template":"Pretending to squeeze [something]","placeholders":["box"]}, +{"id":"81282","label":"covering a green container with a yellow saucer","template":"Covering [something] with [something]","placeholders":["a green container","a yellow saucer"]}, +{"id":"189851","label":"covering book with cloth","template":"Covering [something] with [something]","placeholders":["book","cloth"]}, +{"id":"141659","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"56007","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"207869","label":"holding fishfood over the fish tank","template":"Holding [something] over [something]","placeholders":["fishfood","the fish tank"]}, +{"id":"7167","label":"holding banana next to paper","template":"Holding [something] next to [something]","placeholders":["banana","paper"]}, +{"id":"66668","label":"moving perfume bottle away from toy","template":"Moving [something] away from [something]","placeholders":["perfume bottle","toy"]}, +{"id":"51263","label":"dropping snus into snusdisk","template":"Dropping [something] into [something]","placeholders":["snus","snusdisk"]}, +{"id":"213148","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"164228","label":"holding bottle in front of bag pack","template":"Holding [something] in front of [something]","placeholders":["bottle","bag pack"]}, +{"id":"32764","label":"trying but failing to attach paper towel to spoon because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["paper towel","spoon"]}, +{"id":"220735","label":"pushing a chair with a foot","template":"Pushing [something] with [something]","placeholders":["a chair","a foot"]}, +{"id":"136879","label":"holding a shirt in front of a tv screen","template":"Holding [something] in front of [something]","placeholders":["a shirt","a tv screen"]}, +{"id":"38718","label":"holding paper over flame","template":"Holding [something] over [something]","placeholders":["paper","flame"]}, +{"id":"112775","label":"turning the camera right while filming rice cooker","template":"Turning the camera right while filming [something]","placeholders":["rice cooker"]}, +{"id":"167567","label":"moving remote down","template":"Moving [something] down","placeholders":["remote"]}, +{"id":"11238","label":"pushing a tenis ball so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a tenis ball"]}, +{"id":"141791","label":"pouring something out of something","template":"Pouring [something] out of [something]","placeholders":["something","something"]}, +{"id":"119133","label":"holding mobile in front of pillows","template":"Holding [something] in front of [something]","placeholders":["mobile","pillows"]}, +{"id":"152602","label":"pouring orange juice into cup","template":"Pouring [something] into [something]","placeholders":["orange juice","cup"]}, +{"id":"178922","label":"bending flexible microphone so that it deforms","template":"Bending [something] so that it deforms","placeholders":["flexible microphone"]}, +{"id":"108814","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"142102","label":"pushing cap so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cap"]}, +{"id":"77633","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"147975","label":"pretending to sprinkle air onto plate","template":"Pretending to sprinkle air onto [something]","placeholders":["plate"]}, +{"id":"2445","label":"throwing a cushion against a wall","template":"Throwing [something] against [something]","placeholders":["a cushion","a wall"]}, +{"id":"82500","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"161652","label":"squeezing baloon","template":"Squeezing [something]","placeholders":["baloon"]}, +{"id":"128059","label":"pushing a bottle of pills so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle of pills"]}, +{"id":"179371","label":"throwing nutrition bar in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["nutrition bar"]}, +{"id":"78404","label":"lifting iphone with sock on it","template":"Lifting [something] with [something] on it","placeholders":["iphone","sock"]}, +{"id":"93635","label":"covering plush doll with paper","template":"Covering [something] with [something]","placeholders":["plush doll","paper"]}, +{"id":"11436","label":"covering an apple with a bowl","template":"Covering [something] with [something]","placeholders":["an apple","a bowl"]}, +{"id":"164404","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"158423","label":"moving cd and cd away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cd","cd"]}, +{"id":"166600","label":"pushing compressed fuel can so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["compressed fuel can"]}, +{"id":"172414","label":"holding toothbrush over toothpaste","template":"Holding [something] over [something]","placeholders":["toothbrush","toothpaste"]}, +{"id":"62634","label":"pulling small sharpener from left to right","template":"Pulling [something] from left to right","placeholders":["small sharpener"]}, +{"id":"144516","label":"plugging a light plug into a standard socket","template":"Plugging [something] into [something]","placeholders":["a light plug","a standard socket"]}, +{"id":"107143","label":"poking a stack of dice so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["dice"]}, +{"id":"186059","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"168735","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"136630","label":"putting a deodorant next to a glas","template":"Putting [something] next to [something]","placeholders":["a deodorant","a glas"]}, +{"id":"34499","label":"pretending to turn milk cup upside down","template":"Pretending to turn [something] upside down","placeholders":["milk cup"]}, +{"id":"202946","label":"putting a color into a container","template":"Putting [something] into [something]","placeholders":["a color","a container"]}, +{"id":"130936","label":"twisting (wringing) cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["cloth"]}, +{"id":"182045","label":"pushing book so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["book"]}, +{"id":"145467","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"70828","label":"moving compass up","template":"Moving [something] up","placeholders":["compass"]}, +{"id":"149101","label":"closing piller","template":"Closing [something]","placeholders":["piller"]}, +{"id":"6744","label":"pushing a stapler so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a stapler"]}, +{"id":"44324","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"94411","label":"touching (without moving) computermaus of computermaus","template":"Touching (without moving) [part] of [something]","placeholders":["computermaus","computermaus"]}, +{"id":"26824","label":"lifting bowl with book on it","template":"Lifting [something] with [something] on it","placeholders":["bowl","book"]}, +{"id":"188310","label":"failing to put something into something because something does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["something","something","something"]}, +{"id":"201048","label":"moving wallet closer to coaster","template":"Moving [something] closer to [something]","placeholders":["wallet","coaster"]}, +{"id":"179807","label":"holding lighter next to lamp","template":"Holding [something] next to [something]","placeholders":["lighter","lamp"]}, +{"id":"91016","label":"moving green toy car and white toy car so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["green toy car","white toy car"]}, +{"id":"136827","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"116414","label":"stuffing bags into another plastic bag","template":"Stuffing [something] into [something]","placeholders":["bags","another plastic bag"]}, +{"id":"153581","label":"taking brush from table","template":"Taking [something] from [somewhere]","placeholders":["brush","table"]}, +{"id":"57279","label":"throwing a soft toy in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a soft toy"]}, +{"id":"185793","label":"wiping marker off of whiteboard","template":"Wiping [something] off of [something]","placeholders":["marker","whiteboard"]}, +{"id":"61667","label":"pretending to put play-doh into mug","template":"Pretending to put [something] into [something]","placeholders":["play-doh","mug"]}, +{"id":"22957","label":"lifting paper with chalk on it","template":"Lifting [something] with [something] on it","placeholders":["paper","chalk"]}, +{"id":"149075","label":"picking a wallet up","template":"Picking [something] up","placeholders":["a wallet"]}, +{"id":"6597","label":"plugging a cable into a phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cable","a phone"]}, +{"id":"220074","label":"plugging cable into laptop","template":"Plugging [something] into [something]","placeholders":["cable","laptop"]}, +{"id":"97455","label":"dropping a screwdriver behind a box","template":"Dropping [something] behind [something]","placeholders":["a screwdriver","a box"]}, +{"id":"181038","label":"twisting (wringing) a piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a piece of cloth"]}, +{"id":"145321","label":"twisting a water bottle","template":"Twisting [something]","placeholders":["a water bottle"]}, +{"id":"60451","label":"plugging charger into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall"]}, +{"id":"65362","label":"hitting a book with a water bottle","template":"Hitting [something] with [something]","placeholders":["a book","a water bottle"]}, +{"id":"41431","label":"poking a marker so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a marker"]}, +{"id":"161318","label":"spinning bottel that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottel"]}, +{"id":"68894","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"175985","label":"squeezing a cloth cushion","template":"Squeezing [something]","placeholders":["a cloth cushion"]}, +{"id":"1793","label":"spinning quarter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["quarter"]}, +{"id":"13950","label":"putting bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle"]}, +{"id":"109339","label":"dropping a toothbrush in front of a box","template":"Dropping [something] in front of [something]","placeholders":["a toothbrush","a box"]}, +{"id":"30062","label":"holding plastic flower","template":"Holding [something]","placeholders":["plastic flower"]}, +{"id":"1942","label":"stuffing tobacco into packet","template":"Stuffing [something] into [something]","placeholders":["tobacco","packet"]}, +{"id":"179153","label":"putting a cup behind the mobile phone","template":"Putting [something] behind [something]","placeholders":["a cup","the mobile phone"]}, +{"id":"126515","label":"pretending to be tearing plastic-cover","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic-cover"]}, +{"id":"159183","label":"moving candle and candle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["candle","candle"]}, +{"id":"214331","label":"moving phone and stand away from each other","template":"Moving [something] and [something] away from each other","placeholders":["phone","stand"]}, +{"id":"2196","label":"turning the camera right while filming pink water bottle","template":"Turning the camera right while filming [something]","placeholders":["pink water bottle"]}, +{"id":"59886","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"194794","label":"moving a book and a book closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a book","a book"]}, +{"id":"153874","label":"turning the camera downwards while filming bulb light","template":"Turning the camera downwards while filming [something]","placeholders":["bulb light"]}, +{"id":"210486","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"127756","label":"putting 2 violet colour pocket foldable knives onto white container","template":"Putting [number of] [something] onto [something]","placeholders":["2","violet colour pocket foldable knives","white container"]}, +{"id":"53743","label":"holding frock behind chair","template":"Holding [something] behind [something]","placeholders":["frock","chair"]}, +{"id":"164854","label":"moving jar closer to jar","template":"Moving [something] closer to [something]","placeholders":["jar","jar"]}, +{"id":"178974","label":"opening a board game","template":"Opening [something]","placeholders":["a board game"]}, +{"id":"21240","label":"rolling a spray-paint can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray-paint can"]}, +{"id":"228","label":"plugging usb into computer","template":"Plugging [something] into [something]","placeholders":["usb","computer"]}, +{"id":"65596","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"149858","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"66273","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"138651","label":"taking card out of box","template":"Taking [something] out of [something]","placeholders":["card","box"]}, +{"id":"129907","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"144433","label":"showing that fidget spinner is inside box","template":"Showing that [something] is inside [something]","placeholders":["fidget spinner","box"]}, +{"id":"115971","label":"closing book","template":"Closing [something]","placeholders":["book"]}, +{"id":"120937","label":"tearing orange paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["orange paper"]}, +{"id":"33763","label":"putting 2 pebbles onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["2","pebbles","cookie box lid"]}, +{"id":"183965","label":"turning a pillow upside down","template":"Turning [something] upside down","placeholders":["a pillow"]}, +{"id":"219711","label":"pushing soft tissue roll from right to left","template":"Pushing [something] from right to left","placeholders":["soft tissue roll"]}, +{"id":"126010","label":"closing a laptop","template":"Closing [something]","placeholders":["a laptop"]}, +{"id":"108632","label":"holding cup over table","template":"Holding [something] over [something]","placeholders":["cup","table"]}, +{"id":"12383","label":"dropping marker onto rug","template":"Dropping [something] onto [something]","placeholders":["marker","rug"]}, +{"id":"62421","label":"squeezing an open disposable water bottle","template":"Squeezing [something]","placeholders":["an open disposable water bottle"]}, +{"id":"123882","label":"showing scissor behind glass","template":"Showing [something] behind [something]","placeholders":["scissor","glass"]}, +{"id":"95303","label":"poking tree so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["tree"]}, +{"id":"58143","label":"putting a smartphone next to a glue stick","template":"Putting [something] next to [something]","placeholders":["a smartphone","a glue stick"]}, +{"id":"90590","label":"putting ball point pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["ball point pen"]}, +{"id":"163180","label":"pushing a fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["a fidget spinner"]}, +{"id":"141045","label":"dropping a pen next to a pencil case","template":"Dropping [something] next to [something]","placeholders":["a pen","a pencil case"]}, +{"id":"26724","label":"putting dvds with dvds","template":"Putting [something similar to other things that are already on the table]","placeholders":["dvds with dvds"]}, +{"id":"139278","label":"closing the door","template":"Closing [something]","placeholders":["the door"]}, +{"id":"207594","label":"putting screwdriver into the case","template":"Putting [something] into [something]","placeholders":["screwdriver","the case"]}, +{"id":"144698","label":"holding keys behind bag","template":"Holding [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"218761","label":"putting a water canteen upright on the table","template":"Putting [something] upright on the table","placeholders":["a water canteen"]}, +{"id":"140002","label":"lifting up one end of pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pen"]}, +{"id":"44147","label":"throwing remote in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["remote"]}, +{"id":"7408","label":"a small bottle colliding with another bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a small bottle","another bottle"]}, +{"id":"213560","label":"putting wine key upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["wine key"]}, +{"id":"220522","label":"failing to put bottle into teacup because bottle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["bottle","teacup","bottle"]}, +{"id":"149555","label":"showing a water bottle next to a foot","template":"Showing [something] next to [something]","placeholders":["a water bottle","a foot"]}, +{"id":"193921","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"64435","label":"squeezing pink box","template":"Squeezing [something]","placeholders":["pink box"]}, +{"id":"86333","label":"pulling mug from left to right","template":"Pulling [something] from left to right","placeholders":["mug"]}, +{"id":"74428","label":"pulling hair oil from left to right","template":"Pulling [something] from left to right","placeholders":["hair oil"]}, +{"id":"65522","label":"stuffing money into wallet","template":"Stuffing [something] into [something]","placeholders":["money","wallet"]}, +{"id":"37869","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"148962","label":"dropping key onto floor","template":"Dropping [something] onto [something]","placeholders":["key","floor"]}, +{"id":"141286","label":"putting power bank, rubix cube and a musical tabala on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["power bank","rubix cube","a musical tabala"]}, +{"id":"127861","label":"hitting a glass with spoon","template":"Hitting [something] with [something]","placeholders":["a glass","spoon"]}, +{"id":"211740","label":"pretending to turn green water bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["green water bottle"]}, +{"id":"185672","label":"putting a pencil upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pencil"]}, +{"id":"55129","label":"sprinkling lime juice onto a bowl of tomatoes","template":"Sprinkling [something] onto [something]","placeholders":["lime juice","a bowl of tomatoes"]}, +{"id":"104299","label":"dropping bottle next to folder","template":"Dropping [something] next to [something]","placeholders":["bottle","folder"]}, +{"id":"114782","label":"approaching tv dish antenna with your camera","template":"Approaching [something] with your camera","placeholders":["tv dish antenna"]}, +{"id":"132977","label":"wiping dry erase marker off of a marker board","template":"Wiping [something] off of [something]","placeholders":["dry erase marker","a marker board"]}, +{"id":"27457","label":"pushing cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["cup"]}, +{"id":"208059","label":"scooping wallet up with hands","template":"Scooping [something] up with [something]","placeholders":["wallet","hands"]}, +{"id":"128849","label":"pushing a can of nuts so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a can of nuts"]}, +{"id":"105848","label":"pouring water into bucket","template":"Pouring [something] into [something]","placeholders":["water","bucket"]}, +{"id":"16831","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"146444","label":"moving a coaster down","template":"Moving [something] down","placeholders":["a coaster"]}, +{"id":"165483","label":"cigarette falling like a rock","template":"[Something] falling like a rock","placeholders":["cigarette"]}, +{"id":"164009","label":"throwing cotton ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["cotton ball"]}, +{"id":"93316","label":"moving stopper up","template":"Moving [something] up","placeholders":["stopper"]}, +{"id":"201441","label":"spilling coconut water onto placemat","template":"Spilling [something] onto [something]","placeholders":["coconut water","placemat"]}, +{"id":"64881","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"184721","label":"pulling black pouch bag from right to left","template":"Pulling [something] from right to left","placeholders":["black pouch bag"]}, +{"id":"52185","label":"uncovering briefcase","template":"Uncovering [something]","placeholders":["briefcase"]}, +{"id":"129049","label":"throwing umbrella in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["umbrella"]}, +{"id":"189592","label":"closing candle tin","template":"Closing [something]","placeholders":["candle tin"]}, +{"id":"191302","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"195493","label":"bending folder so that it deforms","template":"Bending [something] so that it deforms","placeholders":["folder"]}, +{"id":"138069","label":"pulling white deodorant from left to right","template":"Pulling [something] from left to right","placeholders":["white deodorant"]}, +{"id":"36982","label":"dropping bicycle-bell next to door-bell","template":"Dropping [something] next to [something]","placeholders":["bicycle-bell","door-bell"]}, +{"id":"47193","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"33186","label":"pulling towel from left to right","template":"Pulling [something] from left to right","placeholders":["towel"]}, +{"id":"143902","label":"putting a spoon next to a mug","template":"Putting [something] next to [something]","placeholders":["a spoon","a mug"]}, +{"id":"153769","label":"pushing earring from right to left","template":"Pushing [something] from right to left","placeholders":["earring"]}, +{"id":"12097","label":"pulling handphone from right to left","template":"Pulling [something] from right to left","placeholders":["handphone"]}, +{"id":"80552","label":"moving cycle towards the camera","template":"Moving [something] towards the camera","placeholders":["cycle"]}, +{"id":"14875","label":"attaching something to something","template":"Attaching [something] to [something]","placeholders":["something","something"]}, +{"id":"163064","label":"poking toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["toy"]}, +{"id":"61011","label":"throwing sandal onto a surface","template":"Throwing [something] onto a surface","placeholders":["sandal"]}, +{"id":"61770","label":"dropping a sharpener next to an envelope","template":"Dropping [something] next to [something]","placeholders":["a sharpener","an envelope"]}, +{"id":"89328","label":"opening piano","template":"Opening [something]","placeholders":["piano"]}, +{"id":"15441","label":"attaching a pendrive to a laptop","template":"Attaching [something] to [something]","placeholders":["a pendrive","a laptop"]}, +{"id":"82952","label":"dropping game onto paper","template":"Dropping [something] onto [something]","placeholders":["game","paper"]}, +{"id":"209613","label":"tilting iphone with sock on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["iphone","sock"]}, +{"id":"154002","label":"moving a bottle away from the camera","template":"Moving [something] away from the camera","placeholders":["a bottle"]}, +{"id":"125648","label":"pushing bottle glass so it spins","template":"Pushing [something] so it spins","placeholders":["bottle glass"]}, +{"id":"164387","label":"holding a box next to a box","template":"Holding [something] next to [something]","placeholders":["a box","a box"]}, +{"id":"92122","label":"showing pen behind ring","template":"Showing [something] behind [something]","placeholders":["pen","ring"]}, +{"id":"122108","label":"taking the key out of the glass","template":"Taking [something] out of [something]","placeholders":["the key","the glass"]}, +{"id":"203130","label":"attaching a toy frog to a white board","template":"Attaching [something] to [something]","placeholders":["a toy frog","a white board"]}, +{"id":"207937","label":"pulling a pen out of a shoe","template":"Pulling [something] out of [something]","placeholders":["a pen","a shoe"]}, +{"id":"119827","label":"tearing a coupon into two pieces","template":"Tearing [something] into two pieces","placeholders":["a coupon"]}, +{"id":"92486","label":"uncovering pillow","template":"Uncovering [something]","placeholders":["pillow"]}, +{"id":"16052","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"86284","label":"putting tube into box","template":"Putting [something] into [something]","placeholders":["tube","box"]}, +{"id":"15031","label":"putting glass into bowl","template":"Putting [something] into [something]","placeholders":["glass","bowl"]}, +{"id":"42625","label":"pretending to pick a bottle up","template":"Pretending to pick [something] up","placeholders":["a bottle"]}, +{"id":"147276","label":"moving a toy car and a fridge magnet closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a toy car","a fridge magnet"]}, +{"id":"189044","label":"uncovering shoelaces","template":"Uncovering [something]","placeholders":["shoelaces"]}, +{"id":"182162","label":"dropping bra onto bed","template":"Dropping [something] onto [something]","placeholders":["bra","bed"]}, +{"id":"18151","label":"poly-bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["poly-bag"]}, +{"id":"126188","label":"taking a pencil","template":"Taking [one of many similar things on the table]","placeholders":["a pencil"]}, +{"id":"44728","label":"showing spray behind vial","template":"Showing [something] behind [something]","placeholders":["spray","vial"]}, +{"id":"3274","label":"showing that the box is empty","template":"Showing that [something] is empty","placeholders":["the box"]}, +{"id":"19571","label":"pouring water into pan","template":"Pouring [something] into [something]","placeholders":["water","pan"]}, +{"id":"202641","label":"pushing green bowl from left to right","template":"Pushing [something] from left to right","placeholders":["green bowl"]}, +{"id":"53427","label":"turning the camera right while filming globe","template":"Turning the camera right while filming [something]","placeholders":["globe"]}, +{"id":"120525","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"182865","label":"pushing key so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["key"]}, +{"id":"34326","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"38665","label":"pretending to be tearing box cape","template":"Pretending to be tearing [something that is not tearable]","placeholders":["box cape"]}, +{"id":"124082","label":"turning the camera upwards while filming chair","template":"Turning the camera upwards while filming [something]","placeholders":["chair"]}, +{"id":"127120","label":"showing comb behind necklace","template":"Showing [something] behind [something]","placeholders":["comb","necklace"]}, +{"id":"181877","label":"pushing an owl so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["an owl"]}, +{"id":"155379","label":"piling plates up","template":"Piling [something] up","placeholders":["plates"]}, +{"id":"83394","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"138819","label":"turning the camera right while filming iron","template":"Turning the camera right while filming [something]","placeholders":["iron"]}, +{"id":"183440","label":"holding case next to speaker","template":"Holding [something] next to [something]","placeholders":["case","speaker"]}, +{"id":"201061","label":"pretending to open waterbottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["waterbottle"]}, +{"id":"156724","label":"stuffing bags into plastic bag","template":"Stuffing [something] into [something]","placeholders":["bags","plastic bag"]}, +{"id":"28235","label":"spilling water next to a pin","template":"Spilling [something] next to [something]","placeholders":["water","a pin"]}, +{"id":"219756","label":"holding knife in front of ball","template":"Holding [something] in front of [something]","placeholders":["knife","ball"]}, +{"id":"85171","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"209702","label":"moving cup and jug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cup","jug"]}, +{"id":"40175","label":"lifting a notebook with a screwdriver on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a screwdriver"]}, +{"id":"181958","label":"approaching rice cooker with your camera","template":"Approaching [something] with your camera","placeholders":["rice cooker"]}, +{"id":"66696","label":"throwing wallet","template":"Throwing [something]","placeholders":["wallet"]}, +{"id":"152807","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"43069","label":"dropping a box in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a box","a cup"]}, +{"id":"219576","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"142086","label":"putting keys into bag","template":"Putting [something] into [something]","placeholders":["keys","bag"]}, +{"id":"6813","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"108618","label":"pushing face wash so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["face wash"]}, +{"id":"97537","label":"unfolding business card","template":"Unfolding [something]","placeholders":["business card"]}, +{"id":"68409","label":"pouring orange juice into a cup","template":"Pouring [something] into [something]","placeholders":["orange juice","a cup"]}, +{"id":"35727","label":"opening refridgerator","template":"Opening [something]","placeholders":["refridgerator"]}, +{"id":"56453","label":"moving stapler up","template":"Moving [something] up","placeholders":["stapler"]}, +{"id":"214882","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"179758","label":"turning the camera downwards while filming flower","template":"Turning the camera downwards while filming [something]","placeholders":["flower"]}, +{"id":"87181","label":"holding onion in front of grater","template":"Holding [something] in front of [something]","placeholders":["onion","grater"]}, +{"id":"110654","label":"dropping stopper onto sink","template":"Dropping [something] onto [something]","placeholders":["stopper","sink"]}, +{"id":"96956","label":"holding a statue over a container","template":"Holding [something] over [something]","placeholders":["a statue","a container"]}, +{"id":"202701","label":"holding powder bottle in front of paint bottle","template":"Holding [something] in front of [something]","placeholders":["powder bottle","paint bottle"]}, +{"id":"88569","label":"lifting up one end of eye glasses, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["eye glasses"]}, +{"id":"128039","label":"hitting a table fan with a scissor","template":"Hitting [something] with [something]","placeholders":["a table fan","a scissor"]}, +{"id":"43078","label":"pretending to take pills out of box","template":"Pretending to take [something] out of [something]","placeholders":["pills","box"]}, +{"id":"52285","label":"stacking five xbox games","template":"Stacking [number of] [something]","placeholders":["five","xbox games"]}, +{"id":"7182","label":"pretending to put book onto bottle","template":"Pretending to put [something] onto [something]","placeholders":["book","bottle"]}, +{"id":"202783","label":"pretending to throw knife","template":"Pretending to throw [something]","placeholders":["knife"]}, +{"id":"23695","label":"turning the camera downwards while filming one tea light candle","template":"Turning the camera downwards while filming [something]","placeholders":["one tea light candle"]}, +{"id":"161352","label":"pretending to pick fruit up","template":"Pretending to pick [something] up","placeholders":["fruit"]}, +{"id":"15445","label":"twisting pepper grinder","template":"Twisting [something]","placeholders":["pepper grinder"]}, +{"id":"209176","label":"lifting punching machine up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["punching machine"]}, +{"id":"128802","label":"showing a photo of my friends to the camera","template":"Showing a photo of [something] to the camera","placeholders":["my friends"]}, +{"id":"205766","label":"showing renault logo to the camera","template":"Showing [something] to the camera","placeholders":["renault logo"]}, +{"id":"185326","label":"pretending to pick elephant statue up","template":"Pretending to pick [something] up","placeholders":["elephant statue"]}, +{"id":"167111","label":"showing fire box behind water bottle","template":"Showing [something] behind [something]","placeholders":["fire box","water bottle"]}, +{"id":"199029","label":"pouring water into floor","template":"Pouring [something] into [something]","placeholders":["water","floor"]}, +{"id":"81777","label":"a peg being deflected from a cup","template":"[Something] being deflected from [something]","placeholders":["a peg","a cup"]}, +{"id":"132621","label":"showing that plastic and paper bags is inside paper bag","template":"Showing that [something] is inside [something]","placeholders":["plastic and paper bags","paper bag"]}, +{"id":"179093","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"16914","label":"putting fork on a surface","template":"Putting [something] on a surface","placeholders":["fork"]}, +{"id":"117126","label":"poking a stack of containers without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["containers"]}, +{"id":"9634","label":"putting a peg upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a peg"]}, +{"id":"99700","label":"putting punching machine and stapler on the table","template":"Putting [something] and [something] on the table","placeholders":["punching machine","stapler"]}, +{"id":"196678","label":"turning shot glass upside down","template":"Turning [something] upside down","placeholders":["shot glass"]}, +{"id":"107912","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"94289","label":"plugging plug into power outlet","template":"Plugging [something] into [something]","placeholders":["plug","power outlet"]}, +{"id":"125877","label":"lifting something up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["something"]}, +{"id":"169728","label":"moving mouse and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mouse","remote"]}, +{"id":"218384","label":"putting spoon into glass","template":"Putting [something] into [something]","placeholders":["spoon","glass"]}, +{"id":"193186","label":"rolling deodorant container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["deodorant container"]}, +{"id":"66505","label":"uncovering a notebook","template":"Uncovering [something]","placeholders":["a notebook"]}, +{"id":"171060","label":"package of gum falling like a rock","template":"[Something] falling like a rock","placeholders":["package of gum"]}, +{"id":"13689","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"44104","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"184521","label":"tilting a book with a mug on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a mug"]}, +{"id":"134823","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"68278","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"100107","label":"pushing towels so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["towels"]}, +{"id":"87459","label":"moving box and comb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["box","comb"]}, +{"id":"68776","label":"tilting a box with a ball on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a box","a ball"]}, +{"id":"62501","label":"touching (without moving) the side of a cube","template":"Touching (without moving) [part] of [something]","placeholders":["the side","a cube"]}, +{"id":"210627","label":"pretending to be tearing file","template":"Pretending to be tearing [something that is not tearable]","placeholders":["file"]}, +{"id":"166231","label":"removing mug, revealing tennisball behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","tennisball"]}, +{"id":"33814","label":"pretending to put remote into box","template":"Pretending to put [something] into [something]","placeholders":["remote","box"]}, +{"id":"3552","label":"taking scissors from chair","template":"Taking [something] from [somewhere]","placeholders":["scissors","chair"]}, +{"id":"91176","label":"pouring water into a bottle cap until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a bottle cap"]}, +{"id":"185396","label":"pretending to scoop ice-cream up with spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["ice-cream","spoon"]}, +{"id":"18048","label":"scooping tea up with teacup","template":"Scooping [something] up with [something]","placeholders":["tea","teacup"]}, +{"id":"148294","label":"putting plastic cover similar to other plastic covers that are already on the table]","template":"Putting [something similar to other things that are already on the table]","placeholders":["plastic cover similar to other plastic covers that are already on the table]"]}, +{"id":"154172","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"109507","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"100516","label":"pushing red watch case from left to right","template":"Pushing [something] from left to right","placeholders":["red watch case"]}, +{"id":"57505","label":"turning a book upside down","template":"Turning [something] upside down","placeholders":["a book"]}, +{"id":"66509","label":"showing that spectacle box is empty","template":"Showing that [something] is empty","placeholders":["spectacle box"]}, +{"id":"84387","label":"taking broom from floor","template":"Taking [something] from [somewhere]","placeholders":["broom","floor"]}, +{"id":"20005","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"7055","label":"pretending to throw bottle","template":"Pretending to throw [something]","placeholders":["bottle"]}, +{"id":"136753","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"177365","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"153539","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"88175","label":"tearing sweet packet into two pieces","template":"Tearing [something] into two pieces","placeholders":["sweet packet"]}, +{"id":"210714","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"58556","label":"holding game","template":"Holding [something]","placeholders":["game"]}, +{"id":"33539","label":"pulling swab out of pot","template":"Pulling [something] out of [something]","placeholders":["swab","pot"]}, +{"id":"11755","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"73395","label":"turning the camera right while filming house","template":"Turning the camera right while filming [something]","placeholders":["house"]}, +{"id":"175297","label":"showing bottle behind shoe","template":"Showing [something] behind [something]","placeholders":["bottle","shoe"]}, +{"id":"194882","label":"hitting table with bat","template":"Hitting [something] with [something]","placeholders":["table","bat"]}, +{"id":"220495","label":"pretending to put phone underneath mug","template":"Pretending to put [something] underneath [something]","placeholders":["phone","mug"]}, +{"id":"92283","label":"putting sunglasses on a surface","template":"Putting [something] on a surface","placeholders":["sunglasses"]}, +{"id":"129145","label":"putting a spoon into a basket","template":"Putting [something] into [something]","placeholders":["a spoon","a basket"]}, +{"id":"161926","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"6565","label":"moving a plastic bottle down","template":"Moving [something] down","placeholders":["a plastic bottle"]}, +{"id":"2799","label":"dropping pen onto table","template":"Dropping [something] onto [something]","placeholders":["pen","table"]}, +{"id":"109215","label":"poking pencil case so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["pencil case"]}, +{"id":"37952","label":"stuffing sleeping bag into its storage pocket","template":"Stuffing [something] into [something]","placeholders":["sleeping bag","its storage pocket"]}, +{"id":"211690","label":"pretending to open microwave door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["microwave door"]}, +{"id":"166890","label":"dropping cup next to cup","template":"Dropping [something] next to [something]","placeholders":["cup","cup"]}, +{"id":"173179","label":"taking glass from table","template":"Taking [something] from [somewhere]","placeholders":["glass","table"]}, +{"id":"132594","label":"covering apple with towel","template":"Covering [something] with [something]","placeholders":["apple","towel"]}, +{"id":"15770","label":"pretending to put bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottle"]}, +{"id":"6921","label":"stacking three boxes","template":"Stacking [number of] [something]","placeholders":["three","boxes"]}, +{"id":"14163","label":"picking controller up","template":"Picking [something] up","placeholders":["controller"]}, +{"id":"155052","label":"spinning something that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["something"]}, +{"id":"119790","label":"putting paper next to headphones","template":"Putting [something] next to [something]","placeholders":["paper","headphones"]}, +{"id":"71761","label":"dropping a matchbox in front of a bowl","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a bowl"]}, +{"id":"154864","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"127334","label":"taking a spoon out of a saucepan","template":"Taking [something] out of [something]","placeholders":["a spoon","a saucepan"]}, +{"id":"31443","label":"showing that paper towel is inside cup","template":"Showing that [something] is inside [something]","placeholders":["paper towel","cup"]}, +{"id":"12693","label":"pulling chair from left to right","template":"Pulling [something] from left to right","placeholders":["chair"]}, +{"id":"188748","label":"pretending to put a screwdriver onto a toolbox","template":"Pretending to put [something] onto [something]","placeholders":["a screwdriver","a toolbox"]}, +{"id":"203203","label":"plugging charger into switchboard","template":"Plugging [something] into [something]","placeholders":["charger","switchboard"]}, +{"id":"158053","label":"putting plate and glass on the table","template":"Putting [something] and [something] on the table","placeholders":["plate","glass"]}, +{"id":"107233","label":"pulling two ends of shoe but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["shoe"]}, +{"id":"32060","label":"touching (without moving) a part of post it notes","template":"Touching (without moving) [part] of [something]","placeholders":["a part","post it notes"]}, +{"id":"86680","label":"tearing newspaper just a little bit","template":"Tearing [something] just a little bit","placeholders":["newspaper"]}, +{"id":"151454","label":"pushing pink water bottle from left to right","template":"Pushing [something] from left to right","placeholders":["pink water bottle"]}, +{"id":"127647","label":"box falling like a rock","template":"[Something] falling like a rock","placeholders":["box"]}, +{"id":"164180","label":"putting a ruler and a wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["a ruler","a wallet"]}, +{"id":"162925","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"65371","label":"stacking three coins","template":"Stacking [number of] [something]","placeholders":["three","coins"]}, +{"id":"15265","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"97459","label":"twisting a doll","template":"Twisting [something]","placeholders":["a doll"]}, +{"id":"106405","label":"tearing a paper bag just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper bag"]}, +{"id":"176052","label":"moving usb cable closer to usb","template":"Moving [something] closer to [something]","placeholders":["usb cable","usb"]}, +{"id":"473","label":"pouring water onto mug","template":"Pouring [something] onto [something]","placeholders":["water","mug"]}, +{"id":"150353","label":"scooping coffee grounds up with spoon","template":"Scooping [something] up with [something]","placeholders":["coffee grounds","spoon"]}, +{"id":"69578","label":"pushing a lid so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a lid"]}, +{"id":"13773","label":"a feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a feather"]}, +{"id":"6977","label":"dropping a phone onto a folder","template":"Dropping [something] onto [something]","placeholders":["a phone","a folder"]}, +{"id":"180881","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"159107","label":"empty crisp packet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["empty crisp packet"]}, +{"id":"62609","label":"turning a mouthwash bottle upside down","template":"Turning [something] upside down","placeholders":["a mouthwash bottle"]}, +{"id":"28955","label":"putting soap that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["soap"]}, +{"id":"32167","label":"pushing bottlecap from left to right","template":"Pushing [something] from left to right","placeholders":["bottlecap"]}, +{"id":"42331","label":"putting ring behind pot","template":"Putting [something] behind [something]","placeholders":["ring","pot"]}, +{"id":"144820","label":"moving spanner down","template":"Moving [something] down","placeholders":["spanner"]}, +{"id":"34699","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"79557","label":"plugging a computer charger into a wall outlet","template":"Plugging [something] into [something]","placeholders":["a computer charger","a wall outlet"]}, +{"id":"30684","label":"tilting charger with hand on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["charger","hand"]}, +{"id":"102635","label":"pretending to close jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["jar"]}, +{"id":"121496","label":"showing a remote control next to calendar and headphones","template":"Showing [something] next to [something]","placeholders":["a remote control","calendar and headphones"]}, +{"id":"132080","label":"putting jam behind peanut butter","template":"Putting [something] behind [something]","placeholders":["jam","peanut butter"]}, +{"id":"220647","label":"pushing a bottle with a box","template":"Pushing [something] with [something]","placeholders":["a bottle","a box"]}, +{"id":"29625","label":"poking poking chapstick so it falls so that it falls over","template":"Poking [something] so that it falls over","placeholders":["poking chapstick so it falls"]}, +{"id":"164941","label":"pretending to pick phone up","template":"Pretending to pick [something] up","placeholders":["phone"]}, +{"id":"68587","label":"moving ball across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["ball"]}, +{"id":"26918","label":"pretending to be tearing a plastic bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic bag"]}, +{"id":"177779","label":"lifting up one end of a book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a book"]}, +{"id":"14227","label":"putting a mouse on a surface","template":"Putting [something] on a surface","placeholders":["a mouse"]}, +{"id":"171583","label":"pretending to squeeze toothpaste","template":"Pretending to squeeze [something]","placeholders":["toothpaste"]}, +{"id":"124554","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"123049","label":"rolling gluestick on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["gluestick"]}, +{"id":"5722","label":"pretending to pick clog up","template":"Pretending to pick [something] up","placeholders":["clog"]}, +{"id":"51220","label":"lifting up one end of shoe without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["shoe"]}, +{"id":"87423","label":"holding soldering wire reel in front of black plastic box","template":"Holding [something] in front of [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"105333","label":"tilting a book with sunglasses on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","sunglasses"]}, +{"id":"89639","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"203224","label":"covering phone cover with cloth","template":"Covering [something] with [something]","placeholders":["phone cover","cloth"]}, +{"id":"117071","label":"showing pond to the camera","template":"Showing [something] to the camera","placeholders":["pond"]}, +{"id":"74945","label":"picking tape up","template":"Picking [something] up","placeholders":["tape"]}, +{"id":"125413","label":"pushing soft elmo so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["soft elmo"]}, +{"id":"60764","label":"showing that red colour toy car is inside cookie container","template":"Showing that [something] is inside [something]","placeholders":["red colour toy car","cookie container"]}, +{"id":"71501","label":"covering board clip with cookie box lid","template":"Covering [something] with [something]","placeholders":["board clip","cookie box lid"]}, +{"id":"76555","label":"letting ball toy roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball toy"]}, +{"id":"119103","label":"putting mug in front of crayon","template":"Putting [something] in front of [something]","placeholders":["mug","crayon"]}, +{"id":"194513","label":"putting a bottle of lotion on a surface","template":"Putting [something] on a surface","placeholders":["a bottle of lotion"]}, +{"id":"4570","label":"putting a picture underneath a glass","template":"Putting [something] underneath [something]","placeholders":["a picture","a glass"]}, +{"id":"12724","label":"moving garlic presser away from the camera","template":"Moving [something] away from the camera","placeholders":["garlic presser"]}, +{"id":"28320","label":"showing punching machine next to rubix cube","template":"Showing [something] next to [something]","placeholders":["punching machine","rubix cube"]}, +{"id":"100007","label":"turning the camera right while filming park","template":"Turning the camera right while filming [something]","placeholders":["park"]}, +{"id":"184134","label":"holding mouse next to wallet","template":"Holding [something] next to [something]","placeholders":["mouse","wallet"]}, +{"id":"60290","label":"putting plastic mug on a surface","template":"Putting [something] on a surface","placeholders":["plastic mug"]}, +{"id":"70488","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"218804","label":"covering screwdriver with shirt","template":"Covering [something] with [something]","placeholders":["screwdriver","shirt"]}, +{"id":"16999","label":"picking glasses up","template":"Picking [something] up","placeholders":["glasses"]}, +{"id":"26996","label":"stuffing clothes into the dryer","template":"Stuffing [something] into [something]","placeholders":["clothes","the dryer"]}, +{"id":"57327","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"45505","label":"putting round tape on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["round tape"]}, +{"id":"191433","label":"putting a mug that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a mug"]}, +{"id":"182201","label":"holding heater over head","template":"Holding [something] over [something]","placeholders":["heater","head"]}, +{"id":"85782","label":"putting something similar to color tube","template":"Putting [something similar to other things that are already on the table]","placeholders":["something similar to color tube"]}, +{"id":"128292","label":"turning toy link upside down","template":"Turning [something] upside down","placeholders":["toy link"]}, +{"id":"4367","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"159419","label":"moving a hard drive of a server","template":"Moving [part] of [something]","placeholders":["a hard drive","a server"]}, +{"id":"17952","label":"pretending to be tearing a plastic tape","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a plastic tape"]}, +{"id":"126580","label":"taking a coin from a bowl","template":"Taking [something] from [somewhere]","placeholders":["a coin","a bowl"]}, +{"id":"73787","label":"lifting firm plastic up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["firm plastic"]}, +{"id":"207565","label":"stacking 4 candles","template":"Stacking [number of] [something]","placeholders":["4","candles"]}, +{"id":"141215","label":"lifting up one end of nail file, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["nail file"]}, +{"id":"120453","label":"twisting a watering pipe","template":"Twisting [something]","placeholders":["a watering pipe"]}, +{"id":"91402","label":"moving bottle and bowl away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","bowl"]}, +{"id":"104802","label":"holding pen behind handbag","template":"Holding [something] behind [something]","placeholders":["pen","handbag"]}, +{"id":"187794","label":"putting cloth, battery and packing tape on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["cloth","battery","packing tape"]}, +{"id":"115479","label":"poking a hole into hair gel","template":"Poking a hole into [some substance]","placeholders":["hair gel"]}, +{"id":"133546","label":"pushing a box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a box"]}, +{"id":"109472","label":"plugging phone charger into wall outlet","template":"Plugging [something] into [something]","placeholders":["phone charger","wall outlet"]}, +{"id":"217753","label":"plugging charger into wall","template":"Plugging [something] into [something]","placeholders":["charger","wall"]}, +{"id":"209716","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"144619","label":"throwing dvd case onto a surface","template":"Throwing [something] onto a surface","placeholders":["dvd case"]}, +{"id":"156164","label":"opening a cardboard container","template":"Opening [something]","placeholders":["a cardboard container"]}, +{"id":"146236","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"64277","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"76966","label":"pretending to be tearing plastic bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic bottle"]}, +{"id":"143456","label":"pushing bag of chips so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bag of chips"]}, +{"id":"28699","label":"a ball colliding with a ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a ball","a ball"]}, +{"id":"45515","label":"dropping envelopes next to candle","template":"Dropping [something] next to [something]","placeholders":["envelopes","candle"]}, +{"id":"218831","label":"putting comb into cup","template":"Putting [something] into [something]","placeholders":["comb","cup"]}, +{"id":"218317","label":"tearing tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing paper"]}, +{"id":"89711","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"81964","label":"plugging a head phones cable into an ipad","template":"Plugging [something] into [something]","placeholders":["a head phones cable","an ipad"]}, +{"id":"104650","label":"moving caserole dish away from caserole dish","template":"Moving [something] away from [something]","placeholders":["caserole dish","caserole dish"]}, +{"id":"152011","label":"laying a cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a cup"]}, +{"id":"175601","label":"letting hair cream roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["hair cream"]}, +{"id":"50154","label":"stacking four books","template":"Stacking [number of] [something]","placeholders":["four","books"]}, +{"id":"115762","label":"opening diary","template":"Opening [something]","placeholders":["diary"]}, +{"id":"47975","label":"opening water bottle","template":"Opening [something]","placeholders":["water bottle"]}, +{"id":"27192","label":"stuffing cotton into toy duck","template":"Stuffing [something] into [something]","placeholders":["cotton","toy duck"]}, +{"id":"135690","label":"spinning bangle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bangle"]}, +{"id":"10433","label":"putting cow that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["cow"]}, +{"id":"1077","label":"dropping a matchstick into a bowl","template":"Dropping [something] into [something]","placeholders":["a matchstick","a bowl"]}, +{"id":"57796","label":"dropping pen next to box","template":"Dropping [something] next to [something]","placeholders":["pen","box"]}, +{"id":"100933","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"145101","label":"squeezing cleaning cloth","template":"Squeezing [something]","placeholders":["cleaning cloth"]}, +{"id":"73235","label":"pretending to put stick on a surface","template":"Pretending to put [something] on a surface","placeholders":["stick"]}, +{"id":"22754","label":"pushing bottled water so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottled water"]}, +{"id":"132509","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"197582","label":"closing window","template":"Closing [something]","placeholders":["window"]}, +{"id":"20943","label":"turning small book upside down","template":"Turning [something] upside down","placeholders":["small book"]}, +{"id":"22848","label":"pretending to open the microwave without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["the microwave"]}, +{"id":"58339","label":"pouring water out of a glass","template":"Pouring [something] out of [something]","placeholders":["water","a glass"]}, +{"id":"44059","label":"letting tube roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["tube"]}, +{"id":"133154","label":"turning water botle upside down","template":"Turning [something] upside down","placeholders":["water botle"]}, +{"id":"1800","label":"pushing sunglasses so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["sunglasses"]}, +{"id":"194291","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"79403","label":"showing waterbottle to the camera","template":"Showing [something] to the camera","placeholders":["waterbottle"]}, +{"id":"162728","label":"pulling two ends of a lighter but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a lighter"]}, +{"id":"214693","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"156292","label":"pulling emblem from left to right","template":"Pulling [something] from left to right","placeholders":["emblem"]}, +{"id":"23209","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"132011","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"105956","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"161610","label":"putting mug in front of clip","template":"Putting [something] in front of [something]","placeholders":["mug","clip"]}, +{"id":"103127","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"102047","label":"showing a photo of ladies to the camera","template":"Showing a photo of [something] to the camera","placeholders":["ladies"]}, +{"id":"127812","label":"plugging cord into wall plug","template":"Plugging [something] into [something]","placeholders":["cord","wall plug"]}, +{"id":"138173","label":"holding spray behind christmas tree","template":"Holding [something] behind [something]","placeholders":["spray","christmas tree"]}, +{"id":"123079","label":"picking bottle up","template":"Picking [something] up","placeholders":["bottle"]}, +{"id":"184347","label":"uncovering mobile","template":"Uncovering [something]","placeholders":["mobile"]}, +{"id":"42048","label":"uncovering matchbox","template":"Uncovering [something]","placeholders":["matchbox"]}, +{"id":"127270","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"217193","label":"spilling water next to bucket","template":"Spilling [something] next to [something]","placeholders":["water","bucket"]}, +{"id":"103846","label":"holding frisbee next to necklace","template":"Holding [something] next to [something]","placeholders":["frisbee","necklace"]}, +{"id":"145526","label":"spoon colliding with spoon and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["spoon","spoon"]}, +{"id":"202832","label":"pretending to sprinkle air onto table","template":"Pretending to sprinkle air onto [something]","placeholders":["table"]}, +{"id":"214510","label":"plugging toaster into wall outlet","template":"Plugging [something] into [something]","placeholders":["toaster","wall outlet"]}, +{"id":"76799","label":"folding 50 peso bill","template":"Folding [something]","placeholders":["50 peso bill"]}, +{"id":"212740","label":"putting remote, cream tube and candle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote","cream tube","candle"]}, +{"id":"51799","label":"showing lamp behind books","template":"Showing [something] behind [something]","placeholders":["lamp","books"]}, +{"id":"158105","label":"pretending to squeeze can","template":"Pretending to squeeze [something]","placeholders":["can"]}, +{"id":"135075","label":"ball being deflected from cup","template":"[Something] being deflected from [something]","placeholders":["ball","cup"]}, +{"id":"159132","label":"wiping water off of wall","template":"Wiping [something] off of [something]","placeholders":["water","wall"]}, +{"id":"77459","label":"rolling candle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["candle"]}, +{"id":"83706","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"28397","label":"moving game up","template":"Moving [something] up","placeholders":["game"]}, +{"id":"46424","label":"throwing rolled paper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["rolled paper"]}, +{"id":"80494","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"46799","label":"poking a plastic bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a plastic bottle"]}, +{"id":"129306","label":"pushing a marker off of books","template":"Pushing [something] off of [something]","placeholders":["a marker","books"]}, +{"id":"130688","label":"covering phone with hand","template":"Covering [something] with [something]","placeholders":["phone","hand"]}, +{"id":"166547","label":"trying to pour water into bowl, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bowl"]}, +{"id":"91042","label":"opening wallet","template":"Opening [something]","placeholders":["wallet"]}, +{"id":"215601","label":"putting dishwashing liquid and cup on the table","template":"Putting [something] and [something] on the table","placeholders":["dishwashing liquid","cup"]}, +{"id":"72176","label":"holding bottle over scissors","template":"Holding [something] over [something]","placeholders":["bottle","scissors"]}, +{"id":"67672","label":"turning the camera left while filming sugar container","template":"Turning the camera left while filming [something]","placeholders":["sugar container"]}, +{"id":"54899","label":"showing marker on top of remote","template":"Showing [something] on top of [something]","placeholders":["marker","remote"]}, +{"id":"148768","label":"twisting (wringing) wet towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wet towel"]}, +{"id":"50439","label":"pretending to put butter into hat","template":"Pretending to put [something] into [something]","placeholders":["butter","hat"]}, +{"id":"196781","label":"uncovering tape","template":"Uncovering [something]","placeholders":["tape"]}, +{"id":"99453","label":"holding a wall adapter next to a cellphone","template":"Holding [something] next to [something]","placeholders":["a wall adapter","a cellphone"]}, +{"id":"206019","label":"lifting a surface with a sweet on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["a sweet"]}, +{"id":"130384","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"29278","label":"putting mousepad underneath mouse","template":"Putting [something] underneath [something]","placeholders":["mousepad","mouse"]}, +{"id":"145109","label":"taking a key chain","template":"Taking [one of many similar things on the table]","placeholders":["a key chain"]}, +{"id":"26322","label":"lifting up one end of remote without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["remote"]}, +{"id":"88795","label":"pretending to take a plastic pumpkin from stand","template":"Pretending to take [something] from [somewhere]","placeholders":["a plastic pumpkin","stand"]}, +{"id":"171717","label":"tearing a notecard just a little bit","template":"Tearing [something] just a little bit","placeholders":["a notecard"]}, +{"id":"67039","label":"closing water bottle","template":"Closing [something]","placeholders":["water bottle"]}, +{"id":"193838","label":"stuffing newspaper into a jar","template":"Stuffing [something] into [something]","placeholders":["newspaper","a jar"]}, +{"id":"108777","label":"tearing a notecard into two pieces","template":"Tearing [something] into two pieces","placeholders":["a notecard"]}, +{"id":"132270","label":"stuffing cable into plastic","template":"Stuffing [something] into [something]","placeholders":["cable","plastic"]}, +{"id":"109906","label":"throwing lemon in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["lemon"]}, +{"id":"135661","label":"silicone falling like a rock","template":"[Something] falling like a rock","placeholders":["silicone"]}, +{"id":"93233","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"45293","label":"covering a nickle with a coaster","template":"Covering [something] with [something]","placeholders":["a nickle","a coaster"]}, +{"id":"160093","label":"moving a bottle and a glass closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a glass"]}, +{"id":"148517","label":"piling containers up","template":"Piling [something] up","placeholders":["containers"]}, +{"id":"49748","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"136949","label":"removing plastic cap, revealing pebble behind","template":"Removing [something], revealing [something] behind","placeholders":["plastic cap","pebble"]}, +{"id":"188756","label":"moving rock and rock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["rock","rock"]}, +{"id":"144837","label":"poking a toothbrus so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a toothbrus"]}, +{"id":"72793","label":"taking jacket out of rack","template":"Taking [something] out of [something]","placeholders":["jacket","rack"]}, +{"id":"9726","label":"pushing controller so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["controller"]}, +{"id":"188919","label":"a calculator falling like a rock","template":"[Something] falling like a rock","placeholders":["a calculator"]}, +{"id":"204292","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"163019","label":"covering table with blanket","template":"Covering [something] with [something]","placeholders":["table","blanket"]}, +{"id":"163277","label":"showing banana bunch to the camera","template":"Showing [something] to the camera","placeholders":["banana bunch"]}, +{"id":"64582","label":"uncovering a glass","template":"Uncovering [something]","placeholders":["a glass"]}, +{"id":"24103","label":"putting deodorant next to cream","template":"Putting [something] next to [something]","placeholders":["deodorant","cream"]}, +{"id":"10994","label":"holding mobile in front of remote","template":"Holding [something] in front of [something]","placeholders":["mobile","remote"]}, +{"id":"105930","label":"twisting (wringing) rag wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["rag"]}, +{"id":"125617","label":"plugging cable into socket","template":"Plugging [something] into [something]","placeholders":["cable","socket"]}, +{"id":"113188","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"35636","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"29216","label":"wiping ketchup stains off of a surface","template":"Wiping [something] off of [something]","placeholders":["ketchup stains","a surface"]}, +{"id":"13213","label":"pretending to put a jbl on a surface","template":"Pretending to put [something] on a surface","placeholders":["a jbl"]}, +{"id":"20742","label":"lifting bottle with movie on it","template":"Lifting [something] with [something] on it","placeholders":["bottle","movie"]}, +{"id":"165008","label":"a cup colliding with an apple and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a cup","an apple"]}, +{"id":"74289","label":"putting a toothpick upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a toothpick"]}, +{"id":"179471","label":"pouring toothpaste onto toothbrush","template":"Pouring [something] onto [something]","placeholders":["toothpaste","toothbrush"]}, +{"id":"142250","label":"bending a plastic knife until it breaks","template":"Bending [something] until it breaks","placeholders":["a plastic knife"]}, +{"id":"113377","label":"pushing tissues so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["tissues"]}, +{"id":"11493","label":"holding toy in front of remote","template":"Holding [something] in front of [something]","placeholders":["toy","remote"]}, +{"id":"77214","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"111958","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"46420","label":"moving lighter away from book","template":"Moving [something] away from [something]","placeholders":["lighter","book"]}, +{"id":"165179","label":"holding marker behind cup","template":"Holding [something] behind [something]","placeholders":["marker","cup"]}, +{"id":"37919","label":"bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["bag"]}, +{"id":"159237","label":"attaching a magnet to a refrigerator","template":"Attaching [something] to [something]","placeholders":["a magnet","a refrigerator"]}, +{"id":"107674","label":"stuffing flowers into woodbowl","template":"Stuffing [something] into [something]","placeholders":["flowers","woodbowl"]}, +{"id":"182338","label":"spilling water onto a pan","template":"Spilling [something] onto [something]","placeholders":["water","a pan"]}, +{"id":"168093","label":"poking box so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["box"]}, +{"id":"51127","label":"pushing glass from left to right","template":"Pushing [something] from left to right","placeholders":["glass"]}, +{"id":"107744","label":"opening jar","template":"Opening [something]","placeholders":["jar"]}, +{"id":"157451","label":"dropping pencil sharpener in front of scotch tape","template":"Dropping [something] in front of [something]","placeholders":["pencil sharpener","scotch tape"]}, +{"id":"98202","label":"pulling two ends of pencil but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["pencil"]}, +{"id":"170266","label":"pretending or failing to wipe stain off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","wall"]}, +{"id":"170322","label":"showing that a cable is inside a glasses case","template":"Showing that [something] is inside [something]","placeholders":["a cable","a glasses case"]}, +{"id":"42363","label":"dropping groundnuts into a bowl","template":"Dropping [something] into [something]","placeholders":["groundnuts","a bowl"]}, +{"id":"177864","label":"putting white badge and black toy wheel on the table","template":"Putting [something] and [something] on the table","placeholders":["white badge","black toy wheel"]}, +{"id":"3396","label":"tipping chapstick over","template":"Tipping [something] over","placeholders":["chapstick"]}, +{"id":"213592","label":"spinning tv remote so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["tv remote"]}, +{"id":"27116","label":"digging rocks out of towel","template":"Digging [something] out of [something]","placeholders":["rocks","towel"]}, +{"id":"142647","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"100626","label":"squeezing slime","template":"Squeezing [something]","placeholders":["slime"]}, +{"id":"83751","label":"folding piece of paper","template":"Folding [something]","placeholders":["piece of paper"]}, +{"id":"48157","label":"throwing cup in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["cup"]}, +{"id":"20368","label":"showing that water is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["water","bottle"]}, +{"id":"114135","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"8778","label":"pushing a soap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a soap"]}, +{"id":"218205","label":"lifting box with phone on it","template":"Lifting [something] with [something] on it","placeholders":["box","phone"]}, +{"id":"60410","label":"taking one of many forks","template":"Taking [one of many similar things on the table]","placeholders":["one of many forks"]}, +{"id":"176520","label":"showing that straw is inside cup","template":"Showing that [something] is inside [something]","placeholders":["straw","cup"]}, +{"id":"76782","label":"moving wristwatch down","template":"Moving [something] down","placeholders":["wristwatch"]}, +{"id":"46754","label":"spinning apple so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["apple"]}, +{"id":"171095","label":"dropping cube behind dish","template":"Dropping [something] behind [something]","placeholders":["cube","dish"]}, +{"id":"26045","label":"trying but failing to attach duct tape to wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["duct tape","wall"]}, +{"id":"20161","label":"a post card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a post card"]}, +{"id":"18582","label":"moving phone down","template":"Moving [something] down","placeholders":["phone"]}, +{"id":"138429","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"207643","label":"showing butterfly to the camera","template":"Showing [something] to the camera","placeholders":["butterfly"]}, +{"id":"111038","label":"covering the tulips with a magazine","template":"Covering [something] with [something]","placeholders":["the tulips","a magazine"]}, +{"id":"82480","label":"turning a candle upside down","template":"Turning [something] upside down","placeholders":["a candle"]}, +{"id":"179688","label":"a pen colliding with another pen and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pen","another pen"]}, +{"id":"215193","label":"lifting wood log up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["wood log"]}, +{"id":"138176","label":"holding a glass in front of a book","template":"Holding [something] in front of [something]","placeholders":["a glass","a book"]}, +{"id":"187881","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"54234","label":"putting cloth into bowl","template":"Putting [something] into [something]","placeholders":["cloth","bowl"]}, +{"id":"86103","label":"taking pencile out of glas","template":"Taking [something] out of [something]","placeholders":["pencile","glas"]}, +{"id":"60554","label":"throwing a ball against a bear","template":"Throwing [something] against [something]","placeholders":["a ball","a bear"]}, +{"id":"12898","label":"moving white chalk away from the camera","template":"Moving [something] away from the camera","placeholders":["white chalk"]}, +{"id":"208486","label":"putting a candle into a bougeoir","template":"Putting [something] into [something]","placeholders":["a candle","a bougeoir"]}, +{"id":"71504","label":"showing that jug is empty","template":"Showing that [something] is empty","placeholders":["jug"]}, +{"id":"106214","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"140784","label":"scooping litter up with shovel","template":"Scooping [something] up with [something]","placeholders":["litter","shovel"]}, +{"id":"39747","label":"feather falling falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather falling"]}, +{"id":"31438","label":"dropping pen in front of pieces","template":"Dropping [something] in front of [something]","placeholders":["pen","pieces"]}, +{"id":"128636","label":"putting remote into box","template":"Putting [something] into [something]","placeholders":["remote","box"]}, +{"id":"1183","label":"stuffing a pillow into a backpack","template":"Stuffing [something] into [something]","placeholders":["a pillow","a backpack"]}, +{"id":"94296","label":"spilling water onto a bottle","template":"Spilling [something] onto [something]","placeholders":["water","a bottle"]}, +{"id":"132094","label":"attaching paper to wall","template":"Attaching [something] to [something]","placeholders":["paper","wall"]}, +{"id":"125470","label":"putting book that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["book"]}, +{"id":"23517","label":"removing orange, revealing coin behind","template":"Removing [something], revealing [something] behind","placeholders":["orange","coin"]}, +{"id":"17237","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"158334","label":"pushing a coin so it spins","template":"Pushing [something] so it spins","placeholders":["a coin"]}, +{"id":"81051","label":"moving cigarette lighter up","template":"Moving [something] up","placeholders":["cigarette lighter"]}, +{"id":"217225","label":"spilling water next to a box","template":"Spilling [something] next to [something]","placeholders":["water","a box"]}, +{"id":"128688","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"82454","label":"turning the camera left while filming advertisment board","template":"Turning the camera left while filming [something]","placeholders":["advertisment board"]}, +{"id":"212224","label":"putting crayon next to mug","template":"Putting [something] next to [something]","placeholders":["crayon","mug"]}, +{"id":"172789","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"31715","label":"stuffing pillow into pillow case","template":"Stuffing [something] into [something]","placeholders":["pillow","pillow case"]}, +{"id":"123758","label":"lifting sticky note with sharpener on it","template":"Lifting [something] with [something] on it","placeholders":["sticky note","sharpener"]}, +{"id":"105429","label":"moving a pen across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a pen"]}, +{"id":"146024","label":"pushing spoon from right to left","template":"Pushing [something] from right to left","placeholders":["spoon"]}, +{"id":"123028","label":"stuffing clothes into a bag","template":"Stuffing [something] into [something]","placeholders":["clothes","a bag"]}, +{"id":"183416","label":"turning plastic cup upside down","template":"Turning [something] upside down","placeholders":["plastic cup"]}, +{"id":"177633","label":"pretending to pick empty treat bar wrap up","template":"Pretending to pick [something] up","placeholders":["empty treat bar wrap"]}, +{"id":"71517","label":"moving cell phone up","template":"Moving [something] up","placeholders":["cell phone"]}, +{"id":"6710","label":"holding a starfish in front of a goblet","template":"Holding [something] in front of [something]","placeholders":["a starfish","a goblet"]}, +{"id":"69903","label":"plugging air freshener into wall outlet","template":"Plugging [something] into [something]","placeholders":["air freshener","wall outlet"]}, +{"id":"62678","label":"moving earring down","template":"Moving [something] down","placeholders":["earring"]}, +{"id":"29260","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"214712","label":"throwing a tennisball","template":"Throwing [something]","placeholders":["a tennisball"]}, +{"id":"208126","label":"lifting a mug up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a mug"]}, +{"id":"177640","label":"uncovering broom","template":"Uncovering [something]","placeholders":["broom"]}, +{"id":"177713","label":"putting setquare behind mug","template":"Putting [something] behind [something]","placeholders":["setquare","mug"]}, +{"id":"145491","label":"pushing scissors with a box","template":"Pushing [something] with [something]","placeholders":["scissors","a box"]}, +{"id":"16246","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"157681","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"91917","label":"putting soap on a surface","template":"Putting [something] on a surface","placeholders":["soap"]}, +{"id":"148184","label":"putting a white cup next to a black cup","template":"Putting [something] next to [something]","placeholders":["a white cup","a black cup"]}, +{"id":"9177","label":"moving scissors down","template":"Moving [something] down","placeholders":["scissors"]}, +{"id":"209254","label":"pulling green hair comb from left to right","template":"Pulling [something] from left to right","placeholders":["green hair comb"]}, +{"id":"7805","label":"moving staple down","template":"Moving [something] down","placeholders":["staple"]}, +{"id":"138714","label":"putting wallet behind pillow","template":"Putting [something] behind [something]","placeholders":["wallet","pillow"]}, +{"id":"188476","label":"pretending to throw a stuffed bird","template":"Pretending to throw [something]","placeholders":["a stuffed bird"]}, +{"id":"204752","label":"bending pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["pencil"]}, +{"id":"205071","label":"taking a fork","template":"Taking [one of many similar things on the table]","placeholders":["a fork"]}, +{"id":"122718","label":"holding pen over socks","template":"Holding [something] over [something]","placeholders":["pen","socks"]}, +{"id":"121337","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"108716","label":"lifting laptop with charger on it","template":"Lifting [something] with [something] on it","placeholders":["laptop","charger"]}, +{"id":"71532","label":"tearing waste cloth just a little bit","template":"Tearing [something] just a little bit","placeholders":["waste cloth"]}, +{"id":"96389","label":"moving a remote closer to a box","template":"Moving [something] closer to [something]","placeholders":["a remote","a box"]}, +{"id":"55854","label":"putting mug onto coaster","template":"Putting [something] onto [something]","placeholders":["mug","coaster"]}, +{"id":"46256","label":"putting newspaper on a surface","template":"Putting [something] on a surface","placeholders":["newspaper"]}, +{"id":"157966","label":"tilting decorative element with bubblegum box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["decorative element","bubblegum box"]}, +{"id":"160727","label":"pretending to pick post-it up","template":"Pretending to pick [something] up","placeholders":["post-it"]}, +{"id":"101852","label":"pushing a marker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a marker"]}, +{"id":"28806","label":"pulling brown case from right to left","template":"Pulling [something] from right to left","placeholders":["brown case"]}, +{"id":"170286","label":"holding bottle behind fan","template":"Holding [something] behind [something]","placeholders":["bottle","fan"]}, +{"id":"37516","label":"twisting (wringing) a wrap wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a wrap"]}, +{"id":"128150","label":"tennis ball being deflected from cd stack","template":"[Something] being deflected from [something]","placeholders":["tennis ball","cd stack"]}, +{"id":"21472","label":"burying rock in dirt","template":"Burying [something] in [something]","placeholders":["rock","dirt"]}, +{"id":"186098","label":"moving glasses up","template":"Moving [something] up","placeholders":["glasses"]}, +{"id":"71097","label":"holding spoon next to cup","template":"Holding [something] next to [something]","placeholders":["spoon","cup"]}, +{"id":"799","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"70598","label":"folding a napkin","template":"Folding [something]","placeholders":["a napkin"]}, +{"id":"126162","label":"trying but failing to attach banana to coaster because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["banana","coaster"]}, +{"id":"97487","label":"pushing pink water bottle from right to left","template":"Pushing [something] from right to left","placeholders":["pink water bottle"]}, +{"id":"170007","label":"pulling pink water bottle from right to left","template":"Pulling [something] from right to left","placeholders":["pink water bottle"]}, +{"id":"160816","label":"pretending to poke tissue box","template":"Pretending to poke [something]","placeholders":["tissue box"]}, +{"id":"184507","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"141806","label":"showing a photo of toothbrush to the camera","template":"Showing a photo of [something] to the camera","placeholders":["toothbrush"]}, +{"id":"84085","label":"stuffing tissues into container","template":"Stuffing [something] into [something]","placeholders":["tissues","container"]}, +{"id":"51984","label":"moving a notebook across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a notebook"]}, +{"id":"118653","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"15600","label":"trying to bend wood so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["wood"]}, +{"id":"108352","label":"tearing brochure into two pieces","template":"Tearing [something] into two pieces","placeholders":["brochure"]}, +{"id":"34706","label":"putting phone that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["phone"]}, +{"id":"212936","label":"pulling a mug from right to left","template":"Pulling [something] from right to left","placeholders":["a mug"]}, +{"id":"171027","label":"pushing pushing a child's water bottle top across kitchen counter from left to right","template":"Pushing [something] from left to right","placeholders":["pushing a child's water bottle top across kitchen counter"]}, +{"id":"88864","label":"spinning name badge that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["name badge"]}, +{"id":"28353","label":"pushing a remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a remote"]}, +{"id":"25446","label":"throwing a balloon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a balloon"]}, +{"id":"179246","label":"poking canister so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["canister"]}, +{"id":"163692","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"82117","label":"lifting a surface with a pack of gum on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a pack of gum"]}, +{"id":"112736","label":"holding deodarant next to man","template":"Holding [something] next to [something]","placeholders":["deodarant","man"]}, +{"id":"132832","label":"putting phone in front of bottle","template":"Putting [something] in front of [something]","placeholders":["phone","bottle"]}, +{"id":"18957","label":"fabric falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["fabric"]}, +{"id":"21376","label":"lifting block with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["block","sunglasses"]}, +{"id":"126968","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"214697","label":"moving a water bottle and a mug closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a water bottle","a mug"]}, +{"id":"210998","label":"showing pink water bottle to the camera","template":"Showing [something] to the camera","placeholders":["pink water bottle"]}, +{"id":"180013","label":"holding bottle next to laptop","template":"Holding [something] next to [something]","placeholders":["bottle","laptop"]}, +{"id":"195096","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"45963","label":"putting adapter in front of key","template":"Putting [something] in front of [something]","placeholders":["adapter","key"]}, +{"id":"63496","label":"turning the camera downwards while filming rubber","template":"Turning the camera downwards while filming [something]","placeholders":["rubber"]}, +{"id":"168997","label":"opening tea box","template":"Opening [something]","placeholders":["tea box"]}, +{"id":"206979","label":"folding paper towel","template":"Folding [something]","placeholders":["paper towel"]}, +{"id":"93879","label":"twisting carton lid","template":"Twisting [something]","placeholders":["carton lid"]}, +{"id":"50783","label":"dropping pen next to pencil case","template":"Dropping [something] next to [something]","placeholders":["pen","pencil case"]}, +{"id":"3011","label":"putting hand towel on the edge of counter so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["hand towel","counter"]}, +{"id":"123911","label":"hitting stapler with pen","template":"Hitting [something] with [something]","placeholders":["stapler","pen"]}, +{"id":"169247","label":"holding mug in front of flower vase","template":"Holding [something] in front of [something]","placeholders":["mug","flower vase"]}, +{"id":"50091","label":"twisting (wringing) wet cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["wet cloth"]}, +{"id":"6064","label":"tilting a plate with a cup on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a plate","a cup"]}, +{"id":"186286","label":"tilting a book with a pencil on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a pencil"]}, +{"id":"195032","label":"pushing white envelope from left to right","template":"Pushing [something] from left to right","placeholders":["white envelope"]}, +{"id":"180159","label":"taking bag from table","template":"Taking [something] from [somewhere]","placeholders":["bag","table"]}, +{"id":"62119","label":"dropping towel onto floor","template":"Dropping [something] onto [something]","placeholders":["towel","floor"]}, +{"id":"129999","label":"attaching an electronic portier to its base","template":"Attaching [something] to [something]","placeholders":["an electronic portier","its base"]}, +{"id":"34079","label":"paper bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper bag"]}, +{"id":"111775","label":"pretending to close a pot without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a pot"]}, +{"id":"163097","label":"pretending to poke ball","template":"Pretending to poke [something]","placeholders":["ball"]}, +{"id":"105246","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"127152","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"79405","label":"plugging usb cable into laptop computer","template":"Plugging [something] into [something]","placeholders":["usb cable","laptop computer"]}, +{"id":"209055","label":"spilling water next to a toothbrush","template":"Spilling [something] next to [something]","placeholders":["water","a toothbrush"]}, +{"id":"10142","label":"a necklace falling like a rock","template":"[Something] falling like a rock","placeholders":["a necklace"]}, +{"id":"8378","label":"dropping a card in front of a comb","template":"Dropping [something] in front of [something]","placeholders":["a card","a comb"]}, +{"id":"161787","label":"showing scissors on top of mug","template":"Showing [something] on top of [something]","placeholders":["scissors","mug"]}, +{"id":"54709","label":"putting coaster, remote and tissue box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["coaster","remote","tissue box"]}, +{"id":"28142","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"91618","label":"moving bottle and lid away from each other","template":"Moving [something] and [something] away from each other","placeholders":["bottle","lid"]}, +{"id":"192775","label":"putting green toy car and toy wheel on the table","template":"Putting [something] and [something] on the table","placeholders":["green toy car","toy wheel"]}, +{"id":"147118","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"155728","label":"letting a pencil roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["a pencil"]}, +{"id":"18316","label":"pouring tea into glass","template":"Pouring [something] into [something]","placeholders":["tea","glass"]}, +{"id":"196757","label":"turning playdough upside down","template":"Turning [something] upside down","placeholders":["playdough"]}, +{"id":"146940","label":"tipping a water bottle with a pen over, so water falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a water bottle","a pen","water"]}, +{"id":"61314","label":"throwing a ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a ball"]}, +{"id":"175251","label":"moving top of egg carton","template":"Moving [part] of [something]","placeholders":["top","egg carton"]}, +{"id":"55106","label":"holding trimmer in front of deodarant","template":"Holding [something] in front of [something]","placeholders":["trimmer","deodarant"]}, +{"id":"18323","label":"pretending to be tearing a wood box","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a wood box"]}, +{"id":"117704","label":"picking a glass up","template":"Picking [something] up","placeholders":["a glass"]}, +{"id":"109889","label":"moving cup up","template":"Moving [something] up","placeholders":["cup"]}, +{"id":"210652","label":"putting yogurt and butter on the table","template":"Putting [something] and [something] on the table","placeholders":["yogurt","butter"]}, +{"id":"16997","label":"moving block closer to box","template":"Moving [something] closer to [something]","placeholders":["block","box"]}, +{"id":"148335","label":"holding box over paper","template":"Holding [something] over [something]","placeholders":["box","paper"]}, +{"id":"144017","label":"holding a toothbrush over a box","template":"Holding [something] over [something]","placeholders":["a toothbrush","a box"]}, +{"id":"48238","label":"squeezing a bottle of dish soap","template":"Squeezing [something]","placeholders":["a bottle of dish soap"]}, +{"id":"71474","label":"putting purse onto sponze","template":"Putting [something] onto [something]","placeholders":["purse","sponze"]}, +{"id":"69513","label":"receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["receipt"]}, +{"id":"44277","label":"dropping paper roll onto floor","template":"Dropping [something] onto [something]","placeholders":["paper roll","floor"]}, +{"id":"78475","label":"covering bed with blanket","template":"Covering [something] with [something]","placeholders":["bed","blanket"]}, +{"id":"29205","label":"pushing marker pen with marker pen","template":"Pushing [something] with [something]","placeholders":["marker pen","marker pen"]}, +{"id":"131856","label":"plugging usb cable into usb port","template":"Plugging [something] into [something]","placeholders":["usb cable","usb port"]}, +{"id":"215250","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"215655","label":"pushing nail varnish so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["nail varnish"]}, +{"id":"11531","label":"moving eye kajal and pendrive closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["eye kajal","pendrive"]}, +{"id":"119750","label":"tape being deflected from deodorant","template":"[Something] being deflected from [something]","placeholders":["tape","deodorant"]}, +{"id":"82066","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"23817","label":"pretending to sprinkle air onto sliced cucumbers","template":"Pretending to sprinkle air onto [something]","placeholders":["sliced cucumbers"]}, +{"id":"52532","label":"holding bottle in front of trash can","template":"Holding [something] in front of [something]","placeholders":["bottle","trash can"]}, +{"id":"181358","label":"moving away from usb with your camera","template":"Moving away from [something] with your camera","placeholders":["usb"]}, +{"id":"195387","label":"plugging box into extension cord","template":"Plugging [something] into [something]","placeholders":["box","extension cord"]}, +{"id":"173422","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"213158","label":"tipping paperclip holder with finger over, so paperclips falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["paperclip holder","finger","paperclips"]}, +{"id":"103428","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"40161","label":"stacking 2 cups","template":"Stacking [number of] [something]","placeholders":["2","cups"]}, +{"id":"175216","label":"pretending to put the shoe onto the bag","template":"Pretending to put [something] onto [something]","placeholders":["the shoe","the bag"]}, +{"id":"137038","label":"putting a speaker on a surface","template":"Putting [something] on a surface","placeholders":["a speaker"]}, +{"id":"25709","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"175508","label":"pushing a train from right to left","template":"Pushing [something] from right to left","placeholders":["a train"]}, +{"id":"22511","label":"letting cover roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cover"]}, +{"id":"132459","label":"a big white feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a big white feather"]}, +{"id":"15201","label":"uncovering branch","template":"Uncovering [something]","placeholders":["branch"]}, +{"id":"193501","label":"spinning \\\"magnet so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["\\\"magnet"]}, +{"id":"218139","label":"pulling two ends of spoon but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["spoon"]}, +{"id":"29128","label":"feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["feather"]}, +{"id":"146020","label":"stuffing pillow into bag","template":"Stuffing [something] into [something]","placeholders":["pillow","bag"]}, +{"id":"75502","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"40750","label":"holding two glass in front of camera","template":"Holding [something] in front of [something]","placeholders":["two glass","camera"]}, +{"id":"69297","label":"closing a candle jar","template":"Closing [something]","placeholders":["a candle jar"]}, +{"id":"103052","label":"moving lemon up","template":"Moving [something] up","placeholders":["lemon"]}, +{"id":"180921","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"171674","label":"putting a deck of cards behind a mug","template":"Putting [something] behind [something]","placeholders":["a deck of cards","a mug"]}, +{"id":"75455","label":"moving pincer up","template":"Moving [something] up","placeholders":["pincer"]}, +{"id":"126077","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"30200","label":"showing book behind cup","template":"Showing [something] behind [something]","placeholders":["book","cup"]}, +{"id":"99721","label":"holding sunglasses next to a painting","template":"Holding [something] next to [something]","placeholders":["sunglasses","a painting"]}, +{"id":"11635","label":"pretending to take a perfume from a window sill","template":"Pretending to take [something] from [somewhere]","placeholders":["a perfume","a window sill"]}, +{"id":"46638","label":"throwing a roll of paper against a tube of toothpaste","template":"Throwing [something] against [something]","placeholders":["a roll of paper","a tube of toothpaste"]}, +{"id":"56891","label":"pushing pillow so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pillow"]}, +{"id":"216261","label":"letting ball roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["ball"]}, +{"id":"107137","label":"wiping water off of sink","template":"Wiping [something] off of [something]","placeholders":["water","sink"]}, +{"id":"5231","label":"a bowl colliding with a bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a bowl","a bottle"]}, +{"id":"131498","label":"showing wallet behind spanner","template":"Showing [something] behind [something]","placeholders":["wallet","spanner"]}, +{"id":"583","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"64853","label":"moving smartphone across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["smartphone"]}, +{"id":"144552","label":"moving away from flower with your camera","template":"Moving away from [something] with your camera","placeholders":["flower"]}, +{"id":"131621","label":"pushing plate so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["plate"]}, +{"id":"211186","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"209947","label":"moving steel glass towards the camera","template":"Moving [something] towards the camera","placeholders":["steel glass"]}, +{"id":"159542","label":"removing cloth, revealing hairband behind","template":"Removing [something], revealing [something] behind","placeholders":["cloth","hairband"]}, +{"id":"220316","label":"moving ribbon down","template":"Moving [something] down","placeholders":["ribbon"]}, +{"id":"27436","label":"uncovering box","template":"Uncovering [something]","placeholders":["box"]}, +{"id":"167304","label":"rolling a spray can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a spray can"]}, +{"id":"53177","label":"showing a photo of kid to the camera","template":"Showing a photo of [something] to the camera","placeholders":["kid"]}, +{"id":"38881","label":"throwing orange color ball onto a surface","template":"Throwing [something] onto a surface","placeholders":["orange color ball"]}, +{"id":"81406","label":"putting lotion on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["lotion"]}, +{"id":"180459","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"191325","label":"pretending or trying and failing to twist medicine bottle","template":"Pretending or trying and failing to twist [something]","placeholders":["medicine bottle"]}, +{"id":"90121","label":"moving away from bolt with your camera","template":"Moving away from [something] with your camera","placeholders":["bolt"]}, +{"id":"185472","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"197161","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"98983","label":"pretending to poke keyboard","template":"Pretending to poke [something]","placeholders":["keyboard"]}, +{"id":"142705","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"85110","label":"pretending to pick soap up","template":"Pretending to pick [something] up","placeholders":["soap"]}, +{"id":"208202","label":"showing that a cup is inside a box","template":"Showing that [something] is inside [something]","placeholders":["a cup","a box"]}, +{"id":"121328","label":"putting hairbrush into box","template":"Putting [something] into [something]","placeholders":["hairbrush","box"]}, +{"id":"57641","label":"metal box falling like a rock","template":"[Something] falling like a rock","placeholders":["metal box"]}, +{"id":"87312","label":"tearing bread into two pieces","template":"Tearing [something] into two pieces","placeholders":["bread"]}, +{"id":"153217","label":"holding a glas next to a socket","template":"Holding [something] next to [something]","placeholders":["a glas","a socket"]}, +{"id":"46891","label":"moving ball and clothespin away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ball","clothespin"]}, +{"id":"123652","label":"hitting a pumpkin with a bottle","template":"Hitting [something] with [something]","placeholders":["a pumpkin","a bottle"]}, +{"id":"137771","label":"sprinkling chip crumbs onto paper towel","template":"Sprinkling [something] onto [something]","placeholders":["chip crumbs","paper towel"]}, +{"id":"185159","label":"throwing a plush in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a plush"]}, +{"id":"57841","label":"a leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a leaf"]}, +{"id":"165407","label":"spinning yellow ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["yellow ball"]}, +{"id":"115957","label":"uncovering remote control","template":"Uncovering [something]","placeholders":["remote control"]}, +{"id":"110233","label":"spinning the cube that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["the cube"]}, +{"id":"169894","label":"pouring juice into a glass","template":"Pouring [something] into [something]","placeholders":["juice","a glass"]}, +{"id":"69895","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"6357","label":"pushing handkerchief so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["handkerchief"]}, +{"id":"33082","label":"taking soup can","template":"Taking [one of many similar things on the table]","placeholders":["soup can"]}, +{"id":"63494","label":"moving brush and paper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["brush","paper"]}, +{"id":"219954","label":"poking allergy medicine so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["allergy medicine"]}, +{"id":"99109","label":"laying glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["glass"]}, +{"id":"44140","label":"stuffing towel into bag","template":"Stuffing [something] into [something]","placeholders":["towel","bag"]}, +{"id":"102422","label":"spilling water onto paper","template":"Spilling [something] onto [something]","placeholders":["water","paper"]}, +{"id":"154488","label":"lifting straw up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["straw"]}, +{"id":"219382","label":"throwing a clicker","template":"Throwing [something]","placeholders":["a clicker"]}, +{"id":"78302","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"138364","label":"putting flashlight on a surface","template":"Putting [something] on a surface","placeholders":["flashlight"]}, +{"id":"76548","label":"pretending to poke towel","template":"Pretending to poke [something]","placeholders":["towel"]}, +{"id":"80256","label":"putting hairpins","template":"Putting [something similar to other things that are already on the table]","placeholders":["hairpins"]}, +{"id":"139261","label":"digging stone out of sand","template":"Digging [something] out of [something]","placeholders":["stone","sand"]}, +{"id":"1801","label":"pretending to pick pendrive up","template":"Pretending to pick [something] up","placeholders":["pendrive"]}, +{"id":"3696","label":"holding cup next to water bottle","template":"Holding [something] next to [something]","placeholders":["cup","water bottle"]}, +{"id":"29911","label":"pouring water into leaf","template":"Pouring [something] into [something]","placeholders":["water","leaf"]}, +{"id":"131172","label":"putting a mug that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a mug"]}, +{"id":"76050","label":"pushing phone so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["phone"]}, +{"id":"69008","label":"pushing a bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a bottle","scissors"]}, +{"id":"143248","label":"lifting a book with a bottle of perfume on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a bottle of perfume"]}, +{"id":"217737","label":"covering a cup with a towel","template":"Covering [something] with [something]","placeholders":["a cup","a towel"]}, +{"id":"154702","label":"laying a coffee cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a coffee cup"]}, +{"id":"76868","label":"letting a ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a ball"]}, +{"id":"66523","label":"covering bottle cap with black cloth","template":"Covering [something] with [something]","placeholders":["bottle cap","black cloth"]}, +{"id":"183181","label":"poking a marker so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a marker"]}, +{"id":"143303","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"135947","label":"pushing a book so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a book"]}, +{"id":"106200","label":"pushing a toothbrush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toothbrush"]}, +{"id":"131223","label":"pushing red pencil sharpner from left to right","template":"Pushing [something] from left to right","placeholders":["red pencil sharpner"]}, +{"id":"102606","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"74208","label":"pretending to pick deodorant up","template":"Pretending to pick [something] up","placeholders":["deodorant"]}, +{"id":"45726","label":"moving pendrive down","template":"Moving [something] down","placeholders":["pendrive"]}, +{"id":"37727","label":"holding soda can over deodorant","template":"Holding [something] over [something]","placeholders":["soda can","deodorant"]}, +{"id":"94488","label":"turning a mason jar upside down","template":"Turning [something] upside down","placeholders":["a mason jar"]}, +{"id":"152430","label":"putting glue stick on a surface","template":"Putting [something] on a surface","placeholders":["glue stick"]}, +{"id":"109011","label":"tilting a notebook with a marker on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a notebook","a marker"]}, +{"id":"177289","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"205961","label":"holding a cell phone in front of the door","template":"Holding [something] in front of [something]","placeholders":["a cell phone","the door"]}, +{"id":"56444","label":"poking a stack of books so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["books"]}, +{"id":"189496","label":"opening juicer cap","template":"Opening [something]","placeholders":["juicer cap"]}, +{"id":"173403","label":"showing that make up box is empty","template":"Showing that [something] is empty","placeholders":["make up box"]}, +{"id":"164586","label":"moving notebook up","template":"Moving [something] up","placeholders":["notebook"]}, +{"id":"135309","label":"holding waterbottle","template":"Holding [something]","placeholders":["waterbottle"]}, +{"id":"134880","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"194124","label":"showing that a plastic box is empty","template":"Showing that [something] is empty","placeholders":["a plastic box"]}, +{"id":"205803","label":"showing that book is inside bag","template":"Showing that [something] is inside [something]","placeholders":["book","bag"]}, +{"id":"194307","label":"pushing pincer so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pincer"]}, +{"id":"41786","label":"putting scissor behind glass","template":"Putting [something] behind [something]","placeholders":["scissor","glass"]}, +{"id":"214795","label":"tilting a plate with an orange on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plate","an orange"]}, +{"id":"117853","label":"taking hair band out of green cup","template":"Taking [something] out of [something]","placeholders":["hair band","green cup"]}, +{"id":"27864","label":"throwing marker in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["marker"]}, +{"id":"167586","label":"putting cup upright on the table","template":"Putting [something] upright on the table","placeholders":["cup"]}, +{"id":"4004","label":"putting scissor on a surface","template":"Putting [something] on a surface","placeholders":["scissor"]}, +{"id":"180648","label":"putting spectacles case upright on the table","template":"Putting [something] upright on the table","placeholders":["spectacles case"]}, +{"id":"58887","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"114296","label":"taking a book","template":"Taking [one of many similar things on the table]","placeholders":["a book"]}, +{"id":"20414","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"104143","label":"putting spoon, marble and sponge on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["spoon","marble","sponge"]}, +{"id":"74053","label":"dropping scissors behind tape dispenser","template":"Dropping [something] behind [something]","placeholders":["scissors","tape dispenser"]}, +{"id":"56667","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"190246","label":"moving dog plush towards the camera","template":"Moving [something] towards the camera","placeholders":["dog plush"]}, +{"id":"220592","label":"holding nail polish over notebook","template":"Holding [something] over [something]","placeholders":["nail polish","notebook"]}, +{"id":"3394","label":"spinning spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinner"]}, +{"id":"124015","label":"pushing heater component from left to right","template":"Pushing [something] from left to right","placeholders":["heater component"]}, +{"id":"185398","label":"moving pencil and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pencil","pen"]}, +{"id":"181765","label":"covering toy with cloth","template":"Covering [something] with [something]","placeholders":["toy","cloth"]}, +{"id":"219223","label":"throwing sheath against wardrobe","template":"Throwing [something] against [something]","placeholders":["sheath","wardrobe"]}, +{"id":"99861","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"13592","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"119635","label":"turning the camera upwards while filming person","template":"Turning the camera upwards while filming [something]","placeholders":["person"]}, +{"id":"102044","label":"bending tin foil so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tin foil"]}, +{"id":"91334","label":"pretending to take spoon from plate","template":"Pretending to take [something] from [somewhere]","placeholders":["spoon","plate"]}, +{"id":"106516","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"22465","label":"approaching flowers with your camera","template":"Approaching [something] with your camera","placeholders":["flowers"]}, +{"id":"150279","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"167677","label":"putting a box of special k cereals next to a box of krave cereals","template":"Putting [something] next to [something]","placeholders":["a box of special k cereals","a box of krave cereals"]}, +{"id":"9424","label":"pushing hairband with red spoon","template":"Pushing [something] with [something]","placeholders":["hairband","red spoon"]}, +{"id":"141241","label":"showing brush to the camera","template":"Showing [something] to the camera","placeholders":["brush"]}, +{"id":"23935","label":"pretending to pick pillow up","template":"Pretending to pick [something] up","placeholders":["pillow"]}, +{"id":"4634","label":"twisting clothe","template":"Twisting [something]","placeholders":["clothe"]}, +{"id":"172716","label":"pushing lid off of cup","template":"Pushing [something] off of [something]","placeholders":["lid","cup"]}, +{"id":"144680","label":"twisting (wringing) a piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a piece of cloth"]}, +{"id":"171605","label":"taking sweet out of sweetbox","template":"Taking [something] out of [something]","placeholders":["sweet","sweetbox"]}, +{"id":"126129","label":"taking bottles","template":"Taking [one of many similar things on the table]","placeholders":["bottles"]}, +{"id":"189028","label":"poking plastic recipient so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["plastic recipient"]}, +{"id":"97982","label":"pushing pincer from right to left","template":"Pushing [something] from right to left","placeholders":["pincer"]}, +{"id":"8793","label":"stacking three gift cards","template":"Stacking [number of] [something]","placeholders":["three","gift cards"]}, +{"id":"84125","label":"showing tv to the camera","template":"Showing [something] to the camera","placeholders":["tv"]}, +{"id":"112504","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"112536","label":"cow being deflected from door","template":"[Something] being deflected from [something]","placeholders":["cow","door"]}, +{"id":"166599","label":"putting the compact disc into the compact disc case","template":"Putting [something] into [something]","placeholders":["the compact disc","the compact disc case"]}, +{"id":"3897","label":"pretending to turn shoe brush upside down","template":"Pretending to turn [something] upside down","placeholders":["shoe brush"]}, +{"id":"30928","label":"pulling two ends of wooden reeper but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["wooden reeper"]}, +{"id":"212129","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"153859","label":"moving sugar container away from tomato","template":"Moving [something] away from [something]","placeholders":["sugar container","tomato"]}, +{"id":"172201","label":"pushing sunglasses with wallet","template":"Pushing [something] with [something]","placeholders":["sunglasses","wallet"]}, +{"id":"99099","label":"pretending to put keys behind bag","template":"Pretending to put [something] behind [something]","placeholders":["keys","bag"]}, +{"id":"125766","label":"dropping a pin behind a remote","template":"Dropping [something] behind [something]","placeholders":["a pin","a remote"]}, +{"id":"159460","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"85701","label":"turning the camera left while filming sign post","template":"Turning the camera left while filming [something]","placeholders":["sign post"]}, +{"id":"215254","label":"covering soap with cloth","template":"Covering [something] with [something]","placeholders":["soap","cloth"]}, +{"id":"26337","label":"hitting mouse with a remote","template":"Hitting [something] with [something]","placeholders":["mouse","a remote"]}, +{"id":"62208","label":"attaching a gift card to a bandage box","template":"Attaching [something] to [something]","placeholders":["a gift card","a bandage box"]}, +{"id":"70330","label":"lifting plate with cup on it","template":"Lifting [something] with [something] on it","placeholders":["plate","cup"]}, +{"id":"19718","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"168741","label":"showing nail cutter to the camera","template":"Showing [something] to the camera","placeholders":["nail cutter"]}, +{"id":"103985","label":"turning the camera left while filming toy","template":"Turning the camera left while filming [something]","placeholders":["toy"]}, +{"id":"58565","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"94521","label":"showing label to the camera","template":"Showing [something] to the camera","placeholders":["label"]}, +{"id":"61418","label":"pulling two ends of an owl but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["an owl"]}, +{"id":"161676","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"177827","label":"pulling two ends of leaves so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["leaves"]}, +{"id":"212417","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"166671","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"81516","label":"hitting bottle with match box","template":"Hitting [something] with [something]","placeholders":["bottle","match box"]}, +{"id":"98287","label":"pushing a notebook so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a notebook"]}, +{"id":"186012","label":"tearing hard paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["hard paper"]}, +{"id":"52737","label":"pretending to pick ball up","template":"Pretending to pick [something] up","placeholders":["ball"]}, +{"id":"163038","label":"moving part of dvd cover","template":"Moving [part] of [something]","placeholders":["part","dvd cover"]}, +{"id":"180231","label":"putting comb next to cup","template":"Putting [something] next to [something]","placeholders":["comb","cup"]}, +{"id":"119376","label":"dropping a coin in front of a matchbox","template":"Dropping [something] in front of [something]","placeholders":["a coin","a matchbox"]}, +{"id":"39728","label":"moving scissor down","template":"Moving [something] down","placeholders":["scissor"]}, +{"id":"197680","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"176479","label":"pushing box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["box"]}, +{"id":"51933","label":"throwing stick","template":"Throwing [something]","placeholders":["stick"]}, +{"id":"157531","label":"holding gum over spray bottle","template":"Holding [something] over [something]","placeholders":["gum","spray bottle"]}, +{"id":"198794","label":"rolling cup on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cup"]}, +{"id":"174356","label":"pretending to be tearing t shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["t shirt"]}, +{"id":"195516","label":"moving water colours and brush away from each other","template":"Moving [something] and [something] away from each other","placeholders":["water colours","brush"]}, +{"id":"112844","label":"letting lipstick roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["lipstick"]}, +{"id":"46375","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"136257","label":"pushing scissors so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["scissors"]}, +{"id":"46811","label":"spilling water behind orange","template":"Spilling [something] behind [something]","placeholders":["water","orange"]}, +{"id":"1006","label":"showing parking sign to the camera","template":"Showing [something] to the camera","placeholders":["parking sign"]}, +{"id":"17162","label":"turning the camera upwards while filming toothpaste box","template":"Turning the camera upwards while filming [something]","placeholders":["toothpaste box"]}, +{"id":"146415","label":"bending a twig until it breaks","template":"Bending [something] until it breaks","placeholders":["a twig"]}, +{"id":"160674","label":"holding finger over twisted bottle","template":"Holding [something] over [something]","placeholders":["finger","twisted bottle"]}, +{"id":"12942","label":"uncovering a box","template":"Uncovering [something]","placeholders":["a box"]}, +{"id":"28417","label":"throwing newspaper in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["newspaper"]}, +{"id":"10643","label":"pretending to be tearing washcloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["washcloth"]}, +{"id":"103302","label":"throwing a ball","template":"Throwing [something]","placeholders":["a ball"]}, +{"id":"118525","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"180779","label":"putting candle onto table edge so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["candle","table edge"]}, +{"id":"151963","label":"moving rule down","template":"Moving [something] down","placeholders":["rule"]}, +{"id":"194101","label":"moving flower up","template":"Moving [something] up","placeholders":["flower"]}, +{"id":"7703","label":"scooping sand up with shovel","template":"Scooping [something] up with [something]","placeholders":["sand","shovel"]}, +{"id":"165080","label":"dropping rubik cube next to card","template":"Dropping [something] next to [something]","placeholders":["rubik cube","card"]}, +{"id":"377","label":"lifting cookie box lid with green toy car on it","template":"Lifting [something] with [something] on it","placeholders":["cookie box lid","green toy car"]}, +{"id":"142837","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"220027","label":"pretending to sprinkle air onto a drink","template":"Pretending to sprinkle air onto [something]","placeholders":["a drink"]}, +{"id":"7496","label":"tipping an empty ice cream cup over","template":"Tipping [something] over","placeholders":["an empty ice cream cup"]}, +{"id":"151509","label":"pouring water into glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","glass"]}, +{"id":"140857","label":"putting a calculator next to a pencase","template":"Putting [something] next to [something]","placeholders":["a calculator","a pencase"]}, +{"id":"151761","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"161514","label":"turning the camera upwards while filming sunset","template":"Turning the camera upwards while filming [something]","placeholders":["sunset"]}, +{"id":"202253","label":"hitting lamp with pen","template":"Hitting [something] with [something]","placeholders":["lamp","pen"]}, +{"id":"167415","label":"pouring water out of a bottle","template":"Pouring [something] out of [something]","placeholders":["water","a bottle"]}, +{"id":"135939","label":"showing that a plastic bottle is empty","template":"Showing that [something] is empty","placeholders":["a plastic bottle"]}, +{"id":"84260","label":"lifting up one end of plate, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["plate"]}, +{"id":"30414","label":"putting a block of paper on a surface","template":"Putting [something] on a surface","placeholders":["a block of paper"]}, +{"id":"36094","label":"piling tissue boxes up","template":"Piling [something] up","placeholders":["tissue boxes"]}, +{"id":"62874","label":"pulling bottle from left to right","template":"Pulling [something] from left to right","placeholders":["bottle"]}, +{"id":"205016","label":"holding pen over hole puncher","template":"Holding [something] over [something]","placeholders":["pen","hole puncher"]}, +{"id":"213320","label":"showing a printer on top of a table","template":"Showing [something] on top of [something]","placeholders":["a printer","a table"]}, +{"id":"1694","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"168854","label":"lifting plate with rubber duck on it","template":"Lifting [something] with [something] on it","placeholders":["plate","rubber duck"]}, +{"id":"19081","label":"hitting a plate with a spoon","template":"Hitting [something] with [something]","placeholders":["a plate","a spoon"]}, +{"id":"75788","label":"putting something that cannot upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["something that cannot"]}, +{"id":"153026","label":"pushing gate with hand","template":"Pushing [something] with [something]","placeholders":["gate","hand"]}, +{"id":"152421","label":"small piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["small piece of paper"]}, +{"id":"179551","label":"pushing green chalk from left to right","template":"Pushing [something] from left to right","placeholders":["green chalk"]}, +{"id":"100751","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"196829","label":"stuffing towels into basket","template":"Stuffing [something] into [something]","placeholders":["towels","basket"]}, +{"id":"134002","label":"pretending to put a straw into a cup","template":"Pretending to put [something] into [something]","placeholders":["a straw","a cup"]}, +{"id":"32467","label":"throwing ball against wall","template":"Throwing [something] against [something]","placeholders":["ball","wall"]}, +{"id":"185313","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"146053","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"195700","label":"throwing bear in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["bear"]}, +{"id":"36584","label":"moving a bottle and a bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a bottle"]}, +{"id":"133961","label":"picking something up","template":"Picking [something] up","placeholders":["something"]}, +{"id":"152215","label":"spreading red chillies onto a plate","template":"Spreading [something] onto [something]","placeholders":["red chillies","a plate"]}, +{"id":"33523","label":"putting watch next to toy","template":"Putting [something] next to [something]","placeholders":["watch","toy"]}, +{"id":"206585","label":"throwing a ball against the wall","template":"Throwing [something] against [something]","placeholders":["a ball","the wall"]}, +{"id":"71988","label":"pouring gems out of container","template":"Pouring [something] out of [something]","placeholders":["gems","container"]}, +{"id":"68888","label":"putting glass on a surface","template":"Putting [something] on a surface","placeholders":["glass"]}, +{"id":"183751","label":"putting paper plate","template":"Putting [something similar to other things that are already on the table]","placeholders":["paper plate"]}, +{"id":"116234","label":"tipping ketchup over","template":"Tipping [something] over","placeholders":["ketchup"]}, +{"id":"152261","label":"dropping a coin behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a coin","a padlock"]}, +{"id":"81390","label":"putting pen next to more pens, pencils.","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen next to more pens, pencils."]}, +{"id":"205883","label":"putting a key next to a phone","template":"Putting [something] next to [something]","placeholders":["a key","a phone"]}, +{"id":"3226","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"206345","label":"attaching usb stick to magnet","template":"Attaching [something] to [something]","placeholders":["usb stick","magnet"]}, +{"id":"209899","label":"throwing a shoe","template":"Throwing [something]","placeholders":["a shoe"]}, +{"id":"128081","label":"taking one of many candles on the table","template":"Taking [one of many similar things on the table]","placeholders":["one of many candles on the table"]}, +{"id":"40435","label":"laying lotion on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["lotion"]}, +{"id":"198176","label":"holding hair clip next to red hair band","template":"Holding [something] next to [something]","placeholders":["hair clip","red hair band"]}, +{"id":"42075","label":"pushing a brush from left to right","template":"Pushing [something] from left to right","placeholders":["a brush"]}, +{"id":"14663","label":"pushing a watch so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a watch"]}, +{"id":"29604","label":"pretending to turn bar soap upside down","template":"Pretending to turn [something] upside down","placeholders":["bar soap"]}, +{"id":"106607","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"9381","label":"pulling glass onto table","template":"Pulling [something] onto [something]","placeholders":["glass","table"]}, +{"id":"60934","label":"tilting black file with silver coloured pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","silver coloured pen"]}, +{"id":"82049","label":"dropping books onto table","template":"Dropping [something] onto [something]","placeholders":["books","table"]}, +{"id":"94548","label":"letting a pencil roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pencil"]}, +{"id":"49110","label":"pretending or trying and failing to twist a cap","template":"Pretending or trying and failing to twist [something]","placeholders":["a cap"]}, +{"id":"141411","label":"turning the camera upwards while filming cup","template":"Turning the camera upwards while filming [something]","placeholders":["cup"]}, +{"id":"206850","label":"squeezing paper","template":"Squeezing [something]","placeholders":["paper"]}, +{"id":"165031","label":"plugging an electrical plug into a plug socket","template":"Plugging [something] into [something]","placeholders":["an electrical plug","a plug socket"]}, +{"id":"59324","label":"spinning a tube of toothpaste that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a tube of toothpaste"]}, +{"id":"163769","label":"turning the camera left while filming white book marker","template":"Turning the camera left while filming [something]","placeholders":["white book marker"]}, +{"id":"139906","label":"plugging usb into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","computer"]}, +{"id":"51538","label":"attaching refill to pen","template":"Attaching [something] to [something]","placeholders":["refill","pen"]}, +{"id":"218671","label":"pretending to put pebble into glass","template":"Pretending to put [something] into [something]","placeholders":["pebble","glass"]}, +{"id":"176492","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"182093","label":"lifting up one end of straw without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["straw"]}, +{"id":"159555","label":"turning the camera right while filming notebook","template":"Turning the camera right while filming [something]","placeholders":["notebook"]}, +{"id":"100029","label":"putting a bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle"]}, +{"id":"179801","label":"pushing a notebook so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a notebook"]}, +{"id":"180080","label":"trying to bend something unbendable so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["something unbendable"]}, +{"id":"42602","label":"approaching old mobile phone with your camera","template":"Approaching [something] with your camera","placeholders":["old mobile phone"]}, +{"id":"136093","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"94070","label":"plugging a nightlight into a socket","template":"Plugging [something] into [something]","placeholders":["a nightlight","a socket"]}, +{"id":"193966","label":"taking a spoon from a container","template":"Taking [something] from [somewhere]","placeholders":["a spoon","a container"]}, +{"id":"28841","label":"putting book onto pen stand","template":"Putting [something] onto [something]","placeholders":["book","pen stand"]}, +{"id":"60717","label":"putting seasor, tailoring tap and pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["seasor","tailoring tap","pen"]}, +{"id":"4971","label":"plugging charger into mobile but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","mobile"]}, +{"id":"130330","label":"plugging charger into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","phone"]}, +{"id":"680","label":"tilting big box with little box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["big box","little box"]}, +{"id":"70841","label":"bending a pen so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen"]}, +{"id":"3002","label":"turning the camera upwards while filming audio sistem","template":"Turning the camera upwards while filming [something]","placeholders":["audio sistem"]}, +{"id":"176414","label":"pretending to pick an umbrella up","template":"Pretending to pick [something] up","placeholders":["an umbrella"]}, +{"id":"101206","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"171783","label":"dropping matchbox into jar","template":"Dropping [something] into [something]","placeholders":["matchbox","jar"]}, +{"id":"213305","label":"opening purse","template":"Opening [something]","placeholders":["purse"]}, +{"id":"216736","label":"dropping bracelet behind hand bag","template":"Dropping [something] behind [something]","placeholders":["bracelet","hand bag"]}, +{"id":"217783","label":"putting fork onto plate","template":"Putting [something] onto [something]","placeholders":["fork","plate"]}, +{"id":"204721","label":"dropping a bag of bread onto the counter","template":"Dropping [something] onto [something]","placeholders":["a bag of bread","the counter"]}, +{"id":"217909","label":"pushing pushing plastic spray from left to right from left to right","template":"Pushing [something] from left to right","placeholders":["pushing plastic spray from left to right"]}, +{"id":"153183","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"118265","label":"putting ball on a surface","template":"Putting [something] on a surface","placeholders":["ball"]}, +{"id":"8545","label":"trying to bend a notebook so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a notebook"]}, +{"id":"18632","label":"covering sunglasses with cushion","template":"Covering [something] with [something]","placeholders":["sunglasses","cushion"]}, +{"id":"16813","label":"poking package so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["package"]}, +{"id":"87455","label":"pretending to pick emblem up","template":"Pretending to pick [something] up","placeholders":["emblem"]}, +{"id":"34137","label":"pulling red candle from left to right","template":"Pulling [something] from left to right","placeholders":["red candle"]}, +{"id":"110058","label":"moving seal pad down","template":"Moving [something] down","placeholders":["seal pad"]}, +{"id":"173175","label":"dropping a ball onto soil ground","template":"Dropping [something] onto [something]","placeholders":["a ball","soil ground"]}, +{"id":"1634","label":"showing wooden furniture behind a fan","template":"Showing [something] behind [something]","placeholders":["wooden furniture","a fan"]}, +{"id":"72302","label":"pretending to put bottle cap next to glass juice","template":"Pretending to put [something] next to [something]","placeholders":["bottle cap","glass juice"]}, +{"id":"213040","label":"covering coin with sock","template":"Covering [something] with [something]","placeholders":["coin","sock"]}, +{"id":"11548","label":"spilling water onto plate","template":"Spilling [something] onto [something]","placeholders":["water","plate"]}, +{"id":"197912","label":"letting lipbalm roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipbalm"]}, +{"id":"70471","label":"taking one mobile phone of many similar mobile phones on the table","template":"Taking [one of many similar things on the table]","placeholders":["one mobile phone of many similar mobile phones on the table"]}, +{"id":"161455","label":"moving toothpaste across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["toothpaste"]}, +{"id":"214369","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"170919","label":"putting sponge behind mug","template":"Putting [something] behind [something]","placeholders":["sponge","mug"]}, +{"id":"54925","label":"hitting a spider with my fist","template":"Hitting [something] with [something]","placeholders":["a spider","my fist"]}, +{"id":"31379","label":"pushing black hair tie from right to left","template":"Pushing [something] from right to left","placeholders":["black hair tie"]}, +{"id":"159346","label":"moving door of cupboard","template":"Moving [part] of [something]","placeholders":["door","cupboard"]}, +{"id":"190413","label":"pretending to squeeze charger","template":"Pretending to squeeze [something]","placeholders":["charger"]}, +{"id":"213476","label":"sprinkling beans onto hand","template":"Sprinkling [something] onto [something]","placeholders":["beans","hand"]}, +{"id":"171921","label":"holding a bottle next to a laptop","template":"Holding [something] next to [something]","placeholders":["a bottle","a laptop"]}, +{"id":"132955","label":"putting a screw on a surface","template":"Putting [something] on a surface","placeholders":["a screw"]}, +{"id":"125775","label":"putting jar next to saltshaker","template":"Putting [something] next to [something]","placeholders":["jar","saltshaker"]}, +{"id":"126925","label":"bending a pen cap so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a pen cap"]}, +{"id":"120146","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"58204","label":"pretending to pick a reactine bottle up","template":"Pretending to pick [something] up","placeholders":["a reactine bottle"]}, +{"id":"182941","label":"pretending to poke arizona tea can","template":"Pretending to poke [something]","placeholders":["arizona tea can"]}, +{"id":"57191","label":"pushing hair comb so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair comb"]}, +{"id":"70337","label":"attaching lid to bottle","template":"Attaching [something] to [something]","placeholders":["lid","bottle"]}, +{"id":"39443","label":"pushing pills so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pills"]}, +{"id":"110661","label":"touching (without moving) nose of my face","template":"Touching (without moving) [part] of [something]","placeholders":["nose","my face"]}, +{"id":"172563","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"174764","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"51547","label":"plugging charging cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charging cable","laptop"]}, +{"id":"145057","label":"putting a smartphone into a box","template":"Putting [something] into [something]","placeholders":["a smartphone","a box"]}, +{"id":"20237","label":"taking pencil from cupboard","template":"Taking [something] from [somewhere]","placeholders":["pencil","cupboard"]}, +{"id":"25669","label":"orange falling like a rock","template":"[Something] falling like a rock","placeholders":["orange"]}, +{"id":"124637","label":"moving away from window with your camera","template":"Moving away from [something] with your camera","placeholders":["window"]}, +{"id":"78995","label":"hitting copo with mug","template":"Hitting [something] with [something]","placeholders":["copo","mug"]}, +{"id":"55969","label":"twisting bottle cover","template":"Twisting [something]","placeholders":["bottle cover"]}, +{"id":"213735","label":"holding a calculator","template":"Holding [something]","placeholders":["a calculator"]}, +{"id":"169808","label":"plugging charger into iphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","iphone"]}, +{"id":"200682","label":"lifting whisk up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["whisk"]}, +{"id":"189399","label":"poking toy so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toy"]}, +{"id":"152811","label":"showing a boot on top of a book","template":"Showing [something] on top of [something]","placeholders":["a boot","a book"]}, +{"id":"137851","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"107372","label":"pretending to be tearing keyboard","template":"Pretending to be tearing [something that is not tearable]","placeholders":["keyboard"]}, +{"id":"36545","label":"showing that soda is inside cup","template":"Showing that [something] is inside [something]","placeholders":["soda","cup"]}, +{"id":"84343","label":"pulling duster from left to right","template":"Pulling [something] from left to right","placeholders":["duster"]}, +{"id":"219973","label":"moving book up","template":"Moving [something] up","placeholders":["book"]}, +{"id":"136669","label":"plugging baby monitor cord into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["baby monitor cord","power outlet"]}, +{"id":"13968","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"143361","label":"falling leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling leaf"]}, +{"id":"52001","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"22704","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"196736","label":"pushing black brush from right to left","template":"Pushing [something] from right to left","placeholders":["black brush"]}, +{"id":"56558","label":"taking a watch","template":"Taking [one of many similar things on the table]","placeholders":["a watch"]}, +{"id":"171874","label":"moving wine glas and cup away from each other","template":"Moving [something] and [something] away from each other","placeholders":["wine glas","cup"]}, +{"id":"43299","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"5999","label":"poking battery so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["battery"]}, +{"id":"161832","label":"dropping napkin behind dustbin","template":"Dropping [something] behind [something]","placeholders":["napkin","dustbin"]}, +{"id":"73196","label":"dropping a pen in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a pen","a book"]}, +{"id":"124708","label":"squeezing dog toy","template":"Squeezing [something]","placeholders":["dog toy"]}, +{"id":"192310","label":"pulling brake pedal onto hand","template":"Pulling [something] onto [something]","placeholders":["brake pedal","hand"]}, +{"id":"165723","label":"putting lotion in front of small bottle","template":"Putting [something] in front of [something]","placeholders":["lotion","small bottle"]}, +{"id":"112899","label":"putting pencil sharpener onto cat","template":"Putting [something] onto [something]","placeholders":["pencil sharpener","cat"]}, +{"id":"203036","label":"turning the camera right while filming pill bottle","template":"Turning the camera right while filming [something]","placeholders":["pill bottle"]}, +{"id":"28972","label":"throwing ear muffs onto a surface","template":"Throwing [something] onto a surface","placeholders":["ear muffs"]}, +{"id":"79626","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"10356","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"98494","label":"turning the camera right while filming baby play mat","template":"Turning the camera right while filming [something]","placeholders":["baby play mat"]}, +{"id":"174293","label":"a basketball falling like a rock","template":"[Something] falling like a rock","placeholders":["a basketball"]}, +{"id":"133384","label":"covering small bottle with box","template":"Covering [something] with [something]","placeholders":["small bottle","box"]}, +{"id":"43828","label":"pretending to be tearing calander","template":"Pretending to be tearing [something that is not tearable]","placeholders":["calander"]}, +{"id":"26702","label":"moving spanner away from magnifying glass","template":"Moving [something] away from [something]","placeholders":["spanner","magnifying glass"]}, +{"id":"97329","label":"moving sock down","template":"Moving [something] down","placeholders":["sock"]}, +{"id":"167251","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"192724","label":"throwing a spoon in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a spoon"]}, +{"id":"129831","label":"throwing pencile","template":"Throwing [something]","placeholders":["pencile"]}, +{"id":"39075","label":"pushing soap so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["soap"]}, +{"id":"196824","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"109685","label":"putting can into can holder","template":"Putting [something] into [something]","placeholders":["can","can holder"]}, +{"id":"133477","label":"tearing paper towel just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper towel"]}, +{"id":"218426","label":"moving scissor closer to tool","template":"Moving [something] closer to [something]","placeholders":["scissor","tool"]}, +{"id":"102272","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"152101","label":"rolling soap on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["soap"]}, +{"id":"190613","label":"dropping a card in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a card","a book"]}, +{"id":"34319","label":"putting a tissue box in front of a dvd","template":"Putting [something] in front of [something]","placeholders":["a tissue box","a dvd"]}, +{"id":"57569","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"67480","label":"dropping a book next to a bottle","template":"Dropping [something] next to [something]","placeholders":["a book","a bottle"]}, +{"id":"30303","label":"taking a bottle","template":"Taking [one of many similar things on the table]","placeholders":["a bottle"]}, +{"id":"59108","label":"lifting a pillow with a book on it","template":"Lifting [something] with [something] on it","placeholders":["a pillow","a book"]}, +{"id":"43816","label":"pushing pen off of bench","template":"Pushing [something] off of [something]","placeholders":["pen","bench"]}, +{"id":"19932","label":"attaching a magnet keyholder to the door","template":"Attaching [something] to [something]","placeholders":["a magnet keyholder","the door"]}, +{"id":"7168","label":"pushing black pocket knife so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["black pocket knife"]}, +{"id":"166437","label":"holding nail clipper behind cd holders","template":"Holding [something] behind [something]","placeholders":["nail clipper","cd holders"]}, +{"id":"202587","label":"pretending to open small hand gel without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["small hand gel"]}, +{"id":"43675","label":"closing paint tube","template":"Closing [something]","placeholders":["paint tube"]}, +{"id":"22215","label":"approaching measuring tape with your camera","template":"Approaching [something] with your camera","placeholders":["measuring tape"]}, +{"id":"63465","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"106495","label":"envelope falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["envelope"]}, +{"id":"147707","label":"moving away from newspaper with your camera","template":"Moving away from [something] with your camera","placeholders":["newspaper"]}, +{"id":"128188","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"34313","label":"marshmallow falling like a rock","template":"[Something] falling like a rock","placeholders":["marshmallow"]}, +{"id":"209302","label":"poking a hole into box","template":"Poking a hole into [some substance]","placeholders":["box"]}, +{"id":"208012","label":"dropping bottle behind laptop","template":"Dropping [something] behind [something]","placeholders":["bottle","laptop"]}, +{"id":"68767","label":"tipping jar over","template":"Tipping [something] over","placeholders":["jar"]}, +{"id":"21304","label":"putting a hair brush next to a book","template":"Putting [something] next to [something]","placeholders":["a hair brush","a book"]}, +{"id":"88220","label":"pulling stools from left to right","template":"Pulling [something] from left to right","placeholders":["stools"]}, +{"id":"124579","label":"pretending to put remote next to remote","template":"Pretending to put [something] next to [something]","placeholders":["remote","remote"]}, +{"id":"67659","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"90235","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"195230","label":"moving glass across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["glass"]}, +{"id":"199760","label":"holding business card next to pen","template":"Holding [something] next to [something]","placeholders":["business card","pen"]}, +{"id":"156392","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"20107","label":"pushing box with bin","template":"Pushing [something] with [something]","placeholders":["box","bin"]}, +{"id":"22094","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"104158","label":"plugging cable into phone charger","template":"Plugging [something] into [something]","placeholders":["cable","phone charger"]}, +{"id":"86248","label":"pretending or failing to wipe sticker off of wall","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["sticker","wall"]}, +{"id":"94134","label":"pushing a smart phone from right to left","template":"Pushing [something] from right to left","placeholders":["a smart phone"]}, +{"id":"209521","label":"laying cup on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cup"]}, +{"id":"131208","label":"tilting box with picture on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","picture"]}, +{"id":"29792","label":"poking feet deodorant so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["feet deodorant"]}, +{"id":"156299","label":"twisting clothing","template":"Twisting [something]","placeholders":["clothing"]}, +{"id":"83002","label":"moving pack of pencils across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["pack of pencils"]}, +{"id":"197962","label":"holding comb in front of remote","template":"Holding [something] in front of [something]","placeholders":["comb","remote"]}, +{"id":"62862","label":"bending tube so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tube"]}, +{"id":"50831","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"18453","label":"stuffed animal falling like a rock","template":"[Something] falling like a rock","placeholders":["stuffed animal"]}, +{"id":"33457","label":"letting ring roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ring"]}, +{"id":"171067","label":"piling blocks up","template":"Piling [something] up","placeholders":["blocks"]}, +{"id":"84619","label":"lifting up one end of pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pen"]}, +{"id":"57406","label":"folding pants","template":"Folding [something]","placeholders":["pants"]}, +{"id":"47457","label":"putting keys next to bag","template":"Putting [something] next to [something]","placeholders":["keys","bag"]}, +{"id":"77643","label":"poking joystick so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["joystick"]}, +{"id":"40640","label":"dropping gloves into a carton","template":"Dropping [something] into [something]","placeholders":["gloves","a carton"]}, +{"id":"123823","label":"putting a glass on a surface","template":"Putting [something] on a surface","placeholders":["a glass"]}, +{"id":"214020","label":"laying a plastic pineapple on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a plastic pineapple"]}, +{"id":"180487","label":"rolling ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["ball"]}, +{"id":"105033","label":"putting metal into bowl","template":"Putting [something] into [something]","placeholders":["metal","bowl"]}, +{"id":"208685","label":"moving package up","template":"Moving [something] up","placeholders":["package"]}, +{"id":"156188","label":"unfolding paper towel","template":"Unfolding [something]","placeholders":["paper towel"]}, +{"id":"205729","label":"dropping a card next to scissors","template":"Dropping [something] next to [something]","placeholders":["a card","scissors"]}, +{"id":"24798","label":"scooping ice-cream up with spoon","template":"Scooping [something] up with [something]","placeholders":["ice-cream","spoon"]}, +{"id":"68428","label":"tipping box over","template":"Tipping [something] over","placeholders":["box"]}, +{"id":"206020","label":"bending can so that it deforms","template":"Bending [something] so that it deforms","placeholders":["can"]}, +{"id":"12399","label":"twisting towel","template":"Twisting [something]","placeholders":["towel"]}, +{"id":"191036","label":"pretending to take a watch out of a bowl","template":"Pretending to take [something] out of [something]","placeholders":["a watch","a bowl"]}, +{"id":"120354","label":"pretending to put can on a surface","template":"Pretending to put [something] on a surface","placeholders":["can"]}, +{"id":"51480","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"218703","label":"approaching umbrella with your camera","template":"Approaching [something] with your camera","placeholders":["umbrella"]}, +{"id":"151382","label":"pushing pack of chewing gum so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pack of chewing gum"]}, +{"id":"153397","label":"tilting folder with orange on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["folder","orange"]}, +{"id":"212269","label":"pretending to squeeze a sponge","template":"Pretending to squeeze [something]","placeholders":["a sponge"]}, +{"id":"167844","label":"showing a photo of teddybear to the camera","template":"Showing a photo of [something] to the camera","placeholders":["teddybear"]}, +{"id":"213412","label":"tipping a box over","template":"Tipping [something] over","placeholders":["a box"]}, +{"id":"115789","label":"showing that teapot is empty","template":"Showing that [something] is empty","placeholders":["teapot"]}, +{"id":"149393","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"82808","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"204894","label":"poking a stack of books without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["books"]}, +{"id":"133652","label":"tearing paper sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper sheet"]}, +{"id":"21190","label":"dropping mouse onto bed","template":"Dropping [something] onto [something]","placeholders":["mouse","bed"]}, +{"id":"207661","label":"tilting book with knife on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","knife"]}, +{"id":"16977","label":"putting a phone on a surface","template":"Putting [something] on a surface","placeholders":["a phone"]}, +{"id":"144403","label":"covering canister with towel","template":"Covering [something] with [something]","placeholders":["canister","towel"]}, +{"id":"64054","label":"pushing hairclip with box","template":"Pushing [something] with [something]","placeholders":["hairclip","box"]}, +{"id":"18816","label":"showing that something is inside inside","template":"Showing that [something] is inside [something]","placeholders":["something","inside"]}, +{"id":"43893","label":"putting 2 nail polish bottles onto a book","template":"Putting [number of] [something] onto [something]","placeholders":["2","nail polish bottles","a book"]}, +{"id":"1181","label":"moving post-it down","template":"Moving [something] down","placeholders":["post-it"]}, +{"id":"170175","label":"dropping a book next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a book","a spoon"]}, +{"id":"153854","label":"holding spec in front of the switch board","template":"Holding [something] in front of [something]","placeholders":["spec","the switch board"]}, +{"id":"69025","label":"moving a domino and a toy figurine closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a domino","a toy figurine"]}, +{"id":"157315","label":"twisting soft, braun slipper","template":"Twisting [something]","placeholders":["soft, braun slipper"]}, +{"id":"137119","label":"trying to bend metal so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal"]}, +{"id":"205806","label":"basket falling like a rock","template":"[Something] falling like a rock","placeholders":["basket"]}, +{"id":"96620","label":"covering paper clip with paper","template":"Covering [something] with [something]","placeholders":["paper clip","paper"]}, +{"id":"20485","label":"pushing a vase from left to right","template":"Pushing [something] from left to right","placeholders":["a vase"]}, +{"id":"193479","label":"turning orange post-it upside down","template":"Turning [something] upside down","placeholders":["orange post-it"]}, +{"id":"59817","label":"attaching a sticker to the fridge","template":"Attaching [something] to [something]","placeholders":["a sticker","the fridge"]}, +{"id":"177638","label":"tearing flower into two pieces","template":"Tearing [something] into two pieces","placeholders":["flower"]}, +{"id":"30596","label":"pushing banana onto bag","template":"Pushing [something] onto [something]","placeholders":["banana","bag"]}, +{"id":"182733","label":"bending skewer stick until it breaks","template":"Bending [something] until it breaks","placeholders":["skewer stick"]}, +{"id":"118286","label":"holding onion over mug","template":"Holding [something] over [something]","placeholders":["onion","mug"]}, +{"id":"29401","label":"showing that a pen is inside a toilet roll","template":"Showing that [something] is inside [something]","placeholders":["a pen","a toilet roll"]}, +{"id":"68326","label":"closing window","template":"Closing [something]","placeholders":["window"]}, +{"id":"219561","label":"putting 3 containers onto table","template":"Putting [number of] [something] onto [something]","placeholders":["3","containers","table"]}, +{"id":"88206","label":"putting pen and keys on the table","template":"Putting [something] and [something] on the table","placeholders":["pen","keys"]}, +{"id":"115964","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"172776","label":"squeezing a water bottle","template":"Squeezing [something]","placeholders":["a water bottle"]}, +{"id":"45733","label":"squeezing stuffed rabbit","template":"Squeezing [something]","placeholders":["stuffed rabbit"]}, +{"id":"56948","label":"pen colliding with pencil and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pen","pencil"]}, +{"id":"114426","label":"turning small tv set upside down","template":"Turning [something] upside down","placeholders":["small tv set"]}, +{"id":"1209","label":"rolling a baseball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a baseball"]}, +{"id":"139521","label":"lifting up one end of remote control without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["remote control"]}, +{"id":"157995","label":"pushing graphics pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["graphics pen"]}, +{"id":"200398","label":"tilting a book with a pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a pen"]}, +{"id":"59748","label":"plugging usb cable into smartphone","template":"Plugging [something] into [something]","placeholders":["usb cable","smartphone"]}, +{"id":"79084","label":"leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["leaf"]}, +{"id":"136469","label":"turning a cup upside down","template":"Turning [something] upside down","placeholders":["a cup"]}, +{"id":"10427","label":"pretending to put cell phone onto box","template":"Pretending to put [something] onto [something]","placeholders":["cell phone","box"]}, +{"id":"56875","label":"pretending to close pretend to close plastic spray without actually closing it without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["pretend to close plastic spray without actually closing it"]}, +{"id":"211799","label":"pouring water into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a cup"]}, +{"id":"130158","label":"pushing teddy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["teddy"]}, +{"id":"148849","label":"tilting a book with a doll on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a book","a doll"]}, +{"id":"202604","label":"poking plastic bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["plastic bottle"]}, +{"id":"112993","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"54844","label":"pushing a potatoe with a fork","template":"Pushing [something] with [something]","placeholders":["a potatoe","a fork"]}, +{"id":"107735","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"95498","label":"letting mobile roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["mobile"]}, +{"id":"40326","label":"throwing handkerchief pack against wall","template":"Throwing [something] against [something]","placeholders":["handkerchief pack","wall"]}, +{"id":"194476","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"144987","label":"folding blanket","template":"Folding [something]","placeholders":["blanket"]}, +{"id":"204076","label":"poking a plush toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a plush toy"]}, +{"id":"103320","label":"rolling tomato on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["tomato"]}, +{"id":"191621","label":"twisting charger cord","template":"Twisting [something]","placeholders":["charger cord"]}, +{"id":"123953","label":"pushing a groundnut so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a groundnut"]}, +{"id":"31662","label":"moving away from sign post with your camera","template":"Moving away from [something] with your camera","placeholders":["sign post"]}, +{"id":"218548","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"35073","label":"pulling two ends of a handkerchief so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a handkerchief"]}, +{"id":"149203","label":"spinning fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fidget spinner"]}, +{"id":"134887","label":"spinning pizza cutter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["pizza cutter"]}, +{"id":"187010","label":"holding ball in front of iphone","template":"Holding [something] in front of [something]","placeholders":["ball","iphone"]}, +{"id":"124413","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"86575","label":"pulling cup from left to right","template":"Pulling [something] from left to right","placeholders":["cup"]}, +{"id":"97925","label":"showing calculator on top of book","template":"Showing [something] on top of [something]","placeholders":["calculator","book"]}, +{"id":"132285","label":"holding mouse over keypad","template":"Holding [something] over [something]","placeholders":["mouse","keypad"]}, +{"id":"140947","label":"lifting up one end of a big spoon, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a big spoon"]}, +{"id":"14421","label":"rolling yellow marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["yellow marker pen"]}, +{"id":"56905","label":"pretending to pick hair gel bottle up","template":"Pretending to pick [something] up","placeholders":["hair gel bottle"]}, +{"id":"18227","label":"scooping drink up with spoon","template":"Scooping [something] up with [something]","placeholders":["drink","spoon"]}, +{"id":"134448","label":"pretending to turn aim toothpaste upside down","template":"Pretending to turn [something] upside down","placeholders":["aim toothpaste"]}, +{"id":"51801","label":"spreading cloth onto table","template":"Spreading [something] onto [something]","placeholders":["cloth","table"]}, +{"id":"166779","label":"pushing hair clip from left to right","template":"Pushing [something] from left to right","placeholders":["hair clip"]}, +{"id":"17063","label":"lifting coin up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["coin"]}, +{"id":"154707","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"93264","label":"hitting a stuffed animal dog with a yard stick","template":"Hitting [something] with [something]","placeholders":["a stuffed animal dog","a yard stick"]}, +{"id":"78164","label":"folding a pair of pants","template":"Folding [something]","placeholders":["a pair of pants"]}, +{"id":"60020","label":"lifting up one end of book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["book"]}, +{"id":"73537","label":"bending metal wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["metal wire"]}, +{"id":"47243","label":"lifting a planner with scissors on it","template":"Lifting [something] with [something] on it","placeholders":["a planner","scissors"]}, +{"id":"115005","label":"failing to put a bottle into a cup because the bottle does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a bottle","a cup","the bottle"]}, +{"id":"141484","label":"opening the oven","template":"Opening [something]","placeholders":["the oven"]}, +{"id":"212471","label":"pretending to throw sandal","template":"Pretending to throw [something]","placeholders":["sandal"]}, +{"id":"40838","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"90563","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"10957","label":"squeezing a leather seat","template":"Squeezing [something]","placeholders":["a leather seat"]}, +{"id":"23780","label":"hitting a glass with a pen","template":"Hitting [something] with [something]","placeholders":["a glass","a pen"]}, +{"id":"12535","label":"pretending to put jar on a surface","template":"Pretending to put [something] on a surface","placeholders":["jar"]}, +{"id":"177572","label":"putting a key into a lock","template":"Putting [something] into [something]","placeholders":["a key","a lock"]}, +{"id":"135517","label":"covering pot with paper","template":"Covering [something] with [something]","placeholders":["pot","paper"]}, +{"id":"21637","label":"nail clipper being deflected from pen","template":"[Something] being deflected from [something]","placeholders":["nail clipper","pen"]}, +{"id":"179459","label":"removing a bottle, revealing a charger behind","template":"Removing [something], revealing [something] behind","placeholders":["a bottle","a charger"]}, +{"id":"30950","label":"pretending to poke a dog","template":"Pretending to poke [something]","placeholders":["a dog"]}, +{"id":"122159","label":"plugging loader into jack","template":"Plugging [something] into [something]","placeholders":["loader","jack"]}, +{"id":"73565","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"181455","label":"turning the camera left while filming dinosaur model","template":"Turning the camera left while filming [something]","placeholders":["dinosaur model"]}, +{"id":"168976","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"164946","label":"showing that pasta is inside container","template":"Showing that [something] is inside [something]","placeholders":["pasta","container"]}, +{"id":"44025","label":"holding a cup","template":"Holding [something]","placeholders":["a cup"]}, +{"id":"161910","label":"pushing phone with camera","template":"Pushing [something] with [something]","placeholders":["phone","camera"]}, +{"id":"207873","label":"touching (without moving) top of eraser","template":"Touching (without moving) [part] of [something]","placeholders":["top","eraser"]}, +{"id":"82995","label":"pretending to turn mug upside down","template":"Pretending to turn [something] upside down","placeholders":["mug"]}, +{"id":"18846","label":"moving magnet up","template":"Moving [something] up","placeholders":["magnet"]}, +{"id":"78061","label":"lifting something up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["something"]}, +{"id":"50281","label":"moving a tele-commander and a plastic pot so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a tele-commander","a plastic pot"]}, +{"id":"7588","label":"spinning highlighter pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["highlighter pen"]}, +{"id":"206948","label":"pretending to close book without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["book"]}, +{"id":"175179","label":"throwing an apple in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["an apple"]}, +{"id":"155859","label":"putting a plastic bottle, a water bottle and a glass on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a plastic bottle","a water bottle","a glass"]}, +{"id":"84519","label":"poking a stack of cds so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["cds"]}, +{"id":"180920","label":"hitting notebook with pen","template":"Hitting [something] with [something]","placeholders":["notebook","pen"]}, +{"id":"117118","label":"tipping a glass over","template":"Tipping [something] over","placeholders":["a glass"]}, +{"id":"146084","label":"pulling two ends of scotch tape but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["scotch tape"]}, +{"id":"144159","label":"tearing a card into two pieces","template":"Tearing [something] into two pieces","placeholders":["a card"]}, +{"id":"68721","label":"folding a shirt","template":"Folding [something]","placeholders":["a shirt"]}, +{"id":"120807","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"38845","label":"moving pen and marker away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","marker"]}, +{"id":"139432","label":"pouring water onto foot","template":"Pouring [something] onto [something]","placeholders":["water","foot"]}, +{"id":"67128","label":"putting bottle in front of glass","template":"Putting [something] in front of [something]","placeholders":["bottle","glass"]}, +{"id":"82217","label":"putting ipad in front of bananas","template":"Putting [something] in front of [something]","placeholders":["ipad","bananas"]}, +{"id":"125620","label":"pretending to put a glass onto a box","template":"Pretending to put [something] onto [something]","placeholders":["a glass","a box"]}, +{"id":"140433","label":"spilling water onto zink","template":"Spilling [something] onto [something]","placeholders":["water","zink"]}, +{"id":"160594","label":"spinning box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["box"]}, +{"id":"214845","label":"pretending to poke container","template":"Pretending to poke [something]","placeholders":["container"]}, +{"id":"198964","label":"dropping a matchbox in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a book"]}, +{"id":"210174","label":"pretending to poke cover","template":"Pretending to poke [something]","placeholders":["cover"]}, +{"id":"3469","label":"putting toy, toy watch and box on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["toy","toy watch","box"]}, +{"id":"34942","label":"putting glasses, a beer bottle and a wallet on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["glasses","a beer bottle","a wallet"]}, +{"id":"55605","label":"putting lighter","template":"Putting [something similar to other things that are already on the table]","placeholders":["lighter"]}, +{"id":"19639","label":"throwing soap","template":"Throwing [something]","placeholders":["soap"]}, +{"id":"56029","label":"tearing notepad paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["notepad paper"]}, +{"id":"14370","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"218865","label":"pushing remote with scale","template":"Pushing [something] with [something]","placeholders":["remote","scale"]}, +{"id":"175060","label":"pulling wire out of box","template":"Pulling [something] out of [something]","placeholders":["wire","box"]}, +{"id":"181926","label":"pushing stapler onto red toy car","template":"Pushing [something] onto [something]","placeholders":["stapler","red toy car"]}, +{"id":"187001","label":"wiping tea off of a counter","template":"Wiping [something] off of [something]","placeholders":["tea","a counter"]}, +{"id":"114149","label":"moving a mobile and another mobile so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a mobile","another mobile"]}, +{"id":"35369","label":"showing television behind laptop","template":"Showing [something] behind [something]","placeholders":["television","laptop"]}, +{"id":"106445","label":"squeezing can","template":"Squeezing [something]","placeholders":["can"]}, +{"id":"108259","label":"putting something upright on the table","template":"Putting [something] upright on the table","placeholders":["something"]}, +{"id":"139566","label":"taking marble","template":"Taking [one of many similar things on the table]","placeholders":["marble"]}, +{"id":"200260","label":"plugging cord into computer","template":"Plugging [something] into [something]","placeholders":["cord","computer"]}, +{"id":"46206","label":"dropping a pen behind sunglasses","template":"Dropping [something] behind [something]","placeholders":["a pen","sunglasses"]}, +{"id":"168612","label":"dropping scoop into canister","template":"Dropping [something] into [something]","placeholders":["scoop","canister"]}, +{"id":"117574","label":"putting candy into a bin","template":"Putting [something] into [something]","placeholders":["candy","a bin"]}, +{"id":"116894","label":"lifting rubik's cube up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["rubik's cube"]}, +{"id":"108947","label":"poking calculator so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["calculator"]}, +{"id":"90007","label":"pushing tamper so it spins","template":"Pushing [something] so it spins","placeholders":["tamper"]}, +{"id":"60118","label":"putting a floss container that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a floss container"]}, +{"id":"17119","label":"pretending to put coaster onto remote","template":"Pretending to put [something] onto [something]","placeholders":["coaster","remote"]}, +{"id":"142594","label":"approaching waste bin with your camera","template":"Approaching [something] with your camera","placeholders":["waste bin"]}, +{"id":"175728","label":"pushing an e-reader so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["an e-reader"]}, +{"id":"49057","label":"wiping ketchup off of counter top","template":"Wiping [something] off of [something]","placeholders":["ketchup","counter top"]}, +{"id":"51109","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"132994","label":"squeezing doll","template":"Squeezing [something]","placeholders":["doll"]}, +{"id":"113154","label":"pretending to open spectacle box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["spectacle box"]}, +{"id":"187418","label":"holding box next to flowers","template":"Holding [something] next to [something]","placeholders":["box","flowers"]}, +{"id":"159168","label":"dropping a card in front of a shoe brush","template":"Dropping [something] in front of [something]","placeholders":["a card","a shoe brush"]}, +{"id":"147379","label":"plugging a charging cable into socket","template":"Plugging [something] into [something]","placeholders":["a charging cable","socket"]}, +{"id":"208136","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"25872","label":"putting knife next to fork","template":"Putting [something] next to [something]","placeholders":["knife","fork"]}, +{"id":"63681","label":"moving glove and cell phone so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["glove","cell phone"]}, +{"id":"189969","label":"moving leaf down","template":"Moving [something] down","placeholders":["leaf"]}, +{"id":"128468","label":"stuffing jar into fridge","template":"Stuffing [something] into [something]","placeholders":["jar","fridge"]}, +{"id":"64076","label":"pretending to be tearing bottle","template":"Pretending to be tearing [something that is not tearable]","placeholders":["bottle"]}, +{"id":"166326","label":"showing that a mug is empty","template":"Showing that [something] is empty","placeholders":["a mug"]}, +{"id":"180577","label":"tearing tissue into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue"]}, +{"id":"217102","label":"plugging battery charger into laptop","template":"Plugging [something] into [something]","placeholders":["battery charger","laptop"]}, +{"id":"54347","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"178310","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"213041","label":"putting a dvd behind a container","template":"Putting [something] behind [something]","placeholders":["a dvd","a container"]}, +{"id":"97076","label":"closing microwave","template":"Closing [something]","placeholders":["microwave"]}, +{"id":"131354","label":"lifting up one end of book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["book"]}, +{"id":"55934","label":"dropping pen into glass","template":"Dropping [something] into [something]","placeholders":["pen","glass"]}, +{"id":"47603","label":"pretending to open coffee jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["coffee jar"]}, +{"id":"219161","label":"putting paint tube","template":"Putting [something similar to other things that are already on the table]","placeholders":["paint tube"]}, +{"id":"154599","label":"pushing phone so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["phone"]}, +{"id":"138291","label":"burying battery in sand","template":"Burying [something] in [something]","placeholders":["battery","sand"]}, +{"id":"1271","label":"showing candy to the camera","template":"Showing [something] to the camera","placeholders":["candy"]}, +{"id":"2099","label":"picking toy wheel up","template":"Picking [something] up","placeholders":["toy wheel"]}, +{"id":"155973","label":"taking pen from table","template":"Taking [something] from [somewhere]","placeholders":["pen","table"]}, +{"id":"7247","label":"pushing cube so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cube"]}, +{"id":"74734","label":"showing bag on top of car","template":"Showing [something] on top of [something]","placeholders":["bag","car"]}, +{"id":"57020","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"55276","label":"putting a pencil into a pencil case","template":"Putting [something] into [something]","placeholders":["a pencil","a pencil case"]}, +{"id":"71314","label":"tilting laptop desk with remote on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["laptop desk","remote"]}, +{"id":"135322","label":"putting red toy car on a surface","template":"Putting [something] on a surface","placeholders":["red toy car"]}, +{"id":"47589","label":"pulling water canteen from right to left","template":"Pulling [something] from right to left","placeholders":["water canteen"]}, +{"id":"134434","label":"digging spoon out of hand towel","template":"Digging [something] out of [something]","placeholders":["spoon","hand towel"]}, +{"id":"176308","label":"moving paper and cellphone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper","cellphone"]}, +{"id":"146264","label":"showing mouse behind cup","template":"Showing [something] behind [something]","placeholders":["mouse","cup"]}, +{"id":"138449","label":"rolling egg on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["egg"]}, +{"id":"204080","label":"throwing tissue box onto a surface","template":"Throwing [something] onto a surface","placeholders":["tissue box"]}, +{"id":"152428","label":"pen being deflected from binder","template":"[Something] being deflected from [something]","placeholders":["pen","binder"]}, +{"id":"132130","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"205885","label":"tilting paper with marker on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","marker"]}, +{"id":"132149","label":"pretending to take calculator from desk","template":"Pretending to take [something] from [somewhere]","placeholders":["calculator","desk"]}, +{"id":"77691","label":"poking flower petal so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["flower petal"]}, +{"id":"77144","label":"rolling can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["can"]}, +{"id":"99563","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"197717","label":"attaching pen to wall","template":"Attaching [something] to [something]","placeholders":["pen","wall"]}, +{"id":"25420","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"187757","label":"tilting a magazine with a pencil on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a magazine","a pencil"]}, +{"id":"74759","label":"putting pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["pen"]}, +{"id":"176489","label":"holding eraser","template":"Holding [something]","placeholders":["eraser"]}, +{"id":"200792","label":"spinning lime so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["lime"]}, +{"id":"122389","label":"pink golf ball colliding with pink golf ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["pink golf ball","pink golf ball"]}, +{"id":"170580","label":"piling mobiles up","template":"Piling [something] up","placeholders":["mobiles"]}, +{"id":"139696","label":"pretending to put coaster underneath cup","template":"Pretending to put [something] underneath [something]","placeholders":["coaster","cup"]}, +{"id":"194011","label":"pretending to take cellphone from the floor","template":"Pretending to take [something] from [somewhere]","placeholders":["cellphone","the floor"]}, +{"id":"47404","label":"spinning eraser that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["eraser"]}, +{"id":"115238","label":"something falling like a rock","template":"[Something] falling like a rock","placeholders":["something"]}, +{"id":"37580","label":"uncovering laptop","template":"Uncovering [something]","placeholders":["laptop"]}, +{"id":"138317","label":"turning the camera upwards while filming highlighter","template":"Turning the camera upwards while filming [something]","placeholders":["highlighter"]}, +{"id":"107243","label":"throwing a ball of paper","template":"Throwing [something]","placeholders":["a ball of paper"]}, +{"id":"209864","label":"showing that tumbler is empty","template":"Showing that [something] is empty","placeholders":["tumbler"]}, +{"id":"215316","label":"plugging charger into swicth but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","swicth"]}, +{"id":"107214","label":"turning the camera upwards while filming black hat","template":"Turning the camera upwards while filming [something]","placeholders":["black hat"]}, +{"id":"132998","label":"showing mobile behind remote","template":"Showing [something] behind [something]","placeholders":["mobile","remote"]}, +{"id":"36364","label":"hitting a remote with a pen","template":"Hitting [something] with [something]","placeholders":["a remote","a pen"]}, +{"id":"124286","label":"holding a pencil in front of pillar","template":"Holding [something] in front of [something]","placeholders":["a pencil","pillar"]}, +{"id":"186404","label":"moving a phone and a wallet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a phone","a wallet"]}, +{"id":"56629","label":"lifting up one end of plate without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["plate"]}, +{"id":"75187","label":"dropping a spun onto the floor","template":"Dropping [something] onto [something]","placeholders":["a spun","the floor"]}, +{"id":"106583","label":"pulling napkin onto laptop screen top","template":"Pulling [something] onto [something]","placeholders":["napkin","laptop screen top"]}, +{"id":"199644","label":"pretending to poke candle","template":"Pretending to poke [something]","placeholders":["candle"]}, +{"id":"92189","label":"trying to bend metal bar so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal bar"]}, +{"id":"66116","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"1940","label":"holding toilet paper","template":"Holding [something]","placeholders":["toilet paper"]}, +{"id":"28586","label":"digging sketch pen out of sand","template":"Digging [something] out of [something]","placeholders":["sketch pen","sand"]}, +{"id":"175684","label":"pushing a container with a book","template":"Pushing [something] with [something]","placeholders":["a container","a book"]}, +{"id":"106771","label":"putting teddy bear onto stool","template":"Putting [something] onto [something]","placeholders":["teddy bear","stool"]}, +{"id":"42931","label":"turning lighter upside down","template":"Turning [something] upside down","placeholders":["lighter"]}, +{"id":"192371","label":"pretending to poke a lamp","template":"Pretending to poke [something]","placeholders":["a lamp"]}, +{"id":"110027","label":"unfolding a blanket","template":"Unfolding [something]","placeholders":["a blanket"]}, +{"id":"164301","label":"bending plastic plate so that it deforms","template":"Bending [something] so that it deforms","placeholders":["plastic plate"]}, +{"id":"83881","label":"pretending to sprinkle air onto a napkin","template":"Pretending to sprinkle air onto [something]","placeholders":["a napkin"]}, +{"id":"105901","label":"putting box on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["box","table"]}, +{"id":"58535","label":"throwing pen onto a surface","template":"Throwing [something] onto a surface","placeholders":["pen"]}, +{"id":"56270","label":"turning the camera right while filming black disc case","template":"Turning the camera right while filming [something]","placeholders":["black disc case"]}, +{"id":"178347","label":"putting 2 board clips onto cookie box lid","template":"Putting [number of] [something] onto [something]","placeholders":["2","board clips","cookie box lid"]}, +{"id":"44844","label":"showing car to the camera","template":"Showing [something] to the camera","placeholders":["car"]}, +{"id":"38828","label":"lifting eye glasses up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["eye glasses"]}, +{"id":"69765","label":"throwing coin","template":"Throwing [something]","placeholders":["coin"]}, +{"id":"89577","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"50727","label":"moving away from pen with your camera","template":"Moving away from [something] with your camera","placeholders":["pen"]}, +{"id":"169783","label":"spinning stylus pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["stylus pen"]}, +{"id":"138978","label":"lifting towel up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["towel"]}, +{"id":"55332","label":"bending incense stick until it breaks","template":"Bending [something] until it breaks","placeholders":["incense stick"]}, +{"id":"78288","label":"tilting sticky note with sharpener on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["sticky note","sharpener"]}, +{"id":"220813","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"30027","label":"holding a tape next to a coil of wires","template":"Holding [something] next to [something]","placeholders":["a tape","a coil of wires"]}, +{"id":"70231","label":"throwing ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ball"]}, +{"id":"126215","label":"stacking four underpants","template":"Stacking [number of] [something]","placeholders":["four","underpants"]}, +{"id":"57816","label":"putting pencil sharpener behind bowl","template":"Putting [something] behind [something]","placeholders":["pencil sharpener","bowl"]}, +{"id":"159172","label":"moving keys closer to a camera","template":"Moving [something] closer to [something]","placeholders":["keys","a camera"]}, +{"id":"199193","label":"wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet"]}, +{"id":"15390","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"190253","label":"moving shaker towards the camera","template":"Moving [something] towards the camera","placeholders":["shaker"]}, +{"id":"157168","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"211478","label":"putting hangar into box","template":"Putting [something] into [something]","placeholders":["hangar","box"]}, +{"id":"1557","label":"trying but failing to attach a piece of paper to a bottle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a piece of paper","a bottle"]}, +{"id":"125349","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"93619","label":"pulling paint tube from right to left","template":"Pulling [something] from right to left","placeholders":["paint tube"]}, +{"id":"141890","label":"pretending to open door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["door"]}, +{"id":"198645","label":"dropping candy onto notepad","template":"Dropping [something] onto [something]","placeholders":["candy","notepad"]}, +{"id":"35241","label":"unfolding childs shirt","template":"Unfolding [something]","placeholders":["childs shirt"]}, +{"id":"146617","label":"touching (without moving) stopper of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["stopper","bottle"]}, +{"id":"106926","label":"moving a trophy across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a trophy"]}, +{"id":"98059","label":"pretending to take tissue from tissue box","template":"Pretending to take [something] from [somewhere]","placeholders":["tissue","tissue box"]}, +{"id":"133589","label":"holding white hand gel","template":"Holding [something]","placeholders":["white hand gel"]}, +{"id":"183412","label":"plugging cable into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","laptop"]}, +{"id":"209128","label":"moving plushie across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["plushie"]}, +{"id":"23715","label":"putting a battery on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a battery"]}, +{"id":"7011","label":"attaching tape to couch","template":"Attaching [something] to [something]","placeholders":["tape","couch"]}, +{"id":"118107","label":"taking a paper clip off the table","template":"Taking [one of many similar things on the table]","placeholders":["a paper clip off the table"]}, +{"id":"198878","label":"pulling white sheet out of magazine","template":"Pulling [something] out of [something]","placeholders":["white sheet","magazine"]}, +{"id":"63422","label":"putting notebook next to box","template":"Putting [something] next to [something]","placeholders":["notebook","box"]}, +{"id":"153214","label":"lifting stapler up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["stapler"]}, +{"id":"154791","label":"stuffing pen into bucket","template":"Stuffing [something] into [something]","placeholders":["pen","bucket"]}, +{"id":"178368","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"155053","label":"pretending to be tearing floor mat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["floor mat"]}, +{"id":"100590","label":"uncovering my face","template":"Uncovering [something]","placeholders":["my face"]}, +{"id":"68381","label":"putting tea mug in front of candy","template":"Putting [something] in front of [something]","placeholders":["tea mug","candy"]}, +{"id":"170884","label":"sprinkling curry leaves onto cloth","template":"Sprinkling [something] onto [something]","placeholders":["curry leaves","cloth"]}, +{"id":"12061","label":"lifting up one end of duster without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["duster"]}, +{"id":"80449","label":"opening spectical box","template":"Opening [something]","placeholders":["spectical box"]}, +{"id":"135946","label":"tilting white board with binoculars on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["white board","binoculars"]}, +{"id":"134089","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"80706","label":"bending cotton swabs so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cotton swabs"]}, +{"id":"83021","label":"tilting book with box on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["book","box"]}, +{"id":"113748","label":"dropping pepper behind a box","template":"Dropping [something] behind [something]","placeholders":["pepper","a box"]}, +{"id":"134893","label":"dropping poker chip into cup","template":"Dropping [something] into [something]","placeholders":["poker chip","cup"]}, +{"id":"139163","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"90319","label":"holding cup next to lamp","template":"Holding [something] next to [something]","placeholders":["cup","lamp"]}, +{"id":"201590","label":"rolling lipsticks on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lipsticks"]}, +{"id":"148321","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"68792","label":"pouring water into a bottle","template":"Pouring [something] into [something]","placeholders":["water","a bottle"]}, +{"id":"62","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"20726","label":"covering a phone with paper","template":"Covering [something] with [something]","placeholders":["a phone","paper"]}, +{"id":"12581","label":"moving a ball and a block closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a ball","a block"]}, +{"id":"73864","label":"stacking 2 bottles","template":"Stacking [number of] [something]","placeholders":["2","bottles"]}, +{"id":"58539","label":"putting a light bulb onto a cushion","template":"Putting [something] onto [something]","placeholders":["a light bulb","a cushion"]}, +{"id":"6993","label":"spinning spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning a pen"]}, +{"id":"156497","label":"paper strip falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper strip"]}, +{"id":"85607","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"53688","label":"plugging power cord into power outlet","template":"Plugging [something] into [something]","placeholders":["power cord","power outlet"]}, +{"id":"7429","label":"putting marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker pen"]}, +{"id":"177925","label":"throwing sport shoe onto a surface","template":"Throwing [something] onto a surface","placeholders":["sport shoe"]}, +{"id":"193755","label":"taking make-up out of toiletry bag","template":"Taking [something] out of [something]","placeholders":["make-up","toiletry bag"]}, +{"id":"171937","label":"stuffing a pen into a pillowcase","template":"Stuffing [something] into [something]","placeholders":["a pen","a pillowcase"]}, +{"id":"217387","label":"opening pen top","template":"Opening [something]","placeholders":["pen top"]}, +{"id":"151728","label":"spinning comb that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["comb"]}, +{"id":"5899","label":"pretending to pick cigarette up","template":"Pretending to pick [something] up","placeholders":["cigarette"]}, +{"id":"65252","label":"spilling coke onto post it","template":"Spilling [something] onto [something]","placeholders":["coke","post it"]}, +{"id":"206608","label":"pushing a mug so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a mug"]}, +{"id":"187344","label":"showing calendar next to toaster","template":"Showing [something] next to [something]","placeholders":["calendar","toaster"]}, +{"id":"215637","label":"putting earphone next to pink book","template":"Putting [something] next to [something]","placeholders":["earphone","pink book"]}, +{"id":"112374","label":"putting three coins onto lid","template":"Putting [number of] [something] onto [something]","placeholders":["three","coins","lid"]}, +{"id":"24115","label":"holding broom behind car","template":"Holding [something] behind [something]","placeholders":["broom","car"]}, +{"id":"50492","label":"approaching usb with your camera","template":"Approaching [something] with your camera","placeholders":["usb"]}, +{"id":"201002","label":"moving plush up","template":"Moving [something] up","placeholders":["plush"]}, +{"id":"148587","label":"rolling a marker on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a marker"]}, +{"id":"55259","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"27853","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"53329","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"67938","label":"holding a bottle of water","template":"Holding [something]","placeholders":["a bottle of water"]}, +{"id":"6551","label":"pulling ipod from right to left","template":"Pulling [something] from right to left","placeholders":["ipod"]}, +{"id":"56075","label":"pushing a bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a bottle"]}, +{"id":"151908","label":"twisting camera lens","template":"Twisting [something]","placeholders":["camera lens"]}, +{"id":"147259","label":"showing barrage to the camera","template":"Showing [something] to the camera","placeholders":["barrage"]}, +{"id":"23884","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"111777","label":"piling papers up","template":"Piling [something] up","placeholders":["papers"]}, +{"id":"139284","label":"moving screwdriver across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["screwdriver"]}, +{"id":"98348","label":"holding paper","template":"Holding [something]","placeholders":["paper"]}, +{"id":"101398","label":"trying to bend a paintbrush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a paintbrush"]}, +{"id":"76144","label":"turning the camera right while filming a bottle of lotion","template":"Turning the camera right while filming [something]","placeholders":["a bottle of lotion"]}, +{"id":"189275","label":"pushing a toy car from left to right","template":"Pushing [something] from left to right","placeholders":["a toy car"]}, +{"id":"189425","label":"lifting a shoe up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a shoe"]}, +{"id":"95374","label":"lifting up one end of remote control, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["remote control"]}, +{"id":"183053","label":"opening an oven door","template":"Opening [something]","placeholders":["an oven door"]}, +{"id":"52578","label":"pushing a comb so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a comb"]}, +{"id":"163473","label":"dropping book onto bed","template":"Dropping [something] onto [something]","placeholders":["book","bed"]}, +{"id":"149570","label":"pretending to put coin underneath paper","template":"Pretending to put [something] underneath [something]","placeholders":["coin","paper"]}, +{"id":"8726","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"139118","label":"plugging a socket plug into a socket","template":"Plugging [something] into [something]","placeholders":["a socket plug","a socket"]}, +{"id":"121046","label":"moving a match box and a lighter so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a match box","a lighter"]}, +{"id":"115108","label":"turning the camera right while filming advertisement board","template":"Turning the camera right while filming [something]","placeholders":["advertisement board"]}, +{"id":"122979","label":"moving coconut shell towards the camera","template":"Moving [something] towards the camera","placeholders":["coconut shell"]}, +{"id":"145014","label":"showing a sun glass next to smart phone","template":"Showing [something] next to [something]","placeholders":["a sun glass","smart phone"]}, +{"id":"33807","label":"turning the camera downwards while filming mobile phone","template":"Turning the camera downwards while filming [something]","placeholders":["mobile phone"]}, +{"id":"136747","label":"showing bottle next to the cream tube","template":"Showing [something] next to [something]","placeholders":["bottle","the cream tube"]}, +{"id":"37196","label":"taking food container from table","template":"Taking [something] from [somewhere]","placeholders":["food container","table"]}, +{"id":"118373","label":"dropping a ball onto grass yard","template":"Dropping [something] onto [something]","placeholders":["a ball","grass yard"]}, +{"id":"198004","label":"wiping something off of something","template":"Wiping [something] off of [something]","placeholders":["something","something"]}, +{"id":"168792","label":"letting a water bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a water bottle"]}, +{"id":"143382","label":"stuffing pills into box","template":"Stuffing [something] into [something]","placeholders":["pills","box"]}, +{"id":"173289","label":"spilling water next to a card","template":"Spilling [something] next to [something]","placeholders":["water","a card"]}, +{"id":"11131","label":"moving ashtray up","template":"Moving [something] up","placeholders":["ashtray"]}, +{"id":"70193","label":"twisting (wringing) a washcloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a washcloth"]}, +{"id":"176890","label":"pretending to pick chess piece up","template":"Pretending to pick [something] up","placeholders":["chess piece"]}, +{"id":"31481","label":"scooping sugar up with a scoop","template":"Scooping [something] up with [something]","placeholders":["sugar","a scoop"]}, +{"id":"50331","label":"putting puzzle dice on a surface","template":"Putting [something] on a surface","placeholders":["puzzle dice"]}, +{"id":"122249","label":"piling toy figures up","template":"Piling [something] up","placeholders":["toy figures"]}, +{"id":"180461","label":"closing hot case","template":"Closing [something]","placeholders":["hot case"]}, +{"id":"8789","label":"hitting flash drive with ballpen","template":"Hitting [something] with [something]","placeholders":["flash drive","ballpen"]}, +{"id":"192334","label":"tearing cardstock into two pieces","template":"Tearing [something] into two pieces","placeholders":["cardstock"]}, +{"id":"43140","label":"taking sugar pack","template":"Taking [one of many similar things on the table]","placeholders":["sugar pack"]}, +{"id":"155797","label":"pushing the paper so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["the paper"]}, +{"id":"25903","label":"piling mobile phones up","template":"Piling [something] up","placeholders":["mobile phones"]}, +{"id":"1858","label":"moving toy-car and toy-car so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["toy-car","toy-car"]}, +{"id":"42468","label":"pretending to pick a lipstick up","template":"Pretending to pick [something] up","placeholders":["a lipstick"]}, +{"id":"7538","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"187713","label":"letting gum roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["gum"]}, +{"id":"50660","label":"putting a glass upright on the table","template":"Putting [something] upright on the table","placeholders":["a glass"]}, +{"id":"185715","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"149631","label":"picking scotch tape up","template":"Picking [something] up","placeholders":["scotch tape"]}, +{"id":"60672","label":"turning shampoo bottle upside down","template":"Turning [something] upside down","placeholders":["shampoo bottle"]}, +{"id":"101553","label":"wallet falling like a rock","template":"[Something] falling like a rock","placeholders":["wallet"]}, +{"id":"198092","label":"approaching hair dryer with your camera","template":"Approaching [something] with your camera","placeholders":["hair dryer"]}, +{"id":"18121","label":"trying to bend a brush so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a brush"]}, +{"id":"5688","label":"pushing bag so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bag"]}, +{"id":"192115","label":"tearing tissue paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue paper"]}, +{"id":"36471","label":"trying to pour water into bottle, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bottle"]}, +{"id":"118911","label":"moving container closer to another one","template":"Moving [something] closer to [something]","placeholders":["container","another one"]}, +{"id":"132110","label":"poking a deoderant aerosol so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a deoderant aerosol"]}, +{"id":"144068","label":"turning the camera upwards while filming plants","template":"Turning the camera upwards while filming [something]","placeholders":["plants"]}, +{"id":"217300","label":"pretending to sprinkle air onto book","template":"Pretending to sprinkle air onto [something]","placeholders":["book"]}, +{"id":"104609","label":"moving door stopper down","template":"Moving [something] down","placeholders":["door stopper"]}, +{"id":"187312","label":"pushing green headlight from left to right","template":"Pushing [something] from left to right","placeholders":["green headlight"]}, +{"id":"57635","label":"moving mug across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["mug"]}, +{"id":"87660","label":"lifting paper with lighter on it","template":"Lifting [something] with [something] on it","placeholders":["paper","lighter"]}, +{"id":"105758","label":"dropping a matchbox next to a remote","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a remote"]}, +{"id":"194669","label":"putting a notebook upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a notebook"]}, +{"id":"200687","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"62820","label":"poking pillow so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["pillow"]}, +{"id":"154557","label":"putting scissors underneath dishwasher door","template":"Putting [something] underneath [something]","placeholders":["scissors","dishwasher door"]}, +{"id":"3635","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"48674","label":"tipping a matchbox over","template":"Tipping [something] over","placeholders":["a matchbox"]}, +{"id":"50424","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"39791","label":"dropping pen into drawer","template":"Dropping [something] into [something]","placeholders":["pen","drawer"]}, +{"id":"2635","label":"putting an apple on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["an apple","chair"]}, +{"id":"26754","label":"twisting paper","template":"Twisting [something]","placeholders":["paper"]}, +{"id":"87133","label":"turning drink upside down","template":"Turning [something] upside down","placeholders":["drink"]}, +{"id":"84982","label":"approaching banana bunch with your camera","template":"Approaching [something] with your camera","placeholders":["banana bunch"]}, +{"id":"140355","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"74717","label":"putting candy into basket","template":"Putting [something] into [something]","placeholders":["candy","basket"]}, +{"id":"213467","label":"turning the camera left while filming white candle","template":"Turning the camera left while filming [something]","placeholders":["white candle"]}, +{"id":"133807","label":"squeezing oven mitt","template":"Squeezing [something]","placeholders":["oven mitt"]}, +{"id":"189193","label":"picking cup up","template":"Picking [something] up","placeholders":["cup"]}, +{"id":"185953","label":"uncovering lighter","template":"Uncovering [something]","placeholders":["lighter"]}, +{"id":"47297","label":"pushing shoe so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe"]}, +{"id":"21284","label":"turning the camera right while filming jackfruit","template":"Turning the camera right while filming [something]","placeholders":["jackfruit"]}, +{"id":"158153","label":"plugging a portable charger into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a portable charger","a wall outlet"]}, +{"id":"78318","label":"plugging plug into surge protector","template":"Plugging [something] into [something]","placeholders":["plug","surge protector"]}, +{"id":"109272","label":"moving my phone up","template":"Moving [something] up","placeholders":["my phone"]}, +{"id":"87848","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"66832","label":"dropping board clip into glass bowl","template":"Dropping [something] into [something]","placeholders":["board clip","glass bowl"]}, +{"id":"199765","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"50781","label":"putting scissors on a surface","template":"Putting [something] on a surface","placeholders":["scissors"]}, +{"id":"55006","label":"opening door","template":"Opening [something]","placeholders":["door"]}, +{"id":"80128","label":"lifting up one end of duster, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["duster"]}, +{"id":"175876","label":"covering a pen with sheets of paper","template":"Covering [something] with [something]","placeholders":["a pen","sheets of paper"]}, +{"id":"147906","label":"a pencil colliding with a pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a pencil","a pen"]}, +{"id":"46649","label":"pretending to take nothing out of bowl","template":"Pretending to take [something] out of [something]","placeholders":["nothing","bowl"]}, +{"id":"95906","label":"pretending or failing to wipe chalk off of chalkboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["chalk","chalkboard"]}, +{"id":"47960","label":"folding sheet","template":"Folding [something]","placeholders":["sheet"]}, +{"id":"177267","label":"plugging a charger into power outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a charger","power outlet"]}, +{"id":"86235","label":"moving cd player and usb closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["cd player","usb"]}, +{"id":"41509","label":"showing white colour marker pen behind ink bottle","template":"Showing [something] behind [something]","placeholders":["white colour marker pen","ink bottle"]}, +{"id":"53565","label":"taking marble","template":"Taking [one of many similar things on the table]","placeholders":["marble"]}, +{"id":"4473","label":"picking a facial wash up","template":"Picking [something] up","placeholders":["a facial wash"]}, +{"id":"76320","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"104554","label":"piling magazines up","template":"Piling [something] up","placeholders":["magazines"]}, +{"id":"77100","label":"pouring water into a cup","template":"Pouring [something] into [something]","placeholders":["water","a cup"]}, +{"id":"5279","label":"moving lip balm and lip gloss so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["lip balm","lip gloss"]}, +{"id":"24802","label":"tipping a shot glass with nails in it over, so nails in it falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a shot glass","nails in it","nails in it"]}, +{"id":"62007","label":"putting a mirror into a pouch","template":"Putting [something] into [something]","placeholders":["a mirror","a pouch"]}, +{"id":"66113","label":"squeezing purple microfiber","template":"Squeezing [something]","placeholders":["purple microfiber"]}, +{"id":"120802","label":"hitting a can with a phone","template":"Hitting [something] with [something]","placeholders":["a can","a phone"]}, +{"id":"123999","label":"showing that stapler is inside glass","template":"Showing that [something] is inside [something]","placeholders":["stapler","glass"]}, +{"id":"143571","label":"showing nail polish behind glue","template":"Showing [something] behind [something]","placeholders":["nail polish","glue"]}, +{"id":"33950","label":"holding bottle next to bowl","template":"Holding [something] next to [something]","placeholders":["bottle","bowl"]}, +{"id":"14378","label":"wiping crumbs off of a table","template":"Wiping [something] off of [something]","placeholders":["crumbs","a table"]}, +{"id":"179024","label":"pushing wadded up papertowel off of table","template":"Pushing [something] off of [something]","placeholders":["wadded up papertowel","table"]}, +{"id":"133029","label":"pretending to take the key from the keyholder","template":"Pretending to take [something] from [somewhere]","placeholders":["the key","the keyholder"]}, +{"id":"70543","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"140987","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"143769","label":"holding folded shirt next to cell phone","template":"Holding [something] next to [something]","placeholders":["folded shirt","cell phone"]}, +{"id":"144761","label":"moving white toy car away from hair clip","template":"Moving [something] away from [something]","placeholders":["white toy car","hair clip"]}, +{"id":"3306","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"95557","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"106838","label":"salt shaker colliding with pepper shaker and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["salt shaker","pepper shaker"]}, +{"id":"202583","label":"oil falling like a rock","template":"[Something] falling like a rock","placeholders":["oil"]}, +{"id":"104884","label":"putting a comb upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a comb"]}, +{"id":"166837","label":"rolling an empty water bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an empty water bottle"]}, +{"id":"104415","label":"turning waterbottle upside down","template":"Turning [something] upside down","placeholders":["waterbottle"]}, +{"id":"96992","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"95077","label":"pretending or trying and failing to twist lid","template":"Pretending or trying and failing to twist [something]","placeholders":["lid"]}, +{"id":"174306","label":"squeezing a bottle","template":"Squeezing [something]","placeholders":["a bottle"]}, +{"id":"176652","label":"poking a box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a box"]}, +{"id":"175814","label":"moving something away from something","template":"Moving [something] away from [something]","placeholders":["something","something"]}, +{"id":"79863","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"119614","label":"hitting big filter with pen","template":"Hitting [something] with [something]","placeholders":["big filter","pen"]}, +{"id":"116708","label":"plugging a plug head into an extension lead","template":"Plugging [something] into [something]","placeholders":["a plug head","an extension lead"]}, +{"id":"127312","label":"turning a phone upside down","template":"Turning [something] upside down","placeholders":["a phone"]}, +{"id":"9659","label":"showing a photo of a baby to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a baby"]}, +{"id":"157768","label":"turning the camera left while filming something","template":"Turning the camera left while filming [something]","placeholders":["something"]}, +{"id":"37578","label":"pretending to be tearing sock","template":"Pretending to be tearing [something that is not tearable]","placeholders":["sock"]}, +{"id":"116923","label":"stone falling like a rock","template":"[Something] falling like a rock","placeholders":["stone"]}, +{"id":"23174","label":"pouring water out of shot glass","template":"Pouring [something] out of [something]","placeholders":["water","shot glass"]}, +{"id":"98142","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"6200","label":"tipping drinking glass over","template":"Tipping [something] over","placeholders":["drinking glass"]}, +{"id":"163292","label":"pushing nail varnish from left to right","template":"Pushing [something] from left to right","placeholders":["nail varnish"]}, +{"id":"187730","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"137764","label":"pushing an apple so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["an apple"]}, +{"id":"101359","label":"squeezing lotion","template":"Squeezing [something]","placeholders":["lotion"]}, +{"id":"177838","label":"putting an electric juicer in front of a glass","template":"Putting [something] in front of [something]","placeholders":["an electric juicer","a glass"]}, +{"id":"116079","label":"poking discs so that it falls over","template":"Poking [something] so that it falls over","placeholders":["discs"]}, +{"id":"86532","label":"putting a lip gloss in a pile of other lip glosses","template":"Putting [something similar to other things that are already on the table]","placeholders":["a lip gloss in a pile of other lip glosses"]}, +{"id":"104018","label":"letting cylinder roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cylinder"]}, +{"id":"126784","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"62463","label":"pouring beer into a wash basin","template":"Pouring [something] into [something]","placeholders":["beer","a wash basin"]}, +{"id":"115216","label":"putting highlighter in front of glass","template":"Putting [something] in front of [something]","placeholders":["highlighter","glass"]}, +{"id":"29322","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"6262","label":"squeezing sponge ball","template":"Squeezing [something]","placeholders":["sponge ball"]}, +{"id":"216249","label":"showing cookies next to cup","template":"Showing [something] next to [something]","placeholders":["cookies","cup"]}, +{"id":"138025","label":"showing perfume bottle behind wax jar","template":"Showing [something] behind [something]","placeholders":["perfume bottle","wax jar"]}, +{"id":"206263","label":"throwing usb","template":"Throwing [something]","placeholders":["usb"]}, +{"id":"156563","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"76862","label":"digging ipad out of blanket","template":"Digging [something] out of [something]","placeholders":["ipad","blanket"]}, +{"id":"216062","label":"holding scissors in front of shorts","template":"Holding [something] in front of [something]","placeholders":["scissors","shorts"]}, +{"id":"169663","label":"twisting blinds","template":"Twisting [something]","placeholders":["blinds"]}, +{"id":"26296","label":"pretending to take powder box from table","template":"Pretending to take [something] from [somewhere]","placeholders":["powder box","table"]}, +{"id":"108564","label":"pulling two ends of scotch tape so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["scotch tape"]}, +{"id":"132760","label":"putting a razor on the edge of a desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a razor","a desk"]}, +{"id":"91136","label":"showing that a match box is empty","template":"Showing that [something] is empty","placeholders":["a match box"]}, +{"id":"146524","label":"spinning a chair that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a chair"]}, +{"id":"159824","label":"tipping a tub with plastic bricks over, so some of the plastic bricks falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a tub","plastic bricks","some of the plastic bricks"]}, +{"id":"111463","label":"putting tablet on a surface","template":"Putting [something] on a surface","placeholders":["tablet"]}, +{"id":"204775","label":"pretending or failing to wipe gummy off of stool","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["gummy","stool"]}, +{"id":"86017","label":"spinning fidget spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["fidget spinner"]}, +{"id":"214592","label":"pretending to pick towel up","template":"Pretending to pick [something] up","placeholders":["towel"]}, +{"id":"11781","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"184524","label":"stacking 2 toy cars","template":"Stacking [number of] [something]","placeholders":["2","toy cars"]}, +{"id":"50659","label":"plugging a plug extender into the wall outlet","template":"Plugging [something] into [something]","placeholders":["a plug extender","the wall outlet"]}, +{"id":"167525","label":"poking a stack of containers so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["containers"]}, +{"id":"88721","label":"pulling carriage clip from behind of a bicycle","template":"Pulling [something] from behind of [something]","placeholders":["carriage clip","a bicycle"]}, +{"id":"49754","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"151296","label":"pushing iron roll so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["iron roll"]}, +{"id":"89630","label":"failing to put a pair of scissors into a pencil case because the pair of scissors does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["a pair of scissors","a pencil case","the pair of scissors"]}, +{"id":"14467","label":"taking a beer can from the table","template":"Taking [something] from [somewhere]","placeholders":["a beer can","the table"]}, +{"id":"85070","label":"taking balpoint","template":"Taking [one of many similar things on the table]","placeholders":["balpoint"]}, +{"id":"57146","label":"putting setsquare into mug","template":"Putting [something] into [something]","placeholders":["setsquare","mug"]}, +{"id":"164119","label":"lifting up one end of clippers, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["clippers"]}, +{"id":"149633","label":"putting red spoon on a surface","template":"Putting [something] on a surface","placeholders":["red spoon"]}, +{"id":"206013","label":"moving bottle away from the camera","template":"Moving [something] away from the camera","placeholders":["bottle"]}, +{"id":"105752","label":"turning a glass upside down","template":"Turning [something] upside down","placeholders":["a glass"]}, +{"id":"170547","label":"taking crayon out of box","template":"Taking [something] out of [something]","placeholders":["crayon","box"]}, +{"id":"106510","label":"tool falling like a rock","template":"[Something] falling like a rock","placeholders":["tool"]}, +{"id":"136873","label":"moving the remote across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["the remote"]}, +{"id":"219599","label":"pouring water out of a mug","template":"Pouring [something] out of [something]","placeholders":["water","a mug"]}, +{"id":"197721","label":"moving watch towards the camera","template":"Moving [something] towards the camera","placeholders":["watch"]}, +{"id":"105668","label":"poking a kid so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a kid"]}, +{"id":"195639","label":"stuffing scarves into a bag","template":"Stuffing [something] into [something]","placeholders":["scarves","a bag"]}, +{"id":"220204","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"94139","label":"moving cup away from the camera","template":"Moving [something] away from the camera","placeholders":["cup"]}, +{"id":"182580","label":"tipping toothpaste over","template":"Tipping [something] over","placeholders":["toothpaste"]}, +{"id":"123968","label":"the remote control falling like a rock","template":"[Something] falling like a rock","placeholders":["the remote control"]}, +{"id":"211127","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"113843","label":"poking stapler so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["stapler"]}, +{"id":"110316","label":"moving staple box away from brush","template":"Moving [something] away from [something]","placeholders":["staple box","brush"]}, +{"id":"176346","label":"bending fork so that it deforms","template":"Bending [something] so that it deforms","placeholders":["fork"]}, +{"id":"48989","label":"dropping a box in front of a comb","template":"Dropping [something] in front of [something]","placeholders":["a box","a comb"]}, +{"id":"121481","label":"moving stone and ring closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["stone","ring"]}, +{"id":"37627","label":"removing a container, revealing adapter behind","template":"Removing [something], revealing [something] behind","placeholders":["a container","adapter"]}, +{"id":"17036","label":"dropping pencil onto desk","template":"Dropping [something] onto [something]","placeholders":["pencil","desk"]}, +{"id":"63512","label":"rolling blistex on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["blistex"]}, +{"id":"46743","label":"throwing paper","template":"Throwing [something]","placeholders":["paper"]}, +{"id":"72855","label":"putting a hammer on the edge of a desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a hammer","a desk"]}, +{"id":"121844","label":"pulling box from right to left","template":"Pulling [something] from right to left","placeholders":["box"]}, +{"id":"31757","label":"moving stick down","template":"Moving [something] down","placeholders":["stick"]}, +{"id":"14366","label":"pretending to poke a book","template":"Pretending to poke [something]","placeholders":["a book"]}, +{"id":"156182","label":"showing a jar behind a paper roll","template":"Showing [something] behind [something]","placeholders":["a jar","a paper roll"]}, +{"id":"172322","label":"pushing hot case so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hot case"]}, +{"id":"209003","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"155471","label":"tipping cup with cereal over, so cereal falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","cereal","cereal"]}, +{"id":"219213","label":"taking one shoe off a table of shoes","template":"Taking [one of many similar things on the table]","placeholders":["one shoe off a table of shoes"]}, +{"id":"3172","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"1788","label":"picking shoe up","template":"Picking [something] up","placeholders":["shoe"]}, +{"id":"39595","label":"moving cub down","template":"Moving [something] down","placeholders":["cub"]}, +{"id":"116416","label":"moving a container away from a comb","template":"Moving [something] away from [something]","placeholders":["a container","a comb"]}, +{"id":"56044","label":"pushing pen so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pen"]}, +{"id":"149040","label":"putting 4 of laundry buckle onto a plastic bag","template":"Putting [number of] [something] onto [something]","placeholders":["4 of","laundry buckle","a plastic bag"]}, +{"id":"50679","label":"covering pencil with shirt","template":"Covering [something] with [something]","placeholders":["pencil","shirt"]}, +{"id":"21333","label":"pretending to poke purse","template":"Pretending to poke [something]","placeholders":["purse"]}, +{"id":"188407","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"162102","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"211849","label":"closing green face powder","template":"Closing [something]","placeholders":["green face powder"]}, +{"id":"205695","label":"putting cookies and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["cookies","spoon"]}, +{"id":"128105","label":"holding diffuser next to comb","template":"Holding [something] next to [something]","placeholders":["diffuser","comb"]}, +{"id":"29474","label":"opening a coffee can","template":"Opening [something]","placeholders":["a coffee can"]}, +{"id":"105939","label":"holding pen over watch","template":"Holding [something] over [something]","placeholders":["pen","watch"]}, +{"id":"165549","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"7490","label":"lifting up one end of notebook without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["notebook"]}, +{"id":"185094","label":"twisting tuner","template":"Twisting [something]","placeholders":["tuner"]}, +{"id":"97295","label":"moving pick closer to eraser","template":"Moving [something] closer to [something]","placeholders":["pick","eraser"]}, +{"id":"111079","label":"plugging cord into wall","template":"Plugging [something] into [something]","placeholders":["cord","wall"]}, +{"id":"387","label":"pouring milk into mug","template":"Pouring [something] into [something]","placeholders":["milk","mug"]}, +{"id":"200991","label":"putting glasses","template":"Putting [something similar to other things that are already on the table]","placeholders":["glasses"]}, +{"id":"160372","label":"bending a paper clip so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper clip"]}, +{"id":"164528","label":"pretending to be tearing rose paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["rose paper"]}, +{"id":"76235","label":"showing hair band to the camera","template":"Showing [something] to the camera","placeholders":["hair band"]}, +{"id":"203523","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"146957","label":"pushing a hat from left to right","template":"Pushing [something] from left to right","placeholders":["a hat"]}, +{"id":"96846","label":"pretending to take keychain from table","template":"Pretending to take [something] from [somewhere]","placeholders":["keychain","table"]}, +{"id":"56578","label":"uncovering tablet","template":"Uncovering [something]","placeholders":["tablet"]}, +{"id":"62479","label":"piling coins up","template":"Piling [something] up","placeholders":["coins"]}, +{"id":"216877","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"148966","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"32293","label":"lifting book with rock on it","template":"Lifting [something] with [something] on it","placeholders":["book","rock"]}, +{"id":"186057","label":"pretending to take a shoe from a shoerack","template":"Pretending to take [something] from [somewhere]","placeholders":["a shoe","a shoerack"]}, +{"id":"74938","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"220278","label":"letting small bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["small bottle"]}, +{"id":"139861","label":"spinning a can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a can"]}, +{"id":"103900","label":"moving a plastic bottle closer to a box","template":"Moving [something] closer to [something]","placeholders":["a plastic bottle","a box"]}, +{"id":"43902","label":"letting aa battery roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["aa battery"]}, +{"id":"197985","label":"poking a stack of toys so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["toys"]}, +{"id":"44616","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"17765","label":"pushing a flashlight from left to right","template":"Pushing [something] from left to right","placeholders":["a flashlight"]}, +{"id":"163383","label":"moving key and comb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["key","comb"]}, +{"id":"176283","label":"pretending to open vaseline without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["vaseline"]}, +{"id":"93698","label":"pushing paper punch from left to right","template":"Pushing [something] from left to right","placeholders":["paper punch"]}, +{"id":"5736","label":"spilling liquid onto kitchen counter","template":"Spilling [something] onto [something]","placeholders":["liquid","kitchen counter"]}, +{"id":"140301","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"211297","label":"rolling an adhesive tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["an adhesive tape"]}, +{"id":"52613","label":"lifting a cardboard with a helmet on it","template":"Lifting [something] with [something] on it","placeholders":["a cardboard","a helmet"]}, +{"id":"214236","label":"dropping a knife into a box","template":"Dropping [something] into [something]","placeholders":["a knife","a box"]}, +{"id":"9641","label":"stacking 2 staplers","template":"Stacking [number of] [something]","placeholders":["2","staplers"]}, +{"id":"8445","label":"pouring green liquid into a glass","template":"Pouring [something] into [something]","placeholders":["green liquid","a glass"]}, +{"id":"139431","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"118550","label":"stuffing tissue into mug","template":"Stuffing [something] into [something]","placeholders":["tissue","mug"]}, +{"id":"22510","label":"pretending to pick powerbank up","template":"Pretending to pick [something] up","placeholders":["powerbank"]}, +{"id":"73713","label":"putting phone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["phone"]}, +{"id":"180540","label":"dropping wallet onto coaster","template":"Dropping [something] onto [something]","placeholders":["wallet","coaster"]}, +{"id":"17886","label":"moving a brush closer to a pencil case","template":"Moving [something] closer to [something]","placeholders":["a brush","a pencil case"]}, +{"id":"100225","label":"turning the camera upwards while filming orange sharpner","template":"Turning the camera upwards while filming [something]","placeholders":["orange sharpner"]}, +{"id":"195448","label":"pulling coffee mug from behind of box","template":"Pulling [something] from behind of [something]","placeholders":["coffee mug","box"]}, +{"id":"133759","label":"holding a spoon next to bucket","template":"Holding [something] next to [something]","placeholders":["a spoon","bucket"]}, +{"id":"197908","label":"moving wallet away from remote","template":"Moving [something] away from [something]","placeholders":["wallet","remote"]}, +{"id":"203775","label":"dropping a stuffed bird onto the ground","template":"Dropping [something] onto [something]","placeholders":["a stuffed bird","the ground"]}, +{"id":"6253","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"174280","label":"moving a tablet away from a tissue box","template":"Moving [something] away from [something]","placeholders":["a tablet","a tissue box"]}, +{"id":"210474","label":"letting glass roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glass"]}, +{"id":"135738","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"50484","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"141406","label":"burying a purse in a blanket","template":"Burying [something] in [something]","placeholders":["a purse","a blanket"]}, +{"id":"74309","label":"spreading peanut butter onto bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","bread"]}, +{"id":"12195","label":"taking pen out of box","template":"Taking [something] out of [something]","placeholders":["pen","box"]}, +{"id":"108061","label":"taking brick","template":"Taking [one of many similar things on the table]","placeholders":["brick"]}, +{"id":"27794","label":"pushing tomato so it spins","template":"Pushing [something] so it spins","placeholders":["tomato"]}, +{"id":"28974","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"18492","label":"covering paper with phone case","template":"Covering [something] with [something]","placeholders":["paper","phone case"]}, +{"id":"97237","label":"putting microscope behind mouse","template":"Putting [something] behind [something]","placeholders":["microscope","mouse"]}, +{"id":"44635","label":"pushing white board clip with metal rod","template":"Pushing [something] with [something]","placeholders":["white board clip","metal rod"]}, +{"id":"220026","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"58567","label":"putting chess piece on a surface","template":"Putting [something] on a surface","placeholders":["chess piece"]}, +{"id":"214650","label":"pushing plush so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["plush"]}, +{"id":"87146","label":"squeezing a water bottle","template":"Squeezing [something]","placeholders":["a water bottle"]}, +{"id":"42860","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"105228","label":"putting marker pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["marker pen"]}, +{"id":"49698","label":"holding wooden spoon next to blender","template":"Holding [something] next to [something]","placeholders":["wooden spoon","blender"]}, +{"id":"75201","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"135411","label":"pretending to sprinkle air onto muffin","template":"Pretending to sprinkle air onto [something]","placeholders":["muffin"]}, +{"id":"80767","label":"pulling a chess board from left to right","template":"Pulling [something] from left to right","placeholders":["a chess board"]}, +{"id":"50632","label":"tearing an envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["an envelope"]}, +{"id":"119332","label":"putting sock that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["sock"]}, +{"id":"30454","label":"trying to bend a metal knife so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a metal knife"]}, +{"id":"53666","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"14048","label":"pushing cup from right to left","template":"Pushing [something] from right to left","placeholders":["cup"]}, +{"id":"39568","label":"taking crayon","template":"Taking [one of many similar things on the table]","placeholders":["crayon"]}, +{"id":"3989","label":"pretending to throw remote control","template":"Pretending to throw [something]","placeholders":["remote control"]}, +{"id":"186675","label":"pretending to squeeze pack","template":"Pretending to squeeze [something]","placeholders":["pack"]}, +{"id":"53799","label":"pushing a chess board with a hand","template":"Pushing [something] with [something]","placeholders":["a chess board","a hand"]}, +{"id":"164806","label":"letting a pencil roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a pencil"]}, +{"id":"141977","label":"showing that a lunchbox is empty","template":"Showing that [something] is empty","placeholders":["a lunchbox"]}, +{"id":"23151","label":"picking firm plastic up","template":"Picking [something] up","placeholders":["firm plastic"]}, +{"id":"40327","label":"water bottle colliding with water bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["water bottle","water bottle"]}, +{"id":"104248","label":"pretending to open a jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a jar"]}, +{"id":"96935","label":"opening car door","template":"Opening [something]","placeholders":["car door"]}, +{"id":"25211","label":"moving mug away from glass","template":"Moving [something] away from [something]","placeholders":["mug","glass"]}, +{"id":"6570","label":"covering wallet with bag","template":"Covering [something] with [something]","placeholders":["wallet","bag"]}, +{"id":"188132","label":"putting remote control on a surface","template":"Putting [something] on a surface","placeholders":["remote control"]}, +{"id":"6268","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"138276","label":"poking eye glasses so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["eye glasses"]}, +{"id":"5877","label":"putting a spray bottle on the edge of sofa so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a spray bottle","sofa"]}, +{"id":"87109","label":"taking clothes peg out of mug","template":"Taking [something] out of [something]","placeholders":["clothes peg","mug"]}, +{"id":"127420","label":"taking a bag out of a jar","template":"Taking [something] out of [something]","placeholders":["a bag","a jar"]}, +{"id":"87528","label":"pretending to squeeze a bottle of water","template":"Pretending to squeeze [something]","placeholders":["a bottle of water"]}, +{"id":"96021","label":"poking paper so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["paper"]}, +{"id":"6303","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"122203","label":"squeezing ball","template":"Squeezing [something]","placeholders":["ball"]}, +{"id":"135559","label":"showing a pen on top of optical mouse","template":"Showing [something] on top of [something]","placeholders":["a pen","optical mouse"]}, +{"id":"39505","label":"showing cloth clip to the camera","template":"Showing [something] to the camera","placeholders":["cloth clip"]}, +{"id":"9924","label":"tilting clipnoard with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["clipnoard","pen"]}, +{"id":"117395","label":"stuffing tissue into giftbag","template":"Stuffing [something] into [something]","placeholders":["tissue","giftbag"]}, +{"id":"127776","label":"pretending to pick plate up","template":"Pretending to pick [something] up","placeholders":["plate"]}, +{"id":"70671","label":"hitting stamp pad with remote","template":"Hitting [something] with [something]","placeholders":["stamp pad","remote"]}, +{"id":"149638","label":"pretending to turn chapstick upside down","template":"Pretending to turn [something] upside down","placeholders":["chapstick"]}, +{"id":"29972","label":"attaching earphone to laptop","template":"Attaching [something] to [something]","placeholders":["earphone","laptop"]}, +{"id":"56039","label":"lifting paper with rule on it","template":"Lifting [something] with [something] on it","placeholders":["paper","rule"]}, +{"id":"94364","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"33598","label":"putting trash bags upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["trash bags"]}, +{"id":"163471","label":"opening cd box","template":"Opening [something]","placeholders":["cd box"]}, +{"id":"129361","label":"letting can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["can"]}, +{"id":"100623","label":"moving a ring down","template":"Moving [something] down","placeholders":["a ring"]}, +{"id":"173764","label":"pushing nail varnish so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["nail varnish"]}, +{"id":"50133","label":"spinning candel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["candel"]}, +{"id":"142297","label":"pretending to close phone without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["phone"]}, +{"id":"63058","label":"pulling a reusable grocery bag out of its holder","template":"Pulling [something] out of [something]","placeholders":["a reusable grocery bag","its holder"]}, +{"id":"15547","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"155956","label":"holding duster next to orange cup","template":"Holding [something] next to [something]","placeholders":["duster","orange cup"]}, +{"id":"157680","label":"uncovering pillow","template":"Uncovering [something]","placeholders":["pillow"]}, +{"id":"134377","label":"pulling the phone from right to left","template":"Pulling [something] from right to left","placeholders":["the phone"]}, +{"id":"155848","label":"poking a doll so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a doll"]}, +{"id":"82439","label":"pushing a glass so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a glass"]}, +{"id":"132952","label":"moving calendar away from the camera","template":"Moving [something] away from the camera","placeholders":["calendar"]}, +{"id":"69488","label":"throwing a shoe in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a shoe"]}, +{"id":"124605","label":"showing wallet behind candle","template":"Showing [something] behind [something]","placeholders":["wallet","candle"]}, +{"id":"143497","label":"pretending to pour gems out of container, but container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["gems","container","container"]}, +{"id":"141049","label":"stuffing tissue into a bottle","template":"Stuffing [something] into [something]","placeholders":["tissue","a bottle"]}, +{"id":"212483","label":"putting matchbox next to mug","template":"Putting [something] next to [something]","placeholders":["matchbox","mug"]}, +{"id":"145828","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"82991","label":"plugging a plug into wall outlet","template":"Plugging [something] into [something]","placeholders":["a plug","wall outlet"]}, +{"id":"154239","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"613","label":"putting paint into bucket","template":"Putting [something] into [something]","placeholders":["paint","bucket"]}, +{"id":"32475","label":"covering lighter with cover","template":"Covering [something] with [something]","placeholders":["lighter","cover"]}, +{"id":"181975","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"14965","label":"lifting book with glass on it","template":"Lifting [something] with [something] on it","placeholders":["book","glass"]}, +{"id":"40049","label":"stuffing paper into a mug","template":"Stuffing [something] into [something]","placeholders":["paper","a mug"]}, +{"id":"43906","label":"showing water bottle behind page markers","template":"Showing [something] behind [something]","placeholders":["water bottle","page markers"]}, +{"id":"45673","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"22367","label":"putting stapler on a surface","template":"Putting [something] on a surface","placeholders":["stapler"]}, +{"id":"104870","label":"trying but failing to attach a iron piece to another iron piece because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a iron piece","another iron piece"]}, +{"id":"88167","label":"wiping food off of stove top","template":"Wiping [something] off of [something]","placeholders":["food","stove top"]}, +{"id":"21258","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"56433","label":"touching (without moving) the cover of a book","template":"Touching (without moving) [part] of [something]","placeholders":["the cover","a book"]}, +{"id":"81130","label":"turning bottle cap upside down","template":"Turning [something] upside down","placeholders":["bottle cap"]}, +{"id":"36283","label":"showing key on top of spoon","template":"Showing [something] on top of [something]","placeholders":["key","spoon"]}, +{"id":"36163","label":"closing carmex bottle","template":"Closing [something]","placeholders":["carmex bottle"]}, +{"id":"6948","label":"poking a stack of coasters without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["coasters"]}, +{"id":"203294","label":"touching (without moving) flusher of toilet","template":"Touching (without moving) [part] of [something]","placeholders":["flusher","toilet"]}, +{"id":"61887","label":"letting an orange roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["an orange"]}, +{"id":"20338","label":"taking toy out of plastic egg","template":"Taking [something] out of [something]","placeholders":["toy","plastic egg"]}, +{"id":"146868","label":"putting a water bottle upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a water bottle"]}, +{"id":"51370","label":"putting coin next to belt","template":"Putting [something] next to [something]","placeholders":["coin","belt"]}, +{"id":"125426","label":"holding toddler rain boot","template":"Holding [something]","placeholders":["toddler rain boot"]}, +{"id":"192785","label":"stuffing sunglasses into bucket","template":"Stuffing [something] into [something]","placeholders":["sunglasses","bucket"]}, +{"id":"30605","label":"spreading water onto stove","template":"Spreading [something] onto [something]","placeholders":["water","stove"]}, +{"id":"10443","label":"turning the camera left while filming picture","template":"Turning the camera left while filming [something]","placeholders":["picture"]}, +{"id":"72320","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"136523","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"21596","label":"trying to pour water into cup, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","cup"]}, +{"id":"162234","label":"holding sharpie","template":"Holding [something]","placeholders":["sharpie"]}, +{"id":"57786","label":"letting bottle roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["bottle"]}, +{"id":"126243","label":"a banana peel falling like a rock","template":"[Something] falling like a rock","placeholders":["a banana peel"]}, +{"id":"185991","label":"dropping a matchbox onto a container","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a container"]}, +{"id":"122737","label":"putting pen into jar","template":"Putting [something] into [something]","placeholders":["pen","jar"]}, +{"id":"117448","label":"putting stapler into basket","template":"Putting [something] into [something]","placeholders":["stapler","basket"]}, +{"id":"196274","label":"showing that a paper bag is empty","template":"Showing that [something] is empty","placeholders":["a paper bag"]}, +{"id":"190268","label":"folding a tanktop","template":"Folding [something]","placeholders":["a tanktop"]}, +{"id":"56980","label":"plugging charger into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","outlet"]}, +{"id":"152592","label":"pushing box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["box"]}, +{"id":"38891","label":"moving mug closer to glass","template":"Moving [something] closer to [something]","placeholders":["mug","glass"]}, +{"id":"125555","label":"putting napkin on the edge of wooden bowl so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["napkin","wooden bowl"]}, +{"id":"72851","label":"poking pig so that it falls over","template":"Poking [something] so that it falls over","placeholders":["pig"]}, +{"id":"16038","label":"closing cd case","template":"Closing [something]","placeholders":["cd case"]}, +{"id":"123399","label":"hitting a rubber pig with lint brush","template":"Hitting [something] with [something]","placeholders":["a rubber pig","lint brush"]}, +{"id":"164514","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"103003","label":"poking glass of water so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["glass of water"]}, +{"id":"40719","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"116562","label":"pulling yarn out of canister","template":"Pulling [something] out of [something]","placeholders":["yarn","canister"]}, +{"id":"97193","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"148490","label":"tearing something into two pieces","template":"Tearing [something] into two pieces","placeholders":["something"]}, +{"id":"19786","label":"pushing duster with metal rod","template":"Pushing [something] with [something]","placeholders":["duster","metal rod"]}, +{"id":"24107","label":"pushing remote so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["remote"]}, +{"id":"110402","label":"pushing a mug from left to right","template":"Pushing [something] from left to right","placeholders":["a mug"]}, +{"id":"71506","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"43875","label":"covering calculator with a piece or paper","template":"Covering [something] with [something]","placeholders":["calculator","a piece or paper"]}, +{"id":"122955","label":"turning the camera upwards while filming split air conditioner outdoor unit","template":"Turning the camera upwards while filming [something]","placeholders":["split air conditioner outdoor unit"]}, +{"id":"110138","label":"pushing book with smarthphone","template":"Pushing [something] with [something]","placeholders":["book","smarthphone"]}, +{"id":"83978","label":"poking a wallet so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a wallet"]}, +{"id":"132395","label":"pushing faucet from right to left","template":"Pushing [something] from right to left","placeholders":["faucet"]}, +{"id":"185895","label":"folding sun glasses","template":"Folding [something]","placeholders":["sun glasses"]}, +{"id":"3137","label":"putting scissors onto tape dispenser so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["scissors","tape dispenser"]}, +{"id":"61892","label":"putting bottle into backpack","template":"Putting [something] into [something]","placeholders":["bottle","backpack"]}, +{"id":"182007","label":"plugging power adapter into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power adapter","a wall outlet"]}, +{"id":"150565","label":"rolling garbage covers on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["garbage covers"]}, +{"id":"18723","label":"squeezing stuffed animal","template":"Squeezing [something]","placeholders":["stuffed animal"]}, +{"id":"51172","label":"showing a photo of spoon to the camera","template":"Showing a photo of [something] to the camera","placeholders":["spoon"]}, +{"id":"50661","label":"turning the camera left while filming soft drink bottles","template":"Turning the camera left while filming [something]","placeholders":["soft drink bottles"]}, +{"id":"173777","label":"moving soda away from box","template":"Moving [something] away from [something]","placeholders":["soda","box"]}, +{"id":"25192","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"124864","label":"tipping dish soap over","template":"Tipping [something] over","placeholders":["dish soap"]}, +{"id":"104774","label":"throwing something","template":"Throwing [something]","placeholders":["something"]}, +{"id":"11200","label":"pouring water onto toothbrush","template":"Pouring [something] onto [something]","placeholders":["water","toothbrush"]}, +{"id":"9028","label":"taking clothespin","template":"Taking [one of many similar things on the table]","placeholders":["clothespin"]}, +{"id":"84098","label":"pushing bottle off of table","template":"Pushing [something] off of [something]","placeholders":["bottle","table"]}, +{"id":"127879","label":"pretending to pour water out of water bottle, but water bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","water bottle","water bottle"]}, +{"id":"53994","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"120231","label":"opening petrol tank","template":"Opening [something]","placeholders":["petrol tank"]}, +{"id":"79688","label":"pushing phone from right to left","template":"Pushing [something] from right to left","placeholders":["phone"]}, +{"id":"92635","label":"pouring water out of a water pipe","template":"Pouring [something] out of [something]","placeholders":["water","a water pipe"]}, +{"id":"61840","label":"touching (without moving) part of a bottle","template":"Touching (without moving) [part] of [something]","placeholders":["part","a bottle"]}, +{"id":"13844","label":"letting powerbank roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["powerbank"]}, +{"id":"90144","label":"rolling metal rod on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["metal rod"]}, +{"id":"133172","label":"holding a pen over a pencil case","template":"Holding [something] over [something]","placeholders":["a pen","a pencil case"]}, +{"id":"6803","label":"dropping a ball into a cup","template":"Dropping [something] into [something]","placeholders":["a ball","a cup"]}, +{"id":"169492","label":"showing that stick is inside cup","template":"Showing that [something] is inside [something]","placeholders":["stick","cup"]}, +{"id":"45089","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"62389","label":"poking toaster so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["toaster"]}, +{"id":"104454","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"74493","label":"moving a cd drive across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a cd drive"]}, +{"id":"29389","label":"turning red spoon upside down","template":"Turning [something] upside down","placeholders":["red spoon"]}, +{"id":"24391","label":"pretending to pick nail polish up","template":"Pretending to pick [something] up","placeholders":["nail polish"]}, +{"id":"183939","label":"holding a bottle in front of the vessel rack","template":"Holding [something] in front of [something]","placeholders":["a bottle","the vessel rack"]}, +{"id":"219390","label":"pretending to be tearing a booklet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a booklet"]}, +{"id":"27301","label":"pushing bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["bottle"]}, +{"id":"5408","label":"holding pencil next to tape","template":"Holding [something] next to [something]","placeholders":["pencil","tape"]}, +{"id":"173496","label":"spreading peanut butter onto bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","bread"]}, +{"id":"40018","label":"putting pen onto glass so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pen","glass"]}, +{"id":"39683","label":"closing closing a manicure set","template":"Closing [something]","placeholders":["closing a manicure set"]}, +{"id":"193206","label":"falling like feather falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["falling like feather"]}, +{"id":"33098","label":"tipping something over","template":"Tipping [something] over","placeholders":["something"]}, +{"id":"213392","label":"plugging cable into phone","template":"Plugging [something] into [something]","placeholders":["cable","phone"]}, +{"id":"162616","label":"moving book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["book"]}, +{"id":"2877","label":"showing bottle opener next to purse","template":"Showing [something] next to [something]","placeholders":["bottle opener","purse"]}, +{"id":"7940","label":"opening ink bottle","template":"Opening [something]","placeholders":["ink bottle"]}, +{"id":"115573","label":"plugging phone charger into plug","template":"Plugging [something] into [something]","placeholders":["phone charger","plug"]}, +{"id":"145382","label":"bending matchstick until it breaks","template":"Bending [something] until it breaks","placeholders":["matchstick"]}, +{"id":"146913","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"24130","label":"taking a highlighter","template":"Taking [one of many similar things on the table]","placeholders":["a highlighter"]}, +{"id":"127063","label":"putting screw driver","template":"Putting [something similar to other things that are already on the table]","placeholders":["screw driver"]}, +{"id":"8110","label":"twisting (wringing) a piece of cloth wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a piece of cloth"]}, +{"id":"75757","label":"lifting a surface with glue stick on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["glue stick"]}, +{"id":"102177","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"40280","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"89404","label":"dropping a matchstick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a remote"]}, +{"id":"160027","label":"showing quarter next to dollar","template":"Showing [something] next to [something]","placeholders":["quarter","dollar"]}, +{"id":"82892","label":"moving hanger and screwdriver closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["hanger","screwdriver"]}, +{"id":"38609","label":"pretending or trying and failing to twist garfield plush","template":"Pretending or trying and failing to twist [something]","placeholders":["garfield plush"]}, +{"id":"33211","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"130671","label":"hitting mug with pen","template":"Hitting [something] with [something]","placeholders":["mug","pen"]}, +{"id":"60599","label":"pushing toothbrush from right to left","template":"Pushing [something] from right to left","placeholders":["toothbrush"]}, +{"id":"88131","label":"stuffing paper towels into cup","template":"Stuffing [something] into [something]","placeholders":["paper towels","cup"]}, +{"id":"7177","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"21719","label":"putting coin","template":"Putting [something similar to other things that are already on the table]","placeholders":["coin"]}, +{"id":"167661","label":"picking a remote up","template":"Picking [something] up","placeholders":["a remote"]}, +{"id":"83628","label":"pulling broom from left to right","template":"Pulling [something] from left to right","placeholders":["broom"]}, +{"id":"91358","label":"putting sunglasses and toothbrush on the table","template":"Putting [something] and [something] on the table","placeholders":["sunglasses","toothbrush"]}, +{"id":"98332","label":"plugging lead into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["lead","laptop"]}, +{"id":"123583","label":"turning the camera right while filming poster","template":"Turning the camera right while filming [something]","placeholders":["poster"]}, +{"id":"53324","label":"picking a packaging up","template":"Picking [something] up","placeholders":["a packaging"]}, +{"id":"168601","label":"taking fork","template":"Taking [one of many similar things on the table]","placeholders":["fork"]}, +{"id":"118498","label":"putting bottle in front of eraser","template":"Putting [something] in front of [something]","placeholders":["bottle","eraser"]}, +{"id":"163847","label":"folding a wash cloth","template":"Folding [something]","placeholders":["a wash cloth"]}, +{"id":"111731","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"205330","label":"putting water bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["water bottle"]}, +{"id":"21923","label":"dropping a matchbox onto a box","template":"Dropping [something] onto [something]","placeholders":["a matchbox","a box"]}, +{"id":"8092","label":"turning the camera left while filming black hair tie","template":"Turning the camera left while filming [something]","placeholders":["black hair tie"]}, +{"id":"175640","label":"showing that olive is inside bottle","template":"Showing that [something] is inside [something]","placeholders":["olive","bottle"]}, +{"id":"164331","label":"moving away from mouse with your camera","template":"Moving away from [something] with your camera","placeholders":["mouse"]}, +{"id":"122279","label":"opening a pot","template":"Opening [something]","placeholders":["a pot"]}, +{"id":"142888","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"32796","label":"showing glasses behind hamburger","template":"Showing [something] behind [something]","placeholders":["glasses","hamburger"]}, +{"id":"7870","label":"pouring liquid into a glass","template":"Pouring [something] into [something]","placeholders":["liquid","a glass"]}, +{"id":"22279","label":"holding wallet over diary","template":"Holding [something] over [something]","placeholders":["wallet","diary"]}, +{"id":"120824","label":"showing that orange bowl is empty","template":"Showing that [something] is empty","placeholders":["orange bowl"]}, +{"id":"86925","label":"letting a pill bottle roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a pill bottle"]}, +{"id":"209352","label":"pretending to pick peach up","template":"Pretending to pick [something] up","placeholders":["peach"]}, +{"id":"151214","label":"pushing a tissue box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a tissue box"]}, +{"id":"19981","label":"covering a watch with a hat","template":"Covering [something] with [something]","placeholders":["a watch","a hat"]}, +{"id":"185471","label":"stuffing cloth into bucket","template":"Stuffing [something] into [something]","placeholders":["cloth","bucket"]}, +{"id":"45410","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"33247","label":"putting a wooden fork upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a wooden fork"]}, +{"id":"160387","label":"holding jar over box","template":"Holding [something] over [something]","placeholders":["jar","box"]}, +{"id":"64660","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"91910","label":"moving the arm of plush","template":"Moving [part] of [something]","placeholders":["the arm","plush"]}, +{"id":"150963","label":"dropping container behind bowl","template":"Dropping [something] behind [something]","placeholders":["container","bowl"]}, +{"id":"13843","label":"uncovering striker coin","template":"Uncovering [something]","placeholders":["striker coin"]}, +{"id":"92587","label":"tilting box with razor blade on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","razor blade"]}, +{"id":"156821","label":"tilting box with hand on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","hand"]}, +{"id":"172786","label":"taking cup","template":"Taking [one of many similar things on the table]","placeholders":["cup"]}, +{"id":"190535","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"20356","label":"showing that container is empty","template":"Showing that [something] is empty","placeholders":["container"]}, +{"id":"136685","label":"touching (without moving) the edge of plate","template":"Touching (without moving) [part] of [something]","placeholders":["the edge","plate"]}, +{"id":"126995","label":"tilting a table with the edge on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a table","the edge"]}, +{"id":"168872","label":"holding book","template":"Holding [something]","placeholders":["book"]}, +{"id":"201763","label":"putting marker into mug","template":"Putting [something] into [something]","placeholders":["marker","mug"]}, +{"id":"150970","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"62078","label":"pretending to put spoon into mug","template":"Pretending to put [something] into [something]","placeholders":["spoon","mug"]}, +{"id":"68298","label":"holding rubber duck over books","template":"Holding [something] over [something]","placeholders":["rubber duck","books"]}, +{"id":"196602","label":"pulling remote from left to right","template":"Pulling [something] from left to right","placeholders":["remote"]}, +{"id":"44263","label":"pushing casual hat from right to left","template":"Pushing [something] from right to left","placeholders":["casual hat"]}, +{"id":"165984","label":"taking a paper","template":"Taking [one of many similar things on the table]","placeholders":["a paper"]}, +{"id":"60156","label":"showing a photo of a girl to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a girl"]}, +{"id":"162628","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"170243","label":"pulling plushie from right to left","template":"Pulling [something] from right to left","placeholders":["plushie"]}, +{"id":"108988","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"138471","label":"stuffing a ball into a basket","template":"Stuffing [something] into [something]","placeholders":["a ball","a basket"]}, +{"id":"62751","label":"holding cup of coffee next to cup of coffee","template":"Holding [something] next to [something]","placeholders":["cup of coffee","cup of coffee"]}, +{"id":"64640","label":"approaching smart phone with your camera","template":"Approaching [something] with your camera","placeholders":["smart phone"]}, +{"id":"1105","label":"covering mug with big pouch","template":"Covering [something] with [something]","placeholders":["mug","big pouch"]}, +{"id":"106243","label":"tipping cross over","template":"Tipping [something] over","placeholders":["cross"]}, +{"id":"92329","label":"showing that dog bowl is empty","template":"Showing that [something] is empty","placeholders":["dog bowl"]}, +{"id":"26012","label":"moving key towards the camera","template":"Moving [something] towards the camera","placeholders":["key"]}, +{"id":"25674","label":"taking belt from bed","template":"Taking [something] from [somewhere]","placeholders":["belt","bed"]}, +{"id":"198898","label":"removing a plastic bag, revealing a coin behind","template":"Removing [something], revealing [something] behind","placeholders":["a plastic bag","a coin"]}, +{"id":"144168","label":"pushing a teddy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a teddy"]}, +{"id":"81215","label":"dropping coin onto blanket","template":"Dropping [something] onto [something]","placeholders":["coin","blanket"]}, +{"id":"31745","label":"holding mug in front of water bottle","template":"Holding [something] in front of [something]","placeholders":["mug","water bottle"]}, +{"id":"85447","label":"tilting whiteboard with binoculars on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["whiteboard","binoculars"]}, +{"id":"78203","label":"pretending to take a mug from the table","template":"Pretending to take [something] from [somewhere]","placeholders":["a mug","the table"]}, +{"id":"219401","label":"uncovering cigarette","template":"Uncovering [something]","placeholders":["cigarette"]}, +{"id":"136277","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"206292","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"171155","label":"throwing a sponge","template":"Throwing [something]","placeholders":["a sponge"]}, +{"id":"205379","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"178127","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"65987","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"101721","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"14551","label":"plugging usb cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","charger"]}, +{"id":"80828","label":"taking medicine bottle out of a prescription bag","template":"Taking [something] out of [something]","placeholders":["medicine bottle","a prescription bag"]}, +{"id":"142894","label":"plastic ognions colliding with plastic choux and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["plastic ognions","plastic choux"]}, +{"id":"137582","label":"putting spoon next to sponze","template":"Putting [something] next to [something]","placeholders":["spoon","sponze"]}, +{"id":"219248","label":"moving a plastic box across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a plastic box"]}, +{"id":"83801","label":"covering key with cup","template":"Covering [something] with [something]","placeholders":["key","cup"]}, +{"id":"140387","label":"hitting stool with newspaper","template":"Hitting [something] with [something]","placeholders":["stool","newspaper"]}, +{"id":"19698","label":"throwing a phone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a phone"]}, +{"id":"52914","label":"opening something","template":"Opening [something]","placeholders":["something"]}, +{"id":"194953","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"94288","label":"uncovering a headphones","template":"Uncovering [something]","placeholders":["a headphones"]}, +{"id":"43568","label":"moving teacup closer to teacup","template":"Moving [something] closer to [something]","placeholders":["teacup","teacup"]}, +{"id":"35677","label":"moving lotion bottle down","template":"Moving [something] down","placeholders":["lotion bottle"]}, +{"id":"178165","label":"moving punching machine down","template":"Moving [something] down","placeholders":["punching machine"]}, +{"id":"93514","label":"pretending to pour liquid out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["liquid","bottle","bottle"]}, +{"id":"126421","label":"approaching girl statue with your camera","template":"Approaching [something] with your camera","placeholders":["girl statue"]}, +{"id":"56512","label":"moving perfume and cream away from each other","template":"Moving [something] and [something] away from each other","placeholders":["perfume","cream"]}, +{"id":"73441","label":"pushing candle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["candle"]}, +{"id":"158875","label":"putting a spoon behind a mug","template":"Putting [something] behind [something]","placeholders":["a spoon","a mug"]}, +{"id":"81838","label":"rolling white stone on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["white stone"]}, +{"id":"54244","label":"pretending to open glass door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["glass door"]}, +{"id":"99214","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"23681","label":"putting bottle onto ball so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["bottle","ball"]}, +{"id":"70412","label":"pretending to open notebook without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notebook"]}, +{"id":"135692","label":"trying to bend scissors so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissors"]}, +{"id":"93576","label":"pushing cigarette lighter with wooden stick","template":"Pushing [something] with [something]","placeholders":["cigarette lighter","wooden stick"]}, +{"id":"152243","label":"turning the camera left while filming hair dryer","template":"Turning the camera left while filming [something]","placeholders":["hair dryer"]}, +{"id":"110663","label":"turning bar soap upside down","template":"Turning [something] upside down","placeholders":["bar soap"]}, +{"id":"208019","label":"moving paper up","template":"Moving [something] up","placeholders":["paper"]}, +{"id":"69401","label":"putting spoon and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["spoon","pen"]}, +{"id":"158923","label":"trying to bend a key so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a key"]}, +{"id":"143268","label":"holding small sunscreen lotion","template":"Holding [something]","placeholders":["small sunscreen lotion"]}, +{"id":"48371","label":"uncovering lantern","template":"Uncovering [something]","placeholders":["lantern"]}, +{"id":"14784","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"53296","label":"pretending to put a funnel into a glass cup","template":"Pretending to put [something] into [something]","placeholders":["a funnel","a glass cup"]}, +{"id":"190079","label":"moving a hammer and a nail away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a hammer","a nail"]}, +{"id":"2819","label":"covering goggles with towel","template":"Covering [something] with [something]","placeholders":["goggles","towel"]}, +{"id":"87683","label":"wiping souce off of floor","template":"Wiping [something] off of [something]","placeholders":["souce","floor"]}, +{"id":"93704","label":"pulling plushie from left to right","template":"Pulling [something] from left to right","placeholders":["plushie"]}, +{"id":"186916","label":"turning candle upside down","template":"Turning [something] upside down","placeholders":["candle"]}, +{"id":"166257","label":"putting a spoon and a cup on the table","template":"Putting [something] and [something] on the table","placeholders":["a spoon","a cup"]}, +{"id":"46884","label":"stuffing blankets into a fabric bin","template":"Stuffing [something] into [something]","placeholders":["blankets","a fabric bin"]}, +{"id":"114795","label":"showing black lipstick to the camera","template":"Showing [something] to the camera","placeholders":["black lipstick"]}, +{"id":"92843","label":"pretending to put a pen next to a pen","template":"Pretending to put [something] next to [something]","placeholders":["a pen","a pen"]}, +{"id":"37228","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"45040","label":"pulling dish onto table","template":"Pulling [something] onto [something]","placeholders":["dish","table"]}, +{"id":"195577","label":"turning a teddy bear upside down","template":"Turning [something] upside down","placeholders":["a teddy bear"]}, +{"id":"64406","label":"throwing wooden puppet in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["wooden puppet"]}, +{"id":"15504","label":"twisting a towel","template":"Twisting [something]","placeholders":["a towel"]}, +{"id":"27690","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"175466","label":"showing red toy car next to green toy car","template":"Showing [something] next to [something]","placeholders":["red toy car","green toy car"]}, +{"id":"117774","label":"covering a pear with newspaper","template":"Covering [something] with [something]","placeholders":["a pear","newspaper"]}, +{"id":"48917","label":"holding a pencil over a computer mouse","template":"Holding [something] over [something]","placeholders":["a pencil","a computer mouse"]}, +{"id":"220817","label":"spinning cup so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["cup"]}, +{"id":"93275","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"89853","label":"turning the camera downwards while filming hair dryer","template":"Turning the camera downwards while filming [something]","placeholders":["hair dryer"]}, +{"id":"18357","label":"spinning candle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["candle"]}, +{"id":"193769","label":"spinning a spinning toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinning toy"]}, +{"id":"46001","label":"putting chalk, magnet and marker pen on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["chalk","magnet","marker pen"]}, +{"id":"6074","label":"pretending to pick bottle up","template":"Pretending to pick [something] up","placeholders":["bottle"]}, +{"id":"33775","label":"pushing a tissue box from left to right","template":"Pushing [something] from left to right","placeholders":["a tissue box"]}, +{"id":"14215","label":"tearing a leaf just a little bit","template":"Tearing [something] just a little bit","placeholders":["a leaf"]}, +{"id":"75613","label":"stacking 2 ink bottles","template":"Stacking [number of] [something]","placeholders":["2","ink bottles"]}, +{"id":"136128","label":"plugging plug into a wall","template":"Plugging [something] into [something]","placeholders":["plug","a wall"]}, +{"id":"88053","label":"uncovering packing tape","template":"Uncovering [something]","placeholders":["packing tape"]}, +{"id":"171805","label":"pretending to put red spoon on a surface","template":"Pretending to put [something] on a surface","placeholders":["red spoon"]}, +{"id":"71799","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"72232","label":"taking marker pen","template":"Taking [one of many similar things on the table]","placeholders":["marker pen"]}, +{"id":"72462","label":"moving mug and remote closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mug","remote"]}, +{"id":"99157","label":"letting waterbottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["waterbottle"]}, +{"id":"26864","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"195073","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"164937","label":"trying to bend moprod so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["moprod"]}, +{"id":"39893","label":"pushing shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["shoe"]}, +{"id":"82895","label":"moving a book across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a book"]}, +{"id":"115800","label":"stuffing a cloth into a cardboard box","template":"Stuffing [something] into [something]","placeholders":["a cloth","a cardboard box"]}, +{"id":"203165","label":"turning the camera right while filming hat","template":"Turning the camera right while filming [something]","placeholders":["hat"]}, +{"id":"87870","label":"poking a penny so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a penny"]}, +{"id":"98681","label":"moving ring down","template":"Moving [something] down","placeholders":["ring"]}, +{"id":"111888","label":"putting pen into box","template":"Putting [something] into [something]","placeholders":["pen","box"]}, +{"id":"187748","label":"pouring drink into glass","template":"Pouring [something] into [something]","placeholders":["drink","glass"]}, +{"id":"207682","label":"poking can so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["can"]}, +{"id":"150504","label":"moving domino and domino closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["domino","domino"]}, +{"id":"97257","label":"showing that coffee is inside mug","template":"Showing that [something] is inside [something]","placeholders":["coffee","mug"]}, +{"id":"154913","label":"pretending or failing to wipe thing off of lamp","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["thing","lamp"]}, +{"id":"35613","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78671","label":"plugging an usb into pc","template":"Plugging [something] into [something]","placeholders":["an usb","pc"]}, +{"id":"82024","label":"plugging a computer charger into a wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a computer charger","a wall outlet"]}, +{"id":"23718","label":"unfolding something","template":"Unfolding [something]","placeholders":["something"]}, +{"id":"38815","label":"pretending to put glove behind coffee can","template":"Pretending to put [something] behind [something]","placeholders":["glove","coffee can"]}, +{"id":"204703","label":"dropping cat in front of cube","template":"Dropping [something] in front of [something]","placeholders":["cat","cube"]}, +{"id":"109127","label":"holding bottle behind `screen","template":"Holding [something] behind [something]","placeholders":["bottle","`screen"]}, +{"id":"171502","label":"dropping a badminton bat next to a pair of shoes","template":"Dropping [something] next to [something]","placeholders":["a badminton bat","a pair of shoes"]}, +{"id":"4548","label":"covering vitamin with hand towel","template":"Covering [something] with [something]","placeholders":["vitamin","hand towel"]}, +{"id":"205733","label":"pretending or trying and failing to twist a small wooden piece","template":"Pretending or trying and failing to twist [something]","placeholders":["a small wooden piece"]}, +{"id":"128498","label":"turning the camera right while filming cart","template":"Turning the camera right while filming [something]","placeholders":["cart"]}, +{"id":"37093","label":"covering rice jar with lid","template":"Covering [something] with [something]","placeholders":["rice jar","lid"]}, +{"id":"166244","label":"hitting bottle with thread","template":"Hitting [something] with [something]","placeholders":["bottle","thread"]}, +{"id":"190515","label":"throwing an empty box","template":"Throwing [something]","placeholders":["an empty box"]}, +{"id":"105814","label":"bending a ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a ruler"]}, +{"id":"32373","label":"moving a small jar and a small jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a small jar","a small jar"]}, +{"id":"1780","label":"supplement bottle falling like a rock","template":"[Something] falling like a rock","placeholders":["supplement bottle"]}, +{"id":"113525","label":"covering a pen with a shoe","template":"Covering [something] with [something]","placeholders":["a pen","a shoe"]}, +{"id":"140748","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"151079","label":"pushing marker pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["marker pen"]}, +{"id":"118544","label":"unfolding pamphlet","template":"Unfolding [something]","placeholders":["pamphlet"]}, +{"id":"74146","label":"showing an apple on top of a jar","template":"Showing [something] on top of [something]","placeholders":["an apple","a jar"]}, +{"id":"51413","label":"picking dog toy up","template":"Picking [something] up","placeholders":["dog toy"]}, +{"id":"65224","label":"plugging power adapter into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power adapter","socket"]}, +{"id":"192537","label":"pretending to be tearing comb","template":"Pretending to be tearing [something that is not tearable]","placeholders":["comb"]}, +{"id":"21801","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"210275","label":"taking one of many travel magazines","template":"Taking [one of many similar things on the table]","placeholders":["one of many travel magazines"]}, +{"id":"174660","label":"taking knife out of knife holder","template":"Taking [something] out of [something]","placeholders":["knife","knife holder"]}, +{"id":"9719","label":"moving laptop up","template":"Moving [something] up","placeholders":["laptop"]}, +{"id":"199597","label":"taking plant","template":"Taking [one of many similar things on the table]","placeholders":["plant"]}, +{"id":"117848","label":"moving red crayon away from blue crayon","template":"Moving [something] away from [something]","placeholders":["red crayon","blue crayon"]}, +{"id":"29055","label":"sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet"]}, +{"id":"220410","label":"taking sfety helmet from beam","template":"Taking [something] from [somewhere]","placeholders":["sfety helmet","beam"]}, +{"id":"41078","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"6519","label":"pulling two ends of tin foil so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["tin foil"]}, +{"id":"57967","label":"poking toy gun so that it spins around","template":"Poking [something] so that it spins around","placeholders":["toy gun"]}, +{"id":"62763","label":"pushing a bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle"]}, +{"id":"11322","label":"turning cup upside down","template":"Turning [something] upside down","placeholders":["cup"]}, +{"id":"188741","label":"pouring water into the glass","template":"Pouring [something] into [something]","placeholders":["water","the glass"]}, +{"id":"57471","label":"spilling water onto sink counter","template":"Spilling [something] onto [something]","placeholders":["water","sink counter"]}, +{"id":"166383","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"89422","label":"attaching sticker to wall","template":"Attaching [something] to [something]","placeholders":["sticker","wall"]}, +{"id":"121622","label":"moving a wallet across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a wallet"]}, +{"id":"194264","label":"holding a bottle over a box","template":"Holding [something] over [something]","placeholders":["a bottle","a box"]}, +{"id":"4170","label":"putting a necklace next to chewing gums","template":"Putting [something] next to [something]","placeholders":["a necklace","chewing gums"]}, +{"id":"50195","label":"holding mobile over paper cover","template":"Holding [something] over [something]","placeholders":["mobile","paper cover"]}, +{"id":"25481","label":"lifting beer can with crayon on it","template":"Lifting [something] with [something] on it","placeholders":["beer can","crayon"]}, +{"id":"94055","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"166441","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"104450","label":"showing a pen behind a cup","template":"Showing [something] behind [something]","placeholders":["a pen","a cup"]}, +{"id":"87834","label":"putting tag, bangle and clip on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["tag","bangle","clip"]}, +{"id":"210701","label":"turning body spray upside down","template":"Turning [something] upside down","placeholders":["body spray"]}, +{"id":"45676","label":"moving lid away from straw","template":"Moving [something] away from [something]","placeholders":["lid","straw"]}, +{"id":"166916","label":"pretending to be tearing book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["book"]}, +{"id":"44089","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"197905","label":"throwing plastic container in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["plastic container"]}, +{"id":"12566","label":"pretending to put tea infuser into mug","template":"Pretending to put [something] into [something]","placeholders":["tea infuser","mug"]}, +{"id":"164740","label":"moving book and phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["book","phone"]}, +{"id":"213290","label":"dropping a pencilcase onto a bag","template":"Dropping [something] onto [something]","placeholders":["a pencilcase","a bag"]}, +{"id":"155015","label":"opening gate","template":"Opening [something]","placeholders":["gate"]}, +{"id":"212610","label":"pushing packet so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["packet"]}, +{"id":"147240","label":"holding rose","template":"Holding [something]","placeholders":["rose"]}, +{"id":"5032","label":"lifting jar with tube on it","template":"Lifting [something] with [something] on it","placeholders":["jar","tube"]}, +{"id":"119661","label":"plugging a usb into a wall adapter","template":"Plugging [something] into [something]","placeholders":["a usb","a wall adapter"]}, +{"id":"108927","label":"taking a pear","template":"Taking [one of many similar things on the table]","placeholders":["a pear"]}, +{"id":"122484","label":"putting plate on a surface","template":"Putting [something] on a surface","placeholders":["plate"]}, +{"id":"27911","label":"pulling two ends of headband so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["headband"]}, +{"id":"97961","label":"pulling two ends of a pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a pen"]}, +{"id":"141628","label":"tearing patterned paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["patterned paper"]}, +{"id":"157303","label":"pretending to squeeze glass jar","template":"Pretending to squeeze [something]","placeholders":["glass jar"]}, +{"id":"191283","label":"turning the camera downwards while filming tree","template":"Turning the camera downwards while filming [something]","placeholders":["tree"]}, +{"id":"99415","label":"moving wallete and mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wallete","mouse"]}, +{"id":"41671","label":"pretending to sprinkle air onto a wallet","template":"Pretending to sprinkle air onto [something]","placeholders":["a wallet"]}, +{"id":"30183","label":"uncovering marker","template":"Uncovering [something]","placeholders":["marker"]}, +{"id":"124163","label":"pulling two ends of stick so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["stick"]}, +{"id":"139629","label":"bending a measuring tape so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a measuring tape"]}, +{"id":"210900","label":"holding water bottle behind bowl","template":"Holding [something] behind [something]","placeholders":["water bottle","bowl"]}, +{"id":"24493","label":"putting a pen into storage","template":"Putting [something] into [something]","placeholders":["a pen","storage"]}, +{"id":"111625","label":"turning the camera right while filming hair brush","template":"Turning the camera right while filming [something]","placeholders":["hair brush"]}, +{"id":"264","label":"squeezing sponge","template":"Squeezing [something]","placeholders":["sponge"]}, +{"id":"172496","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"118742","label":"pretending to put book next to book","template":"Pretending to put [something] next to [something]","placeholders":["book","book"]}, +{"id":"22709","label":"turning stamp ink upside down","template":"Turning [something] upside down","placeholders":["stamp ink"]}, +{"id":"129665","label":"taking a bottle of shampoo","template":"Taking [one of many similar things on the table]","placeholders":["a bottle of shampoo"]}, +{"id":"30668","label":"moving toy closer to horse statue","template":"Moving [something] closer to [something]","placeholders":["toy","horse statue"]}, +{"id":"197004","label":"showing lighter behind nair varnish","template":"Showing [something] behind [something]","placeholders":["lighter","nair varnish"]}, +{"id":"182523","label":"rolling lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon"]}, +{"id":"74414","label":"pulling small sharpener from right to left","template":"Pulling [something] from right to left","placeholders":["small sharpener"]}, +{"id":"119678","label":"taking glass","template":"Taking [one of many similar things on the table]","placeholders":["glass"]}, +{"id":"211547","label":"putting cups","template":"Putting [something similar to other things that are already on the table]","placeholders":["cups"]}, +{"id":"60716","label":"wiping coffee off of the counter","template":"Wiping [something] off of [something]","placeholders":["coffee","the counter"]}, +{"id":"145004","label":"putting phone next to pink book","template":"Putting [something] next to [something]","placeholders":["phone","pink book"]}, +{"id":"209564","label":"showing phone behind box","template":"Showing [something] behind [something]","placeholders":["phone","box"]}, +{"id":"5679","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"96088","label":"putting knife","template":"Putting [something similar to other things that are already on the table]","placeholders":["knife"]}, +{"id":"220131","label":"stuffing pens into pencil case","template":"Stuffing [something] into [something]","placeholders":["pens","pencil case"]}, +{"id":"113076","label":"taking a golf ball","template":"Taking [one of many similar things on the table]","placeholders":["a golf ball"]}, +{"id":"130900","label":"tearing cover just a little bit","template":"Tearing [something] just a little bit","placeholders":["cover"]}, +{"id":"114944","label":"moving a ball closer to a pillow","template":"Moving [something] closer to [something]","placeholders":["a ball","a pillow"]}, +{"id":"193811","label":"putting timepiece and toy on the table","template":"Putting [something] and [something] on the table","placeholders":["timepiece","toy"]}, +{"id":"205565","label":"turning the camera left while filming a bottle","template":"Turning the camera left while filming [something]","placeholders":["a bottle"]}, +{"id":"66765","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"212065","label":"putting eraser behind calculator","template":"Putting [something] behind [something]","placeholders":["eraser","calculator"]}, +{"id":"85329","label":"moving cover up","template":"Moving [something] up","placeholders":["cover"]}, +{"id":"140125","label":"plugging a plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug","an outlet"]}, +{"id":"117768","label":"lifting tablet computer with dust mask on it","template":"Lifting [something] with [something] on it","placeholders":["tablet computer","dust mask"]}, +{"id":"190864","label":"moving pump of bottle","template":"Moving [part] of [something]","placeholders":["pump","bottle"]}, +{"id":"35158","label":"dropping biscuit packet in front of water-bottle","template":"Dropping [something] in front of [something]","placeholders":["biscuit packet","water-bottle"]}, +{"id":"80758","label":"moving sun glass towards the camera","template":"Moving [something] towards the camera","placeholders":["sun glass"]}, +{"id":"20616","label":"pushing bottle cap from left to right","template":"Pushing [something] from left to right","placeholders":["bottle cap"]}, +{"id":"25885","label":"pretending to put purple microfiber on a surface","template":"Pretending to put [something] on a surface","placeholders":["purple microfiber"]}, +{"id":"147010","label":"putting a book in front of a bandana","template":"Putting [something] in front of [something]","placeholders":["a book","a bandana"]}, +{"id":"113773","label":"throwing a card","template":"Throwing [something]","placeholders":["a card"]}, +{"id":"65398","label":"a pen falling like a rock","template":"[Something] falling like a rock","placeholders":["a pen"]}, +{"id":"2422","label":"pretending to put usb cable into laptop","template":"Pretending to put [something] into [something]","placeholders":["usb cable","laptop"]}, +{"id":"53854","label":"putting a tea bag upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a tea bag"]}, +{"id":"59860","label":"hitting iron plate with toy","template":"Hitting [something] with [something]","placeholders":["iron plate","toy"]}, +{"id":"152010","label":"covering screwdriver with napkin","template":"Covering [something] with [something]","placeholders":["screwdriver","napkin"]}, +{"id":"136681","label":"pretending to put jar into table","template":"Pretending to put [something] into [something]","placeholders":["jar","table"]}, +{"id":"78383","label":"match box colliding with match box and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["match box","match box"]}, +{"id":"111106","label":"pulling a padlock from behind of a wall","template":"Pulling [something] from behind of [something]","placeholders":["a padlock","a wall"]}, +{"id":"142675","label":"pretending to spread air onto bottle","template":"Pretending to spread air onto [something]","placeholders":["bottle"]}, +{"id":"83155","label":"opening book","template":"Opening [something]","placeholders":["book"]}, +{"id":"135149","label":"picking black pouch up","template":"Picking [something] up","placeholders":["black pouch"]}, +{"id":"149753","label":"attaching usb adaptor to a computer","template":"Attaching [something] to [something]","placeholders":["usb adaptor","a computer"]}, +{"id":"9160","label":"holding tangerine in front of mug","template":"Holding [something] in front of [something]","placeholders":["tangerine","mug"]}, +{"id":"84491","label":"showing matchbox next to jar","template":"Showing [something] next to [something]","placeholders":["matchbox","jar"]}, +{"id":"6281","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"143698","label":"removing white paper, revealing memory card behind","template":"Removing [something], revealing [something] behind","placeholders":["white paper","memory card"]}, +{"id":"23791","label":"covering quarter with paper","template":"Covering [something] with [something]","placeholders":["quarter","paper"]}, +{"id":"188038","label":"pouring wtaer into the cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["wtaer","the cup"]}, +{"id":"125313","label":"wiping water off of a chair","template":"Wiping [something] off of [something]","placeholders":["water","a chair"]}, +{"id":"89241","label":"putting glass similar to","template":"Putting [something similar to other things that are already on the table]","placeholders":["glass similar to"]}, +{"id":"200491","label":"dropping a matchbox in front of a plate","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a plate"]}, +{"id":"58460","label":"throwing box in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["box"]}, +{"id":"72143","label":"covering a remote control with a paper sheet","template":"Covering [something] with [something]","placeholders":["a remote control","a paper sheet"]}, +{"id":"40008","label":"throwing candle wax against a wall","template":"Throwing [something] against [something]","placeholders":["candle wax","a wall"]}, +{"id":"121526","label":"moving a jar up","template":"Moving [something] up","placeholders":["a jar"]}, +{"id":"68152","label":"tipping notebook with lipstick over, so lipstick falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["notebook","lipstick","lipstick"]}, +{"id":"157356","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"128158","label":"holding basket","template":"Holding [something]","placeholders":["basket"]}, +{"id":"22931","label":"pretending to take a credit card from a wallet","template":"Pretending to take [something] from [somewhere]","placeholders":["a credit card","a wallet"]}, +{"id":"72106","label":"turning the camera downwards while filming vacuum cleaner","template":"Turning the camera downwards while filming [something]","placeholders":["vacuum cleaner"]}, +{"id":"124410","label":"holding box behind gum","template":"Holding [something] behind [something]","placeholders":["box","gum"]}, +{"id":"208384","label":"pretending to take shaker from table","template":"Pretending to take [something] from [somewhere]","placeholders":["shaker","table"]}, +{"id":"186729","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"133355","label":"showing that mug is empty","template":"Showing that [something] is empty","placeholders":["mug"]}, +{"id":"112372","label":"plugging usb charger into computer but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb charger","computer"]}, +{"id":"210163","label":"putting a banana onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["a banana"]}, +{"id":"64265","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"182546","label":"moving bag up","template":"Moving [something] up","placeholders":["bag"]}, +{"id":"134331","label":"picking a glasses up","template":"Picking [something] up","placeholders":["a glasses"]}, +{"id":"122284","label":"showing shampoo behind a toy","template":"Showing [something] behind [something]","placeholders":["shampoo","a toy"]}, +{"id":"37166","label":"squeezing a pair of scissors","template":"Squeezing [something]","placeholders":["a pair of scissors"]}, +{"id":"11239","label":"scooping a rag up with a spatula","template":"Scooping [something] up with [something]","placeholders":["a rag","a spatula"]}, +{"id":"129610","label":"showing fork on top of napkin","template":"Showing [something] on top of [something]","placeholders":["fork","napkin"]}, +{"id":"51929","label":"moving a stone and a stone so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["a stone","a stone"]}, +{"id":"118536","label":"putting textbook upright on the table","template":"Putting [something] upright on the table","placeholders":["textbook"]}, +{"id":"14873","label":"dropping a handkerchief behind a box","template":"Dropping [something] behind [something]","placeholders":["a handkerchief","a box"]}, +{"id":"201513","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"166288","label":"failing to put tv remote controller into coffee can because tv remote controller does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["tv remote controller","coffee can","tv remote controller"]}, +{"id":"94994","label":"covering earphones with cloth","template":"Covering [something] with [something]","placeholders":["earphones","cloth"]}, +{"id":"104087","label":"putting plush into bowl","template":"Putting [something] into [something]","placeholders":["plush","bowl"]}, +{"id":"19777","label":"opening a sunglasses case","template":"Opening [something]","placeholders":["a sunglasses case"]}, +{"id":"156867","label":"turning the camera right while filming green toy car","template":"Turning the camera right while filming [something]","placeholders":["green toy car"]}, +{"id":"76379","label":"taking glass","template":"Taking [one of many similar things on the table]","placeholders":["glass"]}, +{"id":"197621","label":"ipad being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["ipad","couch"]}, +{"id":"64099","label":"pushing a computer mouse so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a computer mouse"]}, +{"id":"138529","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"123486","label":"throwing pencil","template":"Throwing [something]","placeholders":["pencil"]}, +{"id":"56440","label":"putting red candle on a surface","template":"Putting [something] on a surface","placeholders":["red candle"]}, +{"id":"80371","label":"tipping a jewellry box with jewellry over, so jewellry falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a jewellry box","jewellry","jewellry"]}, +{"id":"149054","label":"picking black umbrella up","template":"Picking [something] up","placeholders":["black umbrella"]}, +{"id":"145663","label":"dropping a card in front of a matchbox","template":"Dropping [something] in front of [something]","placeholders":["a card","a matchbox"]}, +{"id":"209676","label":"pretending to open a cabinet without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a cabinet"]}, +{"id":"62631","label":"moving candle down","template":"Moving [something] down","placeholders":["candle"]}, +{"id":"220213","label":"taking coins out of a purse","template":"Taking [something] out of [something]","placeholders":["coins","a purse"]}, +{"id":"105779","label":"twisting tshirt","template":"Twisting [something]","placeholders":["tshirt"]}, +{"id":"217062","label":"holding selfie stick","template":"Holding [something]","placeholders":["selfie stick"]}, +{"id":"110791","label":"opening closet","template":"Opening [something]","placeholders":["closet"]}, +{"id":"158145","label":"folding a towel","template":"Folding [something]","placeholders":["a towel"]}, +{"id":"46597","label":"pushing blue hair clip with white spoon","template":"Pushing [something] with [something]","placeholders":["blue hair clip","white spoon"]}, +{"id":"168864","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"93334","label":"spinning a quarter so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a quarter"]}, +{"id":"159733","label":"uncovering onion","template":"Uncovering [something]","placeholders":["onion"]}, +{"id":"219864","label":"moving a shoe across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a shoe"]}, +{"id":"168320","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"6154","label":"poking ball so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["ball"]}, +{"id":"176872","label":"showing a pen to the camera","template":"Showing [something] to the camera","placeholders":["a pen"]}, +{"id":"144441","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"60178","label":"stuffing pants into drawer","template":"Stuffing [something] into [something]","placeholders":["pants","drawer"]}, +{"id":"16862","label":"moving fork and knife closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","knife"]}, +{"id":"22348","label":"stone falling like a rock","template":"[Something] falling like a rock","placeholders":["stone"]}, +{"id":"178801","label":"hitting toilet roll with comb","template":"Hitting [something] with [something]","placeholders":["toilet roll","comb"]}, +{"id":"171615","label":"stacking 3 books","template":"Stacking [number of] [something]","placeholders":["3","books"]}, +{"id":"194709","label":"attaching adhesive tape to a cabinet","template":"Attaching [something] to [something]","placeholders":["adhesive tape","a cabinet"]}, +{"id":"111890","label":"pulling two ends of a marker so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a marker"]}, +{"id":"52031","label":"holding pen over box","template":"Holding [something] over [something]","placeholders":["pen","box"]}, +{"id":"194808","label":"pushing a closed umbrella so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a closed umbrella"]}, +{"id":"110362","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"44127","label":"pulling computer mouse from behind of thermos","template":"Pulling [something] from behind of [something]","placeholders":["computer mouse","thermos"]}, +{"id":"122223","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"160677","label":"pretending to put squeezable strawberry jam on a surface","template":"Pretending to put [something] on a surface","placeholders":["squeezable strawberry jam"]}, +{"id":"85081","label":"putting fork","template":"Putting [something similar to other things that are already on the table]","placeholders":["fork"]}, +{"id":"54792","label":"covering a sock with a cloth","template":"Covering [something] with [something]","placeholders":["a sock","a cloth"]}, +{"id":"114635","label":"covering a pencil with a paper","template":"Covering [something] with [something]","placeholders":["a pencil","a paper"]}, +{"id":"211312","label":"attaching clip magnet to lamp stand joint","template":"Attaching [something] to [something]","placeholders":["clip magnet","lamp stand joint"]}, +{"id":"150668","label":"burying lid in butter","template":"Burying [something] in [something]","placeholders":["lid","butter"]}, +{"id":"52114","label":"pulling scissor from right to left","template":"Pulling [something] from right to left","placeholders":["scissor"]}, +{"id":"17126","label":"stacking three juice boxes","template":"Stacking [number of] [something]","placeholders":["three","juice boxes"]}, +{"id":"138792","label":"picking ball up","template":"Picking [something] up","placeholders":["ball"]}, +{"id":"27110","label":"dropping marker in front of tape dispenser","template":"Dropping [something] in front of [something]","placeholders":["marker","tape dispenser"]}, +{"id":"40045","label":"stuffing book into container","template":"Stuffing [something] into [something]","placeholders":["book","container"]}, +{"id":"215342","label":"poking ball so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["ball"]}, +{"id":"180236","label":"pretending to close candle jar without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["candle jar"]}, +{"id":"97449","label":"holding mp3 player over hole puncher","template":"Holding [something] over [something]","placeholders":["mp3 player","hole puncher"]}, +{"id":"57767","label":"attaching cap to highlighter","template":"Attaching [something] to [something]","placeholders":["cap","highlighter"]}, +{"id":"215718","label":"putting duster that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["duster"]}, +{"id":"36570","label":"approaching earphone with your camera","template":"Approaching [something] with your camera","placeholders":["earphone"]}, +{"id":"1776","label":"touching (without moving) face of doll masha","template":"Touching (without moving) [part] of [something]","placeholders":["face","doll masha"]}, +{"id":"154204","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"63238","label":"rolling a can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a can"]}, +{"id":"203267","label":"putting a cup upright on the table","template":"Putting [something] upright on the table","placeholders":["a cup"]}, +{"id":"97986","label":"attaching an aligator clip to wire","template":"Attaching [something] to [something]","placeholders":["an aligator clip","wire"]}, +{"id":"142395","label":"tearing papper into two pieces","template":"Tearing [something] into two pieces","placeholders":["papper"]}, +{"id":"29861","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"169190","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"183675","label":"pushing cream container off of table","template":"Pushing [something] off of [something]","placeholders":["cream container","table"]}, +{"id":"2452","label":"squeezing a football","template":"Squeezing [something]","placeholders":["a football"]}, +{"id":"82223","label":"moving a bottle closer to a sock","template":"Moving [something] closer to [something]","placeholders":["a bottle","a sock"]}, +{"id":"19579","label":"dropping a handkerchief next to a remote","template":"Dropping [something] next to [something]","placeholders":["a handkerchief","a remote"]}, +{"id":"203505","label":"pretending to be tearing wood","template":"Pretending to be tearing [something that is not tearable]","placeholders":["wood"]}, +{"id":"209230","label":"lifting book with box on it","template":"Lifting [something] with [something] on it","placeholders":["book","box"]}, +{"id":"217607","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"62818","label":"plugging nightlight into powerpoint","template":"Plugging [something] into [something]","placeholders":["nightlight","powerpoint"]}, +{"id":"110884","label":"pouring water out of bowl","template":"Pouring [something] out of [something]","placeholders":["water","bowl"]}, +{"id":"199768","label":"putting pot in front of mug","template":"Putting [something] in front of [something]","placeholders":["pot","mug"]}, +{"id":"169820","label":"pushing chocolate box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["chocolate box"]}, +{"id":"218994","label":"dropping a thumb drive next to a water bottle","template":"Dropping [something] next to [something]","placeholders":["a thumb drive","a water bottle"]}, +{"id":"77584","label":"attaching battery cover to tv remote","template":"Attaching [something] to [something]","placeholders":["battery cover","tv remote"]}, +{"id":"201576","label":"dropping a matchbox next to a ball","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a ball"]}, +{"id":"39351","label":"tilting pen with clipboard on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["pen","clipboard"]}, +{"id":"139429","label":"spinning a marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a marker"]}, +{"id":"67147","label":"pulling pink cologne from left to right","template":"Pulling [something] from left to right","placeholders":["pink cologne"]}, +{"id":"34782","label":"piling something up","template":"Piling [something] up","placeholders":["something"]}, +{"id":"173407","label":"covering stapler with cloth","template":"Covering [something] with [something]","placeholders":["stapler","cloth"]}, +{"id":"217714","label":"putting nail polish on the edge of card so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["nail polish","card"]}, +{"id":"196346","label":"showing towel behind belt","template":"Showing [something] behind [something]","placeholders":["towel","belt"]}, +{"id":"33635","label":"pulling an electric pencil sharpener out of a basket","template":"Pulling [something] out of [something]","placeholders":["an electric pencil sharpener","a basket"]}, +{"id":"173387","label":"showing a poster on top of the wall","template":"Showing [something] on top of [something]","placeholders":["a poster","the wall"]}, +{"id":"47667","label":"spinning battery that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["battery"]}, +{"id":"192554","label":"pushing pot so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pot"]}, +{"id":"101885","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"31265","label":"moving a lipstick across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a lipstick"]}, +{"id":"187934","label":"plugging water into mouth","template":"Plugging [something] into [something]","placeholders":["water","mouth"]}, +{"id":"138398","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"106600","label":"bending a paper so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a paper"]}, +{"id":"108588","label":"pushing cover off of couch","template":"Pushing [something] off of [something]","placeholders":["cover","couch"]}, +{"id":"184312","label":"picking a ball up","template":"Picking [something] up","placeholders":["a ball"]}, +{"id":"61159","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"130515","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"130654","label":"tilting xbox game with phone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["xbox game","phone"]}, +{"id":"123884","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"171294","label":"rubber ball colliding with rubber ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["rubber ball","rubber ball"]}, +{"id":"192406","label":"pushing box off of table","template":"Pushing [something] off of [something]","placeholders":["box","table"]}, +{"id":"146953","label":"turning the camera left while filming wireless mouse","template":"Turning the camera left while filming [something]","placeholders":["wireless mouse"]}, +{"id":"123928","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"30666","label":"throwing keys in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["keys"]}, +{"id":"216134","label":"turning the camera upwards while filming step up transformer","template":"Turning the camera upwards while filming [something]","placeholders":["step up transformer"]}, +{"id":"52443","label":"putting a toy onto a cube","template":"Putting [something] onto [something]","placeholders":["a toy","a cube"]}, +{"id":"22439","label":"ball falling like a rock","template":"[Something] falling like a rock","placeholders":["ball"]}, +{"id":"86875","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"112653","label":"turning plastic cup upside down","template":"Turning [something] upside down","placeholders":["plastic cup"]}, +{"id":"55088","label":"putting canister on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["canister"]}, +{"id":"143743","label":"plugging bit into screwdriver but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["bit","screwdriver"]}, +{"id":"82040","label":"showing a glass on top of a calculator","template":"Showing [something] on top of [something]","placeholders":["a glass","a calculator"]}, +{"id":"86731","label":"spilling water behind a trash can","template":"Spilling [something] behind [something]","placeholders":["water","a trash can"]}, +{"id":"106735","label":"moving bottle closer to bottle","template":"Moving [something] closer to [something]","placeholders":["bottle","bottle"]}, +{"id":"121782","label":"tilting black file with green car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","green car"]}, +{"id":"81087","label":"taking tissue from box","template":"Taking [something] from [somewhere]","placeholders":["tissue","box"]}, +{"id":"125899","label":"lifting a surface with glass on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["glass"]}, +{"id":"198296","label":"dropping a pen into a small container","template":"Dropping [something] into [something]","placeholders":["a pen","a small container"]}, +{"id":"197047","label":"pushing cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["cup"]}, +{"id":"186343","label":"putting a pyramid on a surface","template":"Putting [something] on a surface","placeholders":["a pyramid"]}, +{"id":"42454","label":"hitting laptop with cord","template":"Hitting [something] with [something]","placeholders":["laptop","cord"]}, +{"id":"121711","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"192045","label":"moving a leaflet across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["a leaflet"]}, +{"id":"137281","label":"picking phone up","template":"Picking [something] up","placeholders":["phone"]}, +{"id":"135383","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"33300","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"23889","label":"putting pencil next to mug","template":"Putting [something] next to [something]","placeholders":["pencil","mug"]}, +{"id":"131879","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"1810","label":"pulling toy out of box","template":"Pulling [something] out of [something]","placeholders":["toy","box"]}, +{"id":"193967","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"8665","label":"showing that vase is empty","template":"Showing that [something] is empty","placeholders":["vase"]}, +{"id":"2661","label":"uncovering bottle","template":"Uncovering [something]","placeholders":["bottle"]}, +{"id":"11432","label":"moving a dvd and a mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a dvd","a mug"]}, +{"id":"174633","label":"pushing plastic bag from left to right","template":"Pushing [something] from left to right","placeholders":["plastic bag"]}, +{"id":"85262","label":"plugging night light into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["night light","outlet"]}, +{"id":"164151","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"179478","label":"stacking 2 shirts","template":"Stacking [number of] [something]","placeholders":["2","shirts"]}, +{"id":"39685","label":"moving radio away from powerbank","template":"Moving [something] away from [something]","placeholders":["radio","powerbank"]}, +{"id":"148928","label":"tilting fidget spinner with coin on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["fidget spinner","coin"]}, +{"id":"168185","label":"dropping paper onto coaster","template":"Dropping [something] onto [something]","placeholders":["paper","coaster"]}, +{"id":"206597","label":"moving candle closer to candle","template":"Moving [something] closer to [something]","placeholders":["candle","candle"]}, +{"id":"43287","label":"turning the camera upwards while filming pictures","template":"Turning the camera upwards while filming [something]","placeholders":["pictures"]}, +{"id":"67890","label":"holding tweezers behind mouthwash","template":"Holding [something] behind [something]","placeholders":["tweezers","mouthwash"]}, +{"id":"216359","label":"approaching small book with your camera","template":"Approaching [something] with your camera","placeholders":["small book"]}, +{"id":"142135","label":"holding glasses next to flowers","template":"Holding [something] next to [something]","placeholders":["glasses","flowers"]}, +{"id":"124045","label":"pouring water into beaker until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","beaker"]}, +{"id":"52269","label":"tilting clipboard with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["clipboard","pen"]}, +{"id":"103019","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"74115","label":"pushing the fan from left to right","template":"Pushing [something] from left to right","placeholders":["the fan"]}, +{"id":"12660","label":"letting pin bottle roll slant roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["pin bottle roll slant"]}, +{"id":"68019","label":"pushing a coaster from left to right","template":"Pushing [something] from left to right","placeholders":["a coaster"]}, +{"id":"63956","label":"pushing white candle from right to left","template":"Pushing [something] from right to left","placeholders":["white candle"]}, +{"id":"77562","label":"moving top of trash can","template":"Moving [part] of [something]","placeholders":["top","trash can"]}, +{"id":"207933","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"98797","label":"hitting stapler with highlighter","template":"Hitting [something] with [something]","placeholders":["stapler","highlighter"]}, +{"id":"42124","label":"pretending to open box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box"]}, +{"id":"41029","label":"pretending to be tearing cloth","template":"Pretending to be tearing [something that is not tearable]","placeholders":["cloth"]}, +{"id":"27501","label":"turning the camera upwards while filming stapler","template":"Turning the camera upwards while filming [something]","placeholders":["stapler"]}, +{"id":"128037","label":"putting pens next to a desk organizer","template":"Putting [something] next to [something]","placeholders":["pens","a desk organizer"]}, +{"id":"54968","label":"taking one water bottle","template":"Taking [one of many similar things on the table]","placeholders":["one water bottle"]}, +{"id":"31984","label":"putting keys onto bag","template":"Putting [something] onto [something]","placeholders":["keys","bag"]}, +{"id":"140157","label":"lifting a surface with a mug on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a mug"]}, +{"id":"117056","label":"lifting a surface with paper on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["paper"]}, +{"id":"180859","label":"turning the camera right while filming something","template":"Turning the camera right while filming [something]","placeholders":["something"]}, +{"id":"55735","label":"showing that a plastic cup is empty","template":"Showing that [something] is empty","placeholders":["a plastic cup"]}, +{"id":"47092","label":"showing wallet to the camera","template":"Showing [something] to the camera","placeholders":["wallet"]}, +{"id":"210300","label":"approaching fireplace with your camera","template":"Approaching [something] with your camera","placeholders":["fireplace"]}, +{"id":"144836","label":"turning hair gel bottle upside down","template":"Turning [something] upside down","placeholders":["hair gel bottle"]}, +{"id":"89283","label":"turning the camera right while filming ring","template":"Turning the camera right while filming [something]","placeholders":["ring"]}, +{"id":"215308","label":"pulling cassette pie from left to right","template":"Pulling [something] from left to right","placeholders":["cassette pie"]}, +{"id":"120532","label":"hitting desk with highlighter","template":"Hitting [something] with [something]","placeholders":["desk","highlighter"]}, +{"id":"74812","label":"pretending to scoop powdered grains up with a spoon","template":"Pretending to scoop [something] up with [something]","placeholders":["powdered grains","a spoon"]}, +{"id":"53011","label":"putting videotape upright on the table","template":"Putting [something] upright on the table","placeholders":["videotape"]}, +{"id":"196594","label":"sprinkling cereal onto paper","template":"Sprinkling [something] onto [something]","placeholders":["cereal","paper"]}, +{"id":"65842","label":"dropping a remote control onto a couch","template":"Dropping [something] onto [something]","placeholders":["a remote control","a couch"]}, +{"id":"45068","label":"moving box across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["box"]}, +{"id":"118523","label":"turning snow globe upside down","template":"Turning [something] upside down","placeholders":["snow globe"]}, +{"id":"216605","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"110952","label":"showing bottle behind hole puncher","template":"Showing [something] behind [something]","placeholders":["bottle","hole puncher"]}, +{"id":"139161","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"127456","label":"laying waterbottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["waterbottle"]}, +{"id":"152367","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"139776","label":"putting ridsect on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ridsect"]}, +{"id":"212382","label":"showing that a bucket is empty","template":"Showing that [something] is empty","placeholders":["a bucket"]}, +{"id":"51893","label":"putting flavor juice in front of coffee pot","template":"Putting [something] in front of [something]","placeholders":["flavor juice","coffee pot"]}, +{"id":"192811","label":"pretending to put bread into toaster","template":"Pretending to put [something] into [something]","placeholders":["bread","toaster"]}, +{"id":"167538","label":"dropping a matchbox next to a shoe brush","template":"Dropping [something] next to [something]","placeholders":["a matchbox","a shoe brush"]}, +{"id":"27059","label":"pretending to open bottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle cap"]}, +{"id":"185166","label":"putting mixer grinder behind the vessel","template":"Putting [something] behind [something]","placeholders":["mixer grinder","the vessel"]}, +{"id":"132975","label":"pretending to spread air onto bread","template":"Pretending to spread air onto [something]","placeholders":["bread"]}, +{"id":"149131","label":"moving a piece of paper up","template":"Moving [something] up","placeholders":["a piece of paper"]}, +{"id":"111300","label":"moving a pack of cards and a box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pack of cards","a box"]}, +{"id":"212418","label":"moving metal weight and metal weight closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["metal weight","metal weight"]}, +{"id":"41497","label":"throwing papers","template":"Throwing [something]","placeholders":["papers"]}, +{"id":"109618","label":"moving box down","template":"Moving [something] down","placeholders":["box"]}, +{"id":"11379","label":"putting yellow coloured hair band next to charger adapter","template":"Putting [something] next to [something]","placeholders":["yellow coloured hair band","charger adapter"]}, +{"id":"184526","label":"hitting hand with a ruler","template":"Hitting [something] with [something]","placeholders":["hand","a ruler"]}, +{"id":"53534","label":"showing trashcan behind glass jar","template":"Showing [something] behind [something]","placeholders":["trashcan","glass jar"]}, +{"id":"199913","label":"pretending to pick bottled ponzu sauce up","template":"Pretending to pick [something] up","placeholders":["bottled ponzu sauce"]}, +{"id":"151180","label":"piling pencil boxes up","template":"Piling [something] up","placeholders":["pencil boxes"]}, +{"id":"135875","label":"holding a watch behind christmas tree","template":"Holding [something] behind [something]","placeholders":["a watch","christmas tree"]}, +{"id":"13136","label":"putting headphones and a book on the table","template":"Putting [something] and [something] on the table","placeholders":["headphones","a book"]}, +{"id":"127210","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"7272","label":"lifting up one end of pouch, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pouch"]}, +{"id":"171539","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"29778","label":"trying to bend hardback book so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["hardback book"]}, +{"id":"18550","label":"pushing a deck-chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a deck-chair"]}, +{"id":"69455","label":"pretending to close cigarettes without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["cigarettes"]}, +{"id":"107899","label":"tipping a pill bottle with pills in it over, so pills falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a pill bottle","pills in it","pills"]}, +{"id":"111374","label":"letting decorative apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["decorative apple"]}, +{"id":"86673","label":"opening brown covered note book","template":"Opening [something]","placeholders":["brown covered note book"]}, +{"id":"78582","label":"stacking 3 notebooks","template":"Stacking [number of] [something]","placeholders":["3","notebooks"]}, +{"id":"199813","label":"moving cellphone up","template":"Moving [something] up","placeholders":["cellphone"]}, +{"id":"130887","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"140535","label":"tearing sticky note just a little bit","template":"Tearing [something] just a little bit","placeholders":["sticky note"]}, +{"id":"102389","label":"holding something over something","template":"Holding [something] over [something]","placeholders":["something","something"]}, +{"id":"145107","label":"tipping shampoo bottle over","template":"Tipping [something] over","placeholders":["shampoo bottle"]}, +{"id":"35502","label":"hitting book with ruler","template":"Hitting [something] with [something]","placeholders":["book","ruler"]}, +{"id":"138448","label":"putting purple colour foldable pocket knife into spectacle box","template":"Putting [something] into [something]","placeholders":["purple colour foldable pocket knife","spectacle box"]}, +{"id":"86118","label":"turning box of tissues upside down","template":"Turning [something] upside down","placeholders":["box of tissues"]}, +{"id":"148905","label":"holding card in front of clock","template":"Holding [something] in front of [something]","placeholders":["card","clock"]}, +{"id":"112712","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"75052","label":"bending ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["ruler"]}, +{"id":"122706","label":"pretending to spread air onto desk","template":"Pretending to spread air onto [something]","placeholders":["desk"]}, +{"id":"205305","label":"small plates colliding with small plates and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["small plates","small plates"]}, +{"id":"84184","label":"paper ball being deflected from water bottle","template":"[Something] being deflected from [something]","placeholders":["paper ball","water bottle"]}, +{"id":"216434","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"47862","label":"tilting something with something on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["something","something"]}, +{"id":"41931","label":"pretending to squeeze iron weight","template":"Pretending to squeeze [something]","placeholders":["iron weight"]}, +{"id":"78428","label":"moving a mobile up","template":"Moving [something] up","placeholders":["a mobile"]}, +{"id":"2106","label":"showing something next to something","template":"Showing [something] next to [something]","placeholders":["something","something"]}, +{"id":"27222","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"157449","label":"uncovering a pen","template":"Uncovering [something]","placeholders":["a pen"]}, +{"id":"57131","label":"dropping earing into glass","template":"Dropping [something] into [something]","placeholders":["earing","glass"]}, +{"id":"207818","label":"digging guitar pick out of rice","template":"Digging [something] out of [something]","placeholders":["guitar pick","rice"]}, +{"id":"169385","label":"stacking seven gooseberry","template":"Stacking [number of] [something]","placeholders":["seven","gooseberry"]}, +{"id":"91758","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"173075","label":"stuffing clothes into a bag","template":"Stuffing [something] into [something]","placeholders":["clothes","a bag"]}, +{"id":"37836","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"27722","label":"lifting stool with laptop on it","template":"Lifting [something] with [something] on it","placeholders":["stool","laptop"]}, +{"id":"140054","label":"moving pebble down","template":"Moving [something] down","placeholders":["pebble"]}, +{"id":"189909","label":"taking one spice out of may","template":"Taking [one of many similar things on the table]","placeholders":["one spice out of may"]}, +{"id":"163313","label":"stacking five slices of bread","template":"Stacking [number of] [something]","placeholders":["five","slices of bread"]}, +{"id":"145466","label":"moving candle up","template":"Moving [something] up","placeholders":["candle"]}, +{"id":"119102","label":"pushing a padlock so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a padlock"]}, +{"id":"128418","label":"pretending to take ball out of bottle","template":"Pretending to take [something] out of [something]","placeholders":["ball","bottle"]}, +{"id":"27166","label":"pretending to put plastic cup behind flower pot","template":"Pretending to put [something] behind [something]","placeholders":["plastic cup","flower pot"]}, +{"id":"73540","label":"putting something on a surface","template":"Putting [something] on a surface","placeholders":["something"]}, +{"id":"119573","label":"pushing avocado off of table","template":"Pushing [something] off of [something]","placeholders":["avocado","table"]}, +{"id":"28864","label":"dropping remote onto bed","template":"Dropping [something] onto [something]","placeholders":["remote","bed"]}, +{"id":"28865","label":"stuffing tissue paper into a glass","template":"Stuffing [something] into [something]","placeholders":["tissue paper","a glass"]}, +{"id":"139503","label":"moving scissors up","template":"Moving [something] up","placeholders":["scissors"]}, +{"id":"55877","label":"taking toothpaste","template":"Taking [one of many similar things on the table]","placeholders":["toothpaste"]}, +{"id":"185235","label":"pretending or failing to wipe scratch off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["scratch","table"]}, +{"id":"125822","label":"lifting bananas up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["bananas"]}, +{"id":"157306","label":"pretending to open closet door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["closet door"]}, +{"id":"184070","label":"putting pen onto cup so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pen","cup"]}, +{"id":"161078","label":"tilting box with lighter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","lighter"]}, +{"id":"72326","label":"plugging a cord into wall plug","template":"Plugging [something] into [something]","placeholders":["a cord","wall plug"]}, +{"id":"168061","label":"putting salt shaker onto matchbox so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["salt shaker","matchbox"]}, +{"id":"169547","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"5741","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"7773","label":"pouring water out of bottle","template":"Pouring [something] out of [something]","placeholders":["water","bottle"]}, +{"id":"134076","label":"a pen colliding with another pen and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a pen","another pen"]}, +{"id":"2693","label":"hitting a bench with a shoe","template":"Hitting [something] with [something]","placeholders":["a bench","a shoe"]}, +{"id":"181760","label":"poking a stack of boxes so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["boxes"]}, +{"id":"87289","label":"putting battery behind mug","template":"Putting [something] behind [something]","placeholders":["battery","mug"]}, +{"id":"33041","label":"moving lid of box","template":"Moving [part] of [something]","placeholders":["lid","box"]}, +{"id":"19837","label":"putting pills into pill bottle","template":"Putting [something] into [something]","placeholders":["pills","pill bottle"]}, +{"id":"192463","label":"putting ring, bangle and chain on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["ring","bangle","chain"]}, +{"id":"147266","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"71910","label":"pulling two ends of dog leash but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["dog leash"]}, +{"id":"179668","label":"sprinkling pennies onto floor","template":"Sprinkling [something] onto [something]","placeholders":["pennies","floor"]}, +{"id":"23920","label":"putting debit card, rular and marker on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["debit card","rular","marker"]}, +{"id":"219060","label":"taking marker from drawer","template":"Taking [something] from [somewhere]","placeholders":["marker","drawer"]}, +{"id":"76956","label":"showing pendrive behind water bottle","template":"Showing [something] behind [something]","placeholders":["pendrive","water bottle"]}, +{"id":"88992","label":"taking fork out of plate","template":"Taking [something] out of [something]","placeholders":["fork","plate"]}, +{"id":"197774","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"177327","label":"turning the camera upwards while filming rubber","template":"Turning the camera upwards while filming [something]","placeholders":["rubber"]}, +{"id":"16400","label":"pretending to pick the wristwatch up","template":"Pretending to pick [something] up","placeholders":["the wristwatch"]}, +{"id":"165923","label":"pretending to put a flower underneath a book","template":"Pretending to put [something] underneath [something]","placeholders":["a flower","a book"]}, +{"id":"185036","label":"turning the camera right while filming plant","template":"Turning the camera right while filming [something]","placeholders":["plant"]}, +{"id":"156118","label":"poking book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["book"]}, +{"id":"195660","label":"putting 1 plate onto chair","template":"Putting [number of] [something] onto [something]","placeholders":["1","plate","chair"]}, +{"id":"86475","label":"moving a pencil case down","template":"Moving [something] down","placeholders":["a pencil case"]}, +{"id":"67222","label":"dropping paper next to person","template":"Dropping [something] next to [something]","placeholders":["paper","person"]}, +{"id":"5859","label":"pretending to put a cup on a surface","template":"Pretending to put [something] on a surface","placeholders":["a cup"]}, +{"id":"98259","label":"wiping coffee spills off of a table","template":"Wiping [something] off of [something]","placeholders":["coffee spills","a table"]}, +{"id":"133158","label":"turning the camera downwards while filming pink toothbrush case","template":"Turning the camera downwards while filming [something]","placeholders":["pink toothbrush case"]}, +{"id":"39317","label":"lifting a surface with clip on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["clip"]}, +{"id":"49789","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"200298","label":"pushing bottle from left to right","template":"Pushing [something] from left to right","placeholders":["bottle"]}, +{"id":"65651","label":"holding spoon over stapler","template":"Holding [something] over [something]","placeholders":["spoon","stapler"]}, +{"id":"183843","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"220750","label":"taking pen from glass","template":"Taking [something] from [somewhere]","placeholders":["pen","glass"]}, +{"id":"164087","label":"putting a 9v battery that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a 9v battery"]}, +{"id":"201527","label":"pushing something onto something","template":"Pushing [something] onto [something]","placeholders":["something","something"]}, +{"id":"32942","label":"pulling two ends of hair band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["hair band"]}, +{"id":"192632","label":"putting a glas on a surface","template":"Putting [something] on a surface","placeholders":["a glas"]}, +{"id":"134848","label":"plugging usb into laptop","template":"Plugging [something] into [something]","placeholders":["usb","laptop"]}, +{"id":"135768","label":"stacking 3 plates","template":"Stacking [number of] [something]","placeholders":["3","plates"]}, +{"id":"123057","label":"wiping water off of the table","template":"Wiping [something] off of [something]","placeholders":["water","the table"]}, +{"id":"114017","label":"stacking 3 coins","template":"Stacking [number of] [something]","placeholders":["3","coins"]}, +{"id":"187074","label":"plugging air freshener into a plug","template":"Plugging [something] into [something]","placeholders":["air freshener","a plug"]}, +{"id":"146477","label":"moving spoon and pen away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","pen"]}, +{"id":"4810","label":"turning a lighter upside down","template":"Turning [something] upside down","placeholders":["a lighter"]}, +{"id":"142577","label":"putting hairband, pendrive and hair clip on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["hairband","pendrive","hair clip"]}, +{"id":"76222","label":"pretending to take a used paper out of a shoe","template":"Pretending to take [something] out of [something]","placeholders":["a used paper","a shoe"]}, +{"id":"140189","label":"pushing pillow off of couch","template":"Pushing [something] off of [something]","placeholders":["pillow","couch"]}, +{"id":"81100","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"63533","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"157673","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"48381","label":"moving book and smarthphone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["book","smarthphone"]}, +{"id":"113381","label":"plugging cord into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","laptop"]}, +{"id":"107646","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"172580","label":"pretending to be tearing battleship game","template":"Pretending to be tearing [something that is not tearable]","placeholders":["battleship game"]}, +{"id":"134918","label":"pushing a telephone so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a telephone"]}, +{"id":"135373","label":"spinning vitamin box so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["vitamin box"]}, +{"id":"71488","label":"lifting up one end of lifting one end, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["lifting one end"]}, +{"id":"85424","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"138854","label":"moving green colour pen up","template":"Moving [something] up","placeholders":["green colour pen"]}, +{"id":"79564","label":"pretending to open toothpaste without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["toothpaste"]}, +{"id":"43407","label":"tilting box with hand on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["box","hand"]}, +{"id":"161289","label":"moving crayon closer to doorknob","template":"Moving [something] closer to [something]","placeholders":["crayon","doorknob"]}, +{"id":"90042","label":"a receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a receipt"]}, +{"id":"17223","label":"tipping card over","template":"Tipping [something] over","placeholders":["card"]}, +{"id":"27351","label":"putting pen next to cup","template":"Putting [something] next to [something]","placeholders":["pen","cup"]}, +{"id":"109734","label":"holding vape over ledge","template":"Holding [something] over [something]","placeholders":["vape","ledge"]}, +{"id":"106189","label":"plugging charger into socket","template":"Plugging [something] into [something]","placeholders":["charger","socket"]}, +{"id":"152847","label":"pretending to be tearing comb","template":"Pretending to be tearing [something that is not tearable]","placeholders":["comb"]}, +{"id":"98792","label":"dropping a pen into a mug","template":"Dropping [something] into [something]","placeholders":["a pen","a mug"]}, +{"id":"126789","label":"wallet being deflected from desk","template":"[Something] being deflected from [something]","placeholders":["wallet","desk"]}, +{"id":"80714","label":"covering a head with a hat","template":"Covering [something] with [something]","placeholders":["a head","a hat"]}, +{"id":"181273","label":"pretending to open letter without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["letter"]}, +{"id":"190272","label":"moving striker coin down","template":"Moving [something] down","placeholders":["striker coin"]}, +{"id":"79372","label":"turning the camera right while filming ball","template":"Turning the camera right while filming [something]","placeholders":["ball"]}, +{"id":"194908","label":"poking sponge so that it falls over","template":"Poking [something] so that it falls over","placeholders":["sponge"]}, +{"id":"175034","label":"putting glass onto a slanted surface but it doesn't glide down","template":"Putting [something] onto a slanted surface but it doesn't glide down","placeholders":["glass"]}, +{"id":"40431","label":"holding a tablet over laptop","template":"Holding [something] over [something]","placeholders":["a tablet","laptop"]}, +{"id":"31762","label":"taking something out of something","template":"Taking [something] out of [something]","placeholders":["something","something"]}, +{"id":"75978","label":"exacto blade falling like a rock","template":"[Something] falling like a rock","placeholders":["exacto blade"]}, +{"id":"176530","label":"pretending to close refridgerator without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["refridgerator"]}, +{"id":"10012","label":"pushing stamp pad from right to left","template":"Pushing [something] from right to left","placeholders":["stamp pad"]}, +{"id":"178800","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"143712","label":"spilling stuff onto a surface","template":"Spilling [something] onto [something]","placeholders":["stuff","a surface"]}, +{"id":"2699","label":"plugging a wire into a telephone","template":"Plugging [something] into [something]","placeholders":["a wire","a telephone"]}, +{"id":"12747","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209388","label":"attaching a coin to a wall","template":"Attaching [something] to [something]","placeholders":["a coin","a wall"]}, +{"id":"135379","label":"unfolding a scarf","template":"Unfolding [something]","placeholders":["a scarf"]}, +{"id":"87993","label":"putting a charger next to a bottle","template":"Putting [something] next to [something]","placeholders":["a charger","a bottle"]}, +{"id":"101927","label":"lifting up one end of a book, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a book"]}, +{"id":"202902","label":"dropping a perfume bottle onto the floor","template":"Dropping [something] onto [something]","placeholders":["a perfume bottle","the floor"]}, +{"id":"61094","label":"measuring tape tool falling to the ground falling like a rock","template":"[Something] falling like a rock","placeholders":["measuring tape tool falling to the ground"]}, +{"id":"81108","label":"plugging cord into charger","template":"Plugging [something] into [something]","placeholders":["cord","charger"]}, +{"id":"108041","label":"closing pen","template":"Closing [something]","placeholders":["pen"]}, +{"id":"62681","label":"scooping rice up with spoon","template":"Scooping [something] up with [something]","placeholders":["rice","spoon"]}, +{"id":"65280","label":"dropping a box onto a chair","template":"Dropping [something] onto [something]","placeholders":["a box","a chair"]}, +{"id":"119907","label":"pretending to open notebook without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["notebook"]}, +{"id":"64118","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"130172","label":"unfolding a paper folder","template":"Unfolding [something]","placeholders":["a paper folder"]}, +{"id":"115799","label":"taking book out of bag","template":"Taking [something] out of [something]","placeholders":["book","bag"]}, +{"id":"48561","label":"dropping a pen into a glass","template":"Dropping [something] into [something]","placeholders":["a pen","a glass"]}, +{"id":"30297","label":"unfolding bed sheet","template":"Unfolding [something]","placeholders":["bed sheet"]}, +{"id":"186219","label":"pulling a napkin from behind of a pillow","template":"Pulling [something] from behind of [something]","placeholders":["a napkin","a pillow"]}, +{"id":"206244","label":"stuffing a cloth into a purse","template":"Stuffing [something] into [something]","placeholders":["a cloth","a purse"]}, +{"id":"1722","label":"lifting up one end of pencil, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["pencil"]}, +{"id":"98007","label":"pretending to squeeze soda can","template":"Pretending to squeeze [something]","placeholders":["soda can"]}, +{"id":"106801","label":"covering purse with towel","template":"Covering [something] with [something]","placeholders":["purse","towel"]}, +{"id":"60108","label":"showing advertisement board to the camera","template":"Showing [something] to the camera","placeholders":["advertisement board"]}, +{"id":"102935","label":"pretending to be tearing a remote","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a remote"]}, +{"id":"85679","label":"holding a scissor next to a remote control","template":"Holding [something] next to [something]","placeholders":["a scissor","a remote control"]}, +{"id":"96380","label":"tilting plate with rubber duck on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["plate","rubber duck"]}, +{"id":"178569","label":"poking a computer mouse so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a computer mouse"]}, +{"id":"53929","label":"a ball falling like a rock","template":"[Something] falling like a rock","placeholders":["a ball"]}, +{"id":"135300","label":"showing toilet paper roll to the camera","template":"Showing [something] to the camera","placeholders":["toilet paper roll"]}, +{"id":"108579","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"33760","label":"opening cream tube","template":"Opening [something]","placeholders":["cream tube"]}, +{"id":"57749","label":"poking cup so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cup"]}, +{"id":"194422","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"21373","label":"closing jar","template":"Closing [something]","placeholders":["jar"]}, +{"id":"30749","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"112789","label":"rolling a ball on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a ball"]}, +{"id":"51343","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"4725","label":"dropping a ball onto a shelf","template":"Dropping [something] onto [something]","placeholders":["a ball","a shelf"]}, +{"id":"93493","label":"moving blocks across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["blocks"]}, +{"id":"197070","label":"pretending to close bottle cap without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle cap"]}, +{"id":"187864","label":"holding paper over couch","template":"Holding [something] over [something]","placeholders":["paper","couch"]}, +{"id":"132010","label":"dropping keys into a bowl","template":"Dropping [something] into [something]","placeholders":["keys","a bowl"]}, +{"id":"143904","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"173782","label":"covering pillow with blanket","template":"Covering [something] with [something]","placeholders":["pillow","blanket"]}, +{"id":"163631","label":"showing coin next to container","template":"Showing [something] next to [something]","placeholders":["coin","container"]}, +{"id":"166606","label":"throwing orange sharpner onto a surface","template":"Throwing [something] onto a surface","placeholders":["orange sharpner"]}, +{"id":"206696","label":"pushing mug from right to left","template":"Pushing [something] from right to left","placeholders":["mug"]}, +{"id":"40414","label":"poking lip balm so that it falls over","template":"Poking [something] so that it falls over","placeholders":["lip balm"]}, +{"id":"99901","label":"twisting bottle cap","template":"Twisting [something]","placeholders":["bottle cap"]}, +{"id":"134252","label":"putting buttons and coaster on the table","template":"Putting [something] and [something] on the table","placeholders":["buttons","coaster"]}, +{"id":"75558","label":"spinning crochet needle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["crochet needle"]}, +{"id":"154717","label":"dropping sellotape in front of box","template":"Dropping [something] in front of [something]","placeholders":["sellotape","box"]}, +{"id":"181467","label":"pretending to pick remote up","template":"Pretending to pick [something] up","placeholders":["remote"]}, +{"id":"103938","label":"putting battery onto small tin so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["battery","small tin"]}, +{"id":"49927","label":"pulling two ends of pen but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["pen"]}, +{"id":"160589","label":"pushing pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["pen"]}, +{"id":"33576","label":"lifting duster up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["duster"]}, +{"id":"113764","label":"folding invitation letter","template":"Folding [something]","placeholders":["invitation letter"]}, +{"id":"73936","label":"putting toothbrush on a surface","template":"Putting [something] on a surface","placeholders":["toothbrush"]}, +{"id":"16441","label":"pouring water into sink","template":"Pouring [something] into [something]","placeholders":["water","sink"]}, +{"id":"171973","label":"turning the camera right while filming red booklet","template":"Turning the camera right while filming [something]","placeholders":["red booklet"]}, +{"id":"129489","label":"showing that battery is inside cup","template":"Showing that [something] is inside [something]","placeholders":["battery","cup"]}, +{"id":"92995","label":"hitting hand with rainboot","template":"Hitting [something] with [something]","placeholders":["hand","rainboot"]}, +{"id":"18745","label":"approaching glass with your camera","template":"Approaching [something] with your camera","placeholders":["glass"]}, +{"id":"205758","label":"pushing paper so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["paper"]}, +{"id":"50740","label":"attaching clip to ring","template":"Attaching [something] to [something]","placeholders":["clip","ring"]}, +{"id":"99021","label":"pushing cell phne with scissors","template":"Pushing [something] with [something]","placeholders":["cell phne","scissors"]}, +{"id":"28718","label":"showing jackfruit to the camera","template":"Showing [something] to the camera","placeholders":["jackfruit"]}, +{"id":"62372","label":"pulling two ends of a bandage so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["a bandage"]}, +{"id":"118678","label":"wiping water off of a table","template":"Wiping [something] off of [something]","placeholders":["water","a table"]}, +{"id":"173941","label":"hitting a sofa with a cushion","template":"Hitting [something] with [something]","placeholders":["a sofa","a cushion"]}, +{"id":"120687","label":"moving away from vacuum cleaner with your camera","template":"Moving away from [something] with your camera","placeholders":["vacuum cleaner"]}, +{"id":"15449","label":"stacking 4 bibles","template":"Stacking [number of] [something]","placeholders":["4","bibles"]}, +{"id":"54110","label":"moving flower away from the camera","template":"Moving [something] away from the camera","placeholders":["flower"]}, +{"id":"150054","label":"pushing button so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["button"]}, +{"id":"190897","label":"putting a cup on a surface","template":"Putting [something] on a surface","placeholders":["a cup"]}, +{"id":"106204","label":"pushing alarm clock so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["alarm clock"]}, +{"id":"174890","label":"tilting diary with cigarette lighter on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["diary","cigarette lighter"]}, +{"id":"110340","label":"pulling two ends of sprayer so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["sprayer"]}, +{"id":"220588","label":"pretending to put remote on a surface","template":"Pretending to put [something] on a surface","placeholders":["remote"]}, +{"id":"92438","label":"pretending to open a bowl without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a bowl"]}, +{"id":"188137","label":"putting watch on a surface","template":"Putting [something] on a surface","placeholders":["watch"]}, +{"id":"218823","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"34291","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"21709","label":"pretending to take cutting tool from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cutting tool","table"]}, +{"id":"81009","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"214380","label":"covering a vessel with a thermocol box","template":"Covering [something] with [something]","placeholders":["a vessel","a thermocol box"]}, +{"id":"44325","label":"picking a pen up","template":"Picking [something] up","placeholders":["a pen"]}, +{"id":"143775","label":"pulling pen from right to left","template":"Pulling [something] from right to left","placeholders":["pen"]}, +{"id":"202837","label":"something falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["something"]}, +{"id":"10509","label":"lifting plastic package up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["plastic package"]}, +{"id":"41322","label":"putting glove that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["glove"]}, +{"id":"187679","label":"trying but failing to attach a mobile phone to a plastic bottle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a mobile phone","a plastic bottle"]}, +{"id":"216213","label":"touching (without moving) earth of globe","template":"Touching (without moving) [part] of [something]","placeholders":["earth","globe"]}, +{"id":"182111","label":"taking coins","template":"Taking [one of many similar things on the table]","placeholders":["coins"]}, +{"id":"9965","label":"moving iphone and small pillow away from each other","template":"Moving [something] and [something] away from each other","placeholders":["iphone","small pillow"]}, +{"id":"206214","label":"moving a paperweight away from coffee cup","template":"Moving [something] away from [something]","placeholders":["a paperweight","coffee cup"]}, +{"id":"189956","label":"lifting a notebook with a marker on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a marker"]}, +{"id":"18178","label":"spilling water next to cufflinks","template":"Spilling [something] next to [something]","placeholders":["water","cufflinks"]}, +{"id":"198357","label":"putting remote and spoon on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","spoon"]}, +{"id":"111303","label":"pretending to pick cup up","template":"Pretending to pick [something] up","placeholders":["cup"]}, +{"id":"99620","label":"holding remote in front of the calendar","template":"Holding [something] in front of [something]","placeholders":["remote","the calendar"]}, +{"id":"167055","label":"covering watch with tissue","template":"Covering [something] with [something]","placeholders":["watch","tissue"]}, +{"id":"49104","label":"pretending to pick screwdriver up","template":"Pretending to pick [something] up","placeholders":["screwdriver"]}, +{"id":"98603","label":"pulling black remote from right to left","template":"Pulling [something] from right to left","placeholders":["black remote"]}, +{"id":"210853","label":"putting an eraser that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["an eraser"]}, +{"id":"200865","label":"plugging cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","charger"]}, +{"id":"174465","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"156231","label":"moving hanger towards the camera","template":"Moving [something] towards the camera","placeholders":["hanger"]}, +{"id":"202907","label":"closing thermos","template":"Closing [something]","placeholders":["thermos"]}, +{"id":"215928","label":"putting sticky notes, a pen and a candle on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["sticky notes","a pen","a candle"]}, +{"id":"48378","label":"poking a stack of blocks so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["blocks"]}, +{"id":"76873","label":"holding a knife behind a cup","template":"Holding [something] behind [something]","placeholders":["a knife","a cup"]}, +{"id":"6476","label":"hitting water bottle with comb","template":"Hitting [something] with [something]","placeholders":["water bottle","comb"]}, +{"id":"197809","label":"letting battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["battery"]}, +{"id":"108396","label":"holding blue ballpen","template":"Holding [something]","placeholders":["blue ballpen"]}, +{"id":"208141","label":"showing that an ice cream cup is empty","template":"Showing that [something] is empty","placeholders":["an ice cream cup"]}, +{"id":"186556","label":"moving spoon and fork away from each other","template":"Moving [something] and [something] away from each other","placeholders":["spoon","fork"]}, +{"id":"20860","label":"showing a marker on top of wallet","template":"Showing [something] on top of [something]","placeholders":["a marker","wallet"]}, +{"id":"29543","label":"receipt falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["receipt"]}, +{"id":"93762","label":"throwing tooth paste","template":"Throwing [something]","placeholders":["tooth paste"]}, +{"id":"95870","label":"taking a pen out of a cup","template":"Taking [something] out of [something]","placeholders":["a pen","a cup"]}, +{"id":"133202","label":"opening green face powder","template":"Opening [something]","placeholders":["green face powder"]}, +{"id":"170488","label":"pushing alcohol from left to right","template":"Pushing [something] from left to right","placeholders":["alcohol"]}, +{"id":"80274","label":"pushing a weight so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a weight"]}, +{"id":"107377","label":"putting pebble, battery and key on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pebble","battery","key"]}, +{"id":"131764","label":"lifting a ball up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a ball"]}, +{"id":"104082","label":"lifting up one end of a big spoon without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a big spoon"]}, +{"id":"186777","label":"pulling tissue out of box","template":"Pulling [something] out of [something]","placeholders":["tissue","box"]}, +{"id":"149112","label":"moving pencil up","template":"Moving [something] up","placeholders":["pencil"]}, +{"id":"181842","label":"showing that a coffee pot is empty","template":"Showing that [something] is empty","placeholders":["a coffee pot"]}, +{"id":"170518","label":"pretending to turn can upside down","template":"Pretending to turn [something] upside down","placeholders":["can"]}, +{"id":"184391","label":"plugging a charger into power outlet","template":"Plugging [something] into [something]","placeholders":["a charger","power outlet"]}, +{"id":"140004","label":"pretending to put a remote control on a surface","template":"Pretending to put [something] on a surface","placeholders":["a remote control"]}, +{"id":"163597","label":"tipping soda bottle over","template":"Tipping [something] over","placeholders":["soda bottle"]}, +{"id":"208134","label":"moving a cell phone and paper away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cell phone","paper"]}, +{"id":"199968","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"191186","label":"tilting plate with onion on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","onion"]}, +{"id":"43510","label":"twisting cell phone charging cable","template":"Twisting [something]","placeholders":["cell phone charging cable"]}, +{"id":"142070","label":"stacking four articles of clothes","template":"Stacking [number of] [something]","placeholders":["four","articles of clothes"]}, +{"id":"142266","label":"moving stapler down","template":"Moving [something] down","placeholders":["stapler"]}, +{"id":"43853","label":"taking pieces of paper","template":"Taking [one of many similar things on the table]","placeholders":["pieces of paper"]}, +{"id":"194028","label":"touching (without moving) edge of plate","template":"Touching (without moving) [part] of [something]","placeholders":["edge","plate"]}, +{"id":"17331","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"164600","label":"turning the camera right while filming cow","template":"Turning the camera right while filming [something]","placeholders":["cow"]}, +{"id":"108453","label":"putting marker into mug","template":"Putting [something] into [something]","placeholders":["marker","mug"]}, +{"id":"70738","label":"card falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["card"]}, +{"id":"131701","label":"lifting book with glue bottle on it","template":"Lifting [something] with [something] on it","placeholders":["book","glue bottle"]}, +{"id":"115400","label":"piling things up","template":"Piling [something] up","placeholders":["things"]}, +{"id":"29334","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"219321","label":"bending plastic fork until it breaks","template":"Bending [something] until it breaks","placeholders":["plastic fork"]}, +{"id":"63936","label":"picking a shell up","template":"Picking [something] up","placeholders":["a shell"]}, +{"id":"93029","label":"lifting a chess piece up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a chess piece"]}, +{"id":"213085","label":"lifting tablet with deodorant on it","template":"Lifting [something] with [something] on it","placeholders":["tablet","deodorant"]}, +{"id":"165666","label":"moving wood and binder clip closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["wood","binder clip"]}, +{"id":"82682","label":"moving cd player and usb away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cd player","usb"]}, +{"id":"53264","label":"taking pen from front of","template":"Taking [something] from [somewhere]","placeholders":["pen","front of"]}, +{"id":"54803","label":"moving medicines across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["medicines"]}, +{"id":"178520","label":"wiping salt off of table","template":"Wiping [something] off of [something]","placeholders":["salt","table"]}, +{"id":"182184","label":"moving rock up","template":"Moving [something] up","placeholders":["rock"]}, +{"id":"5588","label":"twisting lotion","template":"Twisting [something]","placeholders":["lotion"]}, +{"id":"65162","label":"tipping toiletpaper over","template":"Tipping [something] over","placeholders":["toiletpaper"]}, +{"id":"160061","label":"unfolding napkin","template":"Unfolding [something]","placeholders":["napkin"]}, +{"id":"182876","label":"bottle being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["bottle","wall"]}, +{"id":"50140","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"19300","label":"plugging cable into computer","template":"Plugging [something] into [something]","placeholders":["cable","computer"]}, +{"id":"212035","label":"hanky falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["hanky"]}, +{"id":"124893","label":"dropping a coin in front of a lid","template":"Dropping [something] in front of [something]","placeholders":["a coin","a lid"]}, +{"id":"149011","label":"attaching recorder piece to recorder end piece","template":"Attaching [something] to [something]","placeholders":["recorder piece","recorder end piece"]}, +{"id":"145178","label":"squeezing a cotton ball","template":"Squeezing [something]","placeholders":["a cotton ball"]}, +{"id":"171659","label":"hitting a pear with a pen","template":"Hitting [something] with [something]","placeholders":["a pear","a pen"]}, +{"id":"148520","label":"putting a wooden figure upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a wooden figure"]}, +{"id":"124093","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"161519","label":"putting marker upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["marker"]}, +{"id":"142326","label":"pulling two ends of tissue paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["tissue paper"]}, +{"id":"149882","label":"plugging night light into outlet","template":"Plugging [something] into [something]","placeholders":["night light","outlet"]}, +{"id":"202546","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"140448","label":"bending branch until it breaks","template":"Bending [something] until it breaks","placeholders":["branch"]}, +{"id":"67511","label":"moving fan away from controller","template":"Moving [something] away from [something]","placeholders":["fan","controller"]}, +{"id":"95522","label":"putting soft drink pack on a surface","template":"Putting [something] on a surface","placeholders":["soft drink pack"]}, +{"id":"206000","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"134065","label":"uncovering coaster","template":"Uncovering [something]","placeholders":["coaster"]}, +{"id":"195142","label":"moving the bottle and the box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the bottle","the box"]}, +{"id":"41436","label":"moving canister and cup so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["canister","cup"]}, +{"id":"87127","label":"putting something onto something else that so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["something","something else that"]}, +{"id":"122971","label":"book colliding with book and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["book","book"]}, +{"id":"134790","label":"bending stick until it breaks","template":"Bending [something] until it breaks","placeholders":["stick"]}, +{"id":"179768","label":"hitting box with scale","template":"Hitting [something] with [something]","placeholders":["box","scale"]}, +{"id":"195322","label":"dropping fork onto floor","template":"Dropping [something] onto [something]","placeholders":["fork","floor"]}, +{"id":"201604","label":"uncovering cloth","template":"Uncovering [something]","placeholders":["cloth"]}, +{"id":"148911","label":"putting clip onto cream tin","template":"Putting [something] onto [something]","placeholders":["clip","cream tin"]}, +{"id":"185966","label":"pretending or trying and failing to twist fuel can","template":"Pretending or trying and failing to twist [something]","placeholders":["fuel can"]}, +{"id":"81209","label":"rolling box on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["box"]}, +{"id":"185525","label":"moving note book down","template":"Moving [something] down","placeholders":["note book"]}, +{"id":"107958","label":"pushing a toy so it spins","template":"Pushing [something] so it spins","placeholders":["a toy"]}, +{"id":"107619","label":"putting hair clip similar to other hairclips that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["hair clip similar to other hairclips that are already on the table"]}, +{"id":"3102","label":"pretending to be tearing a tin lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a tin lid"]}, +{"id":"2800","label":"putting a charger next to a box","template":"Putting [something] next to [something]","placeholders":["a charger","a box"]}, +{"id":"191839","label":"poking starburst so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["starburst"]}, +{"id":"192618","label":"moving coin up","template":"Moving [something] up","placeholders":["coin"]}, +{"id":"206836","label":"pouring water into a cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a cup"]}, +{"id":"108013","label":"showing bike to the camera","template":"Showing [something] to the camera","placeholders":["bike"]}, +{"id":"86148","label":"poking a beaker so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a beaker"]}, +{"id":"150124","label":"twisting (wringing) paper towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["paper towel"]}, +{"id":"145271","label":"pretending to take keys out of bag","template":"Pretending to take [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"94730","label":"rolling battery on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["battery"]}, +{"id":"156862","label":"putting wallet into bag","template":"Putting [something] into [something]","placeholders":["wallet","bag"]}, +{"id":"79825","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"32165","label":"approaching crystal candle holder with your camera","template":"Approaching [something] with your camera","placeholders":["crystal candle holder"]}, +{"id":"148416","label":"pretending to pour water out of the bag, but the squeeze is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","the bag","the squeeze"]}, +{"id":"76786","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"195135","label":"taking pen","template":"Taking [one of many similar things on the table]","placeholders":["pen"]}, +{"id":"80797","label":"pretending to turn a water container upside down","template":"Pretending to turn [something] upside down","placeholders":["a water container"]}, +{"id":"195976","label":"putting ring behind matchbox","template":"Putting [something] behind [something]","placeholders":["ring","matchbox"]}, +{"id":"31800","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"162311","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"174074","label":"turning box upside down","template":"Turning [something] upside down","placeholders":["box"]}, +{"id":"59220","label":"plugging a cable into a adapter","template":"Plugging [something] into [something]","placeholders":["a cable","a adapter"]}, +{"id":"162491","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"116480","label":"pretending to open candle jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["candle jar"]}, +{"id":"85689","label":"moving plastic spoon closer to orange","template":"Moving [something] closer to [something]","placeholders":["plastic spoon","orange"]}, +{"id":"170637","label":"holding remote in front of monitor","template":"Holding [something] in front of [something]","placeholders":["remote","monitor"]}, +{"id":"13161","label":"pushing nail polish so it spins","template":"Pushing [something] so it spins","placeholders":["nail polish"]}, +{"id":"99643","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"25829","label":"picking purse up","template":"Picking [something] up","placeholders":["purse"]}, +{"id":"214590","label":"taking a marker","template":"Taking [one of many similar things on the table]","placeholders":["a marker"]}, +{"id":"148858","label":"lifting a brass casing up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a brass casing"]}, +{"id":"1598","label":"showing a dish towel behind a wooden box","template":"Showing [something] behind [something]","placeholders":["a dish towel","a wooden box"]}, +{"id":"178283","label":"spilling water onto sponge","template":"Spilling [something] onto [something]","placeholders":["water","sponge"]}, +{"id":"73456","label":"turning the camera upwards while filming battery","template":"Turning the camera upwards while filming [something]","placeholders":["battery"]}, +{"id":"187735","label":"moving punching machine closer to magnifying glass","template":"Moving [something] closer to [something]","placeholders":["punching machine","magnifying glass"]}, +{"id":"110509","label":"pushing small book from left to right","template":"Pushing [something] from left to right","placeholders":["small book"]}, +{"id":"86492","label":"taking wheel","template":"Taking [one of many similar things on the table]","placeholders":["wheel"]}, +{"id":"113932","label":"rolling a roll of masking tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a roll of masking tape"]}, +{"id":"177260","label":"putting fruit next to bowl","template":"Putting [something] next to [something]","placeholders":["fruit","bowl"]}, +{"id":"189756","label":"putting a coffee cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coffee cup"]}, +{"id":"71027","label":"pretending to put pen into holder","template":"Pretending to put [something] into [something]","placeholders":["pen","holder"]}, +{"id":"17924","label":"holding a pencil","template":"Holding [something]","placeholders":["a pencil"]}, +{"id":"134519","label":"twisting jar cap","template":"Twisting [something]","placeholders":["jar cap"]}, +{"id":"199520","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"6510","label":"dropping a pack of gum behind a glass jar","template":"Dropping [something] behind [something]","placeholders":["a pack of gum","a glass jar"]}, +{"id":"191146","label":"pretending to spread air onto a newspaper","template":"Pretending to spread air onto [something]","placeholders":["a newspaper"]}, +{"id":"141187","label":"uncovering keys","template":"Uncovering [something]","placeholders":["keys"]}, +{"id":"33492","label":"showing that pan is empty","template":"Showing that [something] is empty","placeholders":["pan"]}, +{"id":"54809","label":"tearing napkin into two pieces","template":"Tearing [something] into two pieces","placeholders":["napkin"]}, +{"id":"200151","label":"taking one vase from three.","template":"Taking [one of many similar things on the table]","placeholders":["one vase from three."]}, +{"id":"138755","label":"throwing blue colour mechanical pencil","template":"Throwing [something]","placeholders":["blue colour mechanical pencil"]}, +{"id":"194702","label":"sprinkling water onto a mirror","template":"Sprinkling [something] onto [something]","placeholders":["water","a mirror"]}, +{"id":"196688","label":"hitting bottle with hand","template":"Hitting [something] with [something]","placeholders":["bottle","hand"]}, +{"id":"6211","label":"pretending to open toothpaste cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["toothpaste cap"]}, +{"id":"62974","label":"showing that a water bottle is empty","template":"Showing that [something] is empty","placeholders":["a water bottle"]}, +{"id":"12545","label":"touching (without moving) knob of door","template":"Touching (without moving) [part] of [something]","placeholders":["knob","door"]}, +{"id":"7753","label":"trying but failing to attach eraser to bottle because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["eraser","bottle"]}, +{"id":"217553","label":"napkin falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["napkin"]}, +{"id":"177229","label":"lifting hair gel with chapstick on it","template":"Lifting [something] with [something] on it","placeholders":["hair gel","chapstick"]}, +{"id":"62934","label":"throwing bottle","template":"Throwing [something]","placeholders":["bottle"]}, +{"id":"91290","label":"spreading jam onto bread","template":"Spreading [something] onto [something]","placeholders":["jam","bread"]}, +{"id":"197712","label":"showing phone to the camera","template":"Showing [something] to the camera","placeholders":["phone"]}, +{"id":"167506","label":"pretending to pour soda out of can, but can is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["soda","can","can"]}, +{"id":"66663","label":"pushing a tape with a box","template":"Pushing [something] with [something]","placeholders":["a tape","a box"]}, +{"id":"123431","label":"plugging earphone into cell phone","template":"Plugging [something] into [something]","placeholders":["earphone","cell phone"]}, +{"id":"71267","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"15768","label":"moving controller up","template":"Moving [something] up","placeholders":["controller"]}, +{"id":"138406","label":"pretending to be tearing a wallet that is untearable","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a wallet that is untearable"]}, +{"id":"98329","label":"tearing shirt just a little bit","template":"Tearing [something] just a little bit","placeholders":["shirt"]}, +{"id":"96190","label":"folding something","template":"Folding [something]","placeholders":["something"]}, +{"id":"95108","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"124583","label":"truck colliding with car and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["truck","car"]}, +{"id":"68702","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"120653","label":"closing a zipper on a make up bag","template":"Closing [something]","placeholders":["a zipper on a make up bag"]}, +{"id":"20923","label":"pretending to be tearing plastic lid","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic lid"]}, +{"id":"51617","label":"pushing matchbox so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["matchbox"]}, +{"id":"2367","label":"showing ball on top of candle","template":"Showing [something] on top of [something]","placeholders":["ball","candle"]}, +{"id":"114501","label":"pushing chair from left to right","template":"Pushing [something] from left to right","placeholders":["chair"]}, +{"id":"124327","label":"turning the camera left while filming teacups","template":"Turning the camera left while filming [something]","placeholders":["teacups"]}, +{"id":"36695","label":"hitting a tin with a nail","template":"Hitting [something] with [something]","placeholders":["a tin","a nail"]}, +{"id":"42709","label":"moving a remote away from two other remotes","template":"Moving [something] away from [something]","placeholders":["a remote","two other remotes"]}, +{"id":"169063","label":"unfolding bill","template":"Unfolding [something]","placeholders":["bill"]}, +{"id":"2917","label":"moving comb and key closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["comb","key"]}, +{"id":"12276","label":"lifting a teddy bear up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a teddy bear"]}, +{"id":"32175","label":"lifting a surface with plate on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["plate"]}, +{"id":"148667","label":"tearing kitchen paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["kitchen paper"]}, +{"id":"36536","label":"moving glass and sock closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["glass","sock"]}, +{"id":"112147","label":"pushing orange post-it from left to right","template":"Pushing [something] from left to right","placeholders":["orange post-it"]}, +{"id":"47841","label":"pushing banana so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["banana"]}, +{"id":"93104","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"80240","label":"moving book down","template":"Moving [something] down","placeholders":["book"]}, +{"id":"41820","label":"putting knife onto cup","template":"Putting [something] onto [something]","placeholders":["knife","cup"]}, +{"id":"82259","label":"hitting lotion with lipgloss","template":"Hitting [something] with [something]","placeholders":["lotion","lipgloss"]}, +{"id":"23723","label":"trying to bend rolling pin so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["rolling pin"]}, +{"id":"190556","label":"moving key away from cup","template":"Moving [something] away from [something]","placeholders":["key","cup"]}, +{"id":"150956","label":"spinning neodymium magnet so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["neodymium magnet"]}, +{"id":"110225","label":"dropping hair tie next to wallet","template":"Dropping [something] next to [something]","placeholders":["hair tie","wallet"]}, +{"id":"180885","label":"putting two brushes onto book","template":"Putting [number of] [something] onto [something]","placeholders":["two","brushes","book"]}, +{"id":"20909","label":"putting a stapler onto a chair","template":"Putting [something] onto [something]","placeholders":["a stapler","a chair"]}, +{"id":"177531","label":"touching (without moving) handle of microwave","template":"Touching (without moving) [part] of [something]","placeholders":["handle","microwave"]}, +{"id":"123615","label":"pushing steel glass from right to left","template":"Pushing [something] from right to left","placeholders":["steel glass"]}, +{"id":"14811","label":"putting 2 compass onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","compass","blue note"]}, +{"id":"86801","label":"stacking 3 cookies","template":"Stacking [number of] [something]","placeholders":["3","cookies"]}, +{"id":"12718","label":"moving scissors closer to a toothbrush","template":"Moving [something] closer to [something]","placeholders":["scissors","a toothbrush"]}, +{"id":"79970","label":"showing teacup behind coffee cup","template":"Showing [something] behind [something]","placeholders":["teacup","coffee cup"]}, +{"id":"93574","label":"putting a roll of tape on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a roll of tape"]}, +{"id":"21763","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"204590","label":"spinning a fidget spinner that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a fidget spinner"]}, +{"id":"77236","label":"poking a stack of plastic so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["plastic"]}, +{"id":"150056","label":"pushing lotion so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lotion"]}, +{"id":"176212","label":"tearing piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of paper"]}, +{"id":"22852","label":"dropping golf ball into bowl","template":"Dropping [something] into [something]","placeholders":["golf ball","bowl"]}, +{"id":"135709","label":"poking dog chew toy so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["dog chew toy"]}, +{"id":"114673","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"687","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"47212","label":"putting a bottle next to a cup","template":"Putting [something] next to [something]","placeholders":["a bottle","a cup"]}, +{"id":"183590","label":"showing that paper towel is inside glass","template":"Showing that [something] is inside [something]","placeholders":["paper towel","glass"]}, +{"id":"66733","label":"pulling pen out of glass","template":"Pulling [something] out of [something]","placeholders":["pen","glass"]}, +{"id":"78600","label":"letting cup roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["cup"]}, +{"id":"205630","label":"putting fork behind mug","template":"Putting [something] behind [something]","placeholders":["fork","mug"]}, +{"id":"81277","label":"hitting a book with a lighter","template":"Hitting [something] with [something]","placeholders":["a book","a lighter"]}, +{"id":"13268","label":"digging plastic spoon out of salt","template":"Digging [something] out of [something]","placeholders":["plastic spoon","salt"]}, +{"id":"77626","label":"putting candle behind decorative pear","template":"Putting [something] behind [something]","placeholders":["candle","decorative pear"]}, +{"id":"70181","label":"stuffing sweater into purse","template":"Stuffing [something] into [something]","placeholders":["sweater","purse"]}, +{"id":"133167","label":"pushing marker so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["marker"]}, +{"id":"100603","label":"squeezing lotion bottle","template":"Squeezing [something]","placeholders":["lotion bottle"]}, +{"id":"7024","label":"opening magazine","template":"Opening [something]","placeholders":["magazine"]}, +{"id":"203752","label":"poking lighter so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["lighter"]}, +{"id":"106643","label":"unfolding unfolding","template":"Unfolding [something]","placeholders":["unfolding"]}, +{"id":"73040","label":"moving door of bath cupboard","template":"Moving [part] of [something]","placeholders":["door","bath cupboard"]}, +{"id":"100836","label":"putting a book into a bookshelf","template":"Putting [something] into [something]","placeholders":["a book","a bookshelf"]}, +{"id":"179575","label":"taking a flashlight from drawer","template":"Taking [something] from [somewhere]","placeholders":["a flashlight","drawer"]}, +{"id":"27733","label":"pushing a telephone with a telephone","template":"Pushing [something] with [something]","placeholders":["a telephone","a telephone"]}, +{"id":"149339","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"113474","label":"pretending to open cup lid without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["cup lid"]}, +{"id":"167958","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"177145","label":"lifting calculator with rule on it","template":"Lifting [something] with [something] on it","placeholders":["calculator","rule"]}, +{"id":"142943","label":"plugging usb cable into usb port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb cable","usb port"]}, +{"id":"73813","label":"sprinkling chips onto a high tray tray","template":"Sprinkling [something] onto [something]","placeholders":["chips","a high tray tray"]}, +{"id":"112867","label":"tipping deodorant can over","template":"Tipping [something] over","placeholders":["deodorant can"]}, +{"id":"205777","label":"holding a comb in front of a book","template":"Holding [something] in front of [something]","placeholders":["a comb","a book"]}, +{"id":"66211","label":"putting a stapler and a pen on the table","template":"Putting [something] and [something] on the table","placeholders":["a stapler","a pen"]}, +{"id":"161029","label":"pushing pushing a child's water bottle top across kitchen counter from right to left","template":"Pushing [something] from right to left","placeholders":["pushing a child's water bottle top across kitchen counter"]}, +{"id":"207003","label":"uncovering phone","template":"Uncovering [something]","placeholders":["phone"]}, +{"id":"93898","label":"pulling purple microfiber from left to right","template":"Pulling [something] from left to right","placeholders":["purple microfiber"]}, +{"id":"139306","label":"squeezing makeup cleanser bottle","template":"Squeezing [something]","placeholders":["makeup cleanser bottle"]}, +{"id":"34875","label":"plugging plug into socket","template":"Plugging [something] into [something]","placeholders":["plug","socket"]}, +{"id":"151488","label":"dropping onion onto book","template":"Dropping [something] onto [something]","placeholders":["onion","book"]}, +{"id":"72472","label":"lifting gray blanket up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["gray blanket"]}, +{"id":"65707","label":"pushing basketball so it spins","template":"Pushing [something] so it spins","placeholders":["basketball"]}, +{"id":"118953","label":"holding pen next to ball","template":"Holding [something] next to [something]","placeholders":["pen","ball"]}, +{"id":"96014","label":"turning a mug upside down","template":"Turning [something] upside down","placeholders":["a mug"]}, +{"id":"148651","label":"touching (without moving) \\\"toaster of \\\"grab\\\"plate","template":"Touching (without moving) [part] of [something]","placeholders":["\\\"toaster","\\\"grab\\\"plate"]}, +{"id":"45691","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"186017","label":"trying to bend scissors so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["scissors"]}, +{"id":"156054","label":"uncovering deodorant","template":"Uncovering [something]","placeholders":["deodorant"]}, +{"id":"61528","label":"tilting iphone with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["iphone","pen"]}, +{"id":"45131","label":"dropping a toothpick into a box","template":"Dropping [something] into [something]","placeholders":["a toothpick","a box"]}, +{"id":"51110","label":"holding book in front of tv","template":"Holding [something] in front of [something]","placeholders":["book","tv"]}, +{"id":"11171","label":"holding phone","template":"Holding [something]","placeholders":["phone"]}, +{"id":"146235","label":"picking sunglasses up","template":"Picking [something] up","placeholders":["sunglasses"]}, +{"id":"118907","label":"bending a business card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a business card"]}, +{"id":"33419","label":"picking pencil up","template":"Picking [something] up","placeholders":["pencil"]}, +{"id":"126106","label":"taking fork","template":"Taking [one of many similar things on the table]","placeholders":["fork"]}, +{"id":"153882","label":"turning mouse upside down","template":"Turning [something] upside down","placeholders":["mouse"]}, +{"id":"125593","label":"poking a bracelet so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a bracelet"]}, +{"id":"93788","label":"pretending to turn black play cards upside down","template":"Pretending to turn [something] upside down","placeholders":["black play cards"]}, +{"id":"113745","label":"tomato falling like a rock","template":"[Something] falling like a rock","placeholders":["tomato"]}, +{"id":"219230","label":"trying to bend a cookie sheet so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a cookie sheet"]}, +{"id":"14914","label":"pretending to turn a coffee mug upside down","template":"Pretending to turn [something] upside down","placeholders":["a coffee mug"]}, +{"id":"84626","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"161664","label":"taking pen out of pencil case","template":"Taking [something] out of [something]","placeholders":["pen","pencil case"]}, +{"id":"135971","label":"lifting shirt up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["shirt"]}, +{"id":"198726","label":"moving pen away from cup","template":"Moving [something] away from [something]","placeholders":["pen","cup"]}, +{"id":"128203","label":"tilting book with keys on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["book","keys"]}, +{"id":"219178","label":"pouring pop into glass","template":"Pouring [something] into [something]","placeholders":["pop","glass"]}, +{"id":"155650","label":"moving cup down","template":"Moving [something] down","placeholders":["cup"]}, +{"id":"62513","label":"moving a phone closer to a mug","template":"Moving [something] closer to [something]","placeholders":["a phone","a mug"]}, +{"id":"200154","label":"crackers colliding with crackers and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["crackers","crackers"]}, +{"id":"204733","label":"putting keyd next to bag","template":"Putting [something] next to [something]","placeholders":["keyd","bag"]}, +{"id":"75060","label":"turning the camera upwards while filming plants","template":"Turning the camera upwards while filming [something]","placeholders":["plants"]}, +{"id":"83521","label":"poking a hole into an apple","template":"Poking a hole into [something soft]","placeholders":["an apple"]}, +{"id":"181338","label":"pad of paper falling like a rock","template":"[Something] falling like a rock","placeholders":["pad of paper"]}, +{"id":"48198","label":"attaching a post it to the door","template":"Attaching [something] to [something]","placeholders":["a post it","the door"]}, +{"id":"4103","label":"moving fluorescent colour pen down","template":"Moving [something] down","placeholders":["fluorescent colour pen"]}, +{"id":"220138","label":"dropping towel next to handbag","template":"Dropping [something] next to [something]","placeholders":["towel","handbag"]}, +{"id":"27026","label":"uncovering key","template":"Uncovering [something]","placeholders":["key"]}, +{"id":"66315","label":"moving envelopes across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["envelopes"]}, +{"id":"133808","label":"putting lid in front of bowl","template":"Putting [something] in front of [something]","placeholders":["lid","bowl"]}, +{"id":"136129","label":"attaching bag to hangar nail","template":"Attaching [something] to [something]","placeholders":["bag","hangar nail"]}, +{"id":"55727","label":"laying a doll on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a doll"]}, +{"id":"140144","label":"holding bracelet next to plastic bag","template":"Holding [something] next to [something]","placeholders":["bracelet","plastic bag"]}, +{"id":"75656","label":"tipping blocks over","template":"Tipping [something] over","placeholders":["blocks"]}, +{"id":"121746","label":"spreading jam onto a biscuit","template":"Spreading [something] onto [something]","placeholders":["jam","a biscuit"]}, +{"id":"45351","label":"showing that water is inside tank","template":"Showing that [something] is inside [something]","placeholders":["water","tank"]}, +{"id":"134175","label":"spinning a toy so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a toy"]}, +{"id":"80983","label":"moving nozzle of bottle","template":"Moving [part] of [something]","placeholders":["nozzle","bottle"]}, +{"id":"88024","label":"moving dvd case up","template":"Moving [something] up","placeholders":["dvd case"]}, +{"id":"48770","label":"pretending to pick adapter up","template":"Pretending to pick [something] up","placeholders":["adapter"]}, +{"id":"192481","label":"tape falling like a rock","template":"[Something] falling like a rock","placeholders":["tape"]}, +{"id":"166689","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"138813","label":"uncovering button","template":"Uncovering [something]","placeholders":["button"]}, +{"id":"185457","label":"pushing hat so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hat"]}, +{"id":"16781","label":"bottle colliding with bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["bottle","bottle"]}, +{"id":"34363","label":"showing calculator to the camera","template":"Showing [something] to the camera","placeholders":["calculator"]}, +{"id":"133198","label":"poking hammer so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["hammer"]}, +{"id":"79210","label":"approaching lcd monitor with your camera","template":"Approaching [something] with your camera","placeholders":["lcd monitor"]}, +{"id":"72445","label":"tilting a tissue box with plastic cups on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a tissue box","plastic cups"]}, +{"id":"188660","label":"putting a lid onto a can","template":"Putting [something] onto [something]","placeholders":["a lid","a can"]}, +{"id":"5800","label":"unfolding magazine","template":"Unfolding [something]","placeholders":["magazine"]}, +{"id":"6934","label":"pushing bottle from right to left","template":"Pushing [something] from right to left","placeholders":["bottle"]}, +{"id":"191385","label":"putting a book onto a water jug so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a book","a water jug"]}, +{"id":"36194","label":"spinning calculator that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["calculator"]}, +{"id":"58147","label":"spinning fan so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["fan"]}, +{"id":"219710","label":"throwing tissues in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["tissues"]}, +{"id":"29943","label":"pretending or failing to wipe dirt off of crate","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","crate"]}, +{"id":"18516","label":"spinning baseball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["baseball"]}, +{"id":"122222","label":"holding vape in front of stuffed dragon","template":"Holding [something] in front of [something]","placeholders":["vape","stuffed dragon"]}, +{"id":"105450","label":"wiping water off of kitchen slab","template":"Wiping [something] off of [something]","placeholders":["water","kitchen slab"]}, +{"id":"106723","label":"taking pen cap out of pen","template":"Taking [something] out of [something]","placeholders":["pen cap","pen"]}, +{"id":"62401","label":"moving can and glass so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["can","glass"]}, +{"id":"106168","label":"throwing the book against the bed","template":"Throwing [something] against [something]","placeholders":["the book","the bed"]}, +{"id":"179509","label":"pretending to take tube out of box","template":"Pretending to take [something] out of [something]","placeholders":["tube","box"]}, +{"id":"106139","label":"flip flops colliding with flip flops and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["flip flops","flip flops"]}, +{"id":"82528","label":"covering briefcase with shall","template":"Covering [something] with [something]","placeholders":["briefcase","shall"]}, +{"id":"199853","label":"holding shampoo sachet in front of coffee sachet","template":"Holding [something] in front of [something]","placeholders":["shampoo sachet","coffee sachet"]}, +{"id":"98896","label":"moving battery closer to screw","template":"Moving [something] closer to [something]","placeholders":["battery","screw"]}, +{"id":"179671","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"78066","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"24005","label":"pulling pen from behind of glass","template":"Pulling [something] from behind of [something]","placeholders":["pen","glass"]}, +{"id":"215515","label":"squeezing oven mitt","template":"Squeezing [something]","placeholders":["oven mitt"]}, +{"id":"63097","label":"pretending to pour nothing out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["nothing","bottle","bottle"]}, +{"id":"140798","label":"covering baby boy with blanket","template":"Covering [something] with [something]","placeholders":["baby boy","blanket"]}, +{"id":"40379","label":"squeezing gummy bear","template":"Squeezing [something]","placeholders":["gummy bear"]}, +{"id":"33183","label":"moving white colour board clip up","template":"Moving [something] up","placeholders":["white colour board clip"]}, +{"id":"141050","label":"pretending to pick can up","template":"Pretending to pick [something] up","placeholders":["can"]}, +{"id":"196955","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"65480","label":"moving box closer to container","template":"Moving [something] closer to [something]","placeholders":["box","container"]}, +{"id":"57711","label":"dropping a pen in front of sunglasses","template":"Dropping [something] in front of [something]","placeholders":["a pen","sunglasses"]}, +{"id":"146389","label":"showing that candy is inside cup","template":"Showing that [something] is inside [something]","placeholders":["candy","cup"]}, +{"id":"122116","label":"taking one marker out of many","template":"Taking [one of many similar things on the table]","placeholders":["one marker out of many"]}, +{"id":"54534","label":"moving a helmet and another helmet so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a helmet","another helmet"]}, +{"id":"150594","label":"pretending to pick sunglasses up","template":"Pretending to pick [something] up","placeholders":["sunglasses"]}, +{"id":"50128","label":"tilting box with hook on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["box","hook"]}, +{"id":"108114","label":"sprinkling cheese onto rice","template":"Sprinkling [something] onto [something]","placeholders":["cheese","rice"]}, +{"id":"194130","label":"picking bracelet up","template":"Picking [something] up","placeholders":["bracelet"]}, +{"id":"168116","label":"phone colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["phone","bottle"]}, +{"id":"173285","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"138481","label":"tearing a napkin just a little bit","template":"Tearing [something] just a little bit","placeholders":["a napkin"]}, +{"id":"30725","label":"squeezing a stuffed toy","template":"Squeezing [something]","placeholders":["a stuffed toy"]}, +{"id":"196748","label":"something colliding with something and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["something","something"]}, +{"id":"78021","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"72660","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"91824","label":"plugging usb into box","template":"Plugging [something] into [something]","placeholders":["usb","box"]}, +{"id":"25707","label":"plugging hands-free into mobile phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["hands-free","mobile phone"]}, +{"id":"156246","label":"removing glass, revealing match box behind","template":"Removing [something], revealing [something] behind","placeholders":["glass","match box"]}, +{"id":"69663","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"63986","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"128840","label":"putting box in front of remote","template":"Putting [something] in front of [something]","placeholders":["box","remote"]}, +{"id":"212021","label":"holding a hammer behind a glass","template":"Holding [something] behind [something]","placeholders":["a hammer","a glass"]}, +{"id":"197325","label":"moving flag up","template":"Moving [something] up","placeholders":["flag"]}, +{"id":"23689","label":"spinning apple so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["apple"]}, +{"id":"64910","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"151345","label":"covering phone with cloth","template":"Covering [something] with [something]","placeholders":["phone","cloth"]}, +{"id":"35356","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"98466","label":"holding cup next to couch","template":"Holding [something] next to [something]","placeholders":["cup","couch"]}, +{"id":"36568","label":"turning the camera left while filming cup","template":"Turning the camera left while filming [something]","placeholders":["cup"]}, +{"id":"200131","label":"spinning paper punching machine that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paper punching machine"]}, +{"id":"133144","label":"turning a mouse upside down","template":"Turning [something] upside down","placeholders":["a mouse"]}, +{"id":"92018","label":"bending toothpick until it breaks","template":"Bending [something] until it breaks","placeholders":["toothpick"]}, +{"id":"219349","label":"poking blocks so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["blocks"]}, +{"id":"218299","label":"twisting green fabric clip","template":"Twisting [something]","placeholders":["green fabric clip"]}, +{"id":"188676","label":"putting spinner in front of bag","template":"Putting [something] in front of [something]","placeholders":["spinner","bag"]}, +{"id":"104101","label":"covering pillow with bed cover","template":"Covering [something] with [something]","placeholders":["pillow","bed cover"]}, +{"id":"139205","label":"putting wallet that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["wallet"]}, +{"id":"125688","label":"holding a shoe","template":"Holding [something]","placeholders":["a shoe"]}, +{"id":"163691","label":"throwing doll onto a surface","template":"Throwing [something] onto a surface","placeholders":["doll"]}, +{"id":"1235","label":"pretending to be tearing paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["paper"]}, +{"id":"174616","label":"removing mug, revealing ruber behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","ruber"]}, +{"id":"144041","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"151836","label":"plugging box into extension cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["box","extension cord"]}, +{"id":"104255","label":"putting keyboard behind monitor","template":"Putting [something] behind [something]","placeholders":["keyboard","monitor"]}, +{"id":"29075","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"64499","label":"dropping a peg behind a shoe brush","template":"Dropping [something] behind [something]","placeholders":["a peg","a shoe brush"]}, +{"id":"197131","label":"putting bowl, comb and camera on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bowl","comb","camera"]}, +{"id":"151370","label":"pretending to poke a case","template":"Pretending to poke [something]","placeholders":["a case"]}, +{"id":"132454","label":"pretending to put granola bar on a surface","template":"Pretending to put [something] on a surface","placeholders":["granola bar"]}, +{"id":"5938","label":"putting pen behind urn","template":"Putting [something] behind [something]","placeholders":["pen","urn"]}, +{"id":"207607","label":"covering my face with a pillow","template":"Covering [something] with [something]","placeholders":["my face","a pillow"]}, +{"id":"57062","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"68624","label":"turning a tv remote upside down","template":"Turning [something] upside down","placeholders":["a tv remote"]}, +{"id":"218197","label":"dropping a bag in front of table","template":"Dropping [something] in front of [something]","placeholders":["a bag","table"]}, +{"id":"213033","label":"twisting cable","template":"Twisting [something]","placeholders":["cable"]}, +{"id":"108264","label":"attaching pen top to pen bottom","template":"Attaching [something] to [something]","placeholders":["pen top","pen bottom"]}, +{"id":"1439","label":"pulling a doll from behind of a bag","template":"Pulling [something] from behind of [something]","placeholders":["a doll","a bag"]}, +{"id":"12940","label":"tearing playingcard into two pieces","template":"Tearing [something] into two pieces","placeholders":["playingcard"]}, +{"id":"187845","label":"moving eraser away from usb cable","template":"Moving [something] away from [something]","placeholders":["eraser","usb cable"]}, +{"id":"183219","label":"holding shampoo in front of door","template":"Holding [something] in front of [something]","placeholders":["shampoo","door"]}, +{"id":"115374","label":"taking juice bottles","template":"Taking [one of many similar things on the table]","placeholders":["juice bottles"]}, +{"id":"213157","label":"spinning a chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a chair"]}, +{"id":"165346","label":"turning the camera left while filming caution board","template":"Turning the camera left while filming [something]","placeholders":["caution board"]}, +{"id":"28059","label":"bending a pencil until it breaks","template":"Bending [something] until it breaks","placeholders":["a pencil"]}, +{"id":"202117","label":"lifting cd case with nail polish on it","template":"Lifting [something] with [something] on it","placeholders":["cd case","nail polish"]}, +{"id":"31650","label":"tearing papier just a little bit","template":"Tearing [something] just a little bit","placeholders":["papier"]}, +{"id":"214959","label":"moving a phone away from the camera","template":"Moving [something] away from the camera","placeholders":["a phone"]}, +{"id":"195718","label":"showing that pencil is inside cup","template":"Showing that [something] is inside [something]","placeholders":["pencil","cup"]}, +{"id":"61353","label":"laying can on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["can"]}, +{"id":"186060","label":"stuffing water into glass","template":"Stuffing [something] into [something]","placeholders":["water","glass"]}, +{"id":"23416","label":"tipping a pill bottle over","template":"Tipping [something] over","placeholders":["a pill bottle"]}, +{"id":"36892","label":"covering eraser with hand","template":"Covering [something] with [something]","placeholders":["eraser","hand"]}, +{"id":"24220","label":"putting sock into shoe","template":"Putting [something] into [something]","placeholders":["sock","shoe"]}, +{"id":"84618","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"43780","label":"putting pen on the edge of card board so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["pen","card board"]}, +{"id":"10412","label":"dropping bottle into buckets","template":"Dropping [something] into [something]","placeholders":["bottle","buckets"]}, +{"id":"75469","label":"stuffing trash into chip bag","template":"Stuffing [something] into [something]","placeholders":["trash","chip bag"]}, +{"id":"177565","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"34550","label":"lifting battery up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["battery"]}, +{"id":"100034","label":"pretending to take book from stack","template":"Pretending to take [something] from [somewhere]","placeholders":["book","stack"]}, +{"id":"37038","label":"attaching attaching paper to fridge","template":"Attaching [something] to [something]","placeholders":["attaching paper","fridge"]}, +{"id":"93510","label":"putting clip onto toy","template":"Putting [something] onto [something]","placeholders":["clip","toy"]}, +{"id":"81157","label":"showing adapter behind textbook","template":"Showing [something] behind [something]","placeholders":["adapter","textbook"]}, +{"id":"163752","label":"taking one of the pens","template":"Taking [one of many similar things on the table]","placeholders":["one of the pens"]}, +{"id":"175024","label":"turning the camera upwards while filming sugar container","template":"Turning the camera upwards while filming [something]","placeholders":["sugar container"]}, +{"id":"177952","label":"rolling crochet hook on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["crochet hook"]}, +{"id":"111230","label":"moving cigarette lighter towards the camera","template":"Moving [something] towards the camera","placeholders":["cigarette lighter"]}, +{"id":"103325","label":"showing that box is empty","template":"Showing that [something] is empty","placeholders":["box"]}, +{"id":"91986","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"123709","label":"stuffing notebook into briefcase","template":"Stuffing [something] into [something]","placeholders":["notebook","briefcase"]}, +{"id":"195222","label":"unfolding a plastic bag","template":"Unfolding [something]","placeholders":["a plastic bag"]}, +{"id":"33321","label":"pouring soda into a cup","template":"Pouring [something] into [something]","placeholders":["soda","a cup"]}, +{"id":"62247","label":"throwing metal","template":"Throwing [something]","placeholders":["metal"]}, +{"id":"128511","label":"spilling water next to a sieve","template":"Spilling [something] next to [something]","placeholders":["water","a sieve"]}, +{"id":"198046","label":"tilting medicine box with brush on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["medicine box","brush"]}, +{"id":"141390","label":"holding mini bowl over glass","template":"Holding [something] over [something]","placeholders":["mini bowl","glass"]}, +{"id":"156939","label":"lifting game case with wallet on it","template":"Lifting [something] with [something] on it","placeholders":["game case","wallet"]}, +{"id":"121693","label":"pushing green face powder from right to left","template":"Pushing [something] from right to left","placeholders":["green face powder"]}, +{"id":"90367","label":"covering calculator with newspaper","template":"Covering [something] with [something]","placeholders":["calculator","newspaper"]}, +{"id":"29283","label":"pretending to throw wooden puppet","template":"Pretending to throw [something]","placeholders":["wooden puppet"]}, +{"id":"73616","label":"taking plastic twist tie","template":"Taking [one of many similar things on the table]","placeholders":["plastic twist tie"]}, +{"id":"109608","label":"turning the camera upwards while filming white book marker","template":"Turning the camera upwards while filming [something]","placeholders":["white book marker"]}, +{"id":"119407","label":"pretending to turn a glass upside down","template":"Pretending to turn [something] upside down","placeholders":["a glass"]}, +{"id":"94197","label":"covering something with something","template":"Covering [something] with [something]","placeholders":["something","something"]}, +{"id":"153785","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"195811","label":"uncovering wooden stick","template":"Uncovering [something]","placeholders":["wooden stick"]}, +{"id":"72743","label":"putting a knife next to a mug","template":"Putting [something] next to [something]","placeholders":["a knife","a mug"]}, +{"id":"166406","label":"pretending to put pen into cup","template":"Pretending to put [something] into [something]","placeholders":["pen","cup"]}, +{"id":"73494","label":"showing smart band to the camera","template":"Showing [something] to the camera","placeholders":["smart band"]}, +{"id":"103559","label":"pushing a coin off of laptop","template":"Pushing [something] off of [something]","placeholders":["a coin","laptop"]}, +{"id":"175400","label":"holding bottle next to playstation controller","template":"Holding [something] next to [something]","placeholders":["bottle","playstation controller"]}, +{"id":"142538","label":"holding green bowl","template":"Holding [something]","placeholders":["green bowl"]}, +{"id":"22030","label":"putting a lipstick next to a cat","template":"Putting [something] next to [something]","placeholders":["a lipstick","a cat"]}, +{"id":"166989","label":"turning the camera right while filming car","template":"Turning the camera right while filming [something]","placeholders":["car"]}, +{"id":"133186","label":"pushing black remote from left to right","template":"Pushing [something] from left to right","placeholders":["black remote"]}, +{"id":"142282","label":"spreading cue cards onto book","template":"Spreading [something] onto [something]","placeholders":["cue cards","book"]}, +{"id":"98035","label":"moving cell phone down","template":"Moving [something] down","placeholders":["cell phone"]}, +{"id":"152052","label":"putting a book underneath another book","template":"Putting [something] underneath [something]","placeholders":["a book","another book"]}, +{"id":"68246","label":"turning the camera left while filming usb","template":"Turning the camera left while filming [something]","placeholders":["usb"]}, +{"id":"35833","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"112826","label":"uncovering clip","template":"Uncovering [something]","placeholders":["clip"]}, +{"id":"83592","label":"hitting bottle with fork","template":"Hitting [something] with [something]","placeholders":["bottle","fork"]}, +{"id":"92891","label":"stuffing candy bag into waterbottle","template":"Stuffing [something] into [something]","placeholders":["candy bag","waterbottle"]}, +{"id":"78839","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"171848","label":"taking hook out of bowl","template":"Taking [something] out of [something]","placeholders":["hook","bowl"]}, +{"id":"35227","label":"plugging headphones into a cellphone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["headphones","a cellphone"]}, +{"id":"11425","label":"squeezing a blanket","template":"Squeezing [something]","placeholders":["a blanket"]}, +{"id":"70911","label":"moving soft drink can towards the camera","template":"Moving [something] towards the camera","placeholders":["soft drink can"]}, +{"id":"147142","label":"turning the camera upwards while filming something","template":"Turning the camera upwards while filming [something]","placeholders":["something"]}, +{"id":"158269","label":"turning the camera upwards while filming tv","template":"Turning the camera upwards while filming [something]","placeholders":["tv"]}, +{"id":"19374","label":"covering scissors with paper","template":"Covering [something] with [something]","placeholders":["scissors","paper"]}, +{"id":"194240","label":"showing scrub pad to the camera","template":"Showing [something] to the camera","placeholders":["scrub pad"]}, +{"id":"110623","label":"piling small bottles up","template":"Piling [something] up","placeholders":["small bottles"]}, +{"id":"102857","label":"moving a block of paper up","template":"Moving [something] up","placeholders":["a block of paper"]}, +{"id":"188928","label":"moving tip of hat","template":"Moving [part] of [something]","placeholders":["tip","hat"]}, +{"id":"819","label":"folding newspaper","template":"Folding [something]","placeholders":["newspaper"]}, +{"id":"64825","label":"tilting envelope with pen on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["envelope","pen"]}, +{"id":"102026","label":"turning the camera right while filming sign post","template":"Turning the camera right while filming [something]","placeholders":["sign post"]}, +{"id":"105503","label":"opening a beer botle","template":"Opening [something]","placeholders":["a beer botle"]}, +{"id":"53648","label":"lifting bottle with paper on it","template":"Lifting [something] with [something] on it","placeholders":["bottle","paper"]}, +{"id":"135139","label":"holding ball over head","template":"Holding [something] over [something]","placeholders":["ball","head"]}, +{"id":"168163","label":"taking sharpener out of tumbler","template":"Taking [something] out of [something]","placeholders":["sharpener","tumbler"]}, +{"id":"159040","label":"putting phone underneath camera","template":"Putting [something] underneath [something]","placeholders":["phone","camera"]}, +{"id":"135318","label":"pretending or trying and failing to twist a top on a bottle of water.","template":"Pretending or trying and failing to twist [something]","placeholders":["a top on a bottle of water."]}, +{"id":"14279","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"10559","label":"putting orange colour bottle cap onto black wallet","template":"Putting [something] onto [something]","placeholders":["orange colour bottle cap","black wallet"]}, +{"id":"5139","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"128531","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"100663","label":"pretending to put mug on a surface","template":"Pretending to put [something] on a surface","placeholders":["mug"]}, +{"id":"82203","label":"unfolding floormat","template":"Unfolding [something]","placeholders":["floormat"]}, +{"id":"211304","label":"poking bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["bottle"]}, +{"id":"74057","label":"pushing glass onto astray","template":"Pushing [something] onto [something]","placeholders":["glass","astray"]}, +{"id":"21964","label":"pretending to put a coin behind a glue bottle","template":"Pretending to put [something] behind [something]","placeholders":["a coin","a glue bottle"]}, +{"id":"164646","label":"holding tape","template":"Holding [something]","placeholders":["tape"]}, +{"id":"91308","label":"turning the camera left while filming monitor","template":"Turning the camera left while filming [something]","placeholders":["monitor"]}, +{"id":"148122","label":"squeezing a teddy bear","template":"Squeezing [something]","placeholders":["a teddy bear"]}, +{"id":"138918","label":"putting comb upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["comb"]}, +{"id":"169802","label":"pushing a coin with a box","template":"Pushing [something] with [something]","placeholders":["a coin","a box"]}, +{"id":"70601","label":"covering spoon with paper towel","template":"Covering [something] with [something]","placeholders":["spoon","paper towel"]}, +{"id":"39294","label":"showing pen on top of box","template":"Showing [something] on top of [something]","placeholders":["pen","box"]}, +{"id":"172977","label":"pulling wristwatch from left to right","template":"Pulling [something] from left to right","placeholders":["wristwatch"]}, +{"id":"93164","label":"pulling jug from right to left","template":"Pulling [something] from right to left","placeholders":["jug"]}, +{"id":"113630","label":"attaching charger to socket","template":"Attaching [something] to [something]","placeholders":["charger","socket"]}, +{"id":"22830","label":"clip colliding with clip and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["clip","clip"]}, +{"id":"198107","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"95937","label":"dropping potato into bowl","template":"Dropping [something] into [something]","placeholders":["potato","bowl"]}, +{"id":"184073","label":"holding hair clip over box","template":"Holding [something] over [something]","placeholders":["hair clip","box"]}, +{"id":"134098","label":"moving pen and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","marker"]}, +{"id":"20539","label":"poking a hole into clay","template":"Poking a hole into [some substance]","placeholders":["clay"]}, +{"id":"99508","label":"opening refrigerator","template":"Opening [something]","placeholders":["refrigerator"]}, +{"id":"192846","label":"showing that coffee mug is empty","template":"Showing that [something] is empty","placeholders":["coffee mug"]}, +{"id":"219464","label":"taking diaper","template":"Taking [one of many similar things on the table]","placeholders":["diaper"]}, +{"id":"76090","label":"spinning a pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pen"]}, +{"id":"164364","label":"ball falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["ball"]}, +{"id":"103279","label":"dropping rubix cube into a pillow","template":"Dropping [something] into [something]","placeholders":["rubix cube","a pillow"]}, +{"id":"89735","label":"pushing key with pen","template":"Pushing [something] with [something]","placeholders":["key","pen"]}, +{"id":"58444","label":"putting coin on a surface","template":"Putting [something] on a surface","placeholders":["coin"]}, +{"id":"203444","label":"holding a fidget spinner","template":"Holding [something]","placeholders":["a fidget spinner"]}, +{"id":"102969","label":"letting chopstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["chopstick"]}, +{"id":"167575","label":"moving spoon and stapler closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["spoon","stapler"]}, +{"id":"209628","label":"pushing remote so it spins","template":"Pushing [something] so it spins","placeholders":["remote"]}, +{"id":"196559","label":"putting phone onto charger","template":"Putting [something] onto [something]","placeholders":["phone","charger"]}, +{"id":"124156","label":"putting button on a surface","template":"Putting [something] on a surface","placeholders":["button"]}, +{"id":"195014","label":"holding book in front of calculator","template":"Holding [something] in front of [something]","placeholders":["book","calculator"]}, +{"id":"107013","label":"turning a plastic pot upside down","template":"Turning [something] upside down","placeholders":["a plastic pot"]}, +{"id":"119550","label":"tipping block tower over","template":"Tipping [something] over","placeholders":["block tower"]}, +{"id":"14157","label":"pretending to pick yellow chalk up","template":"Pretending to pick [something] up","placeholders":["yellow chalk"]}, +{"id":"128360","label":"pretending to put pebble underneath glass","template":"Pretending to put [something] underneath [something]","placeholders":["pebble","glass"]}, +{"id":"142117","label":"showing shoe behind flower","template":"Showing [something] behind [something]","placeholders":["shoe","flower"]}, +{"id":"77839","label":"dropping tape next to scissors","template":"Dropping [something] next to [something]","placeholders":["tape","scissors"]}, +{"id":"38565","label":"plugging an electrical cord into an electrical extension","template":"Plugging [something] into [something]","placeholders":["an electrical cord","an electrical extension"]}, +{"id":"23645","label":"throwing scissor","template":"Throwing [something]","placeholders":["scissor"]}, +{"id":"171368","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"183380","label":"putting chopping board on a surface","template":"Putting [something] on a surface","placeholders":["chopping board"]}, +{"id":"45604","label":"turning the camera left while filming car","template":"Turning the camera left while filming [something]","placeholders":["car"]}, +{"id":"131253","label":"showing ladies watches to the camera","template":"Showing [something] to the camera","placeholders":["ladies watches"]}, +{"id":"83151","label":"moving motorbike away from the camera","template":"Moving [something] away from the camera","placeholders":["motorbike"]}, +{"id":"200269","label":"putting box that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["box"]}, +{"id":"2060","label":"pushing punching machine so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["punching machine"]}, +{"id":"123974","label":"taking marker pen out of spectacle box","template":"Taking [something] out of [something]","placeholders":["marker pen","spectacle box"]}, +{"id":"42154","label":"plugging rca plug into laptop","template":"Plugging [something] into [something]","placeholders":["rca plug","laptop"]}, +{"id":"197136","label":"taking something out of something","template":"Taking [something] out of [something]","placeholders":["something","something"]}, +{"id":"112948","label":"turning the camera left while filming balloons","template":"Turning the camera left while filming [something]","placeholders":["balloons"]}, +{"id":"68038","label":"plugging dryer into plug","template":"Plugging [something] into [something]","placeholders":["dryer","plug"]}, +{"id":"191061","label":"poking a stack of jar without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["jar"]}, +{"id":"122623","label":"pushing coin from left to right","template":"Pushing [something] from left to right","placeholders":["coin"]}, +{"id":"9019","label":"unfolding duppatta","template":"Unfolding [something]","placeholders":["duppatta"]}, +{"id":"57803","label":"pouring juice into a cup","template":"Pouring [something] into [something]","placeholders":["juice","a cup"]}, +{"id":"187925","label":"pretending or failing to wipe eraser off of notebook","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["eraser","notebook"]}, +{"id":"163254","label":"game piece falling like a rock","template":"[Something] falling like a rock","placeholders":["game piece"]}, +{"id":"160769","label":"putting a comb into glass mug","template":"Putting [something] into [something]","placeholders":["a comb","glass mug"]}, +{"id":"116270","label":"pushing controller from left to right","template":"Pushing [something] from left to right","placeholders":["controller"]}, +{"id":"39499","label":"opening drawer","template":"Opening [something]","placeholders":["drawer"]}, +{"id":"1323","label":"putting coins into the bag","template":"Putting [something] into [something]","placeholders":["coins","the bag"]}, +{"id":"203154","label":"opening bag","template":"Opening [something]","placeholders":["bag"]}, +{"id":"181563","label":"letting glass roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["glass"]}, +{"id":"56676","label":"covering garlic with cloth","template":"Covering [something] with [something]","placeholders":["garlic","cloth"]}, +{"id":"134550","label":"dropping handkerchief next to pillow","template":"Dropping [something] next to [something]","placeholders":["handkerchief","pillow"]}, +{"id":"206211","label":"a sticky note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a sticky note"]}, +{"id":"64592","label":"taking matchbox","template":"Taking [one of many similar things on the table]","placeholders":["matchbox"]}, +{"id":"203000","label":"moving fork and fork closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","fork"]}, +{"id":"110413","label":"pushing paper off of a desk","template":"Pushing [something] off of [something]","placeholders":["paper","a desk"]}, +{"id":"218711","label":"pushing cup from left to right","template":"Pushing [something] from left to right","placeholders":["cup"]}, +{"id":"122017","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"56644","label":"showing that candy is inside a cup","template":"Showing that [something] is inside [something]","placeholders":["candy","a cup"]}, +{"id":"151114","label":"putting doll upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["doll"]}, +{"id":"188499","label":"lifting pillow up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pillow"]}, +{"id":"179308","label":"holding tablet in front of laptop","template":"Holding [something] in front of [something]","placeholders":["tablet","laptop"]}, +{"id":"53236","label":"pretending to be tearing jacket","template":"Pretending to be tearing [something that is not tearable]","placeholders":["jacket"]}, +{"id":"35212","label":"pretending to put dvd case on a surface","template":"Pretending to put [something] on a surface","placeholders":["dvd case"]}, +{"id":"3040","label":"moving salt and pepper closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["salt","pepper"]}, +{"id":"16849","label":"moving apple and apple away from each other","template":"Moving [something] and [something] away from each other","placeholders":["apple","apple"]}, +{"id":"82227","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"68860","label":"pushing mouse so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["mouse"]}, +{"id":"192836","label":"tilting brown note with magnifying glass on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["brown note","magnifying glass"]}, +{"id":"28039","label":"lifting up one end of shoe, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["shoe"]}, +{"id":"167531","label":"pretending to poke a water bottle","template":"Pretending to poke [something]","placeholders":["a water bottle"]}, +{"id":"171255","label":"uncovering glass","template":"Uncovering [something]","placeholders":["glass"]}, +{"id":"104855","label":"opening plastic container","template":"Opening [something]","placeholders":["plastic container"]}, +{"id":"52542","label":"pushing water bottle so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["water bottle"]}, +{"id":"62283","label":"moving usb flash drive away from cover","template":"Moving [something] away from [something]","placeholders":["usb flash drive","cover"]}, +{"id":"4274","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"8359","label":"pretending to turn candle upside down","template":"Pretending to turn [something] upside down","placeholders":["candle"]}, +{"id":"166007","label":"pretending to open jewellry box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jewellry box"]}, +{"id":"131162","label":"pushing a knife so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a knife"]}, +{"id":"100142","label":"putting a book upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a book"]}, +{"id":"7192","label":"removing a can, revealing an eraser behind","template":"Removing [something], revealing [something] behind","placeholders":["a can","an eraser"]}, +{"id":"218112","label":"turning salsa upside down","template":"Turning [something] upside down","placeholders":["salsa"]}, +{"id":"96603","label":"pushing striker coin with battery","template":"Pushing [something] with [something]","placeholders":["striker coin","battery"]}, +{"id":"121989","label":"turning the camera upwards while filming hair comb","template":"Turning the camera upwards while filming [something]","placeholders":["hair comb"]}, +{"id":"116035","label":"pulling duster from right to left","template":"Pulling [something] from right to left","placeholders":["duster"]}, +{"id":"202500","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"53667","label":"moving power bank up","template":"Moving [something] up","placeholders":["power bank"]}, +{"id":"209202","label":"spilling water next to a wallet","template":"Spilling [something] next to [something]","placeholders":["water","a wallet"]}, +{"id":"186295","label":"putting tape onto box surface","template":"Putting [something] onto [something]","placeholders":["tape","box surface"]}, +{"id":"104951","label":"pushing a tissue box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a tissue box"]}, +{"id":"187014","label":"spinning hair brush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["hair brush"]}, +{"id":"115156","label":"spinning spinning on the ground so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["spinning on the ground"]}, +{"id":"201999","label":"pretending to put book behind bottle","template":"Pretending to put [something] behind [something]","placeholders":["book","bottle"]}, +{"id":"69527","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"43664","label":"dropping toothbrush into container","template":"Dropping [something] into [something]","placeholders":["toothbrush","container"]}, +{"id":"2350","label":"pushing lighter off of bottle","template":"Pushing [something] off of [something]","placeholders":["lighter","bottle"]}, +{"id":"129803","label":"holding a pen behind lcd of laptop","template":"Holding [something] behind [something]","placeholders":["a pen","lcd of laptop"]}, +{"id":"58966","label":"holding a hairbrush next to a cell phone","template":"Holding [something] next to [something]","placeholders":["a hairbrush","a cell phone"]}, +{"id":"160637","label":"pretending to turn mug upside down","template":"Pretending to turn [something] upside down","placeholders":["mug"]}, +{"id":"42850","label":"moving sandal away from the camera","template":"Moving [something] away from the camera","placeholders":["sandal"]}, +{"id":"42129","label":"dropping candy into box","template":"Dropping [something] into [something]","placeholders":["candy","box"]}, +{"id":"180465","label":"throwing tissues onto a surface","template":"Throwing [something] onto a surface","placeholders":["tissues"]}, +{"id":"69469","label":"moving duster away from punching machine","template":"Moving [something] away from [something]","placeholders":["duster","punching machine"]}, +{"id":"25945","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"210843","label":"pushing mouse so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["mouse"]}, +{"id":"32915","label":"moving pebble closer to magnifying glass","template":"Moving [something] closer to [something]","placeholders":["pebble","magnifying glass"]}, +{"id":"185283","label":"unfolding a rag","template":"Unfolding [something]","placeholders":["a rag"]}, +{"id":"90775","label":"pushing a remote so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a remote"]}, +{"id":"55758","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"22456","label":"holding mouse behind wallet","template":"Holding [something] behind [something]","placeholders":["mouse","wallet"]}, +{"id":"33231","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"173550","label":"turning a coffee mug upside down","template":"Turning [something] upside down","placeholders":["a coffee mug"]}, +{"id":"60417","label":"dropping box into trash can","template":"Dropping [something] into [something]","placeholders":["box","trash can"]}, +{"id":"5873","label":"uncovering dog","template":"Uncovering [something]","placeholders":["dog"]}, +{"id":"40878","label":"pretending to turn granola bar upside down","template":"Pretending to turn [something] upside down","placeholders":["granola bar"]}, +{"id":"3030","label":"plugging charger into phone","template":"Plugging [something] into [something]","placeholders":["charger","phone"]}, +{"id":"161085","label":"putting toy next to spectical box","template":"Putting [something] next to [something]","placeholders":["toy","spectical box"]}, +{"id":"92502","label":"moving bolt up","template":"Moving [something] up","placeholders":["bolt"]}, +{"id":"47144","label":"turning the camera right while filming sandal","template":"Turning the camera right while filming [something]","placeholders":["sandal"]}, +{"id":"124734","label":"moving paper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["paper"]}, +{"id":"198738","label":"sheet of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sheet of paper"]}, +{"id":"87449","label":"putting 2 pens onto a cup","template":"Putting [number of] [something] onto [something]","placeholders":["2","pens","a cup"]}, +{"id":"122853","label":"putting fan next to sandals","template":"Putting [something] next to [something]","placeholders":["fan","sandals"]}, +{"id":"162638","label":"covering a paperclip with a piece of paper","template":"Covering [something] with [something]","placeholders":["a paperclip","a piece of paper"]}, +{"id":"185520","label":"uncovering a box of pins","template":"Uncovering [something]","placeholders":["a box of pins"]}, +{"id":"195845","label":"pulling two ends of a spectacles but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["a spectacles"]}, +{"id":"124894","label":"moving coin down","template":"Moving [something] down","placeholders":["coin"]}, +{"id":"23507","label":"dropping a tape onto a plank of wood","template":"Dropping [something] onto [something]","placeholders":["a tape","a plank of wood"]}, +{"id":"38381","label":"taking vitamin out of bottle","template":"Taking [something] out of [something]","placeholders":["vitamin","bottle"]}, +{"id":"171915","label":"showing a cigarette lighter behind a coffee can","template":"Showing [something] behind [something]","placeholders":["a cigarette lighter","a coffee can"]}, +{"id":"19416","label":"pushing bottle cap with remote","template":"Pushing [something] with [something]","placeholders":["bottle cap","remote"]}, +{"id":"199390","label":"moving away from chair with your camera","template":"Moving away from [something] with your camera","placeholders":["chair"]}, +{"id":"22922","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"149825","label":"pretending to sprinkle air onto photo-frame","template":"Pretending to sprinkle air onto [something]","placeholders":["photo-frame"]}, +{"id":"129649","label":"double-sided adhesive tape falling like a rock","template":"[Something] falling like a rock","placeholders":["double-sided adhesive tape"]}, +{"id":"172947","label":"lifting suitcase up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["suitcase"]}, +{"id":"57246","label":"moving bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bottle"]}, +{"id":"64851","label":"putting marking pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["marking pen"]}, +{"id":"99247","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"81466","label":"holding a book behind a cup","template":"Holding [something] behind [something]","placeholders":["a book","a cup"]}, +{"id":"120743","label":"lifting up one end of a rag, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a rag"]}, +{"id":"3215","label":"trying to pour water into bucket, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["water","bucket"]}, +{"id":"88615","label":"putting 2 hair clips onto blue note","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair clips","blue note"]}, +{"id":"80446","label":"attaching magnet to fridge","template":"Attaching [something] to [something]","placeholders":["magnet","fridge"]}, +{"id":"178983","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"65502","label":"throwing wooden puppet","template":"Throwing [something]","placeholders":["wooden puppet"]}, +{"id":"57027","label":"pretending to squeeze weight","template":"Pretending to squeeze [something]","placeholders":["weight"]}, +{"id":"82624","label":"orange falling like a rock","template":"[Something] falling like a rock","placeholders":["orange"]}, +{"id":"178224","label":"moving a cup and a cup so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a cup","a cup"]}, +{"id":"111919","label":"holding a cup next to pillows","template":"Holding [something] next to [something]","placeholders":["a cup","pillows"]}, +{"id":"151541","label":"closing door","template":"Closing [something]","placeholders":["door"]}, +{"id":"206958","label":"laying a bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a bottle"]}, +{"id":"118177","label":"poking cover so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cover"]}, +{"id":"128234","label":"air hockey puck colliding with air hockey puck and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["air hockey puck","air hockey puck"]}, +{"id":"169776","label":"pulling mobile from behind of laptop","template":"Pulling [something] from behind of [something]","placeholders":["mobile","laptop"]}, +{"id":"34792","label":"pulling towel from left to right","template":"Pulling [something] from left to right","placeholders":["towel"]}, +{"id":"187898","label":"pretending to put black remote on a surface","template":"Pretending to put [something] on a surface","placeholders":["black remote"]}, +{"id":"60452","label":"holding bottle over chair","template":"Holding [something] over [something]","placeholders":["bottle","chair"]}, +{"id":"104869","label":"moving toy up","template":"Moving [something] up","placeholders":["toy"]}, +{"id":"22657","label":"poking padlock so that it falls over","template":"Poking [something] so that it falls over","placeholders":["padlock"]}, +{"id":"76721","label":"taking fruit out of bowl","template":"Taking [something] out of [something]","placeholders":["fruit","bowl"]}, +{"id":"72455","label":"tipping book over","template":"Tipping [something] over","placeholders":["book"]}, +{"id":"107145","label":"pretending to put glasses on a surface","template":"Pretending to put [something] on a surface","placeholders":["glasses"]}, +{"id":"171474","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"32433","label":"pretending or failing to wipe ink off of whiteboard","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","whiteboard"]}, +{"id":"118879","label":"putting cream on a surface","template":"Putting [something] on a surface","placeholders":["cream"]}, +{"id":"133862","label":"turning the camera upwards while filming small green ball","template":"Turning the camera upwards while filming [something]","placeholders":["small green ball"]}, +{"id":"158651","label":"letting ball roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["ball"]}, +{"id":"71176","label":"pulling zipper from right to left","template":"Pulling [something] from right to left","placeholders":["zipper"]}, +{"id":"192597","label":"putting cups on a table","template":"Putting [something similar to other things that are already on the table]","placeholders":["cups on a table"]}, +{"id":"94355","label":"putting a deodorant","template":"Putting [something similar to other things that are already on the table]","placeholders":["a deodorant"]}, +{"id":"27474","label":"putting a pen drive, a lipstick and a lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pen drive","a lipstick","a lighter"]}, +{"id":"129458","label":"pulling a towel from behind of napkin holder","template":"Pulling [something] from behind of [something]","placeholders":["a towel","napkin holder"]}, +{"id":"199113","label":"putting plastic cap into glass","template":"Putting [something] into [something]","placeholders":["plastic cap","glass"]}, +{"id":"86299","label":"digging plastic round out of sand","template":"Digging [something] out of [something]","placeholders":["plastic round","sand"]}, +{"id":"143727","label":"moving phone and xbox game away from each other","template":"Moving [something] and [something] away from each other","placeholders":["phone","xbox game"]}, +{"id":"178201","label":"pushing a shoe onto corner","template":"Pushing [something] onto [something]","placeholders":["a shoe","corner"]}, +{"id":"72009","label":"taking fork","template":"Taking [one of many similar things on the table]","placeholders":["fork"]}, +{"id":"94463","label":"twisting newspaper","template":"Twisting [something]","placeholders":["newspaper"]}, +{"id":"195323","label":"poking a deodorant bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a deodorant bottle"]}, +{"id":"55493","label":"approaching prown fishes with your camera","template":"Approaching [something] with your camera","placeholders":["prown fishes"]}, +{"id":"137269","label":"bending a pen until it breaks","template":"Bending [something] until it breaks","placeholders":["a pen"]}, +{"id":"92000","label":"covering an apple with a handkerchief","template":"Covering [something] with [something]","placeholders":["an apple","a handkerchief"]}, +{"id":"206871","label":"trying but failing to attach charger to socket because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["charger","socket"]}, +{"id":"52540","label":"putting wallet on the edge of desk so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["wallet","desk"]}, +{"id":"44356","label":"holding a padlock over a box","template":"Holding [something] over [something]","placeholders":["a padlock","a box"]}, +{"id":"152971","label":"letting a kid filled tire roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a kid filled tire"]}, +{"id":"124199","label":"pulling drawer out of carousel box","template":"Pulling [something] out of [something]","placeholders":["drawer","carousel box"]}, +{"id":"110169","label":"putting a bottle on a surface","template":"Putting [something] on a surface","placeholders":["a bottle"]}, +{"id":"123936","label":"poking a bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a bottle"]}, +{"id":"151776","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"172486","label":"pretending to turn a bowl upside down","template":"Pretending to turn [something] upside down","placeholders":["a bowl"]}, +{"id":"207618","label":"tearing sheet just a little bit","template":"Tearing [something] just a little bit","placeholders":["sheet"]}, +{"id":"132859","label":"pretending to take a towel from hanger","template":"Pretending to take [something] from [somewhere]","placeholders":["a towel","hanger"]}, +{"id":"88272","label":"spreading white kerchief onto cutting plier","template":"Spreading [something] onto [something]","placeholders":["white kerchief","cutting plier"]}, +{"id":"60718","label":"moving perfume bottle and wax jar closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["perfume bottle","wax jar"]}, +{"id":"95562","label":"moving away from car with your camera","template":"Moving away from [something] with your camera","placeholders":["car"]}, +{"id":"152676","label":"turning pan upside down","template":"Turning [something] upside down","placeholders":["pan"]}, +{"id":"153468","label":"picking remote control up","template":"Picking [something] up","placeholders":["remote control"]}, +{"id":"173384","label":"moving away from tea box with your camera","template":"Moving away from [something] with your camera","placeholders":["tea box"]}, +{"id":"29995","label":"sprinkling sugar onto a book","template":"Sprinkling [something] onto [something]","placeholders":["sugar","a book"]}, +{"id":"66226","label":"lifting a box with an other box on it","template":"Lifting [something] with [something] on it","placeholders":["a box","an other box"]}, +{"id":"44131","label":"tilting deodorant can with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["deodorant can","pen"]}, +{"id":"159222","label":"pretending to be tearing towel","template":"Pretending to be tearing [something that is not tearable]","placeholders":["towel"]}, +{"id":"83954","label":"trying but failing to attach magnet to stove because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["magnet","stove"]}, +{"id":"83243","label":"squeezing soft cotton cloth","template":"Squeezing [something]","placeholders":["soft cotton cloth"]}, +{"id":"18781","label":"covering dvd disk with dvd cover","template":"Covering [something] with [something]","placeholders":["dvd disk","dvd cover"]}, +{"id":"159317","label":"moving a keyset towards the camera","template":"Moving [something] towards the camera","placeholders":["a keyset"]}, +{"id":"39298","label":"trying to bend metal pin so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["metal pin"]}, +{"id":"9684","label":"opening the box","template":"Opening [something]","placeholders":["the box"]}, +{"id":"177183","label":"plugging moblie charger into socket","template":"Plugging [something] into [something]","placeholders":["moblie charger","socket"]}, +{"id":"190214","label":"covering cans with a napkin","template":"Covering [something] with [something]","placeholders":["cans","a napkin"]}, +{"id":"191977","label":"pretending to take piece of paper from inside a box","template":"Pretending to take [something] from [somewhere]","placeholders":["piece of paper","inside a box"]}, +{"id":"185013","label":"showing a half lemon on top of a tea box","template":"Showing [something] on top of [something]","placeholders":["a half lemon","a tea box"]}, +{"id":"50067","label":"plugging electrical plug into an outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["electrical plug","an outlet"]}, +{"id":"51288","label":"tearing pomegranate peel into two pieces","template":"Tearing [something] into two pieces","placeholders":["pomegranate peel"]}, +{"id":"195149","label":"putting plate that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["plate"]}, +{"id":"189302","label":"bending gift card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["gift card"]}, +{"id":"214386","label":"moving mobile and other mobile phone closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["mobile","other mobile phone"]}, +{"id":"54238","label":"putting a purse on the edge of the table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a purse","the table"]}, +{"id":"137299","label":"sprinkling ground cinnamon onto peanut butter bread","template":"Sprinkling [something] onto [something]","placeholders":["ground cinnamon","peanut butter bread"]}, +{"id":"190123","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"98322","label":"putting a book, a candle and a lighter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a book","a candle","a lighter"]}, +{"id":"177935","label":"moving a pen and a pair of sunglasses closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a pen","a pair of sunglasses"]}, +{"id":"92081","label":"pushing a chewingum box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a chewingum box"]}, +{"id":"15326","label":"scooping powder up with spoon","template":"Scooping [something] up with [something]","placeholders":["powder","spoon"]}, +{"id":"68743","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"11120","label":"throwing wooden puppet onto a surface","template":"Throwing [something] onto a surface","placeholders":["wooden puppet"]}, +{"id":"191793","label":"moving toy lion and toy pig closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["toy lion","toy pig"]}, +{"id":"149944","label":"holding vape in front of computer","template":"Holding [something] in front of [something]","placeholders":["vape","computer"]}, +{"id":"191139","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"193087","label":"putting a ring into a ceramic container","template":"Putting [something] into [something]","placeholders":["a ring","a ceramic container"]}, +{"id":"192351","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"65576","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"22311","label":"showing sea to the camera","template":"Showing [something] to the camera","placeholders":["sea"]}, +{"id":"195248","label":"pretending to spread air onto arm","template":"Pretending to spread air onto [something]","placeholders":["arm"]}, +{"id":"173008","label":"dropping a peg onto a box","template":"Dropping [something] onto [something]","placeholders":["a peg","a box"]}, +{"id":"200033","label":"squeezing mustard container","template":"Squeezing [something]","placeholders":["mustard container"]}, +{"id":"30728","label":"putting bottle and pen on the table","template":"Putting [something] and [something] on the table","placeholders":["bottle","pen"]}, +{"id":"164262","label":"laying tablet box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["tablet box"]}, +{"id":"40234","label":"trying to bend an electric razor so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["an electric razor"]}, +{"id":"164961","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"206570","label":"turning postcard upside down","template":"Turning [something] upside down","placeholders":["postcard"]}, +{"id":"102909","label":"showing chair next to car","template":"Showing [something] next to [something]","placeholders":["chair","car"]}, +{"id":"206935","label":"covering bag with sheet","template":"Covering [something] with [something]","placeholders":["bag","sheet"]}, +{"id":"4133","label":"showing bird to the camera","template":"Showing [something] to the camera","placeholders":["bird"]}, +{"id":"91838","label":"showing waste basket to the camera","template":"Showing [something] to the camera","placeholders":["waste basket"]}, +{"id":"157042","label":"hitting something with something","template":"Hitting [something] with [something]","placeholders":["something","something"]}, +{"id":"122241","label":"pushing red colour clip box from left to right","template":"Pushing [something] from left to right","placeholders":["red colour clip box"]}, +{"id":"161990","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"118801","label":"putting computer mouse on a surface","template":"Putting [something] on a surface","placeholders":["computer mouse"]}, +{"id":"72939","label":"stamp falling like a rock","template":"[Something] falling like a rock","placeholders":["stamp"]}, +{"id":"149115","label":"bending a feather until it breaks","template":"Bending [something] until it breaks","placeholders":["a feather"]}, +{"id":"100134","label":"poking laptop so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["laptop"]}, +{"id":"200051","label":"showing bottle behind block","template":"Showing [something] behind [something]","placeholders":["bottle","block"]}, +{"id":"21992","label":"turning the camera downwards while filming light","template":"Turning the camera downwards while filming [something]","placeholders":["light"]}, +{"id":"215803","label":"putting pen, bottle and cup on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","bottle","cup"]}, +{"id":"213685","label":"twisting bottle cap","template":"Twisting [something]","placeholders":["bottle cap"]}, +{"id":"118508","label":"uncovering a vase","template":"Uncovering [something]","placeholders":["a vase"]}, +{"id":"213902","label":"opening file","template":"Opening [something]","placeholders":["file"]}, +{"id":"34417","label":"moving a scotch roll and a scotch roll so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a scotch roll","a scotch roll"]}, +{"id":"188681","label":"lifting spoon with coin on it","template":"Lifting [something] with [something] on it","placeholders":["spoon","coin"]}, +{"id":"97704","label":"pretending to open hair gel bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["hair gel bottle"]}, +{"id":"218607","label":"pretending to pour horlicks out of its container, but container is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["horlicks","its container","container"]}, +{"id":"100422","label":"holding sachet of coffee","template":"Holding [something]","placeholders":["sachet of coffee"]}, +{"id":"37638","label":"putting colorful scarf on a surface","template":"Putting [something] on a surface","placeholders":["colorful scarf"]}, +{"id":"113337","label":"covering phone with wallet","template":"Covering [something] with [something]","placeholders":["phone","wallet"]}, +{"id":"190006","label":"pushing something with something","template":"Pushing [something] with [something]","placeholders":["something","something"]}, +{"id":"45713","label":"scooping peanut butter up with spoon","template":"Scooping [something] up with [something]","placeholders":["peanut butter","spoon"]}, +{"id":"70210","label":"putting an envelope underneath a cup","template":"Putting [something] underneath [something]","placeholders":["an envelope","a cup"]}, +{"id":"204278","label":"pretending to open pill bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pill bottle"]}, +{"id":"198293","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"101834","label":"holding a wallet","template":"Holding [something]","placeholders":["a wallet"]}, +{"id":"194462","label":"turning granola bar upside down","template":"Turning [something] upside down","placeholders":["granola bar"]}, +{"id":"33762","label":"moving a salt grinder closer to a cup","template":"Moving [something] closer to [something]","placeholders":["a salt grinder","a cup"]}, +{"id":"67943","label":"moving a water bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a water bottle"]}, +{"id":"206713","label":"hand colliding with hand and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["hand","hand"]}, +{"id":"28259","label":"moving violin closer to pillow","template":"Moving [something] closer to [something]","placeholders":["violin","pillow"]}, +{"id":"87865","label":"taking the phone out of the box","template":"Taking [something] out of [something]","placeholders":["the phone","the box"]}, +{"id":"175061","label":"pretending to pick pencil up","template":"Pretending to pick [something] up","placeholders":["pencil"]}, +{"id":"95686","label":"tipping thermal cup over","template":"Tipping [something] over","placeholders":["thermal cup"]}, +{"id":"93522","label":"rolling lemon on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon"]}, +{"id":"124688","label":"showing old mobile phone to the camera","template":"Showing [something] to the camera","placeholders":["old mobile phone"]}, +{"id":"186979","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"177118","label":"uncovering travel iron-box","template":"Uncovering [something]","placeholders":["travel iron-box"]}, +{"id":"74950","label":"showing pen holder to the camera","template":"Showing [something] to the camera","placeholders":["pen holder"]}, +{"id":"204955","label":"paper falling falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper falling"]}, +{"id":"29739","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"78602","label":"putting purple microfiber on a surface","template":"Putting [something] on a surface","placeholders":["purple microfiber"]}, +{"id":"134468","label":"sprinkling pepper onto pan","template":"Sprinkling [something] onto [something]","placeholders":["pepper","pan"]}, +{"id":"23512","label":"pushing a bottle from left to right","template":"Pushing [something] from left to right","placeholders":["a bottle"]}, +{"id":"23301","label":"a peanut falling like a rock","template":"[Something] falling like a rock","placeholders":["a peanut"]}, +{"id":"93351","label":"letting superball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["superball"]}, +{"id":"157520","label":"lifting paper with pen on it","template":"Lifting [something] with [something] on it","placeholders":["paper","pen"]}, +{"id":"82742","label":"moving perfume bottle and toy closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["perfume bottle","toy"]}, +{"id":"7604","label":"pretending to be tearing a paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a paper"]}, +{"id":"42929","label":"tipping spice over","template":"Tipping [something] over","placeholders":["spice"]}, +{"id":"162576","label":"showing spoon behind a mug","template":"Showing [something] behind [something]","placeholders":["spoon","a mug"]}, +{"id":"155021","label":"dropping game in front of paper","template":"Dropping [something] in front of [something]","placeholders":["game","paper"]}, +{"id":"99830","label":"pulling mouse from left to right","template":"Pulling [something] from left to right","placeholders":["mouse"]}, +{"id":"41303","label":"moving pliers closer to a key","template":"Moving [something] closer to [something]","placeholders":["pliers","a key"]}, +{"id":"46973","label":"moving a cutting board across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["a cutting board"]}, +{"id":"41267","label":"putting paper in front of orange","template":"Putting [something] in front of [something]","placeholders":["paper","orange"]}, +{"id":"216661","label":"dropping a towel onto the table","template":"Dropping [something] onto [something]","placeholders":["a towel","the table"]}, +{"id":"54132","label":"dropping toothbrush behind container","template":"Dropping [something] behind [something]","placeholders":["toothbrush","container"]}, +{"id":"124256","label":"showing that tumbler is empty","template":"Showing that [something] is empty","placeholders":["tumbler"]}, +{"id":"101774","label":"taking keys from box","template":"Taking [something] from [somewhere]","placeholders":["keys","box"]}, +{"id":"190352","label":"removing plate, revealing trivet behind","template":"Removing [something], revealing [something] behind","placeholders":["plate","trivet"]}, +{"id":"155802","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"207741","label":"lifting a notebook with a stapler on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a stapler"]}, +{"id":"173280","label":"poking blanket so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["blanket"]}, +{"id":"93742","label":"holding box over purse","template":"Holding [something] over [something]","placeholders":["box","purse"]}, +{"id":"13240","label":"folding towel","template":"Folding [something]","placeholders":["towel"]}, +{"id":"208362","label":"pouring water into a champagne glass","template":"Pouring [something] into [something]","placeholders":["water","a champagne glass"]}, +{"id":"103665","label":"pushing envelope box so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["envelope box"]}, +{"id":"183897","label":"putting a hollow pipe, that cannot stand upright upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a hollow pipe, that cannot stand upright"]}, +{"id":"96417","label":"pushing a coaster from right to left","template":"Pushing [something] from right to left","placeholders":["a coaster"]}, +{"id":"152632","label":"dropping water bottle onto desk","template":"Dropping [something] onto [something]","placeholders":["water bottle","desk"]}, +{"id":"43011","label":"letting toilet paper roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["toilet paper"]}, +{"id":"149187","label":"moving book away from pillow","template":"Moving [something] away from [something]","placeholders":["book","pillow"]}, +{"id":"200265","label":"pushing marker so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["marker"]}, +{"id":"65892","label":"a roll of tape falling like a rock","template":"[Something] falling like a rock","placeholders":["a roll of tape"]}, +{"id":"206542","label":"lifting up one end of box, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["box"]}, +{"id":"191338","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"96436","label":"moving pen and lego man closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","lego man"]}, +{"id":"44514","label":"plugging cord into socket","template":"Plugging [something] into [something]","placeholders":["cord","socket"]}, +{"id":"156116","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"205949","label":"folding pillowcase","template":"Folding [something]","placeholders":["pillowcase"]}, +{"id":"148210","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"2403","label":"squeezing plastic bottle","template":"Squeezing [something]","placeholders":["plastic bottle"]}, +{"id":"192667","label":"showing lipstick next to lighter","template":"Showing [something] next to [something]","placeholders":["lipstick","lighter"]}, +{"id":"191583","label":"plugging something into something","template":"Plugging [something] into [something]","placeholders":["something","something"]}, +{"id":"95194","label":"moving a book down","template":"Moving [something] down","placeholders":["a book"]}, +{"id":"110705","label":"putting a cotton pad that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a cotton pad"]}, +{"id":"48387","label":"pushing pen from left to right","template":"Pushing [something] from left to right","placeholders":["pen"]}, +{"id":"18186","label":"pretending to pour water out of bowl, but bowl is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bowl","bowl"]}, +{"id":"129187","label":"holding pen behind notebook","template":"Holding [something] behind [something]","placeholders":["pen","notebook"]}, +{"id":"126583","label":"turning the camera downwards while filming a laptop","template":"Turning the camera downwards while filming [something]","placeholders":["a laptop"]}, +{"id":"94947","label":"putting a napkin behind a pillow","template":"Putting [something] behind [something]","placeholders":["a napkin","a pillow"]}, +{"id":"47349","label":"putting a calendar in front of bottle","template":"Putting [something] in front of [something]","placeholders":["a calendar","bottle"]}, +{"id":"76336","label":"spinning an avocado that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["an avocado"]}, +{"id":"87568","label":"moving white chalk away from battery","template":"Moving [something] away from [something]","placeholders":["white chalk","battery"]}, +{"id":"214911","label":"trying to bend a phone so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a phone"]}, +{"id":"177664","label":"hole puncher falling like a rock","template":"[Something] falling like a rock","placeholders":["hole puncher"]}, +{"id":"82433","label":"covering toy with tin","template":"Covering [something] with [something]","placeholders":["toy","tin"]}, +{"id":"34349","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"88319","label":"putting toothbrush next to mug","template":"Putting [something] next to [something]","placeholders":["toothbrush","mug"]}, +{"id":"6920","label":"stacking 2 spectacle boxes","template":"Stacking [number of] [something]","placeholders":["2","spectacle boxes"]}, +{"id":"63061","label":"pushing a pen so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a pen"]}, +{"id":"174768","label":"pulling small book from right to left","template":"Pulling [something] from right to left","placeholders":["small book"]}, +{"id":"151940","label":"letting deodorant container roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["deodorant container"]}, +{"id":"200312","label":"lifting spoon up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["spoon"]}, +{"id":"143979","label":"putting a phone that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a phone"]}, +{"id":"65630","label":"closing mixer-jar","template":"Closing [something]","placeholders":["mixer-jar"]}, +{"id":"21313","label":"taking brushes","template":"Taking [one of many similar things on the table]","placeholders":["brushes"]}, +{"id":"148761","label":"pretending to open pretending to open something without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pretending to open something"]}, +{"id":"195151","label":"pretending to take cutting tool from countertop","template":"Pretending to take [something] from [somewhere]","placeholders":["cutting tool","countertop"]}, +{"id":"32943","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"188150","label":"holding scotch tape","template":"Holding [something]","placeholders":["scotch tape"]}, +{"id":"60896","label":"dropping remote onto pillow","template":"Dropping [something] onto [something]","placeholders":["remote","pillow"]}, +{"id":"193751","label":"showing that egg carton is empty","template":"Showing that [something] is empty","placeholders":["egg carton"]}, +{"id":"14397","label":"putting a coffee cup into a cupboard","template":"Putting [something] into [something]","placeholders":["a coffee cup","a cupboard"]}, +{"id":"182728","label":"putting box","template":"Putting [something similar to other things that are already on the table]","placeholders":["box"]}, +{"id":"195209","label":"holding a bottle over a mug","template":"Holding [something] over [something]","placeholders":["a bottle","a mug"]}, +{"id":"65027","label":"spinning a small paper box that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a small paper box"]}, +{"id":"205084","label":"showing nail polish on top of the box","template":"Showing [something] on top of [something]","placeholders":["nail polish","the box"]}, +{"id":"60867","label":"attaching block to block","template":"Attaching [something] to [something]","placeholders":["block","block"]}, +{"id":"41597","label":"turning shoe upside down","template":"Turning [something] upside down","placeholders":["shoe"]}, +{"id":"13099","label":"closing notebook","template":"Closing [something]","placeholders":["notebook"]}, +{"id":"127774","label":"turning the camera left while filming a vase with a plant","template":"Turning the camera left while filming [something]","placeholders":["a vase with a plant"]}, +{"id":"87165","label":"pulling pen out of notebook","template":"Pulling [something] out of [something]","placeholders":["pen","notebook"]}, +{"id":"18088","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"195702","label":"tilting a mug with paper towel on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a mug","paper towel"]}, +{"id":"65416","label":"spinning coin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["coin"]}, +{"id":"138192","label":"spinning a ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a ball"]}, +{"id":"196379","label":"pushing mouse from left to right","template":"Pushing [something] from left to right","placeholders":["mouse"]}, +{"id":"73738","label":"taking soap out of mug","template":"Taking [something] out of [something]","placeholders":["soap","mug"]}, +{"id":"189828","label":"putting a knife upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a knife"]}, +{"id":"139411","label":"poking stuffed animal so that it falls over","template":"Poking [something] so that it falls over","placeholders":["stuffed animal"]}, +{"id":"118259","label":"pretending to turn a santa statue upside down","template":"Pretending to turn [something] upside down","placeholders":["a santa statue"]}, +{"id":"15522","label":"putting a box and a charger on the table","template":"Putting [something] and [something] on the table","placeholders":["a box","a charger"]}, +{"id":"25377","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"23417","label":"pretending to turn cologne bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["cologne bottle"]}, +{"id":"196932","label":"letting paint spray can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["paint spray can"]}, +{"id":"108542","label":"pulling slipper onto carpet","template":"Pulling [something] onto [something]","placeholders":["slipper","carpet"]}, +{"id":"198417","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"198157","label":"stuffing white towel into wooden box","template":"Stuffing [something] into [something]","placeholders":["white towel","wooden box"]}, +{"id":"104885","label":"pushing a marker pen so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a marker pen"]}, +{"id":"158824","label":"dropping crayon into bowl","template":"Dropping [something] into [something]","placeholders":["crayon","bowl"]}, +{"id":"45500","label":"pouring water into a sink","template":"Pouring [something] into [something]","placeholders":["water","a sink"]}, +{"id":"61121","label":"moving charger up","template":"Moving [something] up","placeholders":["charger"]}, +{"id":"110241","label":"throwing a block in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a block"]}, +{"id":"93731","label":"pretending to be tearing plastic","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic"]}, +{"id":"204531","label":"pushing bin with remote","template":"Pushing [something] with [something]","placeholders":["bin","remote"]}, +{"id":"12227","label":"dropping pen into pot","template":"Dropping [something] into [something]","placeholders":["pen","pot"]}, +{"id":"201861","label":"putting spoon","template":"Putting [something similar to other things that are already on the table]","placeholders":["spoon"]}, +{"id":"126759","label":"lifting up one end of a book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a book"]}, +{"id":"185952","label":"pushing a shoe brush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a shoe brush"]}, +{"id":"163872","label":"moving away from plant with your camera","template":"Moving away from [something] with your camera","placeholders":["plant"]}, +{"id":"58815","label":"tearing leaf into two pieces","template":"Tearing [something] into two pieces","placeholders":["leaf"]}, +{"id":"99163","label":"stacking 3 puzzle pieces","template":"Stacking [number of] [something]","placeholders":["3","puzzle pieces"]}, +{"id":"178424","label":"folding a piece of paper","template":"Folding [something]","placeholders":["a piece of paper"]}, +{"id":"119715","label":"sprinkling baking soda onto a bowl","template":"Sprinkling [something] onto [something]","placeholders":["baking soda","a bowl"]}, +{"id":"43129","label":"spinning chair so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["chair"]}, +{"id":"144302","label":"moving pen and leadbox closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","leadbox"]}, +{"id":"42620","label":"putting measuring tape on a surface","template":"Putting [something] on a surface","placeholders":["measuring tape"]}, +{"id":"146449","label":"rolling talcum powder container on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["talcum powder container"]}, +{"id":"105458","label":"moving hat and wallet away from each other","template":"Moving [something] and [something] away from each other","placeholders":["hat","wallet"]}, +{"id":"143141","label":"tearing notecard into two pieces","template":"Tearing [something] into two pieces","placeholders":["notecard"]}, +{"id":"152819","label":"spinning a propeller so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a propeller"]}, +{"id":"217265","label":"taking selfie stick from floor","template":"Taking [something] from [somewhere]","placeholders":["selfie stick","floor"]}, +{"id":"199982","label":"holding a mug","template":"Holding [something]","placeholders":["a mug"]}, +{"id":"17366","label":"putting lighter behind candle","template":"Putting [something] behind [something]","placeholders":["lighter","candle"]}, +{"id":"154244","label":"piling matchboxes up","template":"Piling [something] up","placeholders":["matchboxes"]}, +{"id":"23513","label":"twisting blu tack","template":"Twisting [something]","placeholders":["blu tack"]}, +{"id":"88835","label":"poking a stack of coins so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["coins"]}, +{"id":"34886","label":"pretending to pick wiimote up","template":"Pretending to pick [something] up","placeholders":["wiimote"]}, +{"id":"134721","label":"turning shampoo upside down","template":"Turning [something] upside down","placeholders":["shampoo"]}, +{"id":"201134","label":"wiping water off of table","template":"Wiping [something] off of [something]","placeholders":["water","table"]}, +{"id":"49845","label":"uncovering milk","template":"Uncovering [something]","placeholders":["milk"]}, +{"id":"146512","label":"holding a remote","template":"Holding [something]","placeholders":["a remote"]}, +{"id":"135427","label":"pretending to put a pencil next to a notebook","template":"Pretending to put [something] next to [something]","placeholders":["a pencil","a notebook"]}, +{"id":"208537","label":"showing that nothing is inside small container","template":"Showing that [something] is inside [something]","placeholders":["nothing","small container"]}, +{"id":"25657","label":"pushing duster from left to right","template":"Pushing [something] from left to right","placeholders":["duster"]}, +{"id":"160129","label":"wiping milk off of a table","template":"Wiping [something] off of [something]","placeholders":["milk","a table"]}, +{"id":"195681","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"211352","label":"taking gift packs from a bag","template":"Taking [something] from [somewhere]","placeholders":["gift packs","a bag"]}, +{"id":"189290","label":"dropping matchbox in front of jar","template":"Dropping [something] in front of [something]","placeholders":["matchbox","jar"]}, +{"id":"1194","label":"pretending to put cd box on a surface","template":"Pretending to put [something] on a surface","placeholders":["cd box"]}, +{"id":"182518","label":"pretending or failing to wipe stain off of counter","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","counter"]}, +{"id":"85349","label":"lifting candy packaging up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["candy packaging"]}, +{"id":"159318","label":"pouring cereals into a glass container until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["cereals","a glass container"]}, +{"id":"4590","label":"spinning phone charger that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["phone charger"]}, +{"id":"161594","label":"spinning a pumpkin that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a pumpkin"]}, +{"id":"100091","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"174047","label":"approaching glass tumbler with your camera","template":"Approaching [something] with your camera","placeholders":["glass tumbler"]}, +{"id":"100379","label":"rolling scotch tape on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["scotch tape"]}, +{"id":"45905","label":"folding clothes","template":"Folding [something]","placeholders":["clothes"]}, +{"id":"203544","label":"pretending to open plastic jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["plastic jar"]}, +{"id":"118329","label":"throwing package of pads in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["package of pads"]}, +{"id":"43365","label":"turning the camera downwards while filming window view","template":"Turning the camera downwards while filming [something]","placeholders":["window view"]}, +{"id":"97581","label":"showing pliers next to screwdriver","template":"Showing [something] next to [something]","placeholders":["pliers","screwdriver"]}, +{"id":"43765","label":"stacking seven cookies","template":"Stacking [number of] [something]","placeholders":["seven","cookies"]}, +{"id":"52242","label":"plugging usb into laptop but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb","laptop"]}, +{"id":"235","label":"moving soda can and ketchup bottle so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["soda can","ketchup bottle"]}, +{"id":"103484","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"66335","label":"holding a remote next to a red ball","template":"Holding [something] next to [something]","placeholders":["a remote","a red ball"]}, +{"id":"60628","label":"putting a book, a container and a milk carton on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a book","a container","a milk carton"]}, +{"id":"109787","label":"shoe falling like a rock","template":"[Something] falling like a rock","placeholders":["shoe"]}, +{"id":"174850","label":"pretending to open a door without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["a door"]}, +{"id":"54037","label":"twisting a bag of bread","template":"Twisting [something]","placeholders":["a bag of bread"]}, +{"id":"18874","label":"attaching magnet to board","template":"Attaching [something] to [something]","placeholders":["magnet","board"]}, +{"id":"80762","label":"showing that stapler is inside cookie box","template":"Showing that [something] is inside [something]","placeholders":["stapler","cookie box"]}, +{"id":"65996","label":"moving wheel of train","template":"Moving [part] of [something]","placeholders":["wheel","train"]}, +{"id":"79491","label":"pushing a battery so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a battery"]}, +{"id":"108096","label":"pushing screwdriver so it spins","template":"Pushing [something] so it spins","placeholders":["screwdriver"]}, +{"id":"128624","label":"spilling water onto desk","template":"Spilling [something] onto [something]","placeholders":["water","desk"]}, +{"id":"142889","label":"plugging cable into charger but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","charger"]}, +{"id":"41527","label":"rolling cup on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["cup"]}, +{"id":"93763","label":"pouring water into jar","template":"Pouring [something] into [something]","placeholders":["water","jar"]}, +{"id":"182435","label":"pretending to pick white badge up","template":"Pretending to pick [something] up","placeholders":["white badge"]}, +{"id":"82303","label":"lifting hose head up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["hose head"]}, +{"id":"30630","label":"throwing pomegranate","template":"Throwing [something]","placeholders":["pomegranate"]}, +{"id":"7213","label":"pulling a sandal from behind of a wall","template":"Pulling [something] from behind of [something]","placeholders":["a sandal","a wall"]}, +{"id":"13046","label":"poking book so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["book"]}, +{"id":"56042","label":"putting a box onto a notebook so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["a box","a notebook"]}, +{"id":"16783","label":"letting a ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a ball"]}, +{"id":"4405","label":"spinning toy ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["toy ball"]}, +{"id":"166977","label":"throwing pillow in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["pillow"]}, +{"id":"31338","label":"stuffing socks into cup","template":"Stuffing [something] into [something]","placeholders":["socks","cup"]}, +{"id":"159022","label":"showing remote on top of box","template":"Showing [something] on top of [something]","placeholders":["remote","box"]}, +{"id":"214847","label":"putting cup","template":"Putting [something similar to other things that are already on the table]","placeholders":["cup"]}, +{"id":"126363","label":"pulling two ends of cloth so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["cloth"]}, +{"id":"208173","label":"showing that glass is empty","template":"Showing that [something] is empty","placeholders":["glass"]}, +{"id":"30474","label":"holding a box over a glass","template":"Holding [something] over [something]","placeholders":["a box","a glass"]}, +{"id":"89228","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"40593","label":"throwing bat","template":"Throwing [something]","placeholders":["bat"]}, +{"id":"71240","label":"pushing black lead so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["black lead"]}, +{"id":"158449","label":"turning the camera upwards while filming car","template":"Turning the camera upwards while filming [something]","placeholders":["car"]}, +{"id":"173389","label":"pushing cover from right to left","template":"Pushing [something] from right to left","placeholders":["cover"]}, +{"id":"154784","label":"showing that tomato is inside box","template":"Showing that [something] is inside [something]","placeholders":["tomato","box"]}, +{"id":"67326","label":"pushing coin so it spins","template":"Pushing [something] so it spins","placeholders":["coin"]}, +{"id":"183310","label":"attaching a paper to a paper","template":"Attaching [something] to [something]","placeholders":["a paper","a paper"]}, +{"id":"19741","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"137277","label":"moving doll and lipstick away from each other","template":"Moving [something] and [something] away from each other","placeholders":["doll","lipstick"]}, +{"id":"99324","label":"holding goggles over car toy","template":"Holding [something] over [something]","placeholders":["goggles","car toy"]}, +{"id":"213552","label":"putting jar next to box","template":"Putting [something] next to [something]","placeholders":["jar","box"]}, +{"id":"217376","label":"pushing nail paint remover from right to left","template":"Pushing [something] from right to left","placeholders":["nail paint remover"]}, +{"id":"161039","label":"plugging earphones into mp4","template":"Plugging [something] into [something]","placeholders":["earphones","mp4"]}, +{"id":"68969","label":"covering a robot with cardboard","template":"Covering [something] with [something]","placeholders":["a robot","cardboard"]}, +{"id":"90542","label":"putting tape on a surface","template":"Putting [something] on a surface","placeholders":["tape"]}, +{"id":"15160","label":"putting mouse next to mouse pad","template":"Putting [something] next to [something]","placeholders":["mouse","mouse pad"]}, +{"id":"83910","label":"sprinkling flowers onto floor","template":"Sprinkling [something] onto [something]","placeholders":["flowers","floor"]}, +{"id":"126294","label":"moving controller up","template":"Moving [something] up","placeholders":["controller"]}, +{"id":"130668","label":"putting roll of tape onto toilet","template":"Putting [something] onto [something]","placeholders":["roll of tape","toilet"]}, +{"id":"143254","label":"comb falling like a rock","template":"[Something] falling like a rock","placeholders":["comb"]}, +{"id":"130962","label":"moving juice away from coffee","template":"Moving [something] away from [something]","placeholders":["juice","coffee"]}, +{"id":"59029","label":"poking a stack of plastic boxes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["plastic boxes"]}, +{"id":"201456","label":"moving bottle away from pink notebook","template":"Moving [something] away from [something]","placeholders":["bottle","pink notebook"]}, +{"id":"143355","label":"pretending to put plate on a surface","template":"Pretending to put [something] on a surface","placeholders":["plate"]}, +{"id":"152489","label":"pushing bottle so it spins","template":"Pushing [something] so it spins","placeholders":["bottle"]}, +{"id":"97198","label":"pretending to pick stick up","template":"Pretending to pick [something] up","placeholders":["stick"]}, +{"id":"94731","label":"dropping a tissue box in front of a mug","template":"Dropping [something] in front of [something]","placeholders":["a tissue box","a mug"]}, +{"id":"124449","label":"rolling gooseberry on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["gooseberry"]}, +{"id":"143649","label":"moving dvd away from keyboard","template":"Moving [something] away from [something]","placeholders":["dvd","keyboard"]}, +{"id":"66573","label":"lifting up one end of card, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["card"]}, +{"id":"148055","label":"moving car colliding with book and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["moving car","book"]}, +{"id":"8043","label":"putting candle on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["candle"]}, +{"id":"121135","label":"spilling water next to a plate","template":"Spilling [something] next to [something]","placeholders":["water","a plate"]}, +{"id":"67183","label":"turning the camera right while filming bicycle","template":"Turning the camera right while filming [something]","placeholders":["bicycle"]}, +{"id":"4210","label":"taking teabags out of bowl","template":"Taking [something] out of [something]","placeholders":["teabags","bowl"]}, +{"id":"144839","label":"showing that a wallet is empty","template":"Showing that [something] is empty","placeholders":["a wallet"]}, +{"id":"189685","label":"measuring cup falling like a rock","template":"[Something] falling like a rock","placeholders":["measuring cup"]}, +{"id":"19662","label":"pretending to put cloth into bowl","template":"Pretending to put [something] into [something]","placeholders":["cloth","bowl"]}, +{"id":"133541","label":"pulling pen from left to right","template":"Pulling [something] from left to right","placeholders":["pen"]}, +{"id":"83014","label":"fidget spinner falling like a rock","template":"[Something] falling like a rock","placeholders":["fidget spinner"]}, +{"id":"206332","label":"turning the camera right while filming bike","template":"Turning the camera right while filming [something]","placeholders":["bike"]}, +{"id":"20087","label":"spreading vegetables onto a plate","template":"Spreading [something] onto [something]","placeholders":["vegetables","a plate"]}, +{"id":"170384","label":"tilting a book with a doll on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a book","a doll"]}, +{"id":"88989","label":"plugging a cord into the wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a cord","the wall"]}, +{"id":"62343","label":"moving a calculator away from a pencase","template":"Moving [something] away from [something]","placeholders":["a calculator","a pencase"]}, +{"id":"141533","label":"showing a cigarette pack to the camera","template":"Showing [something] to the camera","placeholders":["a cigarette pack"]}, +{"id":"107950","label":"moving xbox controller and remote away from each other","template":"Moving [something] and [something] away from each other","placeholders":["xbox controller","remote"]}, +{"id":"157804","label":"lifting book with pen on it","template":"Lifting [something] with [something] on it","placeholders":["book","pen"]}, +{"id":"194058","label":"book falling like a rock","template":"[Something] falling like a rock","placeholders":["book"]}, +{"id":"180121","label":"squeezing toothpaste","template":"Squeezing [something]","placeholders":["toothpaste"]}, +{"id":"152337","label":"putting a doll, a pen and scissors on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a doll","a pen","scissors"]}, +{"id":"18906","label":"dropping box onto table","template":"Dropping [something] onto [something]","placeholders":["box","table"]}, +{"id":"182508","label":"pretending or failing to wipe stain off of table","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","table"]}, +{"id":"36738","label":"throwing tv control","template":"Throwing [something]","placeholders":["tv control"]}, +{"id":"159717","label":"spilling water onto the floor","template":"Spilling [something] onto [something]","placeholders":["water","the floor"]}, +{"id":"130860","label":"bending stapler pin so that it deforms","template":"Bending [something] so that it deforms","placeholders":["stapler pin"]}, +{"id":"50306","label":"tearing white paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["white paper"]}, +{"id":"144022","label":"string falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["string"]}, +{"id":"16200","label":"paper tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper tissue"]}, +{"id":"214188","label":"moving a videocamera up","template":"Moving [something] up","placeholders":["a videocamera"]}, +{"id":"71948","label":"holding a roll of tape over a coffee can","template":"Holding [something] over [something]","placeholders":["a roll of tape","a coffee can"]}, +{"id":"48562","label":"putting a candy cane upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a candy cane"]}, +{"id":"42170","label":"stuffing a cloth into a cup","template":"Stuffing [something] into [something]","placeholders":["a cloth","a cup"]}, +{"id":"201645","label":"dropping a spoon onto the counter","template":"Dropping [something] onto [something]","placeholders":["a spoon","the counter"]}, +{"id":"128047","label":"taking eraser out of box","template":"Taking [something] out of [something]","placeholders":["eraser","box"]}, +{"id":"112815","label":"taking spects from box","template":"Taking [something] from [somewhere]","placeholders":["spects","box"]}, +{"id":"204679","label":"plugging charger into wall socket","template":"Plugging [something] into [something]","placeholders":["charger","wall socket"]}, +{"id":"198912","label":"holding a lighter","template":"Holding [something]","placeholders":["a lighter"]}, +{"id":"105319","label":"holding a penny over a wine glass","template":"Holding [something] over [something]","placeholders":["a penny","a wine glass"]}, +{"id":"141984","label":"pushing a cup with ruler","template":"Pushing [something] with [something]","placeholders":["a cup","ruler"]}, +{"id":"17410","label":"taking an energy drink can","template":"Taking [one of many similar things on the table]","placeholders":["an energy drink can"]}, +{"id":"11434","label":"letting lipstick roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["lipstick"]}, +{"id":"62352","label":"squeezing a stuffed bird","template":"Squeezing [something]","placeholders":["a stuffed bird"]}, +{"id":"48218","label":"putting vitamins and medication on the table","template":"Putting [something] and [something] on the table","placeholders":["vitamins","medication"]}, +{"id":"45362","label":"moving ice tray and mobile phone away from each other","template":"Moving [something] and [something] away from each other","placeholders":["ice tray","mobile phone"]}, +{"id":"61031","label":"pretending to pick a pair of scissors up","template":"Pretending to pick [something] up","placeholders":["a pair of scissors"]}, +{"id":"213371","label":"uncovering wound","template":"Uncovering [something]","placeholders":["wound"]}, +{"id":"204976","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"56403","label":"showing white rabbits to the camera","template":"Showing [something] to the camera","placeholders":["white rabbits"]}, +{"id":"49722","label":"closing a laptop","template":"Closing [something]","placeholders":["a laptop"]}, +{"id":"180382","label":"putting a cup onto a box","template":"Putting [something] onto [something]","placeholders":["a cup","a box"]}, +{"id":"183089","label":"pretending or failing to wipe salt off of a plank of wood","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["salt","a plank of wood"]}, +{"id":"162448","label":"poking a stack of pennies so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["pennies"]}, +{"id":"51389","label":"holding something in front of something","template":"Holding [something] in front of [something]","placeholders":["something","something"]}, +{"id":"144555","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"208343","label":"holding mobile in front of tv","template":"Holding [something] in front of [something]","placeholders":["mobile","tv"]}, +{"id":"210207","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"76517","label":"holding plastic bag next to bracelet","template":"Holding [something] next to [something]","placeholders":["plastic bag","bracelet"]}, +{"id":"195056","label":"turning a textsurfer upside down","template":"Turning [something] upside down","placeholders":["a textsurfer"]}, +{"id":"120395","label":"folding papers","template":"Folding [something]","placeholders":["papers"]}, +{"id":"42849","label":"putting 2 spanners onto yellow note","template":"Putting [number of] [something] onto [something]","placeholders":["2","spanners","yellow note"]}, +{"id":"145293","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"112425","label":"throwing soft drink pack in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["soft drink pack"]}, +{"id":"187640","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"151668","label":"moving leaf towards the camera","template":"Moving [something] towards the camera","placeholders":["leaf"]}, +{"id":"57299","label":"pouring water into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","cup"]}, +{"id":"214602","label":"pushing face wash with card","template":"Pushing [something] with [something]","placeholders":["face wash","card"]}, +{"id":"115717","label":"pulling spoon from right to left","template":"Pulling [something] from right to left","placeholders":["spoon"]}, +{"id":"197080","label":"moving phone up","template":"Moving [something] up","placeholders":["phone"]}, +{"id":"39709","label":"putting a tea cup to tea set","template":"Putting [something similar to other things that are already on the table]","placeholders":["a tea cup to tea set"]}, +{"id":"123750","label":"throwing a bottle","template":"Throwing [something]","placeholders":["a bottle"]}, +{"id":"190040","label":"showing bar soap to the camera","template":"Showing [something] to the camera","placeholders":["bar soap"]}, +{"id":"152990","label":"holding a cap next to a towel","template":"Holding [something] next to [something]","placeholders":["a cap","a towel"]}, +{"id":"129445","label":"tearing cover into two pieces","template":"Tearing [something] into two pieces","placeholders":["cover"]}, +{"id":"50650","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"216606","label":"turning the camera right while filming frame","template":"Turning the camera right while filming [something]","placeholders":["frame"]}, +{"id":"167013","label":"moving a book up","template":"Moving [something] up","placeholders":["a book"]}, +{"id":"198677","label":"pulling black brush from left to right","template":"Pulling [something] from left to right","placeholders":["black brush"]}, +{"id":"153097","label":"removing cloth, revealing phone behind","template":"Removing [something], revealing [something] behind","placeholders":["cloth","phone"]}, +{"id":"16429","label":"putting pen","template":"Putting [something similar to other things that are already on the table]","placeholders":["pen"]}, +{"id":"3292","label":"moving phone case down","template":"Moving [something] down","placeholders":["phone case"]}, +{"id":"158304","label":"tilting cup with book on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["cup","book"]}, +{"id":"45055","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"23572","label":"poking a stack of bottle cap so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["bottle cap"]}, +{"id":"163549","label":"holding glass next to ashtray","template":"Holding [something] next to [something]","placeholders":["glass","ashtray"]}, +{"id":"57664","label":"pushing a fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["a fidget spinner"]}, +{"id":"131243","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"113418","label":"rolling car on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["car"]}, +{"id":"121738","label":"unfolding wallet","template":"Unfolding [something]","placeholders":["wallet"]}, +{"id":"131456","label":"putting cushion on a surface","template":"Putting [something] on a surface","placeholders":["cushion"]}, +{"id":"182404","label":"pretending to pick powerbank up","template":"Pretending to pick [something] up","placeholders":["powerbank"]}, +{"id":"73703","label":"dropping a key next to a knife","template":"Dropping [something] next to [something]","placeholders":["a key","a knife"]}, +{"id":"210326","label":"showing pen behind box","template":"Showing [something] behind [something]","placeholders":["pen","box"]}, +{"id":"161088","label":"approaching wastebin with your camera","template":"Approaching [something] with your camera","placeholders":["wastebin"]}, +{"id":"59938","label":"turning a smartphone upside down","template":"Turning [something] upside down","placeholders":["a smartphone"]}, +{"id":"46684","label":"showing holder behind cup","template":"Showing [something] behind [something]","placeholders":["holder","cup"]}, +{"id":"194996","label":"holding spectacle behind rubix cube","template":"Holding [something] behind [something]","placeholders":["spectacle","rubix cube"]}, +{"id":"36227","label":"showing spectacle box behind yellow clay box","template":"Showing [something] behind [something]","placeholders":["spectacle box","yellow clay box"]}, +{"id":"123409","label":"spinning vase that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["vase"]}, +{"id":"121561","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"77808","label":"metal ball colliding with metal ball and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["metal ball","metal ball"]}, +{"id":"67469","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"195318","label":"covering cap with hand towel","template":"Covering [something] with [something]","placeholders":["cap","hand towel"]}, +{"id":"148885","label":"pushing toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["toy"]}, +{"id":"25058","label":"showing white candle to the camera","template":"Showing [something] to the camera","placeholders":["white candle"]}, +{"id":"79333","label":"holding remote","template":"Holding [something]","placeholders":["remote"]}, +{"id":"146598","label":"putting bottle","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle"]}, +{"id":"115894","label":"dropping nail clippers into a cup","template":"Dropping [something] into [something]","placeholders":["nail clippers","a cup"]}, +{"id":"135503","label":"pretending to pour water out of a kettle, but the kettle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a kettle","the kettle"]}, +{"id":"16285","label":"throwing brush in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["brush"]}, +{"id":"168036","label":"wiping pepper off of the counter top","template":"Wiping [something] off of [something]","placeholders":["pepper","the counter top"]}, +{"id":"154294","label":"moving paper clip holder and marker closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["paper clip holder","marker"]}, +{"id":"188869","label":"holding medicine bottle over calculator","template":"Holding [something] over [something]","placeholders":["medicine bottle","calculator"]}, +{"id":"98328","label":"pretending to poke a magazine","template":"Pretending to poke [something]","placeholders":["a magazine"]}, +{"id":"148142","label":"turning coffee cup upside down","template":"Turning [something] upside down","placeholders":["coffee cup"]}, +{"id":"3879","label":"folding a cloth","template":"Folding [something]","placeholders":["a cloth"]}, +{"id":"15989","label":"showing laptop behind bottle","template":"Showing [something] behind [something]","placeholders":["laptop","bottle"]}, +{"id":"47826","label":"holding a spoon in front of a cup","template":"Holding [something] in front of [something]","placeholders":["a spoon","a cup"]}, +{"id":"179545","label":"poking a stack of coins so the stack collapses","template":"Poking a stack of [something] so the stack collapses","placeholders":["coins"]}, +{"id":"143558","label":"dropping a remote control next to a headphones","template":"Dropping [something] next to [something]","placeholders":["a remote control","a headphones"]}, +{"id":"155670","label":"putting a mug, an eraser and a coin on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a mug","an eraser","a coin"]}, +{"id":"95275","label":"showing tv on top of desk","template":"Showing [something] on top of [something]","placeholders":["tv","desk"]}, +{"id":"170829","label":"throwing headphones onto a surface","template":"Throwing [something] onto a surface","placeholders":["headphones"]}, +{"id":"77945","label":"dropping a matchbox in front of a pen","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a pen"]}, +{"id":"70341","label":"moving keys up","template":"Moving [something] up","placeholders":["keys"]}, +{"id":"151715","label":"closing pad lock","template":"Closing [something]","placeholders":["pad lock"]}, +{"id":"177461","label":"turning the camera right while filming smart phone","template":"Turning the camera right while filming [something]","placeholders":["smart phone"]}, +{"id":"47486","label":"plugging charger into wall socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["charger","wall socket"]}, +{"id":"95742","label":"throwing keys in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["keys"]}, +{"id":"100640","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"55271","label":"throwing a pillow","template":"Throwing [something]","placeholders":["a pillow"]}, +{"id":"143630","label":"pretending to put marker into mug","template":"Pretending to put [something] into [something]","placeholders":["marker","mug"]}, +{"id":"206057","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"22617","label":"pushing hair clip so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hair clip"]}, +{"id":"135790","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"215596","label":"candy being deflected from clock","template":"[Something] being deflected from [something]","placeholders":["candy","clock"]}, +{"id":"34170","label":"turning the camera right while filming traffic signboard","template":"Turning the camera right while filming [something]","placeholders":["traffic signboard"]}, +{"id":"32510","label":"plugging power cable into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["power cable","socket"]}, +{"id":"212969","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"181651","label":"twisting (wringing) a towel wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["a towel"]}, +{"id":"63686","label":"pretending to poke plate","template":"Pretending to poke [something]","placeholders":["plate"]}, +{"id":"211973","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"128057","label":"squeezing blue lighter","template":"Squeezing [something]","placeholders":["blue lighter"]}, +{"id":"43544","label":"hitting a mouse with a wallet","template":"Hitting [something] with [something]","placeholders":["a mouse","a wallet"]}, +{"id":"12235","label":"pushing pen off of ipad","template":"Pushing [something] off of [something]","placeholders":["pen","ipad"]}, +{"id":"141750","label":"wiping soap off of a chair","template":"Wiping [something] off of [something]","placeholders":["soap","a chair"]}, +{"id":"51775","label":"putting paper in front of candle","template":"Putting [something] in front of [something]","placeholders":["paper","candle"]}, +{"id":"1751","label":"moving bottle and box closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["bottle","box"]}, +{"id":"38738","label":"poking jar so that it falls over","template":"Poking [something] so that it falls over","placeholders":["jar"]}, +{"id":"114976","label":"showing baking powder to the camera","template":"Showing [something] to the camera","placeholders":["baking powder"]}, +{"id":"124452","label":"poking battery so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["battery"]}, +{"id":"139329","label":"putting a aluminium rod that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a aluminium rod"]}, +{"id":"179232","label":"dropping push in onto push in","template":"Dropping [something] onto [something]","placeholders":["push in","push in"]}, +{"id":"168616","label":"tilting an end table with a case of bobbins on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["an end table","a case of bobbins"]}, +{"id":"102701","label":"putting a crayon into a pot","template":"Putting [something] into [something]","placeholders":["a crayon","a pot"]}, +{"id":"119552","label":"poking a remote so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a remote"]}, +{"id":"184511","label":"tearing tissue paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["tissue paper"]}, +{"id":"84674","label":"pretending to open jar without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jar"]}, +{"id":"114930","label":"tearing paper towel into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper towel"]}, +{"id":"175789","label":"tearing a letter into two pieces","template":"Tearing [something] into two pieces","placeholders":["a letter"]}, +{"id":"63424","label":"taking keys out of bag","template":"Taking [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"128894","label":"spilling water onto a box","template":"Spilling [something] onto [something]","placeholders":["water","a box"]}, +{"id":"136310","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"18534","label":"stuffing medicine into a box","template":"Stuffing [something] into [something]","placeholders":["medicine","a box"]}, +{"id":"21421","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"105836","label":"taking currency","template":"Taking [one of many similar things on the table]","placeholders":["currency"]}, +{"id":"106970","label":"pretending to be tearing plastic bag","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic bag"]}, +{"id":"63452","label":"pushing a plug from right to left","template":"Pushing [something] from right to left","placeholders":["a plug"]}, +{"id":"10722","label":"pretending to poke box","template":"Pretending to poke [something]","placeholders":["box"]}, +{"id":"53141","label":"pushing shoe box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["shoe box"]}, +{"id":"67786","label":"pretending to be tearing a book","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a book"]}, +{"id":"2683","label":"pulling a cigarette out of the pack","template":"Pulling [something] out of [something]","placeholders":["a cigarette","the pack"]}, +{"id":"173702","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"156258","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"104581","label":"pretending to turn cup upside down","template":"Pretending to turn [something] upside down","placeholders":["cup"]}, +{"id":"154509","label":"pretending to be tearing a shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a shirt"]}, +{"id":"68678","label":"taking a bowl","template":"Taking [one of many similar things on the table]","placeholders":["a bowl"]}, +{"id":"123792","label":"plugging charger into laptop","template":"Plugging [something] into [something]","placeholders":["charger","laptop"]}, +{"id":"130952","label":"lifting box up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["box"]}, +{"id":"13888","label":"holding pen behind bottle","template":"Holding [something] behind [something]","placeholders":["pen","bottle"]}, +{"id":"153427","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"133414","label":"pretending to take cup from table","template":"Pretending to take [something] from [somewhere]","placeholders":["cup","table"]}, +{"id":"45528","label":"showing white badge next to magnifying glass","template":"Showing [something] next to [something]","placeholders":["white badge","magnifying glass"]}, +{"id":"220119","label":"a pencil being deflected from a box","template":"[Something] being deflected from [something]","placeholders":["a pencil","a box"]}, +{"id":"74665","label":"plugging power chord into outlet","template":"Plugging [something] into [something]","placeholders":["power chord","outlet"]}, +{"id":"27016","label":"wiping paper off of table","template":"Wiping [something] off of [something]","placeholders":["paper","table"]}, +{"id":"116144","label":"pulling a lighter onto a metal box","template":"Pulling [something] onto [something]","placeholders":["a lighter","a metal box"]}, +{"id":"115017","label":"holding keys over plastic cup","template":"Holding [something] over [something]","placeholders":["keys","plastic cup"]}, +{"id":"211585","label":"putting orange post-it on a surface","template":"Putting [something] on a surface","placeholders":["orange post-it"]}, +{"id":"166927","label":"remote being deflected from couch","template":"[Something] being deflected from [something]","placeholders":["remote","couch"]}, +{"id":"130392","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"187688","label":"tilting spoon with coin on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["spoon","coin"]}, +{"id":"198965","label":"piling pillows up","template":"Piling [something] up","placeholders":["pillows"]}, +{"id":"88011","label":"uncovering plastic knife","template":"Uncovering [something]","placeholders":["plastic knife"]}, +{"id":"6176","label":"squeezing a stress ball","template":"Squeezing [something]","placeholders":["a stress ball"]}, +{"id":"50874","label":"scooping cereal up with spoon","template":"Scooping [something] up with [something]","placeholders":["cereal","spoon"]}, +{"id":"144996","label":"pouring juice out of bottle","template":"Pouring [something] out of [something]","placeholders":["juice","bottle"]}, +{"id":"82524","label":"putting 2 pen onto book","template":"Putting [number of] [something] onto [something]","placeholders":["2","pen","book"]}, +{"id":"168137","label":"pretending to be tearing a shoe","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a shoe"]}, +{"id":"168508","label":"stuffing paper into glass","template":"Stuffing [something] into [something]","placeholders":["paper","glass"]}, +{"id":"220335","label":"attaching battery cover to remote","template":"Attaching [something] to [something]","placeholders":["battery cover","remote"]}, +{"id":"28598","label":"turning bottle upside down","template":"Turning [something] upside down","placeholders":["bottle"]}, +{"id":"178788","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"184520","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"186015","label":"tearing sticky note into two pieces","template":"Tearing [something] into two pieces","placeholders":["sticky note"]}, +{"id":"110396","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"56775","label":"folding handkerchief","template":"Folding [something]","placeholders":["handkerchief"]}, +{"id":"4940","label":"moving antenas of antena set","template":"Moving [part] of [something]","placeholders":["antenas","antena set"]}, +{"id":"74512","label":"pouring tea bags out of a box","template":"Pouring [something] out of [something]","placeholders":["tea bags","a box"]}, +{"id":"76349","label":"dropping pill bottle into coffee can","template":"Dropping [something] into [something]","placeholders":["pill bottle","coffee can"]}, +{"id":"129427","label":"poking cube so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["cube"]}, +{"id":"131843","label":"putting bowel underneath gas stove","template":"Putting [something] underneath [something]","placeholders":["bowel","gas stove"]}, +{"id":"78898","label":"moving calculator up","template":"Moving [something] up","placeholders":["calculator"]}, +{"id":"98916","label":"turning bowl upside down","template":"Turning [something] upside down","placeholders":["bowl"]}, +{"id":"133853","label":"holding box next to glass","template":"Holding [something] next to [something]","placeholders":["box","glass"]}, +{"id":"168896","label":"poking bottle so that it falls over","template":"Poking [something] so that it falls over","placeholders":["bottle"]}, +{"id":"16055","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"10456","label":"holding a cup next to glass","template":"Holding [something] next to [something]","placeholders":["a cup","glass"]}, +{"id":"39000","label":"dropping a peg next to a belt","template":"Dropping [something] next to [something]","placeholders":["a peg","a belt"]}, +{"id":"38795","label":"pretending to pour water out of a cup, but a cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","a cup","a cup"]}, +{"id":"60596","label":"holding powder bottle next to paint bottle","template":"Holding [something] next to [something]","placeholders":["powder bottle","paint bottle"]}, +{"id":"39745","label":"uncovering soap","template":"Uncovering [something]","placeholders":["soap"]}, +{"id":"84546","label":"covering orange colour bottle cap with white sheet","template":"Covering [something] with [something]","placeholders":["orange colour bottle cap","white sheet"]}, +{"id":"168876","label":"stacking 3 cigarette boxes","template":"Stacking [number of] [something]","placeholders":["3","cigarette boxes"]}, +{"id":"57156","label":"tissue pack falling like a rock","template":"[Something] falling like a rock","placeholders":["tissue pack"]}, +{"id":"101094","label":"holding a radio over his head","template":"Holding [something] over [something]","placeholders":["a radio","his head"]}, +{"id":"95309","label":"poking cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["cup"]}, +{"id":"217405","label":"pendrive falling like a rock","template":"[Something] falling like a rock","placeholders":["pendrive"]}, +{"id":"15514","label":"removing case, revealing pc behind","template":"Removing [something], revealing [something] behind","placeholders":["case","pc"]}, +{"id":"117674","label":"turning chair upside down","template":"Turning [something] upside down","placeholders":["chair"]}, +{"id":"78887","label":"pushing shoe so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["shoe"]}, +{"id":"127213","label":"stacking 2 coins","template":"Stacking [number of] [something]","placeholders":["2","coins"]}, +{"id":"37134","label":"pretending to poke tube","template":"Pretending to poke [something]","placeholders":["tube"]}, +{"id":"167865","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"80518","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"112348","label":"pushing foldable knife from left to right","template":"Pushing [something] from left to right","placeholders":["foldable knife"]}, +{"id":"207875","label":"throwing scissors","template":"Throwing [something]","placeholders":["scissors"]}, +{"id":"127928","label":"hummus container falling like a rock","template":"[Something] falling like a rock","placeholders":["hummus container"]}, +{"id":"167431","label":"turning the camera left while filming banana bunch","template":"Turning the camera left while filming [something]","placeholders":["banana bunch"]}, +{"id":"163099","label":"dropping marker pen in front of spectacle box","template":"Dropping [something] in front of [something]","placeholders":["marker pen","spectacle box"]}, +{"id":"174688","label":"unfolding a paper","template":"Unfolding [something]","placeholders":["a paper"]}, +{"id":"41202","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"217471","label":"squeezing a toy","template":"Squeezing [something]","placeholders":["a toy"]}, +{"id":"53898","label":"pushing package from right to left","template":"Pushing [something] from right to left","placeholders":["package"]}, +{"id":"203070","label":"putting cup and orange on the table","template":"Putting [something] and [something] on the table","placeholders":["cup","orange"]}, +{"id":"194108","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"149751","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"75548","label":"turning the camera right while filming gate","template":"Turning the camera right while filming [something]","placeholders":["gate"]}, +{"id":"174382","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"173979","label":"showing bath soap next to box","template":"Showing [something] next to [something]","placeholders":["bath soap","box"]}, +{"id":"55373","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"122602","label":"putting a spone to other spones that are already on the table","template":"Putting [something similar to other things that are already on the table]","placeholders":["a spone to other spones that are already on the table"]}, +{"id":"12008","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"130674","label":"pushing black umbrella from right to left","template":"Pushing [something] from right to left","placeholders":["black umbrella"]}, +{"id":"140022","label":"pulling two ends of cover so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["cover"]}, +{"id":"62755","label":"pretending to take candy out of box","template":"Pretending to take [something] out of [something]","placeholders":["candy","box"]}, +{"id":"97477","label":"turning breath mint container upside down","template":"Turning [something] upside down","placeholders":["breath mint container"]}, +{"id":"20838","label":"tilting sticky note with sharpener on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["sticky note","sharpener"]}, +{"id":"74711","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"180948","label":"putting cards with cards","template":"Putting [something similar to other things that are already on the table]","placeholders":["cards with cards"]}, +{"id":"35443","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"189078","label":"pretending or trying and failing to twist a jar","template":"Pretending or trying and failing to twist [something]","placeholders":["a jar"]}, +{"id":"209621","label":"moving a lamp and coasters away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a lamp","coasters"]}, +{"id":"20162","label":"showing jeep to the camera","template":"Showing [something] to the camera","placeholders":["jeep"]}, +{"id":"154829","label":"plugging microwave into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["microwave","outlet"]}, +{"id":"3021","label":"putting a packet on the edge of the chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a packet","the chair"]}, +{"id":"32539","label":"turning cement planter upside down","template":"Turning [something] upside down","placeholders":["cement planter"]}, +{"id":"53798","label":"pushing cup so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["cup"]}, +{"id":"96771","label":"pushing a knife so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a knife"]}, +{"id":"5903","label":"plugging a fragrance diffuser into a wall socket","template":"Plugging [something] into [something]","placeholders":["a fragrance diffuser","a wall socket"]}, +{"id":"39506","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"129375","label":"spreading kerchief onto rubix cube","template":"Spreading [something] onto [something]","placeholders":["kerchief","rubix cube"]}, +{"id":"57672","label":"a piece of paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a piece of paper"]}, +{"id":"32619","label":"pulling two ends of a rubber strip so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["a rubber strip"]}, +{"id":"33910","label":"tearing envelope just a little bit","template":"Tearing [something] just a little bit","placeholders":["envelope"]}, +{"id":"51717","label":"showing bridge to the camera","template":"Showing [something] to the camera","placeholders":["bridge"]}, +{"id":"64337","label":"throwing hairclip against carton","template":"Throwing [something] against [something]","placeholders":["hairclip","carton"]}, +{"id":"204133","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"142245","label":"taking small stone from pile of stones","template":"Taking [one of many similar things on the table]","placeholders":["small stone from pile of stones"]}, +{"id":"13922","label":"dropping a sandal in front of a shoe","template":"Dropping [something] in front of [something]","placeholders":["a sandal","a shoe"]}, +{"id":"53813","label":"moving feeding bottle and plastic bottel closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["feeding bottle","plastic bottel"]}, +{"id":"85091","label":"showing handkerchief behind coin","template":"Showing [something] behind [something]","placeholders":["handkerchief","coin"]}, +{"id":"138954","label":"pushing green hair comb from right to left","template":"Pushing [something] from right to left","placeholders":["green hair comb"]}, +{"id":"66068","label":"pretending or trying and failing to twist menas","template":"Pretending or trying and failing to twist [something]","placeholders":["menas"]}, +{"id":"58555","label":"turning a bottle of hand lotion upside down","template":"Turning [something] upside down","placeholders":["a bottle of hand lotion"]}, +{"id":"53225","label":"dropping phone onto book","template":"Dropping [something] onto [something]","placeholders":["phone","book"]}, +{"id":"37891","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"41260","label":"pushing a remote with a knife","template":"Pushing [something] with [something]","placeholders":["a remote","a knife"]}, +{"id":"154182","label":"pulling bags out of box","template":"Pulling [something] out of [something]","placeholders":["bags","box"]}, +{"id":"125029","label":"dropping shirt in front of shirt","template":"Dropping [something] in front of [something]","placeholders":["shirt","shirt"]}, +{"id":"115127","label":"turning the camera upwards while filming indian weight machine","template":"Turning the camera upwards while filming [something]","placeholders":["indian weight machine"]}, +{"id":"31811","label":"spinning cd that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["cd"]}, +{"id":"44321","label":"putting shoe on a surface","template":"Putting [something] on a surface","placeholders":["shoe"]}, +{"id":"36852","label":"taking magnifying glass out of spectacle box","template":"Taking [something] out of [something]","placeholders":["magnifying glass","spectacle box"]}, +{"id":"101336","label":"showing remote next to mobile","template":"Showing [something] next to [something]","placeholders":["remote","mobile"]}, +{"id":"108574","label":"taking liner out of book","template":"Taking [something] out of [something]","placeholders":["liner","book"]}, +{"id":"118648","label":"showing dinosaur to the camera","template":"Showing [something] to the camera","placeholders":["dinosaur"]}, +{"id":"40602","label":"putting a container upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a container"]}, +{"id":"206632","label":"dropping pill behind bottle","template":"Dropping [something] behind [something]","placeholders":["pill","bottle"]}, +{"id":"37955","label":"spinning paint jug that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["paint jug"]}, +{"id":"184038","label":"moving red pot holder down","template":"Moving [something] down","placeholders":["red pot holder"]}, +{"id":"204588","label":"covering cell phone with pillow","template":"Covering [something] with [something]","placeholders":["cell phone","pillow"]}, +{"id":"138084","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"39430","label":"uncovering a lipstick lid","template":"Uncovering [something]","placeholders":["a lipstick lid"]}, +{"id":"182381","label":"covering lollipop with card","template":"Covering [something] with [something]","placeholders":["lollipop","card"]}, +{"id":"21401","label":"pouring detergent out of bottle","template":"Pouring [something] out of [something]","placeholders":["detergent","bottle"]}, +{"id":"37950","label":"pretending to close door without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["door"]}, +{"id":"54939","label":"lifting up one end of something, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["something"]}, +{"id":"197012","label":"putting soda can next to glass","template":"Putting [something] next to [something]","placeholders":["soda can","glass"]}, +{"id":"170934","label":"turning a box upside down","template":"Turning [something] upside down","placeholders":["a box"]}, +{"id":"21720","label":"stuffing paper into a cup","template":"Stuffing [something] into [something]","placeholders":["paper","a cup"]}, +{"id":"123334","label":"pulling two ends of pen so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["pen"]}, +{"id":"194897","label":"moving a container and another one away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a container","another one"]}, +{"id":"26464","label":"stuffing cloth into glass","template":"Stuffing [something] into [something]","placeholders":["cloth","glass"]}, +{"id":"206093","label":"dropping a matchbox in front of a card","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a card"]}, +{"id":"212941","label":"wrapper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["wrapper"]}, +{"id":"126255","label":"attaching block to block","template":"Attaching [something] to [something]","placeholders":["block","block"]}, +{"id":"60729","label":"turning the camera upwards while filming fishes","template":"Turning the camera upwards while filming [something]","placeholders":["fishes"]}, +{"id":"182132","label":"taking silver pen among other pens on table","template":"Taking [one of many similar things on the table]","placeholders":["silver pen among other pens on table"]}, +{"id":"177747","label":"moving scissor up","template":"Moving [something] up","placeholders":["scissor"]}, +{"id":"41420","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"14263","label":"attaching usb to charger","template":"Attaching [something] to [something]","placeholders":["usb","charger"]}, +{"id":"219524","label":"putting 2 hair bands onto black pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","hair bands","black pouch"]}, +{"id":"153239","label":"spilling water onto wood box","template":"Spilling [something] onto [something]","placeholders":["water","wood box"]}, +{"id":"127737","label":"showing pen behind cup","template":"Showing [something] behind [something]","placeholders":["pen","cup"]}, +{"id":"220375","label":"moving plant away from phone","template":"Moving [something] away from [something]","placeholders":["plant","phone"]}, +{"id":"89412","label":"holding aim toothpaste","template":"Holding [something]","placeholders":["aim toothpaste"]}, +{"id":"35213","label":"moving something down","template":"Moving [something] down","placeholders":["something"]}, +{"id":"108246","label":"putting a bottle in front of a rubbish bin","template":"Putting [something] in front of [something]","placeholders":["a bottle","a rubbish bin"]}, +{"id":"77875","label":"putting a scissor that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a scissor"]}, +{"id":"118752","label":"lifting notepad with remote on it","template":"Lifting [something] with [something] on it","placeholders":["notepad","remote"]}, +{"id":"112658","label":"putting sauce bottle on a surface","template":"Putting [something] on a surface","placeholders":["sauce bottle"]}, +{"id":"80536","label":"pretending to be tearing white paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["white paper"]}, +{"id":"96317","label":"putting something next to something","template":"Putting [something] next to [something]","placeholders":["something","something"]}, +{"id":"207866","label":"pretending to sprinkle air onto paper","template":"Pretending to sprinkle air onto [something]","placeholders":["paper"]}, +{"id":"84787","label":"jar falling like a rock","template":"[Something] falling like a rock","placeholders":["jar"]}, +{"id":"117165","label":"plugging cable into headphones","template":"Plugging [something] into [something]","placeholders":["cable","headphones"]}, +{"id":"207856","label":"holding lid over container","template":"Holding [something] over [something]","placeholders":["lid","container"]}, +{"id":"209914","label":"touching (without moving) ball of mouse","template":"Touching (without moving) [part] of [something]","placeholders":["ball","mouse"]}, +{"id":"128332","label":"putting pen onto box","template":"Putting [something] onto [something]","placeholders":["pen","box"]}, +{"id":"219850","label":"pulling a comb from left to right","template":"Pulling [something] from left to right","placeholders":["a comb"]}, +{"id":"172813","label":"pushing a bottle of glue so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a bottle of glue"]}, +{"id":"98789","label":"pushing paint with phone","template":"Pushing [something] with [something]","placeholders":["paint","phone"]}, +{"id":"52025","label":"closing a children's book","template":"Closing [something]","placeholders":["a children's book"]}, +{"id":"156752","label":"laying battery on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["battery"]}, +{"id":"198026","label":"showing mug behind book","template":"Showing [something] behind [something]","placeholders":["mug","book"]}, +{"id":"68634","label":"showing that tin is empty","template":"Showing that [something] is empty","placeholders":["tin"]}, +{"id":"104547","label":"stuffing cover into lipstick","template":"Stuffing [something] into [something]","placeholders":["cover","lipstick"]}, +{"id":"131497","label":"hitting a box with a pillow","template":"Hitting [something] with [something]","placeholders":["a box","a pillow"]}, +{"id":"216157","label":"pretending to put a pen underneath a book","template":"Pretending to put [something] underneath [something]","placeholders":["a pen","a book"]}, +{"id":"145929","label":"pushing tape dispenser from left to right","template":"Pushing [something] from left to right","placeholders":["tape dispenser"]}, +{"id":"88041","label":"putting mouse in front of cutter","template":"Putting [something] in front of [something]","placeholders":["mouse","cutter"]}, +{"id":"207568","label":"putting flashdisk next to box","template":"Putting [something] next to [something]","placeholders":["flashdisk","box"]}, +{"id":"185292","label":"showing that a mug is empty","template":"Showing that [something] is empty","placeholders":["a mug"]}, +{"id":"219773","label":"putting egg","template":"Putting [something similar to other things that are already on the table]","placeholders":["egg"]}, +{"id":"37854","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"64031","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"70031","label":"pushing double-sided adhesive tape from left to right","template":"Pushing [something] from left to right","placeholders":["double-sided adhesive tape"]}, +{"id":"139884","label":"moving hair comb down","template":"Moving [something] down","placeholders":["hair comb"]}, +{"id":"42520","label":"trying but failing to attach stick to doorknob because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["stick","doorknob"]}, +{"id":"54905","label":"showing small water fall to the camera","template":"Showing [something] to the camera","placeholders":["small water fall"]}, +{"id":"110660","label":"throwing book","template":"Throwing [something]","placeholders":["book"]}, +{"id":"15588","label":"twisting packet","template":"Twisting [something]","placeholders":["packet"]}, +{"id":"1684","label":"rock falling like a rock","template":"[Something] falling like a rock","placeholders":["rock"]}, +{"id":"151923","label":"uncovering paper","template":"Uncovering [something]","placeholders":["paper"]}, +{"id":"149720","label":"dropping water botle into purse","template":"Dropping [something] into [something]","placeholders":["water botle","purse"]}, +{"id":"29376","label":"spinning a cup cover so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a cup cover"]}, +{"id":"112335","label":"moving inline skate wheel and inline skate wheel away from each other","template":"Moving [something] and [something] away from each other","placeholders":["inline skate wheel","inline skate wheel"]}, +{"id":"112154","label":"plugging cord into cord","template":"Plugging [something] into [something]","placeholders":["cord","cord"]}, +{"id":"111998","label":"putting knife into glass cup","template":"Putting [something] into [something]","placeholders":["knife","glass cup"]}, +{"id":"62715","label":"tearing a ticket just a little bit","template":"Tearing [something] just a little bit","placeholders":["a ticket"]}, +{"id":"16474","label":"showing gate to the camera","template":"Showing [something] to the camera","placeholders":["gate"]}, +{"id":"97620","label":"twisting dollar","template":"Twisting [something]","placeholders":["dollar"]}, +{"id":"67297","label":"folding dish cloth","template":"Folding [something]","placeholders":["dish cloth"]}, +{"id":"45121","label":"putting bagged gloves upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["bagged gloves"]}, +{"id":"172290","label":"putting bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle"]}, +{"id":"176020","label":"stuffing papers into trash can","template":"Stuffing [something] into [something]","placeholders":["papers","trash can"]}, +{"id":"118112","label":"moving fuel can towards the camera","template":"Moving [something] towards the camera","placeholders":["fuel can"]}, +{"id":"87609","label":"lifting book with tape on it","template":"Lifting [something] with [something] on it","placeholders":["book","tape"]}, +{"id":"6458","label":"lifting pencil up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["pencil"]}, +{"id":"128646","label":"moving coin up","template":"Moving [something] up","placeholders":["coin"]}, +{"id":"61244","label":"plugging earphones into a mobile","template":"Plugging [something] into [something]","placeholders":["earphones","a mobile"]}, +{"id":"187046","label":"poking mouse so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["mouse"]}, +{"id":"190516","label":"putting a bottle of tool oil upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle of tool oil"]}, +{"id":"168008","label":"pretending to close a bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["a bottle"]}, +{"id":"188239","label":"pulling mobile phone from left to right","template":"Pulling [something] from left to right","placeholders":["mobile phone"]}, +{"id":"16820","label":"taking deo out of bagback","template":"Taking [something] out of [something]","placeholders":["deo","bagback"]}, +{"id":"103125","label":"putting milk jug upright on the table","template":"Putting [something] upright on the table","placeholders":["milk jug"]}, +{"id":"94196","label":"showing that a glass is empty","template":"Showing that [something] is empty","placeholders":["a glass"]}, +{"id":"103701","label":"showing thermos bottle behind box","template":"Showing [something] behind [something]","placeholders":["thermos bottle","box"]}, +{"id":"64019","label":"plugging a charger into an outlet","template":"Plugging [something] into [something]","placeholders":["a charger","an outlet"]}, +{"id":"53642","label":"pulling a bracelet from left to right","template":"Pulling [something] from left to right","placeholders":["a bracelet"]}, +{"id":"177254","label":"trying but failing to attach a ruler to paper because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a ruler","paper"]}, +{"id":"134068","label":"letting a steel wheel roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a steel wheel"]}, +{"id":"46575","label":"hitting a wine glass with a penny","template":"Hitting [something] with [something]","placeholders":["a wine glass","a penny"]}, +{"id":"135321","label":"moving shoe down","template":"Moving [something] down","placeholders":["shoe"]}, +{"id":"87604","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"181382","label":"bending spaghetti noodle until it breaks","template":"Bending [something] until it breaks","placeholders":["spaghetti noodle"]}, +{"id":"121286","label":"tilting a calendar with a ruler on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a calendar","a ruler"]}, +{"id":"100499","label":"pushing a makeup tube so it spins","template":"Pushing [something] so it spins","placeholders":["a makeup tube"]}, +{"id":"120582","label":"pretending to put keys into bag","template":"Pretending to put [something] into [something]","placeholders":["keys","bag"]}, +{"id":"201535","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"69849","label":"poking teddy bear so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["teddy bear"]}, +{"id":"72304","label":"putting a card into a box","template":"Putting [something] into [something]","placeholders":["a card","a box"]}, +{"id":"188518","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"113332","label":"moving horse and cow closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["horse","cow"]}, +{"id":"147059","label":"tearing a piece of paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a piece of paper"]}, +{"id":"38787","label":"pretending to sprinkle air onto book","template":"Pretending to sprinkle air onto [something]","placeholders":["book"]}, +{"id":"155024","label":"moving pebble away from metal rod","template":"Moving [something] away from [something]","placeholders":["pebble","metal rod"]}, +{"id":"125839","label":"trying to bend a screwdriver so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a screwdriver"]}, +{"id":"166273","label":"stuffing cap into backpack","template":"Stuffing [something] into [something]","placeholders":["cap","backpack"]}, +{"id":"170503","label":"squeezing baby toy","template":"Squeezing [something]","placeholders":["baby toy"]}, +{"id":"195086","label":"turning the camera left while filming sunset","template":"Turning the camera left while filming [something]","placeholders":["sunset"]}, +{"id":"176821","label":"pouring soda out of can","template":"Pouring [something] out of [something]","placeholders":["soda","can"]}, +{"id":"129367","label":"putting two coasters onto table","template":"Putting [number of] [something] onto [something]","placeholders":["two","coasters","table"]}, +{"id":"143253","label":"spilling water next to a padlock","template":"Spilling [something] next to [something]","placeholders":["water","a padlock"]}, +{"id":"165409","label":"holding a toy owl behind a frisby","template":"Holding [something] behind [something]","placeholders":["a toy owl","a frisby"]}, +{"id":"103761","label":"pushing a box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a box"]}, +{"id":"178787","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"212642","label":"putting a hammer next to a child toy","template":"Putting [something] next to [something]","placeholders":["a hammer","a child toy"]}, +{"id":"142963","label":"covering a candle with a cover","template":"Covering [something] with [something]","placeholders":["a candle","a cover"]}, +{"id":"18894","label":"pretending to open drawer without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["drawer"]}, +{"id":"114255","label":"lifting plastic container with plastic container on it","template":"Lifting [something] with [something] on it","placeholders":["plastic container","plastic container"]}, +{"id":"193509","label":"spinning a coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a coin"]}, +{"id":"47218","label":"squeezing a sponge","template":"Squeezing [something]","placeholders":["a sponge"]}, +{"id":"45521","label":"showing a glas bottle behind a wire","template":"Showing [something] behind [something]","placeholders":["a glas bottle","a wire"]}, +{"id":"110453","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"32256","label":"pushing makeup storage so it spins","template":"Pushing [something] so it spins","placeholders":["makeup storage"]}, +{"id":"118971","label":"spreading old tree leaves onto small tree","template":"Spreading [something] onto [something]","placeholders":["old tree leaves","small tree"]}, +{"id":"98639","label":"pretending to poke a water bottle","template":"Pretending to poke [something]","placeholders":["a water bottle"]}, +{"id":"93458","label":"showing cup on top of guitar","template":"Showing [something] on top of [something]","placeholders":["cup","guitar"]}, +{"id":"132707","label":"toy car being deflected from another toy car","template":"[Something] being deflected from [something]","placeholders":["toy car","another toy car"]}, +{"id":"194295","label":"holding banana in front of plate","template":"Holding [something] in front of [something]","placeholders":["banana","plate"]}, +{"id":"41430","label":"pretending to be tearing shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["shirt"]}, +{"id":"187275","label":"spinning vase that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["vase"]}, +{"id":"9304","label":"toy colliding with toy and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["toy","toy"]}, +{"id":"10747","label":"closing packet","template":"Closing [something]","placeholders":["packet"]}, +{"id":"48836","label":"putting plush stitch onto mug","template":"Putting [something] onto [something]","placeholders":["plush stitch","mug"]}, +{"id":"21147","label":"dropping pen next to watch","template":"Dropping [something] next to [something]","placeholders":["pen","watch"]}, +{"id":"122676","label":"showing banana behind pot","template":"Showing [something] behind [something]","placeholders":["banana","pot"]}, +{"id":"17062","label":"covering a saucepan with a lid","template":"Covering [something] with [something]","placeholders":["a saucepan","a lid"]}, +{"id":"215523","label":"putting bodybuilding weight on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["bodybuilding weight"]}, +{"id":"145084","label":"putting bottle of water upright on the table","template":"Putting [something] upright on the table","placeholders":["bottle of water"]}, +{"id":"88445","label":"pushing glass so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["glass"]}, +{"id":"65206","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"185722","label":"turning the camera upwards while filming beach","template":"Turning the camera upwards while filming [something]","placeholders":["beach"]}, +{"id":"58520","label":"pushing spectacle box from left to right","template":"Pushing [something] from left to right","placeholders":["spectacle box"]}, +{"id":"65968","label":"approaching wardrobe with your camera","template":"Approaching [something] with your camera","placeholders":["wardrobe"]}, +{"id":"109699","label":"pushing a toilet paper roll so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a toilet paper roll"]}, +{"id":"42650","label":"scooping sugar up with a spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","a spoon"]}, +{"id":"135620","label":"pouring water out of cup","template":"Pouring [something] out of [something]","placeholders":["water","cup"]}, +{"id":"117888","label":"twisting hair","template":"Twisting [something]","placeholders":["hair"]}, +{"id":"24299","label":"covering a lighter with a piece of paper","template":"Covering [something] with [something]","placeholders":["a lighter","a piece of paper"]}, +{"id":"204259","label":"moving red spoon away from blue spoon","template":"Moving [something] away from [something]","placeholders":["red spoon","blue spoon"]}, +{"id":"180556","label":"putting blue colour bottle cap into spectacle box","template":"Putting [something] into [something]","placeholders":["blue colour bottle cap","spectacle box"]}, +{"id":"84296","label":"plugging iphone cord into electric socket","template":"Plugging [something] into [something]","placeholders":["iphone cord","electric socket"]}, +{"id":"42077","label":"moving mobile and diary away from each other","template":"Moving [something] and [something] away from each other","placeholders":["mobile","diary"]}, +{"id":"36443","label":"lifting scissors with pen on it","template":"Lifting [something] with [something] on it","placeholders":["scissors","pen"]}, +{"id":"219134","label":"moving a deodorant up","template":"Moving [something] up","placeholders":["a deodorant"]}, +{"id":"40319","label":"putting phone underneath cloth","template":"Putting [something] underneath [something]","placeholders":["phone","cloth"]}, +{"id":"2320","label":"spinning comb that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["comb"]}, +{"id":"69566","label":"plugging cable into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cable","phone"]}, +{"id":"136722","label":"covering a plate with a towel","template":"Covering [something] with [something]","placeholders":["a plate","a towel"]}, +{"id":"135893","label":"hitting a nail with a hammer","template":"Hitting [something] with [something]","placeholders":["a nail","a hammer"]}, +{"id":"124037","label":"plugging plug into outlet","template":"Plugging [something] into [something]","placeholders":["plug","outlet"]}, +{"id":"68466","label":"tipping the squeeze over","template":"Tipping [something] over","placeholders":["the squeeze"]}, +{"id":"201017","label":"covering a cleansing pad with a paper","template":"Covering [something] with [something]","placeholders":["a cleansing pad","a paper"]}, +{"id":"196516","label":"removing muug, revealing coin behind","template":"Removing [something], revealing [something] behind","placeholders":["muug","coin"]}, +{"id":"53451","label":"pretending to take box from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["box","ground"]}, +{"id":"64651","label":"pushing water bottle onto another water bottle","template":"Pushing [something] onto [something]","placeholders":["water bottle","another water bottle"]}, +{"id":"35530","label":"moving bottle up","template":"Moving [something] up","placeholders":["bottle"]}, +{"id":"43944","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"47554","label":"tilting cup with comb on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["cup","comb"]}, +{"id":"200568","label":"throwing water-can in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["water-can"]}, +{"id":"62866","label":"approaching wardrobe with your camera","template":"Approaching [something] with your camera","placeholders":["wardrobe"]}, +{"id":"29155","label":"turning a deodorant upside down","template":"Turning [something] upside down","placeholders":["a deodorant"]}, +{"id":"14671","label":"rolling lemon fruit on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["lemon fruit"]}, +{"id":"105526","label":"opening a drawer","template":"Opening [something]","placeholders":["a drawer"]}, +{"id":"56175","label":"putting stapler that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["stapler"]}, +{"id":"208112","label":"pushing a tape with scissors","template":"Pushing [something] with [something]","placeholders":["a tape","scissors"]}, +{"id":"12891","label":"moving scotch tape down","template":"Moving [something] down","placeholders":["scotch tape"]}, +{"id":"207737","label":"pretending or trying and failing to twist pikachu plastic doll","template":"Pretending or trying and failing to twist [something]","placeholders":["pikachu plastic doll"]}, +{"id":"13096","label":"pushing shot glass from left to right","template":"Pushing [something] from left to right","placeholders":["shot glass"]}, +{"id":"195109","label":"putting toy in front of spectical box","template":"Putting [something] in front of [something]","placeholders":["toy","spectical box"]}, +{"id":"68373","label":"putting a pin upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pin"]}, +{"id":"18320","label":"attaching clasp to bar","template":"Attaching [something] to [something]","placeholders":["clasp","bar"]}, +{"id":"104854","label":"dropping apple into basket","template":"Dropping [something] into [something]","placeholders":["apple","basket"]}, +{"id":"9646","label":"cube falling like a rock","template":"[Something] falling like a rock","placeholders":["cube"]}, +{"id":"57009","label":"taking taking adapter","template":"Taking [one of many similar things on the table]","placeholders":["taking adapter"]}, +{"id":"29458","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"171004","label":"putting ruler next to mug","template":"Putting [something] next to [something]","placeholders":["ruler","mug"]}, +{"id":"196951","label":"showing that coin is inside container","template":"Showing that [something] is inside [something]","placeholders":["coin","container"]}, +{"id":"114475","label":"dropping paint bottle into cup","template":"Dropping [something] into [something]","placeholders":["paint bottle","cup"]}, +{"id":"61000","label":"throwing a small toy","template":"Throwing [something]","placeholders":["a small toy"]}, +{"id":"203731","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"77785","label":"dropping pen in front of pencil case","template":"Dropping [something] in front of [something]","placeholders":["pen","pencil case"]}, +{"id":"152051","label":"turning green water bottle upside down","template":"Turning [something] upside down","placeholders":["green water bottle"]}, +{"id":"118298","label":"putting bottle next to bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottle next to bottles"]}, +{"id":"65824","label":"dropping a matchbox in front of a plate","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a plate"]}, +{"id":"189640","label":"moving shoe up","template":"Moving [something] up","placeholders":["shoe"]}, +{"id":"28289","label":"taking a crayon out of a pot","template":"Taking [something] out of [something]","placeholders":["a crayon","a pot"]}, +{"id":"175432","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"95354","label":"putting tablet box upright on the table","template":"Putting [something] upright on the table","placeholders":["tablet box"]}, +{"id":"126781","label":"putting pen, keychain and pouch on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["pen","keychain","pouch"]}, +{"id":"157197","label":"plugging extention into socket","template":"Plugging [something] into [something]","placeholders":["extention","socket"]}, +{"id":"29703","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"158134","label":"taking mineral water","template":"Taking [one of many similar things on the table]","placeholders":["mineral water"]}, +{"id":"210344","label":"plugging a cable into the wall","template":"Plugging [something] into [something]","placeholders":["a cable","the wall"]}, +{"id":"201729","label":"tilting a plate with a spatula on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["a plate","a spatula"]}, +{"id":"219416","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"51601","label":"trying but failing to attach sheet of headache tablets to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["sheet of headache tablets","the wall"]}, +{"id":"187254","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"32909","label":"showing that a flask is empty","template":"Showing that [something] is empty","placeholders":["a flask"]}, +{"id":"99414","label":"pushing box so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["box"]}, +{"id":"104492","label":"covering clock with cloth","template":"Covering [something] with [something]","placeholders":["clock","cloth"]}, +{"id":"37528","label":"pulling black hair tie from left to right","template":"Pulling [something] from left to right","placeholders":["black hair tie"]}, +{"id":"171614","label":"closing drawer","template":"Closing [something]","placeholders":["drawer"]}, +{"id":"9054","label":"holding bottle cap in front of box","template":"Holding [something] in front of [something]","placeholders":["bottle cap","box"]}, +{"id":"127761","label":"putting toast into toaster","template":"Putting [something] into [something]","placeholders":["toast","toaster"]}, +{"id":"29323","label":"pretending to pick supplement bottle up","template":"Pretending to pick [something] up","placeholders":["supplement bottle"]}, +{"id":"102637","label":"dropping a cofee cup onto a backpack","template":"Dropping [something] onto [something]","placeholders":["a cofee cup","a backpack"]}, +{"id":"169770","label":"covering flashlight with paper bowl","template":"Covering [something] with [something]","placeholders":["flashlight","paper bowl"]}, +{"id":"83315","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"150634","label":"taking vegetable ice cream scoop","template":"Taking [one of many similar things on the table]","placeholders":["vegetable ice cream scoop"]}, +{"id":"50421","label":"taking bottle out of bowl","template":"Taking [something] out of [something]","placeholders":["bottle","bowl"]}, +{"id":"74292","label":"pretending to turn the bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["the bottle"]}, +{"id":"210861","label":"stuffing something into something","template":"Stuffing [something] into [something]","placeholders":["something","something"]}, +{"id":"39257","label":"pushing sunglasses off of table","template":"Pushing [something] off of [something]","placeholders":["sunglasses","table"]}, +{"id":"50546","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"182103","label":"tissue paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue paper"]}, +{"id":"85142","label":"pretending to put brush on a surface","template":"Pretending to put [something] on a surface","placeholders":["brush"]}, +{"id":"51793","label":"pretending to pick mobile phone up","template":"Pretending to pick [something] up","placeholders":["mobile phone"]}, +{"id":"168423","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"130921","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"148827","label":"dropping a cup in front of text books","template":"Dropping [something] in front of [something]","placeholders":["a cup","text books"]}, +{"id":"22486","label":"stacking 4 pennies","template":"Stacking [number of] [something]","placeholders":["4","pennies"]}, +{"id":"166397","label":"lifting up one end of stick, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["stick"]}, +{"id":"187851","label":"pretending to pick pen up","template":"Pretending to pick [something] up","placeholders":["pen"]}, +{"id":"14393","label":"putting scissors on a surface","template":"Putting [something] on a surface","placeholders":["scissors"]}, +{"id":"193856","label":"taking cup and saucer from table","template":"Taking [something] from [somewhere]","placeholders":["cup and saucer","table"]}, +{"id":"83341","label":"uncovering bracelet","template":"Uncovering [something]","placeholders":["bracelet"]}, +{"id":"175543","label":"spinning whiteboard marker that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["whiteboard marker"]}, +{"id":"80344","label":"letting an apple roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["an apple"]}, +{"id":"160274","label":"showing a fork next to a glass","template":"Showing [something] next to [something]","placeholders":["a fork","a glass"]}, +{"id":"88019","label":"covering pancile with sheed of paper","template":"Covering [something] with [something]","placeholders":["pancile","sheed of paper"]}, +{"id":"96829","label":"stuffing phone into case","template":"Stuffing [something] into [something]","placeholders":["phone","case"]}, +{"id":"152709","label":"holding teeezers over mouthwash","template":"Holding [something] over [something]","placeholders":["teeezers","mouthwash"]}, +{"id":"76081","label":"taking ball out of bowl","template":"Taking [something] out of [something]","placeholders":["ball","bowl"]}, +{"id":"90769","label":"letting enamel roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["enamel"]}, +{"id":"124013","label":"moving glass closer to bottle","template":"Moving [something] closer to [something]","placeholders":["glass","bottle"]}, +{"id":"205598","label":"twisting cap","template":"Twisting [something]","placeholders":["cap"]}, +{"id":"65069","label":"stuffing paper into bag","template":"Stuffing [something] into [something]","placeholders":["paper","bag"]}, +{"id":"46785","label":"pretending to pick bracelet up","template":"Pretending to pick [something] up","placeholders":["bracelet"]}, +{"id":"159959","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"214741","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"191875","label":"bending a card so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a card"]}, +{"id":"63808","label":"uncovering pen","template":"Uncovering [something]","placeholders":["pen"]}, +{"id":"108199","label":"putting phone on a surface","template":"Putting [something] on a surface","placeholders":["phone"]}, +{"id":"76453","label":"twisting usb cable","template":"Twisting [something]","placeholders":["usb cable"]}, +{"id":"194486","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"27217","label":"pushing a bottle with scissors","template":"Pushing [something] with [something]","placeholders":["a bottle","scissors"]}, +{"id":"111193","label":"putting coaster underneath cloth","template":"Putting [something] underneath [something]","placeholders":["coaster","cloth"]}, +{"id":"88986","label":"showing that cup is empty","template":"Showing that [something] is empty","placeholders":["cup"]}, +{"id":"120989","label":"moving lime and lime closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lime","lime"]}, +{"id":"115880","label":"uncovering eraser","template":"Uncovering [something]","placeholders":["eraser"]}, +{"id":"113414","label":"pretending to open box from videocard without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["box from videocard"]}, +{"id":"185664","label":"a kiwi being deflected from a litter bin","template":"[Something] being deflected from [something]","placeholders":["a kiwi","a litter bin"]}, +{"id":"190265","label":"pushing a card with a box","template":"Pushing [something] with [something]","placeholders":["a card","a box"]}, +{"id":"12682","label":"pushing pomegranate so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["pomegranate"]}, +{"id":"35391","label":"putting a beer can in front of a cup","template":"Putting [something] in front of [something]","placeholders":["a beer can","a cup"]}, +{"id":"165539","label":"lifting a surface with plastic container on it but not enough for it to slide down","template":"Lifting a surface with [something] on it but not enough for it to slide down","placeholders":["plastic container"]}, +{"id":"40877","label":"uncovering saucepan","template":"Uncovering [something]","placeholders":["saucepan"]}, +{"id":"111954","label":"bending a spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a spoon"]}, +{"id":"168084","label":"taking headphones out of bag","template":"Taking [something] out of [something]","placeholders":["headphones","bag"]}, +{"id":"166205","label":"pulling red watch case from right to left","template":"Pulling [something] from right to left","placeholders":["red watch case"]}, +{"id":"29050","label":"taking a colored pencil","template":"Taking [one of many similar things on the table]","placeholders":["a colored pencil"]}, +{"id":"116709","label":"pretending to spread air onto phone cover","template":"Pretending to spread air onto [something]","placeholders":["phone cover"]}, +{"id":"17810","label":"pushing shoe with clothes peg","template":"Pushing [something] with [something]","placeholders":["shoe","clothes peg"]}, +{"id":"164677","label":"pushing water bottle so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["water bottle"]}, +{"id":"167156","label":"putting a napkin that can't roll onto a slanted surface, so it stays where it is","template":"Putting [something] that can't roll onto a slanted surface, so it stays where it is","placeholders":["a napkin"]}, +{"id":"18610","label":"putting pen onto holder so it falls down","template":"Putting [something] onto [something else that cannot support it] so it falls down","placeholders":["pen","holder"]}, +{"id":"103589","label":"poking lipstick so that it falls over","template":"Poking [something] so that it falls over","placeholders":["lipstick"]}, +{"id":"183915","label":"pulling pen onto table","template":"Pulling [something] onto [something]","placeholders":["pen","table"]}, +{"id":"71894","label":"spinning red, hard, plastic toy ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["red, hard, plastic toy ball"]}, +{"id":"23486","label":"pouring water into a mug","template":"Pouring [something] into [something]","placeholders":["water","a mug"]}, +{"id":"71549","label":"letting a steel wheel roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a steel wheel"]}, +{"id":"204457","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"197377","label":"turning a bottle upside down","template":"Turning [something] upside down","placeholders":["a bottle"]}, +{"id":"220755","label":"moving a bottle and a box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a bottle","a box"]}, +{"id":"42290","label":"dropping lighter behind box","template":"Dropping [something] behind [something]","placeholders":["lighter","box"]}, +{"id":"220023","label":"pretending to poke lighter","template":"Pretending to poke [something]","placeholders":["lighter"]}, +{"id":"96610","label":"spinning egg so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["egg"]}, +{"id":"146104","label":"putting coin next to mug","template":"Putting [something] next to [something]","placeholders":["coin","mug"]}, +{"id":"175393","label":"poking stuffed cat so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["stuffed cat"]}, +{"id":"21781","label":"picking chair case up","template":"Picking [something] up","placeholders":["chair case"]}, +{"id":"56489","label":"spilling water behind door","template":"Spilling [something] behind [something]","placeholders":["water","door"]}, +{"id":"55421","label":"closing a pot","template":"Closing [something]","placeholders":["a pot"]}, +{"id":"101471","label":"plugging computer cord into computer","template":"Plugging [something] into [something]","placeholders":["computer cord","computer"]}, +{"id":"168369","label":"pretending to throw cup","template":"Pretending to throw [something]","placeholders":["cup"]}, +{"id":"19302","label":"price tag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["price tag"]}, +{"id":"174522","label":"squeezing apple","template":"Squeezing [something]","placeholders":["apple"]}, +{"id":"162318","label":"covering jar with lid","template":"Covering [something] with [something]","placeholders":["jar","lid"]}, +{"id":"182698","label":"hitting knee with paintbrush","template":"Hitting [something] with [something]","placeholders":["knee","paintbrush"]}, +{"id":"74252","label":"stuffing wrapper into yogurt cup","template":"Stuffing [something] into [something]","placeholders":["wrapper","yogurt cup"]}, +{"id":"79857","label":"laying cereal on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cereal"]}, +{"id":"201866","label":"dropping a peg onto a container","template":"Dropping [something] onto [something]","placeholders":["a peg","a container"]}, +{"id":"15848","label":"pushing jar so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["jar"]}, +{"id":"168690","label":"holding control behind game","template":"Holding [something] behind [something]","placeholders":["control","game"]}, +{"id":"107747","label":"attaching microphone to stand","template":"Attaching [something] to [something]","placeholders":["microphone","stand"]}, +{"id":"8318","label":"putting a marker on a surface","template":"Putting [something] on a surface","placeholders":["a marker"]}, +{"id":"54318","label":"bending swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["swab"]}, +{"id":"136539","label":"turning the camera right while filming fire extinguisher","template":"Turning the camera right while filming [something]","placeholders":["fire extinguisher"]}, +{"id":"4963","label":"lifting a hand with a pen on it","template":"Lifting [something] with [something] on it","placeholders":["a hand","a pen"]}, +{"id":"24550","label":"scooping sugar up with spoon","template":"Scooping [something] up with [something]","placeholders":["sugar","spoon"]}, +{"id":"201800","label":"turning tablet box upside down","template":"Turning [something] upside down","placeholders":["tablet box"]}, +{"id":"204053","label":"dropping ball in front of car","template":"Dropping [something] in front of [something]","placeholders":["ball","car"]}, +{"id":"212965","label":"showing aquarium to the camera","template":"Showing [something] to the camera","placeholders":["aquarium"]}, +{"id":"55788","label":"pouring gems into small bottle until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["gems","small bottle"]}, +{"id":"159537","label":"putting a spray bottle behind the packet","template":"Putting [something] behind [something]","placeholders":["a spray bottle","the packet"]}, +{"id":"171274","label":"pretending to take yellow ball from pile of yellow balls","template":"Pretending to take [something] from [somewhere]","placeholders":["yellow ball","pile of yellow balls"]}, +{"id":"101639","label":"pushing pen so it spins","template":"Pushing [something] so it spins","placeholders":["pen"]}, +{"id":"42966","label":"hanger being deflected from moving car","template":"[Something] being deflected from [something]","placeholders":["hanger","moving car"]}, +{"id":"128952","label":"covering a can with a napkin","template":"Covering [something] with [something]","placeholders":["a can","a napkin"]}, +{"id":"32201","label":"pulling glasses from left to right","template":"Pulling [something] from left to right","placeholders":["glasses"]}, +{"id":"180070","label":"pushing hotpot from right to left","template":"Pushing [something] from right to left","placeholders":["hotpot"]}, +{"id":"121858","label":"a lighter falling like a rock","template":"[Something] falling like a rock","placeholders":["a lighter"]}, +{"id":"103229","label":"moving pen and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["pen","spoon"]}, +{"id":"68087","label":"letting ball roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["ball"]}, +{"id":"68376","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"180965","label":"holding cup","template":"Holding [something]","placeholders":["cup"]}, +{"id":"215114","label":"moving toffee container towards the camera","template":"Moving [something] towards the camera","placeholders":["toffee container"]}, +{"id":"220234","label":"rolling clothpin on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["clothpin"]}, +{"id":"94348","label":"throwing tennis ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["tennis ball"]}, +{"id":"12980","label":"pretending to sprinkle air onto a mirror","template":"Pretending to sprinkle air onto [something]","placeholders":["a mirror"]}, +{"id":"176334","label":"throwing carton box","template":"Throwing [something]","placeholders":["carton box"]}, +{"id":"169002","label":"bending comb so that it deforms","template":"Bending [something] so that it deforms","placeholders":["comb"]}, +{"id":"136745","label":"covering cell phone with notebook","template":"Covering [something] with [something]","placeholders":["cell phone","notebook"]}, +{"id":"126058","label":"lifting a surface with a die on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a die"]}, +{"id":"110120","label":"putting a bottle upright on the table","template":"Putting [something] upright on the table","placeholders":["a bottle"]}, +{"id":"33495","label":"plugging stopper into drain but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["stopper","drain"]}, +{"id":"127667","label":"tearing a receipt just a little bit","template":"Tearing [something] just a little bit","placeholders":["a receipt"]}, +{"id":"54316","label":"spinning gluestick that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["gluestick"]}, +{"id":"72811","label":"moving button up","template":"Moving [something] up","placeholders":["button"]}, +{"id":"127337","label":"showing a vessel on top of the grinder","template":"Showing [something] on top of [something]","placeholders":["a vessel","the grinder"]}, +{"id":"27358","label":"stuffing a towel into a hat","template":"Stuffing [something] into [something]","placeholders":["a towel","a hat"]}, +{"id":"196426","label":"poking a stack of wood blocks without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["wood blocks"]}, +{"id":"122218","label":"pushing spoon so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["spoon"]}, +{"id":"101470","label":"phone falling like a rock","template":"[Something] falling like a rock","placeholders":["phone"]}, +{"id":"167419","label":"holding a ball in front of a door","template":"Holding [something] in front of [something]","placeholders":["a ball","a door"]}, +{"id":"32519","label":"spinning a penny so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a penny"]}, +{"id":"213105","label":"uncovering cellphone","template":"Uncovering [something]","placeholders":["cellphone"]}, +{"id":"66122","label":"tearing an envelope into two pieces","template":"Tearing [something] into two pieces","placeholders":["an envelope"]}, +{"id":"183108","label":"pretending to take battery from table","template":"Pretending to take [something] from [somewhere]","placeholders":["battery","table"]}, +{"id":"153776","label":"mp3 player falling like a rock","template":"[Something] falling like a rock","placeholders":["mp3 player"]}, +{"id":"167007","label":"picking book up","template":"Picking [something] up","placeholders":["book"]}, +{"id":"85935","label":"dropping cufflinks behind a padlock","template":"Dropping [something] behind [something]","placeholders":["cufflinks","a padlock"]}, +{"id":"146051","label":"dropping wallet behind mouse","template":"Dropping [something] behind [something]","placeholders":["wallet","mouse"]}, +{"id":"55257","label":"showing earrings to the camera","template":"Showing [something] to the camera","placeholders":["earrings"]}, +{"id":"92571","label":"failing to put pen drive into a pen cap because pen drive does not fit","template":"Failing to put [something] into [something] because [something] does not fit","placeholders":["pen drive","a pen cap","pen drive"]}, +{"id":"176313","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"107289","label":"putting pen into cup","template":"Putting [something] into [something]","placeholders":["pen","cup"]}, +{"id":"8444","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"213727","label":"taking smart phone out of handbag","template":"Taking [something] out of [something]","placeholders":["smart phone","handbag"]}, +{"id":"8800","label":"turning the camera right while filming poster","template":"Turning the camera right while filming [something]","placeholders":["poster"]}, +{"id":"101989","label":"taking coin out of mug","template":"Taking [something] out of [something]","placeholders":["coin","mug"]}, +{"id":"187743","label":"pulling two ends of something so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["something"]}, +{"id":"15112","label":"pushing a cup so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a cup"]}, +{"id":"20051","label":"turning the camera left while filming iron","template":"Turning the camera left while filming [something]","placeholders":["iron"]}, +{"id":"44211","label":"holding crayon over table","template":"Holding [something] over [something]","placeholders":["crayon","table"]}, +{"id":"139512","label":"spinning a bottle so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a bottle"]}, +{"id":"123467","label":"putting car key on a surface","template":"Putting [something] on a surface","placeholders":["car key"]}, +{"id":"117874","label":"moving a bottle and a water container closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a bottle","a water container"]}, +{"id":"91295","label":"dropping wallet in front of mouse","template":"Dropping [something] in front of [something]","placeholders":["wallet","mouse"]}, +{"id":"129123","label":"folding napkin","template":"Folding [something]","placeholders":["napkin"]}, +{"id":"20609","label":"putting coaster and remote on the table","template":"Putting [something] and [something] on the table","placeholders":["coaster","remote"]}, +{"id":"139085","label":"pushing hair gum from left to right","template":"Pushing [something] from left to right","placeholders":["hair gum"]}, +{"id":"26381","label":"poking a hole into a piece of paper","template":"Poking a hole into [some substance]","placeholders":["a piece of paper"]}, +{"id":"166275","label":"a water can colliding with another water can and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["a water can","another water can"]}, +{"id":"38302","label":"plugging a charger into a socket","template":"Plugging [something] into [something]","placeholders":["a charger","a socket"]}, +{"id":"10873","label":"taking glass out of drawer","template":"Taking [something] out of [something]","placeholders":["glass","drawer"]}, +{"id":"75268","label":"laying a water bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a water bottle"]}, +{"id":"104999","label":"pulling paper from behind of paper","template":"Pulling [something] from behind of [something]","placeholders":["paper","paper"]}, +{"id":"8235","label":"holding pencil in front of tape","template":"Holding [something] in front of [something]","placeholders":["pencil","tape"]}, +{"id":"209264","label":"holding a pot over a bowl","template":"Holding [something] over [something]","placeholders":["a pot","a bowl"]}, +{"id":"192155","label":"covering water bottle with cap","template":"Covering [something] with [something]","placeholders":["water bottle","cap"]}, +{"id":"157822","label":"holding a mobile next to a pen","template":"Holding [something] next to [something]","placeholders":["a mobile","a pen"]}, +{"id":"197702","label":"dropping cow next to box","template":"Dropping [something] next to [something]","placeholders":["cow","box"]}, +{"id":"94224","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"103119","label":"putting a calculator and paper weight on the table","template":"Putting [something] and [something] on the table","placeholders":["a calculator","paper weight"]}, +{"id":"66683","label":"putting paper punching machine that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["paper punching machine"]}, +{"id":"192546","label":"taking a pencil out of pencil holder","template":"Taking [something] out of [something]","placeholders":["a pencil","pencil holder"]}, +{"id":"32233","label":"turning the camera downwards while filming toothpaste tube","template":"Turning the camera downwards while filming [something]","placeholders":["toothpaste tube"]}, +{"id":"175533","label":"turning the camera upwards while filming laptop","template":"Turning the camera upwards while filming [something]","placeholders":["laptop"]}, +{"id":"55164","label":"lifting up one end of a pen without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a pen"]}, +{"id":"123498","label":"dropping pink hat in front of bowl","template":"Dropping [something] in front of [something]","placeholders":["pink hat","bowl"]}, +{"id":"83132","label":"pushing ring so it spins","template":"Pushing [something] so it spins","placeholders":["ring"]}, +{"id":"191067","label":"pushing something so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["something"]}, +{"id":"167192","label":"uncovering handy","template":"Uncovering [something]","placeholders":["handy"]}, +{"id":"40166","label":"putting apple into bowl","template":"Putting [something] into [something]","placeholders":["apple","bowl"]}, +{"id":"194342","label":"putting a lighter on a surface","template":"Putting [something] on a surface","placeholders":["a lighter"]}, +{"id":"9633","label":"dropping eraser in front of cup","template":"Dropping [something] in front of [something]","placeholders":["eraser","cup"]}, +{"id":"72135","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"77551","label":"pretending to open boottle cap without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["boottle cap"]}, +{"id":"208488","label":"throwing shirt against wall","template":"Throwing [something] against [something]","placeholders":["shirt","wall"]}, +{"id":"54075","label":"putting a glass","template":"Putting [something similar to other things that are already on the table]","placeholders":["a glass"]}, +{"id":"141735","label":"pretending to put mouse next to keyboard","template":"Pretending to put [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"218168","label":"uncovering onion","template":"Uncovering [something]","placeholders":["onion"]}, +{"id":"12696","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"209741","label":"letting packing tape roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["packing tape"]}, +{"id":"4521","label":"piling cards up","template":"Piling [something] up","placeholders":["cards"]}, +{"id":"165610","label":"turning a jar of peanutbutter upside down","template":"Turning [something] upside down","placeholders":["a jar of peanutbutter"]}, +{"id":"123768","label":"a pencil colliding with a bottle and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["a pencil","a bottle"]}, +{"id":"187347","label":"turning the camera upwards while filming plant","template":"Turning the camera upwards while filming [something]","placeholders":["plant"]}, +{"id":"50341","label":"tipping air freshener over","template":"Tipping [something] over","placeholders":["air freshener"]}, +{"id":"194782","label":"showing that this plastic ontainer is empty","template":"Showing that [something] is empty","placeholders":["this plastic ontainer"]}, +{"id":"107108","label":"squeezing a clothespin","template":"Squeezing [something]","placeholders":["a clothespin"]}, +{"id":"19292","label":"poking a stack of boxes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["boxes"]}, +{"id":"58713","label":"laying nail polish bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["nail polish bottle"]}, +{"id":"61566","label":"moving something up","template":"Moving [something] up","placeholders":["something"]}, +{"id":"22712","label":"plugging cord into power strip but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","power strip"]}, +{"id":"213513","label":"covering pen with paper","template":"Covering [something] with [something]","placeholders":["pen","paper"]}, +{"id":"186162","label":"grocery bag falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["grocery bag"]}, +{"id":"130201","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"214367","label":"pretending to pick lighter up","template":"Pretending to pick [something] up","placeholders":["lighter"]}, +{"id":"42866","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"20646","label":"holding cup next to medicine bottle","template":"Holding [something] next to [something]","placeholders":["cup","medicine bottle"]}, +{"id":"77895","label":"showing soda bottle to the camera","template":"Showing [something] to the camera","placeholders":["soda bottle"]}, +{"id":"105986","label":"throwing battery in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["battery"]}, +{"id":"129902","label":"pretending to close bottle without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["bottle"]}, +{"id":"38794","label":"dropping a coin onto a card","template":"Dropping [something] onto [something]","placeholders":["a coin","a card"]}, +{"id":"117231","label":"lifting up one end of a ruler, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a ruler"]}, +{"id":"166190","label":"throwing cloth","template":"Throwing [something]","placeholders":["cloth"]}, +{"id":"75781","label":"lifting a football up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a football"]}, +{"id":"45018","label":"pushing jar so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["jar"]}, +{"id":"76810","label":"showing that teabag is inside box","template":"Showing that [something] is inside [something]","placeholders":["teabag","box"]}, +{"id":"111254","label":"moving screw down","template":"Moving [something] down","placeholders":["screw"]}, +{"id":"84984","label":"moving something away from something","template":"Moving [something] away from [something]","placeholders":["something","something"]}, +{"id":"174825","label":"spinning toothbrush that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothbrush"]}, +{"id":"197926","label":"spinning a pen so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a pen"]}, +{"id":"31477","label":"turning the camera upwards while filming post box","template":"Turning the camera upwards while filming [something]","placeholders":["post box"]}, +{"id":"217536","label":"wiping soap off of counter","template":"Wiping [something] off of [something]","placeholders":["soap","counter"]}, +{"id":"61693","label":"dropping bottle in front of leptop","template":"Dropping [something] in front of [something]","placeholders":["bottle","leptop"]}, +{"id":"201468","label":"turning the camera downwards while filming radiator","template":"Turning the camera downwards while filming [something]","placeholders":["radiator"]}, +{"id":"114233","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"159987","label":"showing that pink hair clip is inside spectacle box","template":"Showing that [something] is inside [something]","placeholders":["pink hair clip","spectacle box"]}, +{"id":"124829","label":"dropping a matchstick behind a padlock","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a padlock"]}, +{"id":"108665","label":"putting piggy bank onto notebook","template":"Putting [something] onto [something]","placeholders":["piggy bank","notebook"]}, +{"id":"219318","label":"tearing a paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a paper"]}, +{"id":"180167","label":"pushing a chair so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a chair"]}, +{"id":"45913","label":"paper plate falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper plate"]}, +{"id":"139331","label":"putting coin into cup","template":"Putting [something] into [something]","placeholders":["coin","cup"]}, +{"id":"5571","label":"dropping a key behind a remote","template":"Dropping [something] behind [something]","placeholders":["a key","a remote"]}, +{"id":"50413","label":"plugging cord into cord but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","cord"]}, +{"id":"193713","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"9519","label":"showing that a cup is empty","template":"Showing that [something] is empty","placeholders":["a cup"]}, +{"id":"188485","label":"moving remote up","template":"Moving [something] up","placeholders":["remote"]}, +{"id":"40007","label":"showing that food container is empty","template":"Showing that [something] is empty","placeholders":["food container"]}, +{"id":"130735","label":"putting tape into box","template":"Putting [something] into [something]","placeholders":["tape","box"]}, +{"id":"55368","label":"covering can with cloth","template":"Covering [something] with [something]","placeholders":["can","cloth"]}, +{"id":"127452","label":"lifting up one end of a book without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["a book"]}, +{"id":"7255","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"216846","label":"pretending to pour water out of glass, but glass is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","glass","glass"]}, +{"id":"82271","label":"turning the camera upwards while filming squeezable strawberry jam","template":"Turning the camera upwards while filming [something]","placeholders":["squeezable strawberry jam"]}, +{"id":"59605","label":"uncovering spring","template":"Uncovering [something]","placeholders":["spring"]}, +{"id":"145719","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"122885","label":"piling books up","template":"Piling [something] up","placeholders":["books"]}, +{"id":"54069","label":"turning the camera left while filming jackfruits","template":"Turning the camera left while filming [something]","placeholders":["jackfruits"]}, +{"id":"120800","label":"lifting a spoon up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a spoon"]}, +{"id":"29648","label":"pulling two ends of watch but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["watch"]}, +{"id":"11533","label":"holding lemon in front of cup","template":"Holding [something] in front of [something]","placeholders":["lemon","cup"]}, +{"id":"37388","label":"letting bottle roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["bottle"]}, +{"id":"148151","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"95793","label":"showing deo bottle behind jar","template":"Showing [something] behind [something]","placeholders":["deo bottle","jar"]}, +{"id":"132916","label":"throwing a hairband in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a hairband"]}, +{"id":"196788","label":"holding snack maker over the stove","template":"Holding [something] over [something]","placeholders":["snack maker","the stove"]}, +{"id":"32776","label":"putting book underneath notebook","template":"Putting [something] underneath [something]","placeholders":["book","notebook"]}, +{"id":"54506","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"163960","label":"lifting paper up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["paper"]}, +{"id":"162700","label":"scooping dirt up with dustpan","template":"Scooping [something] up with [something]","placeholders":["dirt","dustpan"]}, +{"id":"47435","label":"holding hand saw blade next to the helmet","template":"Holding [something] next to [something]","placeholders":["hand saw blade","the helmet"]}, +{"id":"76407","label":"holding selfie stick in front of chair","template":"Holding [something] in front of [something]","placeholders":["selfie stick","chair"]}, +{"id":"54445","label":"turning computer mouse upside down","template":"Turning [something] upside down","placeholders":["computer mouse"]}, +{"id":"174822","label":"holding globe in front of painting","template":"Holding [something] in front of [something]","placeholders":["globe","painting"]}, +{"id":"21603","label":"putting jar upright on the table","template":"Putting [something] upright on the table","placeholders":["jar"]}, +{"id":"11508","label":"covering bottle with plastic bag","template":"Covering [something] with [something]","placeholders":["bottle","plastic bag"]}, +{"id":"148325","label":"spinning plastic bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["plastic bottle"]}, +{"id":"193199","label":"lifting up one end of a floor mat, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a floor mat"]}, +{"id":"116734","label":"pushing fan so it spins","template":"Pushing [something] so it spins","placeholders":["fan"]}, +{"id":"148133","label":"pretending to put pencil into mug","template":"Pretending to put [something] into [something]","placeholders":["pencil","mug"]}, +{"id":"182217","label":"hitting a pillow with a spoon","template":"Hitting [something] with [something]","placeholders":["a pillow","a spoon"]}, +{"id":"13996","label":"putting keys next to mug","template":"Putting [something] next to [something]","placeholders":["keys","mug"]}, +{"id":"180326","label":"touching (without moving) top of tank","template":"Touching (without moving) [part] of [something]","placeholders":["top","tank"]}, +{"id":"99723","label":"poking bottle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["bottle"]}, +{"id":"93042","label":"pretending to pick a/c remote up","template":"Pretending to pick [something] up","placeholders":["a/c remote"]}, +{"id":"83878","label":"moving away from water bottle with your camera","template":"Moving away from [something] with your camera","placeholders":["water bottle"]}, +{"id":"78710","label":"stuffing shirt into bag","template":"Stuffing [something] into [something]","placeholders":["shirt","bag"]}, +{"id":"138149","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"193822","label":"pretending to take pineapple from ground","template":"Pretending to take [something] from [somewhere]","placeholders":["pineapple","ground"]}, +{"id":"192829","label":"bending cotton swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["cotton swab"]}, +{"id":"31701","label":"pulling a toy car from left to right","template":"Pulling [something] from left to right","placeholders":["a toy car"]}, +{"id":"136778","label":"pretending to turn pink water bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["pink water bottle"]}, +{"id":"33946","label":"pulling phone from behind of camera","template":"Pulling [something] from behind of [something]","placeholders":["phone","camera"]}, +{"id":"23867","label":"turning candle upside down","template":"Turning [something] upside down","placeholders":["candle"]}, +{"id":"108248","label":"putting 3 screw drivers onto brown note","template":"Putting [number of] [something] onto [something]","placeholders":["3","screw drivers","brown note"]}, +{"id":"154390","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"107551","label":"poking a book so that it falls over","template":"Poking [something] so that it falls over","placeholders":["a book"]}, +{"id":"34837","label":"dropping shampoo onto floor","template":"Dropping [something] onto [something]","placeholders":["shampoo","floor"]}, +{"id":"65116","label":"hitting laptop with notebook","template":"Hitting [something] with [something]","placeholders":["laptop","notebook"]}, +{"id":"209951","label":"box colliding with box and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["box","box"]}, +{"id":"29092","label":"tipping cup with spoon over, so spoon falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["cup","spoon","spoon"]}, +{"id":"58500","label":"moving remote across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["remote"]}, +{"id":"34085","label":"squeezing glue","template":"Squeezing [something]","placeholders":["glue"]}, +{"id":"83762","label":"pouring water into bowl","template":"Pouring [something] into [something]","placeholders":["water","bowl"]}, +{"id":"49072","label":"lifting a plate with cutlery on it","template":"Lifting [something] with [something] on it","placeholders":["a plate","cutlery"]}, +{"id":"134048","label":"stuffing pens into pouch","template":"Stuffing [something] into [something]","placeholders":["pens","pouch"]}, +{"id":"181524","label":"moving pen and flower closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","flower"]}, +{"id":"188126","label":"closing hot case","template":"Closing [something]","placeholders":["hot case"]}, +{"id":"152050","label":"taking clips out of a container","template":"Taking [something] out of [something]","placeholders":["clips","a container"]}, +{"id":"47566","label":"dropping a matchbox behind a cup","template":"Dropping [something] behind [something]","placeholders":["a matchbox","a cup"]}, +{"id":"208855","label":"twisting tissue","template":"Twisting [something]","placeholders":["tissue"]}, +{"id":"3159","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"17817","label":"putting a fidget spinner on a surface","template":"Putting [something] on a surface","placeholders":["a fidget spinner"]}, +{"id":"1255","label":"plugging a plug head into an extension lead but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["a plug head","an extension lead"]}, +{"id":"204904","label":"throwing pillow","template":"Throwing [something]","placeholders":["pillow"]}, +{"id":"141073","label":"bending coat hanger so that it deforms","template":"Bending [something] so that it deforms","placeholders":["coat hanger"]}, +{"id":"192236","label":"showing shot glass to the camera","template":"Showing [something] to the camera","placeholders":["shot glass"]}, +{"id":"7113","label":"moving a ball and a glass figure away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a ball","a glass figure"]}, +{"id":"213298","label":"pushing rubix cube so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["rubix cube"]}, +{"id":"187696","label":"putting a bottle with other bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bottle with other bottles"]}, +{"id":"101044","label":"turning the camera upwards while filming a dream catcher","template":"Turning the camera upwards while filming [something]","placeholders":["a dream catcher"]}, +{"id":"205240","label":"spilling coffee onto a dinner plate","template":"Spilling [something] onto [something]","placeholders":["coffee","a dinner plate"]}, +{"id":"27779","label":"stuffing jacket into handbag","template":"Stuffing [something] into [something]","placeholders":["jacket","handbag"]}, +{"id":"42787","label":"putting candy bar upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["candy bar"]}, +{"id":"186565","label":"letting cosmetic roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["cosmetic"]}, +{"id":"24049","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"211128","label":"pushing a weight so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a weight"]}, +{"id":"86454","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"112659","label":"laying bottle on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["bottle"]}, +{"id":"98345","label":"holding book over books","template":"Holding [something] over [something]","placeholders":["book","books"]}, +{"id":"99268","label":"plugging allout into plug but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["allout","plug"]}, +{"id":"185040","label":"tearing piece of bread into two pieces","template":"Tearing [something] into two pieces","placeholders":["piece of bread"]}, +{"id":"25491","label":"covering torch lighter with towel","template":"Covering [something] with [something]","placeholders":["torch lighter","towel"]}, +{"id":"40681","label":"tipping something with something in it over, so something in it falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["something","something in it","something in it"]}, +{"id":"174361","label":"pretending to pick red pen up","template":"Pretending to pick [something] up","placeholders":["red pen"]}, +{"id":"30014","label":"touching (without moving) leaves of a plant","template":"Touching (without moving) [part] of [something]","placeholders":["leaves","a plant"]}, +{"id":"57631","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"22699","label":"putting vase on a surface","template":"Putting [something] on a surface","placeholders":["vase"]}, +{"id":"84851","label":"folding t-shirt","template":"Folding [something]","placeholders":["t-shirt"]}, +{"id":"95886","label":"holding cup next to chair","template":"Holding [something] next to [something]","placeholders":["cup","chair"]}, +{"id":"178684","label":"showing that lid is empty","template":"Showing that [something] is empty","placeholders":["lid"]}, +{"id":"84109","label":"lifting a bottle with a box on it","template":"Lifting [something] with [something] on it","placeholders":["a bottle","a box"]}, +{"id":"160082","label":"putting a plastic bottle on the edge of a stool so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a plastic bottle","a stool"]}, +{"id":"181873","label":"pushing a cup with a stapler","template":"Pushing [something] with [something]","placeholders":["a cup","a stapler"]}, +{"id":"59866","label":"pulling a disc out of a paper sleeve","template":"Pulling [something] out of [something]","placeholders":["a disc","a paper sleeve"]}, +{"id":"144407","label":"plugging a plug into a socket","template":"Plugging [something] into [something]","placeholders":["a plug","a socket"]}, +{"id":"214289","label":"putting purple balloon pump on a surface","template":"Putting [something] on a surface","placeholders":["purple balloon pump"]}, +{"id":"220041","label":"holding hand over head","template":"Holding [something] over [something]","placeholders":["hand","head"]}, +{"id":"76625","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"85534","label":"pouring peanuts into a glass","template":"Pouring [something] into [something]","placeholders":["peanuts","a glass"]}, +{"id":"105278","label":"hitting pikachu plush with pen","template":"Hitting [something] with [something]","placeholders":["pikachu plush","pen"]}, +{"id":"132931","label":"pretending to put a pen next to a bag","template":"Pretending to put [something] next to [something]","placeholders":["a pen","a bag"]}, +{"id":"42689","label":"showing that container is empty","template":"Showing that [something] is empty","placeholders":["container"]}, +{"id":"177502","label":"opening a door","template":"Opening [something]","placeholders":["a door"]}, +{"id":"205583","label":"tipping bottle over","template":"Tipping [something] over","placeholders":["bottle"]}, +{"id":"126834","label":"dropping a book next to a spoon","template":"Dropping [something] next to [something]","placeholders":["a book","a spoon"]}, +{"id":"117298","label":"spinning a wooden ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a wooden ball"]}, +{"id":"78197","label":"uncovering stone","template":"Uncovering [something]","placeholders":["stone"]}, +{"id":"119483","label":"uncovering a phone","template":"Uncovering [something]","placeholders":["a phone"]}, +{"id":"217531","label":"stacking two plates","template":"Stacking [number of] [something]","placeholders":["two","plates"]}, +{"id":"177943","label":"pouring soda out of cup","template":"Pouring [something] out of [something]","placeholders":["soda","cup"]}, +{"id":"83008","label":"hitting a pillow with a stick","template":"Hitting [something] with [something]","placeholders":["a pillow","a stick"]}, +{"id":"116888","label":"turning the camera left while filming small fresh mint","template":"Turning the camera left while filming [something]","placeholders":["small fresh mint"]}, +{"id":"448","label":"opening laptop","template":"Opening [something]","placeholders":["laptop"]}, +{"id":"84278","label":"throwing ball against wall","template":"Throwing [something] against [something]","placeholders":["ball","wall"]}, +{"id":"149593","label":"showing green chalk next to spectacle","template":"Showing [something] next to [something]","placeholders":["green chalk","spectacle"]}, +{"id":"110423","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"166809","label":"showing matchbox on top of jar","template":"Showing [something] on top of [something]","placeholders":["matchbox","jar"]}, +{"id":"115435","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"159750","label":"holding cushion behind chair","template":"Holding [something] behind [something]","placeholders":["cushion","chair"]}, +{"id":"7068","label":"plugging usb device into usb port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb device","usb port"]}, +{"id":"27085","label":"trying to bend a textbook so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a textbook"]}, +{"id":"52685","label":"plugging plug into plug socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","plug socket"]}, +{"id":"153335","label":"tipping cup over","template":"Tipping [something] over","placeholders":["cup"]}, +{"id":"170390","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"145160","label":"dropping silver container into plastic-container","template":"Dropping [something] into [something]","placeholders":["silver container","plastic-container"]}, +{"id":"64581","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"125329","label":"pretending to take a ruler out of a little box","template":"Pretending to take [something] out of [something]","placeholders":["a ruler","a little box"]}, +{"id":"36279","label":"tipping a bottle of lotion over","template":"Tipping [something] over","placeholders":["a bottle of lotion"]}, +{"id":"6082","label":"showing a wallet next to remote","template":"Showing [something] next to [something]","placeholders":["a wallet","remote"]}, +{"id":"24255","label":"approaching cucumber with your camera","template":"Approaching [something] with your camera","placeholders":["cucumber"]}, +{"id":"10768","label":"plugging a cord into an outlet","template":"Plugging [something] into [something]","placeholders":["a cord","an outlet"]}, +{"id":"6251","label":"showing perfume bottle behind lantern","template":"Showing [something] behind [something]","placeholders":["perfume bottle","lantern"]}, +{"id":"177686","label":"pushing can so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["can"]}, +{"id":"174868","label":"turning the camera downwards while filming red booklet","template":"Turning the camera downwards while filming [something]","placeholders":["red booklet"]}, +{"id":"78012","label":"dropping tissue onto bowl","template":"Dropping [something] onto [something]","placeholders":["tissue","bowl"]}, +{"id":"180866","label":"holding the envelope next to business card","template":"Holding [something] next to [something]","placeholders":["the envelope","business card"]}, +{"id":"19362","label":"pushing cigarette lighter off of note bok","template":"Pushing [something] off of [something]","placeholders":["cigarette lighter","note bok"]}, +{"id":"171038","label":"pretending to put hat behind shoe","template":"Pretending to put [something] behind [something]","placeholders":["hat","shoe"]}, +{"id":"147795","label":"pushing a key so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a key"]}, +{"id":"41518","label":"pushing a textmarker so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a textmarker"]}, +{"id":"151684","label":"pretending to pick ballpen up","template":"Pretending to pick [something] up","placeholders":["ballpen"]}, +{"id":"115006","label":"lifting a mirror with a comb on it","template":"Lifting [something] with [something] on it","placeholders":["a mirror","a comb"]}, +{"id":"94027","label":"putting sticky note onto book","template":"Putting [something] onto [something]","placeholders":["sticky note","book"]}, +{"id":"84780","label":"holding bottle in front of box","template":"Holding [something] in front of [something]","placeholders":["bottle","box"]}, +{"id":"145501","label":"tipping mug with clementine over, so clementine falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["mug","clementine","clementine"]}, +{"id":"22807","label":"letting plastic hollow pipe roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["plastic hollow pipe"]}, +{"id":"18058","label":"spinning coin so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["coin"]}, +{"id":"174612","label":"pouring water into a glass until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["water","a glass"]}, +{"id":"219912","label":"showing a photo of myself to the camera","template":"Showing a photo of [something] to the camera","placeholders":["myself"]}, +{"id":"151021","label":"taking an earring","template":"Taking [one of many similar things on the table]","placeholders":["an earring"]}, +{"id":"100101","label":"moving pen up","template":"Moving [something] up","placeholders":["pen"]}, +{"id":"90595","label":"pretending to put a plant next to a book","template":"Pretending to put [something] next to [something]","placeholders":["a plant","a book"]}, +{"id":"132118","label":"pretending to pick heart up","template":"Pretending to pick [something] up","placeholders":["heart"]}, +{"id":"146345","label":"video game case colliding with a box and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["video game case","a box"]}, +{"id":"4208","label":"sprinkling spray onto glasses","template":"Sprinkling [something] onto [something]","placeholders":["spray","glasses"]}, +{"id":"141201","label":"pushing keys so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["keys"]}, +{"id":"137019","label":"holding a glass next to a plant","template":"Holding [something] next to [something]","placeholders":["a glass","a plant"]}, +{"id":"55921","label":"lifting marker pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["marker pen"]}, +{"id":"108473","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"23157","label":"letting pen roll up a slanted surface, so it rolls back down","template":"Letting [something] roll up a slanted surface, so it rolls back down","placeholders":["pen"]}, +{"id":"115742","label":"pretending to poke a cat","template":"Pretending to poke [something]","placeholders":["a cat"]}, +{"id":"7601","label":"bending a cotton swab so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a cotton swab"]}, +{"id":"125118","label":"uncovering a fork","template":"Uncovering [something]","placeholders":["a fork"]}, +{"id":"4477","label":"dropping cup in front of cup","template":"Dropping [something] in front of [something]","placeholders":["cup","cup"]}, +{"id":"195255","label":"spilling water next to coffee mug","template":"Spilling [something] next to [something]","placeholders":["water","coffee mug"]}, +{"id":"11344","label":"pushing blanket from right to left","template":"Pushing [something] from right to left","placeholders":["blanket"]}, +{"id":"140381","label":"pretending to throw a glass","template":"Pretending to throw [something]","placeholders":["a glass"]}, +{"id":"57849","label":"unfolding cloth","template":"Unfolding [something]","placeholders":["cloth"]}, +{"id":"66863","label":"holding a toothpick over a cup","template":"Holding [something] over [something]","placeholders":["a toothpick","a cup"]}, +{"id":"161405","label":"unfolding cookbook","template":"Unfolding [something]","placeholders":["cookbook"]}, +{"id":"140410","label":"moving a wristwatch and a ball closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["a wristwatch","a ball"]}, +{"id":"208775","label":"pretending to be tearing t shirt","template":"Pretending to be tearing [something that is not tearable]","placeholders":["t shirt"]}, +{"id":"98534","label":"pushing box from right to left","template":"Pushing [something] from right to left","placeholders":["box"]}, +{"id":"78928","label":"pouring water onto glass","template":"Pouring [something] onto [something]","placeholders":["water","glass"]}, +{"id":"126365","label":"opening tumbler cap","template":"Opening [something]","placeholders":["tumbler cap"]}, +{"id":"98258","label":"pretending to throw shoe","template":"Pretending to throw [something]","placeholders":["shoe"]}, +{"id":"127924","label":"pretending to open jewell box without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["jewell box"]}, +{"id":"36349","label":"holding tool over box","template":"Holding [something] over [something]","placeholders":["tool","box"]}, +{"id":"1282","label":"moving aim toothpaste down","template":"Moving [something] down","placeholders":["aim toothpaste"]}, +{"id":"175755","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"15968","label":"moving lipbalm and nailpolish closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["lipbalm","nailpolish"]}, +{"id":"149914","label":"twisting a remote","template":"Twisting [something]","placeholders":["a remote"]}, +{"id":"130543","label":"opening medicine bottle","template":"Opening [something]","placeholders":["medicine bottle"]}, +{"id":"43964","label":"spilling water onto a plank of wood","template":"Spilling [something] onto [something]","placeholders":["water","a plank of wood"]}, +{"id":"31979","label":"pushing bottle of shampoo so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["bottle of shampoo"]}, +{"id":"192096","label":"bending a ruler so that it deforms","template":"Bending [something] so that it deforms","placeholders":["a ruler"]}, +{"id":"170660","label":"bottle colliding with bottle and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle"]}, +{"id":"644","label":"opening a jar","template":"Opening [something]","placeholders":["a jar"]}, +{"id":"55208","label":"poking a cup so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a cup"]}, +{"id":"18353","label":"putting apple on a surface","template":"Putting [something] on a surface","placeholders":["apple"]}, +{"id":"46275","label":"plugging a laptop into a plug extender","template":"Plugging [something] into [something]","placeholders":["a laptop","a plug extender"]}, +{"id":"21856","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"25101","label":"showing that a bowl is empty","template":"Showing that [something] is empty","placeholders":["a bowl"]}, +{"id":"104511","label":"tearing sheet of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["sheet of paper"]}, +{"id":"142046","label":"pulling a wallet from right to left","template":"Pulling [something] from right to left","placeholders":["a wallet"]}, +{"id":"92383","label":"turning a pencil sharpener upside down","template":"Turning [something] upside down","placeholders":["a pencil sharpener"]}, +{"id":"128381","label":"uncovering chalk","template":"Uncovering [something]","placeholders":["chalk"]}, +{"id":"22568","label":"pretending to take screwdriver from table","template":"Pretending to take [something] from [somewhere]","placeholders":["screwdriver","table"]}, +{"id":"110203","label":"unfolding news paper","template":"Unfolding [something]","placeholders":["news paper"]}, +{"id":"93097","label":"opening a bottle","template":"Opening [something]","placeholders":["a bottle"]}, +{"id":"218808","label":"squeezing red elmo stuffed animal","template":"Squeezing [something]","placeholders":["red elmo stuffed animal"]}, +{"id":"136045","label":"pushing white hand gel from right to left","template":"Pushing [something] from right to left","placeholders":["white hand gel"]}, +{"id":"145333","label":"picking controler up","template":"Picking [something] up","placeholders":["controler"]}, +{"id":"103924","label":"pretending or failing to wipe stain off of cabinet","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","cabinet"]}, +{"id":"143695","label":"dropping raw egg into the floor","template":"Dropping [something] into [something]","placeholders":["raw egg","the floor"]}, +{"id":"128710","label":"plugging usb bluetooth into usb port but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["usb bluetooth","usb port"]}, +{"id":"56993","label":"putting globe toy upright on the table","template":"Putting [something] upright on the table","placeholders":["globe toy"]}, +{"id":"151439","label":"pretending to be tearing a beer mat","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a beer mat"]}, +{"id":"149113","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"81577","label":"pushing marker from right to left","template":"Pushing [something] from right to left","placeholders":["marker"]}, +{"id":"170406","label":"throwing the ball against the shoe","template":"Throwing [something] against [something]","placeholders":["the ball","the shoe"]}, +{"id":"6209","label":"moving umbrella up","template":"Moving [something] up","placeholders":["umbrella"]}, +{"id":"133156","label":"showing bicycle to the camera","template":"Showing [something] to the camera","placeholders":["bicycle"]}, +{"id":"204986","label":"dropping headphones onto pillow","template":"Dropping [something] onto [something]","placeholders":["headphones","pillow"]}, +{"id":"80033","label":"a potato falling like a rock","template":"[Something] falling like a rock","placeholders":["a potato"]}, +{"id":"55953","label":"putting a fork and a knife on the table","template":"Putting [something] and [something] on the table","placeholders":["a fork","a knife"]}, +{"id":"178690","label":"holding pepperoni slices","template":"Holding [something]","placeholders":["pepperoni slices"]}, +{"id":"36954","label":"bending tea filter so that it deforms","template":"Bending [something] so that it deforms","placeholders":["tea filter"]}, +{"id":"189650","label":"holding book over box","template":"Holding [something] over [something]","placeholders":["book","box"]}, +{"id":"174355","label":"pulling marker pen from left to right","template":"Pulling [something] from left to right","placeholders":["marker pen"]}, +{"id":"212751","label":"moving the book and the magazine away from each other","template":"Moving [something] and [something] away from each other","placeholders":["the book","the magazine"]}, +{"id":"131596","label":"pushing a spoon so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a spoon"]}, +{"id":"148411","label":"twisting bracelet","template":"Twisting [something]","placeholders":["bracelet"]}, +{"id":"82479","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"141955","label":"spilling water onto flowers","template":"Spilling [something] onto [something]","placeholders":["water","flowers"]}, +{"id":"181279","label":"holding toothbrush over knife","template":"Holding [something] over [something]","placeholders":["toothbrush","knife"]}, +{"id":"4951","label":"dropping a watch into a hat","template":"Dropping [something] into [something]","placeholders":["a watch","a hat"]}, +{"id":"134493","label":"moving a sieve closer to a belt","template":"Moving [something] closer to [something]","placeholders":["a sieve","a belt"]}, +{"id":"198902","label":"dropping a card in front of a peg","template":"Dropping [something] in front of [something]","placeholders":["a card","a peg"]}, +{"id":"157542","label":"poking a candle so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a candle"]}, +{"id":"68727","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"77468","label":"putting coin into water bottle","template":"Putting [something] into [something]","placeholders":["coin","water bottle"]}, +{"id":"5041","label":"pretending to turn bottle upside down","template":"Pretending to turn [something] upside down","placeholders":["bottle"]}, +{"id":"220109","label":"trying to bend a lotion bottle so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a lotion bottle"]}, +{"id":"27281","label":"spinning water bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["water bottle"]}, +{"id":"98935","label":"trying to pour cereals into a glass container, but missing so it spills next to it","template":"Trying to pour [something] into [something], but missing so it spills next to it","placeholders":["cereals","a glass container"]}, +{"id":"61752","label":"removing lotion, revealing deodorant behind","template":"Removing [something], revealing [something] behind","placeholders":["lotion","deodorant"]}, +{"id":"42429","label":"pretending to take a napkin from a plate","template":"Pretending to take [something] from [somewhere]","placeholders":["a napkin","a plate"]}, +{"id":"90624","label":"pretending to put pen on a surface","template":"Pretending to put [something] on a surface","placeholders":["pen"]}, +{"id":"62523","label":"putting a play block with a group of play blocks","template":"Putting [something similar to other things that are already on the table]","placeholders":["a play block with a group of play blocks"]}, +{"id":"53883","label":"opening calculator","template":"Opening [something]","placeholders":["calculator"]}, +{"id":"19099","label":"spinning yellow ball that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["yellow ball"]}, +{"id":"2167","label":"putting a pen on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a pen","chair"]}, +{"id":"192984","label":"taking sunglasses out of box","template":"Taking [something] out of [something]","placeholders":["sunglasses","box"]}, +{"id":"213465","label":"tearing a paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["a paper"]}, +{"id":"28567","label":"spilling jam onto a biscuit","template":"Spilling [something] onto [something]","placeholders":["jam","a biscuit"]}, +{"id":"216953","label":"throwing ruler in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["ruler"]}, +{"id":"43520","label":"plugging headphones into computer","template":"Plugging [something] into [something]","placeholders":["headphones","computer"]}, +{"id":"66140","label":"moving lip balm and nail polish away from each other","template":"Moving [something] and [something] away from each other","placeholders":["lip balm","nail polish"]}, +{"id":"49021","label":"spilling oil next to bread","template":"Spilling [something] next to [something]","placeholders":["oil","bread"]}, +{"id":"177384","label":"spinning chair that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["chair"]}, +{"id":"5107","label":"taking wallet","template":"Taking [one of many similar things on the table]","placeholders":["wallet"]}, +{"id":"29115","label":"putting a meat thermometer upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a meat thermometer"]}, +{"id":"107347","label":"putting glove and cell phone on the table","template":"Putting [something] and [something] on the table","placeholders":["glove","cell phone"]}, +{"id":"37054","label":"pulling mouse onto mousepad","template":"Pulling [something] onto [something]","placeholders":["mouse","mousepad"]}, +{"id":"183323","label":"hitting a glass with a hairbrush","template":"Hitting [something] with [something]","placeholders":["a glass","a hairbrush"]}, +{"id":"1092","label":"moving laptop down","template":"Moving [something] down","placeholders":["laptop"]}, +{"id":"71985","label":"lifting up one end of a pen, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a pen"]}, +{"id":"124462","label":"hitting wall with flashlight","template":"Hitting [something] with [something]","placeholders":["wall","flashlight"]}, +{"id":"45752","label":"throwing pen","template":"Throwing [something]","placeholders":["pen"]}, +{"id":"95659","label":"unfolding receipt paper","template":"Unfolding [something]","placeholders":["receipt paper"]}, +{"id":"168781","label":"opening a book","template":"Opening [something]","placeholders":["a book"]}, +{"id":"125278","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"212728","label":"twisting a bottle cap","template":"Twisting [something]","placeholders":["a bottle cap"]}, +{"id":"181664","label":"turning chocolate upside down","template":"Turning [something] upside down","placeholders":["chocolate"]}, +{"id":"63822","label":"plugging a phone charger into a multi-socket","template":"Plugging [something] into [something]","placeholders":["a phone charger","a multi-socket"]}, +{"id":"193566","label":"unfolding quiz paper","template":"Unfolding [something]","placeholders":["quiz paper"]}, +{"id":"41892","label":"lifting pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["pen"]}, +{"id":"58926","label":"pushing a pencil so it spins","template":"Pushing [something] so it spins","placeholders":["a pencil"]}, +{"id":"171781","label":"moving usb cable away from eraser","template":"Moving [something] away from [something]","placeholders":["usb cable","eraser"]}, +{"id":"198119","label":"holding hand bag","template":"Holding [something]","placeholders":["hand bag"]}, +{"id":"22635","label":"dropping a matchbox in front of a cup","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a cup"]}, +{"id":"199666","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"4814","label":"pushing a toothbrush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a toothbrush"]}, +{"id":"129217","label":"tearing folded paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["folded paper"]}, +{"id":"96419","label":"spinning spatula that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["spatula"]}, +{"id":"7905","label":"lifting up one end of cylinder without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["cylinder"]}, +{"id":"87638","label":"pushing a toy so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a toy"]}, +{"id":"5398","label":"plugging electric plug into socket","template":"Plugging [something] into [something]","placeholders":["electric plug","socket"]}, +{"id":"10832","label":"lifting a baking tray with pens on it","template":"Lifting [something] with [something] on it","placeholders":["a baking tray","pens"]}, +{"id":"161067","label":"pushing black disc case from right to left","template":"Pushing [something] from right to left","placeholders":["black disc case"]}, +{"id":"188267","label":"twisting a towel","template":"Twisting [something]","placeholders":["a towel"]}, +{"id":"174458","label":"pretending to poke pack of cigarettes","template":"Pretending to poke [something]","placeholders":["pack of cigarettes"]}, +{"id":"82586","label":"pulling a notebook from right to left","template":"Pulling [something] from right to left","placeholders":["a notebook"]}, +{"id":"133469","label":"poking a hole into pie","template":"Poking a hole into [something soft]","placeholders":["pie"]}, +{"id":"152500","label":"moving red colour pencil sharpener away from wooden stick","template":"Moving [something] away from [something]","placeholders":["red colour pencil sharpener","wooden stick"]}, +{"id":"194169","label":"pretending to close red dairy without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["red dairy"]}, +{"id":"33590","label":"stuffing a plastic bag into an envelope","template":"Stuffing [something] into [something]","placeholders":["a plastic bag","an envelope"]}, +{"id":"91046","label":"moving tiolet paper closer to tiolet paper","template":"Moving [something] closer to [something]","placeholders":["tiolet paper","tiolet paper"]}, +{"id":"178335","label":"holding package of tissues next to radio alarm","template":"Holding [something] next to [something]","placeholders":["package of tissues","radio alarm"]}, +{"id":"195196","label":"dropping a tissue into a trash can","template":"Dropping [something] into [something]","placeholders":["a tissue","a trash can"]}, +{"id":"30936","label":"moving keys down","template":"Moving [something] down","placeholders":["keys"]}, +{"id":"145768","label":"pretending to be tearing magazine","template":"Pretending to be tearing [something that is not tearable]","placeholders":["magazine"]}, +{"id":"70385","label":"lifting a surface with a pencil on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a pencil"]}, +{"id":"7855","label":"a rock falling like a rock","template":"[Something] falling like a rock","placeholders":["a rock"]}, +{"id":"12715","label":"spinning a spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a spinner"]}, +{"id":"60039","label":"pretending to put a cardboard box underneath a table","template":"Pretending to put [something] underneath [something]","placeholders":["a cardboard box","a table"]}, +{"id":"69360","label":"poking jar so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["jar"]}, +{"id":"132862","label":"showing that orange cup is empty","template":"Showing that [something] is empty","placeholders":["orange cup"]}, +{"id":"186713","label":"dropping a lemon into a bowl","template":"Dropping [something] into [something]","placeholders":["a lemon","a bowl"]}, +{"id":"200717","label":"holding plate in front of painting","template":"Holding [something] in front of [something]","placeholders":["plate","painting"]}, +{"id":"188976","label":"putting teaspoon and lime on the table","template":"Putting [something] and [something] on the table","placeholders":["teaspoon","lime"]}, +{"id":"120187","label":"pretending to pour tea out of teapot, but teapot is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["tea","teapot","teapot"]}, +{"id":"75490","label":"covering cd with paper","template":"Covering [something] with [something]","placeholders":["cd","paper"]}, +{"id":"144328","label":"turning the camera right while filming cup","template":"Turning the camera right while filming [something]","placeholders":["cup"]}, +{"id":"44255","label":"tearing paper sheet into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper sheet"]}, +{"id":"53775","label":"approaching bicycle with your camera","template":"Approaching [something] with your camera","placeholders":["bicycle"]}, +{"id":"214211","label":"pretending to put something on a surface","template":"Pretending to put [something] on a surface","placeholders":["something"]}, +{"id":"95402","label":"putting a remote control in front of a mug","template":"Putting [something] in front of [something]","placeholders":["a remote control","a mug"]}, +{"id":"201241","label":"poking a sofa so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["a sofa"]}, +{"id":"168812","label":"putting sandwich into lunchbox","template":"Putting [something] into [something]","placeholders":["sandwich","lunchbox"]}, +{"id":"193859","label":"uncovering mobilephone","template":"Uncovering [something]","placeholders":["mobilephone"]}, +{"id":"8123","label":"pushing a cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a cup"]}, +{"id":"23186","label":"putting mouse next to mug","template":"Putting [something] next to [something]","placeholders":["mouse","mug"]}, +{"id":"14752","label":"showing a scent diffuser on top of an upside down candle","template":"Showing [something] on top of [something]","placeholders":["a scent diffuser","an upside down candle"]}, +{"id":"29263","label":"dropping pen in front of cup","template":"Dropping [something] in front of [something]","placeholders":["pen","cup"]}, +{"id":"22686","label":"throwing pencil in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pencil"]}, +{"id":"103785","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"150249","label":"tilting a plate with a highlighter on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a plate","a highlighter"]}, +{"id":"22290","label":"approaching calculator with your camera","template":"Approaching [something] with your camera","placeholders":["calculator"]}, +{"id":"35156","label":"pushing red pot holder from right to left","template":"Pushing [something] from right to left","placeholders":["red pot holder"]}, +{"id":"15736","label":"throwing the pencil case","template":"Throwing [something]","placeholders":["the pencil case"]}, +{"id":"35541","label":"pushing a match box with a lighter","template":"Pushing [something] with [something]","placeholders":["a match box","a lighter"]}, +{"id":"15017","label":"holding mobile over scissors","template":"Holding [something] over [something]","placeholders":["mobile","scissors"]}, +{"id":"104910","label":"squeezing pillow","template":"Squeezing [something]","placeholders":["pillow"]}, +{"id":"28403","label":"pouring water into washing machine","template":"Pouring [something] into [something]","placeholders":["water","washing machine"]}, +{"id":"191480","label":"tilting toy with ring on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["toy","ring"]}, +{"id":"129359","label":"showing that water bottle is empty","template":"Showing that [something] is empty","placeholders":["water bottle"]}, +{"id":"123846","label":"pulling mint onto laptop","template":"Pulling [something] onto [something]","placeholders":["mint","laptop"]}, +{"id":"233","label":"pushing spoon so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["spoon"]}, +{"id":"75747","label":"putting a ice tray on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["a ice tray","table"]}, +{"id":"101706","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"208561","label":"pushing key so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["key"]}, +{"id":"217273","label":"pouring water into a green cup","template":"Pouring [something] into [something]","placeholders":["water","a green cup"]}, +{"id":"15524","label":"covering a vase with a blanket","template":"Covering [something] with [something]","placeholders":["a vase","a blanket"]}, +{"id":"109781","label":"pushing small sharpener from right to left","template":"Pushing [something] from right to left","placeholders":["small sharpener"]}, +{"id":"22001","label":"uncovering television remote","template":"Uncovering [something]","placeholders":["television remote"]}, +{"id":"198505","label":"spinning a door lock that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["a door lock"]}, +{"id":"83447","label":"hitting a pole with a fly swatter","template":"Hitting [something] with [something]","placeholders":["a pole","a fly swatter"]}, +{"id":"38270","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"110987","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"130944","label":"holding keys","template":"Holding [something]","placeholders":["keys"]}, +{"id":"186785","label":"pushing box with block","template":"Pushing [something] with [something]","placeholders":["box","block"]}, +{"id":"171560","label":"touching (without moving) handle of cup","template":"Touching (without moving) [part] of [something]","placeholders":["handle","cup"]}, +{"id":"97327","label":"showing that plastic bowl is empty","template":"Showing that [something] is empty","placeholders":["plastic bowl"]}, +{"id":"86420","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"111223","label":"moving towel up","template":"Moving [something] up","placeholders":["towel"]}, +{"id":"35458","label":"spinning pen that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pen"]}, +{"id":"179304","label":"putting a jar of sugar upright on the table","template":"Putting [something] upright on the table","placeholders":["a jar of sugar"]}, +{"id":"198728","label":"tipping a bottletop over","template":"Tipping [something] over","placeholders":["a bottletop"]}, +{"id":"95063","label":"lifting coaster with cup on it","template":"Lifting [something] with [something] on it","placeholders":["coaster","cup"]}, +{"id":"63242","label":"showing black umbrella to the camera","template":"Showing [something] to the camera","placeholders":["black umbrella"]}, +{"id":"143197","label":"pushing spanner from left to right","template":"Pushing [something] from left to right","placeholders":["spanner"]}, +{"id":"95036","label":"approaching board with your camera","template":"Approaching [something] with your camera","placeholders":["board"]}, +{"id":"27414","label":"lifting up one end of mirror without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["mirror"]}, +{"id":"64711","label":"lifting a notebook with a screw on it","template":"Lifting [something] with [something] on it","placeholders":["a notebook","a screw"]}, +{"id":"106722","label":"pencil falling like a rock","template":"[Something] falling like a rock","placeholders":["pencil"]}, +{"id":"51847","label":"moving a candle up","template":"Moving [something] up","placeholders":["a candle"]}, +{"id":"15387","label":"tearing bread into two pieces","template":"Tearing [something] into two pieces","placeholders":["bread"]}, +{"id":"30468","label":"dropping pill in front of bottle","template":"Dropping [something] in front of [something]","placeholders":["pill","bottle"]}, +{"id":"18865","label":"plugging plug into plug cage but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","plug cage"]}, +{"id":"149043","label":"tipping a medicine bottle over","template":"Tipping [something] over","placeholders":["a medicine bottle"]}, +{"id":"132250","label":"putting a flying disc underneath a child's chair","template":"Putting [something] underneath [something]","placeholders":["a flying disc","a child's chair"]}, +{"id":"79542","label":"throwing keys in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["keys"]}, +{"id":"207123","label":"showing adaptor behind plant","template":"Showing [something] behind [something]","placeholders":["adaptor","plant"]}, +{"id":"158769","label":"plugging charger into outlet","template":"Plugging [something] into [something]","placeholders":["charger","outlet"]}, +{"id":"26605","label":"moving a marker away from a pen","template":"Moving [something] away from [something]","placeholders":["a marker","a pen"]}, +{"id":"201553","label":"pretending to pick necklace up","template":"Pretending to pick [something] up","placeholders":["necklace"]}, +{"id":"76139","label":"putting ink bottle, clip box and charger adapter on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["ink bottle","clip box","charger adapter"]}, +{"id":"97161","label":"lifting a wireless mouse up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a wireless mouse"]}, +{"id":"154029","label":"letting a highlighter roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a highlighter"]}, +{"id":"211012","label":"holding cup behind door","template":"Holding [something] behind [something]","placeholders":["cup","door"]}, +{"id":"11951","label":"moving fork and spoon closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["fork","spoon"]}, +{"id":"167185","label":"brick falling like a rock","template":"[Something] falling like a rock","placeholders":["brick"]}, +{"id":"63299","label":"putting remote and wallet on the table","template":"Putting [something] and [something] on the table","placeholders":["remote","wallet"]}, +{"id":"204859","label":"putting hat onto shoe","template":"Putting [something] onto [something]","placeholders":["hat","shoe"]}, +{"id":"66570","label":"picking box up","template":"Picking [something] up","placeholders":["box"]}, +{"id":"175503","label":"putting remote upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["remote"]}, +{"id":"145595","label":"putting hairbrush on a surface","template":"Putting [something] on a surface","placeholders":["hairbrush"]}, +{"id":"23819","label":"showing rabbits to the camera","template":"Showing [something] to the camera","placeholders":["rabbits"]}, +{"id":"140323","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"21852","label":"twisting stress","template":"Twisting [something]","placeholders":["stress"]}, +{"id":"19580","label":"dropping a comb in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a comb","a book"]}, +{"id":"130719","label":"pulling pen from behind of binder","template":"Pulling [something] from behind of [something]","placeholders":["pen","binder"]}, +{"id":"120946","label":"holding torch in front of a mirror","template":"Holding [something] in front of [something]","placeholders":["torch","a mirror"]}, +{"id":"132623","label":"putting diaper wipes into a purse","template":"Putting [something] into [something]","placeholders":["diaper wipes","a purse"]}, +{"id":"15863","label":"holding marker over toy","template":"Holding [something] over [something]","placeholders":["marker","toy"]}, +{"id":"87053","label":"stuffing tissue into slipper","template":"Stuffing [something] into [something]","placeholders":["tissue","slipper"]}, +{"id":"21549","label":"pushing hairband with white colour pen","template":"Pushing [something] with [something]","placeholders":["hairband","white colour pen"]}, +{"id":"106141","label":"moving remote and lighter closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["remote","lighter"]}, +{"id":"105469","label":"moving water bottle and water bottle so they pass each other","template":"Moving [something] and [something] so they pass each other","placeholders":["water bottle","water bottle"]}, +{"id":"14807","label":"moving tape measure up","template":"Moving [something] up","placeholders":["tape measure"]}, +{"id":"204199","label":"showing torch behind bottle","template":"Showing [something] behind [something]","placeholders":["torch","bottle"]}, +{"id":"220710","label":"pouring tea into cup","template":"Pouring [something] into [something]","placeholders":["tea","cup"]}, +{"id":"186148","label":"showing that candy is inside bowl","template":"Showing that [something] is inside [something]","placeholders":["candy","bowl"]}, +{"id":"188061","label":"putting mug next to keyboard","template":"Putting [something] next to [something]","placeholders":["mug","keyboard"]}, +{"id":"165623","label":"moving cable up","template":"Moving [something] up","placeholders":["cable"]}, +{"id":"217695","label":"putting a pot of paint","template":"Putting [something similar to other things that are already on the table]","placeholders":["a pot of paint"]}, +{"id":"15143","label":"putting a pencil sharpener, a pot and a shoe on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["a pencil sharpener","a pot","a shoe"]}, +{"id":"175082","label":"moving cellphone and mug away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cellphone","mug"]}, +{"id":"109836","label":"taking one of four similar lighters","template":"Taking [one of many similar things on the table]","placeholders":["one of four similar lighters"]}, +{"id":"95601","label":"poking cable so that it falls over","template":"Poking [something] so that it falls over","placeholders":["cable"]}, +{"id":"144645","label":"moving top of cell phone","template":"Moving [part] of [something]","placeholders":["top","cell phone"]}, +{"id":"139494","label":"tipping a bottle over","template":"Tipping [something] over","placeholders":["a bottle"]}, +{"id":"74474","label":"holding tangerine","template":"Holding [something]","placeholders":["tangerine"]}, +{"id":"137135","label":"putting a colored pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["a colored pencil"]}, +{"id":"182431","label":"showing that cookie box is empty","template":"Showing that [something] is empty","placeholders":["cookie box"]}, +{"id":"91255","label":"moving pen and duct tape closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["pen","duct tape"]}, +{"id":"214859","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"1974","label":"squeezing black umbrella","template":"Squeezing [something]","placeholders":["black umbrella"]}, +{"id":"78122","label":"putting baseball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["baseball"]}, +{"id":"42217","label":"moving a pen and a pencil so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a pen","a pencil"]}, +{"id":"203916","label":"poking water bottle so lightly that it doesn't or almost doesn't move","template":"Poking [something] so lightly that it doesn't or almost doesn't move","placeholders":["water bottle"]}, +{"id":"8159","label":"lifting up one end of a flashlight, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["a flashlight"]}, +{"id":"15819","label":"putting bread, cup and cellphone on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["bread","cup","cellphone"]}, +{"id":"195600","label":"touching (without moving) front of fridge","template":"Touching (without moving) [part] of [something]","placeholders":["front","fridge"]}, +{"id":"85989","label":"pushing belt so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["belt"]}, +{"id":"78566","label":"pushing a charger with a remote control","template":"Pushing [something] with [something]","placeholders":["a charger","a remote control"]}, +{"id":"180050","label":"putting hair clip","template":"Putting [something similar to other things that are already on the table]","placeholders":["hair clip"]}, +{"id":"53943","label":"pretending to put black play cards on a surface","template":"Pretending to put [something] on a surface","placeholders":["black play cards"]}, +{"id":"73431","label":"pulling two ends of rubber band so that it gets stretched","template":"Pulling two ends of [something] so that it gets stretched","placeholders":["rubber band"]}, +{"id":"62693","label":"moving diaper across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["diaper"]}, +{"id":"50008","label":"holding pencil behind tape","template":"Holding [something] behind [something]","placeholders":["pencil","tape"]}, +{"id":"208954","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"25730","label":"lifting a phone with a lighter on it","template":"Lifting [something] with [something] on it","placeholders":["a phone","a lighter"]}, +{"id":"128861","label":"attaching clip magnet to stove","template":"Attaching [something] to [something]","placeholders":["clip magnet","stove"]}, +{"id":"140977","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"78015","label":"throwing shoe in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["shoe"]}, +{"id":"57628","label":"poking a stack of boxes without the stack collapsing","template":"Poking a stack of [something] without the stack collapsing","placeholders":["boxes"]}, +{"id":"160725","label":"squeezing post it notes","template":"Squeezing [something]","placeholders":["post it notes"]}, +{"id":"144213","label":"pink golf ball being deflected from white plug adapter","template":"[Something] being deflected from [something]","placeholders":["pink golf ball","white plug adapter"]}, +{"id":"196443","label":"pushing bot of fish food so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["bot of fish food"]}, +{"id":"135393","label":"putting pen into bottle","template":"Putting [something] into [something]","placeholders":["pen","bottle"]}, +{"id":"60049","label":"trying but failing to attach a post-it to the wall because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["a post-it","the wall"]}, +{"id":"75948","label":"pushing the box so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["the box"]}, +{"id":"181328","label":"putting box in front of jar","template":"Putting [something] in front of [something]","placeholders":["box","jar"]}, +{"id":"19207","label":"holding toy idol in front of spectacle box","template":"Holding [something] in front of [something]","placeholders":["toy idol","spectacle box"]}, +{"id":"211124","label":"bending an empty water bottle so that it deforms","template":"Bending [something] so that it deforms","placeholders":["an empty water bottle"]}, +{"id":"139387","label":"tipping dispenser over","template":"Tipping [something] over","placeholders":["dispenser"]}, +{"id":"76915","label":"dropping a matchbox into a bowl","template":"Dropping [something] into [something]","placeholders":["a matchbox","a bowl"]}, +{"id":"163592","label":"dropping a pen onto box","template":"Dropping [something] onto [something]","placeholders":["a pen","box"]}, +{"id":"125145","label":"plugging a cord into the wall","template":"Plugging [something] into [something]","placeholders":["a cord","the wall"]}, +{"id":"187284","label":"pouring detergent into cup until it overflows","template":"Pouring [something] into [something] until it overflows","placeholders":["detergent","cup"]}, +{"id":"185081","label":"pretending or failing to wipe dirt off of surface","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["dirt","surface"]}, +{"id":"188040","label":"lifting book with mobile on it","template":"Lifting [something] with [something] on it","placeholders":["book","mobile"]}, +{"id":"65437","label":"twisting soft, light yellow cooking glove","template":"Twisting [something]","placeholders":["soft, light yellow cooking glove"]}, +{"id":"49387","label":"putting 2 wooden sticks onto red pouch","template":"Putting [number of] [something] onto [something]","placeholders":["2","wooden sticks","red pouch"]}, +{"id":"43109","label":"opener colliding with paper roll and both come to a halt","template":"[Something] colliding with [something] and both come to a halt","placeholders":["opener","paper roll"]}, +{"id":"34877","label":"showing that bucket is empty","template":"Showing that [something] is empty","placeholders":["bucket"]}, +{"id":"101323","label":"putting pen on a surface","template":"Putting [something] on a surface","placeholders":["pen"]}, +{"id":"183683","label":"pushing black pocket knife so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["black pocket knife"]}, +{"id":"71155","label":"digging a worm out of wheat bran","template":"Digging [something] out of [something]","placeholders":["a worm","wheat bran"]}, +{"id":"210387","label":"moving pen down","template":"Moving [something] down","placeholders":["pen"]}, +{"id":"190276","label":"throwing towel","template":"Throwing [something]","placeholders":["towel"]}, +{"id":"62617","label":"putting crayon behind mug","template":"Putting [something] behind [something]","placeholders":["crayon","mug"]}, +{"id":"108169","label":"poking pillow so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["pillow"]}, +{"id":"71693","label":"holding wallet next to cup","template":"Holding [something] next to [something]","placeholders":["wallet","cup"]}, +{"id":"208208","label":"showing water bottle on top of hockey puck","template":"Showing [something] on top of [something]","placeholders":["water bottle","hockey puck"]}, +{"id":"43790","label":"moving top of purse","template":"Moving [part] of [something]","placeholders":["top","purse"]}, +{"id":"197983","label":"turning starbucks cup upside down","template":"Turning [something] upside down","placeholders":["starbucks cup"]}, +{"id":"60459","label":"showing board to the camera","template":"Showing [something] to the camera","placeholders":["board"]}, +{"id":"102853","label":"moving shoe and shoe closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["shoe","shoe"]}, +{"id":"62962","label":"pretending to pick firealarm up","template":"Pretending to pick [something] up","placeholders":["firealarm"]}, +{"id":"144706","label":"turning a computer mouse upside down","template":"Turning [something] upside down","placeholders":["a computer mouse"]}, +{"id":"20458","label":"pushing hair clip so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["hair clip"]}, +{"id":"4192","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"154648","label":"pretending to sprinkle air onto open hand","template":"Pretending to sprinkle air onto [something]","placeholders":["open hand"]}, +{"id":"110152","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"6658","label":"folding cloth","template":"Folding [something]","placeholders":["cloth"]}, +{"id":"73885","label":"pretending to be tearing fabric","template":"Pretending to be tearing [something that is not tearable]","placeholders":["fabric"]}, +{"id":"186837","label":"lifting something with something on it","template":"Lifting [something] with [something] on it","placeholders":["something","something"]}, +{"id":"9876","label":"rolling marker pen on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker pen"]}, +{"id":"9794","label":"holding a container in front of a bowl","template":"Holding [something] in front of [something]","placeholders":["a container","a bowl"]}, +{"id":"82434","label":"pushing connector so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["connector"]}, +{"id":"109239","label":"folding a paper","template":"Folding [something]","placeholders":["a paper"]}, +{"id":"181557","label":"moving keys and pensil away from each other","template":"Moving [something] and [something] away from each other","placeholders":["keys","pensil"]}, +{"id":"166887","label":"taking card","template":"Taking [one of many similar things on the table]","placeholders":["card"]}, +{"id":"125293","label":"pretending to put a pen behind a measuring cup","template":"Pretending to put [something] behind [something]","placeholders":["a pen","a measuring cup"]}, +{"id":"135492","label":"holding a box over a box","template":"Holding [something] over [something]","placeholders":["a box","a box"]}, +{"id":"29783","label":"piling clothes up","template":"Piling [something] up","placeholders":["clothes"]}, +{"id":"182828","label":"trying to bend racket so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["racket"]}, +{"id":"51509","label":"tilting a coaster with a pen cap on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a coaster","a pen cap"]}, +{"id":"47742","label":"holding a plastic bottle over a keyboard","template":"Holding [something] over [something]","placeholders":["a plastic bottle","a keyboard"]}, +{"id":"215967","label":"pushing box with paint brush","template":"Pushing [something] with [something]","placeholders":["box","paint brush"]}, +{"id":"97105","label":"moving purse towards the camera","template":"Moving [something] towards the camera","placeholders":["purse"]}, +{"id":"152949","label":"pouring water into mug","template":"Pouring [something] into [something]","placeholders":["water","mug"]}, +{"id":"106035","label":"holding water bottle over plate","template":"Holding [something] over [something]","placeholders":["water bottle","plate"]}, +{"id":"217178","label":"showing lipstic behind bike light","template":"Showing [something] behind [something]","placeholders":["lipstic","bike light"]}, +{"id":"193434","label":"stuffing cloth into bag","template":"Stuffing [something] into [something]","placeholders":["cloth","bag"]}, +{"id":"72427","label":"spreading pate onto biscuit","template":"Spreading [something] onto [something]","placeholders":["pate","biscuit"]}, +{"id":"74860","label":"spinning pencil that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["pencil"]}, +{"id":"142613","label":"pushing red coloured punching machine so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["red coloured punching machine"]}, +{"id":"126314","label":"dropping deoderant into a drawer","template":"Dropping [something] into [something]","placeholders":["deoderant","a drawer"]}, +{"id":"107242","label":"approaching tomato with your camera","template":"Approaching [something] with your camera","placeholders":["tomato"]}, +{"id":"149211","label":"holding umbrela","template":"Holding [something]","placeholders":["umbrela"]}, +{"id":"80543","label":"moving glass down","template":"Moving [something] down","placeholders":["glass"]}, +{"id":"201629","label":"putting scissors on a surface","template":"Putting [something] on a surface","placeholders":["scissors"]}, +{"id":"69919","label":"showing a photo of a couple to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a couple"]}, +{"id":"146002","label":"taking pen out of mug","template":"Taking [something] out of [something]","placeholders":["pen","mug"]}, +{"id":"153870","label":"pouring milk into a cup","template":"Pouring [something] into [something]","placeholders":["milk","a cup"]}, +{"id":"217459","label":"dropping a calculator onto a desk","template":"Dropping [something] onto [something]","placeholders":["a calculator","a desk"]}, +{"id":"213573","label":"putting ruler onto calculator","template":"Putting [something] onto [something]","placeholders":["ruler","calculator"]}, +{"id":"56271","label":"plugging a plug into an outlet","template":"Plugging [something] into [something]","placeholders":["a plug","an outlet"]}, +{"id":"89535","label":"spinning a mascara tube so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a mascara tube"]}, +{"id":"109857","label":"touching (without moving) top of bottle","template":"Touching (without moving) [part] of [something]","placeholders":["top","bottle"]}, +{"id":"188449","label":"scooping marbles up with hand","template":"Scooping [something] up with [something]","placeholders":["marbles","hand"]}, +{"id":"102319","label":"pouring water into bottle","template":"Pouring [something] into [something]","placeholders":["water","bottle"]}, +{"id":"193105","label":"lifting dish with dummy on it","template":"Lifting [something] with [something] on it","placeholders":["dish","dummy"]}, +{"id":"75027","label":"pushing a makeup brush so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["a makeup brush"]}, +{"id":"181432","label":"moving cylinder and fruit away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cylinder","fruit"]}, +{"id":"18022","label":"lifting book with notebook on it","template":"Lifting [something] with [something] on it","placeholders":["book","notebook"]}, +{"id":"54518","label":"showing a pen on top of a notebook","template":"Showing [something] on top of [something]","placeholders":["a pen","a notebook"]}, +{"id":"162291","label":"hitting box with pen","template":"Hitting [something] with [something]","placeholders":["box","pen"]}, +{"id":"149465","label":"approaching pill bottle with your camera","template":"Approaching [something] with your camera","placeholders":["pill bottle"]}, +{"id":"26573","label":"pretending to close drawer without actually closing it","template":"Pretending to close [something] without actually closing it","placeholders":["drawer"]}, +{"id":"69033","label":"pouring water into glass","template":"Pouring [something] into [something]","placeholders":["water","glass"]}, +{"id":"177754","label":"pretending to put toohbrush into holder","template":"Pretending to put [something] into [something]","placeholders":["toohbrush","holder"]}, +{"id":"144274","label":"throwing a stuffed bird in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a stuffed bird"]}, +{"id":"140292","label":"uncovering nail cutter","template":"Uncovering [something]","placeholders":["nail cutter"]}, +{"id":"6105","label":"spinning bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["bottle"]}, +{"id":"30271","label":"folding a placemat","template":"Folding [something]","placeholders":["a placemat"]}, +{"id":"163541","label":"approaching painting with your camera","template":"Approaching [something] with your camera","placeholders":["painting"]}, +{"id":"13257","label":"holding letter next to calculater","template":"Holding [something] next to [something]","placeholders":["letter","calculater"]}, +{"id":"83212","label":"poking a telephone so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a telephone"]}, +{"id":"126361","label":"rolling bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["bottle"]}, +{"id":"135002","label":"squeezing half a lemon","template":"Squeezing [something]","placeholders":["half a lemon"]}, +{"id":"69142","label":"touching (without moving) plunger of dispenser","template":"Touching (without moving) [part] of [something]","placeholders":["plunger","dispenser"]}, +{"id":"107629","label":"moving stapler up","template":"Moving [something] up","placeholders":["stapler"]}, +{"id":"66181","label":"showing bubblegum behind tissues","template":"Showing [something] behind [something]","placeholders":["bubblegum","tissues"]}, +{"id":"10073","label":"moving tangerine and tangerine closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["tangerine","tangerine"]}, +{"id":"120785","label":"throwing pillow against ball","template":"Throwing [something] against [something]","placeholders":["pillow","ball"]}, +{"id":"70183","label":"pushing stone with pencil","template":"Pushing [something] with [something]","placeholders":["stone","pencil"]}, +{"id":"88549","label":"pretending to pour water out of bottle, but bottle is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","bottle","bottle"]}, +{"id":"199674","label":"throwing scissors","template":"Throwing [something]","placeholders":["scissors"]}, +{"id":"144971","label":"moving the remote and the mouse closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["the remote","the mouse"]}, +{"id":"127516","label":"dropping a peg into a bowl","template":"Dropping [something] into [something]","placeholders":["a peg","a bowl"]}, +{"id":"122012","label":"pushing ink bottle from left to right","template":"Pushing [something] from left to right","placeholders":["ink bottle"]}, +{"id":"151732","label":"dropping a coin into a box","template":"Dropping [something] into [something]","placeholders":["a coin","a box"]}, +{"id":"209656","label":"taking tin out of cup","template":"Taking [something] out of [something]","placeholders":["tin","cup"]}, +{"id":"219597","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"151673","label":"putting nail clipper behind wallet","template":"Putting [something] behind [something]","placeholders":["nail clipper","wallet"]}, +{"id":"198264","label":"moving sugar away from coffee","template":"Moving [something] away from [something]","placeholders":["sugar","coffee"]}, +{"id":"47180","label":"lifting something up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["something"]}, +{"id":"100719","label":"turning the camera right while filming brown bracelet","template":"Turning the camera right while filming [something]","placeholders":["brown bracelet"]}, +{"id":"132392","label":"lifting a book with a bottle of honey on it","template":"Lifting [something] with [something] on it","placeholders":["a book","a bottle of honey"]}, +{"id":"40864","label":"spoon falling like a rock","template":"[Something] falling like a rock","placeholders":["spoon"]}, +{"id":"150362","label":"pushing purple microfiber from right to left","template":"Pushing [something] from right to left","placeholders":["purple microfiber"]}, +{"id":"48412","label":"hitting scissors with remote","template":"Hitting [something] with [something]","placeholders":["scissors","remote"]}, +{"id":"206994","label":"pretending to squeeze a plastic ball","template":"Pretending to squeeze [something]","placeholders":["a plastic ball"]}, +{"id":"43072","label":"closing paint bottle","template":"Closing [something]","placeholders":["paint bottle"]}, +{"id":"110204","label":"moving jar across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["jar"]}, +{"id":"133470","label":"stacking 4 books","template":"Stacking [number of] [something]","placeholders":["4","books"]}, +{"id":"50203","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"100480","label":"dropping a pin into a bowl","template":"Dropping [something] into [something]","placeholders":["a pin","a bowl"]}, +{"id":"85414","label":"lifting up one end of pencil box without letting it drop down","template":"Lifting up one end of [something] without letting it drop down","placeholders":["pencil box"]}, +{"id":"217807","label":"putting a jbl in front of candy","template":"Putting [something] in front of [something]","placeholders":["a jbl","candy"]}, +{"id":"192457","label":"picking footwear up","template":"Picking [something] up","placeholders":["footwear"]}, +{"id":"71259","label":"pouring milk out of pot","template":"Pouring [something] out of [something]","placeholders":["milk","pot"]}, +{"id":"12993","label":"moving a cube and a box away from each other","template":"Moving [something] and [something] away from each other","placeholders":["a cube","a box"]}, +{"id":"59710","label":"putting cup in front of fork","template":"Putting [something] in front of [something]","placeholders":["cup","fork"]}, +{"id":"115996","label":"moving toy closer to box","template":"Moving [something] closer to [something]","placeholders":["toy","box"]}, +{"id":"44538","label":"pretending to open pretend to open plastic spray without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["pretend to open plastic spray"]}, +{"id":"104990","label":"putting fluorescent light bulb into mug","template":"Putting [something] into [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"26196","label":"bending diary so that it deforms","template":"Bending [something] so that it deforms","placeholders":["diary"]}, +{"id":"189723","label":"spilling water next to a bottletop","template":"Spilling [something] next to [something]","placeholders":["water","a bottletop"]}, +{"id":"95277","label":"putting a vase on a surface","template":"Putting [something] on a surface","placeholders":["a vase"]}, +{"id":"120938","label":"throwing bottle onto a surface","template":"Throwing [something] onto a surface","placeholders":["bottle"]}, +{"id":"95473","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"172617","label":"lifting eye glasses up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["eye glasses"]}, +{"id":"99948","label":"pushing spinner so it spins","template":"Pushing [something] so it spins","placeholders":["spinner"]}, +{"id":"134207","label":"tearing tissue just a little bit","template":"Tearing [something] just a little bit","placeholders":["tissue"]}, +{"id":"131408","label":"spinning ball so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["ball"]}, +{"id":"55333","label":"laying a glass on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a glass"]}, +{"id":"48386","label":"hitting charger with a remote control","template":"Hitting [something] with [something]","placeholders":["charger","a remote control"]}, +{"id":"213646","label":"moving the signal lever up","template":"Moving [something] up","placeholders":["the signal lever"]}, +{"id":"217091","label":"moving lid of deodorant","template":"Moving [part] of [something]","placeholders":["lid","deodorant"]}, +{"id":"137592","label":"rolling a bottle on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a bottle"]}, +{"id":"196082","label":"showing purple container next to paper bag","template":"Showing [something] next to [something]","placeholders":["purple container","paper bag"]}, +{"id":"14440","label":"spreading peanut butter onto wheat bread","template":"Spreading [something] onto [something]","placeholders":["peanut butter","wheat bread"]}, +{"id":"81521","label":"putting something that cannot actually stand upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["something that cannot actually stand"]}, +{"id":"205742","label":"a papel sheet falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a papel sheet"]}, +{"id":"203266","label":"scooping sugar up with a measuring cup","template":"Scooping [something] up with [something]","placeholders":["sugar","a measuring cup"]}, +{"id":"174724","label":"spilling water onto peanut butter","template":"Spilling [something] onto [something]","placeholders":["water","peanut butter"]}, +{"id":"60550","label":"putting ring bell on the edge of stand of stone so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["ring bell","stand of stone"]}, +{"id":"65678","label":"putting pen into mug","template":"Putting [something] into [something]","placeholders":["pen","mug"]}, +{"id":"142355","label":"spreading matxhboxes onto newspaper","template":"Spreading [something] onto [something]","placeholders":["matxhboxes","newspaper"]}, +{"id":"103922","label":"moving dvd case down","template":"Moving [something] down","placeholders":["dvd case"]}, +{"id":"78730","label":"dropping a safety pin onto a slipper","template":"Dropping [something] onto [something]","placeholders":["a safety pin","a slipper"]}, +{"id":"98700","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"26923","label":"throwing case","template":"Throwing [something]","placeholders":["case"]}, +{"id":"76262","label":"hitting dog with bottle","template":"Hitting [something] with [something]","placeholders":["dog","bottle"]}, +{"id":"219930","label":"pushing highlighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["highlighter"]}, +{"id":"60317","label":"poking a case so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a case"]}, +{"id":"5947","label":"pretending to pick pillow up","template":"Pretending to pick [something] up","placeholders":["pillow"]}, +{"id":"76188","label":"dropping lid in front of box","template":"Dropping [something] in front of [something]","placeholders":["lid","box"]}, +{"id":"42061","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"156459","label":"pretending or failing to wipe stain off of refrigerator","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["stain","refrigerator"]}, +{"id":"178680","label":"spinning lighter that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["lighter"]}, +{"id":"29459","label":"dropping a matchstick behind a remote","template":"Dropping [something] behind [something]","placeholders":["a matchstick","a remote"]}, +{"id":"26482","label":"removing a tissue box, revealing a dvd behind","template":"Removing [something], revealing [something] behind","placeholders":["a tissue box","a dvd"]}, +{"id":"92852","label":"spreading chocolate onto waffel","template":"Spreading [something] onto [something]","placeholders":["chocolate","waffel"]}, +{"id":"88513","label":"taking red colour sharpner out of yellow container","template":"Taking [something] out of [something]","placeholders":["red colour sharpner","yellow container"]}, +{"id":"180544","label":"uncovering pool","template":"Uncovering [something]","placeholders":["pool"]}, +{"id":"185242","label":"holding cup behind water bottle","template":"Holding [something] behind [something]","placeholders":["cup","water bottle"]}, +{"id":"52924","label":"showing cell phone on top of water bottle","template":"Showing [something] on top of [something]","placeholders":["cell phone","water bottle"]}, +{"id":"43177","label":"putting block into hole","template":"Putting [something] into [something]","placeholders":["block","hole"]}, +{"id":"49025","label":"pushing note pad from left to right","template":"Pushing [something] from left to right","placeholders":["note pad"]}, +{"id":"191117","label":"putting keys into mug","template":"Putting [something] into [something]","placeholders":["keys","mug"]}, +{"id":"161576","label":"putting toys into basket","template":"Putting [something] into [something]","placeholders":["toys","basket"]}, +{"id":"144261","label":"pushing lighter so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["lighter"]}, +{"id":"126093","label":"turning the camera upwards while filming motorbike","template":"Turning the camera upwards while filming [something]","placeholders":["motorbike"]}, +{"id":"211041","label":"lifting a pen up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["a pen"]}, +{"id":"1754","label":"dropping pen onto karpet","template":"Dropping [something] onto [something]","placeholders":["pen","karpet"]}, +{"id":"32166","label":"holding battery charger behind lens","template":"Holding [something] behind [something]","placeholders":["battery charger","lens"]}, +{"id":"180372","label":"removing mug, revealing tape behind","template":"Removing [something], revealing [something] behind","placeholders":["mug","tape"]}, +{"id":"55067","label":"laying a soda can on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["a soda can"]}, +{"id":"146903","label":"pushing jar so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["jar"]}, +{"id":"65805","label":"trying to bend pen so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["pen"]}, +{"id":"15242","label":"taking color paper clip","template":"Taking [one of many similar things on the table]","placeholders":["color paper clip"]}, +{"id":"143311","label":"pushing green chalk from right to left","template":"Pushing [something] from right to left","placeholders":["green chalk"]}, +{"id":"23934","label":"laying cardboard box on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["cardboard box"]}, +{"id":"213744","label":"poking tangerine so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["tangerine"]}, +{"id":"87684","label":"taking highlighter out of glass","template":"Taking [something] out of [something]","placeholders":["highlighter","glass"]}, +{"id":"163119","label":"tipping container with pennies over, so pennies falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["container","pennies","pennies"]}, +{"id":"94876","label":"showing a photo of a couple to the camera","template":"Showing a photo of [something] to the camera","placeholders":["a couple"]}, +{"id":"103329","label":"putting an apple on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["an apple"]}, +{"id":"15512","label":"plugging cord into socket but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["cord","socket"]}, +{"id":"124127","label":"putting roll of poster into tube","template":"Putting [something] into [something]","placeholders":["roll of poster","tube"]}, +{"id":"149908","label":"dropping a pin in front of a handkerchief","template":"Dropping [something] in front of [something]","placeholders":["a pin","a handkerchief"]}, +{"id":"183064","label":"throwing box","template":"Throwing [something]","placeholders":["box"]}, +{"id":"10888","label":"uncovering an apple","template":"Uncovering [something]","placeholders":["an apple"]}, +{"id":"26635","label":"bending a stick until it breaks","template":"Bending [something] until it breaks","placeholders":["a stick"]}, +{"id":"89783","label":"moving a paper heart up","template":"Moving [something] up","placeholders":["a paper heart"]}, +{"id":"132759","label":"holding soldering wire reel behind black plastic box","template":"Holding [something] behind [something]","placeholders":["soldering wire reel","black plastic box"]}, +{"id":"6731","label":"unfolding a towel","template":"Unfolding [something]","placeholders":["a towel"]}, +{"id":"149607","label":"sprinkling pepper onto bread","template":"Sprinkling [something] onto [something]","placeholders":["pepper","bread"]}, +{"id":"41645","label":"plugging an earphone into a mobile gadget","template":"Plugging [something] into [something]","placeholders":["an earphone","a mobile gadget"]}, +{"id":"70264","label":"moving bottle across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["bottle"]}, +{"id":"89568","label":"putting a jar onto another jar","template":"Putting [something] onto [something]","placeholders":["a jar","another jar"]}, +{"id":"87754","label":"squeezing a cushion","template":"Squeezing [something]","placeholders":["a cushion"]}, +{"id":"66638","label":"wiping something off of something","template":"Wiping [something] off of [something]","placeholders":["something","something"]}, +{"id":"5585","label":"laying paper roll on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["paper roll"]}, +{"id":"52091","label":"pulling iphone from behind of notebook","template":"Pulling [something] from behind of [something]","placeholders":["iphone","notebook"]}, +{"id":"110127","label":"sunglasses falling like a rock","template":"[Something] falling like a rock","placeholders":["sunglasses"]}, +{"id":"80787","label":"pushing a paint brush so it spins","template":"Pushing [something] so it spins","placeholders":["a paint brush"]}, +{"id":"188234","label":"controller falling like a rock","template":"[Something] falling like a rock","placeholders":["controller"]}, +{"id":"13597","label":"showing cellphone to the camera","template":"Showing [something] to the camera","placeholders":["cellphone"]}, +{"id":"216578","label":"putting phone next to yellowbook","template":"Putting [something] next to [something]","placeholders":["phone","yellowbook"]}, +{"id":"125701","label":"pulling remote from behind of blocks","template":"Pulling [something] from behind of [something]","placeholders":["remote","blocks"]}, +{"id":"204496","label":"turning the camera right while filming printer","template":"Turning the camera right while filming [something]","placeholders":["printer"]}, +{"id":"9166","label":"turning deodorant upside down","template":"Turning [something] upside down","placeholders":["deodorant"]}, +{"id":"54551","label":"opening gate","template":"Opening [something]","placeholders":["gate"]}, +{"id":"120876","label":"putting a baseball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["a baseball"]}, +{"id":"109425","label":"spinning can that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["can"]}, +{"id":"50514","label":"picking cellphone up","template":"Picking [something] up","placeholders":["cellphone"]}, +{"id":"174626","label":"plugging plug into outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["plug","outlet"]}, +{"id":"10082","label":"showing ice cream freezer to the camera","template":"Showing [something] to the camera","placeholders":["ice cream freezer"]}, +{"id":"56964","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"156566","label":"turning water bottle upside down","template":"Turning [something] upside down","placeholders":["water bottle"]}, +{"id":"181782","label":"dropping spoon into cup","template":"Dropping [something] into [something]","placeholders":["spoon","cup"]}, +{"id":"109233","label":"pretending to be tearing impossible paper","template":"Pretending to be tearing [something that is not tearable]","placeholders":["impossible paper"]}, +{"id":"220513","label":"taking phone out of mug","template":"Taking [something] out of [something]","placeholders":["phone","mug"]}, +{"id":"63163","label":"stuffing tube into box","template":"Stuffing [something] into [something]","placeholders":["tube","box"]}, +{"id":"32068","label":"hitting keys with remote","template":"Hitting [something] with [something]","placeholders":["keys","remote"]}, +{"id":"137808","label":"turning the camera left while filming picture","template":"Turning the camera left while filming [something]","placeholders":["picture"]}, +{"id":"3224","label":"throwing pen against pencil case","template":"Throwing [something] against [something]","placeholders":["pen","pencil case"]}, +{"id":"12388","label":"putting glass into bowl","template":"Putting [something] into [something]","placeholders":["glass","bowl"]}, +{"id":"191748","label":"holding a coke bottle next to a water bottle","template":"Holding [something] next to [something]","placeholders":["a coke bottle","a water bottle"]}, +{"id":"122398","label":"pretending to be tearing a fridge magnet","template":"Pretending to be tearing [something that is not tearable]","placeholders":["a fridge magnet"]}, +{"id":"142652","label":"bending spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["spoon"]}, +{"id":"209892","label":"moving cup and spoon away from each other","template":"Moving [something] and [something] away from each other","placeholders":["cup","spoon"]}, +{"id":"150031","label":"putting usb cable upright on the table","template":"Putting [something] upright on the table","placeholders":["usb cable"]}, +{"id":"171877","label":"putting pencil","template":"Putting [something similar to other things that are already on the table]","placeholders":["pencil"]}, +{"id":"6971","label":"pulling two ends of metal knife but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["metal knife"]}, +{"id":"127485","label":"putting a paper that can't roll onto a slanted surface, so it slides down","template":"Putting [something] that can't roll onto a slanted surface, so it slides down","placeholders":["a paper"]}, +{"id":"180161","label":"showing a bowl on top of the cardboard","template":"Showing [something] on top of [something]","placeholders":["a bowl","the cardboard"]}, +{"id":"99513","label":"spilling water onto a knife","template":"Spilling [something] onto [something]","placeholders":["water","a knife"]}, +{"id":"158253","label":"spinning a fidget spinner so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["a fidget spinner"]}, +{"id":"88838","label":"throwing block onto a surface","template":"Throwing [something] onto a surface","placeholders":["block"]}, +{"id":"158318","label":"bottle being deflected from carton","template":"[Something] being deflected from [something]","placeholders":["bottle","carton"]}, +{"id":"98211","label":"plugging plug into power bar","template":"Plugging [something] into [something]","placeholders":["plug","power bar"]}, +{"id":"169659","label":"bending plastic knife until it breaks","template":"Bending [something] until it breaks","placeholders":["plastic knife"]}, +{"id":"137213","label":"dropping a pen onto the floor","template":"Dropping [something] onto [something]","placeholders":["a pen","the floor"]}, +{"id":"168973","label":"putting a coin to other coins","template":"Putting [something similar to other things that are already on the table]","placeholders":["a coin to other coins"]}, +{"id":"110156","label":"putting cookie upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["cookie"]}, +{"id":"89429","label":"holding a paint brush next to a doll","template":"Holding [something] next to [something]","placeholders":["a paint brush","a doll"]}, +{"id":"34682","label":"holding notebook","template":"Holding [something]","placeholders":["notebook"]}, +{"id":"201910","label":"moving toothbrush towards the camera","template":"Moving [something] towards the camera","placeholders":["toothbrush"]}, +{"id":"104852","label":"throwing a cordless phone onto a surface","template":"Throwing [something] onto a surface","placeholders":["a cordless phone"]}, +{"id":"60555","label":"turning the camera upwards while filming krishna idole","template":"Turning the camera upwards while filming [something]","placeholders":["krishna idole"]}, +{"id":"217121","label":"turning the camera right while filming lorry","template":"Turning the camera right while filming [something]","placeholders":["lorry"]}, +{"id":"123565","label":"stuffing napkin into mug","template":"Stuffing [something] into [something]","placeholders":["napkin","mug"]}, +{"id":"143289","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"51701","label":"tearing a piece of paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["a piece of paper"]}, +{"id":"145214","label":"putting ball on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["ball","table"]}, +{"id":"174245","label":"putting fluorescent light bulb next to mug","template":"Putting [something] next to [something]","placeholders":["fluorescent light bulb","mug"]}, +{"id":"122370","label":"taking glass from desk","template":"Taking [something] from [somewhere]","placeholders":["glass","desk"]}, +{"id":"68062","label":"paper box colliding with another paper box and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["paper box","another paper box"]}, +{"id":"181326","label":"lifting placemat with glass on it","template":"Lifting [something] with [something] on it","placeholders":["placemat","glass"]}, +{"id":"199111","label":"moving lid of shampoo container","template":"Moving [part] of [something]","placeholders":["lid","shampoo container"]}, +{"id":"199222","label":"pushing a coffee cup so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a coffee cup"]}, +{"id":"96588","label":"bending steel spoon so that it deforms","template":"Bending [something] so that it deforms","placeholders":["steel spoon"]}, +{"id":"180398","label":"moving handle of a door lock","template":"Moving [part] of [something]","placeholders":["handle","a door lock"]}, +{"id":"67732","label":"twisting (wringing) sponge wet until water comes out","template":"Twisting (wringing) [something] wet until water comes out","placeholders":["sponge"]}, +{"id":"104179","label":"moving mobile phone up","template":"Moving [something] up","placeholders":["mobile phone"]}, +{"id":"166450","label":"putting sponge on the edge of table so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["sponge","table"]}, +{"id":"198372","label":"moving tie across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["tie"]}, +{"id":"142399","label":"poking a pillow so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["a pillow"]}, +{"id":"101180","label":"showing that bucket is empty","template":"Showing that [something] is empty","placeholders":["bucket"]}, +{"id":"167779","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"119934","label":"putting orange underneath notebook","template":"Putting [something] underneath [something]","placeholders":["orange","notebook"]}, +{"id":"7331","label":"spinning top so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["top"]}, +{"id":"71783","label":"pretending to put bottle on a surface","template":"Pretending to put [something] on a surface","placeholders":["bottle"]}, +{"id":"32587","label":"stuffing thread into a coffee can","template":"Stuffing [something] into [something]","placeholders":["thread","a coffee can"]}, +{"id":"156523","label":"pulling a pen from right to left","template":"Pulling [something] from right to left","placeholders":["a pen"]}, +{"id":"67306","label":"putting chocolate onto tie","template":"Putting [something] onto [something]","placeholders":["chocolate","tie"]}, +{"id":"146990","label":"closing box","template":"Closing [something]","placeholders":["box"]}, +{"id":"110607","label":"throwing a circular disc onto a surface","template":"Throwing [something] onto a surface","placeholders":["a circular disc"]}, +{"id":"16025","label":"holding a bottle in front of a laptop","template":"Holding [something] in front of [something]","placeholders":["a bottle","a laptop"]}, +{"id":"29937","label":"holding tiger in front of blackboard","template":"Holding [something] in front of [something]","placeholders":["tiger","blackboard"]}, +{"id":"133314","label":"lifting a surface with a plate on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a plate"]}, +{"id":"152550","label":"moving a flashlight away from a smartphone","template":"Moving [something] away from [something]","placeholders":["a flashlight","a smartphone"]}, +{"id":"153503","label":"pretending to open bottle without actually opening it","template":"Pretending to open [something] without actually opening it","placeholders":["bottle"]}, +{"id":"114037","label":"pushing fidget spinner so it spins","template":"Pushing [something] so it spins","placeholders":["fidget spinner"]}, +{"id":"10449","label":"laying clock on the table on its side, not upright","template":"Laying [something] on the table on its side, not upright","placeholders":["clock"]}, +{"id":"200684","label":"putting clip box onto stencil","template":"Putting [something] onto [something]","placeholders":["clip box","stencil"]}, +{"id":"30690","label":"lifting a surface with lotion container on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["lotion container"]}, +{"id":"73729","label":"rolling marker on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["marker"]}, +{"id":"207410","label":"spreading peanut butter onto a plate","template":"Spreading [something] onto [something]","placeholders":["peanut butter","a plate"]}, +{"id":"19045","label":"letting a battery roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["a battery"]}, +{"id":"185504","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"17367","label":"putting mouse next to keyboard","template":"Putting [something] next to [something]","placeholders":["mouse","keyboard"]}, +{"id":"172589","label":"pretending to pour water out of cup, but cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","cup","cup"]}, +{"id":"122940","label":"throwing a highlighter onto a surface","template":"Throwing [something] onto a surface","placeholders":["a highlighter"]}, +{"id":"63938","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"182551","label":"moving smart phone down","template":"Moving [something] down","placeholders":["smart phone"]}, +{"id":"49208","label":"touching (without moving) handle of a mug","template":"Touching (without moving) [part] of [something]","placeholders":["handle","a mug"]}, +{"id":"43615","label":"wiping dust off of a jar","template":"Wiping [something] off of [something]","placeholders":["dust","a jar"]}, +{"id":"56562","label":"plugging a hairdryer into the wall","template":"Plugging [something] into [something]","placeholders":["a hairdryer","the wall"]}, +{"id":"90323","label":"tilting paper with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["paper","pen"]}, +{"id":"37148","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"219444","label":"putting phone onto lotion container","template":"Putting [something] onto [something]","placeholders":["phone","lotion container"]}, +{"id":"21830","label":"taking straw","template":"Taking [one of many similar things on the table]","placeholders":["straw"]}, +{"id":"76136","label":"taking piece of garbage","template":"Taking [one of many similar things on the table]","placeholders":["piece of garbage"]}, +{"id":"63783","label":"dropping pillow behind basket","template":"Dropping [something] behind [something]","placeholders":["pillow","basket"]}, +{"id":"147485","label":"showing that bottle is empty","template":"Showing that [something] is empty","placeholders":["bottle"]}, +{"id":"39117","label":"pushing a chair so it spins","template":"Pushing [something] so it spins","placeholders":["a chair"]}, +{"id":"45444","label":"poking box so that it falls over","template":"Poking [something] so that it falls over","placeholders":["box"]}, +{"id":"76426","label":"putting eraser into box","template":"Putting [something] into [something]","placeholders":["eraser","box"]}, +{"id":"147370","label":"tissue falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["tissue"]}, +{"id":"67492","label":"taking red toy car from table","template":"Taking [something] from [somewhere]","placeholders":["red toy car","table"]}, +{"id":"188907","label":"dropping cow behind box","template":"Dropping [something] behind [something]","placeholders":["cow","box"]}, +{"id":"17284","label":"tearing toilet paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["toilet paper"]}, +{"id":"195590","label":"closing mircowave","template":"Closing [something]","placeholders":["mircowave"]}, +{"id":"206602","label":"putting remote, lipbalm and keychain on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["remote","lipbalm","keychain"]}, +{"id":"53473","label":"uncovering a ball","template":"Uncovering [something]","placeholders":["a ball"]}, +{"id":"146187","label":"putting a can onto a table","template":"Putting [something] onto [something]","placeholders":["a can","a table"]}, +{"id":"24531","label":"holding cream behind knife","template":"Holding [something] behind [something]","placeholders":["cream","knife"]}, +{"id":"37970","label":"showing a wire behind a glas bottle","template":"Showing [something] behind [something]","placeholders":["a wire","a glas bottle"]}, +{"id":"212416","label":"putting pen on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["pen","chair"]}, +{"id":"116582","label":"moving something up","template":"Moving [something] up","placeholders":["something"]}, +{"id":"155739","label":"throwing hand tissues against a sofa","template":"Throwing [something] against [something]","placeholders":["hand tissues","a sofa"]}, +{"id":"210507","label":"throwing a scotch roll against the wall","template":"Throwing [something] against [something]","placeholders":["a scotch roll","the wall"]}, +{"id":"164644","label":"lifting t-shirth up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["t-shirth"]}, +{"id":"144139","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"79740","label":"plugging a plug into socket","template":"Plugging [something] into [something]","placeholders":["a plug","socket"]}, +{"id":"91964","label":"pushing handle onto door","template":"Pushing [something] onto [something]","placeholders":["handle","door"]}, +{"id":"62317","label":"lifting note pad up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["note pad"]}, +{"id":"13540","label":"putting a pen into a pen case","template":"Putting [something] into [something]","placeholders":["a pen","a pen case"]}, +{"id":"70649","label":"throwing newspaper","template":"Throwing [something]","placeholders":["newspaper"]}, +{"id":"66604","label":"pushing case with rolling pin","template":"Pushing [something] with [something]","placeholders":["case","rolling pin"]}, +{"id":"78494","label":"pulling a toy car from right to left","template":"Pulling [something] from right to left","placeholders":["a toy car"]}, +{"id":"177586","label":"spilling water onto table","template":"Spilling [something] onto [something]","placeholders":["water","table"]}, +{"id":"60110","label":"tearing paper just a little bit","template":"Tearing [something] just a little bit","placeholders":["paper"]}, +{"id":"150230","label":"pen falling like a rock","template":"[Something] falling like a rock","placeholders":["pen"]}, +{"id":"96030","label":"moving toy car away from toy man","template":"Moving [something] away from [something]","placeholders":["toy car","toy man"]}, +{"id":"188482","label":"plugging cord into outlet","template":"Plugging [something] into [something]","placeholders":["cord","outlet"]}, +{"id":"26152","label":"putting box next to pink book","template":"Putting [something] next to [something]","placeholders":["box","pink book"]}, +{"id":"35314","label":"moving wooden stick closer to red hair band","template":"Moving [something] closer to [something]","placeholders":["wooden stick","red hair band"]}, +{"id":"55511","label":"twisting a slipper","template":"Twisting [something]","placeholders":["a slipper"]}, +{"id":"58898","label":"putting ball on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["ball"]}, +{"id":"210836","label":"pouring water into cup","template":"Pouring [something] into [something]","placeholders":["water","cup"]}, +{"id":"122361","label":"pretending to poke doll","template":"Pretending to poke [something]","placeholders":["doll"]}, +{"id":"216458","label":"poking book so it slightly moves","template":"Poking [something] so it slightly moves","placeholders":["book"]}, +{"id":"114659","label":"pushing coin so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["coin"]}, +{"id":"180148","label":"moving power bank down","template":"Moving [something] down","placeholders":["power bank"]}, +{"id":"119936","label":"turning a notebook upside down","template":"Turning [something] upside down","placeholders":["a notebook"]}, +{"id":"126833","label":"pretending to take keys out of bag","template":"Pretending to take [something] out of [something]","placeholders":["keys","bag"]}, +{"id":"166187","label":"hitting cup with pen","template":"Hitting [something] with [something]","placeholders":["cup","pen"]}, +{"id":"84316","label":"hitting a glue with screwdriver","template":"Hitting [something] with [something]","placeholders":["a glue","screwdriver"]}, +{"id":"65684","label":"twisting cloth","template":"Twisting [something]","placeholders":["cloth"]}, +{"id":"20379","label":"putting a pen upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["a pen"]}, +{"id":"123713","label":"covering keys with napkin","template":"Covering [something] with [something]","placeholders":["keys","napkin"]}, +{"id":"118950","label":"lifting a surface with a nail-brush on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a nail-brush"]}, +{"id":"178115","label":"turning a wallet upside down","template":"Turning [something] upside down","placeholders":["a wallet"]}, +{"id":"132440","label":"taking mobile phone from floor","template":"Taking [something] from [somewhere]","placeholders":["mobile phone","floor"]}, +{"id":"31658","label":"pushing coffee from right to left","template":"Pushing [something] from right to left","placeholders":["coffee"]}, +{"id":"121668","label":"turning the camera upwards while filming waist basket","template":"Turning the camera upwards while filming [something]","placeholders":["waist basket"]}, +{"id":"207651","label":"putting camera into hat","template":"Putting [something] into [something]","placeholders":["camera","hat"]}, +{"id":"17176","label":"covering something with something","template":"Covering [something] with [something]","placeholders":["something","something"]}, +{"id":"56889","label":"moving car across a surface without it falling down","template":"Moving [something] across a surface without it falling down","placeholders":["car"]}, +{"id":"116863","label":"pulling watch out of box","template":"Pulling [something] out of [something]","placeholders":["watch","box"]}, +{"id":"111677","label":"putting a lighter upright on the table","template":"Putting [something] upright on the table","placeholders":["a lighter"]}, +{"id":"97085","label":"lifting a book with sunglasses on it","template":"Lifting [something] with [something] on it","placeholders":["a book","sunglasses"]}, +{"id":"51243","label":"spilling water onto coffee table","template":"Spilling [something] onto [something]","placeholders":["water","coffee table"]}, +{"id":"55773","label":"hitting orange cup with key","template":"Hitting [something] with [something]","placeholders":["orange cup","key"]}, +{"id":"198180","label":"showing that a coin purse is empty","template":"Showing that [something] is empty","placeholders":["a coin purse"]}, +{"id":"161379","label":"rolling a plastic chair on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["a plastic chair"]}, +{"id":"27382","label":"pushing an accumulator so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["an accumulator"]}, +{"id":"190022","label":"hitting a big ball with cardboard","template":"Hitting [something] with [something]","placeholders":["a big ball","cardboard"]}, +{"id":"49454","label":"pulling two ends of remote but nothing happens","template":"Pulling two ends of [something] but nothing happens","placeholders":["remote"]}, +{"id":"66547","label":"pretending to squeeze an apple","template":"Pretending to squeeze [something]","placeholders":["an apple"]}, +{"id":"63095","label":"spinning toothpaste that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["toothpaste"]}, +{"id":"150551","label":"pouring water into beaker","template":"Pouring [something] into [something]","placeholders":["water","beaker"]}, +{"id":"49923","label":"pushing coffee pot so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["coffee pot"]}, +{"id":"91315","label":"spinning the bottle that quickly stops spinning","template":"Spinning [something] that quickly stops spinning","placeholders":["the bottle"]}, +{"id":"210684","label":"bending something so that it deforms","template":"Bending [something] so that it deforms","placeholders":["something"]}, +{"id":"134399","label":"lifting a surface with clip on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["clip"]}, +{"id":"52343","label":"folding paper","template":"Folding [something]","placeholders":["paper"]}, +{"id":"81318","label":"moving a wallet down","template":"Moving [something] down","placeholders":["a wallet"]}, +{"id":"121756","label":"dropping a cigarette pack behind a lighter","template":"Dropping [something] behind [something]","placeholders":["a cigarette pack","a lighter"]}, +{"id":"84104","label":"pulling lipstick from right to left","template":"Pulling [something] from right to left","placeholders":["lipstick"]}, +{"id":"168294","label":"attaching paper to book","template":"Attaching [something] to [something]","placeholders":["paper","book"]}, +{"id":"129397","label":"pretending to be tearing plastic case","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic case"]}, +{"id":"175476","label":"holding a plastic bottle in front of a cap","template":"Holding [something] in front of [something]","placeholders":["a plastic bottle","a cap"]}, +{"id":"181154","label":"scooping banana up with cup","template":"Scooping [something] up with [something]","placeholders":["banana","cup"]}, +{"id":"180119","label":"pulling tv controller from left to right","template":"Pulling [something] from left to right","placeholders":["tv controller"]}, +{"id":"83090","label":"pushing sunglasses so that it almost falls off but doesn't","template":"Pushing [something] so that it almost falls off but doesn't","placeholders":["sunglasses"]}, +{"id":"104742","label":"pushing a toy so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["a toy"]}, +{"id":"123011","label":"letting spray can roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["spray can"]}, +{"id":"120828","label":"lifting figurine up completely, then letting it drop down","template":"Lifting [something] up completely, then letting it drop down","placeholders":["figurine"]}, +{"id":"174788","label":"moving cup closer to pen","template":"Moving [something] closer to [something]","placeholders":["cup","pen"]}, +{"id":"189753","label":"turning glass upside down","template":"Turning [something] upside down","placeholders":["glass"]}, +{"id":"52026","label":"plugging phone wire into phone but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone wire","phone"]}, +{"id":"99552","label":"spinning dreidel so it continues spinning","template":"Spinning [something] so it continues spinning","placeholders":["dreidel"]}, +{"id":"182126","label":"showing that ramekin is empty","template":"Showing that [something] is empty","placeholders":["ramekin"]}, +{"id":"76639","label":"putting cookie jar and glass on the table","template":"Putting [something] and [something] on the table","placeholders":["cookie jar","glass"]}, +{"id":"82090","label":"turning the camera left while filming red watch box","template":"Turning the camera left while filming [something]","placeholders":["red watch box"]}, +{"id":"11477","label":"moving a cylindrical battery and a pocket watch so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["a cylindrical battery","a pocket watch"]}, +{"id":"149237","label":"tearing tearing a sheet of paper into two pieces into two pieces","template":"Tearing [something] into two pieces","placeholders":["tearing a sheet of paper into two pieces"]}, +{"id":"193251","label":"putting tape and scissors on the table","template":"Putting [something] and [something] on the table","placeholders":["tape","scissors"]}, +{"id":"201420","label":"turning the camera right while filming eggplant","template":"Turning the camera right while filming [something]","placeholders":["eggplant"]}, +{"id":"177438","label":"tilting notebook with pen on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["notebook","pen"]}, +{"id":"28318","label":"tilting plate with glove on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["plate","glove"]}, +{"id":"136563","label":"putting a glue in front of a container","template":"Putting [something] in front of [something]","placeholders":["a glue","a container"]}, +{"id":"167239","label":"dropping a bead into an organizer box","template":"Dropping [something] into [something]","placeholders":["a bead","an organizer box"]}, +{"id":"46991","label":"pushing pens so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["pens"]}, +{"id":"76215","label":"rolling soda can on a flat surface","template":"Rolling [something] on a flat surface","placeholders":["soda can"]}, +{"id":"218531","label":"trying to bend a scissor so nothing happens","template":"Trying to bend [something unbendable] so nothing happens","placeholders":["a scissor"]}, +{"id":"4319","label":"putting 2 coasters onto a glass","template":"Putting [number of] [something] onto [something]","placeholders":["2","coasters","a glass"]}, +{"id":"67155","label":"moving cigarette down","template":"Moving [something] down","placeholders":["cigarette"]}, +{"id":"106098","label":"plugging air conditioning unit into wall but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["air conditioning unit","wall"]}, +{"id":"219037","label":"pushing a stuffed bear off of a dresser","template":"Pushing [something] off of [something]","placeholders":["a stuffed bear","a dresser"]}, +{"id":"129609","label":"pushing spoon so it spins","template":"Pushing [something] so it spins","placeholders":["spoon"]}, +{"id":"5475","label":"putting marker pen on a flat surface without letting it roll","template":"Putting [something] on a flat surface without letting it roll","placeholders":["marker pen"]}, +{"id":"204551","label":"lifting a can with a pencil on it","template":"Lifting [something] with [something] on it","placeholders":["a can","a pencil"]}, +{"id":"85483","label":"holding toilet paper over phone","template":"Holding [something] over [something]","placeholders":["toilet paper","phone"]}, +{"id":"127585","label":"tipping small canister over","template":"Tipping [something] over","placeholders":["small canister"]}, +{"id":"98819","label":"turning cellphone upside down","template":"Turning [something] upside down","placeholders":["cellphone"]}, +{"id":"206689","label":"putting nailpolish on a surface","template":"Putting [something] on a surface","placeholders":["nailpolish"]}, +{"id":"158643","label":"stuffing shirt into hand","template":"Stuffing [something] into [something]","placeholders":["shirt","hand"]}, +{"id":"41828","label":"putting pencil behind mug","template":"Putting [something] behind [something]","placeholders":["pencil","mug"]}, +{"id":"87145","label":"taking one spray bottle","template":"Taking [one of many similar things on the table]","placeholders":["one spray bottle"]}, +{"id":"26744","label":"pretending to put fork into mug","template":"Pretending to put [something] into [something]","placeholders":["fork","mug"]}, +{"id":"41462","label":"holding scissors over a keyboard","template":"Holding [something] over [something]","placeholders":["scissors","a keyboard"]}, +{"id":"207200","label":"pulling a tail from behind of a cat","template":"Pulling [something] from behind of [something]","placeholders":["a tail","a cat"]}, +{"id":"208045","label":"putting a hair brush on a surface","template":"Putting [something] on a surface","placeholders":["a hair brush"]}, +{"id":"110143","label":"stacking 3 pot","template":"Stacking [number of] [something]","placeholders":["3","pot"]}, +{"id":"110800","label":"holding a toy train","template":"Holding [something]","placeholders":["a toy train"]}, +{"id":"196670","label":"holding something in front of something","template":"Holding [something] in front of [something]","placeholders":["something","something"]}, +{"id":"116776","label":"holding phone in front of bottle","template":"Holding [something] in front of [something]","placeholders":["phone","bottle"]}, +{"id":"118044","label":"pretending to put syringe onto box","template":"Pretending to put [something] onto [something]","placeholders":["syringe","box"]}, +{"id":"42633","label":"trying but failing to attach wrong cable to laptop because it doesn't stick","template":"Trying but failing to attach [something] to [something] because it doesn't stick","placeholders":["wrong cable","laptop"]}, +{"id":"39831","label":"spreading butter onto bread","template":"Spreading [something] onto [something]","placeholders":["butter","bread"]}, +{"id":"171488","label":"poking plush doll so that it falls over","template":"Poking [something] so that it falls over","placeholders":["plush doll"]}, +{"id":"39068","label":"a leaf falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a leaf"]}, +{"id":"55506","label":"pushing hand cream tube so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["hand cream tube"]}, +{"id":"17888","label":"scissors falling like a rock","template":"[Something] falling like a rock","placeholders":["scissors"]}, +{"id":"219692","label":"pushing a yellow pencil so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["a yellow pencil"]}, +{"id":"130325","label":"sprinkling sugar onto a cup","template":"Sprinkling [something] onto [something]","placeholders":["sugar","a cup"]}, +{"id":"39672","label":"putting bottles with bottles","template":"Putting [something similar to other things that are already on the table]","placeholders":["bottles with bottles"]}, +{"id":"99951","label":"pushing lid so that it slightly moves","template":"Pushing [something] so that it slightly moves","placeholders":["lid"]}, +{"id":"211156","label":"pretending to pick hammer up","template":"Pretending to pick [something] up","placeholders":["hammer"]}, +{"id":"209828","label":"a paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a paper"]}, +{"id":"433","label":"showing foal to the camera","template":"Showing [something] to the camera","placeholders":["foal"]}, +{"id":"70940","label":"stuffing chip bag into bigger bag","template":"Stuffing [something] into [something]","placeholders":["chip bag","bigger bag"]}, +{"id":"91488","label":"putting a box behind a stack","template":"Putting [something] behind [something]","placeholders":["a box","a stack"]}, +{"id":"114641","label":"moving clock and pill bottle closer to each other","template":"Moving [something] and [something] closer to each other","placeholders":["clock","pill bottle"]}, +{"id":"81012","label":"pouring water into a glass","template":"Pouring [something] into [something]","placeholders":["water","a glass"]}, +{"id":"4545","label":"pretending or trying and failing to twist top","template":"Pretending or trying and failing to twist [something]","placeholders":["top"]}, +{"id":"110123","label":"holding brush in front of cup","template":"Holding [something] in front of [something]","placeholders":["brush","cup"]}, +{"id":"39756","label":"pushing pen from right to left","template":"Pushing [something] from right to left","placeholders":["pen"]}, +{"id":"117524","label":"moving plastic flower closer to toy duck","template":"Moving [something] closer to [something]","placeholders":["plastic flower","toy duck"]}, +{"id":"145532","label":"dropping toy onto tile","template":"Dropping [something] onto [something]","placeholders":["toy","tile"]}, +{"id":"33671","label":"stuffing sheet into can","template":"Stuffing [something] into [something]","placeholders":["sheet","can"]}, +{"id":"32750","label":"letting pen roll along a flat surface","template":"Letting [something] roll along a flat surface","placeholders":["pen"]}, +{"id":"3839","label":"putting brush, scissors and comb on the table","template":"Putting [something], [something] and [something] on the table","placeholders":["brush","scissors","comb"]}, +{"id":"162877","label":"pushing nail polish so it spins","template":"Pushing [something] so it spins","placeholders":["nail polish"]}, +{"id":"22200","label":"bottle colliding with bottle opener and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["bottle","bottle opener"]}, +{"id":"28911","label":"lifting up one end of vase, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["vase"]}, +{"id":"100026","label":"twisting airscrew","template":"Twisting [something]","placeholders":["airscrew"]}, +{"id":"68862","label":"covering a wrist band with a hand","template":"Covering [something] with [something]","placeholders":["a wrist band","a hand"]}, +{"id":"195082","label":"moving a beer can away from a mug","template":"Moving [something] away from [something]","placeholders":["a beer can","a mug"]}, +{"id":"57070","label":"moving mouse up","template":"Moving [something] up","placeholders":["mouse"]}, +{"id":"177266","label":"plugging phone charger into power socket","template":"Plugging [something] into [something]","placeholders":["phone charger","power socket"]}, +{"id":"118082","label":"folding a book page","template":"Folding [something]","placeholders":["a book page"]}, +{"id":"48709","label":"pretending to put black disc case on a surface","template":"Pretending to put [something] on a surface","placeholders":["black disc case"]}, +{"id":"220761","label":"dropping an apple next to a mug","template":"Dropping [something] next to [something]","placeholders":["an apple","a mug"]}, +{"id":"67092","label":"putting hat behind shoe","template":"Putting [something] behind [something]","placeholders":["hat","shoe"]}, +{"id":"45135","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"166328","label":"holding remote in front of fireplace","template":"Holding [something] in front of [something]","placeholders":["remote","fireplace"]}, +{"id":"139001","label":"taking a pen","template":"Taking [one of many similar things on the table]","placeholders":["a pen"]}, +{"id":"55424","label":"touching (without moving) lightningbulb of lamp","template":"Touching (without moving) [part] of [something]","placeholders":["lightningbulb","lamp"]}, +{"id":"138757","label":"throwing goggles","template":"Throwing [something]","placeholders":["goggles"]}, +{"id":"176239","label":"turning the camera right while filming old mobile phone","template":"Turning the camera right while filming [something]","placeholders":["old mobile phone"]}, +{"id":"169723","label":"plugging cable into connector","template":"Plugging [something] into [something]","placeholders":["cable","connector"]}, +{"id":"15622","label":"unfolding towel","template":"Unfolding [something]","placeholders":["towel"]}, +{"id":"9407","label":"covering a pen with a tissue","template":"Covering [something] with [something]","placeholders":["a pen","a tissue"]}, +{"id":"114693","label":"lifting a collar up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a collar"]}, +{"id":"34767","label":"turning the camera left while filming purple microfiber","template":"Turning the camera left while filming [something]","placeholders":["purple microfiber"]}, +{"id":"196675","label":"covering snail shell with paper","template":"Covering [something] with [something]","placeholders":["snail shell","paper"]}, +{"id":"41608","label":"holding computer mouse next to desktop computer","template":"Holding [something] next to [something]","placeholders":["computer mouse","desktop computer"]}, +{"id":"196305","label":"plugging phone charger into wall outlet but pulling it right out as you remove your hand","template":"Plugging [something] into [something] but pulling it right out as you remove your hand","placeholders":["phone charger","wall outlet"]}, +{"id":"153840","label":"pretending to take nair varnish from surface","template":"Pretending to take [something] from [somewhere]","placeholders":["nair varnish","surface"]}, +{"id":"85604","label":"squeezing bottle","template":"Squeezing [something]","placeholders":["bottle"]}, +{"id":"63688","label":"squeezing a pillow","template":"Squeezing [something]","placeholders":["a pillow"]}, +{"id":"160835","label":"moving chalk up","template":"Moving [something] up","placeholders":["chalk"]}, +{"id":"65088","label":"putting pen next to pen","template":"Putting [something] next to [something]","placeholders":["pen","pen"]}, +{"id":"10126","label":"lifting magnifying glass up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["magnifying glass"]}, +{"id":"171030","label":"pushing bottle off of counter","template":"Pushing [something] off of [something]","placeholders":["bottle","counter"]}, +{"id":"143445","label":"showing pen drive on top of the bowl","template":"Showing [something] on top of [something]","placeholders":["pen drive","the bowl"]}, +{"id":"216565","label":"dropping wallet onto chair","template":"Dropping [something] onto [something]","placeholders":["wallet","chair"]}, +{"id":"174835","label":"gummy ball being deflected from tennis ball","template":"[Something] being deflected from [something]","placeholders":["gummy ball","tennis ball"]}, +{"id":"30171","label":"holding a bottle of mustard behind a plastic bag","template":"Holding [something] behind [something]","placeholders":["a bottle of mustard","a plastic bag"]}, +{"id":"193046","label":"moving crayon closer to candle","template":"Moving [something] closer to [something]","placeholders":["crayon","candle"]}, +{"id":"83949","label":"putting a pepper shaker on a surface","template":"Putting [something] on a surface","placeholders":["a pepper shaker"]}, +{"id":"48193","label":"moving phone across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["phone"]}, +{"id":"131836","label":"opening box","template":"Opening [something]","placeholders":["box"]}, +{"id":"171174","label":"turning the camera right while filming the tv","template":"Turning the camera right while filming [something]","placeholders":["the tv"]}, +{"id":"210400","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"44142","label":"hitting chair with racket","template":"Hitting [something] with [something]","placeholders":["chair","racket"]}, +{"id":"91770","label":"throwing ear muffs in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ear muffs"]}, +{"id":"196784","label":"showing that a yellow cup is empty","template":"Showing that [something] is empty","placeholders":["a yellow cup"]}, +{"id":"150212","label":"something colliding with something and both are being deflected","template":"[Something] colliding with [something] and both are being deflected","placeholders":["something","something"]}, +{"id":"5589","label":"taking a pompom","template":"Taking [one of many similar things on the table]","placeholders":["a pompom"]}, +{"id":"132038","label":"throwing tape","template":"Throwing [something]","placeholders":["tape"]}, +{"id":"82496","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"39662","label":"holding umbrela in front of cabinet","template":"Holding [something] in front of [something]","placeholders":["umbrela","cabinet"]}, +{"id":"203477","label":"showing cough drop next to tv remote","template":"Showing [something] next to [something]","placeholders":["cough drop","tv remote"]}, +{"id":"97560","label":"putting laptop onto table","template":"Putting [something] onto [something]","placeholders":["laptop","table"]}, +{"id":"34454","label":"tilting black file with white toy car on it slightly so it doesn't fall down","template":"Tilting [something] with [something] on it slightly so it doesn't fall down","placeholders":["black file","white toy car"]}, +{"id":"49392","label":"putting keyd","template":"Putting [something similar to other things that are already on the table]","placeholders":["keyd"]}, +{"id":"171871","label":"putting bottle on a surface","template":"Putting [something] on a surface","placeholders":["bottle"]}, +{"id":"8244","label":"tilting a cylindrical box with a stone on it until it falls off","template":"Tilting [something] with [something] on it until it falls off","placeholders":["a cylindrical box","a stone"]}, +{"id":"179244","label":"letting a platic hollow pipe roll down a slanted surface","template":"Letting [something] roll down a slanted surface","placeholders":["a platic hollow pipe"]}, +{"id":"80754","label":"squeezing cushion","template":"Squeezing [something]","placeholders":["cushion"]}, +{"id":"6949","label":"moving white colour board clip down","template":"Moving [something] down","placeholders":["white colour board clip"]}, +{"id":"34330","label":"moving bottle down","template":"Moving [something] down","placeholders":["bottle"]}, +{"id":"213968","label":"tearing paper into two pieces","template":"Tearing [something] into two pieces","placeholders":["paper"]}, +{"id":"104691","label":"holding plate in front of mirror","template":"Holding [something] in front of [something]","placeholders":["plate","mirror"]}, +{"id":"43497","label":"turning the camera left while filming plant","template":"Turning the camera left while filming [something]","placeholders":["plant"]}, +{"id":"125910","label":"unfolding paper","template":"Unfolding [something]","placeholders":["paper"]}, +{"id":"214327","label":"orange being deflected from wall","template":"[Something] being deflected from [something]","placeholders":["orange","wall"]}, +{"id":"153678","label":"throwing ball in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["ball"]}, +{"id":"62940","label":"pretending or failing to wipe ink off of board","template":"Pretending or failing to wipe [something] off of [something]","placeholders":["ink","board"]}, +{"id":"154473","label":"opening tin","template":"Opening [something]","placeholders":["tin"]}, +{"id":"194086","label":"opening a box","template":"Opening [something]","placeholders":["a box"]}, +{"id":"24813","label":"attaching light bulb to socket","template":"Attaching [something] to [something]","placeholders":["light bulb","socket"]}, +{"id":"34431","label":"putting a pair of socks into drawer","template":"Putting [something] into [something]","placeholders":["a pair of socks","drawer"]}, +{"id":"171534","label":"moving leaves of plant","template":"Moving [part] of [something]","placeholders":["leaves","plant"]}, +{"id":"54338","label":"holding tangerine behind mug","template":"Holding [something] behind [something]","placeholders":["tangerine","mug"]}, +{"id":"1014","label":"covering fossil with pillow","template":"Covering [something] with [something]","placeholders":["fossil","pillow"]}, +{"id":"161613","label":"putting perfume bottle on a surface","template":"Putting [something] on a surface","placeholders":["perfume bottle"]}, +{"id":"139649","label":"taking soda bottle","template":"Taking [one of many similar things on the table]","placeholders":["soda bottle"]}, +{"id":"39518","label":"covering white colour board clip with duster","template":"Covering [something] with [something]","placeholders":["white colour board clip","duster"]}, +{"id":"112252","label":"moving charger down","template":"Moving [something] down","placeholders":["charger"]}, +{"id":"187802","label":"pushing feeding bottle from left to right","template":"Pushing [something] from left to right","placeholders":["feeding bottle"]}, +{"id":"163771","label":"putting a bell pepper with a group of bell peppers","template":"Putting [something similar to other things that are already on the table]","placeholders":["a bell pepper with a group of bell peppers"]}, +{"id":"216413","label":"pretending to pick black play cards up","template":"Pretending to pick [something] up","placeholders":["black play cards"]}, +{"id":"24489","label":"pushing flowers from left to right","template":"Pushing [something] from left to right","placeholders":["flowers"]}, +{"id":"27375","label":"pretending to pick a mobile toy up","template":"Pretending to pick [something] up","placeholders":["a mobile toy"]}, +{"id":"211572","label":"holding smartphone next to liptint","template":"Holding [something] next to [something]","placeholders":["smartphone","liptint"]}, +{"id":"50186","label":"moving punching machine away from stapler","template":"Moving [something] away from [something]","placeholders":["punching machine","stapler"]}, +{"id":"14213","label":"holding keyboard in front of backpack","template":"Holding [something] in front of [something]","placeholders":["keyboard","backpack"]}, +{"id":"69252","label":"pretending to pour water out of measuring cup, but measuring cup is empty","template":"Pretending to pour [something] out of [something], but [something] is empty","placeholders":["water","measuring cup","measuring cup"]}, +{"id":"146714","label":"plugging a cable into an outlet","template":"Plugging [something] into [something]","placeholders":["a cable","an outlet"]}, +{"id":"188755","label":"lifting plant with coffin on it","template":"Lifting [something] with [something] on it","placeholders":["plant","coffin"]}, +{"id":"209027","label":"covering box with blanket","template":"Covering [something] with [something]","placeholders":["box","blanket"]}, +{"id":"168035","label":"touching (without moving) roller of paper","template":"Touching (without moving) [part] of [something]","placeholders":["roller","paper"]}, +{"id":"216979","label":"poking ball so that it spins around","template":"Poking [something] so that it spins around","placeholders":["ball"]}, +{"id":"118434","label":"dropping necklace in front of door","template":"Dropping [something] in front of [something]","placeholders":["necklace","door"]}, +{"id":"141432","label":"spilling water next to faucet","template":"Spilling [something] next to [something]","placeholders":["water","faucet"]}, +{"id":"110590","label":"lifting xbox game with phone on it","template":"Lifting [something] with [something] on it","placeholders":["xbox game","phone"]}, +{"id":"92022","label":"holding umbrella in front of pillar","template":"Holding [something] in front of [something]","placeholders":["umbrella","pillar"]}, +{"id":"175720","label":"showing a cup next to a fan","template":"Showing [something] next to [something]","placeholders":["a cup","a fan"]}, +{"id":"13962","label":"sprinkling flour onto mat","template":"Sprinkling [something] onto [something]","placeholders":["flour","mat"]}, +{"id":"201315","label":"plugging headphones into a tablet","template":"Plugging [something] into [something]","placeholders":["headphones","a tablet"]}, +{"id":"152835","label":"taking orange","template":"Taking [one of many similar things on the table]","placeholders":["orange"]}, +{"id":"116511","label":"lifting up one end of bag, then letting it drop down","template":"Lifting up one end of [something], then letting it drop down","placeholders":["bag"]}, +{"id":"12722","label":"squeezing a basketball","template":"Squeezing [something]","placeholders":["a basketball"]}, +{"id":"112050","label":"opening pouch","template":"Opening [something]","placeholders":["pouch"]}, +{"id":"86588","label":"taking spoon","template":"Taking [one of many similar things on the table]","placeholders":["spoon"]}, +{"id":"51920","label":"opening basket","template":"Opening [something]","placeholders":["basket"]}, +{"id":"163685","label":"taking one of the glass bottles","template":"Taking [one of many similar things on the table]","placeholders":["one of the glass bottles"]}, +{"id":"13339","label":"twisting mascara tube","template":"Twisting [something]","placeholders":["mascara tube"]}, +{"id":"91775","label":"turning a picture upside down","template":"Turning [something] upside down","placeholders":["a picture"]}, +{"id":"154735","label":"plugging usb into usb port","template":"Plugging [something] into [something]","placeholders":["usb","usb port"]}, +{"id":"72168","label":"showing tape behind jar","template":"Showing [something] behind [something]","placeholders":["tape","jar"]}, +{"id":"43685","label":"bending wire so that it deforms","template":"Bending [something] so that it deforms","placeholders":["wire"]}, +{"id":"165103","label":"squeezing water bottle","template":"Squeezing [something]","placeholders":["water bottle"]}, +{"id":"149405","label":"throwing pen in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["pen"]}, +{"id":"80727","label":"squeezing something","template":"Squeezing [something]","placeholders":["something"]}, +{"id":"177680","label":"sticky note falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["sticky note"]}, +{"id":"191149","label":"pouring water into a mug","template":"Pouring [something] into [something]","placeholders":["water","a mug"]}, +{"id":"205805","label":"moving big ball and small ball so they collide with each other","template":"Moving [something] and [something] so they collide with each other","placeholders":["big ball","small ball"]}, +{"id":"109420","label":"lifting a lid up completely without letting it drop down","template":"Lifting [something] up completely without letting it drop down","placeholders":["a lid"]}, +{"id":"208158","label":"plugging usb into pc","template":"Plugging [something] into [something]","placeholders":["usb","pc"]}, +{"id":"110495","label":"tipping a cup with milk over, so milk falls out","template":"Tipping [something] with [something in it] over, so [something in it] falls out","placeholders":["a cup","milk","milk"]}, +{"id":"84250","label":"holding bottle in front of helmet","template":"Holding [something] in front of [something]","placeholders":["bottle","helmet"]}, +{"id":"161643","label":"covering a pen with tissue paper","template":"Covering [something] with [something]","placeholders":["a pen","tissue paper"]}, +{"id":"82692","label":"pretending to be tearing plastic glass","template":"Pretending to be tearing [something that is not tearable]","placeholders":["plastic glass"]}, +{"id":"66961","label":"putting book on the edge of chair so it is not supported and falls down","template":"Putting [something] on the edge of [something] so it is not supported and falls down","placeholders":["book","chair"]}, +{"id":"1733","label":"squeezing a ball","template":"Squeezing [something]","placeholders":["a ball"]}, +{"id":"167687","label":"pulling paper out of bowl","template":"Pulling [something] out of [something]","placeholders":["paper","bowl"]}, +{"id":"159534","label":"moving eye drops across a surface until it falls down","template":"Moving [something] across a surface until it falls down","placeholders":["eye drops"]}, +{"id":"136015","label":"pushing an iron from right to left","template":"Pushing [something] from right to left","placeholders":["an iron"]}, +{"id":"103594","label":"putting box on a surface","template":"Putting [something] on a surface","placeholders":["box"]}, +{"id":"34012","label":"dropping a matchbox in front of a book","template":"Dropping [something] in front of [something]","placeholders":["a matchbox","a book"]}, +{"id":"195629","label":"moving away from scotch tape with your camera","template":"Moving away from [something] with your camera","placeholders":["scotch tape"]}, +{"id":"110670","label":"moving pen away from candle","template":"Moving [something] away from [something]","placeholders":["pen","candle"]}, +{"id":"194148","label":"taking remote out of box","template":"Taking [something] out of [something]","placeholders":["remote","box"]}, +{"id":"88665","label":"throwing a toy microphone in the air and catching it","template":"Throwing [something] in the air and catching it","placeholders":["a toy microphone"]}, +{"id":"113233","label":"covering a watch with a cloth","template":"Covering [something] with [something]","placeholders":["a watch","a cloth"]}, +{"id":"137805","label":"showing thermometer to the camera","template":"Showing [something] to the camera","placeholders":["thermometer"]}, +{"id":"196080","label":"throwing a pack of gum onto a surface","template":"Throwing [something] onto a surface","placeholders":["a pack of gum"]}, +{"id":"196408","label":"putting banana upright on the table, so it falls on its side","template":"Putting [something that cannot actually stand upright] upright on the table, so it falls on its side","placeholders":["banana"]}, +{"id":"70324","label":"lifting a surface with a watch on it until it starts sliding down","template":"Lifting a surface with [something] on it until it starts sliding down","placeholders":["a watch"]}, +{"id":"87849","label":"pulling two ends of paper so that it separates into two pieces","template":"Pulling two ends of [something] so that it separates into two pieces","placeholders":["paper"]}, +{"id":"62096","label":"showing mug behind kettle","template":"Showing [something] behind [something]","placeholders":["mug","kettle"]}, +{"id":"171194","label":"dropping a loonie into a cup","template":"Dropping [something] into [something]","placeholders":["a loonie","a cup"]}, +{"id":"40391","label":"paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["paper"]}, +{"id":"132103","label":"a ply of toilet paper falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["a ply of toilet paper"]}, +{"id":"110293","label":"pretending to take screwdriver from floor","template":"Pretending to take [something] from [somewhere]","placeholders":["screwdriver","floor"]}, +{"id":"52422","label":"turning remote upside down","template":"Turning [something] upside down","placeholders":["remote"]}, +{"id":"201542","label":"uncovering a red pencil","template":"Uncovering [something]","placeholders":["a red pencil"]}, +{"id":"122099","label":"throwing a ball in the air and letting it fall","template":"Throwing [something] in the air and letting it fall","placeholders":["a ball"]}, +{"id":"83296","label":"pushing sun glasses so that it falls off the table","template":"Pushing [something] so that it falls off the table","placeholders":["sun glasses"]}, +{"id":"174240","label":"holding cloth in front of deck of cards","template":"Holding [something] in front of [something]","placeholders":["cloth","deck of cards"]}, +{"id":"56797","label":"holding sunglasses in front of monitor","template":"Holding [something] in front of [something]","placeholders":["sunglasses","monitor"]}, +{"id":"43344","label":"tearing handout into two pieces","template":"Tearing [something] into two pieces","placeholders":["handout"]}, +{"id":"23324","label":"putting t-shirt packet on a surface","template":"Putting [something] on a surface","placeholders":["t-shirt packet"]}, +{"id":"12777","label":"moving away from waste basket with your camera","template":"Moving away from [something] with your camera","placeholders":["waste basket"]}, +{"id":"151948","label":"moving car key towards the camera","template":"Moving [something] towards the camera","placeholders":["car key"]}, +{"id":"117425","label":"closing small freshmints","template":"Closing [something]","placeholders":["small freshmints"]}, +{"id":"157360","label":"unfolding a shirt","template":"Unfolding [something]","placeholders":["a shirt"]}, +{"id":"117478","label":"moving glass up","template":"Moving [something] up","placeholders":["glass"]}, +{"id":"36585","label":"plastic falling like a feather or paper","template":"[Something] falling like a feather or paper","placeholders":["plastic"]} +] diff --git a/data/something/videos/102133.webm b/data/something/videos/102133.webm new file mode 100644 index 0000000000000000000000000000000000000000..9602d2c44f4a58be6e1644ea6018a9a2f5233b1f --- /dev/null +++ b/data/something/videos/102133.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50406ba75a473a1e8aebab23740fba8d757ee92cd16871a217938004ecfd93a +size 68779 diff --git a/data/something/videos/102439.webm b/data/something/videos/102439.webm new file mode 100644 index 0000000000000000000000000000000000000000..ec59eff7b73ae077c29d5769b835238075d56bad --- /dev/null +++ b/data/something/videos/102439.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7535b7bc71ace3a1d4858b8e96b3998429a677cb19d3ad4901c160bc27b1b037 +size 145246 diff --git a/data/something/videos/102465.webm b/data/something/videos/102465.webm new file mode 100644 index 0000000000000000000000000000000000000000..0f3f8bbcea1b3061247c0dd846f9c7e4c63de87b --- /dev/null +++ b/data/something/videos/102465.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d3b3fbee9f9c5a1a5dce1c33952b7fc7a9af05f1f8a44dcc0d891a8c1a3f47 +size 122780 diff --git a/data/something/videos/10317.webm b/data/something/videos/10317.webm new file mode 100644 index 0000000000000000000000000000000000000000..c6daf1d1cc385cfc77a7c9ee847abfeec69192e4 --- /dev/null +++ b/data/something/videos/10317.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ab65bf9a51d7eaf6dee6bab2af9923c898f3edf9f098757e2673b09084bb9f +size 135763 diff --git a/data/something/videos/104551.webm b/data/something/videos/104551.webm new file mode 100644 index 0000000000000000000000000000000000000000..b97bdef4c1fb22dc9fde0940ee20edcb12454039 --- /dev/null +++ b/data/something/videos/104551.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5550a02176a195c6131d9ff5356df3b01dc862b4fb4d2ee1683cc852be91ccbc +size 66530 diff --git a/data/something/videos/107669.webm b/data/something/videos/107669.webm new file mode 100644 index 0000000000000000000000000000000000000000..f99d0a4ef38e9a896a5acc3fc2d186669cdeb3d4 --- /dev/null +++ b/data/something/videos/107669.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b2f67eb62a7d802180e8e51992cd625ee56422ef85859a2e1937b42943615b +size 135408 diff --git a/data/something/videos/108426.webm b/data/something/videos/108426.webm new file mode 100644 index 0000000000000000000000000000000000000000..38a463db1f55fcf8205d71b2e311ae488aa0b262 --- /dev/null +++ b/data/something/videos/108426.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3572824df6f26a4da17e2d4163e1c086e45349380e7b1db7b3f522d5a7e62171 +size 32601 diff --git a/data/something/videos/113442.webm b/data/something/videos/113442.webm new file mode 100644 index 0000000000000000000000000000000000000000..1dacc1562d0b6176623b301b8dfca49cfaed75dc --- /dev/null +++ b/data/something/videos/113442.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fccd18e73166f434d6846463e6a52ca63aa5debaa27b9bf04b9ed1c38f62611 +size 174883 diff --git a/data/something/videos/114406.webm b/data/something/videos/114406.webm new file mode 100644 index 0000000000000000000000000000000000000000..8dbc644f3ba23eef60e0b01a92e2198ddbe6e694 --- /dev/null +++ b/data/something/videos/114406.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db95bfc81be4686f7f9212f57e522e096439c6a14eccc9720766e31a3741356 +size 56499 diff --git a/data/something/videos/116582.webm b/data/something/videos/116582.webm new file mode 100644 index 0000000000000000000000000000000000000000..79c6614f30151115a8ed8c96421c9d23d7886dbf --- /dev/null +++ b/data/something/videos/116582.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220cac7dfec62ba75274cdc74229dd2f4d2ad74bc28fec4a4f0e4d1f4248c977 +size 71174 diff --git a/data/something/videos/117781.webm b/data/something/videos/117781.webm new file mode 100644 index 0000000000000000000000000000000000000000..3847ac86a90ccad5d82051f937bdb633059ee309 --- /dev/null +++ b/data/something/videos/117781.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0ac179afe58b28c00544b2f9be83b1b3c42e8746eeb3340533cf9b322cd69d +size 165479 diff --git a/data/something/videos/119689.webm b/data/something/videos/119689.webm new file mode 100644 index 0000000000000000000000000000000000000000..fcb2351e365d1c4a158535c2e83e8c4fa15f52fa --- /dev/null +++ b/data/something/videos/119689.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26862bdeb838b000524a8462d26d0cbf4c34f6eead5c74bbb52526d0cfd846a7 +size 71147 diff --git a/data/something/videos/120004.webm b/data/something/videos/120004.webm new file mode 100644 index 0000000000000000000000000000000000000000..2d6e697c02ee139f40dc661c86c8cdc25cb9a961 --- /dev/null +++ b/data/something/videos/120004.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45b2f37db16e3d7ddac1d45348b3db46b72ba580656f9c2aa583db236214421 +size 39100 diff --git a/data/something/videos/121573.webm b/data/something/videos/121573.webm new file mode 100644 index 0000000000000000000000000000000000000000..a6c887975872dd7849f8ca4cb57f636fe97d62d0 --- /dev/null +++ b/data/something/videos/121573.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab02a334aed6566561bf8ca4e49c38770743b64e66cdf2607dfd31d5494ff85 +size 89056 diff --git a/data/something/videos/124340.webm b/data/something/videos/124340.webm new file mode 100644 index 0000000000000000000000000000000000000000..96c4061ccadc50024500e141a4e84f784a3cc7f1 --- /dev/null +++ b/data/something/videos/124340.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ecd38bee4a81b319b13a00024cee3f9b41f4ba83eee2961df2bb81e61559d9 +size 20613 diff --git a/data/something/videos/127970.webm b/data/something/videos/127970.webm new file mode 100644 index 0000000000000000000000000000000000000000..ca2c46ff0d852f88addfaa87eaa8c9a9c1c23e5e --- /dev/null +++ b/data/something/videos/127970.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6dbfdf4213684092526f6e4de2e3c1de1b7214dc7c09e54dd8dfecdfd9adde +size 69858 diff --git a/data/something/videos/128141.webm b/data/something/videos/128141.webm new file mode 100644 index 0000000000000000000000000000000000000000..f898e3c1a18281be690ba57e3029236341331b99 --- /dev/null +++ b/data/something/videos/128141.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5834c3768d488b8ffedf7b236e8e82f96bccc47abcea5124c870e5d742b12a5e +size 64412 diff --git a/data/something/videos/128142.webm b/data/something/videos/128142.webm new file mode 100644 index 0000000000000000000000000000000000000000..2e4cd603c7e5c7d90a0e0c923ea9a3a45a0ec0c6 --- /dev/null +++ b/data/something/videos/128142.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a3c669a07eb0a0a8280ebbf7cede077c5d74ca64d9ee0bbd0c31c009ff3d200 +size 90871 diff --git a/data/something/videos/128805.webm b/data/something/videos/128805.webm new file mode 100644 index 0000000000000000000000000000000000000000..84d773ef856f5fd8fce2716d0342fa5d100d63df --- /dev/null +++ b/data/something/videos/128805.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b57890f7ed6e3452ffae9cdc012c002cc4d8d55e351b98caafe2aca14c00d1 +size 64018 diff --git a/data/something/videos/129101.webm b/data/something/videos/129101.webm new file mode 100644 index 0000000000000000000000000000000000000000..017ce789c3225def906ee7dc65d312cc3102dc24 --- /dev/null +++ b/data/something/videos/129101.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd5bf7e2c6aee83bd37b44e44911261040c2b55fc9a97857b0f8b1ab8d4ce40 +size 83030 diff --git a/data/something/videos/132149.webm b/data/something/videos/132149.webm new file mode 100644 index 0000000000000000000000000000000000000000..88b66b241ee662188307716d064d034b9c63dde6 --- /dev/null +++ b/data/something/videos/132149.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a853389246dfdd32ef560e9f55eb0ccc94d048b18435b11bc01231d8183aef +size 72886 diff --git a/data/something/videos/132320.webm b/data/something/videos/132320.webm new file mode 100644 index 0000000000000000000000000000000000000000..8b034e41d7228c8c134dcdde340d0dcd98771f4d --- /dev/null +++ b/data/something/videos/132320.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d100bf1e99886320a048385b4b9940cba01f2a4924d8c7c5e3e84083894527 +size 94854 diff --git a/data/something/videos/132381.webm b/data/something/videos/132381.webm new file mode 100644 index 0000000000000000000000000000000000000000..088df0c5a7a5a537f49fe135f96f3c49592c53e2 --- /dev/null +++ b/data/something/videos/132381.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2c65ee75b5031f9e261ac219560566f92d20bbd7e1df71521d5a1355ebce98 +size 43342 diff --git a/data/something/videos/136209.webm b/data/something/videos/136209.webm new file mode 100644 index 0000000000000000000000000000000000000000..224d3a888d7a477250f4feaf46edc506992248ea --- /dev/null +++ b/data/something/videos/136209.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8db64a3e3047220e5b6bfbd66061aaa7c6bb98dd7571847587c2a84c814a88c +size 108398 diff --git a/data/something/videos/140950.webm b/data/something/videos/140950.webm new file mode 100644 index 0000000000000000000000000000000000000000..b82e9855853fec0221c1db7d8f7d9330d355408d --- /dev/null +++ b/data/something/videos/140950.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dda2660fcd2922bc6122c24e596d0a7c5a859fb8b26fcf0e8dbb08509f3bd9f +size 109372 diff --git a/data/something/videos/143077.webm b/data/something/videos/143077.webm new file mode 100644 index 0000000000000000000000000000000000000000..00bec6602535f67241d8aeb4830b84d4e124d2ae --- /dev/null +++ b/data/something/videos/143077.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:845980e35bdb2884c94f52b3238f6a7bc565914f2f536ba3649e5a24dbc9944b +size 74155 diff --git a/data/something/videos/143172.webm b/data/something/videos/143172.webm new file mode 100644 index 0000000000000000000000000000000000000000..65846fee92f8b776fc63447892304b0319c7e27f --- /dev/null +++ b/data/something/videos/143172.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b97a7e8e95dfae54bcefbd78080c40fe85fba23d62c4ed211274c8b643ff2d +size 82397 diff --git a/data/something/videos/143496.webm b/data/something/videos/143496.webm new file mode 100644 index 0000000000000000000000000000000000000000..6ead8cd70ef3584a6df4742212eae202e31e59c1 --- /dev/null +++ b/data/something/videos/143496.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7094c53e00b1f9940b3778530ac360ee3ad173494d684807bb08030a144baf0 +size 25589 diff --git a/data/something/videos/144272.webm b/data/something/videos/144272.webm new file mode 100644 index 0000000000000000000000000000000000000000..01178cf8367300edc37341e1c27fe1447e3f94ee --- /dev/null +++ b/data/something/videos/144272.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5441184388d2155a2b08bce15d8dd18de11ca433b1cd4555390200e077edd751 +size 48721 diff --git a/data/something/videos/144450.webm b/data/something/videos/144450.webm new file mode 100644 index 0000000000000000000000000000000000000000..29c64b93b18b46ba790847d4cf4187396ff5e044 --- /dev/null +++ b/data/something/videos/144450.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56cd62e610a06fae7841e9e0ad3a3ff15f2f3f2f70fa992b9c06f1e560b8bb93 +size 96008 diff --git a/data/something/videos/146934.webm b/data/something/videos/146934.webm new file mode 100644 index 0000000000000000000000000000000000000000..bcd0701b20bbaeaebc406f9c4f705048abd08dd9 --- /dev/null +++ b/data/something/videos/146934.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb38763e462a053196e5ccbcf5e6a6f585906bd3b233d306348c4a7163f2c2ce +size 62017 diff --git a/data/something/videos/14738.webm b/data/something/videos/14738.webm new file mode 100644 index 0000000000000000000000000000000000000000..5d54600fa3022cfa77f064e0533fd57b2a456316 --- /dev/null +++ b/data/something/videos/14738.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3227a9b16afdaea3a4d265611a67506178cadc55d9920d8eacd5a6b527b3192f +size 63271 diff --git a/data/something/videos/154826.webm b/data/something/videos/154826.webm new file mode 100644 index 0000000000000000000000000000000000000000..38350bc9f2f11b0a4b2757346a36f6e0a9131683 --- /dev/null +++ b/data/something/videos/154826.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db611ab4b1fcf3fdb528b0d089c7bbb6ec679bf1d23f5a9984f0fa019f060c4 +size 88872 diff --git a/data/something/videos/154965.webm b/data/something/videos/154965.webm new file mode 100644 index 0000000000000000000000000000000000000000..644757c3c1a4d34aa261042a3806c119bf393388 --- /dev/null +++ b/data/something/videos/154965.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5aff557b261ec9b5553c7e908073cef390e13450e71c945944cee82dcc7b888 +size 121936 diff --git a/data/something/videos/157321.webm b/data/something/videos/157321.webm new file mode 100644 index 0000000000000000000000000000000000000000..b5d6e3bfc618efd36c65936afe693b26b9256d57 --- /dev/null +++ b/data/something/videos/157321.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc58b8dfcbfd119282efebb0ee364926145fe8a200210b3be7b6f81159d7db4 +size 128433 diff --git a/data/something/videos/15733.webm b/data/something/videos/15733.webm new file mode 100644 index 0000000000000000000000000000000000000000..d3d21b219b7faf380ed53ff99809305f92fa2a55 --- /dev/null +++ b/data/something/videos/15733.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93700db9fd98a57498921dc77a7c28929d4277954e33db02dfed32c337afc9a4 +size 70304 diff --git a/data/something/videos/158229.webm b/data/something/videos/158229.webm new file mode 100644 index 0000000000000000000000000000000000000000..67765b235464bf153aa702e58683d6ccb2fae3b7 --- /dev/null +++ b/data/something/videos/158229.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1765260e31bbc73372845e478bb7eb4ee9f37e298c38f339b14218dc3e5bf0ed +size 94543 diff --git a/data/something/videos/161102.webm b/data/something/videos/161102.webm new file mode 100644 index 0000000000000000000000000000000000000000..e7c21aa30003e0ac843b7c97dca0db4a2da1ee4a --- /dev/null +++ b/data/something/videos/161102.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3d1b31d71093e602281c3ebe39300898d5027d2769ddb729cdade3694eed0e +size 54387 diff --git a/data/something/videos/165360.webm b/data/something/videos/165360.webm new file mode 100644 index 0000000000000000000000000000000000000000..e58a75969dcac51d33cfd4d56f3c3ea4025edabf --- /dev/null +++ b/data/something/videos/165360.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70ae0d9b48a58268b016ffe8d5bc204c741d25c10694fd5330911e5fec2be85 +size 53954 diff --git a/data/something/videos/168558.webm b/data/something/videos/168558.webm new file mode 100644 index 0000000000000000000000000000000000000000..c732fe2c245ddfbb7a567b227dc7637f6a9992a1 --- /dev/null +++ b/data/something/videos/168558.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65b82f1cd86a8b4d3ff95018da01ebf62c3548150d51a218d3287cb0ad86081 +size 56739 diff --git a/data/something/videos/171292.webm b/data/something/videos/171292.webm new file mode 100644 index 0000000000000000000000000000000000000000..1b5ab6524900d812eabe4f59928e9466b39d7fb3 --- /dev/null +++ b/data/something/videos/171292.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986d594c8d6360d91f1769db99ea72e4ad91fd25ce22398ee77805e4ebfaf621 +size 330450 diff --git a/data/something/videos/172157.webm b/data/something/videos/172157.webm new file mode 100644 index 0000000000000000000000000000000000000000..9d723262fe7a6dda1c6b65885cd25761845ccb9d --- /dev/null +++ b/data/something/videos/172157.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c79402bf9e1498cb94933727f64773f8e66a5e25a8db5c2f72d7e8365b4bfb +size 47137 diff --git a/data/something/videos/173316.webm b/data/something/videos/173316.webm new file mode 100644 index 0000000000000000000000000000000000000000..460392943a64754a245660d31ff18f63909f5585 --- /dev/null +++ b/data/something/videos/173316.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3dcdeef02532d7873d14669ad11c0101851ece66167ee7fd99dcc257cf574de +size 107709 diff --git a/data/something/videos/174863.webm b/data/something/videos/174863.webm new file mode 100644 index 0000000000000000000000000000000000000000..1465b10596300bce336f7e10164f112794007f17 --- /dev/null +++ b/data/something/videos/174863.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3004da577ac9fcf70c7cce1233ab76cbc75b41985665e8d6f616e37312ae13a +size 77828 diff --git a/data/something/videos/178357.webm b/data/something/videos/178357.webm new file mode 100644 index 0000000000000000000000000000000000000000..998683dc73c3173e876f422ba10935cc12677da6 --- /dev/null +++ b/data/something/videos/178357.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8aafb7660917983862456026539dbc44c11d7768876877e1dde0fc84800aff +size 29029 diff --git a/data/something/videos/180802.webm b/data/something/videos/180802.webm new file mode 100644 index 0000000000000000000000000000000000000000..5cb5f52dd72fa2c21a5810eda8c5b1921d3c302f --- /dev/null +++ b/data/something/videos/180802.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a238b0062490d56d8dd3aba7da2dc0e6a4d656c05c66dd977baa09affcd2104c +size 38768 diff --git a/data/something/videos/182560.webm b/data/something/videos/182560.webm new file mode 100644 index 0000000000000000000000000000000000000000..da0eebed33d873e2495c082d5bda91131b2c1819 --- /dev/null +++ b/data/something/videos/182560.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070717dfeb47d8db45160e51bd2531b3742bcb23ffc1bee0afa05425e5082267 +size 139683 diff --git a/data/something/videos/187255.webm b/data/something/videos/187255.webm new file mode 100644 index 0000000000000000000000000000000000000000..2ec235175bd21dc6f3a98237de5688b97c8c806d --- /dev/null +++ b/data/something/videos/187255.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606d1bdcab455d397a94550d1d2cf1fc1fbc05739df2a3666651c98b45873dfa +size 102939 diff --git a/data/something/videos/189840.webm b/data/something/videos/189840.webm new file mode 100644 index 0000000000000000000000000000000000000000..452d92c7798138842c82666edf50f5bf7f6456b6 --- /dev/null +++ b/data/something/videos/189840.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667f8f6d25d517c43d2b17746d059479fd6001cf2fb01a7eb6be3766e820769e +size 67392 diff --git a/data/something/videos/192081.webm b/data/something/videos/192081.webm new file mode 100644 index 0000000000000000000000000000000000000000..e78f0c477bedab63ec4b88825fa903cdb490f477 --- /dev/null +++ b/data/something/videos/192081.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a66321f8fd992ac51b804c8185422a7b5d18d9da127fa63bed019e8b5e19473 +size 126426 diff --git a/data/something/videos/195958.webm b/data/something/videos/195958.webm new file mode 100644 index 0000000000000000000000000000000000000000..b1062bda182e94851b065a3a72e42b47a1a29dc1 --- /dev/null +++ b/data/something/videos/195958.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c553278f67f68f0e72782bb70b51111ed15182f89d2965623e4616a02fdfbb9f +size 56628 diff --git a/data/something/videos/200048.webm b/data/something/videos/200048.webm new file mode 100644 index 0000000000000000000000000000000000000000..6fe8109f8dd4070486d91ffb650617073b64f153 --- /dev/null +++ b/data/something/videos/200048.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86dc5db5fc612e7eef42ef9083afe9fddc2c0cfea03616077eabaf41745395c +size 64792 diff --git a/data/something/videos/201118.webm b/data/something/videos/201118.webm new file mode 100644 index 0000000000000000000000000000000000000000..8f5f120b9778a8b7508dc927f920774025ca2780 --- /dev/null +++ b/data/something/videos/201118.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1b1339fd4da7efc67329999a50c59fa1b79a8221d03e7152bf1083314ff90d +size 105800 diff --git a/data/something/videos/20171.webm b/data/something/videos/20171.webm new file mode 100644 index 0000000000000000000000000000000000000000..cb5a1f75f9d5f140b71b6196b6efd69601c128bc --- /dev/null +++ b/data/something/videos/20171.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eee6ecfc4fb0dec30176bea911ddc669321b8b2c519d52f0733f076b60b1d76 +size 42056 diff --git a/data/something/videos/20247.webm b/data/something/videos/20247.webm new file mode 100644 index 0000000000000000000000000000000000000000..68cf2364fc7dabf36974ed73eb7af5fe385063c3 --- /dev/null +++ b/data/something/videos/20247.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7c54ed760ae43ac5766309326fab9a276dc3e602377f2453398dbbd2ae9a09 +size 25374 diff --git a/data/something/videos/203167.webm b/data/something/videos/203167.webm new file mode 100644 index 0000000000000000000000000000000000000000..3a700727fa9743a506b53138ad127c9793926316 --- /dev/null +++ b/data/something/videos/203167.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8066714b94de4701f1d54792ead27485878aa1da0dfdbdf006aa1d163761175 +size 90726 diff --git a/data/something/videos/208841.webm b/data/something/videos/208841.webm new file mode 100644 index 0000000000000000000000000000000000000000..e0353c0f86f709546103c6e464832d789dfbc173 --- /dev/null +++ b/data/something/videos/208841.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de9c92ffbbf4ba4467d77a0ac1a4edfb552ffba647bfe199f702fc9643c5a9d +size 62454 diff --git a/data/something/videos/209765.webm b/data/something/videos/209765.webm new file mode 100644 index 0000000000000000000000000000000000000000..71f9775c761e51a3a6c22f8622b0b96392a2f715 --- /dev/null +++ b/data/something/videos/209765.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6f8c16ab4e17667dbe2a200cbcff33defaa6c32ac9c0cd0f572c7fe3f5e3a6 +size 63051 diff --git a/data/something/videos/21125.webm b/data/something/videos/21125.webm new file mode 100644 index 0000000000000000000000000000000000000000..e880f3b24f6261cc5bb48d60129f576836e8f052 --- /dev/null +++ b/data/something/videos/21125.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e1a60ec72fe3fd8054920f8b8f1103f5535843f9bc07bf725f5731ca1ed28f +size 48408 diff --git a/data/something/videos/212739.webm b/data/something/videos/212739.webm new file mode 100644 index 0000000000000000000000000000000000000000..bb59bff802ff91d92d2799881afa7d54627575c3 --- /dev/null +++ b/data/something/videos/212739.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a674146101ccff3d30b1ebad31f07bf55a0c53cab555aba952e6d3a842d788 +size 109507 diff --git a/data/something/videos/213858.webm b/data/something/videos/213858.webm new file mode 100644 index 0000000000000000000000000000000000000000..4210020cc447f032a54ee588df721198fef81ecc --- /dev/null +++ b/data/something/videos/213858.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942b11cf86dc74a5c3974e450165dfb734766545d8095c837b7eab22705a89fc +size 149082 diff --git a/data/something/videos/217001.webm b/data/something/videos/217001.webm new file mode 100644 index 0000000000000000000000000000000000000000..29650e48820774a01d16dd2009f118ec08433f44 --- /dev/null +++ b/data/something/videos/217001.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c55febe29b494d351bdfe339d2f6e41b6e03381e9115528a42b00b86e8ca037b +size 123228 diff --git a/data/something/videos/22519.webm b/data/something/videos/22519.webm new file mode 100644 index 0000000000000000000000000000000000000000..db30df9b9e0d272d6bc3f51732141e7b05709491 --- /dev/null +++ b/data/something/videos/22519.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8986458fc498cf47dce6781ce7f5dc129bcd8a89fb7509d794046e7275d3989b +size 62008 diff --git a/data/something/videos/22962.webm b/data/something/videos/22962.webm new file mode 100644 index 0000000000000000000000000000000000000000..65451071e00757a376630f11d1a6f616ebdb5371 --- /dev/null +++ b/data/something/videos/22962.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f90da51275b2bff42d966e77edb62bcfaf8beec29f1e6cc9fa04318a0a12b4 +size 86904 diff --git a/data/something/videos/25359.webm b/data/something/videos/25359.webm new file mode 100644 index 0000000000000000000000000000000000000000..cc6effe726061d75167a555a2d607fe2bb5225b0 --- /dev/null +++ b/data/something/videos/25359.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359251c2f74d780168dfcabfb3920b7b7ba6dd10204b302b3c3634e6c322915f +size 120180 diff --git a/data/something/videos/25621.webm b/data/something/videos/25621.webm new file mode 100644 index 0000000000000000000000000000000000000000..03aec0d239cd18a159e8fc03cede875e31546111 --- /dev/null +++ b/data/something/videos/25621.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035d8ea18c2e7751acefa6034e7bfb6323ccb33eff4b391d81dcff0bcfa274d2 +size 88504 diff --git a/data/something/videos/29671.webm b/data/something/videos/29671.webm new file mode 100644 index 0000000000000000000000000000000000000000..b4466a301dc158b748218b36f8be18732421956e --- /dev/null +++ b/data/something/videos/29671.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f796fb3cd9bb55d5784de9741823d71adf3e38ece2d2227009d803167f667bb +size 33612 diff --git a/data/something/videos/31655.webm b/data/something/videos/31655.webm new file mode 100644 index 0000000000000000000000000000000000000000..19dfc4d844c29f24a738732e8d8ba3e9567f31ed --- /dev/null +++ b/data/something/videos/31655.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc08a9f5a883be47f33bf848651818a6d823a347af545471a31035b182dae9e +size 66685 diff --git a/data/something/videos/32480.webm b/data/something/videos/32480.webm new file mode 100644 index 0000000000000000000000000000000000000000..a607b13b0ad8f6cf60282acefb50e857e7d2d5bd --- /dev/null +++ b/data/something/videos/32480.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6e644e8e7dc880261aed095b1311f8b7897f60077cc662cb1cbc630ef996d0 +size 121205 diff --git a/data/something/videos/34048.webm b/data/something/videos/34048.webm new file mode 100644 index 0000000000000000000000000000000000000000..5b9384bb826cde41f16a74ac39b52fb6b8f643be --- /dev/null +++ b/data/something/videos/34048.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02053bf55e21590a711fa3ff9a55cbe53eca2a31cb6576ab6a2ba04684d064b5 +size 64770 diff --git a/data/something/videos/34510.webm b/data/something/videos/34510.webm new file mode 100644 index 0000000000000000000000000000000000000000..32fc71c97701bda4c0cd90017f6eaceed19ee466 --- /dev/null +++ b/data/something/videos/34510.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5be6ec45aba3440d0c230bfbc7e9600f75252ff5a731fb7041bd1a45be691a +size 70186 diff --git a/data/something/videos/36544.webm b/data/something/videos/36544.webm new file mode 100644 index 0000000000000000000000000000000000000000..daf91b932084e1d4b25508a9c6817cacbe4fbe7a --- /dev/null +++ b/data/something/videos/36544.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f176acfef3452a87591d296c188c0fc8c2c2060099b74870d1c99539ddc083b9 +size 106712 diff --git a/data/something/videos/40786.webm b/data/something/videos/40786.webm new file mode 100644 index 0000000000000000000000000000000000000000..74091c7fc37c78b1ce03278929605f7cb4004b94 --- /dev/null +++ b/data/something/videos/40786.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43dd048d8aa73a6f074175cd13ffbdf0f2034f50dafcc160e7879befde2f9585 +size 63727 diff --git a/data/something/videos/43317.webm b/data/something/videos/43317.webm new file mode 100644 index 0000000000000000000000000000000000000000..5ca77013d1ab0d7ef9ed670e66a4f79bc5713c4e --- /dev/null +++ b/data/something/videos/43317.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37a4cf3be9568bfb8006f0f8026888e2670a357f1f8a370dba3cba8a75bfd88 +size 97800 diff --git a/data/something/videos/46529.webm b/data/something/videos/46529.webm new file mode 100644 index 0000000000000000000000000000000000000000..cd935a86e74b7817c0beaea6a99909b9a600c101 --- /dev/null +++ b/data/something/videos/46529.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6151d5e02251778010dfc900591926051d5863be9760f8582e4268513cd293b3 +size 65709 diff --git a/data/something/videos/52414.webm b/data/something/videos/52414.webm new file mode 100644 index 0000000000000000000000000000000000000000..b463d007944c01f7044e31d692b585889456d02f --- /dev/null +++ b/data/something/videos/52414.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2bb20d8a39574e7e6deeb2f28560bad3d653f74177d35f5baca165874e841a +size 39261 diff --git a/data/something/videos/5447.webm b/data/something/videos/5447.webm new file mode 100644 index 0000000000000000000000000000000000000000..ac89591fb7b55fba80b63a2beb03dc25955e8879 --- /dev/null +++ b/data/something/videos/5447.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b395f25f92a10db0b0e3c17ebfa3de4181fdadfc683f63790c86e3c662a352 +size 44702 diff --git a/data/something/videos/55940.webm b/data/something/videos/55940.webm new file mode 100644 index 0000000000000000000000000000000000000000..290828172f8118d23889d413329bb6a9ae4debc7 --- /dev/null +++ b/data/something/videos/55940.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2bfc876653ead574658de6ec0735c1afe73c59db9acf81ade65d345a1eeb70 +size 120589 diff --git a/data/something/videos/56166.webm b/data/something/videos/56166.webm new file mode 100644 index 0000000000000000000000000000000000000000..be8310069b7a0f3fd45dd976d810f0741cf25af5 --- /dev/null +++ b/data/something/videos/56166.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339376de65daf82bc3a451c3fe2f611bbd883afc2a0525876c83f0454c4dd133 +size 58630 diff --git a/data/something/videos/58002.webm b/data/something/videos/58002.webm new file mode 100644 index 0000000000000000000000000000000000000000..f5d1a5f084af2217f41d47eb05443d81be34c0e7 --- /dev/null +++ b/data/something/videos/58002.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfe9f5dc6e6b4ffb4451fc806b9c23399451bba54dd494389587f5790d6cbc5 +size 81370 diff --git a/data/something/videos/64074.webm b/data/something/videos/64074.webm new file mode 100644 index 0000000000000000000000000000000000000000..c4ca192655c95ebcb5068e4c102c8e9e3e3c033f --- /dev/null +++ b/data/something/videos/64074.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11830d328810486b492aaf26854c516569e81cf800c956ffdc0438fafbb2396 +size 116198 diff --git a/data/something/videos/69199.webm b/data/something/videos/69199.webm new file mode 100644 index 0000000000000000000000000000000000000000..b6b0e0bf2f2eacf7021ac8bb8da7eeb82cff31b3 --- /dev/null +++ b/data/something/videos/69199.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852c3f79449c0505dcdb0ba0bf9e6a95b61cc7a47cd7f0e0643f8435c249a76a +size 43808 diff --git a/data/something/videos/6978.webm b/data/something/videos/6978.webm new file mode 100644 index 0000000000000000000000000000000000000000..49fa01cf73f7a0c77abd6067e19ca2af3ace3d19 --- /dev/null +++ b/data/something/videos/6978.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b97ef2fa889816891fcfac68dc3fb9956de60cdf5f5ac55587e8d6bdaa67309 +size 79482 diff --git a/data/something/videos/70637.webm b/data/something/videos/70637.webm new file mode 100644 index 0000000000000000000000000000000000000000..3e1b99b118ae2666b05c99a22d3b70993650c803 --- /dev/null +++ b/data/something/videos/70637.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12e0dc7ae0f57d665ec02624089486fe3afa243701c9961464691c90fc7f7b3 +size 93445 diff --git a/data/something/videos/75914.webm b/data/something/videos/75914.webm new file mode 100644 index 0000000000000000000000000000000000000000..13451f9641a9c61b6f768414631ce0a736670390 --- /dev/null +++ b/data/something/videos/75914.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d6c4efdb4f2b0f24d719ac0d5331708935733ece897d0f0ba63a759dda4a06 +size 140706 diff --git a/data/something/videos/79376.webm b/data/something/videos/79376.webm new file mode 100644 index 0000000000000000000000000000000000000000..89eafead20255cbb4c2cd4ce0b60ab4bcbf53da6 --- /dev/null +++ b/data/something/videos/79376.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4e42607683a27f7b369c5e8b86a1794fa903ec6363a202a39b6d621a1ad9bb +size 46662 diff --git a/data/something/videos/90591.webm b/data/something/videos/90591.webm new file mode 100644 index 0000000000000000000000000000000000000000..b7d92d8a48159e4ca8e1701308a5f07af2e569c1 --- /dev/null +++ b/data/something/videos/90591.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4d3db3f3d4320452a042812e719f78a4d014665ad5caaa171b0e7a5d9263f6 +size 85760 diff --git a/data/something/videos/91467.webm b/data/something/videos/91467.webm new file mode 100644 index 0000000000000000000000000000000000000000..0001286a0f618f2678036eb33405ef7e3c870063 --- /dev/null +++ b/data/something/videos/91467.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7101e33a6dd795d70e849642553600a698879425a701ecefccef160e698bd6cd +size 44420 diff --git a/data/something/videos/96663.webm b/data/something/videos/96663.webm new file mode 100644 index 0000000000000000000000000000000000000000..ebfcb7e3b6c42477b3f2f6804a5d82a99f6a0dea --- /dev/null +++ b/data/something/videos/96663.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c0b786089347930104009d8a405965842c5c3514e144e57710ea6c734c855e +size 89071 diff --git a/data/something/videos/97499.webm b/data/something/videos/97499.webm new file mode 100644 index 0000000000000000000000000000000000000000..d57c6982dfe035e81a20350241bf749e0a152cfd --- /dev/null +++ b/data/something/videos/97499.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80fe1ae91dcb41c237579c2cbb81e7d28d4ef0922d29ac732813949beee48e1 +size 70960 diff --git a/data/something/videos/97551.webm b/data/something/videos/97551.webm new file mode 100644 index 0000000000000000000000000000000000000000..bfb6cffbaf63e9ee8461faea8dab883a4a1f3471 --- /dev/null +++ b/data/something/videos/97551.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d151d04b80139ab00f61d4587158c319b45260609b03c15c9bebe50a43b26ab +size 106249 diff --git a/data/something/videos/99603.webm b/data/something/videos/99603.webm new file mode 100644 index 0000000000000000000000000000000000000000..b680ef67d5740e0df28308ae3d3d40e167a13aae --- /dev/null +++ b/data/something/videos/99603.webm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9757e9a681fbd381bab8dfc383cf43285000fce60dbdd37e24910f7f7b7d854a +size 79734 diff --git a/eq-kubric/3d_data/GSO_dict.json b/eq-kubric/3d_data/GSO_dict.json new file mode 100644 index 0000000000000000000000000000000000000000..24f22324b940279d4039fc637e68fc466deaab53 --- /dev/null +++ b/eq-kubric/3d_data/GSO_dict.json @@ -0,0 +1,215 @@ +{ + "3D_Dollhouse_Lamp": "purple-white lamp", + "3D_Dollhouse_Refrigerator": "green wooden refrigerator", + "3D_Dollhouse_Sofa": "purple wooden sofa", + "3D_Dollhouse_TablePurple": "purple wooden table", + "3M_Antislip_Surfacing_Light_Duty_White": "light-gray tape", + "3M_Vinyl_Tape_Green_1_x_36_yd": "green tape", + "45oz_RAMEKIN_ASST_DEEP_COLORS": "green shiny bowl", + "5_HTP": "blue medicine bottle", + "ACE_Coffee_Mug_Kristen_16_oz_cup": "red coffee mug", + "AMBERLIGHT_UP_W": "blue sneakers", + "ASICS_GEL1140V_WhiteBlackSilver": "white-black shoes", + "ASICS_GEL1140V_WhiteRoyalSilver": "white-black shoes", + "ASICS_GELAce_Pro_Pearl_WhitePink": "white-pink shoes", + "ASICS_GELBlur33_20_GS_BlackWhiteSafety_Orange": "black-orange shoes", + "ASICS_GELBlur33_20_GS_Flash_YellowHot_PunchSilver": "yellow-orange shoes", + "ASICS_GELChallenger_9_Royal_BlueWhiteBlack": "blue-white shoes", + "Air_Hogs_Wind_Flyers_Set_Airplane_Red": "red toy airplane", + "AllergenFree_JarroDophilus": "yellow medicine bottle", + "Android_Figure_Chrome": "silver android figure", + "Android_Figure_Orange": "orange android figure", + "Apples_to_Apples_Kids_Edition": "green-yellow boardgame", + "Aroma_Stainless_Steel_Milk_Frother_2_Cup": "steel milk frother", + "Avengers_Gamma_Green_Smash_Fists": "green hulk toy fists", + "BIA_Cordon_Bleu_White_Porcelain_Utensil_Holder_900028": "white porcelain utensil holder", + "BIA_Porcelain_Ramekin_With_Glazed_Rim_35_45_oz_cup": "white porcelain ramekin", + "Threshold_Ramekin_White_Porcelain": "white porcelain ramekin", + "Utana_5_Porcelain_Ramekin_Large": "white porcelain ramekin", + "Baby_Elements_Stacking_Cups": "stack of colorful cups", + "Beyonc_Life_is_But_a_Dream_DVD": "black DVD", + "Bifidus_Balance_FOS": "purple medicine bottle", + "Big_Dot_Aqua_Pencil_Case": "green-purple pencil case", + "Big_Dot_Pink_Pencil_Case": "pink-black pencil case", + "Big_O_Sponges_Assorted_Cellulose_12_pack": "purple sponge", + "Black_Decker_CM2035B_12Cup_Thermal_Coffeemaker": "black metal coffee maker", + "Black_Decker_Stainless_Steel_Toaster_4_Slice": "stainless steel toaster", + "BlueBlack_Nintendo_3DSXL": "Nintendo gaming console", + "Blue_Jasmine_Includes_Digital_Copy_UltraViolet_DVD": "white DVD", + "Bradshaw_International_11642_7_Qt_MP_Plastic_Bowl": "red bowl", + "Breyer_Horse_Of_The_Year_2015": "toy horse", + "CARSII": "CARSII", + "CAR_CARRIER_TRAIN": "black toy train loaded with cars", + "California_Navy_Tieks_Italian_Leather_Ballet_Flats": "black ballet shoe", + "Calphalon_Kitchen_Essentials_12_Cast_Iron_Fry_Pan_Black": "white bowl", + "Threshold_Bead_Cereal_Bowl_White": "white bowl", + "Threshold_Porcelain_Serving_Bowl_Coupe_White": "white bowl", + "Chef_Style_Round_Cake_Pan_9_inch_pan": "round cake pan", + "Chefmate_8_Frypan": "black frypan", + "Chelsea_BlkHeelPMP_DwxLtZNxLZZ": "golden-black high heel", + "Chelsea_lo_fl_rdheel_nQ0LPNF1oMw": "red high heel", + "Chelsea_lo_fl_rdheel_zAQrnhlEfw8": "pink high heel", + "CoQ10": "white drug bottle", + "Cole_Hardware_Antislip_Surfacing_Material_White": "toilet paper", + "Cole_Hardware_Bowl_Scirocco_YellowBlue": "yellow round bowl", + "Cole_Hardware_Deep_Bowl_Good_Earth_1075": "brown bowl", + "Cole_Hardware_Dishtowel_BlueWhite": "blue-white dish towel", + "Cole_Hardware_Dishtowel_Red": "red towel", + "Cole_Hardware_Dishtowel_Stripe": "red-white striped towel", + "Tag_Dishtowel_Basket_Weave_Red_18_x_26": "red-white striped towel", + "Cole_Hardware_Electric_Pot_Assortment_55": "red flower pot", + "Sapota_Threshold_4_Ceramic_Round_Planter_Red": "red flower pot", + "Cole_Hardware_Electric_Pot_Cabana_55": "orange flower pot", + "Cole_Hardware_Orchid_Pot_85": "orange flower pot", + "Cole_Hardware_Flower_Pot_1025": "gray flower pot", + "Cole_Hardware_Hammer_Black": "black and yellow hammer", + "Cole_Hardware_Plant_Saucer_Brown_125": "brown round plate", + "Cole_Hardware_Plant_Saucer_Glazed_9": "brown round plate", + "Cole_Hardware_Saucer_Electric": "pink saucer", + "Cole_Hardware_School_Bell_Solid_Brass_38": "school bell", + "Colton_Wntr_Chukka_y4jO0I8JQFW": "leather boot", + "Corningware_CW_by_Corningware_3qt_Oblong_Casserole_Dish_Blue": "rectangular blue casserol dish", + "Craftsman_Grip_Screwdriver_Phillips_Cushion": "screwdriver", + "Crosley_Alarm_Clock_Vintage_Metal": "vintage metal alarm clock", + "Curver_Storage_Bin_Black_Small": "black net basket", + "DPC_Handmade_Hat_Brown": "black hat", + "Retail_Leadership_Summit_tQFCizMt6g0": "black hat", + "DPC_tropical_Trends_Hat": "brown straw hat", + "Diamond_Visions_Scissors_Red": "red scissors", + "Dino_3": "toy T-Rex", + "Dino_4": "toy triceratops", + "Dino_5": "toy dicynodont dinosaur", + "Dixie_10_ounce_Bowls_35_ct": "white bowl with purple pattern", + "Dog": "Dog", + "Eat_to_Live_The_Amazing_NutrientRich_Program_for_Fast_and_Sustained_Weight_Loss_Revised_Edition_Book": "white book", + "Ecoforms_Garden_Pot_GP16ATurquois": "turquoise flower pot", + "Ecoforms_Plant_Container_12_Pot_Nova": "green flower pot", + "Ecoforms_Plant_Container_QP6CORAL": "red plant container", + "Ecoforms_Plant_Container_URN_NAT": "brown flower pot", + "Ecoforms_Plant_Saucer_S20MOCHA": "dark brown saucer", + "Elephant": "gray elephant toy", + "Embark_Lunch_Cooler_Blue": "blue cooler bag", + "F10_TRX_FG_ssscuo9tGxb": "blue-red soccer cleats", + "F5_TRX_FG": "yellow soccer cleats", + "FemDophilus": "FemDophilus", + "GARDEN_SWING": "garden swing", + "GRANDFATHER_DOLL": "wooden doll", + "GRANDMOTHER": "wooden doll", + "GoPro_HERO3_Composite_Cable": "composite cable", + "Great_Dinos_Triceratops_Toy": "green android mascot", + "Grreat_Choice_Dog_Double_Dish_Plastic_Blue": "blue dog dish", + "HeavyDuty_Flashlight": "red flashlight", + "Hefty_Waste_Basket_Decorative_Bronze_85_liter": "black basket", + "Hilary": "brown leather boot", + "MARTIN_WEDGE_LACE_BOOT": "brown leather boot", + "Rayna_BootieWP": "brown leather boot", + "Sperry_TopSider_pSUFPWQXPp3": "brown leather boot", + "Sperry_TopSider_tNB9t6YBUf3": "brown leather boot", + "Tory_Burch_Sabe_65mm_Bootie_Split_Suede_in_Caramel": "brown leather boot", + "W_Lou_z0dkC78niiZ": "brown leather boot", + "Home_Fashions_Washcloth_Linen": "linen cloth", + "Home_Fashions_Washcloth_Olive_Green": "olive green cloth", + "Horses_in_Pink_Pencil_Case": "pink pencil case", + "Imaginext_Castle_Ogre": "green toy ogre", + "Inositol": "Inositol", + "JBL_Charge_Speaker_portable_wireless_wired_Green": "green JBL portable speaker", + "Jansport_School_Backpack_Blue_Streak": "blue and black backpack", + "KS_Chocolate_Cube_Box_Assortment_By_Neuhaus_2010_Ounces": "white gift box with red straps", + "Kanex_MultiSync_Wireless_Keyboard": "white keyboard", + "Kotobuki_Saucer_Dragon_Fly": "pale green saucer", + "LACING_SHEEP": "toy sheep", + "Lenovo_Yoga_2_11": "gray laptop", + "Lovable_Huggable_Cuddly_Boutique_Teddy_Bear_Beige": "brown teddy bear", + "Magnifying_Glassassrt": "green-orange magnifying glass", + "Marc_Anthony_Skip_Professional_Oil_of_Morocco_Conditioner_with_Argan_Oil": "blue conditioner bottle", + "Mens_ASV_Billfish_Boat_Shoe_in_Dark_Brown_Leather_zdHVHXueI3w": "brown leather shoe", + "Mens_Billfish_3Eye_Boat_Shoe_in_Dark_Tan_wyns9HRcEuH": "brown leather shoe", + "Mens_Billfish_Slip_On_in_Tan_Beige_aaVUk0tNTv8": "brown leather shoe", + "NAPA_VALLEY_NAVAJO_SANDAL": "sandal", + "Neat_Solutions_Character_Bib_2_pack": "white square bowl", + "Nestle_Nesquik_Chocolate_Powder_Flavored_Milk_Additive_109_Oz_Canister": "yellow nesquik chocolate powder canister", + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Leonardo": "teenage mutant ninja turtle figure", + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Michelangelo": "teenage mutant ninja turtle figure", + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Raphael": "teenage mutant ninja turtle figure", + "Nikon_1_AW1_w11275mm_Lens_Silver": "nikon camera lens", + "Nintendo_2DS_Crimson_Red": "black-red nintendo 2ds console", + "Nintendo_Mario_Action_Figure": "mario action figure", + "Nintendo_Yoshi_Action_Figure": "green yoshi action figure", + "Now_Designs_Bowl_Akita_Black": "black-white bowl", + "Now_Designs_Dish_Towel_Mojave_18_x_28": "green towel", + "OVAL_XYLOPHONE": "colorful xylophone", + "OXO_Cookie_Spatula": "black-purple spatula", + "OXO_Soft_Works_Can_Opener_SnapLock": "black can opener", + "Object_REmvBDJStub": "green hat with feather", + "Ocedar_Snap_On_Dust_Pan_And_Brush_1_ct": "white dust pan with brush", + "Olive_Kids_Birdie_Sidekick_Backpack": "turquoise backpack", + "Ortho_Forward_Facing": "yellow tow giraffe", + "Ortho_Forward_Facing_CkAW6rL25xH": "black helmet", + "Ortho_Forward_Facing_QCaor9ImJ2G": "toy koala", + "Pennington_Electric_Pot_Cabana_4": "yellow flower pot", + "Pinwheel_Pencil_Case": "colorful pencil case", + "Predator_LZ_TRX_FG": "white soccer cleats", + "Predito_LZ_TRX_FG_W": "white soccer cleats", + "ProSport_Harness_to_Booster_Seat": "white plate with salad", + "Provence_Bath_Towel_Royal_Blue": "dark blue towel", + "REEF_BANTU": "black boot", + "REEF_BRAIDED_CUSHION": "black flip-flop sandal", + "Reef_Star_Cushion_Flipflops_Size_8_Black": "black flip-flop sandal", + "RJ_Rabbit_Easter_Basket_Blue": "white-blue basket", + "Racoon": "plush racoon", + "Razer_Abyssus_Ambidextrous_Gaming_Mouse": "black gaming mouse", + "Razer_Naga_MMO_Gaming_Mouse": "black gaming mouse", + "Razer_Taipan_Black_Ambidextrous_Gaming_Mouse": "black gaming mouse", + "Razer_BlackWidow_Stealth_2014_Keyboard_07VFzIVabgh": "black keyboard", + "Razer_BlackWidow_Ultimate_2014_Mechanical_Gaming_Keyboard": "black keyboard", + "Razer_Blackwidow_Tournament_Edition_Keyboard": "black keyboard", + "Razer_Taipan_White_Ambidextrous_Gaming_Mouse": "white gaming mouse", + "RedBlack_Nintendo_3DSXL": "black and red gameboy", + "Remington_TStudio_Hair_Dryer": "red hair dryer", + "Retail_Leadership_Summit": "brown hat", + "Retail_Leadership_Summit_eCT3zqHYIkX": "gray hat", + "Rexy_Glove_Heavy_Duty_Gloves_Medium": "blue gloves", + "Room_Essentials_Bowl_Turquiose": "turquoise bowl", + "Room_Essentials_Mug_White_Yellow": "white-yellow mug", + "Room_Essentials_Salad_Plate_Turquoise": "turquoise plate", + "Rubbermaid_Large_Drainer": "dish drainer", + "SAMBA_HEMP": "brown shoe", + "SANDWICH_MEAL": "sandwich on plate", + "SCHOOL_BUS": "yellow school bus", + "STACKING_RING": "wooden ring stacker toy", + "Schleich_African_Black_Rhino": "rhino", + "Schleich_Bald_Eagle": "bald eagle", + "Schleich_Hereford_Bull": "brown bull", + "Schleich_Lion_Action_Figure": "lion", + "Schleich_S_Bayala_Unicorn_70432": "unicorn", + "Seagate_Archive_HDD_8_TB_Internal_hard_drive_SATA_6Gbs_35_ST8000AS0002": "metal hard drive storage", + "Shark": "shark", + "Weisshai_Great_White_Shark": "shark", + "Shurtape_30_Day_Removal_UV_Delct_15": "purple tape", + "Shurtape_Gaffers_Tape_Silver_2_x_60_yd": "gray tape", + "Sootheze_Cold_Therapy_Elephant": "grey elephant toy", + "Sootheze_Toasty_Orca": "orca toy", + "SpiderMan_Titan_Hero_12Inch_Action_Figure_5Hnn4mtkFsP": "spider man action figure", + "SpiderMan_Titan_Hero_12Inch_Action_Figure_oo1qph4wwiW": "spider man action figure", + "Squirrel": "toy squirrel", + "Sushi_Mat": "bamboo sushi mat", + "Tag_Dishtowel_Dobby_Stripe_Blue_18_x_26": "blue-white striped towel", + "Tag_Dishtowel_Green": "green-white striped towel", + "Thomas_Friends_Woodan_Railway_Henry": "green toy train", + "Threshold_Basket_Natural_Finish_Fabric_Liner_Small": "woven storage basket", + "Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring": "white-red plate", + "Threshold_Porcelain_Coffee_Mug_All_Over_Bead_White": "white mug", + "Threshold_Porcelain_Teapot_White": "white porcelain teapot", + "Threshold_Salad_Plate_Square_Rim_Porcelain": "white square saucer", + "Threshold_Textured_Damask_Bath_Towel_Pink": "pink bath towel", + "Threshold_Tray_Rectangle_Porcelain": "rectangular porcelain tray", + "Top_Paw_Dog_Bow_Bone_Ceramic_13_fl_oz_total": "white-pink dog bowl", + "Top_Paw_Dog_Bowl_Blue_Paw_Bone_Ceramic_25_fl_oz_total": "blue dog bowl", + "Toysmith_Windem_Up_Flippin_Animals_Dog": "white animal dog toy", + "Travel_Mate_P_series_Notebook": "black laptop", + "TriStar_Products_PPC_Power_Pressure_Cooker_XL_in_Black": "black power pressure cooker", + "Unmellow_Yellow_Tieks_Neon_Patent_Leather_Ballet_Flats": "yellow ballet shoe", + "Vtech_Roll_Learn_Turtle": "green turtle toy", + "Womens_Canvas_Bahama_in_White_4UyOhP6rYGO": "white shoe", + "adistar_boost_m": "black sneaker" +} \ No newline at end of file diff --git a/eq-kubric/GSO_transfer.py b/eq-kubric/GSO_transfer.py new file mode 100644 index 0000000000000000000000000000000000000000..0c9ff2b5904903c5e46f37c99066e99a9f4b93f2 --- /dev/null +++ b/eq-kubric/GSO_transfer.py @@ -0,0 +1,332 @@ +GSO_dict = { + "3D_Dollhouse_Lamp": "purple-white lamp", + "3D_Dollhouse_Refrigerator": "green wooden refrigerator", + "3D_Dollhouse_Sofa": "purple wooden sofa", + "3D_Dollhouse_TablePurple": "purple wooden table", + "3M_Antislip_Surfacing_Light_Duty_White": "light-gray tape", + "3M_Vinyl_Tape_Green_1_x_36_yd": "green tape", + "45oz_RAMEKIN_ASST_DEEP_COLORS": "green shiny bowl", + "5_HTP": "blue medicine bottle", + "ACE_Coffee_Mug_Kristen_16_oz_cup": "red coffee mug", + "AMBERLIGHT_UP_W": "blue sneakers", + "ASICS_GEL1140V_WhiteBlackSilver": "white-black shoes", + "ASICS_GEL1140V_WhiteRoyalSilver": "white-black shoes", + "ASICS_GELAce_Pro_Pearl_WhitePink": "white-pink shoes", + "ASICS_GELBlur33_20_GS_BlackWhiteSafety_Orange": "black-orange shoes", + "ASICS_GELBlur33_20_GS_Flash_YellowHot_PunchSilver": "yellow-orange shoes", + "ASICS_GELChallenger_9_Royal_BlueWhiteBlack": "blue-white shoes", + "Air_Hogs_Wind_Flyers_Set_Airplane_Red": "red toy airplane", + "AllergenFree_JarroDophilus": "yellow medicine bottle", + "Android_Figure_Chrome": "silver android figure", + "Android_Figure_Orange": "orange android figure", + "Apples_to_Apples_Kids_Edition": "green-yellow boardgame", + "Aroma_Stainless_Steel_Milk_Frother_2_Cup": "steel milk frother", + "Avengers_Gamma_Green_Smash_Fists": "green hulk toy fists", + "BIA_Cordon_Bleu_White_Porcelain_Utensil_Holder_900028": "white porcelain utensil holder", + "BIA_Porcelain_Ramekin_With_Glazed_Rim_35_45_oz_cup": "white porcelain ramekin", + "Threshold_Ramekin_White_Porcelain": "white porcelain ramekin", + "Utana_5_Porcelain_Ramekin_Large": "white porcelain ramekin", + "Baby_Elements_Stacking_Cups": "stack of colorful cups", + "Beyonc_Life_is_But_a_Dream_DVD": "black DVD", + "Bifidus_Balance_FOS": "purple medicine bottle", + "Big_Dot_Aqua_Pencil_Case": "green-purple pencil case", + "Big_Dot_Pink_Pencil_Case": "pink-black pencil case", + "Big_O_Sponges_Assorted_Cellulose_12_pack": "purple sponge", + "Black_Decker_CM2035B_12Cup_Thermal_Coffeemaker": "black metal coffee maker", + "Black_Decker_Stainless_Steel_Toaster_4_Slice": "stainless steel toaster", + "BlueBlack_Nintendo_3DSXL": "Nintendo gaming console", + "Blue_Jasmine_Includes_Digital_Copy_UltraViolet_DVD": "white DVD", + "Bradshaw_International_11642_7_Qt_MP_Plastic_Bowl": "red bowl", + "Breyer_Horse_Of_The_Year_2015": "toy horse", + "CARSII": "CARSII", + "CAR_CARRIER_TRAIN": "black toy train loaded with cars", + "California_Navy_Tieks_Italian_Leather_Ballet_Flats": "black ballet shoe", + "Calphalon_Kitchen_Essentials_12_Cast_Iron_Fry_Pan_Black": "white bowl", + "Threshold_Bead_Cereal_Bowl_White": "white bowl", + "Threshold_Porcelain_Serving_Bowl_Coupe_White": "white bowl", + "Chef_Style_Round_Cake_Pan_9_inch_pan": "round cake pan", + "Chefmate_8_Frypan": "black frypan", + "Chelsea_BlkHeelPMP_DwxLtZNxLZZ": "golden-black high heel", + "Chelsea_lo_fl_rdheel_nQ0LPNF1oMw": "red high heel", + "Chelsea_lo_fl_rdheel_zAQrnhlEfw8": "pink high heel", + "CoQ10": "white drug bottle", + "Cole_Hardware_Antislip_Surfacing_Material_White": "toilet paper", + "Cole_Hardware_Bowl_Scirocco_YellowBlue": "yellow round bowl", + "Cole_Hardware_Deep_Bowl_Good_Earth_1075": "brown bowl", + "Cole_Hardware_Dishtowel_BlueWhite": "blue-white dish towel", + "Cole_Hardware_Dishtowel_Red": "red towel", + "Cole_Hardware_Dishtowel_Stripe": "red-white striped towel", + "Tag_Dishtowel_Basket_Weave_Red_18_x_26": "red-white striped towel", + "Cole_Hardware_Electric_Pot_Assortment_55": "red flower pot", + "Sapota_Threshold_4_Ceramic_Round_Planter_Red": "red flower pot", + "Cole_Hardware_Electric_Pot_Cabana_55": "orange clay pot", + "Cole_Hardware_Orchid_Pot_85": "orange flower pot", + "Cole_Hardware_Flower_Pot_1025": "gray clay pot", + "Cole_Hardware_Hammer_Black": "black and yellow hammer", + "Cole_Hardware_Plant_Saucer_Brown_125": "brown round plate", + "Cole_Hardware_Plant_Saucer_Glazed_9": "brown round plate", + "Cole_Hardware_Saucer_Electric": "pink saucer", + "Cole_Hardware_School_Bell_Solid_Brass_38": "school bell", + "Colton_Wntr_Chukka_y4jO0I8JQFW": "leather boot", + "Corningware_CW_by_Corningware_3qt_Oblong_Casserole_Dish_Blue": "rectangular blue casserol dish", + "Craftsman_Grip_Screwdriver_Phillips_Cushion": "screwdriver", + "Crosley_Alarm_Clock_Vintage_Metal": "vintage metal alarm clock", + "Curver_Storage_Bin_Black_Small": "black net basket", + "DPC_Handmade_Hat_Brown": "black hat", + "Retail_Leadership_Summit_tQFCizMt6g0": "black hat", + "DPC_tropical_Trends_Hat": "brown straw hat", + "Diamond_Visions_Scissors_Red": "red scissors", + "Dino_3": "toy T-Rex", + "Dino_4": "toy triceratops", + "Dino_5": "toy dicynodont dinosaur", + "Dixie_10_ounce_Bowls_35_ct": "white bowl with purple pattern", + "Dog": "Dog", + "Eat_to_Live_The_Amazing_NutrientRich_Program_for_Fast_and_Sustained_Weight_Loss_Revised_Edition_Book": "white book", + "Ecoforms_Garden_Pot_GP16ATurquois": "turquoise flower pot", + "Ecoforms_Plant_Container_12_Pot_Nova": "green flower pot", + "Ecoforms_Plant_Container_QP6CORAL": "red plant container", + "Ecoforms_Plant_Container_URN_NAT": "brown flower pot", + "Ecoforms_Plant_Saucer_S20MOCHA": "dark brown saucer", + "Elephant": "gray elephant toy", + "Embark_Lunch_Cooler_Blue": "blue cooler bag", + "F10_TRX_FG_ssscuo9tGxb": "blue-red soccer cleats", + "F5_TRX_FG": "yellow soccer cleats", + "FemDophilus": "FemDophilus", + "GARDEN_SWING": "garden swing", + "GRANDFATHER_DOLL": "wooden doll", + "GRANDMOTHER": "wooden doll", + "GoPro_HERO3_Composite_Cable": "composite cable", + "Great_Dinos_Triceratops_Toy": "green android mascot", + "Grreat_Choice_Dog_Double_Dish_Plastic_Blue": "blue dog dish", + "HeavyDuty_Flashlight": "red flashlight", + "Hefty_Waste_Basket_Decorative_Bronze_85_liter": "black basket", + "Hilary": "brown leather boot", + "MARTIN_WEDGE_LACE_BOOT": "brown leather boot", + "Rayna_BootieWP": "brown leather boot", + "Sperry_TopSider_pSUFPWQXPp3": "brown leather boot", + "Sperry_TopSider_tNB9t6YBUf3": "brown leather boot", + "Tory_Burch_Sabe_65mm_Bootie_Split_Suede_in_Caramel": "brown leather boot", + "W_Lou_z0dkC78niiZ": "brown leather boot", + "Home_Fashions_Washcloth_Linen": "linen cloth", + "Home_Fashions_Washcloth_Olive_Green": "olive green cloth", + "Horses_in_Pink_Pencil_Case": "pink pencil case", + "Imaginext_Castle_Ogre": "green toy ogre", + "Inositol": "Inositol", + "JBL_Charge_Speaker_portable_wireless_wired_Green": "green JBL portable speaker", + "Jansport_School_Backpack_Blue_Streak": "blue and black backpack", + "KS_Chocolate_Cube_Box_Assortment_By_Neuhaus_2010_Ounces": "white gift box with red straps", + "Kanex_MultiSync_Wireless_Keyboard": "white keyboard", + "Kotobuki_Saucer_Dragon_Fly": "pale green saucer", + "LACING_SHEEP": "toy sheep", + "Lenovo_Yoga_2_11": "gray laptop", + "Lovable_Huggable_Cuddly_Boutique_Teddy_Bear_Beige": "brown teddy bear", + "Magnifying_Glassassrt": "green-orange magnifying glass", + "Marc_Anthony_Skip_Professional_Oil_of_Morocco_Conditioner_with_Argan_Oil": "blue conditioner bottle", + "Mens_ASV_Billfish_Boat_Shoe_in_Dark_Brown_Leather_zdHVHXueI3w": "brown leather shoe", + "Mens_Billfish_3Eye_Boat_Shoe_in_Dark_Tan_wyns9HRcEuH": "brown leather shoe", + "Mens_Billfish_Slip_On_in_Tan_Beige_aaVUk0tNTv8": "brown leather shoe", + "NAPA_VALLEY_NAVAJO_SANDAL": "sandal", + "Neat_Solutions_Character_Bib_2_pack": "white square bowl", + "Nestle_Nesquik_Chocolate_Powder_Flavored_Milk_Additive_109_Oz_Canister": "yellow nesquik chocolate powder canister", + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Leonardo": "teenage mutant ninja turtle figure", + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Michelangelo": "teenage mutant ninja turtle figure", + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Raphael": "teenage mutant ninja turtle figure", + "Nikon_1_AW1_w11275mm_Lens_Silver": "nikon camera lens", + "Nintendo_2DS_Crimson_Red": "black-red nintendo 2ds console", + "Nintendo_Mario_Action_Figure": "mario action figure", + "Nintendo_Yoshi_Action_Figure": "green yoshi action figure", + "Now_Designs_Bowl_Akita_Black": "black-white bowl", + "Now_Designs_Dish_Towel_Mojave_18_x_28": "green towel", + "OVAL_XYLOPHONE": "colorful xylophone", + "OXO_Cookie_Spatula": "black-purple spatula", + "OXO_Soft_Works_Can_Opener_SnapLock": "black can opener", + "Object_REmvBDJStub": "green hat with feather", + "Ocedar_Snap_On_Dust_Pan_And_Brush_1_ct": "white dust pan with brush", + "Olive_Kids_Birdie_Sidekick_Backpack": "turquoise backpack", + "Ortho_Forward_Facing": "yellow toy giraffe", + "Ortho_Forward_Facing_CkAW6rL25xH": "black helmet", + "Ortho_Forward_Facing_QCaor9ImJ2G": "toy koala", + "Pennington_Electric_Pot_Cabana_4": "yellow flower pot", + "Pinwheel_Pencil_Case": "colorful pencil case", + "Predator_LZ_TRX_FG": "white soccer cleats", + "Predito_LZ_TRX_FG_W": "white soccer cleats", + "ProSport_Harness_to_Booster_Seat": "white plate with salad", + "Provence_Bath_Towel_Royal_Blue": "dark blue towel", + "REEF_BANTU": "black boot", + "REEF_BRAIDED_CUSHION": "black flip-flop sandal", + "Reef_Star_Cushion_Flipflops_Size_8_Black": "black flip-flop sandal", + "RJ_Rabbit_Easter_Basket_Blue": "white-blue basket", + "Racoon": "plush racoon", + "Razer_Abyssus_Ambidextrous_Gaming_Mouse": "black gaming mouse", + "Razer_Naga_MMO_Gaming_Mouse": "black gaming mouse", + "Razer_Taipan_Black_Ambidextrous_Gaming_Mouse": "black gaming mouse", + "Razer_BlackWidow_Stealth_2014_Keyboard_07VFzIVabgh": "black keyboard", + "Razer_BlackWidow_Ultimate_2014_Mechanical_Gaming_Keyboard": "black keyboard", + "Razer_Blackwidow_Tournament_Edition_Keyboard": "black keyboard", + "Razer_Taipan_White_Ambidextrous_Gaming_Mouse": "white gaming mouse", + "RedBlack_Nintendo_3DSXL": "black and red gameboy", + "Remington_TStudio_Hair_Dryer": "red hair dryer", + "Retail_Leadership_Summit": "brown hat", + "Retail_Leadership_Summit_eCT3zqHYIkX": "gray hat", + "Rexy_Glove_Heavy_Duty_Gloves_Medium": "blue gloves", + "Room_Essentials_Bowl_Turquiose": "turquoise bowl", + "Room_Essentials_Mug_White_Yellow": "white-yellow mug", + "Room_Essentials_Salad_Plate_Turquoise": "turquoise plate", + "Rubbermaid_Large_Drainer": "dish drainer", + "SAMBA_HEMP": "brown shoe", + "SANDWICH_MEAL": "sandwich on plate", + "SCHOOL_BUS": "yellow school bus", + "STACKING_RING": "wooden ring stacker toy", + "Schleich_African_Black_Rhino": "rhino", + "Schleich_Bald_Eagle": "bald eagle", + "Schleich_Hereford_Bull": "brown bull", + "Schleich_Lion_Action_Figure": "lion", + "Schleich_S_Bayala_Unicorn_70432": "unicorn", + "Seagate_Archive_HDD_8_TB_Internal_hard_drive_SATA_6Gbs_35_ST8000AS0002": "metal hard drive storage", + "Shark": "shark", + "Weisshai_Great_White_Shark": "shark", + "Shurtape_30_Day_Removal_UV_Delct_15": "purple tape", + "Shurtape_Gaffers_Tape_Silver_2_x_60_yd": "gray tape", + "Sootheze_Cold_Therapy_Elephant": "grey elephant toy", + "Sootheze_Toasty_Orca": "orca toy", + "SpiderMan_Titan_Hero_12Inch_Action_Figure_5Hnn4mtkFsP": "spider man action figure", + "SpiderMan_Titan_Hero_12Inch_Action_Figure_oo1qph4wwiW": "spider man action figure", + "Squirrel": "toy squirrel", + "Sushi_Mat": "bamboo sushi mat", + "Tag_Dishtowel_Dobby_Stripe_Blue_18_x_26": "blue-white striped towel", + "Tag_Dishtowel_Green": "green-white striped towel", + "Thomas_Friends_Woodan_Railway_Henry": "green toy train", + "Threshold_Basket_Natural_Finish_Fabric_Liner_Small": "woven storage basket", + "Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring": "white-red plate", + "Threshold_Porcelain_Coffee_Mug_All_Over_Bead_White": "white mug", + "Threshold_Porcelain_Teapot_White": "white porcelain teapot", + "Threshold_Salad_Plate_Square_Rim_Porcelain": "white square saucer", + "Threshold_Textured_Damask_Bath_Towel_Pink": "pink bath towel", + "Threshold_Tray_Rectangle_Porcelain": "rectangular porcelain tray", + "Top_Paw_Dog_Bow_Bone_Ceramic_13_fl_oz_total": "white-pink dog bowl", + "Top_Paw_Dog_Bowl_Blue_Paw_Bone_Ceramic_25_fl_oz_total": "blue dog bowl", + "Toysmith_Windem_Up_Flippin_Animals_Dog": "white animal dog toy", + "Travel_Mate_P_series_Notebook": "black laptop", + "TriStar_Products_PPC_Power_Pressure_Cooker_XL_in_Black": "black power pressure cooker", + "Unmellow_Yellow_Tieks_Neon_Patent_Leather_Ballet_Flats": "yellow ballet shoe", + "Vtech_Roll_Learn_Turtle": "green turtle toy", + "Womens_Canvas_Bahama_in_White_4UyOhP6rYGO": "white shoe", + "adistar_boost_m": "black sneaker" +} + +GSO_dict_attr = { + "base_set": GSO_dict, + "choose_set":{ + "towel":{ + "Tag_Dishtowel_Dobby_Stripe_Blue_18_x_26":"blue stripe towel", + "Tag_Dishtowel_Basket_Weave_Red_18_x_26":"red stripe towel", + "Tag_Dishtowel_18_x_26":"green stripe towel", + "Home_Fashions_Washcloth_Linen":"grey wash towel" + }, + "hat":{ + "Retail_Leadership_Summit_tQFCizMt6g0":"black hat", + "Retail_Leadership_Summit_eCT3zqHYIkX":"grey hat", + "Retail_Leadership_Summit":"brown hat" + }, + "saucer":{ + "Ecoforms_Quadra_Saucer_SQ1_Avocado":"green square saucer plate", + "Ecoforms_Plant_Saucer_SQ8COR":"red square saucer plate", + "Ecoforms_Plant_Saucer_SQ1HARVEST":"yellow square saucer plate", + "Ecoforms_Plate_S20Avocado":"green round plate", + "Ecoforms_Plant_Saucer_S14NATURAL":"brown round plate", + "Ecoforms_Plant_Container_S24Turquoise":"blue round plate" + }, + "plant_container":{ + "Ecoforms_Plant_Container_QP_Turquoise":"blue plant container", + "Ecoforms_Plant_Container_QP_Harvest":"yellow plant container", + "Ecoforms_Plant_Container_QP6CORAL":"red plant container", + }, + "storage":{ + "Seagate_1TB_Wireless_Plus_mobile_device_storage":"metallic mobile device storage", + "Seagate_1TB_Backup_Plus_portable_drive_Silver":"white mobile device storage", + "Seagate_1TB_Backup_Plus_portable_drive_Blue":"blue and white mobile device storage" + }, + "shoe":{ + "SAMBA_HEMP":"brown shoe", + "SAMOA":"green shoe", + "Reebok_ZIGTECH_SHARK_MAYHEM360":"white running shoe", + "Reebok_PUMP_OMNI_LITE_HLS":"black shoe", + "Reebok_FUELTRAIN":"pink shoe", + "PureFlow_2_Color_RylPurHibiscusBlkSlvrWht_Size_50":"purple running shoe", + "F5_TRX_FG":"yellow shoe", + "ENFR_MID_ENFORCER":"blue shoe", + "Crazy_Shadow_2_oW4Jd10HFFr":"red shoe" + }, + "bottle":{ + "Jarrow_Glucosamine_Chondroitin_Combination_120_Caps":"yellow drug bottle", + "LTyrosine":"red drug bottle", + "Lactoferrin":"blue drug bottle", + "Blackcurrant_Lutein":"purple drug bottle" + }, + "bowl":{ + "Cole_Hardware_Bowl_Scirocco_YellowBlue":"yellow bowl", + "Cole_Hardware_Deep_Bowl_Good_Earth_1075":"brown bowl", + "Room_Essentials_Bowl_Turquiose":"blue bowl", + "Threshold_Bead_Cereal_Bowl_White":"white bowl", + "Grreatv_Choice_Dog_Bowl_Gray_Bones_Plastic_20_fl_oz_total":"grey dog bowl", + "Top_Paw_Dog_Bow_Bone_Ceramic_13_fl_oz_total":"pink dog bowl", + "Grreat_Choice_Dog_Double_Dish_Plastic_Blue":"blue plastic dog bowl" + }, + "clay_plot": { + "Cole_Hardware_Electric_Pot_Cabana_55":"orange clay pot", + "Cole_Hardware_Flower_Pot_1025":"gray clay pot" + }, + "running shoe":{ + "ASICS_GELAce_Pro_Pearl_WhitePink":"white-pink running shoe", + "ASICS_GELBlur33_20_GS_BlackWhiteSafety_Orange":"black-orange running shoe", + "ASICS_GELBlur33_20_GS_Flash_YellowHot_PunchSilver":"yellow-orange running shoe", + "ASICS_GELChallenger_9_Royal_BlueWhiteBlack":"blue-white running shoe", + "ASICS_GEL1140V_WhiteBlackSilver":"white-black running shoe", + "ASICS_GEL1140V_WhiteRoyalSilver": "white-blue running shoe" + }, + "android_figure":{ + "Android_Figure_Orange":"orange android figure", + "Great_Dinos_Triceratops_Toy":"green android mascot", + "Android_Figure_Chrome": "silver android figure" + }, + "dvd": { + "Blue_Jasmine_Includes_Digital_Copy_UltraViolet_DVD": "white DVD", + "Beyonc_Life_is_But_a_Dream_DVD": "black DVD" + }, + "pencil-case":{ + "Big_Dot_Aqua_Pencil_Case":"green-purple pencil case", + "Big_Dot_Pink_Pencil_Case":"pink-black pencil case", + "Horses_in_Pink_Pencil_Case":"pink pencil case", + "Pinwheel_Pencil_Case":"colorful pencil case" + }, + "ballet_shoe":{ + "Unmellow_Yellow_Tieks_Neon_Patent_Leather_Ballet_Flats":"yellow ballet shoe", + "California_Navy_Tieks_Italian_Leather_Ballet_Flats":"black ballet shoe" + }, + "high_heel":{ + "Chelsea_BlkHeelPMP_DwxLtZNxLZZ":"golden-black high heel", + "Chelsea_lo_fl_rdheel_nQ0LPNF1oMw":"red high heel", + "Chelsea_lo_fl_rdheel_zAQrnhlEfw8":"pink high heel" + }, + "soccer_cleats":{ + "Predator_LZ_TRX_FG":"white-red soccer cleats", + "Predito_LZ_TRX_FG_W":"white-pink soccer cleats", + "F10_TRX_FG_ssscuo9tGxb":"blue-red soccer cleats", + "F5_TRX_FG":"yellow soccer cleats" + }, + "keyboard":{ + "Razer_BlackWidow_Stealth_2014_Keyboard_07VFzIVabgh":"black keyboard", + "Kanex_MultiSync_Wireless_Keyboard":"white keyboard" + }, + "tape": { + "Shurtape_30_Day_Removal_UV_Delct_15":"purple tape", + "Shurtape_Gaffers_Tape_Silver_2_x_60_yd":"gray tape", + "3M_Antislip_Surfacing_Light_Duty_White":"light-gray tape", + "3M_Vinyl_Tape_Green_1_x_36_yd":"deep-green tape" + }, + "laptop":{ + "Travel_Mate_P_series_Notebook":"black laptop", + "Lenovo_Yoga_2_11":"gray laptop" + } + } +} diff --git a/eq-kubric/create_dataset.py b/eq-kubric/create_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..c100eba4091cb2d81a3e21aec760970dd39c8562 --- /dev/null +++ b/eq-kubric/create_dataset.py @@ -0,0 +1,25 @@ +from tqdm import tqdm +from utils import setup_output_files, end_output_file +from create_scene import create_scene +from joblib import Parallel, delayed + +def update_progress_bar(bar): + def update(_): + bar.update() + return update + +def create_dataset(dataset_length, dataset_type="location", max_num_objects=4, n_jobs=1, verbose=False): + dataset_length = dataset_length//2 + setup_output_files(dataset_type) + + # Parallelize scene creation + _results = [ + result for result in tqdm(Parallel(n_jobs=n_jobs, return_as="generator")( + delayed(create_scene)(i, dataset_type, max_num_objects, verbose=verbose) for i in range(dataset_length) + ), + total=dataset_length, desc=f"Creating {dataset_type} dataset") + ] + + end_output_file(dataset_type) + +# create_dataset(10, "counting", n_jobs=2) \ No newline at end of file diff --git a/eq-kubric/generate_GSO_dict.py b/eq-kubric/generate_GSO_dict.py new file mode 100644 index 0000000000000000000000000000000000000000..4b4e4e24a52d1426b68d43244a27d16c32f136ba --- /dev/null +++ b/eq-kubric/generate_GSO_dict.py @@ -0,0 +1,22 @@ +import json + +with open('3d_data/GSO_dict_filtered.json', 'r') as file: + data = json.load(file) + +# output_json = f"3d_data/GSO_dict.json" +# with open(output_json, "w") as response_file: +# keys = list(data["assets"].keys()) +# key_to_key_dict = {key: key for key in keys} + +# json.dump(key_to_key_dict, response_file, indent=4) + + +exchanged_dict = {} +for key, values in data.items(): + for value in values: + exchanged_dict[value] = key + + +output_json = f"3d_data/GSO_dict.json" +with open(output_json, "w") as response_file: + json.dump(exchanged_dict, response_file, indent=4) \ No newline at end of file diff --git a/eq-kubric/my_kubric_twoframe_counting.py b/eq-kubric/my_kubric_twoframe_counting.py new file mode 100644 index 0000000000000000000000000000000000000000..8a552b898ca59390ad38f99382e738e79df2328e --- /dev/null +++ b/eq-kubric/my_kubric_twoframe_counting.py @@ -0,0 +1,486 @@ +# Copyright 2022 The Kubric Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Worker file for the Multi-Object Video (MOVi) C (and CC) datasets. + * The number of objects is randomly chosen between + --min_num_objects (3) and --max_num_objects (10) + * The objects are randomly chosen from the Google Scanned Objects dataset + + * Background is an random HDRI from the HDRI Haven dataset, + projected onto a Dome (half-sphere). + The HDRI is also used for lighting the scene. +""" + +import logging + +import bpy +import copy +import os +import kubric as kb +from kubric.simulator import PyBullet +from kubric.renderer import Blender +import numpy as np +import random +import shutil + +from GSO_transfer import GSO_dict +from utils import save_scene_instruction, dataset_dir + +# --- Some configuration values +DATASET_TYPE = "counting" +# the region in which to place objects [(min), (max)] +SPAWN_REGION = [(-8, -8, 0), (8, 8, 5)] +SPAWN_REGION_OBJ = [[-6, -6, 0.5], [6, 6, 0.5]] +VELOCITY_RANGE = [(-4., -4., 0.), (4., 4., 0.)] + +# --- CLI arguments +parser = kb.ArgumentParser() +parser.add_argument("--objects_split", choices=["train", "test"], + default="train") +# Configuration for the objects of the scene +parser.add_argument("--min_num_objects", type=int, default=1, + help="minimum number of objects") +parser.add_argument("--max_num_objects", type=int, default=4, + help="maximum number of objects") +parser.add_argument("--min_add_same_object", type=int, default=0, + help="maximum number of objects") +parser.add_argument("--max_add_same_object", type=int, default=4, + help="maximum number of objects") + +# Configuration for the floor and background +parser.add_argument("--floor_friction", type=float, default=0.3) +parser.add_argument("--floor_restitution", type=float, default=0.5) +parser.add_argument("--backgrounds_split", choices=["train", "test"], + default="train") + +parser.add_argument("--camera", choices=["fixed_random", "linear_movement"], + default="fixed_random") +parser.add_argument("--max_camera_movement", type=float, default=4.0) +parser.add_argument("--smallest_scale", type=float, default=2.) +parser.add_argument("--largest_scale", type=float, default=4.) + +# Configuration for the source of the assets +parser.add_argument("--kubasic_assets", type=str, + default="gs://kubric-public/assets/KuBasic/KuBasic.json") +parser.add_argument("--hdri_assets", type=str, + default="gs://kubric-public/assets/HDRI_haven/HDRI_haven.json") +parser.add_argument("--gso_assets", type=str, + default="gs://kubric-public/assets/GSO/GSO.json") +parser.add_argument("--save_state", dest="save_state", action="store_true") +parser.set_defaults(save_state=False, frame_end=24, frame_rate=12, + resolution=512) +parser.add_argument("--sub_outputdir", type=str, default="test sub output dir") +parser.add_argument("--generate_idx", type=int, default=-1, help="generation idx") +FLAGS = parser.parse_args() + + +import pyquaternion as pyquat +def default_rng(): + return np.random.RandomState() + +def random_rotation(axis=None, rng=default_rng()): + """ Compute a random rotation as a quaternion. + If axis is None the rotation is sampled uniformly over all possible orientations. + Otherwise it corresponds to a random rotation around the given axis.""" + + if axis is None: + # uniform across rotation space + # copied from pyquat.Quaternion.random to be able to use a custom rng + r1, r2, r3 = rng.random(3) + + q1 = np.sqrt(1.0 - r1) * (np.sin(2 * np.pi * r2)) + q2 = np.sqrt(1.0 - r1) * (np.cos(2 * np.pi * r2)) + q3 = np.sqrt(r1) * (np.sin(2 * np.pi * r3)) + q4 = np.sqrt(r1) * (np.cos(2 * np.pi * r3)) + + return q1, q2, q3, q4 + + else: + if isinstance(axis, str) and axis.upper() in ["X", "Y", "Z"]: + axis = {"X": (1., 0., 0.), + "Y": (0., 1., 0.), + "Z": (0., 0., 1.)}[axis.upper()] + + # quat = pyquat.Quaternion(axis=axis, angle=rng.uniform(0, 2*np.pi)) + quat = pyquat.Quaternion(axis=axis, angle=rng.uniform(-0.5*np.pi, 0.5*np.pi)) # -0.5pi -- 0.5pi + return tuple(quat) + + +from kubric.core import objects +def rotation_sampler(axis=None): + def _sampler(obj: objects.PhysicalObject, rng): + obj.quaternion = random_rotation(axis=axis, rng=rng) + return _sampler + + +def move_until_no_overlap(asset, simulator, spawn_region=((-1, -1, -1), (1, 1, 1)), max_trials=100, + rng=default_rng()): + return kb.randomness.resample_while(asset, + samplers=[rotation_sampler(axis='Z'), kb.randomness.position_sampler(spawn_region)], + condition=simulator.check_overlap, + max_trials=max_trials, + rng=rng) + + +def check_ok(obj, pos, region): + # import pdb; pdb.set_trace() + x, y, z = pos + if pos[0]region[1][0] or pos[1]region[1][1]: #or pos[2]region[1][2]: + return False + + + if simulator.check_overlap(obj): + return False + + return True + + +def get_obj_x_left(bound, scale): + return -bound[0][0] * scale[0] + +def get_obj_x_right(bound, scale): + return bound[1][0] * scale[0] + +def get_obj_y_front(bound, scale): + return -bound[0][1] * scale[1] + +def get_obj_y_behind(bound, scale): + return bound[1][1] * scale[1] + +def get_obj_z(bound, scale): + return bound[0][2] * scale[2] + +def get_obj_z_up(bound, scale): + return bound[1][2] * scale[2] + + +def get_new_pos(bounds, scale, ref_location, ref_pos, ref_z_up, ref_object, rng): + obj_z = - get_obj_z(bounds, scale) + # import pdb; pdb.set_trace() + ref_x_left, ref_x_right, ref_y_front, ref_y_behind = get_obj_x_left(ref_object.bounds, ref_object.scale), get_obj_x_right(ref_object.bounds, ref_object.scale), get_obj_y_front(ref_object.bounds, ref_object.scale), get_obj_y_behind(ref_object.bounds, ref_object.scale) + ref_x, ref_y, ref_z = ref_pos + if ref_location == 'front': + return [rng.uniform(ref_x-0.5, ref_x+0.5), rng.uniform(ref_y-ref_y_front-6, ref_y-ref_y_front-2), obj_z+0.02] + elif ref_location == 'behind': + return [rng.uniform(ref_x-0.5, ref_x+0.5), rng.uniform(ref_y+ref_y_behind+2, ref_y+ref_y_behind+6), obj_z+0.02] + elif ref_location == 'left': + return [rng.uniform(ref_x-ref_x_left-6, ref_x-ref_x_left-2), rng.uniform(ref_y-0.5, ref_y+0.5), obj_z+0.02] + elif ref_location == 'right': + return [rng.uniform(ref_x+ref_x_right+2, ref_x+ref_x_right+6), rng.uniform(ref_y-0.5, ref_y+0.5), obj_z+0.02] + elif ref_location == 'on': + return [ref_x, ref_y, ref_z+ref_z_up+obj_z+1] + + +def add_new_obj(scene, new_obj, ref_location, ref_object, rng, max_trails=50): + + ref_obj_pos = ref_object.position + # import pdb; pdb.set_trace() + ref_obj_z_up = get_obj_z_up(ref_object.bounds, ref_object.scale) + new_obj_pos = get_new_pos(new_obj.bounds, new_obj.scale, ref_location, ref_obj_pos, ref_obj_z_up, ref_object, rng) + new_obj.position = new_obj_pos + scene += new_obj + + # import pdb; pdb.set_trace() + trails = 0 + while not check_ok(new_obj, new_obj.position, SPAWN_REGION_OBJ): + trails += 1 + # import pdb; pdb.set_trace() + new_obj.position = get_new_pos(new_obj.bounds, new_obj.scale, ref_location, ref_obj_pos, ref_obj_z_up, ref_object, rng) + new_obj.quaternion = random_rotation(axis="Z", rng=rng) + if trails > max_trails: + print('cannot put the object, break') + # import pdb; pdb.set_trace() + return None + print('try {} times'.format(trails)) + return scene + + + +def gen_caption(obj_name, counting_number, action=True): + + + # if counting_number == 1: + # verb = 'is' + # else: + # verb = 'are' + # obj_name = obj_name+'s' + + location = random.choice(['the scene', 'the platform', 'the image' ]) + # caption = f'the{obj_size_exp} {obj_name} {verb_exp} {location_exp} the{ref_obj_size_exp} {ref_obj_name}' + + edit_verb = "" + if action: + edit_verb = "add" + else: + edit_verb = "remove" + + # caption = random.choice([f'{verb} {counting_number} {obj_name} {location}', f'{counting_number} {obj_name} {verb} {location}']) + + if edit_verb == 'add': + caption = f'{edit_verb} {counting_number} {obj_name} to {location}' + else: + caption = f'{edit_verb} {counting_number} {obj_name} from {location}' + return caption + + + +# --- Common setups & resources +print('Generate {} Sample'.format(FLAGS.generate_idx)) +scene, rng, output_dir, scratch_dir = kb.setup(FLAGS) +output_dir = output_dir / FLAGS.sub_outputdir + + + +simulator = PyBullet(scene, scratch_dir) +renderer = Blender(scene, scratch_dir, samples_per_pixel=64) +kubasic = kb.AssetSource.from_manifest(FLAGS.kubasic_assets) +gso = kb.AssetSource.from_manifest(FLAGS.gso_assets) +hdri_source = kb.AssetSource.from_manifest(FLAGS.hdri_assets) + + +# --- Populate the scene +# background HDRI +train_backgrounds, test_backgrounds = hdri_source.get_test_split(fraction=0.) +logging.info("Choosing one of the %d training backgrounds...", len(train_backgrounds)) +hdri_id = rng.choice(train_backgrounds) + +background_hdri = hdri_source.create(asset_id=hdri_id) +#assert isinstance(background_hdri, kb.Texture) +logging.info("Using background %s", hdri_id) +scene.metadata["background"] = hdri_id +renderer._set_ambient_light_hdri(background_hdri.filename) + + +# Dome +dome = kubasic.create(asset_id="dome", name="dome", + friction=FLAGS.floor_friction, + restitution=FLAGS.floor_restitution, + static=True, background=True) +assert isinstance(dome, kb.FileBasedObject) +scene += dome +dome_blender = dome.linked_objects[renderer] +texture_node = dome_blender.data.materials[0].node_tree.nodes["Image Texture"] +texture_node.image = bpy.data.images.load(background_hdri.filename) + + + +def get_linear_camera_motion_start_end( + movement_speed: float, + inner_radius: float = 8., + outer_radius: float = 12., + z_offset: float = 0.1, +): + """Sample a linear path which starts and ends within a half-sphere shell.""" + while True: + camera_start = np.array(kb.sample_point_in_half_sphere_shell(inner_radius, + outer_radius, + z_offset)) + direction = rng.rand(3) - 0.5 + movement = direction / np.linalg.norm(direction) * movement_speed + camera_end = camera_start + movement + if (inner_radius <= np.linalg.norm(camera_end) <= outer_radius and + camera_end[2] > z_offset): + return camera_start, camera_end + + +# Camera +logging.info("Setting up the Camera...") +scene.camera = kb.PerspectiveCamera(focal_length=35., sensor_width=36) +if FLAGS.camera == "fixed_random": + # scene.camera.position = kb.sample_point_in_half_sphere_shell( + # inner_radius=7., outer_radius=9., offset=4) + scene.camera.position = (0, -10, 15) + scene.camera.look_at((0, 0, 0)) +elif FLAGS.camera == "linear_movement": + camera_start, camera_end = get_linear_camera_motion_start_end( + movement_speed=rng.uniform(low=0., high=FLAGS.max_camera_movement) + ) + # linearly interpolate the camera position between these two points + # while keeping it focused on the center of the scene + # we start one frame early and end one frame late to ensure that + # forward and backward flow are still consistent for the last and first frames + for frame in range(FLAGS.frame_start - 1, FLAGS.frame_end + 2): + interp = ((frame - FLAGS.frame_start + 1) / + (FLAGS.frame_end - FLAGS.frame_start + 3)) + scene.camera.position = (interp * np.array(camera_start) + + (1 - interp) * np.array(camera_end)) + scene.camera.look_at((0, 0, 0)) + scene.camera.keyframe_insert("position", frame) + scene.camera.keyframe_insert("quaternion", frame) + + +# Add random objects +train_split, test_split = gso.get_test_split(fraction=0.) +# if FLAGS.objects_split == "train": +logging.info("Choosing one of the %d training objects...", len(train_split)) +# active_split = train_split +active_split = list(GSO_dict.keys()) + +# import pdb; pdb.set_trace() +num_objects = rng.randint(FLAGS.min_num_objects, FLAGS.max_num_objects+1) + +logging.info("Step 1: Randomly placing %d objects:", num_objects) +object_state_save_dict = {} +object_state_ref_dict = {} + + +# not resample objects +object_id_list = random.sample(active_split, num_objects) + + +for i in range(num_objects): + # object_id = rng.choice(active_split) + object_id = object_id_list[i] + obj = gso.create(asset_id=object_id) + + + assert isinstance(obj, kb.FileBasedObject) + scale = rng.uniform(FLAGS.smallest_scale, FLAGS.largest_scale) + obj.scale = scale / np.max(obj.bounds[1] - obj.bounds[0]) + + + obj_pos_z = - get_obj_z(obj.bounds, obj.scale) + SPAWN_REGION_OBJ[0][2], SPAWN_REGION_OBJ[1][2] = obj_pos_z, obj_pos_z + obj.position = rng.uniform(*SPAWN_REGION_OBJ) + + obj.metadata["scale"] = scale + scene += obj + move_until_no_overlap(obj, simulator, spawn_region=SPAWN_REGION_OBJ, rng=rng) + # initialize velocity randomly but biased towards center + # obj.velocity = (rng.uniform(*VELOCITY_RANGE) - + # [obj.position[0], obj.position[1], 0]) + # print(obj.position) + obj.velocity = [0, 0, 0] + logging.info(" Added %s at %s", obj.asset_id, obj.position) + object_state_save_dict[i] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} + object_state_ref_dict[i] = {'object': obj} + + + +ref_object = object_state_ref_dict[rng.choice(list(object_state_ref_dict.keys()))]['object'] # random choose an reference object to resample for counting +ref_object_id = ref_object.asset_id +ref_object_name = GSO_dict[ref_object_id] +counting_list = random.sample(list(range(FLAGS.min_add_same_object, FLAGS.max_add_same_object+1)), 2) +counting_list.sort() # make sure that small is the first +print('will place {} and {} in the scene'.format(counting_list[0], counting_list[1])) + + +# 1st +print('Generate the first scene.') +for ii in range(counting_list[0]): + obj = gso.create(asset_id=ref_object_id) + scale = rng.uniform(FLAGS.smallest_scale, FLAGS.largest_scale) + obj.scale = scale / np.max(obj.bounds[1] - obj.bounds[0]) + obj.metadata["scale"] = scale + + obj_pos_z = - get_obj_z(obj.bounds, obj.scale) + SPAWN_REGION_OBJ[0][2], SPAWN_REGION_OBJ[1][2] = obj_pos_z, obj_pos_z + obj.position = rng.uniform(*SPAWN_REGION_OBJ) + + scene += obj + move_until_no_overlap(obj, simulator, spawn_region=SPAWN_REGION_OBJ, rng=rng) + obj.velocity = [0, 0, 0] + + object_state_save_dict[num_objects+ii] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_pos': obj.position, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} + +frame = renderer.render_still() + +os.makedirs(output_dir/'{}'.format(FLAGS.generate_idx), exist_ok=True) +kb.write_png(frame["rgba"], output_dir/"{}/image0.png".format(FLAGS.generate_idx)) +caption_1 = gen_caption(ref_object_name, counting_list[1]-counting_list[0], action=counting_list[0] > counting_list[1]) +print(caption_1) + + +# save meta ann + +# import json +# json.dump(object_state_save_dict, open(output_dir/'{}/meta_ann1.json'.format(FLAGS.generate_idx), 'w')) +# np.save(output_dir/'{}/meta_ann1.npy'.format(FLAGS.generate_idx), object_state_save_dict) +# renderer.save_state(output_dir/'{}/image1.blend'.format(FLAGS.generate_idx)) + + + +# 2nd +print('Generate the second scene.') +for ii in range(counting_list[1]-counting_list[0]): + obj = gso.create(asset_id=ref_object_id) + scale = rng.uniform(FLAGS.smallest_scale, FLAGS.largest_scale) + obj.scale = scale / np.max(obj.bounds[1] - obj.bounds[0]) + obj.metadata["scale"] = scale + + obj_pos_z = - get_obj_z(obj.bounds, obj.scale) + SPAWN_REGION_OBJ[0][2], SPAWN_REGION_OBJ[1][2] = obj_pos_z, obj_pos_z + obj.position = rng.uniform(*SPAWN_REGION_OBJ) + + scene += obj + move_until_no_overlap(obj, simulator, spawn_region=SPAWN_REGION_OBJ, rng=rng) + obj.velocity = [0, 0, 0] + + object_state_save_dict[num_objects+counting_list[0]+ii] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_pos': obj.position, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} + + +frame = renderer.render_still() +kb.write_png(frame["rgba"], output_dir/"{}/image1.png".format(FLAGS.generate_idx)) +caption_2 = gen_caption(ref_object_name, counting_list[1]-counting_list[0], action=counting_list[1]>counting_list[0]) +print(caption_2) + + +# import json +# json.dump(object_state_save_dict, open(output_dir/'{}/meta_ann2.json'.format(FLAGS.generate_idx), 'w')) +# np.save(output_dir/'{}/meta_ann2.npy'.format(FLAGS.generate_idx), object_state_save_dict) +# renderer.save_state(output_dir/'{}/image2.blend'.format(FLAGS.generate_idx)) + + +# save json +# local_ann = {'image0':"{}/image0.png".format(FLAGS.generate_idx), 'caption0':caption_1, +# 'image1':"{}/image1.png".format(FLAGS.generate_idx), 'caption1':caption_2, +# 'ann_path':"{}/ann.json".format(FLAGS.generate_idx), +# 'obj_num0':1+counting_list[0], 'obj_num1':1+counting_list[1]} +# json.dump(local_ann, open("{}/{}/ann.json".format(str(output_dir), FLAGS.generate_idx), 'w')) + +# # import pdb; pdb.set_trace() +# if not os.path.exists("{}/global_ann.json".format(str(output_dir))): +# json.dump([], open("{}/global_ann.json".format(str(output_dir)), 'w')) +# with open("{}/global_ann.json".format(str(output_dir)), 'r') as f: +# old_data = json.load(f) +# old_data.append(local_ann) +# with open("{}/global_ann.json".format(str(output_dir)), "w") as f: +# json.dump(old_data, f) + +local_ann = [{ + 'input': dataset_dir(DATASET_TYPE) + "{}/image0.png".format(FLAGS.generate_idx), + 'output': dataset_dir(DATASET_TYPE) + "{}/image1.png".format(FLAGS.generate_idx), + 'instruction': caption_2, + }, + { + 'input': dataset_dir(DATASET_TYPE) + "{}/image1.png".format(FLAGS.generate_idx), + 'output': dataset_dir(DATASET_TYPE) + "{}/image0.png".format(FLAGS.generate_idx), + 'instruction': caption_1, + } +] +save_scene_instruction(f"{output_dir}/eq_kubric_{DATASET_TYPE}.json", local_ann, DATASET_TYPE, FLAGS.generate_idx) + +kb.done() + diff --git a/eq-kubric/my_kubric_twoframe_further_location.py b/eq-kubric/my_kubric_twoframe_further_location.py new file mode 100644 index 0000000000000000000000000000000000000000..c15fe15c1dab8280938be380a722fbd025319ac8 --- /dev/null +++ b/eq-kubric/my_kubric_twoframe_further_location.py @@ -0,0 +1,524 @@ +# Copyright 2022 The Kubric Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Worker file for the Multi-Object Video (MOVi) C (and CC) datasets. + * The number of objects is randomly chosen between + --min_num_objects (3) and --max_num_objects (10) + * The objects are randomly chosen from the Google Scanned Objects dataset + + * Background is an random HDRI from the HDRI Haven dataset, + projected onto a Dome (half-sphere). + The HDRI is also used for lighting the scene. +""" + +import logging + +import bpy +import copy +import os +import kubric as kb +from kubric.simulator import PyBullet +from kubric.renderer import Blender +import numpy as np +import random +import shutil + +from GSO_transfer import GSO_dict +from utils import save_scene_instruction, dataset_dir + +# --- Some configuration values +DATASET_TYPE = "further_location" +# the region in which to place objects [(min), (max)] +SPAWN_REGION = [(-8, -8, 0), (8, 8, 5)] +SPAWN_REGION_OBJ = [[-6, -6, 0.5], [6, 6, 0.5]] +VELOCITY_RANGE = [(-4., -4., 0.), (4., 4., 0.)] + +# --- CLI arguments +parser = kb.ArgumentParser() +parser.add_argument("--objects_split", choices=["train", "test"], + default="train") +# Configuration for the objects of the scene +parser.add_argument("--min_num_objects", type=int, default=1, + help="minimum number of objects") +parser.add_argument("--max_num_objects", type=int, default=5, + help="maximum number of objects") +# Configuration for the floor and background +parser.add_argument("--floor_friction", type=float, default=0.3) +parser.add_argument("--floor_restitution", type=float, default=0.5) +parser.add_argument("--backgrounds_split", choices=["train", "test"], + default="train") + +parser.add_argument("--camera", choices=["fixed_random", "linear_movement"], + default="fixed_random") +parser.add_argument("--max_camera_movement", type=float, default=4.0) +parser.add_argument("--smallest_scale", type=float, default=2.) +parser.add_argument("--largest_scale", type=float, default=4.) + +# Configuration for the source of the assets +parser.add_argument("--kubasic_assets", type=str, + default="gs://kubric-public/assets/KuBasic/KuBasic.json") +parser.add_argument("--hdri_assets", type=str, + default="gs://kubric-public/assets/HDRI_haven/HDRI_haven.json") +parser.add_argument("--gso_assets", type=str, + default="gs://kubric-public/assets/GSO/GSO.json") +parser.add_argument("--save_state", dest="save_state", action="store_true") +parser.set_defaults(save_state=False, frame_end=24, frame_rate=12, + resolution=512) +parser.add_argument("--sub_outputdir", type=str, default="test sub output dir") +parser.add_argument("--generate_idx", type=int, default=-1, help="generation idx") +FLAGS = parser.parse_args() + + +import pyquaternion as pyquat +def default_rng(): + return np.random.RandomState() + +def random_rotation(axis=None, rng=default_rng()): + """ Compute a random rotation as a quaternion. + If axis is None the rotation is sampled uniformly over all possible orientations. + Otherwise it corresponds to a random rotation around the given axis.""" + + if axis is None: + # uniform across rotation space + # copied from pyquat.Quaternion.random to be able to use a custom rng + r1, r2, r3 = rng.random(3) + + q1 = np.sqrt(1.0 - r1) * (np.sin(2 * np.pi * r2)) + q2 = np.sqrt(1.0 - r1) * (np.cos(2 * np.pi * r2)) + q3 = np.sqrt(r1) * (np.sin(2 * np.pi * r3)) + q4 = np.sqrt(r1) * (np.cos(2 * np.pi * r3)) + + return q1, q2, q3, q4 + + else: + if isinstance(axis, str) and axis.upper() in ["X", "Y", "Z"]: + axis = {"X": (1., 0., 0.), + "Y": (0., 1., 0.), + "Z": (0., 0., 1.)}[axis.upper()] + + # quat = pyquat.Quaternion(axis=axis, angle=rng.uniform(0, 2*np.pi)) + quat = pyquat.Quaternion(axis=axis, angle=rng.uniform(-0.5*np.pi, 0.5*np.pi)) # -0.5pi -- 0.5pi + return tuple(quat) + + +from kubric.core import objects +def rotation_sampler(axis=None): + def _sampler(obj: objects.PhysicalObject, rng): + obj.quaternion = random_rotation(axis=axis, rng=rng) + return _sampler + + +def move_until_no_overlap(asset, simulator, spawn_region=((-1, -1, -1), (1, 1, 1)), max_trials=100, + rng=default_rng()): + return kb.randomness.resample_while(asset, + # samplers=[rotation_sampler(axis='Z'), kb.randomness.position_sampler(spawn_region)], + samplers=[kb.randomness.position_sampler(spawn_region)], + condition=simulator.check_overlap, + max_trials=max_trials, + rng=rng) + + +def check_ok(obj, pos, region): + # import pdb; pdb.set_trace() + x, y, z = pos + if pos[0]region[1][0] or pos[1]region[1][1]: #or pos[2]region[1][2]: + return False + + if simulator.check_overlap(obj): + return False + + return True + + +def get_obj_x_left(bound, scale): + return -bound[0][0] * scale[0] + +def get_obj_x_right(bound, scale): + return bound[1][0] * scale[0] + +def get_obj_y_front(bound, scale): + return -bound[0][1] * scale[1] + +def get_obj_y_behind(bound, scale): + return bound[1][1] * scale[1] + +def get_obj_z(bound, scale): + return bound[0][2] * scale[2] + +def get_obj_z_up(bound, scale): + return bound[1][2] * scale[2] + + +# def get_new_pos(bounds, scale, ref_location, ref_pos, ref_z_up, ref_object, rng): +# obj_z = - get_obj_z(bounds, scale) +# # import pdb; pdb.set_trace() +# ref_x_left, ref_x_right, ref_y_front, ref_y_behind = get_obj_x_left(ref_object.bounds, ref_object.scale), get_obj_x_right(ref_object.bounds, ref_object.scale), get_obj_y_front(ref_object.bounds, ref_object.scale), get_obj_y_behind(ref_object.bounds, ref_object.scale) +# ref_x, ref_y, ref_z = ref_pos +# if ref_location == 'front': +# return [rng.uniform(ref_x-0.5, ref_x+0.5), rng.uniform(ref_y-ref_y_front-6, ref_y-ref_y_front-2), obj_z+0.02] +# elif ref_location == 'behind': +# return [rng.uniform(ref_x-0.5, ref_x+0.5), rng.uniform(ref_y+ref_y_behind+2, ref_y+ref_y_behind+6), obj_z+0.02] +# elif ref_location == 'left': +# return [rng.uniform(ref_x-ref_x_left-6, ref_x-ref_x_left-2), rng.uniform(ref_y-0.5, ref_y+0.5), obj_z+0.02] +# elif ref_location == 'right': +# return [rng.uniform(ref_x+ref_x_right+2, ref_x+ref_x_right+6), rng.uniform(ref_y-0.5, ref_y+0.5), obj_z+0.02] +# elif ref_location == 'on': +# return [ref_x, ref_y, ref_z+ref_z_up+obj_z+1] + +def get_new_pos(bounds, scale, ref_location, ref_pos, ref_z_up, ref_object, rng): + # Calculate the z-position based on the object's bounds and scale + obj_z = -get_obj_z(bounds, scale) + 0.2 # Ensuring the object is slightly above the ground + + # Extract the bounds from the SPAWN_REGION_OBJ variable + spawn_x_min, spawn_y_min, _ = SPAWN_REGION_OBJ[0] + spawn_x_max, spawn_y_max, _ = SPAWN_REGION_OBJ[1] + + # Calculate the maximum offsets within the given spawn bounds + max_offset_x = spawn_x_max - spawn_x_min + 1 + max_offset_y = spawn_y_max - spawn_y_min + 1 + + # Define absolute positions for each location using straightforward calculations + import random + + locations = { + 'closer': [ref_pos[0], max(spawn_y_min, ref_pos[1] - max_offset_y) * random.uniform(0.5, 1.2), obj_z], + 'further away': [ref_pos[0], min(spawn_y_max, ref_pos[1] + max_offset_y) * random.uniform(0.5, 1.2), obj_z], + 'further left': [max(spawn_x_min, ref_pos[0] - max_offset_x) * random.uniform(0.5, 1.2), ref_pos[1], obj_z], + 'further right': [min(spawn_x_max, ref_pos[0] + max_offset_x) * random.uniform(0.5, 1.2), ref_pos[1], obj_z], + } + + # Return the position for the specified location + return locations.get(ref_location, [ref_pos[0], ref_pos[1], obj_z]) # Default position if location is not specified + +def add_new_obj(scene, new_obj, ref_location, ref_object, rng, max_trails=50): + + ref_obj_pos = ref_object.position + # import pdb; pdb.set_trace() + ref_obj_z_up = get_obj_z_up(ref_object.bounds, ref_object.scale) + new_obj_pos = get_new_pos(new_obj.bounds, new_obj.scale, ref_location, ref_obj_pos, ref_obj_z_up, ref_object, rng) + new_obj.position = new_obj_pos + scene += new_obj + + # import pdb; pdb.set_trace() + trails = 0 + while not check_ok(new_obj, new_obj.position, SPAWN_REGION_OBJ): + trails += 1 + # import pdb; pdb.set_trace() + new_obj.position = get_new_pos(new_obj.bounds, new_obj.scale, ref_location, ref_obj_pos, ref_obj_z_up, ref_object, rng) + # new_obj.quaternion = random_rotation(axis="Z", rng=rng) + if trails > max_trails: + print('cannot put the object, break') + # import pdb; pdb.set_trace() + return None + print('try {} times'.format(trails)) + return scene + +def gen_caption(obj_name, obj_scale, ref_obj_name, ref_obj_scale, location): + + if location == 'further right': + location_exp = 'further right' + elif location == 'further left': + location_exp = 'further left' + elif location == 'further away': + location_exp = 'further away' + elif location == 'closer': + location_exp = 'closer' + + edit_verb = random.choice(['put', 'shift', 'move']) + # caption = f'the{obj_size_exp} {obj_name} {verb_exp} {location_exp} the{ref_obj_size_exp} {ref_obj_name}' + caption = f'{edit_verb} the {obj_name} {location_exp}' + + return caption + +def sample_unique_items(GSO_dict, num_samples): + unique_items = {} + sampled_values = set() + active_keys = list(GSO_dict.keys()) + + while len(unique_items) < num_samples: + key = random.choice(active_keys) + value = GSO_dict[key] + + if value not in sampled_values: + sampled_values.add(value) + unique_items[key] = value + + active_keys.remove(key) + if not active_keys: + break + + return list(unique_items.keys()) + +# --- Common setups & resources +print('Generate {} Sample'.format(FLAGS.generate_idx)) +scene, rng, output_dir, scratch_dir = kb.setup(FLAGS) +output_dir = output_dir / FLAGS.sub_outputdir + + + +simulator = PyBullet(scene, scratch_dir) +renderer = Blender(scene, scratch_dir, samples_per_pixel=64) +kubasic = kb.AssetSource.from_manifest(FLAGS.kubasic_assets) +gso = kb.AssetSource.from_manifest(FLAGS.gso_assets) +hdri_source = kb.AssetSource.from_manifest(FLAGS.hdri_assets) + + +# --- Populate the scene +# background HDRI +train_backgrounds, test_backgrounds = hdri_source.get_test_split(fraction=0.) +logging.info("Choosing one of the %d training backgrounds...", len(train_backgrounds)) +hdri_id = rng.choice(train_backgrounds) + +background_hdri = hdri_source.create(asset_id=hdri_id) +#assert isinstance(background_hdri, kb.Texture) +logging.info("Using background %s", hdri_id) +scene.metadata["background"] = hdri_id +renderer._set_ambient_light_hdri(background_hdri.filename) + + +# Dome +dome = kubasic.create(asset_id="dome", name="dome", + friction=FLAGS.floor_friction, + restitution=FLAGS.floor_restitution, + static=True, background=True) +assert isinstance(dome, kb.FileBasedObject) +scene += dome +dome_blender = dome.linked_objects[renderer] +texture_node = dome_blender.data.materials[0].node_tree.nodes["Image Texture"] +texture_node.image = bpy.data.images.load(background_hdri.filename) + + + +def get_linear_camera_motion_start_end( + movement_speed: float, + inner_radius: float = 8., + outer_radius: float = 12., + z_offset: float = 0.1, +): + """Sample a linear path which starts and ends within a half-sphere shell.""" + while True: + camera_start = np.array(kb.sample_point_in_half_sphere_shell(inner_radius, + outer_radius, + z_offset)) + direction = rng.rand(3) - 0.5 + movement = direction / np.linalg.norm(direction) * movement_speed + camera_end = camera_start + movement + if (inner_radius <= np.linalg.norm(camera_end) <= outer_radius and + camera_end[2] > z_offset): + return camera_start, camera_end + + +# Camera +logging.info("Setting up the Camera...") +scene.camera = kb.PerspectiveCamera(focal_length=35., sensor_width=36) +if FLAGS.camera == "fixed_random": + # scene.camera.position = kb.sample_point_in_half_sphere_shell( + # inner_radius=7., outer_radius=9., offset=4) + scene.camera.position = (0, -10, 15) + scene.camera.look_at((0, 0, 0)) +elif FLAGS.camera == "linear_movement": + camera_start, camera_end = get_linear_camera_motion_start_end( + movement_speed=rng.uniform(low=0., high=FLAGS.max_camera_movement) + ) + # linearly interpolate the camera position between these two points + # while keeping it focused on the center of the scene + # we start one frame early and end one frame late to ensure that + # forward and backward flow are still consistent for the last and first frames + for frame in range(FLAGS.frame_start - 1, FLAGS.frame_end + 2): + interp = ((frame - FLAGS.frame_start + 1) / + (FLAGS.frame_end - FLAGS.frame_start + 3)) + scene.camera.position = (interp * np.array(camera_start) + + (1 - interp) * np.array(camera_end)) + scene.camera.look_at((0, 0, 0)) + scene.camera.keyframe_insert("position", frame) + scene.camera.keyframe_insert("quaternion", frame) + + +# Add random objects +train_split, test_split = gso.get_test_split(fraction=0.) +# if FLAGS.objects_split == "train": +logging.info("Choosing one of the %d training objects...", len(train_split)) +# active_split = train_split +active_split = list(GSO_dict.keys()) + +num_objects = rng.randint(FLAGS.min_num_objects, + FLAGS.max_num_objects+1) + +logging.info("Step 1: Randomly placing %d objects:", num_objects) +object_state_save_dict = {} +object_state_ref_dict = {} + + +# not resample objects +# object_id_list = random.sample(active_split, num_objects+1) +object_id_list = sample_unique_items(GSO_dict, num_objects+1) + + +for i in range(num_objects): + # object_id = rng.choice(active_split) + object_id = object_id_list[i] + obj = gso.create(asset_id=object_id) + + + assert isinstance(obj, kb.FileBasedObject) + scale = rng.uniform(FLAGS.smallest_scale, FLAGS.largest_scale) + obj.scale = scale / np.max(obj.bounds[1] - obj.bounds[0]) + + + obj_pos_z = - get_obj_z(obj.bounds, obj.scale) + SPAWN_REGION_OBJ[0][2], SPAWN_REGION_OBJ[1][2] = obj_pos_z, obj_pos_z + obj.position = rng.uniform(*SPAWN_REGION_OBJ) + + obj.metadata["scale"] = scale + scene += obj + move_until_no_overlap(obj, simulator, spawn_region=SPAWN_REGION_OBJ, rng=rng) + # initialize velocity randomly but biased towards center + # obj.velocity = (rng.uniform(*VELOCITY_RANGE) - + # [obj.position[0], obj.position[1], 0]) + # print(obj.position) + obj.velocity = [0, 0, 0] + logging.info(" Added %s at %s", obj.asset_id, obj.position) + object_state_save_dict[i] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} + object_state_ref_dict[i] = {'object': obj} + + +ref_object = object_state_ref_dict[rng.choice(list(object_state_ref_dict.keys()))]['object'] # random choose an reference object +ref_object_name = GSO_dict[ref_object.asset_id] +ref_location = ref_object.position +# random choose two location +# LOC_SET = ['front', 'behind', 'left', 'right', 'on'] +LOC_SET = ['further right', 'further left', 'further away', 'closer'] +ref_location1 = random.sample(LOC_SET, 1)[0] +if ref_location1 == 'further right': + ref_location2 = 'further left' +elif ref_location1 == 'further left': + ref_location2 = 'further right' +elif ref_location1 == 'further away': + ref_location2 = 'closer' +elif ref_location1 == 'closer': + ref_location2 = 'further away' + +# 1st +print('Generate the first scene.') +# object_id = rng.choice(active_split) +object_id = object_id_list[-1] +obj = gso.create(asset_id=object_id) +scale = rng.uniform(FLAGS.smallest_scale, FLAGS.largest_scale) +obj.scale = scale / np.max(obj.bounds[1] - obj.bounds[0]) +obj.metadata["scale"] = scale + +new_object_name = GSO_dict[obj.asset_id] +print('Add new object {}'.format(new_object_name)) + + +scene = add_new_obj(scene, obj, ref_location1, ref_object, rng, max_trails=500) +if scene is None: + exit() +frame = renderer.render_still() + +os.makedirs(output_dir/'{}'.format(FLAGS.generate_idx), exist_ok=True) +kb.write_png(frame["rgba"], output_dir/"{}/image0.png".format(FLAGS.generate_idx)) +caption_1 = gen_caption(new_object_name, obj.metadata["scale"], ref_object_name, ref_object.metadata["scale"], ref_location1) +print(caption_1) + + +# save meta ann +object_state_save_dict[i+1] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_pos': obj.position, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} +# import json +# json.dump(object_state_save_dict, open(output_dir/'{}/meta_ann1.json'.format(FLAGS.generate_idx), 'w')) +# np.save(output_dir/'{}/meta_ann1.npy'.format(FLAGS.generate_idx), object_state_save_dict) +# renderer.save_state(output_dir/'{}/image1.blend'.format(FLAGS.generate_idx)) + + + +# 2nd +print('Generate the second scene.') +# delete the last object to generate the second frame +# import pdb; pdb.set_trace() +# scene.remove(obj) +# scene= add_new_obj(scene, obj, ref_location2, ref_object, rng, max_trails=100) +ref_obj_pos = ref_object.position +ref_obj_z_up = get_obj_z_up(ref_object.bounds, ref_object.scale) +logging.info(f'Object position: {obj.position}') +new_obj_pos = get_new_pos(obj.bounds, obj.scale, ref_location2, obj.position, ref_obj_z_up, ref_object, rng) +logging.info(f'New object position: {new_obj_pos}') +obj.position = new_obj_pos +max_trails=500 + + +trails = 0 +while not check_ok(obj, obj.position, SPAWN_REGION_OBJ): + trails += 1 + obj.position = get_new_pos(obj.bounds, obj.scale, ref_location2, obj.position, ref_obj_z_up, ref_object, rng) + # obj.quaternion = random_rotation(axis="Z", rng=rng) + if trails > max_trails: + print('cannot put the object, break') + shutil.rmtree(output_dir/'{}'.format(FLAGS.generate_idx)) + exit() + +print('try {} times'.format(trails)) +frame = renderer.render_still() +kb.write_png(frame["rgba"], output_dir/"{}/image1.png".format(FLAGS.generate_idx)) +caption_2 = gen_caption(new_object_name, obj.metadata["scale"], ref_object_name, ref_object.metadata["scale"], ref_location2) +print(caption_2) + +# save meta ann +object_state_save_dict[i+1] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_pos': obj.position, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} +# import json +# json.dump(object_state_save_dict, open(output_dir/'{}/meta_ann2.json'.format(FLAGS.generate_idx), 'w')) +# np.save(output_dir/'{}/meta_ann2.npy'.format(FLAGS.generate_idx), object_state_save_dict) +# renderer.save_state(output_dir/'{}/image2.blend'.format(FLAGS.generate_idx)) + + +# save json +# local_ann = {'image0':"{}/image0.png".format(FLAGS.generate_idx), 'caption0':caption_1, +# 'image1':"{}/image1.png".format(FLAGS.generate_idx), 'caption1':caption_2, +# 'ann_path':"{}/ann.json".format(FLAGS.generate_idx), +# 'obj_num':num_objects+1} +# json.dump(local_ann, open("{}/{}/ann.json".format(str(output_dir), FLAGS.generate_idx), 'w')) + +# import pdb; pdb.set_trace() +# if not os.path.exists("{}/global_ann.json".format(str(output_dir))): +# json.dump([], open("{}/global_ann.json".format(str(output_dir)), 'w')) +# with open("{}/global_ann.json".format(str(output_dir)), 'r') as f: +# old_data = json.load(f) +# old_data.append(local_ann) +# with open("{}/global_ann.json".format(str(output_dir)), "w") as f: +# json.dump(old_data, f) + +local_ann = [{ + 'input': dataset_dir(DATASET_TYPE) + "{}/image0.png".format(FLAGS.generate_idx), + 'output': dataset_dir(DATASET_TYPE) + "{}/image1.png".format(FLAGS.generate_idx), + 'instruction': caption_2, + }, + { + 'input': dataset_dir(DATASET_TYPE) + "{}/image1.png".format(FLAGS.generate_idx), + 'output': dataset_dir(DATASET_TYPE) + "{}/image0.png".format(FLAGS.generate_idx), + 'instruction': caption_1, + } +] +save_scene_instruction(f"{output_dir}/eq_kubric_{DATASET_TYPE}.json", local_ann, DATASET_TYPE, FLAGS.generate_idx) + +kb.done() diff --git a/eq-kubric/my_kubric_twoframe_location.py b/eq-kubric/my_kubric_twoframe_location.py new file mode 100644 index 0000000000000000000000000000000000000000..91d5fd251ef5e02592cb73f8adcaf4048d37c777 --- /dev/null +++ b/eq-kubric/my_kubric_twoframe_location.py @@ -0,0 +1,541 @@ +# Copyright 2022 The Kubric Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Worker file for the Multi-Object Video (MOVi) C (and CC) datasets. + * The number of objects is randomly chosen between + --min_num_objects (3) and --max_num_objects (10) + * The objects are randomly chosen from the Google Scanned Objects dataset + + * Background is an random HDRI from the HDRI Haven dataset, + projected onto a Dome (half-sphere). + The HDRI is also used for lighting the scene. +""" + +import logging + +import bpy +import copy +import os +import kubric as kb +from kubric.simulator import PyBullet +from kubric.renderer import Blender +import numpy as np +import random +import shutil + +from GSO_transfer import GSO_dict +from utils import save_scene_instruction, dataset_dir + +# --- Some configuration values +DATASET_TYPE = "location" +# the region in which to place objects [(min), (max)] +SPAWN_REGION = [(-8, -8, 0), (8, 8, 5)] +SPAWN_REGION_OBJ = [[-6, -6, 0.5], [6, 6, 0.5]] +VELOCITY_RANGE = [(-4., -4., 0.), (4., 4., 0.)] + +# --- CLI arguments +parser = kb.ArgumentParser() +parser.add_argument("--objects_split", choices=["train", "test"], + default="train") +# Configuration for the objects of the scene +parser.add_argument("--min_num_objects", type=int, default=1, + help="minimum number of objects") +parser.add_argument("--max_num_objects", type=int, default=5, + help="maximum number of objects") +# Configuration for the floor and background +parser.add_argument("--floor_friction", type=float, default=0.3) +parser.add_argument("--floor_restitution", type=float, default=0.5) +parser.add_argument("--backgrounds_split", choices=["train", "test"], + default="train") + +parser.add_argument("--camera", choices=["fixed_random", "linear_movement"], + default="fixed_random") +parser.add_argument("--max_camera_movement", type=float, default=4.0) +parser.add_argument("--smallest_scale", type=float, default=2.) +parser.add_argument("--largest_scale", type=float, default=4.) + +# Configuration for the source of the assets +parser.add_argument("--kubasic_assets", type=str, + default="gs://kubric-public/assets/KuBasic/KuBasic.json") +parser.add_argument("--hdri_assets", type=str, + default="gs://kubric-public/assets/HDRI_haven/HDRI_haven.json") +parser.add_argument("--gso_assets", type=str, + default="gs://kubric-public/assets/GSO/GSO.json") +parser.add_argument("--save_state", dest="save_state", action="store_true") +parser.set_defaults(save_state=False, frame_end=24, frame_rate=12, + resolution=512) +parser.add_argument("--sub_outputdir", type=str, default="test sub output dir") +parser.add_argument("--generate_idx", type=int, default=-1, help="generation idx") +FLAGS = parser.parse_args() + + +import pyquaternion as pyquat +def default_rng(): + return np.random.RandomState() + +def random_rotation(axis=None, rng=default_rng()): + """ Compute a random rotation as a quaternion. + If axis is None the rotation is sampled uniformly over all possible orientations. + Otherwise it corresponds to a random rotation around the given axis.""" + + if axis is None: + # uniform across rotation space + # copied from pyquat.Quaternion.random to be able to use a custom rng + r1, r2, r3 = rng.random(3) + + q1 = np.sqrt(1.0 - r1) * (np.sin(2 * np.pi * r2)) + q2 = np.sqrt(1.0 - r1) * (np.cos(2 * np.pi * r2)) + q3 = np.sqrt(r1) * (np.sin(2 * np.pi * r3)) + q4 = np.sqrt(r1) * (np.cos(2 * np.pi * r3)) + + return q1, q2, q3, q4 + + else: + if isinstance(axis, str) and axis.upper() in ["X", "Y", "Z"]: + axis = {"X": (1., 0., 0.), + "Y": (0., 1., 0.), + "Z": (0., 0., 1.)}[axis.upper()] + + # quat = pyquat.Quaternion(axis=axis, angle=rng.uniform(0, 2*np.pi)) + quat = pyquat.Quaternion(axis=axis, angle=rng.uniform(-0.5*np.pi, 0.5*np.pi)) # -0.5pi -- 0.5pi + return tuple(quat) + + +from kubric.core import objects +def rotation_sampler(axis=None): + def _sampler(obj: objects.PhysicalObject, rng): + obj.quaternion = random_rotation(axis=axis, rng=rng) + return _sampler + + +def move_until_no_overlap(asset, simulator, spawn_region=((-1, -1, -1), (1, 1, 1)), max_trials=100, + rng=default_rng()): + return kb.randomness.resample_while(asset, + # samplers=[rotation_sampler(axis='Z'), kb.randomness.position_sampler(spawn_region)], + samplers=[kb.randomness.position_sampler(spawn_region)], + condition=simulator.check_overlap, + max_trials=max_trials, + rng=rng) + + +def check_ok(obj, pos, region): + # import pdb; pdb.set_trace() + x, y, z = pos + if pos[0]region[1][0] or pos[1]region[1][1]: #or pos[2]region[1][2]: + return False + + if simulator.check_overlap(obj): + return False + + return True + + +def get_obj_x_left(bound, scale): + return -bound[0][0] * scale[0] + +def get_obj_x_right(bound, scale): + return bound[1][0] * scale[0] + +def get_obj_y_front(bound, scale): + return -bound[0][1] * scale[1] + +def get_obj_y_behind(bound, scale): + return bound[1][1] * scale[1] + +def get_obj_z(bound, scale): + return bound[0][2] * scale[2] + +def get_obj_z_up(bound, scale): + return bound[1][2] * scale[2] + + +def get_new_pos(bounds, scale, ref_location, ref_pos, ref_z_up, ref_object, rng): + obj_z = - get_obj_z(bounds, scale) + # import pdb; pdb.set_trace() + ref_x_left, ref_x_right, ref_y_front, ref_y_behind = get_obj_x_left(ref_object.bounds, ref_object.scale), get_obj_x_right(ref_object.bounds, ref_object.scale), get_obj_y_front(ref_object.bounds, ref_object.scale), get_obj_y_behind(ref_object.bounds, ref_object.scale) + ref_x, ref_y, ref_z = ref_pos + if ref_location == 'front': + return [rng.uniform(ref_x-0.5, ref_x+0.5), rng.uniform(ref_y-ref_y_front-6, ref_y-ref_y_front-2), obj_z+0.02] + elif ref_location == 'behind': + return [rng.uniform(ref_x-0.5, ref_x+0.5), rng.uniform(ref_y+ref_y_behind+2, ref_y+ref_y_behind+6), obj_z+0.02] + elif ref_location == 'left': + return [rng.uniform(ref_x-ref_x_left-6, ref_x-ref_x_left-2), rng.uniform(ref_y-0.5, ref_y+0.5), obj_z+0.02] + elif ref_location == 'right': + return [rng.uniform(ref_x+ref_x_right+2, ref_x+ref_x_right+6), rng.uniform(ref_y-0.5, ref_y+0.5), obj_z+0.02] + elif ref_location == 'on': + return [ref_x, ref_y, ref_z+ref_z_up+obj_z+1] + +# def get_new_pos(bounds, scale, ref_location, ref_pos, ref_z_up, ref_object, rng): +# # Calculate the z-position based on the object's bounds and scale +# obj_z = -get_obj_z(bounds, scale) + 0.2 # Ensuring the object is slightly above the ground + +# # Extract the bounds from the SPAWN_REGION_OBJ variable +# spawn_x_min, spawn_y_min, _ = SPAWN_REGION_OBJ[0] +# spawn_x_max, spawn_y_max, _ = SPAWN_REGION_OBJ[1] + +# # Calculate the maximum offsets within the given spawn bounds +# max_offset_x = spawn_x_max - spawn_x_min + 1 +# max_offset_y = spawn_y_max - spawn_y_min + 1 + +# # Define absolute positions for each location using straightforward calculations +# locations = { +# 'closer': [ref_pos[0], max(spawn_y_min, ref_pos[1] - max_offset_y), obj_z], +# 'further away': [ref_pos[0], min(spawn_y_max, ref_pos[1] + max_offset_y), obj_z], +# 'further left': [max(spawn_x_min, ref_pos[0] - max_offset_x), ref_pos[1], obj_z], +# 'further right': [min(spawn_x_max, ref_pos[0] + max_offset_x), ref_pos[1], obj_z], +# } + +# # Return the position for the specified location +# return locations.get(ref_location, [ref_pos[0], ref_pos[1], obj_z]) # Default position if location is not specified + +def add_new_obj(scene, new_obj, ref_location, ref_object, rng, max_trails=50): + + ref_obj_pos = ref_object.position + # import pdb; pdb.set_trace() + ref_obj_z_up = get_obj_z_up(ref_object.bounds, ref_object.scale) + new_obj_pos = get_new_pos(new_obj.bounds, new_obj.scale, ref_location, ref_obj_pos, ref_obj_z_up, ref_object, rng) + new_obj.position = new_obj_pos + scene += new_obj + + # import pdb; pdb.set_trace() + trails = 0 + while not check_ok(new_obj, new_obj.position, SPAWN_REGION_OBJ): + trails += 1 + # import pdb; pdb.set_trace() + new_obj.position = get_new_pos(new_obj.bounds, new_obj.scale, ref_location, ref_obj_pos, ref_obj_z_up, ref_object, rng) + # new_obj.quaternion = random_rotation(axis="Z", rng=rng) + if trails > max_trails: + print('cannot put the object, break') + # import pdb; pdb.set_trace() + return None + print('try {} times'.format(trails)) + return scene + + +def gen_caption(obj_name, obj_scale, ref_obj_name, ref_obj_scale, location): + + # def get_size(scale): + # if scale < 1.: + # return ' small' + # elif scale > 2.5: + # return ' large' + # else: + # return '' + + # import pdb; pdb.set_trace() + # obj_size_exp = get_size(obj_scale) + # ref_obj_size_exp = get_size(ref_obj_scale) + # verb_exp = random.choice(['is', 'is located', 'is placed']) + if location == 'front': + location_exp = 'in front of' + elif location == 'behind': + location_exp = 'behind' + elif location == 'left': + location_exp = random.choice(['on the left of', 'on the left side of', 'on the left hand of']) + elif location == 'right': + location_exp = random.choice(['on the right of', 'on the right side of', 'on the right hand of']) + elif location == 'on': + location_exp = random.choice(['on the top of', 'above']) + + # elif location == 'further right': + # location_exp = 'further right' + # elif location == 'further left': + # location_exp = 'further left' + # elif location == 'further away': + # location_exp = 'further away' + # elif location == 'closer': + # location_exp = 'closer' + + edit_verb = random.choice(['put', 'shift', 'change', 'place']) + # caption = f'the{obj_size_exp} {obj_name} {verb_exp} {location_exp} the{ref_obj_size_exp} {ref_obj_name}' + if edit_verb in ['put', 'place']: + caption = f'{edit_verb} the {obj_name} {location_exp} the {ref_obj_name}' + else: + caption = f'{edit_verb} the position of the {obj_name} {location_exp} the {ref_obj_name}' + + return caption + +def sample_unique_items(GSO_dict, num_samples): + unique_items = {} + sampled_values = set() + active_keys = list(GSO_dict.keys()) + + while len(unique_items) < num_samples: + key = random.choice(active_keys) + value = GSO_dict[key] + + if value not in sampled_values: + sampled_values.add(value) + unique_items[key] = value + + active_keys.remove(key) + if not active_keys: + break + + return list(unique_items.keys()) + + +# --- Common setups & resources +print('Generate {} Sample'.format(FLAGS.generate_idx)) +scene, rng, output_dir, scratch_dir = kb.setup(FLAGS) +output_dir = output_dir / FLAGS.sub_outputdir + + + +simulator = PyBullet(scene, scratch_dir) +renderer = Blender(scene, scratch_dir, samples_per_pixel=64) +kubasic = kb.AssetSource.from_manifest(FLAGS.kubasic_assets) +gso = kb.AssetSource.from_manifest(FLAGS.gso_assets) +hdri_source = kb.AssetSource.from_manifest(FLAGS.hdri_assets) + + +# --- Populate the scene +# background HDRI +train_backgrounds, test_backgrounds = hdri_source.get_test_split(fraction=0.) +logging.info("Choosing one of the %d training backgrounds...", len(train_backgrounds)) +hdri_id = rng.choice(train_backgrounds) + +background_hdri = hdri_source.create(asset_id=hdri_id) +#assert isinstance(background_hdri, kb.Texture) +logging.info("Using background %s", hdri_id) +scene.metadata["background"] = hdri_id +renderer._set_ambient_light_hdri(background_hdri.filename) + + +# Dome +dome = kubasic.create(asset_id="dome", name="dome", + friction=FLAGS.floor_friction, + restitution=FLAGS.floor_restitution, + static=True, background=True) +assert isinstance(dome, kb.FileBasedObject) +scene += dome +dome_blender = dome.linked_objects[renderer] +texture_node = dome_blender.data.materials[0].node_tree.nodes["Image Texture"] +texture_node.image = bpy.data.images.load(background_hdri.filename) + + + +def get_linear_camera_motion_start_end( + movement_speed: float, + inner_radius: float = 8., + outer_radius: float = 12., + z_offset: float = 0.1, +): + """Sample a linear path which starts and ends within a half-sphere shell.""" + while True: + camera_start = np.array(kb.sample_point_in_half_sphere_shell(inner_radius, + outer_radius, + z_offset)) + direction = rng.rand(3) - 0.5 + movement = direction / np.linalg.norm(direction) * movement_speed + camera_end = camera_start + movement + if (inner_radius <= np.linalg.norm(camera_end) <= outer_radius and + camera_end[2] > z_offset): + return camera_start, camera_end + + +# Camera +logging.info("Setting up the Camera...") +scene.camera = kb.PerspectiveCamera(focal_length=35., sensor_width=36) +if FLAGS.camera == "fixed_random": + # scene.camera.position = kb.sample_point_in_half_sphere_shell( + # inner_radius=7., outer_radius=9., offset=4) + scene.camera.position = (0, -10, 15) + scene.camera.look_at((0, 0, 0)) +elif FLAGS.camera == "linear_movement": + camera_start, camera_end = get_linear_camera_motion_start_end( + movement_speed=rng.uniform(low=0., high=FLAGS.max_camera_movement) + ) + # linearly interpolate the camera position between these two points + # while keeping it focused on the center of the scene + # we start one frame early and end one frame late to ensure that + # forward and backward flow are still consistent for the last and first frames + for frame in range(FLAGS.frame_start - 1, FLAGS.frame_end + 2): + interp = ((frame - FLAGS.frame_start + 1) / + (FLAGS.frame_end - FLAGS.frame_start + 3)) + scene.camera.position = (interp * np.array(camera_start) + + (1 - interp) * np.array(camera_end)) + scene.camera.look_at((0, 0, 0)) + scene.camera.keyframe_insert("position", frame) + scene.camera.keyframe_insert("quaternion", frame) + + +# Add random objects +train_split, test_split = gso.get_test_split(fraction=0.) +# if FLAGS.objects_split == "train": +logging.info("Choosing one of the %d training objects...", len(train_split)) +# active_split = train_split +active_split = list(GSO_dict.keys()) + + +num_objects = rng.randint(FLAGS.min_num_objects, + FLAGS.max_num_objects+1) + +logging.info("Step 1: Randomly placing %d objects:", num_objects) +object_state_save_dict = {} +object_state_ref_dict = {} + + +# not resample objects +# object_id_list = random.sample(active_split, num_objects+1) +object_id_list = sample_unique_items(GSO_dict, num_objects+1) + +for i in range(num_objects): + # object_id = rng.choice(active_split) + object_id = object_id_list[i] + obj = gso.create(asset_id=object_id) + + + assert isinstance(obj, kb.FileBasedObject) + scale = rng.uniform(FLAGS.smallest_scale, FLAGS.largest_scale) + obj.scale = scale / np.max(obj.bounds[1] - obj.bounds[0]) + + + obj_pos_z = - get_obj_z(obj.bounds, obj.scale) + SPAWN_REGION_OBJ[0][2], SPAWN_REGION_OBJ[1][2] = obj_pos_z, obj_pos_z + obj.position = rng.uniform(*SPAWN_REGION_OBJ) + + obj.metadata["scale"] = scale + scene += obj + move_until_no_overlap(obj, simulator, spawn_region=SPAWN_REGION_OBJ, rng=rng) + # initialize velocity randomly but biased towards center + # obj.velocity = (rng.uniform(*VELOCITY_RANGE) - + # [obj.position[0], obj.position[1], 0]) + # print(obj.position) + obj.velocity = [0, 0, 0] + logging.info(" Added %s at %s", obj.asset_id, obj.position) + object_state_save_dict[i] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} + object_state_ref_dict[i] = {'object': obj} + + +ref_object = object_state_ref_dict[rng.choice(list(object_state_ref_dict.keys()))]['object'] # random choose an reference object +ref_object_name = GSO_dict[ref_object.asset_id] +ref_location = ref_object.position +# random choose two location +LOC_SET = ['front', 'behind', 'left', 'right', 'on'] +# LOC_SET = ['further right', 'further left', 'further away', 'closer'] +ref_location1, ref_location2 = random.sample(LOC_SET, 2) + +# 1st +print('Generate the first scene.') +# object_id = rng.choice(active_split) +object_id = object_id_list[-1] +obj = gso.create(asset_id=object_id) +scale = rng.uniform(FLAGS.smallest_scale, FLAGS.largest_scale) +obj.scale = scale / np.max(obj.bounds[1] - obj.bounds[0]) +obj.metadata["scale"] = scale + +new_object_name = GSO_dict[obj.asset_id] +print('Add new object {}'.format(new_object_name)) + + +scene = add_new_obj(scene, obj, ref_location1, ref_object, rng, max_trails=500) +if scene is None: + exit() +frame = renderer.render_still() + +os.makedirs(output_dir/'{}'.format(FLAGS.generate_idx), exist_ok=True) +kb.write_png(frame["rgba"], output_dir/"{}/image0.png".format(FLAGS.generate_idx)) +caption_1 = gen_caption(new_object_name, obj.metadata["scale"], ref_object_name, ref_object.metadata["scale"], ref_location1) +print(caption_1) + + +# save meta ann +object_state_save_dict[i+1] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_pos': obj.position, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} +# import json +# json.dump(object_state_save_dict, open(output_dir/'{}/meta_ann1.json'.format(FLAGS.generate_idx), 'w')) +# np.save(output_dir/'{}/meta_ann1.npy'.format(FLAGS.generate_idx), object_state_save_dict) +# renderer.save_state(output_dir/'{}/image1.blend'.format(FLAGS.generate_idx)) + + + +# 2nd +print('Generate the second scene.') +# delete the last object to generate the second frame +# import pdb; pdb.set_trace() +# scene.remove(obj) +# scene= add_new_obj(scene, obj, ref_location2, ref_object, rng, max_trails=100) +ref_obj_pos = ref_object.position +ref_obj_z_up = get_obj_z_up(ref_object.bounds, ref_object.scale) +new_obj_pos = get_new_pos(obj.bounds, obj.scale, ref_location2, ref_obj_pos, ref_obj_z_up, ref_object, rng) + +obj.position = new_obj_pos +max_trails=500 + + +trails = 0 +while not check_ok(obj, obj.position, SPAWN_REGION_OBJ): + trails += 1 + obj.position = get_new_pos(obj.bounds, obj.scale, ref_location2, ref_obj_pos, ref_obj_z_up, ref_object, rng) + # obj.quaternion = random_rotation(axis="Z", rng=rng) + if trails > max_trails: + print('cannot put the object, break') + shutil.rmtree(output_dir/'{}'.format(FLAGS.generate_idx)) + exit() + +print('try {} times'.format(trails)) +frame = renderer.render_still() +kb.write_png(frame["rgba"], output_dir/"{}/image1.png".format(FLAGS.generate_idx)) +caption_2 = gen_caption(new_object_name, obj.metadata["scale"], ref_object_name, ref_object.metadata["scale"], ref_location2) +print(caption_2) + +# save meta ann +object_state_save_dict[i+1] = {'object_id': object_id, + 'object_scale': obj.scale, + 'object_pos': obj.position, + 'object_quaternion': obj.quaternion, + 'object_bounds': obj.bounds} +# import json +# json.dump(object_state_save_dict, open(output_dir/'{}/meta_ann2.json'.format(FLAGS.generate_idx), 'w')) +# np.save(output_dir/'{}/meta_ann2.npy'.format(FLAGS.generate_idx), object_state_save_dict) +# renderer.save_state(output_dir/'{}/image2.blend'.format(FLAGS.generate_idx)) + + +# save json +# local_ann = {'image0':"{}/image0.png".format(FLAGS.generate_idx), 'caption0':caption_1, +# 'image1':"{}/image1.png".format(FLAGS.generate_idx), 'caption1':caption_2, +# 'ann_path':"{}/ann.json".format(FLAGS.generate_idx), +# 'obj_num':num_objects+1} +# json.dump(local_ann, open("{}/{}/ann.json".format(str(output_dir), FLAGS.generate_idx), 'w')) + +# import pdb; pdb.set_trace() +# if not os.path.exists("{}/global_ann.json".format(str(output_dir))): +# json.dump([], open("{}/global_ann.json".format(str(output_dir)), 'w')) +# with open("{}/global_ann.json".format(str(output_dir)), 'r') as f: +# old_data = json.load(f) +# old_data.append(local_ann) +# with open("{}/global_ann.json".format(str(output_dir)), "w") as f: +# json.dump(old_data, f) + +local_ann = [{ + 'input': dataset_dir(DATASET_TYPE) + "{}/image0.png".format(FLAGS.generate_idx), + 'output': dataset_dir(DATASET_TYPE) + "{}/image1.png".format(FLAGS.generate_idx), + 'instruction': caption_2, + }, + { + 'input': dataset_dir(DATASET_TYPE) + "{}/image1.png".format(FLAGS.generate_idx), + 'output': dataset_dir(DATASET_TYPE) + "{}/image0.png".format(FLAGS.generate_idx), + 'instruction': caption_1, + } +] +save_scene_instruction(f"{output_dir}/eq_kubric_{DATASET_TYPE}.json", local_ann, DATASET_TYPE, FLAGS.generate_idx) + +kb.done() diff --git a/example.jpg b/example.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dafd76cfc3e1c7300a148b17e30298358719267d --- /dev/null +++ b/example.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f36b92e282ef1ea4258cadae2453e5073572bf1f3068c529dc968da2cccd1a +size 15754 diff --git a/example_output.jpg b/example_output.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a373ce154724b607f48d63949879ce500e9ee639 --- /dev/null +++ b/example_output.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c174403608a480e82284f4fe8cff2112260e5cd7e2f08324daeeb8e900cbe69 +size 15699 diff --git a/stable_diffusion/assets/a-painting-of-a-fire.png b/stable_diffusion/assets/a-painting-of-a-fire.png new file mode 100644 index 0000000000000000000000000000000000000000..5df054882969657425ae34d9277a4c663867d8e5 --- /dev/null +++ b/stable_diffusion/assets/a-painting-of-a-fire.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75723177e8435a568baefd9c910b812a830b12b5d994d23187b97c8e872fdee +size 666734 diff --git a/stable_diffusion/assets/a-photograph-of-a-fire.png b/stable_diffusion/assets/a-photograph-of-a-fire.png new file mode 100644 index 0000000000000000000000000000000000000000..de11ead0831bb8c610236bd7308a203f9b76f910 --- /dev/null +++ b/stable_diffusion/assets/a-photograph-of-a-fire.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bab36cd3f762cf7913b585a15309d72e5cf884da17219551400fd4abf03fd6a +size 610752 diff --git a/stable_diffusion/assets/a-shirt-with-a-fire-printed-on-it.png b/stable_diffusion/assets/a-shirt-with-a-fire-printed-on-it.png new file mode 100644 index 0000000000000000000000000000000000000000..33c5970b51ed9236e3ccf6be6af080f8d9622277 --- /dev/null +++ b/stable_diffusion/assets/a-shirt-with-a-fire-printed-on-it.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34edb946f340bf1c0ff2549e527b79d17221653bb4853f499c2096867021c9f8 +size 623587 diff --git a/stable_diffusion/assets/a-shirt-with-the-inscription-'fire'.png b/stable_diffusion/assets/a-shirt-with-the-inscription-'fire'.png new file mode 100644 index 0000000000000000000000000000000000000000..7de90a7b9edb89135540cee64e265e46efcf7ce0 --- /dev/null +++ b/stable_diffusion/assets/a-shirt-with-the-inscription-'fire'.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e2467c508c87c83bf4665e0b35d65ce597d058153e302f35b7fe65a849a839 +size 560600 diff --git a/stable_diffusion/assets/a-watercolor-painting-of-a-fire.png b/stable_diffusion/assets/a-watercolor-painting-of-a-fire.png new file mode 100644 index 0000000000000000000000000000000000000000..5768deb86790da0f56797b89233a36a7b8f90e9c --- /dev/null +++ b/stable_diffusion/assets/a-watercolor-painting-of-a-fire.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e4edf4ddfe7f9eaa74b61f923e804335cd10dfe6550ee72b908f90618de1ad +size 722120 diff --git a/stable_diffusion/assets/birdhouse.png b/stable_diffusion/assets/birdhouse.png new file mode 100644 index 0000000000000000000000000000000000000000..5239b1d8df7427b0a9594e046e2b54ac72ee72ee --- /dev/null +++ b/stable_diffusion/assets/birdhouse.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b741598653c2964a7cc1610d121db3f94a069c02ab8135589b0aa77855f053 +size 774949 diff --git a/stable_diffusion/assets/fire.png b/stable_diffusion/assets/fire.png new file mode 100644 index 0000000000000000000000000000000000000000..f626e127e2122a865d88cb511b980b5aa27104cf --- /dev/null +++ b/stable_diffusion/assets/fire.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16fac5dc01921f3838d2ec9959d64941cab29ab408909b2c3585c1bdc85c752 +size 626415 diff --git a/stable_diffusion/assets/inpainting.png b/stable_diffusion/assets/inpainting.png new file mode 100644 index 0000000000000000000000000000000000000000..693c8f3000bcb857bef0e424c5697881693481d9 --- /dev/null +++ b/stable_diffusion/assets/inpainting.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eecc2b72319ac95de5a0f1524b6a1c087e73d3c97183b642f7c78c972ea1205 +size 319244 diff --git a/stable_diffusion/assets/modelfigure.png b/stable_diffusion/assets/modelfigure.png new file mode 100644 index 0000000000000000000000000000000000000000..4d5097dc47f8abf8d2551748604815e8fd75d8a9 --- /dev/null +++ b/stable_diffusion/assets/modelfigure.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59d205fae97f2e32edcc99b960401d4655094f7fb35fefc236c13e99c5e5a3d +size 73775 diff --git a/stable_diffusion/assets/rdm-preview.jpg b/stable_diffusion/assets/rdm-preview.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a488be7fcc13ed07b2b34bc3fbce4bd260eef1d5 --- /dev/null +++ b/stable_diffusion/assets/rdm-preview.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29d3eb98a39f91559a6831e970573a6acc02b499382d28d7ab1f7bb48b2c680 +size 326537 diff --git a/stable_diffusion/assets/reconstruction1.png b/stable_diffusion/assets/reconstruction1.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3df09a9fe08303a29fbfc54686837cd6d57b27 --- /dev/null +++ b/stable_diffusion/assets/reconstruction1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c76a8d687565726afe12b0e244ca2ef4194c4ec0bb35b7a1d5d6a5c74302152 +size 806594 diff --git a/stable_diffusion/assets/reconstruction2.png b/stable_diffusion/assets/reconstruction2.png new file mode 100644 index 0000000000000000000000000000000000000000..04c79c654d29492e5d39869b2f18f3804d751c6d --- /dev/null +++ b/stable_diffusion/assets/reconstruction2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473aa4f2adbde734c83fe77955e07c49025cf98d1d74fa1481e4ca1eeb490e29 +size 980874 diff --git a/stable_diffusion/assets/results.gif.REMOVED.git-id b/stable_diffusion/assets/results.gif.REMOVED.git-id new file mode 100644 index 0000000000000000000000000000000000000000..e88786e57a6ed704f7068cfa04b61bc5cfc63732 --- /dev/null +++ b/stable_diffusion/assets/results.gif.REMOVED.git-id @@ -0,0 +1 @@ +82b6590e670a32196093cc6333ea19e6547d07de \ No newline at end of file diff --git a/stable_diffusion/assets/rick.jpeg b/stable_diffusion/assets/rick.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..8d57d7b0d2082195d2d736424f5aeb12a2b53601 --- /dev/null +++ b/stable_diffusion/assets/rick.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eaa54f68ca3eaf97ab64292c3cd86353049cf1973254d553fcaf85cf84015e0 +size 232064 diff --git a/stable_diffusion/assets/stable-samples/img2img/mountains-1.png b/stable_diffusion/assets/stable-samples/img2img/mountains-1.png new file mode 100644 index 0000000000000000000000000000000000000000..26af34988eaf2da789a160d2ad681d0f5335df7e --- /dev/null +++ b/stable_diffusion/assets/stable-samples/img2img/mountains-1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db02e9545f40d083f5202c4ce7ab948273a5399e5032cc0f7ed037b7e3fcfa93 +size 625121 diff --git a/stable_diffusion/assets/stable-samples/img2img/mountains-2.png b/stable_diffusion/assets/stable-samples/img2img/mountains-2.png new file mode 100644 index 0000000000000000000000000000000000000000..86d95fbfd4ba13424273c3c8e8386e2def47763e --- /dev/null +++ b/stable_diffusion/assets/stable-samples/img2img/mountains-2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffcfe5095f1bd7e2cc244f8ea55a03b45610942699d6b52aefbdce57054d1642 +size 658286 diff --git a/stable_diffusion/assets/stable-samples/img2img/mountains-3.png b/stable_diffusion/assets/stable-samples/img2img/mountains-3.png new file mode 100644 index 0000000000000000000000000000000000000000..023f4338b8e57af5c3b624f5fdaf3997fab6e0f0 --- /dev/null +++ b/stable_diffusion/assets/stable-samples/img2img/mountains-3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b08c5eb8790bb06369c56635b57115e97b032af657b53a571e16c4438c7261a +size 656393 diff --git a/stable_diffusion/assets/stable-samples/img2img/sketch-mountains-input.jpg b/stable_diffusion/assets/stable-samples/img2img/sketch-mountains-input.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72c1e5978276b0cad45a2386417b858dda2c053a --- /dev/null +++ b/stable_diffusion/assets/stable-samples/img2img/sketch-mountains-input.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcce9c9c090fd6ea797ed2bfb7dd21b38241a435170461f59b7834fb3af6bf3a +size 178529 diff --git a/stable_diffusion/assets/stable-samples/img2img/upscaling-in.png.REMOVED.git-id b/stable_diffusion/assets/stable-samples/img2img/upscaling-in.png.REMOVED.git-id new file mode 100644 index 0000000000000000000000000000000000000000..92769a564f95353f356723ed9ec252a92f3ab762 --- /dev/null +++ b/stable_diffusion/assets/stable-samples/img2img/upscaling-in.png.REMOVED.git-id @@ -0,0 +1 @@ +501c31c21751664957e69ce52cad1818b6d2f4ce \ No newline at end of file diff --git a/stable_diffusion/assets/stable-samples/img2img/upscaling-out.png.REMOVED.git-id b/stable_diffusion/assets/stable-samples/img2img/upscaling-out.png.REMOVED.git-id new file mode 100644 index 0000000000000000000000000000000000000000..a2d084ba587dd4e74789f80e1c298d58f841314a --- /dev/null +++ b/stable_diffusion/assets/stable-samples/img2img/upscaling-out.png.REMOVED.git-id @@ -0,0 +1 @@ +1c4bb25a779f34d86b2d90e584ac67af91bb1303 \ No newline at end of file diff --git a/stable_diffusion/assets/stable-samples/txt2img/000002025.png b/stable_diffusion/assets/stable-samples/txt2img/000002025.png new file mode 100644 index 0000000000000000000000000000000000000000..f7ec8ad81b9fbff5853626f8499155c3be5a48f0 --- /dev/null +++ b/stable_diffusion/assets/stable-samples/txt2img/000002025.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427e10286097e0334a7721d9d61aed74a7386fcca97a3d49d8a41fbe93ecbb72 +size 967634 diff --git a/stable_diffusion/assets/stable-samples/txt2img/000002035.png b/stable_diffusion/assets/stable-samples/txt2img/000002035.png new file mode 100644 index 0000000000000000000000000000000000000000..326e73e18f0639b74c2db1d4c3acaedee08a9eab --- /dev/null +++ b/stable_diffusion/assets/stable-samples/txt2img/000002035.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a72b7473d8c95252df70e84e9ed214e6c61ceacf07864783d9d08a2abd9bc6a +size 995616 diff --git a/stable_diffusion/assets/stable-samples/txt2img/merged-0005.png.REMOVED.git-id b/stable_diffusion/assets/stable-samples/txt2img/merged-0005.png.REMOVED.git-id new file mode 100644 index 0000000000000000000000000000000000000000..077f39776bc8c196e882a57cacc6e7b62c884a03 --- /dev/null +++ b/stable_diffusion/assets/stable-samples/txt2img/merged-0005.png.REMOVED.git-id @@ -0,0 +1 @@ +ca0a1af206555f0f208a1ab879e95efedc1b1c5b \ No newline at end of file diff --git a/stable_diffusion/assets/the-earth-is-on-fire,-oil-on-canvas.png b/stable_diffusion/assets/the-earth-is-on-fire,-oil-on-canvas.png new file mode 100644 index 0000000000000000000000000000000000000000..e1e958aabaf7eb6ec6622c6326841794b61f3a75 --- /dev/null +++ b/stable_diffusion/assets/the-earth-is-on-fire,-oil-on-canvas.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f67469d4fa49964c13e2a226bf50363d3f4525e340031932c7f24a29477217 +size 678446 diff --git a/stable_diffusion/assets/txt2img-convsample.png b/stable_diffusion/assets/txt2img-convsample.png new file mode 100644 index 0000000000000000000000000000000000000000..5353b68dfe8f6f7d7a71160a69c67572317094aa --- /dev/null +++ b/stable_diffusion/assets/txt2img-convsample.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf914aa2e2f4c2ea3bdf0b2a210d2dc018f5bfabeb93703194bff2b842bb5afb +size 309500 diff --git a/stable_diffusion/assets/v1-variants-scores.jpg b/stable_diffusion/assets/v1-variants-scores.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c2f45f24d0ab9cd65ccf968fc278170b9778483 --- /dev/null +++ b/stable_diffusion/assets/v1-variants-scores.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c0ea9ccfdc683d36c7b35f2e2e37ba4444033a07ea20b50b27c5615e60eb070 +size 76252 diff --git a/stable_diffusion/configs/autoencoder/autoencoder_kl_64x64x3.yaml b/stable_diffusion/configs/autoencoder/autoencoder_kl_64x64x3.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5e3db5c4e28bcb58be4ee0872511059f5cc965ad --- /dev/null +++ b/stable_diffusion/configs/autoencoder/autoencoder_kl_64x64x3.yaml @@ -0,0 +1,54 @@ +model: + base_learning_rate: 4.5e-6 + target: ldm.models.autoencoder.AutoencoderKL + params: + monitor: "val/rec_loss" + embed_dim: 3 + lossconfig: + target: ldm.modules.losses.LPIPSWithDiscriminator + params: + disc_start: 50001 + kl_weight: 0.000001 + disc_weight: 0.5 + + ddconfig: + double_z: True + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: [ 1,2,4 ] # num_down = len(ch_mult)-1 + num_res_blocks: 2 + attn_resolutions: [ ] + dropout: 0.0 + + +data: + target: main.DataModuleFromConfig + params: + batch_size: 12 + wrap: True + train: + target: ldm.data.imagenet.ImageNetSRTrain + params: + size: 256 + degradation: pil_nearest + validation: + target: ldm.data.imagenet.ImageNetSRValidation + params: + size: 256 + degradation: pil_nearest + +lightning: + callbacks: + image_logger: + target: main.ImageLogger + params: + batch_frequency: 1000 + max_images: 8 + increase_log_steps: True + + trainer: + benchmark: True + accumulate_grad_batches: 2 diff --git a/stable_diffusion/configs/autoencoder/autoencoder_kl_8x8x64.yaml b/stable_diffusion/configs/autoencoder/autoencoder_kl_8x8x64.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5ccd09d38e4926706fb1d287f4f65619627e0eb7 --- /dev/null +++ b/stable_diffusion/configs/autoencoder/autoencoder_kl_8x8x64.yaml @@ -0,0 +1,53 @@ +model: + base_learning_rate: 4.5e-6 + target: ldm.models.autoencoder.AutoencoderKL + params: + monitor: "val/rec_loss" + embed_dim: 64 + lossconfig: + target: ldm.modules.losses.LPIPSWithDiscriminator + params: + disc_start: 50001 + kl_weight: 0.000001 + disc_weight: 0.5 + + ddconfig: + double_z: True + z_channels: 64 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: [ 1,1,2,2,4,4] # num_down = len(ch_mult)-1 + num_res_blocks: 2 + attn_resolutions: [16,8] + dropout: 0.0 + +data: + target: main.DataModuleFromConfig + params: + batch_size: 12 + wrap: True + train: + target: ldm.data.imagenet.ImageNetSRTrain + params: + size: 256 + degradation: pil_nearest + validation: + target: ldm.data.imagenet.ImageNetSRValidation + params: + size: 256 + degradation: pil_nearest + +lightning: + callbacks: + image_logger: + target: main.ImageLogger + params: + batch_frequency: 1000 + max_images: 8 + increase_log_steps: True + + trainer: + benchmark: True + accumulate_grad_batches: 2 diff --git a/stable_diffusion/configs/latent-diffusion/celebahq-ldm-vq-4.yaml b/stable_diffusion/configs/latent-diffusion/celebahq-ldm-vq-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..89b3df4fe1822295d509dca2237ea891cdd964bf --- /dev/null +++ b/stable_diffusion/configs/latent-diffusion/celebahq-ldm-vq-4.yaml @@ -0,0 +1,86 @@ +model: + base_learning_rate: 2.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + image_size: 64 + channels: 3 + monitor: val/loss_simple_ema + + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 3 + out_channels: 3 + model_channels: 224 + attention_resolutions: + # note: this isn\t actually the resolution but + # the downsampling factor, i.e. this corresnponds to + # attention on spatial resolution 8,16,32, as the + # spatial reolution of the latents is 64 for f4 + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 4 + num_head_channels: 32 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + ckpt_path: models/first_stage_models/vq-f4/model.ckpt + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: __is_unconditional__ +data: + target: main.DataModuleFromConfig + params: + batch_size: 48 + num_workers: 5 + wrap: false + train: + target: taming.data.faceshq.CelebAHQTrain + params: + size: 256 + validation: + target: taming.data.faceshq.CelebAHQValidation + params: + size: 256 + + +lightning: + callbacks: + image_logger: + target: main.ImageLogger + params: + batch_frequency: 5000 + max_images: 8 + increase_log_steps: False + + trainer: + benchmark: True \ No newline at end of file diff --git a/stable_diffusion/configs/latent-diffusion/cin-ldm-vq-f8.yaml b/stable_diffusion/configs/latent-diffusion/cin-ldm-vq-f8.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b8cd9e2ef5d26870bdbb26bf04a9b47aaa78feeb --- /dev/null +++ b/stable_diffusion/configs/latent-diffusion/cin-ldm-vq-f8.yaml @@ -0,0 +1,98 @@ +model: + base_learning_rate: 1.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + cond_stage_key: class_label + image_size: 32 + channels: 4 + cond_stage_trainable: true + conditioning_key: crossattn + monitor: val/loss_simple_ema + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 32 + in_channels: 4 + out_channels: 4 + model_channels: 256 + attention_resolutions: + #note: this isn\t actually the resolution but + # the downsampling factor, i.e. this corresnponds to + # attention on spatial resolution 8,16,32, as the + # spatial reolution of the latents is 32 for f8 + - 4 + - 2 + - 1 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 4 + num_head_channels: 32 + use_spatial_transformer: true + transformer_depth: 1 + context_dim: 512 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 4 + n_embed: 16384 + ckpt_path: configs/first_stage_models/vq-f8/model.yaml + ddconfig: + double_z: false + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: + - 32 + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: + target: ldm.modules.encoders.modules.ClassEmbedder + params: + embed_dim: 512 + key: class_label +data: + target: main.DataModuleFromConfig + params: + batch_size: 64 + num_workers: 12 + wrap: false + train: + target: ldm.data.imagenet.ImageNetTrain + params: + config: + size: 256 + validation: + target: ldm.data.imagenet.ImageNetValidation + params: + config: + size: 256 + + +lightning: + callbacks: + image_logger: + target: main.ImageLogger + params: + batch_frequency: 5000 + max_images: 8 + increase_log_steps: False + + trainer: + benchmark: True \ No newline at end of file diff --git a/stable_diffusion/configs/latent-diffusion/cin256-v2.yaml b/stable_diffusion/configs/latent-diffusion/cin256-v2.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b7c1aa240c740d1e5b7693f9543f996d727a302d --- /dev/null +++ b/stable_diffusion/configs/latent-diffusion/cin256-v2.yaml @@ -0,0 +1,68 @@ +model: + base_learning_rate: 0.0001 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + cond_stage_key: class_label + image_size: 64 + channels: 3 + cond_stage_trainable: true + conditioning_key: crossattn + monitor: val/loss + use_ema: False + + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 3 + out_channels: 3 + model_channels: 192 + attention_resolutions: + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 5 + num_heads: 1 + use_spatial_transformer: true + transformer_depth: 1 + context_dim: 512 + + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + + cond_stage_config: + target: ldm.modules.encoders.modules.ClassEmbedder + params: + n_classes: 1001 + embed_dim: 512 + key: class_label diff --git a/stable_diffusion/configs/latent-diffusion/ffhq-ldm-vq-4.yaml b/stable_diffusion/configs/latent-diffusion/ffhq-ldm-vq-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1899e30f77222142d7b33f45a6dcff086a31e174 --- /dev/null +++ b/stable_diffusion/configs/latent-diffusion/ffhq-ldm-vq-4.yaml @@ -0,0 +1,85 @@ +model: + base_learning_rate: 2.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + image_size: 64 + channels: 3 + monitor: val/loss_simple_ema + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 3 + out_channels: 3 + model_channels: 224 + attention_resolutions: + # note: this isn\t actually the resolution but + # the downsampling factor, i.e. this corresnponds to + # attention on spatial resolution 8,16,32, as the + # spatial reolution of the latents is 64 for f4 + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 4 + num_head_channels: 32 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + ckpt_path: configs/first_stage_models/vq-f4/model.yaml + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: __is_unconditional__ +data: + target: main.DataModuleFromConfig + params: + batch_size: 42 + num_workers: 5 + wrap: false + train: + target: taming.data.faceshq.FFHQTrain + params: + size: 256 + validation: + target: taming.data.faceshq.FFHQValidation + params: + size: 256 + + +lightning: + callbacks: + image_logger: + target: main.ImageLogger + params: + batch_frequency: 5000 + max_images: 8 + increase_log_steps: False + + trainer: + benchmark: True \ No newline at end of file diff --git a/stable_diffusion/configs/latent-diffusion/lsun_bedrooms-ldm-vq-4.yaml b/stable_diffusion/configs/latent-diffusion/lsun_bedrooms-ldm-vq-4.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c4ca66c16c00a0c3fd13ae1ad03635039161e7ad --- /dev/null +++ b/stable_diffusion/configs/latent-diffusion/lsun_bedrooms-ldm-vq-4.yaml @@ -0,0 +1,85 @@ +model: + base_learning_rate: 2.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + image_size: 64 + channels: 3 + monitor: val/loss_simple_ema + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 3 + out_channels: 3 + model_channels: 224 + attention_resolutions: + # note: this isn\t actually the resolution but + # the downsampling factor, i.e. this corresnponds to + # attention on spatial resolution 8,16,32, as the + # spatial reolution of the latents is 64 for f4 + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 4 + num_head_channels: 32 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + ckpt_path: configs/first_stage_models/vq-f4/model.yaml + embed_dim: 3 + n_embed: 8192 + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: __is_unconditional__ +data: + target: main.DataModuleFromConfig + params: + batch_size: 48 + num_workers: 5 + wrap: false + train: + target: ldm.data.lsun.LSUNBedroomsTrain + params: + size: 256 + validation: + target: ldm.data.lsun.LSUNBedroomsValidation + params: + size: 256 + + +lightning: + callbacks: + image_logger: + target: main.ImageLogger + params: + batch_frequency: 5000 + max_images: 8 + increase_log_steps: False + + trainer: + benchmark: True \ No newline at end of file diff --git a/stable_diffusion/configs/latent-diffusion/lsun_churches-ldm-kl-8.yaml b/stable_diffusion/configs/latent-diffusion/lsun_churches-ldm-kl-8.yaml new file mode 100644 index 0000000000000000000000000000000000000000..18dc8c2d9cfb925b0f45e5b89186d71e3274b086 --- /dev/null +++ b/stable_diffusion/configs/latent-diffusion/lsun_churches-ldm-kl-8.yaml @@ -0,0 +1,91 @@ +model: + base_learning_rate: 5.0e-5 # set to target_lr by starting main.py with '--scale_lr False' + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0155 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + loss_type: l1 + first_stage_key: "image" + cond_stage_key: "image" + image_size: 32 + channels: 4 + cond_stage_trainable: False + concat_mode: False + scale_by_std: True + monitor: 'val/loss_simple_ema' + + scheduler_config: # 10000 warmup steps + target: ldm.lr_scheduler.LambdaLinearScheduler + params: + warm_up_steps: [10000] + cycle_lengths: [10000000000000] + f_start: [1.e-6] + f_max: [1.] + f_min: [ 1.] + + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 32 + in_channels: 4 + out_channels: 4 + model_channels: 192 + attention_resolutions: [ 1, 2, 4, 8 ] # 32, 16, 8, 4 + num_res_blocks: 2 + channel_mult: [ 1,2,2,4,4 ] # 32, 16, 8, 4, 2 + num_heads: 8 + use_scale_shift_norm: True + resblock_updown: True + + first_stage_config: + target: ldm.models.autoencoder.AutoencoderKL + params: + embed_dim: 4 + monitor: "val/rec_loss" + ckpt_path: "models/first_stage_models/kl-f8/model.ckpt" + ddconfig: + double_z: True + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: [ 1,2,4,4 ] # num_down = len(ch_mult)-1 + num_res_blocks: 2 + attn_resolutions: [ ] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + + cond_stage_config: "__is_unconditional__" + +data: + target: main.DataModuleFromConfig + params: + batch_size: 96 + num_workers: 5 + wrap: False + train: + target: ldm.data.lsun.LSUNChurchesTrain + params: + size: 256 + validation: + target: ldm.data.lsun.LSUNChurchesValidation + params: + size: 256 + +lightning: + callbacks: + image_logger: + target: main.ImageLogger + params: + batch_frequency: 5000 + max_images: 8 + increase_log_steps: False + + + trainer: + benchmark: True \ No newline at end of file diff --git a/stable_diffusion/configs/latent-diffusion/txt2img-1p4B-eval.yaml b/stable_diffusion/configs/latent-diffusion/txt2img-1p4B-eval.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8e331cbfdff7ece1ef9008754e97f60f68585a07 --- /dev/null +++ b/stable_diffusion/configs/latent-diffusion/txt2img-1p4B-eval.yaml @@ -0,0 +1,71 @@ +model: + base_learning_rate: 5.0e-05 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.00085 + linear_end: 0.012 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + cond_stage_key: caption + image_size: 32 + channels: 4 + cond_stage_trainable: true + conditioning_key: crossattn + monitor: val/loss_simple_ema + scale_factor: 0.18215 + use_ema: False + + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 32 + in_channels: 4 + out_channels: 4 + model_channels: 320 + attention_resolutions: + - 4 + - 2 + - 1 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 4 + - 4 + num_heads: 8 + use_spatial_transformer: true + transformer_depth: 1 + context_dim: 1280 + use_checkpoint: true + legacy: False + + first_stage_config: + target: ldm.models.autoencoder.AutoencoderKL + params: + embed_dim: 4 + monitor: val/rec_loss + ddconfig: + double_z: true + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + + cond_stage_config: + target: ldm.modules.encoders.modules.BERTEmbedder + params: + n_embed: 1280 + n_layer: 32 diff --git a/stable_diffusion/configs/retrieval-augmented-diffusion/768x768.yaml b/stable_diffusion/configs/retrieval-augmented-diffusion/768x768.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b51b1d8373ca7a259320deaffc154f89ad2b8cf4 --- /dev/null +++ b/stable_diffusion/configs/retrieval-augmented-diffusion/768x768.yaml @@ -0,0 +1,68 @@ +model: + base_learning_rate: 0.0001 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.015 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: jpg + cond_stage_key: nix + image_size: 48 + channels: 16 + cond_stage_trainable: false + conditioning_key: crossattn + monitor: val/loss_simple_ema + scale_by_std: false + scale_factor: 0.22765929 + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 48 + in_channels: 16 + out_channels: 16 + model_channels: 448 + attention_resolutions: + - 4 + - 2 + - 1 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 4 + use_scale_shift_norm: false + resblock_updown: false + num_head_channels: 32 + use_spatial_transformer: true + transformer_depth: 1 + context_dim: 768 + use_checkpoint: true + first_stage_config: + target: ldm.models.autoencoder.AutoencoderKL + params: + monitor: val/rec_loss + embed_dim: 16 + ddconfig: + double_z: true + z_channels: 16 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 1 + - 2 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: + - 16 + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: + target: torch.nn.Identity \ No newline at end of file diff --git a/stable_diffusion/configs/stable-diffusion/v1-inference.yaml b/stable_diffusion/configs/stable-diffusion/v1-inference.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d4effe569e897369918625f9d8be5603a0e6a0d6 --- /dev/null +++ b/stable_diffusion/configs/stable-diffusion/v1-inference.yaml @@ -0,0 +1,70 @@ +model: + base_learning_rate: 1.0e-04 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.00085 + linear_end: 0.0120 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: "jpg" + cond_stage_key: "txt" + image_size: 64 + channels: 4 + cond_stage_trainable: false # Note: different from the one we trained before + conditioning_key: crossattn + monitor: val/loss_simple_ema + scale_factor: 0.18215 + use_ema: False + + scheduler_config: # 10000 warmup steps + target: ldm.lr_scheduler.LambdaLinearScheduler + params: + warm_up_steps: [ 10000 ] + cycle_lengths: [ 10000000000000 ] # incredibly large number to prevent corner cases + f_start: [ 1.e-6 ] + f_max: [ 1. ] + f_min: [ 1. ] + + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 32 # unused + in_channels: 4 + out_channels: 4 + model_channels: 320 + attention_resolutions: [ 4, 2, 1 ] + num_res_blocks: 2 + channel_mult: [ 1, 2, 4, 4 ] + num_heads: 8 + use_spatial_transformer: True + transformer_depth: 1 + context_dim: 768 + use_checkpoint: True + legacy: False + + first_stage_config: + target: ldm.models.autoencoder.AutoencoderKL + params: + embed_dim: 4 + monitor: val/rec_loss + ddconfig: + double_z: true + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + + cond_stage_config: + target: ldm.modules.encoders.modules.FrozenCLIPEmbedder diff --git a/stable_diffusion/data/DejaVuSans.ttf b/stable_diffusion/data/DejaVuSans.ttf new file mode 100644 index 0000000000000000000000000000000000000000..356575d14731ad077bde1fb0aac44f88bb51f5c4 --- /dev/null +++ b/stable_diffusion/data/DejaVuSans.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da195a74c55bef988d0d48f9508bd5d849425c1770dba5d7bfc6ce9ed848954 +size 757076 diff --git a/stable_diffusion/data/imagenet_clsidx_to_label.txt b/stable_diffusion/data/imagenet_clsidx_to_label.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2fe435526be7e0dd6675885c6c74b2f9276459b --- /dev/null +++ b/stable_diffusion/data/imagenet_clsidx_to_label.txt @@ -0,0 +1,1000 @@ + 0: 'tench, Tinca tinca', + 1: 'goldfish, Carassius auratus', + 2: 'great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias', + 3: 'tiger shark, Galeocerdo cuvieri', + 4: 'hammerhead, hammerhead shark', + 5: 'electric ray, crampfish, numbfish, torpedo', + 6: 'stingray', + 7: 'cock', + 8: 'hen', + 9: 'ostrich, Struthio camelus', + 10: 'brambling, Fringilla montifringilla', + 11: 'goldfinch, Carduelis carduelis', + 12: 'house finch, linnet, Carpodacus mexicanus', + 13: 'junco, snowbird', + 14: 'indigo bunting, indigo finch, indigo bird, Passerina cyanea', + 15: 'robin, American robin, Turdus migratorius', + 16: 'bulbul', + 17: 'jay', + 18: 'magpie', + 19: 'chickadee', + 20: 'water ouzel, dipper', + 21: 'kite', + 22: 'bald eagle, American eagle, Haliaeetus leucocephalus', + 23: 'vulture', + 24: 'great grey owl, great gray owl, Strix nebulosa', + 25: 'European fire salamander, Salamandra salamandra', + 26: 'common newt, Triturus vulgaris', + 27: 'eft', + 28: 'spotted salamander, Ambystoma maculatum', + 29: 'axolotl, mud puppy, Ambystoma mexicanum', + 30: 'bullfrog, Rana catesbeiana', + 31: 'tree frog, tree-frog', + 32: 'tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui', + 33: 'loggerhead, loggerhead turtle, Caretta caretta', + 34: 'leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea', + 35: 'mud turtle', + 36: 'terrapin', + 37: 'box turtle, box tortoise', + 38: 'banded gecko', + 39: 'common iguana, iguana, Iguana iguana', + 40: 'American chameleon, anole, Anolis carolinensis', + 41: 'whiptail, whiptail lizard', + 42: 'agama', + 43: 'frilled lizard, Chlamydosaurus kingi', + 44: 'alligator lizard', + 45: 'Gila monster, Heloderma suspectum', + 46: 'green lizard, Lacerta viridis', + 47: 'African chameleon, Chamaeleo chamaeleon', + 48: 'Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis', + 49: 'African crocodile, Nile crocodile, Crocodylus niloticus', + 50: 'American alligator, Alligator mississipiensis', + 51: 'triceratops', + 52: 'thunder snake, worm snake, Carphophis amoenus', + 53: 'ringneck snake, ring-necked snake, ring snake', + 54: 'hognose snake, puff adder, sand viper', + 55: 'green snake, grass snake', + 56: 'king snake, kingsnake', + 57: 'garter snake, grass snake', + 58: 'water snake', + 59: 'vine snake', + 60: 'night snake, Hypsiglena torquata', + 61: 'boa constrictor, Constrictor constrictor', + 62: 'rock python, rock snake, Python sebae', + 63: 'Indian cobra, Naja naja', + 64: 'green mamba', + 65: 'sea snake', + 66: 'horned viper, cerastes, sand viper, horned asp, Cerastes cornutus', + 67: 'diamondback, diamondback rattlesnake, Crotalus adamanteus', + 68: 'sidewinder, horned rattlesnake, Crotalus cerastes', + 69: 'trilobite', + 70: 'harvestman, daddy longlegs, Phalangium opilio', + 71: 'scorpion', + 72: 'black and gold garden spider, Argiope aurantia', + 73: 'barn spider, Araneus cavaticus', + 74: 'garden spider, Aranea diademata', + 75: 'black widow, Latrodectus mactans', + 76: 'tarantula', + 77: 'wolf spider, hunting spider', + 78: 'tick', + 79: 'centipede', + 80: 'black grouse', + 81: 'ptarmigan', + 82: 'ruffed grouse, partridge, Bonasa umbellus', + 83: 'prairie chicken, prairie grouse, prairie fowl', + 84: 'peacock', + 85: 'quail', + 86: 'partridge', + 87: 'African grey, African gray, Psittacus erithacus', + 88: 'macaw', + 89: 'sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita', + 90: 'lorikeet', + 91: 'coucal', + 92: 'bee eater', + 93: 'hornbill', + 94: 'hummingbird', + 95: 'jacamar', + 96: 'toucan', + 97: 'drake', + 98: 'red-breasted merganser, Mergus serrator', + 99: 'goose', + 100: 'black swan, Cygnus atratus', + 101: 'tusker', + 102: 'echidna, spiny anteater, anteater', + 103: 'platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus', + 104: 'wallaby, brush kangaroo', + 105: 'koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus', + 106: 'wombat', + 107: 'jellyfish', + 108: 'sea anemone, anemone', + 109: 'brain coral', + 110: 'flatworm, platyhelminth', + 111: 'nematode, nematode worm, roundworm', + 112: 'conch', + 113: 'snail', + 114: 'slug', + 115: 'sea slug, nudibranch', + 116: 'chiton, coat-of-mail shell, sea cradle, polyplacophore', + 117: 'chambered nautilus, pearly nautilus, nautilus', + 118: 'Dungeness crab, Cancer magister', + 119: 'rock crab, Cancer irroratus', + 120: 'fiddler crab', + 121: 'king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica', + 122: 'American lobster, Northern lobster, Maine lobster, Homarus americanus', + 123: 'spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish', + 124: 'crayfish, crawfish, crawdad, crawdaddy', + 125: 'hermit crab', + 126: 'isopod', + 127: 'white stork, Ciconia ciconia', + 128: 'black stork, Ciconia nigra', + 129: 'spoonbill', + 130: 'flamingo', + 131: 'little blue heron, Egretta caerulea', + 132: 'American egret, great white heron, Egretta albus', + 133: 'bittern', + 134: 'crane', + 135: 'limpkin, Aramus pictus', + 136: 'European gallinule, Porphyrio porphyrio', + 137: 'American coot, marsh hen, mud hen, water hen, Fulica americana', + 138: 'bustard', + 139: 'ruddy turnstone, Arenaria interpres', + 140: 'red-backed sandpiper, dunlin, Erolia alpina', + 141: 'redshank, Tringa totanus', + 142: 'dowitcher', + 143: 'oystercatcher, oyster catcher', + 144: 'pelican', + 145: 'king penguin, Aptenodytes patagonica', + 146: 'albatross, mollymawk', + 147: 'grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus', + 148: 'killer whale, killer, orca, grampus, sea wolf, Orcinus orca', + 149: 'dugong, Dugong dugon', + 150: 'sea lion', + 151: 'Chihuahua', + 152: 'Japanese spaniel', + 153: 'Maltese dog, Maltese terrier, Maltese', + 154: 'Pekinese, Pekingese, Peke', + 155: 'Shih-Tzu', + 156: 'Blenheim spaniel', + 157: 'papillon', + 158: 'toy terrier', + 159: 'Rhodesian ridgeback', + 160: 'Afghan hound, Afghan', + 161: 'basset, basset hound', + 162: 'beagle', + 163: 'bloodhound, sleuthhound', + 164: 'bluetick', + 165: 'black-and-tan coonhound', + 166: 'Walker hound, Walker foxhound', + 167: 'English foxhound', + 168: 'redbone', + 169: 'borzoi, Russian wolfhound', + 170: 'Irish wolfhound', + 171: 'Italian greyhound', + 172: 'whippet', + 173: 'Ibizan hound, Ibizan Podenco', + 174: 'Norwegian elkhound, elkhound', + 175: 'otterhound, otter hound', + 176: 'Saluki, gazelle hound', + 177: 'Scottish deerhound, deerhound', + 178: 'Weimaraner', + 179: 'Staffordshire bullterrier, Staffordshire bull terrier', + 180: 'American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier', + 181: 'Bedlington terrier', + 182: 'Border terrier', + 183: 'Kerry blue terrier', + 184: 'Irish terrier', + 185: 'Norfolk terrier', + 186: 'Norwich terrier', + 187: 'Yorkshire terrier', + 188: 'wire-haired fox terrier', + 189: 'Lakeland terrier', + 190: 'Sealyham terrier, Sealyham', + 191: 'Airedale, Airedale terrier', + 192: 'cairn, cairn terrier', + 193: 'Australian terrier', + 194: 'Dandie Dinmont, Dandie Dinmont terrier', + 195: 'Boston bull, Boston terrier', + 196: 'miniature schnauzer', + 197: 'giant schnauzer', + 198: 'standard schnauzer', + 199: 'Scotch terrier, Scottish terrier, Scottie', + 200: 'Tibetan terrier, chrysanthemum dog', + 201: 'silky terrier, Sydney silky', + 202: 'soft-coated wheaten terrier', + 203: 'West Highland white terrier', + 204: 'Lhasa, Lhasa apso', + 205: 'flat-coated retriever', + 206: 'curly-coated retriever', + 207: 'golden retriever', + 208: 'Labrador retriever', + 209: 'Chesapeake Bay retriever', + 210: 'German short-haired pointer', + 211: 'vizsla, Hungarian pointer', + 212: 'English setter', + 213: 'Irish setter, red setter', + 214: 'Gordon setter', + 215: 'Brittany spaniel', + 216: 'clumber, clumber spaniel', + 217: 'English springer, English springer spaniel', + 218: 'Welsh springer spaniel', + 219: 'cocker spaniel, English cocker spaniel, cocker', + 220: 'Sussex spaniel', + 221: 'Irish water spaniel', + 222: 'kuvasz', + 223: 'schipperke', + 224: 'groenendael', + 225: 'malinois', + 226: 'briard', + 227: 'kelpie', + 228: 'komondor', + 229: 'Old English sheepdog, bobtail', + 230: 'Shetland sheepdog, Shetland sheep dog, Shetland', + 231: 'collie', + 232: 'Border collie', + 233: 'Bouvier des Flandres, Bouviers des Flandres', + 234: 'Rottweiler', + 235: 'German shepherd, German shepherd dog, German police dog, alsatian', + 236: 'Doberman, Doberman pinscher', + 237: 'miniature pinscher', + 238: 'Greater Swiss Mountain dog', + 239: 'Bernese mountain dog', + 240: 'Appenzeller', + 241: 'EntleBucher', + 242: 'boxer', + 243: 'bull mastiff', + 244: 'Tibetan mastiff', + 245: 'French bulldog', + 246: 'Great Dane', + 247: 'Saint Bernard, St Bernard', + 248: 'Eskimo dog, husky', + 249: 'malamute, malemute, Alaskan malamute', + 250: 'Siberian husky', + 251: 'dalmatian, coach dog, carriage dog', + 252: 'affenpinscher, monkey pinscher, monkey dog', + 253: 'basenji', + 254: 'pug, pug-dog', + 255: 'Leonberg', + 256: 'Newfoundland, Newfoundland dog', + 257: 'Great Pyrenees', + 258: 'Samoyed, Samoyede', + 259: 'Pomeranian', + 260: 'chow, chow chow', + 261: 'keeshond', + 262: 'Brabancon griffon', + 263: 'Pembroke, Pembroke Welsh corgi', + 264: 'Cardigan, Cardigan Welsh corgi', + 265: 'toy poodle', + 266: 'miniature poodle', + 267: 'standard poodle', + 268: 'Mexican hairless', + 269: 'timber wolf, grey wolf, gray wolf, Canis lupus', + 270: 'white wolf, Arctic wolf, Canis lupus tundrarum', + 271: 'red wolf, maned wolf, Canis rufus, Canis niger', + 272: 'coyote, prairie wolf, brush wolf, Canis latrans', + 273: 'dingo, warrigal, warragal, Canis dingo', + 274: 'dhole, Cuon alpinus', + 275: 'African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus', + 276: 'hyena, hyaena', + 277: 'red fox, Vulpes vulpes', + 278: 'kit fox, Vulpes macrotis', + 279: 'Arctic fox, white fox, Alopex lagopus', + 280: 'grey fox, gray fox, Urocyon cinereoargenteus', + 281: 'tabby, tabby cat', + 282: 'tiger cat', + 283: 'Persian cat', + 284: 'Siamese cat, Siamese', + 285: 'Egyptian cat', + 286: 'cougar, puma, catamount, mountain lion, painter, panther, Felis concolor', + 287: 'lynx, catamount', + 288: 'leopard, Panthera pardus', + 289: 'snow leopard, ounce, Panthera uncia', + 290: 'jaguar, panther, Panthera onca, Felis onca', + 291: 'lion, king of beasts, Panthera leo', + 292: 'tiger, Panthera tigris', + 293: 'cheetah, chetah, Acinonyx jubatus', + 294: 'brown bear, bruin, Ursus arctos', + 295: 'American black bear, black bear, Ursus americanus, Euarctos americanus', + 296: 'ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus', + 297: 'sloth bear, Melursus ursinus, Ursus ursinus', + 298: 'mongoose', + 299: 'meerkat, mierkat', + 300: 'tiger beetle', + 301: 'ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle', + 302: 'ground beetle, carabid beetle', + 303: 'long-horned beetle, longicorn, longicorn beetle', + 304: 'leaf beetle, chrysomelid', + 305: 'dung beetle', + 306: 'rhinoceros beetle', + 307: 'weevil', + 308: 'fly', + 309: 'bee', + 310: 'ant, emmet, pismire', + 311: 'grasshopper, hopper', + 312: 'cricket', + 313: 'walking stick, walkingstick, stick insect', + 314: 'cockroach, roach', + 315: 'mantis, mantid', + 316: 'cicada, cicala', + 317: 'leafhopper', + 318: 'lacewing, lacewing fly', + 319: "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk", + 320: 'damselfly', + 321: 'admiral', + 322: 'ringlet, ringlet butterfly', + 323: 'monarch, monarch butterfly, milkweed butterfly, Danaus plexippus', + 324: 'cabbage butterfly', + 325: 'sulphur butterfly, sulfur butterfly', + 326: 'lycaenid, lycaenid butterfly', + 327: 'starfish, sea star', + 328: 'sea urchin', + 329: 'sea cucumber, holothurian', + 330: 'wood rabbit, cottontail, cottontail rabbit', + 331: 'hare', + 332: 'Angora, Angora rabbit', + 333: 'hamster', + 334: 'porcupine, hedgehog', + 335: 'fox squirrel, eastern fox squirrel, Sciurus niger', + 336: 'marmot', + 337: 'beaver', + 338: 'guinea pig, Cavia cobaya', + 339: 'sorrel', + 340: 'zebra', + 341: 'hog, pig, grunter, squealer, Sus scrofa', + 342: 'wild boar, boar, Sus scrofa', + 343: 'warthog', + 344: 'hippopotamus, hippo, river horse, Hippopotamus amphibius', + 345: 'ox', + 346: 'water buffalo, water ox, Asiatic buffalo, Bubalus bubalis', + 347: 'bison', + 348: 'ram, tup', + 349: 'bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis', + 350: 'ibex, Capra ibex', + 351: 'hartebeest', + 352: 'impala, Aepyceros melampus', + 353: 'gazelle', + 354: 'Arabian camel, dromedary, Camelus dromedarius', + 355: 'llama', + 356: 'weasel', + 357: 'mink', + 358: 'polecat, fitch, foulmart, foumart, Mustela putorius', + 359: 'black-footed ferret, ferret, Mustela nigripes', + 360: 'otter', + 361: 'skunk, polecat, wood pussy', + 362: 'badger', + 363: 'armadillo', + 364: 'three-toed sloth, ai, Bradypus tridactylus', + 365: 'orangutan, orang, orangutang, Pongo pygmaeus', + 366: 'gorilla, Gorilla gorilla', + 367: 'chimpanzee, chimp, Pan troglodytes', + 368: 'gibbon, Hylobates lar', + 369: 'siamang, Hylobates syndactylus, Symphalangus syndactylus', + 370: 'guenon, guenon monkey', + 371: 'patas, hussar monkey, Erythrocebus patas', + 372: 'baboon', + 373: 'macaque', + 374: 'langur', + 375: 'colobus, colobus monkey', + 376: 'proboscis monkey, Nasalis larvatus', + 377: 'marmoset', + 378: 'capuchin, ringtail, Cebus capucinus', + 379: 'howler monkey, howler', + 380: 'titi, titi monkey', + 381: 'spider monkey, Ateles geoffroyi', + 382: 'squirrel monkey, Saimiri sciureus', + 383: 'Madagascar cat, ring-tailed lemur, Lemur catta', + 384: 'indri, indris, Indri indri, Indri brevicaudatus', + 385: 'Indian elephant, Elephas maximus', + 386: 'African elephant, Loxodonta africana', + 387: 'lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens', + 388: 'giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca', + 389: 'barracouta, snoek', + 390: 'eel', + 391: 'coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch', + 392: 'rock beauty, Holocanthus tricolor', + 393: 'anemone fish', + 394: 'sturgeon', + 395: 'gar, garfish, garpike, billfish, Lepisosteus osseus', + 396: 'lionfish', + 397: 'puffer, pufferfish, blowfish, globefish', + 398: 'abacus', + 399: 'abaya', + 400: "academic gown, academic robe, judge's robe", + 401: 'accordion, piano accordion, squeeze box', + 402: 'acoustic guitar', + 403: 'aircraft carrier, carrier, flattop, attack aircraft carrier', + 404: 'airliner', + 405: 'airship, dirigible', + 406: 'altar', + 407: 'ambulance', + 408: 'amphibian, amphibious vehicle', + 409: 'analog clock', + 410: 'apiary, bee house', + 411: 'apron', + 412: 'ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin', + 413: 'assault rifle, assault gun', + 414: 'backpack, back pack, knapsack, packsack, rucksack, haversack', + 415: 'bakery, bakeshop, bakehouse', + 416: 'balance beam, beam', + 417: 'balloon', + 418: 'ballpoint, ballpoint pen, ballpen, Biro', + 419: 'Band Aid', + 420: 'banjo', + 421: 'bannister, banister, balustrade, balusters, handrail', + 422: 'barbell', + 423: 'barber chair', + 424: 'barbershop', + 425: 'barn', + 426: 'barometer', + 427: 'barrel, cask', + 428: 'barrow, garden cart, lawn cart, wheelbarrow', + 429: 'baseball', + 430: 'basketball', + 431: 'bassinet', + 432: 'bassoon', + 433: 'bathing cap, swimming cap', + 434: 'bath towel', + 435: 'bathtub, bathing tub, bath, tub', + 436: 'beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon', + 437: 'beacon, lighthouse, beacon light, pharos', + 438: 'beaker', + 439: 'bearskin, busby, shako', + 440: 'beer bottle', + 441: 'beer glass', + 442: 'bell cote, bell cot', + 443: 'bib', + 444: 'bicycle-built-for-two, tandem bicycle, tandem', + 445: 'bikini, two-piece', + 446: 'binder, ring-binder', + 447: 'binoculars, field glasses, opera glasses', + 448: 'birdhouse', + 449: 'boathouse', + 450: 'bobsled, bobsleigh, bob', + 451: 'bolo tie, bolo, bola tie, bola', + 452: 'bonnet, poke bonnet', + 453: 'bookcase', + 454: 'bookshop, bookstore, bookstall', + 455: 'bottlecap', + 456: 'bow', + 457: 'bow tie, bow-tie, bowtie', + 458: 'brass, memorial tablet, plaque', + 459: 'brassiere, bra, bandeau', + 460: 'breakwater, groin, groyne, mole, bulwark, seawall, jetty', + 461: 'breastplate, aegis, egis', + 462: 'broom', + 463: 'bucket, pail', + 464: 'buckle', + 465: 'bulletproof vest', + 466: 'bullet train, bullet', + 467: 'butcher shop, meat market', + 468: 'cab, hack, taxi, taxicab', + 469: 'caldron, cauldron', + 470: 'candle, taper, wax light', + 471: 'cannon', + 472: 'canoe', + 473: 'can opener, tin opener', + 474: 'cardigan', + 475: 'car mirror', + 476: 'carousel, carrousel, merry-go-round, roundabout, whirligig', + 477: "carpenter's kit, tool kit", + 478: 'carton', + 479: 'car wheel', + 480: 'cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM', + 481: 'cassette', + 482: 'cassette player', + 483: 'castle', + 484: 'catamaran', + 485: 'CD player', + 486: 'cello, violoncello', + 487: 'cellular telephone, cellular phone, cellphone, cell, mobile phone', + 488: 'chain', + 489: 'chainlink fence', + 490: 'chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour', + 491: 'chain saw, chainsaw', + 492: 'chest', + 493: 'chiffonier, commode', + 494: 'chime, bell, gong', + 495: 'china cabinet, china closet', + 496: 'Christmas stocking', + 497: 'church, church building', + 498: 'cinema, movie theater, movie theatre, movie house, picture palace', + 499: 'cleaver, meat cleaver, chopper', + 500: 'cliff dwelling', + 501: 'cloak', + 502: 'clog, geta, patten, sabot', + 503: 'cocktail shaker', + 504: 'coffee mug', + 505: 'coffeepot', + 506: 'coil, spiral, volute, whorl, helix', + 507: 'combination lock', + 508: 'computer keyboard, keypad', + 509: 'confectionery, confectionary, candy store', + 510: 'container ship, containership, container vessel', + 511: 'convertible', + 512: 'corkscrew, bottle screw', + 513: 'cornet, horn, trumpet, trump', + 514: 'cowboy boot', + 515: 'cowboy hat, ten-gallon hat', + 516: 'cradle', + 517: 'crane', + 518: 'crash helmet', + 519: 'crate', + 520: 'crib, cot', + 521: 'Crock Pot', + 522: 'croquet ball', + 523: 'crutch', + 524: 'cuirass', + 525: 'dam, dike, dyke', + 526: 'desk', + 527: 'desktop computer', + 528: 'dial telephone, dial phone', + 529: 'diaper, nappy, napkin', + 530: 'digital clock', + 531: 'digital watch', + 532: 'dining table, board', + 533: 'dishrag, dishcloth', + 534: 'dishwasher, dish washer, dishwashing machine', + 535: 'disk brake, disc brake', + 536: 'dock, dockage, docking facility', + 537: 'dogsled, dog sled, dog sleigh', + 538: 'dome', + 539: 'doormat, welcome mat', + 540: 'drilling platform, offshore rig', + 541: 'drum, membranophone, tympan', + 542: 'drumstick', + 543: 'dumbbell', + 544: 'Dutch oven', + 545: 'electric fan, blower', + 546: 'electric guitar', + 547: 'electric locomotive', + 548: 'entertainment center', + 549: 'envelope', + 550: 'espresso maker', + 551: 'face powder', + 552: 'feather boa, boa', + 553: 'file, file cabinet, filing cabinet', + 554: 'fireboat', + 555: 'fire engine, fire truck', + 556: 'fire screen, fireguard', + 557: 'flagpole, flagstaff', + 558: 'flute, transverse flute', + 559: 'folding chair', + 560: 'football helmet', + 561: 'forklift', + 562: 'fountain', + 563: 'fountain pen', + 564: 'four-poster', + 565: 'freight car', + 566: 'French horn, horn', + 567: 'frying pan, frypan, skillet', + 568: 'fur coat', + 569: 'garbage truck, dustcart', + 570: 'gasmask, respirator, gas helmet', + 571: 'gas pump, gasoline pump, petrol pump, island dispenser', + 572: 'goblet', + 573: 'go-kart', + 574: 'golf ball', + 575: 'golfcart, golf cart', + 576: 'gondola', + 577: 'gong, tam-tam', + 578: 'gown', + 579: 'grand piano, grand', + 580: 'greenhouse, nursery, glasshouse', + 581: 'grille, radiator grille', + 582: 'grocery store, grocery, food market, market', + 583: 'guillotine', + 584: 'hair slide', + 585: 'hair spray', + 586: 'half track', + 587: 'hammer', + 588: 'hamper', + 589: 'hand blower, blow dryer, blow drier, hair dryer, hair drier', + 590: 'hand-held computer, hand-held microcomputer', + 591: 'handkerchief, hankie, hanky, hankey', + 592: 'hard disc, hard disk, fixed disk', + 593: 'harmonica, mouth organ, harp, mouth harp', + 594: 'harp', + 595: 'harvester, reaper', + 596: 'hatchet', + 597: 'holster', + 598: 'home theater, home theatre', + 599: 'honeycomb', + 600: 'hook, claw', + 601: 'hoopskirt, crinoline', + 602: 'horizontal bar, high bar', + 603: 'horse cart, horse-cart', + 604: 'hourglass', + 605: 'iPod', + 606: 'iron, smoothing iron', + 607: "jack-o'-lantern", + 608: 'jean, blue jean, denim', + 609: 'jeep, landrover', + 610: 'jersey, T-shirt, tee shirt', + 611: 'jigsaw puzzle', + 612: 'jinrikisha, ricksha, rickshaw', + 613: 'joystick', + 614: 'kimono', + 615: 'knee pad', + 616: 'knot', + 617: 'lab coat, laboratory coat', + 618: 'ladle', + 619: 'lampshade, lamp shade', + 620: 'laptop, laptop computer', + 621: 'lawn mower, mower', + 622: 'lens cap, lens cover', + 623: 'letter opener, paper knife, paperknife', + 624: 'library', + 625: 'lifeboat', + 626: 'lighter, light, igniter, ignitor', + 627: 'limousine, limo', + 628: 'liner, ocean liner', + 629: 'lipstick, lip rouge', + 630: 'Loafer', + 631: 'lotion', + 632: 'loudspeaker, speaker, speaker unit, loudspeaker system, speaker system', + 633: "loupe, jeweler's loupe", + 634: 'lumbermill, sawmill', + 635: 'magnetic compass', + 636: 'mailbag, postbag', + 637: 'mailbox, letter box', + 638: 'maillot', + 639: 'maillot, tank suit', + 640: 'manhole cover', + 641: 'maraca', + 642: 'marimba, xylophone', + 643: 'mask', + 644: 'matchstick', + 645: 'maypole', + 646: 'maze, labyrinth', + 647: 'measuring cup', + 648: 'medicine chest, medicine cabinet', + 649: 'megalith, megalithic structure', + 650: 'microphone, mike', + 651: 'microwave, microwave oven', + 652: 'military uniform', + 653: 'milk can', + 654: 'minibus', + 655: 'miniskirt, mini', + 656: 'minivan', + 657: 'missile', + 658: 'mitten', + 659: 'mixing bowl', + 660: 'mobile home, manufactured home', + 661: 'Model T', + 662: 'modem', + 663: 'monastery', + 664: 'monitor', + 665: 'moped', + 666: 'mortar', + 667: 'mortarboard', + 668: 'mosque', + 669: 'mosquito net', + 670: 'motor scooter, scooter', + 671: 'mountain bike, all-terrain bike, off-roader', + 672: 'mountain tent', + 673: 'mouse, computer mouse', + 674: 'mousetrap', + 675: 'moving van', + 676: 'muzzle', + 677: 'nail', + 678: 'neck brace', + 679: 'necklace', + 680: 'nipple', + 681: 'notebook, notebook computer', + 682: 'obelisk', + 683: 'oboe, hautboy, hautbois', + 684: 'ocarina, sweet potato', + 685: 'odometer, hodometer, mileometer, milometer', + 686: 'oil filter', + 687: 'organ, pipe organ', + 688: 'oscilloscope, scope, cathode-ray oscilloscope, CRO', + 689: 'overskirt', + 690: 'oxcart', + 691: 'oxygen mask', + 692: 'packet', + 693: 'paddle, boat paddle', + 694: 'paddlewheel, paddle wheel', + 695: 'padlock', + 696: 'paintbrush', + 697: "pajama, pyjama, pj's, jammies", + 698: 'palace', + 699: 'panpipe, pandean pipe, syrinx', + 700: 'paper towel', + 701: 'parachute, chute', + 702: 'parallel bars, bars', + 703: 'park bench', + 704: 'parking meter', + 705: 'passenger car, coach, carriage', + 706: 'patio, terrace', + 707: 'pay-phone, pay-station', + 708: 'pedestal, plinth, footstall', + 709: 'pencil box, pencil case', + 710: 'pencil sharpener', + 711: 'perfume, essence', + 712: 'Petri dish', + 713: 'photocopier', + 714: 'pick, plectrum, plectron', + 715: 'pickelhaube', + 716: 'picket fence, paling', + 717: 'pickup, pickup truck', + 718: 'pier', + 719: 'piggy bank, penny bank', + 720: 'pill bottle', + 721: 'pillow', + 722: 'ping-pong ball', + 723: 'pinwheel', + 724: 'pirate, pirate ship', + 725: 'pitcher, ewer', + 726: "plane, carpenter's plane, woodworking plane", + 727: 'planetarium', + 728: 'plastic bag', + 729: 'plate rack', + 730: 'plow, plough', + 731: "plunger, plumber's helper", + 732: 'Polaroid camera, Polaroid Land camera', + 733: 'pole', + 734: 'police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria', + 735: 'poncho', + 736: 'pool table, billiard table, snooker table', + 737: 'pop bottle, soda bottle', + 738: 'pot, flowerpot', + 739: "potter's wheel", + 740: 'power drill', + 741: 'prayer rug, prayer mat', + 742: 'printer', + 743: 'prison, prison house', + 744: 'projectile, missile', + 745: 'projector', + 746: 'puck, hockey puck', + 747: 'punching bag, punch bag, punching ball, punchball', + 748: 'purse', + 749: 'quill, quill pen', + 750: 'quilt, comforter, comfort, puff', + 751: 'racer, race car, racing car', + 752: 'racket, racquet', + 753: 'radiator', + 754: 'radio, wireless', + 755: 'radio telescope, radio reflector', + 756: 'rain barrel', + 757: 'recreational vehicle, RV, R.V.', + 758: 'reel', + 759: 'reflex camera', + 760: 'refrigerator, icebox', + 761: 'remote control, remote', + 762: 'restaurant, eating house, eating place, eatery', + 763: 'revolver, six-gun, six-shooter', + 764: 'rifle', + 765: 'rocking chair, rocker', + 766: 'rotisserie', + 767: 'rubber eraser, rubber, pencil eraser', + 768: 'rugby ball', + 769: 'rule, ruler', + 770: 'running shoe', + 771: 'safe', + 772: 'safety pin', + 773: 'saltshaker, salt shaker', + 774: 'sandal', + 775: 'sarong', + 776: 'sax, saxophone', + 777: 'scabbard', + 778: 'scale, weighing machine', + 779: 'school bus', + 780: 'schooner', + 781: 'scoreboard', + 782: 'screen, CRT screen', + 783: 'screw', + 784: 'screwdriver', + 785: 'seat belt, seatbelt', + 786: 'sewing machine', + 787: 'shield, buckler', + 788: 'shoe shop, shoe-shop, shoe store', + 789: 'shoji', + 790: 'shopping basket', + 791: 'shopping cart', + 792: 'shovel', + 793: 'shower cap', + 794: 'shower curtain', + 795: 'ski', + 796: 'ski mask', + 797: 'sleeping bag', + 798: 'slide rule, slipstick', + 799: 'sliding door', + 800: 'slot, one-armed bandit', + 801: 'snorkel', + 802: 'snowmobile', + 803: 'snowplow, snowplough', + 804: 'soap dispenser', + 805: 'soccer ball', + 806: 'sock', + 807: 'solar dish, solar collector, solar furnace', + 808: 'sombrero', + 809: 'soup bowl', + 810: 'space bar', + 811: 'space heater', + 812: 'space shuttle', + 813: 'spatula', + 814: 'speedboat', + 815: "spider web, spider's web", + 816: 'spindle', + 817: 'sports car, sport car', + 818: 'spotlight, spot', + 819: 'stage', + 820: 'steam locomotive', + 821: 'steel arch bridge', + 822: 'steel drum', + 823: 'stethoscope', + 824: 'stole', + 825: 'stone wall', + 826: 'stopwatch, stop watch', + 827: 'stove', + 828: 'strainer', + 829: 'streetcar, tram, tramcar, trolley, trolley car', + 830: 'stretcher', + 831: 'studio couch, day bed', + 832: 'stupa, tope', + 833: 'submarine, pigboat, sub, U-boat', + 834: 'suit, suit of clothes', + 835: 'sundial', + 836: 'sunglass', + 837: 'sunglasses, dark glasses, shades', + 838: 'sunscreen, sunblock, sun blocker', + 839: 'suspension bridge', + 840: 'swab, swob, mop', + 841: 'sweatshirt', + 842: 'swimming trunks, bathing trunks', + 843: 'swing', + 844: 'switch, electric switch, electrical switch', + 845: 'syringe', + 846: 'table lamp', + 847: 'tank, army tank, armored combat vehicle, armoured combat vehicle', + 848: 'tape player', + 849: 'teapot', + 850: 'teddy, teddy bear', + 851: 'television, television system', + 852: 'tennis ball', + 853: 'thatch, thatched roof', + 854: 'theater curtain, theatre curtain', + 855: 'thimble', + 856: 'thresher, thrasher, threshing machine', + 857: 'throne', + 858: 'tile roof', + 859: 'toaster', + 860: 'tobacco shop, tobacconist shop, tobacconist', + 861: 'toilet seat', + 862: 'torch', + 863: 'totem pole', + 864: 'tow truck, tow car, wrecker', + 865: 'toyshop', + 866: 'tractor', + 867: 'trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi', + 868: 'tray', + 869: 'trench coat', + 870: 'tricycle, trike, velocipede', + 871: 'trimaran', + 872: 'tripod', + 873: 'triumphal arch', + 874: 'trolleybus, trolley coach, trackless trolley', + 875: 'trombone', + 876: 'tub, vat', + 877: 'turnstile', + 878: 'typewriter keyboard', + 879: 'umbrella', + 880: 'unicycle, monocycle', + 881: 'upright, upright piano', + 882: 'vacuum, vacuum cleaner', + 883: 'vase', + 884: 'vault', + 885: 'velvet', + 886: 'vending machine', + 887: 'vestment', + 888: 'viaduct', + 889: 'violin, fiddle', + 890: 'volleyball', + 891: 'waffle iron', + 892: 'wall clock', + 893: 'wallet, billfold, notecase, pocketbook', + 894: 'wardrobe, closet, press', + 895: 'warplane, military plane', + 896: 'washbasin, handbasin, washbowl, lavabo, wash-hand basin', + 897: 'washer, automatic washer, washing machine', + 898: 'water bottle', + 899: 'water jug', + 900: 'water tower', + 901: 'whiskey jug', + 902: 'whistle', + 903: 'wig', + 904: 'window screen', + 905: 'window shade', + 906: 'Windsor tie', + 907: 'wine bottle', + 908: 'wing', + 909: 'wok', + 910: 'wooden spoon', + 911: 'wool, woolen, woollen', + 912: 'worm fence, snake fence, snake-rail fence, Virginia fence', + 913: 'wreck', + 914: 'yawl', + 915: 'yurt', + 916: 'web site, website, internet site, site', + 917: 'comic book', + 918: 'crossword puzzle, crossword', + 919: 'street sign', + 920: 'traffic light, traffic signal, stoplight', + 921: 'book jacket, dust cover, dust jacket, dust wrapper', + 922: 'menu', + 923: 'plate', + 924: 'guacamole', + 925: 'consomme', + 926: 'hot pot, hotpot', + 927: 'trifle', + 928: 'ice cream, icecream', + 929: 'ice lolly, lolly, lollipop, popsicle', + 930: 'French loaf', + 931: 'bagel, beigel', + 932: 'pretzel', + 933: 'cheeseburger', + 934: 'hotdog, hot dog, red hot', + 935: 'mashed potato', + 936: 'head cabbage', + 937: 'broccoli', + 938: 'cauliflower', + 939: 'zucchini, courgette', + 940: 'spaghetti squash', + 941: 'acorn squash', + 942: 'butternut squash', + 943: 'cucumber, cuke', + 944: 'artichoke, globe artichoke', + 945: 'bell pepper', + 946: 'cardoon', + 947: 'mushroom', + 948: 'Granny Smith', + 949: 'strawberry', + 950: 'orange', + 951: 'lemon', + 952: 'fig', + 953: 'pineapple, ananas', + 954: 'banana', + 955: 'jackfruit, jak, jack', + 956: 'custard apple', + 957: 'pomegranate', + 958: 'hay', + 959: 'carbonara', + 960: 'chocolate sauce, chocolate syrup', + 961: 'dough', + 962: 'meat loaf, meatloaf', + 963: 'pizza, pizza pie', + 964: 'potpie', + 965: 'burrito', + 966: 'red wine', + 967: 'espresso', + 968: 'cup', + 969: 'eggnog', + 970: 'alp', + 971: 'bubble', + 972: 'cliff, drop, drop-off', + 973: 'coral reef', + 974: 'geyser', + 975: 'lakeside, lakeshore', + 976: 'promontory, headland, head, foreland', + 977: 'sandbar, sand bar', + 978: 'seashore, coast, seacoast, sea-coast', + 979: 'valley, vale', + 980: 'volcano', + 981: 'ballplayer, baseball player', + 982: 'groom, bridegroom', + 983: 'scuba diver', + 984: 'rapeseed', + 985: 'daisy', + 986: "yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum", + 987: 'corn', + 988: 'acorn', + 989: 'hip, rose hip, rosehip', + 990: 'buckeye, horse chestnut, conker', + 991: 'coral fungus', + 992: 'agaric', + 993: 'gyromitra', + 994: 'stinkhorn, carrion fungus', + 995: 'earthstar', + 996: 'hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa', + 997: 'bolete', + 998: 'ear, spike, capitulum', + 999: 'toilet tissue, toilet paper, bathroom tissue' \ No newline at end of file diff --git a/stable_diffusion/data/imagenet_train_hr_indices.p.REMOVED.git-id b/stable_diffusion/data/imagenet_train_hr_indices.p.REMOVED.git-id new file mode 100644 index 0000000000000000000000000000000000000000..baaaf8a9dadda8295dc0e6ce74bcf308c3cc99b2 --- /dev/null +++ b/stable_diffusion/data/imagenet_train_hr_indices.p.REMOVED.git-id @@ -0,0 +1 @@ +b8d6d4689d2ecf32147e9cc2f5e6c50e072df26f \ No newline at end of file diff --git a/stable_diffusion/data/imagenet_val_hr_indices.p b/stable_diffusion/data/imagenet_val_hr_indices.p new file mode 100644 index 0000000000000000000000000000000000000000..6a48e2b6ac7c1d7c2486e04512221d1e299685a3 --- /dev/null +++ b/stable_diffusion/data/imagenet_val_hr_indices.p @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caff671e3af805b4cead728b20b7c44c3cc366ed14b291c0270a2b2de39a4025 +size 145756 diff --git a/stable_diffusion/data/index_synset.yaml b/stable_diffusion/data/index_synset.yaml new file mode 100644 index 0000000000000000000000000000000000000000..635ea71a0da40d42072fee110143520daa203ce6 --- /dev/null +++ b/stable_diffusion/data/index_synset.yaml @@ -0,0 +1,1000 @@ +0: n01440764 +1: n01443537 +2: n01484850 +3: n01491361 +4: n01494475 +5: n01496331 +6: n01498041 +7: n01514668 +8: n07646067 +9: n01518878 +10: n01530575 +11: n01531178 +12: n01532829 +13: n01534433 +14: n01537544 +15: n01558993 +16: n01560419 +17: n01580077 +18: n01582220 +19: n01592084 +20: n01601694 +21: n13382471 +22: n01614925 +23: n01616318 +24: n01622779 +25: n01629819 +26: n01630670 +27: n01631663 +28: n01632458 +29: n01632777 +30: n01641577 +31: n01644373 +32: n01644900 +33: n01664065 +34: n01665541 +35: n01667114 +36: n01667778 +37: n01669191 +38: n01675722 +39: n01677366 +40: n01682714 +41: n01685808 +42: n01687978 +43: n01688243 +44: n01689811 +45: n01692333 +46: n01693334 +47: n01694178 +48: n01695060 +49: n01697457 +50: n01698640 +51: n01704323 +52: n01728572 +53: n01728920 +54: n01729322 +55: n01729977 +56: n01734418 +57: n01735189 +58: n01737021 +59: n01739381 +60: n01740131 +61: n01742172 +62: n01744401 +63: n01748264 +64: n01749939 +65: n01751748 +66: n01753488 +67: n01755581 +68: n01756291 +69: n01768244 +70: n01770081 +71: n01770393 +72: n01773157 +73: n01773549 +74: n01773797 +75: n01774384 +76: n01774750 +77: n01775062 +78: n04432308 +79: n01784675 +80: n01795545 +81: n01796340 +82: n01797886 +83: n01798484 +84: n01806143 +85: n07647321 +86: n07647496 +87: n01817953 +88: n01818515 +89: n01819313 +90: n01820546 +91: n01824575 +92: n01828970 +93: n01829413 +94: n01833805 +95: n01843065 +96: n01843383 +97: n01847000 +98: n01855032 +99: n07646821 +100: n01860187 +101: n01871265 +102: n01872772 +103: n01873310 +104: n01877812 +105: n01882714 +106: n01883070 +107: n01910747 +108: n01914609 +109: n01917289 +110: n01924916 +111: n01930112 +112: n01943899 +113: n01944390 +114: n13719102 +115: n01950731 +116: n01955084 +117: n01968897 +118: n01978287 +119: n01978455 +120: n01980166 +121: n01981276 +122: n01983481 +123: n01984695 +124: n01985128 +125: n01986214 +126: n01990800 +127: n02002556 +128: n02002724 +129: n02006656 +130: n02007558 +131: n02009229 +132: n02009912 +133: n02011460 +134: n03126707 +135: n02013706 +136: n02017213 +137: n02018207 +138: n02018795 +139: n02025239 +140: n02027492 +141: n02028035 +142: n02033041 +143: n02037110 +144: n02051845 +145: n02056570 +146: n02058221 +147: n02066245 +148: n02071294 +149: n02074367 +150: n02077923 +151: n08742578 +152: n02085782 +153: n02085936 +154: n02086079 +155: n02086240 +156: n02086646 +157: n02086910 +158: n02087046 +159: n02087394 +160: n02088094 +161: n02088238 +162: n02088364 +163: n02088466 +164: n02088632 +165: n02089078 +166: n02089867 +167: n02089973 +168: n02090379 +169: n02090622 +170: n02090721 +171: n02091032 +172: n02091134 +173: n02091244 +174: n02091467 +175: n02091635 +176: n02091831 +177: n02092002 +178: n02092339 +179: n02093256 +180: n02093428 +181: n02093647 +182: n02093754 +183: n02093859 +184: n02093991 +185: n02094114 +186: n02094258 +187: n02094433 +188: n02095314 +189: n02095570 +190: n02095889 +191: n02096051 +192: n02096177 +193: n02096294 +194: n02096437 +195: n02096585 +196: n02097047 +197: n02097130 +198: n02097209 +199: n02097298 +200: n02097474 +201: n02097658 +202: n02098105 +203: n02098286 +204: n02098413 +205: n02099267 +206: n02099429 +207: n02099601 +208: n02099712 +209: n02099849 +210: n02100236 +211: n02100583 +212: n02100735 +213: n02100877 +214: n02101006 +215: n02101388 +216: n02101556 +217: n02102040 +218: n02102177 +219: n02102318 +220: n02102480 +221: n02102973 +222: n02104029 +223: n02104365 +224: n02105056 +225: n02105162 +226: n02105251 +227: n02105412 +228: n02105505 +229: n02105641 +230: n02105855 +231: n02106030 +232: n02106166 +233: n02106382 +234: n02106550 +235: n02106662 +236: n02107142 +237: n02107312 +238: n02107574 +239: n02107683 +240: n02107908 +241: n02108000 +242: n02108089 +243: n02108422 +244: n02108551 +245: n02108915 +246: n02109047 +247: n02109525 +248: n02109961 +249: n02110063 +250: n02110185 +251: n02110341 +252: n02110627 +253: n02110806 +254: n02110958 +255: n02111129 +256: n02111277 +257: n02111500 +258: n02111889 +259: n02112018 +260: n02112137 +261: n02112350 +262: n02112706 +263: n02113023 +264: n02113186 +265: n02113624 +266: n02113712 +267: n02113799 +268: n02113978 +269: n02114367 +270: n02114548 +271: n02114712 +272: n02114855 +273: n02115641 +274: n02115913 +275: n02116738 +276: n02117135 +277: n02119022 +278: n02119789 +279: n02120079 +280: n02120505 +281: n02123045 +282: n02123159 +283: n02123394 +284: n02123597 +285: n02124075 +286: n02125311 +287: n02127052 +288: n02128385 +289: n02128757 +290: n02128925 +291: n02129165 +292: n02129604 +293: n02130308 +294: n02132136 +295: n02133161 +296: n02134084 +297: n02134418 +298: n02137549 +299: n02138441 +300: n02165105 +301: n02165456 +302: n02167151 +303: n02168699 +304: n02169497 +305: n02172182 +306: n02174001 +307: n02177972 +308: n03373237 +309: n07975909 +310: n02219486 +311: n02226429 +312: n02229544 +313: n02231487 +314: n02233338 +315: n02236044 +316: n02256656 +317: n02259212 +318: n02264363 +319: n02268443 +320: n02268853 +321: n02276258 +322: n02277742 +323: n02279972 +324: n02280649 +325: n02281406 +326: n02281787 +327: n02317335 +328: n02319095 +329: n02321529 +330: n02325366 +331: n02326432 +332: n02328150 +333: n02342885 +334: n02346627 +335: n02356798 +336: n02361337 +337: n05262120 +338: n02364673 +339: n02389026 +340: n02391049 +341: n02395406 +342: n02396427 +343: n02397096 +344: n02398521 +345: n02403003 +346: n02408429 +347: n02410509 +348: n02412080 +349: n02415577 +350: n02417914 +351: n02422106 +352: n02422699 +353: n02423022 +354: n02437312 +355: n02437616 +356: n10771990 +357: n14765497 +358: n02443114 +359: n02443484 +360: n14765785 +361: n02445715 +362: n02447366 +363: n02454379 +364: n02457408 +365: n02480495 +366: n02480855 +367: n02481823 +368: n02483362 +369: n02483708 +370: n02484975 +371: n02486261 +372: n02486410 +373: n02487347 +374: n02488291 +375: n02488702 +376: n02489166 +377: n02490219 +378: n02492035 +379: n02492660 +380: n02493509 +381: n02493793 +382: n02494079 +383: n02497673 +384: n02500267 +385: n02504013 +386: n02504458 +387: n02509815 +388: n02510455 +389: n02514041 +390: n07783967 +391: n02536864 +392: n02606052 +393: n02607072 +394: n02640242 +395: n02641379 +396: n02643566 +397: n02655020 +398: n02666347 +399: n02667093 +400: n02669723 +401: n02672831 +402: n02676566 +403: n02687172 +404: n02690373 +405: n02692877 +406: n02699494 +407: n02701002 +408: n02704792 +409: n02708093 +410: n02727426 +411: n08496334 +412: n02747177 +413: n02749479 +414: n02769748 +415: n02776631 +416: n02777292 +417: n02782329 +418: n02783161 +419: n02786058 +420: n02787622 +421: n02788148 +422: n02790996 +423: n02791124 +424: n02791270 +425: n02793495 +426: n02794156 +427: n02795169 +428: n02797295 +429: n02799071 +430: n02802426 +431: n02804515 +432: n02804610 +433: n02807133 +434: n02808304 +435: n02808440 +436: n02814533 +437: n02814860 +438: n02815834 +439: n02817516 +440: n02823428 +441: n02823750 +442: n02825657 +443: n02834397 +444: n02835271 +445: n02837789 +446: n02840245 +447: n02841315 +448: n02843684 +449: n02859443 +450: n02860847 +451: n02865351 +452: n02869837 +453: n02870880 +454: n02871525 +455: n02877765 +456: n02880308 +457: n02883205 +458: n02892201 +459: n02892767 +460: n02894605 +461: n02895154 +462: n12520864 +463: n02909870 +464: n02910353 +465: n02916936 +466: n02917067 +467: n02927161 +468: n02930766 +469: n02939185 +470: n02948072 +471: n02950826 +472: n02951358 +473: n02951585 +474: n02963159 +475: n02965783 +476: n02966193 +477: n02966687 +478: n02971356 +479: n02974003 +480: n02977058 +481: n02978881 +482: n02979186 +483: n02980441 +484: n02981792 +485: n02988304 +486: n02992211 +487: n02992529 +488: n13652994 +489: n03000134 +490: n03000247 +491: n03000684 +492: n03014705 +493: n03016953 +494: n03017168 +495: n03018349 +496: n03026506 +497: n03028079 +498: n03032252 +499: n03041632 +500: n03042490 +501: n03045698 +502: n03047690 +503: n03062245 +504: n03063599 +505: n03063689 +506: n03065424 +507: n03075370 +508: n03085013 +509: n03089624 +510: n03095699 +511: n03100240 +512: n03109150 +513: n03110669 +514: n03124043 +515: n03124170 +516: n15142452 +517: n03126707 +518: n03127747 +519: n03127925 +520: n03131574 +521: n03133878 +522: n03134739 +523: n03141823 +524: n03146219 +525: n03160309 +526: n03179701 +527: n03180011 +528: n03187595 +529: n03188531 +530: n03196217 +531: n03197337 +532: n03201208 +533: n03207743 +534: n03207941 +535: n03208938 +536: n03216828 +537: n03218198 +538: n13872072 +539: n03223299 +540: n03240683 +541: n03249569 +542: n07647870 +543: n03255030 +544: n03259401 +545: n03271574 +546: n03272010 +547: n03272562 +548: n03290653 +549: n13869788 +550: n03297495 +551: n03314780 +552: n03325584 +553: n03337140 +554: n03344393 +555: n03345487 +556: n03347037 +557: n03355925 +558: n03372029 +559: n03376595 +560: n03379051 +561: n03384352 +562: n03388043 +563: n03388183 +564: n03388549 +565: n03393912 +566: n03394916 +567: n03400231 +568: n03404251 +569: n03417042 +570: n03424325 +571: n03425413 +572: n03443371 +573: n03444034 +574: n03445777 +575: n03445924 +576: n03447447 +577: n03447721 +578: n08286342 +579: n03452741 +580: n03457902 +581: n03459775 +582: n03461385 +583: n03467068 +584: n03476684 +585: n03476991 +586: n03478589 +587: n03482001 +588: n03482405 +589: n03483316 +590: n03485407 +591: n03485794 +592: n03492542 +593: n03494278 +594: n03495570 +595: n10161363 +596: n03498962 +597: n03527565 +598: n03529860 +599: n09218315 +600: n03532672 +601: n03534580 +602: n03535780 +603: n03538406 +604: n03544143 +605: n03584254 +606: n03584829 +607: n03590841 +608: n03594734 +609: n03594945 +610: n03595614 +611: n03598930 +612: n03599486 +613: n03602883 +614: n03617480 +615: n03623198 +616: n15102712 +617: n03630383 +618: n03633091 +619: n03637318 +620: n03642806 +621: n03649909 +622: n03657121 +623: n03658185 +624: n07977870 +625: n03662601 +626: n03666591 +627: n03670208 +628: n03673027 +629: n03676483 +630: n03680355 +631: n03690938 +632: n03691459 +633: n03692522 +634: n03697007 +635: n03706229 +636: n03709823 +637: n03710193 +638: n03710637 +639: n03710721 +640: n03717622 +641: n03720891 +642: n03721384 +643: n03725035 +644: n03729826 +645: n03733131 +646: n03733281 +647: n03733805 +648: n03742115 +649: n03743016 +650: n03759954 +651: n03761084 +652: n03763968 +653: n03764736 +654: n03769881 +655: n03770439 +656: n03770679 +657: n03773504 +658: n03775071 +659: n03775546 +660: n03776460 +661: n03777568 +662: n03777754 +663: n03781244 +664: n03782006 +665: n03785016 +666: n14955889 +667: n03787032 +668: n03788195 +669: n03788365 +670: n03791053 +671: n03792782 +672: n03792972 +673: n03793489 +674: n03794056 +675: n03796401 +676: n03803284 +677: n13652335 +678: n03814639 +679: n03814906 +680: n03825788 +681: n03832673 +682: n03837869 +683: n03838899 +684: n03840681 +685: n03841143 +686: n03843555 +687: n03854065 +688: n03857828 +689: n03866082 +690: n03868242 +691: n03868863 +692: n07281099 +693: n03873416 +694: n03874293 +695: n03874599 +696: n03876231 +697: n03877472 +698: n08053121 +699: n03884397 +700: n03887697 +701: n03888257 +702: n03888605 +703: n03891251 +704: n03891332 +705: n03895866 +706: n03899768 +707: n03902125 +708: n03903868 +709: n03908618 +710: n03908714 +711: n03916031 +712: n03920288 +713: n03924679 +714: n03929660 +715: n03929855 +716: n03930313 +717: n03930630 +718: n03934042 +719: n03935335 +720: n03937543 +721: n03938244 +722: n03942813 +723: n03944341 +724: n03947888 +725: n03950228 +726: n03954731 +727: n03956157 +728: n03958227 +729: n03961711 +730: n03967562 +731: n03970156 +732: n03976467 +733: n08620881 +734: n03977966 +735: n03980874 +736: n03982430 +737: n03983396 +738: n03991062 +739: n03992509 +740: n03995372 +741: n03998194 +742: n04004767 +743: n13937284 +744: n04008634 +745: n04009801 +746: n04019541 +747: n04023962 +748: n13413294 +749: n04033901 +750: n04033995 +751: n04037443 +752: n04039381 +753: n09403211 +754: n04041544 +755: n04044716 +756: n04049303 +757: n04065272 +758: n07056680 +759: n04069434 +760: n04070727 +761: n04074963 +762: n04081281 +763: n04086273 +764: n04090263 +765: n04099969 +766: n04111531 +767: n04116512 +768: n04118538 +769: n04118776 +770: n04120489 +771: n04125116 +772: n04127249 +773: n04131690 +774: n04133789 +775: n04136333 +776: n04141076 +777: n04141327 +778: n04141975 +779: n04146614 +780: n04147291 +781: n04149813 +782: n04152593 +783: n04154340 +784: n07917272 +785: n04162706 +786: n04179913 +787: n04192698 +788: n04200800 +789: n04201297 +790: n04204238 +791: n04204347 +792: n04208427 +793: n04209133 +794: n04209239 +795: n04228054 +796: n04229816 +797: n04235860 +798: n04238763 +799: n04239074 +800: n04243546 +801: n04251144 +802: n04252077 +803: n04252225 +804: n04254120 +805: n04254680 +806: n04254777 +807: n04258138 +808: n04259630 +809: n04263257 +810: n04264628 +811: n04265275 +812: n04266014 +813: n04270147 +814: n04273569 +815: n04275363 +816: n05605498 +817: n04285008 +818: n04286575 +819: n08646566 +820: n04310018 +821: n04311004 +822: n04311174 +823: n04317175 +824: n04325704 +825: n04326547 +826: n04328186 +827: n04330267 +828: n04332243 +829: n04335435 +830: n04337157 +831: n04344873 +832: n04346328 +833: n04347754 +834: n04350905 +835: n04355338 +836: n04355933 +837: n04356056 +838: n04357314 +839: n04366367 +840: n04367480 +841: n04370456 +842: n04371430 +843: n14009946 +844: n04372370 +845: n04376876 +846: n04380533 +847: n04389033 +848: n04392985 +849: n04398044 +850: n04399382 +851: n04404412 +852: n04409515 +853: n04417672 +854: n04418357 +855: n04423845 +856: n04428191 +857: n04429376 +858: n04435653 +859: n04442312 +860: n04443257 +861: n04447861 +862: n04456115 +863: n04458633 +864: n04461696 +865: n04462240 +866: n04465666 +867: n04467665 +868: n04476259 +869: n04479046 +870: n04482393 +871: n04483307 +872: n04485082 +873: n04486054 +874: n04487081 +875: n04487394 +876: n04493381 +877: n04501370 +878: n04505470 +879: n04507155 +880: n04509417 +881: n04515003 +882: n04517823 +883: n04522168 +884: n04523525 +885: n04525038 +886: n04525305 +887: n04532106 +888: n04532670 +889: n04536866 +890: n04540053 +891: n04542943 +892: n04548280 +893: n04548362 +894: n04550184 +895: n04552348 +896: n04553703 +897: n04554684 +898: n04557648 +899: n04560804 +900: n04562935 +901: n04579145 +902: n04579667 +903: n04584207 +904: n04589890 +905: n04590129 +906: n04591157 +907: n04591713 +908: n10782135 +909: n04596742 +910: n04598010 +911: n04599235 +912: n04604644 +913: n14423870 +914: n04612504 +915: n04613696 +916: n06359193 +917: n06596364 +918: n06785654 +919: n06794110 +920: n06874185 +921: n07248320 +922: n07565083 +923: n07657664 +924: n07583066 +925: n07584110 +926: n07590611 +927: n07613480 +928: n07614500 +929: n07615774 +930: n07684084 +931: n07693725 +932: n07695742 +933: n07697313 +934: n07697537 +935: n07711569 +936: n07714571 +937: n07714990 +938: n07715103 +939: n12159804 +940: n12160303 +941: n12160857 +942: n07717556 +943: n07718472 +944: n07718747 +945: n07720875 +946: n07730033 +947: n13001041 +948: n07742313 +949: n12630144 +950: n14991210 +951: n07749582 +952: n07753113 +953: n07753275 +954: n07753592 +955: n07754684 +956: n07760859 +957: n07768694 +958: n07802026 +959: n07831146 +960: n07836838 +961: n07860988 +962: n07871810 +963: n07873807 +964: n07875152 +965: n07880968 +966: n07892512 +967: n07920052 +968: n13904665 +969: n07932039 +970: n09193705 +971: n09229709 +972: n09246464 +973: n09256479 +974: n09288635 +975: n09332890 +976: n09399592 +977: n09421951 +978: n09428293 +979: n09468604 +980: n09472597 +981: n09835506 +982: n10148035 +983: n10565667 +984: n11879895 +985: n11939491 +986: n12057211 +987: n12144580 +988: n12267677 +989: n12620546 +990: n12768682 +991: n12985857 +992: n12998815 +993: n13037406 +994: n13040303 +995: n13044778 +996: n13052670 +997: n13054560 +998: n13133613 +999: n15075141 diff --git a/stable_diffusion/data/inpainting_examples/6458524847_2f4c361183_k.png b/stable_diffusion/data/inpainting_examples/6458524847_2f4c361183_k.png new file mode 100644 index 0000000000000000000000000000000000000000..d838a5a73654b039caa48aa63384c09bdb100f29 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/6458524847_2f4c361183_k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa71a55beb52959facaf29159e8fd76d48dc25a51e46d3b07ffd3c5f3c7c6be9 +size 477051 diff --git a/stable_diffusion/data/inpainting_examples/6458524847_2f4c361183_k_mask.png b/stable_diffusion/data/inpainting_examples/6458524847_2f4c361183_k_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..91993de90934cec5851748e33e2efe742c546feb --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/6458524847_2f4c361183_k_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc56c17ddda66724bcface95dc3153889358bafa76c866748e02faba2dae42e4 +size 7583 diff --git a/stable_diffusion/data/inpainting_examples/8399166846_f6fb4e4b8e_k.png b/stable_diffusion/data/inpainting_examples/8399166846_f6fb4e4b8e_k.png new file mode 100644 index 0000000000000000000000000000000000000000..27397398c81b262b2a2ab95a8ddc842f43368bfd --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/8399166846_f6fb4e4b8e_k.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace570074843a0696a2bec5beec662539f06e9c4af44b0541299304dab8a3d8d +size 552063 diff --git a/stable_diffusion/data/inpainting_examples/8399166846_f6fb4e4b8e_k_mask.png b/stable_diffusion/data/inpainting_examples/8399166846_f6fb4e4b8e_k_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..d72191a774933503e1b6b24ed4841f669620b296 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/8399166846_f6fb4e4b8e_k_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c53baca5110b3f4ab3b90a51d7169fb24b7cd2f6de42c356f39aba0d1ee46d4 +size 7734 diff --git a/stable_diffusion/data/inpainting_examples/alex-iby-G_Pk4D9rMLs.png b/stable_diffusion/data/inpainting_examples/alex-iby-G_Pk4D9rMLs.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e573ec47a0b73f624bf10e4c9821160b3d1957 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/alex-iby-G_Pk4D9rMLs.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e210d4a6ac88561632dfdbf6da39eeced65eca64275c251946f4416e6d7e36d +size 461110 diff --git a/stable_diffusion/data/inpainting_examples/alex-iby-G_Pk4D9rMLs_mask.png b/stable_diffusion/data/inpainting_examples/alex-iby-G_Pk4D9rMLs_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..7a6ca5277b41e79f8ec96f7fd7d6247571ccdae6 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/alex-iby-G_Pk4D9rMLs_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c7cb9fb26ecd1872b61e47f85f453948e79388d6d7d26f2109dc1c32c43c788 +size 11871 diff --git a/stable_diffusion/data/inpainting_examples/bench2.png b/stable_diffusion/data/inpainting_examples/bench2.png new file mode 100644 index 0000000000000000000000000000000000000000..823864c52d74c35db032301c7e8d47b32ad83c58 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/bench2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406cb077ea0c1133f8315e52b2ee9388a32bbc7e3273095be2166e5834123c84 +size 566137 diff --git a/stable_diffusion/data/inpainting_examples/bench2_mask.png b/stable_diffusion/data/inpainting_examples/bench2_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..b4e0ede53312404431b023e33436aec2a407e2cb --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/bench2_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e0da04b1b017479123235f353409280db64eaa671fb0744ba5fab377890cd8 +size 12102 diff --git a/stable_diffusion/data/inpainting_examples/bertrand-gabioud-CpuFzIsHYJ0.png b/stable_diffusion/data/inpainting_examples/bertrand-gabioud-CpuFzIsHYJ0.png new file mode 100644 index 0000000000000000000000000000000000000000..3898bfa5a8bca9b33e0878d73f204913f04835b0 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/bertrand-gabioud-CpuFzIsHYJ0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf29f674205fe337a0019cc75a851b3a717ba218d935cfe8692aa01f994968a +size 427470 diff --git a/stable_diffusion/data/inpainting_examples/bertrand-gabioud-CpuFzIsHYJ0_mask.png b/stable_diffusion/data/inpainting_examples/bertrand-gabioud-CpuFzIsHYJ0_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..67dd6ade69f8875054b50530a76868ccffb3419d --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/bertrand-gabioud-CpuFzIsHYJ0_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32278400dd7bbf0406a74915b748c44e135b84e23f80881fc74c5e1cd68441f +size 6239 diff --git a/stable_diffusion/data/inpainting_examples/billow926-12-Wc-Zgx6Y.png b/stable_diffusion/data/inpainting_examples/billow926-12-Wc-Zgx6Y.png new file mode 100644 index 0000000000000000000000000000000000000000..e4af7c85b9d30dbdd5e2eef105f671f026bbb8f2 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/billow926-12-Wc-Zgx6Y.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258b465e90e413f4caa6f79a8d1e1667ab9f0a266899a78333ab37565002c621 +size 554948 diff --git a/stable_diffusion/data/inpainting_examples/billow926-12-Wc-Zgx6Y_mask.png b/stable_diffusion/data/inpainting_examples/billow926-12-Wc-Zgx6Y_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..e741d598193228c0c8d81d55a2a3c9cfaf1d264a --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/billow926-12-Wc-Zgx6Y_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c921d310498cbf8a4a7741a2e84915a49a25e7128d75524e23710ec1da4d046 +size 9751 diff --git a/stable_diffusion/data/inpainting_examples/overture-creations-5sI6fQgYIuo.png b/stable_diffusion/data/inpainting_examples/overture-creations-5sI6fQgYIuo.png new file mode 100644 index 0000000000000000000000000000000000000000..654201e4cf12de83b4fa1b65c110cc26f26febe4 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/overture-creations-5sI6fQgYIuo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163bb606237be8feb5be75b447877054c4293a204ca241d452647f7488e6c500 +size 404753 diff --git a/stable_diffusion/data/inpainting_examples/overture-creations-5sI6fQgYIuo_mask.png b/stable_diffusion/data/inpainting_examples/overture-creations-5sI6fQgYIuo_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..bfba900d320bf35e43eb785ccef0ddf7b8c330a3 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/overture-creations-5sI6fQgYIuo_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f061f9e8a5b27390b19bcc1d02466352166980c2abcabd32e486c796a0a3dc44 +size 12106 diff --git a/stable_diffusion/data/inpainting_examples/photo-1583445095369-9c651e7e5d34_mask.png b/stable_diffusion/data/inpainting_examples/photo-1583445095369-9c651e7e5d34_mask.png new file mode 100644 index 0000000000000000000000000000000000000000..e298f1b3dc45627d4a412eeba704eb0070005553 --- /dev/null +++ b/stable_diffusion/data/inpainting_examples/photo-1583445095369-9c651e7e5d34_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6593f23b6a130e19cb91b944e0c7be5911205cbbc1a849560a78c84c9bf8da6 +size 7955 diff --git a/stable_diffusion/environment.yaml b/stable_diffusion/environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..025ced87018b87c8e23a80fd77cde85e4715d897 --- /dev/null +++ b/stable_diffusion/environment.yaml @@ -0,0 +1,31 @@ +name: ldm +channels: + - pytorch + - defaults +dependencies: + - python=3.8.5 + - pip=20.3 + - cudatoolkit=11.3 + - pytorch=1.11.0 + - torchvision=0.12.0 + - numpy=1.19.2 + - pip: + - albumentations==0.4.3 + - diffusers + - opencv-python==4.1.2.30 + - pudb==2019.2 + - invisible-watermark + - imageio==2.9.0 + - imageio-ffmpeg==0.4.2 + - pytorch-lightning==1.4.2 + - omegaconf==2.1.1 + - test-tube>=0.7.5 + - streamlit>=0.73.1 + - einops==0.3.0 + - torch-fidelity==0.3.0 + - transformers==4.19.2 + - torchmetrics==0.6.0 + - kornia==0.6 + - -e git+https://github.com/CompVis/taming-transformers.git@master#egg=taming-transformers + - -e git+https://github.com/openai/CLIP.git@main#egg=clip + - -e . diff --git a/stable_diffusion/ldm/models/autoencoder.py b/stable_diffusion/ldm/models/autoencoder.py new file mode 100644 index 0000000000000000000000000000000000000000..6a9c4f45498561953b8085981609b2a3298a5473 --- /dev/null +++ b/stable_diffusion/ldm/models/autoencoder.py @@ -0,0 +1,443 @@ +import torch +import pytorch_lightning as pl +import torch.nn.functional as F +from contextlib import contextmanager + +from taming.modules.vqvae.quantize import VectorQuantizer2 as VectorQuantizer + +from ldm.modules.diffusionmodules.model import Encoder, Decoder +from ldm.modules.distributions.distributions import DiagonalGaussianDistribution + +from ldm.util import instantiate_from_config + + +class VQModel(pl.LightningModule): + def __init__(self, + ddconfig, + lossconfig, + n_embed, + embed_dim, + ckpt_path=None, + ignore_keys=[], + image_key="image", + colorize_nlabels=None, + monitor=None, + batch_resize_range=None, + scheduler_config=None, + lr_g_factor=1.0, + remap=None, + sane_index_shape=False, # tell vector quantizer to return indices as bhw + use_ema=False + ): + super().__init__() + self.embed_dim = embed_dim + self.n_embed = n_embed + self.image_key = image_key + self.encoder = Encoder(**ddconfig) + self.decoder = Decoder(**ddconfig) + self.loss = instantiate_from_config(lossconfig) + self.quantize = VectorQuantizer(n_embed, embed_dim, beta=0.25, + remap=remap, + sane_index_shape=sane_index_shape) + self.quant_conv = torch.nn.Conv2d(ddconfig["z_channels"], embed_dim, 1) + self.post_quant_conv = torch.nn.Conv2d(embed_dim, ddconfig["z_channels"], 1) + if colorize_nlabels is not None: + assert type(colorize_nlabels)==int + self.register_buffer("colorize", torch.randn(3, colorize_nlabels, 1, 1)) + if monitor is not None: + self.monitor = monitor + self.batch_resize_range = batch_resize_range + if self.batch_resize_range is not None: + print(f"{self.__class__.__name__}: Using per-batch resizing in range {batch_resize_range}.") + + self.use_ema = use_ema + if self.use_ema: + self.model_ema = LitEma(self) + print(f"Keeping EMAs of {len(list(self.model_ema.buffers()))}.") + + if ckpt_path is not None: + self.init_from_ckpt(ckpt_path, ignore_keys=ignore_keys) + self.scheduler_config = scheduler_config + self.lr_g_factor = lr_g_factor + + @contextmanager + def ema_scope(self, context=None): + if self.use_ema: + self.model_ema.store(self.parameters()) + self.model_ema.copy_to(self) + if context is not None: + print(f"{context}: Switched to EMA weights") + try: + yield None + finally: + if self.use_ema: + self.model_ema.restore(self.parameters()) + if context is not None: + print(f"{context}: Restored training weights") + + def init_from_ckpt(self, path, ignore_keys=list()): + sd = torch.load(path, map_location="cpu")["state_dict"] + keys = list(sd.keys()) + for k in keys: + for ik in ignore_keys: + if k.startswith(ik): + print("Deleting key {} from state_dict.".format(k)) + del sd[k] + missing, unexpected = self.load_state_dict(sd, strict=False) + print(f"Restored from {path} with {len(missing)} missing and {len(unexpected)} unexpected keys") + if len(missing) > 0: + print(f"Missing Keys: {missing}") + print(f"Unexpected Keys: {unexpected}") + + def on_train_batch_end(self, *args, **kwargs): + if self.use_ema: + self.model_ema(self) + + def encode(self, x): + h = self.encoder(x) + h = self.quant_conv(h) + quant, emb_loss, info = self.quantize(h) + return quant, emb_loss, info + + def encode_to_prequant(self, x): + h = self.encoder(x) + h = self.quant_conv(h) + return h + + def decode(self, quant): + quant = self.post_quant_conv(quant) + dec = self.decoder(quant) + return dec + + def decode_code(self, code_b): + quant_b = self.quantize.embed_code(code_b) + dec = self.decode(quant_b) + return dec + + def forward(self, input, return_pred_indices=False): + quant, diff, (_,_,ind) = self.encode(input) + dec = self.decode(quant) + if return_pred_indices: + return dec, diff, ind + return dec, diff + + def get_input(self, batch, k): + x = batch[k] + if len(x.shape) == 3: + x = x[..., None] + x = x.permute(0, 3, 1, 2).to(memory_format=torch.contiguous_format).float() + if self.batch_resize_range is not None: + lower_size = self.batch_resize_range[0] + upper_size = self.batch_resize_range[1] + if self.global_step <= 4: + # do the first few batches with max size to avoid later oom + new_resize = upper_size + else: + new_resize = np.random.choice(np.arange(lower_size, upper_size+16, 16)) + if new_resize != x.shape[2]: + x = F.interpolate(x, size=new_resize, mode="bicubic") + x = x.detach() + return x + + def training_step(self, batch, batch_idx, optimizer_idx): + # https://github.com/pytorch/pytorch/issues/37142 + # try not to fool the heuristics + x = self.get_input(batch, self.image_key) + xrec, qloss, ind = self(x, return_pred_indices=True) + + if optimizer_idx == 0: + # autoencode + aeloss, log_dict_ae = self.loss(qloss, x, xrec, optimizer_idx, self.global_step, + last_layer=self.get_last_layer(), split="train", + predicted_indices=ind) + + self.log_dict(log_dict_ae, prog_bar=False, logger=True, on_step=True, on_epoch=True) + return aeloss + + if optimizer_idx == 1: + # discriminator + discloss, log_dict_disc = self.loss(qloss, x, xrec, optimizer_idx, self.global_step, + last_layer=self.get_last_layer(), split="train") + self.log_dict(log_dict_disc, prog_bar=False, logger=True, on_step=True, on_epoch=True) + return discloss + + def validation_step(self, batch, batch_idx): + log_dict = self._validation_step(batch, batch_idx) + with self.ema_scope(): + log_dict_ema = self._validation_step(batch, batch_idx, suffix="_ema") + return log_dict + + def _validation_step(self, batch, batch_idx, suffix=""): + x = self.get_input(batch, self.image_key) + xrec, qloss, ind = self(x, return_pred_indices=True) + aeloss, log_dict_ae = self.loss(qloss, x, xrec, 0, + self.global_step, + last_layer=self.get_last_layer(), + split="val"+suffix, + predicted_indices=ind + ) + + discloss, log_dict_disc = self.loss(qloss, x, xrec, 1, + self.global_step, + last_layer=self.get_last_layer(), + split="val"+suffix, + predicted_indices=ind + ) + rec_loss = log_dict_ae[f"val{suffix}/rec_loss"] + self.log(f"val{suffix}/rec_loss", rec_loss, + prog_bar=True, logger=True, on_step=False, on_epoch=True, sync_dist=True) + self.log(f"val{suffix}/aeloss", aeloss, + prog_bar=True, logger=True, on_step=False, on_epoch=True, sync_dist=True) + if version.parse(pl.__version__) >= version.parse('1.4.0'): + del log_dict_ae[f"val{suffix}/rec_loss"] + self.log_dict(log_dict_ae) + self.log_dict(log_dict_disc) + return self.log_dict + + def configure_optimizers(self): + lr_d = self.learning_rate + lr_g = self.lr_g_factor*self.learning_rate + print("lr_d", lr_d) + print("lr_g", lr_g) + opt_ae = torch.optim.Adam(list(self.encoder.parameters())+ + list(self.decoder.parameters())+ + list(self.quantize.parameters())+ + list(self.quant_conv.parameters())+ + list(self.post_quant_conv.parameters()), + lr=lr_g, betas=(0.5, 0.9)) + opt_disc = torch.optim.Adam(self.loss.discriminator.parameters(), + lr=lr_d, betas=(0.5, 0.9)) + + if self.scheduler_config is not None: + scheduler = instantiate_from_config(self.scheduler_config) + + print("Setting up LambdaLR scheduler...") + scheduler = [ + { + 'scheduler': LambdaLR(opt_ae, lr_lambda=scheduler.schedule), + 'interval': 'step', + 'frequency': 1 + }, + { + 'scheduler': LambdaLR(opt_disc, lr_lambda=scheduler.schedule), + 'interval': 'step', + 'frequency': 1 + }, + ] + return [opt_ae, opt_disc], scheduler + return [opt_ae, opt_disc], [] + + def get_last_layer(self): + return self.decoder.conv_out.weight + + def log_images(self, batch, only_inputs=False, plot_ema=False, **kwargs): + log = dict() + x = self.get_input(batch, self.image_key) + x = x.to(self.device) + if only_inputs: + log["inputs"] = x + return log + xrec, _ = self(x) + if x.shape[1] > 3: + # colorize with random projection + assert xrec.shape[1] > 3 + x = self.to_rgb(x) + xrec = self.to_rgb(xrec) + log["inputs"] = x + log["reconstructions"] = xrec + if plot_ema: + with self.ema_scope(): + xrec_ema, _ = self(x) + if x.shape[1] > 3: xrec_ema = self.to_rgb(xrec_ema) + log["reconstructions_ema"] = xrec_ema + return log + + def to_rgb(self, x): + assert self.image_key == "segmentation" + if not hasattr(self, "colorize"): + self.register_buffer("colorize", torch.randn(3, x.shape[1], 1, 1).to(x)) + x = F.conv2d(x, weight=self.colorize) + x = 2.*(x-x.min())/(x.max()-x.min()) - 1. + return x + + +class VQModelInterface(VQModel): + def __init__(self, embed_dim, *args, **kwargs): + super().__init__(embed_dim=embed_dim, *args, **kwargs) + self.embed_dim = embed_dim + + def encode(self, x): + h = self.encoder(x) + h = self.quant_conv(h) + return h + + def decode(self, h, force_not_quantize=False): + # also go through quantization layer + if not force_not_quantize: + quant, emb_loss, info = self.quantize(h) + else: + quant = h + quant = self.post_quant_conv(quant) + dec = self.decoder(quant) + return dec + + +class AutoencoderKL(pl.LightningModule): + def __init__(self, + ddconfig, + lossconfig, + embed_dim, + ckpt_path=None, + ignore_keys=[], + image_key="image", + colorize_nlabels=None, + monitor=None, + ): + super().__init__() + self.image_key = image_key + self.encoder = Encoder(**ddconfig) + self.decoder = Decoder(**ddconfig) + self.loss = instantiate_from_config(lossconfig) + assert ddconfig["double_z"] + self.quant_conv = torch.nn.Conv2d(2*ddconfig["z_channels"], 2*embed_dim, 1) + self.post_quant_conv = torch.nn.Conv2d(embed_dim, ddconfig["z_channels"], 1) + self.embed_dim = embed_dim + if colorize_nlabels is not None: + assert type(colorize_nlabels)==int + self.register_buffer("colorize", torch.randn(3, colorize_nlabels, 1, 1)) + if monitor is not None: + self.monitor = monitor + if ckpt_path is not None: + self.init_from_ckpt(ckpt_path, ignore_keys=ignore_keys) + + def init_from_ckpt(self, path, ignore_keys=list()): + sd = torch.load(path, map_location="cpu")["state_dict"] + keys = list(sd.keys()) + for k in keys: + for ik in ignore_keys: + if k.startswith(ik): + print("Deleting key {} from state_dict.".format(k)) + del sd[k] + self.load_state_dict(sd, strict=False) + print(f"Restored from {path}") + + def encode(self, x): + h = self.encoder(x) + moments = self.quant_conv(h) + posterior = DiagonalGaussianDistribution(moments) + return posterior + + def decode(self, z): + z = self.post_quant_conv(z) + dec = self.decoder(z) + return dec + + def forward(self, input, sample_posterior=True): + posterior = self.encode(input) + if sample_posterior: + z = posterior.sample() + else: + z = posterior.mode() + dec = self.decode(z) + return dec, posterior + + def get_input(self, batch, k): + x = batch[k] + if len(x.shape) == 3: + x = x[..., None] + x = x.permute(0, 3, 1, 2).to(memory_format=torch.contiguous_format).float() + return x + + def training_step(self, batch, batch_idx, optimizer_idx): + inputs = self.get_input(batch, self.image_key) + reconstructions, posterior = self(inputs) + + if optimizer_idx == 0: + # train encoder+decoder+logvar + aeloss, log_dict_ae = self.loss(inputs, reconstructions, posterior, optimizer_idx, self.global_step, + last_layer=self.get_last_layer(), split="train") + self.log("aeloss", aeloss, prog_bar=True, logger=True, on_step=True, on_epoch=True) + self.log_dict(log_dict_ae, prog_bar=False, logger=True, on_step=True, on_epoch=False) + return aeloss + + if optimizer_idx == 1: + # train the discriminator + discloss, log_dict_disc = self.loss(inputs, reconstructions, posterior, optimizer_idx, self.global_step, + last_layer=self.get_last_layer(), split="train") + + self.log("discloss", discloss, prog_bar=True, logger=True, on_step=True, on_epoch=True) + self.log_dict(log_dict_disc, prog_bar=False, logger=True, on_step=True, on_epoch=False) + return discloss + + def validation_step(self, batch, batch_idx): + inputs = self.get_input(batch, self.image_key) + reconstructions, posterior = self(inputs) + aeloss, log_dict_ae = self.loss(inputs, reconstructions, posterior, 0, self.global_step, + last_layer=self.get_last_layer(), split="val") + + discloss, log_dict_disc = self.loss(inputs, reconstructions, posterior, 1, self.global_step, + last_layer=self.get_last_layer(), split="val") + + self.log("val/rec_loss", log_dict_ae["val/rec_loss"]) + self.log_dict(log_dict_ae) + self.log_dict(log_dict_disc) + return self.log_dict + + def configure_optimizers(self): + lr = self.learning_rate + opt_ae = torch.optim.Adam(list(self.encoder.parameters())+ + list(self.decoder.parameters())+ + list(self.quant_conv.parameters())+ + list(self.post_quant_conv.parameters()), + lr=lr, betas=(0.5, 0.9)) + opt_disc = torch.optim.Adam(self.loss.discriminator.parameters(), + lr=lr, betas=(0.5, 0.9)) + return [opt_ae, opt_disc], [] + + def get_last_layer(self): + return self.decoder.conv_out.weight + + @torch.no_grad() + def log_images(self, batch, only_inputs=False, **kwargs): + log = dict() + x = self.get_input(batch, self.image_key) + x = x.to(self.device) + if not only_inputs: + xrec, posterior = self(x) + if x.shape[1] > 3: + # colorize with random projection + assert xrec.shape[1] > 3 + x = self.to_rgb(x) + xrec = self.to_rgb(xrec) + log["samples"] = self.decode(torch.randn_like(posterior.sample())) + log["reconstructions"] = xrec + log["inputs"] = x + return log + + def to_rgb(self, x): + assert self.image_key == "segmentation" + if not hasattr(self, "colorize"): + self.register_buffer("colorize", torch.randn(3, x.shape[1], 1, 1).to(x)) + x = F.conv2d(x, weight=self.colorize) + x = 2.*(x-x.min())/(x.max()-x.min()) - 1. + return x + + +class IdentityFirstStage(torch.nn.Module): + def __init__(self, *args, vq_interface=False, **kwargs): + self.vq_interface = vq_interface # TODO: Should be true by default but check to not break older stuff + super().__init__() + + def encode(self, x, *args, **kwargs): + return x + + def decode(self, x, *args, **kwargs): + return x + + def quantize(self, x, *args, **kwargs): + if self.vq_interface: + return x, None, [None, None, None] + return x + + def forward(self, x, *args, **kwargs): + return x diff --git a/stable_diffusion/ldm/models/diffusion/classifier.py b/stable_diffusion/ldm/models/diffusion/classifier.py new file mode 100644 index 0000000000000000000000000000000000000000..67e98b9d8ffb96a150b517497ace0a242d7163ef --- /dev/null +++ b/stable_diffusion/ldm/models/diffusion/classifier.py @@ -0,0 +1,267 @@ +import os +import torch +import pytorch_lightning as pl +from omegaconf import OmegaConf +from torch.nn import functional as F +from torch.optim import AdamW +from torch.optim.lr_scheduler import LambdaLR +from copy import deepcopy +from einops import rearrange +from glob import glob +from natsort import natsorted + +from ldm.modules.diffusionmodules.openaimodel import EncoderUNetModel, UNetModel +from ldm.util import log_txt_as_img, default, ismap, instantiate_from_config + +__models__ = { + 'class_label': EncoderUNetModel, + 'segmentation': UNetModel +} + + +def disabled_train(self, mode=True): + """Overwrite model.train with this function to make sure train/eval mode + does not change anymore.""" + return self + + +class NoisyLatentImageClassifier(pl.LightningModule): + + def __init__(self, + diffusion_path, + num_classes, + ckpt_path=None, + pool='attention', + label_key=None, + diffusion_ckpt_path=None, + scheduler_config=None, + weight_decay=1.e-2, + log_steps=10, + monitor='val/loss', + *args, + **kwargs): + super().__init__(*args, **kwargs) + self.num_classes = num_classes + # get latest config of diffusion model + diffusion_config = natsorted(glob(os.path.join(diffusion_path, 'configs', '*-project.yaml')))[-1] + self.diffusion_config = OmegaConf.load(diffusion_config).model + self.diffusion_config.params.ckpt_path = diffusion_ckpt_path + self.load_diffusion() + + self.monitor = monitor + self.numd = self.diffusion_model.first_stage_model.encoder.num_resolutions - 1 + self.log_time_interval = self.diffusion_model.num_timesteps // log_steps + self.log_steps = log_steps + + self.label_key = label_key if not hasattr(self.diffusion_model, 'cond_stage_key') \ + else self.diffusion_model.cond_stage_key + + assert self.label_key is not None, 'label_key neither in diffusion model nor in model.params' + + if self.label_key not in __models__: + raise NotImplementedError() + + self.load_classifier(ckpt_path, pool) + + self.scheduler_config = scheduler_config + self.use_scheduler = self.scheduler_config is not None + self.weight_decay = weight_decay + + def init_from_ckpt(self, path, ignore_keys=list(), only_model=False): + sd = torch.load(path, map_location="cpu") + if "state_dict" in list(sd.keys()): + sd = sd["state_dict"] + keys = list(sd.keys()) + for k in keys: + for ik in ignore_keys: + if k.startswith(ik): + print("Deleting key {} from state_dict.".format(k)) + del sd[k] + missing, unexpected = self.load_state_dict(sd, strict=False) if not only_model else self.model.load_state_dict( + sd, strict=False) + print(f"Restored from {path} with {len(missing)} missing and {len(unexpected)} unexpected keys") + if len(missing) > 0: + print(f"Missing Keys: {missing}") + if len(unexpected) > 0: + print(f"Unexpected Keys: {unexpected}") + + def load_diffusion(self): + model = instantiate_from_config(self.diffusion_config) + self.diffusion_model = model.eval() + self.diffusion_model.train = disabled_train + for param in self.diffusion_model.parameters(): + param.requires_grad = False + + def load_classifier(self, ckpt_path, pool): + model_config = deepcopy(self.diffusion_config.params.unet_config.params) + model_config.in_channels = self.diffusion_config.params.unet_config.params.out_channels + model_config.out_channels = self.num_classes + if self.label_key == 'class_label': + model_config.pool = pool + + self.model = __models__[self.label_key](**model_config) + if ckpt_path is not None: + print('#####################################################################') + print(f'load from ckpt "{ckpt_path}"') + print('#####################################################################') + self.init_from_ckpt(ckpt_path) + + @torch.no_grad() + def get_x_noisy(self, x, t, noise=None): + noise = default(noise, lambda: torch.randn_like(x)) + continuous_sqrt_alpha_cumprod = None + if self.diffusion_model.use_continuous_noise: + continuous_sqrt_alpha_cumprod = self.diffusion_model.sample_continuous_noise_level(x.shape[0], t + 1) + # todo: make sure t+1 is correct here + + return self.diffusion_model.q_sample(x_start=x, t=t, noise=noise, + continuous_sqrt_alpha_cumprod=continuous_sqrt_alpha_cumprod) + + def forward(self, x_noisy, t, *args, **kwargs): + return self.model(x_noisy, t) + + @torch.no_grad() + def get_input(self, batch, k): + x = batch[k] + if len(x.shape) == 3: + x = x[..., None] + x = rearrange(x, 'b h w c -> b c h w') + x = x.to(memory_format=torch.contiguous_format).float() + return x + + @torch.no_grad() + def get_conditioning(self, batch, k=None): + if k is None: + k = self.label_key + assert k is not None, 'Needs to provide label key' + + targets = batch[k].to(self.device) + + if self.label_key == 'segmentation': + targets = rearrange(targets, 'b h w c -> b c h w') + for down in range(self.numd): + h, w = targets.shape[-2:] + targets = F.interpolate(targets, size=(h // 2, w // 2), mode='nearest') + + # targets = rearrange(targets,'b c h w -> b h w c') + + return targets + + def compute_top_k(self, logits, labels, k, reduction="mean"): + _, top_ks = torch.topk(logits, k, dim=1) + if reduction == "mean": + return (top_ks == labels[:, None]).float().sum(dim=-1).mean().item() + elif reduction == "none": + return (top_ks == labels[:, None]).float().sum(dim=-1) + + def on_train_epoch_start(self): + # save some memory + self.diffusion_model.model.to('cpu') + + @torch.no_grad() + def write_logs(self, loss, logits, targets): + log_prefix = 'train' if self.training else 'val' + log = {} + log[f"{log_prefix}/loss"] = loss.mean() + log[f"{log_prefix}/acc@1"] = self.compute_top_k( + logits, targets, k=1, reduction="mean" + ) + log[f"{log_prefix}/acc@5"] = self.compute_top_k( + logits, targets, k=5, reduction="mean" + ) + + self.log_dict(log, prog_bar=False, logger=True, on_step=self.training, on_epoch=True) + self.log('loss', log[f"{log_prefix}/loss"], prog_bar=True, logger=False) + self.log('global_step', self.global_step, logger=False, on_epoch=False, prog_bar=True) + lr = self.optimizers().param_groups[0]['lr'] + self.log('lr_abs', lr, on_step=True, logger=True, on_epoch=False, prog_bar=True) + + def shared_step(self, batch, t=None): + x, *_ = self.diffusion_model.get_input(batch, k=self.diffusion_model.first_stage_key) + targets = self.get_conditioning(batch) + if targets.dim() == 4: + targets = targets.argmax(dim=1) + if t is None: + t = torch.randint(0, self.diffusion_model.num_timesteps, (x.shape[0],), device=self.device).long() + else: + t = torch.full(size=(x.shape[0],), fill_value=t, device=self.device).long() + x_noisy = self.get_x_noisy(x, t) + logits = self(x_noisy, t) + + loss = F.cross_entropy(logits, targets, reduction='none') + + self.write_logs(loss.detach(), logits.detach(), targets.detach()) + + loss = loss.mean() + return loss, logits, x_noisy, targets + + def training_step(self, batch, batch_idx): + loss, *_ = self.shared_step(batch) + return loss + + def reset_noise_accs(self): + self.noisy_acc = {t: {'acc@1': [], 'acc@5': []} for t in + range(0, self.diffusion_model.num_timesteps, self.diffusion_model.log_every_t)} + + def on_validation_start(self): + self.reset_noise_accs() + + @torch.no_grad() + def validation_step(self, batch, batch_idx): + loss, *_ = self.shared_step(batch) + + for t in self.noisy_acc: + _, logits, _, targets = self.shared_step(batch, t) + self.noisy_acc[t]['acc@1'].append(self.compute_top_k(logits, targets, k=1, reduction='mean')) + self.noisy_acc[t]['acc@5'].append(self.compute_top_k(logits, targets, k=5, reduction='mean')) + + return loss + + def configure_optimizers(self): + optimizer = AdamW(self.model.parameters(), lr=self.learning_rate, weight_decay=self.weight_decay) + + if self.use_scheduler: + scheduler = instantiate_from_config(self.scheduler_config) + + print("Setting up LambdaLR scheduler...") + scheduler = [ + { + 'scheduler': LambdaLR(optimizer, lr_lambda=scheduler.schedule), + 'interval': 'step', + 'frequency': 1 + }] + return [optimizer], scheduler + + return optimizer + + @torch.no_grad() + def log_images(self, batch, N=8, *args, **kwargs): + log = dict() + x = self.get_input(batch, self.diffusion_model.first_stage_key) + log['inputs'] = x + + y = self.get_conditioning(batch) + + if self.label_key == 'class_label': + y = log_txt_as_img((x.shape[2], x.shape[3]), batch["human_label"]) + log['labels'] = y + + if ismap(y): + log['labels'] = self.diffusion_model.to_rgb(y) + + for step in range(self.log_steps): + current_time = step * self.log_time_interval + + _, logits, x_noisy, _ = self.shared_step(batch, t=current_time) + + log[f'inputs@t{current_time}'] = x_noisy + + pred = F.one_hot(logits.argmax(dim=1), num_classes=self.num_classes) + pred = rearrange(pred, 'b h w c -> b c h w') + + log[f'pred@t{current_time}'] = self.diffusion_model.to_rgb(pred) + + for key in log: + log[key] = log[key][:N] + + return log diff --git a/stable_diffusion/ldm/modules/diffusionmodules/util.py b/stable_diffusion/ldm/modules/diffusionmodules/util.py new file mode 100644 index 0000000000000000000000000000000000000000..a952e6c40308c33edd422da0ce6a60f47e73661b --- /dev/null +++ b/stable_diffusion/ldm/modules/diffusionmodules/util.py @@ -0,0 +1,267 @@ +# adopted from +# https://github.com/openai/improved-diffusion/blob/main/improved_diffusion/gaussian_diffusion.py +# and +# https://github.com/lucidrains/denoising-diffusion-pytorch/blob/7706bdfc6f527f58d33f84b7b522e61e6e3164b3/denoising_diffusion_pytorch/denoising_diffusion_pytorch.py +# and +# https://github.com/openai/guided-diffusion/blob/0ba878e517b276c45d1195eb29f6f5f72659a05b/guided_diffusion/nn.py +# +# thanks! + + +import os +import math +import torch +import torch.nn as nn +import numpy as np +from einops import repeat + +from ldm.util import instantiate_from_config + + +def make_beta_schedule(schedule, n_timestep, linear_start=1e-4, linear_end=2e-2, cosine_s=8e-3): + if schedule == "linear": + betas = ( + torch.linspace(linear_start ** 0.5, linear_end ** 0.5, n_timestep, dtype=torch.float64) ** 2 + ) + + elif schedule == "cosine": + timesteps = ( + torch.arange(n_timestep + 1, dtype=torch.float64) / n_timestep + cosine_s + ) + alphas = timesteps / (1 + cosine_s) * np.pi / 2 + alphas = torch.cos(alphas).pow(2) + alphas = alphas / alphas[0] + betas = 1 - alphas[1:] / alphas[:-1] + betas = np.clip(betas, a_min=0, a_max=0.999) + + elif schedule == "sqrt_linear": + betas = torch.linspace(linear_start, linear_end, n_timestep, dtype=torch.float64) + elif schedule == "sqrt": + betas = torch.linspace(linear_start, linear_end, n_timestep, dtype=torch.float64) ** 0.5 + else: + raise ValueError(f"schedule '{schedule}' unknown.") + return betas.numpy() + + +def make_ddim_timesteps(ddim_discr_method, num_ddim_timesteps, num_ddpm_timesteps, verbose=True): + if ddim_discr_method == 'uniform': + c = num_ddpm_timesteps // num_ddim_timesteps + ddim_timesteps = np.asarray(list(range(0, num_ddpm_timesteps, c))) + elif ddim_discr_method == 'quad': + ddim_timesteps = ((np.linspace(0, np.sqrt(num_ddpm_timesteps * .8), num_ddim_timesteps)) ** 2).astype(int) + else: + raise NotImplementedError(f'There is no ddim discretization method called "{ddim_discr_method}"') + + # assert ddim_timesteps.shape[0] == num_ddim_timesteps + # add one to get the final alpha values right (the ones from first scale to data during sampling) + steps_out = ddim_timesteps + 1 + if verbose: + print(f'Selected timesteps for ddim sampler: {steps_out}') + return steps_out + + +def make_ddim_sampling_parameters(alphacums, ddim_timesteps, eta, verbose=True): + # select alphas for computing the variance schedule + alphas = alphacums[ddim_timesteps] + alphas_prev = np.asarray([alphacums[0]] + alphacums[ddim_timesteps[:-1]].tolist()) + + # according the the formula provided in https://arxiv.org/abs/2010.02502 + sigmas = eta * np.sqrt((1 - alphas_prev) / (1 - alphas) * (1 - alphas / alphas_prev)) + if verbose: + print(f'Selected alphas for ddim sampler: a_t: {alphas}; a_(t-1): {alphas_prev}') + print(f'For the chosen value of eta, which is {eta}, ' + f'this results in the following sigma_t schedule for ddim sampler {sigmas}') + return sigmas, alphas, alphas_prev + + +def betas_for_alpha_bar(num_diffusion_timesteps, alpha_bar, max_beta=0.999): + """ + Create a beta schedule that discretizes the given alpha_t_bar function, + which defines the cumulative product of (1-beta) over time from t = [0,1]. + :param num_diffusion_timesteps: the number of betas to produce. + :param alpha_bar: a lambda that takes an argument t from 0 to 1 and + produces the cumulative product of (1-beta) up to that + part of the diffusion process. + :param max_beta: the maximum beta to use; use values lower than 1 to + prevent singularities. + """ + betas = [] + for i in range(num_diffusion_timesteps): + t1 = i / num_diffusion_timesteps + t2 = (i + 1) / num_diffusion_timesteps + betas.append(min(1 - alpha_bar(t2) / alpha_bar(t1), max_beta)) + return np.array(betas) + + +def extract_into_tensor(a, t, x_shape): + b, *_ = t.shape + out = a.gather(-1, t) + return out.reshape(b, *((1,) * (len(x_shape) - 1))) + + +def checkpoint(func, inputs, params, flag): + """ + Evaluate a function without caching intermediate activations, allowing for + reduced memory at the expense of extra compute in the backward pass. + :param func: the function to evaluate. + :param inputs: the argument sequence to pass to `func`. + :param params: a sequence of parameters `func` depends on but does not + explicitly take as arguments. + :param flag: if False, disable gradient checkpointing. + """ + if flag: + args = tuple(inputs) + tuple(params) + return CheckpointFunction.apply(func, len(inputs), *args) + else: + return func(*inputs) + + +class CheckpointFunction(torch.autograd.Function): + @staticmethod + def forward(ctx, run_function, length, *args): + ctx.run_function = run_function + ctx.input_tensors = list(args[:length]) + ctx.input_params = list(args[length:]) + + with torch.no_grad(): + output_tensors = ctx.run_function(*ctx.input_tensors) + return output_tensors + + @staticmethod + def backward(ctx, *output_grads): + ctx.input_tensors = [x.detach().requires_grad_(True) for x in ctx.input_tensors] + with torch.enable_grad(): + # Fixes a bug where the first op in run_function modifies the + # Tensor storage in place, which is not allowed for detach()'d + # Tensors. + shallow_copies = [x.view_as(x) for x in ctx.input_tensors] + output_tensors = ctx.run_function(*shallow_copies) + input_grads = torch.autograd.grad( + output_tensors, + ctx.input_tensors + ctx.input_params, + output_grads, + allow_unused=True, + ) + del ctx.input_tensors + del ctx.input_params + del output_tensors + return (None, None) + input_grads + + +def timestep_embedding(timesteps, dim, max_period=10000, repeat_only=False): + """ + Create sinusoidal timestep embeddings. + :param timesteps: a 1-D Tensor of N indices, one per batch element. + These may be fractional. + :param dim: the dimension of the output. + :param max_period: controls the minimum frequency of the embeddings. + :return: an [N x dim] Tensor of positional embeddings. + """ + if not repeat_only: + half = dim // 2 + freqs = torch.exp( + -math.log(max_period) * torch.arange(start=0, end=half, dtype=torch.float32) / half + ).to(device=timesteps.device) + args = timesteps[:, None].float() * freqs[None] + embedding = torch.cat([torch.cos(args), torch.sin(args)], dim=-1) + if dim % 2: + embedding = torch.cat([embedding, torch.zeros_like(embedding[:, :1])], dim=-1) + else: + embedding = repeat(timesteps, 'b -> b d', d=dim) + return embedding + + +def zero_module(module): + """ + Zero out the parameters of a module and return it. + """ + for p in module.parameters(): + p.detach().zero_() + return module + + +def scale_module(module, scale): + """ + Scale the parameters of a module and return it. + """ + for p in module.parameters(): + p.detach().mul_(scale) + return module + + +def mean_flat(tensor): + """ + Take the mean over all non-batch dimensions. + """ + return tensor.mean(dim=list(range(1, len(tensor.shape)))) + + +def normalization(channels): + """ + Make a standard normalization layer. + :param channels: number of input channels. + :return: an nn.Module for normalization. + """ + return GroupNorm32(32, channels) + + +# PyTorch 1.7 has SiLU, but we support PyTorch 1.5. +class SiLU(nn.Module): + def forward(self, x): + return x * torch.sigmoid(x) + + +class GroupNorm32(nn.GroupNorm): + def forward(self, x): + return super().forward(x.float()).type(x.dtype) + +def conv_nd(dims, *args, **kwargs): + """ + Create a 1D, 2D, or 3D convolution module. + """ + if dims == 1: + return nn.Conv1d(*args, **kwargs) + elif dims == 2: + return nn.Conv2d(*args, **kwargs) + elif dims == 3: + return nn.Conv3d(*args, **kwargs) + raise ValueError(f"unsupported dimensions: {dims}") + + +def linear(*args, **kwargs): + """ + Create a linear module. + """ + return nn.Linear(*args, **kwargs) + + +def avg_pool_nd(dims, *args, **kwargs): + """ + Create a 1D, 2D, or 3D average pooling module. + """ + if dims == 1: + return nn.AvgPool1d(*args, **kwargs) + elif dims == 2: + return nn.AvgPool2d(*args, **kwargs) + elif dims == 3: + return nn.AvgPool3d(*args, **kwargs) + raise ValueError(f"unsupported dimensions: {dims}") + + +class HybridConditioner(nn.Module): + + def __init__(self, c_concat_config, c_crossattn_config): + super().__init__() + self.concat_conditioner = instantiate_from_config(c_concat_config) + self.crossattn_conditioner = instantiate_from_config(c_crossattn_config) + + def forward(self, c_concat, c_crossattn): + c_concat = self.concat_conditioner(c_concat) + c_crossattn = self.crossattn_conditioner(c_crossattn) + return {'c_concat': [c_concat], 'c_crossattn': [c_crossattn]} + + +def noise_like(shape, device, repeat=False): + repeat_noise = lambda: torch.randn((1, *shape[1:]), device=device).repeat(shape[0], *((1,) * (len(shape) - 1))) + noise = lambda: torch.randn(shape, device=device) + return repeat_noise() if repeat else noise() \ No newline at end of file diff --git a/stable_diffusion/ldm/modules/encoders/modules.py b/stable_diffusion/ldm/modules/encoders/modules.py new file mode 100644 index 0000000000000000000000000000000000000000..8ef4f944f62795c35e0d0b8419465d5a74e2d4b1 --- /dev/null +++ b/stable_diffusion/ldm/modules/encoders/modules.py @@ -0,0 +1,234 @@ +import torch +import torch.nn as nn +from functools import partial +import clip +from einops import rearrange, repeat +from transformers import CLIPTokenizer, CLIPTextModel +import kornia + +from ldm.modules.x_transformer import Encoder, TransformerWrapper # TODO: can we directly rely on lucidrains code and simply add this as a reuirement? --> test + + +class AbstractEncoder(nn.Module): + def __init__(self): + super().__init__() + + def encode(self, *args, **kwargs): + raise NotImplementedError + + + +class ClassEmbedder(nn.Module): + def __init__(self, embed_dim, n_classes=1000, key='class'): + super().__init__() + self.key = key + self.embedding = nn.Embedding(n_classes, embed_dim) + + def forward(self, batch, key=None): + if key is None: + key = self.key + # this is for use in crossattn + c = batch[key][:, None] + c = self.embedding(c) + return c + + +class TransformerEmbedder(AbstractEncoder): + """Some transformer encoder layers""" + def __init__(self, n_embed, n_layer, vocab_size, max_seq_len=77, device="cuda"): + super().__init__() + self.device = device + self.transformer = TransformerWrapper(num_tokens=vocab_size, max_seq_len=max_seq_len, + attn_layers=Encoder(dim=n_embed, depth=n_layer)) + + def forward(self, tokens): + tokens = tokens.to(self.device) # meh + z = self.transformer(tokens, return_embeddings=True) + return z + + def encode(self, x): + return self(x) + + +class BERTTokenizer(AbstractEncoder): + """ Uses a pretrained BERT tokenizer by huggingface. Vocab size: 30522 (?)""" + def __init__(self, device="cuda", vq_interface=True, max_length=77): + super().__init__() + from transformers import BertTokenizerFast # TODO: add to reuquirements + self.tokenizer = BertTokenizerFast.from_pretrained("bert-base-uncased") + self.device = device + self.vq_interface = vq_interface + self.max_length = max_length + + def forward(self, text): + batch_encoding = self.tokenizer(text, truncation=True, max_length=self.max_length, return_length=True, + return_overflowing_tokens=False, padding="max_length", return_tensors="pt") + tokens = batch_encoding["input_ids"].to(self.device) + return tokens + + @torch.no_grad() + def encode(self, text): + tokens = self(text) + if not self.vq_interface: + return tokens + return None, None, [None, None, tokens] + + def decode(self, text): + return text + + +class BERTEmbedder(AbstractEncoder): + """Uses the BERT tokenizr model and add some transformer encoder layers""" + def __init__(self, n_embed, n_layer, vocab_size=30522, max_seq_len=77, + device="cuda",use_tokenizer=True, embedding_dropout=0.0): + super().__init__() + self.use_tknz_fn = use_tokenizer + if self.use_tknz_fn: + self.tknz_fn = BERTTokenizer(vq_interface=False, max_length=max_seq_len) + self.device = device + self.transformer = TransformerWrapper(num_tokens=vocab_size, max_seq_len=max_seq_len, + attn_layers=Encoder(dim=n_embed, depth=n_layer), + emb_dropout=embedding_dropout) + + def forward(self, text): + if self.use_tknz_fn: + tokens = self.tknz_fn(text)#.to(self.device) + else: + tokens = text + z = self.transformer(tokens, return_embeddings=True) + return z + + def encode(self, text): + # output of length 77 + return self(text) + + +class SpatialRescaler(nn.Module): + def __init__(self, + n_stages=1, + method='bilinear', + multiplier=0.5, + in_channels=3, + out_channels=None, + bias=False): + super().__init__() + self.n_stages = n_stages + assert self.n_stages >= 0 + assert method in ['nearest','linear','bilinear','trilinear','bicubic','area'] + self.multiplier = multiplier + self.interpolator = partial(torch.nn.functional.interpolate, mode=method) + self.remap_output = out_channels is not None + if self.remap_output: + print(f'Spatial Rescaler mapping from {in_channels} to {out_channels} channels after resizing.') + self.channel_mapper = nn.Conv2d(in_channels,out_channels,1,bias=bias) + + def forward(self,x): + for stage in range(self.n_stages): + x = self.interpolator(x, scale_factor=self.multiplier) + + + if self.remap_output: + x = self.channel_mapper(x) + return x + + def encode(self, x): + return self(x) + +class FrozenCLIPEmbedder(AbstractEncoder): + """Uses the CLIP transformer encoder for text (from Hugging Face)""" + def __init__(self, version="openai/clip-vit-large-patch14", device="cuda", max_length=77): + super().__init__() + self.tokenizer = CLIPTokenizer.from_pretrained(version) + self.transformer = CLIPTextModel.from_pretrained(version) + self.device = device + self.max_length = max_length + self.freeze() + + def freeze(self): + self.transformer = self.transformer.eval() + for param in self.parameters(): + param.requires_grad = False + + def forward(self, text): + batch_encoding = self.tokenizer(text, truncation=True, max_length=self.max_length, return_length=True, + return_overflowing_tokens=False, padding="max_length", return_tensors="pt") + tokens = batch_encoding["input_ids"].to(self.transformer.device) + outputs = self.transformer(input_ids=tokens) + + z = outputs.last_hidden_state + return z + + def encode(self, text): + return self(text) + + +class FrozenCLIPTextEmbedder(nn.Module): + """ + Uses the CLIP transformer encoder for text. + """ + def __init__(self, version='ViT-L/14', device="cuda", max_length=77, n_repeat=1, normalize=True): + super().__init__() + self.model, _ = clip.load(version, jit=False, device="cpu") + self.device = device + self.max_length = max_length + self.n_repeat = n_repeat + self.normalize = normalize + + def freeze(self): + self.model = self.model.eval() + for param in self.parameters(): + param.requires_grad = False + + def forward(self, text): + tokens = clip.tokenize(text).to(self.device) + z = self.model.encode_text(tokens) + if self.normalize: + z = z / torch.linalg.norm(z, dim=1, keepdim=True) + return z + + def encode(self, text): + z = self(text) + if z.ndim==2: + z = z[:, None, :] + z = repeat(z, 'b 1 d -> b k d', k=self.n_repeat) + return z + + +class FrozenClipImageEmbedder(nn.Module): + """ + Uses the CLIP image encoder. + """ + def __init__( + self, + model, + jit=False, + device='cuda' if torch.cuda.is_available() else 'cpu', + antialias=False, + ): + super().__init__() + self.model, _ = clip.load(name=model, device=device, jit=jit) + + self.antialias = antialias + + self.register_buffer('mean', torch.Tensor([0.48145466, 0.4578275, 0.40821073]), persistent=False) + self.register_buffer('std', torch.Tensor([0.26862954, 0.26130258, 0.27577711]), persistent=False) + + def preprocess(self, x): + # normalize to [0,1] + x = kornia.geometry.resize(x, (224, 224), + interpolation='bicubic',align_corners=True, + antialias=self.antialias) + x = (x + 1.) / 2. + # renormalize according to clip + x = kornia.enhance.normalize(x, self.mean, self.std) + return x + + def forward(self, x): + # x is assumed to be in range [-1,1] + return self.model.encode_image(self.preprocess(x)) + + +if __name__ == "__main__": + from ldm.util import count_params + model = FrozenCLIPEmbedder() + count_params(model, verbose=True) \ No newline at end of file diff --git a/stable_diffusion/ldm/modules/image_degradation/__init__.py b/stable_diffusion/ldm/modules/image_degradation/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7836cada81f90ded99c58d5942eea4c3477f58fc --- /dev/null +++ b/stable_diffusion/ldm/modules/image_degradation/__init__.py @@ -0,0 +1,2 @@ +from ldm.modules.image_degradation.bsrgan import degradation_bsrgan_variant as degradation_fn_bsr +from ldm.modules.image_degradation.bsrgan_light import degradation_bsrgan_variant as degradation_fn_bsr_light diff --git a/stable_diffusion/ldm/modules/image_degradation/bsrgan_light.py b/stable_diffusion/ldm/modules/image_degradation/bsrgan_light.py new file mode 100644 index 0000000000000000000000000000000000000000..9e1f823996bf559e9b015ea9aa2b3cd38dd13af1 --- /dev/null +++ b/stable_diffusion/ldm/modules/image_degradation/bsrgan_light.py @@ -0,0 +1,650 @@ +# -*- coding: utf-8 -*- +import numpy as np +import cv2 +import torch + +from functools import partial +import random +from scipy import ndimage +import scipy +import scipy.stats as ss +from scipy.interpolate import interp2d +from scipy.linalg import orth +import albumentations + +import ldm.modules.image_degradation.utils_image as util + +""" +# -------------------------------------------- +# Super-Resolution +# -------------------------------------------- +# +# Kai Zhang (cskaizhang@gmail.com) +# https://github.com/cszn +# From 2019/03--2021/08 +# -------------------------------------------- +""" + + +def modcrop_np(img, sf): + ''' + Args: + img: numpy image, WxH or WxHxC + sf: scale factor + Return: + cropped image + ''' + w, h = img.shape[:2] + im = np.copy(img) + return im[:w - w % sf, :h - h % sf, ...] + + +""" +# -------------------------------------------- +# anisotropic Gaussian kernels +# -------------------------------------------- +""" + + +def analytic_kernel(k): + """Calculate the X4 kernel from the X2 kernel (for proof see appendix in paper)""" + k_size = k.shape[0] + # Calculate the big kernels size + big_k = np.zeros((3 * k_size - 2, 3 * k_size - 2)) + # Loop over the small kernel to fill the big one + for r in range(k_size): + for c in range(k_size): + big_k[2 * r:2 * r + k_size, 2 * c:2 * c + k_size] += k[r, c] * k + # Crop the edges of the big kernel to ignore very small values and increase run time of SR + crop = k_size // 2 + cropped_big_k = big_k[crop:-crop, crop:-crop] + # Normalize to 1 + return cropped_big_k / cropped_big_k.sum() + + +def anisotropic_Gaussian(ksize=15, theta=np.pi, l1=6, l2=6): + """ generate an anisotropic Gaussian kernel + Args: + ksize : e.g., 15, kernel size + theta : [0, pi], rotation angle range + l1 : [0.1,50], scaling of eigenvalues + l2 : [0.1,l1], scaling of eigenvalues + If l1 = l2, will get an isotropic Gaussian kernel. + Returns: + k : kernel + """ + + v = np.dot(np.array([[np.cos(theta), -np.sin(theta)], [np.sin(theta), np.cos(theta)]]), np.array([1., 0.])) + V = np.array([[v[0], v[1]], [v[1], -v[0]]]) + D = np.array([[l1, 0], [0, l2]]) + Sigma = np.dot(np.dot(V, D), np.linalg.inv(V)) + k = gm_blur_kernel(mean=[0, 0], cov=Sigma, size=ksize) + + return k + + +def gm_blur_kernel(mean, cov, size=15): + center = size / 2.0 + 0.5 + k = np.zeros([size, size]) + for y in range(size): + for x in range(size): + cy = y - center + 1 + cx = x - center + 1 + k[y, x] = ss.multivariate_normal.pdf([cx, cy], mean=mean, cov=cov) + + k = k / np.sum(k) + return k + + +def shift_pixel(x, sf, upper_left=True): + """shift pixel for super-resolution with different scale factors + Args: + x: WxHxC or WxH + sf: scale factor + upper_left: shift direction + """ + h, w = x.shape[:2] + shift = (sf - 1) * 0.5 + xv, yv = np.arange(0, w, 1.0), np.arange(0, h, 1.0) + if upper_left: + x1 = xv + shift + y1 = yv + shift + else: + x1 = xv - shift + y1 = yv - shift + + x1 = np.clip(x1, 0, w - 1) + y1 = np.clip(y1, 0, h - 1) + + if x.ndim == 2: + x = interp2d(xv, yv, x)(x1, y1) + if x.ndim == 3: + for i in range(x.shape[-1]): + x[:, :, i] = interp2d(xv, yv, x[:, :, i])(x1, y1) + + return x + + +def blur(x, k): + ''' + x: image, NxcxHxW + k: kernel, Nx1xhxw + ''' + n, c = x.shape[:2] + p1, p2 = (k.shape[-2] - 1) // 2, (k.shape[-1] - 1) // 2 + x = torch.nn.functional.pad(x, pad=(p1, p2, p1, p2), mode='replicate') + k = k.repeat(1, c, 1, 1) + k = k.view(-1, 1, k.shape[2], k.shape[3]) + x = x.view(1, -1, x.shape[2], x.shape[3]) + x = torch.nn.functional.conv2d(x, k, bias=None, stride=1, padding=0, groups=n * c) + x = x.view(n, c, x.shape[2], x.shape[3]) + + return x + + +def gen_kernel(k_size=np.array([15, 15]), scale_factor=np.array([4, 4]), min_var=0.6, max_var=10., noise_level=0): + """" + # modified version of https://github.com/assafshocher/BlindSR_dataset_generator + # Kai Zhang + # min_var = 0.175 * sf # variance of the gaussian kernel will be sampled between min_var and max_var + # max_var = 2.5 * sf + """ + # Set random eigen-vals (lambdas) and angle (theta) for COV matrix + lambda_1 = min_var + np.random.rand() * (max_var - min_var) + lambda_2 = min_var + np.random.rand() * (max_var - min_var) + theta = np.random.rand() * np.pi # random theta + noise = -noise_level + np.random.rand(*k_size) * noise_level * 2 + + # Set COV matrix using Lambdas and Theta + LAMBDA = np.diag([lambda_1, lambda_2]) + Q = np.array([[np.cos(theta), -np.sin(theta)], + [np.sin(theta), np.cos(theta)]]) + SIGMA = Q @ LAMBDA @ Q.T + INV_SIGMA = np.linalg.inv(SIGMA)[None, None, :, :] + + # Set expectation position (shifting kernel for aligned image) + MU = k_size // 2 - 0.5 * (scale_factor - 1) # - 0.5 * (scale_factor - k_size % 2) + MU = MU[None, None, :, None] + + # Create meshgrid for Gaussian + [X, Y] = np.meshgrid(range(k_size[0]), range(k_size[1])) + Z = np.stack([X, Y], 2)[:, :, :, None] + + # Calcualte Gaussian for every pixel of the kernel + ZZ = Z - MU + ZZ_t = ZZ.transpose(0, 1, 3, 2) + raw_kernel = np.exp(-0.5 * np.squeeze(ZZ_t @ INV_SIGMA @ ZZ)) * (1 + noise) + + # shift the kernel so it will be centered + # raw_kernel_centered = kernel_shift(raw_kernel, scale_factor) + + # Normalize the kernel and return + # kernel = raw_kernel_centered / np.sum(raw_kernel_centered) + kernel = raw_kernel / np.sum(raw_kernel) + return kernel + + +def fspecial_gaussian(hsize, sigma): + hsize = [hsize, hsize] + siz = [(hsize[0] - 1.0) / 2.0, (hsize[1] - 1.0) / 2.0] + std = sigma + [x, y] = np.meshgrid(np.arange(-siz[1], siz[1] + 1), np.arange(-siz[0], siz[0] + 1)) + arg = -(x * x + y * y) / (2 * std * std) + h = np.exp(arg) + h[h < scipy.finfo(float).eps * h.max()] = 0 + sumh = h.sum() + if sumh != 0: + h = h / sumh + return h + + +def fspecial_laplacian(alpha): + alpha = max([0, min([alpha, 1])]) + h1 = alpha / (alpha + 1) + h2 = (1 - alpha) / (alpha + 1) + h = [[h1, h2, h1], [h2, -4 / (alpha + 1), h2], [h1, h2, h1]] + h = np.array(h) + return h + + +def fspecial(filter_type, *args, **kwargs): + ''' + python code from: + https://github.com/ronaldosena/imagens-medicas-2/blob/40171a6c259edec7827a6693a93955de2bd39e76/Aulas/aula_2_-_uniform_filter/matlab_fspecial.py + ''' + if filter_type == 'gaussian': + return fspecial_gaussian(*args, **kwargs) + if filter_type == 'laplacian': + return fspecial_laplacian(*args, **kwargs) + + +""" +# -------------------------------------------- +# degradation models +# -------------------------------------------- +""" + + +def bicubic_degradation(x, sf=3): + ''' + Args: + x: HxWxC image, [0, 1] + sf: down-scale factor + Return: + bicubicly downsampled LR image + ''' + x = util.imresize_np(x, scale=1 / sf) + return x + + +def srmd_degradation(x, k, sf=3): + ''' blur + bicubic downsampling + Args: + x: HxWxC image, [0, 1] + k: hxw, double + sf: down-scale factor + Return: + downsampled LR image + Reference: + @inproceedings{zhang2018learning, + title={Learning a single convolutional super-resolution network for multiple degradations}, + author={Zhang, Kai and Zuo, Wangmeng and Zhang, Lei}, + booktitle={IEEE Conference on Computer Vision and Pattern Recognition}, + pages={3262--3271}, + year={2018} + } + ''' + x = ndimage.filters.convolve(x, np.expand_dims(k, axis=2), mode='wrap') # 'nearest' | 'mirror' + x = bicubic_degradation(x, sf=sf) + return x + + +def dpsr_degradation(x, k, sf=3): + ''' bicubic downsampling + blur + Args: + x: HxWxC image, [0, 1] + k: hxw, double + sf: down-scale factor + Return: + downsampled LR image + Reference: + @inproceedings{zhang2019deep, + title={Deep Plug-and-Play Super-Resolution for Arbitrary Blur Kernels}, + author={Zhang, Kai and Zuo, Wangmeng and Zhang, Lei}, + booktitle={IEEE Conference on Computer Vision and Pattern Recognition}, + pages={1671--1681}, + year={2019} + } + ''' + x = bicubic_degradation(x, sf=sf) + x = ndimage.filters.convolve(x, np.expand_dims(k, axis=2), mode='wrap') + return x + + +def classical_degradation(x, k, sf=3): + ''' blur + downsampling + Args: + x: HxWxC image, [0, 1]/[0, 255] + k: hxw, double + sf: down-scale factor + Return: + downsampled LR image + ''' + x = ndimage.filters.convolve(x, np.expand_dims(k, axis=2), mode='wrap') + # x = filters.correlate(x, np.expand_dims(np.flip(k), axis=2)) + st = 0 + return x[st::sf, st::sf, ...] + + +def add_sharpening(img, weight=0.5, radius=50, threshold=10): + """USM sharpening. borrowed from real-ESRGAN + Input image: I; Blurry image: B. + 1. K = I + weight * (I - B) + 2. Mask = 1 if abs(I - B) > threshold, else: 0 + 3. Blur mask: + 4. Out = Mask * K + (1 - Mask) * I + Args: + img (Numpy array): Input image, HWC, BGR; float32, [0, 1]. + weight (float): Sharp weight. Default: 1. + radius (float): Kernel size of Gaussian blur. Default: 50. + threshold (int): + """ + if radius % 2 == 0: + radius += 1 + blur = cv2.GaussianBlur(img, (radius, radius), 0) + residual = img - blur + mask = np.abs(residual) * 255 > threshold + mask = mask.astype('float32') + soft_mask = cv2.GaussianBlur(mask, (radius, radius), 0) + + K = img + weight * residual + K = np.clip(K, 0, 1) + return soft_mask * K + (1 - soft_mask) * img + + +def add_blur(img, sf=4): + wd2 = 4.0 + sf + wd = 2.0 + 0.2 * sf + + wd2 = wd2/4 + wd = wd/4 + + if random.random() < 0.5: + l1 = wd2 * random.random() + l2 = wd2 * random.random() + k = anisotropic_Gaussian(ksize=random.randint(2, 11) + 3, theta=random.random() * np.pi, l1=l1, l2=l2) + else: + k = fspecial('gaussian', random.randint(2, 4) + 3, wd * random.random()) + img = ndimage.filters.convolve(img, np.expand_dims(k, axis=2), mode='mirror') + + return img + + +def add_resize(img, sf=4): + rnum = np.random.rand() + if rnum > 0.8: # up + sf1 = random.uniform(1, 2) + elif rnum < 0.7: # down + sf1 = random.uniform(0.5 / sf, 1) + else: + sf1 = 1.0 + img = cv2.resize(img, (int(sf1 * img.shape[1]), int(sf1 * img.shape[0])), interpolation=random.choice([1, 2, 3])) + img = np.clip(img, 0.0, 1.0) + + return img + + +# def add_Gaussian_noise(img, noise_level1=2, noise_level2=25): +# noise_level = random.randint(noise_level1, noise_level2) +# rnum = np.random.rand() +# if rnum > 0.6: # add color Gaussian noise +# img += np.random.normal(0, noise_level / 255.0, img.shape).astype(np.float32) +# elif rnum < 0.4: # add grayscale Gaussian noise +# img += np.random.normal(0, noise_level / 255.0, (*img.shape[:2], 1)).astype(np.float32) +# else: # add noise +# L = noise_level2 / 255. +# D = np.diag(np.random.rand(3)) +# U = orth(np.random.rand(3, 3)) +# conv = np.dot(np.dot(np.transpose(U), D), U) +# img += np.random.multivariate_normal([0, 0, 0], np.abs(L ** 2 * conv), img.shape[:2]).astype(np.float32) +# img = np.clip(img, 0.0, 1.0) +# return img + +def add_Gaussian_noise(img, noise_level1=2, noise_level2=25): + noise_level = random.randint(noise_level1, noise_level2) + rnum = np.random.rand() + if rnum > 0.6: # add color Gaussian noise + img = img + np.random.normal(0, noise_level / 255.0, img.shape).astype(np.float32) + elif rnum < 0.4: # add grayscale Gaussian noise + img = img + np.random.normal(0, noise_level / 255.0, (*img.shape[:2], 1)).astype(np.float32) + else: # add noise + L = noise_level2 / 255. + D = np.diag(np.random.rand(3)) + U = orth(np.random.rand(3, 3)) + conv = np.dot(np.dot(np.transpose(U), D), U) + img = img + np.random.multivariate_normal([0, 0, 0], np.abs(L ** 2 * conv), img.shape[:2]).astype(np.float32) + img = np.clip(img, 0.0, 1.0) + return img + + +def add_speckle_noise(img, noise_level1=2, noise_level2=25): + noise_level = random.randint(noise_level1, noise_level2) + img = np.clip(img, 0.0, 1.0) + rnum = random.random() + if rnum > 0.6: + img += img * np.random.normal(0, noise_level / 255.0, img.shape).astype(np.float32) + elif rnum < 0.4: + img += img * np.random.normal(0, noise_level / 255.0, (*img.shape[:2], 1)).astype(np.float32) + else: + L = noise_level2 / 255. + D = np.diag(np.random.rand(3)) + U = orth(np.random.rand(3, 3)) + conv = np.dot(np.dot(np.transpose(U), D), U) + img += img * np.random.multivariate_normal([0, 0, 0], np.abs(L ** 2 * conv), img.shape[:2]).astype(np.float32) + img = np.clip(img, 0.0, 1.0) + return img + + +def add_Poisson_noise(img): + img = np.clip((img * 255.0).round(), 0, 255) / 255. + vals = 10 ** (2 * random.random() + 2.0) # [2, 4] + if random.random() < 0.5: + img = np.random.poisson(img * vals).astype(np.float32) / vals + else: + img_gray = np.dot(img[..., :3], [0.299, 0.587, 0.114]) + img_gray = np.clip((img_gray * 255.0).round(), 0, 255) / 255. + noise_gray = np.random.poisson(img_gray * vals).astype(np.float32) / vals - img_gray + img += noise_gray[:, :, np.newaxis] + img = np.clip(img, 0.0, 1.0) + return img + + +def add_JPEG_noise(img): + quality_factor = random.randint(80, 95) + img = cv2.cvtColor(util.single2uint(img), cv2.COLOR_RGB2BGR) + result, encimg = cv2.imencode('.jpg', img, [int(cv2.IMWRITE_JPEG_QUALITY), quality_factor]) + img = cv2.imdecode(encimg, 1) + img = cv2.cvtColor(util.uint2single(img), cv2.COLOR_BGR2RGB) + return img + + +def random_crop(lq, hq, sf=4, lq_patchsize=64): + h, w = lq.shape[:2] + rnd_h = random.randint(0, h - lq_patchsize) + rnd_w = random.randint(0, w - lq_patchsize) + lq = lq[rnd_h:rnd_h + lq_patchsize, rnd_w:rnd_w + lq_patchsize, :] + + rnd_h_H, rnd_w_H = int(rnd_h * sf), int(rnd_w * sf) + hq = hq[rnd_h_H:rnd_h_H + lq_patchsize * sf, rnd_w_H:rnd_w_H + lq_patchsize * sf, :] + return lq, hq + + +def degradation_bsrgan(img, sf=4, lq_patchsize=72, isp_model=None): + """ + This is the degradation model of BSRGAN from the paper + "Designing a Practical Degradation Model for Deep Blind Image Super-Resolution" + ---------- + img: HXWXC, [0, 1], its size should be large than (lq_patchsizexsf)x(lq_patchsizexsf) + sf: scale factor + isp_model: camera ISP model + Returns + ------- + img: low-quality patch, size: lq_patchsizeXlq_patchsizeXC, range: [0, 1] + hq: corresponding high-quality patch, size: (lq_patchsizexsf)X(lq_patchsizexsf)XC, range: [0, 1] + """ + isp_prob, jpeg_prob, scale2_prob = 0.25, 0.9, 0.25 + sf_ori = sf + + h1, w1 = img.shape[:2] + img = img.copy()[:w1 - w1 % sf, :h1 - h1 % sf, ...] # mod crop + h, w = img.shape[:2] + + if h < lq_patchsize * sf or w < lq_patchsize * sf: + raise ValueError(f'img size ({h1}X{w1}) is too small!') + + hq = img.copy() + + if sf == 4 and random.random() < scale2_prob: # downsample1 + if np.random.rand() < 0.5: + img = cv2.resize(img, (int(1 / 2 * img.shape[1]), int(1 / 2 * img.shape[0])), + interpolation=random.choice([1, 2, 3])) + else: + img = util.imresize_np(img, 1 / 2, True) + img = np.clip(img, 0.0, 1.0) + sf = 2 + + shuffle_order = random.sample(range(7), 7) + idx1, idx2 = shuffle_order.index(2), shuffle_order.index(3) + if idx1 > idx2: # keep downsample3 last + shuffle_order[idx1], shuffle_order[idx2] = shuffle_order[idx2], shuffle_order[idx1] + + for i in shuffle_order: + + if i == 0: + img = add_blur(img, sf=sf) + + elif i == 1: + img = add_blur(img, sf=sf) + + elif i == 2: + a, b = img.shape[1], img.shape[0] + # downsample2 + if random.random() < 0.75: + sf1 = random.uniform(1, 2 * sf) + img = cv2.resize(img, (int(1 / sf1 * img.shape[1]), int(1 / sf1 * img.shape[0])), + interpolation=random.choice([1, 2, 3])) + else: + k = fspecial('gaussian', 25, random.uniform(0.1, 0.6 * sf)) + k_shifted = shift_pixel(k, sf) + k_shifted = k_shifted / k_shifted.sum() # blur with shifted kernel + img = ndimage.filters.convolve(img, np.expand_dims(k_shifted, axis=2), mode='mirror') + img = img[0::sf, 0::sf, ...] # nearest downsampling + img = np.clip(img, 0.0, 1.0) + + elif i == 3: + # downsample3 + img = cv2.resize(img, (int(1 / sf * a), int(1 / sf * b)), interpolation=random.choice([1, 2, 3])) + img = np.clip(img, 0.0, 1.0) + + elif i == 4: + # add Gaussian noise + img = add_Gaussian_noise(img, noise_level1=2, noise_level2=8) + + elif i == 5: + # add JPEG noise + if random.random() < jpeg_prob: + img = add_JPEG_noise(img) + + elif i == 6: + # add processed camera sensor noise + if random.random() < isp_prob and isp_model is not None: + with torch.no_grad(): + img, hq = isp_model.forward(img.copy(), hq) + + # add final JPEG compression noise + img = add_JPEG_noise(img) + + # random crop + img, hq = random_crop(img, hq, sf_ori, lq_patchsize) + + return img, hq + + +# todo no isp_model? +def degradation_bsrgan_variant(image, sf=4, isp_model=None): + """ + This is the degradation model of BSRGAN from the paper + "Designing a Practical Degradation Model for Deep Blind Image Super-Resolution" + ---------- + sf: scale factor + isp_model: camera ISP model + Returns + ------- + img: low-quality patch, size: lq_patchsizeXlq_patchsizeXC, range: [0, 1] + hq: corresponding high-quality patch, size: (lq_patchsizexsf)X(lq_patchsizexsf)XC, range: [0, 1] + """ + image = util.uint2single(image) + isp_prob, jpeg_prob, scale2_prob = 0.25, 0.9, 0.25 + sf_ori = sf + + h1, w1 = image.shape[:2] + image = image.copy()[:w1 - w1 % sf, :h1 - h1 % sf, ...] # mod crop + h, w = image.shape[:2] + + hq = image.copy() + + if sf == 4 and random.random() < scale2_prob: # downsample1 + if np.random.rand() < 0.5: + image = cv2.resize(image, (int(1 / 2 * image.shape[1]), int(1 / 2 * image.shape[0])), + interpolation=random.choice([1, 2, 3])) + else: + image = util.imresize_np(image, 1 / 2, True) + image = np.clip(image, 0.0, 1.0) + sf = 2 + + shuffle_order = random.sample(range(7), 7) + idx1, idx2 = shuffle_order.index(2), shuffle_order.index(3) + if idx1 > idx2: # keep downsample3 last + shuffle_order[idx1], shuffle_order[idx2] = shuffle_order[idx2], shuffle_order[idx1] + + for i in shuffle_order: + + if i == 0: + image = add_blur(image, sf=sf) + + # elif i == 1: + # image = add_blur(image, sf=sf) + + if i == 0: + pass + + elif i == 2: + a, b = image.shape[1], image.shape[0] + # downsample2 + if random.random() < 0.8: + sf1 = random.uniform(1, 2 * sf) + image = cv2.resize(image, (int(1 / sf1 * image.shape[1]), int(1 / sf1 * image.shape[0])), + interpolation=random.choice([1, 2, 3])) + else: + k = fspecial('gaussian', 25, random.uniform(0.1, 0.6 * sf)) + k_shifted = shift_pixel(k, sf) + k_shifted = k_shifted / k_shifted.sum() # blur with shifted kernel + image = ndimage.filters.convolve(image, np.expand_dims(k_shifted, axis=2), mode='mirror') + image = image[0::sf, 0::sf, ...] # nearest downsampling + + image = np.clip(image, 0.0, 1.0) + + elif i == 3: + # downsample3 + image = cv2.resize(image, (int(1 / sf * a), int(1 / sf * b)), interpolation=random.choice([1, 2, 3])) + image = np.clip(image, 0.0, 1.0) + + elif i == 4: + # add Gaussian noise + image = add_Gaussian_noise(image, noise_level1=1, noise_level2=2) + + elif i == 5: + # add JPEG noise + if random.random() < jpeg_prob: + image = add_JPEG_noise(image) + # + # elif i == 6: + # # add processed camera sensor noise + # if random.random() < isp_prob and isp_model is not None: + # with torch.no_grad(): + # img, hq = isp_model.forward(img.copy(), hq) + + # add final JPEG compression noise + image = add_JPEG_noise(image) + image = util.single2uint(image) + example = {"image": image} + return example + + + + +if __name__ == '__main__': + print("hey") + img = util.imread_uint('utils/test.png', 3) + img = img[:448, :448] + h = img.shape[0] // 4 + print("resizing to", h) + sf = 4 + deg_fn = partial(degradation_bsrgan_variant, sf=sf) + for i in range(20): + print(i) + img_hq = img + img_lq = deg_fn(img)["image"] + img_hq, img_lq = util.uint2single(img_hq), util.uint2single(img_lq) + print(img_lq) + img_lq_bicubic = albumentations.SmallestMaxSize(max_size=h, interpolation=cv2.INTER_CUBIC)(image=img_hq)["image"] + print(img_lq.shape) + print("bicubic", img_lq_bicubic.shape) + print(img_hq.shape) + lq_nearest = cv2.resize(util.single2uint(img_lq), (int(sf * img_lq.shape[1]), int(sf * img_lq.shape[0])), + interpolation=0) + lq_bicubic_nearest = cv2.resize(util.single2uint(img_lq_bicubic), + (int(sf * img_lq.shape[1]), int(sf * img_lq.shape[0])), + interpolation=0) + img_concat = np.concatenate([lq_bicubic_nearest, lq_nearest, util.single2uint(img_hq)], axis=1) + util.imsave(img_concat, str(i) + '.png') diff --git a/stable_diffusion/ldm/modules/image_degradation/utils/test.png b/stable_diffusion/ldm/modules/image_degradation/utils/test.png new file mode 100644 index 0000000000000000000000000000000000000000..e720ed04ac7e1e7938d367e692fb6a742c54a24c --- /dev/null +++ b/stable_diffusion/ldm/modules/image_degradation/utils/test.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e516278f0d3e85e84cfb55b43338e12d5896a0ee3833aafdf378025457d753 +size 441072 diff --git a/stable_diffusion/ldm/modules/image_degradation/utils_image.py b/stable_diffusion/ldm/modules/image_degradation/utils_image.py new file mode 100644 index 0000000000000000000000000000000000000000..0175f155ad900ae33c3c46ed87f49b352e3faf98 --- /dev/null +++ b/stable_diffusion/ldm/modules/image_degradation/utils_image.py @@ -0,0 +1,916 @@ +import os +import math +import random +import numpy as np +import torch +import cv2 +from torchvision.utils import make_grid +from datetime import datetime +#import matplotlib.pyplot as plt # TODO: check with Dominik, also bsrgan.py vs bsrgan_light.py + + +os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE" + + +''' +# -------------------------------------------- +# Kai Zhang (github: https://github.com/cszn) +# 03/Mar/2019 +# -------------------------------------------- +# https://github.com/twhui/SRGAN-pyTorch +# https://github.com/xinntao/BasicSR +# -------------------------------------------- +''' + + +IMG_EXTENSIONS = ['.jpg', '.JPG', '.jpeg', '.JPEG', '.png', '.PNG', '.ppm', '.PPM', '.bmp', '.BMP', '.tif'] + + +def is_image_file(filename): + return any(filename.endswith(extension) for extension in IMG_EXTENSIONS) + + +def get_timestamp(): + return datetime.now().strftime('%y%m%d-%H%M%S') + + +def imshow(x, title=None, cbar=False, figsize=None): + plt.figure(figsize=figsize) + plt.imshow(np.squeeze(x), interpolation='nearest', cmap='gray') + if title: + plt.title(title) + if cbar: + plt.colorbar() + plt.show() + + +def surf(Z, cmap='rainbow', figsize=None): + plt.figure(figsize=figsize) + ax3 = plt.axes(projection='3d') + + w, h = Z.shape[:2] + xx = np.arange(0,w,1) + yy = np.arange(0,h,1) + X, Y = np.meshgrid(xx, yy) + ax3.plot_surface(X,Y,Z,cmap=cmap) + #ax3.contour(X,Y,Z, zdim='z',offset=-2,cmap=cmap) + plt.show() + + +''' +# -------------------------------------------- +# get image pathes +# -------------------------------------------- +''' + + +def get_image_paths(dataroot): + paths = None # return None if dataroot is None + if dataroot is not None: + paths = sorted(_get_paths_from_images(dataroot)) + return paths + + +def _get_paths_from_images(path): + assert os.path.isdir(path), '{:s} is not a valid directory'.format(path) + images = [] + for dirpath, _, fnames in sorted(os.walk(path)): + for fname in sorted(fnames): + if is_image_file(fname): + img_path = os.path.join(dirpath, fname) + images.append(img_path) + assert images, '{:s} has no valid image file'.format(path) + return images + + +''' +# -------------------------------------------- +# split large images into small images +# -------------------------------------------- +''' + + +def patches_from_image(img, p_size=512, p_overlap=64, p_max=800): + w, h = img.shape[:2] + patches = [] + if w > p_max and h > p_max: + w1 = list(np.arange(0, w-p_size, p_size-p_overlap, dtype=np.int)) + h1 = list(np.arange(0, h-p_size, p_size-p_overlap, dtype=np.int)) + w1.append(w-p_size) + h1.append(h-p_size) +# print(w1) +# print(h1) + for i in w1: + for j in h1: + patches.append(img[i:i+p_size, j:j+p_size,:]) + else: + patches.append(img) + + return patches + + +def imssave(imgs, img_path): + """ + imgs: list, N images of size WxHxC + """ + img_name, ext = os.path.splitext(os.path.basename(img_path)) + + for i, img in enumerate(imgs): + if img.ndim == 3: + img = img[:, :, [2, 1, 0]] + new_path = os.path.join(os.path.dirname(img_path), img_name+str('_s{:04d}'.format(i))+'.png') + cv2.imwrite(new_path, img) + + +def split_imageset(original_dataroot, taget_dataroot, n_channels=3, p_size=800, p_overlap=96, p_max=1000): + """ + split the large images from original_dataroot into small overlapped images with size (p_size)x(p_size), + and save them into taget_dataroot; only the images with larger size than (p_max)x(p_max) + will be splitted. + Args: + original_dataroot: + taget_dataroot: + p_size: size of small images + p_overlap: patch size in training is a good choice + p_max: images with smaller size than (p_max)x(p_max) keep unchanged. + """ + paths = get_image_paths(original_dataroot) + for img_path in paths: + # img_name, ext = os.path.splitext(os.path.basename(img_path)) + img = imread_uint(img_path, n_channels=n_channels) + patches = patches_from_image(img, p_size, p_overlap, p_max) + imssave(patches, os.path.join(taget_dataroot,os.path.basename(img_path))) + #if original_dataroot == taget_dataroot: + #del img_path + +''' +# -------------------------------------------- +# makedir +# -------------------------------------------- +''' + + +def mkdir(path): + if not os.path.exists(path): + os.makedirs(path) + + +def mkdirs(paths): + if isinstance(paths, str): + mkdir(paths) + else: + for path in paths: + mkdir(path) + + +def mkdir_and_rename(path): + if os.path.exists(path): + new_name = path + '_archived_' + get_timestamp() + print('Path already exists. Rename it to [{:s}]'.format(new_name)) + os.rename(path, new_name) + os.makedirs(path) + + +''' +# -------------------------------------------- +# read image from path +# opencv is fast, but read BGR numpy image +# -------------------------------------------- +''' + + +# -------------------------------------------- +# get uint8 image of size HxWxn_channles (RGB) +# -------------------------------------------- +def imread_uint(path, n_channels=3): + # input: path + # output: HxWx3(RGB or GGG), or HxWx1 (G) + if n_channels == 1: + img = cv2.imread(path, 0) # cv2.IMREAD_GRAYSCALE + img = np.expand_dims(img, axis=2) # HxWx1 + elif n_channels == 3: + img = cv2.imread(path, cv2.IMREAD_UNCHANGED) # BGR or G + if img.ndim == 2: + img = cv2.cvtColor(img, cv2.COLOR_GRAY2RGB) # GGG + else: + img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB) # RGB + return img + + +# -------------------------------------------- +# matlab's imwrite +# -------------------------------------------- +def imsave(img, img_path): + img = np.squeeze(img) + if img.ndim == 3: + img = img[:, :, [2, 1, 0]] + cv2.imwrite(img_path, img) + +def imwrite(img, img_path): + img = np.squeeze(img) + if img.ndim == 3: + img = img[:, :, [2, 1, 0]] + cv2.imwrite(img_path, img) + + + +# -------------------------------------------- +# get single image of size HxWxn_channles (BGR) +# -------------------------------------------- +def read_img(path): + # read image by cv2 + # return: Numpy float32, HWC, BGR, [0,1] + img = cv2.imread(path, cv2.IMREAD_UNCHANGED) # cv2.IMREAD_GRAYSCALE + img = img.astype(np.float32) / 255. + if img.ndim == 2: + img = np.expand_dims(img, axis=2) + # some images have 4 channels + if img.shape[2] > 3: + img = img[:, :, :3] + return img + + +''' +# -------------------------------------------- +# image format conversion +# -------------------------------------------- +# numpy(single) <---> numpy(unit) +# numpy(single) <---> tensor +# numpy(unit) <---> tensor +# -------------------------------------------- +''' + + +# -------------------------------------------- +# numpy(single) [0, 1] <---> numpy(unit) +# -------------------------------------------- + + +def uint2single(img): + + return np.float32(img/255.) + + +def single2uint(img): + + return np.uint8((img.clip(0, 1)*255.).round()) + + +def uint162single(img): + + return np.float32(img/65535.) + + +def single2uint16(img): + + return np.uint16((img.clip(0, 1)*65535.).round()) + + +# -------------------------------------------- +# numpy(unit) (HxWxC or HxW) <---> tensor +# -------------------------------------------- + + +# convert uint to 4-dimensional torch tensor +def uint2tensor4(img): + if img.ndim == 2: + img = np.expand_dims(img, axis=2) + return torch.from_numpy(np.ascontiguousarray(img)).permute(2, 0, 1).float().div(255.).unsqueeze(0) + + +# convert uint to 3-dimensional torch tensor +def uint2tensor3(img): + if img.ndim == 2: + img = np.expand_dims(img, axis=2) + return torch.from_numpy(np.ascontiguousarray(img)).permute(2, 0, 1).float().div(255.) + + +# convert 2/3/4-dimensional torch tensor to uint +def tensor2uint(img): + img = img.data.squeeze().float().clamp_(0, 1).cpu().numpy() + if img.ndim == 3: + img = np.transpose(img, (1, 2, 0)) + return np.uint8((img*255.0).round()) + + +# -------------------------------------------- +# numpy(single) (HxWxC) <---> tensor +# -------------------------------------------- + + +# convert single (HxWxC) to 3-dimensional torch tensor +def single2tensor3(img): + return torch.from_numpy(np.ascontiguousarray(img)).permute(2, 0, 1).float() + + +# convert single (HxWxC) to 4-dimensional torch tensor +def single2tensor4(img): + return torch.from_numpy(np.ascontiguousarray(img)).permute(2, 0, 1).float().unsqueeze(0) + + +# convert torch tensor to single +def tensor2single(img): + img = img.data.squeeze().float().cpu().numpy() + if img.ndim == 3: + img = np.transpose(img, (1, 2, 0)) + + return img + +# convert torch tensor to single +def tensor2single3(img): + img = img.data.squeeze().float().cpu().numpy() + if img.ndim == 3: + img = np.transpose(img, (1, 2, 0)) + elif img.ndim == 2: + img = np.expand_dims(img, axis=2) + return img + + +def single2tensor5(img): + return torch.from_numpy(np.ascontiguousarray(img)).permute(2, 0, 1, 3).float().unsqueeze(0) + + +def single32tensor5(img): + return torch.from_numpy(np.ascontiguousarray(img)).float().unsqueeze(0).unsqueeze(0) + + +def single42tensor4(img): + return torch.from_numpy(np.ascontiguousarray(img)).permute(2, 0, 1, 3).float() + + +# from skimage.io import imread, imsave +def tensor2img(tensor, out_type=np.uint8, min_max=(0, 1)): + ''' + Converts a torch Tensor into an image Numpy array of BGR channel order + Input: 4D(B,(3/1),H,W), 3D(C,H,W), or 2D(H,W), any range, RGB channel order + Output: 3D(H,W,C) or 2D(H,W), [0,255], np.uint8 (default) + ''' + tensor = tensor.squeeze().float().cpu().clamp_(*min_max) # squeeze first, then clamp + tensor = (tensor - min_max[0]) / (min_max[1] - min_max[0]) # to range [0,1] + n_dim = tensor.dim() + if n_dim == 4: + n_img = len(tensor) + img_np = make_grid(tensor, nrow=int(math.sqrt(n_img)), normalize=False).numpy() + img_np = np.transpose(img_np[[2, 1, 0], :, :], (1, 2, 0)) # HWC, BGR + elif n_dim == 3: + img_np = tensor.numpy() + img_np = np.transpose(img_np[[2, 1, 0], :, :], (1, 2, 0)) # HWC, BGR + elif n_dim == 2: + img_np = tensor.numpy() + else: + raise TypeError( + 'Only support 4D, 3D and 2D tensor. But received with dimension: {:d}'.format(n_dim)) + if out_type == np.uint8: + img_np = (img_np * 255.0).round() + # Important. Unlike matlab, numpy.unit8() WILL NOT round by default. + return img_np.astype(out_type) + + +''' +# -------------------------------------------- +# Augmentation, flipe and/or rotate +# -------------------------------------------- +# The following two are enough. +# (1) augmet_img: numpy image of WxHxC or WxH +# (2) augment_img_tensor4: tensor image 1xCxWxH +# -------------------------------------------- +''' + + +def augment_img(img, mode=0): + '''Kai Zhang (github: https://github.com/cszn) + ''' + if mode == 0: + return img + elif mode == 1: + return np.flipud(np.rot90(img)) + elif mode == 2: + return np.flipud(img) + elif mode == 3: + return np.rot90(img, k=3) + elif mode == 4: + return np.flipud(np.rot90(img, k=2)) + elif mode == 5: + return np.rot90(img) + elif mode == 6: + return np.rot90(img, k=2) + elif mode == 7: + return np.flipud(np.rot90(img, k=3)) + + +def augment_img_tensor4(img, mode=0): + '''Kai Zhang (github: https://github.com/cszn) + ''' + if mode == 0: + return img + elif mode == 1: + return img.rot90(1, [2, 3]).flip([2]) + elif mode == 2: + return img.flip([2]) + elif mode == 3: + return img.rot90(3, [2, 3]) + elif mode == 4: + return img.rot90(2, [2, 3]).flip([2]) + elif mode == 5: + return img.rot90(1, [2, 3]) + elif mode == 6: + return img.rot90(2, [2, 3]) + elif mode == 7: + return img.rot90(3, [2, 3]).flip([2]) + + +def augment_img_tensor(img, mode=0): + '''Kai Zhang (github: https://github.com/cszn) + ''' + img_size = img.size() + img_np = img.data.cpu().numpy() + if len(img_size) == 3: + img_np = np.transpose(img_np, (1, 2, 0)) + elif len(img_size) == 4: + img_np = np.transpose(img_np, (2, 3, 1, 0)) + img_np = augment_img(img_np, mode=mode) + img_tensor = torch.from_numpy(np.ascontiguousarray(img_np)) + if len(img_size) == 3: + img_tensor = img_tensor.permute(2, 0, 1) + elif len(img_size) == 4: + img_tensor = img_tensor.permute(3, 2, 0, 1) + + return img_tensor.type_as(img) + + +def augment_img_np3(img, mode=0): + if mode == 0: + return img + elif mode == 1: + return img.transpose(1, 0, 2) + elif mode == 2: + return img[::-1, :, :] + elif mode == 3: + img = img[::-1, :, :] + img = img.transpose(1, 0, 2) + return img + elif mode == 4: + return img[:, ::-1, :] + elif mode == 5: + img = img[:, ::-1, :] + img = img.transpose(1, 0, 2) + return img + elif mode == 6: + img = img[:, ::-1, :] + img = img[::-1, :, :] + return img + elif mode == 7: + img = img[:, ::-1, :] + img = img[::-1, :, :] + img = img.transpose(1, 0, 2) + return img + + +def augment_imgs(img_list, hflip=True, rot=True): + # horizontal flip OR rotate + hflip = hflip and random.random() < 0.5 + vflip = rot and random.random() < 0.5 + rot90 = rot and random.random() < 0.5 + + def _augment(img): + if hflip: + img = img[:, ::-1, :] + if vflip: + img = img[::-1, :, :] + if rot90: + img = img.transpose(1, 0, 2) + return img + + return [_augment(img) for img in img_list] + + +''' +# -------------------------------------------- +# modcrop and shave +# -------------------------------------------- +''' + + +def modcrop(img_in, scale): + # img_in: Numpy, HWC or HW + img = np.copy(img_in) + if img.ndim == 2: + H, W = img.shape + H_r, W_r = H % scale, W % scale + img = img[:H - H_r, :W - W_r] + elif img.ndim == 3: + H, W, C = img.shape + H_r, W_r = H % scale, W % scale + img = img[:H - H_r, :W - W_r, :] + else: + raise ValueError('Wrong img ndim: [{:d}].'.format(img.ndim)) + return img + + +def shave(img_in, border=0): + # img_in: Numpy, HWC or HW + img = np.copy(img_in) + h, w = img.shape[:2] + img = img[border:h-border, border:w-border] + return img + + +''' +# -------------------------------------------- +# image processing process on numpy image +# channel_convert(in_c, tar_type, img_list): +# rgb2ycbcr(img, only_y=True): +# bgr2ycbcr(img, only_y=True): +# ycbcr2rgb(img): +# -------------------------------------------- +''' + + +def rgb2ycbcr(img, only_y=True): + '''same as matlab rgb2ycbcr + only_y: only return Y channel + Input: + uint8, [0, 255] + float, [0, 1] + ''' + in_img_type = img.dtype + img.astype(np.float32) + if in_img_type != np.uint8: + img *= 255. + # convert + if only_y: + rlt = np.dot(img, [65.481, 128.553, 24.966]) / 255.0 + 16.0 + else: + rlt = np.matmul(img, [[65.481, -37.797, 112.0], [128.553, -74.203, -93.786], + [24.966, 112.0, -18.214]]) / 255.0 + [16, 128, 128] + if in_img_type == np.uint8: + rlt = rlt.round() + else: + rlt /= 255. + return rlt.astype(in_img_type) + + +def ycbcr2rgb(img): + '''same as matlab ycbcr2rgb + Input: + uint8, [0, 255] + float, [0, 1] + ''' + in_img_type = img.dtype + img.astype(np.float32) + if in_img_type != np.uint8: + img *= 255. + # convert + rlt = np.matmul(img, [[0.00456621, 0.00456621, 0.00456621], [0, -0.00153632, 0.00791071], + [0.00625893, -0.00318811, 0]]) * 255.0 + [-222.921, 135.576, -276.836] + if in_img_type == np.uint8: + rlt = rlt.round() + else: + rlt /= 255. + return rlt.astype(in_img_type) + + +def bgr2ycbcr(img, only_y=True): + '''bgr version of rgb2ycbcr + only_y: only return Y channel + Input: + uint8, [0, 255] + float, [0, 1] + ''' + in_img_type = img.dtype + img.astype(np.float32) + if in_img_type != np.uint8: + img *= 255. + # convert + if only_y: + rlt = np.dot(img, [24.966, 128.553, 65.481]) / 255.0 + 16.0 + else: + rlt = np.matmul(img, [[24.966, 112.0, -18.214], [128.553, -74.203, -93.786], + [65.481, -37.797, 112.0]]) / 255.0 + [16, 128, 128] + if in_img_type == np.uint8: + rlt = rlt.round() + else: + rlt /= 255. + return rlt.astype(in_img_type) + + +def channel_convert(in_c, tar_type, img_list): + # conversion among BGR, gray and y + if in_c == 3 and tar_type == 'gray': # BGR to gray + gray_list = [cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) for img in img_list] + return [np.expand_dims(img, axis=2) for img in gray_list] + elif in_c == 3 and tar_type == 'y': # BGR to y + y_list = [bgr2ycbcr(img, only_y=True) for img in img_list] + return [np.expand_dims(img, axis=2) for img in y_list] + elif in_c == 1 and tar_type == 'RGB': # gray/y to BGR + return [cv2.cvtColor(img, cv2.COLOR_GRAY2BGR) for img in img_list] + else: + return img_list + + +''' +# -------------------------------------------- +# metric, PSNR and SSIM +# -------------------------------------------- +''' + + +# -------------------------------------------- +# PSNR +# -------------------------------------------- +def calculate_psnr(img1, img2, border=0): + # img1 and img2 have range [0, 255] + #img1 = img1.squeeze() + #img2 = img2.squeeze() + if not img1.shape == img2.shape: + raise ValueError('Input images must have the same dimensions.') + h, w = img1.shape[:2] + img1 = img1[border:h-border, border:w-border] + img2 = img2[border:h-border, border:w-border] + + img1 = img1.astype(np.float64) + img2 = img2.astype(np.float64) + mse = np.mean((img1 - img2)**2) + if mse == 0: + return float('inf') + return 20 * math.log10(255.0 / math.sqrt(mse)) + + +# -------------------------------------------- +# SSIM +# -------------------------------------------- +def calculate_ssim(img1, img2, border=0): + '''calculate SSIM + the same outputs as MATLAB's + img1, img2: [0, 255] + ''' + #img1 = img1.squeeze() + #img2 = img2.squeeze() + if not img1.shape == img2.shape: + raise ValueError('Input images must have the same dimensions.') + h, w = img1.shape[:2] + img1 = img1[border:h-border, border:w-border] + img2 = img2[border:h-border, border:w-border] + + if img1.ndim == 2: + return ssim(img1, img2) + elif img1.ndim == 3: + if img1.shape[2] == 3: + ssims = [] + for i in range(3): + ssims.append(ssim(img1[:,:,i], img2[:,:,i])) + return np.array(ssims).mean() + elif img1.shape[2] == 1: + return ssim(np.squeeze(img1), np.squeeze(img2)) + else: + raise ValueError('Wrong input image dimensions.') + + +def ssim(img1, img2): + C1 = (0.01 * 255)**2 + C2 = (0.03 * 255)**2 + + img1 = img1.astype(np.float64) + img2 = img2.astype(np.float64) + kernel = cv2.getGaussianKernel(11, 1.5) + window = np.outer(kernel, kernel.transpose()) + + mu1 = cv2.filter2D(img1, -1, window)[5:-5, 5:-5] # valid + mu2 = cv2.filter2D(img2, -1, window)[5:-5, 5:-5] + mu1_sq = mu1**2 + mu2_sq = mu2**2 + mu1_mu2 = mu1 * mu2 + sigma1_sq = cv2.filter2D(img1**2, -1, window)[5:-5, 5:-5] - mu1_sq + sigma2_sq = cv2.filter2D(img2**2, -1, window)[5:-5, 5:-5] - mu2_sq + sigma12 = cv2.filter2D(img1 * img2, -1, window)[5:-5, 5:-5] - mu1_mu2 + + ssim_map = ((2 * mu1_mu2 + C1) * (2 * sigma12 + C2)) / ((mu1_sq + mu2_sq + C1) * + (sigma1_sq + sigma2_sq + C2)) + return ssim_map.mean() + + +''' +# -------------------------------------------- +# matlab's bicubic imresize (numpy and torch) [0, 1] +# -------------------------------------------- +''' + + +# matlab 'imresize' function, now only support 'bicubic' +def cubic(x): + absx = torch.abs(x) + absx2 = absx**2 + absx3 = absx**3 + return (1.5*absx3 - 2.5*absx2 + 1) * ((absx <= 1).type_as(absx)) + \ + (-0.5*absx3 + 2.5*absx2 - 4*absx + 2) * (((absx > 1)*(absx <= 2)).type_as(absx)) + + +def calculate_weights_indices(in_length, out_length, scale, kernel, kernel_width, antialiasing): + if (scale < 1) and (antialiasing): + # Use a modified kernel to simultaneously interpolate and antialias- larger kernel width + kernel_width = kernel_width / scale + + # Output-space coordinates + x = torch.linspace(1, out_length, out_length) + + # Input-space coordinates. Calculate the inverse mapping such that 0.5 + # in output space maps to 0.5 in input space, and 0.5+scale in output + # space maps to 1.5 in input space. + u = x / scale + 0.5 * (1 - 1 / scale) + + # What is the left-most pixel that can be involved in the computation? + left = torch.floor(u - kernel_width / 2) + + # What is the maximum number of pixels that can be involved in the + # computation? Note: it's OK to use an extra pixel here; if the + # corresponding weights are all zero, it will be eliminated at the end + # of this function. + P = math.ceil(kernel_width) + 2 + + # The indices of the input pixels involved in computing the k-th output + # pixel are in row k of the indices matrix. + indices = left.view(out_length, 1).expand(out_length, P) + torch.linspace(0, P - 1, P).view( + 1, P).expand(out_length, P) + + # The weights used to compute the k-th output pixel are in row k of the + # weights matrix. + distance_to_center = u.view(out_length, 1).expand(out_length, P) - indices + # apply cubic kernel + if (scale < 1) and (antialiasing): + weights = scale * cubic(distance_to_center * scale) + else: + weights = cubic(distance_to_center) + # Normalize the weights matrix so that each row sums to 1. + weights_sum = torch.sum(weights, 1).view(out_length, 1) + weights = weights / weights_sum.expand(out_length, P) + + # If a column in weights is all zero, get rid of it. only consider the first and last column. + weights_zero_tmp = torch.sum((weights == 0), 0) + if not math.isclose(weights_zero_tmp[0], 0, rel_tol=1e-6): + indices = indices.narrow(1, 1, P - 2) + weights = weights.narrow(1, 1, P - 2) + if not math.isclose(weights_zero_tmp[-1], 0, rel_tol=1e-6): + indices = indices.narrow(1, 0, P - 2) + weights = weights.narrow(1, 0, P - 2) + weights = weights.contiguous() + indices = indices.contiguous() + sym_len_s = -indices.min() + 1 + sym_len_e = indices.max() - in_length + indices = indices + sym_len_s - 1 + return weights, indices, int(sym_len_s), int(sym_len_e) + + +# -------------------------------------------- +# imresize for tensor image [0, 1] +# -------------------------------------------- +def imresize(img, scale, antialiasing=True): + # Now the scale should be the same for H and W + # input: img: pytorch tensor, CHW or HW [0,1] + # output: CHW or HW [0,1] w/o round + need_squeeze = True if img.dim() == 2 else False + if need_squeeze: + img.unsqueeze_(0) + in_C, in_H, in_W = img.size() + out_C, out_H, out_W = in_C, math.ceil(in_H * scale), math.ceil(in_W * scale) + kernel_width = 4 + kernel = 'cubic' + + # Return the desired dimension order for performing the resize. The + # strategy is to perform the resize first along the dimension with the + # smallest scale factor. + # Now we do not support this. + + # get weights and indices + weights_H, indices_H, sym_len_Hs, sym_len_He = calculate_weights_indices( + in_H, out_H, scale, kernel, kernel_width, antialiasing) + weights_W, indices_W, sym_len_Ws, sym_len_We = calculate_weights_indices( + in_W, out_W, scale, kernel, kernel_width, antialiasing) + # process H dimension + # symmetric copying + img_aug = torch.FloatTensor(in_C, in_H + sym_len_Hs + sym_len_He, in_W) + img_aug.narrow(1, sym_len_Hs, in_H).copy_(img) + + sym_patch = img[:, :sym_len_Hs, :] + inv_idx = torch.arange(sym_patch.size(1) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(1, inv_idx) + img_aug.narrow(1, 0, sym_len_Hs).copy_(sym_patch_inv) + + sym_patch = img[:, -sym_len_He:, :] + inv_idx = torch.arange(sym_patch.size(1) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(1, inv_idx) + img_aug.narrow(1, sym_len_Hs + in_H, sym_len_He).copy_(sym_patch_inv) + + out_1 = torch.FloatTensor(in_C, out_H, in_W) + kernel_width = weights_H.size(1) + for i in range(out_H): + idx = int(indices_H[i][0]) + for j in range(out_C): + out_1[j, i, :] = img_aug[j, idx:idx + kernel_width, :].transpose(0, 1).mv(weights_H[i]) + + # process W dimension + # symmetric copying + out_1_aug = torch.FloatTensor(in_C, out_H, in_W + sym_len_Ws + sym_len_We) + out_1_aug.narrow(2, sym_len_Ws, in_W).copy_(out_1) + + sym_patch = out_1[:, :, :sym_len_Ws] + inv_idx = torch.arange(sym_patch.size(2) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(2, inv_idx) + out_1_aug.narrow(2, 0, sym_len_Ws).copy_(sym_patch_inv) + + sym_patch = out_1[:, :, -sym_len_We:] + inv_idx = torch.arange(sym_patch.size(2) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(2, inv_idx) + out_1_aug.narrow(2, sym_len_Ws + in_W, sym_len_We).copy_(sym_patch_inv) + + out_2 = torch.FloatTensor(in_C, out_H, out_W) + kernel_width = weights_W.size(1) + for i in range(out_W): + idx = int(indices_W[i][0]) + for j in range(out_C): + out_2[j, :, i] = out_1_aug[j, :, idx:idx + kernel_width].mv(weights_W[i]) + if need_squeeze: + out_2.squeeze_() + return out_2 + + +# -------------------------------------------- +# imresize for numpy image [0, 1] +# -------------------------------------------- +def imresize_np(img, scale, antialiasing=True): + # Now the scale should be the same for H and W + # input: img: Numpy, HWC or HW [0,1] + # output: HWC or HW [0,1] w/o round + img = torch.from_numpy(img) + need_squeeze = True if img.dim() == 2 else False + if need_squeeze: + img.unsqueeze_(2) + + in_H, in_W, in_C = img.size() + out_C, out_H, out_W = in_C, math.ceil(in_H * scale), math.ceil(in_W * scale) + kernel_width = 4 + kernel = 'cubic' + + # Return the desired dimension order for performing the resize. The + # strategy is to perform the resize first along the dimension with the + # smallest scale factor. + # Now we do not support this. + + # get weights and indices + weights_H, indices_H, sym_len_Hs, sym_len_He = calculate_weights_indices( + in_H, out_H, scale, kernel, kernel_width, antialiasing) + weights_W, indices_W, sym_len_Ws, sym_len_We = calculate_weights_indices( + in_W, out_W, scale, kernel, kernel_width, antialiasing) + # process H dimension + # symmetric copying + img_aug = torch.FloatTensor(in_H + sym_len_Hs + sym_len_He, in_W, in_C) + img_aug.narrow(0, sym_len_Hs, in_H).copy_(img) + + sym_patch = img[:sym_len_Hs, :, :] + inv_idx = torch.arange(sym_patch.size(0) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(0, inv_idx) + img_aug.narrow(0, 0, sym_len_Hs).copy_(sym_patch_inv) + + sym_patch = img[-sym_len_He:, :, :] + inv_idx = torch.arange(sym_patch.size(0) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(0, inv_idx) + img_aug.narrow(0, sym_len_Hs + in_H, sym_len_He).copy_(sym_patch_inv) + + out_1 = torch.FloatTensor(out_H, in_W, in_C) + kernel_width = weights_H.size(1) + for i in range(out_H): + idx = int(indices_H[i][0]) + for j in range(out_C): + out_1[i, :, j] = img_aug[idx:idx + kernel_width, :, j].transpose(0, 1).mv(weights_H[i]) + + # process W dimension + # symmetric copying + out_1_aug = torch.FloatTensor(out_H, in_W + sym_len_Ws + sym_len_We, in_C) + out_1_aug.narrow(1, sym_len_Ws, in_W).copy_(out_1) + + sym_patch = out_1[:, :sym_len_Ws, :] + inv_idx = torch.arange(sym_patch.size(1) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(1, inv_idx) + out_1_aug.narrow(1, 0, sym_len_Ws).copy_(sym_patch_inv) + + sym_patch = out_1[:, -sym_len_We:, :] + inv_idx = torch.arange(sym_patch.size(1) - 1, -1, -1).long() + sym_patch_inv = sym_patch.index_select(1, inv_idx) + out_1_aug.narrow(1, sym_len_Ws + in_W, sym_len_We).copy_(sym_patch_inv) + + out_2 = torch.FloatTensor(out_H, out_W, in_C) + kernel_width = weights_W.size(1) + for i in range(out_W): + idx = int(indices_W[i][0]) + for j in range(out_C): + out_2[:, i, j] = out_1_aug[:, idx:idx + kernel_width, j].mv(weights_W[i]) + if need_squeeze: + out_2.squeeze_() + + return out_2.numpy() + + +if __name__ == '__main__': + print('---') +# img = imread_uint('test.bmp', 3) +# img = uint2single(img) +# img_bicubic = imresize_np(img, 1/4) \ No newline at end of file diff --git a/stable_diffusion/ldm/modules/losses/vqperceptual.py b/stable_diffusion/ldm/modules/losses/vqperceptual.py new file mode 100644 index 0000000000000000000000000000000000000000..f69981769e4bd5462600458c4fcf26620f7e4306 --- /dev/null +++ b/stable_diffusion/ldm/modules/losses/vqperceptual.py @@ -0,0 +1,167 @@ +import torch +from torch import nn +import torch.nn.functional as F +from einops import repeat + +from taming.modules.discriminator.model import NLayerDiscriminator, weights_init +from taming.modules.losses.lpips import LPIPS +from taming.modules.losses.vqperceptual import hinge_d_loss, vanilla_d_loss + + +def hinge_d_loss_with_exemplar_weights(logits_real, logits_fake, weights): + assert weights.shape[0] == logits_real.shape[0] == logits_fake.shape[0] + loss_real = torch.mean(F.relu(1. - logits_real), dim=[1,2,3]) + loss_fake = torch.mean(F.relu(1. + logits_fake), dim=[1,2,3]) + loss_real = (weights * loss_real).sum() / weights.sum() + loss_fake = (weights * loss_fake).sum() / weights.sum() + d_loss = 0.5 * (loss_real + loss_fake) + return d_loss + +def adopt_weight(weight, global_step, threshold=0, value=0.): + if global_step < threshold: + weight = value + return weight + + +def measure_perplexity(predicted_indices, n_embed): + # src: https://github.com/karpathy/deep-vector-quantization/blob/main/model.py + # eval cluster perplexity. when perplexity == num_embeddings then all clusters are used exactly equally + encodings = F.one_hot(predicted_indices, n_embed).float().reshape(-1, n_embed) + avg_probs = encodings.mean(0) + perplexity = (-(avg_probs * torch.log(avg_probs + 1e-10)).sum()).exp() + cluster_use = torch.sum(avg_probs > 0) + return perplexity, cluster_use + +def l1(x, y): + return torch.abs(x-y) + + +def l2(x, y): + return torch.pow((x-y), 2) + + +class VQLPIPSWithDiscriminator(nn.Module): + def __init__(self, disc_start, codebook_weight=1.0, pixelloss_weight=1.0, + disc_num_layers=3, disc_in_channels=3, disc_factor=1.0, disc_weight=1.0, + perceptual_weight=1.0, use_actnorm=False, disc_conditional=False, + disc_ndf=64, disc_loss="hinge", n_classes=None, perceptual_loss="lpips", + pixel_loss="l1"): + super().__init__() + assert disc_loss in ["hinge", "vanilla"] + assert perceptual_loss in ["lpips", "clips", "dists"] + assert pixel_loss in ["l1", "l2"] + self.codebook_weight = codebook_weight + self.pixel_weight = pixelloss_weight + if perceptual_loss == "lpips": + print(f"{self.__class__.__name__}: Running with LPIPS.") + self.perceptual_loss = LPIPS().eval() + else: + raise ValueError(f"Unknown perceptual loss: >> {perceptual_loss} <<") + self.perceptual_weight = perceptual_weight + + if pixel_loss == "l1": + self.pixel_loss = l1 + else: + self.pixel_loss = l2 + + self.discriminator = NLayerDiscriminator(input_nc=disc_in_channels, + n_layers=disc_num_layers, + use_actnorm=use_actnorm, + ndf=disc_ndf + ).apply(weights_init) + self.discriminator_iter_start = disc_start + if disc_loss == "hinge": + self.disc_loss = hinge_d_loss + elif disc_loss == "vanilla": + self.disc_loss = vanilla_d_loss + else: + raise ValueError(f"Unknown GAN loss '{disc_loss}'.") + print(f"VQLPIPSWithDiscriminator running with {disc_loss} loss.") + self.disc_factor = disc_factor + self.discriminator_weight = disc_weight + self.disc_conditional = disc_conditional + self.n_classes = n_classes + + def calculate_adaptive_weight(self, nll_loss, g_loss, last_layer=None): + if last_layer is not None: + nll_grads = torch.autograd.grad(nll_loss, last_layer, retain_graph=True)[0] + g_grads = torch.autograd.grad(g_loss, last_layer, retain_graph=True)[0] + else: + nll_grads = torch.autograd.grad(nll_loss, self.last_layer[0], retain_graph=True)[0] + g_grads = torch.autograd.grad(g_loss, self.last_layer[0], retain_graph=True)[0] + + d_weight = torch.norm(nll_grads) / (torch.norm(g_grads) + 1e-4) + d_weight = torch.clamp(d_weight, 0.0, 1e4).detach() + d_weight = d_weight * self.discriminator_weight + return d_weight + + def forward(self, codebook_loss, inputs, reconstructions, optimizer_idx, + global_step, last_layer=None, cond=None, split="train", predicted_indices=None): + if not exists(codebook_loss): + codebook_loss = torch.tensor([0.]).to(inputs.device) + #rec_loss = torch.abs(inputs.contiguous() - reconstructions.contiguous()) + rec_loss = self.pixel_loss(inputs.contiguous(), reconstructions.contiguous()) + if self.perceptual_weight > 0: + p_loss = self.perceptual_loss(inputs.contiguous(), reconstructions.contiguous()) + rec_loss = rec_loss + self.perceptual_weight * p_loss + else: + p_loss = torch.tensor([0.0]) + + nll_loss = rec_loss + #nll_loss = torch.sum(nll_loss) / nll_loss.shape[0] + nll_loss = torch.mean(nll_loss) + + # now the GAN part + if optimizer_idx == 0: + # generator update + if cond is None: + assert not self.disc_conditional + logits_fake = self.discriminator(reconstructions.contiguous()) + else: + assert self.disc_conditional + logits_fake = self.discriminator(torch.cat((reconstructions.contiguous(), cond), dim=1)) + g_loss = -torch.mean(logits_fake) + + try: + d_weight = self.calculate_adaptive_weight(nll_loss, g_loss, last_layer=last_layer) + except RuntimeError: + assert not self.training + d_weight = torch.tensor(0.0) + + disc_factor = adopt_weight(self.disc_factor, global_step, threshold=self.discriminator_iter_start) + loss = nll_loss + d_weight * disc_factor * g_loss + self.codebook_weight * codebook_loss.mean() + + log = {"{}/total_loss".format(split): loss.clone().detach().mean(), + "{}/quant_loss".format(split): codebook_loss.detach().mean(), + "{}/nll_loss".format(split): nll_loss.detach().mean(), + "{}/rec_loss".format(split): rec_loss.detach().mean(), + "{}/p_loss".format(split): p_loss.detach().mean(), + "{}/d_weight".format(split): d_weight.detach(), + "{}/disc_factor".format(split): torch.tensor(disc_factor), + "{}/g_loss".format(split): g_loss.detach().mean(), + } + if predicted_indices is not None: + assert self.n_classes is not None + with torch.no_grad(): + perplexity, cluster_usage = measure_perplexity(predicted_indices, self.n_classes) + log[f"{split}/perplexity"] = perplexity + log[f"{split}/cluster_usage"] = cluster_usage + return loss, log + + if optimizer_idx == 1: + # second pass for discriminator update + if cond is None: + logits_real = self.discriminator(inputs.contiguous().detach()) + logits_fake = self.discriminator(reconstructions.contiguous().detach()) + else: + logits_real = self.discriminator(torch.cat((inputs.contiguous().detach(), cond), dim=1)) + logits_fake = self.discriminator(torch.cat((reconstructions.contiguous().detach(), cond), dim=1)) + + disc_factor = adopt_weight(self.disc_factor, global_step, threshold=self.discriminator_iter_start) + d_loss = disc_factor * self.disc_loss(logits_real, logits_fake) + + log = {"{}/disc_loss".format(split): d_loss.clone().detach().mean(), + "{}/logits_real".format(split): logits_real.detach().mean(), + "{}/logits_fake".format(split): logits_fake.detach().mean() + } + return d_loss, log diff --git a/stable_diffusion/ldm/modules/x_transformer.py b/stable_diffusion/ldm/modules/x_transformer.py new file mode 100644 index 0000000000000000000000000000000000000000..5fc15bf9cfe0111a910e7de33d04ffdec3877576 --- /dev/null +++ b/stable_diffusion/ldm/modules/x_transformer.py @@ -0,0 +1,641 @@ +"""shout-out to https://github.com/lucidrains/x-transformers/tree/main/x_transformers""" +import torch +from torch import nn, einsum +import torch.nn.functional as F +from functools import partial +from inspect import isfunction +from collections import namedtuple +from einops import rearrange, repeat, reduce + +# constants + +DEFAULT_DIM_HEAD = 64 + +Intermediates = namedtuple('Intermediates', [ + 'pre_softmax_attn', + 'post_softmax_attn' +]) + +LayerIntermediates = namedtuple('Intermediates', [ + 'hiddens', + 'attn_intermediates' +]) + + +class AbsolutePositionalEmbedding(nn.Module): + def __init__(self, dim, max_seq_len): + super().__init__() + self.emb = nn.Embedding(max_seq_len, dim) + self.init_() + + def init_(self): + nn.init.normal_(self.emb.weight, std=0.02) + + def forward(self, x): + n = torch.arange(x.shape[1], device=x.device) + return self.emb(n)[None, :, :] + + +class FixedPositionalEmbedding(nn.Module): + def __init__(self, dim): + super().__init__() + inv_freq = 1. / (10000 ** (torch.arange(0, dim, 2).float() / dim)) + self.register_buffer('inv_freq', inv_freq) + + def forward(self, x, seq_dim=1, offset=0): + t = torch.arange(x.shape[seq_dim], device=x.device).type_as(self.inv_freq) + offset + sinusoid_inp = torch.einsum('i , j -> i j', t, self.inv_freq) + emb = torch.cat((sinusoid_inp.sin(), sinusoid_inp.cos()), dim=-1) + return emb[None, :, :] + + +# helpers + +def exists(val): + return val is not None + + +def default(val, d): + if exists(val): + return val + return d() if isfunction(d) else d + + +def always(val): + def inner(*args, **kwargs): + return val + return inner + + +def not_equals(val): + def inner(x): + return x != val + return inner + + +def equals(val): + def inner(x): + return x == val + return inner + + +def max_neg_value(tensor): + return -torch.finfo(tensor.dtype).max + + +# keyword argument helpers + +def pick_and_pop(keys, d): + values = list(map(lambda key: d.pop(key), keys)) + return dict(zip(keys, values)) + + +def group_dict_by_key(cond, d): + return_val = [dict(), dict()] + for key in d.keys(): + match = bool(cond(key)) + ind = int(not match) + return_val[ind][key] = d[key] + return (*return_val,) + + +def string_begins_with(prefix, str): + return str.startswith(prefix) + + +def group_by_key_prefix(prefix, d): + return group_dict_by_key(partial(string_begins_with, prefix), d) + + +def groupby_prefix_and_trim(prefix, d): + kwargs_with_prefix, kwargs = group_dict_by_key(partial(string_begins_with, prefix), d) + kwargs_without_prefix = dict(map(lambda x: (x[0][len(prefix):], x[1]), tuple(kwargs_with_prefix.items()))) + return kwargs_without_prefix, kwargs + + +# classes +class Scale(nn.Module): + def __init__(self, value, fn): + super().__init__() + self.value = value + self.fn = fn + + def forward(self, x, **kwargs): + x, *rest = self.fn(x, **kwargs) + return (x * self.value, *rest) + + +class Rezero(nn.Module): + def __init__(self, fn): + super().__init__() + self.fn = fn + self.g = nn.Parameter(torch.zeros(1)) + + def forward(self, x, **kwargs): + x, *rest = self.fn(x, **kwargs) + return (x * self.g, *rest) + + +class ScaleNorm(nn.Module): + def __init__(self, dim, eps=1e-5): + super().__init__() + self.scale = dim ** -0.5 + self.eps = eps + self.g = nn.Parameter(torch.ones(1)) + + def forward(self, x): + norm = torch.norm(x, dim=-1, keepdim=True) * self.scale + return x / norm.clamp(min=self.eps) * self.g + + +class RMSNorm(nn.Module): + def __init__(self, dim, eps=1e-8): + super().__init__() + self.scale = dim ** -0.5 + self.eps = eps + self.g = nn.Parameter(torch.ones(dim)) + + def forward(self, x): + norm = torch.norm(x, dim=-1, keepdim=True) * self.scale + return x / norm.clamp(min=self.eps) * self.g + + +class Residual(nn.Module): + def forward(self, x, residual): + return x + residual + + +class GRUGating(nn.Module): + def __init__(self, dim): + super().__init__() + self.gru = nn.GRUCell(dim, dim) + + def forward(self, x, residual): + gated_output = self.gru( + rearrange(x, 'b n d -> (b n) d'), + rearrange(residual, 'b n d -> (b n) d') + ) + + return gated_output.reshape_as(x) + + +# feedforward + +class GEGLU(nn.Module): + def __init__(self, dim_in, dim_out): + super().__init__() + self.proj = nn.Linear(dim_in, dim_out * 2) + + def forward(self, x): + x, gate = self.proj(x).chunk(2, dim=-1) + return x * F.gelu(gate) + + +class FeedForward(nn.Module): + def __init__(self, dim, dim_out=None, mult=4, glu=False, dropout=0.): + super().__init__() + inner_dim = int(dim * mult) + dim_out = default(dim_out, dim) + project_in = nn.Sequential( + nn.Linear(dim, inner_dim), + nn.GELU() + ) if not glu else GEGLU(dim, inner_dim) + + self.net = nn.Sequential( + project_in, + nn.Dropout(dropout), + nn.Linear(inner_dim, dim_out) + ) + + def forward(self, x): + return self.net(x) + + +# attention. +class Attention(nn.Module): + def __init__( + self, + dim, + dim_head=DEFAULT_DIM_HEAD, + heads=8, + causal=False, + mask=None, + talking_heads=False, + sparse_topk=None, + use_entmax15=False, + num_mem_kv=0, + dropout=0., + on_attn=False + ): + super().__init__() + if use_entmax15: + raise NotImplementedError("Check out entmax activation instead of softmax activation!") + self.scale = dim_head ** -0.5 + self.heads = heads + self.causal = causal + self.mask = mask + + inner_dim = dim_head * heads + + self.to_q = nn.Linear(dim, inner_dim, bias=False) + self.to_k = nn.Linear(dim, inner_dim, bias=False) + self.to_v = nn.Linear(dim, inner_dim, bias=False) + self.dropout = nn.Dropout(dropout) + + # talking heads + self.talking_heads = talking_heads + if talking_heads: + self.pre_softmax_proj = nn.Parameter(torch.randn(heads, heads)) + self.post_softmax_proj = nn.Parameter(torch.randn(heads, heads)) + + # explicit topk sparse attention + self.sparse_topk = sparse_topk + + # entmax + #self.attn_fn = entmax15 if use_entmax15 else F.softmax + self.attn_fn = F.softmax + + # add memory key / values + self.num_mem_kv = num_mem_kv + if num_mem_kv > 0: + self.mem_k = nn.Parameter(torch.randn(heads, num_mem_kv, dim_head)) + self.mem_v = nn.Parameter(torch.randn(heads, num_mem_kv, dim_head)) + + # attention on attention + self.attn_on_attn = on_attn + self.to_out = nn.Sequential(nn.Linear(inner_dim, dim * 2), nn.GLU()) if on_attn else nn.Linear(inner_dim, dim) + + def forward( + self, + x, + context=None, + mask=None, + context_mask=None, + rel_pos=None, + sinusoidal_emb=None, + prev_attn=None, + mem=None + ): + b, n, _, h, talking_heads, device = *x.shape, self.heads, self.talking_heads, x.device + kv_input = default(context, x) + + q_input = x + k_input = kv_input + v_input = kv_input + + if exists(mem): + k_input = torch.cat((mem, k_input), dim=-2) + v_input = torch.cat((mem, v_input), dim=-2) + + if exists(sinusoidal_emb): + # in shortformer, the query would start at a position offset depending on the past cached memory + offset = k_input.shape[-2] - q_input.shape[-2] + q_input = q_input + sinusoidal_emb(q_input, offset=offset) + k_input = k_input + sinusoidal_emb(k_input) + + q = self.to_q(q_input) + k = self.to_k(k_input) + v = self.to_v(v_input) + + q, k, v = map(lambda t: rearrange(t, 'b n (h d) -> b h n d', h=h), (q, k, v)) + + input_mask = None + if any(map(exists, (mask, context_mask))): + q_mask = default(mask, lambda: torch.ones((b, n), device=device).bool()) + k_mask = q_mask if not exists(context) else context_mask + k_mask = default(k_mask, lambda: torch.ones((b, k.shape[-2]), device=device).bool()) + q_mask = rearrange(q_mask, 'b i -> b () i ()') + k_mask = rearrange(k_mask, 'b j -> b () () j') + input_mask = q_mask * k_mask + + if self.num_mem_kv > 0: + mem_k, mem_v = map(lambda t: repeat(t, 'h n d -> b h n d', b=b), (self.mem_k, self.mem_v)) + k = torch.cat((mem_k, k), dim=-2) + v = torch.cat((mem_v, v), dim=-2) + if exists(input_mask): + input_mask = F.pad(input_mask, (self.num_mem_kv, 0), value=True) + + dots = einsum('b h i d, b h j d -> b h i j', q, k) * self.scale + mask_value = max_neg_value(dots) + + if exists(prev_attn): + dots = dots + prev_attn + + pre_softmax_attn = dots + + if talking_heads: + dots = einsum('b h i j, h k -> b k i j', dots, self.pre_softmax_proj).contiguous() + + if exists(rel_pos): + dots = rel_pos(dots) + + if exists(input_mask): + dots.masked_fill_(~input_mask, mask_value) + del input_mask + + if self.causal: + i, j = dots.shape[-2:] + r = torch.arange(i, device=device) + mask = rearrange(r, 'i -> () () i ()') < rearrange(r, 'j -> () () () j') + mask = F.pad(mask, (j - i, 0), value=False) + dots.masked_fill_(mask, mask_value) + del mask + + if exists(self.sparse_topk) and self.sparse_topk < dots.shape[-1]: + top, _ = dots.topk(self.sparse_topk, dim=-1) + vk = top[..., -1].unsqueeze(-1).expand_as(dots) + mask = dots < vk + dots.masked_fill_(mask, mask_value) + del mask + + attn = self.attn_fn(dots, dim=-1) + post_softmax_attn = attn + + attn = self.dropout(attn) + + if talking_heads: + attn = einsum('b h i j, h k -> b k i j', attn, self.post_softmax_proj).contiguous() + + out = einsum('b h i j, b h j d -> b h i d', attn, v) + out = rearrange(out, 'b h n d -> b n (h d)') + + intermediates = Intermediates( + pre_softmax_attn=pre_softmax_attn, + post_softmax_attn=post_softmax_attn + ) + + return self.to_out(out), intermediates + + +class AttentionLayers(nn.Module): + def __init__( + self, + dim, + depth, + heads=8, + causal=False, + cross_attend=False, + only_cross=False, + use_scalenorm=False, + use_rmsnorm=False, + use_rezero=False, + rel_pos_num_buckets=32, + rel_pos_max_distance=128, + position_infused_attn=False, + custom_layers=None, + sandwich_coef=None, + par_ratio=None, + residual_attn=False, + cross_residual_attn=False, + macaron=False, + pre_norm=True, + gate_residual=False, + **kwargs + ): + super().__init__() + ff_kwargs, kwargs = groupby_prefix_and_trim('ff_', kwargs) + attn_kwargs, _ = groupby_prefix_and_trim('attn_', kwargs) + + dim_head = attn_kwargs.get('dim_head', DEFAULT_DIM_HEAD) + + self.dim = dim + self.depth = depth + self.layers = nn.ModuleList([]) + + self.has_pos_emb = position_infused_attn + self.pia_pos_emb = FixedPositionalEmbedding(dim) if position_infused_attn else None + self.rotary_pos_emb = always(None) + + assert rel_pos_num_buckets <= rel_pos_max_distance, 'number of relative position buckets must be less than the relative position max distance' + self.rel_pos = None + + self.pre_norm = pre_norm + + self.residual_attn = residual_attn + self.cross_residual_attn = cross_residual_attn + + norm_class = ScaleNorm if use_scalenorm else nn.LayerNorm + norm_class = RMSNorm if use_rmsnorm else norm_class + norm_fn = partial(norm_class, dim) + + norm_fn = nn.Identity if use_rezero else norm_fn + branch_fn = Rezero if use_rezero else None + + if cross_attend and not only_cross: + default_block = ('a', 'c', 'f') + elif cross_attend and only_cross: + default_block = ('c', 'f') + else: + default_block = ('a', 'f') + + if macaron: + default_block = ('f',) + default_block + + if exists(custom_layers): + layer_types = custom_layers + elif exists(par_ratio): + par_depth = depth * len(default_block) + assert 1 < par_ratio <= par_depth, 'par ratio out of range' + default_block = tuple(filter(not_equals('f'), default_block)) + par_attn = par_depth // par_ratio + depth_cut = par_depth * 2 // 3 # 2 / 3 attention layer cutoff suggested by PAR paper + par_width = (depth_cut + depth_cut // par_attn) // par_attn + assert len(default_block) <= par_width, 'default block is too large for par_ratio' + par_block = default_block + ('f',) * (par_width - len(default_block)) + par_head = par_block * par_attn + layer_types = par_head + ('f',) * (par_depth - len(par_head)) + elif exists(sandwich_coef): + assert sandwich_coef > 0 and sandwich_coef <= depth, 'sandwich coefficient should be less than the depth' + layer_types = ('a',) * sandwich_coef + default_block * (depth - sandwich_coef) + ('f',) * sandwich_coef + else: + layer_types = default_block * depth + + self.layer_types = layer_types + self.num_attn_layers = len(list(filter(equals('a'), layer_types))) + + for layer_type in self.layer_types: + if layer_type == 'a': + layer = Attention(dim, heads=heads, causal=causal, **attn_kwargs) + elif layer_type == 'c': + layer = Attention(dim, heads=heads, **attn_kwargs) + elif layer_type == 'f': + layer = FeedForward(dim, **ff_kwargs) + layer = layer if not macaron else Scale(0.5, layer) + else: + raise Exception(f'invalid layer type {layer_type}') + + if isinstance(layer, Attention) and exists(branch_fn): + layer = branch_fn(layer) + + if gate_residual: + residual_fn = GRUGating(dim) + else: + residual_fn = Residual() + + self.layers.append(nn.ModuleList([ + norm_fn(), + layer, + residual_fn + ])) + + def forward( + self, + x, + context=None, + mask=None, + context_mask=None, + mems=None, + return_hiddens=False + ): + hiddens = [] + intermediates = [] + prev_attn = None + prev_cross_attn = None + + mems = mems.copy() if exists(mems) else [None] * self.num_attn_layers + + for ind, (layer_type, (norm, block, residual_fn)) in enumerate(zip(self.layer_types, self.layers)): + is_last = ind == (len(self.layers) - 1) + + if layer_type == 'a': + hiddens.append(x) + layer_mem = mems.pop(0) + + residual = x + + if self.pre_norm: + x = norm(x) + + if layer_type == 'a': + out, inter = block(x, mask=mask, sinusoidal_emb=self.pia_pos_emb, rel_pos=self.rel_pos, + prev_attn=prev_attn, mem=layer_mem) + elif layer_type == 'c': + out, inter = block(x, context=context, mask=mask, context_mask=context_mask, prev_attn=prev_cross_attn) + elif layer_type == 'f': + out = block(x) + + x = residual_fn(out, residual) + + if layer_type in ('a', 'c'): + intermediates.append(inter) + + if layer_type == 'a' and self.residual_attn: + prev_attn = inter.pre_softmax_attn + elif layer_type == 'c' and self.cross_residual_attn: + prev_cross_attn = inter.pre_softmax_attn + + if not self.pre_norm and not is_last: + x = norm(x) + + if return_hiddens: + intermediates = LayerIntermediates( + hiddens=hiddens, + attn_intermediates=intermediates + ) + + return x, intermediates + + return x + + +class Encoder(AttentionLayers): + def __init__(self, **kwargs): + assert 'causal' not in kwargs, 'cannot set causality on encoder' + super().__init__(causal=False, **kwargs) + + + +class TransformerWrapper(nn.Module): + def __init__( + self, + *, + num_tokens, + max_seq_len, + attn_layers, + emb_dim=None, + max_mem_len=0., + emb_dropout=0., + num_memory_tokens=None, + tie_embedding=False, + use_pos_emb=True + ): + super().__init__() + assert isinstance(attn_layers, AttentionLayers), 'attention layers must be one of Encoder or Decoder' + + dim = attn_layers.dim + emb_dim = default(emb_dim, dim) + + self.max_seq_len = max_seq_len + self.max_mem_len = max_mem_len + self.num_tokens = num_tokens + + self.token_emb = nn.Embedding(num_tokens, emb_dim) + self.pos_emb = AbsolutePositionalEmbedding(emb_dim, max_seq_len) if ( + use_pos_emb and not attn_layers.has_pos_emb) else always(0) + self.emb_dropout = nn.Dropout(emb_dropout) + + self.project_emb = nn.Linear(emb_dim, dim) if emb_dim != dim else nn.Identity() + self.attn_layers = attn_layers + self.norm = nn.LayerNorm(dim) + + self.init_() + + self.to_logits = nn.Linear(dim, num_tokens) if not tie_embedding else lambda t: t @ self.token_emb.weight.t() + + # memory tokens (like [cls]) from Memory Transformers paper + num_memory_tokens = default(num_memory_tokens, 0) + self.num_memory_tokens = num_memory_tokens + if num_memory_tokens > 0: + self.memory_tokens = nn.Parameter(torch.randn(num_memory_tokens, dim)) + + # let funnel encoder know number of memory tokens, if specified + if hasattr(attn_layers, 'num_memory_tokens'): + attn_layers.num_memory_tokens = num_memory_tokens + + def init_(self): + nn.init.normal_(self.token_emb.weight, std=0.02) + + def forward( + self, + x, + return_embeddings=False, + mask=None, + return_mems=False, + return_attn=False, + mems=None, + **kwargs + ): + b, n, device, num_mem = *x.shape, x.device, self.num_memory_tokens + x = self.token_emb(x) + x += self.pos_emb(x) + x = self.emb_dropout(x) + + x = self.project_emb(x) + + if num_mem > 0: + mem = repeat(self.memory_tokens, 'n d -> b n d', b=b) + x = torch.cat((mem, x), dim=1) + + # auto-handle masking after appending memory tokens + if exists(mask): + mask = F.pad(mask, (num_mem, 0), value=True) + + x, intermediates = self.attn_layers(x, mask=mask, mems=mems, return_hiddens=True, **kwargs) + x = self.norm(x) + + mem, x = x[:, :num_mem], x[:, num_mem:] + + out = self.to_logits(x) if not return_embeddings else x + + if return_mems: + hiddens = intermediates.hiddens + new_mems = list(map(lambda pair: torch.cat(pair, dim=-2), zip(mems, hiddens))) if exists(mems) else hiddens + new_mems = list(map(lambda t: t[..., -self.max_mem_len:, :].detach(), new_mems)) + return out, new_mems + + if return_attn: + attn_maps = list(map(lambda t: t.post_softmax_attn, intermediates.attn_intermediates)) + return out, attn_maps + + return out + diff --git a/stable_diffusion/models/first_stage_models/kl-f16/config.yaml b/stable_diffusion/models/first_stage_models/kl-f16/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..661921cf75a0b803c5eca41039dd058e24930452 --- /dev/null +++ b/stable_diffusion/models/first_stage_models/kl-f16/config.yaml @@ -0,0 +1,44 @@ +model: + base_learning_rate: 4.5e-06 + target: ldm.models.autoencoder.AutoencoderKL + params: + monitor: val/rec_loss + embed_dim: 16 + lossconfig: + target: ldm.modules.losses.LPIPSWithDiscriminator + params: + disc_start: 50001 + kl_weight: 1.0e-06 + disc_weight: 0.5 + ddconfig: + double_z: true + z_channels: 16 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 1 + - 2 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: + - 16 + dropout: 0.0 +data: + target: main.DataModuleFromConfig + params: + batch_size: 6 + wrap: true + train: + target: ldm.data.openimages.FullOpenImagesTrain + params: + size: 384 + crop_size: 256 + validation: + target: ldm.data.openimages.FullOpenImagesValidation + params: + size: 384 + crop_size: 256 diff --git a/stable_diffusion/models/first_stage_models/kl-f32/config.yaml b/stable_diffusion/models/first_stage_models/kl-f32/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7b642b136aaaf909ccd8766372eeffc4dffec342 --- /dev/null +++ b/stable_diffusion/models/first_stage_models/kl-f32/config.yaml @@ -0,0 +1,46 @@ +model: + base_learning_rate: 4.5e-06 + target: ldm.models.autoencoder.AutoencoderKL + params: + monitor: val/rec_loss + embed_dim: 64 + lossconfig: + target: ldm.modules.losses.LPIPSWithDiscriminator + params: + disc_start: 50001 + kl_weight: 1.0e-06 + disc_weight: 0.5 + ddconfig: + double_z: true + z_channels: 64 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 1 + - 2 + - 2 + - 4 + - 4 + num_res_blocks: 2 + attn_resolutions: + - 16 + - 8 + dropout: 0.0 +data: + target: main.DataModuleFromConfig + params: + batch_size: 6 + wrap: true + train: + target: ldm.data.openimages.FullOpenImagesTrain + params: + size: 384 + crop_size: 256 + validation: + target: ldm.data.openimages.FullOpenImagesValidation + params: + size: 384 + crop_size: 256 diff --git a/stable_diffusion/models/first_stage_models/kl-f8/config.yaml b/stable_diffusion/models/first_stage_models/kl-f8/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..921aa425335aced7a1a53307d39da0eba267efd6 --- /dev/null +++ b/stable_diffusion/models/first_stage_models/kl-f8/config.yaml @@ -0,0 +1,42 @@ +model: + base_learning_rate: 4.5e-06 + target: ldm.models.autoencoder.AutoencoderKL + params: + monitor: val/rec_loss + embed_dim: 4 + lossconfig: + target: ldm.modules.losses.LPIPSWithDiscriminator + params: + disc_start: 50001 + kl_weight: 1.0e-06 + disc_weight: 0.5 + ddconfig: + double_z: true + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 +data: + target: main.DataModuleFromConfig + params: + batch_size: 4 + wrap: true + train: + target: ldm.data.openimages.FullOpenImagesTrain + params: + size: 384 + crop_size: 256 + validation: + target: ldm.data.openimages.FullOpenImagesValidation + params: + size: 384 + crop_size: 256 diff --git a/stable_diffusion/models/first_stage_models/vq-f4/config.yaml b/stable_diffusion/models/first_stage_models/vq-f4/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7d8cef3252742d70855d1a0df011a82223c17c4f --- /dev/null +++ b/stable_diffusion/models/first_stage_models/vq-f4/config.yaml @@ -0,0 +1,45 @@ +model: + base_learning_rate: 4.5e-06 + target: ldm.models.autoencoder.VQModel + params: + embed_dim: 3 + n_embed: 8192 + monitor: val/rec_loss + + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: taming.modules.losses.vqperceptual.VQLPIPSWithDiscriminator + params: + disc_conditional: false + disc_in_channels: 3 + disc_start: 0 + disc_weight: 0.75 + codebook_weight: 1.0 + +data: + target: main.DataModuleFromConfig + params: + batch_size: 8 + num_workers: 16 + wrap: true + train: + target: ldm.data.openimages.FullOpenImagesTrain + params: + crop_size: 256 + validation: + target: ldm.data.openimages.FullOpenImagesValidation + params: + crop_size: 256 diff --git a/stable_diffusion/models/first_stage_models/vq-f8-n256/config.yaml b/stable_diffusion/models/first_stage_models/vq-f8-n256/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8519e13d618fe04792e59fc6eb826c1804fcdc28 --- /dev/null +++ b/stable_diffusion/models/first_stage_models/vq-f8-n256/config.yaml @@ -0,0 +1,48 @@ +model: + base_learning_rate: 4.5e-06 + target: ldm.models.autoencoder.VQModel + params: + embed_dim: 4 + n_embed: 256 + monitor: val/rec_loss + ddconfig: + double_z: false + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: + - 32 + dropout: 0.0 + lossconfig: + target: taming.modules.losses.vqperceptual.VQLPIPSWithDiscriminator + params: + disc_conditional: false + disc_in_channels: 3 + disc_start: 250001 + disc_weight: 0.75 + codebook_weight: 1.0 + +data: + target: main.DataModuleFromConfig + params: + batch_size: 10 + num_workers: 20 + wrap: true + train: + target: ldm.data.openimages.FullOpenImagesTrain + params: + size: 384 + crop_size: 256 + validation: + target: ldm.data.openimages.FullOpenImagesValidation + params: + size: 384 + crop_size: 256 diff --git a/stable_diffusion/models/first_stage_models/vq-f8/config.yaml b/stable_diffusion/models/first_stage_models/vq-f8/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..efd6801ca965baf7119b171de8338bd16e120332 --- /dev/null +++ b/stable_diffusion/models/first_stage_models/vq-f8/config.yaml @@ -0,0 +1,48 @@ +model: + base_learning_rate: 4.5e-06 + target: ldm.models.autoencoder.VQModel + params: + embed_dim: 4 + n_embed: 16384 + monitor: val/rec_loss + ddconfig: + double_z: false + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: + - 32 + dropout: 0.0 + lossconfig: + target: taming.modules.losses.vqperceptual.VQLPIPSWithDiscriminator + params: + disc_conditional: false + disc_in_channels: 3 + disc_num_layers: 2 + disc_start: 1 + disc_weight: 0.6 + codebook_weight: 1.0 +data: + target: main.DataModuleFromConfig + params: + batch_size: 10 + num_workers: 20 + wrap: true + train: + target: ldm.data.openimages.FullOpenImagesTrain + params: + size: 384 + crop_size: 256 + validation: + target: ldm.data.openimages.FullOpenImagesValidation + params: + size: 384 + crop_size: 256 diff --git a/stable_diffusion/models/ldm/celeba256/config.yaml b/stable_diffusion/models/ldm/celeba256/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a12f4e9d399afe23e6bcc824bddc8bad7ee5456d --- /dev/null +++ b/stable_diffusion/models/ldm/celeba256/config.yaml @@ -0,0 +1,70 @@ +model: + base_learning_rate: 2.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + cond_stage_key: class_label + image_size: 64 + channels: 3 + cond_stage_trainable: false + concat_mode: false + monitor: val/loss + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 3 + out_channels: 3 + model_channels: 224 + attention_resolutions: + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 4 + num_head_channels: 32 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: __is_unconditional__ +data: + target: main.DataModuleFromConfig + params: + batch_size: 48 + num_workers: 5 + wrap: false + train: + target: ldm.data.faceshq.CelebAHQTrain + params: + size: 256 + validation: + target: ldm.data.faceshq.CelebAHQValidation + params: + size: 256 diff --git a/stable_diffusion/models/ldm/cin256/config.yaml b/stable_diffusion/models/ldm/cin256/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9bc1b4566af8b53a2a20eb2b6dc68445f5fb4eb8 --- /dev/null +++ b/stable_diffusion/models/ldm/cin256/config.yaml @@ -0,0 +1,80 @@ +model: + base_learning_rate: 1.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + cond_stage_key: class_label + image_size: 32 + channels: 4 + cond_stage_trainable: true + conditioning_key: crossattn + monitor: val/loss_simple_ema + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 32 + in_channels: 4 + out_channels: 4 + model_channels: 256 + attention_resolutions: + - 4 + - 2 + - 1 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 4 + num_head_channels: 32 + use_spatial_transformer: true + transformer_depth: 1 + context_dim: 512 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 4 + n_embed: 16384 + ddconfig: + double_z: false + z_channels: 4 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: + - 32 + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: + target: ldm.modules.encoders.modules.ClassEmbedder + params: + embed_dim: 512 + key: class_label +data: + target: main.DataModuleFromConfig + params: + batch_size: 64 + num_workers: 12 + wrap: false + train: + target: ldm.data.imagenet.ImageNetTrain + params: + config: + size: 256 + validation: + target: ldm.data.imagenet.ImageNetValidation + params: + config: + size: 256 diff --git a/stable_diffusion/models/ldm/ffhq256/config.yaml b/stable_diffusion/models/ldm/ffhq256/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0ddfd1b93e8e52c9de2e981f9f4bbaf83e75b38e --- /dev/null +++ b/stable_diffusion/models/ldm/ffhq256/config.yaml @@ -0,0 +1,70 @@ +model: + base_learning_rate: 2.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + cond_stage_key: class_label + image_size: 64 + channels: 3 + cond_stage_trainable: false + concat_mode: false + monitor: val/loss + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 3 + out_channels: 3 + model_channels: 224 + attention_resolutions: + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 4 + num_head_channels: 32 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: __is_unconditional__ +data: + target: main.DataModuleFromConfig + params: + batch_size: 42 + num_workers: 5 + wrap: false + train: + target: ldm.data.faceshq.FFHQTrain + params: + size: 256 + validation: + target: ldm.data.faceshq.FFHQValidation + params: + size: 256 diff --git a/stable_diffusion/models/ldm/inpainting_big/config.yaml b/stable_diffusion/models/ldm/inpainting_big/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..da5fd5ea508ea0998b75519bc297411946e4a5bb --- /dev/null +++ b/stable_diffusion/models/ldm/inpainting_big/config.yaml @@ -0,0 +1,67 @@ +model: + base_learning_rate: 1.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0205 + log_every_t: 100 + timesteps: 1000 + loss_type: l1 + first_stage_key: image + cond_stage_key: masked_image + image_size: 64 + channels: 3 + concat_mode: true + monitor: val/loss + scheduler_config: + target: ldm.lr_scheduler.LambdaWarmUpCosineScheduler + params: + verbosity_interval: 0 + warm_up_steps: 1000 + max_decay_steps: 50000 + lr_start: 0.001 + lr_max: 0.1 + lr_min: 0.0001 + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 7 + out_channels: 3 + model_channels: 256 + attention_resolutions: + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 4 + num_heads: 8 + resblock_updown: true + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + monitor: val/rec_loss + ddconfig: + attn_type: none + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: ldm.modules.losses.contperceptual.DummyLoss + cond_stage_config: __is_first_stage__ diff --git a/stable_diffusion/models/ldm/semantic_synthesis256/config.yaml b/stable_diffusion/models/ldm/semantic_synthesis256/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..1a721cfffa5f0cd627be56c07cf5306ae4933cd1 --- /dev/null +++ b/stable_diffusion/models/ldm/semantic_synthesis256/config.yaml @@ -0,0 +1,59 @@ +model: + base_learning_rate: 1.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0205 + log_every_t: 100 + timesteps: 1000 + loss_type: l1 + first_stage_key: image + cond_stage_key: segmentation + image_size: 64 + channels: 3 + concat_mode: true + cond_stage_trainable: true + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 6 + out_channels: 3 + model_channels: 128 + attention_resolutions: + - 32 + - 16 + - 8 + num_res_blocks: 2 + channel_mult: + - 1 + - 4 + - 8 + num_heads: 8 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: + target: ldm.modules.encoders.modules.SpatialRescaler + params: + n_stages: 2 + in_channels: 182 + out_channels: 3 diff --git a/stable_diffusion/models/ldm/text2img256/config.yaml b/stable_diffusion/models/ldm/text2img256/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3f54a0151569fafcd0df37a480e5ea920fe7ffb5 --- /dev/null +++ b/stable_diffusion/models/ldm/text2img256/config.yaml @@ -0,0 +1,77 @@ +model: + base_learning_rate: 2.0e-06 + target: ldm.models.diffusion.ddpm.LatentDiffusion + params: + linear_start: 0.0015 + linear_end: 0.0195 + num_timesteps_cond: 1 + log_every_t: 200 + timesteps: 1000 + first_stage_key: image + cond_stage_key: caption + image_size: 64 + channels: 3 + cond_stage_trainable: true + conditioning_key: crossattn + monitor: val/loss_simple_ema + unet_config: + target: ldm.modules.diffusionmodules.openaimodel.UNetModel + params: + image_size: 64 + in_channels: 3 + out_channels: 3 + model_channels: 192 + attention_resolutions: + - 8 + - 4 + - 2 + num_res_blocks: 2 + channel_mult: + - 1 + - 2 + - 3 + - 5 + num_head_channels: 32 + use_spatial_transformer: true + transformer_depth: 1 + context_dim: 640 + first_stage_config: + target: ldm.models.autoencoder.VQModelInterface + params: + embed_dim: 3 + n_embed: 8192 + ddconfig: + double_z: false + z_channels: 3 + resolution: 256 + in_channels: 3 + out_ch: 3 + ch: 128 + ch_mult: + - 1 + - 2 + - 4 + num_res_blocks: 2 + attn_resolutions: [] + dropout: 0.0 + lossconfig: + target: torch.nn.Identity + cond_stage_config: + target: ldm.modules.encoders.modules.BERTEmbedder + params: + n_embed: 640 + n_layer: 32 +data: + target: main.DataModuleFromConfig + params: + batch_size: 28 + num_workers: 10 + wrap: false + train: + target: ldm.data.previews.pytorch_dataset.PreviewsTrain + params: + size: 256 + validation: + target: ldm.data.previews.pytorch_dataset.PreviewsValidation + params: + size: 256 diff --git a/stable_diffusion/scripts/download_first_stages.sh b/stable_diffusion/scripts/download_first_stages.sh new file mode 100644 index 0000000000000000000000000000000000000000..a8d79e99ccdff0a8d8762f23f3c0642401f32f6c --- /dev/null +++ b/stable_diffusion/scripts/download_first_stages.sh @@ -0,0 +1,41 @@ +#!/bin/bash +wget -O models/first_stage_models/kl-f4/model.zip https://ommer-lab.com/files/latent-diffusion/kl-f4.zip +wget -O models/first_stage_models/kl-f8/model.zip https://ommer-lab.com/files/latent-diffusion/kl-f8.zip +wget -O models/first_stage_models/kl-f16/model.zip https://ommer-lab.com/files/latent-diffusion/kl-f16.zip +wget -O models/first_stage_models/kl-f32/model.zip https://ommer-lab.com/files/latent-diffusion/kl-f32.zip +wget -O models/first_stage_models/vq-f4/model.zip https://ommer-lab.com/files/latent-diffusion/vq-f4.zip +wget -O models/first_stage_models/vq-f4-noattn/model.zip https://ommer-lab.com/files/latent-diffusion/vq-f4-noattn.zip +wget -O models/first_stage_models/vq-f8/model.zip https://ommer-lab.com/files/latent-diffusion/vq-f8.zip +wget -O models/first_stage_models/vq-f8-n256/model.zip https://ommer-lab.com/files/latent-diffusion/vq-f8-n256.zip +wget -O models/first_stage_models/vq-f16/model.zip https://ommer-lab.com/files/latent-diffusion/vq-f16.zip + + + +cd models/first_stage_models/kl-f4 +unzip -o model.zip + +cd ../kl-f8 +unzip -o model.zip + +cd ../kl-f16 +unzip -o model.zip + +cd ../kl-f32 +unzip -o model.zip + +cd ../vq-f4 +unzip -o model.zip + +cd ../vq-f4-noattn +unzip -o model.zip + +cd ../vq-f8 +unzip -o model.zip + +cd ../vq-f8-n256 +unzip -o model.zip + +cd ../vq-f16 +unzip -o model.zip + +cd ../.. \ No newline at end of file diff --git a/stable_diffusion/scripts/inpaint.py b/stable_diffusion/scripts/inpaint.py new file mode 100644 index 0000000000000000000000000000000000000000..d6e6387a9a3b0afa73fae8af25f43a8ba856240e --- /dev/null +++ b/stable_diffusion/scripts/inpaint.py @@ -0,0 +1,98 @@ +import argparse, os, sys, glob +from omegaconf import OmegaConf +from PIL import Image +from tqdm import tqdm +import numpy as np +import torch +from main import instantiate_from_config +from ldm.models.diffusion.ddim import DDIMSampler + + +def make_batch(image, mask, device): + image = np.array(Image.open(image).convert("RGB")) + image = image.astype(np.float32)/255.0 + image = image[None].transpose(0,3,1,2) + image = torch.from_numpy(image) + + mask = np.array(Image.open(mask).convert("L")) + mask = mask.astype(np.float32)/255.0 + mask = mask[None,None] + mask[mask < 0.5] = 0 + mask[mask >= 0.5] = 1 + mask = torch.from_numpy(mask) + + masked_image = (1-mask)*image + + batch = {"image": image, "mask": mask, "masked_image": masked_image} + for k in batch: + batch[k] = batch[k].to(device=device) + batch[k] = batch[k]*2.0-1.0 + return batch + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument( + "--indir", + type=str, + nargs="?", + help="dir containing image-mask pairs (`example.png` and `example_mask.png`)", + ) + parser.add_argument( + "--outdir", + type=str, + nargs="?", + help="dir to write results to", + ) + parser.add_argument( + "--steps", + type=int, + default=50, + help="number of ddim sampling steps", + ) + opt = parser.parse_args() + + masks = sorted(glob.glob(os.path.join(opt.indir, "*_mask.png"))) + images = [x.replace("_mask.png", ".png") for x in masks] + print(f"Found {len(masks)} inputs.") + + config = OmegaConf.load("models/ldm/inpainting_big/config.yaml") + model = instantiate_from_config(config.model) + model.load_state_dict(torch.load("models/ldm/inpainting_big/last.ckpt")["state_dict"], + strict=False) + + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + model = model.to(device) + sampler = DDIMSampler(model) + + os.makedirs(opt.outdir, exist_ok=True) + with torch.no_grad(): + with model.ema_scope(): + for image, mask in tqdm(zip(images, masks)): + outpath = os.path.join(opt.outdir, os.path.split(image)[1]) + batch = make_batch(image, mask, device=device) + + # encode masked image and concat downsampled mask + c = model.cond_stage_model.encode(batch["masked_image"]) + cc = torch.nn.functional.interpolate(batch["mask"], + size=c.shape[-2:]) + c = torch.cat((c, cc), dim=1) + + shape = (c.shape[1]-1,)+c.shape[2:] + samples_ddim, _ = sampler.sample(S=opt.steps, + conditioning=c, + batch_size=c.shape[0], + shape=shape, + verbose=False) + x_samples_ddim = model.decode_first_stage(samples_ddim) + + image = torch.clamp((batch["image"]+1.0)/2.0, + min=0.0, max=1.0) + mask = torch.clamp((batch["mask"]+1.0)/2.0, + min=0.0, max=1.0) + predicted_image = torch.clamp((x_samples_ddim+1.0)/2.0, + min=0.0, max=1.0) + + inpainted = (1-mask)*image+mask*predicted_image + inpainted = inpainted.cpu().numpy().transpose(0,2,3,1)[0]*255 + Image.fromarray(inpainted.astype(np.uint8)).save(outpath) diff --git a/stable_diffusion/scripts/latent_imagenet_diffusion.ipynb.REMOVED.git-id b/stable_diffusion/scripts/latent_imagenet_diffusion.ipynb.REMOVED.git-id new file mode 100644 index 0000000000000000000000000000000000000000..b8757597bd3b0d8cdaf0ea709705e1ec9817f2ed --- /dev/null +++ b/stable_diffusion/scripts/latent_imagenet_diffusion.ipynb.REMOVED.git-id @@ -0,0 +1 @@ +607f94fc7d3ef6d8d1627017215476d9dfc7ddc4 \ No newline at end of file diff --git a/stable_diffusion/scripts/train_searcher.py b/stable_diffusion/scripts/train_searcher.py new file mode 100644 index 0000000000000000000000000000000000000000..1e7904889c0145f9fb740fd4ae8e45c08728b255 --- /dev/null +++ b/stable_diffusion/scripts/train_searcher.py @@ -0,0 +1,147 @@ +import os, sys +import numpy as np +import scann +import argparse +import glob +from multiprocessing import cpu_count +from tqdm import tqdm + +from ldm.util import parallel_data_prefetch + + +def search_bruteforce(searcher): + return searcher.score_brute_force().build() + + +def search_partioned_ah(searcher, dims_per_block, aiq_threshold, reorder_k, + partioning_trainsize, num_leaves, num_leaves_to_search): + return searcher.tree(num_leaves=num_leaves, + num_leaves_to_search=num_leaves_to_search, + training_sample_size=partioning_trainsize). \ + score_ah(dims_per_block, anisotropic_quantization_threshold=aiq_threshold).reorder(reorder_k).build() + + +def search_ah(searcher, dims_per_block, aiq_threshold, reorder_k): + return searcher.score_ah(dims_per_block, anisotropic_quantization_threshold=aiq_threshold).reorder( + reorder_k).build() + +def load_datapool(dpath): + + + def load_single_file(saved_embeddings): + compressed = np.load(saved_embeddings) + database = {key: compressed[key] for key in compressed.files} + return database + + def load_multi_files(data_archive): + database = {key: [] for key in data_archive[0].files} + for d in tqdm(data_archive, desc=f'Loading datapool from {len(data_archive)} individual files.'): + for key in d.files: + database[key].append(d[key]) + + return database + + print(f'Load saved patch embedding from "{dpath}"') + file_content = glob.glob(os.path.join(dpath, '*.npz')) + + if len(file_content) == 1: + data_pool = load_single_file(file_content[0]) + elif len(file_content) > 1: + data = [np.load(f) for f in file_content] + prefetched_data = parallel_data_prefetch(load_multi_files, data, + n_proc=min(len(data), cpu_count()), target_data_type='dict') + + data_pool = {key: np.concatenate([od[key] for od in prefetched_data], axis=1)[0] for key in prefetched_data[0].keys()} + else: + raise ValueError(f'No npz-files in specified path "{dpath}" is this directory existing?') + + print(f'Finished loading of retrieval database of length {data_pool["embedding"].shape[0]}.') + return data_pool + + +def train_searcher(opt, + metric='dot_product', + partioning_trainsize=None, + reorder_k=None, + # todo tune + aiq_thld=0.2, + dims_per_block=2, + num_leaves=None, + num_leaves_to_search=None,): + + data_pool = load_datapool(opt.database) + k = opt.knn + + if not reorder_k: + reorder_k = 2 * k + + # normalize + # embeddings = + searcher = scann.scann_ops_pybind.builder(data_pool['embedding'] / np.linalg.norm(data_pool['embedding'], axis=1)[:, np.newaxis], k, metric) + pool_size = data_pool['embedding'].shape[0] + + print(*(['#'] * 100)) + print('Initializing scaNN searcher with the following values:') + print(f'k: {k}') + print(f'metric: {metric}') + print(f'reorder_k: {reorder_k}') + print(f'anisotropic_quantization_threshold: {aiq_thld}') + print(f'dims_per_block: {dims_per_block}') + print(*(['#'] * 100)) + print('Start training searcher....') + print(f'N samples in pool is {pool_size}') + + # this reflects the recommended design choices proposed at + # https://github.com/google-research/google-research/blob/aca5f2e44e301af172590bb8e65711f0c9ee0cfd/scann/docs/algorithms.md + if pool_size < 2e4: + print('Using brute force search.') + searcher = search_bruteforce(searcher) + elif 2e4 <= pool_size and pool_size < 1e5: + print('Using asymmetric hashing search and reordering.') + searcher = search_ah(searcher, dims_per_block, aiq_thld, reorder_k) + else: + print('Using using partioning, asymmetric hashing search and reordering.') + + if not partioning_trainsize: + partioning_trainsize = data_pool['embedding'].shape[0] // 10 + if not num_leaves: + num_leaves = int(np.sqrt(pool_size)) + + if not num_leaves_to_search: + num_leaves_to_search = max(num_leaves // 20, 1) + + print('Partitioning params:') + print(f'num_leaves: {num_leaves}') + print(f'num_leaves_to_search: {num_leaves_to_search}') + # self.searcher = self.search_ah(searcher, dims_per_block, aiq_thld, reorder_k) + searcher = search_partioned_ah(searcher, dims_per_block, aiq_thld, reorder_k, + partioning_trainsize, num_leaves, num_leaves_to_search) + + print('Finish training searcher') + searcher_savedir = opt.target_path + os.makedirs(searcher_savedir, exist_ok=True) + searcher.serialize(searcher_savedir) + print(f'Saved trained searcher under "{searcher_savedir}"') + +if __name__ == '__main__': + sys.path.append(os.getcwd()) + parser = argparse.ArgumentParser() + parser.add_argument('--database', + '-d', + default='data/rdm/retrieval_databases/openimages', + type=str, + help='path to folder containing the clip feature of the database') + parser.add_argument('--target_path', + '-t', + default='data/rdm/searchers/openimages', + type=str, + help='path to the target folder where the searcher shall be stored.') + parser.add_argument('--knn', + '-k', + default=20, + type=int, + help='number of nearest neighbors, for which the searcher shall be optimized') + + opt, _ = parser.parse_known_args() + + train_searcher(opt,) \ No newline at end of file diff --git a/stable_diffusion/scripts/txt2img.py b/stable_diffusion/scripts/txt2img.py new file mode 100644 index 0000000000000000000000000000000000000000..bc3864043f676c829b623f444f689f6fe7e4824b --- /dev/null +++ b/stable_diffusion/scripts/txt2img.py @@ -0,0 +1,352 @@ +import argparse, os, sys, glob +import cv2 +import torch +import numpy as np +from omegaconf import OmegaConf +from PIL import Image +from tqdm import tqdm, trange +from imwatermark import WatermarkEncoder +from itertools import islice +from einops import rearrange +from torchvision.utils import make_grid +import time +from pytorch_lightning import seed_everything +from torch import autocast +from contextlib import contextmanager, nullcontext + +from ldm.util import instantiate_from_config +from ldm.models.diffusion.ddim import DDIMSampler +from ldm.models.diffusion.plms import PLMSSampler +from ldm.models.diffusion.dpm_solver import DPMSolverSampler + +from diffusers.pipelines.stable_diffusion.safety_checker import StableDiffusionSafetyChecker +from transformers import AutoFeatureExtractor + + +# load safety model +safety_model_id = "CompVis/stable-diffusion-safety-checker" +safety_feature_extractor = AutoFeatureExtractor.from_pretrained(safety_model_id) +safety_checker = StableDiffusionSafetyChecker.from_pretrained(safety_model_id) + + +def chunk(it, size): + it = iter(it) + return iter(lambda: tuple(islice(it, size)), ()) + + +def numpy_to_pil(images): + """ + Convert a numpy image or a batch of images to a PIL image. + """ + if images.ndim == 3: + images = images[None, ...] + images = (images * 255).round().astype("uint8") + pil_images = [Image.fromarray(image) for image in images] + + return pil_images + + +def load_model_from_config(config, ckpt, verbose=False): + print(f"Loading model from {ckpt}") + pl_sd = torch.load(ckpt, map_location="cpu") + if "global_step" in pl_sd: + print(f"Global Step: {pl_sd['global_step']}") + sd = pl_sd["state_dict"] + model = instantiate_from_config(config.model) + m, u = model.load_state_dict(sd, strict=False) + if len(m) > 0 and verbose: + print("missing keys:") + print(m) + if len(u) > 0 and verbose: + print("unexpected keys:") + print(u) + + model.cuda() + model.eval() + return model + + +def put_watermark(img, wm_encoder=None): + if wm_encoder is not None: + img = cv2.cvtColor(np.array(img), cv2.COLOR_RGB2BGR) + img = wm_encoder.encode(img, 'dwtDct') + img = Image.fromarray(img[:, :, ::-1]) + return img + + +def load_replacement(x): + try: + hwc = x.shape + y = Image.open("assets/rick.jpeg").convert("RGB").resize((hwc[1], hwc[0])) + y = (np.array(y)/255.0).astype(x.dtype) + assert y.shape == x.shape + return y + except Exception: + return x + + +def check_safety(x_image): + safety_checker_input = safety_feature_extractor(numpy_to_pil(x_image), return_tensors="pt") + x_checked_image, has_nsfw_concept = safety_checker(images=x_image, clip_input=safety_checker_input.pixel_values) + assert x_checked_image.shape[0] == len(has_nsfw_concept) + for i in range(len(has_nsfw_concept)): + if has_nsfw_concept[i]: + x_checked_image[i] = load_replacement(x_checked_image[i]) + return x_checked_image, has_nsfw_concept + + +def main(): + parser = argparse.ArgumentParser() + + parser.add_argument( + "--prompt", + type=str, + nargs="?", + default="a painting of a virus monster playing guitar", + help="the prompt to render" + ) + parser.add_argument( + "--outdir", + type=str, + nargs="?", + help="dir to write results to", + default="outputs/txt2img-samples" + ) + parser.add_argument( + "--skip_grid", + action='store_true', + help="do not save a grid, only individual samples. Helpful when evaluating lots of samples", + ) + parser.add_argument( + "--skip_save", + action='store_true', + help="do not save individual samples. For speed measurements.", + ) + parser.add_argument( + "--ddim_steps", + type=int, + default=50, + help="number of ddim sampling steps", + ) + parser.add_argument( + "--plms", + action='store_true', + help="use plms sampling", + ) + parser.add_argument( + "--dpm_solver", + action='store_true', + help="use dpm_solver sampling", + ) + parser.add_argument( + "--laion400m", + action='store_true', + help="uses the LAION400M model", + ) + parser.add_argument( + "--fixed_code", + action='store_true', + help="if enabled, uses the same starting code across samples ", + ) + parser.add_argument( + "--ddim_eta", + type=float, + default=0.0, + help="ddim eta (eta=0.0 corresponds to deterministic sampling", + ) + parser.add_argument( + "--n_iter", + type=int, + default=2, + help="sample this often", + ) + parser.add_argument( + "--H", + type=int, + default=512, + help="image height, in pixel space", + ) + parser.add_argument( + "--W", + type=int, + default=512, + help="image width, in pixel space", + ) + parser.add_argument( + "--C", + type=int, + default=4, + help="latent channels", + ) + parser.add_argument( + "--f", + type=int, + default=8, + help="downsampling factor", + ) + parser.add_argument( + "--n_samples", + type=int, + default=3, + help="how many samples to produce for each given prompt. A.k.a. batch size", + ) + parser.add_argument( + "--n_rows", + type=int, + default=0, + help="rows in the grid (default: n_samples)", + ) + parser.add_argument( + "--scale", + type=float, + default=7.5, + help="unconditional guidance scale: eps = eps(x, empty) + scale * (eps(x, cond) - eps(x, empty))", + ) + parser.add_argument( + "--from-file", + type=str, + help="if specified, load prompts from this file", + ) + parser.add_argument( + "--config", + type=str, + default="configs/stable-diffusion/v1-inference.yaml", + help="path to config which constructs model", + ) + parser.add_argument( + "--ckpt", + type=str, + default="models/ldm/stable-diffusion-v1/model.ckpt", + help="path to checkpoint of model", + ) + parser.add_argument( + "--seed", + type=int, + default=42, + help="the seed (for reproducible sampling)", + ) + parser.add_argument( + "--precision", + type=str, + help="evaluate at this precision", + choices=["full", "autocast"], + default="autocast" + ) + opt = parser.parse_args() + + if opt.laion400m: + print("Falling back to LAION 400M model...") + opt.config = "configs/latent-diffusion/txt2img-1p4B-eval.yaml" + opt.ckpt = "models/ldm/text2img-large/model.ckpt" + opt.outdir = "outputs/txt2img-samples-laion400m" + + seed_everything(opt.seed) + + config = OmegaConf.load(f"{opt.config}") + model = load_model_from_config(config, f"{opt.ckpt}") + + device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") + model = model.to(device) + + if opt.dpm_solver: + sampler = DPMSolverSampler(model) + elif opt.plms: + sampler = PLMSSampler(model) + else: + sampler = DDIMSampler(model) + + os.makedirs(opt.outdir, exist_ok=True) + outpath = opt.outdir + + print("Creating invisible watermark encoder (see https://github.com/ShieldMnt/invisible-watermark)...") + wm = "StableDiffusionV1" + wm_encoder = WatermarkEncoder() + wm_encoder.set_watermark('bytes', wm.encode('utf-8')) + + batch_size = opt.n_samples + n_rows = opt.n_rows if opt.n_rows > 0 else batch_size + if not opt.from_file: + prompt = opt.prompt + assert prompt is not None + data = [batch_size * [prompt]] + + else: + print(f"reading prompts from {opt.from_file}") + with open(opt.from_file, "r") as f: + data = f.read().splitlines() + data = list(chunk(data, batch_size)) + + sample_path = os.path.join(outpath, "samples") + os.makedirs(sample_path, exist_ok=True) + base_count = len(os.listdir(sample_path)) + grid_count = len(os.listdir(outpath)) - 1 + + start_code = None + if opt.fixed_code: + start_code = torch.randn([opt.n_samples, opt.C, opt.H // opt.f, opt.W // opt.f], device=device) + + precision_scope = autocast if opt.precision=="autocast" else nullcontext + with torch.no_grad(): + with precision_scope("cuda"): + with model.ema_scope(): + tic = time.time() + all_samples = list() + for n in trange(opt.n_iter, desc="Sampling"): + for prompts in tqdm(data, desc="data"): + uc = None + if opt.scale != 1.0: + uc = model.get_learned_conditioning(batch_size * [""]) + if isinstance(prompts, tuple): + prompts = list(prompts) + c = model.get_learned_conditioning(prompts) + shape = [opt.C, opt.H // opt.f, opt.W // opt.f] + samples_ddim, _ = sampler.sample(S=opt.ddim_steps, + conditioning=c, + batch_size=opt.n_samples, + shape=shape, + verbose=False, + unconditional_guidance_scale=opt.scale, + unconditional_conditioning=uc, + eta=opt.ddim_eta, + x_T=start_code) + + x_samples_ddim = model.decode_first_stage(samples_ddim) + x_samples_ddim = torch.clamp((x_samples_ddim + 1.0) / 2.0, min=0.0, max=1.0) + x_samples_ddim = x_samples_ddim.cpu().permute(0, 2, 3, 1).numpy() + + x_checked_image, has_nsfw_concept = check_safety(x_samples_ddim) + + x_checked_image_torch = torch.from_numpy(x_checked_image).permute(0, 3, 1, 2) + + if not opt.skip_save: + for x_sample in x_checked_image_torch: + x_sample = 255. * rearrange(x_sample.cpu().numpy(), 'c h w -> h w c') + img = Image.fromarray(x_sample.astype(np.uint8)) + img = put_watermark(img, wm_encoder) + img.save(os.path.join(sample_path, f"{base_count:05}.png")) + base_count += 1 + + if not opt.skip_grid: + all_samples.append(x_checked_image_torch) + + if not opt.skip_grid: + # additionally, save as grid + grid = torch.stack(all_samples, 0) + grid = rearrange(grid, 'n b c h w -> (n b) c h w') + grid = make_grid(grid, nrow=n_rows) + + # to image + grid = 255. * rearrange(grid, 'c h w -> h w c').cpu().numpy() + img = Image.fromarray(grid.astype(np.uint8)) + img = put_watermark(img, wm_encoder) + img.save(os.path.join(outpath, f'grid-{grid_count:04}.png')) + grid_count += 1 + + toc = time.time() + + print(f"Your samples are ready and waiting for you here: \n{outpath} \n" + f" \nEnjoy.") + + +if __name__ == "__main__": + main()